diff --git a/.gitignore b/.gitignore index fd617810c..8af868e8e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,60 @@ -Logs/* -obj/* -Temp/* \ No newline at end of file +# This .gitignore file should be placed at the root of your Unity project directory +# +# Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore +# +/[Ll]ibrary/ +/[Tt]emp/ +/[Oo]bj/ +/[Bb]uild/ +/[Bb]uilds/ +/[Ll]ogs/ +/[Mm]emoryCaptures/ + +# Asset meta data should only be ignored when the corresponding asset is also ignored +!/[Aa]ssets/**/*.meta + +# Uncomment this line if you wish to ignore the asset store tools plugin +# /[Aa]ssets/AssetStoreTools* + +# Autogenerated Jetbrains Rider plugin +[Aa]ssets/Plugins/Editor/JetBrains* + +# Visual Studio cache directory +.vs/ + +# Gradle cache directory +.gradle/ + +# Autogenerated VS/MD/Consulo solution and project files +ExportedObj/ +.consulo/ +*.csproj +*.unityproj +*.sln +*.suo +*.tmp +*.user +*.userprefs +*.pidb +*.booproj +*.svd +*.pdb +*.mdb +*.opendb +*.VC.db + +# Unity3D generated meta files +*.pidb.meta +*.pdb.meta +*.mdb.meta + +# Unity3D generated file on crash reports +sysinfo.txt + +# Builds +*.apk +*.unitypackage + +# Crashlytics generated file +crashlytics-build.properties + diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..1060b044c --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,56 @@ +{ + "files.exclude": + { + "**/.DS_Store":true, + "**/.git":true, + "**/.gitignore":true, + "**/.gitmodules":true, + "**/*.booproj":true, + "**/*.pidb":true, + "**/*.suo":true, + "**/*.user":true, + "**/*.userprefs":true, + "**/*.unityproj":true, + "**/*.dll":true, + "**/*.exe":true, + "**/*.pdf":true, + "**/*.mid":true, + "**/*.midi":true, + "**/*.wav":true, + "**/*.gif":true, + "**/*.ico":true, + "**/*.jpg":true, + "**/*.jpeg":true, + "**/*.png":true, + "**/*.psd":true, + "**/*.tga":true, + "**/*.tif":true, + "**/*.tiff":true, + "**/*.3ds":true, + "**/*.3DS":true, + "**/*.fbx":true, + "**/*.FBX":true, + "**/*.lxo":true, + "**/*.LXO":true, + "**/*.ma":true, + "**/*.MA":true, + "**/*.obj":true, + "**/*.OBJ":true, + "**/*.asset":true, + "**/*.cubemap":true, + "**/*.flare":true, + "**/*.mat":true, + "**/*.meta":true, + "**/*.prefab":true, + "**/*.unity":true, + "build/":true, + "Build/":true, + "Library/":true, + "library/":true, + "obj/":true, + "Obj/":true, + "ProjectSettings/":true, + "temp/":true, + "Temp/":true + } +} \ No newline at end of file diff --git a/2D-Game-Development.sln b/2D-Game-Development.sln new file mode 100644 index 000000000..e2f829910 --- /dev/null +++ b/2D-Game-Development.sln @@ -0,0 +1,44 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp", "Assembly-CSharp.csproj", "{651643A2-7CFD-A5FF-F6C7-515671AA6CC7}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.2D.Tilemap.Extras", "Unity.2D.Tilemap.Extras.csproj", "{861E0E51-D6A0-FCCA-B048-81FD408F0125}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp-Editor", "Assembly-CSharp-Editor.csproj", "{39ACBD73-23DC-5869-F584-6A35010B82DD}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.2D.Tilemap.Extras.Editor", "Unity.2D.Tilemap.Extras.Editor.csproj", "{52A140D8-28C8-ACE0-E27F-62C3B78D88B8}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.2D.Tilemap.Extras.Placeholder.EditorTests", "Unity.2D.Tilemap.Extras.Placeholder.EditorTests.csproj", "{11928CE8-3D50-D8D1-48AC-496A9A82C9FD}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {651643A2-7CFD-A5FF-F6C7-515671AA6CC7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {651643A2-7CFD-A5FF-F6C7-515671AA6CC7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {651643A2-7CFD-A5FF-F6C7-515671AA6CC7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {651643A2-7CFD-A5FF-F6C7-515671AA6CC7}.Release|Any CPU.Build.0 = Release|Any CPU + {861E0E51-D6A0-FCCA-B048-81FD408F0125}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {861E0E51-D6A0-FCCA-B048-81FD408F0125}.Debug|Any CPU.Build.0 = Debug|Any CPU + {861E0E51-D6A0-FCCA-B048-81FD408F0125}.Release|Any CPU.ActiveCfg = Release|Any CPU + {861E0E51-D6A0-FCCA-B048-81FD408F0125}.Release|Any CPU.Build.0 = Release|Any CPU + {39ACBD73-23DC-5869-F584-6A35010B82DD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {39ACBD73-23DC-5869-F584-6A35010B82DD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {39ACBD73-23DC-5869-F584-6A35010B82DD}.Release|Any CPU.ActiveCfg = Release|Any CPU + {39ACBD73-23DC-5869-F584-6A35010B82DD}.Release|Any CPU.Build.0 = Release|Any CPU + {52A140D8-28C8-ACE0-E27F-62C3B78D88B8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {52A140D8-28C8-ACE0-E27F-62C3B78D88B8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {52A140D8-28C8-ACE0-E27F-62C3B78D88B8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {52A140D8-28C8-ACE0-E27F-62C3B78D88B8}.Release|Any CPU.Build.0 = Release|Any CPU + {11928CE8-3D50-D8D1-48AC-496A9A82C9FD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {11928CE8-3D50-D8D1-48AC-496A9A82C9FD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {11928CE8-3D50-D8D1-48AC-496A9A82C9FD}.Release|Any CPU.ActiveCfg = Release|Any CPU + {11928CE8-3D50-D8D1-48AC-496A9A82C9FD}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/Assembly-CSharp-Editor.csproj b/Assembly-CSharp-Editor.csproj index 4797a02e0..bce350d98 100644 --- a/Assembly-CSharp-Editor.csproj +++ b/Assembly-CSharp-Editor.csproj @@ -2,8 +2,6 @@ latest - C:\Program Files\Unity\Hub\Editor\2019.2.0f1\Editor\Data\Tools\RoslynScripts - unity_csc.bat Debug @@ -11,7 +9,7 @@ 10.0.20506 2.0 - {EFBC6C61-2307-C244-6B8A-10315B4B3473} + {39ACBD73-23DC-5869-F584-6A35010B82DD} Library Properties Assembly-CSharp-Editor @@ -24,10 +22,10 @@ full false Temp\bin\Debug\ - DEBUG;TRACE;UNITY_2019_2_0;UNITY_2019_2;UNITY_2019;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE_WIN;PLATFORM_STANDALONE;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_UNITYWEBREQUEST;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_EVENT_QUEUE;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;ENABLE_VR;ENABLE_AR;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_VSTU;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;UNITY_POST_PROCESSING_STACK_V2;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + DEBUG;TRACE;UNITY_2019_3_4;UNITY_2019_3;UNITY_2019;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_VSTU;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;UNITY_POST_PROCESSING_STACK_V2;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 - 0169;CS0649;IDE0051 + 0169 False @@ -36,7 +34,7 @@ Temp\bin\Release\ prompt 4 - 0169;CS0649;IDE0051 + 0169 False @@ -51,14 +49,17 @@ Unity/VSTU Editor:5 StandaloneWindows:5 - 2019.2.0f1 + 2019.3.4f1 + + + - C:\Program Files\Unity\Hub\Editor\2019.2.0f1\Editor\Data\Managed/UnityEngine/UnityEngine.dll + C:\Program Files\Unity\Hub\Editor\2019.3.4f1\Editor\Data\Managed/UnityEngine/UnityEngine.dll - C:\Program Files\Unity\Hub\Editor\2019.2.0f1\Editor\Data\Managed/UnityEditor.dll + C:\Program Files\Unity\Hub\Editor\2019.3.4f1\Editor\Data\Managed/UnityEditor.dll @@ -68,624 +69,662 @@ - - - - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/UnityEditor.TestRunner.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/UnityEditor.TestRunner.dll - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/UnityEngine.TestRunner.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/UnityEngine.TestRunner.dll - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/Unity.Timeline.Editor.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.Timeline.Editor.dll + + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Cinemachine.dll - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/Unity.VSCode.Editor.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.VSCode.Editor.dll + + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll + + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.2D.Path.Editor.dll - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/UnityEngine.UI.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/UnityEngine.UI.dll - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/Unity.Timeline.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.Timeline.dll - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll - - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/Unity.Rider.Editor.dll + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.Postprocessing.Editor.dll - - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/UnityEngine.XR.LegacyInputHelpers.dll - - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.Rider.Editor.dll - - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/Unity.TextMeshPro.dll + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.Mathematics.dll - - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/UnityEditor.UI.dll + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll - - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/Cinemachine.dll + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll - - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/Unity.Postprocessing.Editor.dll - - - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/UnityEngine.XR.LegacyInputHelpers.dll + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/Unity.Postprocessing.Runtime.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.Postprocessing.Runtime.dll + + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll + + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/UnityEditor.SpatialTracking.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/UnityEditor.SpatialTracking.dll - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/com.unity.cinemachine.editor.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/com.unity.cinemachine.editor.dll - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/UnityEngine.SpatialTracking.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/UnityEngine.SpatialTracking.dll + + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.Mathematics.Editor.dll + + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.TextMeshPro.dll + + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.2D.Common.Editor.dll - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/UnityEditor.XR.LegacyInputHelpers.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/UnityEditor.XR.LegacyInputHelpers.dll + + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll + + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/UnityEditor.UI.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll - - - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.FileSystemHttpModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll + + + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEditor.Graphs.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEditor.Graphs.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll + + + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll + + + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll C:/Program Files (x86)/Microsoft Visual Studio Tools for Unity/16.0/Editor/SyntaxTree.VisualStudio.Unity.Bridge.dll - C:/Users/jhavi/Outscal class 2/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll - {30B9376B-040A-2D4B-6EA3-1A1D851B619F} + {651643A2-7CFD-A5FF-F6C7-515671AA6CC7} Assembly-CSharp + + {52A140D8-28C8-ACE0-E27F-62C3B78D88B8} + Unity.2D.Tilemap.Extras.Editor + + + {861E0E51-D6A0-FCCA-B048-81FD408F0125} + Unity.2D.Tilemap.Extras + diff --git a/Assembly-CSharp.csproj b/Assembly-CSharp.csproj index c310213be..c6d750604 100644 --- a/Assembly-CSharp.csproj +++ b/Assembly-CSharp.csproj @@ -2,8 +2,6 @@ latest - C:\Program Files\Unity\Hub\Editor\2019.2.0f1\Editor\Data\Tools\RoslynScripts - unity_csc.bat Debug @@ -11,7 +9,7 @@ 10.0.20506 2.0 - {30B9376B-040A-2D4B-6EA3-1A1D851B619F} + {651643A2-7CFD-A5FF-F6C7-515671AA6CC7} Library Properties Assembly-CSharp @@ -24,10 +22,10 @@ full false Temp\bin\Debug\ - DEBUG;TRACE;UNITY_2019_2_0;UNITY_2019_2;UNITY_2019;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE_WIN;PLATFORM_STANDALONE;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_UNITYWEBREQUEST;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_EVENT_QUEUE;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;ENABLE_VR;ENABLE_AR;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_VSTU;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;UNITY_POST_PROCESSING_STACK_V2;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + DEBUG;TRACE;UNITY_2019_3_4;UNITY_2019_3;UNITY_2019;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_VSTU;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;UNITY_POST_PROCESSING_STACK_V2;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 - 0169;CS0649;IDE0051 + 0169 False @@ -36,7 +34,7 @@ Temp\bin\Release\ prompt 4 - 0169;CS0649;IDE0051 + 0169 False @@ -51,14 +49,17 @@ Unity/VSTU Game:1 StandaloneWindows:5 - 2019.2.0f1 + 2019.3.4f1 + + + - C:\Program Files\Unity\Hub\Editor\2019.2.0f1\Editor\Data\Managed/UnityEngine/UnityEngine.dll + C:\Program Files\Unity\Hub\Editor\2019.3.4f1\Editor\Data\Managed/UnityEngine/UnityEngine.dll - C:\Program Files\Unity\Hub\Editor\2019.2.0f1\Editor\Data\Managed/UnityEditor.dll + C:\Program Files\Unity\Hub\Editor\2019.3.4f1\Editor\Data\Managed/UnityEditor.dll @@ -92,625 +93,681 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + - - - + - - + - - - - - - - - - - - - + - - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/Unity.Timeline.Editor.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.Timeline.Editor.dll + + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Cinemachine.dll - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/Unity.VSCode.Editor.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.VSCode.Editor.dll + + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll + + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.2D.Path.Editor.dll - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/UnityEngine.UI.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/UnityEngine.UI.dll - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/Unity.Timeline.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.Timeline.dll - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll - - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/Unity.Rider.Editor.dll - - - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.Postprocessing.Editor.dll - - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/UnityEngine.XR.LegacyInputHelpers.dll - - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/Unity.TextMeshPro.dll + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.Rider.Editor.dll - - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/UnityEditor.UI.dll + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.Mathematics.dll - - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/Cinemachine.dll + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll - - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/Unity.Postprocessing.Editor.dll + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll - - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/UnityEngine.XR.LegacyInputHelpers.dll + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/Unity.Postprocessing.Runtime.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.Postprocessing.Runtime.dll + + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll + + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/UnityEditor.SpatialTracking.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/UnityEditor.SpatialTracking.dll - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/com.unity.cinemachine.editor.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/com.unity.cinemachine.editor.dll - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/UnityEngine.SpatialTracking.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/UnityEngine.SpatialTracking.dll + + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.Mathematics.Editor.dll + + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.TextMeshPro.dll + + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.2D.Common.Editor.dll - C:/Users/jhavi/Outscal class 2/Library/ScriptAssemblies/UnityEditor.XR.LegacyInputHelpers.dll + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/UnityEditor.XR.LegacyInputHelpers.dll + + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll + + + D:/OutScal/Repos/New folder/2D-Game-Development/Library/ScriptAssemblies/UnityEditor.UI.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll - - - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.FileSystemHttpModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll + + + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll - C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll + C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll + + + {52A140D8-28C8-ACE0-E27F-62C3B78D88B8} + Unity.2D.Tilemap.Extras.Editor + + + {861E0E51-D6A0-FCCA-B048-81FD408F0125} + Unity.2D.Tilemap.Extras + + ", - @"", - @""); - } - - static string GetProjectHeaderTemplate() - { - var header = new[] - { - @"", - @"", - @" ", - @" {10}", - @" ", - @" ", - @" Debug", - @" AnyCPU", - @" {1}", - @" 2.0", - @" {8}", - @" {{{2}}}", - @" Library", - @" Properties", - @" {7}", - @" {9}", - @" 512", - @" {11}", - @" ", - @" ", - @" true", - @" full", - @" false", - @" Temp\bin\Debug\", - @" {5}", - @" prompt", - @" 4", - @" 0169", - @" {12}", - @" ", - @" ", - @" pdbonly", - @" true", - @" Temp\bin\Release\", - @" prompt", - @" 4", - @" 0169", - @" {12}", - @" " - }; - - var forceExplicitReferences = new[] - { - @" ", - @" true", - @" true", - @" false", - @" false", - @" false", - @" " - }; - - var itemGroupStart = new[] - { - @" " - }; - - var footer = new[] - { - @" ", - @" {3}", - @" ", - @" ", - @" {4}", - @" ", - @" ", - @" ", - @"" - }; - - var text = header.Concat(forceExplicitReferences).Concat(itemGroupStart).Concat(footer).ToArray(); - return string.Join("\r\n", text); - } - - void SyncSolution(IEnumerable islands) - { - SyncSolutionFileIfNotChanged(SolutionFile(), SolutionText(islands)); - } - - string SolutionText(IEnumerable islands) - { - var fileversion = "11.00"; - var vsversion = "2010"; - - var relevantIslands = RelevantIslandsForMode(islands); - string projectEntries = GetProjectEntries(relevantIslands); - string projectConfigurations = string.Join(k_WindowsNewline, - relevantIslands.Select(i => GetProjectActiveConfigurations(ProjectGuid(i.outputPath))).ToArray()); - return string.Format(GetSolutionText(), fileversion, vsversion, projectEntries, projectConfigurations); - } - - static IEnumerable RelevantIslandsForMode(IEnumerable islands) - { - IEnumerable relevantIslands = islands.Where(i => ScriptingLanguage.CSharp == ScriptingLanguageFor(i)); - return relevantIslands; - } - - /// - /// Get a Project("{guid}") = "MyProject", "MyProject.unityproj", "{projectguid}" - /// entry for each relevant language - /// - string GetProjectEntries(IEnumerable islands) - { - var projectEntries = islands.Select(i => string.Format( - m_SolutionProjectEntryTemplate, - SolutionGuid(i), Utility.FileNameWithoutExtension(i.outputPath), Path.GetFileName(ProjectFile(i)), - ProjectGuid(i.outputPath) - )); - - return string.Join(k_WindowsNewline, projectEntries.ToArray()); - } - - /// - /// Generate the active configuration string for a given project guid - /// - string GetProjectActiveConfigurations(string projectGuid) - { - return string.Format( - m_SolutionProjectConfigurationTemplate, - projectGuid); - } - - string EscapedRelativePathFor(string file) - { - var projectDir = ProjectDirectory.Replace('/', '\\'); - file = file.Replace('/', '\\'); - var path = SkipPathPrefix(file, projectDir); - - var packageInfo = m_AssemblyNameProvider.FindForAssetPath(path.Replace('\\', '/')); - if (packageInfo != null) - { - // We have to normalize the path, because the PackageManagerRemapper assumes - // dir seperators will be os specific. - var absolutePath = Path.GetFullPath(NormalizePath(path)).Replace('/', '\\'); - path = SkipPathPrefix(absolutePath, projectDir); - } - - return SecurityElement.Escape(path); - } - - static string SkipPathPrefix(string path, string prefix) - { - if (path.Replace("\\", "/").StartsWith($"{prefix}/")) - return path.Substring(prefix.Length + 1); - return path; - } - - static string NormalizePath(string path) - { - if (Path.DirectorySeparatorChar == '\\') - return path.Replace('/', Path.DirectorySeparatorChar); - return path.Replace('\\', Path.DirectorySeparatorChar); - } - - - string ProjectGuid(string assembly) - { - return SolutionGuidGenerator.GuidForProject(m_ProjectName + Utility.FileNameWithoutExtension(assembly)); - } - - string SolutionGuid(Assembly island) - { - return SolutionGuidGenerator.GuidForSolution(m_ProjectName, GetExtensionOfSourceFiles(island.sourceFiles)); - } - - static string ProjectFooter() - { - return GetProjectFooterTemplate(); - } - - static string GetProjectExtension() - { - return ".csproj"; - } - } - - public static class SolutionGuidGenerator - { - public static string GuidForProject(string projectName) - { - return ComputeGuidHashFor(projectName + "salt"); - } - - public static string GuidForSolution(string projectName, string sourceFileExtension) - { - if (sourceFileExtension.ToLower() == "cs") - // GUID for a C# class library: http://www.codeproject.com/Reference/720512/List-of-Visual-Studio-Project-Type-GUIDs - return "FAE04EC0-301F-11D3-BF4B-00C04F79EFBC"; - - return ComputeGuidHashFor(projectName); - } - - static string ComputeGuidHashFor(string input) - { - var hash = MD5.Create().ComputeHash(Encoding.Default.GetBytes(input)); - return HashAsGuid(HashToString(hash)); - } - - static string HashAsGuid(string hash) - { - var guid = hash.Substring(0, 8) + "-" + hash.Substring(8, 4) + "-" + hash.Substring(12, 4) + "-" + - hash.Substring(16, 4) + "-" + hash.Substring(20, 12); - return guid.ToUpper(); - } - - static string HashToString(byte[] bs) - { - var sb = new StringBuilder(); - foreach (byte b in bs) - sb.Append(b.ToString("x2")); - return sb.ToString(); - } - } -} \ No newline at end of file diff --git a/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/ProjectGeneration.cs.meta b/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/ProjectGeneration.cs.meta deleted file mode 100644 index d7faab996..000000000 --- a/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/ProjectGeneration.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 8df45492ff0815a488744d61efcecba7 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/RiderInitializer.cs b/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/RiderInitializer.cs deleted file mode 100644 index 366a2a8b3..000000000 --- a/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/RiderInitializer.cs +++ /dev/null @@ -1,47 +0,0 @@ -using System; -using System.IO; -using System.Linq; -using System.Reflection; -using UnityEngine; - -namespace Packages.Rider.Editor -{ - internal class RiderInitializer - { - public void Initialize(string editorPath) - { - if (EditorPluginInterop.EditorPluginIsLoadedFromAssets()) - { - Debug.LogError($"Please delete {EditorPluginInterop.GetEditorPluginAssembly().Location}. Unity 2019.2+ loads it directly from Rider installation."); - return; - } - - var dllName = "JetBrains.Rider.Unity.Editor.Plugin.Full.Repacked.dll"; - var relPath = "../../plugins/rider-unity/EditorPlugin"; - if (SystemInfo.operatingSystemFamily == OperatingSystemFamily.MacOSX) - relPath = "Contents/plugins/rider-unity/EditorPlugin"; - var dllFile = new FileInfo(Path.Combine(Path.Combine(editorPath, relPath), dllName)); - - if (dllFile.Exists) - { - // doesn't lock assembly on disk - var bytes = File.ReadAllBytes(dllFile.FullName); - var pdbFile = new FileInfo(Path.ChangeExtension(dllFile.FullName, ".pdb")); - if (pdbFile.Exists) - { - AppDomain.CurrentDomain.Load(bytes, File.ReadAllBytes(pdbFile.FullName)); - } - else - { - AppDomain.CurrentDomain.Load(bytes); - // AppDomain.CurrentDomain.Load(AssemblyName.GetAssemblyName(dllFile.FullName)); // use this for external source debug - } - EditorPluginInterop.InitEntryPoint(); - } - else - { - Debug.Log((object) ($"Unable to find Rider EditorPlugin {dllFile.FullName} for Unity ")); - } - } - } -} diff --git a/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/RiderInitializer.cs.meta b/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/RiderInitializer.cs.meta deleted file mode 100644 index 11d46bcb4..000000000 --- a/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/RiderInitializer.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: f5a0cc9645f0e2d4fb816156dcf3f4dd -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/RiderScriptEditor.cs b/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/RiderScriptEditor.cs deleted file mode 100644 index 441c9204e..000000000 --- a/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/RiderScriptEditor.cs +++ /dev/null @@ -1,194 +0,0 @@ -using System; -using System.Diagnostics; -using System.IO; -using System.Linq; -using Unity.CodeEditor; -using UnityEditor; -using UnityEngine; - -namespace Packages.Rider.Editor -{ - [InitializeOnLoad] - public class RiderScriptEditor : IExternalCodeEditor - { - IDiscovery m_Discoverability; - IGenerator m_ProjectGeneration; - RiderInitializer m_Initiliazer = new RiderInitializer(); - - static RiderScriptEditor() - { - var projectGeneration = new ProjectGeneration(); - var editor = new RiderScriptEditor(new Discovery(), projectGeneration); - CodeEditor.Register(editor); - if (IsRiderInstallation(CodeEditor.CurrentEditorInstallation)) - { - editor.CreateIfDoesntExist(); - editor.m_Initiliazer.Initialize(CodeEditor.CurrentEditorInstallation); - } - } - - const string unity_generate_all = "unity_generate_all_csproj"; - static bool IsOSX => Application.platform == RuntimePlatform.OSXEditor; - - public RiderScriptEditor(IDiscovery discovery, IGenerator projectGeneration) - { - m_Discoverability = discovery; - m_ProjectGeneration = projectGeneration; - } - - public void OnGUI() - { - var prevGenerate = EditorPrefs.GetBool(unity_generate_all, false); - var generateAll = EditorGUILayout.Toggle("Generate all .csproj files.", prevGenerate); - if (generateAll != prevGenerate) - { - EditorPrefs.SetBool(unity_generate_all, generateAll); - } - - m_ProjectGeneration.GenerateAll(generateAll); - } - - public void SyncIfNeeded(string[] addedFiles, string[] deletedFiles, string[] movedFiles, string[] movedFromFiles, - string[] importedFiles) - { - m_ProjectGeneration.SyncIfNeeded(addedFiles.Union(deletedFiles).Union(movedFiles).Union(movedFromFiles), - importedFiles); - } - - public void SyncAll() - { - AssetDatabase.Refresh(); - m_ProjectGeneration.Sync(); - } - - public void Initialize(string editorInstallationPath) - { - } - - public bool OpenProject(string path, int line, int column) - { - var fastOpenResult = EditorPluginInterop.OpenFileDllImplementation(path, line, column); - - if (fastOpenResult) - return true; - - if (IsOSX) - { - return OpenOSXApp(path, line, column); - } - - var solution = GetSolutionFile(path); // TODO: If solution file doesn't exist resync. - solution = solution == "" ? "" : $"\"{solution}\""; - var process = new Process - { - StartInfo = new ProcessStartInfo - { - FileName = CodeEditor.CurrentEditorInstallation, - Arguments = $"{solution} -l {line} \"{path}\"", - UseShellExecute = true, - } - }; - - process.Start(); - - return true; - } - - private bool OpenOSXApp(string path, int line, int column) - { - var solution = GetSolutionFile(path); // TODO: If solution file doesn't exist resync. - solution = solution == "" ? "" : $"\"{solution}\""; - var pathArguments = path == "" ? "" : $"-l {line} \"{path}\""; - var process = new Process - { - StartInfo = new ProcessStartInfo - { - FileName = "open", - Arguments = $"\"{CodeEditor.CurrentEditorInstallation}\" --args {solution} {pathArguments}", - CreateNoWindow = true, - UseShellExecute = true, - } - }; - - process.Start(); - - return true; - } - - private string GetSolutionFile(string path) - { - if (UnityEditor.Unsupported.IsDeveloperBuild()) - { - var baseFolder = GetBaseUnityDeveloperFolder(); - var lowerPath = path.ToLowerInvariant(); - - bool isUnitySourceCode = lowerPath.Contains((baseFolder + "/Runtime").ToLowerInvariant()); - - if (lowerPath.Contains((baseFolder + "/Editor").ToLowerInvariant())) - { - isUnitySourceCode = true; - } - - if (isUnitySourceCode) - { - return Path.Combine(baseFolder, "Projects/CSharp/Unity.CSharpProjects.gen.sln"); - } - } - - var solutionFile = m_ProjectGeneration.SolutionFile(); - if (File.Exists(solutionFile)) - { - return solutionFile; - } - - return ""; - } - - static string GetBaseUnityDeveloperFolder() - { - return Directory.GetParent(EditorApplication.applicationPath).Parent.Parent.FullName; - } - - public bool TryGetInstallationForPath(string editorPath, out CodeEditor.Installation installation) - { - if (IsRiderInstallation(editorPath)) - { - try - { - installation = Installations.First(inst => inst.Path == editorPath); - } - catch (InvalidOperationException) - { - installation = new CodeEditor.Installation {Name = editorPath, Path = editorPath}; - } - - return true; - } - - installation = default; - return false; - } - - public static bool IsRiderInstallation(string path) - { - if (string.IsNullOrEmpty(path)) - { - return false; - } - - var fileInfo = new FileInfo(path); - var filename = fileInfo.Name.ToLower(); - return filename.StartsWith("rider"); - } - - public CodeEditor.Installation[] Installations => m_Discoverability.PathCallback(); - - public void CreateIfDoesntExist() - { - if (!m_ProjectGeneration.HasSolutionBeenGenerated()) - { - m_ProjectGeneration.Sync(); - } - } - } -} \ No newline at end of file diff --git a/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/RiderScriptEditor.cs.meta b/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/RiderScriptEditor.cs.meta deleted file mode 100644 index 167648364..000000000 --- a/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/RiderScriptEditor.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: c4095d72f77fbb64ea39b8b3ca246622 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/UnityUtils.cs b/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/UnityUtils.cs deleted file mode 100644 index 57a4fe7b3..000000000 --- a/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/UnityUtils.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; -using System.Linq; -using UnityEngine; - -namespace Packages.Rider.Editor -{ - public static class UnityUtils - { - internal static readonly string UnityApplicationVersion = Application.unityVersion; - - public static Version UnityVersion - { - get - { - var ver = UnityApplicationVersion.Split(".".ToCharArray()).Take(2).Aggregate((a, b) => a + "." + b); - return new Version(ver); - } - } - } -} \ No newline at end of file diff --git a/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/UnityUtils.cs.meta b/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/UnityUtils.cs.meta deleted file mode 100644 index 7bc631947..000000000 --- a/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/UnityUtils.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 43b72437d9bb4d842b70e9251032ac80 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/Utility.cs b/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/Utility.cs deleted file mode 100644 index 4d4a18074..000000000 --- a/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/Utility.cs +++ /dev/null @@ -1,36 +0,0 @@ -namespace Packages.Rider.Editor -{ - public static class Utility - { - public static string FileNameWithoutExtension(string path) - { - if (string.IsNullOrEmpty(path)) - { - return ""; - } - - var indexOfDot = -1; - var indexOfSlash = 0; - for (var i = path.Length - 1; i >= 0; i--) - { - if (indexOfDot == -1 && path[i] == '.') - { - indexOfDot = i; - } - - if (indexOfSlash == 0 && path[i] == '/' || path[i] == '\\') - { - indexOfSlash = i + 1; - break; - } - } - - if (indexOfDot == -1) - { - indexOfDot = path.Length - 1; - } - - return path.Substring(indexOfSlash, indexOfDot - indexOfSlash); - } - } -} \ No newline at end of file diff --git a/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/Utility.cs.meta b/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/Utility.cs.meta deleted file mode 100644 index 40647722c..000000000 --- a/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/Utility.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 28669e4aa09773647a980915d68714fb -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/com.unity.ide.rider.asmdef b/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/com.unity.ide.rider.asmdef deleted file mode 100644 index 2e652fa9c..000000000 --- a/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/com.unity.ide.rider.asmdef +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Unity.Rider.Editor", - "references": [], - "optionalUnityReferences": [], - "includePlatforms": [ - "Editor" - ], - "excludePlatforms": [] -} diff --git a/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/com.unity.ide.rider.asmdef.meta b/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/com.unity.ide.rider.asmdef.meta deleted file mode 100644 index 7a89700b9..000000000 --- a/Library/PackageCache/com.unity.ide.rider@1.0.8/Rider/Editor/com.unity.ide.rider.asmdef.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: d528c8c98d269ca44a06cd9624a03945 -AssemblyDefinitionImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.ide.rider@1.0.8/package.json b/Library/PackageCache/com.unity.ide.rider@1.0.8/package.json deleted file mode 100644 index 108491f0e..000000000 --- a/Library/PackageCache/com.unity.ide.rider@1.0.8/package.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "name": "com.unity.ide.rider", - "displayName": "Rider Editor", - "description": "Code editor integration for supporting Rider as code editor for unity. Adds support for generating csproj files for code completion, auto discovery of installations, etc.", - "version": "1.0.8", - "unity": "2019.2", - "unityRelease": "0a12", - "dependencies": { - "com.unity.ext.nunit": "1.0.0" - }, - "relatedPackages": { - "com.unity.ide.rider.tests": "1.0.5" - }, - "repository": { - "type": "git", - "url": "git@github.cds.internal.unity3d.com:unity/com.unity.ide.rider.git", - "revision": "49ead695a2d979f8286dd52b5940b409b7d34536" - } -} diff --git a/Library/PackageCache/com.unity.ide.rider@1.0.8/package.json.meta b/Library/PackageCache/com.unity.ide.rider@1.0.8/package.json.meta deleted file mode 100644 index 11bcd7b98..000000000 --- a/Library/PackageCache/com.unity.ide.rider@1.0.8/package.json.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 66c95bb3c74257f41bae2622511dc02d -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.ide.vscode@1.0.7/CHANGELOG.md b/Library/PackageCache/com.unity.ide.vscode@1.0.7/CHANGELOG.md deleted file mode 100644 index a41090443..000000000 --- a/Library/PackageCache/com.unity.ide.vscode@1.0.7/CHANGELOG.md +++ /dev/null @@ -1,28 +0,0 @@ -# Code Editor Package for Visual Studio Code - -## [1.0.7] - 2019-05-15 - -Fix various OSX specific issues. -Generate project on load if they are not generated. -Fix path recognition. - - -## [1.0.6] - 2019-04-30 - -Ensure asset database is refreshed when generating csproj and solution files. - -## [1.0.5] - 2019-04-27 - -Add support for generating all csproj files. - -## [1.0.4] - 2019-04-18 - -Fix relative package paths. -Fix opening editor on mac. -Add %LOCALAPPDATA%/Programs to the path of install paths. - -## [1.0.3] - 2019-01-01 - -### This is the first release of *Unity Package vscode_editor*. - -Using the newly created api to integrate Visual Studio Code with Unity. diff --git a/Library/PackageCache/com.unity.ide.vscode@1.0.7/CHANGELOG.md.meta b/Library/PackageCache/com.unity.ide.vscode@1.0.7/CHANGELOG.md.meta deleted file mode 100644 index 65aea0bb0..000000000 --- a/Library/PackageCache/com.unity.ide.vscode@1.0.7/CHANGELOG.md.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 4ddcdc3816429494a8bea67e973875f7 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.ide.vscode@1.0.7/CONTRIBUTING.md b/Library/PackageCache/com.unity.ide.vscode@1.0.7/CONTRIBUTING.md deleted file mode 100644 index 576d09634..000000000 --- a/Library/PackageCache/com.unity.ide.vscode@1.0.7/CONTRIBUTING.md +++ /dev/null @@ -1,6 +0,0 @@ -# Contributing - -## All contributions are subject to the [Unity Contribution Agreement(UCA)](https://unity3d.com/legal/licenses/Unity_Contribution_Agreement) -By making a pull request, you are confirming agreement to the terms and conditions of the UCA, including that your Contributions are your original creation and that you have complete right and authority to make your Contributions. - -## Once you have a change ready following these ground rules. Simply make a pull request \ No newline at end of file diff --git a/Library/PackageCache/com.unity.ide.vscode@1.0.7/CONTRIBUTING.md.meta b/Library/PackageCache/com.unity.ide.vscode@1.0.7/CONTRIBUTING.md.meta deleted file mode 100644 index 31e836f7c..000000000 --- a/Library/PackageCache/com.unity.ide.vscode@1.0.7/CONTRIBUTING.md.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: fcb9be00baf924c4183fc0313e6185c5 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.ide.vscode@1.0.7/Documentation~/README.md b/Library/PackageCache/com.unity.ide.vscode@1.0.7/Documentation~/README.md deleted file mode 100644 index d0a565f7a..000000000 --- a/Library/PackageCache/com.unity.ide.vscode@1.0.7/Documentation~/README.md +++ /dev/null @@ -1,4 +0,0 @@ -# Code Editor Package for Visual Studio Code - -This package is not intended to be modified by users. -Nor does it provide any api intended to be included in user projects. \ No newline at end of file diff --git a/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor.meta b/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor.meta deleted file mode 100644 index 568fa030b..000000000 --- a/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 58628227479c34542ac8c5193ccced84 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/ProjectGeneration.cs b/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/ProjectGeneration.cs deleted file mode 100644 index 1f16d96c3..000000000 --- a/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/ProjectGeneration.cs +++ /dev/null @@ -1,837 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Security; -using System.Security.Cryptography; -using System.Text; -using System.Text.RegularExpressions; -using UnityEditor; -using UnityEditor.Compilation; -using UnityEditor.PackageManager; -using UnityEditorInternal; -using UnityEngine; -using UnityEngine.Profiling; - -namespace VSCodeEditor -{ - public interface IGenerator { - bool SyncIfNeeded(IEnumerable affectedFiles, IEnumerable reimportedFiles); - void Sync(); - bool HasSolutionBeenGenerated(); - string SolutionFile(); - string ProjectDirectory { get; } - void GenerateAll(bool generateAll); - } - - public interface IAssemblyNameProvider - { - string GetAssemblyNameFromScriptPath(string path); - IEnumerable GetAllAssemblies(Func shouldFileBePartOfSolution); - IEnumerable GetAllAssetPaths(); - UnityEditor.PackageManager.PackageInfo FindForAssetPath(string assetPath); - } - - public struct TestSettings { - public bool ShouldSync; - public Dictionary SyncPath; - } - - class AssemblyNameProvider : IAssemblyNameProvider - { - public string GetAssemblyNameFromScriptPath(string path) - { - return CompilationPipeline.GetAssemblyNameFromScriptPath(path); - } - - public IEnumerable GetAllAssemblies(Func shouldFileBePartOfSolution) - { - return CompilationPipeline.GetAssemblies().Where(i => 0 < i.sourceFiles.Length && i.sourceFiles.Any(shouldFileBePartOfSolution)); - } - - public IEnumerable GetAllAssetPaths() - { - return AssetDatabase.GetAllAssetPaths(); - } - - public UnityEditor.PackageManager.PackageInfo FindForAssetPath(string assetPath) - { - return UnityEditor.PackageManager.PackageInfo.FindForAssetPath(assetPath); - } - } - - - public class ProjectGeneration : IGenerator - { - enum ScriptingLanguage - { - None, - CSharp - } - - public static readonly string MSBuildNamespaceUri = "http://schemas.microsoft.com/developer/msbuild/2003"; - - const string k_WindowsNewline = "\r\n"; - - const string k_SettingsJson = @"{ - ""files.exclude"": - { - ""**/.DS_Store"":true, - ""**/.git"":true, - ""**/.gitignore"":true, - ""**/.gitmodules"":true, - ""**/*.booproj"":true, - ""**/*.pidb"":true, - ""**/*.suo"":true, - ""**/*.user"":true, - ""**/*.userprefs"":true, - ""**/*.unityproj"":true, - ""**/*.dll"":true, - ""**/*.exe"":true, - ""**/*.pdf"":true, - ""**/*.mid"":true, - ""**/*.midi"":true, - ""**/*.wav"":true, - ""**/*.gif"":true, - ""**/*.ico"":true, - ""**/*.jpg"":true, - ""**/*.jpeg"":true, - ""**/*.png"":true, - ""**/*.psd"":true, - ""**/*.tga"":true, - ""**/*.tif"":true, - ""**/*.tiff"":true, - ""**/*.3ds"":true, - ""**/*.3DS"":true, - ""**/*.fbx"":true, - ""**/*.FBX"":true, - ""**/*.lxo"":true, - ""**/*.LXO"":true, - ""**/*.ma"":true, - ""**/*.MA"":true, - ""**/*.obj"":true, - ""**/*.OBJ"":true, - ""**/*.asset"":true, - ""**/*.cubemap"":true, - ""**/*.flare"":true, - ""**/*.mat"":true, - ""**/*.meta"":true, - ""**/*.prefab"":true, - ""**/*.unity"":true, - ""build/"":true, - ""Build/"":true, - ""Library/"":true, - ""library/"":true, - ""obj/"":true, - ""Obj/"":true, - ""ProjectSettings/"":true, - ""temp/"":true, - ""Temp/"":true - } -}"; - - /// - /// Map source extensions to ScriptingLanguages - /// - static readonly Dictionary k_BuiltinSupportedExtensions = new Dictionary - { - { "cs", ScriptingLanguage.CSharp }, - { "uxml", ScriptingLanguage.None }, - { "uss", ScriptingLanguage.None }, - { "shader", ScriptingLanguage.None }, - { "compute", ScriptingLanguage.None }, - { "cginc", ScriptingLanguage.None }, - { "hlsl", ScriptingLanguage.None }, - { "glslinc", ScriptingLanguage.None } - }; - - string m_SolutionProjectEntryTemplate = string.Join("\r\n", @"Project(""{{{0}}}"") = ""{1}"", ""{2}"", ""{{{3}}}""", @"EndProject").Replace(" ", "\t"); - - string m_SolutionProjectConfigurationTemplate = string.Join("\r\n", @" {{{0}}}.Debug|Any CPU.ActiveCfg = Debug|Any CPU", @" {{{0}}}.Debug|Any CPU.Build.0 = Debug|Any CPU", @" {{{0}}}.Release|Any CPU.ActiveCfg = Release|Any CPU", @" {{{0}}}.Release|Any CPU.Build.0 = Release|Any CPU").Replace(" ", "\t"); - - static readonly string[] k_ReimportSyncExtensions = { ".dll", ".asmdef" }; - - /// - /// Map ScriptingLanguages to project extensions - /// - /*static readonly Dictionary k_ProjectExtensions = new Dictionary - { - { ScriptingLanguage.CSharp, ".csproj" }, - { ScriptingLanguage.None, ".csproj" }, - };*/ - - static readonly Regex k_ScriptReferenceExpression = new Regex( - @"^Library.ScriptAssemblies.(?(?.*)\.dll$)", - RegexOptions.Compiled | RegexOptions.IgnoreCase); - - string[] m_ProjectSupportedExtensions = new string[0]; - public string ProjectDirectory { get; } - bool m_ShouldGenerateAll; - - public void GenerateAll(bool generateAll) - { - m_ShouldGenerateAll = generateAll; - } - - public TestSettings Settings { get; set; } - - readonly string m_ProjectName; - readonly IAssemblyNameProvider m_AssemblyNameProvider; - const string k_ToolsVersion = "4.0"; - const string k_ProductVersion = "10.0.20506"; - const string k_BaseDirectory = "."; - const string k_TargetFrameworkVersion = "v4.7.1"; - const string k_TargetLanguageVersion = "latest"; - - public ProjectGeneration() : this(Directory.GetParent(Application.dataPath).FullName, new AssemblyNameProvider()) - { - } - - public ProjectGeneration(string tempDirectory) : this(tempDirectory, new AssemblyNameProvider()) { - } - - public ProjectGeneration(string tempDirectory, IAssemblyNameProvider assemblyNameProvider) { - Settings = new TestSettings { ShouldSync = true }; - ProjectDirectory = tempDirectory.Replace('\\', '/'); - m_ProjectName = Path.GetFileName(ProjectDirectory); - m_AssemblyNameProvider = assemblyNameProvider; - } - - /// - /// Syncs the scripting solution if any affected files are relevant. - /// - /// - /// Whether the solution was synced. - /// - /// - /// A set of files whose status has changed - /// - /// - /// A set of files that got reimported - /// - public bool SyncIfNeeded(IEnumerable affectedFiles, IEnumerable reimportedFiles) - { - Profiler.BeginSample("SolutionSynchronizerSync"); - SetupProjectSupportedExtensions(); - - // Don't sync if we haven't synced before - if (HasSolutionBeenGenerated() && HasFilesBeenModified(affectedFiles, reimportedFiles)) - { - Sync(); - - Profiler.EndSample(); - return true; - } - - Profiler.EndSample(); - return false; - } - - bool HasFilesBeenModified(IEnumerable affectedFiles, IEnumerable reimportedFiles) - { - return affectedFiles.Any(ShouldFileBePartOfSolution) || reimportedFiles.Any(ShouldSyncOnReimportedAsset); - } - - static bool ShouldSyncOnReimportedAsset(string asset) - { - return k_ReimportSyncExtensions.Contains(new FileInfo(asset).Extension); - } - - public void Sync() - { - SetupProjectSupportedExtensions(); - GenerateAndWriteSolutionAndProjects(); - } - - public bool HasSolutionBeenGenerated() - { - return File.Exists(SolutionFile()); - } - - void SetupProjectSupportedExtensions() - { - m_ProjectSupportedExtensions = EditorSettings.projectGenerationUserExtensions; - } - - bool ShouldFileBePartOfSolution(string file) - { - string extension = Path.GetExtension(file); - - // Exclude files coming from packages except if they are internalized. - if (!m_ShouldGenerateAll && IsInternalizedPackagePath(file)) - { - return false; - } - - // Dll's are not scripts but still need to be included.. - if (extension == ".dll") - return true; - - if (file.ToLower().EndsWith(".asmdef")) - return true; - - return IsSupportedExtension(extension); - } - - bool IsSupportedExtension(string extension) - { - extension = extension.TrimStart('.'); - if (k_BuiltinSupportedExtensions.ContainsKey(extension)) - return true; - if (m_ProjectSupportedExtensions.Contains(extension)) - return true; - return false; - } - - static ScriptingLanguage ScriptingLanguageFor(Assembly island) - { - return ScriptingLanguageFor(GetExtensionOfSourceFiles(island.sourceFiles)); - } - - static string GetExtensionOfSourceFiles(string[] files) - { - return files.Length > 0 ? GetExtensionOfSourceFile(files[0]) : "NA"; - } - - static string GetExtensionOfSourceFile(string file) - { - var ext = Path.GetExtension(file).ToLower(); - ext = ext.Substring(1); //strip dot - return ext; - } - - static ScriptingLanguage ScriptingLanguageFor(string extension) - { - return k_BuiltinSupportedExtensions.TryGetValue(extension.TrimStart('.'), out var result) - ? result - : ScriptingLanguage.None; - } - - public void GenerateAndWriteSolutionAndProjects() - { - // Only synchronize islands that have associated source files and ones that we actually want in the project. - // This also filters out DLLs coming from .asmdef files in packages. - var assemblies = m_AssemblyNameProvider.GetAllAssemblies(ShouldFileBePartOfSolution); - - var allAssetProjectParts = GenerateAllAssetProjectParts(); - - var monoIslands = assemblies.ToList(); - - SyncSolution(monoIslands); - var allProjectIslands = RelevantIslandsForMode(monoIslands).ToList(); - foreach (Assembly assembly in allProjectIslands) - { - var responseFileData = ParseResponseFileData(assembly); - SyncProject(assembly, allAssetProjectParts, responseFileData, allProjectIslands); - } - - if (Settings.ShouldSync) - { - WriteVSCodeSettingsFiles(); - } - } - - IEnumerable ParseResponseFileData(Assembly assembly) - { - var systemReferenceDirectories = CompilationPipeline.GetSystemAssemblyDirectories(assembly.compilerOptions.ApiCompatibilityLevel); - - Dictionary responseFilesData = assembly.compilerOptions.ResponseFiles.ToDictionary(x => x, x => CompilationPipeline.ParseResponseFile( - Path.Combine(ProjectDirectory, x), - ProjectDirectory, - systemReferenceDirectories - )); - - Dictionary responseFilesWithErrors = responseFilesData.Where(x => x.Value.Errors.Any()) - .ToDictionary(x => x.Key, x => x.Value); - - if (responseFilesWithErrors.Any()) - { - foreach (var error in responseFilesWithErrors) - foreach (var valueError in error.Value.Errors) - { - Debug.LogError($"{error.Key} Parse Error : {valueError}"); - } - } - - return responseFilesData.Select(x => x.Value); - } - - Dictionary GenerateAllAssetProjectParts() - { - Dictionary stringBuilders = new Dictionary(); - - foreach (string asset in m_AssemblyNameProvider.GetAllAssetPaths()) - { - // Exclude files coming from packages except if they are internalized. - // TODO: We need assets from the assembly API - if (!m_ShouldGenerateAll && IsInternalizedPackagePath(asset)) - { - continue; - } - - string extension = Path.GetExtension(asset); - if (IsSupportedExtension(extension) && ScriptingLanguage.None == ScriptingLanguageFor(extension)) - { - // Find assembly the asset belongs to by adding script extension and using compilation pipeline. - var assemblyName = m_AssemblyNameProvider.GetAssemblyNameFromScriptPath(asset + ".cs"); - - if (string.IsNullOrEmpty(assemblyName)) - { - continue; - } - - assemblyName = Utility.FileNameWithoutExtension(assemblyName); - - if (!stringBuilders.TryGetValue(assemblyName, out var projectBuilder)) - { - projectBuilder = new StringBuilder(); - stringBuilders[assemblyName] = projectBuilder; - } - - projectBuilder.Append(" ").Append(k_WindowsNewline); - } - } - - var result = new Dictionary(); - - foreach (var entry in stringBuilders) - result[entry.Key] = entry.Value.ToString(); - - return result; - } - - bool IsInternalizedPackagePath(string file) - { - if (string.IsNullOrWhiteSpace(file)) - { - return false; - } - - var packageInfo = m_AssemblyNameProvider.FindForAssetPath(file); - if (packageInfo == null) { - return false; - } - var packageSource = packageInfo.source; - return packageSource != PackageSource.Embedded && packageSource != PackageSource.Local; - } - - void SyncProject( - Assembly island, - Dictionary allAssetsProjectParts, - IEnumerable responseFilesData, - List allProjectIslands) - { - SyncProjectFileIfNotChanged(ProjectFile(island), ProjectText(island, allAssetsProjectParts, responseFilesData, allProjectIslands)); - } - - void SyncProjectFileIfNotChanged(string path, string newContents) - { - if (Path.GetExtension(path) == ".csproj") - { - //newContents = AssetPostprocessingInternal.CallOnGeneratedCSProject(path, newContents); TODO: Call specific code here - } - - SyncFileIfNotChanged(path, newContents); - } - - void SyncSolutionFileIfNotChanged(string path, string newContents) - { - //newContents = AssetPostprocessingInternal.CallOnGeneratedSlnSolution(path, newContents); TODO: Call specific code here - - SyncFileIfNotChanged(path, newContents); - } - - void SyncFileIfNotChanged(string filename, string newContents) - { - if (File.Exists(filename) && - newContents == File.ReadAllText(filename)) - { - return; - } - if (Settings.ShouldSync) - { - File.WriteAllText(filename, newContents, Encoding.UTF8); - } - else - { - var utf8 = Encoding.UTF8; - byte[] utfBytes = utf8.GetBytes(newContents); - Settings.SyncPath[filename] = utf8.GetString(utfBytes, 0, utfBytes.Length); - } - } - - string ProjectText(Assembly assembly, - Dictionary allAssetsProjectParts, - IEnumerable responseFilesData, - List allProjectIslands) - { - var projectBuilder = new StringBuilder(ProjectHeader(assembly, responseFilesData)); - var references = new List(); - var projectReferences = new List(); - - foreach (string file in assembly.sourceFiles) - { - if (!ShouldFileBePartOfSolution(file)) - continue; - - var extension = Path.GetExtension(file).ToLower(); - var fullFile = EscapedRelativePathFor(file); - if (".dll" != extension) - { - projectBuilder.Append(" ").Append(k_WindowsNewline); - } - else - { - references.Add(fullFile); - } - } - - var assemblyName = Utility.FileNameWithoutExtension(assembly.outputPath); - - // Append additional non-script files that should be included in project generation. - if (allAssetsProjectParts.TryGetValue(assemblyName, out var additionalAssetsForProject)) - projectBuilder.Append(additionalAssetsForProject); - - var islandRefs = references.Union(assembly.allReferences); - - foreach (string reference in islandRefs) - { - if (reference.EndsWith("/UnityEditor.dll", StringComparison.Ordinal) - || reference.EndsWith("/UnityEngine.dll", StringComparison.Ordinal) - || reference.EndsWith("\\UnityEditor.dll", StringComparison.Ordinal) - || reference.EndsWith("\\UnityEngine.dll", StringComparison.Ordinal)) - continue; - - var match = k_ScriptReferenceExpression.Match(reference); - if (match.Success) - { - // assume csharp language - // Add a reference to a project except if it's a reference to a script assembly - // that we are not generating a project for. This will be the case for assemblies - // coming from .assembly.json files in non-internalized packages. - var dllName = match.Groups["dllname"].Value; - if (allProjectIslands.Any(i => Path.GetFileName(i.outputPath) == dllName)) - { - projectReferences.Add(match); - continue; - } - } - - string fullReference = Path.IsPathRooted(reference) ? reference : Path.Combine(ProjectDirectory, reference); - - AppendReference(fullReference, projectBuilder); - } - - var responseRefs = responseFilesData.SelectMany(x => x.FullPathReferences.Select(r => r)); - foreach (var reference in responseRefs) - { - AppendReference(reference, projectBuilder); - } - - if (0 < projectReferences.Count) - { - projectBuilder.AppendLine(" "); - projectBuilder.AppendLine(" "); - foreach (Match reference in projectReferences) - { - var referencedProject = reference.Groups["project"].Value; - - projectBuilder.Append(" ").Append(k_WindowsNewline); - projectBuilder.Append(" {").Append(ProjectGuid(Path.Combine("Temp", reference.Groups["project"].Value + ".dll"))).Append("}").Append(k_WindowsNewline); - projectBuilder.Append(" ").Append(referencedProject).Append("").Append(k_WindowsNewline); - projectBuilder.AppendLine(" "); - } - } - - projectBuilder.Append(ProjectFooter()); - return projectBuilder.ToString(); - } - - static void AppendReference(string fullReference, StringBuilder projectBuilder) - { - //replace \ with / and \\ with / - var escapedFullPath = SecurityElement.Escape(fullReference); - escapedFullPath = escapedFullPath.Replace("\\", "/"); - escapedFullPath = escapedFullPath.Replace("\\\\", "/"); - projectBuilder.Append(" ").Append(k_WindowsNewline); - projectBuilder.Append(" ").Append(escapedFullPath).Append("").Append(k_WindowsNewline); - projectBuilder.Append(" ").Append(k_WindowsNewline); - } - - public string ProjectFile(Assembly assembly) - { - return Path.Combine(ProjectDirectory, $"{Utility.FileNameWithoutExtension(assembly.outputPath)}.csproj"); - } - - public string SolutionFile() - { - return Path.Combine(ProjectDirectory, $"{m_ProjectName}.sln"); - } - - string ProjectHeader( - Assembly island, - IEnumerable responseFilesData - ) - { - var arguments = new object[] - { - k_ToolsVersion, k_ProductVersion, ProjectGuid(island.outputPath), - InternalEditorUtility.GetEngineAssemblyPath(), - InternalEditorUtility.GetEditorAssemblyPath(), - string.Join(";", new[] { "DEBUG", "TRACE" }.Concat(EditorUserBuildSettings.activeScriptCompilationDefines).Concat(island.defines).Concat(responseFilesData.SelectMany(x => x.Defines)).Distinct().ToArray()), - MSBuildNamespaceUri, - Utility.FileNameWithoutExtension(island.outputPath), - EditorSettings.projectGenerationRootNamespace, - k_TargetFrameworkVersion, - k_TargetLanguageVersion, - k_BaseDirectory, - island.compilerOptions.AllowUnsafeCode | responseFilesData.Any(x => x.Unsafe) - }; - - try - { - return string.Format(GetProjectHeaderTemplate(), arguments); - } - catch (Exception) - { - throw new NotSupportedException("Failed creating c# project because the c# project header did not have the correct amount of arguments, which is " + arguments.Length); - } - } - - static string GetSolutionText() - { - return string.Join("\r\n", @"", @"Microsoft Visual Studio Solution File, Format Version {0}", @"# Visual Studio {1}", @"{2}", @"Global", @" GlobalSection(SolutionConfigurationPlatforms) = preSolution", @" Debug|Any CPU = Debug|Any CPU", @" Release|Any CPU = Release|Any CPU", @" EndGlobalSection", @" GlobalSection(ProjectConfigurationPlatforms) = postSolution", @"{3}", @" EndGlobalSection", @" GlobalSection(SolutionProperties) = preSolution", @" HideSolutionNode = FALSE", @" EndGlobalSection", @"EndGlobal", @"").Replace(" ", "\t"); - } - - static string GetProjectFooterTemplate() - { - return string.Join("\r\n", @" ", @" ", @" ", @"", @""); - } - - static string GetProjectHeaderTemplate() - { - var header = new[] - { - @"", - @"", - @" ", - @" {10}", - @" ", - @" ", - @" Debug", - @" AnyCPU", - @" {1}", - @" 2.0", - @" {8}", - @" {{{2}}}", - @" Library", - @" Properties", - @" {7}", - @" {9}", - @" 512", - @" {11}", - @" ", - @" ", - @" true", - @" full", - @" false", - @" Temp\bin\Debug\", - @" {5}", - @" prompt", - @" 4", - @" 0169", - @" {12}", - @" ", - @" ", - @" pdbonly", - @" true", - @" Temp\bin\Release\", - @" prompt", - @" 4", - @" 0169", - @" {12}", - @" " - }; - - var forceExplicitReferences = new[] - { - @" ", - @" true", - @" true", - @" false", - @" false", - @" false", - @" " - }; - - var itemGroupStart = new[] - { - @" " - }; - - var footer = new[] - { - @" ", - @" {3}", - @" ", - @" ", - @" {4}", - @" ", - @" ", - @" ", - @"" - }; - - var text = header.Concat(forceExplicitReferences).Concat(itemGroupStart).Concat(footer).ToArray(); - return string.Join("\r\n", text); - } - - void SyncSolution(IEnumerable islands) - { - SyncSolutionFileIfNotChanged(SolutionFile(), SolutionText(islands)); - } - - string SolutionText(IEnumerable islands) - { - var fileversion = "11.00"; - var vsversion = "2010"; - - var relevantIslands = RelevantIslandsForMode(islands); - string projectEntries = GetProjectEntries(relevantIslands); - string projectConfigurations = string.Join(k_WindowsNewline, relevantIslands.Select(i => GetProjectActiveConfigurations(ProjectGuid(i.outputPath))).ToArray()); - return string.Format(GetSolutionText(), fileversion, vsversion, projectEntries, projectConfigurations); - } - - static IEnumerable RelevantIslandsForMode(IEnumerable islands) - { - IEnumerable relevantIslands = islands.Where(i => ScriptingLanguage.CSharp == ScriptingLanguageFor(i)); - return relevantIslands; - } - - /// - /// Get a Project("{guid}") = "MyProject", "MyProject.unityproj", "{projectguid}" - /// entry for each relevant language - /// - string GetProjectEntries(IEnumerable islands) - { - var projectEntries = islands.Select(i => string.Format( - m_SolutionProjectEntryTemplate, - SolutionGuid(i), Utility.FileNameWithoutExtension(i.outputPath), Path.GetFileName(ProjectFile(i)), ProjectGuid(i.outputPath) - )); - - return string.Join(k_WindowsNewline, projectEntries.ToArray()); - } - - /// - /// Generate the active configuration string for a given project guid - /// - string GetProjectActiveConfigurations(string projectGuid) - { - return string.Format( - m_SolutionProjectConfigurationTemplate, - projectGuid); - } - - string EscapedRelativePathFor(string file) - { - var projectDir = ProjectDirectory.Replace('/', '\\'); - file = file.Replace('/', '\\'); - var path = SkipPathPrefix(file, projectDir); - - var packageInfo = m_AssemblyNameProvider.FindForAssetPath(path.Replace('\\', '/')); - if (packageInfo != null) { - // We have to normalize the path, because the PackageManagerRemapper assumes - // dir seperators will be os specific. - var absolutePath = Path.GetFullPath(NormalizePath(path)).Replace('/', '\\'); - path = SkipPathPrefix(absolutePath, projectDir); - } - - return SecurityElement.Escape(path); - } - - static string SkipPathPrefix(string path, string prefix) - { - if (path.Replace("\\","/").StartsWith($"{prefix}/")) - return path.Substring(prefix.Length + 1); - return path; - } - - static string NormalizePath(string path) - { - if (Path.DirectorySeparatorChar == '\\') - return path.Replace('/', Path.DirectorySeparatorChar); - return path.Replace('\\', Path.DirectorySeparatorChar); - } - - - string ProjectGuid(string assembly) - { - return SolutionGuidGenerator.GuidForProject(m_ProjectName + Utility.FileNameWithoutExtension(assembly)); - } - - string SolutionGuid(Assembly island) - { - return SolutionGuidGenerator.GuidForSolution(m_ProjectName, GetExtensionOfSourceFiles(island.sourceFiles)); - } - - static string ProjectFooter() - { - return GetProjectFooterTemplate(); - } - - static string GetProjectExtension() - { - return ".csproj"; - } - - void WriteVSCodeSettingsFiles() - { - var vsCodeDirectory = Path.Combine(ProjectDirectory, ".vscode"); - - if (!Directory.Exists(vsCodeDirectory)) - Directory.CreateDirectory(vsCodeDirectory); - - var vsCodeSettingsJson = Path.Combine(vsCodeDirectory, "settings.json"); - - if (!File.Exists(vsCodeSettingsJson)) - File.WriteAllText(vsCodeSettingsJson, k_SettingsJson); - } - } - - public static class SolutionGuidGenerator - { - public static string GuidForProject(string projectName) - { - return ComputeGuidHashFor(projectName + "salt"); - } - - public static string GuidForSolution(string projectName, string sourceFileExtension) - { - if (sourceFileExtension.ToLower() == "cs") - // GUID for a C# class library: http://www.codeproject.com/Reference/720512/List-of-Visual-Studio-Project-Type-GUIDs - return "FAE04EC0-301F-11D3-BF4B-00C04F79EFBC"; - - return ComputeGuidHashFor(projectName); - } - - static string ComputeGuidHashFor(string input) - { - var hash = MD5.Create().ComputeHash(Encoding.Default.GetBytes(input)); - return HashAsGuid(HashToString(hash)); - } - - static string HashAsGuid(string hash) - { - var guid = hash.Substring(0, 8) + "-" + hash.Substring(8, 4) + "-" + hash.Substring(12, 4) + "-" + hash.Substring(16, 4) + "-" + hash.Substring(20, 12); - return guid.ToUpper(); - } - - static string HashToString(byte[] bs) - { - var sb = new StringBuilder(); - foreach (byte b in bs) - sb.Append(b.ToString("x2")); - return sb.ToString(); - } - } -} diff --git a/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/ProjectGeneration.cs.meta b/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/ProjectGeneration.cs.meta deleted file mode 100644 index f9fc72205..000000000 --- a/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/ProjectGeneration.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 58eb69fc39be3d040b984b4498a820bb -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/Unity.com.unity.vscode.Editor.asmdef b/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/Unity.com.unity.vscode.Editor.asmdef deleted file mode 100644 index 032da7cb5..000000000 --- a/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/Unity.com.unity.vscode.Editor.asmdef +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Unity.VSCode.Editor", - "references": [], - "optionalUnityReferences": [], - "includePlatforms": [ - "Editor" - ], - "excludePlatforms": [] -} diff --git a/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/Unity.com.unity.vscode.Editor.asmdef.meta b/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/Unity.com.unity.vscode.Editor.asmdef.meta deleted file mode 100644 index 4c94f56de..000000000 --- a/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/Unity.com.unity.vscode.Editor.asmdef.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 8b845b123ab418448a8be2935fa804e0 -AssemblyDefinitionImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/Utility.cs b/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/Utility.cs deleted file mode 100644 index d58485692..000000000 --- a/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/Utility.cs +++ /dev/null @@ -1,35 +0,0 @@ -namespace VSCodeEditor -{ - public static class Utility - { - public static string FileNameWithoutExtension(string path) - { - if (string.IsNullOrEmpty(path)) - { - return ""; - } - - var indexOfDot = -1; - var indexOfSlash = 0; - for (var i = path.Length - 1; i >= 0; i--) - { - if (indexOfDot == -1 && path[i] == '.') - { - indexOfDot = i; - } - if (indexOfSlash == 0 && path[i] == '/' || path[i] == '\\') - { - indexOfSlash = i + 1; - break; - } - } - - if (indexOfDot == -1) - { - indexOfDot = path.Length - 1; - } - - return path.Substring(indexOfSlash, indexOfDot - indexOfSlash); - } - } -} \ No newline at end of file diff --git a/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/Utility.cs.meta b/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/Utility.cs.meta deleted file mode 100644 index 3c278298d..000000000 --- a/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/Utility.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 1ac677c5ece15b443b2aaf7fae5842f7 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/VSCodeDiscovery.cs b/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/VSCodeDiscovery.cs deleted file mode 100644 index 9d2d1f2e7..000000000 --- a/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/VSCodeDiscovery.cs +++ /dev/null @@ -1,136 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using UnityEditor; -using UnityEngine; -using Unity.CodeEditor; - -namespace VSCodeEditor -{ - public interface IDiscovery { - CodeEditor.Installation[] PathCallback(); - } - - public class VSCodeDiscovery : IDiscovery { - List m_Installations; - - public CodeEditor.Installation[] PathCallback() - { - if (m_Installations == null) - { - m_Installations = new List(); - FindInstallationPaths(); - } - - return m_Installations.ToArray(); - } - - void FindInstallationPaths() - { - string[] possiblePaths = -#if UNITY_EDITOR_OSX - { - "/Applications/Visual Studio Code.app", - "/Applications/Visual Studio Code - Insiders.app" - }; -#elif UNITY_EDITOR_WIN - { - GetProgramFiles() + @"/Microsoft VS Code/bin/code.cmd", - GetProgramFiles() + @"/Microsoft VS Code/Code.exe", - GetProgramFiles() + @"/Microsoft VS Code Insiders/bin/code-insiders.cmd", - GetProgramFiles() + @"/Microsoft VS Code Insiders/Code.exe", - GetLocalAppData() + @"/Programs/Microsoft VS Code/bin/code.cmd", - GetLocalAppData() + @"/Programs/Microsoft VS Code/Code.exe", - GetLocalAppData() + @"/Programs/Microsoft VS Code Insiders/bin/code-insiders.cmd", - GetLocalAppData() + @"/Programs/Microsoft VS Code Insiders/Code.exe", - }; -#else - { - "/usr/bin/code", - "/bin/code", - "/usr/local/bin/code", - "/var/lib/flatpak/exports/bin/com.visualstudio.code", - "/snap/current/bin/code" - }; -#endif - var existingPaths = possiblePaths.Where(VSCodeExists).ToList(); - if (!existingPaths.Any()) - { - return; - } - - var lcp = GetLongestCommonPrefix(existingPaths); - switch (existingPaths.Count) - { - case 1: - { - var path = existingPaths.First(); - m_Installations = new List - { - new CodeEditor.Installation - { - Path = path, - Name = path.Contains("Insiders") - ? "Visual Studio Code Insiders" - : "Visual Studio Code" - } - }; - break; - } - case 2 when existingPaths.Any(path => !(path.Substring(lcp.Length).Contains("/") || path.Substring(lcp.Length).Contains("\\"))): - { - goto case 1; - } - default: - { - m_Installations = existingPaths.Select(path => new CodeEditor.Installation - { - Name = $"Visual Studio Code Insiders ({path.Substring(lcp.Length)})", - Path = path - }).ToList(); - - break; - } - } - } - -#if UNITY_EDITOR_WIN - static string GetProgramFiles() - { - return Environment.GetEnvironmentVariable("ProgramFiles")?.Replace("\\", "/"); - } - - static string GetLocalAppData() - { - return Environment.GetEnvironmentVariable("LOCALAPPDATA")?.Replace("\\", "/"); - } -#endif - - static string GetLongestCommonPrefix(List paths) - { - var baseLength = paths.First().Length; - for (var pathIndex = 1; pathIndex < paths.Count; pathIndex++) - { - baseLength = Math.Min(baseLength, paths[pathIndex].Length); - for (var i = 0; i < baseLength; i++) - { - if (paths[pathIndex][i] == paths[0][i]) continue; - - baseLength = i; - break; - } - } - return paths[0].Substring(0, baseLength); - } - - static bool VSCodeExists(string path) - { -#if UNITY_EDITOR_OSX - return System.IO.Directory.Exists(path); -#else - return new FileInfo(path).Exists; -#endif - } - } -} diff --git a/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/VSCodeDiscovery.cs.meta b/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/VSCodeDiscovery.cs.meta deleted file mode 100644 index cbeca1b70..000000000 --- a/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/VSCodeDiscovery.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 380f7372e785c7d408552e2c760d269d -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/VSCodeScriptEditor.cs b/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/VSCodeScriptEditor.cs deleted file mode 100644 index 82db8f8b6..000000000 --- a/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/VSCodeScriptEditor.cs +++ /dev/null @@ -1,209 +0,0 @@ -using System; -using System.IO; -using System.Linq; -using System.Collections.Generic; -using System.Diagnostics; -using UnityEditor; -using UnityEngine; -using Unity.CodeEditor; - -namespace VSCodeEditor { - [InitializeOnLoad] - public class VSCodeScriptEditor : IExternalCodeEditor - { - const string vscode_argument = "vscode_arguments"; - const string vscode_generate_all = "unity_generate_all_csproj"; - static readonly GUIContent k_ResetArguments = EditorGUIUtility.TrTextContent("Reset argument"); - string m_Arguments; - - IDiscovery m_Discoverability; - IGenerator m_ProjectGeneration; - - static readonly string[] k_SupportedFileNames = { "code.exe", "visualstudiocode.app", "visualstudiocode-insiders.app", "vscode.app", "code.app", "code.cmd", "code-insiders.cmd", "code", "com.visualstudio.code" }; - - static bool IsOSX => Application.platform == RuntimePlatform.OSXEditor; - - static string GetDefaultApp => EditorPrefs.GetString("kScriptsDefaultApp"); - - static string DefaultArgument { get; } = "\"$(ProjectPath)\" -g \"$(File)\":$(Line):$(Column)"; - string Arguments - { - get => m_Arguments ?? (m_Arguments = EditorPrefs.GetString(vscode_argument, DefaultArgument)); - set - { - m_Arguments = value; - EditorPrefs.SetString(vscode_argument, value); - } - } - - public bool TryGetInstallationForPath(string editorPath, out CodeEditor.Installation installation) - { - var lowerCasePath = editorPath.ToLower(); - var filename = Path.GetFileName(lowerCasePath).Replace(" ", ""); - var installations = Installations; - if (!k_SupportedFileNames.Contains(filename)) - { - installation = default; - return false; - } - if (!installations.Any()) - { - installation = new CodeEditor.Installation - { - Name = "Visual Studio Code", - Path = editorPath - }; - } - else - { - try - { - installation = installations.First(inst => inst.Path == editorPath); - } - catch (InvalidOperationException) - { - installation = new CodeEditor.Installation - { - Name = "Visual Studio Code", - Path = editorPath - }; - } - } - - return true; - } - - public void OnGUI() - { - Arguments = EditorGUILayout.TextField("External Script Editor Args", Arguments); - if (GUILayout.Button(k_ResetArguments, GUILayout.Width(120))) - { - Arguments = DefaultArgument; - } - var prevGenerate = EditorPrefs.GetBool(vscode_generate_all, false); - - var generateAll = EditorGUILayout.Toggle("Generate all .csproj files.", prevGenerate); - if (generateAll != prevGenerate) - { - EditorPrefs.SetBool(vscode_generate_all, generateAll); - } - m_ProjectGeneration.GenerateAll(generateAll); - } - - public void CreateIfDoesntExist() - { - if (!m_ProjectGeneration.HasSolutionBeenGenerated()) - { - m_ProjectGeneration.Sync(); - } - } - - public void SyncIfNeeded(string[] addedFiles, string[] deletedFiles, string[] movedFiles, string[] movedFromFiles, string[] importedFiles) - { - m_ProjectGeneration.SyncIfNeeded(addedFiles.Union(deletedFiles).Union(movedFiles).Union(movedFromFiles), importedFiles); - } - - public void SyncAll() - { - AssetDatabase.Refresh(); - m_ProjectGeneration.Sync(); - } - - public bool OpenProject(string path, int line, int column) - { - if (line == -1) - line = 1; - if (column == -1) - column = 0; - - string arguments; - if (Arguments != DefaultArgument) - { - arguments = m_ProjectGeneration.ProjectDirectory != path - ? CodeEditor.ParseArgument(Arguments, path, line, column) - : m_ProjectGeneration.ProjectDirectory; - } - else - { - arguments = $@"""{m_ProjectGeneration.ProjectDirectory}"""; - if (m_ProjectGeneration.ProjectDirectory != path && path.Length != 0) - { - arguments += $@" -g ""{path}"":{line}:{column}"; - } - } - - if (IsOSX) - { - return OpenOSX(arguments); - } - - var process = new Process - { - StartInfo = new ProcessStartInfo - { - FileName = GetDefaultApp, - Arguments = arguments, - WindowStyle = ProcessWindowStyle.Hidden, - CreateNoWindow = true, - UseShellExecute = true, - } - }; - - process.Start(); - return true; - } - - private bool OpenOSX(string arguments) - { - var process = new Process - { - StartInfo = new ProcessStartInfo - { - FileName = "open", - Arguments = $"\"{GetDefaultApp}\" --args {arguments}", - UseShellExecute = true, - } - }; - - process.Start(); - return true; - } - - public CodeEditor.Installation[] Installations => m_Discoverability.PathCallback(); - - public VSCodeScriptEditor(IDiscovery discovery, IGenerator projectGeneration) - { - m_Discoverability = discovery; - m_ProjectGeneration = projectGeneration; - } - - static VSCodeScriptEditor() - { - var editor = new VSCodeScriptEditor(new VSCodeDiscovery(), new ProjectGeneration()); - CodeEditor.Register(editor); - - if (IsVSCodeInstallation(CodeEditor.CurrentEditorInstallation)) - { - editor.CreateIfDoesntExist(); - } - } - - private static bool IsVSCodeInstallation(string path) - { - if (string.IsNullOrEmpty(path)) - { - return false; - } - - var lowerCasePath = path.ToLower(); - var filename = Path - .GetFileName(lowerCasePath.Replace('\\', Path.DirectorySeparatorChar).Replace('/', Path.DirectorySeparatorChar)) - .Replace(" ", ""); - return k_SupportedFileNames.Contains(filename); - } - - public void Initialize(string editorInstallationPath) - { - } - } -} diff --git a/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/VSCodeScriptEditor.cs.meta b/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/VSCodeScriptEditor.cs.meta deleted file mode 100644 index a0aa5a48e..000000000 --- a/Library/PackageCache/com.unity.ide.vscode@1.0.7/Editor/VSCodeScriptEditor.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: ac3f13489022aa34d861a0320a6917b9 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.ide.vscode@1.0.7/LICENSE.md b/Library/PackageCache/com.unity.ide.vscode@1.0.7/LICENSE.md deleted file mode 100644 index eb18dfb78..000000000 --- a/Library/PackageCache/com.unity.ide.vscode@1.0.7/LICENSE.md +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2019 Unity Technologies - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Library/PackageCache/com.unity.ide.vscode@1.0.7/LICENSE.md.meta b/Library/PackageCache/com.unity.ide.vscode@1.0.7/LICENSE.md.meta deleted file mode 100644 index 1c1e96e43..000000000 --- a/Library/PackageCache/com.unity.ide.vscode@1.0.7/LICENSE.md.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: c9aabac5924106d4790d7b3a924ca34d -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.ide.vscode@1.0.7/package.json b/Library/PackageCache/com.unity.ide.vscode@1.0.7/package.json deleted file mode 100644 index 3101eaafc..000000000 --- a/Library/PackageCache/com.unity.ide.vscode@1.0.7/package.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "name": "com.unity.ide.vscode", - "displayName": "Visual Studio Code Editor", - "description": "Code editor integration for supporting Visual Studio Code as code editor for unity. Adds support for generating csproj files for intellisense purposes, auto discovery of installations, etc.", - "version": "1.0.7", - "unity": "2019.2", - "unityRelease": "0a12", - "dependencies": {}, - "relatedPackages": { - "com.unity.ide.vscode.tests": "1.0.4" - }, - "repository": { - "type": "git", - "url": "git@github.cds.internal.unity3d.com:unity/com.unity.ide.vscode.git", - "revision": "1a72fa34367ef234a5d1ebba9858fef93118cce2" - } -} diff --git a/Library/PackageCache/com.unity.ide.vscode@1.0.7/package.json.meta b/Library/PackageCache/com.unity.ide.vscode@1.0.7/package.json.meta deleted file mode 100644 index 8e8353902..000000000 --- a/Library/PackageCache/com.unity.ide.vscode@1.0.7/package.json.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: ffc6271f08270b64ca0aae9c49235d81 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/CHANGELOG.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/CHANGELOG.md deleted file mode 100644 index f62a35221..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/CHANGELOG.md +++ /dev/null @@ -1,200 +0,0 @@ -# Changelog -All notable changes to this package will be documented in this file. - -The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) -and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - -## [2.1.6] - 2019-04-11 - -### Fixed -- Post-processing would crash if "Managed Stripping Level" was set to Medium or High. -- Serialization warnings on build. -- Removed unwanted garbage collection. - -## [2.1.5] - 2019-03-25 - -### Fixed -- LDR Color grading in gamma mode no longer produces banding artifacts on Mali GPUs on OpenGL ES2. -- Gamma mode no longer darken the screen with LWRP. - -## [2.1.4] - 2019-02-27 - -### Fixed -- Shader compilation errors with OpenGL ES2 and Switch. -- Proper viewport support on Builtin render pipelines. - -## [2.1.3] - 2019-01-30 - -### Fixed -- Color grading would output negative values in some cases and break rendering on some platforms. -- Custom effects with `allowInSceneView` set to `false` could make the scene view flicker to black. -- R8_SRGB error in 2019.1 when Depth of Field and Temporal Anti-aliasing are enabled at the same time. -- Auto-exposure compute shader on Metal/iOS. - -## [2.1.2] - 2018-12-05 - -### Fixed -- Made the package manager happy. - -## [2.1.1] - 2018-11-30 - -### Fixed -- Optimized volume texture blending. -- Switch compilation issues with 2019.1+. - -### Changed -- Chromatic aberration is now forced to "fast mode" when running on GLES2.0 platforms due to compatibility issues. - -## [2.1.0] - 2018-11-26 - -### Changed -- Minor version bump following the release of 2018.3 and verified compatibility with 2019.1. - -## [2.0.20] - 2018-11-22 - -### Fixed -- Camera viewport wasn't working properly when outputting directly to the backbuffer. -- More improvements to VR support. -- Compatibility fixes for 2017.1 to 2017.4. -- Post-processing wouldn't work when loaded from an asset bundle. -- Compilation issue when Cinemachine is used with Post-processing. - -### Changed -- Scriptable Render Pipelines should now call `PostProcessLayer.UpdateVolumeSystem(Camera, CommandBuffer)` at the beginning of the frame. - -## [2.0.17-preview] - -### Fixed -- First pass at improving VR support. -- Assert on Invalid LDR Lookup Texture size; added a check in the inspector for the user. -- Improved performance on Unity 2019.1+ by avoiding unnecessary blits if no other image effect is active. -- Use new ASTC enums on unity 2019.1+. - -## [2.0.16-preview] - -### Fixed -- Grain shader compilation errors on some mobile GPUs. -- Compilation issue with Unity 2019.1+ due to an internal API change. - -## [2.0.15-preview] - -### Fixed -- Warning on `[ShaderIncludePath]` in 2018.3+. - -## [2.0.14-preview] - -### Fixed -- Bloom flicker in single-pass double-wide stereo rendering. -- Right eye bloom offset in single-pass double-wide stereo rendering. -- If any parent of PostProcessingVolume has non-identity scale the Gizmo is rendered incorrectly. -- Cleanup error when going back'n'forth between Builtins & Scriptable pipelines. - -### Changed -- Use `ExecuteAlways` in 2018.3+ for better compatibility with "Prefab Mode". - -## [2.0.13-preview] - -### Fixed -- Compilation issue with Unity 2019.1. -- Screen-space reflection memory leak. - -## [2.0.12-preview] - -### Fixed -- Ambient Occlusion could distort the screen on Android/Vulkan. -- Warning about SettingsProvider in 2018.3. -- Fixed issue with physical camera mode not working with post-processing. -- Fixed thread group warning message on Metal and Intel Iris. -- Fixed compatibility with versions pre-2018.2. - -## [2.0.10-preview] - -### Fixed -- Better handling of volumes in nested-prefabs. -- The Multi-scale volumetric obscurance effect wasn't properly releasing some of its temporary targets. -- N3DS deprecation warnings in 2018.3. - -## [2.0.9-preview] - -### Changed -- Update assembly definitions to output assemblies that match Unity naming convention (Unity.*). - -## [2.0.8-preview] - -### Fixed -- Post-processing is now working with VR SRP in PC. -- Crash on Vulkan when blending 3D textures. -- `RuntimeUtilities.DestroyVolume()` works as expected now. -- Excessive CPU usage on PS4 due to a badly initialized render texture. - -### Changed -- Improved volume texture blending. - -### Added -- `Depth` debug mode can now display linear depth instead of the raw platform depth. - -## [2.0.7-preview] - -### Fixed -- Post-processing wasn't working on Unity 2018.3. - -### Added -- Bloom now comes with a `Clamp` parameter to limit the amount of bloom that comes with ultra-bright pixels. - -## [2.0.6-preview] - -### Fixed -- On large scenes, the first object you'd add to a profile could throw a `NullReferenceException`. ([#530](https://github.com/Unity-Technologies/PostProcessing/pull/530)) -- Dithering now works correctly in dark areas when working in Gamma mode. -- Colored grain wasn't colored when `POSTFX_DEBUG_STATIC_GRAIN` was set. -- No more warning in the console when `POSTFX_DEBUG_STATIC_GRAIN` is set. - -### Changed -- Minor scripting API improvements. ([#530](https://github.com/Unity-Technologies/PostProcessing/pull/530)) -- More implicit casts for `VectorXParameter` and `ColorParameter` to `Vector2`, `Vector3` and `Vector4`. -- Script-instantiated profiles in volumes are now properly supported in the inspector. ([#530](https://github.com/Unity-Technologies/PostProcessing/pull/530)) -- Improved volume UI & styling. - -## [2.0.5-preview] - -### Fixed -- More XR/Switch related fixes. - -## [2.0.4-preview] - -### Fixed -- Temporal Anti-aliasing creating NaN values in some cases. ([#337](https://github.com/Unity-Technologies/PostProcessing/issues/337)) -- Auto-exposure has been fixed to work the same way it did before the full-compute port. -- XR compilation errors on Xbox One & Switch (2018.2). -- `ArgumentNullException` when attempting to get a property sheet for a null shader. ([#515](https://github.com/Unity-Technologies/PostProcessing/pull/515)) -- Stop NaN Propagation not working for opaque-only effects. -- HDR color grading had a slight color temperature offset. -- PSVita compatibility. -- Tizen warning on 2018.2. -- Errors in the console when toggling lighting on/off in the scene view when working in Deferred. -- Debug monitors now work properly with HDRP. - -### Added -- Contribution slider for the LDR Lut. -- Support for proper render target load/store actions on mobile (2018.2). - -### Changed -- Slightly improved speed & quality of Temporal Anti-aliasing. -- Improved volume texture blending. -- Improved support for LDR Luts of sizes other than 1024x32. ([#507](https://github.com/Unity-Technologies/PostProcessing/issues/507)) -- Bloom's `Fast Mode` has been made faster. -- Depth of Field focus is now independent from the screen resolution. -- The number of variants for some shaders has been reduced to improve first-build speed. The biggest one, Uber, is down to 576 variants. - -## [2.0.3-preview] - 2018-03-13 - -### Fixed -- Disabled debug compute shaders on OpenGL ES3 to avoid crashes on a lot of Android devices. -- `NullReferenceException` while mixing volumes and global volumes. ([#498](https://github.com/Unity-Technologies/PostProcessing/issues/498)) - -### Changed -- Improved performances when blending between identical textures. - -## [2.0.2-preview] - 2018-03-07 - -This is the first release of *PostProcessing*. diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/CHANGELOG.md.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/CHANGELOG.md.meta deleted file mode 100644 index d950c2e35..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/CHANGELOG.md.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 76eb0b51417a8442180aa67edda7d01a -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/CONTRIBUTIONS.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/CONTRIBUTIONS.md deleted file mode 100644 index 082ac58a6..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/CONTRIBUTIONS.md +++ /dev/null @@ -1,10 +0,0 @@ -# Contributions - -## If you are interested in contributing, here are some ground rules: -* Follow naming & style conventions in the project -* Pull requests must be made against `v2` (not stable, which is the default) - -## All contributions are subject to the [Unity Contribution Agreement(UCA)](https://unity3d.com/legal/licenses/Unity_Contribution_Agreement) -By making a pull request, you are confirming agreement to the terms and conditions of the UCA, including that your Contributions are your original creation and that you have complete right and authority to make your Contributions. - -## Once you have a change ready following these ground rules. Simply make a pull request in Github diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/CONTRIBUTIONS.md.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/CONTRIBUTIONS.md.meta deleted file mode 100644 index 60c65b773..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/CONTRIBUTIONS.md.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: f9300229a572eeb44ba82d170d15f61d -timeCreated: 1524658460 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Ambient-Occlusion.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Ambient-Occlusion.md deleted file mode 100644 index fdd618709..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Ambient-Occlusion.md +++ /dev/null @@ -1,71 +0,0 @@ -# Ambient Occlusion - -The **Ambient Occlusion** post-processing effect approximates [Ambient Occlusion](http://en.wikipedia.org/wiki/Ambient_occlusion) in real time as a full-screen post-processing effect. It darkens creases, holes, intersections and surfaces that are close to each other. In real life, such areas tend to block out or occlude ambient light, hence they appear darker. - -Note that the **Ambient Occlusion** effect is quite expensive in terms of processing time and generally should only be used on desktop or console hardware. Its cost depends purely on screen resolution and the effects parameters and does not depend on scene complexity as true ambient occlusion would. - - -![](images/screenshot-ao.png) - - -The effect comes with two modes: - -- Scalable Ambient Obscurance -- Multi-scale Volumetric Occlusion - -## Scalable Ambient Obscurance - -This is a standard implementation of ambient obscurance that works on non modern platforms. If you target a compute-enabled platform we recommend that you use the **Multi-scale Volumetric Occlusion** mode instead. - - -![](images/ssao-1.png) - - -### Properties - -| Property | Function | -| :------------ | :------------------------------------------------------------ | -| Intensity | Degree of darkness produced by the effect. | -| Radius | Radius of sample points, which affects extent of darkened areas. | -| Quality | Defines the number of sample points, which affects quality and performance. | -| Color | Tint of the ambient occlusion. | -| Ambient Only | Enables the ambient-only mode in that the effect only affects ambient lighting. This mode is only available with the Deferred rendering path and HDR rendering. | - -### Performances - -Beware that this effect can be quite expensive, especially when viewed very close to the camera. For that reason it is recommended to favor a low `Radius` setting. With a low `Radius` the ambient occlusion effect will only sample pixels that are close, in clip space, to the source pixel, which is good for performance as they can be cached efficiently. With higher radiuses, the generated samples will be further away from the source pixel and won’t benefit from caching thus slowing down the effect. Because of the camera’s perspective, objects near the front plane will use larger radiuses than those far away, so computing the ambient occlusion pass for an object close to the camera will be slower than for an object further away that only occupies a few pixels on screen. - -Dropping the `Quality` setting down will improve performances too. - -Generally speaking, this effect should not be considered on mobile platforms and when running on consoles we recommend using the **Multi-scale Volumetric Occlusion** mode as it's much faster there and looks better in most cases. - -### Requirements - -- Depth & Normals textures -- Shader model 3 - -See the [Graphics Hardware Capabilities and Emulation](https://docs.unity3d.com/Manual/GraphicsEmulation.html) page for further details and a list of compliant hardware. - -## Multi-scale Volumetric Occlusion - -This is a more modern version of ambient occlusion heavily optimized for consoles and desktop platforms. It generally looks better and runs faster than the other mode on these platforms but requires compute shader support. - - -![](images/ssao-2.png) - - -### Properties - -| Property | Function | -| :------------------ | :------------------------------------------------------------ | -| Intensity | Degree of darkness produced by the effect. | -| Thickness Modifier | Modifies the thickness of occluders. This increases dark areas but can potentially introduces dark halos around objects. | -| Color | Tint of the ambient occlusion. | -| Ambient Only | Enables the ambient-only mode in that the effect only affects ambient lighting. This mode is only available with the Deferred rendering path and HDR rendering. | - -### Requirements - -- Compute shader support -- Shader model 4.5 - -See the [Graphics Hardware Capabilities and Emulation](https://docs.unity3d.com/Manual/GraphicsEmulation.html) page for further details and a list of compliant hardware. \ No newline at end of file diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Anti-aliasing.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Anti-aliasing.md deleted file mode 100644 index db8145685..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Anti-aliasing.md +++ /dev/null @@ -1,101 +0,0 @@ -# Anti-aliasing - -The **Anti-aliasing** effect offers a set of algorithms designed to prevent aliasing and give a smoother appearance to graphics. Aliasing is an effect where lines appear jagged or have a “staircase” appearance (as displayed in the left-hand image below). This can happen if the graphics output device does not have a high enough resolution to display a straight line. - -**Anti-aliasing** reduces the prominence of these jagged lines by surrounding them with intermediate shades of color. Although this reduces the jagged appearance of the lines, it also makes them blurrier. - - -![](images/screenshot-antialiasing.png) - - -The Anti-aliasing algorithms are image-based. This is very useful when traditional multisampling (as used in the Editor’s [Quality settings](https://docs.unity3d.com/Manual/class-QualitySettings.html)) is not properly supported or when working with specular-heavy PBR materials. - -The algorithms supplied in the post-processing stack are: - -- Fast Approximate Anti-aliasing (FXAA) -- Subpixel Morphological Anti-aliasing (SMAA) -- Temporal Anti-aliasing (TAA) - -They are set per-camera on the **Post-process Layer** component. - -## Fast Approximate Anti-aliasing - -**FXAA** is the cheapest technique and is recommended for mobile and other platforms that don’t support motion vectors, which are required for **TAA**. - - -![](images/aa-1.png) - - -### Properties - -| Property | Function | -| :--------- | :----------------------------------------------------------- | -| Fast Mode | A slightly lower quality but faster variant of FXAA. Highly recommended on mobile platforms. | -| Keep Alpha | Toggle this on if you need to keep the alpha channel untouched by post-processing. Else it will use this channel to store internal data used to speed up and improve visual quality. | - -### Performances - -`Fast Mode` should be enabled on mobile & Nintendo Switch as it gives a substantial performance boost compared to the regular mode on these platforms. PS4 and Xbox One slightly benefit from it as well but on desktop GPUs it makes no difference and the regular mode should be used for added visual quality. - -### Requirements - -- Shader Model 3 - -See the [Graphics Hardware Capabilities and Emulation](https://docs.unity3d.com/Manual/GraphicsEmulation.html) page for further details and a list of compliant hardware. - -## Subpixel Morphological Anti-aliasing - -**SMAA** is a higher quality anti-aliasing effect than **FXAA** but it's also slower. Depending on the art-style of your game it can work as well as **TAA** while avoiding some of the shortcomings of this technique. - - -![](images/aa-2.png) - - -### Properties - -| Property | Function | -| :-------- | :------------------------------------------------ | -| Quality | The overall quality of the anti-aliasing filter. | - -### Performances - -Lowering the `Quality` setting will make the effect run faster. Using **SMAA** on mobile platforms isn't recommended. - -### Known issues and limitations - -- SMAA doesn't support AR/VR. - -### Requirements - -- Shader Model 3 - -See the [Graphics Hardware Capabilities and Emulation](https://docs.unity3d.com/Manual/GraphicsEmulation.html) page for further details and a list of compliant hardware. - -## Temporal Anti-aliasing - -**TAA** is a more advanced anti-aliasing technique where frames are accumulated over time in a history buffer to be used to smooth edges more effectively. It is substantially better at smoothing edges in motion but requires motion vectors and is more expensive than **FXAA**. Due to this it is recommended for desktop and console platforms. - - -![](images/aa-3.png) - - -### Properties - -| Property | Function | -| :------------------- | :------------------------------------------------------------ | -| Jitter Spread | The diameter (in texels) inside which jitter samples are spread. Smaller values result in crisper but more aliased output, whilst larger values result in more stable but blurrier output. | -| Stationary Blending | The blend coefficient for stationary fragments. Controls the percentage of history sample blended into final color for fragments with minimal active motion. | -| Motion Blending | The blending coefficient for moving fragments. Controls the percentage of history sample blended into the final color for fragments with significant active motion. | -| Sharpness | TAA can induce a slight loss of details in high frequency regions. Sharpening alleviates this issue. | - -### Known issues and limitations - -- Not supported on GLES2 platforms. - -### Requirements - -- Motion vectors -- Depth texture -- Shader Model 3 - -See the [Graphics Hardware Capabilities and Emulation](https://docs.unity3d.com/Manual/GraphicsEmulation.html) page for further details and a list of compliant hardware. \ No newline at end of file diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Auto-Exposure.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Auto-Exposure.md deleted file mode 100644 index 7e6428854..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Auto-Exposure.md +++ /dev/null @@ -1,47 +0,0 @@ -# Auto Exposure - -In ocular physiology, adaptation is the ability of the eye to adjust to various levels of darkness and light. The human eye can function from very dark to very bright levels of light. However, in any given moment of time, the eye can only sense a contrast ratio of roughly one millionth of the total range. What enables the wider reach is that the eye adapts its definition of what is black. - -This effect dynamically adjusts the exposure of the image according to the range of brightness levels it contains. The adjustment takes place gradually over a period of time, so the player can be briefly dazzled by bright outdoor light when, say, emerging from a dark tunnel. Equally, when moving from a bright scene to a dark one, the “eye” takes some time to adjust. - -Internally, this effect generates a histogram on every frame and filters it to find the average luminance value. This histogram, and as such the effect, requires [Compute shader](https://docs.unity3d.com/Manual/ComputeShaders.html) support. - - -![](images/autoexposure.png) - - -### Properties - -**Exposure** settings: - -| Property | Function | -| :--------------------- | :------------------------------------------------------------ | -| Filtering | These values are the lower and upper percentages of the histogram that will be used to find a stable average luminance. Values outside of this range will be discarded and wont contribute to the average luminance. | -| Minimum | Minimum average luminance to consider for auto exposure (in EV). | -| Maximum | Maximum average luminance to consider for auto exposure (in EV). | -| Exposure Compensation | Middle-grey value. Use this to compensate the global exposure of the scene. | - -**Adaptation** settings: - -| Property | Function | -| :---------- | :------------------------------------------------------------ | -| Type | Use Progressive if you want the auto exposure to be animated. Use Fixed otherwise. | -| Speed Up | Adaptation speed from a dark to a light environment. | -| Speed Down | Adaptation speed from a light to a dark environment. | - -### Details - -Use the `Filtering` range to exclude the darkest and brightest part of the image. To compute an average luminance you generally don’t want very dark and very bright pixels to contribute too much to the result. Values are in percent. - -`Minimum`/`Maximum` values clamp the computed average luminance into a given range. - -You can also set the `Type` to `Fixed` if you don’t need the eye adaptation effect and it will behave like an auto-exposure setting. - -It is recommended to use the **Light Meter** [monitor](https://github.com/Unity-Technologies/PostProcessing/wiki/Debugging) when setting up this effect. - -### Requirements - -- Compute shader -- Shader model 5 - -See the [Graphics Hardware Capabilities and Emulation](https://docs.unity3d.com/Manual/GraphicsEmulation.html) page for further details and a list of compliant hardware. \ No newline at end of file diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Bloom.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Bloom.md deleted file mode 100644 index a6b23d996..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Bloom.md +++ /dev/null @@ -1,51 +0,0 @@ -# Bloom - -**Bloom** is an effect used to reproduce an imaging artifact of real-world cameras. The effect produces fringes of light extending from the borders of bright areas in an image, contributing to the illusion of an extremely bright light overwhelming the camera or eye capturing the scene. - -**Lens Dirt** applies a fullscreen layer of smudges or dust to diffract the Bloom effect. This is commonly used in modern first person shooters. - - -![](images/screenshot-bloom.png) - - - -![](images/bloom.png) - - -### Properties - -**Bloom** settings: - -| Property | Function | -| :---------------- | :------------------------------------------------------------ | -| Intensity | Strength of the Bloom filter. | -| Threshold | Filters out pixels under this level of brightness. This value is expressed in gamma-space. | -| Soft Knee | Makes transition between under/over-threshold gradual (0 = hard threshold, 1 = soft threshold). | -| Clamp | Clamps pixels to control the bloom amount. This value is expressed in gamma-space. | -| Diffusion | Changes extent of veiling effects in a screen resolution-independent fashion. | -| Anamorphic Ratio | Emulates the effect of an anamorphic lens by scaling the bloom vertically (in range [-1,0]) or horizontally (in range [0,1]). | -| Color | Tint of the Bloom filter. | -| Fast Mode | Boost performances by lowering the effect quality. | - -**Dirtiness** settings: - -| Property | Function | -| --------- | ----------------------------------------------------- | -| Texture | Dirtiness texture to add smudges or dust to the lens. | -| Intensity | Amount of lens dirtiness. | - -### Details - -With properly exposed HDR scenes, `Threshold` should be set to ~1 so that only pixels with values above 1 leak into surrounding objects. You’ll probably want to drop this value when working in LDR or the effect won’t be visible. - -### Performances - -Lowering the `Diffusion` parameter will make the effect faster. The further away `Anamorphic Ratio` is from 0, the slower it will be. On mobile and low-end platforms it is recommended to enable `Fast Mode` as it gives a significant boost in performances. - -Finally, smaller lens dirt textures will result is faster lookup and blending across volumes. - -### Requirements - -- Shader model 3 - -See the [Graphics Hardware Capabilities and Emulation](https://docs.unity3d.com/Manual/GraphicsEmulation.html) page for further details and a list of compliant hardware. \ No newline at end of file diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Chromatic-Aberration.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Chromatic-Aberration.md deleted file mode 100644 index 8cfe399a9..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Chromatic-Aberration.md +++ /dev/null @@ -1,46 +0,0 @@ -# Chromatic Aberration - -In photography, chromatic aberration is an effect resulting from a camera’s lens failing to converge all colors to the same point. It appears as “fringes” of color along boundaries that separate dark and bright parts of the image. - -The **Chromatic Aberration** effect is used to replicate this camera defect, it is also often used to artistic effect such as part of camera impact or intoxication effects. This implementation provides support for red/blue and green/purple fringing as well as user defined color fringing via an input texture. - - -![](images/screenshot-chroma.png) - - - -![](images/chroma.png) - - -### Properties - -| Property | Function | -| :------------ | :------------------------------------------------------------ | -| Spectral Lut | Texture used for custom fringing color (will use default when empty). | -| Intensity | Strength of chromatic aberrations. | -| Fast Mode | Use a faster variant of the effect for improved performances. | - -### Details - -**Chromatic Aberration** uses a `Spectral Lut` input for custom fringing. Four example spectral textures are provided in the repository: - -- Red/Blue (Default) -- Blue/Red -- Green/Purple -- Purple/Green - -You can create custom spectral textures in any image editing software. Their resolution is not constrained but it is recommended that they are as small as possible (such as the 3x1 textures provided). - -You can achieve a less smooth effect by manually setting the `Filter Mode` of the input texture to `Point (no filter)`. - -### Performances - -Performances depend on the `Intensity` value (the higher it is, the slower the render will be as it will need more samples to render smooth chromatic aberrations). - -Enabling `Fast Mode` is also recommended whenever possible as it's a lot faster, albeit not as smooth as the regular mode. - -### Requirements - -- Shader Model 3 - -See the [Graphics Hardware Capabilities and Emulation](https://docs.unity3d.com/Manual/GraphicsEmulation.html) page for further details and a list of compliant hardware. \ No newline at end of file diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Color-Grading.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Color-Grading.md deleted file mode 100644 index ad635c858..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Color-Grading.md +++ /dev/null @@ -1,176 +0,0 @@ -# Color Grading - -Color grading is the process of altering or correcting the color and luminance of the final image. You can think of it like applying filters in software like Instagram. - - -![](images/screenshot-grading.png) - - -The **Color Grading** effect comes with three modes: - -- **Low Definition Range:** this mode is aimed at lower-end platforms but it can be used on any platform. Grading is applied to the final rendered frame clamped in a [0,1] range and stored in a standard LUT. -- **High Definition Range:** this mode is aimed at platforms that support HDR rendering. All the color operations will be applied in HDR and stored into a 3D log-encoded LUT to ensure a sufficient range coverage and precision (Alexa LogC El1000). -- **External:** this mode allows you to provide a custom 3D LUT authored in an external software. - -### Requirements - -- Shader Model 3 - -See the [Graphics Hardware Capabilities and Emulation](https://docs.unity3d.com/Manual/GraphicsEmulation.html) page for further details and a list of compliant hardware. - -## Global Settings - - -![](images/grading-1.png) - - -> **Note:** these are only available for the **Low Definition Range** and **External** modes. - -### Properties - -| Property | Function | -| :-------------- | :------------------------------------------------------------ | -| Lookup Texture | **LDR:** A custom lookup texture (strip format, e.g. 256x16) to apply before the rest of the color grading operators. If none is provided, a neutral one will be generated internally.
**External**: A custom 3D log-encoded texture. **TODO:** tutorial | -| Contribution | **LDR:** How much of the lookup texture will contribute to the color grading. | - -> **Note:** volume blending between multiple LDR lookup textures is supported but only works correctly if they're the same size. For this reason it is recommended to stick to a single LUT size for the whole project (256x16 or 1024x32). - -## Tonemapping - -Tonemapping is the process of remapping HDR values of an image into a range suitable to be displayed on screen. Tonemapping should always be applied when using an HDR camera, otherwise values color intensities above 1 will be clamped at 1, altering the scenes luminance balance. - -The **High Definition Range** mode comes with 4 tonemapping operators: - -- **None:** no tonemapping will be applied. -- **Neutral:** only does range-remapping with minimal impact on color hue & saturation and is generally a great starting point for extensive color grading. -- **ACES**: uses a close approximation of the reference [ACES](http://www.oscars.org/science-technology/sci-tech-projects/aces) tonemapper for a more filmic look. Because of that, it is more contrasted than **Neutral** and has an effect on actual color hue & saturation. Note that if you enable this tonemapper all the grading operations will be done in the ACES color spaces for optimal precision and results. -- **Custom:** a fully parametric tonemapper. - - -![](images/grading-2.png) - - -> **Note**: these are only available for the **High Definition Range** mode. - -### Properties - -> **Note**: **Custom** is the only tonemapper with settings. - -| Property | Function | -| :----------------- | :------------------------------------------------------------ | -| Toe Strength | Affects the transition between the toe and the mid section of the curve. A value of 0 means no toe, a value of 1 means a very hard transition. | -| Toe Length | Affects how much of the dynamic range is in the toe. With a small value, the toe will be very short and quickly transition into the linear section, and with a longer value having a longer toe. | -| Shoulder Strength | Affects the transition between the mid section and the shoulder of the curve. A value of 0 means no shoulder, value of 1 means a very hard transition. | -| Shoulder Length | Affects how many F-stops (EV) to add to the dynamic range of the curve. | -| Shoulder Angle | Affects how much overshot to add to the shoulder. | -| Gamma | Applies a gamma function to the curve. | - -## White Balance - - -![](images/grading-3.png) - - -### Properties - -| Property | Function | -| :----------- | :------------------------------------------------------------ | -| Temperature | Sets the white balance to a custom color temperature. | -| Tint | Sets the white balance to compensate for a green or magenta tint. | - -## Tone - - -![](images/grading-4.png) - - -### Properties - -| Property | Function | -| :------------- | :------------------------------------------------------------ | -| Post-exposure | Adjusts the overall exposure of the scene in EV units. This is applied after HDR effect and right before tonemapping so it won’t affect previous effects in the chain.
**Note:** Only available with the **High Definition Range** mode. | -| Color Filter | Tints the render by multiplying a color. | -| Hue Shift | Shifts the hue of all colors. | -| Saturation | Pushes the intensity of all colors. | -| Brightness | Makes the image brighter or darker.
**Note:** Only available with the **Low Definition Range** mode. | -| Contrast | Expands or shrinks the overall range of tonal values. | - -## Channel Mixer - -This is used to modify the influence of each input color channel on the overall mix of the output channel. For example, increasing the influence of the green channel on the overall mix of the red channel will adjust all areas of the image containing green (including neutral/monochrome) to become more reddish in hue. - - -![](images/grading-5.png) - - -### Properties - -| Property | Function | -| :-------- | :------------------------------------------------------------ | -| Channel | Selects the output channel to modify. | -| Red | Modifies the influence of the red channel within the overall mix. | -| Green | Modifies the influence of the green channel within the overall mix. | -| Blue | Modifies the influence of the blue channel within the overall mix. | - -## Trackballs - -The trackballs are used to perform three-way color grading. Adjusting the position of the point on the trackball will have the effect of shifting the hue of the image towards that color in the given tonal range. Different trackballs are used to affect different ranges within the image. Adjusting the slider under the trackball offsets the color lightness of that range. - -> **Note:** you can right-click a trackball to reset it to its default value. You can also change the trackballs sensitivity by going to `Edit -> Preferences -> PostProcessing`. - - -![](images/grading-6.png) - - -### Properties - -| Property | Function | -| :-------- | :------------------------------------ | -| Lift | Adjusts the dark tones (or shadows). | -| Gamma | Adjusts the mid-tones. | -| Gain | Adjusts the highlights. | - -## Grading Curves - -Grading curves are an advanced way to adjust specific ranges in hue, saturation or luminosity in your image. By adjusting the curves on the eight available graphs you can achieve the effects of specific hue replacement, desaturating certain luminosities and much more. - -### YRGB Curves - -These curves, also called `Master`, `Red`, `Green` and `Blue` affect the selected input channels intensity across the whole image. The X axis of the graph represents input intensity and the Y axis represents output intensity for the selected channel. This can be used to further adjust the appearance of basic attributes such as contrast and brightness. - - -![](images/grading-11.png) - - -> **Note:** these curves are only available with the **Low Definition Range** mode. - -### Hue vs Hue - -Used to shift hues within specific ranges. This curve shifts the input hue (X axis) according to the output hue (Y axis). This can be used to fine tune hues of specific ranges or perform color replacement. - - -![](images/grading-7.png) - - -### Hue vs Sat - -Used to adjust saturation of hues within specific ranges. This curve adjusts saturation (Y axis) according to the input hue (X axis). This can be used to tone down particularly bright areas or create artistic effects such as monochromatic except a single dominant color. - - -![](images/grading-8.png) - - -### Sat vs Sat - -Used to adjust saturation of areas of certain saturation. This curve adjusts saturation (Y axis) according to the input saturation (X axis). This can be used to fine tune saturation adjustments made with settings from the **Tone** section. - - -![](images/grading-9.png) - - -### Lum vs Sat - -Used to adjust saturation of areas of certain luminance. This curve adjusts saturation (Y axis) according to the input luminance (X axis). This can be used to desaturate areas of darkness to provide an interesting visual contrast. - - -![](images/grading-10.png) diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Debugging.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Debugging.md deleted file mode 100644 index 23b299308..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Debugging.md +++ /dev/null @@ -1 +0,0 @@ -> **TODO** \ No newline at end of file diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Deferred-Fog.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Deferred-Fog.md deleted file mode 100644 index 99522b829..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Deferred-Fog.md +++ /dev/null @@ -1,30 +0,0 @@ -# Deferred Fog - -Fog is the effect of overlaying a color onto objects dependent on the distance from the camera. This is used to simulate fog or mist in outdoor environments and is also typically used to hide clipping of objects when a camera’s far clip plane has been moved forward for performance. - -The Fog effect creates a screen-space fog based on the camera’s [depth texture](https://docs.unity3d.com/Manual/SL-DepthTextures.html). It supports Linear, Exponential and Exponential Squared fog types. Fog settings should be set in the **Scene** tab of the **Lighting** window. - - -![](images/screenshot-fog.png) - - - -![](images/deferredfog.png) - - -### Properties - -| Property | Function | -| :-------------- | :--------------------------------- | -| Exclude Skybox | Should the fog affect the skybox? | - -### Details - -This effect will only show up in your **Post-process Layer** if the camera is set to render with the **Deferred rendering path**. It is enabled by default and adds the support of **Fog** from the **Lighting** panel (which would only work with the **Forward rendering path** otherwise). - -### Requirements - -- Depth texture -- Shader Model 3 - -See the [Graphics Hardware Capabilities and Emulation](https://docs.unity3d.com/Manual/GraphicsEmulation.html) page for further details and a list of compliant hardware. \ No newline at end of file diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Depth-of-Field.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Depth-of-Field.md deleted file mode 100644 index 0d2eac910..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Depth-of-Field.md +++ /dev/null @@ -1,31 +0,0 @@ -# Depth of Field - -**Depth of Field** is a common post-processing effect that simulates the focus properties of a camera lens. In real life, a camera can only focus sharply on an object at a specific distance; objects nearer or farther from the camera will be somewhat out of focus. The blurring not only gives a visual cue about an object’s distance but also introduces Bokeh which is the term for pleasing visual artifacts that appear around bright areas of the image as they fall out of focus. - - -![](images/screenshot-dof.png) - - - -![](images/dof.png) - - -### Properties - -| Property | Function | -| :-------------- | :------------------------------------------------------------ | -| Focus Distance | Distance to the point of focus. | -| Aperture | Ratio of the aperture (known as f-stop or f-number). The smaller the value is, the shallower the depth of field is. | -| Focal Length | Distance between the lens and the film. The larger the value is, the shallower the depth of field is. | -| Max Blur Size | Convolution kernel size of the bokeh filter, which determines the maximum radius of bokeh. It also affects the performance (the larger the kernel is, the longer the GPU time is required). | - -### Performances - -The speed of Depth of Field is tied to `Max Blur Size`. Using a value higher than `Medium` is only recommended for desktop computers and, depending on the post-processing budget of your game, consoles. Mobile platforms should stick to the lowest value. - -### Requirements - -- Depth texture -- Shader Model 3.5 - -See the [Graphics Hardware Capabilities and Emulation](https://docs.unity3d.com/Manual/GraphicsEmulation.html) page for further details and a list of compliant hardware. \ No newline at end of file diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Grain.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Grain.md deleted file mode 100644 index 1842e5a6e..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Grain.md +++ /dev/null @@ -1,28 +0,0 @@ -# Grain - -Film grain is the random optical texture of photographic film due to the presence of small particles of the metallic silver (or dye clouds for colored films) in the film stock. - -The **Grain** effect is based on a coherent gradient noise. It is commonly used to emulate the apparent imperfections of film and often exaggerated in horror themed games. - - -![](images/grain.png) - - -### Properties - -| Property | Function | -| :---------------------- | :------------------------------------------------------------ | -| Colored | Enables the use of colored grain. | -| Intensity | Grain strength. Higher means more visible grain. | -| Size | Grain particle size. | -| Luminance Contribution | Controls the noisiness response curve based on scene luminance. Lower values mean less noise in dark areas. | - -### Performances - -Disabling `Colored` will make the effect run faster. - -### Requirements - -- Shader Model 3 - -See the [Graphics Hardware Capabilities and Emulation](https://docs.unity3d.com/Manual/GraphicsEmulation.html) page for further details and a list of compliant hardware. \ No newline at end of file diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Installation.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Installation.md deleted file mode 100644 index ce2c23aa8..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Installation.md +++ /dev/null @@ -1,19 +0,0 @@ -# Installation - -## Package - -The standard way to install post-processing or update it to the latest version is to use the package manager that comes with Unity 2018.1. - -> **Note:** if you already installed one of the scriptable render pipelines in your project then the post-processing package will already be installed. - -Go to `Window -> Package Manager`, switch the view from `In Project` to `All` and select `Postprocessing` in the list. In the right panel you'll find information about the package and a button to install or update to the latest available version for the currently running version of Unity. - -## Sources - -You can, if you prefer, use the bleeding edge version of post-processing but be aware that only packaged versions are officially supported and things may break. If you're not familiar with Git we recommend you download [Github Desktop](https://desktop.github.com/) as it's easy to use and integrates well with Github. - -First, make sure you don't already have the `Postprocessing` package installed or it will conflict with a source installation. If you do, you can remove it using the package manager (`Window -> Package Manager`). - -Then you can use your Git client to clone the [post-processing repository](https://github.com/Unity-Technologies/PostProcessing) into your `Assets` folder. The development branch is `v2` and is conveniently set as the default so you don't need to pull any specific branch unless you want to follow a specific feature being developed in a separate branch. - -If you don't want to use a Git client you can also download a zip archive by clicking the green button that says "Clone or download" at the top of the repository and extract it into your project. The benefit of using Git is that you can quickly update to the latest revision without having to download / extract / replace the whole thing again. It's also more error-proof as it will handle moving & removing files correctly. \ No newline at end of file diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Lens-Distortion.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Lens-Distortion.md deleted file mode 100644 index 4b80c513a..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Lens-Distortion.md +++ /dev/null @@ -1,32 +0,0 @@ -# Lens Distortion - -This effect simulates the shape of a lens by distorting or undistorting the final rendered picture. - - -![](images/screenshot-distortion.png) - - - -![](images/lensdistortion.png) - - -### Properties - -| Property | Function | -| :------------ | :------------------------------------------------------------ | -| Intensity | Total distortion amount. | -| X Multiplier | Intensity multiplier on X axis. Set it to 0 to disable distortion on this axis. | -| Y Multiplier | Intensity multiplier on Y axis. Set it to 0 to disable distortion on this axis. | -| Center X | Distortion center point (X axis). | -| Center Y | Distortion center point (Y axis). | -| Scale | Global screen scaling. | - -### Known issues and limitations - -- Lens distortion doesn't support AR/VR. - -### Requirements - -- Shader Model 3 - -See the [Graphics Hardware Capabilities and Emulation](https://docs.unity3d.com/Manual/GraphicsEmulation.html) page for further details and a list of compliant hardware. \ No newline at end of file diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Manipulating-the-Stack.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Manipulating-the-Stack.md deleted file mode 100644 index 746fb26ba..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Manipulating-the-Stack.md +++ /dev/null @@ -1,134 +0,0 @@ -# Manipulating the Stack - -## Quick Volumes - -While working on a game you'll often need to push effect overrides on the stack for time-based events or temporary states. You could dynamically create a global volume on the scene, create a profile, create a few overrides, put them into the profile and assign the profile to the volume but that's not very practical. - -We provide a `QuickVolume` method to quickly spawn new volumes in the scene: - -```csharp -public PostProcessVolume QuickVolume(int layer, float priority, params PostProcessEffectSettings[] settings) -``` - -First two parameters are self-explanatory. The last parameter takes an array or a list of effects you want to override in this volume. - -Instancing a new effect is fairly straightforward. For instance, to create a Vignette effect and override its enabled & intensity fields: - -```csharp -var vignette = ScriptableObject.CreateInstance(); -vignette.enabled.Override(true); -vignette.intensity.Override(1f); -``` - -Now let's look at a slightly more complex effect. We want to create a pulsating vignette effect entirely from script: - -```csharp -using UnityEngine; -using UnityEngine.Rendering.PostProcessing; - -public class VignettePulse : MonoBehaviour -{ - PostProcessVolume m_Volume; - Vignette m_Vignette; - - void Start() - { - m_Vignette = ScriptableObject.CreateInstance(); - m_Vignette.enabled.Override(true); - m_Vignette.intensity.Override(1f); - - m_Volume = PostProcessManager.instance.QuickVolume(gameObject.layer, 100f, m_Vignette); - } - - void Update() - { - m_Vignette.intensity.value = Mathf.Sin(Time.realtimeSinceStartup); - } - - void OnDestroy() - { - RuntimeUtilities.DestroyVolume(m_Volume, true, true); - } -} -``` - -This code creates a new vignette and assign it to a newly spawned volume with a priority of `100`. Then, on every frame, it changes the vignette intensity using a sinus curve. - -> **Important:** Don't forget to destroy the volume and the attached profile when you don't need them anymore! - -## Fading Volumes - -Distance-based volume blending is great for most level design use-cases, but once in a while you'll want to trigger a fade in and/or out effect based on a gameplay event. You could do it manually in an `Update` method as described in the previous section or you could use a tweening library to do all the hard work for you. A few of these are available for Unity for free, like [DOTween](http://dotween.demigiant.com/), [iTween](http://www.pixelplacement.com/itween/index.php) or [LeanTween](https://github.com/dentedpixel/LeanTween). - -Let's use DOTween for this example. We won't go into details about it (it already has a good [documentation](http://dotween.demigiant.com/documentation.php)) but this should get you started: - -```csharp -using UnityEngine; -using UnityEngine.Rendering.PostProcessing; -using DG.Tweening; - -public class VignettePulse : MonoBehaviour -{ - void Start() - { - var vignette = ScriptableObject.CreateInstance(); - vignette.enabled.Override(true); - vignette.intensity.Override(1f); - - var volume = PostProcessManager.instance.QuickVolume(gameObject.layer, 100f, vignette); - volume.weight = 0f; - - DOTween.Sequence() - .Append(DOTween.To(() => volume.weight, x => volume.weight = x, 1f, 1f)) - .AppendInterval(1f) - .Append(DOTween.To(() => volume.weight, x => volume.weight = x, 0f, 1f)) - .OnComplete(() => - { - RuntimeUtilities.DestroyVolume(volume, true, true); - Destroy(this); - }); - } -} -``` - -In this example, like the previous one, we spawn a quick volume with a vignette. We set its `weight`property to `0` as we don't want it to have any contribution just yet. - -Then we use the sequencing feature of DOTween to chain a set of tweening events: fade in, pause for a second, fade out and finally destroy the volume and the component itself once it's done. - -And that's it. Of course you can also tween individual effect properties instead of the volume as a whole, it's up to you. - -## Profile Editing - -You can also manually edit an existing profile on a volume. It's very similar to how material scripting works in Unity. There are two ways of doing that: either by modifying the shared profile directly or by requesting a clone of the shared profile that will only be used for this volume. - -Each method comes with a a few advantages and downsides: - -- Shared profile editing: - - Changes will be applied to all volumes using the same profile - - Modifies the actual asset and won't be reset when you exit play mode - - Field name: `sharedProfile` -- Owned profile editing: - - Changes will only be applied to the specified volume - - Resets when you exit play mode - - It is your responsibility to destroy the profile when you don't need it anymore - - Field name: `profile` - -The `PostProcessProfile` class has a few utility methods to help you manage assigned effects. Notable ones include: - -- `T AddSettings()`: creates, adds and returns a new effect or type `T` to the profile. Will throw an exception if it already exists. -- `PostProcessEffectSettings AddSettings(PostProcessEffectSettings effect)`: adds and returns an effect you created yourself to the profile. -- `void RemoveSettings()`: removes an effect from the profile. Will throw an exception if it doesn't exist. -- `bool TryGetSettings(out T outSetting)`: gets an effect from the profile, returns `true` if one was found, `false` otherwise. - -You'll find more methods by browsing the `/PostProcessing/Runtime/PostProcessProfile.cs` source file. - -> **Important:** Don't forget to destroy any manually created profiles or effects. - -## Additional notes - -If you need to instantiate `PostProcessLayer` at runtime you'll need to make sure resources are properly bound to it. After the component has been added, don't forget to call `Init()` on it with a reference to the `PostProcessResources` file as a parameter. - -```csharp -var postProcessLayer = gameObject.AddComponent(); -postProcessLayer.Init(resources); -``` \ No newline at end of file diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Motion-Blur.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Motion-Blur.md deleted file mode 100644 index bd922ecb5..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Motion-Blur.md +++ /dev/null @@ -1,35 +0,0 @@ -# Motion Blur - -**Motion Blur** is a common post-processing effect that simulates the blurring of an image when objects filmed by a camera are moving faster than the camera’s exposure time. This can be caused by rapidly moving objects or a long exposure time. **Motion Blur** is used to subtle effect in most types of games but exaggerated in some genres, such as racing games. - - -![](images/screenshot-motionblur.png) -
Motion blur on a camera that rotates very fast - - - -![](images/motionblur.png) - - -### Properties - -| Property | Function | -| :------------- | :------------------------------------------------------------ | -| Shutter Angle | The angle of the rotary shutter. Larger values give longer exposure therefore a stronger blur effect. | -| Sample Count | The amount of sample points, which affects quality and performances. | - -### Performances - -Using a lower `Sample Count` will lead to better performances. - -### Known issues and limitations - -- Motion blur doesn't support AR/VR. - -### Requirements - -- Motion vectors -- Depth texture -- Shader Model 3 - -See the [Graphics Hardware Capabilities and Emulation](https://docs.unity3d.com/Manual/GraphicsEmulation.html) page for further details and a list of compliant hardware. \ No newline at end of file diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Quick-start.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Quick-start.md deleted file mode 100644 index 663195891..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Quick-start.md +++ /dev/null @@ -1,70 +0,0 @@ -# Quick-start -> **Note:** if you created a project using one of the template that includes Post-processing then you don't need to go through most of these steps although we recommend you read them to understand how everything works. - -## Post-process Layer - -The first thing you need to enable post-processing on a camera is to add the `Component -> Rendering -> Post-process Layer` component to it. - - -![](images/quickstart-1.png) - - -The first section describes **Volume blending** settings for this camera: - -- **Trigger:** by default the camera itself will be assigned to it. This is transform that will be drive the volume blending feature. In some cases you may want to use a transform other than the camera, e.g. for a top down game you'll want the player character to drive the blending instead of the actual camera transform. Setting this field to `None` will disable local volumes for this layer (global ones will still work). -- **Layer:** a mask of layers to consider for volume blending. It allows you to do volume filtering and is especially useful to optimize volume traversal. You should always have your volumes in dedicated layers instead of the default one for best performances. By default it's set to `Nothing` so don't forget to change it or volumes won't have any effect. For more information on layers and their use in Unity please refer to [this manual page](https://docs.unity3d.com/Manual/Layers.html). - -Next comes **Anti-aliasing** which has to be setup per-camera. The benefit of doing it that way instead of having a global setting in the project is that you can optimize your cameras to only use anti-aliasing when needed. For instance, your main camera could be using **Temporal Anti-aliasing** but a secondary one used to render a security camera would only require **FXAA**. More information about anti-aliasing is available on the [dedicated effect page](https://github.com/Unity-Technologies/PostProcessing/wiki/Anti-aliasing). - -The **Stop NaN Propagation** toggle will kill any invalid / NaN pixel and replace it with a black color before post-processing is applied. It's generally a good idea to keep this enabled to avoid post-processing artifacts cause by broken data in the scene. - -The **Toolkit** section comes with a few utilities. You can export the current frame to EXR using one of the following modes: - -- **Full Frame (as displayed):** exports the camera as-is (if it's on the camera shown in the Game View, the export will look exactly like what's shown in the Game View). -- **Disable post-processing:** same as the previous mode but without any sort of post-processing applied. -- **Break before Color Grading (linear):** same as the first mode but will stop rendering just before **Color Grading** is applied. This is useful if you want to author grading LUTs in an external software. -- **Break before Color Grading (log):** same as the previous mode but the output will be log-encoded. This is used to author full-precision HDR grading LUTs in an external software. - -Other utilities include: - -- **Select all layer volumes:** selects all **Post-process Volume** components that can affect this **Post-process Layer**. -- **Select all active volumes:** selects all **Post-process Volume** components currently affecting this **Post-process Layer**. - -Finally, the last section allows you to change the rendering order of custom effects. More information on [Writing Custom Effects](https://github.com/Unity-Technologies/PostProcessing/wiki/Writing-Custom-Effects). - -## Post-process Volumes - -The way post-processing works in this framework is by using local & global volumes. It allows you to give each volume a priority and a set of effect overrides to automatically blend post-processing settings in your scene. For instance, you could have a light vignette effect set-up globally but when the player enters a cave you would only override the `Intensity` setting of the vignette to make it stronger while keeping the rest of the settings intact. - -The **Post-process Volume** component can be added to any game object, the camera itself included. But it's generally a good idea to create a dedicated object for each volume. Let's start by creating a global **Post-process Volume**. Create an empty game object and add the component to it (`Component -> Rendering -> Pöst-process Volume`) or use `GameObject -> 3D Object -> Post-process Volume`. Don't forget to add it to a layer that's being used by the mask set in the **Post-process Layer** component you added to your camera. - - -![](images/quickstart-2.png) - - -By default it's completely empty. Volumes come with two modes: - -- **Global:** a global volume doesn't have any boundary and will be applied to the whole scene. You can of course have several of these in your scene. -- **Local:** a local volume needs a collider or trigger component attached to it to define its boundaries. Any type of 3D collider will work, from cubes to complex convex meshes but we recommend you use simple colliders as much as possible, as meshes can be quite expensive to traverse. Local volumes can also have a `Blend Distance` that represents the outer distance from the volume surface where blending will start. - -In this case we want a global volume so let's enable `Is Global`. - -`Weight` can be used to reduce the global contribution of the volume and all its overrides, with 0 being no contribution at all and 1 full contribution. - -The `Priority` field defines the volume order in the stack. The higher this number is, the higher priority a volume has. - -We also need a to create a profile for this volume (or re-use an existing one). Let's create one by clicking the `New` button (you can also use `Create -> Post-processing Profile` in your project window). It will be created as an asset file in your project. To edit a profile content you can either select this asset or go to a volume inspector where it will be replicated for easier access. Once a profile as been assigned you'll see a new button appear, `Clone`. This one will duplicate the currently assigned profile and set it on the volume automatically. This can be handy when you want to create quick variations of a same profile (although you should really use the override system if possible). - -We can now start adding effect overrides to the stack. - - -![](images/quickstart-3.png) - - -The anatomy of an effect is as follow: - -Each field has an override checkbox on its left, you'll need to toggle the settings you want to override for this volume before you can edit them. You can quickly toggle them all on or off by using the small `All` and `None` shortcuts at the top left. - -The top-right `On/Off` toggle is used to override the active state of the effect itself in the stack (if you want, for instance, to force-disable an effect in a higher priority volume) whereas the toggle in the title bar is used to disable the set of overrides for this effect in this particular volume. - -Finally, you can right-click and effect title to show a quick-action menu to copy/paste/remove/reset settings. \ No newline at end of file diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Screen-space-Reflections.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Screen-space-Reflections.md deleted file mode 100644 index 7446c470e..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Screen-space-Reflections.md +++ /dev/null @@ -1,44 +0,0 @@ -# Screen-space Reflection - -**Screen-space Reflection** is a technique for reusing screen-space data to calculate reflections. It is commonly used to create more subtle reflections such as on wet floor surfaces or in puddles. Because it fully works in screen-space it can only reflect what's currently on the screen (no backface reflection, no object living outside of the screen). - -**Screen-space Reflection** is an expensive technique, but when used correctly can give great results. It is only available in the [deferred rendering path](https://docs.unity3d.com/Manual/RenderTech-DeferredShading.html) as it relies on the Normals G-Buffer. - -The current implementation of **Screen-space reflections** in Unity is tuned for performance over quality to make it usable in production on current-gen consoles and desktop computers. Be aware that this technique isn't meant to be used to get perfectly smooth reflections, you should use probes or planar reflections of that. This effect is also great at acting as a specular occlusion effect by limiting the amount of specular light leaking. - - -![](images/screenshot-ssr.png) - - - -![](images/ssr.png) - - -### Properties - -| Property | Function | -| :----------------------- | :------------------------------------------------------------ | -| Preset | Quality presets. Use `Custom` if you want to fine tune it. | -| Maximum Iteration Count | Maximum number of steps in the raymarching pass. Higher values mean more reflections.
**Note:** only available with the `Custom` preset. | -| Thickness | Ray thickness. Lower values are more expensive but allow the effect to detect smaller details.
**Note:** only available with the `Custom` preset. | -| Resolution | Changes the size of the internal buffer. Downsample it to maximize performances or supersample it to get slow but higher quality results.
**Note:** only available with the `Custom` preset. | -| Maximum March Distance | Maximum distance to traverse in the scene after which it will stop drawing reflections. | -| Distance Fade | Fades reflections close to the near plane. This is useful to hide common artifacts. | -| Vignette | Fades reflections close to the screen edges. | - -### Performances - -You should only use the `Custom` preset for beauty shots. On consoles, don't go higher than `Medium` unless you have plenty of GPU time to spare, especially when working at full-hd resolutions. On lower resolutions you can boost the quality preset and get similar timings with a higher visual quality. - -### Known issues and limitations - -- Screen-space reflections doesn't support AR/VR. - -### Requirements - -- Compute shader -- Motion vectors -- Deferred rendering path -- Shader Model 5.0 - -See the [Graphics Hardware Capabilities and Emulation](https://docs.unity3d.com/Manual/GraphicsEmulation.html) page for further details and a list of compliant hardware. \ No newline at end of file diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/TableOfContents.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/TableOfContents.md deleted file mode 100644 index bfec50e81..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/TableOfContents.md +++ /dev/null @@ -1,21 +0,0 @@ -* [Home](index) -* [Installation](Installation) -* [Quick-start](Quick-Start) -* Effects - * [Ambient Occlusion](Ambient-Occlusion) - * [Anti-aliasing](Anti-aliasing) - * [Auto Exposure](Auto-Exposure) - * [Bloom](Bloom) - * [Chromatic Aberration](Chromatic-Aberration) - * [Color Grading](Color-Grading) - * [Deferred Fog](Deferred-Fog) - * [Depth of Field](Depth-of-Field) - * [Grain](Grain) - * [Lens Distortion](Lens-Distortion) - * [Motion Blur](Motion-Blur) - * [Screen-space Reflections](Screen-space-Reflections) - * [Vignette](Vignette) -* Scripting - * [Manipulating the Stack](Manipulating-the-Stack) - * [Writing Custom Effects](Writing-Custom-Effects) -* [Troubleshooting](Troubleshooting) \ No newline at end of file diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Troubleshooting.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Troubleshooting.md deleted file mode 100644 index e232aa862..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Troubleshooting.md +++ /dev/null @@ -1,7 +0,0 @@ -# Troubleshooting - -## Known issues - -- Post-processing doesn't work on MacOS X 10.11.6 when running Metal in the editor due to a driver bug on this specific version of the OS. - -For specific effect limitations / known issues please check the effect page. \ No newline at end of file diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Vignette.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Vignette.md deleted file mode 100644 index de1ed196a..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Vignette.md +++ /dev/null @@ -1,53 +0,0 @@ -# Vignette - -In Photography, vignetting is the term used for the darkening and/or desaturating towards the edges of an image compared to the center. This is usually caused by thick or stacked filters, secondary lenses, and improper lens hoods. It is also often used for artistic effect, such as to draw focus to the center of an image. - - -![](images/screenshot-vignette.png) - - -The Vignette effect in the post-processing stack comes in 2 modes: - -- Classic -- Masked - -### Requirements - -- Shader Model 3 - -See the [Graphics Hardware Capabilities and Emulation](https://docs.unity3d.com/Manual/GraphicsEmulation.html) page for further details and a list of compliant hardware. - -## Classic - -Classic mode offers parametric controls for the position, shape and intensity of the Vignette. This is the most common way to use the effect. - - -![](images/vignette-1.png) - - -### Properties - -| Property | Function | -| -------------- | ------------------------------------------------------------ | -| Color | Vignette color. | -| Center | Sets the vignette center point (screen center is [0.5,0.5]). | -| Intensity | Amount of vignetting on screen. | -| Smoothness | Smoothness of the vignette borders. | -| Roundness | Lower values will make a more squared vignette. | -| Rounded | Should the vignette be perfectly round or be dependent on the current aspect ratio? | - -## Masked - -Masked mode multiplies a custom texture mask over the screen to create a Vignette effect. This mode can be used to achieve less common or irregular vignetting effects. - - -![](images/vignette-2.png) - - -### Properties - -| Property | Function | -| :------------- | :------------------------------------------------------- | -| Color | Vignette color. Use the alpha channel for transparency. | -| Mask | A black and white mask to use as a vignette. | -| Intensity | Mask opacity. | \ No newline at end of file diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Writing-Custom-Effects.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Writing-Custom-Effects.md deleted file mode 100644 index 8ee3a93f4..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/Writing-Custom-Effects.md +++ /dev/null @@ -1,211 +0,0 @@ -# Writing Custom Effects - -This framework allows you to write custom post-processing effects and plug them to the stack without having to modify the codebase. Of course, all effects written against the framework will work out-of-the-box with volume blending, and unless you need loop-dependent features they'll also automatically work with upcoming [Scriptable Render Pipelines](https://github.com/Unity-Technologies/ScriptableRenderLoop)! - -Let's write a very simple grayscale effect to show it off. - -Custom effects need a minimum of two files: a C# and a HLSL source files (note that HLSL gets cross-compiled to GLSL, Metal and others API by Unity so it doesn't mean it's restricted to DirectX). - -> **Note:** this quick-start guide requires moderate knowledge of C# and shader programming. We won't go over every detail here, consider it as an overview more than an in-depth tutorial. - -## C# - -Full code listing: - -```csharp -using System; -using UnityEngine; -using UnityEngine.Rendering.PostProcessing; - -[Serializable] -[PostProcess(typeof(GrayscaleRenderer), PostProcessEvent.AfterStack, "Custom/Grayscale")] -public sealed class Grayscale : PostProcessEffectSettings -{ - [Range(0f, 1f), Tooltip("Grayscale effect intensity.")] - public FloatParameter blend = new FloatParameter { value = 0.5f }; -} - -public sealed class GrayscaleRenderer : PostProcessEffectRenderer -{ - public override void Render(PostProcessRenderContext context) - { - var sheet = context.propertySheets.Get(Shader.Find("Hidden/Custom/Grayscale")); - sheet.properties.SetFloat("_Blend", settings.blend); - context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); - } -} -``` - -> **Important**: this code has to be stored in a file named `Grayscale.cs`. Because of how serialization works in Unity, you have to make sure that the file is named after your settings class name or it won't be serialized properly. - -We need two classes, one to store settings (data) and another one to handle the rendering part (logic). - -### Settings - -The settings class holds the data for our effect. These are all the user-facing fields you'll see in the volume inspector. - -```csharp -[Serializable] -[PostProcess(typeof(GrayscaleRenderer), PostProcessEvent.AfterStack, "Custom/Grayscale")] -public sealed class Grayscale : PostProcessEffectSettings -{ - [Range(0f, 1f), Tooltip("Grayscale effect intensity.")] - public FloatParameter blend = new FloatParameter { value = 0.5f }; -} -``` - -First, you need to make sure this class extends `PostProcessEffectSettings` and can be serialized, so don't forget the `[Serializable]` attribute! - -Second, you'll need to tell Unity that this is a class that holds post-processing data. That's what the `[PostProcess()]` attribute is for. First parameter links the settings to a renderer (more about that in the next section). Second parameter is the injection point for the effect. Right now you have 3 of those available: - -- `BeforeTransparent`: the effect will only be applied to opaque objects before the transparent pass is done. -- `BeforeStack`: the effect will be applied before the built-in stack kicks-in. That includes anti-aliasing, depth-of-field, tonemapping etc. -- `AfterStack`: the effect will be applied after the builtin stack and before FXAA (if it's enabled) & final-pass dithering. - -The third parameter is the menu entry for the effect. You can use `/` to create sub-menu categories. - -Finally, there's an optional fourth parameter `allowInSceneView` which, as its name suggests, enables the effect in the scene view or not. It's set to `true` by default but you may want to disable it for temporal effects or effects that make level editing hard. - -For parameters themselves you can use any type you need, but if you want these to be overridable and blendable in volumes you'll have to use boxed fields. In our case we'll simply add a `FloatParameter` with a fixed range going from `0` to `1`. You can get a full list of builtin parameter classes by browsing through the `ParameterOverride.cs` source file in `/PostProcessing/Runtime/`, or you can create your own quite easily by following the way it's done in that same source file. - -Note that you can also override the `IsEnabledAndSupported()` method of `PostProcessEffectSettings` to set your own requirements for the effect (in case it requires specific hardware) or even to silently disable the effect until a condition is met. For example, in our case we could automatically disable the effect if the blend parameter is `0` like this: - -```csharp -public override bool IsEnabledAndSupported(PostProcessRenderContext context) -{ - return enabled.value - && blend.value > 0f; -} -``` - -That way the effect won't be executed at all unless `blend > 0`. - -### Renderer - -Let's look at the rendering logic now. Our renderer extends `PostProcessEffectRenderer`, with `T` being the settings type to attach to this renderer. - -```csharp -public sealed class GrayscaleRenderer : PostProcessEffectRenderer -{ - public override void Render(PostProcessRenderContext context) - { - var sheet = context.propertySheets.Get(Shader.Find("Hidden/Custom/Grayscale")); - sheet.properties.SetFloat("_Blend", settings.blend); - context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); - } -} -``` - -Everything happens in the `Render()` method that takes a `PostProcessRenderContext` as parameter. This context holds useful data that you can use and is passed around effects when they are rendered. Look into `/PostProcessing/Runtime/PostProcessRenderContext.cs` for a list of what's available (the file is heavily commented). - -`PostProcessEffectRenderer` also have a few other methods you can override, such as: - -- `void Init()`: called when the renderer is created. -- `DepthTextureMode GetLegacyCameraFlags()`: used to set camera flags and request depth map, motion vectors, etc. -- `void ResetHistory()`: called when a "reset history" event is dispatched. Mainly used for temporal effects to clear history buffers and whatnot. -- `void Release()`: called when the renderer is destroyed. Do your cleanup there if you need it. - -Our effect is quite simple. We need two things: - -- Send the `blend` parameter value to the shader. -- Blit a fullscreen pass with the shader to a destination using our source image as an input. - -Because we only use command buffers, the system relies on `MaterialPropertyBlock` to store shader data. You don't need to create those yourself as the framework does automatic pooling for you to save time and make sure performances are optimal. So we'll just request a `PropertySheet` for our shader and set the uniform in it. - -Finally we use the `CommandBuffer` provided by the context to blit a fullscreen pass with our source, destination, sheet and pass number. - -And that's it for the C# part. - -## Shader - -Writing custom effect shaders is fairly straightforward as well, but there are a few things you should know before you get to it. This framework makes heavy use of macros to abstract platform differences and make your life easier. Compatibility is key, even more so with the upcoming Scriptable Render Pipelines. - -Full code listing: - -```hlsl -Shader "Hidden/Custom/Grayscale" -{ - HLSLINCLUDE - - #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" - - TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); - float _Blend; - - float4 Frag(VaryingsDefault i) : SV_Target - { - float4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); - float luminance = dot(color.rgb, float3(0.2126729, 0.7151522, 0.0721750)); - color.rgb = lerp(color.rgb, luminance.xxx, _Blend.xxx); - return color; - } - - ENDHLSL - - SubShader - { - Cull Off ZWrite Off ZTest Always - - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment Frag - - ENDHLSL - } - } -} -``` - -First thing to note: we don't use `CG` blocks anymore. If future compatibility with Scriptable Render Pipelines is important to you, do not use them as they'll break the shader when switching over because `CG` blocks add hidden code you don't want to the shader. Instead, use `HLSL` blocks. - -At a minimum you'll need to include `StdLib.hlsl`. This holds pre-configured vertex shaders and varying structs (`VertDefault`, `VaryingsDefault`) and most of the data you need to write common effects. - -Texture declaration is done using macros. To get a list of available macros we recommend you look into one of the api files in `/PostProcessing/Shaders/API/`. - -Other than that, the rest is standard shader code. Here we compute the luminance for the current pixel, we lerp the pixel color with the luminance using the `_Blend` uniform and we return the result. - -> **Important:** if the shader is never referenced in any of your scenes it won't get built and the effect will not work when running the game outside of the editor. Either add it to a [Resources folder](https://docs.unity3d.com/Manual/LoadingResourcesatRuntime.html) or put it in the **Always Included Shaders** list in `Edit -> Project Settings -> Graphics`. - -## Effect ordering - -Builtin effects are automatically ordered, but what about custom effects? As soon as you create a new effect or import it into your project it'll be added to the `Custom Effect Sorting` lists in the `Post Process Layer` component on your camera(s). - -> **TODO:** editor UI screenshot - -They will be pre-sorted by injection point but you can re-order these at will. The order is per-layer, which means you can use different ordering schemes per-camera. - -## Custom editor - -By default editors for settings classes are automatically created for you. But sometimes you'll want more control over how fields are displayed. Like classic Unity components, you have the ability to create custom editors. - -> **Important:** like classic editors, you'll have to put these in an `Editor` folder. - -If we were to replicate the default editor for our `Grayscale` effect, it would look like this: - -```csharp -using UnityEngine.Rendering.PostProcessing; -using UnityEditor.Rendering.PostProcessing; - -[PostProcessEditor(typeof(Grayscale))] -public sealed class GrayscaleEditor : PostProcessEffectEditor -{ - SerializedParameterOverride m_Blend; - - public override void OnEnable() - { - m_Blend = FindParameterOverride(x => x.blend); - } - - public override void OnInspectorGUI() - { - PropertyField(m_Blend); - } -} -``` - -## Additional notes - -For performance reasons, FXAA expects the LDR luminance value of each pixel to be stored in the alpha channel of its source target. If you need FXAA and wants to inject custom effects at the `AfterStack` injection point, make sure that the last executed effect contains LDR luminance in the alpha channel (or simply copy alpha from the incoming source). If it's not FXAA won't work correctly. \ No newline at end of file diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/aa-1.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/aa-1.png deleted file mode 100644 index 21eb1c2e9..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/aa-1.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/aa-2.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/aa-2.png deleted file mode 100644 index b503812a7..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/aa-2.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/aa-3.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/aa-3.png deleted file mode 100644 index cd0007f21..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/aa-3.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/autoexposure.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/autoexposure.png deleted file mode 100644 index db753b32c..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/autoexposure.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/bloom.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/bloom.png deleted file mode 100644 index b73457b10..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/bloom.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/chroma.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/chroma.png deleted file mode 100644 index 68e2afb3b..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/chroma.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/custom-effect-ordering.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/custom-effect-ordering.png deleted file mode 100644 index 98bdf6805..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/custom-effect-ordering.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/deferredfog.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/deferredfog.png deleted file mode 100644 index 3f7b0fe53..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/deferredfog.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/dof.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/dof.png deleted file mode 100644 index 1a3f48ce7..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/dof.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-1.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-1.png deleted file mode 100644 index b6ef7c616..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-1.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-10.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-10.png deleted file mode 100644 index d3da77579..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-10.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-11.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-11.png deleted file mode 100644 index 1ecd6eec9..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-11.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-2.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-2.png deleted file mode 100644 index 7cfcef218..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-2.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-3.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-3.png deleted file mode 100644 index 339ab52b5..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-3.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-4.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-4.png deleted file mode 100644 index 68f273992..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-4.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-5.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-5.png deleted file mode 100644 index a5d00120e..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-5.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-6.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-6.png deleted file mode 100644 index 900259a03..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-6.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-7.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-7.png deleted file mode 100644 index 3cd56fe03..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-7.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-8.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-8.png deleted file mode 100644 index b91934163..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-8.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-9.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-9.png deleted file mode 100644 index bbd74f7b8..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grading-9.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grain.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grain.png deleted file mode 100644 index 327191352..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/grain.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/home-after.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/home-after.png deleted file mode 100644 index 11c5ba398..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/home-after.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/home-before.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/home-before.png deleted file mode 100644 index 16ff58f98..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/home-before.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/lensdistortion.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/lensdistortion.png deleted file mode 100644 index 54b491142..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/lensdistortion.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/motionblur.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/motionblur.png deleted file mode 100644 index 984f77178..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/motionblur.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/quickstart-1.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/quickstart-1.png deleted file mode 100644 index cfff2d65a..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/quickstart-1.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/quickstart-2.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/quickstart-2.png deleted file mode 100644 index 2b4b52054..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/quickstart-2.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/quickstart-3.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/quickstart-3.png deleted file mode 100644 index 3f190973a..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/quickstart-3.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-antialiasing.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-antialiasing.png deleted file mode 100644 index 8d9fa8f15..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-antialiasing.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-ao.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-ao.png deleted file mode 100644 index 31f48f5bc..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-ao.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-bloom.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-bloom.png deleted file mode 100644 index 96d205043..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-bloom.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-chroma.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-chroma.png deleted file mode 100644 index 44e8b8095..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-chroma.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-distortion.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-distortion.png deleted file mode 100644 index 214b55c0c..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-distortion.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-dof.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-dof.png deleted file mode 100644 index ec72e3392..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-dof.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-fog.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-fog.png deleted file mode 100644 index aba13081c..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-fog.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-grading.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-grading.png deleted file mode 100644 index f7d7bf8b7..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-grading.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-motionblur.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-motionblur.png deleted file mode 100644 index ba3c1b310..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-motionblur.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-ssr.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-ssr.png deleted file mode 100644 index 31a7441b5..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-ssr.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-vignette.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-vignette.png deleted file mode 100644 index 23f4023a5..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/screenshot-vignette.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/ssao-1.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/ssao-1.png deleted file mode 100644 index 51281586e..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/ssao-1.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/ssao-2.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/ssao-2.png deleted file mode 100644 index 4012afc0d..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/ssao-2.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/ssr.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/ssr.png deleted file mode 100644 index 63ed7bcee..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/ssr.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/vignette-1.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/vignette-1.png deleted file mode 100644 index 83192a773..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/vignette-1.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/vignette-2.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/vignette-2.png deleted file mode 100644 index 1616b21be..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/images/vignette-2.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/index.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/index.md deleted file mode 100644 index 378a60e28..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Documentation~/index.md +++ /dev/null @@ -1,13 +0,0 @@ -## Home - -**Post-processing** is the process of applying full-screen filters and effects to a camera’s image buffer before it is displayed to screen. It can drastically improve the visuals of your product with little setup time. - -You can use post-processing effects to simulate physical camera and film properties. - -The images below demonstrate a scene with and without post-processing. - -![](images/home-before.png) -Without post-processing - -![](images/home-after.png) -With post-processing diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/LICENSE.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/LICENSE.md deleted file mode 100644 index f1a5a0184..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/LICENSE.md +++ /dev/null @@ -1,5 +0,0 @@ -Post-processing copyright © 2017 Unity Technologies ApS - -Licensed under the Unity Companion License for Unity-dependent projects--see [Unity Companion License](http://www.unity3d.com/legal/licenses/Unity_Companion_License). - -Unless expressly provided otherwise, the Software under this license is made available strictly on an “AS IS” BASIS WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. Please review the license for details on these and other terms and conditions. diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/LICENSE.md.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/LICENSE.md.meta deleted file mode 100644 index c0254d124..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/LICENSE.md.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 19d205ceab90d42038ad1d376affc356 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing.meta deleted file mode 100644 index 30be5654e..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0d256a256b5667448bb3f33f75dbb4bf -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor.meta deleted file mode 100644 index 0b9e41538..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 10af18f17ff5ecf47bc4dbd1551b36d2 -folderAsset: yes -timeCreated: 1488201031 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Attributes.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Attributes.meta deleted file mode 100644 index b57a72299..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Attributes.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: f5422948b83b1d34c86e710f0d9fea30 -folderAsset: yes -timeCreated: 1492690959 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Attributes/DecoratorAttribute.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Attributes/DecoratorAttribute.cs deleted file mode 100644 index bf46ff547..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Attributes/DecoratorAttribute.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; - -namespace UnityEditor.Rendering.PostProcessing -{ - /// - /// Tells a class which inspector attribute it's a decorator - /// for. - /// - /// - [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] - public sealed class DecoratorAttribute : Attribute - { - /// - /// The attribute type that this decorator can inspect. - /// - public readonly Type attributeType; - - /// - /// Creates a new attribute. - /// - /// The type that this decorator can inspect - public DecoratorAttribute(Type attributeType) - { - this.attributeType = attributeType; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Attributes/DecoratorAttribute.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Attributes/DecoratorAttribute.cs.meta deleted file mode 100644 index 5fb571dec..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Attributes/DecoratorAttribute.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 9753335d6f48da542be1c720aa07bbf5 -timeCreated: 1493109769 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Attributes/PostProcessEditorAttribute.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Attributes/PostProcessEditorAttribute.cs deleted file mode 100644 index 86d8048c5..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Attributes/PostProcessEditorAttribute.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System; - -namespace UnityEditor.Rendering.PostProcessing -{ - /// - /// Tells a class which run-time type it's an editor - /// for. When you make a custom editor for an effect, you need put this attribute on the editor - /// class. - /// - /// - [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] - public sealed class PostProcessEditorAttribute : Attribute - { - /// - /// The type that this editor can edit. - /// - public readonly Type settingsType; - - /// - /// Creates a new attribute. - /// - /// The type that this editor can edit - public PostProcessEditorAttribute(Type settingsType) - { - this.settingsType = settingsType; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Attributes/PostProcessEditorAttribute.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Attributes/PostProcessEditorAttribute.cs.meta deleted file mode 100644 index c28444c91..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Attributes/PostProcessEditorAttribute.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 70ea2ab329ffbac43a0a02daa61dbe6b -timeCreated: 1492690987 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/BaseEditor.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/BaseEditor.cs deleted file mode 100644 index bb08754e8..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/BaseEditor.cs +++ /dev/null @@ -1,59 +0,0 @@ -using System; -using System.Linq.Expressions; -using UnityEngine; -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - /// - /// Small wrapper on top of to ease the access of the underlying component - /// and its serialized fields. - /// - /// The type of the target component to make an editor for - /// - /// - /// public class MyMonoBehaviour : MonoBehaviour - /// { - /// public float myProperty = 1.0f; - /// } - /// - /// [CustomEditor(typeof(MyMonoBehaviour))] - /// public sealed class MyMonoBehaviourEditor : BaseEditor<MyMonoBehaviour> - /// { - /// SerializedProperty m_MyProperty; - /// - /// void OnEnable() - /// { - /// m_MyProperty = FindProperty(x => x.myProperty); - /// } - /// - /// public override void OnInspectorGUI() - /// { - /// EditorGUILayout.PropertyField(m_MyProperty); - /// } - /// } - /// - /// - public class BaseEditor : Editor - where T : MonoBehaviour - { - /// - /// The target component. - /// - protected T m_Target - { - get { return (T)target; } - } - - /// - /// - /// - /// - /// - /// - protected SerializedProperty FindProperty(Expression> expr) - { - return serializedObject.FindProperty(RuntimeUtilities.GetFieldPath(expr)); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/BaseEditor.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/BaseEditor.cs.meta deleted file mode 100644 index f865b5303..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/BaseEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 69a4fc27499557744827c787d71fdf08 -timeCreated: 1488275908 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Decorators.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Decorators.meta deleted file mode 100644 index 872280ea7..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Decorators.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 21a375b704549664589881dfc892e7e7 -folderAsset: yes -timeCreated: 1493051174 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Decorators/AttributeDecorator.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Decorators/AttributeDecorator.cs deleted file mode 100644 index 98ba5f62e..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Decorators/AttributeDecorator.cs +++ /dev/null @@ -1,35 +0,0 @@ -using System; -using UnityEngine; - -namespace UnityEditor.Rendering.PostProcessing -{ - /// - /// The base abstract class for all attribute decorators. - /// - public abstract class AttributeDecorator - { - /// - /// Override this and return false if you want to customize the override checkbox - /// position, else it'll automatically draw it and put the property content in a - /// horizontal scope. - /// - /// true if the override checkbox should be automatically put next to the - /// property, false if it uses a custom position - public virtual bool IsAutoProperty() - { - return true; - } - - /// - /// The rendering method called for the custom GUI. - /// - /// The property to draw the UI for - /// The override checkbox property - /// The title and tooltip for the property - /// A reference to the property attribute set on the original field - /// - /// true if the property UI got rendered successfully, false to - /// fallback on the default editor UI for this property - public abstract bool OnGUI(SerializedProperty property, SerializedProperty overrideState, GUIContent title, Attribute attribute); - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Decorators/AttributeDecorator.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Decorators/AttributeDecorator.cs.meta deleted file mode 100644 index ffd22a339..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Decorators/AttributeDecorator.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 6b2666165a17bbd4e851c1382898651e -timeCreated: 1493051184 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Decorators/Decorators.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Decorators/Decorators.cs deleted file mode 100644 index e5fcce94f..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Decorators/Decorators.cs +++ /dev/null @@ -1,143 +0,0 @@ -using System; -using UnityEngine; - -namespace UnityEditor.Rendering.PostProcessing -{ - [Decorator(typeof(RangeAttribute))] - internal sealed class RangeDecorator : AttributeDecorator - { - public override bool OnGUI(SerializedProperty property, SerializedProperty overrideState, GUIContent title, Attribute attribute) - { - var attr = (RangeAttribute)attribute; - - if (property.propertyType == SerializedPropertyType.Float) - { - property.floatValue = EditorGUILayout.Slider(title, property.floatValue, attr.min, attr.max); - return true; - } - - if (property.propertyType == SerializedPropertyType.Integer) - { - property.intValue = EditorGUILayout.IntSlider(title, property.intValue, (int)attr.min, (int)attr.max); - return true; - } - - return false; - } - } - - [Decorator(typeof(UnityEngine.Rendering.PostProcessing.MinAttribute))] - internal sealed class MinDecorator : AttributeDecorator - { - public override bool OnGUI(SerializedProperty property, SerializedProperty overrideState, GUIContent title, Attribute attribute) - { - var attr = (UnityEngine.Rendering.PostProcessing.MinAttribute)attribute; - - if (property.propertyType == SerializedPropertyType.Float) - { - float v = EditorGUILayout.FloatField(title, property.floatValue); - property.floatValue = Mathf.Max(v, attr.min); - return true; - } - - if (property.propertyType == SerializedPropertyType.Integer) - { - int v = EditorGUILayout.IntField(title, property.intValue); - property.intValue = Mathf.Max(v, (int)attr.min); - return true; - } - - return false; - } - } - - [Decorator(typeof(UnityEngine.Rendering.PostProcessing.MaxAttribute))] - internal sealed class MaxDecorator : AttributeDecorator - { - public override bool OnGUI(SerializedProperty property, SerializedProperty overrideState, GUIContent title, Attribute attribute) - { - var attr = (UnityEngine.Rendering.PostProcessing.MaxAttribute)attribute; - - if (property.propertyType == SerializedPropertyType.Float) - { - float v = EditorGUILayout.FloatField(title, property.floatValue); - property.floatValue = Mathf.Min(v, attr.max); - return true; - } - - if (property.propertyType == SerializedPropertyType.Integer) - { - int v = EditorGUILayout.IntField(title, property.intValue); - property.intValue = Mathf.Min(v, (int)attr.max); - return true; - } - - return false; - } - } - - [Decorator(typeof(UnityEngine.Rendering.PostProcessing.MinMaxAttribute))] - internal sealed class MinMaxDecorator : AttributeDecorator - { - public override bool OnGUI(SerializedProperty property, SerializedProperty overrideState, GUIContent title, Attribute attribute) - { - var attr = (UnityEngine.Rendering.PostProcessing.MinMaxAttribute)attribute; - - if (property.propertyType == SerializedPropertyType.Float) - { - float v = EditorGUILayout.FloatField(title, property.floatValue); - property.floatValue = Mathf.Clamp(v, attr.min, attr.max); - return true; - } - - if (property.propertyType == SerializedPropertyType.Integer) - { - int v = EditorGUILayout.IntField(title, property.intValue); - property.intValue = Mathf.Clamp(v, (int)attr.min, (int)attr.max); - return true; - } - - if (property.propertyType == SerializedPropertyType.Vector2) - { - var v = property.vector2Value; - EditorGUILayout.MinMaxSlider(title, ref v.x, ref v.y, attr.min, attr.max); - property.vector2Value = v; - return true; - } - - return false; - } - } - - [Decorator(typeof(ColorUsageAttribute))] - internal sealed class ColorUsageDecorator : AttributeDecorator - { - public override bool OnGUI(SerializedProperty property, SerializedProperty overrideState, GUIContent title, Attribute attribute) - { - var attr = (ColorUsageAttribute)attribute; - - if (property.propertyType != SerializedPropertyType.Color) - return false; - -#if UNITY_2018_1_OR_NEWER - property.colorValue = EditorGUILayout.ColorField(title, property.colorValue, true, attr.showAlpha, attr.hdr); -#else - ColorPickerHDRConfig hdrConfig = null; - - if (attr.hdr) - { - hdrConfig = new ColorPickerHDRConfig( - attr.minBrightness, - attr.maxBrightness, - attr.minExposureValue, - attr.maxExposureValue - ); - } - - property.colorValue = EditorGUILayout.ColorField(title, property.colorValue, true, attr.showAlpha, attr.hdr, hdrConfig); -#endif - - return true; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Decorators/Decorators.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Decorators/Decorators.cs.meta deleted file mode 100644 index 773f5fdda..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Decorators/Decorators.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: d6ae47710b8593e41960a944bb29e6c3 -timeCreated: 1493051241 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Decorators/TrackballDecorator.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Decorators/TrackballDecorator.cs deleted file mode 100644 index c60d58e93..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Decorators/TrackballDecorator.cs +++ /dev/null @@ -1,209 +0,0 @@ -using System; -using UnityEngine; -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - [Decorator(typeof(TrackballAttribute))] - internal sealed class TrackballDecorator : AttributeDecorator - { - static readonly int k_ThumbHash = "colorWheelThumb".GetHashCode(); - static Material s_Material; - - bool m_ResetState; - Vector2 m_CursorPos; - - public override bool IsAutoProperty() - { - return false; - } - - public override bool OnGUI(SerializedProperty property, SerializedProperty overrideState, GUIContent title, Attribute attribute) - { - if (property.propertyType != SerializedPropertyType.Vector4) - return false; - - var value = property.vector4Value; - - using (new EditorGUILayout.VerticalScope()) - { - using (new EditorGUI.DisabledScope(!overrideState.boolValue)) - DrawWheel(ref value, overrideState.boolValue, (TrackballAttribute)attribute); - - DrawLabelAndOverride(title, overrideState); - } - - if (m_ResetState) - { - value = Vector4.zero; - m_ResetState = false; - } - - property.vector4Value = value; - - return true; - } - - void DrawWheel(ref Vector4 value, bool overrideState, TrackballAttribute attr) - { - var wheelRect = GUILayoutUtility.GetAspectRect(1f); - float size = wheelRect.width; - float hsize = size / 2f; - float radius = 0.38f * size; - - Vector3 hsv; - Color.RGBToHSV(value, out hsv.x, out hsv.y, out hsv.z); - float offset = value.w; - - // Thumb - var thumbPos = Vector2.zero; - float theta = hsv.x * (Mathf.PI * 2f); - thumbPos.x = Mathf.Cos(theta + (Mathf.PI / 2f)); - thumbPos.y = Mathf.Sin(theta - (Mathf.PI / 2f)); - thumbPos *= hsv.y * radius; - - // Draw the wheel - if (Event.current.type == EventType.Repaint) - { - // Retina support - float scale = EditorGUIUtility.pixelsPerPoint; - - if (s_Material == null) - s_Material = new Material(Shader.Find("Hidden/PostProcessing/Editor/Trackball")) { hideFlags = HideFlags.HideAndDontSave }; - - // Wheel texture - #if UNITY_2018_1_OR_NEWER - const RenderTextureReadWrite kReadWrite = RenderTextureReadWrite.sRGB; - #else - const RenderTextureReadWrite kReadWrite = RenderTextureReadWrite.Linear; - #endif - - var oldRT = RenderTexture.active; - var rt = RenderTexture.GetTemporary((int)(size * scale), (int)(size * scale), 0, RenderTextureFormat.ARGB32, kReadWrite); - s_Material.SetFloat("_Offset", offset); - s_Material.SetFloat("_DisabledState", overrideState ? 1f : 0.5f); - s_Material.SetVector("_Resolution", new Vector2(size * scale, size * scale / 2f)); - Graphics.Blit(null, rt, s_Material, EditorGUIUtility.isProSkin ? 0 : 1); - RenderTexture.active = oldRT; - - GUI.DrawTexture(wheelRect, rt); - RenderTexture.ReleaseTemporary(rt); - - var thumbSize = Styling.wheelThumbSize; - var thumbSizeH = thumbSize / 2f; - Styling.wheelThumb.Draw(new Rect(wheelRect.x + hsize + thumbPos.x - thumbSizeH.x, wheelRect.y + hsize + thumbPos.y - thumbSizeH.y, thumbSize.x, thumbSize.y), false, false, false, false); - } - - // Input - var bounds = wheelRect; - bounds.x += hsize - radius; - bounds.y += hsize - radius; - bounds.width = bounds.height = radius * 2f; - hsv = GetInput(bounds, hsv, thumbPos, radius); - value = Color.HSVToRGB(hsv.x, hsv.y, 1f); - value.w = offset; - - // Offset - var sliderRect = GUILayoutUtility.GetRect(1f, 17f); - float padding = sliderRect.width * 0.05f; // 5% padding - sliderRect.xMin += padding; - sliderRect.xMax -= padding; - value.w = GUI.HorizontalSlider(sliderRect, value.w, -1f, 1f); - - if (attr.mode == TrackballAttribute.Mode.None) - return; - - // Values - var displayValue = Vector3.zero; - - switch (attr.mode) - { - case TrackballAttribute.Mode.Lift: displayValue = ColorUtilities.ColorToLift(value); - break; - case TrackballAttribute.Mode.Gamma: displayValue = ColorUtilities.ColorToInverseGamma(value); - break; - case TrackballAttribute.Mode.Gain: displayValue = ColorUtilities.ColorToGain(value); - break; - } - - using (new EditorGUI.DisabledGroupScope(true)) - { - var valuesRect = GUILayoutUtility.GetRect(1f, 17f); - valuesRect.width /= 3f; - GUI.Label(valuesRect, displayValue.x.ToString("F2"), EditorStyles.centeredGreyMiniLabel); - valuesRect.x += valuesRect.width; - GUI.Label(valuesRect, displayValue.y.ToString("F2"), EditorStyles.centeredGreyMiniLabel); - valuesRect.x += valuesRect.width; - GUI.Label(valuesRect, displayValue.z.ToString("F2"), EditorStyles.centeredGreyMiniLabel); - valuesRect.x += valuesRect.width; - } - } - - void DrawLabelAndOverride(GUIContent title, SerializedProperty overrideState) - { - // Title - var areaRect = GUILayoutUtility.GetRect(1f, 17f); - var labelSize = Styling.wheelLabel.CalcSize(title); - var labelRect = new Rect(areaRect.x + areaRect.width / 2 - labelSize.x / 2, areaRect.y, labelSize.x, labelSize.y); - GUI.Label(labelRect, title, Styling.wheelLabel); - - // Override checkbox - var overrideRect = new Rect(labelRect.x - 17, labelRect.y + 3, 17f, 17f); - EditorUtilities.DrawOverrideCheckbox(overrideRect, overrideState); - } - - Vector3 GetInput(Rect bounds, Vector3 hsv, Vector2 thumbPos, float radius) - { - var e = Event.current; - var id = GUIUtility.GetControlID(k_ThumbHash, FocusType.Passive, bounds); - var mousePos = e.mousePosition; - - if (e.type == EventType.MouseDown && GUIUtility.hotControl == 0 && bounds.Contains(mousePos)) - { - if (e.button == 0) - { - var center = new Vector2(bounds.x + radius, bounds.y + radius); - float dist = Vector2.Distance(center, mousePos); - - if (dist <= radius) - { - e.Use(); - m_CursorPos = new Vector2(thumbPos.x + radius, thumbPos.y + radius); - GUIUtility.hotControl = id; - GUI.changed = true; - } - } - else if (e.button == 1) - { - e.Use(); - GUI.changed = true; - m_ResetState = true; - } - } - else if (e.type == EventType.MouseDrag && e.button == 0 && GUIUtility.hotControl == id) - { - e.Use(); - GUI.changed = true; - m_CursorPos += e.delta * GlobalSettings.trackballSensitivity; - GetWheelHueSaturation(m_CursorPos.x, m_CursorPos.y, radius, out hsv.x, out hsv.y); - } - else if (e.rawType == EventType.MouseUp && e.button == 0 && GUIUtility.hotControl == id) - { - e.Use(); - GUIUtility.hotControl = 0; - } - - return hsv; - } - - void GetWheelHueSaturation(float x, float y, float radius, out float hue, out float saturation) - { - float dx = (x - radius) / radius; - float dy = (y - radius) / radius; - float d = Mathf.Sqrt(dx * dx + dy * dy); - hue = Mathf.Atan2(dx, -dy); - hue = 1f - ((hue > 0) ? hue : (Mathf.PI * 2f) + hue) / (Mathf.PI * 2f); - saturation = Mathf.Clamp01(d); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Decorators/TrackballDecorator.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Decorators/TrackballDecorator.cs.meta deleted file mode 100644 index 52832a680..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Decorators/TrackballDecorator.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 26ed99f46b86df8449003e6ec0f65144 -timeCreated: 1493900975 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/EffectListEditor.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/EffectListEditor.cs deleted file mode 100644 index 6f9a995af..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/EffectListEditor.cs +++ /dev/null @@ -1,346 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using UnityEngine; -using UnityEngine.Assertions; -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - /// - /// This class is used to draw the user interface in the inspector for all the settings - /// contained in a . - /// - public sealed class EffectListEditor - { - /// - /// A reference to the being displayed by this editor. - /// - public PostProcessProfile asset { get; private set; } - - Editor m_BaseEditor; - - SerializedObject m_SerializedObject; - SerializedProperty m_SettingsProperty; - - Dictionary m_EditorTypes; // SettingsType => EditorType - List m_Editors; - - /// - /// Creates a new instance to be used inside an existing . - /// - /// A reference to the parent editor instance. - public EffectListEditor(Editor editor) - { - Assert.IsNotNull(editor); - m_BaseEditor = editor; - } - - /// - /// Initializes the editor. This method should be called before is - /// called. - /// - /// A reference to the that will be - /// displayed. - /// A of the given instance. - public void Init(PostProcessProfile asset, SerializedObject serializedObject) - { - Assert.IsNotNull(asset); - Assert.IsNotNull(serializedObject); - - this.asset = asset; - m_SerializedObject = serializedObject; - m_SettingsProperty = serializedObject.FindProperty("settings"); - Assert.IsNotNull(m_SettingsProperty); - - m_EditorTypes = new Dictionary(); - m_Editors = new List(); - - // Gets the list of all available postfx editors - var editorTypes = RuntimeUtilities.GetAllAssemblyTypes() - .Where( - t => t.IsSubclassOf(typeof(PostProcessEffectBaseEditor)) - && t.IsDefined(typeof(PostProcessEditorAttribute), false) - && !t.IsAbstract - ); - - // Map them to their corresponding settings type - foreach (var editorType in editorTypes) - { - var attribute = editorType.GetAttribute(); - m_EditorTypes.Add(attribute.settingsType, editorType); - } - - // Create editors for existing settings - for (int i = 0; i < this.asset.settings.Count; i++) - CreateEditor(this.asset.settings[i], m_SettingsProperty.GetArrayElementAtIndex(i)); - - // Keep track of undo/redo to redraw the inspector when that happens - Undo.undoRedoPerformed += OnUndoRedoPerformed; - } - - void OnUndoRedoPerformed() - { - asset.isDirty = true; - - // Dumb hack to make sure the serialized object is up to date on undo (else there'll be - // a state mismatch when this class is used in a GameObject inspector). - m_SerializedObject.Update(); - m_SerializedObject.ApplyModifiedProperties(); - - // Seems like there's an issue with the inspector not repainting after some undo events - // This will take care of that - m_BaseEditor.Repaint(); - } - - void CreateEditor(PostProcessEffectSettings settings, SerializedProperty property, int index = -1) - { - var settingsType = settings.GetType(); - Type editorType; - - if (!m_EditorTypes.TryGetValue(settingsType, out editorType)) - editorType = typeof(DefaultPostProcessEffectEditor); - - var editor = (PostProcessEffectBaseEditor)Activator.CreateInstance(editorType); - editor.Init(settings, m_BaseEditor); - editor.baseProperty = property.Copy(); - - if (index < 0) - m_Editors.Add(editor); - else - m_Editors[index] = editor; - } - - // Clears & recreate all editors - mainly used when the volume has been modified outside of - // the editor (user scripts, inspector reset etc). - void RefreshEditors() - { - // Disable all editors first - foreach (var editor in m_Editors) - editor.OnDisable(); - - // Remove them - m_Editors.Clear(); - - // Recreate editors for existing settings, if any - for (int i = 0; i < asset.settings.Count; i++) - CreateEditor(asset.settings[i], m_SettingsProperty.GetArrayElementAtIndex(i)); - } - - /// - /// This method should be called when the editor is destroyed or disabled. - /// - public void Clear() - { - if (m_Editors == null) - return; // Hasn't been inited yet - - foreach (var editor in m_Editors) - editor.OnDisable(); - - m_Editors.Clear(); - m_EditorTypes.Clear(); - - Undo.undoRedoPerformed -= OnUndoRedoPerformed; - } - - /// - /// Draws the settings for the referenced in the editor. - /// - public void OnGUI() - { - if (asset == null) - return; - - if (asset.isDirty) - { - RefreshEditors(); - asset.isDirty = false; - } - - bool isEditable = !VersionControl.Provider.isActive - || AssetDatabase.IsOpenForEdit(asset, StatusQueryOptions.UseCachedIfPossible); - - using (new EditorGUI.DisabledScope(!isEditable)) - { - EditorGUILayout.LabelField(EditorUtilities.GetContent("Overrides"), EditorStyles.boldLabel); - - // Override list - for (int i = 0; i < m_Editors.Count; i++) - { - var editor = m_Editors[i]; - string title = editor.GetDisplayTitle(); - int id = i; // Needed for closure capture below - - EditorUtilities.DrawSplitter(); - bool displayContent = EditorUtilities.DrawHeader( - title, - editor.baseProperty, - editor.activeProperty, - editor.target, - () => ResetEffectOverride(editor.target.GetType(), id), - () => RemoveEffectOverride(id) - ); - - if (displayContent) - { - using (new EditorGUI.DisabledScope(!editor.activeProperty.boolValue)) - editor.OnInternalInspectorGUI(); - } - } - - if (m_Editors.Count > 0) - { - EditorUtilities.DrawSplitter(); - EditorGUILayout.Space(); - } - else - { - EditorGUILayout.HelpBox("No override set on this volume.", MessageType.Info); - } - - if (GUILayout.Button("Add effect...", EditorStyles.miniButton)) - { - var menu = new GenericMenu(); - - var typeMap = PostProcessManager.instance.settingsTypes; - foreach (var kvp in typeMap) - { - var type = kvp.Key; - var title = EditorUtilities.GetContent(kvp.Value.menuItem); - bool exists = asset.HasSettings(type); - - if (!exists) - menu.AddItem(title, false, () => AddEffectOverride(type)); - else - menu.AddDisabledItem(title); - } - - menu.ShowAsContext(); - } - - EditorGUILayout.Space(); - } - } - - void AddEffectOverride(Type type) - { - m_SerializedObject.Update(); - - var effect = CreateNewEffect(type); - Undo.RegisterCreatedObjectUndo(effect, "Add Effect Override"); - - // Store this new effect as a subasset so we can reference it safely afterwards. Only when its not an instantiated profile - if (EditorUtility.IsPersistent(asset)) - AssetDatabase.AddObjectToAsset(effect, asset); - - // Grow the list first, then add - that's how serialized lists work in Unity - m_SettingsProperty.arraySize++; - var effectProp = m_SettingsProperty.GetArrayElementAtIndex(m_SettingsProperty.arraySize - 1); - effectProp.objectReferenceValue = effect; - - // Create & store the internal editor object for this effect - CreateEditor(effect, effectProp); - - m_SerializedObject.ApplyModifiedProperties(); - - // Force save / refresh. Important to do this last because SaveAssets can cause effect to become null! - if (EditorUtility.IsPersistent(asset)) - { - EditorUtility.SetDirty(asset); - AssetDatabase.SaveAssets(); - } - } - - void RemoveEffectOverride(int id) - { - // Huh. Hack to keep foldout state on the next element... - bool nextFoldoutState = false; - if (id < m_Editors.Count - 1) - nextFoldoutState = m_Editors[id + 1].baseProperty.isExpanded; - - // Remove from the cached editors list - m_Editors[id].OnDisable(); - m_Editors.RemoveAt(id); - - m_SerializedObject.Update(); - - var property = m_SettingsProperty.GetArrayElementAtIndex(id); - var effect = property.objectReferenceValue; - - // Unassign it (should be null already but serialization does funky things - property.objectReferenceValue = null; - - // ...and remove the array index itself from the list - m_SettingsProperty.DeleteArrayElementAtIndex(id); - - // Finally refresh editor reference to the serialized settings list - for (int i = 0; i < m_Editors.Count; i++) - m_Editors[i].baseProperty = m_SettingsProperty.GetArrayElementAtIndex(i).Copy(); - - if (id < m_Editors.Count) - m_Editors[id].baseProperty.isExpanded = nextFoldoutState; - - m_SerializedObject.ApplyModifiedProperties(); - - // Destroy the setting object after ApplyModifiedProperties(). If we do it before, redo - // actions will be in the wrong order and the reference to the setting object in the - // list will be lost. - Undo.DestroyObjectImmediate(effect); - - // Force save / refresh - EditorUtility.SetDirty(asset); - AssetDatabase.SaveAssets(); - } - - // Reset is done by deleting and removing the object from the list and adding a new one in - // the place as it was before - void ResetEffectOverride(Type type, int id) - { - // Remove from the cached editors list - m_Editors[id].OnDisable(); - m_Editors[id] = null; - - m_SerializedObject.Update(); - - var property = m_SettingsProperty.GetArrayElementAtIndex(id); - var prevSettings = property.objectReferenceValue; - - // Unassign it but down remove it from the array to keep the index available - property.objectReferenceValue = null; - - // Create a new object - var newEffect = CreateNewEffect(type); - Undo.RegisterCreatedObjectUndo(newEffect, "Reset Effect Override"); - - // Store this new effect as a subasset so we can reference it safely afterwards - AssetDatabase.AddObjectToAsset(newEffect, asset); - - // Put it in the reserved space - property.objectReferenceValue = newEffect; - - // Create & store the internal editor object for this effect - CreateEditor(newEffect, property, id); - - m_SerializedObject.ApplyModifiedProperties(); - - // Same as RemoveEffectOverride, destroy at the end so it's recreated first on Undo to - // make sure the GUID exists before undoing the list state - Undo.DestroyObjectImmediate(prevSettings); - - // Force save / refresh - EditorUtility.SetDirty(asset); - AssetDatabase.SaveAssets(); - } - - PostProcessEffectSettings CreateNewEffect(Type type) - { - var effect = (PostProcessEffectSettings)ScriptableObject.CreateInstance(type); - effect.hideFlags = HideFlags.HideInInspector | HideFlags.HideInHierarchy; - effect.name = type.Name; - effect.enabled.value = true; - return effect; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/EffectListEditor.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/EffectListEditor.cs.meta deleted file mode 100644 index 201d41e7e..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/EffectListEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 9f9fffe306f3969418c31ee836b6ffee -timeCreated: 1494328254 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects.meta deleted file mode 100644 index c7143a17d..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 1da84851b99c43746afb49e79ae2b1d6 -folderAsset: yes -timeCreated: 1492696579 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/AmbientOcclusionEditor.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/AmbientOcclusionEditor.cs deleted file mode 100644 index 6b3800a82..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/AmbientOcclusionEditor.cs +++ /dev/null @@ -1,74 +0,0 @@ -using UnityEngine; -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - [PostProcessEditor(typeof(AmbientOcclusion))] - internal sealed class AmbientOcclusionEditor : PostProcessEffectEditor - { - SerializedParameterOverride m_Mode; - SerializedParameterOverride m_Intensity; - SerializedParameterOverride m_Color; - SerializedParameterOverride m_AmbientOnly; - SerializedParameterOverride m_ThicknessModifier; - SerializedParameterOverride m_DirectLightingStrength; - SerializedParameterOverride m_Quality; - SerializedParameterOverride m_Radius; - - public override void OnEnable() - { - m_Mode = FindParameterOverride(x => x.mode); - m_Intensity = FindParameterOverride(x => x.intensity); - m_Color = FindParameterOverride(x => x.color); - m_AmbientOnly = FindParameterOverride(x => x.ambientOnly); - m_ThicknessModifier = FindParameterOverride(x => x.thicknessModifier); - m_DirectLightingStrength = FindParameterOverride(x => x.directLightingStrength); - m_Quality = FindParameterOverride(x => x.quality); - m_Radius = FindParameterOverride(x => x.radius); - } - - public override void OnInspectorGUI() - { - PropertyField(m_Mode); - int aoMode = m_Mode.value.intValue; - - if (RuntimeUtilities.scriptableRenderPipelineActive && aoMode == (int)AmbientOcclusionMode.ScalableAmbientObscurance) - { - EditorGUILayout.HelpBox("Scalable ambient obscurance doesn't work with scriptable render pipelines.", MessageType.Warning); - return; - } - -#if !UNITY_2017_1_OR_NEWER - if (aoMode == (int)AmbientOcclusionMode.MultiScaleVolumetricObscurance) - { - EditorGUILayout.HelpBox("Multi-scale volumetric obscurance requires Unity 2017.1 or more.", MessageType.Warning); - return; - } -#endif - - PropertyField(m_Intensity); - - if (aoMode == (int)AmbientOcclusionMode.ScalableAmbientObscurance) - { - PropertyField(m_Radius); - PropertyField(m_Quality); - } - else if (aoMode == (int)AmbientOcclusionMode.MultiScaleVolumetricObscurance) - { - if (!SystemInfo.supportsComputeShaders) - EditorGUILayout.HelpBox("Multi-scale volumetric obscurance requires compute shader support.", MessageType.Warning); - - PropertyField(m_ThicknessModifier); - - if (RuntimeUtilities.scriptableRenderPipelineActive) - PropertyField(m_DirectLightingStrength); - } - - PropertyField(m_Color); - PropertyField(m_AmbientOnly); - - if (m_AmbientOnly.overrideState.boolValue && m_AmbientOnly.value.boolValue && !RuntimeUtilities.scriptableRenderPipelineActive) - EditorGUILayout.HelpBox("Ambient-only only works with cameras rendering in Deferred + HDR", MessageType.Info); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/AmbientOcclusionEditor.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/AmbientOcclusionEditor.cs.meta deleted file mode 100644 index 05a9d62df..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/AmbientOcclusionEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 67909952e72978b4ea41880509c936ff -timeCreated: 1505217529 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/AutoExposureEditor.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/AutoExposureEditor.cs deleted file mode 100644 index c6343868a..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/AutoExposureEditor.cs +++ /dev/null @@ -1,63 +0,0 @@ -using UnityEngine; -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - [PostProcessEditor(typeof(AutoExposure))] - internal sealed class AutoExposureEditor : PostProcessEffectEditor - { - SerializedParameterOverride m_Filtering; - - SerializedParameterOverride m_MinLuminance; - SerializedParameterOverride m_MaxLuminance; - SerializedParameterOverride m_KeyValue; - - SerializedParameterOverride m_EyeAdaptation; - SerializedParameterOverride m_SpeedUp; - SerializedParameterOverride m_SpeedDown; - - public override void OnEnable() - { - m_Filtering = FindParameterOverride(x => x.filtering); - - m_MinLuminance = FindParameterOverride(x => x.minLuminance); - m_MaxLuminance = FindParameterOverride(x => x.maxLuminance); - m_KeyValue = FindParameterOverride(x => x.keyValue); - - m_EyeAdaptation = FindParameterOverride(x => x.eyeAdaptation); - m_SpeedUp = FindParameterOverride(x => x.speedUp); - m_SpeedDown = FindParameterOverride(x => x.speedDown); - } - - public override void OnInspectorGUI() - { - if (!SystemInfo.supportsComputeShaders) - EditorGUILayout.HelpBox("Auto exposure requires compute shader support.", MessageType.Warning); - - EditorUtilities.DrawHeaderLabel("Exposure"); - - PropertyField(m_Filtering); - PropertyField(m_MinLuminance); - PropertyField(m_MaxLuminance); - - // Clamp min/max adaptation values - float minLum = m_MinLuminance.value.floatValue; - float maxLum = m_MaxLuminance.value.floatValue; - m_MinLuminance.value.floatValue = Mathf.Min(minLum, maxLum); - m_MaxLuminance.value.floatValue = Mathf.Max(minLum, maxLum); - - PropertyField(m_KeyValue); - - EditorGUILayout.Space(); - EditorUtilities.DrawHeaderLabel("Adaptation"); - - PropertyField(m_EyeAdaptation); - - if (m_EyeAdaptation.value.intValue == (int)EyeAdaptation.Progressive) - { - PropertyField(m_SpeedUp); - PropertyField(m_SpeedDown); - } - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/AutoExposureEditor.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/AutoExposureEditor.cs.meta deleted file mode 100644 index d901e9ce2..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/AutoExposureEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 3051d2fb25301fa4a81e797109712feb -timeCreated: 1493022639 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/BloomEditor.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/BloomEditor.cs deleted file mode 100644 index 9b424b039..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/BloomEditor.cs +++ /dev/null @@ -1,65 +0,0 @@ -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - [PostProcessEditor(typeof(Bloom))] - internal sealed class BloomEditor : PostProcessEffectEditor - { - SerializedParameterOverride m_Intensity; - SerializedParameterOverride m_Threshold; - SerializedParameterOverride m_SoftKnee; - SerializedParameterOverride m_Clamp; - SerializedParameterOverride m_Diffusion; - SerializedParameterOverride m_AnamorphicRatio; - SerializedParameterOverride m_Color; - SerializedParameterOverride m_FastMode; - - SerializedParameterOverride m_DirtTexture; - SerializedParameterOverride m_DirtIntensity; - - public override void OnEnable() - { - m_Intensity = FindParameterOverride(x => x.intensity); - m_Threshold = FindParameterOverride(x => x.threshold); - m_SoftKnee = FindParameterOverride(x => x.softKnee); - m_Clamp = FindParameterOverride(x => x.clamp); - m_Diffusion = FindParameterOverride(x => x.diffusion); - m_AnamorphicRatio = FindParameterOverride(x => x.anamorphicRatio); - m_Color = FindParameterOverride(x => x.color); - m_FastMode = FindParameterOverride(x => x.fastMode); - - m_DirtTexture = FindParameterOverride(x => x.dirtTexture); - m_DirtIntensity = FindParameterOverride(x => x.dirtIntensity); - } - - public override void OnInspectorGUI() - { - EditorUtilities.DrawHeaderLabel("Bloom"); - - PropertyField(m_Intensity); - PropertyField(m_Threshold); - PropertyField(m_SoftKnee); - PropertyField(m_Clamp); - PropertyField(m_Diffusion); - PropertyField(m_AnamorphicRatio); - PropertyField(m_Color); - PropertyField(m_FastMode); - - if (m_FastMode.overrideState.boolValue && !m_FastMode.value.boolValue && EditorUtilities.isTargetingConsolesOrMobiles) - EditorGUILayout.HelpBox("For performance reasons it is recommended to use Fast Mode on mobile and console platforms.", MessageType.Warning); - - EditorGUILayout.Space(); - EditorUtilities.DrawHeaderLabel("Dirtiness"); - - PropertyField(m_DirtTexture); - PropertyField(m_DirtIntensity); - - if (RuntimeUtilities.isVREnabled) - { - if ((m_DirtIntensity.overrideState.boolValue && m_DirtIntensity.value.floatValue > 0f) - || (m_DirtTexture.overrideState.boolValue && m_DirtTexture.value.objectReferenceValue != null)) - EditorGUILayout.HelpBox("Using a dirt texture in VR is not recommended.", MessageType.Warning); - } - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/BloomEditor.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/BloomEditor.cs.meta deleted file mode 100644 index 38ac2027c..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/BloomEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 47feae56b7bdcf4499b96c2aa3c6ce07 -timeCreated: 1493116477 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/ChromaticAberrationEditor.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/ChromaticAberrationEditor.cs deleted file mode 100644 index 203ab59ef..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/ChromaticAberrationEditor.cs +++ /dev/null @@ -1,31 +0,0 @@ -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - [PostProcessEditor(typeof(ChromaticAberration))] - internal sealed class ChromaticAberrationEditor : PostProcessEffectEditor - { - SerializedParameterOverride m_SpectralLut; - SerializedParameterOverride m_Intensity; - SerializedParameterOverride m_FastMode; - - public override void OnEnable() - { - m_SpectralLut = FindParameterOverride(x => x.spectralLut); - m_Intensity = FindParameterOverride(x => x.intensity); - m_FastMode = FindParameterOverride(x => x.fastMode); - } - - public override void OnInspectorGUI() - { - base.OnInspectorGUI(); - - PropertyField(m_SpectralLut); - PropertyField(m_Intensity); - PropertyField(m_FastMode); - - if (m_FastMode.overrideState.boolValue && !m_FastMode.value.boolValue && EditorUtilities.isTargetingConsolesOrMobiles) - EditorGUILayout.HelpBox("For performance reasons it is recommended to use Fast Mode on mobile and console platforms.", MessageType.Warning); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/ChromaticAberrationEditor.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/ChromaticAberrationEditor.cs.meta deleted file mode 100644 index adb717a23..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/ChromaticAberrationEditor.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: f8e5f5614c0d72445b292f4b16ab660b -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/ColorGradingEditor.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/ColorGradingEditor.cs deleted file mode 100644 index 7b49b7dd3..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/ColorGradingEditor.cs +++ /dev/null @@ -1,746 +0,0 @@ -using System.Collections.Generic; -using UnityEngine; -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - [PostProcessEditor(typeof(ColorGrading))] - internal sealed class ColorGradingEditor : PostProcessEffectEditor - { - SerializedParameterOverride m_GradingMode; - - static GUIContent[] s_Curves = - { - new GUIContent("Master"), - new GUIContent("Red"), - new GUIContent("Green"), - new GUIContent("Blue"), - new GUIContent("Hue Vs Hue"), - new GUIContent("Hue Vs Sat"), - new GUIContent("Sat Vs Sat"), - new GUIContent("Lum Vs Sat") - }; - - SerializedParameterOverride m_ExternalLut; - - SerializedParameterOverride m_Tonemapper; - SerializedParameterOverride m_ToneCurveToeStrength; - SerializedParameterOverride m_ToneCurveToeLength; - SerializedParameterOverride m_ToneCurveShoulderStrength; - SerializedParameterOverride m_ToneCurveShoulderLength; - SerializedParameterOverride m_ToneCurveShoulderAngle; - SerializedParameterOverride m_ToneCurveGamma; - - SerializedParameterOverride m_LdrLut; - SerializedParameterOverride m_LdrLutContribution; - - SerializedParameterOverride m_Temperature; - SerializedParameterOverride m_Tint; - - SerializedParameterOverride m_ColorFilter; - SerializedParameterOverride m_HueShift; - SerializedParameterOverride m_Saturation; - SerializedParameterOverride m_Brightness; - SerializedParameterOverride m_PostExposure; - SerializedParameterOverride m_Contrast; - - SerializedParameterOverride m_MixerRedOutRedIn; - SerializedParameterOverride m_MixerRedOutGreenIn; - SerializedParameterOverride m_MixerRedOutBlueIn; - - SerializedParameterOverride m_MixerGreenOutRedIn; - SerializedParameterOverride m_MixerGreenOutGreenIn; - SerializedParameterOverride m_MixerGreenOutBlueIn; - - SerializedParameterOverride m_MixerBlueOutRedIn; - SerializedParameterOverride m_MixerBlueOutGreenIn; - SerializedParameterOverride m_MixerBlueOutBlueIn; - - SerializedParameterOverride m_Lift; - SerializedParameterOverride m_Gamma; - SerializedParameterOverride m_Gain; - - SerializedParameterOverride m_MasterCurve; - SerializedParameterOverride m_RedCurve; - SerializedParameterOverride m_GreenCurve; - SerializedParameterOverride m_BlueCurve; - - SerializedParameterOverride m_HueVsHueCurve; - SerializedParameterOverride m_HueVsSatCurve; - SerializedParameterOverride m_SatVsSatCurve; - SerializedParameterOverride m_LumVsSatCurve; - - // Internal references to the actual animation curves - // Needed for the curve editor - SerializedProperty m_RawMasterCurve; - SerializedProperty m_RawRedCurve; - SerializedProperty m_RawGreenCurve; - SerializedProperty m_RawBlueCurve; - - SerializedProperty m_RawHueVsHueCurve; - SerializedProperty m_RawHueVsSatCurve; - SerializedProperty m_RawSatVsSatCurve; - SerializedProperty m_RawLumVsSatCurve; - - CurveEditor m_CurveEditor; - Dictionary m_CurveDict; - - // Custom tone curve drawing - const int k_CustomToneCurveResolution = 48; - const float k_CustomToneCurveRangeY = 1.025f; - readonly Vector3[] m_RectVertices = new Vector3[4]; - readonly Vector3[] m_LineVertices = new Vector3[2]; - readonly Vector3[] m_CurveVertices = new Vector3[k_CustomToneCurveResolution]; - Rect m_CustomToneCurveRect; - readonly HableCurve m_HableCurve = new HableCurve(); - - public override void OnEnable() - { - m_GradingMode = FindParameterOverride(x => x.gradingMode); - - m_ExternalLut = FindParameterOverride(x => x.externalLut); - - m_Tonemapper = FindParameterOverride(x => x.tonemapper); - m_ToneCurveToeStrength = FindParameterOverride(x => x.toneCurveToeStrength); - m_ToneCurveToeLength = FindParameterOverride(x => x.toneCurveToeLength); - m_ToneCurveShoulderStrength = FindParameterOverride(x => x.toneCurveShoulderStrength); - m_ToneCurveShoulderLength = FindParameterOverride(x => x.toneCurveShoulderLength); - m_ToneCurveShoulderAngle = FindParameterOverride(x => x.toneCurveShoulderAngle); - m_ToneCurveGamma = FindParameterOverride(x => x.toneCurveGamma); - - m_LdrLut = FindParameterOverride(x => x.ldrLut); - m_LdrLutContribution = FindParameterOverride(x => x.ldrLutContribution); - - m_Temperature = FindParameterOverride(x => x.temperature); - m_Tint = FindParameterOverride(x => x.tint); - - m_ColorFilter = FindParameterOverride(x => x.colorFilter); - m_HueShift = FindParameterOverride(x => x.hueShift); - m_Saturation = FindParameterOverride(x => x.saturation); - m_Brightness = FindParameterOverride(x => x.brightness); - m_PostExposure = FindParameterOverride(x => x.postExposure); - m_Contrast = FindParameterOverride(x => x.contrast); - - m_MixerRedOutRedIn = FindParameterOverride(x => x.mixerRedOutRedIn); - m_MixerRedOutGreenIn = FindParameterOverride(x => x.mixerRedOutGreenIn); - m_MixerRedOutBlueIn = FindParameterOverride(x => x.mixerRedOutBlueIn); - - m_MixerGreenOutRedIn = FindParameterOverride(x => x.mixerGreenOutRedIn); - m_MixerGreenOutGreenIn = FindParameterOverride(x => x.mixerGreenOutGreenIn); - m_MixerGreenOutBlueIn = FindParameterOverride(x => x.mixerGreenOutBlueIn); - - m_MixerBlueOutRedIn = FindParameterOverride(x => x.mixerBlueOutRedIn); - m_MixerBlueOutGreenIn = FindParameterOverride(x => x.mixerBlueOutGreenIn); - m_MixerBlueOutBlueIn = FindParameterOverride(x => x.mixerBlueOutBlueIn); - - m_Lift = FindParameterOverride(x => x.lift); - m_Gamma = FindParameterOverride(x => x.gamma); - m_Gain = FindParameterOverride(x => x.gain); - - m_MasterCurve = FindParameterOverride(x => x.masterCurve); - m_RedCurve = FindParameterOverride(x => x.redCurve); - m_GreenCurve = FindParameterOverride(x => x.greenCurve); - m_BlueCurve = FindParameterOverride(x => x.blueCurve); - - m_HueVsHueCurve = FindParameterOverride(x => x.hueVsHueCurve); - m_HueVsSatCurve = FindParameterOverride(x => x.hueVsSatCurve); - m_SatVsSatCurve = FindParameterOverride(x => x.satVsSatCurve); - m_LumVsSatCurve = FindParameterOverride(x => x.lumVsSatCurve); - - m_RawMasterCurve = FindProperty(x => x.masterCurve.value.curve); - m_RawRedCurve = FindProperty(x => x.redCurve.value.curve); - m_RawGreenCurve = FindProperty(x => x.greenCurve.value.curve); - m_RawBlueCurve = FindProperty(x => x.blueCurve.value.curve); - - m_RawHueVsHueCurve = FindProperty(x => x.hueVsHueCurve.value.curve); - m_RawHueVsSatCurve = FindProperty(x => x.hueVsSatCurve.value.curve); - m_RawSatVsSatCurve = FindProperty(x => x.satVsSatCurve.value.curve); - m_RawLumVsSatCurve = FindProperty(x => x.lumVsSatCurve.value.curve); - - m_CurveEditor = new CurveEditor(); - m_CurveDict = new Dictionary(); - - // Prepare the curve editor - SetupCurve(m_RawMasterCurve, new Color(1f, 1f, 1f), 2, false); - SetupCurve(m_RawRedCurve, new Color(1f, 0f, 0f), 2, false); - SetupCurve(m_RawGreenCurve, new Color(0f, 1f, 0f), 2, false); - SetupCurve(m_RawBlueCurve, new Color(0f, 0.5f, 1f), 2, false); - SetupCurve(m_RawHueVsHueCurve, new Color(1f, 1f, 1f), 0, true); - SetupCurve(m_RawHueVsSatCurve, new Color(1f, 1f, 1f), 0, true); - SetupCurve(m_RawSatVsSatCurve, new Color(1f, 1f, 1f), 0, false); - SetupCurve(m_RawLumVsSatCurve, new Color(1f, 1f, 1f), 0, false); - } - - public override void OnInspectorGUI() - { - PropertyField(m_GradingMode); - - var gradingMode = (GradingMode)m_GradingMode.value.intValue; - - // Check if we're in gamma or linear and display a warning if we're trying to do hdr - // color grading while being in gamma mode - if (gradingMode != GradingMode.LowDefinitionRange) - { - if (QualitySettings.activeColorSpace == ColorSpace.Gamma) - EditorGUILayout.HelpBox("ColorSpace in project settings is set to Gamma, HDR color grading won't look correct. Switch to Linear or use LDR color grading mode instead.", MessageType.Warning); - } - - if (m_GradingMode.overrideState.boolValue && gradingMode == GradingMode.External) - { - if (!SystemInfo.supports3DRenderTextures || !SystemInfo.supportsComputeShaders) - EditorGUILayout.HelpBox("HDR color grading requires compute shader & 3D render texture support.", MessageType.Warning); - } - - if (gradingMode == GradingMode.LowDefinitionRange) - DoStandardModeGUI(false); - else if (gradingMode == GradingMode.HighDefinitionRange) - DoStandardModeGUI(true); - else if (gradingMode == GradingMode.External) - DoExternalModeGUI(); - - EditorGUILayout.Space(); - } - - void SetupCurve(SerializedProperty prop, Color color, uint minPointCount, bool loop) - { - var state = CurveEditor.CurveState.defaultState; - state.color = color; - state.visible = false; - state.minPointCount = minPointCount; - state.onlyShowHandlesOnSelection = true; - state.zeroKeyConstantValue = 0.5f; - state.loopInBounds = loop; - m_CurveEditor.Add(prop, state); - m_CurveDict.Add(prop, color); - } - - void DoExternalModeGUI() - { - PropertyField(m_ExternalLut); - - var lut = m_ExternalLut.value.objectReferenceValue; - if (lut != null) - { - if (lut.GetType() == typeof(Texture3D)) - { - var o = (Texture3D)lut; - if (o.width == o.height && o.height == o.depth) - return; - } - else if (lut.GetType() == typeof(RenderTexture)) - { - var o = (RenderTexture)lut; - if (o.width == o.height && o.height == o.volumeDepth) - return; - } - - EditorGUILayout.HelpBox("Custom LUTs have to be log-encoded 3D textures or 3D render textures with cube format.", MessageType.Warning); - } - } - - void DoStandardModeGUI(bool hdr) - { - if (!hdr) - { - PropertyField(m_LdrLut); - PropertyField(m_LdrLutContribution); - - var lut = (target as ColorGrading).ldrLut.value; - CheckLutImportSettings(lut); - } - - if (hdr) - { - EditorGUILayout.Space(); - EditorUtilities.DrawHeaderLabel("Tonemapping"); - PropertyField(m_Tonemapper); - - if (m_Tonemapper.value.intValue == (int)Tonemapper.Custom) - { - DrawCustomToneCurve(); - PropertyField(m_ToneCurveToeStrength); - PropertyField(m_ToneCurveToeLength); - PropertyField(m_ToneCurveShoulderStrength); - PropertyField(m_ToneCurveShoulderLength); - PropertyField(m_ToneCurveShoulderAngle); - PropertyField(m_ToneCurveGamma); - } - } - - EditorGUILayout.Space(); - EditorUtilities.DrawHeaderLabel("White Balance"); - - PropertyField(m_Temperature); - PropertyField(m_Tint); - - EditorGUILayout.Space(); - EditorUtilities.DrawHeaderLabel("Tone"); - - if (hdr) - PropertyField(m_PostExposure); - - PropertyField(m_ColorFilter); - PropertyField(m_HueShift); - PropertyField(m_Saturation); - - if (!hdr) - PropertyField(m_Brightness); - - PropertyField(m_Contrast); - - EditorGUILayout.Space(); - int currentChannel = GlobalSettings.currentChannelMixer; - - using (new EditorGUILayout.HorizontalScope()) - { - EditorGUILayout.PrefixLabel("Channel Mixer", GUIStyle.none, Styling.headerLabel); - - EditorGUI.BeginChangeCheck(); - { - using (new EditorGUILayout.HorizontalScope()) - { - GUILayoutUtility.GetRect(9f, 18f, GUILayout.ExpandWidth(false)); // Dirty hack to do proper right column alignement - if (GUILayout.Toggle(currentChannel == 0, EditorUtilities.GetContent("Red|Red output channel."), EditorStyles.miniButtonLeft)) currentChannel = 0; - if (GUILayout.Toggle(currentChannel == 1, EditorUtilities.GetContent("Green|Green output channel."), EditorStyles.miniButtonMid)) currentChannel = 1; - if (GUILayout.Toggle(currentChannel == 2, EditorUtilities.GetContent("Blue|Blue output channel."), EditorStyles.miniButtonRight)) currentChannel = 2; - } - } - if (EditorGUI.EndChangeCheck()) - GUI.FocusControl(null); - } - - GlobalSettings.currentChannelMixer = currentChannel; - - if (currentChannel == 0) - { - PropertyField(m_MixerRedOutRedIn); - PropertyField(m_MixerRedOutGreenIn); - PropertyField(m_MixerRedOutBlueIn); - } - else if (currentChannel == 1) - { - PropertyField(m_MixerGreenOutRedIn); - PropertyField(m_MixerGreenOutGreenIn); - PropertyField(m_MixerGreenOutBlueIn); - } - else - { - PropertyField(m_MixerBlueOutRedIn); - PropertyField(m_MixerBlueOutGreenIn); - PropertyField(m_MixerBlueOutBlueIn); - } - - EditorGUILayout.Space(); - EditorUtilities.DrawHeaderLabel("Trackballs"); - - using (new EditorGUILayout.HorizontalScope()) - { - PropertyField(m_Lift); - GUILayout.Space(4f); - PropertyField(m_Gamma); - GUILayout.Space(4f); - PropertyField(m_Gain); - } - - EditorGUILayout.Space(); - EditorUtilities.DrawHeaderLabel("Grading Curves"); - - DoCurvesGUI(hdr); - } - - void CheckLutImportSettings(Texture lut) - { - if (lut != null) - { - var importer = AssetImporter.GetAtPath(AssetDatabase.GetAssetPath(lut)) as TextureImporter; - - // Fails when using an internal texture as you can't change import settings on - // builtin resources, thus the check for null - if (importer != null) - { - bool valid = importer.anisoLevel == 0 - && importer.mipmapEnabled == false - && importer.sRGBTexture == false - && importer.textureCompression == TextureImporterCompression.Uncompressed - && importer.wrapMode == TextureWrapMode.Clamp; - - if (!valid) - EditorUtilities.DrawFixMeBox("Invalid LUT import settings.", () => SetLutImportSettings(importer)); - } - - if (lut.width != lut.height * lut.height) - { - EditorGUILayout.HelpBox("The Lookup Texture size is invalid. Width should be Height * Height.", MessageType.Error); - } - } - } - - void SetLutImportSettings(TextureImporter importer) - { - importer.textureType = TextureImporterType.Default; - importer.mipmapEnabled = false; - importer.anisoLevel = 0; - importer.sRGBTexture = false; - importer.npotScale = TextureImporterNPOTScale.None; - importer.textureCompression = TextureImporterCompression.Uncompressed; - importer.alphaSource = TextureImporterAlphaSource.None; - importer.wrapMode = TextureWrapMode.Clamp; - importer.SaveAndReimport(); - AssetDatabase.Refresh(); - } - - void DrawCustomToneCurve() - { - EditorGUILayout.Space(); - - // Reserve GUI space - using (new GUILayout.HorizontalScope()) - { - GUILayout.Space(EditorGUI.indentLevel * 15f); - m_CustomToneCurveRect = GUILayoutUtility.GetRect(128, 80); - } - - if (Event.current.type != EventType.Repaint) - return; - - // Prepare curve data - float toeStrength = m_ToneCurveToeStrength.value.floatValue; - float toeLength = m_ToneCurveToeLength.value.floatValue; - float shoulderStrength = m_ToneCurveShoulderStrength.value.floatValue; - float shoulderLength = m_ToneCurveShoulderLength.value.floatValue; - float shoulderAngle = m_ToneCurveShoulderAngle.value.floatValue; - float gamma = m_ToneCurveGamma.value.floatValue; - m_HableCurve.Init( - toeStrength, - toeLength, - shoulderStrength, - shoulderLength, - shoulderAngle, - gamma - ); - - float endPoint = m_HableCurve.whitePoint; - - // Background - m_RectVertices[0] = PointInRect(0f, 0f, endPoint); - m_RectVertices[1] = PointInRect(endPoint, 0f, endPoint); - m_RectVertices[2] = PointInRect(endPoint, k_CustomToneCurveRangeY, endPoint); - m_RectVertices[3] = PointInRect(0f, k_CustomToneCurveRangeY, endPoint); - Handles.DrawSolidRectangleWithOutline(m_RectVertices, Color.white * 0.1f, Color.white * 0.4f); - - // Vertical guides - if (endPoint < m_CustomToneCurveRect.width / 3) - { - int steps = Mathf.CeilToInt(endPoint); - for (var i = 1; i < steps; i++) - DrawLine(i, 0, i, k_CustomToneCurveRangeY, 0.4f, endPoint); - } - - // Label - Handles.Label(m_CustomToneCurveRect.position + Vector2.right, "Custom Tone Curve", EditorStyles.miniLabel); - - // Draw the acual curve - var vcount = 0; - while (vcount < k_CustomToneCurveResolution) - { - float x = endPoint * vcount / (k_CustomToneCurveResolution - 1); - float y = m_HableCurve.Eval(x); - - if (y < k_CustomToneCurveRangeY) - { - m_CurveVertices[vcount++] = PointInRect(x, y, endPoint); - } - else - { - if (vcount > 1) - { - // Extend the last segment to the top edge of the rect. - var v1 = m_CurveVertices[vcount - 2]; - var v2 = m_CurveVertices[vcount - 1]; - var clip = (m_CustomToneCurveRect.y - v1.y) / (v2.y - v1.y); - m_CurveVertices[vcount - 1] = v1 + (v2 - v1) * clip; - } - break; - } - } - - if (vcount > 1) - { - Handles.color = Color.white * 0.9f; - Handles.DrawAAPolyLine(2f, vcount, m_CurveVertices); - } - } - - void DrawLine(float x1, float y1, float x2, float y2, float grayscale, float rangeX) - { - m_LineVertices[0] = PointInRect(x1, y1, rangeX); - m_LineVertices[1] = PointInRect(x2, y2, rangeX); - Handles.color = Color.white * grayscale; - Handles.DrawAAPolyLine(2f, m_LineVertices); - } - - Vector3 PointInRect(float x, float y, float rangeX) - { - x = Mathf.Lerp(m_CustomToneCurveRect.x, m_CustomToneCurveRect.xMax, x / rangeX); - y = Mathf.Lerp(m_CustomToneCurveRect.yMax, m_CustomToneCurveRect.y, y / k_CustomToneCurveRangeY); - return new Vector3(x, y, 0); - } - - void ResetVisibleCurves() - { - foreach (var curve in m_CurveDict) - { - var state = m_CurveEditor.GetCurveState(curve.Key); - state.visible = false; - m_CurveEditor.SetCurveState(curve.Key, state); - } - } - - void SetCurveVisible(SerializedProperty rawProp, SerializedProperty overrideProp) - { - var state = m_CurveEditor.GetCurveState(rawProp); - state.visible = true; - state.editable = overrideProp.boolValue; - m_CurveEditor.SetCurveState(rawProp, state); - } - - void CurveOverrideToggle(SerializedProperty overrideProp) - { - overrideProp.boolValue = GUILayout.Toggle(overrideProp.boolValue, EditorUtilities.GetContent("Override"), EditorStyles.toolbarButton); - } - - static Material s_MaterialGrid; - - void DoCurvesGUI(bool hdr) - { - EditorGUILayout.Space(); - ResetVisibleCurves(); - - using (new EditorGUI.DisabledGroupScope(serializedObject.isEditingMultipleObjects)) - { - int curveEditingId = 0; - SerializedProperty currentCurveRawProp = null; - - // Top toolbar - using (new GUILayout.HorizontalScope(EditorStyles.toolbar)) - { - curveEditingId = DoCurveSelectionPopup(GlobalSettings.currentCurve, hdr); - curveEditingId = Mathf.Clamp(curveEditingId, hdr ? 4 : 0, 7); - - EditorGUILayout.Space(); - - switch (curveEditingId) - { - case 0: - CurveOverrideToggle(m_MasterCurve.overrideState); - SetCurveVisible(m_RawMasterCurve, m_MasterCurve.overrideState); - currentCurveRawProp = m_RawMasterCurve; - break; - case 1: - CurveOverrideToggle(m_RedCurve.overrideState); - SetCurveVisible(m_RawRedCurve, m_RedCurve.overrideState); - currentCurveRawProp = m_RawRedCurve; - break; - case 2: - CurveOverrideToggle(m_GreenCurve.overrideState); - SetCurveVisible(m_RawGreenCurve, m_GreenCurve.overrideState); - currentCurveRawProp = m_RawGreenCurve; - break; - case 3: - CurveOverrideToggle(m_BlueCurve.overrideState); - SetCurveVisible(m_RawBlueCurve, m_BlueCurve.overrideState); - currentCurveRawProp = m_RawBlueCurve; - break; - case 4: - CurveOverrideToggle(m_HueVsHueCurve.overrideState); - SetCurveVisible(m_RawHueVsHueCurve, m_HueVsHueCurve.overrideState); - currentCurveRawProp = m_RawHueVsHueCurve; - break; - case 5: - CurveOverrideToggle(m_HueVsSatCurve.overrideState); - SetCurveVisible(m_RawHueVsSatCurve, m_HueVsSatCurve.overrideState); - currentCurveRawProp = m_RawHueVsSatCurve; - break; - case 6: - CurveOverrideToggle(m_SatVsSatCurve.overrideState); - SetCurveVisible(m_RawSatVsSatCurve, m_SatVsSatCurve.overrideState); - currentCurveRawProp = m_RawSatVsSatCurve; - break; - case 7: - CurveOverrideToggle(m_LumVsSatCurve.overrideState); - SetCurveVisible(m_RawLumVsSatCurve, m_LumVsSatCurve.overrideState); - currentCurveRawProp = m_RawLumVsSatCurve; - break; - } - - GUILayout.FlexibleSpace(); - - if (GUILayout.Button("Reset", EditorStyles.toolbarButton)) - { - switch (curveEditingId) - { - case 0: m_RawMasterCurve.animationCurveValue = AnimationCurve.Linear(0f, 0f, 1f, 1f); - break; - case 1: m_RawRedCurve.animationCurveValue = AnimationCurve.Linear(0f, 0f, 1f, 1f); - break; - case 2: m_RawGreenCurve.animationCurveValue = AnimationCurve.Linear(0f, 0f, 1f, 1f); - break; - case 3: m_RawBlueCurve.animationCurveValue = AnimationCurve.Linear(0f, 0f, 1f, 1f); - break; - case 4: m_RawHueVsHueCurve.animationCurveValue = new AnimationCurve(); - break; - case 5: m_RawHueVsSatCurve.animationCurveValue = new AnimationCurve(); - break; - case 6: m_RawSatVsSatCurve.animationCurveValue = new AnimationCurve(); - break; - case 7: m_RawLumVsSatCurve.animationCurveValue = new AnimationCurve(); - break; - } - } - - GlobalSettings.currentCurve = curveEditingId; - } - - // Curve area - var settings = m_CurveEditor.settings; - var rect = GUILayoutUtility.GetAspectRect(2f); - var innerRect = settings.padding.Remove(rect); - - if (Event.current.type == EventType.Repaint) - { - // Background - EditorGUI.DrawRect(rect, new Color(0.15f, 0.15f, 0.15f, 1f)); - - if (curveEditingId == 4 || curveEditingId == 5) - DrawBackgroundTexture(innerRect, 0); - else if (curveEditingId == 6 || curveEditingId == 7) - DrawBackgroundTexture(innerRect, 1); - - // Bounds - Handles.color = Color.white * (GUI.enabled ? 1f : 0.5f); - Handles.DrawSolidRectangleWithOutline(innerRect, Color.clear, new Color(0.8f, 0.8f, 0.8f, 0.5f)); - - // Grid setup - Handles.color = new Color(1f, 1f, 1f, 0.05f); - int hLines = (int)Mathf.Sqrt(innerRect.width); - int vLines = (int)(hLines / (innerRect.width / innerRect.height)); - - // Vertical grid - int gridOffset = Mathf.FloorToInt(innerRect.width / hLines); - int gridPadding = ((int)(innerRect.width) % hLines) / 2; - - for (int i = 1; i < hLines; i++) - { - var offset = i * Vector2.right * gridOffset; - offset.x += gridPadding; - Handles.DrawLine(innerRect.position + offset, new Vector2(innerRect.x, innerRect.yMax - 1) + offset); - } - - // Horizontal grid - gridOffset = Mathf.FloorToInt(innerRect.height / vLines); - gridPadding = ((int)(innerRect.height) % vLines) / 2; - - for (int i = 1; i < vLines; i++) - { - var offset = i * Vector2.up * gridOffset; - offset.y += gridPadding; - Handles.DrawLine(innerRect.position + offset, new Vector2(innerRect.xMax - 1, innerRect.y) + offset); - } - } - - // Curve editor - if (m_CurveEditor.OnGUI(rect)) - { - Repaint(); - GUI.changed = true; - } - - if (Event.current.type == EventType.Repaint) - { - // Borders - Handles.color = Color.black; - Handles.DrawLine(new Vector2(rect.x, rect.y - 18f), new Vector2(rect.xMax, rect.y - 18f)); - Handles.DrawLine(new Vector2(rect.x, rect.y - 19f), new Vector2(rect.x, rect.yMax)); - Handles.DrawLine(new Vector2(rect.x, rect.yMax), new Vector2(rect.xMax, rect.yMax)); - Handles.DrawLine(new Vector2(rect.xMax, rect.yMax), new Vector2(rect.xMax, rect.y - 18f)); - - bool editable = m_CurveEditor.GetCurveState(currentCurveRawProp).editable; - string editableString = editable ? string.Empty : "(Not Overriding)\n"; - - // Selection info - var selection = m_CurveEditor.GetSelection(); - var infoRect = innerRect; - infoRect.x += 5f; - infoRect.width = 100f; - infoRect.height = 30f; - - if (selection.curve != null && selection.keyframeIndex > -1) - { - var key = selection.keyframe.Value; - GUI.Label(infoRect, string.Format("{0}\n{1}", key.time.ToString("F3"), key.value.ToString("F3")), Styling.preLabel); - } - else - { - GUI.Label(infoRect, editableString, Styling.preLabel); - } - } - } - } - - void DrawBackgroundTexture(Rect rect, int pass) - { - if (s_MaterialGrid == null) - s_MaterialGrid = new Material(Shader.Find("Hidden/PostProcessing/Editor/CurveGrid")) { hideFlags = HideFlags.HideAndDontSave }; - - float scale = EditorGUIUtility.pixelsPerPoint; - - #if UNITY_2018_1_OR_NEWER - const RenderTextureReadWrite kReadWrite = RenderTextureReadWrite.sRGB; - #else - const RenderTextureReadWrite kReadWrite = RenderTextureReadWrite.Linear; - #endif - - var oldRt = RenderTexture.active; - var rt = RenderTexture.GetTemporary(Mathf.CeilToInt(rect.width * scale), Mathf.CeilToInt(rect.height * scale), 0, RenderTextureFormat.ARGB32, kReadWrite); - s_MaterialGrid.SetFloat("_DisabledState", GUI.enabled ? 1f : 0.5f); - s_MaterialGrid.SetFloat("_PixelScaling", EditorGUIUtility.pixelsPerPoint); - - Graphics.Blit(null, rt, s_MaterialGrid, pass); - RenderTexture.active = oldRt; - - GUI.DrawTexture(rect, rt); - RenderTexture.ReleaseTemporary(rt); - } - - int DoCurveSelectionPopup(int id, bool hdr) - { - GUILayout.Label(s_Curves[id], EditorStyles.toolbarPopup, GUILayout.MaxWidth(150f)); - - var lastRect = GUILayoutUtility.GetLastRect(); - var e = Event.current; - - if (e.type == EventType.MouseDown && e.button == 0 && lastRect.Contains(e.mousePosition)) - { - var menu = new GenericMenu(); - - for (int i = 0; i < s_Curves.Length; i++) - { - if (i == 4) - menu.AddSeparator(""); - - if (hdr && i < 4) - menu.AddDisabledItem(s_Curves[i]); - else - { - int current = i; // Capture local for closure - menu.AddItem(s_Curves[i], current == id, () => GlobalSettings.currentCurve = current); - } - } - - menu.DropDown(new Rect(lastRect.xMin, lastRect.yMax, 1f, 1f)); - } - - return id; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/ColorGradingEditor.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/ColorGradingEditor.cs.meta deleted file mode 100644 index fdc2a1344..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/ColorGradingEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: f79c8927d684af6499f512361e23bace -timeCreated: 1493026581 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/DefaultPostProcessEffectEditor.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/DefaultPostProcessEffectEditor.cs deleted file mode 100644 index 6d0c31b5b..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/DefaultPostProcessEffectEditor.cs +++ /dev/null @@ -1,47 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Reflection; -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - /// - /// A default effect editor that gathers all parameters and list them vertically in the - /// inspector. - /// - public class DefaultPostProcessEffectEditor : PostProcessEffectBaseEditor - { - List m_Parameters; - - /// - public override void OnEnable() - { - m_Parameters = new List(); - - var fields = target.GetType() - .GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic) - .Where(t => t.FieldType.IsSubclassOf(typeof(ParameterOverride)) && t.Name != "enabled") - .Where(t => - (t.IsPublic && t.GetCustomAttributes(typeof(NonSerializedAttribute), false).Length == 0) - || (t.GetCustomAttributes(typeof(UnityEngine.SerializeField), false).Length > 0) - ) - .ToList(); - - foreach (var field in fields) - { - var property = serializedObject.FindProperty(field.Name); - var attributes = field.GetCustomAttributes(false).Cast().ToArray(); - var parameter = new SerializedParameterOverride(property, attributes); - m_Parameters.Add(parameter); - } - } - - /// - public override void OnInspectorGUI() - { - foreach (var parameter in m_Parameters) - PropertyField(parameter); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/DefaultPostProcessEffectEditor.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/DefaultPostProcessEffectEditor.cs.meta deleted file mode 100644 index 9289be6d5..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/DefaultPostProcessEffectEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 4b0cd5ddb61a56b4f86ea0fd0a102fe7 -timeCreated: 1492705253 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/DepthOfFieldEditor.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/DepthOfFieldEditor.cs deleted file mode 100644 index 9e58d674c..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/DepthOfFieldEditor.cs +++ /dev/null @@ -1,33 +0,0 @@ -using UnityEngine; -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - [PostProcessEditor(typeof(DepthOfField))] - internal sealed class DepthOfFieldEditor : PostProcessEffectEditor - { - SerializedParameterOverride m_FocusDistance; - SerializedParameterOverride m_Aperture; - SerializedParameterOverride m_FocalLength; - SerializedParameterOverride m_KernelSize; - - public override void OnEnable() - { - m_FocusDistance = FindParameterOverride(x => x.focusDistance); - m_Aperture = FindParameterOverride(x => x.aperture); - m_FocalLength = FindParameterOverride(x => x.focalLength); - m_KernelSize = FindParameterOverride(x => x.kernelSize); - } - - public override void OnInspectorGUI() - { - if (SystemInfo.graphicsShaderLevel < 35) - EditorGUILayout.HelpBox("Depth Of Field is only supported on the following platforms:\nDX11+, OpenGL 3.2+, OpenGL ES 3+, Metal, Vulkan, PS4/XB1 consoles.", MessageType.Warning); - - PropertyField(m_FocusDistance); - PropertyField(m_Aperture); - PropertyField(m_FocalLength); - PropertyField(m_KernelSize); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/DepthOfFieldEditor.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/DepthOfFieldEditor.cs.meta deleted file mode 100644 index 826cd59fe..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/DepthOfFieldEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: eb4c0b518e013c8418135b3bd8a91b6c -timeCreated: 1513004657 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/LensDistortionEditor.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/LensDistortionEditor.cs deleted file mode 100644 index ed657a2eb..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/LensDistortionEditor.cs +++ /dev/null @@ -1,16 +0,0 @@ -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - [PostProcessEditor(typeof(LensDistortion))] - internal sealed class LensDistortionEditor : DefaultPostProcessEffectEditor - { - public override void OnInspectorGUI() - { - if (RuntimeUtilities.isVREnabled) - EditorGUILayout.HelpBox("Lens Distortion is automatically disabled when VR is enabled.", MessageType.Warning); - - base.OnInspectorGUI(); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/LensDistortionEditor.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/LensDistortionEditor.cs.meta deleted file mode 100644 index f3b814733..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/LensDistortionEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 7758395f983044344b2c8ea743e956c3 -timeCreated: 1519742257 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/ScreenSpaceReflectionsEditor.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/ScreenSpaceReflectionsEditor.cs deleted file mode 100644 index 8fe1451a8..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/ScreenSpaceReflectionsEditor.cs +++ /dev/null @@ -1,58 +0,0 @@ -using UnityEngine; -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - [PostProcessEditor(typeof(ScreenSpaceReflections))] - internal sealed class ScreenSpaceReflectionsEditor : PostProcessEffectEditor - { - SerializedParameterOverride m_Preset; - SerializedParameterOverride m_MaximumIterationCount; - SerializedParameterOverride m_Thickness; - SerializedParameterOverride m_Resolution; - SerializedParameterOverride m_MaximumMarchDistance; - SerializedParameterOverride m_DistanceFade; - SerializedParameterOverride m_Vignette; - - public override void OnEnable() - { - m_Preset = FindParameterOverride(x => x.preset); - m_MaximumIterationCount = FindParameterOverride(x => x.maximumIterationCount); - m_Thickness = FindParameterOverride(x => x.thickness); - m_Resolution = FindParameterOverride(x => x.resolution); - m_MaximumMarchDistance = FindParameterOverride(x => x.maximumMarchDistance); - m_DistanceFade = FindParameterOverride(x => x.distanceFade); - m_Vignette = FindParameterOverride(x => x.vignette); - } - - public override void OnInspectorGUI() - { - if (RuntimeUtilities.scriptableRenderPipelineActive) - { - EditorGUILayout.HelpBox("This effect doesn't work with scriptable render pipelines yet.", MessageType.Warning); - return; - } - - if (Camera.main != null && Camera.main.actualRenderingPath != RenderingPath.DeferredShading) - EditorGUILayout.HelpBox("This effect only works with the deferred rendering path.", MessageType.Warning); - - if (!SystemInfo.supportsComputeShaders) - EditorGUILayout.HelpBox("This effect requires compute shader support.", MessageType.Warning); - - PropertyField(m_Preset); - - if (m_Preset.value.intValue == (int)ScreenSpaceReflectionPreset.Custom) - { - PropertyField(m_MaximumIterationCount); - PropertyField(m_Thickness); - PropertyField(m_Resolution); - - EditorGUILayout.Space(); - } - - PropertyField(m_MaximumMarchDistance); - PropertyField(m_DistanceFade); - PropertyField(m_Vignette); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/ScreenSpaceReflectionsEditor.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/ScreenSpaceReflectionsEditor.cs.meta deleted file mode 100644 index 1d8d1168e..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/ScreenSpaceReflectionsEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: d798d5719bf3b434eafb013385f872eb -timeCreated: 1505226497 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/VignetteEditor.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/VignetteEditor.cs deleted file mode 100644 index 0351076e3..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/VignetteEditor.cs +++ /dev/null @@ -1,91 +0,0 @@ -using UnityEngine; -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - [PostProcessEditor(typeof(Vignette))] - internal sealed class VignetteEditor : PostProcessEffectEditor - { - SerializedParameterOverride m_Mode; - SerializedParameterOverride m_Color; - - SerializedParameterOverride m_Center; - SerializedParameterOverride m_Intensity; - SerializedParameterOverride m_Smoothness; - SerializedParameterOverride m_Roundness; - SerializedParameterOverride m_Rounded; - - SerializedParameterOverride m_Mask; - SerializedParameterOverride m_Opacity; - - public override void OnEnable() - { - m_Mode = FindParameterOverride(x => x.mode); - m_Color = FindParameterOverride(x => x.color); - - m_Center = FindParameterOverride(x => x.center); - m_Intensity = FindParameterOverride(x => x.intensity); - m_Smoothness = FindParameterOverride(x => x.smoothness); - m_Roundness = FindParameterOverride(x => x.roundness); - m_Rounded = FindParameterOverride(x => x.rounded); - - m_Mask = FindParameterOverride(x => x.mask); - m_Opacity = FindParameterOverride(x => x.opacity); - } - - public override void OnInspectorGUI() - { - PropertyField(m_Mode); - PropertyField(m_Color); - - if (m_Mode.value.intValue == (int)VignetteMode.Classic) - { - PropertyField(m_Center); - PropertyField(m_Intensity); - PropertyField(m_Smoothness); - PropertyField(m_Roundness); - PropertyField(m_Rounded); - } - else - { - PropertyField(m_Mask); - - var mask = (target as Vignette).mask.value; - - // Checks import settings on the mask - if (mask != null) - { - var importer = AssetImporter.GetAtPath(AssetDatabase.GetAssetPath(mask)) as TextureImporter; - - // Fails when using an internal texture as you can't change import settings on - // builtin resources, thus the check for null - if (importer != null) - { - bool valid = importer.anisoLevel == 0 - && importer.mipmapEnabled == false - && importer.alphaSource == TextureImporterAlphaSource.FromGrayScale - && importer.textureCompression == TextureImporterCompression.Uncompressed - && importer.wrapMode == TextureWrapMode.Clamp; - - if (!valid) - EditorUtilities.DrawFixMeBox("Invalid mask import settings.", () => SetMaskImportSettings(importer)); - } - } - - PropertyField(m_Opacity); - } - } - - void SetMaskImportSettings(TextureImporter importer) - { - importer.textureType = TextureImporterType.SingleChannel; - importer.alphaSource = TextureImporterAlphaSource.FromGrayScale; - importer.textureCompression = TextureImporterCompression.Uncompressed; - importer.anisoLevel = 0; - importer.mipmapEnabled = false; - importer.wrapMode = TextureWrapMode.Clamp; - importer.SaveAndReimport(); - AssetDatabase.Refresh(); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/VignetteEditor.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/VignetteEditor.cs.meta deleted file mode 100644 index d4da4fdab..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Effects/VignetteEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 3869d037332a74744a54736f00d62763 -timeCreated: 1492696599 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessDebugEditor.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessDebugEditor.cs deleted file mode 100644 index 49729d28a..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessDebugEditor.cs +++ /dev/null @@ -1,138 +0,0 @@ -using UnityEngine; -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - [CustomEditor(typeof(PostProcessDebug))] - sealed class PostProcessDebugEditor : BaseEditor - { - SerializedProperty m_PostProcessLayer; - SerializedProperty m_LightMeterEnabled; - SerializedProperty m_HistogramEnabled; - SerializedProperty m_WaveformEnabled; - SerializedProperty m_VectorscopeEnabled; - SerializedProperty m_Overlay; - - SerializedObject m_LayerObject; - - SerializedProperty m_LightMeterShowCurves; - SerializedProperty m_HistogramChannel; - SerializedProperty m_WaveformExposure; - SerializedProperty m_VectorscopeExposure; - - SerializedProperty m_LinearDepth; - SerializedProperty m_MotionColorIntensity; - SerializedProperty m_MotionGridSize; - SerializedProperty m_ColorBlindness; - SerializedProperty m_ColorBlindnessStrength; - - void OnEnable() - { - m_PostProcessLayer = FindProperty(x => x.postProcessLayer); - m_LightMeterEnabled = FindProperty(x => x.lightMeter); - m_HistogramEnabled = FindProperty(x => x.histogram); - m_WaveformEnabled = FindProperty(x => x.waveform); - m_VectorscopeEnabled = FindProperty(x => x.vectorscope); - m_Overlay = FindProperty(x => x.debugOverlay); - - if (m_PostProcessLayer.objectReferenceValue != null) - RebuildProperties(); - } - - void RebuildProperties() - { - if (m_PostProcessLayer.objectReferenceValue == null) - return; - - m_LayerObject = new SerializedObject(m_Target.postProcessLayer); - - m_LightMeterShowCurves = m_LayerObject.FindProperty("debugLayer.lightMeter.showCurves"); - m_HistogramChannel = m_LayerObject.FindProperty("debugLayer.histogram.channel"); - m_WaveformExposure = m_LayerObject.FindProperty("debugLayer.waveform.exposure"); - m_VectorscopeExposure = m_LayerObject.FindProperty("debugLayer.vectorscope.exposure"); - - m_LinearDepth = m_LayerObject.FindProperty("debugLayer.overlaySettings.linearDepth"); - m_MotionColorIntensity = m_LayerObject.FindProperty("debugLayer.overlaySettings.motionColorIntensity"); - m_MotionGridSize = m_LayerObject.FindProperty("debugLayer.overlaySettings.motionGridSize"); - m_ColorBlindness = m_LayerObject.FindProperty("debugLayer.overlaySettings.colorBlindnessType"); - m_ColorBlindnessStrength = m_LayerObject.FindProperty("debugLayer.overlaySettings.colorBlindnessStrength"); - } - - public override void OnInspectorGUI() - { - serializedObject.Update(); - - using (var changed = new EditorGUI.ChangeCheckScope()) - { - EditorGUILayout.PropertyField(m_PostProcessLayer); - serializedObject.ApplyModifiedProperties(); // Needed to rebuild properties after a change - serializedObject.Update(); - - if (changed.changed) - RebuildProperties(); - } - - if (m_PostProcessLayer.objectReferenceValue != null) - { - m_LayerObject.Update(); - - // Overlays - EditorGUILayout.Space(); - EditorGUILayout.LabelField(EditorUtilities.GetContent("Overlay"), EditorStyles.boldLabel); - EditorGUI.indentLevel++; - EditorGUILayout.PropertyField(m_Overlay); - DoOverlayGUI(DebugOverlay.Depth, m_LinearDepth); - DoOverlayGUI(DebugOverlay.MotionVectors, m_MotionColorIntensity, m_MotionGridSize); - DoOverlayGUI(DebugOverlay.ColorBlindnessSimulation, m_ColorBlindness, m_ColorBlindnessStrength); - - // Special cases - if (m_Overlay.intValue == (int)DebugOverlay.NANTracker && m_Target.postProcessLayer.stopNaNPropagation) - EditorGUILayout.HelpBox("Disable \"Stop NaN Propagation\" in the Post-process layer or NaNs will be overwritten!", MessageType.Warning); - - EditorGUI.indentLevel--; - - // Monitors - EditorGUILayout.Space(); - EditorGUILayout.LabelField(EditorUtilities.GetContent("Monitors"), EditorStyles.boldLabel); - EditorGUI.indentLevel++; - DoMonitorGUI(EditorUtilities.GetContent("Light Meter"), m_LightMeterEnabled, m_LightMeterShowCurves); - DoMonitorGUI(EditorUtilities.GetContent("Histogram"), m_HistogramEnabled, m_HistogramChannel); - DoMonitorGUI(EditorUtilities.GetContent("Waveform"), m_WaveformEnabled, m_WaveformExposure); - DoMonitorGUI(EditorUtilities.GetContent("Vectoscope"), m_VectorscopeEnabled, m_VectorscopeExposure); - EditorGUI.indentLevel--; - - m_LayerObject.ApplyModifiedProperties(); - } - - serializedObject.ApplyModifiedProperties(); - } - - void DoMonitorGUI(GUIContent content, SerializedProperty prop, params SerializedProperty[] settings) - { - EditorGUILayout.PropertyField(prop, content); - - if (settings == null || settings.Length == 0) - return; - - if (prop.boolValue) - { - EditorGUI.indentLevel++; - foreach (var p in settings) - EditorGUILayout.PropertyField(p); - EditorGUI.indentLevel--; - } - } - - void DoOverlayGUI(DebugOverlay overlay, params SerializedProperty[] settings) - { - if (m_Overlay.intValue != (int)overlay) - return; - - if (settings == null || settings.Length == 0) - return; - - foreach (var p in settings) - EditorGUILayout.PropertyField(p); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessDebugEditor.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessDebugEditor.cs.meta deleted file mode 100644 index c58dbc53b..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessDebugEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 75be0b76c5da33a41a2e679cfb7f453c -timeCreated: 1499771607 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessEffectBaseEditor.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessEffectBaseEditor.cs deleted file mode 100644 index c44a0470a..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessEffectBaseEditor.cs +++ /dev/null @@ -1,216 +0,0 @@ -using System; -using UnityEngine; -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - /// - /// The base class for all post-processing effect related editors. If you want to customize the - /// look of a custom post-processing effect, inherit from - /// instead. - /// - /// - public class PostProcessEffectBaseEditor - { - internal PostProcessEffectSettings target { get; private set; } - internal SerializedObject serializedObject { get; private set; } - - internal SerializedProperty baseProperty; - internal SerializedProperty activeProperty; - - SerializedProperty m_Enabled; - Editor m_Inspector; - - internal PostProcessEffectBaseEditor() - { - } - - /// - /// Repaints the inspector. - /// - public void Repaint() - { - m_Inspector.Repaint(); - } - - internal void Init(PostProcessEffectSettings target, Editor inspector) - { - this.target = target; - m_Inspector = inspector; - serializedObject = new SerializedObject(target); - m_Enabled = serializedObject.FindProperty("enabled.value"); - activeProperty = serializedObject.FindProperty("active"); - OnEnable(); - } - - /// - /// Called when the editor is initialized. - /// - public virtual void OnEnable() - { - } - - /// - /// Called when the editor is de-initialized. - /// - public virtual void OnDisable() - { - } - - internal void OnInternalInspectorGUI() - { - serializedObject.Update(); - TopRowFields(); - OnInspectorGUI(); - EditorGUILayout.Space(); - serializedObject.ApplyModifiedProperties(); - } - - /// - /// Called every time the inspector is being redrawn. This is where you should add your UI - /// drawing code. - /// - public virtual void OnInspectorGUI() - { - } - - /// - /// Returns the label to use as the effect title. You can override this to return a custom - /// label, else it will use the effect type as the title. - /// - /// The label to use as the effect title - public virtual string GetDisplayTitle() - { - return ObjectNames.NicifyVariableName(target.GetType().Name); - } - - void TopRowFields() - { - using (new EditorGUILayout.HorizontalScope()) - { - if (GUILayout.Button(EditorUtilities.GetContent("All|Toggle all overrides on. To maximize performances you should only toggle overrides that you actually need."), Styling.miniLabelButton, GUILayout.Width(17f), GUILayout.ExpandWidth(false))) - SetAllOverridesTo(true); - - if (GUILayout.Button(EditorUtilities.GetContent("None|Toggle all overrides off."), Styling.miniLabelButton, GUILayout.Width(32f), GUILayout.ExpandWidth(false))) - SetAllOverridesTo(false); - - GUILayout.FlexibleSpace(); - - bool enabled = m_Enabled.boolValue; - enabled = GUILayout.Toggle(enabled, EditorUtilities.GetContent("On|Enable this effect."), EditorStyles.miniButtonLeft, GUILayout.Width(35f), GUILayout.ExpandWidth(false)); - enabled = !GUILayout.Toggle(!enabled, EditorUtilities.GetContent("Off|Disable this effect."), EditorStyles.miniButtonRight, GUILayout.Width(35f), GUILayout.ExpandWidth(false)); - m_Enabled.boolValue = enabled; - } - } - - void SetAllOverridesTo(bool state) - { - Undo.RecordObject(target, "Toggle All"); - target.SetAllOverridesTo(state); - serializedObject.Update(); - } - - /// - /// Draws a property UI element. - /// - /// The property to draw - protected void PropertyField(SerializedParameterOverride property) - { - var title = EditorUtilities.GetContent(property.displayName); - PropertyField(property, title); - } - - /// - /// Draws a property UI element with a custom title and/or tooltip. - /// - /// The property to draw - /// A custom title and/or tooltip - protected void PropertyField(SerializedParameterOverride property, GUIContent title) - { - // Check for DisplayNameAttribute first - var displayNameAttr = property.GetAttribute(); - if (displayNameAttr != null) - title.text = displayNameAttr.displayName; - - // Add tooltip if it's missing and an attribute is available - if (string.IsNullOrEmpty(title.tooltip)) - { - var tooltipAttr = property.GetAttribute(); - if (tooltipAttr != null) - title.tooltip = tooltipAttr.tooltip; - } - - // Look for a compatible attribute decorator - AttributeDecorator decorator = null; - Attribute attribute = null; - - foreach (var attr in property.attributes) - { - // Use the first decorator we found - if (decorator == null) - { - decorator = EditorUtilities.GetDecorator(attr.GetType()); - attribute = attr; - } - - // Draw unity built-in Decorators (Space, Header) - if (attr is PropertyAttribute) - { - if (attr is SpaceAttribute) - { - EditorGUILayout.GetControlRect(false, (attr as SpaceAttribute).height); - } - else if (attr is HeaderAttribute) - { - var rect = EditorGUILayout.GetControlRect(false, 24f); - rect.y += 8f; - rect = EditorGUI.IndentedRect(rect); - EditorGUI.LabelField(rect, (attr as HeaderAttribute).header, Styling.headerLabel); - } - } - } - - bool invalidProp = false; - - if (decorator != null && !decorator.IsAutoProperty()) - { - if (decorator.OnGUI(property.value, property.overrideState, title, attribute)) - return; - - // Attribute is invalid for the specified property; use default unity field instead - invalidProp = true; - } - - using (new EditorGUILayout.HorizontalScope()) - { - // Override checkbox - var overrideRect = GUILayoutUtility.GetRect(17f, 17f, GUILayout.ExpandWidth(false)); - overrideRect.yMin += 4f; - EditorUtilities.DrawOverrideCheckbox(overrideRect, property.overrideState); - - // Property - using (new EditorGUI.DisabledScope(!property.overrideState.boolValue)) - { - if (decorator != null && !invalidProp) - { - if (decorator.OnGUI(property.value, property.overrideState, title, attribute)) - return; - } - - // Default unity field - if (property.value.hasVisibleChildren - && property.value.propertyType != SerializedPropertyType.Vector2 - && property.value.propertyType != SerializedPropertyType.Vector3) - { - GUILayout.Space(12f); - EditorGUILayout.PropertyField(property.value, title, true); - } - else - { - EditorGUILayout.PropertyField(property.value, title); - } - } - } - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessEffectBaseEditor.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessEffectBaseEditor.cs.meta deleted file mode 100644 index 9cf37b852..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessEffectBaseEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 5a7e5d36c781f1a469ea8f981b785506 -timeCreated: 1492689813 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessEffectEditor.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessEffectEditor.cs deleted file mode 100644 index 74fcf252c..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessEffectEditor.cs +++ /dev/null @@ -1,88 +0,0 @@ -using System; -using System.Linq.Expressions; -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - /// - /// The class to inherit from when designing custom effect editors. - /// - /// The effect type to create an editor for - public class PostProcessEffectEditor : PostProcessEffectBaseEditor - where T : PostProcessEffectSettings - { - /// - /// Find a serialized property using an expression instead of a string. This is safer as it - /// helps avoiding typos and make code refactoring easier. - /// - /// The serialized value type - /// The expression to parse to reach the property - /// A or null if none was found - /// - /// - /// [Serializable] - /// public class MyEffect : PostProcessEffectSettings - /// { - /// public float myParameter = 1f; - /// } - /// - /// [PostProcessEditor(typeof(MyEffect))] - /// public class MyEffectEditor : PostProcessEffectEditor<MyEffect> - /// { - /// SerializedProperty m_MyParameter; - /// - /// public override void OnEnable() - /// { - /// m_MyParameter = FindProperty(x => x.myParameter); - /// } - /// } - /// - /// - /// - /// If you're trying to retrieve a , you should - /// use instead. - /// - /// - /// - protected SerializedProperty FindProperty(Expression> expr) - { - return serializedObject.FindProperty(RuntimeUtilities.GetFieldPath(expr)); - } - - /// - /// Find a serialized parameter override using an expression instead of a string. This is - /// safer as it helps avoiding typos and make code refactoring easier. - /// - /// The serialized value type - /// The expression to parse to reach the parameter override - /// A or null if none was - /// found - /// - /// - /// [Serializable] - /// public class MyEffect : PostProcessEffectSettings - /// { - /// public FloatParameter myParameter = new FloatParameter { value = 1f }; - /// } - /// - /// [PostProcessEditor(typeof(MyEffect))] - /// public class MyEffectEditor : PostProcessEffectEditor<MyEffect> - /// { - /// SerializedParameterOverride m_MyParameter; - /// - /// public override void OnEnable() - /// { - /// m_MyParameter = FindParameterOverride(x => x.myParameter); - /// } - /// } - /// - /// - /// - protected SerializedParameterOverride FindParameterOverride(Expression> expr) - { - var property = serializedObject.FindProperty(RuntimeUtilities.GetFieldPath(expr)); - var attributes = RuntimeUtilities.GetMemberAttributes(expr); - return new SerializedParameterOverride(property, attributes); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessEffectEditor.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessEffectEditor.cs.meta deleted file mode 100644 index dd6be5807..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessEffectEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: e81ec1796a6c9844f9ab3847494d7911 -timeCreated: 1492690838 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessLayerEditor.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessLayerEditor.cs deleted file mode 100644 index 6d8a2d3d6..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessLayerEditor.cs +++ /dev/null @@ -1,422 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using UnityEngine; -using UnityEngine.Rendering.PostProcessing; -using UnityEditorInternal; -using System.IO; - -namespace UnityEditor.Rendering.PostProcessing -{ - using SerializedBundleRef = PostProcessLayer.SerializedBundleRef; - using EXRFlags = Texture2D.EXRFlags; - - [CanEditMultipleObjects, CustomEditor(typeof(PostProcessLayer))] - sealed class PostProcessLayerEditor : BaseEditor - { - SerializedProperty m_StopNaNPropagation; -#pragma warning disable 414 - SerializedProperty m_DirectToCameraTarget; -#pragma warning restore 414 - SerializedProperty m_VolumeTrigger; - SerializedProperty m_VolumeLayer; - - SerializedProperty m_AntialiasingMode; - SerializedProperty m_TaaJitterSpread; - SerializedProperty m_TaaSharpness; - SerializedProperty m_TaaStationaryBlending; - SerializedProperty m_TaaMotionBlending; - SerializedProperty m_SmaaQuality; - SerializedProperty m_FxaaFastMode; - SerializedProperty m_FxaaKeepAlpha; - - SerializedProperty m_FogEnabled; - SerializedProperty m_FogExcludeSkybox; - - SerializedProperty m_ShowToolkit; - SerializedProperty m_ShowCustomSorter; - - Dictionary m_CustomLists; - - static GUIContent[] s_AntialiasingMethodNames = - { - new GUIContent("No Anti-aliasing"), - new GUIContent("Fast Approximate Anti-aliasing (FXAA)"), - new GUIContent("Subpixel Morphological Anti-aliasing (SMAA)"), - new GUIContent("Temporal Anti-aliasing (TAA)") - }; - - enum ExportMode - { - FullFrame, - DisablePost, - BreakBeforeColorGradingLinear, - BreakBeforeColorGradingLog - } - - void OnEnable() - { - m_StopNaNPropagation = FindProperty(x => x.stopNaNPropagation); - m_DirectToCameraTarget = FindProperty(x => x.finalBlitToCameraTarget); - m_VolumeTrigger = FindProperty(x => x.volumeTrigger); - m_VolumeLayer = FindProperty(x => x.volumeLayer); - - m_AntialiasingMode = FindProperty(x => x.antialiasingMode); - m_TaaJitterSpread = FindProperty(x => x.temporalAntialiasing.jitterSpread); - m_TaaSharpness = FindProperty(x => x.temporalAntialiasing.sharpness); - m_TaaStationaryBlending = FindProperty(x => x.temporalAntialiasing.stationaryBlending); - m_TaaMotionBlending = FindProperty(x => x.temporalAntialiasing.motionBlending); - m_SmaaQuality = FindProperty(x => x.subpixelMorphologicalAntialiasing.quality); - m_FxaaFastMode = FindProperty(x => x.fastApproximateAntialiasing.fastMode); - m_FxaaKeepAlpha = FindProperty(x => x.fastApproximateAntialiasing.keepAlpha); - - m_FogEnabled = FindProperty(x => x.fog.enabled); - m_FogExcludeSkybox = FindProperty(x => x.fog.excludeSkybox); - - m_ShowToolkit = serializedObject.FindProperty("m_ShowToolkit"); - m_ShowCustomSorter = serializedObject.FindProperty("m_ShowCustomSorter"); - } - - void OnDisable() - { - m_CustomLists = null; - } - - public override void OnInspectorGUI() - { - serializedObject.Update(); - - var camera = m_Target.GetComponent(); - - #if !UNITY_2017_2_OR_NEWER - if (RuntimeUtilities.isSinglePassStereoSelected) - EditorGUILayout.HelpBox("Unity 2017.2+ required for full Single-pass stereo rendering support.", MessageType.Warning); - #endif - - DoVolumeBlending(); - DoAntialiasing(); - DoFog(camera); - - EditorGUILayout.PropertyField(m_StopNaNPropagation, EditorUtilities.GetContent("Stop NaN Propagation|Automatically replaces NaN/Inf in shaders by a black pixel to avoid breaking some effects. This will slightly affect performances and should only be used if you experience NaN issues that you can't fix. Has no effect on GLES2 platforms.")); - -#if UNITY_2019_1_OR_NEWER - if (!RuntimeUtilities.scriptableRenderPipelineActive) - EditorGUILayout.PropertyField(m_DirectToCameraTarget, EditorUtilities.GetContent("Directly to Camera Target|Use the final blit to the camera render target for postprocessing. This has less overhead but breaks compatibility with legacy image effect that use OnRenderImage.")); -#endif - - EditorGUILayout.Space(); - - DoToolkit(); - DoCustomEffectSorter(); - - EditorUtilities.DrawSplitter(); - EditorGUILayout.Space(); - - serializedObject.ApplyModifiedProperties(); - } - - void DoVolumeBlending() - { - EditorGUILayout.LabelField(EditorUtilities.GetContent("Volume blending"), EditorStyles.boldLabel); - EditorGUI.indentLevel++; - { - // The layout system sort of break alignement when mixing inspector fields with - // custom layouted fields, do the layout manually instead - var indentOffset = EditorGUI.indentLevel * 15f; - var lineRect = GUILayoutUtility.GetRect(1, EditorGUIUtility.singleLineHeight); - var labelRect = new Rect(lineRect.x, lineRect.y, EditorGUIUtility.labelWidth - indentOffset, lineRect.height); - var fieldRect = new Rect(labelRect.xMax, lineRect.y, lineRect.width - labelRect.width - 60f, lineRect.height); - var buttonRect = new Rect(fieldRect.xMax, lineRect.y, 60f, lineRect.height); - - EditorGUI.PrefixLabel(labelRect, EditorUtilities.GetContent("Trigger|A transform that will act as a trigger for volume blending.")); - m_VolumeTrigger.objectReferenceValue = (Transform)EditorGUI.ObjectField(fieldRect, m_VolumeTrigger.objectReferenceValue, typeof(Transform), true); - if (GUI.Button(buttonRect, EditorUtilities.GetContent("This|Assigns the current GameObject as a trigger."), EditorStyles.miniButton)) - m_VolumeTrigger.objectReferenceValue = m_Target.transform; - - if (m_VolumeTrigger.objectReferenceValue == null) - EditorGUILayout.HelpBox("No trigger has been set, the camera will only be affected by global volumes.", MessageType.Info); - - EditorGUILayout.PropertyField(m_VolumeLayer, EditorUtilities.GetContent("Layer|This camera will only be affected by volumes in the selected scene-layers.")); - - int mask = m_VolumeLayer.intValue; - if (mask == 0) - EditorGUILayout.HelpBox("No layer has been set, the trigger will never be affected by volumes.", MessageType.Warning); - else if (mask == -1 || ((mask & 1) != 0)) - EditorGUILayout.HelpBox("Do not use \"Everything\" or \"Default\" as a layer mask as it will slow down the volume blending process! Put post-processing volumes in their own dedicated layer for best performances.", MessageType.Warning); - } - EditorGUI.indentLevel--; - - EditorGUILayout.Space(); - } - - void DoAntialiasing() - { - EditorGUILayout.LabelField(EditorUtilities.GetContent("Anti-aliasing"), EditorStyles.boldLabel); - EditorGUI.indentLevel++; - { - m_AntialiasingMode.intValue = EditorGUILayout.Popup(EditorUtilities.GetContent("Mode|The anti-aliasing method to use. FXAA is fast but low quality. SMAA works well for non-HDR scenes. TAA is a bit slower but higher quality and works well with HDR."), m_AntialiasingMode.intValue, s_AntialiasingMethodNames); - - if (m_AntialiasingMode.intValue == (int)PostProcessLayer.Antialiasing.TemporalAntialiasing) - { - #if !UNITY_2017_3_OR_NEWER - if (RuntimeUtilities.isSinglePassStereoSelected) - EditorGUILayout.HelpBox("TAA requires Unity 2017.3+ for Single-pass stereo rendering support.", MessageType.Warning); - #endif - - EditorGUILayout.PropertyField(m_TaaJitterSpread); - EditorGUILayout.PropertyField(m_TaaStationaryBlending); - EditorGUILayout.PropertyField(m_TaaMotionBlending); - EditorGUILayout.PropertyField(m_TaaSharpness); - } - else if (m_AntialiasingMode.intValue == (int)PostProcessLayer.Antialiasing.SubpixelMorphologicalAntialiasing) - { - if (RuntimeUtilities.isSinglePassStereoSelected) - EditorGUILayout.HelpBox("SMAA doesn't work with Single-pass stereo rendering.", MessageType.Warning); - - EditorGUILayout.PropertyField(m_SmaaQuality); - - if (m_SmaaQuality.intValue != (int)SubpixelMorphologicalAntialiasing.Quality.Low && EditorUtilities.isTargetingConsolesOrMobiles) - EditorGUILayout.HelpBox("For performance reasons it is recommended to use Low Quality on mobile and console platforms.", MessageType.Warning); - } - else if (m_AntialiasingMode.intValue == (int)PostProcessLayer.Antialiasing.FastApproximateAntialiasing) - { - EditorGUILayout.PropertyField(m_FxaaFastMode); - EditorGUILayout.PropertyField(m_FxaaKeepAlpha); - - if (!m_FxaaFastMode.boolValue && EditorUtilities.isTargetingConsolesOrMobiles) - EditorGUILayout.HelpBox("For performance reasons it is recommended to use Fast Mode on mobile and console platforms.", MessageType.Warning); - } - } - EditorGUI.indentLevel--; - - EditorGUILayout.Space(); - } - - void DoFog(Camera camera) - { - if (camera == null || camera.actualRenderingPath != RenderingPath.DeferredShading) - return; - - EditorGUILayout.LabelField(EditorUtilities.GetContent("Deferred Fog"), EditorStyles.boldLabel); - EditorGUI.indentLevel++; - { - EditorGUILayout.PropertyField(m_FogEnabled); - - if (m_FogEnabled.boolValue) - { - EditorGUILayout.PropertyField(m_FogExcludeSkybox); - EditorGUILayout.HelpBox("This adds fog compatibility to the deferred rendering path; actual fog settings should be set in the Lighting panel.", MessageType.Info); - } - } - EditorGUI.indentLevel--; - - EditorGUILayout.Space(); - } - - void DoToolkit() - { - EditorUtilities.DrawSplitter(); - m_ShowToolkit.boolValue = EditorUtilities.DrawHeader("Toolkit", m_ShowToolkit.boolValue); - - if (m_ShowToolkit.boolValue) - { - GUILayout.Space(2); - - if (GUILayout.Button(EditorUtilities.GetContent("Export frame to EXR..."), EditorStyles.miniButton)) - { - var menu = new GenericMenu(); - menu.AddItem(EditorUtilities.GetContent("Full Frame (as displayed)"), false, () => ExportFrameToExr(ExportMode.FullFrame)); - menu.AddItem(EditorUtilities.GetContent("Disable post-processing"), false, () => ExportFrameToExr(ExportMode.DisablePost)); - menu.AddItem(EditorUtilities.GetContent("Break before Color Grading (Linear)"), false, () => ExportFrameToExr(ExportMode.BreakBeforeColorGradingLinear)); - menu.AddItem(EditorUtilities.GetContent("Break before Color Grading (Log)"), false, () => ExportFrameToExr(ExportMode.BreakBeforeColorGradingLog)); - menu.ShowAsContext(); - } - - if (GUILayout.Button(EditorUtilities.GetContent("Select all layer volumes|Selects all the volumes that will influence this layer."), EditorStyles.miniButton)) - { - var volumes = RuntimeUtilities.GetAllSceneObjects() - .Where(x => (m_VolumeLayer.intValue & (1 << x.gameObject.layer)) != 0) - .Select(x => x.gameObject) - .Cast() - .ToArray(); - - if (volumes.Length > 0) - Selection.objects = volumes; - } - - if (GUILayout.Button(EditorUtilities.GetContent("Select all active volumes|Selects all volumes currently affecting the layer."), EditorStyles.miniButton)) - { - var volumes = new List(); - PostProcessManager.instance.GetActiveVolumes(m_Target, volumes); - - if (volumes.Count > 0) - { - Selection.objects = volumes - .Select(x => x.gameObject) - .Cast() - .ToArray(); - } - } - - GUILayout.Space(3); - } - } - - void DoCustomEffectSorter() - { - EditorUtilities.DrawSplitter(); - m_ShowCustomSorter.boolValue = EditorUtilities.DrawHeader("Custom Effect Sorting", m_ShowCustomSorter.boolValue); - - if (m_ShowCustomSorter.boolValue) - { - bool isInPrefab = false; - - // Init lists if needed - if (m_CustomLists == null) - { - // In some cases the editor will refresh before components which means - // components might not have been fully initialized yet. In this case we also - // need to make sure that we're not in a prefab as sorteBundles isn't a - // serializable object and won't exist until put on a scene. - if (m_Target.sortedBundles == null) - { - isInPrefab = string.IsNullOrEmpty(m_Target.gameObject.scene.name); - - if (!isInPrefab) - { - // sortedBundles will be initialized and ready to use on the next frame - Repaint(); - } - } - else - { - // Create a reorderable list for each injection event - m_CustomLists = new Dictionary(); - foreach (var evt in Enum.GetValues(typeof(PostProcessEvent)).Cast()) - { - var bundles = m_Target.sortedBundles[evt]; - var listName = ObjectNames.NicifyVariableName(evt.ToString()); - - var list = new ReorderableList(bundles, typeof(SerializedBundleRef), true, true, false, false); - - list.drawHeaderCallback = (rect) => - { - EditorGUI.LabelField(rect, listName); - }; - - list.drawElementCallback = (rect, index, isActive, isFocused) => - { - var sbr = (SerializedBundleRef)list.list[index]; - EditorGUI.LabelField(rect, sbr.bundle.attribute.menuItem); - }; - - list.onReorderCallback = (l) => - { - EditorUtility.SetDirty(m_Target); - }; - - m_CustomLists.Add(evt, list); - } - } - } - - GUILayout.Space(5); - - if (isInPrefab) - { - EditorGUILayout.HelpBox("Not supported in prefabs.", MessageType.Info); - GUILayout.Space(3); - return; - } - - bool anyList = false; - if (m_CustomLists != null) - { - foreach (var kvp in m_CustomLists) - { - var list = kvp.Value; - - // Skip empty lists to avoid polluting the inspector - if (list.count == 0) - continue; - - list.DoLayoutList(); - anyList = true; - } - } - - if (!anyList) - { - EditorGUILayout.HelpBox("No custom effect loaded.", MessageType.Info); - GUILayout.Space(3); - } - } - } - - void ExportFrameToExr(ExportMode mode) - { - string path = EditorUtility.SaveFilePanel("Export EXR...", "", "Frame", "exr"); - - if (string.IsNullOrEmpty(path)) - return; - - EditorUtility.DisplayProgressBar("Export EXR", "Rendering...", 0f); - - var camera = m_Target.GetComponent(); - var w = camera.pixelWidth; - var h = camera.pixelHeight; - - var texOut = new Texture2D(w, h, TextureFormat.RGBAFloat, false, true); - var target = RenderTexture.GetTemporary(w, h, 24, RenderTextureFormat.ARGBFloat, RenderTextureReadWrite.Linear); - - var lastActive = RenderTexture.active; - var lastTargetSet = camera.targetTexture; - var lastPostFXState = m_Target.enabled; - var lastBreakColorGradingState = m_Target.breakBeforeColorGrading; - - if (mode == ExportMode.DisablePost) - m_Target.enabled = false; - else if (mode == ExportMode.BreakBeforeColorGradingLinear || mode == ExportMode.BreakBeforeColorGradingLog) - m_Target.breakBeforeColorGrading = true; - - camera.targetTexture = target; - camera.Render(); - camera.targetTexture = lastTargetSet; - - EditorUtility.DisplayProgressBar("Export EXR", "Reading...", 0.25f); - - m_Target.enabled = lastPostFXState; - m_Target.breakBeforeColorGrading = lastBreakColorGradingState; - - if (mode == ExportMode.BreakBeforeColorGradingLog) - { - // Convert to log - var material = new Material(Shader.Find("Hidden/PostProcessing/Editor/ConvertToLog")); - var newTarget = RenderTexture.GetTemporary(w, h, 0, RenderTextureFormat.ARGBFloat, RenderTextureReadWrite.Linear); - Graphics.Blit(target, newTarget, material, 0); - RenderTexture.ReleaseTemporary(target); - DestroyImmediate(material); - target = newTarget; - } - - RenderTexture.active = target; - texOut.ReadPixels(new Rect(0, 0, w, h), 0, 0); - texOut.Apply(); - RenderTexture.active = lastActive; - - EditorUtility.DisplayProgressBar("Export EXR", "Encoding...", 0.5f); - - var bytes = texOut.EncodeToEXR(EXRFlags.OutputAsFloat | EXRFlags.CompressZIP); - - EditorUtility.DisplayProgressBar("Export EXR", "Saving...", 0.75f); - - File.WriteAllBytes(path, bytes); - - EditorUtility.ClearProgressBar(); - AssetDatabase.Refresh(); - - RenderTexture.ReleaseTemporary(target); - DestroyImmediate(texOut); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessLayerEditor.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessLayerEditor.cs.meta deleted file mode 100644 index 1819aa205..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessLayerEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 2c89984c2a3e6cd4492c6f695f07bae6 -timeCreated: 1488275719 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessProfileEditor.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessProfileEditor.cs deleted file mode 100644 index 2f586c337..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessProfileEditor.cs +++ /dev/null @@ -1,29 +0,0 @@ -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - [CustomEditor(typeof(PostProcessProfile))] - sealed class PostProcessProfileEditor : Editor - { - EffectListEditor m_EffectList; - - void OnEnable() - { - m_EffectList = new EffectListEditor(this); - m_EffectList.Init(target as PostProcessProfile, serializedObject); - } - - void OnDisable() - { - if (m_EffectList != null) - m_EffectList.Clear(); - } - - public override void OnInspectorGUI() - { - serializedObject.Update(); - m_EffectList.OnGUI(); - serializedObject.ApplyModifiedProperties(); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessProfileEditor.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessProfileEditor.cs.meta deleted file mode 100644 index 6357b9560..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessProfileEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 1fcb2f1e4a7d9ba42bc5940a5611f302 -timeCreated: 1494339151 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessVolumeEditor.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessVolumeEditor.cs deleted file mode 100644 index 728437e2e..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessVolumeEditor.cs +++ /dev/null @@ -1,166 +0,0 @@ -using UnityEngine; -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - [CanEditMultipleObjects, CustomEditor(typeof(PostProcessVolume))] - sealed class PostProcessVolumeEditor : BaseEditor - { - SerializedProperty m_Profile; - - SerializedProperty m_IsGlobal; - SerializedProperty m_BlendRadius; - SerializedProperty m_Weight; - SerializedProperty m_Priority; - - EffectListEditor m_EffectList; - - void OnEnable() - { - m_Profile = FindProperty(x => x.sharedProfile); - - m_IsGlobal = FindProperty(x => x.isGlobal); - m_BlendRadius = FindProperty(x => x.blendDistance); - m_Weight = FindProperty(x => x.weight); - m_Priority = FindProperty(x => x.priority); - - m_EffectList = new EffectListEditor(this); - RefreshEffectListEditor(m_Target.sharedProfile); - } - - void OnDisable() - { - if (m_EffectList != null) - m_EffectList.Clear(); - } - - void RefreshEffectListEditor(PostProcessProfile asset) - { - m_EffectList.Clear(); - - if (asset != null) - m_EffectList.Init(asset, new SerializedObject(asset)); - } - - public override void OnInspectorGUI() - { - serializedObject.Update(); - - EditorGUILayout.PropertyField(m_IsGlobal); - - if (!m_IsGlobal.boolValue) // Blend radius is not needed for global volumes - EditorGUILayout.PropertyField(m_BlendRadius); - - EditorGUILayout.PropertyField(m_Weight); - EditorGUILayout.PropertyField(m_Priority); - - bool assetHasChanged = false; - bool showCopy = m_Profile.objectReferenceValue != null; - bool multiEdit = m_Profile.hasMultipleDifferentValues; - - // The layout system sort of break alignement when mixing inspector fields with custom - // layouted fields, do the layout manually instead - int buttonWidth = showCopy ? 45 : 60; - float indentOffset = EditorGUI.indentLevel * 15f; - var lineRect = GUILayoutUtility.GetRect(1, EditorGUIUtility.singleLineHeight); - var labelRect = new Rect(lineRect.x, lineRect.y, EditorGUIUtility.labelWidth - indentOffset, lineRect.height); - var fieldRect = new Rect(labelRect.xMax, lineRect.y, lineRect.width - labelRect.width - buttonWidth * (showCopy ? 2 : 1), lineRect.height); - var buttonNewRect = new Rect(fieldRect.xMax, lineRect.y, buttonWidth, lineRect.height); - var buttonCopyRect = new Rect(buttonNewRect.xMax, lineRect.y, buttonWidth, lineRect.height); - - EditorGUI.PrefixLabel(labelRect, EditorUtilities.GetContent(m_Target.HasInstantiatedProfile() ? "Profile (Instance)|A copy of a profile asset." : "Profile|A reference to a profile asset.")); - - using (var scope = new EditorGUI.ChangeCheckScope()) - { - EditorGUI.BeginProperty(fieldRect, GUIContent.none, m_Profile); - PostProcessProfile profile = null; - - if (m_Target.HasInstantiatedProfile()) - profile = (PostProcessProfile)EditorGUI.ObjectField(fieldRect, m_Target.profile, typeof(PostProcessProfile), false); - else - profile = (PostProcessProfile)EditorGUI.ObjectField(fieldRect, m_Profile.objectReferenceValue, typeof(PostProcessProfile), false); - - if (scope.changed) - { - assetHasChanged = true; - - m_Profile.objectReferenceValue = profile; - - if (m_Target.HasInstantiatedProfile()) // Clear the instantiated profile, from now on we're using shared again. - m_Target.profile = null; - } - - EditorGUI.EndProperty(); - } - - using (new EditorGUI.DisabledScope(multiEdit)) - { - if (GUI.Button(buttonNewRect, EditorUtilities.GetContent("New|Create a new profile."), showCopy ? EditorStyles.miniButtonLeft : EditorStyles.miniButton)) - { - // By default, try to put assets in a folder next to the currently active - // scene file. If the user isn't a scene, put them in root instead. - var targetName = m_Target.name; - var scene = m_Target.gameObject.scene; - var asset = ProfileFactory.CreatePostProcessProfile(scene, targetName); - m_Profile.objectReferenceValue = asset; - m_Target.profile = null; // Make sure we're not using an instantiated profile anymore - - assetHasChanged = true; - } - - if (showCopy && GUI.Button(buttonCopyRect, EditorUtilities.GetContent(m_Target.HasInstantiatedProfile() ? "Save|Save the instantiated profile" : "Clone|Create a new profile and copy the content of the currently assigned profile."), EditorStyles.miniButtonRight)) - { - // Duplicate the currently assigned profile and save it as a new profile - var origin = profileRef; - var path = AssetDatabase.GetAssetPath(m_Profile.objectReferenceValue); - path = AssetDatabase.GenerateUniqueAssetPath(path); - - var asset = Instantiate(origin); - asset.settings.Clear(); - AssetDatabase.CreateAsset(asset, path); - - foreach (var item in origin.settings) - { - var itemCopy = Instantiate(item); - itemCopy.hideFlags = HideFlags.HideInInspector | HideFlags.HideInHierarchy; - itemCopy.name = item.name; - asset.settings.Add(itemCopy); - AssetDatabase.AddObjectToAsset(itemCopy, asset); - } - - AssetDatabase.SaveAssets(); - AssetDatabase.Refresh(); - - m_Profile.objectReferenceValue = asset; - m_Target.profile = null; // Make sure we're not using an instantiated profile anymore - assetHasChanged = true; - } - } - - EditorGUILayout.Space(); - - if (m_Profile.objectReferenceValue == null && !m_Target.HasInstantiatedProfile()) - { - if (assetHasChanged) - m_EffectList.Clear(); // Asset wasn't null before, do some cleanup - - EditorGUILayout.HelpBox("Assign a Post-process Profile to this volume using the \"Asset\" field or create one automatically by clicking the \"New\" button.\nAssets are automatically put in a folder next to your scene file. If you scene hasn't been saved yet they will be created at the root of the Assets folder.", MessageType.Info); - } - else - { - if (assetHasChanged || profileRef != m_EffectList.asset) //Refresh when the user just dragged in a new asset, or when it was instantiated by code. - RefreshEffectListEditor(profileRef); - - if (!multiEdit) - m_EffectList.OnGUI(); - } - - serializedObject.ApplyModifiedProperties(); - } - - public PostProcessProfile profileRef - { - get { return m_Target.HasInstantiatedProfile() ? m_Target.profile : m_Target.sharedProfile; } - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessVolumeEditor.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessVolumeEditor.cs.meta deleted file mode 100644 index 237ca4d47..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/PostProcessVolumeEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 4e487364a0cd33f4a9ef2ed93819d4d7 -timeCreated: 1488201040 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools.meta deleted file mode 100644 index 813d5f4c6..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: e58158d9d8b440d4ca944a07d6cde9af -folderAsset: yes -timeCreated: 1496736709 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/CubeLutAssetFactory.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/CubeLutAssetFactory.cs deleted file mode 100644 index 2110ee06a..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/CubeLutAssetFactory.cs +++ /dev/null @@ -1,58 +0,0 @@ -using System; -using System.IO; -using System.Text; -using UnityEngine; -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - // CUBE lut specs: - // http://wwwimages.adobe.com/content/dam/Adobe/en/products/speedgrade/cc/pdfs/cube-lut-specification-1.0.pdf - static class CubeLutAssetFactory - { - const int kVersion = 1; - const int kSize = 33; - -#if POSTFX_DEBUG_MENUS - [MenuItem("Tools/Post-processing/Create Utility Luts")] -#endif - static void CreateLuts() - { - Dump("Linear to Unity Log r" + kVersion, ColorUtilities.LinearToLogC); - Dump("Unity Log to Linear r" + kVersion, ColorUtilities.LogCToLinear); - Dump("sRGB to Unity Log r" + kVersion, x => ColorUtilities.LinearToLogC(Mathf.GammaToLinearSpace(x))); - Dump("Unity Log to sRGB r" + kVersion, x => Mathf.LinearToGammaSpace(ColorUtilities.LogCToLinear(x))); - Dump("Linear to sRGB r" + kVersion, Mathf.LinearToGammaSpace); - Dump("sRGB to Linear r" + kVersion, Mathf.GammaToLinearSpace); - - AssetDatabase.Refresh(); - } - - static void Dump(string title, Func eval) - { - var sb = new StringBuilder(); - sb.AppendFormat("TITLE \"{0}\"\n", title); - sb.AppendFormat("LUT_3D_SIZE {0}\n", kSize); - sb.AppendFormat("DOMAIN_MIN {0} {0} {0}\n", 0f); - sb.AppendFormat("DOMAIN_MAX {0} {0} {0}\n", 1f); - - const float kSizeMinusOne = (float)kSize - 1f; - - for (int x = 0; x < kSize; x++) - for (int y = 0; y < kSize; y++) - for (int z = 0; z < kSize; z++) - { - float ox = eval((float)x / kSizeMinusOne); - float oy = eval((float)y / kSizeMinusOne); - float oz = eval((float)z / kSizeMinusOne); - - // Resolve & Photoshop use BGR as default, let's make it easier for users - sb.AppendFormat("{0} {1} {2}\n", oz, oy, ox); - } - - var content = sb.ToString(); - var path = Path.Combine(Application.dataPath, string.Format("{0}.cube", title)); - File.WriteAllText(path, content); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/CubeLutAssetFactory.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/CubeLutAssetFactory.cs.meta deleted file mode 100644 index e3de84f92..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/CubeLutAssetFactory.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 4d506bd5da20d0248bfa343c6693d655 -timeCreated: 1496740688 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/CubeLutAssetImporter.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/CubeLutAssetImporter.cs deleted file mode 100644 index 98cd47a0f..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/CubeLutAssetImporter.cs +++ /dev/null @@ -1,218 +0,0 @@ -using System.Collections.Generic; -using System.Globalization; -using System.IO; -using System.Text; -using UnityEngine; - -namespace UnityEditor.Rendering.PostProcessing -{ - sealed class CubeLutAssetImporter : AssetPostprocessor - { - static List s_Excluded = new List() - { - "Linear to sRGB r1", - "Linear to Unity Log r1", - "sRGB to Linear r1", - "sRGB to Unity Log r1", - "Unity Log to Linear r1", - "Unity Log to sRGB r1" - }; - - static void OnPostprocessAllAssets(string[] imported, string[] deleted, string[] moved, string[] movedFrom) - { - foreach (string path in imported) - { - string ext = Path.GetExtension(path); - string filename = Path.GetFileNameWithoutExtension(path); - - if (string.IsNullOrEmpty(ext) || s_Excluded.Contains(filename)) - continue; - - ext = ext.ToLowerInvariant(); - if (ext.Equals(".cube")) - ImportCubeLut(path); - } - } - - // Basic CUBE lut parser - // Specs: http://wwwimages.adobe.com/content/dam/Adobe/en/products/speedgrade/cc/pdfs/cube-lut-specification-1.0.pdf - static void ImportCubeLut(string path) - { - // Remove the 'Assets' part of the path & build absolute path - string fullpath = path.Substring(7); - fullpath = Path.Combine(Application.dataPath, fullpath); - - // Read the lut data - string[] lines = File.ReadAllLines(fullpath); - - // Start parsing - int i = 0; - int size = -1; - int sizeCube = -1; - var table = new List(); - var domainMin = Color.black; - var domainMax = Color.white; - - while (true) - { - if (i >= lines.Length) - { - if (table.Count != sizeCube) - Debug.LogError("Premature end of file"); - - break; - } - - string line = FilterLine(lines[i]); - - if (string.IsNullOrEmpty(line)) - goto next; - - // Header data - if (line.StartsWith("TITLE")) - goto next; // Skip the title tag, we don't need it - - if (line.StartsWith("LUT_3D_SIZE")) - { - string sizeStr = line.Substring(11).TrimStart(); - - if (!int.TryParse(sizeStr, out size)) - { - Debug.LogError("Invalid data on line " + i); - break; - } - - if (size < 2 || size > 256) - { - Debug.LogError("LUT size out of range"); - break; - } - - sizeCube = size * size * size; - goto next; - } - - if (line.StartsWith("DOMAIN_MIN")) - { - if (!ParseDomain(i, line, ref domainMin)) break; - goto next; - } - - if (line.StartsWith("DOMAIN_MAX")) - { - if (!ParseDomain(i, line, ref domainMax)) break; - goto next; - } - - // Table - string[] row = line.Split(); - - if (row.Length != 3) - { - Debug.LogError("Invalid data on line " + i); - break; - } - - var color = Color.black; - for (int j = 0; j < 3; j++) - { - float d; - if (!float.TryParse(row[j], NumberStyles.Float, CultureInfo.InvariantCulture.NumberFormat, out d)) - { - Debug.LogError("Invalid data on line " + i); - break; - } - - color[j] = d; - } - - table.Add(color); - - next: - i++; - } - - if (sizeCube != table.Count) - { - Debug.LogError("Wrong table size - Expected " + sizeCube + " elements, got " + table.Count); - return; - } - - // Check if the Texture3D already exists, update it in this case (better workflow for - // the user) - string assetPath = Path.ChangeExtension(path, ".asset"); - var tex = AssetDatabase.LoadAssetAtPath(assetPath); - - if (tex != null) - { - tex.SetPixels(table.ToArray(), 0); - tex.Apply(); - } - else - { - // Generate a new Texture3D - tex = new Texture3D(size, size, size, TextureFormat.RGBAHalf, false) - { - anisoLevel = 0, - filterMode = FilterMode.Bilinear, - wrapMode = TextureWrapMode.Clamp, - }; - - tex.SetPixels(table.ToArray(), 0); - tex.Apply(); - - // Save to disk - AssetDatabase.CreateAsset(tex, assetPath); - } - - AssetDatabase.SaveAssets(); - AssetDatabase.Refresh(); - } - - static string FilterLine(string line) - { - var filtered = new StringBuilder(); - line = line.TrimStart().TrimEnd(); - int len = line.Length; - int i = 0; - - while (i < len) - { - char c = line[i]; - - if (c == '#') // Filters comment out - break; - - filtered.Append(c); - i++; - } - - return filtered.ToString(); - } - - static bool ParseDomain(int i, string line, ref Color domain) - { - string[] domainStrs = line.Substring(10).TrimStart().Split(); - - if (domainStrs.Length != 3) - { - Debug.LogError("Invalid data on line " + i); - return false; - } - - for (int j = 0; j < 3; j++) - { - float d; - if (!float.TryParse(domainStrs[j], NumberStyles.Float, CultureInfo.InvariantCulture.NumberFormat, out d)) - { - Debug.LogError("Invalid data on line " + i); - return false; - } - - domain[j] = d; - } - - return true; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/CubeLutAssetImporter.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/CubeLutAssetImporter.cs.meta deleted file mode 100644 index e53d8c569..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/CubeLutAssetImporter.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 3e4b5d9a1abab984cbe0cbdb31fca939 -timeCreated: 1496737252 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/DefineSetter.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/DefineSetter.cs deleted file mode 100644 index 1083590a1..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/DefineSetter.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; -using System.Linq; - -namespace UnityEditor.Rendering.PostProcessing -{ - [InitializeOnLoad] - sealed class DefineSetter - { - const string k_Define = "UNITY_POST_PROCESSING_STACK_V2"; - - static DefineSetter() - { - var targets = Enum.GetValues(typeof(BuildTargetGroup)) - .Cast() - .Where(x => x != BuildTargetGroup.Unknown) - .Where(x => !IsObsolete(x)); - - foreach (var target in targets) - { - var defines = PlayerSettings.GetScriptingDefineSymbolsForGroup(target).Trim(); - - var list = defines.Split(';', ' ') - .Where(x => !string.IsNullOrEmpty(x)) - .ToList(); - - if (list.Contains(k_Define)) - continue; - - list.Add(k_Define); - defines = list.Aggregate((a, b) => a + ";" + b); - - PlayerSettings.SetScriptingDefineSymbolsForGroup(target, defines); - } - } - - static bool IsObsolete(BuildTargetGroup group) - { - var attrs = typeof(BuildTargetGroup) - .GetField(group.ToString()) - .GetCustomAttributes(typeof(ObsoleteAttribute), false); - - return attrs != null && attrs.Length > 0; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/DefineSetter.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/DefineSetter.cs.meta deleted file mode 100644 index d68eb2189..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/DefineSetter.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 21c950a797aa518438786fc341790e14 -timeCreated: 1499857026 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/ProfileFactory.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/ProfileFactory.cs deleted file mode 100644 index 6c44adf13..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/ProfileFactory.cs +++ /dev/null @@ -1,82 +0,0 @@ -using UnityEngine; -using UnityEditor.ProjectWindowCallback; -using System.IO; -using UnityEngine.SceneManagement; -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - /// - /// An utility class to help the creation of new post-processing profile assets. - /// - public sealed class ProfileFactory - { - [MenuItem("Assets/Create/Post-processing Profile", priority = 201)] - static void CreatePostProcessProfile() - { - //var icon = EditorGUIUtility.FindTexture("ScriptableObject Icon"); - ProjectWindowUtil.StartNameEditingIfProjectWindowExists(0, ScriptableObject.CreateInstance(), "New Post-processing Profile.asset", null, null); - } - - /// - /// Creates a post-processing profile asset at the given location. - /// - /// The path to use relative to the project folder - /// The newly created profile - public static PostProcessProfile CreatePostProcessProfileAtPath(string path) - { - var profile = ScriptableObject.CreateInstance(); - profile.name = Path.GetFileName(path); - AssetDatabase.CreateAsset(profile, path); - AssetDatabase.SaveAssets(); - AssetDatabase.Refresh(); - return profile; - } - - /// - /// Creates a post-processing profile asset and automatically put it in a sub folder next - /// to the given scene. - /// - /// A scene - /// A name for the new profile - /// The newly created profile - public static PostProcessProfile CreatePostProcessProfile(Scene scene, string targetName) - { - var path = string.Empty; - - if (string.IsNullOrEmpty(scene.path)) - { - path = "Assets/"; - } - else - { - var scenePath = Path.GetDirectoryName(scene.path); - var extPath = scene.name + "_Profiles"; - var profilePath = scenePath + "/" + extPath; - - if (!AssetDatabase.IsValidFolder(profilePath)) - AssetDatabase.CreateFolder(scenePath, extPath); - - path = profilePath + "/"; - } - - path += targetName + " Profile.asset"; - path = AssetDatabase.GenerateUniqueAssetPath(path); - - var profile = ScriptableObject.CreateInstance(); - AssetDatabase.CreateAsset(profile, path); - AssetDatabase.SaveAssets(); - AssetDatabase.Refresh(); - return profile; - } - } - - class DoCreatePostProcessProfile : EndNameEditAction - { - public override void Action(int instanceId, string pathName, string resourceFile) - { - var profile = ProfileFactory.CreatePostProcessProfileAtPath(pathName); - ProjectWindowUtil.ShowCreatedAsset(profile); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/ProfileFactory.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/ProfileFactory.cs.meta deleted file mode 100644 index 3ae31759f..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/ProfileFactory.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: ac5668592895c1742a0c6e9d111f870b -timeCreated: 1498836357 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/ResourceAssetFactory.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/ResourceAssetFactory.cs deleted file mode 100644 index 0ea247027..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/ResourceAssetFactory.cs +++ /dev/null @@ -1,19 +0,0 @@ -using UnityEngine; -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - static class ResourceAssetFactory - { -#if POSTFX_DEBUG_MENUS - [MenuItem("Tools/Post-processing/Create Resources Asset")] -#endif - static void CreateAsset() - { - var asset = ScriptableObject.CreateInstance(); - AssetDatabase.CreateAsset(asset, "Assets/PostProcessResources.asset"); - AssetDatabase.SaveAssets(); - AssetDatabase.Refresh(); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/ResourceAssetFactory.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/ResourceAssetFactory.cs.meta deleted file mode 100644 index 7ac577f18..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/ResourceAssetFactory.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: d4351734f8a0aaa42a51a99db92e92e2 -timeCreated: 1496736723 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/VolumeFactory.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/VolumeFactory.cs deleted file mode 100644 index 8d4c6f027..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/VolumeFactory.cs +++ /dev/null @@ -1,21 +0,0 @@ -using UnityEngine; -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - internal static class VolumeFactory - { - [MenuItem("GameObject/3D Object/Post-process Volume")] - static void CreateVolume() - { - var gameObject = new GameObject("Post-process Volume"); - var collider = gameObject.AddComponent(); - collider.size = Vector3.one; - collider.isTrigger = true; - gameObject.AddComponent(); - - Selection.objects = new [] { gameObject }; - EditorApplication.ExecuteMenuItem("GameObject/Move To View"); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/VolumeFactory.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/VolumeFactory.cs.meta deleted file mode 100644 index 9c81e30a6..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Tools/VolumeFactory.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 0f3902e2aa2609f47ab0c956e56ea0bf -timeCreated: 1497707764 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Unity.Postprocessing.Editor.asmdef b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Unity.Postprocessing.Editor.asmdef deleted file mode 100644 index 3a1bd4912..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Unity.Postprocessing.Editor.asmdef +++ /dev/null @@ -1,16 +0,0 @@ -{ - "name": "Unity.Postprocessing.Editor", - "references": [ - "Unity.Postprocessing.Runtime" - ], - "optionalUnityReferences": [], - "includePlatforms": [ - "Editor" - ], - "excludePlatforms": [], - "allowUnsafeCode": false, - "overrideReferences": false, - "precompiledReferences": [], - "autoReferenced": true, - "defineConstraints": [] -} \ No newline at end of file diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Unity.Postprocessing.Editor.asmdef.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Unity.Postprocessing.Editor.asmdef.meta deleted file mode 100644 index e586d979d..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Unity.Postprocessing.Editor.asmdef.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: a35efad8797223d499f8c68b1f545dbc -AssemblyDefinitionImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils.meta deleted file mode 100644 index 6ed37939d..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 018e19d6c1b36224b85b5c0ddd6a895e -folderAsset: yes -timeCreated: 1489051059 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/CurveEditor.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/CurveEditor.cs deleted file mode 100644 index 72fac1d53..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/CurveEditor.cs +++ /dev/null @@ -1,859 +0,0 @@ -using System; -using System.Collections.Generic; -using UnityEngine; - -namespace UnityEditor.Rendering.PostProcessing -{ - internal sealed class CurveEditor - { - #region Enums - - enum EditMode - { - None, - Moving, - TangentEdit - } - - enum Tangent - { - In, - Out - } - - #endregion - - #region Structs - - public struct Settings - { - public Rect bounds; - public RectOffset padding; - public Color selectionColor; - public float curvePickingDistance; - public float keyTimeClampingDistance; - - public static Settings defaultSettings - { - get - { - return new Settings - { - bounds = new Rect(0f, 0f, 1f, 1f), - padding = new RectOffset(10, 10, 10, 10), - selectionColor = Color.yellow, - curvePickingDistance = 6f, - keyTimeClampingDistance = 1e-4f - }; - } - } - } - - public struct CurveState - { - public bool visible; - public bool editable; - public uint minPointCount; - public float zeroKeyConstantValue; - public Color color; - public float width; - public float handleWidth; - public bool showNonEditableHandles; - public bool onlyShowHandlesOnSelection; - public bool loopInBounds; - - public static CurveState defaultState - { - get - { - return new CurveState - { - visible = true, - editable = true, - minPointCount = 2, - zeroKeyConstantValue = 0f, - color = Color.white, - width = 2f, - handleWidth = 2f, - showNonEditableHandles = true, - onlyShowHandlesOnSelection = false, - loopInBounds = false - }; - } - } - } - - public struct Selection - { - public SerializedProperty curve; - public int keyframeIndex; - public Keyframe? keyframe; - - public Selection(SerializedProperty curve, int keyframeIndex, Keyframe? keyframe) - { - this.curve = curve; - this.keyframeIndex = keyframeIndex; - this.keyframe = keyframe; - } - } - - internal struct MenuAction - { - internal SerializedProperty curve; - internal int index; - internal Vector3 position; - - internal MenuAction(SerializedProperty curve) - { - this.curve = curve; - this.index = -1; - this.position = Vector3.zero; - } - - internal MenuAction(SerializedProperty curve, int index) - { - this.curve = curve; - this.index = index; - this.position = Vector3.zero; - } - - internal MenuAction(SerializedProperty curve, Vector3 position) - { - this.curve = curve; - this.index = -1; - this.position = position; - } - } - - #endregion - - #region Fields & properties - - public Settings settings { get; private set; } - - readonly Dictionary m_Curves; - Rect m_CurveArea; - - SerializedProperty m_SelectedCurve; - int m_SelectedKeyframeIndex = -1; - - EditMode m_EditMode = EditMode.None; - Tangent m_TangentEditMode; - - bool m_Dirty; - - #endregion - - #region Constructors & destructors - - public CurveEditor() - : this(Settings.defaultSettings) - { } - - public CurveEditor(Settings settings) - { - this.settings = settings; - m_Curves = new Dictionary(); - } - - #endregion - - #region Public API - - public void Add(params SerializedProperty[] curves) - { - foreach (var curve in curves) - Add(curve, CurveState.defaultState); - } - - public void Add(SerializedProperty curve) - { - Add(curve, CurveState.defaultState); - } - - public void Add(SerializedProperty curve, CurveState state) - { - // Make sure the property is in fact an AnimationCurve - var animCurve = curve.animationCurveValue; - if (animCurve == null) - throw new ArgumentException("curve"); - - if (m_Curves.ContainsKey(curve)) - Debug.LogWarning("Curve has already been added to the editor"); - - m_Curves.Add(curve, state); - } - - public void Remove(SerializedProperty curve) - { - m_Curves.Remove(curve); - } - - public void RemoveAll() - { - m_Curves.Clear(); - } - - public CurveState GetCurveState(SerializedProperty curve) - { - CurveState state; - if (!m_Curves.TryGetValue(curve, out state)) - throw new KeyNotFoundException("curve"); - - return state; - } - - public void SetCurveState(SerializedProperty curve, CurveState state) - { - if (!m_Curves.ContainsKey(curve)) - throw new KeyNotFoundException("curve"); - - m_Curves[curve] = state; - } - - public Selection GetSelection() - { - Keyframe? key = null; - if (m_SelectedKeyframeIndex > -1) - { - var curve = m_SelectedCurve.animationCurveValue; - - if (m_SelectedKeyframeIndex >= curve.length) - m_SelectedKeyframeIndex = -1; - else - key = curve[m_SelectedKeyframeIndex]; - } - - return new Selection(m_SelectedCurve, m_SelectedKeyframeIndex, key); - } - - public void SetKeyframe(SerializedProperty curve, int keyframeIndex, Keyframe keyframe) - { - var animCurve = curve.animationCurveValue; - SetKeyframe(animCurve, keyframeIndex, keyframe); - SaveCurve(curve, animCurve); - } - - public bool OnGUI(Rect rect) - { - if (Event.current.type == EventType.Repaint) - m_Dirty = false; - - GUI.BeginClip(rect); - { - var area = new Rect(Vector2.zero, rect.size); - m_CurveArea = settings.padding.Remove(area); - - foreach (var curve in m_Curves) - OnCurveGUI(area, curve.Key, curve.Value); - - OnGeneralUI(area); - } - GUI.EndClip(); - - return m_Dirty; - } - - #endregion - - #region UI & events - - void OnCurveGUI(Rect rect, SerializedProperty curve, CurveState state) - { - // Discard invisible curves - if (!state.visible) - return; - - var animCurve = curve.animationCurveValue; - var keys = animCurve.keys; - var length = keys.Length; - - // Curve drawing - // Slightly dim non-editable curves - var color = state.color; - if (!state.editable || !GUI.enabled) - color.a *= 0.5f; - - Handles.color = color; - var bounds = settings.bounds; - - if (length == 0) - { - var p1 = CurveToCanvas(new Vector3(bounds.xMin, state.zeroKeyConstantValue)); - var p2 = CurveToCanvas(new Vector3(bounds.xMax, state.zeroKeyConstantValue)); - Handles.DrawAAPolyLine(state.width, p1, p2); - } - else if (length == 1) - { - var p1 = CurveToCanvas(new Vector3(bounds.xMin, keys[0].value)); - var p2 = CurveToCanvas(new Vector3(bounds.xMax, keys[0].value)); - Handles.DrawAAPolyLine(state.width, p1, p2); - } - else - { - var prevKey = keys[0]; - for (int k = 1; k < length; k++) - { - var key = keys[k]; - var pts = BezierSegment(prevKey, key); - - if (float.IsInfinity(prevKey.outTangent) || float.IsInfinity(key.inTangent)) - { - var s = HardSegment(prevKey, key); - Handles.DrawAAPolyLine(state.width, s[0], s[1], s[2]); - } - else Handles.DrawBezier(pts[0], pts[3], pts[1], pts[2], color, null, state.width); - - prevKey = key; - } - - // Curve extents & loops - if (keys[0].time > bounds.xMin) - { - if (state.loopInBounds) - { - var p1 = keys[length - 1]; - p1.time -= settings.bounds.width; - var p2 = keys[0]; - var pts = BezierSegment(p1, p2); - - if (float.IsInfinity(p1.outTangent) || float.IsInfinity(p2.inTangent)) - { - var s = HardSegment(p1, p2); - Handles.DrawAAPolyLine(state.width, s[0], s[1], s[2]); - } - else Handles.DrawBezier(pts[0], pts[3], pts[1], pts[2], color, null, state.width); - } - else - { - var p1 = CurveToCanvas(new Vector3(bounds.xMin, keys[0].value)); - var p2 = CurveToCanvas(keys[0]); - Handles.DrawAAPolyLine(state.width, p1, p2); - } - } - - if (keys[length - 1].time < bounds.xMax) - { - if (state.loopInBounds) - { - var p1 = keys[length - 1]; - var p2 = keys[0]; - p2.time += settings.bounds.width; - var pts = BezierSegment(p1, p2); - - if (float.IsInfinity(p1.outTangent) || float.IsInfinity(p2.inTangent)) - { - var s = HardSegment(p1, p2); - Handles.DrawAAPolyLine(state.width, s[0], s[1], s[2]); - } - else Handles.DrawBezier(pts[0], pts[3], pts[1], pts[2], color, null, state.width); - } - else - { - var p1 = CurveToCanvas(keys[length - 1]); - var p2 = CurveToCanvas(new Vector3(bounds.xMax, keys[length - 1].value)); - Handles.DrawAAPolyLine(state.width, p1, p2); - } - } - } - - // Make sure selection is correct (undo can break it) - bool isCurrentlySelectedCurve = curve == m_SelectedCurve; - - if (isCurrentlySelectedCurve && m_SelectedKeyframeIndex >= length) - m_SelectedKeyframeIndex = -1; - - if (!state.editable) - m_SelectedKeyframeIndex = -1; - - float enabledFactor = GUI.enabled ? 1f : 0.8f; - - // Handles & keys - for (int k = 0; k < length; k++) - { - bool isCurrentlySelectedKeyframe = k == m_SelectedKeyframeIndex; - var e = Event.current; - - var pos = CurveToCanvas(keys[k]); - var hitRect = new Rect(pos.x - 8f, pos.y - 8f, 16f, 16f); - var offset = isCurrentlySelectedCurve - ? new RectOffset(5, 5, 5, 5) - : new RectOffset(6, 6, 6, 6); - - var outTangent = pos + CurveTangentToCanvas(keys[k].outTangent).normalized * 40f; - var inTangent = pos - CurveTangentToCanvas(keys[k].inTangent).normalized * 40f; - var inTangentHitRect = new Rect(inTangent.x - 7f, inTangent.y - 7f, 14f, 14f); - var outTangentHitrect = new Rect(outTangent.x - 7f, outTangent.y - 7f, 14f, 14f); - - // Draw - if (state.editable || state.showNonEditableHandles) - { - if (e.type == EventType.Repaint) - { - var selectedColor = (isCurrentlySelectedCurve && isCurrentlySelectedKeyframe) - ? settings.selectionColor - : state.color; - - // Keyframe - EditorGUI.DrawRect(offset.Remove(hitRect), selectedColor * enabledFactor); - - // Tangents - if (isCurrentlySelectedCurve && (!state.onlyShowHandlesOnSelection || (state.onlyShowHandlesOnSelection && isCurrentlySelectedKeyframe))) - { - Handles.color = selectedColor * enabledFactor; - - if (k > 0 || state.loopInBounds) - { - Handles.DrawAAPolyLine(state.handleWidth, pos, inTangent); - EditorGUI.DrawRect(offset.Remove(inTangentHitRect), selectedColor); - } - - if (k < length - 1 || state.loopInBounds) - { - Handles.DrawAAPolyLine(state.handleWidth, pos, outTangent); - EditorGUI.DrawRect(offset.Remove(outTangentHitrect), selectedColor); - } - } - } - } - - // Events - if (state.editable) - { - // Keyframe move - if (m_EditMode == EditMode.Moving && e.type == EventType.MouseDrag && isCurrentlySelectedCurve && isCurrentlySelectedKeyframe) - { - EditMoveKeyframe(animCurve, keys, k); - } - - // Tangent editing - if (m_EditMode == EditMode.TangentEdit && e.type == EventType.MouseDrag && isCurrentlySelectedCurve && isCurrentlySelectedKeyframe) - { - bool alreadyBroken = !(Mathf.Approximately(keys[k].inTangent, keys[k].outTangent) || (float.IsInfinity(keys[k].inTangent) && float.IsInfinity(keys[k].outTangent))); - EditMoveTangent(animCurve, keys, k, m_TangentEditMode, e.shift || !(alreadyBroken || e.control)); - } - - // Keyframe selection & context menu - if (e.type == EventType.MouseDown && rect.Contains(e.mousePosition)) - { - if (hitRect.Contains(e.mousePosition)) - { - if (e.button == 0) - { - SelectKeyframe(curve, k); - m_EditMode = EditMode.Moving; - e.Use(); - } - else if (e.button == 1) - { - // Keyframe context menu - var menu = new GenericMenu(); - menu.AddItem(new GUIContent("Delete Key"), false, (x) => - { - var action = (MenuAction)x; - var curveValue = action.curve.animationCurveValue; - action.curve.serializedObject.Update(); - RemoveKeyframe(curveValue, action.index); - m_SelectedKeyframeIndex = -1; - SaveCurve(action.curve, curveValue); - action.curve.serializedObject.ApplyModifiedProperties(); - }, new MenuAction(curve, k)); - menu.ShowAsContext(); - e.Use(); - } - } - } - - // Tangent selection & edit mode - if (e.type == EventType.MouseDown && rect.Contains(e.mousePosition)) - { - if (inTangentHitRect.Contains(e.mousePosition) && (k > 0 || state.loopInBounds)) - { - SelectKeyframe(curve, k); - m_EditMode = EditMode.TangentEdit; - m_TangentEditMode = Tangent.In; - e.Use(); - } - else if (outTangentHitrect.Contains(e.mousePosition) && (k < length - 1 || state.loopInBounds)) - { - SelectKeyframe(curve, k); - m_EditMode = EditMode.TangentEdit; - m_TangentEditMode = Tangent.Out; - e.Use(); - } - } - - // Mouse up - clean up states - if (e.rawType == EventType.MouseUp && m_EditMode != EditMode.None) - { - m_EditMode = EditMode.None; - } - - // Set cursors - { - EditorGUIUtility.AddCursorRect(hitRect, MouseCursor.MoveArrow); - - if (k > 0 || state.loopInBounds) - EditorGUIUtility.AddCursorRect(inTangentHitRect, MouseCursor.RotateArrow); - - if (k < length - 1 || state.loopInBounds) - EditorGUIUtility.AddCursorRect(outTangentHitrect, MouseCursor.RotateArrow); - } - } - } - - Handles.color = Color.white; - SaveCurve(curve, animCurve); - } - - void OnGeneralUI(Rect rect) - { - var e = Event.current; - - // Selection - if (e.type == EventType.MouseDown) - { - GUI.FocusControl(null); - m_SelectedCurve = null; - m_SelectedKeyframeIndex = -1; - bool used = false; - - var hit = CanvasToCurve(e.mousePosition); - float curvePickValue = CurveToCanvas(hit).y; - - // Try and select a curve - foreach (var curve in m_Curves) - { - if (!curve.Value.editable || !curve.Value.visible) - continue; - - var prop = curve.Key; - var state = curve.Value; - var animCurve = prop.animationCurveValue; - float hitY = animCurve.length == 0 - ? state.zeroKeyConstantValue - : animCurve.Evaluate(hit.x); - - var curvePos = CurveToCanvas(new Vector3(hit.x, hitY)); - - if (Mathf.Abs(curvePos.y - curvePickValue) < settings.curvePickingDistance) - { - m_SelectedCurve = prop; - - if (e.clickCount == 2 && e.button == 0) - { - // Create a keyframe on double-click on this curve - EditCreateKeyframe(animCurve, hit, true, state.zeroKeyConstantValue); - SaveCurve(prop, animCurve); - } - else if (e.button == 1) - { - // Curve context menu - var menu = new GenericMenu(); - menu.AddItem(new GUIContent("Add Key"), false, (x) => - { - var action = (MenuAction)x; - var curveValue = action.curve.animationCurveValue; - action.curve.serializedObject.Update(); - EditCreateKeyframe(curveValue, hit, true, 0f); - SaveCurve(action.curve, curveValue); - action.curve.serializedObject.ApplyModifiedProperties(); - }, new MenuAction(prop, hit)); - menu.ShowAsContext(); - e.Use(); - used = true; - } - } - } - - if (e.clickCount == 2 && e.button == 0 && m_SelectedCurve == null) - { - // Create a keyframe on every curve on double-click - foreach (var curve in m_Curves) - { - if (!curve.Value.editable || !curve.Value.visible) - continue; - - var prop = curve.Key; - var state = curve.Value; - var animCurve = prop.animationCurveValue; - EditCreateKeyframe(animCurve, hit, e.alt, state.zeroKeyConstantValue); - SaveCurve(prop, animCurve); - } - } - else if (!used && e.button == 1) - { - // Global context menu - var menu = new GenericMenu(); - menu.AddItem(new GUIContent("Add Key At Position"), false, () => ContextMenuAddKey(hit, false)); - menu.AddItem(new GUIContent("Add Key On Curves"), false, () => ContextMenuAddKey(hit, true)); - menu.ShowAsContext(); - } - - e.Use(); - } - - // Delete selected key(s) - if (e.type == EventType.KeyDown && (e.keyCode == KeyCode.Delete || e.keyCode == KeyCode.Backspace)) - { - if (m_SelectedKeyframeIndex != -1 && m_SelectedCurve != null) - { - var animCurve = m_SelectedCurve.animationCurveValue; - var length = animCurve.length; - - if (m_Curves[m_SelectedCurve].minPointCount < length && length >= 0) - { - EditDeleteKeyframe(animCurve, m_SelectedKeyframeIndex); - m_SelectedKeyframeIndex = -1; - SaveCurve(m_SelectedCurve, animCurve); - } - - e.Use(); - } - } - } - - void SaveCurve(SerializedProperty prop, AnimationCurve curve) - { - prop.animationCurveValue = curve; - } - - void Invalidate() - { - m_Dirty = true; - } - - #endregion - - #region Keyframe manipulations - - void SelectKeyframe(SerializedProperty curve, int keyframeIndex) - { - m_SelectedKeyframeIndex = keyframeIndex; - m_SelectedCurve = curve; - Invalidate(); - } - - void ContextMenuAddKey(Vector3 hit, bool createOnCurve) - { - SerializedObject serializedObject = null; - - foreach (var curve in m_Curves) - { - if (!curve.Value.editable || !curve.Value.visible) - continue; - - var prop = curve.Key; - var state = curve.Value; - - if (serializedObject == null) - { - serializedObject = prop.serializedObject; - serializedObject.Update(); - } - - var animCurve = prop.animationCurveValue; - EditCreateKeyframe(animCurve, hit, createOnCurve, state.zeroKeyConstantValue); - SaveCurve(prop, animCurve); - } - - if (serializedObject != null) - serializedObject.ApplyModifiedProperties(); - - Invalidate(); - } - - void EditCreateKeyframe(AnimationCurve curve, Vector3 position, bool createOnCurve, float zeroKeyConstantValue) - { - float tangent = EvaluateTangent(curve, position.x); - - if (createOnCurve) - { - position.y = curve.length == 0 - ? zeroKeyConstantValue - : curve.Evaluate(position.x); - } - - AddKeyframe(curve, new Keyframe(position.x, position.y, tangent, tangent)); - } - - void EditDeleteKeyframe(AnimationCurve curve, int keyframeIndex) - { - RemoveKeyframe(curve, keyframeIndex); - } - - void AddKeyframe(AnimationCurve curve, Keyframe newValue) - { - curve.AddKey(newValue); - Invalidate(); - } - - void RemoveKeyframe(AnimationCurve curve, int keyframeIndex) - { - curve.RemoveKey(keyframeIndex); - Invalidate(); - } - - void SetKeyframe(AnimationCurve curve, int keyframeIndex, Keyframe newValue) - { - var keys = curve.keys; - - if (keyframeIndex > 0) - newValue.time = Mathf.Max(keys[keyframeIndex - 1].time + settings.keyTimeClampingDistance, newValue.time); - - if (keyframeIndex < keys.Length - 1) - newValue.time = Mathf.Min(keys[keyframeIndex + 1].time - settings.keyTimeClampingDistance, newValue.time); - - curve.MoveKey(keyframeIndex, newValue); - Invalidate(); - } - - void EditMoveKeyframe(AnimationCurve curve, Keyframe[] keys, int keyframeIndex) - { - var key = CanvasToCurve(Event.current.mousePosition); - float inTgt = keys[keyframeIndex].inTangent; - float outTgt = keys[keyframeIndex].outTangent; - SetKeyframe(curve, keyframeIndex, new Keyframe(key.x, key.y, inTgt, outTgt)); - } - - void EditMoveTangent(AnimationCurve curve, Keyframe[] keys, int keyframeIndex, Tangent targetTangent, bool linkTangents) - { - var pos = CanvasToCurve(Event.current.mousePosition); - - float time = keys[keyframeIndex].time; - float value = keys[keyframeIndex].value; - - pos -= new Vector3(time, value); - - if (targetTangent == Tangent.In && pos.x > 0f) - pos.x = 0f; - - if (targetTangent == Tangent.Out && pos.x < 0f) - pos.x = 0f; - - float tangent; - - if (Mathf.Approximately(pos.x, 0f)) - tangent = pos.y < 0f ? float.PositiveInfinity : float.NegativeInfinity; - else - tangent = pos.y / pos.x; - - float inTangent = keys[keyframeIndex].inTangent; - float outTangent = keys[keyframeIndex].outTangent; - - if (targetTangent == Tangent.In || linkTangents) - inTangent = tangent; - if (targetTangent == Tangent.Out || linkTangents) - outTangent = tangent; - - SetKeyframe(curve, keyframeIndex, new Keyframe(time, value, inTangent, outTangent)); - } - - #endregion - - #region Maths utilities - - Vector3 CurveToCanvas(Keyframe keyframe) - { - return CurveToCanvas(new Vector3(keyframe.time, keyframe.value)); - } - - Vector3 CurveToCanvas(Vector3 position) - { - var bounds = settings.bounds; - var output = new Vector3((position.x - bounds.x) / (bounds.xMax - bounds.x), (position.y - bounds.y) / (bounds.yMax - bounds.y)); - output.x = output.x * (m_CurveArea.xMax - m_CurveArea.xMin) + m_CurveArea.xMin; - output.y = (1f - output.y) * (m_CurveArea.yMax - m_CurveArea.yMin) + m_CurveArea.yMin; - return output; - } - - Vector3 CanvasToCurve(Vector3 position) - { - var bounds = settings.bounds; - var output = position; - output.x = (output.x - m_CurveArea.xMin) / (m_CurveArea.xMax - m_CurveArea.xMin); - output.y = (output.y - m_CurveArea.yMin) / (m_CurveArea.yMax - m_CurveArea.yMin); - output.x = Mathf.Lerp(bounds.x, bounds.xMax, output.x); - output.y = Mathf.Lerp(bounds.yMax, bounds.y, output.y); - return output; - } - - Vector3 CurveTangentToCanvas(float tangent) - { - if (!float.IsInfinity(tangent)) - { - var bounds = settings.bounds; - float ratio = (m_CurveArea.width / m_CurveArea.height) / ((bounds.xMax - bounds.x) / (bounds.yMax - bounds.y)); - return new Vector3(1f, -tangent / ratio).normalized; - } - - return float.IsPositiveInfinity(tangent) ? Vector3.up : Vector3.down; - } - - Vector3[] BezierSegment(Keyframe start, Keyframe end) - { - var segment = new Vector3[4]; - - segment[0] = CurveToCanvas(new Vector3(start.time, start.value)); - segment[3] = CurveToCanvas(new Vector3(end.time, end.value)); - - float middle = start.time + ((end.time - start.time) * 0.333333f); - float middle2 = start.time + ((end.time - start.time) * 0.666666f); - - segment[1] = CurveToCanvas(new Vector3(middle, ProjectTangent(start.time, start.value, start.outTangent, middle))); - segment[2] = CurveToCanvas(new Vector3(middle2, ProjectTangent(end.time, end.value, end.inTangent, middle2))); - - return segment; - } - - Vector3[] HardSegment(Keyframe start, Keyframe end) - { - var segment = new Vector3[3]; - - segment[0] = CurveToCanvas(start); - segment[1] = CurveToCanvas(new Vector3(end.time, start.value)); - segment[2] = CurveToCanvas(end); - - return segment; - } - - float ProjectTangent(float inPosition, float inValue, float inTangent, float projPosition) - { - return inValue + ((projPosition - inPosition) * inTangent); - } - - float EvaluateTangent(AnimationCurve curve, float time) - { - int prev = -1, next = 0; - for (int i = 0; i < curve.keys.Length; i++) - { - if (time > curve.keys[i].time) - { - prev = i; - next = i + 1; - } - else break; - } - - if (next == 0) - return 0f; - - if (prev == curve.keys.Length - 1) - return 0f; - - const float kD = 1e-3f; - float tp = Mathf.Max(time - kD, curve.keys[prev].time); - float tn = Mathf.Min(time + kD, curve.keys[next].time); - - float vp = curve.Evaluate(tp); - float vn = curve.Evaluate(tn); - - if (Mathf.Approximately(tn, tp)) - return (vn - vp > 0f) ? float.PositiveInfinity : float.NegativeInfinity; - - return (vn - vp) / (tn - tp); - } - - #endregion - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/CurveEditor.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/CurveEditor.cs.meta deleted file mode 100644 index c76f2b060..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/CurveEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: ce0f0631fee52da41884853337cab99d -timeCreated: 1493979438 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/EditorUtilities.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/EditorUtilities.cs deleted file mode 100644 index e689687c1..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/EditorUtilities.cs +++ /dev/null @@ -1,354 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using UnityEngine; -using UnityEngine.Assertions; -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - /// - /// A set of editor utilities used in post-processing editors. - /// - public static class EditorUtilities - { - static Dictionary s_GUIContentCache; - static Dictionary s_AttributeDecorators; - - static PostProcessEffectSettings s_ClipboardContent; - - /// - /// Returns true if the current target is a console, false otherwise. - /// - public static bool isTargetingConsoles - { - get - { - var t = EditorUserBuildSettings.activeBuildTarget; - return t == BuildTarget.PS4 - || t == BuildTarget.XboxOne - || t == BuildTarget.Switch; - } - } - - /// - /// Returns true if the current target is a mobile, false otherwise. - /// - public static bool isTargetingMobiles - { - get - { - var t = EditorUserBuildSettings.activeBuildTarget; - return t == BuildTarget.Android - || t == BuildTarget.iOS - || t == BuildTarget.tvOS -#if !UNITY_2018_2_OR_NEWER - || t == BuildTarget.Tizen -#endif -#if !UNITY_2018_3_OR_NEWER - || t == BuildTarget.N3DS - || t == BuildTarget.PSP2 -#endif - ; - } - } - - /// - /// Returns true if the current target is a console or a mobile, false - /// otherwise. - /// - public static bool isTargetingConsolesOrMobiles - { - get { return isTargetingConsoles || isTargetingMobiles; } - } - - static EditorUtilities() - { - s_GUIContentCache = new Dictionary(); - s_AttributeDecorators = new Dictionary(); - ReloadDecoratorTypes(); - } - - [Callbacks.DidReloadScripts] - static void OnEditorReload() - { - ReloadDecoratorTypes(); - } - - static void ReloadDecoratorTypes() - { - s_AttributeDecorators.Clear(); - - // Look for all the valid attribute decorators - var types = RuntimeUtilities.GetAllAssemblyTypes() - .Where( - t => t.IsSubclassOf(typeof(AttributeDecorator)) - && t.IsDefined(typeof(DecoratorAttribute), false) - && !t.IsAbstract - ); - - // Store them - foreach (var type in types) - { - var attr = type.GetAttribute(); - var decorator = (AttributeDecorator)Activator.CreateInstance(type); - s_AttributeDecorators.Add(attr.attributeType, decorator); - } - } - - internal static AttributeDecorator GetDecorator(Type attributeType) - { - AttributeDecorator decorator; - return !s_AttributeDecorators.TryGetValue(attributeType, out decorator) - ? null - : decorator; - } - - /// - /// Gets a for the given label and tooltip. These are recycled - /// internally and help reduce the garbage collector pressure in the editor. - /// - /// The label and tooltip separated by a | - /// character - /// A recycled - public static GUIContent GetContent(string textAndTooltip) - { - if (string.IsNullOrEmpty(textAndTooltip)) - return GUIContent.none; - - GUIContent content; - - if (!s_GUIContentCache.TryGetValue(textAndTooltip, out content)) - { - var s = textAndTooltip.Split('|'); - content = new GUIContent(s[0]); - - if (s.Length > 1 && !string.IsNullOrEmpty(s[1])) - content.tooltip = s[1]; - - s_GUIContentCache.Add(textAndTooltip, content); - } - - return content; - } - - /// - /// Draws a UI box with a description and a "Fix Me" button next to it. - /// - /// The description - /// The action to execute when the button is clicked - public static void DrawFixMeBox(string text, Action action) - { - Assert.IsNotNull(action); - - EditorGUILayout.HelpBox(text, MessageType.Warning); - - GUILayout.Space(-32); - using (new EditorGUILayout.HorizontalScope()) - { - GUILayout.FlexibleSpace(); - - if (GUILayout.Button("Fix", GUILayout.Width(60))) - action(); - - GUILayout.Space(8); - } - GUILayout.Space(11); - } - - /// - /// Draws a horizontal split line. - /// - public static void DrawSplitter() - { - var rect = GUILayoutUtility.GetRect(1f, 1f); - - // Splitter rect should be full-width - rect.xMin = 0f; - rect.width += 4f; - - if (Event.current.type != EventType.Repaint) - return; - - EditorGUI.DrawRect(rect, Styling.splitter); - } - - /// - /// Draws a toggle using the "override checkbox" style. - /// - /// The position and size of the toggle - /// The override state property for the toggle - public static void DrawOverrideCheckbox(Rect rect, SerializedProperty property) - { - property.boolValue = GUI.Toggle(rect, property.boolValue, GetContent("|Override this setting for this volume."), Styling.smallTickbox); - } - - /// - /// Draws a header label. - /// - /// The label to display as a header - public static void DrawHeaderLabel(string title) - { - EditorGUILayout.LabelField(title, Styling.headerLabel); - } - - internal static bool DrawHeader(string title, bool state) - { - var backgroundRect = GUILayoutUtility.GetRect(1f, 17f); - - var labelRect = backgroundRect; - labelRect.xMin += 16f; - labelRect.xMax -= 20f; - - var foldoutRect = backgroundRect; - foldoutRect.y += 1f; - foldoutRect.width = 13f; - foldoutRect.height = 13f; - - // Background rect should be full-width - backgroundRect.xMin = 0f; - backgroundRect.width += 4f; - - // Background - EditorGUI.DrawRect(backgroundRect, Styling.headerBackground); - - // Title - EditorGUI.LabelField(labelRect, GetContent(title), EditorStyles.boldLabel); - - // Foldout - state = GUI.Toggle(foldoutRect, state, GUIContent.none, EditorStyles.foldout); - - var e = Event.current; - if (e.type == EventType.MouseDown && backgroundRect.Contains(e.mousePosition) && e.button == 0) - { - state = !state; - e.Use(); - } - - return state; - } - - internal static bool DrawHeader(string title, SerializedProperty group, SerializedProperty activeField, PostProcessEffectSettings target, Action resetAction, Action removeAction) - { - Assert.IsNotNull(group); - Assert.IsNotNull(activeField); - Assert.IsNotNull(target); - - var backgroundRect = GUILayoutUtility.GetRect(1f, 17f); - - var labelRect = backgroundRect; - labelRect.xMin += 32f; - labelRect.xMax -= 20f; - - var foldoutRect = backgroundRect; - foldoutRect.y += 1f; - foldoutRect.width = 13f; - foldoutRect.height = 13f; - - var toggleRect = backgroundRect; - toggleRect.x += 16f; - toggleRect.y += 2f; - toggleRect.width = 13f; - toggleRect.height = 13f; - - var menuIcon = Styling.paneOptionsIcon; - var menuRect = new Rect(labelRect.xMax + 4f, labelRect.y + 4f, menuIcon.width, menuIcon.height); - - // Background rect should be full-width - backgroundRect.xMin = 0f; - backgroundRect.width += 4f; - - // Background - EditorGUI.DrawRect(backgroundRect, Styling.headerBackground); - - // Title - using (new EditorGUI.DisabledScope(!activeField.boolValue)) - EditorGUI.LabelField(labelRect, GetContent(title), EditorStyles.boldLabel); - - // foldout - group.serializedObject.Update(); - group.isExpanded = GUI.Toggle(foldoutRect, group.isExpanded, GUIContent.none, EditorStyles.foldout); - group.serializedObject.ApplyModifiedProperties(); - - // Active checkbox - activeField.serializedObject.Update(); - activeField.boolValue = GUI.Toggle(toggleRect, activeField.boolValue, GUIContent.none, Styling.smallTickbox); - activeField.serializedObject.ApplyModifiedProperties(); - - // Dropdown menu icon - GUI.DrawTexture(menuRect, menuIcon); - - // Handle events - var e = Event.current; - - if (e.type == EventType.MouseDown) - { - if (menuRect.Contains(e.mousePosition)) - { - ShowHeaderContextMenu(new Vector2(menuRect.x, menuRect.yMax), target, resetAction, removeAction); - e.Use(); - } - else if (labelRect.Contains(e.mousePosition)) - { - if (e.button == 0) - group.isExpanded = !group.isExpanded; - else - ShowHeaderContextMenu(e.mousePosition, target, resetAction, removeAction); - - e.Use(); - } - } - - return group.isExpanded; - } - - static void ShowHeaderContextMenu(Vector2 position, PostProcessEffectSettings target, Action resetAction, Action removeAction) - { - Assert.IsNotNull(resetAction); - Assert.IsNotNull(removeAction); - - var menu = new GenericMenu(); - menu.AddItem(GetContent("Reset"), false, () => resetAction()); - menu.AddItem(GetContent("Remove"), false, () => removeAction()); - menu.AddSeparator(string.Empty); - menu.AddItem(GetContent("Copy Settings"), false, () => CopySettings(target)); - - if (CanPaste(target)) - menu.AddItem(GetContent("Paste Settings"), false, () => PasteSettings(target)); - else - menu.AddDisabledItem(GetContent("Paste Settings")); - - menu.DropDown(new Rect(position, Vector2.zero)); - } - - static void CopySettings(PostProcessEffectSettings target) - { - Assert.IsNotNull(target); - - if (s_ClipboardContent != null) - { - RuntimeUtilities.Destroy(s_ClipboardContent); - s_ClipboardContent = null; - } - - s_ClipboardContent = (PostProcessEffectSettings)ScriptableObject.CreateInstance(target.GetType()); - EditorUtility.CopySerializedIfDifferent(target, s_ClipboardContent); - } - - static void PasteSettings(PostProcessEffectSettings target) - { - Assert.IsNotNull(target); - Assert.IsNotNull(s_ClipboardContent); - Assert.AreEqual(s_ClipboardContent.GetType(), target.GetType()); - - Undo.RecordObject(target, "Paste Settings"); - EditorUtility.CopySerializedIfDifferent(s_ClipboardContent, target); - } - - static bool CanPaste(PostProcessEffectSettings target) - { - return s_ClipboardContent != null - && s_ClipboardContent.GetType() == target.GetType(); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/EditorUtilities.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/EditorUtilities.cs.meta deleted file mode 100644 index 2ce480ef8..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/EditorUtilities.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 09e002b759745fa499d539b9021af38e -timeCreated: 1489050987 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/GlobalSettings.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/GlobalSettings.cs deleted file mode 100644 index 7cde6b286..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/GlobalSettings.cs +++ /dev/null @@ -1,114 +0,0 @@ -using UnityEngine; -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - static class GlobalSettings - { - static class Keys - { - internal const string trackballSensitivity = "PostProcessing.Trackball.Sensitivity"; - internal const string volumeGizmoColor = "PostProcessing.Volume.GizmoColor"; - internal const string currentChannelMixer = "PostProcessing.ChannelMixer.CurrentChannel"; - internal const string currentCurve = "PostProcessing.Curve.Current"; - } - - static bool m_Loaded = false; - - static float m_TrackballSensitivity = 0.2f; - internal static float trackballSensitivity - { - get { return m_TrackballSensitivity; } - set { TrySave(ref m_TrackballSensitivity, value, Keys.trackballSensitivity); } - } - - static Color m_VolumeGizmoColor = new Color(0.2f, 0.8f, 0.1f, 0.5f); - internal static Color volumeGizmoColor - { - get { return m_VolumeGizmoColor; } - set { TrySave(ref m_VolumeGizmoColor, value, Keys.volumeGizmoColor); } - } - - static int m_CurrentChannelMixer = 0; - internal static int currentChannelMixer - { - get { return m_CurrentChannelMixer; } - set { TrySave(ref m_CurrentChannelMixer, value, Keys.currentChannelMixer); } - } - - static int m_CurrentCurve = 0; - internal static int currentCurve - { - get { return m_CurrentCurve; } - set { TrySave(ref m_CurrentCurve, value, Keys.currentCurve); } - } - - static GlobalSettings() - { - Load(); - } - - #if UNITY_2018_3_OR_NEWER - [SettingsProvider] - static SettingsProvider PreferenceGUI() - { - return new SettingsProvider("Preferences/Post-processing", SettingsScope.User) - { - guiHandler = searchContext => OpenGUI() - }; - } - #else - [PreferenceItem("Post-processing")] - static void PreferenceGUI() - { - OpenGUI(); - } - #endif - - static void OpenGUI() - { - if (!m_Loaded) - Load(); - - EditorGUILayout.Space(); - - trackballSensitivity = EditorGUILayout.Slider("Trackballs Sensitivity", trackballSensitivity, 0.05f, 1f); - volumeGizmoColor = EditorGUILayout.ColorField("Volume Gizmo Color", volumeGizmoColor); - } - - static void Load() - { - m_TrackballSensitivity = EditorPrefs.GetFloat(Keys.trackballSensitivity, 0.2f); - m_VolumeGizmoColor = GetColor(Keys.volumeGizmoColor, new Color(0.2f, 0.8f, 0.1f, 0.5f)); - m_CurrentChannelMixer = EditorPrefs.GetInt(Keys.currentChannelMixer, 0); - m_CurrentCurve = EditorPrefs.GetInt(Keys.currentCurve, 0); - - m_Loaded = true; - } - - static Color GetColor(string key, Color defaultValue) - { - int value = EditorPrefs.GetInt(key, (int)ColorUtilities.ToHex(defaultValue)); - return ColorUtilities.ToRGBA((uint)value); - } - - static void TrySave(ref T field, T newValue, string key) - { - if (field.Equals(newValue)) - return; - - if (typeof(T) == typeof(float)) - EditorPrefs.SetFloat(key, (float)(object)newValue); - else if (typeof(T) == typeof(int)) - EditorPrefs.SetInt(key, (int)(object)newValue); - else if (typeof(T) == typeof(bool)) - EditorPrefs.SetBool(key, (bool)(object)newValue); - else if (typeof(T) == typeof(string)) - EditorPrefs.SetString(key, (string)(object)newValue); - else if (typeof(T) == typeof(Color)) - EditorPrefs.SetInt(key, (int)ColorUtilities.ToHex((Color)(object)newValue)); - - field = newValue; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/GlobalSettings.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/GlobalSettings.cs.meta deleted file mode 100644 index de260deda..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/GlobalSettings.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: eff4db1c9252e5247b661dec568df962 -timeCreated: 1494714307 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/PostProcessShaderIncludePath.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/PostProcessShaderIncludePath.cs deleted file mode 100644 index 1640582dc..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/PostProcessShaderIncludePath.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System.Linq; -using UnityEngine; -using System.IO; - -namespace UnityEditor.Experimental.Rendering -{ - static class PostProcessShaderIncludePath - { -#if UNITY_2018_1_OR_NEWER && !UNITY_2018_3_OR_NEWER - [ShaderIncludePath] -#endif - public static string[] GetPaths() - { - var srpMarker = Directory.GetFiles(Application.dataPath, "POSTFXMARKER", SearchOption.AllDirectories).FirstOrDefault(); - var paths = new string[srpMarker == null ? 1 : 2]; - var index = 0; - if (srpMarker != null) - { - paths[index] = Directory.GetParent(srpMarker).ToString(); - index++; - } - paths[index] = Path.GetFullPath("Packages/com.unity.postprocessing"); - return paths; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/PostProcessShaderIncludePath.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/PostProcessShaderIncludePath.cs.meta deleted file mode 100644 index 42cfc2b61..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/PostProcessShaderIncludePath.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 75da50dbb3034f142a31c2a182292bc8 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/SerializedParameterOverride.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/SerializedParameterOverride.cs deleted file mode 100644 index db1b1d609..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/SerializedParameterOverride.cs +++ /dev/null @@ -1,62 +0,0 @@ -using System; -using System.Linq; -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - /// - /// A wrapper used for serialization and easy access to the - /// underlying property and override state. - /// - public sealed class SerializedParameterOverride - { - /// - /// The override state property of the serialized parameter. - /// - public SerializedProperty overrideState { get; private set; } - - /// - /// The value property of the serialized parameter. - /// - public SerializedProperty value { get; private set; } - - /// - /// An array of all attributes set on the original parameter. - /// - public Attribute[] attributes { get; private set; } - - internal SerializedProperty baseProperty; - - /// - /// Returns the display name of the property. - /// - public string displayName - { - get { return baseProperty.displayName; } - } - - internal SerializedParameterOverride(SerializedProperty property, Attribute[] attributes) - { - baseProperty = property.Copy(); - - var localCopy = baseProperty.Copy(); - localCopy.Next(true); - overrideState = localCopy.Copy(); - localCopy.Next(false); - value = localCopy.Copy(); - - this.attributes = attributes; - } - - /// - /// Gets the attribute of type T from the original parameter. - /// - /// The type of attribute to look for - /// And attribute or type T, or null if none has been found - public T GetAttribute() - where T : Attribute - { - return (T)attributes.FirstOrDefault(x => x is T); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/SerializedParameterOverride.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/SerializedParameterOverride.cs.meta deleted file mode 100644 index ab8030f03..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/SerializedParameterOverride.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: f48a0d4b798943a448e8d2e5d891133c -timeCreated: 1492899655 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/Styling.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/Styling.cs deleted file mode 100644 index 55eff2400..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/Styling.cs +++ /dev/null @@ -1,114 +0,0 @@ -using UnityEngine; -using UnityEngine.Rendering.PostProcessing; - -namespace UnityEditor.Rendering.PostProcessing -{ - /// - /// Common styles used for Post-processing editor controls. - /// - public static class Styling - { - /// - /// Style for the override checkbox. - /// - public static readonly GUIStyle smallTickbox; - - /// - /// Style for the labels in the toolbar of each effect. - /// - public static readonly GUIStyle miniLabelButton; - - static readonly Color splitterDark; - static readonly Color splitterLight; - - /// - /// Color of UI splitters. - /// - public static Color splitter { get { return EditorGUIUtility.isProSkin ? splitterDark : splitterLight; } } - - static readonly Texture2D paneOptionsIconDark; - static readonly Texture2D paneOptionsIconLight; - - /// - /// Option icon used in effect headers. - /// - public static Texture2D paneOptionsIcon { get { return EditorGUIUtility.isProSkin ? paneOptionsIconDark : paneOptionsIconLight; } } - - /// - /// Style for effect header labels. - /// - public static readonly GUIStyle headerLabel; - - static readonly Color headerBackgroundDark; - static readonly Color headerBackgroundLight; - - /// - /// Color of effect header backgrounds. - /// - public static Color headerBackground { get { return EditorGUIUtility.isProSkin ? headerBackgroundDark : headerBackgroundLight; } } - - /// - /// Style for the trackball labels. - /// - public static readonly GUIStyle wheelLabel; - - /// - /// Style for the trackball cursors. - /// - public static readonly GUIStyle wheelThumb; - - /// - /// Size of the trackball cursors. - /// - public static readonly Vector2 wheelThumbSize; - - /// - /// Style for the curve editor position info. - /// - public static readonly GUIStyle preLabel; - - static Styling() - { - smallTickbox = new GUIStyle("ShurikenToggle"); - - miniLabelButton = new GUIStyle(EditorStyles.miniLabel); - miniLabelButton.normal = new GUIStyleState - { - background = RuntimeUtilities.transparentTexture, - scaledBackgrounds = null, - textColor = Color.grey - }; - var activeState = new GUIStyleState - { - background = RuntimeUtilities.transparentTexture, - scaledBackgrounds = null, - textColor = Color.white - }; - miniLabelButton.active = activeState; - miniLabelButton.onNormal = activeState; - miniLabelButton.onActive = activeState; - - splitterDark = new Color(0.12f, 0.12f, 0.12f, 1.333f); - splitterLight = new Color(0.6f, 0.6f, 0.6f, 1.333f); - - headerBackgroundDark = new Color(0.1f, 0.1f, 0.1f, 0.2f); - headerBackgroundLight = new Color(1f, 1f, 1f, 0.2f); - - paneOptionsIconDark = (Texture2D)EditorGUIUtility.Load("Builtin Skins/DarkSkin/Images/pane options.png"); - paneOptionsIconLight = (Texture2D)EditorGUIUtility.Load("Builtin Skins/LightSkin/Images/pane options.png"); - - headerLabel = new GUIStyle(EditorStyles.miniLabel); - - wheelThumb = new GUIStyle("ColorPicker2DThumb"); - - wheelThumbSize = new Vector2( - !Mathf.Approximately(wheelThumb.fixedWidth, 0f) ? wheelThumb.fixedWidth : wheelThumb.padding.horizontal, - !Mathf.Approximately(wheelThumb.fixedHeight, 0f) ? wheelThumb.fixedHeight : wheelThumb.padding.vertical - ); - - wheelLabel = new GUIStyle(EditorStyles.miniLabel); - - preLabel = new GUIStyle("ShurikenLabel"); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/Styling.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/Styling.cs.meta deleted file mode 100644 index daf42e9fc..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Editor/Utils/Styling.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: c884467f149574e44b21c869b7fc3401 -timeCreated: 1492697266 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Gizmos.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Gizmos.meta deleted file mode 100644 index cf2b53185..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Gizmos.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 62591175d691aac46a9db652057e905c -folderAsset: yes -timeCreated: 1488200725 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Gizmos/PostProcessLayer.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Gizmos/PostProcessLayer.png deleted file mode 100644 index c0a61de77..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Gizmos/PostProcessLayer.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Gizmos/PostProcessLayer.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Gizmos/PostProcessLayer.png.meta deleted file mode 100644 index ee62d089b..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Gizmos/PostProcessLayer.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 5f51e0b22aa8cb84b9f422576ce87ff9 -timeCreated: 1488200847 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 1 - aniso: 0 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 2 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 2048 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/PostProcessResources.asset b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/PostProcessResources.asset deleted file mode 100644 index bec76028b..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/PostProcessResources.asset +++ /dev/null @@ -1,138 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!114 &11400000 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 30f4b897495c7ad40b2d47143e02aaba, type: 3} - m_Name: PostProcessResources - m_EditorClassIdentifier: - blueNoise64: - - {fileID: 2800000, guid: 50b54341495978843a6f85583ed4417d, type: 3} - - {fileID: 2800000, guid: 3c2f1fb7e4b66e74191b7c328ada52d9, type: 3} - - {fileID: 2800000, guid: a469f920b21fc7c4fb5b950917ce2fb2, type: 3} - - {fileID: 2800000, guid: 373f9bf6b0841af4ebf26d25e4a3f4e2, type: 3} - - {fileID: 2800000, guid: 6fa5cf178eaaa5f42b820f636bb6e0bd, type: 3} - - {fileID: 2800000, guid: a1ae041906217ae44a774d4ca139af50, type: 3} - - {fileID: 2800000, guid: 79b86f3419b87f3429164a956da8cfab, type: 3} - - {fileID: 2800000, guid: 3ac02e7e783571c468f9c086d2384ba7, type: 3} - - {fileID: 2800000, guid: c55042318a938344ab23cd7f09dd0076, type: 3} - - {fileID: 2800000, guid: 71583cfd8899717428d5b1a95fa39cda, type: 3} - - {fileID: 2800000, guid: afe1e502240079342a0a980484b6da8b, type: 3} - - {fileID: 2800000, guid: 771903fe7b4674445829e52e91cff019, type: 3} - - {fileID: 2800000, guid: 980acadb960f8424c94307ec0e585b4e, type: 3} - - {fileID: 2800000, guid: 68613e6a221be1a4b9f31d7fa1c2d1bf, type: 3} - - {fileID: 2800000, guid: f6439b54b28f3884eb67579dec0b6f21, type: 3} - - {fileID: 2800000, guid: 2ee161d8945169243b5698fec114e1b7, type: 3} - - {fileID: 2800000, guid: 153f7d6dfbe713d4884df0f1e243ba92, type: 3} - - {fileID: 2800000, guid: bf95b6fdc179b0e4f890c841406193fc, type: 3} - - {fileID: 2800000, guid: 74aca53eb7273624baffc2bf5e5cc173, type: 3} - - {fileID: 2800000, guid: 729a3ae164bcb3b4380459386adcf331, type: 3} - - {fileID: 2800000, guid: 6dda07f1420a968449cf4c6620c44d9f, type: 3} - - {fileID: 2800000, guid: b7f000750830ddb4bbc80065b9314ce9, type: 3} - - {fileID: 2800000, guid: df01d03f056c6f445b4b8a0ae054207c, type: 3} - - {fileID: 2800000, guid: bfe953600e8fb1849a804ee08ace7b4c, type: 3} - - {fileID: 2800000, guid: 32c6a5f7143b86c44bd5cdee2ff3f8ad, type: 3} - - {fileID: 2800000, guid: f4b8ab78b57749d4e96d36f6d8a395d0, type: 3} - - {fileID: 2800000, guid: 09f6c01f98a3ded4daf1afc52a3c260f, type: 3} - - {fileID: 2800000, guid: bdd06fb88ef36ed4a85dd506352c2d80, type: 3} - - {fileID: 2800000, guid: 02c0a84bd64c6f044954d8bde9b46ec8, type: 3} - - {fileID: 2800000, guid: aa80dc44aa4fe4c43bb9d51d90cf2958, type: 3} - - {fileID: 2800000, guid: 0fa10b21877c61b4db40ba5708815f81, type: 3} - - {fileID: 2800000, guid: 6b0a189df0bd4d5448eaefb4e673ace8, type: 3} - - {fileID: 2800000, guid: 87a5e40cc271ea648b583616f6ebe7fe, type: 3} - - {fileID: 2800000, guid: b71bb466b71fd13449dd736f63caeb67, type: 3} - - {fileID: 2800000, guid: 319b8e66db3faa4438cf6982e9c89b2f, type: 3} - - {fileID: 2800000, guid: 0a79c155edf9b2d429d4736abee5acdb, type: 3} - - {fileID: 2800000, guid: 351e95d0e20a54849bd4ce5f9b498934, type: 3} - - {fileID: 2800000, guid: 1d6958e30e40a254dbe5a54c573eeb3c, type: 3} - - {fileID: 2800000, guid: 9660a4ca1ca8425408ac25c641932977, type: 3} - - {fileID: 2800000, guid: 547dbd5f858c74047ba3f213e4408307, type: 3} - - {fileID: 2800000, guid: 1a9ce5640cde5934aae0022f020464a6, type: 3} - - {fileID: 2800000, guid: cd9006dc442cc244e89b3f492384d46a, type: 3} - - {fileID: 2800000, guid: b266511438fae724f9d3ce6bd26583e8, type: 3} - - {fileID: 2800000, guid: 71bc1b6b66e8b784b972199b7e90204e, type: 3} - - {fileID: 2800000, guid: 15e54aa23a938444389469d53765d741, type: 3} - - {fileID: 2800000, guid: b9960364038cbfa4aa49d7b2032d3110, type: 3} - - {fileID: 2800000, guid: 8ecbbcae4cc747a4abbc4adce795d25e, type: 3} - - {fileID: 2800000, guid: 1378a33cdd085d64c9da863d2484ff21, type: 3} - - {fileID: 2800000, guid: aff59c63d25d43f4c938f248837c30fb, type: 3} - - {fileID: 2800000, guid: 3f7c3687170b90e4a8d2ee6b142670f4, type: 3} - - {fileID: 2800000, guid: d8c290e38ff0425409d0ae6a98c95e41, type: 3} - - {fileID: 2800000, guid: d5a51525b27e3ee4aadbeb39cbcf0750, type: 3} - - {fileID: 2800000, guid: d2e8e90fac2e6a341a38e1c3963c218d, type: 3} - - {fileID: 2800000, guid: c94b57b5a32a22d43ade66e09f6a4bd2, type: 3} - - {fileID: 2800000, guid: 936dea238abb0864ab3985a995e16a29, type: 3} - - {fileID: 2800000, guid: 5e542d0126a2c7848b66bffc428905fd, type: 3} - - {fileID: 2800000, guid: 70f23eaf7d8ae9147aa542d20e93733b, type: 3} - - {fileID: 2800000, guid: e138166e7a7c70f49943be7edda35d35, type: 3} - - {fileID: 2800000, guid: 85a45a6d8b2ffb84987d2b028ecfb220, type: 3} - - {fileID: 2800000, guid: d96974690c77f50489eb60ec84bd8dac, type: 3} - - {fileID: 2800000, guid: 404fa8def46b1c447817e1ebdaa7144e, type: 3} - - {fileID: 2800000, guid: 119591e0bb084e848835d237546b3882, type: 3} - - {fileID: 2800000, guid: a03c400b0e3959f428ee99dfc6cfc263, type: 3} - - {fileID: 2800000, guid: 4a11d65ce13d5f542a0ff136cc2f3fba, type: 3} - blueNoise256: - - {fileID: 2800000, guid: 6017f374382d64245a0a4aab668e6f38, type: 3} - - {fileID: 2800000, guid: 0f8fa14b3731cda4e947062e734d5e1e, type: 3} - - {fileID: 2800000, guid: 1abfe0e165ca1e9428b455ffc9a2d9ef, type: 3} - - {fileID: 2800000, guid: c072b653e98a06e40857d76ca8c7eecd, type: 3} - - {fileID: 2800000, guid: b52d5033b68309943a2386c270a90f44, type: 3} - - {fileID: 2800000, guid: acde5141d5f4f7a4188394bd52c4dc38, type: 3} - - {fileID: 2800000, guid: 999434725cbc2be4eb54043b36efd4a8, type: 3} - - {fileID: 2800000, guid: 70d0a1182b29d6347ac70374c3593bba, type: 3} - smaaLuts: - area: {fileID: 2800000, guid: 73ec4ae984a0a0f44a2be737e41a6f2f, type: 3} - search: {fileID: 2800000, guid: d99701099481a2f489610e977df6dcbc, type: 3} - shaders: - bloom: {fileID: 4800000, guid: c1e1d3119c6fd4646aea0b4b74cacc1a, type: 3} - copy: {fileID: 4800000, guid: cdbdb71de5f9c454b980f6d0e87f0afb, type: 3} - copyStd: {fileID: 4800000, guid: 4bf4cff0d0bac3d43894e2e8839feb40, type: 3} - copyStdFromTexArray: {fileID: 4800000, guid: 02d2da9bc88d25c4d878c1ed4e0b3854, - type: 3} - copyStdFromDoubleWide: {fileID: 4800000, guid: e8ce9961912f3214586fe8709b9012c1, - type: 3} - discardAlpha: {fileID: 4800000, guid: 5ab0816423f0dfe45841cab3b05ec9ef, type: 3} - depthOfField: {fileID: 4800000, guid: 0ef78d24e85a44f4da9d5b5eaa00e50b, type: 3} - finalPass: {fileID: 4800000, guid: f75014305794b3948a3c6d5ccd550e05, type: 3} - grainBaker: {fileID: 4800000, guid: 0d8afcb51cc9f0349a6d190da929b838, type: 3} - motionBlur: {fileID: 4800000, guid: 2c459b89a7c8b1a4fbefe0d81341651c, type: 3} - temporalAntialiasing: {fileID: 4800000, guid: 51bcf79c50dc92e47ba87821b61100c3, - type: 3} - subpixelMorphologicalAntialiasing: {fileID: 4800000, guid: 81af42a93ade3dd46a9b583d4eec76d6, - type: 3} - texture2dLerp: {fileID: 4800000, guid: 34a819c9e33402547a81619693adc8d5, type: 3} - uber: {fileID: 4800000, guid: 382151503e2a43a4ebb7366d1632731d, type: 3} - lut2DBaker: {fileID: 4800000, guid: 7ad194cbe7d006f4bace915156972026, type: 3} - lightMeter: {fileID: 4800000, guid: b34a29e523cb9d545881e193a079f2df, type: 3} - gammaHistogram: {fileID: 4800000, guid: f7ea35cfb33fcad4ab8f2429ec103bef, type: 3} - waveform: {fileID: 4800000, guid: 3020ac7ece79a7f4eb789a236f8bd6c5, type: 3} - vectorscope: {fileID: 4800000, guid: a71093f2a4fe26a40805c22739e10e4a, type: 3} - debugOverlays: {fileID: 4800000, guid: b958ad1c92bd3d64c9e61318b8681dab, type: 3} - deferredFog: {fileID: 4800000, guid: 4117fce9491711c4094d33a048e36e73, type: 3} - scalableAO: {fileID: 4800000, guid: d7640629310e79646af0f46eb55ae466, type: 3} - multiScaleAO: {fileID: 4800000, guid: 67f9497810829eb4791ec19e95781e51, type: 3} - screenSpaceReflections: {fileID: 4800000, guid: f997a3dc9254c44459323cced085150c, - type: 3} - computeShaders: - autoExposure: {fileID: 7200000, guid: 34845e0ca016b7448842e965db5890a5, type: 3} - exposureHistogram: {fileID: 7200000, guid: 8c2fcbdf9bc58664f89917f7b9d79501, type: 3} - lut3DBaker: {fileID: 7200000, guid: 42496b74c071f5749950ca1abe33e945, type: 3} - texture3dLerp: {fileID: 7200000, guid: 31e9175024adfd44aba2530ff9b77494, type: 3} - gammaHistogram: {fileID: 7200000, guid: 18183ebfeeab97749b43e38b928604a7, type: 3} - waveform: {fileID: 7200000, guid: 92c63830cd50c0b4fbb8233613839958, type: 3} - vectorscope: {fileID: 7200000, guid: e1efca7c36fd01840aae0dd10378de5c, type: 3} - multiScaleAODownsample1: {fileID: 7200000, guid: 4c63bc487e6c29a4a99f85a6c47b292b, - type: 3} - multiScaleAODownsample2: {fileID: 7200000, guid: e4d3e4779e48a374f91d48d4c0aedb7b, - type: 3} - multiScaleAORender: {fileID: 7200000, guid: 34a460e8a2e66c243a9c12024e5a798d, - type: 3} - multiScaleAOUpsample: {fileID: 7200000, guid: 600d6212b59bb40409d19d750b5fd1e9, - type: 3} - gaussianDownsample: {fileID: 7200000, guid: 6dba4103d23a7904fbc49099355aff3e, - type: 3} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/PostProcessResources.asset.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/PostProcessResources.asset.meta deleted file mode 100644 index b8f940c24..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/PostProcessResources.asset.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: d82512f9c8e5d4a4d938b575d47f88d4 -timeCreated: 1493713586 -licenseType: Pro -NativeFormatImporter: - mainObjectFileID: 11400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime.meta deleted file mode 100644 index b58a1ac92..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 1bdda73de20b6a54592f998f94de3b64 -folderAsset: yes -timeCreated: 1484302934 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes.meta deleted file mode 100644 index b90a0f69b..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 18b9eca2f52e6624db241af91bab06c9 -folderAsset: yes -timeCreated: 1488204491 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/DisplayNameAttribute.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/DisplayNameAttribute.cs deleted file mode 100644 index 1045b6b23..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/DisplayNameAttribute.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// Use this attribute to change the label of a field displayed in the inspector. - /// - [AttributeUsage(AttributeTargets.Field, AllowMultiple = false)] - public sealed class DisplayNameAttribute : Attribute - { - /// - /// The label displayed in the inspector. - /// - public readonly string displayName; - - /// - /// Creates a new attribute. - /// - /// The label to display in the inspector - public DisplayNameAttribute(string displayName) - { - this.displayName = displayName; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/DisplayNameAttribute.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/DisplayNameAttribute.cs.meta deleted file mode 100644 index 5422d6902..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/DisplayNameAttribute.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 912e288507f1e724492c7c721fa1deb8 -timeCreated: 1493047701 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/MaxAttribute.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/MaxAttribute.cs deleted file mode 100644 index 826879f33..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/MaxAttribute.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// Use this attribute to clamp floating point values to a maximum value in the inspector. - /// - [AttributeUsage(AttributeTargets.Field, AllowMultiple = false)] - public sealed class MaxAttribute : Attribute - { - /// - /// The maximum value the field will be clamped to. - /// - public readonly float max; - - /// - /// Creates a new attribute. - /// - /// The maximum value the field will be clamped to - public MaxAttribute(float max) - { - this.max = max; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/MaxAttribute.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/MaxAttribute.cs.meta deleted file mode 100644 index 06fe9c2d7..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/MaxAttribute.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 8c72b20f77adb59439f8eed4f25a950a -timeCreated: 1493113243 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/MinAttribute.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/MinAttribute.cs deleted file mode 100644 index f8d893c33..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/MinAttribute.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// Use this attribute to clamp floating point values to a minimum value in the inspector. - /// - [AttributeUsage(AttributeTargets.Field, AllowMultiple = false)] - public sealed class MinAttribute : Attribute - { - /// - /// The minimum value the field will be clamped to. - /// - public readonly float min; - - /// - /// Creates a new attribute. - /// - /// The minimum value the field will be clamped to - public MinAttribute(float min) - { - this.min = min; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/MinAttribute.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/MinAttribute.cs.meta deleted file mode 100644 index 93d3ab3cd..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/MinAttribute.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 63007e9c3f71cad46a59f223a8b32d46 -timeCreated: 1493113232 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/MinMaxAttribute.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/MinMaxAttribute.cs deleted file mode 100644 index aa5d087d2..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/MinMaxAttribute.cs +++ /dev/null @@ -1,32 +0,0 @@ -using System; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// Use this attribute to specify a range between a min and a max value. - /// - [AttributeUsage(AttributeTargets.Field, AllowMultiple = false)] - public sealed class MinMaxAttribute : Attribute - { - /// - /// The minimum limit of the user defined range. - /// - public readonly float min; - - /// - /// The maximum limit of the user defined range. - /// - public readonly float max; - - /// - /// Creates a new attribute. - /// - /// The minimum limit of the user defined range - /// The maximum limit of the user defined range - public MinMaxAttribute(float min, float max) - { - this.min = min; - this.max = max; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/MinMaxAttribute.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/MinMaxAttribute.cs.meta deleted file mode 100644 index a0e584893..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/MinMaxAttribute.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 1d2cae9d8c54de04fab072666ddd1e57 -timeCreated: 1493113280 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/PostProcessAttribute.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/PostProcessAttribute.cs deleted file mode 100644 index 021924961..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/PostProcessAttribute.cs +++ /dev/null @@ -1,60 +0,0 @@ -using System; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// Use this attribute to associate a to a - /// type. - /// - /// - /// - [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] - public sealed class PostProcessAttribute : Attribute - { - /// - /// The renderer type to associate with a . - /// - public readonly Type renderer; - - /// - /// The injection point for the effect. - /// - public readonly PostProcessEvent eventType; - - /// - /// The menu item name to set for the effect. You can use a `/` character to add sub-menus. - /// - public readonly string menuItem; - - /// - /// Should this effect be allowed in the Scene View? - /// - public readonly bool allowInSceneView; - - internal readonly bool builtinEffect; - - /// - /// Creates a new attribute. - /// - /// The renderer type to associate with a - /// The injection point for the effect - /// The menu item name to set for the effect. You can use a `/` character to add sub-menus. - /// Should this effect be allowed in the Scene View? - public PostProcessAttribute(Type renderer, PostProcessEvent eventType, string menuItem, bool allowInSceneView = true) - { - this.renderer = renderer; - this.eventType = eventType; - this.menuItem = menuItem; - this.allowInSceneView = allowInSceneView; - builtinEffect = false; - } - - internal PostProcessAttribute(Type renderer, string menuItem, bool allowInSceneView = true) - { - this.renderer = renderer; - this.menuItem = menuItem; - this.allowInSceneView = allowInSceneView; - builtinEffect = true; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/PostProcessAttribute.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/PostProcessAttribute.cs.meta deleted file mode 100644 index f189e4c72..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/PostProcessAttribute.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 28cff9aae95df994e98129a9b35627de -timeCreated: 1488204519 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/TrackballAttribute.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/TrackballAttribute.cs deleted file mode 100644 index f7c2a3157..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/TrackballAttribute.cs +++ /dev/null @@ -1,52 +0,0 @@ -using System; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// Use this attribute to draw a trackball in the inspector. - /// - [AttributeUsage(AttributeTargets.Field, AllowMultiple = false)] - public sealed class TrackballAttribute : Attribute - { - /// - /// Trackball modes. These are used to compute and display pre-filtered trackball vales in - /// the inspector. - /// - public enum Mode - { - /// - /// Don't display pre-filtered values. - /// - None, - - /// - /// Display pre-filtered lift values. - /// - Lift, - - /// - /// Display pre-filtered gamma values. - /// - Gamma, - - /// - /// Display pre-filtered grain values. - /// - Gain - } - - /// - /// The mode used to display pre-filtered values in the inspector. - /// - public readonly Mode mode; - - /// - /// Creates a new attribute. - /// - /// A mode used to display pre-filtered values in the inspector - public TrackballAttribute(Mode mode) - { - this.mode = mode; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/TrackballAttribute.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/TrackballAttribute.cs.meta deleted file mode 100644 index 5efefc9f5..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Attributes/TrackballAttribute.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 44788f6e7bbf9174181bfe4689e66131 -timeCreated: 1493900877 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects.meta deleted file mode 100644 index 01457a509..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: d220742cb204f8e4e9fe5f7b1efa7b54 -folderAsset: yes -timeCreated: 1487844780 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/AmbientOcclusion.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/AmbientOcclusion.cs deleted file mode 100644 index 9996f1d5f..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/AmbientOcclusion.cs +++ /dev/null @@ -1,268 +0,0 @@ -using System; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// Ambient occlusion modes. - /// - public enum AmbientOcclusionMode - { - /// - /// A standard implementation of ambient obscurance that works on non modern platforms. If - /// you target a compute-enabled platform we recommend that you use - /// instead. - /// - ScalableAmbientObscurance, - - /// - /// A modern version of ambient occlusion heavily optimized for consoles and desktop - /// platforms. - /// - MultiScaleVolumetricObscurance - } - - /// - /// Quality settings for . - /// - public enum AmbientOcclusionQuality - { - /// - /// 4 samples + downsampling. - /// - Lowest, - - /// - /// 6 samples + downsampling. - /// - Low, - - /// - /// 10 samples + downsampling. - /// - Medium, - - /// - /// 8 samples. - /// - High, - - /// - /// 12 samples. - /// - Ultra - } - - /// - /// A volume parameter holding a value. - /// - [Serializable] - public sealed class AmbientOcclusionModeParameter : ParameterOverride {} - - /// - /// A volume parameter holding a value. - /// - [Serializable] - public sealed class AmbientOcclusionQualityParameter : ParameterOverride {} - - /// - /// This class holds settings for the Ambient Occlusion effect. - /// - [Serializable] - [PostProcess(typeof(AmbientOcclusionRenderer), "Unity/Ambient Occlusion")] - public sealed class AmbientOcclusion : PostProcessEffectSettings - { - // Shared parameters - - /// - /// The ambient occlusion method to use. - /// - [Tooltip("The ambient occlusion method to use. \"Multi Scale Volumetric Obscurance\" is higher quality and faster on desktop & console platforms but requires compute shader support.")] - - public AmbientOcclusionModeParameter mode = new AmbientOcclusionModeParameter { value = AmbientOcclusionMode.MultiScaleVolumetricObscurance }; - - /// - /// The degree of darkness added by ambient occlusion. - /// - [Range(0f, 4f), Tooltip("The degree of darkness added by ambient occlusion. Higher values produce darker areas.")] - public FloatParameter intensity = new FloatParameter { value = 0f }; - - /// - /// A custom color to use for the ambient occlusion. - /// - [ColorUsage(false), Tooltip("The custom color to use for the ambient occlusion. The default is black.")] - - public ColorParameter color = new ColorParameter { value = Color.black }; - - /// - /// Only affects ambient lighting. This mode is only available with the Deferred rendering - /// path and HDR rendering. Objects rendered with the Forward rendering path won't get any - /// ambient occlusion. - /// - [Tooltip("Check this box to mark this Volume as to only affect ambient lighting. This mode is only available with the Deferred rendering path and HDR rendering. Objects rendered with the Forward rendering path won't get any ambient occlusion.")] - public BoolParameter ambientOnly = new BoolParameter { value = true }; - - // MSVO-only parameters - - /// - /// The tolerance of the noise filter to changes in the depth pyramid. - /// - [Range(-8f, 0f)] - public FloatParameter noiseFilterTolerance = new FloatParameter { value = 0f }; // Hidden - - /// - /// The tolerance of the bilateral blur filter to depth changes. - /// - [Range(-8f, -1f)] - public FloatParameter blurTolerance = new FloatParameter { value = -4.6f }; // Hidden - - /// - /// The tolerance of the upsampling pass to depth changes. - /// - [Range(-12f, -1f)] - public FloatParameter upsampleTolerance = new FloatParameter { value = -12f }; // Hidden - - /// - /// Modifies the thickness of occluders. This increases dark areas but also introduces dark - /// halo around objects. - /// - [Range(1f, 10f), Tooltip("This modifies the thickness of occluders. It increases the size of dark areas and also introduces a dark halo around objects.")] - public FloatParameter thicknessModifier = new FloatParameter { value = 1f }; - - // HDRP-only parameters - - /// - /// Modifies he influence of direct lighting on ambient occlusion. This is only used in the - /// HD Render Pipeline currently. - /// - [Range(0f, 1f), Tooltip("Modifies the influence of direct lighting on ambient occlusion.")] - public FloatParameter directLightingStrength = new FloatParameter { value = 0f }; - - // SAO-only parameters - /// - /// Radius of sample points, which affects extent of darkened areas. - /// - [Tooltip("The radius of sample points. This affects the size of darkened areas.")] - public FloatParameter radius = new FloatParameter { value = 0.25f }; - - /// - /// The number of sample points, which affects quality and performance. Lowest, Low & Medium - /// passes are downsampled. High and Ultra are not and should only be used on high-end - /// hardware. - /// - [Tooltip("The number of sample points. This affects both quality and performance. For \"Lowest\", \"Low\", and \"Medium\", passes are downsampled. For \"High\" and \"Ultra\", they are not and therefore you should only \"High\" and \"Ultra\" on high-end hardware.")] - public AmbientOcclusionQualityParameter quality = new AmbientOcclusionQualityParameter { value = AmbientOcclusionQuality.Medium }; - - // SRPs can call this method without a context set (see HDRP). - // We need a better way to handle this than checking for a null context, context should - // never be null. - /// - public override bool IsEnabledAndSupported(PostProcessRenderContext context) - { - bool state = enabled.value - && intensity.value > 0f; - - if (mode.value == AmbientOcclusionMode.ScalableAmbientObscurance) - { - state &= !RuntimeUtilities.scriptableRenderPipelineActive; - - if (context != null) - { - state &= context.resources.shaders.scalableAO - && context.resources.shaders.scalableAO.isSupported; - } - } - else if (mode.value == AmbientOcclusionMode.MultiScaleVolumetricObscurance) - { -#if UNITY_2017_1_OR_NEWER - if (context != null) - { - state &= context.resources.shaders.multiScaleAO - && context.resources.shaders.multiScaleAO.isSupported - && context.resources.computeShaders.multiScaleAODownsample1 - && context.resources.computeShaders.multiScaleAODownsample2 - && context.resources.computeShaders.multiScaleAORender - && context.resources.computeShaders.multiScaleAOUpsample; - } - - state &= SystemInfo.supportsComputeShaders - && !RuntimeUtilities.isAndroidOpenGL - && RenderTextureFormat.RFloat.IsSupported() - && RenderTextureFormat.RHalf.IsSupported() - && RenderTextureFormat.R8.IsSupported(); -#else - state = false; -#endif - } - - return state; - } - } - - internal interface IAmbientOcclusionMethod - { - DepthTextureMode GetCameraFlags(); - void RenderAfterOpaque(PostProcessRenderContext context); - void RenderAmbientOnly(PostProcessRenderContext context); - void CompositeAmbientOnly(PostProcessRenderContext context); - void Release(); - } - -#if UNITY_2017_1_OR_NEWER - [UnityEngine.Scripting.Preserve] -#endif - internal sealed class AmbientOcclusionRenderer : PostProcessEffectRenderer - { - IAmbientOcclusionMethod[] m_Methods; - - public override void Init() - { - if (m_Methods == null) - { - m_Methods = new IAmbientOcclusionMethod[] - { - new ScalableAO(settings), - new MultiScaleVO(settings), - }; - } - } - - public bool IsAmbientOnly(PostProcessRenderContext context) - { - var camera = context.camera; - return settings.ambientOnly.value - && camera.actualRenderingPath == RenderingPath.DeferredShading - && camera.allowHDR; - } - - public IAmbientOcclusionMethod Get() - { - return m_Methods[(int)settings.mode.value]; - } - - public override DepthTextureMode GetCameraFlags() - { - return Get().GetCameraFlags(); - } - - public override void Release() - { - foreach (var m in m_Methods) - m.Release(); - } - - public ScalableAO GetScalableAO() - { - return (ScalableAO)m_Methods[(int)AmbientOcclusionMode.ScalableAmbientObscurance]; - } - - public MultiScaleVO GetMultiScaleVO() - { - return (MultiScaleVO)m_Methods[(int)AmbientOcclusionMode.MultiScaleVolumetricObscurance]; - } - - // Unused - public override void Render(PostProcessRenderContext context) - { - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/AmbientOcclusion.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/AmbientOcclusion.cs.meta deleted file mode 100644 index 940bb4bf0..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/AmbientOcclusion.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: c1cb7e9e120078f43bce4f0b1be547a7 -timeCreated: 1498493415 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/AutoExposure.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/AutoExposure.cs deleted file mode 100644 index 0a02c8c70..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/AutoExposure.cs +++ /dev/null @@ -1,199 +0,0 @@ -using System; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// Eye adaptation modes. - /// - public enum EyeAdaptation - { - /// - /// Progressive (smooth) eye adaptation. - /// - Progressive, - - /// - /// Fixed (instant) eye adaptation. - /// - Fixed - } - - /// - /// A volume parameter holding a value. - /// - [Serializable] - public sealed class EyeAdaptationParameter : ParameterOverride {} - - /// - /// This class holds settings for the Auto Exposure effect. - /// - [Serializable] - [PostProcess(typeof(AutoExposureRenderer), "Unity/Auto Exposure")] - public sealed class AutoExposure : PostProcessEffectSettings - { - /// - /// These values are the lower and upper percentages of the histogram that will be used to - /// find a stable average luminance. Values outside of this range will be discarded and wont - /// contribute to the average luminance. - /// - [MinMax(1f, 99f), DisplayName("Filtering (%)"), Tooltip("Filters the bright and dark parts of the histogram when computing the average luminance. This is to avoid very dark pixels and very bright pixels from contributing to the auto exposure. Unit is in percent.")] - public Vector2Parameter filtering = new Vector2Parameter { value = new Vector2(50f, 95f) }; - - /// - /// Minimum average luminance to consider for auto exposure (in EV). - /// - [Range(LogHistogram.rangeMin, LogHistogram.rangeMax), DisplayName("Minimum (EV)"), Tooltip("Minimum average luminance to consider for auto exposure. Unit is EV.")] - public FloatParameter minLuminance = new FloatParameter { value = 0f }; - - /// - /// Maximum average luminance to consider for auto exposure (in EV). - /// - [Range(LogHistogram.rangeMin, LogHistogram.rangeMax), DisplayName("Maximum (EV)"), Tooltip("Maximum average luminance to consider for auto exposure. Unit is EV.")] - public FloatParameter maxLuminance = new FloatParameter { value = 0f }; - - /// - /// Middle-grey value. Use this to compensate the global exposure of the scene. - /// - [Min(0f), DisplayName("Exposure Compensation"), Tooltip("Use this to scale the global exposure of the scene.")] - public FloatParameter keyValue = new FloatParameter { value = 1f }; - - /// - /// The type of eye adaptation to use. - /// - [DisplayName("Type"), Tooltip("Use \"Progressive\" if you want auto exposure to be animated. Use \"Fixed\" otherwise.")] - public EyeAdaptationParameter eyeAdaptation = new EyeAdaptationParameter { value = EyeAdaptation.Progressive }; - - /// - /// The adaptation speed from a dark to a light environment. - /// - [Min(0f), Tooltip("Adaptation speed from a dark to a light environment.")] - public FloatParameter speedUp = new FloatParameter { value = 2f }; - - /// - /// The adaptation speed from a light to a dark environment. - /// - [Min(0f), Tooltip("Adaptation speed from a light to a dark environment.")] - public FloatParameter speedDown = new FloatParameter { value = 1f }; - - /// - public override bool IsEnabledAndSupported(PostProcessRenderContext context) - { - return enabled.value - && SystemInfo.supportsComputeShaders - && !RuntimeUtilities.isAndroidOpenGL - && RenderTextureFormat.RFloat.IsSupported() - && context.resources.computeShaders.autoExposure - && context.resources.computeShaders.exposureHistogram; - } - } - -#if UNITY_2017_1_OR_NEWER - [UnityEngine.Scripting.Preserve] -#endif - internal sealed class AutoExposureRenderer : PostProcessEffectRenderer - { - const int k_NumEyes = 2; - const int k_NumAutoExposureTextures = 2; - - readonly RenderTexture[][] m_AutoExposurePool = new RenderTexture[k_NumEyes][]; - int[] m_AutoExposurePingPong = new int[k_NumEyes]; - RenderTexture m_CurrentAutoExposure; - - public AutoExposureRenderer() - { - for (int eye = 0; eye < k_NumEyes; eye++) - { - m_AutoExposurePool[eye] = new RenderTexture[k_NumAutoExposureTextures]; - m_AutoExposurePingPong[eye] = 0; - } - } - - void CheckTexture(int eye, int id) - { - if (m_AutoExposurePool[eye][id] == null || !m_AutoExposurePool[eye][id].IsCreated()) - { - m_AutoExposurePool[eye][id] = new RenderTexture(1, 1, 0, RenderTextureFormat.RFloat) { enableRandomWrite = true }; - m_AutoExposurePool[eye][id].Create(); - } - } - - public override void Render(PostProcessRenderContext context) - { - var cmd = context.command; - cmd.BeginSample("AutoExposureLookup"); - - // Prepare autoExpo texture pool - CheckTexture(context.xrActiveEye, 0); - CheckTexture(context.xrActiveEye, 1); - - // Make sure filtering values are correct to avoid apocalyptic consequences - float lowPercent = settings.filtering.value.x; - float highPercent = settings.filtering.value.y; - const float kMinDelta = 1e-2f; - highPercent = Mathf.Clamp(highPercent, 1f + kMinDelta, 99f); - lowPercent = Mathf.Clamp(lowPercent, 1f, highPercent - kMinDelta); - - // Clamp min/max adaptation values as well - float minLum = settings.minLuminance.value; - float maxLum = settings.maxLuminance.value; - settings.minLuminance.value = Mathf.Min(minLum, maxLum); - settings.maxLuminance.value = Mathf.Max(minLum, maxLum); - - // Compute average luminance & auto exposure - bool firstFrame = m_ResetHistory || !Application.isPlaying; - string adaptation = null; - - if (firstFrame || settings.eyeAdaptation.value == EyeAdaptation.Fixed) - adaptation = "KAutoExposureAvgLuminance_fixed"; - else - adaptation = "KAutoExposureAvgLuminance_progressive"; - - var compute = context.resources.computeShaders.autoExposure; - int kernel = compute.FindKernel(adaptation); - cmd.SetComputeBufferParam(compute, kernel, "_HistogramBuffer", context.logHistogram.data); - cmd.SetComputeVectorParam(compute, "_Params1", new Vector4(lowPercent * 0.01f, highPercent * 0.01f, RuntimeUtilities.Exp2(settings.minLuminance.value), RuntimeUtilities.Exp2(settings.maxLuminance.value))); - cmd.SetComputeVectorParam(compute, "_Params2", new Vector4(settings.speedDown.value, settings.speedUp.value, settings.keyValue.value, Time.deltaTime)); - cmd.SetComputeVectorParam(compute, "_ScaleOffsetRes", context.logHistogram.GetHistogramScaleOffsetRes(context)); - - if (firstFrame) - { - // We don't want eye adaptation when not in play mode because the GameView isn't - // animated, thus making it harder to tweak. Just use the final audo exposure value. - m_CurrentAutoExposure = m_AutoExposurePool[context.xrActiveEye][0]; - cmd.SetComputeTextureParam(compute, kernel, "_Destination", m_CurrentAutoExposure); - cmd.DispatchCompute(compute, kernel, 1, 1, 1); - - // Copy current exposure to the other pingpong target to avoid adapting from black - RuntimeUtilities.CopyTexture(cmd, m_AutoExposurePool[context.xrActiveEye][0], m_AutoExposurePool[context.xrActiveEye][1]); - m_ResetHistory = false; - } - else - { - int pp = m_AutoExposurePingPong[context.xrActiveEye]; - var src = m_AutoExposurePool[context.xrActiveEye][++pp % 2]; - var dst = m_AutoExposurePool[context.xrActiveEye][++pp % 2]; - - cmd.SetComputeTextureParam(compute, kernel, "_Source", src); - cmd.SetComputeTextureParam(compute, kernel, "_Destination", dst); - cmd.DispatchCompute(compute, kernel, 1, 1, 1); - - m_AutoExposurePingPong[context.xrActiveEye] = ++pp % 2; - m_CurrentAutoExposure = dst; - } - - cmd.EndSample("AutoExposureLookup"); - - context.autoExposureTexture = m_CurrentAutoExposure; - context.autoExposure = settings; - } - - public override void Release() - { - foreach (var rtEyeSet in m_AutoExposurePool) - { - foreach (var rt in rtEyeSet) - RuntimeUtilities.Destroy(rt); - } - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/AutoExposure.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/AutoExposure.cs.meta deleted file mode 100644 index 4ada827a2..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/AutoExposure.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: b3f6f3f7c722b4544b97e3c75840aa33 -timeCreated: 1491826543 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Bloom.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Bloom.cs deleted file mode 100644 index 49879a8b9..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Bloom.cs +++ /dev/null @@ -1,272 +0,0 @@ -using System; -using UnityEngine.Serialization; - -namespace UnityEngine.Rendering.PostProcessing -{ - // For now and by popular request, this bloom effect is geared toward artists so they have full - // control over how it looks at the expense of physical correctness. - // Eventually we will need a "true" natural bloom effect with proper energy conservation. - - /// - /// This class holds settings for the Bloom effect. - /// - [Serializable] - [PostProcess(typeof(BloomRenderer), "Unity/Bloom")] - public sealed class Bloom : PostProcessEffectSettings - { - /// - /// The strength of the bloom filter. - /// - [Min(0f), Tooltip("Strength of the bloom filter. Values higher than 1 will make bloom contribute more energy to the final render.")] - public FloatParameter intensity = new FloatParameter { value = 0f }; - - /// - /// Filters out pixels under this level of brightness. This value is expressed in - /// gamma-space. - /// - [Min(0f), Tooltip("Filters out pixels under this level of brightness. Value is in gamma-space.")] - public FloatParameter threshold = new FloatParameter { value = 1f }; - - /// - /// Makes transition between under/over-threshold gradual (0 = hard threshold, 1 = soft - /// threshold). - /// - [Range(0f, 1f), Tooltip("Makes transitions between under/over-threshold gradual. 0 for a hard threshold, 1 for a soft threshold).")] - public FloatParameter softKnee = new FloatParameter { value = 0.5f }; - - /// - /// Clamps pixels to control the bloom amount. This value is expressed in gamma-space. - /// - [Tooltip("Clamps pixels to control the bloom amount. Value is in gamma-space.")] - public FloatParameter clamp = new FloatParameter { value = 65472f }; - - /// - /// Changes extent of veiling effects in a screen resolution-independent fashion. For - /// maximum quality stick to integer values. Because this value changes the internal - /// iteration count, animating it isn't recommended as it may introduce small hiccups in - /// the perceived radius. - /// - [Range(1f, 10f), Tooltip("Changes the extent of veiling effects. For maximum quality, use integer values. Because this value changes the internal iteration count, You should not animating it as it may introduce issues with the perceived radius.")] - public FloatParameter diffusion = new FloatParameter { value = 7f }; - - /// - /// Distorts the bloom to give an anamorphic look. Negative values distort vertically, - /// positive values distort horizontally. - /// - [Range(-1f, 1f), Tooltip("Distorts the bloom to give an anamorphic look. Negative values distort vertically, positive values distort horizontally.")] - public FloatParameter anamorphicRatio = new FloatParameter { value = 0f }; - - /// - /// The tint of the Bloom filter. - /// -#if UNITY_2018_1_OR_NEWER - [ColorUsage(false, true), Tooltip("Global tint of the bloom filter.")] -#else - [ColorUsage(false, true, 0f, 8f, 0.125f, 3f), Tooltip("Global tint of the bloom filter.")] -#endif - public ColorParameter color = new ColorParameter { value = Color.white }; - - /// - /// Boost performances by lowering the effect quality. - /// - [FormerlySerializedAs("mobileOptimized")] - [Tooltip("Boost performance by lowering the effect quality. This settings is meant to be used on mobile and other low-end platforms but can also provide a nice performance boost on desktops and consoles.")] - public BoolParameter fastMode = new BoolParameter { value = false }; - - /// - /// The dirtiness texture to add smudges or dust to the lens. - /// - [Tooltip("The lens dirt texture used to add smudges or dust to the bloom effect."), DisplayName("Texture")] - public TextureParameter dirtTexture = new TextureParameter { value = null }; - - /// - /// The amount of lens dirtiness. - /// - [Min(0f), Tooltip("The intensity of the lens dirtiness."), DisplayName("Intensity")] - public FloatParameter dirtIntensity = new FloatParameter { value = 0f }; - - /// - public override bool IsEnabledAndSupported(PostProcessRenderContext context) - { - return enabled.value - && intensity.value > 0f; - } - } - -#if UNITY_2017_1_OR_NEWER - [UnityEngine.Scripting.Preserve] -#endif - internal sealed class BloomRenderer : PostProcessEffectRenderer - { - enum Pass - { - Prefilter13, - Prefilter4, - Downsample13, - Downsample4, - UpsampleTent, - UpsampleBox, - DebugOverlayThreshold, - DebugOverlayTent, - DebugOverlayBox - } - - // [down,up] - Level[] m_Pyramid; - const int k_MaxPyramidSize = 16; // Just to make sure we handle 64k screens... Future-proof! - - struct Level - { - internal int down; - internal int up; - } - - public override void Init() - { - m_Pyramid = new Level[k_MaxPyramidSize]; - - for (int i = 0; i < k_MaxPyramidSize; i++) - { - m_Pyramid[i] = new Level - { - down = Shader.PropertyToID("_BloomMipDown" + i), - up = Shader.PropertyToID("_BloomMipUp" + i) - }; - } - } - - public override void Render(PostProcessRenderContext context) - { - var cmd = context.command; - cmd.BeginSample("BloomPyramid"); - - var sheet = context.propertySheets.Get(context.resources.shaders.bloom); - - // Apply auto exposure adjustment in the prefiltering pass - sheet.properties.SetTexture(ShaderIDs.AutoExposureTex, context.autoExposureTexture); - - // Negative anamorphic ratio values distort vertically - positive is horizontal - float ratio = Mathf.Clamp(settings.anamorphicRatio, -1, 1); - float rw = ratio < 0 ? -ratio : 0f; - float rh = ratio > 0 ? ratio : 0f; - - // Do bloom on a half-res buffer, full-res doesn't bring much and kills performances on - // fillrate limited platforms - int tw = Mathf.FloorToInt(context.screenWidth / (2f - rw)); - int th = Mathf.FloorToInt(context.screenHeight / (2f - rh)); - bool singlePassDoubleWide = (context.stereoActive && (context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) && (context.camera.stereoTargetEye == StereoTargetEyeMask.Both)); - int tw_stereo = singlePassDoubleWide ? tw * 2 : tw; - - // Determine the iteration count - int s = Mathf.Max(tw, th); - float logs = Mathf.Log(s, 2f) + Mathf.Min(settings.diffusion.value, 10f) - 10f; - int logs_i = Mathf.FloorToInt(logs); - int iterations = Mathf.Clamp(logs_i, 1, k_MaxPyramidSize); - float sampleScale = 0.5f + logs - logs_i; - sheet.properties.SetFloat(ShaderIDs.SampleScale, sampleScale); - - // Prefiltering parameters - float lthresh = Mathf.GammaToLinearSpace(settings.threshold.value); - float knee = lthresh * settings.softKnee.value + 1e-5f; - var threshold = new Vector4(lthresh, lthresh - knee, knee * 2f, 0.25f / knee); - sheet.properties.SetVector(ShaderIDs.Threshold, threshold); - float lclamp = Mathf.GammaToLinearSpace(settings.clamp.value); - sheet.properties.SetVector(ShaderIDs.Params, new Vector4(lclamp, 0f, 0f, 0f)); - - int qualityOffset = settings.fastMode ? 1 : 0; - - // Downsample - var lastDown = context.source; - for (int i = 0; i < iterations; i++) - { - int mipDown = m_Pyramid[i].down; - int mipUp = m_Pyramid[i].up; - int pass = i == 0 - ? (int)Pass.Prefilter13 + qualityOffset - : (int)Pass.Downsample13 + qualityOffset; - - context.GetScreenSpaceTemporaryRT(cmd, mipDown, 0, context.sourceFormat, RenderTextureReadWrite.Default, FilterMode.Bilinear, tw_stereo, th); - context.GetScreenSpaceTemporaryRT(cmd, mipUp, 0, context.sourceFormat, RenderTextureReadWrite.Default, FilterMode.Bilinear, tw_stereo, th); - cmd.BlitFullscreenTriangle(lastDown, mipDown, sheet, pass); - - lastDown = mipDown; - tw_stereo = (singlePassDoubleWide && ((tw_stereo / 2) % 2 > 0)) ? 1 + tw_stereo / 2 : tw_stereo / 2; - tw_stereo = Mathf.Max(tw_stereo, 1); - th = Mathf.Max(th / 2, 1); - } - - // Upsample - int lastUp = m_Pyramid[iterations - 1].down; - for (int i = iterations - 2; i >= 0; i--) - { - int mipDown = m_Pyramid[i].down; - int mipUp = m_Pyramid[i].up; - cmd.SetGlobalTexture(ShaderIDs.BloomTex, mipDown); - cmd.BlitFullscreenTriangle(lastUp, mipUp, sheet, (int)Pass.UpsampleTent + qualityOffset); - lastUp = mipUp; - } - - var linearColor = settings.color.value.linear; - float intensity = RuntimeUtilities.Exp2(settings.intensity.value / 10f) - 1f; - var shaderSettings = new Vector4(sampleScale, intensity, settings.dirtIntensity.value, iterations); - - // Debug overlays - if (context.IsDebugOverlayEnabled(DebugOverlay.BloomThreshold)) - { - context.PushDebugOverlay(cmd, context.source, sheet, (int)Pass.DebugOverlayThreshold); - } - else if (context.IsDebugOverlayEnabled(DebugOverlay.BloomBuffer)) - { - sheet.properties.SetVector(ShaderIDs.ColorIntensity, new Vector4(linearColor.r, linearColor.g, linearColor.b, intensity)); - context.PushDebugOverlay(cmd, m_Pyramid[0].up, sheet, (int)Pass.DebugOverlayTent + qualityOffset); - } - - // Lens dirtiness - // Keep the aspect ratio correct & center the dirt texture, we don't want it to be - // stretched or squashed - var dirtTexture = settings.dirtTexture.value == null - ? RuntimeUtilities.blackTexture - : settings.dirtTexture.value; - - var dirtRatio = (float)dirtTexture.width / (float)dirtTexture.height; - var screenRatio = (float)context.screenWidth / (float)context.screenHeight; - var dirtTileOffset = new Vector4(1f, 1f, 0f, 0f); - - if (dirtRatio > screenRatio) - { - dirtTileOffset.x = screenRatio / dirtRatio; - dirtTileOffset.z = (1f - dirtTileOffset.x) * 0.5f; - } - else if (screenRatio > dirtRatio) - { - dirtTileOffset.y = dirtRatio / screenRatio; - dirtTileOffset.w = (1f - dirtTileOffset.y) * 0.5f; - } - - // Shader properties - var uberSheet = context.uberSheet; - if (settings.fastMode) - uberSheet.EnableKeyword("BLOOM_LOW"); - else - uberSheet.EnableKeyword("BLOOM"); - uberSheet.properties.SetVector(ShaderIDs.Bloom_DirtTileOffset, dirtTileOffset); - uberSheet.properties.SetVector(ShaderIDs.Bloom_Settings, shaderSettings); - uberSheet.properties.SetColor(ShaderIDs.Bloom_Color, linearColor); - uberSheet.properties.SetTexture(ShaderIDs.Bloom_DirtTex, dirtTexture); - cmd.SetGlobalTexture(ShaderIDs.BloomTex, lastUp); - - // Cleanup - for (int i = 0; i < iterations; i++) - { - if (m_Pyramid[i].down != lastUp) - cmd.ReleaseTemporaryRT(m_Pyramid[i].down); - if (m_Pyramid[i].up != lastUp) - cmd.ReleaseTemporaryRT(m_Pyramid[i].up); - } - - cmd.EndSample("BloomPyramid"); - - context.bloomBufferNameID = lastUp; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Bloom.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Bloom.cs.meta deleted file mode 100644 index aa52d2174..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Bloom.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 48a79b01ea5641d4aa6daa2e23605641 -timeCreated: 1491826542 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/ChromaticAberration.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/ChromaticAberration.cs deleted file mode 100644 index 06630b838..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/ChromaticAberration.cs +++ /dev/null @@ -1,94 +0,0 @@ -using System; -using UnityEngine.Serialization; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// This class holds settings for the Chromatic Aberration effect. - /// - [Serializable] - [PostProcess(typeof(ChromaticAberrationRenderer), "Unity/Chromatic Aberration")] - public sealed class ChromaticAberration : PostProcessEffectSettings - { - /// - /// A texture used for custom fringing color (it will use a default one when null). - /// - [Tooltip("Shifts the hue of chromatic aberrations.")] - public TextureParameter spectralLut = new TextureParameter { value = null }; - - /// - /// The amount of tangential distortion. - /// - [Range(0f, 1f), Tooltip("Amount of tangential distortion.")] - public FloatParameter intensity = new FloatParameter { value = 0f }; - - /// - /// If true, it will use a faster variant of the effect for improved performances. - /// - [FormerlySerializedAs("mobileOptimized")] - [Tooltip("Boost performances by lowering the effect quality. This settings is meant to be used on mobile and other low-end platforms but can also provide a nice performance boost on desktops and consoles.")] - public BoolParameter fastMode = new BoolParameter { value = false }; - - /// - public override bool IsEnabledAndSupported(PostProcessRenderContext context) - { - return enabled.value - && intensity.value > 0f; - } - } - -#if UNITY_2017_1_OR_NEWER - [UnityEngine.Scripting.Preserve] -#endif - internal sealed class ChromaticAberrationRenderer : PostProcessEffectRenderer - { - Texture2D m_InternalSpectralLut; - - public override void Render(PostProcessRenderContext context) - { - var spectralLut = settings.spectralLut.value; - - if (spectralLut == null) - { - if (m_InternalSpectralLut == null) - { - m_InternalSpectralLut = new Texture2D(3, 1, TextureFormat.RGB24, false) - { - name = "Chromatic Aberration Spectrum Lookup", - filterMode = FilterMode.Bilinear, - wrapMode = TextureWrapMode.Clamp, - anisoLevel = 0, - hideFlags = HideFlags.DontSave - }; - - m_InternalSpectralLut.SetPixels(new [] - { - new Color(1f, 0f, 0f), - new Color(0f, 1f, 0f), - new Color(0f, 0f, 1f) - }); - - m_InternalSpectralLut.Apply(); - } - - spectralLut = m_InternalSpectralLut; - } - - var sheet = context.uberSheet; - bool fastMode = settings.fastMode || SystemInfo.graphicsDeviceType == GraphicsDeviceType.OpenGLES2; - - sheet.EnableKeyword(fastMode - ? "CHROMATIC_ABERRATION_LOW" - : "CHROMATIC_ABERRATION" - ); - sheet.properties.SetFloat(ShaderIDs.ChromaticAberration_Amount, settings.intensity * 0.05f); - sheet.properties.SetTexture(ShaderIDs.ChromaticAberration_SpectralLut, spectralLut); - } - - public override void Release() - { - RuntimeUtilities.Destroy(m_InternalSpectralLut); - m_InternalSpectralLut = null; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/ChromaticAberration.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/ChromaticAberration.cs.meta deleted file mode 100644 index f3ff2b833..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/ChromaticAberration.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 6050e2d5de785ce4d931e4dbdbf2d755 -timeCreated: 1491826543 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/ColorGrading.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/ColorGrading.cs deleted file mode 100644 index a71a0e779..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/ColorGrading.cs +++ /dev/null @@ -1,840 +0,0 @@ -using System; - -using UnityEngine.Experimental.Rendering; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// Color grading modes. - /// - public enum GradingMode - { - /// - /// This mode is aimed at lower-end platforms but it can be used on any platform. Grading is - /// applied to the final rendered frame clamped in a [0,1] range and stored in a standard - /// LUT. - /// - LowDefinitionRange, - - /// - /// This mode is aimed at platforms that support HDR rendering. All the color operations - /// will be applied in HDR and stored into a 3D log-encoded LUT to ensure a sufficient range - /// coverage and precision (Alexa LogC El1000). - /// - HighDefinitionRange, - - /// - /// This mode allows you to provide a custom 3D LUT authored in an external software. - /// - External - } - - /// - /// Tonemapping methods. - /// - public enum Tonemapper - { - /// - /// No tonemapping will be applied. - /// - None, - - /// - /// This method only does range-remapping with minimal impact on color hue & saturation and - /// is generally a great starting point for extensive color grading. - /// - Neutral, - - /// - /// This method uses a close approximation of the reference ACES tonemapper for a more - /// filmic look. Because of that, it is more contrasted than and has an - /// effect on actual color hue & saturation. Note that if you enable this tonemapper all the - /// grading operations will be done in the ACES color spaces for optimal precision and - /// results. - /// - ACES, - - /// - /// This method offers a fully parametric, artist-friendly tonemapper. - /// - Custom - } - - /// - /// A volume parameter holding a value. - /// - [Serializable] - public sealed class GradingModeParameter : ParameterOverride { } - - /// - /// A volume parameter holding a value. - /// - [Serializable] - public sealed class TonemapperParameter : ParameterOverride {} - - /// - /// This class holds settings for the Color Grading effect. - /// - // TODO: Could use some refactoring, too much duplicated code here - [Serializable] - [PostProcess(typeof(ColorGradingRenderer), "Unity/Color Grading")] - public sealed class ColorGrading : PostProcessEffectSettings - { - /// - /// The grading mode to use. - /// - [DisplayName("Mode"), Tooltip("Select a color grading mode that fits your dynamic range and workflow. Use HDR if your camera is set to render in HDR and your target platform supports it. Use LDR for low-end mobiles or devices that don't support HDR. Use External if you prefer authoring a Log LUT in an external software.")] - public GradingModeParameter gradingMode = new GradingModeParameter { value = GradingMode.HighDefinitionRange }; - - /// - /// A custom 3D log-encoded texture. - /// - /// - /// This is only used when working with . - /// - [DisplayName("Lookup Texture"), Tooltip("A custom 3D log-encoded texture.")] - public TextureParameter externalLut = new TextureParameter { value = null }; - - /// - /// The tonemapping algorithm to use at the end of the color grading process. - /// - /// - /// This is only used when working with . - /// - [DisplayName("Mode"), Tooltip("Select a tonemapping algorithm to use at the end of the color grading process.")] - public TonemapperParameter tonemapper = new TonemapperParameter { value = Tonemapper.None }; - - /// - /// Affects the transition between the toe and the mid section of the curve. A value of 0 - /// means no toe, a value of 1 means a very hard transition. - /// - /// - /// This is only used when is active. - /// - [DisplayName("Toe Strength"), Range(0f, 1f), Tooltip("Affects the transition between the toe and the mid section of the curve. A value of 0 means no toe, a value of 1 means a very hard transition.")] - public FloatParameter toneCurveToeStrength = new FloatParameter { value = 0f }; - - /// - /// Affects how much of the dynamic range is in the toe. With a small value, the toe will be - /// very short and quickly transition into the linear section, and with a longer value - /// having a longer toe. - /// - /// - /// This is only used when is active. - /// - [DisplayName("Toe Length"), Range(0f, 1f), Tooltip("Affects how much of the dynamic range is in the toe. With a small value, the toe will be very short and quickly transition into the linear section, with a larger value, the toe will be longer.")] - public FloatParameter toneCurveToeLength = new FloatParameter { value = 0.5f }; - - /// - /// Affects the transition between the mid section and the shoulder of the curve. A value of - /// 0 means no shoulder, value of 1 means a very hard transition. - /// - /// - /// This is only used when is active. - /// - [DisplayName("Shoulder Strength"), Range(0f, 1f), Tooltip("Affects the transition between the mid section and the shoulder of the curve. A value of 0 means no shoulder, a value of 1 means a very hard transition.")] - public FloatParameter toneCurveShoulderStrength = new FloatParameter { value = 0f }; - - /// - /// Affects how many F-stops (EV) to add to the dynamic range of the curve. - /// - /// - /// This is only used when is active. - /// - [DisplayName("Shoulder Length"), Min(0f), Tooltip("Affects how many F-stops (EV) to add to the dynamic range of the curve.")] - public FloatParameter toneCurveShoulderLength = new FloatParameter { value = 0.5f }; - - /// - /// Affects how much overshot to add to the shoulder. - /// - /// - /// This is only used when is active. - /// - [DisplayName("Shoulder Angle"), Range(0f, 1f), Tooltip("Affects how much overshoot to add to the shoulder.")] - public FloatParameter toneCurveShoulderAngle = new FloatParameter { value = 0f }; - - /// - /// Applies a gamma function to the curve. - /// - /// - /// This is only used when is active. - /// - [DisplayName("Gamma"), Min(0.001f), Tooltip("Applies a gamma function to the curve.")] - public FloatParameter toneCurveGamma = new FloatParameter { value = 1f }; - - /// - /// A custom lookup texture (strip format, e.g. 256x16) to apply before the rest of the - /// color grading operators. If none is provided, a neutral one will be generated - /// internally. - /// - /// - /// This is only used when working with . - /// - [DisplayName("Lookup Texture"), Tooltip("Custom lookup texture (strip format, for example 256x16) to apply before the rest of the color grading operators. If none is provided, a neutral one will be generated internally.")] - public TextureParameter ldrLut = new TextureParameter { value = null, defaultState = TextureParameterDefault.Lut2D }; // LDR only - - /// - /// How much of the lookup texture will contribute to the color grading. - /// - /// - /// This is only used when working with . - /// - [DisplayName("Contribution"), Range(0f, 1f), Tooltip("How much of the lookup texture will contribute to the color grading effect.")] - public FloatParameter ldrLutContribution = new FloatParameter { value = 1f }; - - /// - /// Sets the white balance to a custom color temperature. - /// - [DisplayName("Temperature"), Range(-100f, 100f), Tooltip("Sets the white balance to a custom color temperature.")] - public FloatParameter temperature = new FloatParameter { value = 0f }; - - /// - /// Sets the white balance to compensate for a green or magenta tint. - /// - [DisplayName("Tint"), Range(-100f, 100f), Tooltip("Sets the white balance to compensate for a green or magenta tint.")] - public FloatParameter tint = new FloatParameter { value = 0f }; - - /// - /// Tints the render by multiplying a color. - /// -#if UNITY_2018_1_OR_NEWER - [DisplayName("Color Filter"), ColorUsage(false, true), Tooltip("Tint the render by multiplying a color.")] -#else - [DisplayName("Color Filter"), ColorUsage(false, true, 0f, 8f, 0.125f, 3f), Tooltip("Tint the render by multiplying a color.")] -#endif - public ColorParameter colorFilter = new ColorParameter { value = Color.white }; - - /// - /// Shifts the hue of all colors. - /// - [DisplayName("Hue Shift"), Range(-180f, 180f), Tooltip("Shift the hue of all colors.")] - public FloatParameter hueShift = new FloatParameter { value = 0f }; - - /// - /// Pushes the intensity of all colors. - /// - [DisplayName("Saturation"), Range(-100f, 100f), Tooltip("Pushes the intensity of all colors.")] - public FloatParameter saturation = new FloatParameter { value = 0f }; - - /// - /// Makes the image brighter or darker. - /// - /// - /// This is only used when working with . - /// - [DisplayName("Brightness"), Range(-100f, 100f), Tooltip("Makes the image brighter or darker.")] - public FloatParameter brightness = new FloatParameter { value = 0f }; // LDR only - - /// - /// Adjusts the overall exposure of the scene in EV units. This is applied after HDR effect - /// and right before tonemapping so it won't affect previous effects in the chain. - /// - /// - /// This is only used when working with . - /// - [DisplayName("Post-exposure (EV)"), Tooltip("Adjusts the overall exposure of the scene in EV units. This is applied after the HDR effect and right before tonemapping so it won't affect previous effects in the chain.")] - public FloatParameter postExposure = new FloatParameter { value = 0f }; // HDR only - - /// - /// Expands or shrinks the overall range of tonal values. - /// - [DisplayName("Contrast"), Range(-100f, 100f), Tooltip("Expands or shrinks the overall range of tonal values.")] - public FloatParameter contrast = new FloatParameter { value = 0f }; - - /// - /// Modifies the influence of the red channel within the overall mix. - /// - [DisplayName("Red"), Range(-200f, 200f), Tooltip("Modify influence of the red channel in the overall mix.")] - public FloatParameter mixerRedOutRedIn = new FloatParameter { value = 100f }; - - /// - /// Modifies the influence of the green channel within the overall mix. - /// - [DisplayName("Green"), Range(-200f, 200f), Tooltip("Modify influence of the green channel in the overall mix.")] - public FloatParameter mixerRedOutGreenIn = new FloatParameter { value = 0f }; - - /// - /// Modifies the influence of the blue channel within the overall mix. - /// - [DisplayName("Blue"), Range(-200f, 200f), Tooltip("Modify influence of the blue channel in the overall mix.")] - public FloatParameter mixerRedOutBlueIn = new FloatParameter { value = 0f }; - - /// - /// Modifies the influence of the red channel within the overall mix. - /// - [DisplayName("Red"), Range(-200f, 200f), Tooltip("Modify influence of the red channel in the overall mix.")] - public FloatParameter mixerGreenOutRedIn = new FloatParameter { value = 0f }; - - /// - /// Modifies the influence of the green channel within the overall mix. - /// - [DisplayName("Green"), Range(-200f, 200f), Tooltip("Modify influence of the green channel in the overall mix.")] - public FloatParameter mixerGreenOutGreenIn = new FloatParameter { value = 100f }; - - /// - /// Modifies the influence of the blue channel within the overall mix. - /// - [DisplayName("Blue"), Range(-200f, 200f), Tooltip("Modify influence of the blue channel in the overall mix.")] - public FloatParameter mixerGreenOutBlueIn = new FloatParameter { value = 0f }; - - /// - /// Modifies the influence of the red channel within the overall mix. - /// - [DisplayName("Red"), Range(-200f, 200f), Tooltip("Modify influence of the red channel in the overall mix.")] - public FloatParameter mixerBlueOutRedIn = new FloatParameter { value = 0f }; - - /// - /// Modifies the influence of the green channel within the overall mix. - /// - [DisplayName("Green"), Range(-200f, 200f), Tooltip("Modify influence of the green channel in the overall mix.")] - public FloatParameter mixerBlueOutGreenIn = new FloatParameter { value = 0f }; - - /// - /// Modifies the influence of the blue channel within the overall mix. - /// - [DisplayName("Blue"), Range(-200f, 200f), Tooltip("Modify influence of the blue channel in the overall mix.")] - public FloatParameter mixerBlueOutBlueIn = new FloatParameter { value = 100f }; - - /// - /// Controls the darkest portions of the render. - /// - /// - /// The neutral value is (1, 1, 1, 0). - /// - [DisplayName("Lift"), Tooltip("Controls the darkest portions of the render."), Trackball(TrackballAttribute.Mode.Lift)] - public Vector4Parameter lift = new Vector4Parameter { value = new Vector4(1f, 1f, 1f, 0f) }; - - /// - /// A power function that controls mid-range tones. - /// - /// - /// The neutral value is (1, 1, 1, 0). - /// - [DisplayName("Gamma"), Tooltip("Power function that controls mid-range tones."), Trackball(TrackballAttribute.Mode.Gamma)] - public Vector4Parameter gamma = new Vector4Parameter { value = new Vector4(1f, 1f, 1f, 0f) }; - - /// - /// Controls the lightest portions of the render. - /// - /// - /// The neutral value is (1, 1, 1, 0). - /// - [DisplayName("Gain"), Tooltip("Controls the lightest portions of the render."), Trackball(TrackballAttribute.Mode.Gain)] - public Vector4Parameter gain = new Vector4Parameter { value = new Vector4(1f, 1f, 1f, 0f) }; - - /// - /// Remaps the luminosity values. - /// - /// - /// This is only used when working with . - /// - public SplineParameter masterCurve = new SplineParameter { value = new Spline(new AnimationCurve(new Keyframe(0f, 0f, 1f, 1f), new Keyframe(1f, 1f, 1f, 1f)), 0f, false, new Vector2(0f, 1f)) }; - - /// - /// Remaps the red channel. - /// - /// - /// This is only used when working with . - /// - public SplineParameter redCurve = new SplineParameter { value = new Spline(new AnimationCurve(new Keyframe(0f, 0f, 1f, 1f), new Keyframe(1f, 1f, 1f, 1f)), 0f, false, new Vector2(0f, 1f)) }; - - /// - /// Remaps the green channel/ - /// - /// - /// This is only used when working with . - /// - public SplineParameter greenCurve = new SplineParameter { value = new Spline(new AnimationCurve(new Keyframe(0f, 0f, 1f, 1f), new Keyframe(1f, 1f, 1f, 1f)), 0f, false, new Vector2(0f, 1f)) }; - - /// - /// Remaps the blue channel. - /// - /// - /// This is only used when working with . - /// - public SplineParameter blueCurve = new SplineParameter { value = new Spline(new AnimationCurve(new Keyframe(0f, 0f, 1f, 1f), new Keyframe(1f, 1f, 1f, 1f)), 0f, false, new Vector2(0f, 1f)) }; - - /// - /// Remaps the hue according to the current hue. - /// - public SplineParameter hueVsHueCurve = new SplineParameter { value = new Spline(new AnimationCurve(), 0.5f, true, new Vector2(0f, 1f)) }; - - /// - /// Remaps the saturation according to the current hue. - /// - public SplineParameter hueVsSatCurve = new SplineParameter { value = new Spline(new AnimationCurve(), 0.5f, true, new Vector2(0f, 1f)) }; - - /// - /// Remaps the saturation according to the current saturation. - /// - public SplineParameter satVsSatCurve = new SplineParameter { value = new Spline(new AnimationCurve(), 0.5f, false, new Vector2(0f, 1f)) }; - - /// - /// Remaps the saturation according to the current luminance. - /// - public SplineParameter lumVsSatCurve = new SplineParameter { value = new Spline(new AnimationCurve(), 0.5f, false, new Vector2(0f, 1f)) }; - - /// - public override bool IsEnabledAndSupported(PostProcessRenderContext context) - { - if (gradingMode.value == GradingMode.External) - { - if (!SystemInfo.supports3DRenderTextures || !SystemInfo.supportsComputeShaders) - return false; - } - - return enabled.value; - } - } - -#if UNITY_2017_1_OR_NEWER - [UnityEngine.Scripting.Preserve] -#endif - internal sealed class ColorGradingRenderer : PostProcessEffectRenderer - { - enum Pass - { - LutGenLDRFromScratch, - LutGenLDR, - LutGenHDR2D - } - - Texture2D m_GradingCurves; - readonly Color[] m_Pixels = new Color[Spline.k_Precision * 2]; // Avoids GC stress - - RenderTexture m_InternalLdrLut; - RenderTexture m_InternalLogLut; - const int k_Lut2DSize = 32; - const int k_Lut3DSize = 33; - - readonly HableCurve m_HableCurve = new HableCurve(); - - public override void Render(PostProcessRenderContext context) - { - var gradingMode = settings.gradingMode.value; - var supportComputeTex3D = SystemInfo.supports3DRenderTextures - && SystemInfo.supportsComputeShaders - && context.resources.computeShaders.lut3DBaker != null - && SystemInfo.graphicsDeviceType != GraphicsDeviceType.OpenGLCore - && SystemInfo.graphicsDeviceType != GraphicsDeviceType.OpenGLES3; - - if (gradingMode == GradingMode.External) - RenderExternalPipeline3D(context); - else if (gradingMode == GradingMode.HighDefinitionRange && supportComputeTex3D) - RenderHDRPipeline3D(context); - else if (gradingMode == GradingMode.HighDefinitionRange) - RenderHDRPipeline2D(context); - else - RenderLDRPipeline2D(context); - } - - // Do color grading using an externally authored 3D lut; it requires Texture3D support and - // compute shaders in case blending is required - Desktop / Consoles / Some high-end mobiles - void RenderExternalPipeline3D(PostProcessRenderContext context) - { - var lut = settings.externalLut.value; - - if (lut == null) - return; - - var uberSheet = context.uberSheet; - uberSheet.EnableKeyword("COLOR_GRADING_HDR_3D"); - uberSheet.properties.SetTexture(ShaderIDs.Lut3D, lut); - uberSheet.properties.SetVector(ShaderIDs.Lut3D_Params, new Vector2(1f / lut.width, lut.width - 1f)); - uberSheet.properties.SetFloat(ShaderIDs.PostExposure, RuntimeUtilities.Exp2(settings.postExposure.value)); - context.logLut = lut; - } - - // HDR color pipeline is rendered to a 3D lut; it requires Texture3D & compute shaders - // support - Desktop / Consoles / Some high-end mobiles - // TODO: Use ShaderIDs for compute once the compatible APIs go in - void RenderHDRPipeline3D(PostProcessRenderContext context) - { - // Unfortunately because AnimationCurve doesn't implement GetHashCode and we don't have - // any reliable way to figure out if a curve data is different from another one we can't - // skip regenerating the Lut if nothing has changed. So it has to be done on every - // frame... - // It's not a very expensive operation anyway (we're talking about filling a 33x33x33 - // Lut on the GPU) but every little thing helps, especially on mobile. - { - CheckInternalLogLut(); - - // Lut setup - var compute = context.resources.computeShaders.lut3DBaker; - int kernel = 0; - - switch (settings.tonemapper.value) - { - case Tonemapper.None: kernel = compute.FindKernel("KGenLut3D_NoTonemap"); - break; - case Tonemapper.Neutral: kernel = compute.FindKernel("KGenLut3D_NeutralTonemap"); - break; - case Tonemapper.ACES: kernel = compute.FindKernel("KGenLut3D_AcesTonemap"); - break; - case Tonemapper.Custom: kernel = compute.FindKernel("KGenLut3D_CustomTonemap"); - break; - } - - var cmd = context.command; - cmd.SetComputeTextureParam(compute, kernel, "_Output", m_InternalLogLut); - cmd.SetComputeVectorParam(compute, "_Size", new Vector4(k_Lut3DSize, 1f / (k_Lut3DSize - 1f), 0f, 0f)); - - var colorBalance = ColorUtilities.ComputeColorBalance(settings.temperature.value, settings.tint.value); - cmd.SetComputeVectorParam(compute, "_ColorBalance", colorBalance); - cmd.SetComputeVectorParam(compute, "_ColorFilter", settings.colorFilter.value); - - float hue = settings.hueShift.value / 360f; // Remap to [-0.5;0.5] - float sat = settings.saturation.value / 100f + 1f; // Remap to [0;2] - float con = settings.contrast.value / 100f + 1f; // Remap to [0;2] - cmd.SetComputeVectorParam(compute, "_HueSatCon", new Vector4(hue, sat, con, 0f)); - - var channelMixerR = new Vector4(settings.mixerRedOutRedIn, settings.mixerRedOutGreenIn, settings.mixerRedOutBlueIn, 0f); - var channelMixerG = new Vector4(settings.mixerGreenOutRedIn, settings.mixerGreenOutGreenIn, settings.mixerGreenOutBlueIn, 0f); - var channelMixerB = new Vector4(settings.mixerBlueOutRedIn, settings.mixerBlueOutGreenIn, settings.mixerBlueOutBlueIn, 0f); - cmd.SetComputeVectorParam(compute, "_ChannelMixerRed", channelMixerR / 100f); // Remap to [-2;2] - cmd.SetComputeVectorParam(compute, "_ChannelMixerGreen", channelMixerG / 100f); - cmd.SetComputeVectorParam(compute, "_ChannelMixerBlue", channelMixerB / 100f); - - var lift = ColorUtilities.ColorToLift(settings.lift.value * 0.2f); - var gain = ColorUtilities.ColorToGain(settings.gain.value * 0.8f); - var invgamma = ColorUtilities.ColorToInverseGamma(settings.gamma.value * 0.8f); - cmd.SetComputeVectorParam(compute, "_Lift", new Vector4(lift.x, lift.y, lift.z, 0f)); - cmd.SetComputeVectorParam(compute, "_InvGamma", new Vector4(invgamma.x, invgamma.y, invgamma.z, 0f)); - cmd.SetComputeVectorParam(compute, "_Gain", new Vector4(gain.x, gain.y, gain.z, 0f)); - - cmd.SetComputeTextureParam(compute, kernel, "_Curves", GetCurveTexture(true)); - - if (settings.tonemapper.value == Tonemapper.Custom) - { - m_HableCurve.Init( - settings.toneCurveToeStrength.value, - settings.toneCurveToeLength.value, - settings.toneCurveShoulderStrength.value, - settings.toneCurveShoulderLength.value, - settings.toneCurveShoulderAngle.value, - settings.toneCurveGamma.value - ); - - cmd.SetComputeVectorParam(compute, "_CustomToneCurve", m_HableCurve.uniforms.curve); - cmd.SetComputeVectorParam(compute, "_ToeSegmentA", m_HableCurve.uniforms.toeSegmentA); - cmd.SetComputeVectorParam(compute, "_ToeSegmentB", m_HableCurve.uniforms.toeSegmentB); - cmd.SetComputeVectorParam(compute, "_MidSegmentA", m_HableCurve.uniforms.midSegmentA); - cmd.SetComputeVectorParam(compute, "_MidSegmentB", m_HableCurve.uniforms.midSegmentB); - cmd.SetComputeVectorParam(compute, "_ShoSegmentA", m_HableCurve.uniforms.shoSegmentA); - cmd.SetComputeVectorParam(compute, "_ShoSegmentB", m_HableCurve.uniforms.shoSegmentB); - } - - // Generate the lut - context.command.BeginSample("HdrColorGradingLut3D"); - int groupSize = Mathf.CeilToInt(k_Lut3DSize / 4f); - cmd.DispatchCompute(compute, kernel, groupSize, groupSize, groupSize); - context.command.EndSample("HdrColorGradingLut3D"); - } - - var lut = m_InternalLogLut; - var uberSheet = context.uberSheet; - uberSheet.EnableKeyword("COLOR_GRADING_HDR_3D"); - uberSheet.properties.SetTexture(ShaderIDs.Lut3D, lut); - uberSheet.properties.SetVector(ShaderIDs.Lut3D_Params, new Vector2(1f / lut.width, lut.width - 1f)); - uberSheet.properties.SetFloat(ShaderIDs.PostExposure, RuntimeUtilities.Exp2(settings.postExposure.value)); - - context.logLut = lut; - } - - // HDR color pipeline is rendered to a 2D strip lut (works on HDR platforms without compute - // and 3D texture support). Precision is sliiiiiiightly lower than when using a 3D texture - // LUT (33^3 -> 32^3) but most of the time it's imperceptible. - void RenderHDRPipeline2D(PostProcessRenderContext context) - { - // For the same reasons as in RenderHDRPipeline3D, regen LUT on every frame - { - CheckInternalStripLut(); - - // Lut setup - var lutSheet = context.propertySheets.Get(context.resources.shaders.lut2DBaker); - lutSheet.ClearKeywords(); - - lutSheet.properties.SetVector(ShaderIDs.Lut2D_Params, new Vector4(k_Lut2DSize, 0.5f / (k_Lut2DSize * k_Lut2DSize), 0.5f / k_Lut2DSize, k_Lut2DSize / (k_Lut2DSize - 1f))); - - var colorBalance = ColorUtilities.ComputeColorBalance(settings.temperature.value, settings.tint.value); - lutSheet.properties.SetVector(ShaderIDs.ColorBalance, colorBalance); - lutSheet.properties.SetVector(ShaderIDs.ColorFilter, settings.colorFilter.value); - - float hue = settings.hueShift.value / 360f; // Remap to [-0.5;0.5] - float sat = settings.saturation.value / 100f + 1f; // Remap to [0;2] - float con = settings.contrast.value / 100f + 1f; // Remap to [0;2] - lutSheet.properties.SetVector(ShaderIDs.HueSatCon, new Vector3(hue, sat, con)); - - var channelMixerR = new Vector3(settings.mixerRedOutRedIn, settings.mixerRedOutGreenIn, settings.mixerRedOutBlueIn); - var channelMixerG = new Vector3(settings.mixerGreenOutRedIn, settings.mixerGreenOutGreenIn, settings.mixerGreenOutBlueIn); - var channelMixerB = new Vector3(settings.mixerBlueOutRedIn, settings.mixerBlueOutGreenIn, settings.mixerBlueOutBlueIn); - lutSheet.properties.SetVector(ShaderIDs.ChannelMixerRed, channelMixerR / 100f); // Remap to [-2;2] - lutSheet.properties.SetVector(ShaderIDs.ChannelMixerGreen, channelMixerG / 100f); - lutSheet.properties.SetVector(ShaderIDs.ChannelMixerBlue, channelMixerB / 100f); - - var lift = ColorUtilities.ColorToLift(settings.lift.value * 0.2f); - var gain = ColorUtilities.ColorToGain(settings.gain.value * 0.8f); - var invgamma = ColorUtilities.ColorToInverseGamma(settings.gamma.value * 0.8f); - lutSheet.properties.SetVector(ShaderIDs.Lift, lift); - lutSheet.properties.SetVector(ShaderIDs.InvGamma, invgamma); - lutSheet.properties.SetVector(ShaderIDs.Gain, gain); - - lutSheet.properties.SetTexture(ShaderIDs.Curves, GetCurveTexture(true)); - - var tonemapper = settings.tonemapper.value; - if (tonemapper == Tonemapper.Custom) - { - lutSheet.EnableKeyword("TONEMAPPING_CUSTOM"); - - m_HableCurve.Init( - settings.toneCurveToeStrength.value, - settings.toneCurveToeLength.value, - settings.toneCurveShoulderStrength.value, - settings.toneCurveShoulderLength.value, - settings.toneCurveShoulderAngle.value, - settings.toneCurveGamma.value - ); - - lutSheet.properties.SetVector(ShaderIDs.CustomToneCurve, m_HableCurve.uniforms.curve); - lutSheet.properties.SetVector(ShaderIDs.ToeSegmentA, m_HableCurve.uniforms.toeSegmentA); - lutSheet.properties.SetVector(ShaderIDs.ToeSegmentB, m_HableCurve.uniforms.toeSegmentB); - lutSheet.properties.SetVector(ShaderIDs.MidSegmentA, m_HableCurve.uniforms.midSegmentA); - lutSheet.properties.SetVector(ShaderIDs.MidSegmentB, m_HableCurve.uniforms.midSegmentB); - lutSheet.properties.SetVector(ShaderIDs.ShoSegmentA, m_HableCurve.uniforms.shoSegmentA); - lutSheet.properties.SetVector(ShaderIDs.ShoSegmentB, m_HableCurve.uniforms.shoSegmentB); - } - else if (tonemapper == Tonemapper.ACES) - lutSheet.EnableKeyword("TONEMAPPING_ACES"); - else if (tonemapper == Tonemapper.Neutral) - lutSheet.EnableKeyword("TONEMAPPING_NEUTRAL"); - - // Generate the lut - context.command.BeginSample("HdrColorGradingLut2D"); - context.command.BlitFullscreenTriangle(BuiltinRenderTextureType.None, m_InternalLdrLut, lutSheet, (int)Pass.LutGenHDR2D); - context.command.EndSample("HdrColorGradingLut2D"); - } - - var lut = m_InternalLdrLut; - var uberSheet = context.uberSheet; - uberSheet.EnableKeyword("COLOR_GRADING_HDR_2D"); - uberSheet.properties.SetVector(ShaderIDs.Lut2D_Params, new Vector3(1f / lut.width, 1f / lut.height, lut.height - 1f)); - uberSheet.properties.SetTexture(ShaderIDs.Lut2D, lut); - uberSheet.properties.SetFloat(ShaderIDs.PostExposure, RuntimeUtilities.Exp2(settings.postExposure.value)); - } - - // LDR color pipeline is rendered to a 2D strip lut (works on every platform) - void RenderLDRPipeline2D(PostProcessRenderContext context) - { - // For the same reasons as in RenderHDRPipeline3D, regen LUT on every frame - { - CheckInternalStripLut(); - - // Lut setup - var lutSheet = context.propertySheets.Get(context.resources.shaders.lut2DBaker); - lutSheet.ClearKeywords(); - - lutSheet.properties.SetVector(ShaderIDs.Lut2D_Params, new Vector4(k_Lut2DSize, 0.5f / (k_Lut2DSize * k_Lut2DSize), 0.5f / k_Lut2DSize, k_Lut2DSize / (k_Lut2DSize - 1f))); - - var colorBalance = ColorUtilities.ComputeColorBalance(settings.temperature.value, settings.tint.value); - lutSheet.properties.SetVector(ShaderIDs.ColorBalance, colorBalance); - lutSheet.properties.SetVector(ShaderIDs.ColorFilter, settings.colorFilter.value); - - float hue = settings.hueShift.value / 360f; // Remap to [-0.5;0.5] - float sat = settings.saturation.value / 100f + 1f; // Remap to [0;2] - float con = settings.contrast.value / 100f + 1f; // Remap to [0;2] - lutSheet.properties.SetVector(ShaderIDs.HueSatCon, new Vector3(hue, sat, con)); - - var channelMixerR = new Vector3(settings.mixerRedOutRedIn, settings.mixerRedOutGreenIn, settings.mixerRedOutBlueIn); - var channelMixerG = new Vector3(settings.mixerGreenOutRedIn, settings.mixerGreenOutGreenIn, settings.mixerGreenOutBlueIn); - var channelMixerB = new Vector3(settings.mixerBlueOutRedIn, settings.mixerBlueOutGreenIn, settings.mixerBlueOutBlueIn); - lutSheet.properties.SetVector(ShaderIDs.ChannelMixerRed, channelMixerR / 100f); // Remap to [-2;2] - lutSheet.properties.SetVector(ShaderIDs.ChannelMixerGreen, channelMixerG / 100f); - lutSheet.properties.SetVector(ShaderIDs.ChannelMixerBlue, channelMixerB / 100f); - - var lift = ColorUtilities.ColorToLift(settings.lift.value); - var gain = ColorUtilities.ColorToGain(settings.gain.value); - var invgamma = ColorUtilities.ColorToInverseGamma(settings.gamma.value); - lutSheet.properties.SetVector(ShaderIDs.Lift, lift); - lutSheet.properties.SetVector(ShaderIDs.InvGamma, invgamma); - lutSheet.properties.SetVector(ShaderIDs.Gain, gain); - - lutSheet.properties.SetFloat(ShaderIDs.Brightness, (settings.brightness.value + 100f) / 100f); - lutSheet.properties.SetTexture(ShaderIDs.Curves, GetCurveTexture(false)); - - // Generate the lut - context.command.BeginSample("LdrColorGradingLut2D"); - - var userLut = settings.ldrLut.value; - if (userLut == null || userLut.width != userLut.height * userLut.height) - { - context.command.BlitFullscreenTriangle(BuiltinRenderTextureType.None, m_InternalLdrLut, lutSheet, (int)Pass.LutGenLDRFromScratch); - } - else - { - lutSheet.properties.SetVector(ShaderIDs.UserLut2D_Params, new Vector4(1f / userLut.width, 1f / userLut.height, userLut.height - 1f, settings.ldrLutContribution)); - context.command.BlitFullscreenTriangle(userLut, m_InternalLdrLut, lutSheet, (int)Pass.LutGenLDR); - } - - context.command.EndSample("LdrColorGradingLut2D"); - } - - var lut = m_InternalLdrLut; - var uberSheet = context.uberSheet; - uberSheet.EnableKeyword("COLOR_GRADING_LDR_2D"); - uberSheet.properties.SetVector(ShaderIDs.Lut2D_Params, new Vector3(1f / lut.width, 1f / lut.height, lut.height - 1f)); - uberSheet.properties.SetTexture(ShaderIDs.Lut2D, lut); - } - - void CheckInternalLogLut() - { - // Check internal lut state, (re)create it if needed - if (m_InternalLogLut == null || !m_InternalLogLut.IsCreated()) - { - RuntimeUtilities.Destroy(m_InternalLogLut); - - var format = GetLutFormat(); - m_InternalLogLut = new RenderTexture(k_Lut3DSize, k_Lut3DSize, 0, format, RenderTextureReadWrite.Linear) - { - name = "Color Grading Log Lut", - dimension = TextureDimension.Tex3D, - hideFlags = HideFlags.DontSave, - filterMode = FilterMode.Bilinear, - wrapMode = TextureWrapMode.Clamp, - anisoLevel = 0, - enableRandomWrite = true, - volumeDepth = k_Lut3DSize, - autoGenerateMips = false, - useMipMap = false - }; - m_InternalLogLut.Create(); - } - } - - void CheckInternalStripLut() - { - // Check internal lut state, (re)create it if needed - if (m_InternalLdrLut == null || !m_InternalLdrLut.IsCreated()) - { - RuntimeUtilities.Destroy(m_InternalLdrLut); - - var format = GetLutFormat(); - m_InternalLdrLut = new RenderTexture(k_Lut2DSize * k_Lut2DSize, k_Lut2DSize, 0, format, RenderTextureReadWrite.Linear) - { - name = "Color Grading Strip Lut", - hideFlags = HideFlags.DontSave, - filterMode = FilterMode.Bilinear, - wrapMode = TextureWrapMode.Clamp, - anisoLevel = 0, - autoGenerateMips = false, - useMipMap = false - }; - m_InternalLdrLut.Create(); - } - } - - Texture2D GetCurveTexture(bool hdr) - { - if (m_GradingCurves == null) - { - var format = GetCurveFormat(); - m_GradingCurves = new Texture2D(Spline.k_Precision, 2, format, false, true) - { - name = "Internal Curves Texture", - hideFlags = HideFlags.DontSave, - anisoLevel = 0, - wrapMode = TextureWrapMode.Clamp, - filterMode = FilterMode.Bilinear - }; - } - - var hueVsHueCurve = settings.hueVsHueCurve.value; - var hueVsSatCurve = settings.hueVsSatCurve.value; - var satVsSatCurve = settings.satVsSatCurve.value; - var lumVsSatCurve = settings.lumVsSatCurve.value; - var masterCurve = settings.masterCurve.value; - var redCurve = settings.redCurve.value; - var greenCurve = settings.greenCurve.value; - var blueCurve = settings.blueCurve.value; - - var pixels = m_Pixels; - - for (int i = 0; i < Spline.k_Precision; i++) - { - // Secondary/VS curves - float x = hueVsHueCurve.cachedData[i]; - float y = hueVsSatCurve.cachedData[i]; - float z = satVsSatCurve.cachedData[i]; - float w = lumVsSatCurve.cachedData[i]; - pixels[i] = new Color(x, y, z, w); - - // YRGB - if (!hdr) - { - float m = masterCurve.cachedData[i]; - float r = redCurve.cachedData[i]; - float g = greenCurve.cachedData[i]; - float b = blueCurve.cachedData[i]; - pixels[i + Spline.k_Precision] = new Color(r, g, b, m); - } - } - - m_GradingCurves.SetPixels(pixels); - m_GradingCurves.Apply(false, false); - - return m_GradingCurves; - } - - static bool IsRenderTextureFormatSupportedForLinearFiltering(RenderTextureFormat format) - { -#if UNITY_2019_1_OR_NEWER - var gFormat = GraphicsFormatUtility.GetGraphicsFormat(format, RenderTextureReadWrite.Linear); - return SystemInfo.IsFormatSupported(gFormat, FormatUsage.Linear); -#else - // No good/fast way to test it on pre-2019.1 - return format.IsSupported(); -#endif - } - - static RenderTextureFormat GetLutFormat() - { - // Use ARGBHalf if possible, fallback on ARGB2101010 and ARGB32 otherwise - var format = RenderTextureFormat.ARGBHalf; - - if (!IsRenderTextureFormatSupportedForLinearFiltering(format)) - { - format = RenderTextureFormat.ARGB2101010; - - // Note that using a log lut in ARGB32 is a *very* bad idea but we need it for - // compatibility reasons (else if a platform doesn't support one of the previous - // format it'll output a black screen, or worse will segfault on the user). - if (!IsRenderTextureFormatSupportedForLinearFiltering(format)) - format = RenderTextureFormat.ARGB32; - } - - return format; - } - - static TextureFormat GetCurveFormat() - { - // Use RGBAHalf if possible, fallback on ARGB32 otherwise - var format = TextureFormat.RGBAHalf; - - if (!SystemInfo.SupportsTextureFormat(format)) - format = TextureFormat.ARGB32; - - return format; - } - - public override void Release() - { - RuntimeUtilities.Destroy(m_InternalLdrLut); - m_InternalLdrLut = null; - - RuntimeUtilities.Destroy(m_InternalLogLut); - m_InternalLogLut = null; - - RuntimeUtilities.Destroy(m_GradingCurves); - m_GradingCurves = null; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/ColorGrading.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/ColorGrading.cs.meta deleted file mode 100644 index d5735f493..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/ColorGrading.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: adb84e30e02715445aeb9959894e3b4d -timeCreated: 1493024209 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/DepthOfField.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/DepthOfField.cs deleted file mode 100644 index 8da428185..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/DepthOfField.cs +++ /dev/null @@ -1,261 +0,0 @@ -using System; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// Convolution kernel size for the Depth of Field effect. - /// - public enum KernelSize - { - /// - /// Small filter. - /// - Small, - - /// - /// Medium filter. - /// - Medium, - - /// - /// Large filter. - /// - Large, - - /// - /// Very large filter. - /// - VeryLarge - } - - /// - /// A volume parameter holding a value. - /// - [Serializable] - public sealed class KernelSizeParameter : ParameterOverride {} - - /// - /// This class holds settings for the Depth of Field effect. - /// - [Serializable] - [PostProcess(typeof(DepthOfFieldRenderer), "Unity/Depth of Field", false)] - public sealed class DepthOfField : PostProcessEffectSettings - { - /// - /// The distance to the point of focus. - /// - [Min(0.1f), Tooltip("Distance to the point of focus.")] - public FloatParameter focusDistance = new FloatParameter { value = 10f }; - - /// - /// The ratio of the aperture (known as f-stop or f-number). The smaller the value is, the - /// shallower the depth of field is. - /// - [Range(0.05f, 32f), Tooltip("Ratio of aperture (known as f-stop or f-number). The smaller the value is, the shallower the depth of field is.")] - public FloatParameter aperture = new FloatParameter { value = 5.6f }; - - /// - /// The distance between the lens and the film. The larger the value is, the shallower the - /// depth of field is. - /// - [Range(1f, 300f), Tooltip("Distance between the lens and the film. The larger the value is, the shallower the depth of field is.")] - public FloatParameter focalLength = new FloatParameter { value = 50f }; - - /// - /// The convolution kernel size of the bokeh filter, which determines the maximum radius of - /// bokeh. It also affects the performance (the larger the kernel is, the longer the GPU - /// time is required). - /// - [DisplayName("Max Blur Size"), Tooltip("Convolution kernel size of the bokeh filter, which determines the maximum radius of bokeh. It also affects performances (the larger the kernel is, the longer the GPU time is required).")] - public KernelSizeParameter kernelSize = new KernelSizeParameter { value = KernelSize.Medium }; - - /// - public override bool IsEnabledAndSupported(PostProcessRenderContext context) - { - return enabled.value - && SystemInfo.graphicsShaderLevel >= 35; - } - } - -#if UNITY_2017_1_OR_NEWER - [UnityEngine.Scripting.Preserve] -#endif - // TODO: Doesn't play nice with alpha propagation, see if it can be fixed without killing performances - internal sealed class DepthOfFieldRenderer : PostProcessEffectRenderer - { - enum Pass - { - CoCCalculation, - CoCTemporalFilter, - DownsampleAndPrefilter, - BokehSmallKernel, - BokehMediumKernel, - BokehLargeKernel, - BokehVeryLargeKernel, - PostFilter, - Combine, - DebugOverlay - } - - // Ping-pong between two history textures as we can't read & write the same target in the - // same pass - const int k_NumEyes = 2; - const int k_NumCoCHistoryTextures = 2; - readonly RenderTexture[][] m_CoCHistoryTextures = new RenderTexture[k_NumEyes][]; - int[] m_HistoryPingPong = new int[k_NumEyes]; - - // Height of the 35mm full-frame format (36mm x 24mm) - // TODO: Should be set by a physical camera - const float k_FilmHeight = 0.024f; - - public DepthOfFieldRenderer() - { - for (int eye = 0; eye < k_NumEyes; eye++) - { - m_CoCHistoryTextures[eye] = new RenderTexture[k_NumCoCHistoryTextures]; - m_HistoryPingPong[eye] = 0; - } - } - - public override DepthTextureMode GetCameraFlags() - { - return DepthTextureMode.Depth; - } - - RenderTextureFormat SelectFormat(RenderTextureFormat primary, RenderTextureFormat secondary) - { - if (primary.IsSupported()) - return primary; - - if (secondary.IsSupported()) - return secondary; - - return RenderTextureFormat.Default; - } - - float CalculateMaxCoCRadius(int screenHeight) - { - // Estimate the allowable maximum radius of CoC from the kernel - // size (the equation below was empirically derived). - float radiusInPixels = (float)settings.kernelSize.value * 4f + 6f; - - // Applying a 5% limit to the CoC radius to keep the size of - // TileMax/NeighborMax small enough. - return Mathf.Min(0.05f, radiusInPixels / screenHeight); - } - - RenderTexture CheckHistory(int eye, int id, PostProcessRenderContext context, RenderTextureFormat format) - { - var rt = m_CoCHistoryTextures[eye][id]; - - if (m_ResetHistory || rt == null || !rt.IsCreated() || rt.width != context.width || rt.height != context.height) - { - RenderTexture.ReleaseTemporary(rt); - - rt = context.GetScreenSpaceTemporaryRT(0, format, RenderTextureReadWrite.Linear); - rt.name = "CoC History, Eye: " + eye + ", ID: " + id; - rt.filterMode = FilterMode.Bilinear; - rt.Create(); - m_CoCHistoryTextures[eye][id] = rt; - } - - return rt; - } - - public override void Render(PostProcessRenderContext context) - { - var colorFormat = context.sourceFormat; - var cocFormat = SelectFormat(RenderTextureFormat.R8, RenderTextureFormat.RHalf); - - // Avoid using R8 on OSX with Metal. #896121, https://goo.gl/MgKqu6 - #if (UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX) && !UNITY_2017_1_OR_NEWER - if (SystemInfo.graphicsDeviceType == UnityEngine.Rendering.GraphicsDeviceType.Metal) - cocFormat = SelectFormat(RenderTextureFormat.RHalf, RenderTextureFormat.Default); - #endif - - // Material setup - float scaledFilmHeight = k_FilmHeight * (context.height / 1080f); - var f = settings.focalLength.value / 1000f; - var s1 = Mathf.Max(settings.focusDistance.value, f); - var aspect = (float)context.screenWidth / (float)context.screenHeight; - var coeff = f * f / (settings.aperture.value * (s1 - f) * scaledFilmHeight * 2f); - var maxCoC = CalculateMaxCoCRadius(context.screenHeight); - - var sheet = context.propertySheets.Get(context.resources.shaders.depthOfField); - sheet.properties.Clear(); - sheet.properties.SetFloat(ShaderIDs.Distance, s1); - sheet.properties.SetFloat(ShaderIDs.LensCoeff, coeff); - sheet.properties.SetFloat(ShaderIDs.MaxCoC, maxCoC); - sheet.properties.SetFloat(ShaderIDs.RcpMaxCoC, 1f / maxCoC); - sheet.properties.SetFloat(ShaderIDs.RcpAspect, 1f / aspect); - - var cmd = context.command; - cmd.BeginSample("DepthOfField"); - - // CoC calculation pass - context.GetScreenSpaceTemporaryRT(cmd, ShaderIDs.CoCTex, 0, cocFormat, RenderTextureReadWrite.Linear); - cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, ShaderIDs.CoCTex, sheet, (int)Pass.CoCCalculation); - - // CoC temporal filter pass when TAA is enabled - if (context.IsTemporalAntialiasingActive()) - { - float motionBlending = context.temporalAntialiasing.motionBlending; - float blend = m_ResetHistory ? 0f : motionBlending; // Handles first frame blending - var jitter = context.temporalAntialiasing.jitter; - - sheet.properties.SetVector(ShaderIDs.TaaParams, new Vector3(jitter.x, jitter.y, blend)); - - int pp = m_HistoryPingPong[context.xrActiveEye]; - var historyRead = CheckHistory(context.xrActiveEye, ++pp % 2, context, cocFormat); - var historyWrite = CheckHistory(context.xrActiveEye, ++pp % 2, context, cocFormat); - m_HistoryPingPong[context.xrActiveEye] = ++pp % 2; - - cmd.BlitFullscreenTriangle(historyRead, historyWrite, sheet, (int)Pass.CoCTemporalFilter); - cmd.ReleaseTemporaryRT(ShaderIDs.CoCTex); - cmd.SetGlobalTexture(ShaderIDs.CoCTex, historyWrite); - } - - // Downsampling and prefiltering pass - context.GetScreenSpaceTemporaryRT(cmd, ShaderIDs.DepthOfFieldTex, 0, colorFormat, RenderTextureReadWrite.Default, FilterMode.Bilinear, context.width / 2, context.height / 2); - cmd.BlitFullscreenTriangle(context.source, ShaderIDs.DepthOfFieldTex, sheet, (int)Pass.DownsampleAndPrefilter); - - // Bokeh simulation pass - context.GetScreenSpaceTemporaryRT(cmd, ShaderIDs.DepthOfFieldTemp, 0, colorFormat, RenderTextureReadWrite.Default, FilterMode.Bilinear, context.width / 2, context.height / 2); - cmd.BlitFullscreenTriangle(ShaderIDs.DepthOfFieldTex, ShaderIDs.DepthOfFieldTemp, sheet, (int)Pass.BokehSmallKernel + (int)settings.kernelSize.value); - - // Postfilter pass - cmd.BlitFullscreenTriangle(ShaderIDs.DepthOfFieldTemp, ShaderIDs.DepthOfFieldTex, sheet, (int)Pass.PostFilter); - cmd.ReleaseTemporaryRT(ShaderIDs.DepthOfFieldTemp); - - // Debug overlay pass - if (context.IsDebugOverlayEnabled(DebugOverlay.DepthOfField)) - context.PushDebugOverlay(cmd, context.source, sheet, (int)Pass.DebugOverlay); - - // Combine pass - cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)Pass.Combine); - cmd.ReleaseTemporaryRT(ShaderIDs.DepthOfFieldTex); - - if (!context.IsTemporalAntialiasingActive()) - cmd.ReleaseTemporaryRT(ShaderIDs.CoCTex); - - cmd.EndSample("DepthOfField"); - - m_ResetHistory = false; - } - - public override void Release() - { - for (int eye = 0; eye < k_NumEyes; eye++) - { - for (int i = 0; i < m_CoCHistoryTextures[eye].Length; i++) - { - RenderTexture.ReleaseTemporary(m_CoCHistoryTextures[eye][i]); - m_CoCHistoryTextures[eye][i] = null; - } - m_HistoryPingPong[eye] = 0; - } - - ResetHistory(); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/DepthOfField.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/DepthOfField.cs.meta deleted file mode 100644 index f77b54aa0..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/DepthOfField.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 556797029e73b2347956b6579e77e05b -timeCreated: 1491828776 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Dithering.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Dithering.cs deleted file mode 100644 index 9fcc15123..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Dithering.cs +++ /dev/null @@ -1,43 +0,0 @@ -using System; -using UnityEngine.Assertions; - -namespace UnityEngine.Rendering.PostProcessing -{ -#if UNITY_2017_1_OR_NEWER - [UnityEngine.Scripting.Preserve] -#endif - [Serializable] - internal sealed class Dithering - { - int m_NoiseTextureIndex = 0; - - internal void Render(PostProcessRenderContext context) - { - var blueNoise = context.resources.blueNoise64; - Assert.IsTrue(blueNoise != null && blueNoise.Length > 0); - - #if POSTFX_DEBUG_STATIC_DITHERING // Used by QA for automated testing - m_NoiseTextureIndex = 0; - float rndOffsetX = 0f; - float rndOffsetY = 0f; - #else - if (++m_NoiseTextureIndex >= blueNoise.Length) - m_NoiseTextureIndex = 0; - - float rndOffsetX = Random.value; - float rndOffsetY = Random.value; - #endif - - var noiseTex = blueNoise[m_NoiseTextureIndex]; - var uberSheet = context.uberSheet; - - uberSheet.properties.SetTexture(ShaderIDs.DitheringTex, noiseTex); - uberSheet.properties.SetVector(ShaderIDs.Dithering_Coords, new Vector4( - (float)context.screenWidth / (float)noiseTex.width, - (float)context.screenHeight / (float)noiseTex.height, - rndOffsetX, - rndOffsetY - )); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Dithering.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Dithering.cs.meta deleted file mode 100644 index 952e48259..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Dithering.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 75066207954ccc44aa9d134af49040de -timeCreated: 1490188285 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/FastApproximateAntialiasing.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/FastApproximateAntialiasing.cs deleted file mode 100644 index 3e76bfa46..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/FastApproximateAntialiasing.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using UnityEngine.Serialization; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// This class holds settings for the Fast Approximate Anti-aliasing (FXAA) effect. - /// -#if UNITY_2017_1_OR_NEWER - [UnityEngine.Scripting.Preserve] -#endif - [Serializable] - public sealed class FastApproximateAntialiasing - { - /// - /// If true, it will use a slightly lower quality but faster variant of FXAA. Highly - /// recommended on mobile platforms. - /// - [FormerlySerializedAs("mobileOptimized")] - [Tooltip("Boost performances by lowering the effect quality. This setting is meant to be used on mobile and other low-end platforms but can also provide a nice performance boost on desktops and consoles.")] - public bool fastMode = false; - - /// - /// Set this to true if you need to keep the alpha channel untouched. Else it will - /// use this channel to store internal data used to speed up and improve visual quality. - /// - [Tooltip("Keep alpha channel. This will slightly lower the effect quality but allows rendering against a transparent background.")] - public bool keepAlpha = false; - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/FastApproximateAntialiasing.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/FastApproximateAntialiasing.cs.meta deleted file mode 100644 index 00bef62d7..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/FastApproximateAntialiasing.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: efd3e892ff9d0b94c94e039ad5619e5d -timeCreated: 1493489448 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Fog.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Fog.cs deleted file mode 100644 index c8efcf304..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Fog.cs +++ /dev/null @@ -1,55 +0,0 @@ -using System; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// This class holds settings for the Fog effect with the deferred rendering path. - /// -#if UNITY_2017_1_OR_NEWER - [UnityEngine.Scripting.Preserve] -#endif - [Serializable] - public sealed class Fog - { - /// - /// If true, enables the internal deferred fog pass. Actual fog settings should be - /// set in the Lighting panel. - /// - [Tooltip("Enables the internal deferred fog pass. Actual fog settings should be set in the Lighting panel.")] - public bool enabled = true; - - /// - /// Should the fog affect the skybox? - /// - [Tooltip("Mark true for the fog to ignore the skybox")] - public bool excludeSkybox = true; - - internal DepthTextureMode GetCameraFlags() - { - return DepthTextureMode.Depth; - } - - internal bool IsEnabledAndSupported(PostProcessRenderContext context) - { - return enabled - && RenderSettings.fog - && !RuntimeUtilities.scriptableRenderPipelineActive - && context.resources.shaders.deferredFog - && context.resources.shaders.deferredFog.isSupported - && context.camera.actualRenderingPath == RenderingPath.DeferredShading; // In forward fog is already done at shader level - } - - internal void Render(PostProcessRenderContext context) - { - var sheet = context.propertySheets.Get(context.resources.shaders.deferredFog); - sheet.ClearKeywords(); - - var fogColor = RuntimeUtilities.isLinearColorSpace ? RenderSettings.fogColor.linear : RenderSettings.fogColor; - sheet.properties.SetVector(ShaderIDs.FogColor, fogColor); - sheet.properties.SetVector(ShaderIDs.FogParams, new Vector3(RenderSettings.fogDensity, RenderSettings.fogStartDistance, RenderSettings.fogEndDistance)); - - var cmd = context.command; - cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, excludeSkybox ? 1 : 0); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Fog.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Fog.cs.meta deleted file mode 100644 index 45dbd9158..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Fog.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 62e2b920ea5fcaa4982e7fc50bf690a8 -timeCreated: 1498381577 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Grain.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Grain.cs deleted file mode 100644 index b4bea87aa..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Grain.cs +++ /dev/null @@ -1,125 +0,0 @@ -using System; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// This class holds settings for the Grain effect. - /// - [Serializable] - [PostProcess(typeof(GrainRenderer), "Unity/Grain")] - public sealed class Grain : PostProcessEffectSettings - { - /// - /// Set to true to render colored grain, false for grayscale grain. - /// - [Tooltip("Enable the use of colored grain.")] - public BoolParameter colored = new BoolParameter { value = true }; - - /// - /// The strength (or visibility) of the Grain effect on screen. Higher values mean more visible grain. - /// - [Range(0f, 1f), Tooltip("Grain strength. Higher values mean more visible grain.")] - public FloatParameter intensity = new FloatParameter { value = 0f }; - - /// - /// The size of grain particle on screen. - /// - [Range(0.3f, 3f), Tooltip("Grain particle size.")] - public FloatParameter size = new FloatParameter { value = 1f }; - - /// - /// Controls the noisiness response curve based on scene luminance. Lower values mean less noise in dark areas. - /// - [Range(0f, 1f), DisplayName("Luminance Contribution"), Tooltip("Controls the noise response curve based on scene luminance. Lower values mean less noise in dark areas.")] - public FloatParameter lumContrib = new FloatParameter { value = 0.8f }; - - /// - public override bool IsEnabledAndSupported(PostProcessRenderContext context) - { - return enabled.value - && intensity.value > 0f; - } - } - -#if POSTFX_DEBUG_STATIC_GRAIN - #pragma warning disable 414 -#endif -#if UNITY_2017_1_OR_NEWER - [UnityEngine.Scripting.Preserve] -#endif - internal sealed class GrainRenderer : PostProcessEffectRenderer - { - RenderTexture m_GrainLookupRT; - - const int k_SampleCount = 1024; - int m_SampleIndex; - - public override void Render(PostProcessRenderContext context) - { -#if POSTFX_DEBUG_STATIC_GRAIN - // Chosen by a fair dice roll - float time = 0.4f; - float rndOffsetX = 0f; - float rndOffsetY = 0f; -#else - float time = Time.realtimeSinceStartup; - float rndOffsetX = HaltonSeq.Get(m_SampleIndex & 1023, 2); - float rndOffsetY = HaltonSeq.Get(m_SampleIndex & 1023, 3); - - if (++m_SampleIndex >= k_SampleCount) - m_SampleIndex = 0; -#endif - - // Generate the grain lut for the current frame first - if (m_GrainLookupRT == null || !m_GrainLookupRT.IsCreated()) - { - RuntimeUtilities.Destroy(m_GrainLookupRT); - - m_GrainLookupRT = new RenderTexture(128, 128, 0, GetLookupFormat()) - { - filterMode = FilterMode.Bilinear, - wrapMode = TextureWrapMode.Repeat, - anisoLevel = 0, - name = "Grain Lookup Texture" - }; - - m_GrainLookupRT.Create(); - } - - var sheet = context.propertySheets.Get(context.resources.shaders.grainBaker); - sheet.properties.Clear(); - sheet.properties.SetFloat(ShaderIDs.Phase, time % 10f); - sheet.properties.SetVector(ShaderIDs.GrainNoiseParameters, new Vector3(12.9898f, 78.233f, 43758.5453f)); - - context.command.BeginSample("GrainLookup"); - context.command.BlitFullscreenTriangle(BuiltinRenderTextureType.None, m_GrainLookupRT, sheet, settings.colored.value ? 1 : 0); - context.command.EndSample("GrainLookup"); - - // Send everything to the uber shader - var uberSheet = context.uberSheet; - uberSheet.EnableKeyword("GRAIN"); - uberSheet.properties.SetTexture(ShaderIDs.GrainTex, m_GrainLookupRT); - uberSheet.properties.SetVector(ShaderIDs.Grain_Params1, new Vector2(settings.lumContrib.value, settings.intensity.value * 20f)); - uberSheet.properties.SetVector(ShaderIDs.Grain_Params2, new Vector4((float)context.width / (float)m_GrainLookupRT.width / settings.size.value, (float)context.height / (float)m_GrainLookupRT.height / settings.size.value, rndOffsetX, rndOffsetY)); - } - - RenderTextureFormat GetLookupFormat() - { - if (RenderTextureFormat.ARGBHalf.IsSupported()) - return RenderTextureFormat.ARGBHalf; - - return RenderTextureFormat.ARGB32; - } - - public override void Release() - { - RuntimeUtilities.Destroy(m_GrainLookupRT); - m_GrainLookupRT = null; - m_SampleIndex = 0; - } - } - -#if POSTFX_DEBUG_STATIC_GRAIN - #pragma warning restore 414 -#endif -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Grain.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Grain.cs.meta deleted file mode 100644 index c7c70faf7..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Grain.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: d65e486e4de6e5448a8fbb43dc8756a0 -timeCreated: 1491826543 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/LensDistortion.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/LensDistortion.cs deleted file mode 100644 index becf762ea..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/LensDistortion.cs +++ /dev/null @@ -1,80 +0,0 @@ -using System; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// This class holds settings for the Lens Distortion effect. - /// - [Serializable] - [PostProcess(typeof(LensDistortionRenderer), "Unity/Lens Distortion")] - public sealed class LensDistortion : PostProcessEffectSettings - { - /// - /// The total amount of distortion to apply. - /// - [Range(-100f, 100f), Tooltip("Total distortion amount.")] - public FloatParameter intensity = new FloatParameter { value = 0f }; - - /// - /// Multiplies the intensity value on the x-axis. Setting this value to 0 will disable distortion on this axis. - /// - [Range(0f, 1f), DisplayName("X Multiplier"), Tooltip("Intensity multiplier on the x-axis. Set it to 0 to disable distortion on this axis.")] - public FloatParameter intensityX = new FloatParameter { value = 1f }; - - /// - /// Multiplies the intensity value on the y-axis. Setting this value to 0 will disable distortion on this axis. - /// - [Range(0f, 1f), DisplayName("Y Multiplier"), Tooltip("Intensity multiplier on the y-axis. Set it to 0 to disable distortion on this axis.")] - public FloatParameter intensityY = new FloatParameter { value = 1f }; - - /// - /// The center point for the distortion (x-axis). - /// - [Space] - [Range(-1f, 1f), Tooltip("Distortion center point (x-axis).")] - public FloatParameter centerX = new FloatParameter { value = 0f }; - - /// - /// The center point for the distortion (y-axis). - /// - [Range(-1f, 1f), Tooltip("Distortion center point (y-axis).")] - public FloatParameter centerY = new FloatParameter { value = 0f }; - - /// - /// A global screen scaling factor. - /// - [Space] - [Range(0.01f, 5f), Tooltip("Global screen scaling.")] - public FloatParameter scale = new FloatParameter { value = 1f }; - - /// - public override bool IsEnabledAndSupported(PostProcessRenderContext context) - { - return enabled.value - && !Mathf.Approximately(intensity, 0f) - && (intensityX > 0f || intensityY > 0f) - && !RuntimeUtilities.isVREnabled; - } - } - -#if UNITY_2017_1_OR_NEWER - [UnityEngine.Scripting.Preserve] -#endif - internal sealed class LensDistortionRenderer : PostProcessEffectRenderer - { - public override void Render(PostProcessRenderContext context) - { - var sheet = context.uberSheet; - - float amount = 1.6f * Math.Max(Mathf.Abs(settings.intensity.value), 1f); - float theta = Mathf.Deg2Rad * Math.Min(160f, amount); - float sigma = 2f * Mathf.Tan(theta * 0.5f); - var p0 = new Vector4(settings.centerX.value, settings.centerY.value, Mathf.Max(settings.intensityX.value, 1e-4f), Mathf.Max(settings.intensityY.value, 1e-4f)); - var p1 = new Vector4(settings.intensity.value >= 0f ? theta : 1f / theta, sigma, 1f / settings.scale.value, settings.intensity.value); - - sheet.EnableKeyword("DISTORT"); - sheet.properties.SetVector(ShaderIDs.Distortion_CenterScale, p0); - sheet.properties.SetVector(ShaderIDs.Distortion_Amount, p1); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/LensDistortion.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/LensDistortion.cs.meta deleted file mode 100644 index bb6b529b0..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/LensDistortion.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 9b77c5407dc277943b591ade9e6b18c5 -timeCreated: 1519737209 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/MotionBlur.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/MotionBlur.cs deleted file mode 100644 index 2b299727a..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/MotionBlur.cs +++ /dev/null @@ -1,148 +0,0 @@ -using System; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// This class holds settings for the Motion Blur effect. - /// - [Serializable] - [PostProcess(typeof(MotionBlurRenderer), "Unity/Motion Blur", false)] - public sealed class MotionBlur : PostProcessEffectSettings - { - /// - /// The angle of the rotary shutter. Larger values give longer exposure therefore a stronger - /// blur effect. - /// - [Range(0f, 360f), Tooltip("The angle of rotary shutter. Larger values give longer exposure.")] - public FloatParameter shutterAngle = new FloatParameter { value = 270f }; - - /// - /// The amount of sample points, which affects quality and performances. - /// - [Range(4, 32), Tooltip("The amount of sample points. This affects quality and performance.")] - public IntParameter sampleCount = new IntParameter { value = 10 }; - - /// - public override bool IsEnabledAndSupported(PostProcessRenderContext context) - { - return enabled.value - && shutterAngle.value > 0f - #if UNITY_EDITOR - // Don't render motion blur preview when the editor is not playing as it can in some - // cases results in ugly artifacts (i.e. when resizing the game view). - && Application.isPlaying - #endif - && SystemInfo.supportsMotionVectors - && RenderTextureFormat.RGHalf.IsSupported() - && !RuntimeUtilities.isVREnabled; - } - } - -#if UNITY_2017_1_OR_NEWER - [UnityEngine.Scripting.Preserve] -#endif - internal sealed class MotionBlurRenderer : PostProcessEffectRenderer - { - enum Pass - { - VelocitySetup, - TileMax1, - TileMax2, - TileMaxV, - NeighborMax, - Reconstruction - } - - public override DepthTextureMode GetCameraFlags() - { - return DepthTextureMode.Depth | DepthTextureMode.MotionVectors; - } - - public override void Render(PostProcessRenderContext context) - { - var cmd = context.command; - - if (m_ResetHistory) - { - cmd.BlitFullscreenTriangle(context.source, context.destination); - m_ResetHistory = false; - return; - } - - const float kMaxBlurRadius = 5f; - var vectorRTFormat = RenderTextureFormat.RGHalf; - var packedRTFormat = RenderTextureFormat.ARGB2101010.IsSupported() - ? RenderTextureFormat.ARGB2101010 - : RenderTextureFormat.ARGB32; - - var sheet = context.propertySheets.Get(context.resources.shaders.motionBlur); - cmd.BeginSample("MotionBlur"); - - // Calculate the maximum blur radius in pixels. - int maxBlurPixels = (int)(kMaxBlurRadius * context.height / 100); - - // Calculate the TileMax size. - // It should be a multiple of 8 and larger than maxBlur. - int tileSize = ((maxBlurPixels - 1) / 8 + 1) * 8; - - // Pass 1 - Velocity/depth packing - var velocityScale = settings.shutterAngle / 360f; - sheet.properties.SetFloat(ShaderIDs.VelocityScale, velocityScale); - sheet.properties.SetFloat(ShaderIDs.MaxBlurRadius, maxBlurPixels); - sheet.properties.SetFloat(ShaderIDs.RcpMaxBlurRadius, 1f / maxBlurPixels); - - int vbuffer = ShaderIDs.VelocityTex; - cmd.GetTemporaryRT(vbuffer, context.width, context.height, 0, FilterMode.Point, - packedRTFormat, RenderTextureReadWrite.Linear); - cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, vbuffer, sheet, (int)Pass.VelocitySetup); - - // Pass 2 - First TileMax filter (1/2 downsize) - int tile2 = ShaderIDs.Tile2RT; - cmd.GetTemporaryRT(tile2, context.width / 2, context.height / 2, 0, FilterMode.Point, - vectorRTFormat, RenderTextureReadWrite.Linear); - cmd.BlitFullscreenTriangle(vbuffer, tile2, sheet, (int)Pass.TileMax1); - - // Pass 3 - Second TileMax filter (1/2 downsize) - int tile4 = ShaderIDs.Tile4RT; - cmd.GetTemporaryRT(tile4, context.width / 4, context.height / 4, 0, FilterMode.Point, - vectorRTFormat, RenderTextureReadWrite.Linear); - cmd.BlitFullscreenTriangle(tile2, tile4, sheet, (int)Pass.TileMax2); - cmd.ReleaseTemporaryRT(tile2); - - // Pass 4 - Third TileMax filter (1/2 downsize) - int tile8 = ShaderIDs.Tile8RT; - cmd.GetTemporaryRT(tile8, context.width / 8, context.height / 8, 0, FilterMode.Point, - vectorRTFormat, RenderTextureReadWrite.Linear); - cmd.BlitFullscreenTriangle(tile4, tile8, sheet, (int)Pass.TileMax2); - cmd.ReleaseTemporaryRT(tile4); - - // Pass 5 - Fourth TileMax filter (reduce to tileSize) - var tileMaxOffs = Vector2.one * (tileSize / 8f - 1f) * -0.5f; - sheet.properties.SetVector(ShaderIDs.TileMaxOffs, tileMaxOffs); - sheet.properties.SetFloat(ShaderIDs.TileMaxLoop, (int)(tileSize / 8f)); - - int tile = ShaderIDs.TileVRT; - cmd.GetTemporaryRT(tile, context.width / tileSize, context.height / tileSize, 0, - FilterMode.Point, vectorRTFormat, RenderTextureReadWrite.Linear); - cmd.BlitFullscreenTriangle(tile8, tile, sheet, (int)Pass.TileMaxV); - cmd.ReleaseTemporaryRT(tile8); - - // Pass 6 - NeighborMax filter - int neighborMax = ShaderIDs.NeighborMaxTex; - int neighborMaxWidth = context.width / tileSize; - int neighborMaxHeight = context.height / tileSize; - cmd.GetTemporaryRT(neighborMax, neighborMaxWidth, neighborMaxHeight, 0, - FilterMode.Point, vectorRTFormat, RenderTextureReadWrite.Linear); - cmd.BlitFullscreenTriangle(tile, neighborMax, sheet, (int)Pass.NeighborMax); - cmd.ReleaseTemporaryRT(tile); - - // Pass 7 - Reconstruction pass - sheet.properties.SetFloat(ShaderIDs.LoopCount, Mathf.Clamp(settings.sampleCount / 2, 1, 64)); - cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)Pass.Reconstruction); - - cmd.ReleaseTemporaryRT(vbuffer); - cmd.ReleaseTemporaryRT(neighborMax); - cmd.EndSample("MotionBlur"); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/MotionBlur.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/MotionBlur.cs.meta deleted file mode 100644 index c5ba8cd32..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/MotionBlur.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: b94fcd11afffcb142908bfcb1e261fba -timeCreated: 1491826543 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/MultiScaleVO.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/MultiScaleVO.cs deleted file mode 100644 index b7fb45f51..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/MultiScaleVO.cs +++ /dev/null @@ -1,565 +0,0 @@ -using System; - -namespace UnityEngine.Rendering.PostProcessing -{ - // Multi-scale volumetric obscurance - // TODO: Fix VR support - -#if UNITY_2017_1_OR_NEWER - [UnityEngine.Scripting.Preserve] - [Serializable] - internal sealed class MultiScaleVO : IAmbientOcclusionMethod - { - internal enum MipLevel { Original, L1, L2, L3, L4, L5, L6 } - - enum Pass - { - DepthCopy, - CompositionDeferred, - CompositionForward, - DebugOverlay - } - - // The arrays below are reused between frames to reduce GC allocation. - readonly float[] m_SampleThickness = - { - Mathf.Sqrt(1f - 0.2f * 0.2f), - Mathf.Sqrt(1f - 0.4f * 0.4f), - Mathf.Sqrt(1f - 0.6f * 0.6f), - Mathf.Sqrt(1f - 0.8f * 0.8f), - Mathf.Sqrt(1f - 0.2f * 0.2f - 0.2f * 0.2f), - Mathf.Sqrt(1f - 0.2f * 0.2f - 0.4f * 0.4f), - Mathf.Sqrt(1f - 0.2f * 0.2f - 0.6f * 0.6f), - Mathf.Sqrt(1f - 0.2f * 0.2f - 0.8f * 0.8f), - Mathf.Sqrt(1f - 0.4f * 0.4f - 0.4f * 0.4f), - Mathf.Sqrt(1f - 0.4f * 0.4f - 0.6f * 0.6f), - Mathf.Sqrt(1f - 0.4f * 0.4f - 0.8f * 0.8f), - Mathf.Sqrt(1f - 0.6f * 0.6f - 0.6f * 0.6f) - }; - - readonly float[] m_InvThicknessTable = new float[12]; - readonly float[] m_SampleWeightTable = new float[12]; - - readonly int[] m_Widths = new int[7]; - readonly int[] m_Heights = new int[7]; - - AmbientOcclusion m_Settings; - PropertySheet m_PropertySheet; - PostProcessResources m_Resources; - - // Can't use a temporary because we need to share it between cmdbuffers - also fixes a weird - // command buffer warning - RenderTexture m_AmbientOnlyAO; - - readonly RenderTargetIdentifier[] m_MRT = - { - BuiltinRenderTextureType.GBuffer0, // Albedo, Occ - BuiltinRenderTextureType.CameraTarget // Ambient - }; - - public MultiScaleVO(AmbientOcclusion settings) - { - m_Settings = settings; - } - - public DepthTextureMode GetCameraFlags() - { - return DepthTextureMode.Depth; - } - - // Special case for AO [because SRPs], please don't do this in other effects, it's bad - // practice in this framework - public void SetResources(PostProcessResources resources) - { - m_Resources = resources; - } - - void Alloc(CommandBuffer cmd, int id, MipLevel size, RenderTextureFormat format, bool uav) - { - int sizeId = (int)size; - cmd.GetTemporaryRT(id, new RenderTextureDescriptor - { - width = m_Widths[sizeId], - height = m_Heights[sizeId], - colorFormat = format, - depthBufferBits = 0, - volumeDepth = 1, - autoGenerateMips = false, - msaaSamples = 1, - enableRandomWrite = uav, - dimension = TextureDimension.Tex2D, - sRGB = false - }, FilterMode.Point); - } - - void AllocArray(CommandBuffer cmd, int id, MipLevel size, RenderTextureFormat format, bool uav) - { - int sizeId = (int)size; - cmd.GetTemporaryRT(id, new RenderTextureDescriptor - { - width = m_Widths[sizeId], - height = m_Heights[sizeId], - colorFormat = format, - depthBufferBits = 0, - volumeDepth = 16, - autoGenerateMips = false, - msaaSamples = 1, - enableRandomWrite = uav, - dimension = TextureDimension.Tex2DArray, - sRGB = false - }, FilterMode.Point); - } - - void Release(CommandBuffer cmd, int id) - { - cmd.ReleaseTemporaryRT(id); - } - - // Calculate values in _ZBuferParams (built-in shader variable) - // We can't use _ZBufferParams in compute shaders, so this function is - // used to give the values in it to compute shaders. - Vector4 CalculateZBufferParams(Camera camera) - { - float fpn = camera.farClipPlane / camera.nearClipPlane; - - if (SystemInfo.usesReversedZBuffer) - return new Vector4(fpn - 1f, 1f, 0f, 0f); - - return new Vector4(1f - fpn, fpn, 0f, 0f); - } - - float CalculateTanHalfFovHeight(Camera camera) - { - return 1f / camera.projectionMatrix[0, 0]; - } - - Vector2 GetSize(MipLevel mip) - { - return new Vector2(m_Widths[(int)mip], m_Heights[(int)mip]); - } - - Vector3 GetSizeArray(MipLevel mip) - { - return new Vector3(m_Widths[(int)mip], m_Heights[(int)mip], 16); - } - - public void GenerateAOMap(CommandBuffer cmd, Camera camera, RenderTargetIdentifier destination, RenderTargetIdentifier? depthMap, bool invert, bool isMSAA) - { - // Base size - m_Widths[0] = camera.pixelWidth * (RuntimeUtilities.isSinglePassStereoEnabled ? 2 : 1); - m_Heights[0] = camera.pixelHeight; - - // L1 -> L6 sizes - for (int i = 1; i < 7; i++) - { - int div = 1 << i; - m_Widths[i] = (m_Widths[0] + (div - 1)) / div; - m_Heights[i] = (m_Heights[0] + (div - 1)) / div; - } - - // Allocate temporary textures - PushAllocCommands(cmd, isMSAA); - - // Render logic - PushDownsampleCommands(cmd, camera, depthMap, isMSAA); - - float tanHalfFovH = CalculateTanHalfFovHeight(camera); - PushRenderCommands(cmd, ShaderIDs.TiledDepth1, ShaderIDs.Occlusion1, GetSizeArray(MipLevel.L3), tanHalfFovH, isMSAA); - PushRenderCommands(cmd, ShaderIDs.TiledDepth2, ShaderIDs.Occlusion2, GetSizeArray(MipLevel.L4), tanHalfFovH, isMSAA); - PushRenderCommands(cmd, ShaderIDs.TiledDepth3, ShaderIDs.Occlusion3, GetSizeArray(MipLevel.L5), tanHalfFovH, isMSAA); - PushRenderCommands(cmd, ShaderIDs.TiledDepth4, ShaderIDs.Occlusion4, GetSizeArray(MipLevel.L6), tanHalfFovH, isMSAA); - - PushUpsampleCommands(cmd, ShaderIDs.LowDepth4, ShaderIDs.Occlusion4, ShaderIDs.LowDepth3, ShaderIDs.Occlusion3, ShaderIDs.Combined3, GetSize(MipLevel.L4), GetSize(MipLevel.L3), isMSAA); - PushUpsampleCommands(cmd, ShaderIDs.LowDepth3, ShaderIDs.Combined3, ShaderIDs.LowDepth2, ShaderIDs.Occlusion2, ShaderIDs.Combined2, GetSize(MipLevel.L3), GetSize(MipLevel.L2), isMSAA); - PushUpsampleCommands(cmd, ShaderIDs.LowDepth2, ShaderIDs.Combined2, ShaderIDs.LowDepth1, ShaderIDs.Occlusion1, ShaderIDs.Combined1, GetSize(MipLevel.L2), GetSize(MipLevel.L1), isMSAA); - PushUpsampleCommands(cmd, ShaderIDs.LowDepth1, ShaderIDs.Combined1, ShaderIDs.LinearDepth, null, destination, GetSize(MipLevel.L1), GetSize(MipLevel.Original), isMSAA, invert); - - // Cleanup - PushReleaseCommands(cmd); - } - - void PushAllocCommands(CommandBuffer cmd, bool isMSAA) - { - if(isMSAA) - { - Alloc(cmd, ShaderIDs.LinearDepth, MipLevel.Original, RenderTextureFormat.RGHalf, true); - - Alloc(cmd, ShaderIDs.LowDepth1, MipLevel.L1, RenderTextureFormat.RGFloat, true); - Alloc(cmd, ShaderIDs.LowDepth2, MipLevel.L2, RenderTextureFormat.RGFloat, true); - Alloc(cmd, ShaderIDs.LowDepth3, MipLevel.L3, RenderTextureFormat.RGFloat, true); - Alloc(cmd, ShaderIDs.LowDepth4, MipLevel.L4, RenderTextureFormat.RGFloat, true); - - AllocArray(cmd, ShaderIDs.TiledDepth1, MipLevel.L3, RenderTextureFormat.RGHalf, true); - AllocArray(cmd, ShaderIDs.TiledDepth2, MipLevel.L4, RenderTextureFormat.RGHalf, true); - AllocArray(cmd, ShaderIDs.TiledDepth3, MipLevel.L5, RenderTextureFormat.RGHalf, true); - AllocArray(cmd, ShaderIDs.TiledDepth4, MipLevel.L6, RenderTextureFormat.RGHalf, true); - - Alloc(cmd, ShaderIDs.Occlusion1, MipLevel.L1, RenderTextureFormat.RG16, true); - Alloc(cmd, ShaderIDs.Occlusion2, MipLevel.L2, RenderTextureFormat.RG16, true); - Alloc(cmd, ShaderIDs.Occlusion3, MipLevel.L3, RenderTextureFormat.RG16, true); - Alloc(cmd, ShaderIDs.Occlusion4, MipLevel.L4, RenderTextureFormat.RG16, true); - - Alloc(cmd, ShaderIDs.Combined1, MipLevel.L1, RenderTextureFormat.RG16, true); - Alloc(cmd, ShaderIDs.Combined2, MipLevel.L2, RenderTextureFormat.RG16, true); - Alloc(cmd, ShaderIDs.Combined3, MipLevel.L3, RenderTextureFormat.RG16, true); - } - else - { - Alloc(cmd, ShaderIDs.LinearDepth, MipLevel.Original, RenderTextureFormat.RHalf, true); - - Alloc(cmd, ShaderIDs.LowDepth1, MipLevel.L1, RenderTextureFormat.RFloat, true); - Alloc(cmd, ShaderIDs.LowDepth2, MipLevel.L2, RenderTextureFormat.RFloat, true); - Alloc(cmd, ShaderIDs.LowDepth3, MipLevel.L3, RenderTextureFormat.RFloat, true); - Alloc(cmd, ShaderIDs.LowDepth4, MipLevel.L4, RenderTextureFormat.RFloat, true); - - AllocArray(cmd, ShaderIDs.TiledDepth1, MipLevel.L3, RenderTextureFormat.RHalf, true); - AllocArray(cmd, ShaderIDs.TiledDepth2, MipLevel.L4, RenderTextureFormat.RHalf, true); - AllocArray(cmd, ShaderIDs.TiledDepth3, MipLevel.L5, RenderTextureFormat.RHalf, true); - AllocArray(cmd, ShaderIDs.TiledDepth4, MipLevel.L6, RenderTextureFormat.RHalf, true); - - Alloc(cmd, ShaderIDs.Occlusion1, MipLevel.L1, RenderTextureFormat.R8, true); - Alloc(cmd, ShaderIDs.Occlusion2, MipLevel.L2, RenderTextureFormat.R8, true); - Alloc(cmd, ShaderIDs.Occlusion3, MipLevel.L3, RenderTextureFormat.R8, true); - Alloc(cmd, ShaderIDs.Occlusion4, MipLevel.L4, RenderTextureFormat.R8, true); - - Alloc(cmd, ShaderIDs.Combined1, MipLevel.L1, RenderTextureFormat.R8, true); - Alloc(cmd, ShaderIDs.Combined2, MipLevel.L2, RenderTextureFormat.R8, true); - Alloc(cmd, ShaderIDs.Combined3, MipLevel.L3, RenderTextureFormat.R8, true); - } - } - - void PushDownsampleCommands(CommandBuffer cmd, Camera camera, RenderTargetIdentifier? depthMap, bool isMSAA) - { - RenderTargetIdentifier depthMapId; - bool needDepthMapRelease = false; - - if (depthMap != null) - { - depthMapId = depthMap.Value; - } - else - { - // Make a copy of the depth texture, or reuse the resolved depth - // buffer (it's only available in some specific situations). - if (!RuntimeUtilities.IsResolvedDepthAvailable(camera)) - { - Alloc(cmd, ShaderIDs.DepthCopy, MipLevel.Original, RenderTextureFormat.RFloat, false); - depthMapId = new RenderTargetIdentifier(ShaderIDs.DepthCopy); - cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, depthMapId, m_PropertySheet, (int)Pass.DepthCopy); - needDepthMapRelease = true; - } - else - { - depthMapId = BuiltinRenderTextureType.ResolvedDepth; - } - } - - // 1st downsampling pass. - var cs = m_Resources.computeShaders.multiScaleAODownsample1; - int kernel = cs.FindKernel(isMSAA ? "MultiScaleVODownsample1_MSAA" : "MultiScaleVODownsample1"); - - cmd.SetComputeTextureParam(cs, kernel, "LinearZ", ShaderIDs.LinearDepth); - cmd.SetComputeTextureParam(cs, kernel, "DS2x", ShaderIDs.LowDepth1); - cmd.SetComputeTextureParam(cs, kernel, "DS4x", ShaderIDs.LowDepth2); - cmd.SetComputeTextureParam(cs, kernel, "DS2xAtlas", ShaderIDs.TiledDepth1); - cmd.SetComputeTextureParam(cs, kernel, "DS4xAtlas", ShaderIDs.TiledDepth2); - cmd.SetComputeVectorParam(cs, "ZBufferParams", CalculateZBufferParams(camera)); - cmd.SetComputeTextureParam(cs, kernel, "Depth", depthMapId); - - cmd.DispatchCompute(cs, kernel, m_Widths[(int)MipLevel.L4], m_Heights[(int)MipLevel.L4], 1); - - if (needDepthMapRelease) - Release(cmd, ShaderIDs.DepthCopy); - - // 2nd downsampling pass. - cs = m_Resources.computeShaders.multiScaleAODownsample2; - kernel = isMSAA ? cs.FindKernel("MultiScaleVODownsample2_MSAA") : cs.FindKernel("MultiScaleVODownsample2"); - - cmd.SetComputeTextureParam(cs, kernel, "DS4x", ShaderIDs.LowDepth2); - cmd.SetComputeTextureParam(cs, kernel, "DS8x", ShaderIDs.LowDepth3); - cmd.SetComputeTextureParam(cs, kernel, "DS16x", ShaderIDs.LowDepth4); - cmd.SetComputeTextureParam(cs, kernel, "DS8xAtlas", ShaderIDs.TiledDepth3); - cmd.SetComputeTextureParam(cs, kernel, "DS16xAtlas", ShaderIDs.TiledDepth4); - - cmd.DispatchCompute(cs, kernel, m_Widths[(int)MipLevel.L6], m_Heights[(int)MipLevel.L6], 1); - } - - void PushRenderCommands(CommandBuffer cmd, int source, int destination, Vector3 sourceSize, float tanHalfFovH, bool isMSAA) - { - // Here we compute multipliers that convert the center depth value into (the reciprocal - // of) sphere thicknesses at each sample location. This assumes a maximum sample radius - // of 5 units, but since a sphere has no thickness at its extent, we don't need to - // sample that far out. Only samples whole integer offsets with distance less than 25 - // are used. This means that there is no sample at (3, 4) because its distance is - // exactly 25 (and has a thickness of 0.) - - // The shaders are set up to sample a circular region within a 5-pixel radius. - const float kScreenspaceDiameter = 10f; - - // SphereDiameter = CenterDepth * ThicknessMultiplier. This will compute the thickness - // of a sphere centered at a specific depth. The ellipsoid scale can stretch a sphere - // into an ellipsoid, which changes the characteristics of the AO. - // TanHalfFovH: Radius of sphere in depth units if its center lies at Z = 1 - // ScreenspaceDiameter: Diameter of sample sphere in pixel units - // ScreenspaceDiameter / BufferWidth: Ratio of the screen width that the sphere actually covers - float thicknessMultiplier = 2f * tanHalfFovH * kScreenspaceDiameter / sourceSize.x; - if (RuntimeUtilities.isSinglePassStereoEnabled) - thicknessMultiplier *= 2f; - - // This will transform a depth value from [0, thickness] to [0, 1]. - float inverseRangeFactor = 1f / thicknessMultiplier; - - // The thicknesses are smaller for all off-center samples of the sphere. Compute - // thicknesses relative to the center sample. - for (int i = 0; i < 12; i++) - m_InvThicknessTable[i] = inverseRangeFactor / m_SampleThickness[i]; - - // These are the weights that are multiplied against the samples because not all samples - // are equally important. The farther the sample is from the center location, the less - // they matter. We use the thickness of the sphere to determine the weight. The scalars - // in front are the number of samples with this weight because we sum the samples - // together before multiplying by the weight, so as an aggregate all of those samples - // matter more. After generating this table, the weights are normalized. - m_SampleWeightTable[ 0] = 4 * m_SampleThickness[ 0]; // Axial - m_SampleWeightTable[ 1] = 4 * m_SampleThickness[ 1]; // Axial - m_SampleWeightTable[ 2] = 4 * m_SampleThickness[ 2]; // Axial - m_SampleWeightTable[ 3] = 4 * m_SampleThickness[ 3]; // Axial - m_SampleWeightTable[ 4] = 4 * m_SampleThickness[ 4]; // Diagonal - m_SampleWeightTable[ 5] = 8 * m_SampleThickness[ 5]; // L-shaped - m_SampleWeightTable[ 6] = 8 * m_SampleThickness[ 6]; // L-shaped - m_SampleWeightTable[ 7] = 8 * m_SampleThickness[ 7]; // L-shaped - m_SampleWeightTable[ 8] = 4 * m_SampleThickness[ 8]; // Diagonal - m_SampleWeightTable[ 9] = 8 * m_SampleThickness[ 9]; // L-shaped - m_SampleWeightTable[10] = 8 * m_SampleThickness[10]; // L-shaped - m_SampleWeightTable[11] = 4 * m_SampleThickness[11]; // Diagonal - - // Zero out the unused samples. - // FIXME: should we support SAMPLE_EXHAUSTIVELY mode? - m_SampleWeightTable[0] = 0; - m_SampleWeightTable[2] = 0; - m_SampleWeightTable[5] = 0; - m_SampleWeightTable[7] = 0; - m_SampleWeightTable[9] = 0; - - // Normalize the weights by dividing by the sum of all weights - var totalWeight = 0f; - - foreach (float w in m_SampleWeightTable) - totalWeight += w; - - for (int i = 0; i < m_SampleWeightTable.Length; i++) - m_SampleWeightTable[i] /= totalWeight; - - // Set the arguments for the render kernel. - var cs = m_Resources.computeShaders.multiScaleAORender; - int kernel = isMSAA ? cs.FindKernel("MultiScaleVORender_MSAA_interleaved") : cs.FindKernel("MultiScaleVORender_interleaved"); - - cmd.SetComputeFloatParams(cs, "gInvThicknessTable", m_InvThicknessTable); - cmd.SetComputeFloatParams(cs, "gSampleWeightTable", m_SampleWeightTable); - cmd.SetComputeVectorParam(cs, "gInvSliceDimension", new Vector2(1f / sourceSize.x, 1f / sourceSize.y)); - cmd.SetComputeVectorParam(cs, "AdditionalParams", new Vector2(-1f / m_Settings.thicknessModifier.value, m_Settings.intensity.value)); - cmd.SetComputeTextureParam(cs, kernel, "DepthTex", source); - cmd.SetComputeTextureParam(cs, kernel, "Occlusion", destination); - - // Calculate the thread group count and add a dispatch command with them. - uint xsize, ysize, zsize; - cs.GetKernelThreadGroupSizes(kernel, out xsize, out ysize, out zsize); - - cmd.DispatchCompute( - cs, kernel, - ((int)sourceSize.x + (int)xsize - 1) / (int)xsize, - ((int)sourceSize.y + (int)ysize - 1) / (int)ysize, - ((int)sourceSize.z + (int)zsize - 1) / (int)zsize - ); - } - - void PushUpsampleCommands(CommandBuffer cmd, int lowResDepth, int interleavedAO, int highResDepth, int? highResAO, RenderTargetIdentifier dest, Vector3 lowResDepthSize, Vector2 highResDepthSize, bool isMSAA, bool invert = false) - { - var cs = m_Resources.computeShaders.multiScaleAOUpsample; - int kernel = 0; - if (!isMSAA) - { - kernel = cs.FindKernel(highResAO == null ? invert - ? "MultiScaleVOUpSample_invert" - : "MultiScaleVOUpSample" - : "MultiScaleVOUpSample_blendout"); - } - else - { - kernel = cs.FindKernel(highResAO == null ? invert - ? "MultiScaleVOUpSample_MSAA_invert" - : "MultiScaleVOUpSample_MSAA" - : "MultiScaleVOUpSample_MSAA_blendout"); - } - - - float stepSize = 1920f / lowResDepthSize.x; - float bTolerance = 1f - Mathf.Pow(10f, m_Settings.blurTolerance.value) * stepSize; - bTolerance *= bTolerance; - float uTolerance = Mathf.Pow(10f, m_Settings.upsampleTolerance.value); - float noiseFilterWeight = 1f / (Mathf.Pow(10f, m_Settings.noiseFilterTolerance.value) + uTolerance); - - cmd.SetComputeVectorParam(cs, "InvLowResolution", new Vector2(1f / lowResDepthSize.x, 1f / lowResDepthSize.y)); - cmd.SetComputeVectorParam(cs, "InvHighResolution", new Vector2(1f / highResDepthSize.x, 1f / highResDepthSize.y)); - cmd.SetComputeVectorParam(cs, "AdditionalParams", new Vector4(noiseFilterWeight, stepSize, bTolerance, uTolerance)); - - cmd.SetComputeTextureParam(cs, kernel, "LoResDB", lowResDepth); - cmd.SetComputeTextureParam(cs, kernel, "HiResDB", highResDepth); - cmd.SetComputeTextureParam(cs, kernel, "LoResAO1", interleavedAO); - - if (highResAO != null) - cmd.SetComputeTextureParam(cs, kernel, "HiResAO", highResAO.Value); - - cmd.SetComputeTextureParam(cs, kernel, "AoResult", dest); - - int xcount = ((int)highResDepthSize.x + 17) / 16; - int ycount = ((int)highResDepthSize.y + 17) / 16; - cmd.DispatchCompute(cs, kernel, xcount, ycount, 1); - } - - void PushReleaseCommands(CommandBuffer cmd) - { - Release(cmd, ShaderIDs.LinearDepth); - - Release(cmd, ShaderIDs.LowDepth1); - Release(cmd, ShaderIDs.LowDepth2); - Release(cmd, ShaderIDs.LowDepth3); - Release(cmd, ShaderIDs.LowDepth4); - - Release(cmd, ShaderIDs.TiledDepth1); - Release(cmd, ShaderIDs.TiledDepth2); - Release(cmd, ShaderIDs.TiledDepth3); - Release(cmd, ShaderIDs.TiledDepth4); - - Release(cmd, ShaderIDs.Occlusion1); - Release(cmd, ShaderIDs.Occlusion2); - Release(cmd, ShaderIDs.Occlusion3); - Release(cmd, ShaderIDs.Occlusion4); - - Release(cmd, ShaderIDs.Combined1); - Release(cmd, ShaderIDs.Combined2); - Release(cmd, ShaderIDs.Combined3); - } - - void PreparePropertySheet(PostProcessRenderContext context) - { - var sheet = context.propertySheets.Get(m_Resources.shaders.multiScaleAO); - sheet.ClearKeywords(); - sheet.properties.SetVector(ShaderIDs.AOColor, Color.white - m_Settings.color.value); - m_PropertySheet = sheet; - } - - void CheckAOTexture(PostProcessRenderContext context) - { - if (m_AmbientOnlyAO == null || !m_AmbientOnlyAO.IsCreated() || m_AmbientOnlyAO.width != context.width || m_AmbientOnlyAO.height != context.height) - { - RuntimeUtilities.Destroy(m_AmbientOnlyAO); - - m_AmbientOnlyAO = new RenderTexture(context.width, context.height, 0, RenderTextureFormat.R8, RenderTextureReadWrite.Linear) - { - hideFlags = HideFlags.DontSave, - filterMode = FilterMode.Point, - enableRandomWrite = true - }; - m_AmbientOnlyAO.Create(); - } - } - - void PushDebug(PostProcessRenderContext context) - { - if (context.IsDebugOverlayEnabled(DebugOverlay.AmbientOcclusion)) - context.PushDebugOverlay(context.command, m_AmbientOnlyAO, m_PropertySheet, (int)Pass.DebugOverlay); - } - - public void RenderAfterOpaque(PostProcessRenderContext context) - { - var cmd = context.command; - cmd.BeginSample("Ambient Occlusion"); - SetResources(context.resources); - PreparePropertySheet(context); - CheckAOTexture(context); - - // In Forward mode, fog is applied at the object level in the grometry pass so we need - // to apply it to AO as well or it'll drawn on top of the fog effect. - if (context.camera.actualRenderingPath == RenderingPath.Forward && RenderSettings.fog) - { - m_PropertySheet.EnableKeyword("APPLY_FORWARD_FOG"); - m_PropertySheet.properties.SetVector( - ShaderIDs.FogParams, - new Vector3(RenderSettings.fogDensity, RenderSettings.fogStartDistance, RenderSettings.fogEndDistance) - ); - } - - GenerateAOMap(cmd, context.camera, m_AmbientOnlyAO, null, false, false); - PushDebug(context); - cmd.SetGlobalTexture(ShaderIDs.MSVOcclusionTexture, m_AmbientOnlyAO); - cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, BuiltinRenderTextureType.CameraTarget, m_PropertySheet, (int)Pass.CompositionForward, RenderBufferLoadAction.Load); - cmd.EndSample("Ambient Occlusion"); - } - - public void RenderAmbientOnly(PostProcessRenderContext context) - { - var cmd = context.command; - cmd.BeginSample("Ambient Occlusion Render"); - SetResources(context.resources); - PreparePropertySheet(context); - CheckAOTexture(context); - GenerateAOMap(cmd, context.camera, m_AmbientOnlyAO, null, false, false); - PushDebug(context); - cmd.EndSample("Ambient Occlusion Render"); - } - - public void CompositeAmbientOnly(PostProcessRenderContext context) - { - var cmd = context.command; - cmd.BeginSample("Ambient Occlusion Composite"); - cmd.SetGlobalTexture(ShaderIDs.MSVOcclusionTexture, m_AmbientOnlyAO); - cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, m_MRT, BuiltinRenderTextureType.CameraTarget, m_PropertySheet, (int)Pass.CompositionDeferred); - cmd.EndSample("Ambient Occlusion Composite"); - } - - public void Release() - { - RuntimeUtilities.Destroy(m_AmbientOnlyAO); - m_AmbientOnlyAO = null; - } - } -#else - [Serializable] - public sealed class MultiScaleVO : IAmbientOcclusionMethod - { - public MultiScaleVO(AmbientOcclusion settings) - { - } - - public void SetResources(PostProcessResources resources) - { - } - - public DepthTextureMode GetCameraFlags() - { - return DepthTextureMode.None; - } - - public void GenerateAOMap(CommandBuffer cmd, Camera camera, RenderTargetIdentifier destination, RenderTargetIdentifier? depthMap, bool invert, bool isMSAA) - { - } - - public void RenderAfterOpaque(PostProcessRenderContext context) - { - } - - public void RenderAmbientOnly(PostProcessRenderContext context) - { - } - - public void CompositeAmbientOnly(PostProcessRenderContext context) - { - } - - public void Release() - { - } - } -#endif -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/MultiScaleVO.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/MultiScaleVO.cs.meta deleted file mode 100644 index f7f7f9535..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/MultiScaleVO.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: f59da4cf1b7dee244bc37fa6add23b00 -timeCreated: 1503308000 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/ScalableAO.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/ScalableAO.cs deleted file mode 100644 index 1bee85969..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/ScalableAO.cs +++ /dev/null @@ -1,169 +0,0 @@ -using System; - -namespace UnityEngine.Rendering.PostProcessing -{ - // Scalable ambient obscurance -#if UNITY_2017_1_OR_NEWER - [UnityEngine.Scripting.Preserve] -#endif - [Serializable] - internal sealed class ScalableAO : IAmbientOcclusionMethod - { - RenderTexture m_Result; - PropertySheet m_PropertySheet; - AmbientOcclusion m_Settings; - - readonly RenderTargetIdentifier[] m_MRT = - { - BuiltinRenderTextureType.GBuffer0, // Albedo, Occ - BuiltinRenderTextureType.CameraTarget // Ambient - }; - - readonly int[] m_SampleCount = { 4, 6, 10, 8, 12 }; - - enum Pass - { - OcclusionEstimationForward, - OcclusionEstimationDeferred, - HorizontalBlurForward, - HorizontalBlurDeferred, - VerticalBlur, - CompositionForward, - CompositionDeferred, - DebugOverlay - } - - public ScalableAO(AmbientOcclusion settings) - { - m_Settings = settings; - } - - public DepthTextureMode GetCameraFlags() - { - return DepthTextureMode.Depth | DepthTextureMode.DepthNormals; - } - - void DoLazyInitialization(PostProcessRenderContext context) - { - m_PropertySheet = context.propertySheets.Get(context.resources.shaders.scalableAO); - - bool reset = false; - - if (m_Result == null || !m_Result.IsCreated()) - { - // Initial allocation - m_Result = context.GetScreenSpaceTemporaryRT(0, RenderTextureFormat.ARGB32, RenderTextureReadWrite.Linear); - m_Result.hideFlags = HideFlags.DontSave; - m_Result.filterMode = FilterMode.Bilinear; - - reset = true; - } - else if (m_Result.width != context.width || m_Result.height != context.height) - { - // Release and reallocate - m_Result.Release(); - m_Result.width = context.width; - m_Result.height = context.height; - reset = true; - } - - if (reset) - m_Result.Create(); - } - - void Render(PostProcessRenderContext context, CommandBuffer cmd, int occlusionSource) - { - DoLazyInitialization(context); - m_Settings.radius.value = Mathf.Max(m_Settings.radius.value, 1e-4f); - - // Material setup - // Always use a quater-res AO buffer unless High/Ultra quality is set. - bool downsampling = (int)m_Settings.quality.value < (int)AmbientOcclusionQuality.High; - float px = m_Settings.intensity.value; - float py = m_Settings.radius.value; - float pz = downsampling ? 0.5f : 1f; - float pw = m_SampleCount[(int)m_Settings.quality.value]; - - var sheet = m_PropertySheet; - sheet.ClearKeywords(); - sheet.properties.SetVector(ShaderIDs.AOParams, new Vector4(px, py, pz, pw)); - sheet.properties.SetVector(ShaderIDs.AOColor, Color.white - m_Settings.color.value); - - // In forward fog is applied at the object level in the grometry pass so we need to - // apply it to AO as well or it'll drawn on top of the fog effect. - // Not needed in Deferred. - if (context.camera.actualRenderingPath == RenderingPath.Forward && RenderSettings.fog) - { - sheet.EnableKeyword("APPLY_FORWARD_FOG"); - sheet.properties.SetVector( - ShaderIDs.FogParams, - new Vector3(RenderSettings.fogDensity, RenderSettings.fogStartDistance, RenderSettings.fogEndDistance) - ); - } - - // Texture setup - int ts = downsampling ? 2 : 1; - const RenderTextureFormat kFormat = RenderTextureFormat.ARGB32; - const RenderTextureReadWrite kRWMode = RenderTextureReadWrite.Linear; - const FilterMode kFilter = FilterMode.Bilinear; - - // AO buffer - var rtMask = ShaderIDs.OcclusionTexture1; - int scaledWidth = context.width / ts; - int scaledHeight = context.height / ts; - context.GetScreenSpaceTemporaryRT(cmd, rtMask, 0, kFormat, kRWMode, kFilter, scaledWidth, scaledHeight); - - // AO estimation - cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, rtMask, sheet, (int)Pass.OcclusionEstimationForward + occlusionSource); - - // Blur buffer - var rtBlur = ShaderIDs.OcclusionTexture2; - context.GetScreenSpaceTemporaryRT(cmd, rtBlur, 0, kFormat, kRWMode, kFilter); - - // Separable blur (horizontal pass) - cmd.BlitFullscreenTriangle(rtMask, rtBlur, sheet, (int)Pass.HorizontalBlurForward + occlusionSource); - cmd.ReleaseTemporaryRT(rtMask); - - // Separable blur (vertical pass) - cmd.BlitFullscreenTriangle(rtBlur, m_Result, sheet, (int)Pass.VerticalBlur); - cmd.ReleaseTemporaryRT(rtBlur); - - if (context.IsDebugOverlayEnabled(DebugOverlay.AmbientOcclusion)) - context.PushDebugOverlay(cmd, m_Result, sheet, (int)Pass.DebugOverlay); - } - - public void RenderAfterOpaque(PostProcessRenderContext context) - { - var cmd = context.command; - cmd.BeginSample("Ambient Occlusion"); - Render(context, cmd, 0); - cmd.SetGlobalTexture(ShaderIDs.SAOcclusionTexture, m_Result); - cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, BuiltinRenderTextureType.CameraTarget, m_PropertySheet, (int)Pass.CompositionForward, RenderBufferLoadAction.Load); - cmd.EndSample("Ambient Occlusion"); - } - - public void RenderAmbientOnly(PostProcessRenderContext context) - { - var cmd = context.command; - cmd.BeginSample("Ambient Occlusion Render"); - Render(context, cmd, 1); - cmd.EndSample("Ambient Occlusion Render"); - } - - public void CompositeAmbientOnly(PostProcessRenderContext context) - { - var cmd = context.command; - cmd.BeginSample("Ambient Occlusion Composite"); - cmd.SetGlobalTexture(ShaderIDs.SAOcclusionTexture, m_Result); - cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, m_MRT, BuiltinRenderTextureType.CameraTarget, m_PropertySheet, (int)Pass.CompositionDeferred); - cmd.EndSample("Ambient Occlusion Composite"); - } - - public void Release() - { - RuntimeUtilities.Destroy(m_Result); - m_Result = null; - } - } -} - diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/ScalableAO.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/ScalableAO.cs.meta deleted file mode 100644 index 41a662c5a..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/ScalableAO.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: c564cc69bd8582a48b2e0a2090d28361 -timeCreated: 1503307993 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/ScreenSpaceReflections.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/ScreenSpaceReflections.cs deleted file mode 100644 index 3d9f5606b..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/ScreenSpaceReflections.cs +++ /dev/null @@ -1,303 +0,0 @@ -using System; -using UnityEngine.Assertions; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// Screen-space Reflections quality presets. - /// - public enum ScreenSpaceReflectionPreset - { - Lower, Low, Medium, High, Higher, Ultra, Overkill, Custom - } - - /// - /// Screen-space Reflections buffer sizes. - /// - public enum ScreenSpaceReflectionResolution - { - /// - /// Downsampled buffer. Faster but lower quality. - /// - Downsampled, - - /// - /// Full-sized buffer. Slower but higher quality. - /// - FullSize, - - /// - /// Supersampled buffer. Very slow but much higher quality. - /// - Supersampled - } - - /// - /// A volume parameter holding a value. - /// - [Serializable] - public sealed class ScreenSpaceReflectionPresetParameter : ParameterOverride { } - - /// - /// A volume parameter holding a value. - /// - [Serializable] - public sealed class ScreenSpaceReflectionResolutionParameter : ParameterOverride { } - - /// - /// This class holds settings for the Screen-space Reflections effect. - /// - [Serializable] - [PostProcess(typeof(ScreenSpaceReflectionsRenderer), "Unity/Screen-space reflections")] - public sealed class ScreenSpaceReflections : PostProcessEffectSettings - { - /// - /// The quality preset to use for rendering. Use - /// to tweak settings. - /// - [Tooltip("Choose a quality preset, or use \"Custom\" to create your own custom preset. Don't use a preset higher than \"Medium\" if you desire good performance on consoles.")] - public ScreenSpaceReflectionPresetParameter preset = new ScreenSpaceReflectionPresetParameter { value = ScreenSpaceReflectionPreset.Medium }; - - /// - /// The maximum number of steps in the raymarching pass. Higher values mean more reflections. - /// - [Range(0, 256), Tooltip("Maximum number of steps in the raymarching pass. Higher values mean more reflections.")] - public IntParameter maximumIterationCount = new IntParameter { value = 16 }; - - /// - /// Changes the size of the internal buffer. Downsample it to maximize performances or - /// supersample it to get slow but higher quality results. - /// - [Tooltip("Changes the size of the SSR buffer. Downsample it to maximize performances or supersample it for higher quality results with reduced performance.")] - public ScreenSpaceReflectionResolutionParameter resolution = new ScreenSpaceReflectionResolutionParameter { value = ScreenSpaceReflectionResolution.Downsampled }; - - /// - /// The ray thickness. Lower values are more expensive but allow the effect to detect - /// smaller details. - /// - [Range(1f, 64f), Tooltip("Ray thickness. Lower values are more expensive but allow the effect to detect smaller details.")] - public FloatParameter thickness = new FloatParameter { value = 8f }; - - /// - /// The maximum distance to traverse in the scene after which it will stop drawing - /// reflections. - /// - [Tooltip("Maximum distance to traverse after which it will stop drawing reflections.")] - public FloatParameter maximumMarchDistance = new FloatParameter { value = 100f }; - - /// - /// Fades reflections close to the near plane. This is useful to hide common artifacts. - /// - [Range(0f, 1f), Tooltip("Fades reflections close to the near planes.")] - public FloatParameter distanceFade = new FloatParameter { value = 0.5f }; - - /// - /// Fades reflections close to the screen edges. - /// - [Range(0f, 1f), Tooltip("Fades reflections close to the screen edges.")] - public FloatParameter vignette = new FloatParameter { value = 0.5f }; - - /// - public override bool IsEnabledAndSupported(PostProcessRenderContext context) - { - return enabled - && context.camera.actualRenderingPath == RenderingPath.DeferredShading - && SystemInfo.supportsMotionVectors - && SystemInfo.supportsComputeShaders - && SystemInfo.copyTextureSupport > CopyTextureSupport.None - && context.resources.shaders.screenSpaceReflections - && context.resources.shaders.screenSpaceReflections.isSupported - && context.resources.computeShaders.gaussianDownsample; - } - } - -#if UNITY_2017_1_OR_NEWER - [UnityEngine.Scripting.Preserve] -#endif - internal sealed class ScreenSpaceReflectionsRenderer : PostProcessEffectRenderer - { - RenderTexture m_Resolve; - RenderTexture m_History; - int[] m_MipIDs; - - class QualityPreset - { - public int maximumIterationCount; - public float thickness; - public ScreenSpaceReflectionResolution downsampling; - } - - readonly QualityPreset[] m_Presets = - { - new QualityPreset { maximumIterationCount = 10, thickness = 32, downsampling = ScreenSpaceReflectionResolution.Downsampled }, // Lower - new QualityPreset { maximumIterationCount = 16, thickness = 32, downsampling = ScreenSpaceReflectionResolution.Downsampled }, // Low - new QualityPreset { maximumIterationCount = 32, thickness = 16, downsampling = ScreenSpaceReflectionResolution.Downsampled }, // Medium - new QualityPreset { maximumIterationCount = 48, thickness = 8, downsampling = ScreenSpaceReflectionResolution.Downsampled }, // High - new QualityPreset { maximumIterationCount = 16, thickness = 32, downsampling = ScreenSpaceReflectionResolution.FullSize }, // Higher - new QualityPreset { maximumIterationCount = 48, thickness = 16, downsampling = ScreenSpaceReflectionResolution.FullSize }, // Ultra - new QualityPreset { maximumIterationCount = 128, thickness = 12, downsampling = ScreenSpaceReflectionResolution.Supersampled }, // Overkill - }; - - enum Pass - { - Test, - Resolve, - Reproject, - Composite - } - - public override DepthTextureMode GetCameraFlags() - { - return DepthTextureMode.Depth | DepthTextureMode.MotionVectors; - } - - internal void CheckRT(ref RenderTexture rt, int width, int height, FilterMode filterMode, bool useMipMap) - { - if (rt == null || !rt.IsCreated() || rt.width != width || rt.height != height) - { - if (rt != null) - { - rt.Release(); - RuntimeUtilities.Destroy(rt); - } - - rt = new RenderTexture(width, height, 0, RuntimeUtilities.defaultHDRRenderTextureFormat) - { - filterMode = filterMode, - useMipMap = useMipMap, - autoGenerateMips = false, - hideFlags = HideFlags.HideAndDontSave - }; - - rt.Create(); - } - } - - public override void Render(PostProcessRenderContext context) - { - var cmd = context.command; - cmd.BeginSample("Screen-space Reflections"); - - // Get quality settings - if (settings.preset.value != ScreenSpaceReflectionPreset.Custom) - { - int id = (int)settings.preset.value; - settings.maximumIterationCount.value = m_Presets[id].maximumIterationCount; - settings.thickness.value = m_Presets[id].thickness; - settings.resolution.value = m_Presets[id].downsampling; - } - - settings.maximumMarchDistance.value = Mathf.Max(0f, settings.maximumMarchDistance.value); - - // Square POT target - int size = Mathf.ClosestPowerOfTwo(Mathf.Min(context.width, context.height)); - - if (settings.resolution.value == ScreenSpaceReflectionResolution.Downsampled) - size >>= 1; - else if (settings.resolution.value == ScreenSpaceReflectionResolution.Supersampled) - size <<= 1; - - // The gaussian pyramid compute works in blocks of 8x8 so make sure the last lod has a - // minimum size of 8x8 - const int kMaxLods = 12; - int lodCount = Mathf.FloorToInt(Mathf.Log(size, 2f) - 3f); - lodCount = Mathf.Min(lodCount, kMaxLods); - - CheckRT(ref m_Resolve, size, size, FilterMode.Trilinear, true); - - var noiseTex = context.resources.blueNoise256[0]; - var sheet = context.propertySheets.Get(context.resources.shaders.screenSpaceReflections); - sheet.properties.SetTexture(ShaderIDs.Noise, noiseTex); - - var screenSpaceProjectionMatrix = new Matrix4x4(); - screenSpaceProjectionMatrix.SetRow(0, new Vector4(size * 0.5f, 0f, 0f, size * 0.5f)); - screenSpaceProjectionMatrix.SetRow(1, new Vector4(0f, size * 0.5f, 0f, size * 0.5f)); - screenSpaceProjectionMatrix.SetRow(2, new Vector4(0f, 0f, 1f, 0f)); - screenSpaceProjectionMatrix.SetRow(3, new Vector4(0f, 0f, 0f, 1f)); - - var projectionMatrix = GL.GetGPUProjectionMatrix(context.camera.projectionMatrix, false); - screenSpaceProjectionMatrix *= projectionMatrix; - - sheet.properties.SetMatrix(ShaderIDs.ViewMatrix, context.camera.worldToCameraMatrix); - sheet.properties.SetMatrix(ShaderIDs.InverseViewMatrix, context.camera.worldToCameraMatrix.inverse); - sheet.properties.SetMatrix(ShaderIDs.InverseProjectionMatrix, projectionMatrix.inverse); - sheet.properties.SetMatrix(ShaderIDs.ScreenSpaceProjectionMatrix, screenSpaceProjectionMatrix); - sheet.properties.SetVector(ShaderIDs.Params, new Vector4((float)settings.vignette.value, settings.distanceFade.value, settings.maximumMarchDistance.value, lodCount)); - sheet.properties.SetVector(ShaderIDs.Params2, new Vector4((float)context.width / (float)context.height, (float)size / (float)noiseTex.width, settings.thickness.value, settings.maximumIterationCount.value)); - - cmd.GetTemporaryRT(ShaderIDs.Test, size, size, 0, FilterMode.Point, context.sourceFormat); - cmd.BlitFullscreenTriangle(context.source, ShaderIDs.Test, sheet, (int)Pass.Test); - - if (context.isSceneView) - { - cmd.BlitFullscreenTriangle(context.source, m_Resolve, sheet, (int)Pass.Resolve); - } - else - { - CheckRT(ref m_History, size, size, FilterMode.Bilinear, false); - - if (m_ResetHistory) - { - context.command.BlitFullscreenTriangle(context.source, m_History); - m_ResetHistory = false; - } - - cmd.GetTemporaryRT(ShaderIDs.SSRResolveTemp, size, size, 0, FilterMode.Bilinear, context.sourceFormat); - cmd.BlitFullscreenTriangle(context.source, ShaderIDs.SSRResolveTemp, sheet, (int)Pass.Resolve); - - sheet.properties.SetTexture(ShaderIDs.History, m_History); - cmd.BlitFullscreenTriangle(ShaderIDs.SSRResolveTemp, m_Resolve, sheet, (int)Pass.Reproject); - - cmd.CopyTexture(m_Resolve, 0, 0, m_History, 0, 0); - - cmd.ReleaseTemporaryRT(ShaderIDs.SSRResolveTemp); - } - - cmd.ReleaseTemporaryRT(ShaderIDs.Test); - - // Pre-cache mipmaps ids - if (m_MipIDs == null || m_MipIDs.Length == 0) - { - m_MipIDs = new int[kMaxLods]; - - for (int i = 0; i < kMaxLods; i++) - m_MipIDs[i] = Shader.PropertyToID("_SSRGaussianMip" + i); - } - - var compute = context.resources.computeShaders.gaussianDownsample; - int kernel = compute.FindKernel("KMain"); - - var last = new RenderTargetIdentifier(m_Resolve); - - for (int i = 0; i < lodCount; i++) - { - size >>= 1; - Assert.IsTrue(size > 0); - - cmd.GetTemporaryRT(m_MipIDs[i], size, size, 0, FilterMode.Bilinear, context.sourceFormat, RenderTextureReadWrite.Default, 1, true); - cmd.SetComputeTextureParam(compute, kernel, "_Source", last); - cmd.SetComputeTextureParam(compute, kernel, "_Result", m_MipIDs[i]); - cmd.SetComputeVectorParam(compute, "_Size", new Vector4(size, size, 1f / size, 1f / size)); - cmd.DispatchCompute(compute, kernel, size / 8, size / 8, 1); - cmd.CopyTexture(m_MipIDs[i], 0, 0, m_Resolve, 0, i + 1); - - last = m_MipIDs[i]; - } - - for (int i = 0; i < lodCount; i++) - cmd.ReleaseTemporaryRT(m_MipIDs[i]); - - sheet.properties.SetTexture(ShaderIDs.Resolve, m_Resolve); - cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)Pass.Composite); - cmd.EndSample("Screen-space Reflections"); - } - - public override void Release() - { - RuntimeUtilities.Destroy(m_Resolve); - RuntimeUtilities.Destroy(m_History); - m_Resolve = null; - m_History = null; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/ScreenSpaceReflections.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/ScreenSpaceReflections.cs.meta deleted file mode 100644 index 521f00176..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/ScreenSpaceReflections.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 7a34fa72bd4185749832024e9c8010bf -timeCreated: 1503573119 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/SubpixelMorphologicalAntialiasing.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/SubpixelMorphologicalAntialiasing.cs deleted file mode 100644 index 95923b369..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/SubpixelMorphologicalAntialiasing.cs +++ /dev/null @@ -1,80 +0,0 @@ -using System; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// This class holds settings for the Subpixel Morphological Anti-aliasing (SMAA) effect. - /// -#if UNITY_2017_1_OR_NEWER - [UnityEngine.Scripting.Preserve] -#endif - [Serializable] - public sealed class SubpixelMorphologicalAntialiasing - { - enum Pass - { - EdgeDetection = 0, - BlendWeights = 3, - NeighborhoodBlending = 6 - } - - /// - /// Quality presets. - /// - public enum Quality - { - /// - /// Low quality. - /// - Low = 0, - - /// - /// Medium quality. - /// - Medium = 1, - - /// - /// High quality. - /// - High = 2 - } - - /// - /// The quality preset to use for the anti-aliasing filter. - /// - [Tooltip("Lower quality is faster at the expense of visual quality (Low = ~60%, Medium = ~80%).")] - public Quality quality = Quality.High; - - /// - /// Checks if the effect is supported on the target platform. - /// - /// true if the anti-aliasing filter is supported, false otherwise - public bool IsSupported() - { - return !RuntimeUtilities.isSinglePassStereoEnabled; - } - - internal void Render(PostProcessRenderContext context) - { - var sheet = context.propertySheets.Get(context.resources.shaders.subpixelMorphologicalAntialiasing); - sheet.properties.SetTexture("_AreaTex", context.resources.smaaLuts.area); - sheet.properties.SetTexture("_SearchTex", context.resources.smaaLuts.search); - - var cmd = context.command; - cmd.BeginSample("SubpixelMorphologicalAntialiasing"); - - cmd.GetTemporaryRT(ShaderIDs.SMAA_Flip, context.width, context.height, 0, FilterMode.Bilinear, context.sourceFormat, RenderTextureReadWrite.Linear); - cmd.GetTemporaryRT(ShaderIDs.SMAA_Flop, context.width, context.height, 0, FilterMode.Bilinear, context.sourceFormat, RenderTextureReadWrite.Linear); - - cmd.BlitFullscreenTriangle(context.source, ShaderIDs.SMAA_Flip, sheet, (int)Pass.EdgeDetection + (int)quality, true); - cmd.BlitFullscreenTriangle(ShaderIDs.SMAA_Flip, ShaderIDs.SMAA_Flop, sheet, (int)Pass.BlendWeights + (int)quality); - cmd.SetGlobalTexture("_BlendTex", ShaderIDs.SMAA_Flop); - cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)Pass.NeighborhoodBlending); - - cmd.ReleaseTemporaryRT(ShaderIDs.SMAA_Flip); - cmd.ReleaseTemporaryRT(ShaderIDs.SMAA_Flop); - - cmd.EndSample("SubpixelMorphologicalAntialiasing"); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/SubpixelMorphologicalAntialiasing.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/SubpixelMorphologicalAntialiasing.cs.meta deleted file mode 100644 index 709478c3f..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/SubpixelMorphologicalAntialiasing.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: f3b0ecb61e2f1e54ebd4572178bfd8b1 -timeCreated: 1497735449 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/TemporalAntialiasing.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/TemporalAntialiasing.cs deleted file mode 100644 index b026e5f73..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/TemporalAntialiasing.cs +++ /dev/null @@ -1,265 +0,0 @@ -using System; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// This class holds settings for the Temporal Anti-aliasing (TAA) effect. - /// -#if UNITY_2017_1_OR_NEWER - [UnityEngine.Scripting.Preserve] -#endif - [Serializable] - public sealed class TemporalAntialiasing - { - /// - /// The diameter (in texels) inside which jitter samples are spread. Smaller values result - /// in crisper but more aliased output, while larger values result in more stable but - /// blurrier output. - /// - [Tooltip("The diameter (in texels) inside which jitter samples are spread. Smaller values result in crisper but more aliased output, while larger values result in more stable, but blurrier, output.")] - [Range(0.1f, 1f)] - public float jitterSpread = 0.75f; - - /// - /// Controls the amount of sharpening applied to the color buffer. High values may introduce - /// dark-border artifacts. - /// - [Tooltip("Controls the amount of sharpening applied to the color buffer. High values may introduce dark-border artifacts.")] - [Range(0f, 3f)] - public float sharpness = 0.25f; - - /// - /// The blend coefficient for a stationary fragment. Controls the percentage of history - /// sample blended into the final color. - /// - [Tooltip("The blend coefficient for a stationary fragment. Controls the percentage of history sample blended into the final color.")] - [Range(0f, 0.99f)] - public float stationaryBlending = 0.95f; - - /// - /// The blend coefficient for a fragment with significant motion. Controls the percentage of - /// history sample blended into the final color. - /// - [Tooltip("The blend coefficient for a fragment with significant motion. Controls the percentage of history sample blended into the final color.")] - [Range(0f, 0.99f)] - public float motionBlending = 0.85f; - - // For custom jittered matrices - use at your own risks - public Func jitteredMatrixFunc; - - public Vector2 jitter { get; private set; } - - enum Pass - { - SolverDilate, - SolverNoDilate - } - - readonly RenderTargetIdentifier[] m_Mrt = new RenderTargetIdentifier[2]; - bool m_ResetHistory = true; - - const int k_SampleCount = 8; - public int sampleIndex { get; private set; } - - // Ping-pong between two history textures as we can't read & write the same target in the - // same pass - const int k_NumEyes = 2; - const int k_NumHistoryTextures = 2; - readonly RenderTexture[][] m_HistoryTextures = new RenderTexture[k_NumEyes][]; - - readonly int[] m_HistoryPingPong = new int [k_NumEyes]; - - public bool IsSupported() - { - return SystemInfo.supportedRenderTargetCount >= 2 - && SystemInfo.supportsMotionVectors -#if !UNITY_2017_3_OR_NEWER - && !RuntimeUtilities.isVREnabled -#endif - && SystemInfo.graphicsDeviceType != GraphicsDeviceType.OpenGLES2; - } - - internal DepthTextureMode GetCameraFlags() - { - return DepthTextureMode.Depth | DepthTextureMode.MotionVectors; - } - - internal void ResetHistory() - { - m_ResetHistory = true; - } - - Vector2 GenerateRandomOffset() - { - // The variance between 0 and the actual halton sequence values reveals noticeable instability - // in Unity's shadow maps, so we avoid index 0. - var offset = new Vector2( - HaltonSeq.Get((sampleIndex & 1023) + 1, 2) - 0.5f, - HaltonSeq.Get((sampleIndex & 1023) + 1, 3) - 0.5f - ); - - if (++sampleIndex >= k_SampleCount) - sampleIndex = 0; - - return offset; - } - - public Matrix4x4 GetJitteredProjectionMatrix(Camera camera) - { - Matrix4x4 cameraProj; - jitter = GenerateRandomOffset(); - jitter *= jitterSpread; - - if (jitteredMatrixFunc != null) - { - cameraProj = jitteredMatrixFunc(camera, jitter); - } - else - { - cameraProj = camera.orthographic - ? RuntimeUtilities.GetJitteredOrthographicProjectionMatrix(camera, jitter) - : RuntimeUtilities.GetJitteredPerspectiveProjectionMatrix(camera, jitter); - } - - jitter = new Vector2(jitter.x / camera.pixelWidth, jitter.y / camera.pixelHeight); - return cameraProj; - } - - public void ConfigureJitteredProjectionMatrix(PostProcessRenderContext context) - { - var camera = context.camera; - camera.nonJitteredProjectionMatrix = camera.projectionMatrix; - camera.projectionMatrix = GetJitteredProjectionMatrix(camera); - camera.useJitteredProjectionMatrixForTransparentRendering = false; - } - - // TODO: We'll probably need to isolate most of this for SRPs - public void ConfigureStereoJitteredProjectionMatrices(PostProcessRenderContext context) - { -#if UNITY_2017_3_OR_NEWER - var camera = context.camera; - jitter = GenerateRandomOffset(); - jitter *= jitterSpread; - - for (var eye = Camera.StereoscopicEye.Left; eye <= Camera.StereoscopicEye.Right; eye++) - { - // This saves off the device generated projection matrices as non-jittered - context.camera.CopyStereoDeviceProjectionMatrixToNonJittered(eye); - var originalProj = context.camera.GetStereoNonJitteredProjectionMatrix(eye); - - // Currently no support for custom jitter func, as VR devices would need to provide - // original projection matrix as input along with jitter - var jitteredMatrix = RuntimeUtilities.GenerateJitteredProjectionMatrixFromOriginal(context, originalProj, jitter); - context.camera.SetStereoProjectionMatrix(eye, jitteredMatrix); - } - - // jitter has to be scaled for the actual eye texture size, not just the intermediate texture size - // which could be double-wide in certain stereo rendering scenarios - jitter = new Vector2(jitter.x / context.screenWidth, jitter.y / context.screenHeight); - camera.useJitteredProjectionMatrixForTransparentRendering = false; -#endif - } - - void GenerateHistoryName(RenderTexture rt, int id, PostProcessRenderContext context) - { - rt.name = "Temporal Anti-aliasing History id #" + id; - - if (context.stereoActive) - rt.name += " for eye " + context.xrActiveEye; - } - - RenderTexture CheckHistory(int id, PostProcessRenderContext context) - { - int activeEye = context.xrActiveEye; - - if (m_HistoryTextures[activeEye] == null) - m_HistoryTextures[activeEye] = new RenderTexture[k_NumHistoryTextures]; - - var rt = m_HistoryTextures[activeEye][id]; - - if (m_ResetHistory || rt == null || !rt.IsCreated()) - { - RenderTexture.ReleaseTemporary(rt); - - rt = context.GetScreenSpaceTemporaryRT(0, context.sourceFormat); - GenerateHistoryName(rt, id, context); - - rt.filterMode = FilterMode.Bilinear; - m_HistoryTextures[activeEye][id] = rt; - - context.command.BlitFullscreenTriangle(context.source, rt); - } - else if (rt.width != context.width || rt.height != context.height) - { - // On size change, simply copy the old history to the new one. This looks better - // than completely discarding the history and seeing a few aliased frames. - var rt2 = context.GetScreenSpaceTemporaryRT(0, context.sourceFormat); - GenerateHistoryName(rt2, id, context); - - rt2.filterMode = FilterMode.Bilinear; - m_HistoryTextures[activeEye][id] = rt2; - - context.command.BlitFullscreenTriangle(rt, rt2); - RenderTexture.ReleaseTemporary(rt); - } - - return m_HistoryTextures[activeEye][id]; - } - - internal void Render(PostProcessRenderContext context) - { - var sheet = context.propertySheets.Get(context.resources.shaders.temporalAntialiasing); - - var cmd = context.command; - cmd.BeginSample("TemporalAntialiasing"); - - int pp = m_HistoryPingPong[context.xrActiveEye]; - var historyRead = CheckHistory(++pp % 2, context); - var historyWrite = CheckHistory(++pp % 2, context); - m_HistoryPingPong[context.xrActiveEye] = ++pp % 2; - - const float kMotionAmplification = 100f * 60f; - sheet.properties.SetVector(ShaderIDs.Jitter, jitter); - sheet.properties.SetFloat(ShaderIDs.Sharpness, sharpness); - sheet.properties.SetVector(ShaderIDs.FinalBlendParameters, new Vector4(stationaryBlending, motionBlending, kMotionAmplification, 0f)); - sheet.properties.SetTexture(ShaderIDs.HistoryTex, historyRead); - - // TODO: Account for different possible RenderViewportScale value from previous frame... - - int pass = context.camera.orthographic ? (int)Pass.SolverNoDilate : (int)Pass.SolverDilate; - m_Mrt[0] = context.destination; - m_Mrt[1] = historyWrite; - - cmd.BlitFullscreenTriangle(context.source, m_Mrt, context.source, sheet, pass); - cmd.EndSample("TemporalAntialiasing"); - - m_ResetHistory = false; - } - - internal void Release() - { - if (m_HistoryTextures != null) - { - for (int i = 0; i < m_HistoryTextures.Length; i++) - { - if (m_HistoryTextures[i] == null) - continue; - - for (int j = 0; j < m_HistoryTextures[i].Length; j++) - { - RenderTexture.ReleaseTemporary(m_HistoryTextures[i][j]); - m_HistoryTextures[i][j] = null; - } - - m_HistoryTextures[i] = null; - } - } - - sampleIndex = 0; - m_HistoryPingPong[0] = 0; - m_HistoryPingPong[1] = 0; - - ResetHistory(); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/TemporalAntialiasing.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/TemporalAntialiasing.cs.meta deleted file mode 100644 index 9b76b52e1..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/TemporalAntialiasing.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 5a7fc26078c70a6469392d9775f433be -timeCreated: 1490188293 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Vignette.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Vignette.cs deleted file mode 100644 index d1f4ad018..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Vignette.cs +++ /dev/null @@ -1,123 +0,0 @@ -using System; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// A list of available render modes for the Vignette effect. - /// - public enum VignetteMode - { - /// - /// This mode offers parametric controls for the position, shape and intensity of the Vignette. - /// - Classic, - - /// - /// This mode multiplies a custom texture mask over the screen to create a Vignette effect. - /// - Masked - } - - /// - /// A volume parameter holding a value. - /// - [Serializable] - public sealed class VignetteModeParameter : ParameterOverride {} - - /// - /// This class holds settings for the Vignette effect. - /// - [Serializable] - [PostProcess(typeof(VignetteRenderer), "Unity/Vignette")] - public sealed class Vignette : PostProcessEffectSettings - { - /// - /// Use the \"Classic\" mode for parametric controls. Use the \"Masked\" mode to use your own texture mask. - /// - [Tooltip("Use the \"Classic\" mode for parametric controls. Use the \"Masked\" mode to use your own texture mask.")] - public VignetteModeParameter mode = new VignetteModeParameter { value = VignetteMode.Classic }; - - /// - /// The color to use to tint the vignette. - /// - [Tooltip("Vignette color.")] - public ColorParameter color = new ColorParameter { value = new Color(0f, 0f, 0f, 1f) }; - - /// - /// Sets the vignette center point (screen center is [0.5,0.5]). - /// - [Tooltip("Sets the vignette center point (screen center is [0.5, 0.5]).")] - public Vector2Parameter center = new Vector2Parameter { value = new Vector2(0.5f, 0.5f) }; - - /// - /// The amount of vignetting on screen. - /// - [Range(0f, 1f), Tooltip("Amount of vignetting on screen.")] - public FloatParameter intensity = new FloatParameter { value = 0f }; - - /// - /// The smoothness of the vignette borders. - /// - [Range(0.01f, 1f), Tooltip("Smoothness of the vignette borders.")] - public FloatParameter smoothness = new FloatParameter { value = 0.2f }; - - /// - /// Lower values will make a square-ish vignette. - /// - [Range(0f, 1f), Tooltip("Lower values will make a square-ish vignette.")] - public FloatParameter roundness = new FloatParameter { value = 1f }; - - /// - /// Should the vignette be perfectly round or be dependent on the current aspect ratio? - /// - [Tooltip("Set to true to mark the vignette to be perfectly round. False will make its shape dependent on the current aspect ratio.")] - public BoolParameter rounded = new BoolParameter { value = false }; - - /// - /// A black and white mask to use as a vignette. - /// - [Tooltip("A black and white mask to use as a vignette.")] - public TextureParameter mask = new TextureParameter { value = null }; - - /// - /// Mask opacity. - /// - [Range(0f, 1f), Tooltip("Mask opacity.")] - public FloatParameter opacity = new FloatParameter { value = 1f }; - - /// - public override bool IsEnabledAndSupported(PostProcessRenderContext context) - { - return enabled.value - && ((mode.value == VignetteMode.Classic && intensity.value > 0f) - || (mode.value == VignetteMode.Masked && opacity.value > 0f && mask.value != null)); - } - } - -#if UNITY_2017_1_OR_NEWER - [UnityEngine.Scripting.Preserve] -#endif - internal sealed class VignetteRenderer : PostProcessEffectRenderer - { - public override void Render(PostProcessRenderContext context) - { - var sheet = context.uberSheet; - sheet.EnableKeyword("VIGNETTE"); - sheet.properties.SetColor(ShaderIDs.Vignette_Color, settings.color.value); - - if (settings.mode == VignetteMode.Classic) - { - sheet.properties.SetFloat(ShaderIDs.Vignette_Mode, 0f); - sheet.properties.SetVector(ShaderIDs.Vignette_Center, settings.center.value); - float roundness = (1f - settings.roundness.value) * 6f + settings.roundness.value; - sheet.properties.SetVector(ShaderIDs.Vignette_Settings, new Vector4(settings.intensity.value * 3f, settings.smoothness.value * 5f, roundness, settings.rounded.value ? 1f : 0f)); - } - else // Masked - { - sheet.properties.SetFloat(ShaderIDs.Vignette_Mode, 1f); - sheet.properties.SetTexture(ShaderIDs.Vignette_Mask, settings.mask.value); - sheet.properties.SetFloat(ShaderIDs.Vignette_Opacity, Mathf.Clamp01(settings.opacity.value)); - } - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Vignette.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Vignette.cs.meta deleted file mode 100644 index f2f06ceb9..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Effects/Vignette.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 40b924e2dad56384a8df2a1e111bb675 -timeCreated: 1491826542 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors.meta deleted file mode 100644 index d288f8973..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 0a243807ad889ae44bf63a9bcdc984af -folderAsset: yes -timeCreated: 1499676298 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/HistogramMonitor.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/HistogramMonitor.cs deleted file mode 100644 index 33c015a0b..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/HistogramMonitor.cs +++ /dev/null @@ -1,120 +0,0 @@ -using System; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// This class holds settings for the Histogram monitor. - /// - [Serializable] - public sealed class HistogramMonitor : Monitor - { - /// - /// Displayable channels. - /// - public enum Channel - { - /// - /// The red channel. - /// - Red, - - /// - /// The green channel. - /// - Green, - - /// - /// The blue channel. - /// - Blue, - - /// - /// The master (luminance) channel. - /// - Master - } - - /// - /// The width of the rendered histogram. - /// - public int width = 512; - - /// - /// The height of the rendered histogram. - /// - public int height = 256; - - /// - /// The channel to render. - /// - public Channel channel = Channel.Master; - - ComputeBuffer m_Data; - const int k_NumBins = 256; - const int k_ThreadGroupSizeX = 16; - const int k_ThreadGroupSizeY = 16; - - internal override void OnDisable() - { - base.OnDisable(); - - if (m_Data != null) - m_Data.Release(); - - m_Data = null; - } - - internal override bool NeedsHalfRes() - { - return true; - } - - internal override bool ShaderResourcesAvailable(PostProcessRenderContext context) - { - return context.resources.computeShaders.gammaHistogram; - } - - internal override void Render(PostProcessRenderContext context) - { - CheckOutput(width, height); - - if (m_Data == null) - m_Data = new ComputeBuffer(k_NumBins, sizeof(uint)); - - var compute = context.resources.computeShaders.gammaHistogram; - var cmd = context.command; - cmd.BeginSample("GammaHistogram"); - - // Clear the buffer on every frame as we use it to accumulate values on every frame - int kernel = compute.FindKernel("KHistogramClear"); - cmd.SetComputeBufferParam(compute, kernel, "_HistogramBuffer", m_Data); - cmd.DispatchCompute(compute, kernel, Mathf.CeilToInt(k_NumBins / (float)k_ThreadGroupSizeX), 1, 1); - - // Gather all pixels and fill in our histogram - kernel = compute.FindKernel("KHistogramGather"); - var parameters = new Vector4( - context.width / 2, - context.height / 2, - RuntimeUtilities.isLinearColorSpace ? 1 : 0, - (int)channel - ); - - cmd.SetComputeVectorParam(compute, "_Params", parameters); - cmd.SetComputeTextureParam(compute, kernel, "_Source", ShaderIDs.HalfResFinalCopy); - cmd.SetComputeBufferParam(compute, kernel, "_HistogramBuffer", m_Data); - cmd.DispatchCompute(compute, kernel, - Mathf.CeilToInt(parameters.x / k_ThreadGroupSizeX), - Mathf.CeilToInt(parameters.y / k_ThreadGroupSizeY), - 1 - ); - - // Generate the histogram texture - var sheet = context.propertySheets.Get(context.resources.shaders.gammaHistogram); - sheet.properties.SetVector(ShaderIDs.Params, new Vector4(width, height, 0f, 0f)); - sheet.properties.SetBuffer(ShaderIDs.HistogramBuffer, m_Data); - cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, output, sheet, 0); - - cmd.EndSample("GammaHistogram"); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/HistogramMonitor.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/HistogramMonitor.cs.meta deleted file mode 100644 index dd9a92eab..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/HistogramMonitor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: cce62646e6d421c41b0aa1c300fcd0fe -timeCreated: 1499676418 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/LightMeterMonitor.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/LightMeterMonitor.cs deleted file mode 100644 index a84bc21ef..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/LightMeterMonitor.cs +++ /dev/null @@ -1,83 +0,0 @@ -using System; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// This class holds settings for the Light Meter monitor. - /// - [Serializable] - public sealed class LightMeterMonitor : Monitor - { - /// - /// The width of the rendered light meter. - /// - public int width = 512; - - /// - /// The height of the rendered light meter. - /// - public int height = 256; - - /// - /// Should we display grading and tonemapping curves on top? - /// - /// - /// This only works when is active. - /// - public bool showCurves = true; - - internal override bool ShaderResourcesAvailable(PostProcessRenderContext context) - { - return context.resources.shaders.lightMeter && context.resources.shaders.lightMeter.isSupported; - } - - internal override void Render(PostProcessRenderContext context) - { - CheckOutput(width, height); - - var histogram = context.logHistogram; - - var sheet = context.propertySheets.Get(context.resources.shaders.lightMeter); - sheet.ClearKeywords(); - sheet.properties.SetBuffer(ShaderIDs.HistogramBuffer, histogram.data); - - var scaleOffsetRes = histogram.GetHistogramScaleOffsetRes(context); - scaleOffsetRes.z = 1f / width; - scaleOffsetRes.w = 1f / height; - - sheet.properties.SetVector(ShaderIDs.ScaleOffsetRes, scaleOffsetRes); - - if (context.logLut != null && showCurves) - { - sheet.EnableKeyword("COLOR_GRADING_HDR"); - sheet.properties.SetTexture(ShaderIDs.Lut3D, context.logLut); - } - - var autoExpo = context.autoExposure; - if (autoExpo != null) - { - // Make sure filtering values are correct to avoid apocalyptic consequences - float lowPercent = autoExpo.filtering.value.x; - float highPercent = autoExpo.filtering.value.y; - const float kMinDelta = 1e-2f; - highPercent = Mathf.Clamp(highPercent, 1f + kMinDelta, 99f); - lowPercent = Mathf.Clamp(lowPercent, 1f, highPercent - kMinDelta); - - var parameters = new Vector4( - lowPercent * 0.01f, - highPercent * 0.01f, - RuntimeUtilities.Exp2(autoExpo.minLuminance.value), - RuntimeUtilities.Exp2(autoExpo.maxLuminance.value) - ); - - sheet.EnableKeyword("AUTO_EXPOSURE"); - sheet.properties.SetVector(ShaderIDs.Params, parameters); - } - - var cmd = context.command; - cmd.BeginSample("LightMeter"); - cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, output, sheet, 0); - cmd.EndSample("LightMeter"); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/LightMeterMonitor.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/LightMeterMonitor.cs.meta deleted file mode 100644 index 96a3a2542..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/LightMeterMonitor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 322fbe1dae0fe4a4e9645768b3944aae -timeCreated: 1499676398 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/Monitor.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/Monitor.cs deleted file mode 100644 index c3d102ce1..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/Monitor.cs +++ /dev/null @@ -1,58 +0,0 @@ -namespace UnityEngine.Rendering.PostProcessing -{ - public enum MonitorType - { - LightMeter, - Histogram, - Waveform, - Vectorscope - } - - public abstract class Monitor - { - public RenderTexture output { get; protected set; } - - internal bool requested = false; - - public bool IsRequestedAndSupported(PostProcessRenderContext context) - { - return requested - && SystemInfo.supportsComputeShaders - && !RuntimeUtilities.isAndroidOpenGL - && ShaderResourcesAvailable(context); - } - - internal abstract bool ShaderResourcesAvailable(PostProcessRenderContext context); - - internal virtual bool NeedsHalfRes() - { - return false; - } - - protected void CheckOutput(int width, int height) - { - if (output == null || !output.IsCreated() || output.width != width || output.height != height) - { - RuntimeUtilities.Destroy(output); - output = new RenderTexture(width, height, 0, RenderTextureFormat.ARGB32) - { - anisoLevel = 0, - filterMode = FilterMode.Bilinear, - wrapMode = TextureWrapMode.Clamp, - useMipMap = false - }; - } - } - - internal virtual void OnEnable() - { - } - - internal virtual void OnDisable() - { - RuntimeUtilities.Destroy(output); - } - - internal abstract void Render(PostProcessRenderContext context); - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/Monitor.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/Monitor.cs.meta deleted file mode 100644 index 63130254b..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/Monitor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 5d05ae29f423ce241b6cddfe46280b4c -timeCreated: 1499676521 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/VectorscopeMonitor.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/VectorscopeMonitor.cs deleted file mode 100644 index 2519729e4..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/VectorscopeMonitor.cs +++ /dev/null @@ -1,99 +0,0 @@ -using System; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// This class holds settings for the Vectorscope monitor. - /// - [Serializable] - public sealed class VectorscopeMonitor : Monitor - { - /// - /// The width and height of the rendered vectorscope. - /// - public int size = 256; - - /// - /// The exposure multiplier applied to the vectorscope values. - /// - public float exposure = 0.12f; - - ComputeBuffer m_Data; - const int k_ThreadGroupSizeX = 16; - const int k_ThreadGroupSizeY = 16; - - internal override void OnDisable() - { - base.OnDisable(); - - if (m_Data != null) - m_Data.Release(); - - m_Data = null; - } - - internal override bool NeedsHalfRes() - { - return true; - } - - internal override bool ShaderResourcesAvailable(PostProcessRenderContext context) - { - return context.resources.computeShaders.vectorscope; - } - - internal override void Render(PostProcessRenderContext context) - { - CheckOutput(size, size); - exposure = Mathf.Max(0f, exposure); - - int count = size * size; - if (m_Data == null) - m_Data = new ComputeBuffer(count, sizeof(uint)); - else if (m_Data.count != count) - { - m_Data.Release(); - m_Data = new ComputeBuffer(count, sizeof(uint)); - } - - var compute = context.resources.computeShaders.vectorscope; - var cmd = context.command; - cmd.BeginSample("Vectorscope"); - - var parameters = new Vector4( - context.width / 2, - context.height / 2, - size, - RuntimeUtilities.isLinearColorSpace ? 1 : 0 - ); - - // Clear the buffer on every frame as we use it to accumulate values on every frame - int kernel = compute.FindKernel("KVectorscopeClear"); - cmd.SetComputeBufferParam(compute, kernel, "_VectorscopeBuffer", m_Data); - cmd.SetComputeVectorParam(compute, "_Params", parameters); - cmd.DispatchCompute(compute, kernel, - Mathf.CeilToInt(size / (float)k_ThreadGroupSizeX), - Mathf.CeilToInt(size / (float)k_ThreadGroupSizeY), - 1 - ); - - // Gather all pixels and fill in our histogram - kernel = compute.FindKernel("KVectorscopeGather"); - cmd.SetComputeBufferParam(compute, kernel, "_VectorscopeBuffer", m_Data); - cmd.SetComputeTextureParam(compute, kernel, "_Source", ShaderIDs.HalfResFinalCopy); - cmd.DispatchCompute(compute, kernel, - Mathf.CeilToInt(parameters.x / k_ThreadGroupSizeX), - Mathf.CeilToInt(parameters.y / k_ThreadGroupSizeY), - 1 - ); - - // Generate the histogram texture - var sheet = context.propertySheets.Get(context.resources.shaders.vectorscope); - sheet.properties.SetVector(ShaderIDs.Params, new Vector4(size, size, exposure, 0f)); - sheet.properties.SetBuffer(ShaderIDs.VectorscopeBuffer, m_Data); - cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, output, sheet, 0); - - cmd.EndSample("Vectorscope"); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/VectorscopeMonitor.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/VectorscopeMonitor.cs.meta deleted file mode 100644 index 5b15b3017..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/VectorscopeMonitor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 279b45d82a92b4d4fa0b30d03486fa68 -timeCreated: 1499676436 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/WaveformMonitor.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/WaveformMonitor.cs deleted file mode 100644 index 46599b550..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/WaveformMonitor.cs +++ /dev/null @@ -1,112 +0,0 @@ -using System; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// This class holds settings for the Waveform monitor. - /// - [Serializable] - public sealed class WaveformMonitor : Monitor - { - /// - /// The exposure multiplier applied to the waveform values. - /// - public float exposure = 0.12f; - - /// - /// The height of the rendered waveform. - /// - /// - /// Waveforms display localized values so the width is dynamic and depends on the current - /// aspect ratio. - /// - public int height = 256; - - ComputeBuffer m_Data; - - const int k_ThreadGroupSize = 256; - const int k_ThreadGroupSizeX = 16; - const int k_ThreadGroupSizeY = 16; - - internal override void OnDisable() - { - base.OnDisable(); - - if (m_Data != null) - m_Data.Release(); - - m_Data = null; - } - - internal override bool NeedsHalfRes() - { - return true; - } - - - internal override bool ShaderResourcesAvailable(PostProcessRenderContext context) - { - return context.resources.computeShaders.waveform; - } - - internal override void Render(PostProcessRenderContext context) - { - // Waveform show localized data, so width depends on the aspect ratio - float ratio = (context.width / 2f) / (context.height / 2f); - int width = Mathf.FloorToInt(height * ratio); - - CheckOutput(width, height); - exposure = Mathf.Max(0f, exposure); - - int count = width * height; - if (m_Data == null) - { - m_Data = new ComputeBuffer(count, sizeof(uint) << 2); - } - else if (m_Data.count < count) - { - m_Data.Release(); - m_Data = new ComputeBuffer(count, sizeof(uint) << 2); - } - - var compute = context.resources.computeShaders.waveform; - var cmd = context.command; - cmd.BeginSample("Waveform"); - - var parameters = new Vector4( - width, - height, - RuntimeUtilities.isLinearColorSpace ? 1 : 0, - 0f - ); - - // Clear the buffer on every frame - int kernel = compute.FindKernel("KWaveformClear"); - cmd.SetComputeBufferParam(compute, kernel, "_WaveformBuffer", m_Data); - cmd.SetComputeVectorParam(compute, "_Params", parameters); - cmd.DispatchCompute(compute, kernel, Mathf.CeilToInt(width / (float)k_ThreadGroupSizeX), Mathf.CeilToInt(height / (float)k_ThreadGroupSizeY), 1); - - // For performance reasons, especially on consoles, we'll just downscale the source - // again to reduce VMEM stalls. Eventually the whole algorithm needs to be rewritten as - // it's currently pretty naive. - cmd.GetTemporaryRT(ShaderIDs.WaveformSource, width, height, 0, FilterMode.Bilinear, context.sourceFormat); - cmd.BlitFullscreenTriangle(ShaderIDs.HalfResFinalCopy, ShaderIDs.WaveformSource); - - // Gather all pixels and fill in our waveform - kernel = compute.FindKernel("KWaveformGather"); - cmd.SetComputeBufferParam(compute, kernel, "_WaveformBuffer", m_Data); - cmd.SetComputeTextureParam(compute, kernel, "_Source", ShaderIDs.WaveformSource); - cmd.SetComputeVectorParam(compute, "_Params", parameters); - cmd.DispatchCompute(compute, kernel, width, Mathf.CeilToInt(height / (float)k_ThreadGroupSize), 1); - cmd.ReleaseTemporaryRT(ShaderIDs.WaveformSource); - - // Generate the waveform texture - var sheet = context.propertySheets.Get(context.resources.shaders.waveform); - sheet.properties.SetVector(ShaderIDs.Params, new Vector4(width, height, exposure, 0f)); - sheet.properties.SetBuffer(ShaderIDs.WaveformBuffer, m_Data); - cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, output, sheet, 0); - - cmd.EndSample("Waveform"); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/WaveformMonitor.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/WaveformMonitor.cs.meta deleted file mode 100644 index a5f61befb..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Monitors/WaveformMonitor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: d579562c49280d84cb532cd67d19da5d -timeCreated: 1499676423 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/ParameterOverride.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/ParameterOverride.cs deleted file mode 100644 index 164be7c99..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/ParameterOverride.cs +++ /dev/null @@ -1,534 +0,0 @@ -using System; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// The base abstract class for all parameter override types. - /// - /// - public abstract class ParameterOverride - { - /// - /// The override state of this parameter. - /// - public bool overrideState; - - internal abstract void Interp(ParameterOverride from, ParameterOverride to, float t); - - /// - /// Returns the computed hash code for this parameter. - /// - /// A computed hash code - public abstract int GetHash(); - - /// - /// Casts and returns the value stored in this parameter. - /// - /// The type to cast to - /// The value stored in this parameter - public T GetValue() - { - return ((ParameterOverride)this).value; - } - - /// - /// This method is called right after the parent has - /// been initialized. This is used in case you need to access fields or properties that - /// can't be accessed in the constructor of a - /// (ParameterOverride objects are generally declared and initialized in a - /// ). - /// - /// - protected internal virtual void OnEnable() - { - } - - /// - /// This method is called right before the parent - /// gets de-initialized. - /// - /// - protected internal virtual void OnDisable() - { - } - - internal abstract void SetValue(ParameterOverride parameter); - } - - /// - /// The base typed class for all parameter override types. - /// - /// The type of value to store in this ParameterOverride - /// - /// Due to limitations with the serialization system in Unity you shouldn't use this class - /// directly. Use one of the pre-flatten types (like or make your - /// own by extending this class. - /// - /// - /// This sample code shows how to make a custom parameter holding a float. - /// - /// [Serializable] - /// public sealed class FloatParameter : ParameterOverride<float> - /// { - /// public override void Interp(float from, float to, float t) - /// { - /// value = from + (to - from) * t; - /// } - /// } - /// - /// - [Serializable] - public class ParameterOverride : ParameterOverride - { - /// - /// The value stored in this parameter. - /// - public T value; - - /// - /// Creates a ParameterOverride with a default and - /// set to false. - /// - public ParameterOverride() - : this(default(T), false) - { - } - - /// - /// Creates a ParameterOverride with a given value and - /// set to false. - /// - /// The value to set this parameter to - public ParameterOverride(T value) - : this(value, false) - { - } - - /// - /// Creates a ParameterOverride with a given value and override state. - /// - /// The value to set this parameter to - /// The override state for this value - public ParameterOverride(T value, bool overrideState) - { - this.value = value; - this.overrideState = overrideState; - } - - internal override void Interp(ParameterOverride from, ParameterOverride to, float t) - { - // Note: this isn't completely safe but it'll do fine - Interp(from.GetValue(), to.GetValue(), t); - } - - /// - /// Interpolates between two values given an interpolation factor . - /// - /// The value to interpolate from - /// The value to interpolate to - /// An interpolation factor (generally in range [0,1]) - /// - /// By default this method does a "snap" interpolation, meaning it will return the value - /// if is higher than 0, - /// otherwise. - /// - public virtual void Interp(T from, T to, float t) - { - // Returns `to` if `dt > 0` by default so we don't have to write overrides for bools and - // enumerations. - value = t > 0f ? to : from; - } - - /// - /// Sets the value for this parameter to and mark the override state - /// to true. - /// - /// - public void Override(T x) - { - overrideState = true; - value = x; - } - - internal override void SetValue(ParameterOverride parameter) - { - value = parameter.GetValue(); - } - - /// - public override int GetHash() - { - unchecked - { - int hash = 17; - hash = hash * 23 + overrideState.GetHashCode(); - hash = hash * 23 + value.GetHashCode(); - return hash; - } - } - - /// - /// Implicit conversion between and its value type. - /// - /// The parameter to implicitly cast - public static implicit operator T(ParameterOverride prop) - { - return prop.value; - } - } - - // Bypassing the limited unity serialization system... - - /// - /// A that holds a float value. - /// - /// - /// The interpolation method for this parameter is the same as . - /// - [Serializable] - public sealed class FloatParameter : ParameterOverride - { - /// - public override void Interp(float from, float to, float t) - { - value = from + (to - from) * t; - } - } - - /// - /// A that holds a int value. - /// - /// - /// The interpolation method for this parameter is the same as - /// casted to int. - /// - [Serializable] - public sealed class IntParameter : ParameterOverride - { - /// - public override void Interp(int from, int to, float t) - { - // Int snapping interpolation. Don't use this for enums as they don't necessarily have - // contiguous values. Use the default interpolator instead (same as bool). - value = (int)(from + (to - from) * t); - } - } - - /// - /// A that holds a bool value. - /// - [Serializable] - public sealed class BoolParameter : ParameterOverride {} - - /// - /// A that holds a value. - /// - /// - /// The interpolation method for this parameter is the same as - /// for each channel. - /// - [Serializable] - public sealed class ColorParameter : ParameterOverride - { - /// - public override void Interp(Color from, Color to, float t) - { - // Lerping color values is a sensitive subject... We looked into lerping colors using - // HSV and LCH but they have some downsides that make them not work correctly in all - // situations, so we stick with RGB lerping for now, at least its behavior is - // predictable despite looking desaturated when `t ~= 0.5` and it's faster anyway. - value.r = from.r + (to.r - from.r) * t; - value.g = from.g + (to.g - from.g) * t; - value.b = from.b + (to.b - from.b) * t; - value.a = from.a + (to.a - from.a) * t; - } - - /// - /// Implicit conversion between and a . - /// - /// The parameter to implicitly cast - public static implicit operator Vector4(ColorParameter prop) - { - return prop.value; - } - } - - /// - /// A that holds a value. - /// - /// - /// The interpolation method for this parameter is the same as - /// for each axis. - /// - [Serializable] - public sealed class Vector2Parameter : ParameterOverride - { - /// - public override void Interp(Vector2 from, Vector2 to, float t) - { - value.x = from.x + (to.x - from.x) * t; - value.y = from.y + (to.y - from.y) * t; - } - - /// - /// Implicit conversion between and a . - /// - /// The parameter to implicitly cast - public static implicit operator Vector3(Vector2Parameter prop) - { - return prop.value; - } - - /// - /// Implicit conversion between and a . - /// - /// The parameter to implicitly cast - public static implicit operator Vector4(Vector2Parameter prop) - { - return prop.value; - } - } - - /// - /// A that holds a value. - /// - /// - /// The interpolation method for this parameter is the same as - /// for each axis. - /// - [Serializable] - public sealed class Vector3Parameter : ParameterOverride - { - /// - public override void Interp(Vector3 from, Vector3 to, float t) - { - value.x = from.x + (to.x - from.x) * t; - value.y = from.y + (to.y - from.y) * t; - value.z = from.z + (to.z - from.z) * t; - } - - /// - /// Implicit conversion between and a . - /// - /// The parameter to implicitly cast - public static implicit operator Vector2(Vector3Parameter prop) - { - return prop.value; - } - - /// - /// Implicit conversion between and a . - /// - /// The parameter to implicitly cast - public static implicit operator Vector4(Vector3Parameter prop) - { - return prop.value; - } - } - - /// - /// A that holds a value. - /// - /// - /// The interpolation method for this parameter is the same as - /// for each axis. - /// - [Serializable] - public sealed class Vector4Parameter : ParameterOverride - { - /// - public override void Interp(Vector4 from, Vector4 to, float t) - { - value.x = from.x + (to.x - from.x) * t; - value.y = from.y + (to.y - from.y) * t; - value.z = from.z + (to.z - from.z) * t; - value.w = from.w + (to.w - from.w) * t; - } - - /// - /// Implicit conversion between and a . - /// - /// The parameter to implicitly cast - public static implicit operator Vector2(Vector4Parameter prop) - { - return prop.value; - } - - /// - /// Implicit conversion between and a . - /// - /// The parameter to implicitly cast - public static implicit operator Vector3(Vector4Parameter prop) - { - return prop.value; - } - } - - /// - /// A that holds a value. - /// - /// - /// The interpolation method for this parameter is the same as - /// for each point on the curve. - /// - [Serializable] - public sealed class SplineParameter : ParameterOverride - { - /// - protected internal override void OnEnable() - { - if (value != null) - value.Cache(int.MinValue); - } - - internal override void SetValue(ParameterOverride parameter) - { - base.SetValue(parameter); - - if (value != null) - value.Cache(Time.renderedFrameCount); - } - - /// - public override void Interp(Spline from, Spline to, float t) - { - if (from == null || to == null) - { - base.Interp(from, to, t); - return; - } - - int frameCount = Time.renderedFrameCount; - from.Cache(frameCount); - to.Cache(frameCount); - - for (int i = 0; i < Spline.k_Precision; i++) - { - float a = from.cachedData[i]; - float b = to.cachedData[i]; - value.cachedData[i] = a + (b - a) * t; - } - } - } - - /// - /// A set of default textures to use as default values for . - /// - public enum TextureParameterDefault - { - /// - /// No texture, or null. - /// - None, - - /// - /// A black texture. - /// - Black, - - /// - /// A white texture. - /// - White, - - /// - /// A transparent texture. - /// - Transparent, - - /// - /// A 2D lookup table in strip format with width = height * height. - /// - Lut2D - } - - /// - /// A that holds a value. - /// - /// - /// Texture interpolation is done using a classic linear interpolation method. - /// - [Serializable] - public sealed class TextureParameter : ParameterOverride - { - public TextureParameterDefault defaultState = TextureParameterDefault.Black; - - /// - public override void Interp(Texture from, Texture to, float t) - { - // Both are null, do nothing - if (from == null && to == null) - { - value = null; - return; - } - - // Both aren't null we're ready to blend - if (from != null && to != null) - { - value = TextureLerper.instance.Lerp(from, to, t); - return; - } - - // One of them is null, blend to/from a default value is applicable - { - if (defaultState == TextureParameterDefault.Lut2D) - { - int size = from != null ? from.height : to.height; - Texture defaultTexture = RuntimeUtilities.GetLutStrip(size); - - if (from == null) from = defaultTexture; - if (to == null) to = defaultTexture; - } - - Color tgtColor; - - switch (defaultState) - { - case TextureParameterDefault.Black: - tgtColor = Color.black; - break; - case TextureParameterDefault.White: - tgtColor = Color.white; - break; - case TextureParameterDefault.Transparent: - tgtColor = Color.clear; - break; - case TextureParameterDefault.Lut2D: - { - // Find the current lut size - int size = from != null ? from.height : to.height; - Texture defaultTexture = RuntimeUtilities.GetLutStrip(size); - if (from == null) from = defaultTexture; - if (to == null) to = defaultTexture; - - // Fail safe in case the lut size is incorrect - if (from.width != to.width || from.height != to.height) - { - value = null; - return; - } - - value = TextureLerper.instance.Lerp(from, to, t); - // All done, return - return; - } - default: - // defaultState is none, so just interpolate the base and return - base.Interp(from, to, t); - return; - } - // If we made it this far, tgtColor contains the color we'll be lerping into (or out of) - if (from == null) - { - // color -> texture lerp, invert ratio - value = TextureLerper.instance.Lerp(to, tgtColor, 1f - t); - } - else - { - value = TextureLerper.instance.Lerp(from, tgtColor, t); - } - } - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/ParameterOverride.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/ParameterOverride.cs.meta deleted file mode 100644 index 00e09d6ec..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/ParameterOverride.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: bc5d8aaf03e613843a0ecaff18e0dfbd -timeCreated: 1487257630 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessBundle.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessBundle.cs deleted file mode 100644 index 93ad73732..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessBundle.cs +++ /dev/null @@ -1,66 +0,0 @@ -using System; -using UnityEngine.Assertions; - -namespace UnityEngine.Rendering.PostProcessing -{ - public sealed class PostProcessBundle - { - public PostProcessAttribute attribute { get; private set; } - public PostProcessEffectSettings settings { get; private set; } - - internal PostProcessEffectRenderer renderer - { - get - { - if (m_Renderer == null) - { - Assert.IsNotNull(attribute.renderer); - var rendererType = attribute.renderer; - m_Renderer = (PostProcessEffectRenderer)Activator.CreateInstance(rendererType); - m_Renderer.SetSettings(settings); - m_Renderer.Init(); - } - - return m_Renderer; - } - } - - PostProcessEffectRenderer m_Renderer; - - internal PostProcessBundle(PostProcessEffectSettings settings) - { - // If settings is null, it means that at some point a null element has been added to - // the volume effect list or there was a deserialization error and a reference to - // the settings scriptableobject was lost - Assert.IsNotNull(settings); - this.settings = settings; - attribute = settings.GetType().GetAttribute(); - } - - internal void Release() - { - if (m_Renderer != null) - m_Renderer.Release(); - - RuntimeUtilities.Destroy(settings); - } - - internal void ResetHistory() - { - if (m_Renderer != null) - m_Renderer.ResetHistory(); - } - - internal T CastSettings() - where T : PostProcessEffectSettings - { - return (T)settings; - } - - internal T CastRenderer() - where T : PostProcessEffectRenderer - { - return (T)renderer; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessBundle.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessBundle.cs.meta deleted file mode 100644 index b22a4a6aa..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessBundle.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 79092fbfc2fc7394aa0754682e3089f7 -timeCreated: 1493281307 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessDebug.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessDebug.cs deleted file mode 100644 index 9a532e238..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessDebug.cs +++ /dev/null @@ -1,159 +0,0 @@ -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// This component holds a set of debugging utilities related to post-processing. - /// - /// - /// These utilities can be used at runtime to debug on device. - /// -#if UNITY_2018_3_OR_NEWER - [ExecuteAlways] -#else - [ExecuteInEditMode] -#endif - [AddComponentMenu("Rendering/Post-process Debug", 1002)] - public sealed class PostProcessDebug : MonoBehaviour - { - /// - /// A reference to a to debug. - /// - public PostProcessLayer postProcessLayer; - PostProcessLayer m_PreviousPostProcessLayer; - - /// - /// Holds settings for the light meter. - /// - public bool lightMeter; - - /// - /// Holds settings for the histogram. - /// - public bool histogram; - - /// - /// Holds settings for the waveform. - /// - public bool waveform; - - /// - /// Holds settings for the vectorscope. - /// - public bool vectorscope; - - /// - /// The currently set overlay. - /// - public DebugOverlay debugOverlay = DebugOverlay.None; - - Camera m_CurrentCamera; - CommandBuffer m_CmdAfterEverything; - - void OnEnable() - { - m_CmdAfterEverything = new CommandBuffer { name = "Post-processing Debug Overlay" }; - -#if UNITY_EDITOR - // Update is only called on object change when ExecuteInEditMode is set, but we need it - // to execute on every frame no matter what when not in play mode, so we'll use the - // editor update loop instead... - UnityEditor.EditorApplication.update += UpdateStates; -#endif - } - - void OnDisable() - { -#if UNITY_EDITOR - UnityEditor.EditorApplication.update -= UpdateStates; -#endif - - if (m_CurrentCamera != null) - m_CurrentCamera.RemoveCommandBuffer(CameraEvent.AfterImageEffects, m_CmdAfterEverything); - - m_CurrentCamera = null; - m_PreviousPostProcessLayer = null; - } - -#if !UNITY_EDITOR - void Update() - { - UpdateStates(); - } -#endif - - void Reset() - { - postProcessLayer = GetComponent(); - } - - void UpdateStates() - { - if (m_PreviousPostProcessLayer != postProcessLayer) - { - // Remove cmdbuffer from previously set camera - if (m_CurrentCamera != null) - { - m_CurrentCamera.RemoveCommandBuffer(CameraEvent.AfterImageEffects, m_CmdAfterEverything); - m_CurrentCamera = null; - } - - m_PreviousPostProcessLayer = postProcessLayer; - - // Add cmdbuffer to the currently set camera - if (postProcessLayer != null) - { - m_CurrentCamera = postProcessLayer.GetComponent(); - m_CurrentCamera.AddCommandBuffer(CameraEvent.AfterImageEffects, m_CmdAfterEverything); - } - } - - if (postProcessLayer == null || !postProcessLayer.enabled) - return; - - // Monitors - if (lightMeter) postProcessLayer.debugLayer.RequestMonitorPass(MonitorType.LightMeter); - if (histogram) postProcessLayer.debugLayer.RequestMonitorPass(MonitorType.Histogram); - if (waveform) postProcessLayer.debugLayer.RequestMonitorPass(MonitorType.Waveform); - if (vectorscope) postProcessLayer.debugLayer.RequestMonitorPass(MonitorType.Vectorscope); - - // Overlay - postProcessLayer.debugLayer.RequestDebugOverlay(debugOverlay); - } - - void OnPostRender() - { - m_CmdAfterEverything.Clear(); - - if (postProcessLayer == null || !postProcessLayer.enabled || !postProcessLayer.debugLayer.debugOverlayActive) - return; - - m_CmdAfterEverything.Blit(postProcessLayer.debugLayer.debugOverlayTarget, BuiltinRenderTextureType.CameraTarget); - } - - void OnGUI() - { - if (postProcessLayer == null || !postProcessLayer.enabled) - return; - - // Some SRPs don't unbind render targets and leave them as-is - RenderTexture.active = null; - - var rect = new Rect(5, 5, 0, 0); - var debugLayer = postProcessLayer.debugLayer; - DrawMonitor(ref rect, debugLayer.lightMeter, lightMeter); - DrawMonitor(ref rect, debugLayer.histogram, histogram); - DrawMonitor(ref rect, debugLayer.waveform, waveform); - DrawMonitor(ref rect, debugLayer.vectorscope, vectorscope); - } - - void DrawMonitor(ref Rect rect, Monitor monitor, bool enabled) - { - if (!enabled || monitor.output == null) - return; - - rect.width = monitor.output.width; - rect.height = monitor.output.height; - GUI.DrawTexture(rect, monitor.output); - rect.x += monitor.output.width + 5f; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessDebug.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessDebug.cs.meta deleted file mode 100644 index 83ea2417c..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessDebug.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: c520d478f3d2445429bd7ac9c92b03a3 -timeCreated: 1499764102 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {fileID: 2800000, guid: 5f51e0b22aa8cb84b9f422576ce87ff9, type: 3} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessDebugLayer.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessDebugLayer.cs deleted file mode 100644 index 3c813ba3e..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessDebugLayer.cs +++ /dev/null @@ -1,364 +0,0 @@ -using System; -using System.Collections.Generic; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// A list of debug overlays. - /// - public enum DebugOverlay - { - /// - /// No overlay. - /// - None, - - /// - /// Displays the depth buffer. - /// - Depth, - - /// - /// Displays the screen-space normals buffer. - /// - Normals, - - /// - /// Displays the screen-space motion vectors. - /// - MotionVectors, - - /// - /// Dims the screen and displays NaN and Inf pixels with a bright pink color. - /// - NANTracker, - - /// - /// A color blindness simulator. - /// - ColorBlindnessSimulation, - - // Menu item separator for the inspector - _, - - /// - /// Displays the raw ambient occlusion map. - /// - AmbientOcclusion, - - /// - /// Displays the bloom buffer. - /// - BloomBuffer, - - /// - /// Displays the thresholded buffer used to generate bloom. - /// - BloomThreshold, - - /// - /// Displays depth of field helpers. - /// - DepthOfField - } - - /// - /// A list of color blindness types. - /// - public enum ColorBlindnessType - { - /// - /// Deuteranopia (red-green color blindness). - /// - Deuteranopia, - - /// - /// Protanopia (red-green color blindness). - /// - Protanopia, - - /// - /// Tritanopia (blue-yellow color blindness). - /// - Tritanopia - } - - /// - /// This class centralizes rendering commands for debug modes. - /// - [Serializable] - public sealed class PostProcessDebugLayer - { - /// - /// Light meter renderer. - /// - public LightMeterMonitor lightMeter; - - /// - /// Histogram renderer. - /// - public HistogramMonitor histogram; - - /// - /// Waveform renderer. - /// - public WaveformMonitor waveform; - - /// - /// Vectorscope monitor. - /// - public VectorscopeMonitor vectorscope; - - Dictionary m_Monitors; - - // Current frame size - int frameWidth; - int frameHeight; - - /// - /// The render target used to render debug overlays in. - /// - public RenderTexture debugOverlayTarget { get; private set; } - - /// - /// Returns true if the frame that was just drawn had an active debug overlay. - /// - public bool debugOverlayActive { get; private set; } - - /// - /// The debug overlay requested for the current frame. It is reset to None once the - /// frame has finished rendering. - /// - public DebugOverlay debugOverlay { get; private set; } - - /// - /// Debug overlay settings wrapper. - /// - [Serializable] - public class OverlaySettings - { - /// - /// Should we remap depth to a linear range? - /// - public bool linearDepth = false; - - /// - /// The intensity of motion vector colors. - /// - [Range(0f, 16f)] - public float motionColorIntensity = 4f; - - /// - /// The size of the motion vector grid. - /// - [Range(4, 128)] - public int motionGridSize = 64; - - /// - /// The color blindness type to simulate. - /// - public ColorBlindnessType colorBlindnessType = ColorBlindnessType.Deuteranopia; - - /// - /// The strength of the selected color blindness type. - /// - [Range(0f, 1f)] - public float colorBlindnessStrength = 1f; - } - - /// - /// Debug overlay settings. - /// - public OverlaySettings overlaySettings; - - internal void OnEnable() - { - RuntimeUtilities.CreateIfNull(ref lightMeter); - RuntimeUtilities.CreateIfNull(ref histogram); - RuntimeUtilities.CreateIfNull(ref waveform); - RuntimeUtilities.CreateIfNull(ref vectorscope); - RuntimeUtilities.CreateIfNull(ref overlaySettings); - - m_Monitors = new Dictionary - { - { MonitorType.LightMeter, lightMeter }, - { MonitorType.Histogram, histogram }, - { MonitorType.Waveform, waveform }, - { MonitorType.Vectorscope, vectorscope } - }; - - foreach (var kvp in m_Monitors) - kvp.Value.OnEnable(); - } - - internal void OnDisable() - { - foreach (var kvp in m_Monitors) - kvp.Value.OnDisable(); - - DestroyDebugOverlayTarget(); - } - - void DestroyDebugOverlayTarget() - { - RuntimeUtilities.Destroy(debugOverlayTarget); - debugOverlayTarget = null; - } - - /// - /// Requests the drawing of a monitor for the current frame. - /// - /// The monitor to request - public void RequestMonitorPass(MonitorType monitor) - { - m_Monitors[monitor].requested = true; - } - - /// - /// Requests the drawing of a debug overlay for the current frame. - /// - /// The debug overlay to request - public void RequestDebugOverlay(DebugOverlay mode) - { - debugOverlay = mode; - } - - // Sets the current frame size - used to make sure the debug overlay target is always the - // correct size - mostly useful in the editor as the user can easily resize the gameview. - internal void SetFrameSize(int width, int height) - { - frameWidth = width; - frameHeight = height; - debugOverlayActive = false; - } - - /// - /// Blit a source render target to the debug overlay target. - /// - /// The command buffer to send render commands to - /// The source target - /// The property sheet to use for the blit - /// The pass to use for the property sheet - public void PushDebugOverlay(CommandBuffer cmd, RenderTargetIdentifier source, PropertySheet sheet, int pass) - { - if (debugOverlayTarget == null || !debugOverlayTarget.IsCreated() || debugOverlayTarget.width != frameWidth || debugOverlayTarget.height != frameHeight) - { - RuntimeUtilities.Destroy(debugOverlayTarget); - - debugOverlayTarget = new RenderTexture(frameWidth, frameHeight, 0, RenderTextureFormat.ARGB32) - { - name = "Debug Overlay Target", - anisoLevel = 1, - filterMode = FilterMode.Bilinear, - wrapMode = TextureWrapMode.Clamp, - hideFlags = HideFlags.HideAndDontSave - }; - debugOverlayTarget.Create(); - } - - cmd.BlitFullscreenTriangle(source, debugOverlayTarget, sheet, pass); - debugOverlayActive = true; - } - - internal DepthTextureMode GetCameraFlags() - { - if (debugOverlay == DebugOverlay.Depth) - return DepthTextureMode.Depth; - - if (debugOverlay == DebugOverlay.Normals) - return DepthTextureMode.DepthNormals; - - if (debugOverlay == DebugOverlay.MotionVectors) - return DepthTextureMode.MotionVectors | DepthTextureMode.Depth; - - return DepthTextureMode.None; - } - - internal void RenderMonitors(PostProcessRenderContext context) - { - // Monitors - bool anyActive = false; - bool needsHalfRes = false; - - foreach (var kvp in m_Monitors) - { - bool active = kvp.Value.IsRequestedAndSupported(context); - anyActive |= active; - needsHalfRes |= active && kvp.Value.NeedsHalfRes(); - } - - if (!anyActive) - return; - - var cmd = context.command; - cmd.BeginSample("Monitors"); - - if (needsHalfRes) - { - cmd.GetTemporaryRT(ShaderIDs.HalfResFinalCopy, context.width / 2, context.height / 2, 0, FilterMode.Bilinear, context.sourceFormat); - cmd.Blit(context.destination, ShaderIDs.HalfResFinalCopy); - } - - foreach (var kvp in m_Monitors) - { - var monitor = kvp.Value; - - if (monitor.requested) - monitor.Render(context); - } - - if (needsHalfRes) - cmd.ReleaseTemporaryRT(ShaderIDs.HalfResFinalCopy); - - cmd.EndSample("Monitors"); - } - - internal void RenderSpecialOverlays(PostProcessRenderContext context) - { - if (debugOverlay == DebugOverlay.Depth) - { - var sheet = context.propertySheets.Get(context.resources.shaders.debugOverlays); - sheet.properties.SetVector(ShaderIDs.Params, new Vector4(overlaySettings.linearDepth ? 1f : 0f, 0f, 0f, 0f)); - PushDebugOverlay(context.command, BuiltinRenderTextureType.None, sheet, 0); - } - else if (debugOverlay == DebugOverlay.Normals) - { - var sheet = context.propertySheets.Get(context.resources.shaders.debugOverlays); - sheet.ClearKeywords(); - - if (context.camera.actualRenderingPath == RenderingPath.DeferredLighting) - sheet.EnableKeyword("SOURCE_GBUFFER"); - - PushDebugOverlay(context.command, BuiltinRenderTextureType.None, sheet, 1); - } - else if (debugOverlay == DebugOverlay.MotionVectors) - { - var sheet = context.propertySheets.Get(context.resources.shaders.debugOverlays); - sheet.properties.SetVector(ShaderIDs.Params, new Vector4(overlaySettings.motionColorIntensity, overlaySettings.motionGridSize, 0f, 0f)); - PushDebugOverlay(context.command, context.source, sheet, 2); - } - else if (debugOverlay == DebugOverlay.NANTracker) - { - var sheet = context.propertySheets.Get(context.resources.shaders.debugOverlays); - PushDebugOverlay(context.command, context.source, sheet, 3); - } - else if (debugOverlay == DebugOverlay.ColorBlindnessSimulation) - { - var sheet = context.propertySheets.Get(context.resources.shaders.debugOverlays); - sheet.properties.SetVector(ShaderIDs.Params, new Vector4(overlaySettings.colorBlindnessStrength, 0f, 0f, 0f)); - PushDebugOverlay(context.command, context.source, sheet, 4 + (int)overlaySettings.colorBlindnessType); - } - } - - internal void EndFrame() - { - foreach (var kvp in m_Monitors) - kvp.Value.requested = false; - - if (!debugOverlayActive) - DestroyDebugOverlayTarget(); - - debugOverlay = DebugOverlay.None; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessDebugLayer.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessDebugLayer.cs.meta deleted file mode 100644 index 4d043434c..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessDebugLayer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 314a03e1d67d9fb4b85926a765017e02 -timeCreated: 1499676807 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessEffectRenderer.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessEffectRenderer.cs deleted file mode 100644 index 9a5b293be..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessEffectRenderer.cs +++ /dev/null @@ -1,78 +0,0 @@ -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// The base abstract class for all effect renderer types. If you're writing your own effect you - /// should rather use . - /// - /// - public abstract class PostProcessEffectRenderer - { - /// - /// This member is set to true when is - /// called by the user to reset temporal effects and other history-based effects. - /// - protected bool m_ResetHistory = true; - - /// - /// Called when the renderer is created and its associated settings have been set. - /// - /// - public virtual void Init() - { - } - - /// - /// Override this method if your renderer needs access to any of the buffers defined in - /// . - /// - /// The currently set depth texture modes - /// - public virtual DepthTextureMode GetCameraFlags() - { - return DepthTextureMode.None; - } - - /// - /// Resets the history state for this renderer. This is automatically called when - /// is called by the user. - /// - public virtual void ResetHistory() - { - m_ResetHistory = true; - } - - /// - /// Override this method to release any resource allocated by your renderer. - /// - public virtual void Release() - { - ResetHistory(); - } - - /// - /// The render method called by when the effect is rendered. - /// - /// A context object - public abstract void Render(PostProcessRenderContext context); - - internal abstract void SetSettings(PostProcessEffectSettings settings); - } - - /// - /// The base abstract class for all effect renderer types. - /// - /// The associated type of settings for this renderer - public abstract class PostProcessEffectRenderer : PostProcessEffectRenderer - where T : PostProcessEffectSettings - { - /// - /// The current state of the effect settings associated with this renderer. - /// - public T settings { get; internal set; } - - internal override void SetSettings(PostProcessEffectSettings settings) - { - this.settings = (T)settings; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessEffectRenderer.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessEffectRenderer.cs.meta deleted file mode 100644 index cc41dbdc3..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessEffectRenderer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 5cfe6169b379ff84eb9796502a1a144d -timeCreated: 1488642315 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessEffectSettings.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessEffectSettings.cs deleted file mode 100644 index 2b86ccfae..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessEffectSettings.cs +++ /dev/null @@ -1,121 +0,0 @@ -using System; -using System.Collections.ObjectModel; -using System.Reflection; -using System.Linq; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// The base class for all post-processing effect settings. Any - /// members found in this class will be automatically handled and interpolated by the volume - /// framework. - /// - /// - /// - /// [Serializable] - /// [PostProcess(typeof(ExampleRenderer), "Custom/ExampleEffect")] - /// public sealed class ExampleEffect : PostProcessEffectSettings - /// { - /// [Range(0f, 1f), Tooltip("Effect intensity.")] - /// public FloatParameter intensity = new FloatParameter { value = 0f }; - /// - /// public override bool IsEnabledAndSupported(PostProcessRenderContext context) - /// { - /// return enabled.value - /// && intensity.value > 0f; // Only render the effect if intensity is greater than 0 - /// } - /// } - /// - /// - [Serializable] - public class PostProcessEffectSettings : ScriptableObject - { - /// - /// The active state of the set of parameter defined in this class. - /// - /// - public bool active = true; - - /// - /// The true state of the effect override in the stack. Setting this to false will - /// disable rendering for this effect assuming a volume with a higher priority doesn't - /// override it to true. - /// - public BoolParameter enabled = new BoolParameter { overrideState = true, value = false }; - - internal ReadOnlyCollection parameters; - - void OnEnable() - { - // Automatically grab all fields of type ParameterOverride for this instance - parameters = GetType() - .GetFields(BindingFlags.Public | BindingFlags.Instance) - .Where(t => t.FieldType.IsSubclassOf(typeof(ParameterOverride))) - .OrderBy(t => t.MetadataToken) // Guaranteed order - .Select(t => (ParameterOverride)t.GetValue(this)) - .ToList() - .AsReadOnly(); - - foreach (var parameter in parameters) - parameter.OnEnable(); - } - - void OnDisable() - { - if (parameters == null) - return; - - foreach (var parameter in parameters) - parameter.OnDisable(); - } - - /// - /// Sets all the overrides for this effect to a given value. - /// - /// The value to set the override states to - /// If false, the field will also - /// be set to the given value. - public void SetAllOverridesTo(bool state, bool excludeEnabled = true) - { - foreach (var prop in parameters) - { - if (excludeEnabled && prop == enabled) - continue; - - prop.overrideState = state; - } - } - - /// - /// Returns true if the effect is currently enabled and supported. - /// - /// The current post-processing render context - /// true if the effect is currently enabled and supported - public virtual bool IsEnabledAndSupported(PostProcessRenderContext context) - { - return enabled.value; - } - - /// - /// Returns the computed hash code for this parameter. - /// - /// A computed hash code - public int GetHash() - { - // Custom hashing function used to compare the state of settings (it's not meant to be - // unique but to be a quick way to check if two setting sets have the same state or not). - // Hash collision rate should be pretty low. - unchecked - { - //return parameters.Aggregate(17, (i, p) => i * 23 + p.GetHash()); - - int hash = 17; - - foreach (var p in parameters) - hash = hash * 23 + p.GetHash(); - - return hash; - } - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessEffectSettings.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessEffectSettings.cs.meta deleted file mode 100644 index 4e2b54577..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessEffectSettings.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 2df5c9d441da8704c8eab449a2f79d85 -timeCreated: 1487259888 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessEvent.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessEvent.cs deleted file mode 100644 index 22ec277e2..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessEvent.cs +++ /dev/null @@ -1,42 +0,0 @@ -using System.Collections.Generic; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// Injection points for custom effects. - /// - public enum PostProcessEvent - { - /// - /// Effects at this injection points will execute before transparent objects are rendered. - /// - BeforeTransparent = 0, - - /// - /// Effects at this injection points will execute after temporal anti-aliasing and before - /// builtin effects are rendered. - /// - BeforeStack = 1, - - /// - /// Effects at this injection points will execute after builtin effects have been rendered - /// and before the final pass that does FXAA and applies dithering. - /// - AfterStack = 2, - } - - // Box free comparer for our `PostProcessEvent` enum, else the runtime will box the type when - // used as a key in a dictionary, thus leading to garbage generation... *sigh* - internal struct PostProcessEventComparer : IEqualityComparer - { - public bool Equals(PostProcessEvent x, PostProcessEvent y) - { - return x == y; - } - - public int GetHashCode(PostProcessEvent obj) - { - return (int)obj; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessEvent.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessEvent.cs.meta deleted file mode 100644 index f2fdd0bbf..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessEvent.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: e4732e1210a3d39459db8b431f866659 -timeCreated: 1492527856 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessLayer.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessLayer.cs deleted file mode 100644 index 68c044b57..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessLayer.cs +++ /dev/null @@ -1,1295 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using UnityEngine.Assertions; - -namespace UnityEngine.Rendering.PostProcessing -{ -#if UNITY_2017_2_OR_NEWER - using XRSettings = UnityEngine.XR.XRSettings; -#elif UNITY_5_6_OR_NEWER - using XRSettings = UnityEngine.VR.VRSettings; -#endif - - /// - /// This is the component responsible for rendering post-processing effects. It must be put on - /// every camera you want post-processing to be applied to. - /// -#if UNITY_2018_3_OR_NEWER - [ExecuteAlways] -#else - [ExecuteInEditMode] -#endif - [DisallowMultipleComponent, ImageEffectAllowedInSceneView] - [AddComponentMenu("Rendering/Post-process Layer", 1000)] - [RequireComponent(typeof(Camera))] - public sealed class PostProcessLayer : MonoBehaviour - { - /// - /// Builtin anti-aliasing methods. - /// - public enum Antialiasing - { - /// - /// No anti-aliasing. - /// - None, - - /// - /// Fast Approximate Anti-aliasing (FXAA). Fast but low quality. - /// - FastApproximateAntialiasing, - - /// - /// Subpixel Morphological Anti-aliasing (SMAA). Slower but higher quality than FXAA. - /// - SubpixelMorphologicalAntialiasing, - - /// - /// Temporal Anti-aliasing (TAA). As fast as SMAA but generally higher quality. Because - /// of it's temporal nature, it can introduce ghosting artifacts on fast moving objects - /// in highly contrasted areas. - /// - TemporalAntialiasing - } - - /// - /// This is transform that will be drive the volume blending feature. In some cases you may - /// want to use a transform other than the camera, e.g. for a top down game you'll want the - /// player character to drive the blending instead of the actual camera transform. - /// Setting this field to null will disable local volumes for this layer (global ones - /// will still work). - /// - public Transform volumeTrigger; - - /// - /// A mask of layers to consider for volume blending. It allows you to do volume filtering - /// and is especially useful to optimize volume traversal. You should always have your - /// volumes in dedicated layers instead of the default one for best performances. - /// - public LayerMask volumeLayer; - - /// - /// If true, it will kill any invalid / NaN pixel and replace it with a black color - /// before post-processing is applied. It's generally a good idea to keep this enabled to - /// avoid post-processing artifacts cause by broken data in the scene. - /// - public bool stopNaNPropagation = true; - public bool finalBlitToCameraTarget = true; - - /// - /// The anti-aliasing method to use for this camera. By default it's set to None. - /// - public Antialiasing antialiasingMode = Antialiasing.None; - - /// - /// Temporal Anti-aliasing settings for this camera. - /// - public TemporalAntialiasing temporalAntialiasing; - - /// - /// Subpixel Morphological Anti-aliasing settings for this camera. - /// - public SubpixelMorphologicalAntialiasing subpixelMorphologicalAntialiasing; - - /// - /// Fast Approximate Anti-aliasing settings for this camera. - /// - public FastApproximateAntialiasing fastApproximateAntialiasing; - - /// - /// Fog settings for this camera. - /// - public Fog fog; - - Dithering dithering; - - /// - /// The debug layer is reponsible for rendering debugging information on the screen. It will - /// only be used if this layer is referenced in a component. - /// - /// - public PostProcessDebugLayer debugLayer; - - [SerializeField] - PostProcessResources m_Resources; - - // UI states -#if UNITY_2017_1_OR_NEWER - [UnityEngine.Scripting.Preserve] -#endif - [SerializeField] - bool m_ShowToolkit; - -#if UNITY_2017_1_OR_NEWER - [UnityEngine.Scripting.Preserve] -#endif - [SerializeField] - bool m_ShowCustomSorter; - - /// - /// If true, it will stop applying post-processing effects just before color grading - /// is applied. This is used internally to export to EXR without color grading. - /// - public bool breakBeforeColorGrading = false; - - // Pre-ordered custom user effects - // These are automatically populated and made to work properly with the serialization - // system AND the editor. Modify at your own risk. - [Serializable] - public sealed class SerializedBundleRef - { - // We can't serialize Type so use assemblyQualifiedName instead, we only need this at - // init time anyway so it's fine - public string assemblyQualifiedName; - - // Not serialized, is set/reset when deserialization kicks in - public PostProcessBundle bundle; - } - - [SerializeField] - List m_BeforeTransparentBundles; - - [SerializeField] - List m_BeforeStackBundles; - - [SerializeField] - List m_AfterStackBundles; - - public Dictionary> sortedBundles { get; private set; } - - // We need to keep track of bundle initialization because for some obscure reason, on - // assembly reload a MonoBehavior's Editor OnEnable will be called BEFORE the MonoBehavior's - // own OnEnable... So we'll use it to pre-init bundles if the layer inspector is opened and - // the component hasn't been enabled yet. - public bool haveBundlesBeenInited { get; private set; } - - // Settings/Renderer bundles mapped to settings types - Dictionary m_Bundles; - - PropertySheetFactory m_PropertySheetFactory; - CommandBuffer m_LegacyCmdBufferBeforeReflections; - CommandBuffer m_LegacyCmdBufferBeforeLighting; - CommandBuffer m_LegacyCmdBufferOpaque; - CommandBuffer m_LegacyCmdBuffer; - Camera m_Camera; - PostProcessRenderContext m_CurrentContext; - LogHistogram m_LogHistogram; - - bool m_SettingsUpdateNeeded = true; - bool m_IsRenderingInSceneView = false; - - TargetPool m_TargetPool; - - bool m_NaNKilled = false; - - // Recycled list - used to reduce GC stress when gathering active effects in a bundle list - // on each frame - readonly List m_ActiveEffects = new List(); - readonly List m_Targets = new List(); - - void OnEnable() - { - Init(null); - - if (!haveBundlesBeenInited) - InitBundles(); - - m_LogHistogram = new LogHistogram(); - m_PropertySheetFactory = new PropertySheetFactory(); - m_TargetPool = new TargetPool(); - - debugLayer.OnEnable(); - - if (RuntimeUtilities.scriptableRenderPipelineActive) - return; - - InitLegacy(); - } - - void InitLegacy() - { - m_LegacyCmdBufferBeforeReflections = new CommandBuffer { name = "Deferred Ambient Occlusion" }; - m_LegacyCmdBufferBeforeLighting = new CommandBuffer { name = "Deferred Ambient Occlusion" }; - m_LegacyCmdBufferOpaque = new CommandBuffer { name = "Opaque Only Post-processing" }; - m_LegacyCmdBuffer = new CommandBuffer { name = "Post-processing" }; - - m_Camera = GetComponent(); - -#if !UNITY_2019_1_OR_NEWER // OnRenderImage (below) implies forceIntoRenderTexture - m_Camera.forceIntoRenderTexture = true; // Needed when running Forward / LDR / No MSAA -#endif - - m_Camera.AddCommandBuffer(CameraEvent.BeforeReflections, m_LegacyCmdBufferBeforeReflections); - m_Camera.AddCommandBuffer(CameraEvent.BeforeLighting, m_LegacyCmdBufferBeforeLighting); - m_Camera.AddCommandBuffer(CameraEvent.BeforeImageEffectsOpaque, m_LegacyCmdBufferOpaque); - m_Camera.AddCommandBuffer(CameraEvent.BeforeImageEffects, m_LegacyCmdBuffer); - - // Internal context used if no SRP is set - m_CurrentContext = new PostProcessRenderContext(); - } - - -#if UNITY_2019_1_OR_NEWER - // We always use a CommandBuffer to blit to the final render target - // OnRenderImage is used only to avoid the automatic blit from the RenderTexture of Camera.forceIntoRenderTexture to the actual target - [ImageEffectUsesCommandBuffer] - void OnRenderImage(RenderTexture src, RenderTexture dst) - { - if (finalBlitToCameraTarget) - RenderTexture.active = dst; // silence warning - else - Graphics.Blit(src, dst); - } -#endif - - /// - /// Initializes this layer. If you create the layer via scripting you should always call - /// this method. - /// - /// A reference to the resource asset - public void Init(PostProcessResources resources) - { - if (resources != null) m_Resources = resources; - - RuntimeUtilities.CreateIfNull(ref temporalAntialiasing); - RuntimeUtilities.CreateIfNull(ref subpixelMorphologicalAntialiasing); - RuntimeUtilities.CreateIfNull(ref fastApproximateAntialiasing); - RuntimeUtilities.CreateIfNull(ref dithering); - RuntimeUtilities.CreateIfNull(ref fog); - RuntimeUtilities.CreateIfNull(ref debugLayer); - } - - public void InitBundles() - { - if (haveBundlesBeenInited) - return; - - // Create these lists only once, the serialization system will take over after that - RuntimeUtilities.CreateIfNull(ref m_BeforeTransparentBundles); - RuntimeUtilities.CreateIfNull(ref m_BeforeStackBundles); - RuntimeUtilities.CreateIfNull(ref m_AfterStackBundles); - - // Create a bundle for each effect type - m_Bundles = new Dictionary(); - - foreach (var type in PostProcessManager.instance.settingsTypes.Keys) - { - var settings = (PostProcessEffectSettings)ScriptableObject.CreateInstance(type); - var bundle = new PostProcessBundle(settings); - m_Bundles.Add(type, bundle); - } - - // Update sorted lists with newly added or removed effects in the assemblies - UpdateBundleSortList(m_BeforeTransparentBundles, PostProcessEvent.BeforeTransparent); - UpdateBundleSortList(m_BeforeStackBundles, PostProcessEvent.BeforeStack); - UpdateBundleSortList(m_AfterStackBundles, PostProcessEvent.AfterStack); - - // Push all sorted lists in a dictionary for easier access - sortedBundles = new Dictionary>(new PostProcessEventComparer()) - { - { PostProcessEvent.BeforeTransparent, m_BeforeTransparentBundles }, - { PostProcessEvent.BeforeStack, m_BeforeStackBundles }, - { PostProcessEvent.AfterStack, m_AfterStackBundles } - }; - - // Done - haveBundlesBeenInited = true; - } - - void UpdateBundleSortList(List sortedList, PostProcessEvent evt) - { - // First get all effects associated with the injection point - var effects = m_Bundles.Where(kvp => kvp.Value.attribute.eventType == evt && !kvp.Value.attribute.builtinEffect) - .Select(kvp => kvp.Value) - .ToList(); - - // Remove types that don't exist anymore - sortedList.RemoveAll(x => - { - string searchStr = x.assemblyQualifiedName; - return !effects.Exists(b => b.settings.GetType().AssemblyQualifiedName == searchStr); - }); - - // Add new ones - foreach (var effect in effects) - { - string typeName = effect.settings.GetType().AssemblyQualifiedName; - - if (!sortedList.Exists(b => b.assemblyQualifiedName == typeName)) - { - var sbr = new SerializedBundleRef { assemblyQualifiedName = typeName }; - sortedList.Add(sbr); - } - } - - // Link internal references - foreach (var effect in sortedList) - { - string typeName = effect.assemblyQualifiedName; - var bundle = effects.Find(b => b.settings.GetType().AssemblyQualifiedName == typeName); - effect.bundle = bundle; - } - } - - void OnDisable() - { - // Have to check for null camera in case the user is doing back'n'forth between SRP and - // legacy - if (m_Camera != null) - { - if (m_LegacyCmdBufferBeforeReflections != null) - m_Camera.RemoveCommandBuffer(CameraEvent.BeforeReflections, m_LegacyCmdBufferBeforeReflections); - if (m_LegacyCmdBufferBeforeLighting != null) - m_Camera.RemoveCommandBuffer(CameraEvent.BeforeLighting, m_LegacyCmdBufferBeforeLighting); - if (m_LegacyCmdBufferOpaque != null) - m_Camera.RemoveCommandBuffer(CameraEvent.BeforeImageEffectsOpaque, m_LegacyCmdBufferOpaque); - if (m_LegacyCmdBuffer != null) - m_Camera.RemoveCommandBuffer(CameraEvent.BeforeImageEffects, m_LegacyCmdBuffer); - } - - temporalAntialiasing.Release(); - m_LogHistogram.Release(); - - foreach (var bundle in m_Bundles.Values) - bundle.Release(); - - m_Bundles.Clear(); - m_PropertySheetFactory.Release(); - - if (debugLayer != null) - debugLayer.OnDisable(); - - // Might be an issue if several layers are blending in the same frame... - TextureLerper.instance.Clear(); - - haveBundlesBeenInited = false; - } - - // Called everytime the user resets the component from the inspector and more importantly - // the first time it's added to a GameObject. As we don't have added/removed event for - // components, this will do fine - void Reset() - { - volumeTrigger = transform; - } - - void OnPreCull() - { - // Unused in scriptable render pipelines - if (RuntimeUtilities.scriptableRenderPipelineActive) - return; - - if (m_Camera == null || m_CurrentContext == null) - InitLegacy(); - - // Resets the projection matrix from previous frame in case TAA was enabled. - // We also need to force reset the non-jittered projection matrix here as it's not done - // when ResetProjectionMatrix() is called and will break transparent rendering if TAA - // is switched off and the FOV or any other camera property changes. - -#if UNITY_2018_2_OR_NEWER - if (!m_Camera.usePhysicalProperties) -#endif - m_Camera.ResetProjectionMatrix(); - m_Camera.nonJitteredProjectionMatrix = m_Camera.projectionMatrix; - -#if !UNITY_SWITCH - if (m_Camera.stereoEnabled) - { - m_Camera.ResetStereoProjectionMatrices(); - Shader.SetGlobalFloat(ShaderIDs.RenderViewportScaleFactor, XRSettings.renderViewportScale); - } - else -#endif - { - Shader.SetGlobalFloat(ShaderIDs.RenderViewportScaleFactor, 1.0f); - } - - BuildCommandBuffers(); - } - - void OnPreRender() - { - // Unused in scriptable render pipelines - // Only needed for multi-pass stereo right eye - if (RuntimeUtilities.scriptableRenderPipelineActive || - (m_Camera.stereoActiveEye != Camera.MonoOrStereoscopicEye.Right)) - return; - - BuildCommandBuffers(); - } - - static bool RequiresInitialBlit(Camera camera, PostProcessRenderContext context) - { -#if UNITY_2019_1_OR_NEWER - if (camera.allowMSAA) // this shouldn't be necessary, but until re-tested on older Unity versions just do the blits - return true; - if (RuntimeUtilities.scriptableRenderPipelineActive) // Should never be called from SRP - return true; - - return false; -#else - return true; -#endif - } - - void UpdateSrcDstForOpaqueOnly(ref int src, ref int dst, PostProcessRenderContext context, RenderTargetIdentifier cameraTarget, int opaqueOnlyEffectsRemaining) - { - if (src > -1) - context.command.ReleaseTemporaryRT(src); - - context.source = context.destination; - src = dst; - - if (opaqueOnlyEffectsRemaining == 1) - { - context.destination = cameraTarget; - } - else - { - dst = m_TargetPool.Get(); - context.destination = dst; - context.GetScreenSpaceTemporaryRT(context.command, dst, 0, context.sourceFormat); - } - } - - void BuildCommandBuffers() - { - var context = m_CurrentContext; - var sourceFormat = m_Camera.allowHDR ? RuntimeUtilities.defaultHDRRenderTextureFormat : RenderTextureFormat.Default; - - if (!RuntimeUtilities.isFloatingPointFormat(sourceFormat)) - m_NaNKilled = true; - - context.Reset(); - context.camera = m_Camera; - context.sourceFormat = sourceFormat; - - // TODO: Investigate retaining command buffers on XR multi-pass right eye - m_LegacyCmdBufferBeforeReflections.Clear(); - m_LegacyCmdBufferBeforeLighting.Clear(); - m_LegacyCmdBufferOpaque.Clear(); - m_LegacyCmdBuffer.Clear(); - - SetupContext(context); - - context.command = m_LegacyCmdBufferOpaque; - TextureLerper.instance.BeginFrame(context); - UpdateVolumeSystem(context.camera, context.command); - - // Lighting & opaque-only effects - var aoBundle = GetBundle(); - var aoSettings = aoBundle.CastSettings(); - var aoRenderer = aoBundle.CastRenderer(); - - bool aoSupported = aoSettings.IsEnabledAndSupported(context); - bool aoAmbientOnly = aoRenderer.IsAmbientOnly(context); - bool isAmbientOcclusionDeferred = aoSupported && aoAmbientOnly; - bool isAmbientOcclusionOpaque = aoSupported && !aoAmbientOnly; - - var ssrBundle = GetBundle(); - var ssrSettings = ssrBundle.settings; - var ssrRenderer = ssrBundle.renderer; - bool isScreenSpaceReflectionsActive = ssrSettings.IsEnabledAndSupported(context); - - // Ambient-only AO is a special case and has to be done in separate command buffers - if (isAmbientOcclusionDeferred) - { - var ao = aoRenderer.Get(); - - // Render as soon as possible - should be done async in SRPs when available - context.command = m_LegacyCmdBufferBeforeReflections; - ao.RenderAmbientOnly(context); - - // Composite with GBuffer right before the lighting pass - context.command = m_LegacyCmdBufferBeforeLighting; - ao.CompositeAmbientOnly(context); - } - else if (isAmbientOcclusionOpaque) - { - context.command = m_LegacyCmdBufferOpaque; - aoRenderer.Get().RenderAfterOpaque(context); - } - - bool isFogActive = fog.IsEnabledAndSupported(context); - bool hasCustomOpaqueOnlyEffects = HasOpaqueOnlyEffects(context); - int opaqueOnlyEffects = 0; - opaqueOnlyEffects += isScreenSpaceReflectionsActive ? 1 : 0; - opaqueOnlyEffects += isFogActive ? 1 : 0; - opaqueOnlyEffects += hasCustomOpaqueOnlyEffects ? 1 : 0; - - // This works on right eye because it is resolved/populated at runtime - var cameraTarget = new RenderTargetIdentifier(BuiltinRenderTextureType.CameraTarget); - - if (opaqueOnlyEffects > 0) - { - var cmd = m_LegacyCmdBufferOpaque; - context.command = cmd; - context.source = cameraTarget; - context.destination = cameraTarget; - int srcTarget = -1; - int dstTarget = -1; - - UpdateSrcDstForOpaqueOnly(ref srcTarget, ref dstTarget, context, cameraTarget, opaqueOnlyEffects + 1); // + 1 for blit - - if (RequiresInitialBlit(m_Camera, context) || opaqueOnlyEffects == 1) - { - cmd.BuiltinBlit(context.source, context.destination, RuntimeUtilities.copyStdMaterial, stopNaNPropagation ? 1 : 0); - UpdateSrcDstForOpaqueOnly(ref srcTarget, ref dstTarget, context, cameraTarget, opaqueOnlyEffects); - } - - if (isScreenSpaceReflectionsActive) - { - ssrRenderer.Render(context); - opaqueOnlyEffects--; - UpdateSrcDstForOpaqueOnly(ref srcTarget, ref dstTarget, context, cameraTarget, opaqueOnlyEffects); - } - - if (isFogActive) - { - fog.Render(context); - opaqueOnlyEffects--; - UpdateSrcDstForOpaqueOnly(ref srcTarget, ref dstTarget, context, cameraTarget, opaqueOnlyEffects); - } - - if (hasCustomOpaqueOnlyEffects) - RenderOpaqueOnly(context); - - cmd.ReleaseTemporaryRT(srcTarget); - } - - // Post-transparency stack - int tempRt = -1; - bool forceNanKillPass = (!m_NaNKilled && stopNaNPropagation && RuntimeUtilities.isFloatingPointFormat(sourceFormat)); - if (RequiresInitialBlit(m_Camera, context) || forceNanKillPass) - { - tempRt = m_TargetPool.Get(); - context.GetScreenSpaceTemporaryRT(m_LegacyCmdBuffer, tempRt, 0, sourceFormat, RenderTextureReadWrite.sRGB); - m_LegacyCmdBuffer.BuiltinBlit(cameraTarget, tempRt, RuntimeUtilities.copyStdMaterial, stopNaNPropagation ? 1 : 0); - if (!m_NaNKilled) - m_NaNKilled = stopNaNPropagation; - - context.source = tempRt; - } - else - { - context.source = cameraTarget; - } - - context.destination = cameraTarget; - -#if UNITY_2019_1_OR_NEWER - if (finalBlitToCameraTarget && !RuntimeUtilities.scriptableRenderPipelineActive) - { - if (m_Camera.targetTexture) - { - context.destination = m_Camera.targetTexture.colorBuffer; - } - else - { - context.flip = true; - context.destination = Display.main.colorBuffer; - } - } -#endif - - context.command = m_LegacyCmdBuffer; - - Render(context); - - if (tempRt > -1) - m_LegacyCmdBuffer.ReleaseTemporaryRT(tempRt); - } - - void OnPostRender() - { - // Unused in scriptable render pipelines - if (RuntimeUtilities.scriptableRenderPipelineActive) - return; - - if (m_CurrentContext.IsTemporalAntialiasingActive()) - { -#if UNITY_2018_2_OR_NEWER - // TAA calls SetProjectionMatrix so if the camera projection mode was physical, it gets set to explicit. So we set it back to physical. - if (m_CurrentContext.physicalCamera) - m_Camera.usePhysicalProperties = true; - else -#endif - m_Camera.ResetProjectionMatrix(); - - if (m_CurrentContext.stereoActive) - { - if (RuntimeUtilities.isSinglePassStereoEnabled || m_Camera.stereoActiveEye == Camera.MonoOrStereoscopicEye.Right) - m_Camera.ResetStereoProjectionMatrices(); - } - } - } - - public PostProcessBundle GetBundle() - where T : PostProcessEffectSettings - { - return GetBundle(typeof(T)); - } - - public PostProcessBundle GetBundle(Type settingsType) - { - Assert.IsTrue(m_Bundles.ContainsKey(settingsType), "Invalid type"); - return m_Bundles[settingsType]; - } - - /// - /// Gets the current settings for a given effect. - /// - /// The type of effect to look for - /// The current state of an effect - public T GetSettings() - where T : PostProcessEffectSettings - { - return GetBundle().CastSettings(); - } - - /// - /// Utility method to bake a multi-scale volumetric obscurance map for the current camera. - /// This will only work if ambient occlusion is active in the scene. - /// - /// The command buffer to use for rendering steps - /// The camera to render ambient occlusion for - /// The destination render target - /// The depth map to use. If null, it will use the depth map - /// from the given camera - /// Should the result be inverted? - /// Should use MSAA? - public void BakeMSVOMap(CommandBuffer cmd, Camera camera, RenderTargetIdentifier destination, RenderTargetIdentifier? depthMap, bool invert, bool isMSAA = false) - { - var bundle = GetBundle(); - var renderer = bundle.CastRenderer().GetMultiScaleVO(); - renderer.SetResources(m_Resources); - renderer.GenerateAOMap(cmd, camera, destination, depthMap, invert, isMSAA); - } - - internal void OverrideSettings(List baseSettings, float interpFactor) - { - // Go through all settings & overriden parameters for the given volume and lerp values - foreach (var settings in baseSettings) - { - if (!settings.active) - continue; - - var target = GetBundle(settings.GetType()).settings; - int count = settings.parameters.Count; - - for (int i = 0; i < count; i++) - { - var toParam = settings.parameters[i]; - if (toParam.overrideState) - { - var fromParam = target.parameters[i]; - fromParam.Interp(fromParam, toParam, interpFactor); - } - } - } - } - - // In the legacy render loop you have to explicitely set flags on camera to tell that you - // need depth, depth+normals or motion vectors... This won't have any effect with most - // scriptable render pipelines. - void SetLegacyCameraFlags(PostProcessRenderContext context) - { - var flags = context.camera.depthTextureMode; - - foreach (var bundle in m_Bundles) - { - if (bundle.Value.settings.IsEnabledAndSupported(context)) - flags |= bundle.Value.renderer.GetCameraFlags(); - } - - // Special case for AA & lighting effects - if (context.IsTemporalAntialiasingActive()) - flags |= temporalAntialiasing.GetCameraFlags(); - - if (fog.IsEnabledAndSupported(context)) - flags |= fog.GetCameraFlags(); - - if (debugLayer.debugOverlay != DebugOverlay.None) - flags |= debugLayer.GetCameraFlags(); - - context.camera.depthTextureMode = flags; - } - - /// - /// This method should be called whenever you need to reset any temporal effect, e.g. when - /// doing camera cuts. - /// - public void ResetHistory() - { - foreach (var bundle in m_Bundles) - bundle.Value.ResetHistory(); - - temporalAntialiasing.ResetHistory(); - } - - /// - /// Checks if this layer has any active opaque-only effect. - /// - /// The current render context - /// true if opaque-only effects are active, false otherwise - public bool HasOpaqueOnlyEffects(PostProcessRenderContext context) - { - return HasActiveEffects(PostProcessEvent.BeforeTransparent, context); - } - - /// - /// Checks if this layer has any active effect at the given injection point. - /// - /// The injection point to look for - /// The current render context - /// true if any effect at the given injection point is active, false - /// otherwise - public bool HasActiveEffects(PostProcessEvent evt, PostProcessRenderContext context) - { - var list = sortedBundles[evt]; - - foreach (var item in list) - { - bool enabledAndSupported = item.bundle.settings.IsEnabledAndSupported(context); - - if (context.isSceneView) - { - if (item.bundle.attribute.allowInSceneView && enabledAndSupported) - return true; - } - else if (enabledAndSupported) - { - return true; - } - } - - return false; - } - - void SetupContext(PostProcessRenderContext context) - { - RuntimeUtilities.s_Resources = m_Resources; - - m_IsRenderingInSceneView = context.camera.cameraType == CameraType.SceneView; - context.isSceneView = m_IsRenderingInSceneView; - context.resources = m_Resources; - context.propertySheets = m_PropertySheetFactory; - context.debugLayer = debugLayer; - context.antialiasing = antialiasingMode; - context.temporalAntialiasing = temporalAntialiasing; - context.logHistogram = m_LogHistogram; - -#if UNITY_2018_2_OR_NEWER - context.physicalCamera = context.camera.usePhysicalProperties; -#endif - - SetLegacyCameraFlags(context); - - // Prepare debug overlay - debugLayer.SetFrameSize(context.width, context.height); - - // Unsafe to keep this around but we need it for OnGUI events for debug views - // Will be removed eventually - m_CurrentContext = context; - } - - /// - /// Updates the state of the volume system. This should be called before any other - /// post-processing method when running in a scriptable render pipeline. You don't need to - /// call this method when running in one of the builtin pipelines. - /// - /// The currently rendering camera. - /// A command buffer to fill. - public void UpdateVolumeSystem(Camera cam, CommandBuffer cmd) - { - if (m_SettingsUpdateNeeded) - { - cmd.BeginSample("VolumeBlending"); - PostProcessManager.instance.UpdateSettings(this, cam); - cmd.EndSample("VolumeBlending"); - m_TargetPool.Reset(); - - // TODO: fix me once VR support is in SRP - // Needed in SRP so that _RenderViewportScaleFactor isn't 0 - if (RuntimeUtilities.scriptableRenderPipelineActive) - Shader.SetGlobalFloat(ShaderIDs.RenderViewportScaleFactor, 1f); - } - - m_SettingsUpdateNeeded = false; - } - - /// - /// Renders effects in the bucket. You - /// should call before calling this method as it won't - /// automatically blit source into destination if no opaque-only effect is active. - /// - /// The current post-processing context. - public void RenderOpaqueOnly(PostProcessRenderContext context) - { - if (RuntimeUtilities.scriptableRenderPipelineActive) - SetupContext(context); - - TextureLerper.instance.BeginFrame(context); - - // Update & override layer settings first (volume blending), will only be done once per - // frame, either here or in Render() if there isn't any opaque-only effect to render. - // TODO: should be removed, keeping this here for older SRPs - UpdateVolumeSystem(context.camera, context.command); - - RenderList(sortedBundles[PostProcessEvent.BeforeTransparent], context, "OpaqueOnly"); - } - - /// - /// Renders all effects not in the bucket. - /// - /// The current post-processing context. - public void Render(PostProcessRenderContext context) - { - if (RuntimeUtilities.scriptableRenderPipelineActive) - SetupContext(context); - - TextureLerper.instance.BeginFrame(context); - var cmd = context.command; - - // Update & override layer settings first (volume blending) if the opaque only pass - // hasn't been called this frame. - // TODO: should be removed, keeping this here for older SRPs - UpdateVolumeSystem(context.camera, context.command); - - // Do a NaN killing pass if needed - int lastTarget = -1; - RenderTargetIdentifier cameraTexture = context.source; - -#if UNITY_2019_1_OR_NEWER - if (context.stereoActive && context.numberOfEyes > 1 && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) - { - cmd.SetSinglePassStereo(SinglePassStereoMode.None); - cmd.DisableShaderKeyword("UNITY_SINGLE_PASS_STEREO"); - } -#endif - - for (int eye = 0; eye < context.numberOfEyes; eye++) - { - bool preparedStereoSource = false; - - if (stopNaNPropagation && !m_NaNKilled) - { - lastTarget = m_TargetPool.Get(); - context.GetScreenSpaceTemporaryRT(cmd, lastTarget, 0, context.sourceFormat); - if (context.stereoActive && context.numberOfEyes > 1) - { - if (context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced) - { - cmd.BlitFullscreenTriangleFromTexArray(context.source, lastTarget, RuntimeUtilities.copyFromTexArraySheet, 1, false, eye); - preparedStereoSource = true; - } - else if (context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) - { - cmd.BlitFullscreenTriangleFromDoubleWide(context.source, lastTarget, RuntimeUtilities.copyStdFromDoubleWideMaterial, 1, eye); - preparedStereoSource = true; - } - } - else - cmd.BlitFullscreenTriangle(context.source, lastTarget, RuntimeUtilities.copySheet, 1); - context.source = lastTarget; - m_NaNKilled = true; - } - - if (!preparedStereoSource && context.numberOfEyes > 1) - { - lastTarget = m_TargetPool.Get(); - context.GetScreenSpaceTemporaryRT(cmd, lastTarget, 0, context.sourceFormat); - if (context.stereoActive) - { - if (context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced) - { - cmd.BlitFullscreenTriangleFromTexArray(context.source, lastTarget, RuntimeUtilities.copyFromTexArraySheet, 1, false, eye); - preparedStereoSource = true; - } - else if (context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) - { - cmd.BlitFullscreenTriangleFromDoubleWide(context.source, lastTarget, RuntimeUtilities.copyStdFromDoubleWideMaterial, stopNaNPropagation ? 1 : 0, eye); - preparedStereoSource = true; - } - } - context.source = lastTarget; - } - - // Do temporal anti-aliasing first - if (context.IsTemporalAntialiasingActive()) - { - if (!RuntimeUtilities.scriptableRenderPipelineActive) - { - if (context.stereoActive) - { - // We only need to configure all of this once for stereo, during OnPreCull - if (context.camera.stereoActiveEye != Camera.MonoOrStereoscopicEye.Right) - temporalAntialiasing.ConfigureStereoJitteredProjectionMatrices(context); - } - else - { - temporalAntialiasing.ConfigureJitteredProjectionMatrix(context); - } - } - - var taaTarget = m_TargetPool.Get(); - var finalDestination = context.destination; - context.GetScreenSpaceTemporaryRT(cmd, taaTarget, 0, context.sourceFormat); - context.destination = taaTarget; - temporalAntialiasing.Render(context); - context.source = taaTarget; - context.destination = finalDestination; - - if (lastTarget > -1) - cmd.ReleaseTemporaryRT(lastTarget); - - lastTarget = taaTarget; - } - - bool hasBeforeStackEffects = HasActiveEffects(PostProcessEvent.BeforeStack, context); - bool hasAfterStackEffects = HasActiveEffects(PostProcessEvent.AfterStack, context) && !breakBeforeColorGrading; - bool needsFinalPass = (hasAfterStackEffects - || (antialiasingMode == Antialiasing.FastApproximateAntialiasing) || (antialiasingMode == Antialiasing.SubpixelMorphologicalAntialiasing && subpixelMorphologicalAntialiasing.IsSupported())) - && !breakBeforeColorGrading; - - // Right before the builtin stack - if (hasBeforeStackEffects) - lastTarget = RenderInjectionPoint(PostProcessEvent.BeforeStack, context, "BeforeStack", lastTarget); - - // Builtin stack - lastTarget = RenderBuiltins(context, !needsFinalPass, lastTarget, eye); - - // After the builtin stack but before the final pass (before FXAA & Dithering) - if (hasAfterStackEffects) - lastTarget = RenderInjectionPoint(PostProcessEvent.AfterStack, context, "AfterStack", lastTarget); - - // And close with the final pass - if (needsFinalPass) - RenderFinalPass(context, lastTarget, eye); - - if (context.stereoActive) - context.source = cameraTexture; - } - -#if UNITY_2019_1_OR_NEWER - if (context.stereoActive && context.numberOfEyes > 1 && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) - { - cmd.SetSinglePassStereo(SinglePassStereoMode.SideBySide); - cmd.EnableShaderKeyword("UNITY_SINGLE_PASS_STEREO"); - } -#endif - - // Render debug monitors & overlay if requested - debugLayer.RenderSpecialOverlays(context); - debugLayer.RenderMonitors(context); - - // End frame cleanup - TextureLerper.instance.EndFrame(); - debugLayer.EndFrame(); - m_SettingsUpdateNeeded = true; - m_NaNKilled = false; - } - - int RenderInjectionPoint(PostProcessEvent evt, PostProcessRenderContext context, string marker, int releaseTargetAfterUse = -1) - { - int tempTarget = m_TargetPool.Get(); - var finalDestination = context.destination; - - var cmd = context.command; - context.GetScreenSpaceTemporaryRT(cmd, tempTarget, 0, context.sourceFormat); - context.destination = tempTarget; - RenderList(sortedBundles[evt], context, marker); - context.source = tempTarget; - context.destination = finalDestination; - - if (releaseTargetAfterUse > -1) - cmd.ReleaseTemporaryRT(releaseTargetAfterUse); - - return tempTarget; - } - - void RenderList(List list, PostProcessRenderContext context, string marker) - { - var cmd = context.command; - cmd.BeginSample(marker); - - // First gather active effects - we need this to manage render targets more efficiently - m_ActiveEffects.Clear(); - for (int i = 0; i < list.Count; i++) - { - var effect = list[i].bundle; - if (effect.settings.IsEnabledAndSupported(context)) - { - if (!context.isSceneView || (context.isSceneView && effect.attribute.allowInSceneView)) - m_ActiveEffects.Add(effect.renderer); - } - } - - int count = m_ActiveEffects.Count; - - // If there's only one active effect, we can simply execute it and skip the rest - if (count == 1) - { - m_ActiveEffects[0].Render(context); - } - else - { - // Else create the target chain - m_Targets.Clear(); - m_Targets.Add(context.source); // First target is always source - - int tempTarget1 = m_TargetPool.Get(); - int tempTarget2 = m_TargetPool.Get(); - - for (int i = 0; i < count - 1; i++) - m_Targets.Add(i % 2 == 0 ? tempTarget1 : tempTarget2); - - m_Targets.Add(context.destination); // Last target is always destination - - // Render - context.GetScreenSpaceTemporaryRT(cmd, tempTarget1, 0, context.sourceFormat); - if (count > 2) - context.GetScreenSpaceTemporaryRT(cmd, tempTarget2, 0, context.sourceFormat); - - for (int i = 0; i < count; i++) - { - context.source = m_Targets[i]; - context.destination = m_Targets[i + 1]; - m_ActiveEffects[i].Render(context); - } - - cmd.ReleaseTemporaryRT(tempTarget1); - if (count > 2) - cmd.ReleaseTemporaryRT(tempTarget2); - } - - cmd.EndSample(marker); - } - - void ApplyFlip(PostProcessRenderContext context, MaterialPropertyBlock properties) - { - if (context.flip && !context.isSceneView) - properties.SetVector(ShaderIDs.UVTransform, new Vector4(1.0f, 1.0f, 0.0f, 0.0f)); - else - ApplyDefaultFlip(properties); - } - - void ApplyDefaultFlip(MaterialPropertyBlock properties) - { - properties.SetVector(ShaderIDs.UVTransform, SystemInfo.graphicsUVStartsAtTop ? new Vector4(1.0f, -1.0f, 0.0f, 1.0f) : new Vector4(1.0f, 1.0f, 0.0f, 0.0f)); - } - - int RenderBuiltins(PostProcessRenderContext context, bool isFinalPass, int releaseTargetAfterUse = -1, int eye = -1) - { - var uberSheet = context.propertySheets.Get(context.resources.shaders.uber); - uberSheet.ClearKeywords(); - uberSheet.properties.Clear(); - context.uberSheet = uberSheet; - context.autoExposureTexture = RuntimeUtilities.whiteTexture; - context.bloomBufferNameID = -1; - - if (isFinalPass && context.stereoActive && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced) - uberSheet.EnableKeyword("STEREO_INSTANCING_ENABLED"); - - var cmd = context.command; - cmd.BeginSample("BuiltinStack"); - - int tempTarget = -1; - var finalDestination = context.destination; - - if (!isFinalPass) - { - // Render to an intermediate target as this won't be the final pass - tempTarget = m_TargetPool.Get(); - context.GetScreenSpaceTemporaryRT(cmd, tempTarget, 0, context.sourceFormat); - context.destination = tempTarget; - - // Handle FXAA's keep alpha mode - if (antialiasingMode == Antialiasing.FastApproximateAntialiasing && !fastApproximateAntialiasing.keepAlpha) - uberSheet.properties.SetFloat(ShaderIDs.LumaInAlpha, 1f); - } - - // Depth of field final combination pass used to be done in Uber which led to artifacts - // when used at the same time as Bloom (because both effects used the same source, so - // the stronger bloom was, the more DoF was eaten away in out of focus areas) - int depthOfFieldTarget = RenderEffect(context, true); - - // Motion blur is a separate pass - could potentially be done after DoF depending on the - // kind of results you're looking for... - int motionBlurTarget = RenderEffect(context, true); - - // Prepare exposure histogram if needed - if (ShouldGenerateLogHistogram(context)) - m_LogHistogram.Generate(context); - - // Uber effects - RenderEffect(context); - uberSheet.properties.SetTexture(ShaderIDs.AutoExposureTex, context.autoExposureTexture); - - RenderEffect(context); - RenderEffect(context); - RenderEffect(context); - RenderEffect(context); - RenderEffect(context); - - if (!breakBeforeColorGrading) - RenderEffect(context); - - if (isFinalPass) - { - uberSheet.EnableKeyword("FINALPASS"); - dithering.Render(context); - ApplyFlip(context, uberSheet.properties); - } - else - { - ApplyDefaultFlip(uberSheet.properties); - } - - if (context.stereoActive && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced) - { - uberSheet.properties.SetFloat(ShaderIDs.DepthSlice, eye); - cmd.BlitFullscreenTriangleToTexArray(context.source, context.destination, uberSheet, 0, false, eye); - } - else if (isFinalPass && context.stereoActive && context.numberOfEyes > 1 && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) - { - cmd.BlitFullscreenTriangleToDoubleWide(context.source, context.destination, uberSheet, 0, eye); - } -#if LWRP_1_0_0_OR_NEWER - else if (isFinalPass) - cmd.BlitFullscreenTriangle(context.source, context.destination, uberSheet, 0, false, context.camera.pixelRect); -#endif - else - cmd.BlitFullscreenTriangle(context.source, context.destination, uberSheet, 0); - - context.source = context.destination; - context.destination = finalDestination; - - if (releaseTargetAfterUse > -1) cmd.ReleaseTemporaryRT(releaseTargetAfterUse); - if (motionBlurTarget > -1) cmd.ReleaseTemporaryRT(motionBlurTarget); - if (depthOfFieldTarget > -1) cmd.ReleaseTemporaryRT(depthOfFieldTarget); - if (context.bloomBufferNameID > -1) cmd.ReleaseTemporaryRT(context.bloomBufferNameID); - - cmd.EndSample("BuiltinStack"); - - return tempTarget; - } - - // This pass will have to be disabled for HDR screen output as it's an LDR pass - void RenderFinalPass(PostProcessRenderContext context, int releaseTargetAfterUse = -1, int eye = -1) - { - var cmd = context.command; - cmd.BeginSample("FinalPass"); - - if (breakBeforeColorGrading) - { - var sheet = context.propertySheets.Get(context.resources.shaders.discardAlpha); - if (context.stereoActive && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced) - sheet.EnableKeyword("STEREO_INSTANCING_ENABLED"); - - if (context.stereoActive && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced) - { - sheet.properties.SetFloat(ShaderIDs.DepthSlice, eye); - cmd.BlitFullscreenTriangleToTexArray(context.source, context.destination, sheet, 0, false, eye); - } - else if (context.stereoActive && context.numberOfEyes > 1 && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) - { - cmd.BlitFullscreenTriangleToDoubleWide(context.source, context.destination, sheet, 0, eye); - } - else - cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); - } - else - { - var uberSheet = context.propertySheets.Get(context.resources.shaders.finalPass); - uberSheet.ClearKeywords(); - uberSheet.properties.Clear(); - context.uberSheet = uberSheet; - int tempTarget = -1; - - if (context.stereoActive && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced) - uberSheet.EnableKeyword("STEREO_INSTANCING_ENABLED"); - - if (antialiasingMode == Antialiasing.FastApproximateAntialiasing) - { - uberSheet.EnableKeyword(fastApproximateAntialiasing.fastMode - ? "FXAA_LOW" - : "FXAA" - ); - - if (fastApproximateAntialiasing.keepAlpha) - uberSheet.EnableKeyword("FXAA_KEEP_ALPHA"); - } - else if (antialiasingMode == Antialiasing.SubpixelMorphologicalAntialiasing && subpixelMorphologicalAntialiasing.IsSupported()) - { - tempTarget = m_TargetPool.Get(); - var finalDestination = context.destination; - context.GetScreenSpaceTemporaryRT(context.command, tempTarget, 0, context.sourceFormat); - context.destination = tempTarget; - subpixelMorphologicalAntialiasing.Render(context); - context.source = tempTarget; - context.destination = finalDestination; - } - - dithering.Render(context); - - ApplyFlip(context, uberSheet.properties); - if (context.stereoActive && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced) - { - uberSheet.properties.SetFloat(ShaderIDs.DepthSlice, eye); - cmd.BlitFullscreenTriangleToTexArray(context.source, context.destination, uberSheet, 0, false, eye); - } - else if (context.stereoActive && context.numberOfEyes > 1 && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) - { - cmd.BlitFullscreenTriangleToDoubleWide(context.source, context.destination, uberSheet, 0, eye); - } - else - cmd.BlitFullscreenTriangle(context.source, context.destination, uberSheet, 0, false, context.camera.pixelRect); - - if (tempTarget > -1) - cmd.ReleaseTemporaryRT(tempTarget); - } - - if (releaseTargetAfterUse > -1) - cmd.ReleaseTemporaryRT(releaseTargetAfterUse); - - cmd.EndSample("FinalPass"); - } - - int RenderEffect(PostProcessRenderContext context, bool useTempTarget = false) - where T : PostProcessEffectSettings - { - var effect = GetBundle(); - - if (!effect.settings.IsEnabledAndSupported(context)) - return -1; - - if (m_IsRenderingInSceneView && !effect.attribute.allowInSceneView) - return -1; - - if (!useTempTarget) - { - effect.renderer.Render(context); - return -1; - } - - var finalDestination = context.destination; - var tempTarget = m_TargetPool.Get(); - context.GetScreenSpaceTemporaryRT(context.command, tempTarget, 0, context.sourceFormat); - context.destination = tempTarget; - effect.renderer.Render(context); - context.source = tempTarget; - context.destination = finalDestination; - return tempTarget; - } - - bool ShouldGenerateLogHistogram(PostProcessRenderContext context) - { - bool autoExpo = GetBundle().settings.IsEnabledAndSupported(context); - bool lightMeter = debugLayer.lightMeter.IsRequestedAndSupported(context); - return autoExpo || lightMeter; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessLayer.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessLayer.cs.meta deleted file mode 100644 index 522d05bbb..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessLayer.cs.meta +++ /dev/null @@ -1,14 +0,0 @@ -fileFormatVersion: 2 -guid: 948f4100a11a5c24981795d21301da5c -timeCreated: 1493713997 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: - - volumeTrigger: {instanceID: 0} - - m_Resources: {fileID: 11400000, guid: d82512f9c8e5d4a4d938b575d47f88d4, type: 2} - executionOrder: 0 - icon: {fileID: 2800000, guid: 5f51e0b22aa8cb84b9f422576ce87ff9, type: 3} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessManager.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessManager.cs deleted file mode 100644 index 251818b66..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessManager.cs +++ /dev/null @@ -1,461 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using UnityEngine.Assertions; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// This manager tracks all volumes in the scene and does all the interpolation work. It is - /// automatically created as soon as Post-processing is active in a scene. - /// - public sealed class PostProcessManager - { - static PostProcessManager s_Instance; - - /// - /// The current singleton instance of . - /// - public static PostProcessManager instance - { - get - { - if (s_Instance == null) - s_Instance = new PostProcessManager(); - - return s_Instance; - } - } - - const int k_MaxLayerCount = 32; // Max amount of layers available in Unity - readonly Dictionary> m_SortedVolumes; - readonly List m_Volumes; - readonly Dictionary m_SortNeeded; - readonly List m_BaseSettings; - readonly List m_TempColliders; - - /// - /// This dictionary maps all available to their - /// corresponding . It can be used to list all loaded - /// builtin and custom effects. - /// - public readonly Dictionary settingsTypes; - - PostProcessManager() - { - m_SortedVolumes = new Dictionary>(); - m_Volumes = new List(); - m_SortNeeded = new Dictionary(); - m_BaseSettings = new List(); - m_TempColliders = new List(5); - - settingsTypes = new Dictionary(); - ReloadBaseTypes(); - } - -#if UNITY_EDITOR - // Called every time Unity recompile scripts in the editor. We need this to keep track of - // any new custom effect the user might add to the project - [UnityEditor.Callbacks.DidReloadScripts] - static void OnEditorReload() - { - instance.ReloadBaseTypes(); - } -#endif - - void CleanBaseTypes() - { - settingsTypes.Clear(); - - foreach (var settings in m_BaseSettings) - RuntimeUtilities.Destroy(settings); - - m_BaseSettings.Clear(); - } - - // This will be called only once at runtime and everytime script reload kicks-in in the - // editor as we need to keep track of any compatible post-processing effects in the project - void ReloadBaseTypes() - { - CleanBaseTypes(); - - // Rebuild the base type map - var types = RuntimeUtilities.GetAllAssemblyTypes() - .Where( - t => t.IsSubclassOf(typeof(PostProcessEffectSettings)) - && t.IsDefined(typeof(PostProcessAttribute), false) - && !t.IsAbstract - ); - - foreach (var type in types) - { - settingsTypes.Add(type, type.GetAttribute()); - - // Create an instance for each effect type, these will be used for the lowest - // priority global volume as we need a default state when exiting volume ranges - var inst = (PostProcessEffectSettings)ScriptableObject.CreateInstance(type); - inst.SetAllOverridesTo(true, false); - m_BaseSettings.Add(inst); - } - } - - /// - /// Gets a list of all volumes currently affecting the given layer. Results aren't sorted - /// and the list isn't cleared. - /// - /// The layer to look for - /// A list to store the volumes found - /// Should we skip disabled volumes? - /// Should we skip 0-weight volumes? - public void GetActiveVolumes(PostProcessLayer layer, List results, bool skipDisabled = true, bool skipZeroWeight = true) - { - // If no trigger is set, only global volumes will have influence - int mask = layer.volumeLayer.value; - var volumeTrigger = layer.volumeTrigger; - bool onlyGlobal = volumeTrigger == null; - var triggerPos = onlyGlobal ? Vector3.zero : volumeTrigger.position; - - // Sort the cached volume list(s) for the given layer mask if needed and return it - var volumes = GrabVolumes(mask); - - // Traverse all volumes - foreach (var volume in volumes) - { - // Skip disabled volumes and volumes without any data or weight - if ((skipDisabled && !volume.enabled) || volume.profileRef == null || (skipZeroWeight && volume.weight <= 0f)) - continue; - - // Global volume always have influence - if (volume.isGlobal) - { - results.Add(volume); - continue; - } - - if (onlyGlobal) - continue; - - // If volume isn't global and has no collider, skip it as it's useless - var colliders = m_TempColliders; - volume.GetComponents(colliders); - if (colliders.Count == 0) - continue; - - // Find closest distance to volume, 0 means it's inside it - float closestDistanceSqr = float.PositiveInfinity; - - foreach (var collider in colliders) - { - if (!collider.enabled) - continue; - - var closestPoint = collider.ClosestPoint(triggerPos); // 5.6-only API - var d = ((closestPoint - triggerPos) / 2f).sqrMagnitude; - - if (d < closestDistanceSqr) - closestDistanceSqr = d; - } - - colliders.Clear(); - float blendDistSqr = volume.blendDistance * volume.blendDistance; - - // Check for influence - if (closestDistanceSqr <= blendDistSqr) - results.Add(volume); - } - } - - /// - /// Gets the highest priority volume affecting a given layer. - /// - /// The layer to look for - /// The highest priority volume affecting the layer - public PostProcessVolume GetHighestPriorityVolume(PostProcessLayer layer) - { - if (layer == null) - throw new ArgumentNullException("layer"); - - return GetHighestPriorityVolume(layer.volumeLayer); - } - - /// - /// Gets the highest priority volume affecting in a given - /// . - /// - /// The layer mask to look for - /// The highest priority volume affecting the layer mask - /// - public PostProcessVolume GetHighestPriorityVolume(LayerMask mask) - { - float highestPriority = float.NegativeInfinity; - PostProcessVolume output = null; - - List volumes; - if (m_SortedVolumes.TryGetValue(mask, out volumes)) - { - foreach (var volume in volumes) - { - if (volume.priority > highestPriority) - { - highestPriority = volume.priority; - output = volume; - } - } - } - - return output; - } - - /// - /// Helper method to spawn a new volume in the scene. - /// - /// The unity layer to put the volume in - /// The priority to set this volume to - /// A list of effects to put in this volume - /// - public PostProcessVolume QuickVolume(int layer, float priority, params PostProcessEffectSettings[] settings) - { - var gameObject = new GameObject() - { - name = "Quick Volume", - layer = layer, - hideFlags = HideFlags.HideAndDontSave - }; - - var volume = gameObject.AddComponent(); - volume.priority = priority; - volume.isGlobal = true; - var profile = volume.profile; - - foreach (var s in settings) - { - Assert.IsNotNull(s, "Trying to create a volume with null effects"); - profile.AddSettings(s); - } - - return volume; - } - - internal void SetLayerDirty(int layer) - { - Assert.IsTrue(layer >= 0 && layer <= k_MaxLayerCount, "Invalid layer bit"); - - foreach (var kvp in m_SortedVolumes) - { - var mask = kvp.Key; - - if ((mask & (1 << layer)) != 0) - m_SortNeeded[mask] = true; - } - } - - internal void UpdateVolumeLayer(PostProcessVolume volume, int prevLayer, int newLayer) - { - Assert.IsTrue(prevLayer >= 0 && prevLayer <= k_MaxLayerCount, "Invalid layer bit"); - Unregister(volume, prevLayer); - Register(volume, newLayer); - } - - void Register(PostProcessVolume volume, int layer) - { - m_Volumes.Add(volume); - - // Look for existing cached layer masks and add it there if needed - foreach (var kvp in m_SortedVolumes) - { - var mask = kvp.Key; - - if ((mask & (1 << layer)) != 0) - kvp.Value.Add(volume); - } - - SetLayerDirty(layer); - } - - internal void Register(PostProcessVolume volume) - { - int layer = volume.gameObject.layer; - Register(volume, layer); - } - - void Unregister(PostProcessVolume volume, int layer) - { - m_Volumes.Remove(volume); - - foreach (var kvp in m_SortedVolumes) - { - var mask = kvp.Key; - - // Skip layer masks this volume doesn't belong to - if ((mask & (1 << layer)) == 0) - continue; - - kvp.Value.Remove(volume); - } - } - - internal void Unregister(PostProcessVolume volume) - { - int layer = volume.gameObject.layer; - Unregister(volume, layer); - } - - // Faster version of OverrideSettings to force replace values in the global state - void ReplaceData(PostProcessLayer postProcessLayer) - { - foreach (var settings in m_BaseSettings) - { - var target = postProcessLayer.GetBundle(settings.GetType()).settings; - int count = settings.parameters.Count; - - for (int i = 0; i < count; i++) - target.parameters[i].SetValue(settings.parameters[i]); - } - } - - internal void UpdateSettings(PostProcessLayer postProcessLayer, Camera camera) - { - // Reset to base state - ReplaceData(postProcessLayer); - - // If no trigger is set, only global volumes will have influence - int mask = postProcessLayer.volumeLayer.value; - var volumeTrigger = postProcessLayer.volumeTrigger; - bool onlyGlobal = volumeTrigger == null; - var triggerPos = onlyGlobal ? Vector3.zero : volumeTrigger.position; - - // Sort the cached volume list(s) for the given layer mask if needed and return it - var volumes = GrabVolumes(mask); - - // Traverse all volumes - foreach (var volume in volumes) - { -#if UNITY_EDITOR - // Skip volumes that aren't in the scene currently displayed in the scene view - if (!IsVolumeRenderedByCamera(volume, camera)) - continue; -#endif - - // Skip disabled volumes and volumes without any data or weight - if (!volume.enabled || volume.profileRef == null || volume.weight <= 0f) - continue; - - var settings = volume.profileRef.settings; - - // Global volume always have influence - if (volume.isGlobal) - { - postProcessLayer.OverrideSettings(settings, Mathf.Clamp01(volume.weight)); - continue; - } - - if (onlyGlobal) - continue; - - // If volume isn't global and has no collider, skip it as it's useless - var colliders = m_TempColliders; - volume.GetComponents(colliders); - if (colliders.Count == 0) - continue; - - // Find closest distance to volume, 0 means it's inside it - float closestDistanceSqr = float.PositiveInfinity; - - foreach (var collider in colliders) - { - if (!collider.enabled) - continue; - - var closestPoint = collider.ClosestPoint(triggerPos); // 5.6-only API - var d = ((closestPoint - triggerPos) / 2f).sqrMagnitude; - - if (d < closestDistanceSqr) - closestDistanceSqr = d; - } - - colliders.Clear(); - float blendDistSqr = volume.blendDistance * volume.blendDistance; - - // Volume has no influence, ignore it - // Note: Volume doesn't do anything when `closestDistanceSqr = blendDistSqr` but - // we can't use a >= comparison as blendDistSqr could be set to 0 in which - // case volume would have total influence - if (closestDistanceSqr > blendDistSqr) - continue; - - // Volume has influence - float interpFactor = 1f; - - if (blendDistSqr > 0f) - interpFactor = 1f - (closestDistanceSqr / blendDistSqr); - - // No need to clamp01 the interpolation factor as it'll always be in [0;1[ range - postProcessLayer.OverrideSettings(settings, interpFactor * Mathf.Clamp01(volume.weight)); - } - } - - List GrabVolumes(LayerMask mask) - { - List list; - - if (!m_SortedVolumes.TryGetValue(mask, out list)) - { - // New layer mask detected, create a new list and cache all the volumes that belong - // to this mask in it - list = new List(); - - foreach (var volume in m_Volumes) - { - if ((mask & (1 << volume.gameObject.layer)) == 0) - continue; - - list.Add(volume); - m_SortNeeded[mask] = true; - } - - m_SortedVolumes.Add(mask, list); - } - - // Check sorting state - bool sortNeeded; - if (m_SortNeeded.TryGetValue(mask, out sortNeeded) && sortNeeded) - { - m_SortNeeded[mask] = false; - SortByPriority(list); - } - - return list; - } - - // Custom insertion sort. First sort will be slower but after that it'll be faster than - // using List.Sort() which is also unstable by nature. - // Sort order is ascending. - static void SortByPriority(List volumes) - { - Assert.IsNotNull(volumes, "Trying to sort volumes of non-initialized layer"); - - for (int i = 1; i < volumes.Count; i++) - { - var temp = volumes[i]; - int j = i - 1; - - while (j >= 0 && volumes[j].priority > temp.priority) - { - volumes[j + 1] = volumes[j]; - j--; - } - - volumes[j + 1] = temp; - } - } - - static bool IsVolumeRenderedByCamera(PostProcessVolume volume, Camera camera) - { -#if UNITY_2018_3_OR_NEWER && UNITY_EDITOR - return UnityEditor.SceneManagement.StageUtility.IsGameObjectRenderedByCamera(volume.gameObject, camera); -#else - return true; -#endif - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessManager.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessManager.cs.meta deleted file mode 100644 index 8baecdbf2..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessManager.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 18ff20fea2d39cf428e31d3e75b4ae79 -timeCreated: 1485268412 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessProfile.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessProfile.cs deleted file mode 100644 index 472aec454..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessProfile.cs +++ /dev/null @@ -1,187 +0,0 @@ -using System; -using System.Collections.Generic; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// An asset holding a set of post-processing settings to use with a . - /// - /// - public sealed class PostProcessProfile : ScriptableObject - { - /// - /// A list of all settings stored in this profile. - /// - [Tooltip("A list of all settings currently stored in this profile.")] - public List settings = new List(); - - // Editor only, doesn't have any use outside of it - [NonSerialized] - public bool isDirty = true; - - void OnEnable() - { - // Make sure every setting is valid. If a profile holds a script that doesn't exist - // anymore, nuke it to keep the profile clean. Note that if you delete a script that is - // currently in use in a profile you'll still get a one-time error in the console, it's - // harmless and happens because Unity does a redraw of the editor (and thus the current - // frame) before the recompilation step. - settings.RemoveAll(x => x == null); - } - - /// - /// Adds settings for an effect to the profile. - /// - /// A type of - /// The instance created from the given type - /// - public T AddSettings() - where T : PostProcessEffectSettings - { - return (T)AddSettings(typeof(T)); - } - - /// - /// Adds settings for an effect to the profile. - /// - /// A type of - /// The instance created from the given type - /// - public PostProcessEffectSettings AddSettings(Type type) - { - if (HasSettings(type)) - throw new InvalidOperationException("Effect already exists in the stack"); - - var effect = (PostProcessEffectSettings)CreateInstance(type); - effect.hideFlags = HideFlags.HideInInspector | HideFlags.HideInHierarchy; - effect.name = type.Name; - effect.enabled.value = true; - settings.Add(effect); - isDirty = true; - return effect; - } - - /// - /// Adds settings for an effect to the profile. - /// - /// An instance of - /// The given effect instance - /// - public PostProcessEffectSettings AddSettings(PostProcessEffectSettings effect) - { - if (HasSettings(settings.GetType())) - throw new InvalidOperationException("Effect already exists in the stack"); - - settings.Add(effect); - isDirty = true; - return effect; - } - - /// - /// Removes settings for an effect from the profile. - /// - /// The type to look for and remove from the profile - /// Thrown if the effect doesn't exist in the - /// profile - public void RemoveSettings() - where T : PostProcessEffectSettings - { - RemoveSettings(typeof(T)); - } - - /// - /// Removes settings for an effect from the profile. - /// - /// The type to look for and remove from the profile - /// Thrown if the effect doesn't exist in the - /// profile - public void RemoveSettings(Type type) - { - int toRemove = -1; - - for (int i = 0; i < settings.Count; i++) - { - if (settings[i].GetType() == type) - { - toRemove = i; - break; - } - } - - if (toRemove < 0) - throw new InvalidOperationException("Effect doesn't exist in the profile"); - - settings.RemoveAt(toRemove); - isDirty = true; - } - - /// - /// Checks if an effect has been added to the profile. - /// - /// The type to look for - /// true if the effect exists in the profile, false otherwise - public bool HasSettings() - where T : PostProcessEffectSettings - { - return HasSettings(typeof(T)); - } - - /// - /// Checks if an effect has been added to the profile. - /// - /// The type to look for - /// true if the effect exists in the profile, false otherwise - public bool HasSettings(Type type) - { - foreach (var setting in settings) - { - if (setting.GetType() == type) - return true; - } - - return false; - } - - /// - /// Returns settings for a given effect type. - /// - /// The type to look for - /// Settings for the given effect type, null otherwise - public T GetSetting() where T : PostProcessEffectSettings - { - foreach (var setting in settings) - { - if (setting is T) - return setting as T; - } - - return null; - } - - /// - /// Gets settings for a given effect type. - /// - /// The type to look for - /// When this method returns, contains the value associated with - /// the specified type, if the type is found; otherwise, this parameter will be null. - /// This parameter is passed uninitialized. - /// true if the effect exists in the profile, false otherwise - public bool TryGetSettings(out T outSetting) - where T : PostProcessEffectSettings - { - var type = typeof(T); - outSetting = null; - - foreach (var setting in settings) - { - if (setting.GetType() == type) - { - outSetting = (T)setting; - return true; - } - } - - return false; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessProfile.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessProfile.cs.meta deleted file mode 100644 index 940b43963..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessProfile.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 8e6292b2c06870d4495f009f912b9600 -timeCreated: 1507906488 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {fileID: 2800000, guid: 5f51e0b22aa8cb84b9f422576ce87ff9, type: 3} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessRenderContext.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessRenderContext.cs deleted file mode 100644 index c2e426b2c..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessRenderContext.cs +++ /dev/null @@ -1,431 +0,0 @@ -using System.Collections.Generic; - -namespace UnityEngine.Rendering.PostProcessing -{ -#if UNITY_2017_2_OR_NEWER - using XRSettings = UnityEngine.XR.XRSettings; -#elif UNITY_5_6_OR_NEWER - using XRSettings = UnityEngine.VR.VRSettings; -#endif - - /// - /// A context object passed around all post-processing effects in a frame. - /// - public sealed class PostProcessRenderContext - { - // ----------------------------------------------------------------------------------------- - // The following should be filled by the render pipeline - - Camera m_Camera; - - /// - /// The camera currently being rendered. - /// - public Camera camera - { - get { return m_Camera; } - set - { - m_Camera = value; - -#if !UNITY_SWITCH && ENABLE_VR - if (m_Camera.stereoEnabled) - { -#if UNITY_2017_2_OR_NEWER - var xrDesc = XRSettings.eyeTextureDesc; - stereoRenderingMode = StereoRenderingMode.SinglePass; - -#if UNITY_STANDALONE || UNITY_EDITOR - if (xrDesc.dimension == TextureDimension.Tex2DArray) - stereoRenderingMode = StereoRenderingMode.SinglePassInstanced; -#endif - if (stereoRenderingMode == StereoRenderingMode.SinglePassInstanced) - numberOfEyes = 2; - -#if UNITY_2019_1_OR_NEWER - if (stereoRenderingMode == StereoRenderingMode.SinglePass) - { - numberOfEyes = 2; - xrDesc.width /= 2; - xrDesc.vrUsage = VRTextureUsage.None; - } -#else - //before 2019.1 double-wide still issues two drawcalls - if (stereoRenderingMode == StereoRenderingMode.SinglePass) - { - numberOfEyes = 1; - } -#endif - - width = xrDesc.width; - height = xrDesc.height; - m_sourceDescriptor = xrDesc; -#else - // Single-pass is only supported with 2017.2+ because - // that is when XRSettings.eyeTextureDesc is available. - // Without it, we don't have a robust method of determining - // if we are in single-pass. Users can just double the width - // here if they KNOW they are using single-pass. - width = XRSettings.eyeTextureWidth; - height = XRSettings.eyeTextureHeight; -#endif - - if (m_Camera.stereoActiveEye == Camera.MonoOrStereoscopicEye.Right) - xrActiveEye = (int)Camera.StereoscopicEye.Right; - - screenWidth = XRSettings.eyeTextureWidth; - screenHeight = XRSettings.eyeTextureHeight; - -#if UNITY_2019_1_OR_NEWER - if (stereoRenderingMode == StereoRenderingMode.SinglePass) - screenWidth /= 2; -#endif - stereoActive = true; - - } - else -#endif - { - width = m_Camera.pixelWidth; - height = m_Camera.pixelHeight; - -#if UNITY_2017_2_OR_NEWER - m_sourceDescriptor.width = width; - m_sourceDescriptor.height = height; -#endif - screenWidth = width; - screenHeight = height; - stereoActive = false; - numberOfEyes = 1; - } - } - } - - - /// - /// The command buffer to fill render commands in. - /// - public CommandBuffer command { get; set; } - - /// - /// The source target for this pass (can't be the same as ). - /// - public RenderTargetIdentifier source { get; set; } - - /// - /// The destination target for this pass (can't be the same as ). - /// - public RenderTargetIdentifier destination { get; set; } - - /// - /// The texture format used for the source target. - /// - // We need this to be set explictely as we don't have any way of knowing if we're rendering - // using HDR or not as scriptable render pipelines may ignore the HDR toggle on camera - // completely - public RenderTextureFormat sourceFormat { get; set; } - - /// - /// Should we flip the last pass? - /// - public bool flip { get; set; } - - // ----------------------------------------------------------------------------------------- - // The following is auto-populated by the post-processing stack - - /// - /// The resource asset contains reference to external resources (shaders, textures...). - /// - public PostProcessResources resources { get; internal set; } - - /// - /// The property sheet factory handled by the currently active . - /// - public PropertySheetFactory propertySheets { get; internal set; } - - /// - /// A dictionary to store custom user data objects. This is handy to share data between - /// custom effects. - /// - public Dictionary userData { get; private set; } - - /// - /// A reference to the internal debug layer. - /// - public PostProcessDebugLayer debugLayer { get; internal set; } - - /// - /// The current camera width (in pixels). - /// - public int width { get; private set; } - - /// - /// The current camera height (in pixels). - /// - public int height { get; private set; } - - /// - /// Is stereo rendering active? - /// - public bool stereoActive { get; private set; } - - /// - /// The current active rendering eye (for XR). - /// - public int xrActiveEye { get; private set; } - - /// - /// The number of eyes for XR outputs. - /// - public int numberOfEyes { get; private set; } - - /// - /// Available XR rendering modes. - /// - public enum StereoRenderingMode - { - MultiPass = 0, - SinglePass, - SinglePassInstanced, - SinglePassMultiview - } - - /// - /// The current rendering mode for XR. - /// - public StereoRenderingMode stereoRenderingMode { get; private set; } - - /// - /// The width of the logical screen size. - /// - public int screenWidth { get; private set; } - - /// - /// The height of the logical screen size. - /// - public int screenHeight { get; private set; } - - /// - /// Are we currently rendering in the scene view? - /// - public bool isSceneView { get; internal set; } - - /// - /// The current anti-aliasing method used by the camera. - /// - public PostProcessLayer.Antialiasing antialiasing { get; internal set; } - - /// - /// A reference to the temporal anti-aliasing settings for the rendering layer. This is - /// mostly used to grab the jitter vector and other TAA-related values when an effect needs - /// to do temporal reprojection. - /// - public TemporalAntialiasing temporalAntialiasing { get; internal set; } - - // Internal values used for builtin effects - // Beware, these may not have been set before a specific builtin effect has been executed - internal PropertySheet uberSheet; - internal Texture autoExposureTexture; - internal LogHistogram logHistogram; - internal Texture logLut; - internal AutoExposure autoExposure; - internal int bloomBufferNameID; -#if UNITY_2018_2_OR_NEWER - internal bool physicalCamera; -#endif - - /// - /// Resets the state of this context object. This is called by the render pipeline on every - /// frame and allows re-using the same context object between frames without having to - /// recreate a new one. - /// - public void Reset() - { - m_Camera = null; - width = 0; - height = 0; - -#if UNITY_2017_2_OR_NEWER - m_sourceDescriptor = new RenderTextureDescriptor(0, 0); -#endif -#if UNITY_2018_2_OR_NEWER - physicalCamera = false; -#endif - stereoActive = false; - xrActiveEye = (int)Camera.StereoscopicEye.Left; - screenWidth = 0; - screenHeight = 0; - - command = null; - source = 0; - destination = 0; - sourceFormat = RenderTextureFormat.ARGB32; - flip = false; - - resources = null; - propertySheets = null; - debugLayer = null; - isSceneView = false; - antialiasing = PostProcessLayer.Antialiasing.None; - temporalAntialiasing = null; - - uberSheet = null; - autoExposureTexture = null; - logLut = null; - autoExposure = null; - bloomBufferNameID = -1; - - if (userData == null) - userData = new Dictionary(); - - userData.Clear(); - } - - /// - /// Checks if temporal anti-aliasing is supported and enabled. - /// - /// true if temporal anti-aliasing is supported and enabled, false - /// otherwise - public bool IsTemporalAntialiasingActive() - { - return antialiasing == PostProcessLayer.Antialiasing.TemporalAntialiasing - && !isSceneView - && temporalAntialiasing.IsSupported(); - } - - /// - /// Checks if a specific debug overlay is enabled. - /// - /// The debug overlay to look for - /// true if the specified debug overlay is enable, false - /// otherwise - public bool IsDebugOverlayEnabled(DebugOverlay overlay) - { - return debugLayer.debugOverlay == overlay; - } - - /// - /// Blit a source render target to the debug overlay target. This is a direct shortcut to - /// . - /// - /// The command buffer to send render commands to - /// The source target - /// The property sheet to use for the blit - /// The pass to use for the property sheet - /// - public void PushDebugOverlay(CommandBuffer cmd, RenderTargetIdentifier source, PropertySheet sheet, int pass) - { - debugLayer.PushDebugOverlay(cmd, source, sheet, pass); - } - - // TODO: Change w/h name to texture w/h in order to make - // size usages explicit -#if UNITY_2017_2_OR_NEWER - RenderTextureDescriptor m_sourceDescriptor; - RenderTextureDescriptor GetDescriptor(int depthBufferBits = 0, RenderTextureFormat colorFormat = RenderTextureFormat.Default, RenderTextureReadWrite readWrite = RenderTextureReadWrite.Default) - { - var modifiedDesc = new RenderTextureDescriptor(m_sourceDescriptor.width, m_sourceDescriptor.height, - m_sourceDescriptor.colorFormat, depthBufferBits); - modifiedDesc.dimension = m_sourceDescriptor.dimension; - modifiedDesc.volumeDepth = m_sourceDescriptor.volumeDepth; - modifiedDesc.vrUsage = m_sourceDescriptor.vrUsage; - modifiedDesc.msaaSamples = m_sourceDescriptor.msaaSamples; - modifiedDesc.memoryless = m_sourceDescriptor.memoryless; - - modifiedDesc.useMipMap = m_sourceDescriptor.useMipMap; - modifiedDesc.autoGenerateMips = m_sourceDescriptor.autoGenerateMips; - modifiedDesc.enableRandomWrite = m_sourceDescriptor.enableRandomWrite; - modifiedDesc.shadowSamplingMode = m_sourceDescriptor.shadowSamplingMode; - - if (colorFormat != RenderTextureFormat.Default) - modifiedDesc.colorFormat = colorFormat; - -#if UNITY_2019_1_OR_NEWER - if (readWrite == RenderTextureReadWrite.sRGB) - modifiedDesc.sRGB = true; - else if (readWrite == RenderTextureReadWrite.Linear) - modifiedDesc.sRGB = false; - else if (readWrite == RenderTextureReadWrite.Default) - modifiedDesc.sRGB = QualitySettings.activeColorSpace != ColorSpace.Gamma; -#else - modifiedDesc.sRGB = readWrite != RenderTextureReadWrite.Linear; -#endif - - return modifiedDesc; - } -#endif - - /// - /// Grabs a temporary render target with the current display size. - /// - /// The command buffer to grab a render target from - /// The shader property name for this texture - /// The number of bits to use for the depth buffer - /// The render texture format - /// The color space conversion mode - /// The texture filtering mode - /// Override the display width; use 0 to disable the override - /// Override the display height; use 0 to disable the override - public void GetScreenSpaceTemporaryRT(CommandBuffer cmd, int nameID, - int depthBufferBits = 0, RenderTextureFormat colorFormat = RenderTextureFormat.Default, RenderTextureReadWrite readWrite = RenderTextureReadWrite.Default, - FilterMode filter = FilterMode.Bilinear, int widthOverride = 0, int heightOverride = 0) - { -#if UNITY_2017_2_OR_NEWER - var desc = GetDescriptor(depthBufferBits, colorFormat, readWrite); - if (widthOverride > 0) - desc.width = widthOverride; - if (heightOverride > 0) - desc.height = heightOverride; - - //intermediates in VR are unchanged - if (stereoActive && desc.dimension == Rendering.TextureDimension.Tex2DArray) - desc.dimension = Rendering.TextureDimension.Tex2D; - - cmd.GetTemporaryRT(nameID, desc, filter); -#else - int actualWidth = width; - int actualHeight = height; - if (widthOverride > 0) - actualWidth = widthOverride; - if (heightOverride > 0) - actualHeight = heightOverride; - - cmd.GetTemporaryRT(nameID, actualWidth, actualHeight, depthBufferBits, filter, colorFormat, readWrite); - // TODO: How to handle MSAA for XR in older versions? Query cam? - // TODO: Pass in vrUsage into the args -#endif - } - - /// - /// Grabs a temporary render target with the current display size. - /// - /// The number of bits to use for the depth buffer - /// The render texture format - /// The color space conversion mode - /// Override the display width; use 0 to disable the override - /// Override the display height; use 0 to disable the override - /// A temporary render target - public RenderTexture GetScreenSpaceTemporaryRT(int depthBufferBits = 0, RenderTextureFormat colorFormat = RenderTextureFormat.Default, - RenderTextureReadWrite readWrite = RenderTextureReadWrite.Default, int widthOverride = 0, int heightOverride = 0) - { -#if UNITY_2017_2_OR_NEWER - var desc = GetDescriptor(depthBufferBits, colorFormat, readWrite); - if (widthOverride > 0) - desc.width = widthOverride; - if (heightOverride > 0) - desc.height = heightOverride; - - return RenderTexture.GetTemporary(desc); -#else - int actualWidth = width; - int actualHeight = height; - if (widthOverride > 0) - actualWidth = widthOverride; - if (heightOverride > 0) - actualHeight = heightOverride; - - return RenderTexture.GetTemporary(actualWidth, actualHeight, depthBufferBits, colorFormat, readWrite); -#endif - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessRenderContext.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessRenderContext.cs.meta deleted file mode 100644 index 780771fd8..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessRenderContext.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: b7733f6a6fd11474e8fc598901f90fab -timeCreated: 1488801729 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessResources.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessResources.cs deleted file mode 100644 index afa92372f..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessResources.cs +++ /dev/null @@ -1,92 +0,0 @@ -using System; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// This asset is used to store references to shaders and other resources we might need at - /// runtime without having to use a `Resources` folder. This allows for better memory management, - /// better dependency tracking and better interoperability with asset bundles. - /// - public sealed class PostProcessResources : ScriptableObject - { - [Serializable] - public sealed class Shaders - { - public Shader bloom; - public Shader copy; - public Shader copyStd; - public Shader copyStdFromTexArray; - public Shader copyStdFromDoubleWide; - public Shader discardAlpha; - public Shader depthOfField; - public Shader finalPass; - public Shader grainBaker; - public Shader motionBlur; - public Shader temporalAntialiasing; - public Shader subpixelMorphologicalAntialiasing; - public Shader texture2dLerp; - public Shader uber; - public Shader lut2DBaker; - public Shader lightMeter; - public Shader gammaHistogram; - public Shader waveform; - public Shader vectorscope; - public Shader debugOverlays; - public Shader deferredFog; - public Shader scalableAO; - public Shader multiScaleAO; - public Shader screenSpaceReflections; - - public Shaders Clone() - { - return (Shaders)MemberwiseClone(); - } - } - - [Serializable] - public sealed class ComputeShaders - { - public ComputeShader autoExposure; - public ComputeShader exposureHistogram; - public ComputeShader lut3DBaker; - public ComputeShader texture3dLerp; - public ComputeShader gammaHistogram; - public ComputeShader waveform; - public ComputeShader vectorscope; - public ComputeShader multiScaleAODownsample1; - public ComputeShader multiScaleAODownsample2; - public ComputeShader multiScaleAORender; - public ComputeShader multiScaleAOUpsample; - public ComputeShader gaussianDownsample; - - public ComputeShaders Clone() - { - return (ComputeShaders)MemberwiseClone(); - } - } - - [Serializable] - public sealed class SMAALuts - { - public Texture2D area; - public Texture2D search; - } - - public Texture2D[] blueNoise64; - public Texture2D[] blueNoise256; - public SMAALuts smaaLuts; - public Shaders shaders; - public ComputeShaders computeShaders; - -#if UNITY_EDITOR - public delegate void ChangeHandler(); - public ChangeHandler changeHandler; - - void OnValidate() - { - if (changeHandler != null) - changeHandler(); - } -#endif - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessResources.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessResources.cs.meta deleted file mode 100644 index 6111ab7f2..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessResources.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 30f4b897495c7ad40b2d47143e02aaba -timeCreated: 1493713089 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessVolume.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessVolume.cs deleted file mode 100644 index 474ff1073..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessVolume.cs +++ /dev/null @@ -1,277 +0,0 @@ -using System.Collections.Generic; - -namespace UnityEngine.Rendering.PostProcessing -{ - // - // Here's a quick look at the architecture of this framework and how it's integrated into Unity - // (written between versions 5.6 and 2017.1): - // - // Users have to be able to plug in their own effects without having to modify the codebase and - // these custom effects should work out-of-the-box with all the other features we provide - // (volume blending etc). This relies on heavy use of polymorphism, but the only way to get - // the serialization system to work well with polymorphism in Unity is to use ScriptableObjects. - // - // Users can push their custom effects at different (hardcoded) injection points. - // - // Each effect consists of at least two classes (+ shaders): a POD "Settings" class which only - // stores parameters, and a "Renderer" class that holds the rendering logic. Settings are linked - // to renderers using a PostProcessAttribute. These are automatically collected at init time - // using reflection. Settings in this case are ScriptableObjects, we only need to serialize - // these. - // - // We could store these settings object straight into each volume and call it a day, but - // unfortunately there's one feature of Unity that doesn't work well with scene-stored assets: - // prefabs. So we need to store all of these settings in a disk-asset and treat them as - // sub-assets. - // - // Note: We have to use ScriptableObject for everything but these don't work with the Animator - // tool. It's unfortunate but it's the only way to make it easily extensible. On the other - // hand, users can animate post-processing effects using Volumes or straight up scripting. - // - // Volume blending leverages the physics system for distance checks to the nearest point on - // volume colliders. Each volume can have several colliders or any type (cube, mesh...), making - // it quite a powerful feature to use. - // - // Volumes & blending are handled by a singleton manager (see PostProcessManager). - // - // Rendering is handled by a PostProcessLayer component living on the camera, which mean you - // can easily toggle post-processing on & off or change the anti-aliasing type per-camera, - // which is very useful when doing multi-layered camera rendering or any other technique that - // involves multiple-camera setups. This PostProcessLayer component can also filters volumes - // by layers (as in Unity layers) so you can easily choose which volumes should affect the - // camera. - // - // All post-processing shaders MUST use the custom Standard Shader Library bundled with the - // framework. The reason for that is because the codebase is meant to work without any - // modification on the Classic Render Pipelines (Forward, Deferred...) and the upcoming - // Scriptable Render Pipelines (HDPipe, LDPipe...). But these don't have compatible shader - // libraries so instead of writing two code paths we chose to provide a minimalist, generic - // Standard Library geared toward post-processing use. An added bonus to that if users create - // their own post-processing effects using this framework, then they'll work without any - // modification on both Classic and Scriptable Render Pipelines. - // - - /// - /// A post-process volume component holding a post-process profile. - /// - /// -#if UNITY_2018_3_OR_NEWER - [ExecuteAlways] -#else - [ExecuteInEditMode] -#endif - [AddComponentMenu("Rendering/Post-process Volume", 1001)] - public sealed class PostProcessVolume : MonoBehaviour - { - /// - /// The shared profile of this volume. - /// Modifying sharedProfile will change all volumes using this profile, and change - /// profile settings that are stored in the project too. - /// - /// - /// It is not recommended to modify profiles returned by sharedProfile. If you want - /// to modify the profile of a volume use instead. - /// - /// - public PostProcessProfile sharedProfile; - - /// - /// Should this volume be applied to the whole scene? - /// - [Tooltip("Check this box to mark this volume as global. This volume's Profile will be applied to the whole Scene.")] - public bool isGlobal = false; - - /// - /// The outer distance to start blending from. A value of 0 means no blending and the volume - /// overrides will be applied immediatly upon entry. - /// - [Min(0f), Tooltip("The distance (from the attached Collider) to start blending from. A value of 0 means there will be no blending and the Volume overrides will be applied immediatly upon entry to the attached Collider.")] - public float blendDistance = 0f; - - /// - /// The total weight of this volume in the scene. 0 means it won't do anything, 1 means full - /// effect. - /// - [Range(0f, 1f), Tooltip("The total weight of this Volume in the Scene. A value of 0 signifies that it will have no effect, 1 signifies full effect.")] - public float weight = 1f; - - /// - /// The volume priority in the stack. Higher number means higher priority. Negative values - /// are supported. - /// - [Tooltip("The volume priority in the stack. A higher value means higher priority. Negative values are supported.")] - public float priority = 0f; - - /// - /// Returns the first instantiated assigned to the volume. - /// Modifying will change the profile for this volume only. If - /// the profile is used by any other volume, this will clone the shared profile and start - /// using it from now on. - /// - /// - /// This property automatically instantiates the profile and make it unique to this volume - /// so you can safely edit it via scripting at runtime without changing the original asset - /// in the project. - /// Note that if you pass in your own profile, it is your responsibility to destroy it once - /// it's not in use anymore. - /// - /// - /// - public PostProcessProfile profile - { - get - { - if (m_InternalProfile == null) - { - m_InternalProfile = ScriptableObject.CreateInstance(); - - if (sharedProfile != null) - { - foreach (var item in sharedProfile.settings) - { - var itemCopy = Instantiate(item); - m_InternalProfile.settings.Add(itemCopy); - } - } - } - - return m_InternalProfile; - } - set - { - m_InternalProfile = value; - } - } - - internal PostProcessProfile profileRef - { - get - { - return m_InternalProfile == null - ? sharedProfile - : m_InternalProfile; - } - } - - /// - /// Checks if the volume has an intantiated profile or is using a shared profile. - /// - /// true if the profile has been intantiated - /// - /// - public bool HasInstantiatedProfile() - { - return m_InternalProfile != null; - } - - int m_PreviousLayer; - float m_PreviousPriority; - List m_TempColliders; - PostProcessProfile m_InternalProfile; - - void OnEnable() - { - PostProcessManager.instance.Register(this); - m_PreviousLayer = gameObject.layer; - m_TempColliders = new List(); - } - - void OnDisable() - { - PostProcessManager.instance.Unregister(this); - } - - void Update() - { - // Unfortunately we need to track the current layer to update the volume manager in - // real-time as the user could change it at any time in the editor or at runtime. - // Because no event is raised when the layer changes, we have to track it on every - // frame :/ - int layer = gameObject.layer; - if (layer != m_PreviousLayer) - { - PostProcessManager.instance.UpdateVolumeLayer(this, m_PreviousLayer, layer); - m_PreviousLayer = layer; - } - - // Same for `priority`. We could use a property instead, but it doesn't play nice with - // the serialization system. Using a custom Attribute/PropertyDrawer for a property is - // possible but it doesn't work with Undo/Redo in the editor, which makes it useless. - if (priority != m_PreviousPriority) - { - PostProcessManager.instance.SetLayerDirty(layer); - m_PreviousPriority = priority; - } - } - - // TODO: Look into a better volume previsualization system - void OnDrawGizmos() - { - var colliders = m_TempColliders; - GetComponents(colliders); - - if (isGlobal || colliders == null) - return; - -#if UNITY_EDITOR - // Can't access the UnityEditor.Rendering.PostProcessing namespace from here, so - // we'll get the preferred color manually - unchecked - { - int value = UnityEditor.EditorPrefs.GetInt("PostProcessing.Volume.GizmoColor", (int)0x8033cc1a); - Gizmos.color = ColorUtilities.ToRGBA((uint)value); - } -#endif - - var scale = transform.lossyScale; - var invScale = new Vector3(1f / scale.x, 1f / scale.y, 1f / scale.z); - Gizmos.matrix = Matrix4x4.TRS(transform.position, transform.rotation, scale); - - // Draw a separate gizmo for each collider - foreach (var collider in colliders) - { - if (!collider.enabled) - continue; - - // We'll just use scaling as an approximation for volume skin. It's far from being - // correct (and is completely wrong in some cases). Ultimately we'd use a distance - // field or at least a tesselate + push modifier on the collider's mesh to get a - // better approximation, but the current Gizmo system is a bit limited and because - // everything is dynamic in Unity and can be changed at anytime, it's hard to keep - // track of changes in an elegant way (which we'd need to implement a nice cache - // system for generated volume meshes). - var type = collider.GetType(); - - if (type == typeof(BoxCollider)) - { - var c = (BoxCollider)collider; - Gizmos.DrawCube(c.center, c.size); - Gizmos.DrawWireCube(c.center, c.size + invScale * blendDistance * 4f); - } - else if (type == typeof(SphereCollider)) - { - var c = (SphereCollider)collider; - Gizmos.DrawSphere(c.center, c.radius); - Gizmos.DrawWireSphere(c.center, c.radius + invScale.x * blendDistance * 2f); - } - else if (type == typeof(MeshCollider)) - { - var c = (MeshCollider)collider; - - // Only convex mesh colliders are allowed - if (!c.convex) - c.convex = true; - - // Mesh pivot should be centered or this won't work - Gizmos.DrawMesh(c.sharedMesh); - Gizmos.DrawWireMesh(c.sharedMesh, Vector3.zero, Quaternion.identity, Vector3.one + invScale * blendDistance * 4f); - } - - // Nothing for capsule (DrawCapsule isn't exposed in Gizmo), terrain, wheel and - // other colliders... - } - - colliders.Clear(); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessVolume.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessVolume.cs.meta deleted file mode 100644 index 6396bcb65..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/PostProcessVolume.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 8b9a305e18de0c04dbd257a21cd47087 -timeCreated: 1492775877 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {fileID: 2800000, guid: 5f51e0b22aa8cb84b9f422576ce87ff9, type: 3} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Unity.Postprocessing.Runtime.asmdef b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Unity.Postprocessing.Runtime.asmdef deleted file mode 100644 index b326847e4..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Unity.Postprocessing.Runtime.asmdef +++ /dev/null @@ -1,14 +0,0 @@ -{ - "name": "Unity.Postprocessing.Runtime", - "references": [], - "optionalUnityReferences": [], - "includePlatforms": [], - "excludePlatforms": [], - "versionDefines": [ - { - "name": "com.unity.render-pipelines.lightweight", - "expression": "1.0.0", - "define": "LWRP_1_0_0_OR_NEWER" - } - ] -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Unity.Postprocessing.Runtime.asmdef.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Unity.Postprocessing.Runtime.asmdef.meta deleted file mode 100644 index 43f1ab1fd..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Unity.Postprocessing.Runtime.asmdef.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: d60799ab2a985554ea1a39cd38695018 -AssemblyDefinitionImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils.meta deleted file mode 100644 index 4ff2fa666..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 8f735421c1ed8e54c992b4640aca9a89 -folderAsset: yes -timeCreated: 1487868402 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/ColorUtilities.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/ColorUtilities.cs deleted file mode 100644 index d0e42963c..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/ColorUtilities.cs +++ /dev/null @@ -1,182 +0,0 @@ -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// A set of utilities to manipulate color values. - /// - public static class ColorUtilities - { - /// - /// Gets the Y coordinate for the chromaticity of the standard illuminant. - /// - /// The X coordinate - /// The Y coordinate for the chromaticity of the standard illuminant - /// - /// Based on: "An analytical model of chromaticity of the standard illuminant" by Judd et al. - /// http://en.wikipedia.org/wiki/Standard_illuminant#Illuminant_series_D - /// Slightly modified to adjust it with the D65 white point (x=0.31271, y=0.32902). - /// - public static float StandardIlluminantY(float x) - { - return 2.87f * x - 3f * x * x - 0.27509507f; - } - - /// - /// Converts CIExy chromaticity to CAT02 LMS. - /// - /// The X coordinate - /// The Y coordinate - /// The CIExy chromaticity converted to CAT02 LMS - /// - /// See: http://en.wikipedia.org/wiki/LMS_color_space#CAT02 - /// - public static Vector3 CIExyToLMS(float x, float y) - { - float Y = 1f; - float X = Y * x / y; - float Z = Y * (1f - x - y) / y; - - float L = 0.7328f * X + 0.4296f * Y - 0.1624f * Z; - float M = -0.7036f * X + 1.6975f * Y + 0.0061f * Z; - float S = 0.0030f * X + 0.0136f * Y + 0.9834f * Z; - - return new Vector3(L, M, S); - } - - /// - /// Computes the color balance coefficients in the CAT02 LMS space. - /// - /// The color temperature offset - /// The color tint offset (green/magenta) - /// The color balance coefficients in the CAT02 LMS space. - public static Vector3 ComputeColorBalance(float temperature, float tint) - { - // Range ~[-1.67;1.67] works best - float t1 = temperature / 60f; - float t2 = tint / 60f; - - // Get the CIE xy chromaticity of the reference white point. - // Note: 0.31271 = x value on the D65 white point - float x = 0.31271f - t1 * (t1 < 0f ? 0.1f : 0.05f); - float y = StandardIlluminantY(x) + t2 * 0.05f; - - // Calculate the coefficients in the LMS space. - var w1 = new Vector3(0.949237f, 1.03542f, 1.08728f); // D65 white point - var w2 = CIExyToLMS(x, y); - return new Vector3(w1.x / w2.x, w1.y / w2.y, w1.z / w2.z); - } - - /// - /// Converts trackball values to Lift coefficients. - /// - /// The trackball color value (with offset in the W component) - /// The converted trackball value - public static Vector3 ColorToLift(Vector4 color) - { - // Shadows - var S = new Vector3(color.x, color.y, color.z); - float lumLift = S.x * 0.2126f + S.y * 0.7152f + S.z * 0.0722f; - S = new Vector3(S.x - lumLift, S.y - lumLift, S.z - lumLift); - - float liftOffset = color.w; - return new Vector3(S.x + liftOffset, S.y + liftOffset, S.z + liftOffset); - } - - /// - /// Converts trackball values to inverted Gamma coefficients. - /// - /// The trackball color value (with offset in the W component) - /// The converted trackball value - public static Vector3 ColorToInverseGamma(Vector4 color) - { - // Midtones - var M = new Vector3(color.x, color.y, color.z); - float lumGamma = M.x * 0.2126f + M.y * 0.7152f + M.z * 0.0722f; - M = new Vector3(M.x - lumGamma, M.y - lumGamma, M.z - lumGamma); - - float gammaOffset = color.w + 1f; - return new Vector3( - 1f / Mathf.Max(M.x + gammaOffset, 1e-03f), - 1f / Mathf.Max(M.y + gammaOffset, 1e-03f), - 1f / Mathf.Max(M.z + gammaOffset, 1e-03f) - ); - } - - /// - /// Converts trackball values to Gain coefficients. - /// - /// The trackball color value (with offset in the W component) - /// The converted trackball value - public static Vector3 ColorToGain(Vector4 color) - { - // Highlights - var H = new Vector3(color.x, color.y, color.z); - float lumGain = H.x * 0.2126f + H.y * 0.7152f + H.z * 0.0722f; - H = new Vector3(H.x - lumGain, H.y - lumGain, H.z - lumGain); - - float gainOffset = color.w + 1f; - return new Vector3(H.x + gainOffset, H.y + gainOffset, H.z + gainOffset); - } - - // Alexa LogC converters (El 1000) - // See http://www.vocas.nl/webfm_send/964 - const float logC_cut = 0.011361f; - const float logC_a = 5.555556f; - const float logC_b = 0.047996f; - const float logC_c = 0.244161f; - const float logC_d = 0.386036f; - const float logC_e = 5.301883f; - const float logC_f = 0.092819f; - - /// - /// Converts a LogC (Alexa El 1000) value to linear. - /// - /// A LogC (Alexa El 1000) value - /// The input convert to linear - public static float LogCToLinear(float x) - { - return x > logC_e * logC_cut + logC_f - ? (Mathf.Pow(10f, (x - logC_d) / logC_c) - logC_b) / logC_a - : (x - logC_f) / logC_e; - } - - /// - /// Converts a linear value to LogC (Alexa El 1000). - /// - /// A linear value - /// The input value converted to LogC - public static float LinearToLogC(float x) - { - return x > logC_cut - ? logC_c * Mathf.Log10(logC_a * x + logC_b) + logC_d - : logC_e * x + logC_f; - } - - /// - /// Converts a color to its ARGB hexadecimal representation. - /// - /// The color to convert - /// The color converted to its ARGB hexadecimal representation - public static uint ToHex(Color c) - { - return ((uint)(c.a * 255) << 24) - | ((uint)(c.r * 255) << 16) - | ((uint)(c.g * 255) << 8) - | ((uint)(c.b * 255)); - } - - /// - /// Converts an ARGB hexadecimal input to a color structure. - /// - /// The hexadecimal input - /// The ARGB hexadecimal input converted to a color structure. - public static Color ToRGBA(uint hex) - { - return new Color( - ((hex >> 16) & 0xff) / 255f, // r - ((hex >> 8) & 0xff) / 255f, // g - ((hex ) & 0xff) / 255f, // b - ((hex >> 24) & 0xff) / 255f // a - ); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/ColorUtilities.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/ColorUtilities.cs.meta deleted file mode 100644 index b15a270ef..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/ColorUtilities.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: c3c112f1ddeedfe45839158cc4b148d4 -timeCreated: 1494794407 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/HableCurve.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/HableCurve.cs deleted file mode 100644 index 7528e46fd..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/HableCurve.cs +++ /dev/null @@ -1,394 +0,0 @@ -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// A raw implementation of John Hable's artist-friendly tonemapping curve. - /// See http://filmicworlds.com/blog/filmic-tonemapping-with-piecewise-power-curves/ - /// - public class HableCurve - { - class Segment - { - public float offsetX; - public float offsetY; - public float scaleX; - public float scaleY; - public float lnA; - public float B; - - public float Eval(float x) - { - float x0 = (x - offsetX) * scaleX; - float y0 = 0f; - - // log(0) is undefined but our function should evaluate to 0. There are better ways to handle this, - // but it's doing it the slow way here for clarity. - if (x0 > 0) - y0 = Mathf.Exp(lnA + B * Mathf.Log(x0)); - - return y0 * scaleY + offsetY; - } - } - - struct DirectParams - { - internal float x0; - internal float y0; - internal float x1; - internal float y1; - internal float W; - - internal float overshootX; - internal float overshootY; - - internal float gamma; - } - - /// - /// The curve's white point. - /// - public float whitePoint { get; private set; } - - /// - /// The inverse of the curve's white point. - /// - public float inverseWhitePoint { get; private set; } - - internal float x0 { get; private set; } - internal float x1 { get; private set; } - - // Toe, mid, shoulder - readonly Segment[] m_Segments = new Segment[3]; - - /// - /// Creates a new curve. - /// - public HableCurve() - { - for (int i = 0; i < 3; i++) - m_Segments[i] = new Segment(); - - uniforms = new Uniforms(this); - } - - /// - /// Evaluates a given point on the curve. - /// - /// The point within the curve to evaluate (on the horizontal axis) - /// The value of the curve, at the point specified - public float Eval(float x) - { - float normX = x * inverseWhitePoint; - int index = (normX < x0) ? 0 : ((normX < x1) ? 1 : 2); - var segment = m_Segments[index]; - float ret = segment.Eval(normX); - return ret; - } - - /// - /// Initializes the curve with given settings. - /// - /// Affects the transition between the toe and the mid section of - /// the curve. A value of 0 means no toe, a value of 1 means a very hard transition - /// Affects how much of the dynamic range is in the toe. With a - /// small value, the toe will be very short and quickly transition into the linear section, - /// and with a longer value having a longer toe - /// Affects the transition between the mid section and the - /// shoulder of the curve. A value of 0 means no shoulder, a value of 1 means a very hard - /// transition - /// Affects how many F-stops (EV) to add to the dynamic range - /// of the curve - /// Affects how much overshoot to add to the shoulder - /// Applies a gamma function to the curve - public void Init(float toeStrength, float toeLength, float shoulderStrength, float shoulderLength, float shoulderAngle, float gamma) - { - var dstParams = new DirectParams(); - - // This is not actually the display gamma. It's just a UI space to avoid having to - // enter small numbers for the input. - const float kPerceptualGamma = 2.2f; - - // Constraints - { - toeLength = Mathf.Pow(Mathf.Clamp01(toeLength), kPerceptualGamma); - toeStrength = Mathf.Clamp01(toeStrength); - shoulderAngle = Mathf.Clamp01(shoulderAngle); - shoulderStrength = Mathf.Clamp(shoulderStrength, 1e-5f, 1f - 1e-5f); - shoulderLength = Mathf.Max(0f, shoulderLength); - gamma = Mathf.Max(1e-5f, gamma); - } - - // Apply base params - { - // Toe goes from 0 to 0.5 - float x0 = toeLength * 0.5f; - float y0 = (1f - toeStrength) * x0; // Lerp from 0 to x0 - - float remainingY = 1f - y0; - - float initialW = x0 + remainingY; - - float y1_offset = (1f - shoulderStrength) * remainingY; - float x1 = x0 + y1_offset; - float y1 = y0 + y1_offset; - - // Filmic shoulder strength is in F stops - float extraW = RuntimeUtilities.Exp2(shoulderLength) - 1f; - - float W = initialW + extraW; - - dstParams.x0 = x0; - dstParams.y0 = y0; - dstParams.x1 = x1; - dstParams.y1 = y1; - dstParams.W = W; - - // Bake the linear to gamma space conversion - dstParams.gamma = gamma; - } - - dstParams.overshootX = (dstParams.W * 2f) * shoulderAngle * shoulderLength; - dstParams.overshootY = 0.5f * shoulderAngle * shoulderLength; - - InitSegments(dstParams); - } - - void InitSegments(DirectParams srcParams) - { - var paramsCopy = srcParams; - - whitePoint = srcParams.W; - inverseWhitePoint = 1f / srcParams.W; - - // normalize params to 1.0 range - paramsCopy.W = 1f; - paramsCopy.x0 /= srcParams.W; - paramsCopy.x1 /= srcParams.W; - paramsCopy.overshootX = srcParams.overshootX / srcParams.W; - - float toeM = 0f; - float shoulderM = 0f; - { - float m, b; - AsSlopeIntercept(out m, out b, paramsCopy.x0, paramsCopy.x1, paramsCopy.y0, paramsCopy.y1); - - float g = srcParams.gamma; - - // Base function of linear section plus gamma is - // y = (mx+b)^g - // - // which we can rewrite as - // y = exp(g*ln(m) + g*ln(x+b/m)) - // - // and our evaluation function is (skipping the if parts): - /* - float x0 = (x - offsetX) * scaleX; - y0 = exp(m_lnA + m_B*log(x0)); - return y0*scaleY + m_offsetY; - */ - - var midSegment = m_Segments[1]; - midSegment.offsetX = -(b / m); - midSegment.offsetY = 0f; - midSegment.scaleX = 1f; - midSegment.scaleY = 1f; - midSegment.lnA = g * Mathf.Log(m); - midSegment.B = g; - - toeM = EvalDerivativeLinearGamma(m, b, g, paramsCopy.x0); - shoulderM = EvalDerivativeLinearGamma(m, b, g, paramsCopy.x1); - - // apply gamma to endpoints - paramsCopy.y0 = Mathf.Max(1e-5f, Mathf.Pow(paramsCopy.y0, paramsCopy.gamma)); - paramsCopy.y1 = Mathf.Max(1e-5f, Mathf.Pow(paramsCopy.y1, paramsCopy.gamma)); - - paramsCopy.overshootY = Mathf.Pow(1f + paramsCopy.overshootY, paramsCopy.gamma) - 1f; - } - - this.x0 = paramsCopy.x0; - this.x1 = paramsCopy.x1; - - // Toe section - { - var toeSegment = m_Segments[0]; - toeSegment.offsetX = 0; - toeSegment.offsetY = 0f; - toeSegment.scaleX = 1f; - toeSegment.scaleY = 1f; - - float lnA, B; - SolveAB(out lnA, out B, paramsCopy.x0, paramsCopy.y0, toeM); - toeSegment.lnA = lnA; - toeSegment.B = B; - } - - // Shoulder section - { - // Use the simple version that is usually too flat - var shoulderSegment = m_Segments[2]; - - float x0 = (1f + paramsCopy.overshootX) - paramsCopy.x1; - float y0 = (1f + paramsCopy.overshootY) - paramsCopy.y1; - - float lnA, B; - SolveAB(out lnA, out B, x0, y0, shoulderM); - - shoulderSegment.offsetX = (1f + paramsCopy.overshootX); - shoulderSegment.offsetY = (1f + paramsCopy.overshootY); - - shoulderSegment.scaleX = -1f; - shoulderSegment.scaleY = -1f; - shoulderSegment.lnA = lnA; - shoulderSegment.B = B; - } - - // Normalize so that we hit 1.0 at our white point. We wouldn't have do this if we - // skipped the overshoot part. - { - // Evaluate shoulder at the end of the curve - float scale = m_Segments[2].Eval(1f); - float invScale = 1f / scale; - - m_Segments[0].offsetY *= invScale; - m_Segments[0].scaleY *= invScale; - - m_Segments[1].offsetY *= invScale; - m_Segments[1].scaleY *= invScale; - - m_Segments[2].offsetY *= invScale; - m_Segments[2].scaleY *= invScale; - } - } - - // Find a function of the form: - // f(x) = e^(lnA + Bln(x)) - // where - // f(0) = 0; not really a constraint - // f(x0) = y0 - // f'(x0) = m - void SolveAB(out float lnA, out float B, float x0, float y0, float m) - { - B = (m * x0) / y0; - lnA = Mathf.Log(y0) - B * Mathf.Log(x0); - } - - // Convert to y=mx+b - void AsSlopeIntercept(out float m, out float b, float x0, float x1, float y0, float y1) - { - float dy = (y1 - y0); - float dx = (x1 - x0); - - if (dx == 0) - m = 1f; - else - m = dy / dx; - - b = y0 - x0 * m; - } - - // f(x) = (mx+b)^g - // f'(x) = gm(mx+b)^(g-1) - float EvalDerivativeLinearGamma(float m, float b, float g, float x) - { - float ret = g * m * Mathf.Pow(m * x + b, g - 1f); - return ret; - } - - /// - /// Utility class to retrieve curve values for shader evaluation. - /// - public class Uniforms - { - HableCurve parent; - - internal Uniforms(HableCurve parent) - { - this.parent = parent; - } - - /// - /// A pre-built holding: (inverseWhitePoint, x0, x1, 0). - /// - public Vector4 curve - { - get { return new Vector4(parent.inverseWhitePoint, parent.x0, parent.x1, 0f); } - } - - /// - /// A pre-built holding: (toe.offsetX, toe.offsetY, toe.scaleX, toe.scaleY). - /// - public Vector4 toeSegmentA - { - get - { - var toe = parent.m_Segments[0]; - return new Vector4(toe.offsetX, toe.offsetY, toe.scaleX, toe.scaleY); - } - } - - /// - /// A pre-built holding: (toe.lnA, toe.B, 0, 0). - /// - public Vector4 toeSegmentB - { - get - { - var toe = parent.m_Segments[0]; - return new Vector4(toe.lnA, toe.B, 0f, 0f); - } - } - - /// - /// A pre-built holding: (mid.offsetX, mid.offsetY, mid.scaleX, mid.scaleY). - /// - public Vector4 midSegmentA - { - get - { - var mid = parent.m_Segments[1]; - return new Vector4(mid.offsetX, mid.offsetY, mid.scaleX, mid.scaleY); - } - } - - /// - /// A pre-built holding: (mid.lnA, mid.B, 0, 0). - /// - public Vector4 midSegmentB - { - get - { - var mid = parent.m_Segments[1]; - return new Vector4(mid.lnA, mid.B, 0f, 0f); - } - } - - /// - /// A pre-built holding: (toe.offsetX, toe.offsetY, toe.scaleX, toe.scaleY). - /// - public Vector4 shoSegmentA - { - get - { - var sho = parent.m_Segments[2]; - return new Vector4(sho.offsetX, sho.offsetY, sho.scaleX, sho.scaleY); - } - } - - /// - /// A pre-built holding: (sho.lnA, sho.B, 0, 0). - /// - public Vector4 shoSegmentB - { - get - { - var sho = parent.m_Segments[2]; - return new Vector4(sho.lnA, sho.B, 0f, 0f); - } - } - } - - /// - /// The builtin instance for this curve. - /// - public readonly Uniforms uniforms; - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/HableCurve.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/HableCurve.cs.meta deleted file mode 100644 index 7ee502c04..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/HableCurve.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 599b4e72f6c212d40819cfde14826671 -timeCreated: 1494795842 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/HaltonSeq.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/HaltonSeq.cs deleted file mode 100644 index ab29694f1..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/HaltonSeq.cs +++ /dev/null @@ -1,30 +0,0 @@ -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// Halton sequence utility. - /// - public static class HaltonSeq - { - /// - /// Gets a value from the Halton sequence for a given index and radix. - /// - /// The sequence index - /// The sequence base - /// A number from the Halton sequence between 0 and 1. - public static float Get(int index, int radix) - { - float result = 0f; - float fraction = 1f / (float)radix; - - while (index > 0) - { - result += (float)(index % radix) * fraction; - - index /= radix; - fraction /= (float)radix; - } - - return result; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/HaltonSeq.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/HaltonSeq.cs.meta deleted file mode 100644 index 8cff6e30b..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/HaltonSeq.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 616483d5bdbf13c43ae1b005134b8c11 -timeCreated: 1493633892 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/LogHistogram.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/LogHistogram.cs deleted file mode 100644 index b16a111fd..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/LogHistogram.cs +++ /dev/null @@ -1,62 +0,0 @@ -namespace UnityEngine.Rendering.PostProcessing -{ - internal sealed class LogHistogram - { - public const int rangeMin = -9; // ev - public const int rangeMax = 9; // ev - - // Don't forget to update 'ExposureHistogram.hlsl' if you change these values ! - const int k_Bins = 128; - - public ComputeBuffer data { get; private set; } - - public void Generate(PostProcessRenderContext context) - { - if (data == null) - data = new ComputeBuffer(k_Bins, sizeof(uint)); - - uint threadX, threadY, threadZ; - var scaleOffsetRes = GetHistogramScaleOffsetRes(context); - var compute = context.resources.computeShaders.exposureHistogram; - var cmd = context.command; - cmd.BeginSample("LogHistogram"); - - // Clear the buffer on every frame as we use it to accumulate luminance values on each frame - int kernel = compute.FindKernel("KEyeHistogramClear"); - cmd.SetComputeBufferParam(compute, kernel, "_HistogramBuffer", data); - compute.GetKernelThreadGroupSizes(kernel, out threadX, out threadY, out threadZ); - cmd.DispatchCompute(compute, kernel, Mathf.CeilToInt(k_Bins / (float)threadX), 1, 1); - - // Get a log histogram - kernel = compute.FindKernel("KEyeHistogram"); - cmd.SetComputeBufferParam(compute, kernel, "_HistogramBuffer", data); - cmd.SetComputeTextureParam(compute, kernel, "_Source", context.source); - cmd.SetComputeVectorParam(compute, "_ScaleOffsetRes", scaleOffsetRes); - - compute.GetKernelThreadGroupSizes(kernel, out threadX, out threadY, out threadZ); - cmd.DispatchCompute(compute, kernel, - Mathf.CeilToInt(scaleOffsetRes.z / 2f / threadX), - Mathf.CeilToInt(scaleOffsetRes.w / 2f / threadY), - 1 - ); - - cmd.EndSample("LogHistogram"); - } - - public Vector4 GetHistogramScaleOffsetRes(PostProcessRenderContext context) - { - float diff = rangeMax - rangeMin; - float scale = 1f / diff; - float offset = -rangeMin * scale; - return new Vector4(scale, offset, context.width, context.height); - } - - public void Release() - { - if (data != null) - data.Release(); - - data = null; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/LogHistogram.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/LogHistogram.cs.meta deleted file mode 100644 index 1b01a15ec..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/LogHistogram.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: a4b23776a3150a74ea5ad6271a3d8f15 -timeCreated: 1496324052 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/MeshUtilities.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/MeshUtilities.cs deleted file mode 100644 index 08e5bbaa7..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/MeshUtilities.cs +++ /dev/null @@ -1,58 +0,0 @@ -using System; -using System.Collections.Generic; -using UnityEngine.Assertions; - -namespace UnityEngine.Rendering.PostProcessing -{ - static class MeshUtilities - { - static Dictionary s_Primitives; - static Dictionary s_ColliderPrimitives; - - static MeshUtilities() - { - s_Primitives = new Dictionary(); - s_ColliderPrimitives = new Dictionary - { - { typeof(BoxCollider), PrimitiveType.Cube }, - { typeof(SphereCollider), PrimitiveType.Sphere }, - { typeof(CapsuleCollider), PrimitiveType.Capsule } - }; - } - - internal static Mesh GetColliderMesh(Collider collider) - { - var type = collider.GetType(); - - if (type == typeof(MeshCollider)) - return ((MeshCollider)collider).sharedMesh; - - Assert.IsTrue(s_ColliderPrimitives.ContainsKey(type), "Unknown collider"); - return GetPrimitive(s_ColliderPrimitives[type]); - } - - internal static Mesh GetPrimitive(PrimitiveType primitiveType) - { - Mesh mesh; - - if (!s_Primitives.TryGetValue(primitiveType, out mesh)) - { - mesh = GetBuiltinMesh(primitiveType); - s_Primitives.Add(primitiveType, mesh); - } - - return mesh; - } - - // (Not pretty) hack to get meshes from `unity default resources` in user land - // What it does is create a new GameObject using the CreatePrimitive utility, retrieve its - // mesh and discard it... - static Mesh GetBuiltinMesh(PrimitiveType primitiveType) - { - var gameObject = GameObject.CreatePrimitive(primitiveType); - var mesh = gameObject.GetComponent().sharedMesh; - RuntimeUtilities.Destroy(gameObject); - return mesh; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/MeshUtilities.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/MeshUtilities.cs.meta deleted file mode 100644 index 7405ea417..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/MeshUtilities.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 4b42fa3a7c4baed49bb4f6a56dadc03f -timeCreated: 1488548727 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/PropertySheet.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/PropertySheet.cs deleted file mode 100644 index 9dcc1f8a2..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/PropertySheet.cs +++ /dev/null @@ -1,58 +0,0 @@ -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// The post-processing stack is entirely built around the use of - /// and as such requires the use of to properly deal with - /// the deferred nature of . - /// This wrapper abstracts the creation and destruction of - /// and to make the process easier. - /// - /// - public sealed class PropertySheet - { - /// - /// The actual to fill. - /// - public MaterialPropertyBlock properties { get; private set; } - - internal Material material { get; private set; } - - internal PropertySheet(Material material) - { - this.material = material; - properties = new MaterialPropertyBlock(); - } - - /// - /// Clears all keywords set on the source material. - /// - public void ClearKeywords() - { - material.shaderKeywords = null; - } - - /// - /// Enableds a given keyword on the source material. - /// - /// The keyword to enable - public void EnableKeyword(string keyword) - { - material.EnableKeyword(keyword); - } - - /// - /// Disables a given keyword on the source material. - /// - /// The keyword to disable - public void DisableKeyword(string keyword) - { - material.DisableKeyword(keyword); - } - - internal void Release() - { - RuntimeUtilities.Destroy(material); - material = null; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/PropertySheet.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/PropertySheet.cs.meta deleted file mode 100644 index 0ecf547fa..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/PropertySheet.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 4da61023839a0604d834e6ffde67ad52 -timeCreated: 1489745652 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/PropertySheetFactory.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/PropertySheetFactory.cs deleted file mode 100644 index b707009c2..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/PropertySheetFactory.cs +++ /dev/null @@ -1,89 +0,0 @@ -using System; -using System.Collections.Generic; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// A factory for easy creation and destruction of - /// and . - /// - /// - public sealed class PropertySheetFactory - { - readonly Dictionary m_Sheets; - - /// - /// Creates a new factory. - /// - public PropertySheetFactory() - { - m_Sheets = new Dictionary(); - } - - /// - /// Gets a for a given shader identifier. Sheets are recycled - /// so you can safely call this method on every frame. - /// - /// The name of the shader to retrieve a sheet for - /// A sheet for the given shader - /// - /// This method will not work when loading post-processing from an asset bundle. For this - /// reason it is recommended to use instead. - /// - /// Thrown if the shader is invalid - [Obsolete("Use PropertySheet.Get(Shader) with a direct reference to the Shader instead.")] - public PropertySheet Get(string shaderName) - { - var shader = Shader.Find(shaderName); - - if (shader == null) - throw new ArgumentException(string.Format("Invalid shader ({0})", shaderName)); - - return Get(shader); - } - - /// - /// Gets a for a given shader instance. Sheets are recycled so - /// you can safely call this method on every frame. - /// - /// A shader instance to retrieve a sheet for - /// A sheet for the given shader - /// Thrown if the shader is invalid - public PropertySheet Get(Shader shader) - { - PropertySheet sheet; - - if (shader == null) - throw new ArgumentException(string.Format("Invalid shader ({0})", shader)); - - if (m_Sheets.TryGetValue(shader, out sheet)) - return sheet; - - var shaderName = shader.name; - var material = new Material(shader) - { - name = string.Format("PostProcess - {0}", shaderName.Substring(shaderName.LastIndexOf('/') + 1)), - hideFlags = HideFlags.DontSave - }; - - sheet = new PropertySheet(material); - m_Sheets.Add(shader, sheet); - return sheet; - } - - /// - /// Releases all resources used by this factory. - /// - /// - /// You don't need to call this method when using the builtin factory from - /// . - /// - public void Release() - { - foreach (var sheet in m_Sheets.Values) - sheet.Release(); - - m_Sheets.Clear(); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/PropertySheetFactory.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/PropertySheetFactory.cs.meta deleted file mode 100644 index 52eb27a39..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/PropertySheetFactory.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: e034505fdac568a45af53ec1cdb0fbb3 -timeCreated: 1489748399 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/RuntimeUtilities.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/RuntimeUtilities.cs deleted file mode 100644 index d97d31311..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/RuntimeUtilities.cs +++ /dev/null @@ -1,1229 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Linq.Expressions; -using System.Reflection; -using System.Text; -using UnityEngine.Assertions; - -#if UNITY_EDITOR -using UnityEditor; -#endif - -namespace UnityEngine.Rendering.PostProcessing -{ - using SceneManagement; - using UnityObject = UnityEngine.Object; - using LoadAction = RenderBufferLoadAction; - using StoreAction = RenderBufferStoreAction; - - /// - /// A set of runtime utilities used by the post-processing stack. - /// - public static class RuntimeUtilities - { - #region Textures - - static Texture2D m_WhiteTexture; - - /// - /// A 1x1 white texture. - /// - /// - /// This texture is only created once and recycled afterward. You shouldn't modify it. - /// - public static Texture2D whiteTexture - { - get - { - if (m_WhiteTexture == null) - { - m_WhiteTexture = new Texture2D(1, 1, TextureFormat.ARGB32, false) { name = "White Texture" }; - m_WhiteTexture.SetPixel(0, 0, Color.white); - m_WhiteTexture.Apply(); - } - - return m_WhiteTexture; - } - } - - static Texture3D m_WhiteTexture3D; - - /// - /// A 1x1x1 white texture. - /// - /// - /// This texture is only created once and recycled afterward. You shouldn't modify it. - /// - public static Texture3D whiteTexture3D - { - get - { - if (m_WhiteTexture3D == null) - { - m_WhiteTexture3D = new Texture3D(1, 1, 1, TextureFormat.ARGB32, false) { name = "White Texture 3D" }; - m_WhiteTexture3D.SetPixels(new Color[] { Color.white }); - m_WhiteTexture3D.Apply(); - } - - return m_WhiteTexture3D; - } - } - - static Texture2D m_BlackTexture; - - /// - /// A 1x1 black texture. - /// - /// - /// This texture is only created once and recycled afterward. You shouldn't modify it. - /// - public static Texture2D blackTexture - { - get - { - if (m_BlackTexture == null) - { - m_BlackTexture = new Texture2D(1, 1, TextureFormat.ARGB32, false) { name = "Black Texture" }; - m_BlackTexture.SetPixel(0, 0, Color.black); - m_BlackTexture.Apply(); - } - - return m_BlackTexture; - } - } - - static Texture3D m_BlackTexture3D; - - /// - /// A 1x1x1 black texture. - /// - /// - /// This texture is only created once and recycled afterward. You shouldn't modify it. - /// - public static Texture3D blackTexture3D - { - get - { - if (m_BlackTexture3D == null) - { - m_BlackTexture3D = new Texture3D(1, 1, 1, TextureFormat.ARGB32, false) { name = "Black Texture 3D" }; - m_BlackTexture3D.SetPixels(new Color[] { Color.black }); - m_BlackTexture3D.Apply(); - } - - return m_BlackTexture3D; - } - } - - static Texture2D m_TransparentTexture; - - /// - /// A 1x1 transparent texture. - /// - /// - /// This texture is only created once and recycled afterward. You shouldn't modify it. - /// - public static Texture2D transparentTexture - { - get - { - if (m_TransparentTexture == null) - { - m_TransparentTexture = new Texture2D(1, 1, TextureFormat.ARGB32, false) { name = "Transparent Texture" }; - m_TransparentTexture.SetPixel(0, 0, Color.clear); - m_TransparentTexture.Apply(); - } - - return m_TransparentTexture; - } - } - - static Texture3D m_TransparentTexture3D; - - /// - /// A 1x1x1 transparent texture. - /// - /// - /// This texture is only created once and recycled afterward. You shouldn't modify it. - /// - public static Texture3D transparentTexture3D - { - get - { - if (m_TransparentTexture3D == null) - { - m_TransparentTexture3D = new Texture3D(1, 1, 1, TextureFormat.ARGB32, false) { name = "Transparent Texture 3D" }; - m_TransparentTexture3D.SetPixels(new Color[] { Color.clear }); - m_TransparentTexture3D.Apply(); - } - - return m_TransparentTexture3D; - } - } - - static Dictionary m_LutStrips = new Dictionary(); - - /// - /// Gets a 2D lookup table for color grading use. Its size will be width = height * height. - /// - /// The height of the lookup table - /// A 2D lookup table - /// - /// Lookup tables are recycled and only created once per size. You shouldn't modify them. - /// - public static Texture2D GetLutStrip(int size) - { - Texture2D texture; - if (!m_LutStrips.TryGetValue(size, out texture)) - { - int width = size * size; - int height = size; - var pixels = new Color[width * height]; - float inv = 1f / (size - 1f); - - for (int z = 0; z < size; z++) - { - var offset = z * size; - var b = z * inv; - - for (int y = 0; y < size; y++) - { - var g = y * inv; - - for (int x = 0; x < size; x++) - { - var r = x * inv; - pixels[y * width + offset + x] = new Color(r, g, b); - } - } - } - - var format = TextureFormat.RGBAHalf; - if (!format.IsSupported()) - format = TextureFormat.ARGB32; - - texture = new Texture2D(size * size, size, format, false, true) - { - name = "Strip Lut" + size, - hideFlags = HideFlags.DontSave, - filterMode = FilterMode.Bilinear, - wrapMode = TextureWrapMode.Clamp, - anisoLevel = 0 - }; - texture.SetPixels(pixels); - texture.Apply(); - m_LutStrips.Add(size, texture); - } - - return texture; - } - - #endregion - - #region Rendering - - internal static PostProcessResources s_Resources; - - static Mesh s_FullscreenTriangle; - - /// - /// A fullscreen triangle mesh. - /// - public static Mesh fullscreenTriangle - { - get - { - if (s_FullscreenTriangle != null) - return s_FullscreenTriangle; - - s_FullscreenTriangle = new Mesh { name = "Fullscreen Triangle" }; - - // Because we have to support older platforms (GLES2/3, DX9 etc) we can't do all of - // this directly in the vertex shader using vertex ids :( - s_FullscreenTriangle.SetVertices(new List - { - new Vector3(-1f, -1f, 0f), - new Vector3(-1f, 3f, 0f), - new Vector3( 3f, -1f, 0f) - }); - s_FullscreenTriangle.SetIndices(new [] { 0, 1, 2 }, MeshTopology.Triangles, 0, false); - s_FullscreenTriangle.UploadMeshData(false); - - return s_FullscreenTriangle; - } - } - - static Material s_CopyStdMaterial; - - /// - /// A simple copy material to use with the builtin pipelines. - /// - public static Material copyStdMaterial - { - get - { - if (s_CopyStdMaterial != null) - return s_CopyStdMaterial; - - Assert.IsNotNull(s_Resources); - var shader = s_Resources.shaders.copyStd; - s_CopyStdMaterial = new Material(shader) - { - name = "PostProcess - CopyStd", - hideFlags = HideFlags.HideAndDontSave - }; - - return s_CopyStdMaterial; - } - } - - static Material s_CopyStdFromDoubleWideMaterial; - - /// - /// A double-wide copy material to use with VR and the builtin pipelines. - /// - public static Material copyStdFromDoubleWideMaterial - { - get - { - if (s_CopyStdFromDoubleWideMaterial != null) - return s_CopyStdFromDoubleWideMaterial; - - Assert.IsNotNull(s_Resources); - var shader = s_Resources.shaders.copyStdFromDoubleWide; - s_CopyStdFromDoubleWideMaterial = new Material(shader) - { - name = "PostProcess - CopyStdFromDoubleWide", - hideFlags = HideFlags.HideAndDontSave - }; - - return s_CopyStdFromDoubleWideMaterial; - } - } - - static Material s_CopyMaterial; - - /// - /// A simple copy material independent from the rendering pipeline. - /// - public static Material copyMaterial - { - get - { - if (s_CopyMaterial != null) - return s_CopyMaterial; - - Assert.IsNotNull(s_Resources); - var shader = s_Resources.shaders.copy; - s_CopyMaterial = new Material(shader) - { - name = "PostProcess - Copy", - hideFlags = HideFlags.HideAndDontSave - }; - - return s_CopyMaterial; - } - } - - static Material s_CopyFromTexArrayMaterial; - - /// - /// A copy material with a texture array slice as a source for the builtin pipelines. - /// - public static Material copyFromTexArrayMaterial - { - get - { - if (s_CopyFromTexArrayMaterial != null) - return s_CopyFromTexArrayMaterial; - - Assert.IsNotNull(s_Resources); - var shader = s_Resources.shaders.copyStdFromTexArray; - s_CopyFromTexArrayMaterial = new Material(shader) - { - name = "PostProcess - CopyFromTexArray", - hideFlags = HideFlags.HideAndDontSave - }; - - return s_CopyFromTexArrayMaterial; - } - } - - static PropertySheet s_CopySheet; - - /// - /// A pre-configured for . - /// - public static PropertySheet copySheet - { - get - { - if (s_CopySheet == null) - s_CopySheet = new PropertySheet(copyMaterial); - - return s_CopySheet; - } - } - - static PropertySheet s_CopyFromTexArraySheet; - - /// - /// A pre-configured for . - /// - public static PropertySheet copyFromTexArraySheet - { - get - { - if (s_CopyFromTexArraySheet == null) - s_CopyFromTexArraySheet = new PropertySheet(copyFromTexArrayMaterial); - - return s_CopyFromTexArraySheet; - } - } - - /// - /// Sets the current render target using specified . - /// - /// The command buffer to set the render target on - /// The render target to set - /// The load action - /// The store action - /// - /// are only used on Unity 2018.2 or newer. - /// - public static void SetRenderTargetWithLoadStoreAction(this CommandBuffer cmd, RenderTargetIdentifier rt, RenderBufferLoadAction loadAction, RenderBufferStoreAction storeAction) - { - #if UNITY_2018_2_OR_NEWER - cmd.SetRenderTarget(rt, loadAction, storeAction); - #else - cmd.SetRenderTarget(rt); - #endif - } - - /// - /// Sets the current render target and its depth using specified . - /// - /// The command buffer to set the render target on - /// The render target to set as color - /// The load action for the color render target - /// The store action for the color render target - /// The render target to set as depth - /// The load action for the depth render target - /// The store action for the depth render target - public static void SetRenderTargetWithLoadStoreAction(this CommandBuffer cmd, - RenderTargetIdentifier color, RenderBufferLoadAction colorLoadAction, RenderBufferStoreAction colorStoreAction, - RenderTargetIdentifier depth, RenderBufferLoadAction depthLoadAction, RenderBufferStoreAction depthStoreAction) - { - #if UNITY_2018_2_OR_NEWER - cmd.SetRenderTarget(color, colorLoadAction, colorStoreAction, depth, depthLoadAction, depthStoreAction); - #else - cmd.SetRenderTarget(color, depth); - #endif - } - - /// - /// Does a copy of source to destination using a fullscreen triangle. - /// - /// The command buffer to use - /// The source render target - /// The destination render target - /// Should the destination target be cleared? - /// An optional viewport to consider for the blit - public static void BlitFullscreenTriangle(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, bool clear = false, Rect? viewport = null) - { - cmd.SetGlobalTexture(ShaderIDs.MainTex, source); - cmd.SetRenderTargetWithLoadStoreAction(destination, viewport == null ? LoadAction.DontCare : LoadAction.Load, StoreAction.Store); - - if (viewport != null) - cmd.SetViewport(viewport.Value); - - if (clear) - cmd.ClearRenderTarget(true, true, Color.clear); - - cmd.DrawMesh(fullscreenTriangle, Matrix4x4.identity, copyMaterial, 0, 0); - } - - /// - /// Blits a fullscreen triangle using a given material. - /// - /// The command buffer to use - /// The source render target - /// The destination render target - /// The property sheet to use - /// The pass from the material to use - /// The load action for this blit - /// An optional viewport to consider for the blit - public static void BlitFullscreenTriangle(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, PropertySheet propertySheet, int pass, RenderBufferLoadAction loadAction, Rect? viewport = null) - { - cmd.SetGlobalTexture(ShaderIDs.MainTex, source); - #if UNITY_2018_2_OR_NEWER - bool clear = (loadAction == LoadAction.Clear); - if(clear) - loadAction = LoadAction.DontCare; - #else - bool clear = false; - #endif - cmd.SetRenderTargetWithLoadStoreAction(destination, viewport == null ? loadAction : LoadAction.Load, StoreAction.Store); - - if (viewport != null) - cmd.SetViewport(viewport.Value); - - if (clear) - cmd.ClearRenderTarget(true, true, Color.clear); - - cmd.DrawMesh(fullscreenTriangle, Matrix4x4.identity, propertySheet.material, 0, pass, propertySheet.properties); - } - - /// - /// Blits a fullscreen triangle using a given material. - /// - /// The command buffer to use - /// The source render target - /// The destination render target - /// The property sheet to use - /// The pass from the material to use - /// Should the destination target be cleared? - /// An optional viewport to consider for the blit - public static void BlitFullscreenTriangle(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, PropertySheet propertySheet, int pass, bool clear = false, Rect? viewport = null) - { - #if UNITY_2018_2_OR_NEWER - cmd.BlitFullscreenTriangle(source, destination, propertySheet, pass, clear ? LoadAction.Clear : LoadAction.DontCare, viewport); - #else - cmd.SetGlobalTexture(ShaderIDs.MainTex, source); - cmd.SetRenderTargetWithLoadStoreAction(destination, viewport == null ? LoadAction.DontCare : LoadAction.Load, StoreAction.Store); - - if (viewport != null) - cmd.SetViewport(viewport.Value); - - if (clear) - cmd.ClearRenderTarget(true, true, Color.clear); - - cmd.DrawMesh(fullscreenTriangle, Matrix4x4.identity, propertySheet.material, 0, pass, propertySheet.properties); - #endif - } - - /// - /// Blits a fullscreen triangle from a double-wide source. - /// - /// The command buffer to use - /// The source render target - /// The destination render target - /// The material to use for the blit - /// The pass from the material to use - /// The target eye - public static void BlitFullscreenTriangleFromDoubleWide(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, Material material, int pass, int eye) - { - Vector4 uvScaleOffset = new Vector4(0.5f, 1.0f, 0, 0); - - if (eye == 1) - uvScaleOffset.z = 0.5f; - cmd.SetGlobalVector(ShaderIDs.UVScaleOffset, uvScaleOffset); - cmd.BuiltinBlit(source, destination, material, pass); - } - - /// - /// Blits a fullscreen triangle to a double-wide destination. - /// - /// The command buffer to use - /// The source render target - /// The destination render target - /// The property sheet to use - /// The pass from the material to use - /// The target eye - public static void BlitFullscreenTriangleToDoubleWide(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, PropertySheet propertySheet, int pass, int eye) - { - Vector4 posScaleOffset = new Vector4(0.5f, 1.0f, -0.5f, 0); - - if (eye == 1) - posScaleOffset.z = 0.5f; - propertySheet.EnableKeyword("STEREO_DOUBLEWIDE_TARGET"); - propertySheet.properties.SetVector(ShaderIDs.PosScaleOffset, posScaleOffset); - cmd.BlitFullscreenTriangle(source, destination, propertySheet, 0); - } - - /// - /// Blits a fullscreen triangle using a given material. - /// - /// The command buffer to use - /// The source texture array - /// The destination render target - /// The property sheet to use - /// The pass from the material to use - /// Should the destination target be cleared? - /// The slice to use for the texture array - public static void BlitFullscreenTriangleFromTexArray(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, PropertySheet propertySheet, int pass, bool clear = false, int depthSlice = -1) - { - cmd.SetGlobalTexture(ShaderIDs.MainTex, source); - cmd.SetGlobalFloat(ShaderIDs.DepthSlice, depthSlice); - cmd.SetRenderTargetWithLoadStoreAction(destination, RenderBufferLoadAction.DontCare, RenderBufferStoreAction.Store); - - if (clear) - cmd.ClearRenderTarget(true, true, Color.clear); - - cmd.DrawMesh(fullscreenTriangle, Matrix4x4.identity, propertySheet.material, 0, pass, propertySheet.properties); - } - - /// - /// Blits a fullscreen triangle using a given material. - /// - /// The command buffer to use - /// The source render target - /// The destination render target - /// The depth render target - /// The property sheet to use - /// The pass from the material to use - /// Should the destination target be cleared? - /// The array slice to consider as a source - public static void BlitFullscreenTriangleToTexArray(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, PropertySheet propertySheet, int pass, bool clear = false, int depthSlice = -1) - { - cmd.SetGlobalTexture(ShaderIDs.MainTex, source); - cmd.SetGlobalFloat(ShaderIDs.DepthSlice, depthSlice); - cmd.SetRenderTarget(destination, 0, CubemapFace.Unknown, -1); - - if (clear) - cmd.ClearRenderTarget(true, true, Color.clear); - - cmd.DrawMesh(fullscreenTriangle, Matrix4x4.identity, propertySheet.material, 0, pass, propertySheet.properties); - } - - /// - /// Blits a fullscreen triangle using a given material. - /// - /// The command buffer to use - /// The source render target - /// The destination render target - /// The depth render target - /// The property sheet to use - /// The pass from the material to use - /// Should the destination target be cleared? - /// An optional viewport to consider for the blit - public static void BlitFullscreenTriangle(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, RenderTargetIdentifier depth, PropertySheet propertySheet, int pass, bool clear = false, Rect? viewport = null) - { - cmd.SetGlobalTexture(ShaderIDs.MainTex, source); - - LoadAction loadAction = viewport == null ? LoadAction.DontCare : LoadAction.Load; - if (clear) - { - cmd.SetRenderTargetWithLoadStoreAction(destination, loadAction, StoreAction.Store, depth, loadAction, StoreAction.Store); - cmd.ClearRenderTarget(true, true, Color.clear); - } - else - { - cmd.SetRenderTargetWithLoadStoreAction(destination, loadAction, StoreAction.Store, depth, LoadAction.Load, StoreAction.Store); - } - - if (viewport != null) - cmd.SetViewport(viewport.Value); - - cmd.DrawMesh(fullscreenTriangle, Matrix4x4.identity, propertySheet.material, 0, pass, propertySheet.properties); - } - - /// - /// Blits a fullscreen triangle using a given material. - /// - /// The command buffer to use - /// The source render target - /// An array of destinations render targets - /// The depth render target - /// The property sheet to use - /// The pass from the material to use - /// Should the destination target be cleared? - /// An optional viewport to consider for the blit - public static void BlitFullscreenTriangle(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier[] destinations, RenderTargetIdentifier depth, PropertySheet propertySheet, int pass, bool clear = false, Rect? viewport = null) - { - cmd.SetGlobalTexture(ShaderIDs.MainTex, source); - cmd.SetRenderTarget(destinations, depth); - - if (viewport != null) - cmd.SetViewport(viewport.Value); - - if (clear) - cmd.ClearRenderTarget(true, true, Color.clear); - - cmd.DrawMesh(fullscreenTriangle, Matrix4x4.identity, propertySheet.material, 0, pass, propertySheet.properties); - } - - /// - /// Does a copy of source to destination using the builtin blit command. - /// - /// The command buffer to use - /// The source render target - /// The destination render target - public static void BuiltinBlit(this CommandBuffer cmd, Rendering.RenderTargetIdentifier source, RenderTargetIdentifier destination) - { - #if UNITY_2018_2_OR_NEWER - cmd.SetRenderTarget(destination, RenderBufferLoadAction.DontCare, RenderBufferStoreAction.Store); - destination = BuiltinRenderTextureType.CurrentActive; - #endif - cmd.Blit(source, destination); - } - - /// - /// Blits a fullscreen quad using the builtin blit command and a given material. - /// - /// The command buffer to use - /// The source render target - /// The destination render target - /// The material to use for the blit - /// The pass from the material to use - public static void BuiltinBlit(this CommandBuffer cmd, Rendering.RenderTargetIdentifier source, RenderTargetIdentifier destination, Material mat, int pass = 0) - { - #if UNITY_2018_2_OR_NEWER - cmd.SetRenderTarget(destination, RenderBufferLoadAction.DontCare, RenderBufferStoreAction.Store); - destination = BuiltinRenderTextureType.CurrentActive; - #endif - cmd.Blit(source, destination, mat, pass); - } - - // Fast basic copy texture if available, falls back to blit copy if not - // Assumes that both textures have the exact same type and format - /// - /// Copies the content of a texture into the other. Both textures must have the same size - /// and format or this method will fail. - /// - /// The command buffer to use - /// The source render target - /// The destination render target - /// - /// If the CopyTexture command isn't supported on the target platform it will revert to a - /// fullscreen blit command instead. - /// - public static void CopyTexture(CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination) - { - if (SystemInfo.copyTextureSupport > CopyTextureSupport.None) - { - cmd.CopyTexture(source, destination); - return; - } - - cmd.BlitFullscreenTriangle(source, destination); - } - - // TODO: Generalize the GetTemporaryRT and Blit commands in order to support - // RT Arrays for Stereo Instancing/MultiView - - #endregion - - #region Unity specifics & misc methods - - /// - /// Returns true if a scriptable render pipeline is currently in use, false - /// otherwise. - /// - public static bool scriptableRenderPipelineActive - { - get { return GraphicsSettings.renderPipelineAsset != null; } // 5.6+ only - } - - /// - /// Returns true if deferred shading is supported on the target platform, - /// false otherwise. - /// - public static bool supportsDeferredShading - { - get { return scriptableRenderPipelineActive || GraphicsSettings.GetShaderMode(BuiltinShaderType.DeferredShading) != BuiltinShaderMode.Disabled; } - } - - /// - /// Returns true if is supported on the - /// target platform, false otherwise. - /// - public static bool supportsDepthNormals - { - get { return scriptableRenderPipelineActive || GraphicsSettings.GetShaderMode(BuiltinShaderType.DepthNormals) != BuiltinShaderMode.Disabled; } - } - -#if UNITY_EDITOR - /// - /// Returns true if single-pass stereo rendering is selected, false otherwise. - /// - /// - /// This property only works in the editor. - /// - public static bool isSinglePassStereoSelected - { - get - { - return PlayerSettings.virtualRealitySupported - && PlayerSettings.stereoRenderingPath == UnityEditor.StereoRenderingPath.SinglePass; - } - } -#endif - - /// - /// Returns true if single-pass stereo rendering is active, false otherwise. - /// - /// - /// This property only works in the editor. - /// - // TODO: Check for SPSR support at runtime - public static bool isSinglePassStereoEnabled - { - get - { -#if UNITY_EDITOR - return isSinglePassStereoSelected && Application.isPlaying; -#elif UNITY_SWITCH - return false; -#elif UNITY_2017_2_OR_NEWER - return UnityEngine.XR.XRSettings.eyeTextureDesc.vrUsage == VRTextureUsage.TwoEyes; -#else - return false; -#endif - } - } - - /// - /// Returns true if VR is enabled, false otherwise. - /// - public static bool isVREnabled - { - get - { -#if UNITY_EDITOR - return UnityEditor.PlayerSettings.virtualRealitySupported; -#elif UNITY_XBOXONE || UNITY_SWITCH - return false; -#elif UNITY_2017_2_OR_NEWER - return UnityEngine.XR.XRSettings.enabled; -#elif UNITY_5_6_OR_NEWER - return UnityEngine.VR.VRSettings.enabled; -#endif - } - } - - /// - /// Returns true if the target platform is Android and the selected API is OpenGL, - /// false otherwise. - /// - public static bool isAndroidOpenGL - { - get { return Application.platform == RuntimePlatform.Android && SystemInfo.graphicsDeviceType != GraphicsDeviceType.Vulkan; } - } - - /// - /// Gets the default HDR render texture format for the current target platform. - /// - public static RenderTextureFormat defaultHDRRenderTextureFormat - { - get - { -#if UNITY_ANDROID || UNITY_IPHONE || UNITY_TVOS || UNITY_SWITCH || UNITY_EDITOR - RenderTextureFormat format = RenderTextureFormat.RGB111110Float; -#if UNITY_EDITOR - var target = EditorUserBuildSettings.activeBuildTarget; - if (target != BuildTarget.Android && target != BuildTarget.iOS && target != BuildTarget.tvOS && target != BuildTarget.Switch) - return RenderTextureFormat.DefaultHDR; -#endif // UNITY_EDITOR - if (format.IsSupported()) - return format; -#endif // UNITY_ANDROID || UNITY_IPHONE || UNITY_TVOS || UNITY_SWITCH || UNITY_EDITOR - return RenderTextureFormat.DefaultHDR; - } - } - - /// - /// Checks if a given render texture format is a floating-point format. - /// - /// The format to test - /// true if the format is floating-point, false otherwise - public static bool isFloatingPointFormat(RenderTextureFormat format) - { - return format == RenderTextureFormat.DefaultHDR || format == RenderTextureFormat.ARGBHalf || format == RenderTextureFormat.ARGBFloat || - format == RenderTextureFormat.RGFloat || format == RenderTextureFormat.RGHalf || - format == RenderTextureFormat.RFloat || format == RenderTextureFormat.RHalf || - format == RenderTextureFormat.RGB111110Float; - } - - /// - /// Properly destroys a given Unity object. - /// - /// The object to destroy - public static void Destroy(UnityObject obj) - { - if (obj != null) - { -#if UNITY_EDITOR - if (Application.isPlaying) - UnityObject.Destroy(obj); - else - UnityObject.DestroyImmediate(obj); -#else - UnityObject.Destroy(obj); -#endif - } - } - - /// - /// Returns true if the current color space setting is set to Linear, - /// false otherwise. - /// - public static bool isLinearColorSpace - { - get { return QualitySettings.activeColorSpace == ColorSpace.Linear; } - } - - /// - /// Checks if resolved depth is available on the current target platform. - /// - /// A rendering camera - /// true if resolved depth is available, false otherwise - public static bool IsResolvedDepthAvailable(Camera camera) - { - // AFAIK resolved depth is only available on D3D11/12 via BuiltinRenderTextureType.ResolvedDepth - // TODO: Is there more proper way to determine this? What about SRPs? - var gtype = SystemInfo.graphicsDeviceType; - return camera.actualRenderingPath == RenderingPath.DeferredShading && - (gtype == GraphicsDeviceType.Direct3D11 || gtype == GraphicsDeviceType.Direct3D12 || gtype == GraphicsDeviceType.XboxOne); - } - - /// - /// Properly destroys a given profile. - /// - /// The profile to destroy - /// Should we destroy all the embedded settings? - public static void DestroyProfile(PostProcessProfile profile, bool destroyEffects) - { - if (destroyEffects) - { - foreach (var effect in profile.settings) - Destroy(effect); - } - - Destroy(profile); - } - - /// - /// Properly destroys a volume. - /// - /// The volume to destroy - /// Should we destroy the attached profile? - /// Should we destroy the volume Game Object? - public static void DestroyVolume(PostProcessVolume volume, bool destroyProfile, bool destroyGameObject = false) - { - if (destroyProfile) - DestroyProfile(volume.profileRef, true); - - var gameObject = volume.gameObject; - Destroy(volume); - - if (destroyGameObject) - Destroy(gameObject); - } - - /// - /// Checks if a post-processing layer is active. - /// - /// The layer to check; can be null - /// true if the layer is enabled, false otherwise - public static bool IsPostProcessingActive(PostProcessLayer layer) - { - return layer != null - && layer.enabled; - } - - /// - /// Checks if temporal anti-aliasing is active on a given post-process layer. - /// - /// The layer to check - /// true if temporal anti-aliasing is active, false otherwise - public static bool IsTemporalAntialiasingActive(PostProcessLayer layer) - { - return IsPostProcessingActive(layer) - && layer.antialiasingMode == PostProcessLayer.Antialiasing.TemporalAntialiasing - && layer.temporalAntialiasing.IsSupported(); - } - - /// - /// Gets all scene objects in the hierarchy, including inactive objects. This method is slow - /// on large scenes and should be used with extreme caution. - /// - /// The component to look for - /// A list of all components of type T in the scene - public static IEnumerable GetAllSceneObjects() - where T : Component - { - var queue = new Queue(); - var roots = SceneManager.GetActiveScene().GetRootGameObjects(); - - foreach (var root in roots) - { - queue.Enqueue(root.transform); - var comp = root.GetComponent(); - - if (comp != null) - yield return comp; - } - - while (queue.Count > 0) - { - foreach (Transform child in queue.Dequeue()) - { - queue.Enqueue(child); - var comp = child.GetComponent(); - - if (comp != null) - yield return comp; - } - } - } - - /// - /// Creates an instance of a class if it's null. - /// - /// The type to create - /// A reference to an instance to check and create if needed - public static void CreateIfNull(ref T obj) - where T : class, new() - { - if (obj == null) - obj = new T(); - } - - #endregion - - #region Maths - - /// - /// Returns the base-2 exponential function of , which is 2 - /// raised to the power . - /// - /// Value of the exponent - /// The base-2 exponential function of - public static float Exp2(float x) - { - return Mathf.Exp(x * 0.69314718055994530941723212145818f); - } - - /// - /// Gets a jittered perspective projection matrix for a given camera. - /// - /// The camera to build the projection matrix for - /// The jitter offset - /// A jittered projection matrix - public static Matrix4x4 GetJitteredPerspectiveProjectionMatrix(Camera camera, Vector2 offset) - { - float near = camera.nearClipPlane; - float far = camera.farClipPlane; - - float vertical = Mathf.Tan(0.5f * Mathf.Deg2Rad * camera.fieldOfView) * near; - float horizontal = vertical * camera.aspect; - - offset.x *= horizontal / (0.5f * camera.pixelWidth); - offset.y *= vertical / (0.5f * camera.pixelHeight); - - var matrix = camera.projectionMatrix; - - matrix[0, 2] += offset.x / horizontal; - matrix[1, 2] += offset.y / vertical; - - return matrix; - } - - /// - /// Gets a jittered orthographic projection matrix for a given camera. - /// - /// The camera to build the orthographic matrix for - /// The jitter offset - /// A jittered projection matrix - public static Matrix4x4 GetJitteredOrthographicProjectionMatrix(Camera camera, Vector2 offset) - { - float vertical = camera.orthographicSize; - float horizontal = vertical * camera.aspect; - - offset.x *= horizontal / (0.5f * camera.pixelWidth); - offset.y *= vertical / (0.5f * camera.pixelHeight); - - float left = offset.x - horizontal; - float right = offset.x + horizontal; - float top = offset.y + vertical; - float bottom = offset.y - vertical; - - return Matrix4x4.Ortho(left, right, bottom, top, camera.nearClipPlane, camera.farClipPlane); - } - - /// - /// Gets a jittered perspective projection matrix from an original projection matrix. - /// - /// The current render context - /// The original projection matrix - /// The jitter offset - /// A jittered projection matrix - public static Matrix4x4 GenerateJitteredProjectionMatrixFromOriginal(PostProcessRenderContext context, Matrix4x4 origProj, Vector2 jitter) - { -#if UNITY_2017_2_OR_NEWER - var planes = origProj.decomposeProjection; - - float vertFov = Math.Abs(planes.top) + Math.Abs(planes.bottom); - float horizFov = Math.Abs(planes.left) + Math.Abs(planes.right); - - var planeJitter = new Vector2(jitter.x * horizFov / context.screenWidth, - jitter.y * vertFov / context.screenHeight); - - planes.left += planeJitter.x; - planes.right += planeJitter.x; - planes.top += planeJitter.y; - planes.bottom += planeJitter.y; - - var jitteredMatrix = Matrix4x4.Frustum(planes); - - return jitteredMatrix; -#else - var rTan = (1.0f + origProj[0, 2]) / origProj[0, 0]; - var lTan = (-1.0f + origProj[0, 2]) / origProj[0, 0]; - - var tTan = (1.0f + origProj[1, 2]) / origProj[1, 1]; - var bTan = (-1.0f + origProj[1, 2]) / origProj[1, 1]; - - float tanVertFov = Math.Abs(tTan) + Math.Abs(bTan); - float tanHorizFov = Math.Abs(lTan) + Math.Abs(rTan); - - jitter.x *= tanHorizFov / context.screenWidth; - jitter.y *= tanVertFov / context.screenHeight; - - float left = jitter.x + lTan; - float right = jitter.x + rTan; - float top = jitter.y + tTan; - float bottom = jitter.y + bTan; - - var jitteredMatrix = new Matrix4x4(); - - jitteredMatrix[0, 0] = 2f / (right - left); - jitteredMatrix[0, 1] = 0f; - jitteredMatrix[0, 2] = (right + left) / (right - left); - jitteredMatrix[0, 3] = 0f; - - jitteredMatrix[1, 0] = 0f; - jitteredMatrix[1, 1] = 2f / (top - bottom); - jitteredMatrix[1, 2] = (top + bottom) / (top - bottom); - jitteredMatrix[1, 3] = 0f; - - jitteredMatrix[2, 0] = 0f; - jitteredMatrix[2, 1] = 0f; - jitteredMatrix[2, 2] = origProj[2, 2]; - jitteredMatrix[2, 3] = origProj[2, 3]; - - jitteredMatrix[3, 0] = 0f; - jitteredMatrix[3, 1] = 0f; - jitteredMatrix[3, 2] = -1f; - jitteredMatrix[3, 3] = 0f; - - return jitteredMatrix; -#endif - } - - #endregion - - #region Reflection - - static IEnumerable m_AssemblyTypes; - - /// - /// Gets all currently available assembly types. - /// - /// A list of all currently available assembly types - /// - /// This method is slow and should be use with extreme caution. - /// - public static IEnumerable GetAllAssemblyTypes() - { - if (m_AssemblyTypes == null) - { - m_AssemblyTypes = AppDomain.CurrentDomain.GetAssemblies() - .SelectMany(t => - { - // Ugly hack to handle mis-versioned dlls - var innerTypes = new Type[0]; - try - { - innerTypes = t.GetTypes(); - } - catch { } - return innerTypes; - }); - } - - return m_AssemblyTypes; - } - - /// - /// Helper method to get the first attribute of type T on a given type. - /// - /// The attribute type to look for - /// The type to explore - /// The attribute found - public static T GetAttribute(this Type type) where T : Attribute - { - Assert.IsTrue(type.IsDefined(typeof(T), false), "Attribute not found"); - return (T)type.GetCustomAttributes(typeof(T), false)[0]; - } - - /// - /// Returns all attributes set on a specific member. - /// - /// The class type where the member is defined - /// The member type - /// An expression path to the member - /// An array of attributes - /// - /// This method doesn't return inherited attributes, only explicit ones. - /// - public static Attribute[] GetMemberAttributes(Expression> expr) - { - Expression body = expr; - - if (body is LambdaExpression) - body = ((LambdaExpression)body).Body; - - switch (body.NodeType) - { - case ExpressionType.MemberAccess: - var fi = (FieldInfo)((MemberExpression)body).Member; - return fi.GetCustomAttributes(false).Cast().ToArray(); - default: - throw new InvalidOperationException(); - } - } - - /// - /// Returns a string path from an expression. This is mostly used to retrieve serialized - /// properties without hardcoding the field path as a string and thus allowing proper - /// refactoring features. - /// - /// The class type where the member is defined - /// The member type - /// An expression path fo the member - /// A string representation of the expression path - public static string GetFieldPath(Expression> expr) - { - MemberExpression me; - switch (expr.Body.NodeType) - { - case ExpressionType.MemberAccess: - me = expr.Body as MemberExpression; - break; - default: - throw new InvalidOperationException(); - } - - var members = new List(); - while (me != null) - { - members.Add(me.Member.Name); - me = me.Expression as MemberExpression; - } - - var sb = new StringBuilder(); - for (int i = members.Count - 1; i >= 0; i--) - { - sb.Append(members[i]); - if (i > 0) sb.Append('.'); - } - - return sb.ToString(); - } - - #endregion - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/RuntimeUtilities.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/RuntimeUtilities.cs.meta deleted file mode 100644 index f26dd0eef..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/RuntimeUtilities.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: a2ed510c13db63f4ea5749ef503a99b5 -timeCreated: 1487868442 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/ShaderIDs.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/ShaderIDs.cs deleted file mode 100644 index cf4d93aa1..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/ShaderIDs.cs +++ /dev/null @@ -1,159 +0,0 @@ -namespace UnityEngine.Rendering.PostProcessing -{ - // Pre-hashed shader ids - naming conventions are a bit off in this file as we use the same - // fields names as in the shaders for ease of use... Would be nice to clean this up at some - // point. - static class ShaderIDs - { - internal static readonly int MainTex = Shader.PropertyToID("_MainTex"); - - internal static readonly int Jitter = Shader.PropertyToID("_Jitter"); - internal static readonly int Sharpness = Shader.PropertyToID("_Sharpness"); - internal static readonly int FinalBlendParameters = Shader.PropertyToID("_FinalBlendParameters"); - internal static readonly int HistoryTex = Shader.PropertyToID("_HistoryTex"); - - internal static readonly int SMAA_Flip = Shader.PropertyToID("_SMAA_Flip"); - internal static readonly int SMAA_Flop = Shader.PropertyToID("_SMAA_Flop"); - - internal static readonly int AOParams = Shader.PropertyToID("_AOParams"); - internal static readonly int AOColor = Shader.PropertyToID("_AOColor"); - internal static readonly int OcclusionTexture1 = Shader.PropertyToID("_OcclusionTexture1"); - internal static readonly int OcclusionTexture2 = Shader.PropertyToID("_OcclusionTexture2"); - internal static readonly int SAOcclusionTexture = Shader.PropertyToID("_SAOcclusionTexture"); - internal static readonly int MSVOcclusionTexture = Shader.PropertyToID("_MSVOcclusionTexture"); - internal static readonly int DepthCopy = Shader.PropertyToID("DepthCopy"); - internal static readonly int LinearDepth = Shader.PropertyToID("LinearDepth"); - internal static readonly int LowDepth1 = Shader.PropertyToID("LowDepth1"); - internal static readonly int LowDepth2 = Shader.PropertyToID("LowDepth2"); - internal static readonly int LowDepth3 = Shader.PropertyToID("LowDepth3"); - internal static readonly int LowDepth4 = Shader.PropertyToID("LowDepth4"); - internal static readonly int TiledDepth1 = Shader.PropertyToID("TiledDepth1"); - internal static readonly int TiledDepth2 = Shader.PropertyToID("TiledDepth2"); - internal static readonly int TiledDepth3 = Shader.PropertyToID("TiledDepth3"); - internal static readonly int TiledDepth4 = Shader.PropertyToID("TiledDepth4"); - internal static readonly int Occlusion1 = Shader.PropertyToID("Occlusion1"); - internal static readonly int Occlusion2 = Shader.PropertyToID("Occlusion2"); - internal static readonly int Occlusion3 = Shader.PropertyToID("Occlusion3"); - internal static readonly int Occlusion4 = Shader.PropertyToID("Occlusion4"); - internal static readonly int Combined1 = Shader.PropertyToID("Combined1"); - internal static readonly int Combined2 = Shader.PropertyToID("Combined2"); - internal static readonly int Combined3 = Shader.PropertyToID("Combined3"); - - internal static readonly int SSRResolveTemp = Shader.PropertyToID("_SSRResolveTemp"); - internal static readonly int Noise = Shader.PropertyToID("_Noise"); - internal static readonly int Test = Shader.PropertyToID("_Test"); - internal static readonly int Resolve = Shader.PropertyToID("_Resolve"); - internal static readonly int History = Shader.PropertyToID("_History"); - internal static readonly int ViewMatrix = Shader.PropertyToID("_ViewMatrix"); - internal static readonly int InverseViewMatrix = Shader.PropertyToID("_InverseViewMatrix"); - internal static readonly int InverseProjectionMatrix = Shader.PropertyToID("_InverseProjectionMatrix"); - internal static readonly int ScreenSpaceProjectionMatrix = Shader.PropertyToID("_ScreenSpaceProjectionMatrix"); - internal static readonly int Params2 = Shader.PropertyToID("_Params2"); - - internal static readonly int FogColor = Shader.PropertyToID("_FogColor"); - internal static readonly int FogParams = Shader.PropertyToID("_FogParams"); - - internal static readonly int VelocityScale = Shader.PropertyToID("_VelocityScale"); - internal static readonly int MaxBlurRadius = Shader.PropertyToID("_MaxBlurRadius"); - internal static readonly int RcpMaxBlurRadius = Shader.PropertyToID("_RcpMaxBlurRadius"); - internal static readonly int VelocityTex = Shader.PropertyToID("_VelocityTex"); - internal static readonly int Tile2RT = Shader.PropertyToID("_Tile2RT"); - internal static readonly int Tile4RT = Shader.PropertyToID("_Tile4RT"); - internal static readonly int Tile8RT = Shader.PropertyToID("_Tile8RT"); - internal static readonly int TileMaxOffs = Shader.PropertyToID("_TileMaxOffs"); - internal static readonly int TileMaxLoop = Shader.PropertyToID("_TileMaxLoop"); - internal static readonly int TileVRT = Shader.PropertyToID("_TileVRT"); - internal static readonly int NeighborMaxTex = Shader.PropertyToID("_NeighborMaxTex"); - internal static readonly int LoopCount = Shader.PropertyToID("_LoopCount"); - - internal static readonly int DepthOfFieldTemp = Shader.PropertyToID("_DepthOfFieldTemp"); - internal static readonly int DepthOfFieldTex = Shader.PropertyToID("_DepthOfFieldTex"); - internal static readonly int Distance = Shader.PropertyToID("_Distance"); - internal static readonly int LensCoeff = Shader.PropertyToID("_LensCoeff"); - internal static readonly int MaxCoC = Shader.PropertyToID("_MaxCoC"); - internal static readonly int RcpMaxCoC = Shader.PropertyToID("_RcpMaxCoC"); - internal static readonly int RcpAspect = Shader.PropertyToID("_RcpAspect"); - internal static readonly int CoCTex = Shader.PropertyToID("_CoCTex"); - internal static readonly int TaaParams = Shader.PropertyToID("_TaaParams"); - - internal static readonly int AutoExposureTex = Shader.PropertyToID("_AutoExposureTex"); - internal static readonly int HistogramBuffer = Shader.PropertyToID("_HistogramBuffer"); - internal static readonly int Params = Shader.PropertyToID("_Params"); - internal static readonly int ScaleOffsetRes = Shader.PropertyToID("_ScaleOffsetRes"); - - internal static readonly int BloomTex = Shader.PropertyToID("_BloomTex"); - internal static readonly int SampleScale = Shader.PropertyToID("_SampleScale"); - internal static readonly int Threshold = Shader.PropertyToID("_Threshold"); - internal static readonly int ColorIntensity = Shader.PropertyToID("_ColorIntensity"); - internal static readonly int Bloom_DirtTex = Shader.PropertyToID("_Bloom_DirtTex"); - internal static readonly int Bloom_Settings = Shader.PropertyToID("_Bloom_Settings"); - internal static readonly int Bloom_Color = Shader.PropertyToID("_Bloom_Color"); - internal static readonly int Bloom_DirtTileOffset = Shader.PropertyToID("_Bloom_DirtTileOffset"); - - internal static readonly int ChromaticAberration_Amount = Shader.PropertyToID("_ChromaticAberration_Amount"); - internal static readonly int ChromaticAberration_SpectralLut = Shader.PropertyToID("_ChromaticAberration_SpectralLut"); - - internal static readonly int Distortion_CenterScale = Shader.PropertyToID("_Distortion_CenterScale"); - internal static readonly int Distortion_Amount = Shader.PropertyToID("_Distortion_Amount"); - - internal static readonly int Lut2D = Shader.PropertyToID("_Lut2D"); - internal static readonly int Lut3D = Shader.PropertyToID("_Lut3D"); - internal static readonly int Lut3D_Params = Shader.PropertyToID("_Lut3D_Params"); - internal static readonly int Lut2D_Params = Shader.PropertyToID("_Lut2D_Params"); - internal static readonly int UserLut2D_Params = Shader.PropertyToID("_UserLut2D_Params"); - internal static readonly int PostExposure = Shader.PropertyToID("_PostExposure"); - internal static readonly int ColorBalance = Shader.PropertyToID("_ColorBalance"); - internal static readonly int ColorFilter = Shader.PropertyToID("_ColorFilter"); - internal static readonly int HueSatCon = Shader.PropertyToID("_HueSatCon"); - internal static readonly int Brightness = Shader.PropertyToID("_Brightness"); - internal static readonly int ChannelMixerRed = Shader.PropertyToID("_ChannelMixerRed"); - internal static readonly int ChannelMixerGreen = Shader.PropertyToID("_ChannelMixerGreen"); - internal static readonly int ChannelMixerBlue = Shader.PropertyToID("_ChannelMixerBlue"); - internal static readonly int Lift = Shader.PropertyToID("_Lift"); - internal static readonly int InvGamma = Shader.PropertyToID("_InvGamma"); - internal static readonly int Gain = Shader.PropertyToID("_Gain"); - internal static readonly int Curves = Shader.PropertyToID("_Curves"); - internal static readonly int CustomToneCurve = Shader.PropertyToID("_CustomToneCurve"); - internal static readonly int ToeSegmentA = Shader.PropertyToID("_ToeSegmentA"); - internal static readonly int ToeSegmentB = Shader.PropertyToID("_ToeSegmentB"); - internal static readonly int MidSegmentA = Shader.PropertyToID("_MidSegmentA"); - internal static readonly int MidSegmentB = Shader.PropertyToID("_MidSegmentB"); - internal static readonly int ShoSegmentA = Shader.PropertyToID("_ShoSegmentA"); - internal static readonly int ShoSegmentB = Shader.PropertyToID("_ShoSegmentB"); - - internal static readonly int Vignette_Color = Shader.PropertyToID("_Vignette_Color"); - internal static readonly int Vignette_Center = Shader.PropertyToID("_Vignette_Center"); - internal static readonly int Vignette_Settings = Shader.PropertyToID("_Vignette_Settings"); - internal static readonly int Vignette_Mask = Shader.PropertyToID("_Vignette_Mask"); - internal static readonly int Vignette_Opacity = Shader.PropertyToID("_Vignette_Opacity"); - internal static readonly int Vignette_Mode = Shader.PropertyToID("_Vignette_Mode"); - - internal static readonly int Grain_Params1 = Shader.PropertyToID("_Grain_Params1"); - internal static readonly int Grain_Params2 = Shader.PropertyToID("_Grain_Params2"); - internal static readonly int GrainTex = Shader.PropertyToID("_GrainTex"); - internal static readonly int Phase = Shader.PropertyToID("_Phase"); - internal static readonly int GrainNoiseParameters = Shader.PropertyToID("_NoiseParameters"); - - internal static readonly int LumaInAlpha = Shader.PropertyToID("_LumaInAlpha"); - - internal static readonly int DitheringTex = Shader.PropertyToID("_DitheringTex"); - internal static readonly int Dithering_Coords = Shader.PropertyToID("_Dithering_Coords"); - - internal static readonly int From = Shader.PropertyToID("_From"); - internal static readonly int To = Shader.PropertyToID("_To"); - internal static readonly int Interp = Shader.PropertyToID("_Interp"); - internal static readonly int TargetColor = Shader.PropertyToID("_TargetColor"); - - internal static readonly int HalfResFinalCopy = Shader.PropertyToID("_HalfResFinalCopy"); - internal static readonly int WaveformSource = Shader.PropertyToID("_WaveformSource"); - internal static readonly int WaveformBuffer = Shader.PropertyToID("_WaveformBuffer"); - internal static readonly int VectorscopeBuffer = Shader.PropertyToID("_VectorscopeBuffer"); - - internal static readonly int RenderViewportScaleFactor = Shader.PropertyToID("_RenderViewportScaleFactor"); - - internal static readonly int UVTransform = Shader.PropertyToID("_UVTransform"); - internal static readonly int DepthSlice = Shader.PropertyToID("_DepthSlice"); - internal static readonly int UVScaleOffset = Shader.PropertyToID("_UVScaleOffset"); - internal static readonly int PosScaleOffset = Shader.PropertyToID("_PosScaleOffset"); - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/ShaderIDs.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/ShaderIDs.cs.meta deleted file mode 100644 index 51297d746..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/ShaderIDs.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: e4026acd2810a474b9be96bbeb80b959 -timeCreated: 1488904676 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/Spline.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/Spline.cs deleted file mode 100644 index 2195044a1..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/Spline.cs +++ /dev/null @@ -1,148 +0,0 @@ -using System; -using UnityEngine.Assertions; - -namespace UnityEngine.Rendering.PostProcessing -{ - /// - /// A wrapper on top of to handle zero-key curves and keyframe - /// loops. - /// - [Serializable] - public sealed class Spline - { - /// - /// Precision of the curve. - /// - public const int k_Precision = 128; - - /// - /// The inverse of the precision of the curve. - /// - public const float k_Step = 1f / k_Precision; - - /// - /// The underlying animation curve instance. - /// - public AnimationCurve curve; - - [SerializeField] - bool m_Loop; - - [SerializeField] - float m_ZeroValue; - - [SerializeField] - float m_Range; - - AnimationCurve m_InternalLoopingCurve; - - // Used to track frame changes for data caching - int frameCount = -1; - - /// - /// An array holding pre-computed curve values. - /// - public float[] cachedData; - - /// - /// Creates a new spline. - /// - /// The animation curve to base this spline off - /// The value to return when the curve has no keyframe - /// Should this curve loop? - /// The curve bounds - public Spline(AnimationCurve curve, float zeroValue, bool loop, Vector2 bounds) - { - Assert.IsNotNull(curve); - this.curve = curve; - m_ZeroValue = zeroValue; - m_Loop = loop; - m_Range = bounds.magnitude; - cachedData = new float[k_Precision]; - } - - /// - /// Caches the curve data at a given frame. The curve data will only be cached once per - /// frame. - /// - /// A frame number - public void Cache(int frame) - { - // Note: it would be nice to have a way to check if a curve has changed in any way, that - // would save quite a few CPU cycles instead of having to force cache it once per frame :/ - - // Only cache once per frame - if (frame == frameCount) - return; - - var length = curve.length; - - if (m_Loop && length > 1) - { - if (m_InternalLoopingCurve == null) - m_InternalLoopingCurve = new AnimationCurve(); - - var prev = curve[length - 1]; - prev.time -= m_Range; - var next = curve[0]; - next.time += m_Range; - m_InternalLoopingCurve.keys = curve.keys; - m_InternalLoopingCurve.AddKey(prev); - m_InternalLoopingCurve.AddKey(next); - } - - for (int i = 0; i < k_Precision; i++) - cachedData[i] = Evaluate((float)i * k_Step, length); - - frameCount = Time.renderedFrameCount; - } - - /// - /// Evaluates the curve at a point in time. - /// - /// The time to evaluate - /// The number of keyframes in the curve - /// The value of the curve at time - public float Evaluate(float t, int length) - { - if (length == 0) - return m_ZeroValue; - - if (!m_Loop || length == 1) - return curve.Evaluate(t); - - return m_InternalLoopingCurve.Evaluate(t); - } - - /// - /// Evaluates the curve at a point in time. - /// - /// The time to evaluate - /// The value of the curve at time - /// - /// Calling the length getter on a curve is expensive to it's better to cache its length and - /// call instead of getting the length for every call. - /// - public float Evaluate(float t) - { - // Calling the length getter on a curve is expensive (!?) so it's better to cache its - // length and call Evaluate(t, length) instead of getting the length for every call to - // Evaluate(t) - return Evaluate(t, curve.length); - } - - /// - /// Returns the computed hash code for this parameter. - /// - /// A computed hash code - public override int GetHashCode() - { - unchecked - { - int hash = 17; - hash = hash * 23 + curve.GetHashCode(); // Not implemented in Unity, so it'll always return the same value :( - return hash; - } - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/Spline.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/Spline.cs.meta deleted file mode 100644 index ca5720bb3..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/Spline.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: c687cf9a3e8607a4b991e6d445a2f9bf -timeCreated: 1493978176 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/TargetPool.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/TargetPool.cs deleted file mode 100644 index cf7234232..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/TargetPool.cs +++ /dev/null @@ -1,48 +0,0 @@ -using System.Collections.Generic; - -namespace UnityEngine.Rendering.PostProcessing -{ - class TargetPool - { - readonly List m_Pool; - int m_Current; - - internal TargetPool() - { - m_Pool = new List(); - Get(); // Pre-warm with a default target to avoid black frame on first frame - } - - internal int Get() - { - int ret = Get(m_Current); - m_Current++; - return ret; - } - - int Get(int i) - { - int ret; - - if (m_Pool.Count > i) - { - ret = m_Pool[i]; - } - else - { - // Avoid discontinuities - while (m_Pool.Count <= i) - m_Pool.Add(Shader.PropertyToID("_TargetPool" + i)); - - ret = m_Pool[i]; - } - - return ret; - } - - internal void Reset() - { - m_Current = 0; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/TargetPool.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/TargetPool.cs.meta deleted file mode 100644 index 994555ecc..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/TargetPool.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 3ae5839b763bada47af0cca23c360452 -timeCreated: 1495121926 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/TextureFormatUtilities.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/TextureFormatUtilities.cs deleted file mode 100644 index fc92663d6..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/TextureFormatUtilities.cs +++ /dev/null @@ -1,173 +0,0 @@ -using System; -using System.Collections.Generic; -using UnityEngine.Assertions; - -namespace UnityEngine.Rendering.PostProcessing -{ - // Temporary code dump until the texture format refactor goes into trunk... - - /// - /// A set of utilities to deal with texture formats. - /// - public static class TextureFormatUtilities - { - static Dictionary s_FormatAliasMap; - static Dictionary s_SupportedRenderTextureFormats; - static Dictionary s_SupportedTextureFormats; - - static TextureFormatUtilities() - { - s_FormatAliasMap = new Dictionary - { - { (int)TextureFormat.Alpha8, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.ARGB4444, RenderTextureFormat.ARGB4444 }, - { (int)TextureFormat.RGB24, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.RGBA32, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.ARGB32, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.RGB565, RenderTextureFormat.RGB565 }, - { (int)TextureFormat.R16, RenderTextureFormat.RHalf }, - { (int)TextureFormat.DXT1, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.DXT5, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.RGBA4444, RenderTextureFormat.ARGB4444 }, - { (int)TextureFormat.BGRA32, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.RHalf, RenderTextureFormat.RHalf }, - { (int)TextureFormat.RGHalf, RenderTextureFormat.RGHalf }, - { (int)TextureFormat.RGBAHalf, RenderTextureFormat.ARGBHalf }, - { (int)TextureFormat.RFloat, RenderTextureFormat.RFloat }, - { (int)TextureFormat.RGFloat, RenderTextureFormat.RGFloat }, - { (int)TextureFormat.RGBAFloat, RenderTextureFormat.ARGBFloat }, - { (int)TextureFormat.RGB9e5Float, RenderTextureFormat.ARGBHalf }, - { (int)TextureFormat.BC4, RenderTextureFormat.R8 }, - { (int)TextureFormat.BC5, RenderTextureFormat.RGHalf }, - { (int)TextureFormat.BC6H, RenderTextureFormat.ARGBHalf }, - { (int)TextureFormat.BC7, RenderTextureFormat.ARGB32 }, - #if !UNITY_IOS && !UNITY_TVOS - { (int)TextureFormat.DXT1Crunched, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.DXT5Crunched, RenderTextureFormat.ARGB32 }, - #endif - { (int)TextureFormat.PVRTC_RGB2, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.PVRTC_RGBA2, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.PVRTC_RGB4, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.PVRTC_RGBA4, RenderTextureFormat.ARGB32 }, - #if !UNITY_2018_1_OR_NEWER - { (int)TextureFormat.ATC_RGB4, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.ATC_RGBA8, RenderTextureFormat.ARGB32 }, - #endif - { (int)TextureFormat.ETC_RGB4, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.ETC2_RGB, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.ETC2_RGBA1, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.ETC2_RGBA8, RenderTextureFormat.ARGB32 }, - #if UNITY_2019_1_OR_NEWER - { (int)TextureFormat.ASTC_4x4, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.ASTC_5x5, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.ASTC_6x6, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.ASTC_8x8, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.ASTC_10x10, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.ASTC_12x12, RenderTextureFormat.ARGB32 }, - #else - { (int)TextureFormat.ASTC_RGB_4x4, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.ASTC_RGB_5x5, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.ASTC_RGB_6x6, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.ASTC_RGB_8x8, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.ASTC_RGB_10x10, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.ASTC_RGB_12x12, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.ASTC_RGBA_4x4, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.ASTC_RGBA_5x5, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.ASTC_RGBA_6x6, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.ASTC_RGBA_8x8, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.ASTC_RGBA_10x10, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.ASTC_RGBA_12x12, RenderTextureFormat.ARGB32 }, - #endif - #if !UNITY_2018_3_OR_NEWER - { (int)TextureFormat.ETC_RGB4_3DS, RenderTextureFormat.ARGB32 }, - { (int)TextureFormat.ETC_RGBA8_3DS, RenderTextureFormat.ARGB32 } - #endif - }; - - // TODO: refactor the next two scopes in a generic function once we have support for enum constraints on generics - // In 2018.1 SystemInfo.SupportsRenderTextureFormat() generates garbage so we need to - // cache its calls to avoid that... - { - s_SupportedRenderTextureFormats = new Dictionary(); - var values = Enum.GetValues(typeof(RenderTextureFormat)); - - foreach (var format in values) - { - if ((int)format < 0) // Safe guard, negative values are deprecated stuff - continue; - - if (IsObsolete(format)) - continue; - - bool supported = SystemInfo.SupportsRenderTextureFormat((RenderTextureFormat)format); - s_SupportedRenderTextureFormats[(int)format] = supported; - } - } - - // Same for TextureFormat - { - s_SupportedTextureFormats = new Dictionary(); - var values = Enum.GetValues(typeof(TextureFormat)); - - foreach (var format in values) - { - if ((int)format < 0) // Crashes the runtime otherwise (!) - continue; - - if (IsObsolete(format)) - continue; - - bool supported = SystemInfo.SupportsTextureFormat((TextureFormat)format); - s_SupportedTextureFormats[(int)format] = supported; - } - } - } - - static bool IsObsolete(object value) - { - var fieldInfo = value.GetType().GetField(value.ToString()); - var attributes = (ObsoleteAttribute[])fieldInfo.GetCustomAttributes(typeof(ObsoleteAttribute), false); - return attributes != null && attributes.Length > 0; - } - - /// - /// Returns a compatible with the given texture's format. - /// - /// A texture to get a compatible format from - /// A compatible render texture format - public static RenderTextureFormat GetUncompressedRenderTextureFormat(Texture texture) - { - Assert.IsNotNull(texture); - - if (texture is RenderTexture) - return (texture as RenderTexture).format; - - if (texture is Texture2D) - { - var inFormat = ((Texture2D)texture).format; - RenderTextureFormat outFormat; - - if (!s_FormatAliasMap.TryGetValue((int)inFormat, out outFormat)) - throw new NotSupportedException("Texture format not supported"); - - return outFormat; - } - - return RenderTextureFormat.Default; - } - - internal static bool IsSupported(this RenderTextureFormat format) - { - bool supported; - s_SupportedRenderTextureFormats.TryGetValue((int)format, out supported); - return supported; - } - - internal static bool IsSupported(this TextureFormat format) - { - bool supported; - s_SupportedTextureFormats.TryGetValue((int)format, out supported); - return supported; - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/TextureFormatUtilities.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/TextureFormatUtilities.cs.meta deleted file mode 100644 index cd71444b0..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/TextureFormatUtilities.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: f8baf5b99881c054d90afcd1dffd11eb -timeCreated: 1493127411 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/TextureLerper.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/TextureLerper.cs deleted file mode 100644 index cf3a5b7de..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/TextureLerper.cs +++ /dev/null @@ -1,230 +0,0 @@ -using System.Collections.Generic; -using UnityEngine.Assertions; - -namespace UnityEngine.Rendering.PostProcessing -{ - class TextureLerper - { - static TextureLerper m_Instance; - internal static TextureLerper instance - { - get - { - if (m_Instance == null) - m_Instance = new TextureLerper(); - - return m_Instance; - } - } - - CommandBuffer m_Command; - PropertySheetFactory m_PropertySheets; - PostProcessResources m_Resources; - - List m_Recycled; - List m_Actives; - - TextureLerper() - { - m_Recycled = new List(); - m_Actives = new List(); - } - - internal void BeginFrame(PostProcessRenderContext context) - { - m_Command = context.command; - m_PropertySheets = context.propertySheets; - m_Resources = context.resources; - } - - internal void EndFrame() - { - // Release any remaining RT in the recycled list - if (m_Recycled.Count > 0) - { - foreach (var rt in m_Recycled) - RuntimeUtilities.Destroy(rt); - - m_Recycled.Clear(); - } - - // There's a high probability that RTs will be requested in the same order on next - // frame so keep them in the same order - if (m_Actives.Count > 0) - { - foreach (var rt in m_Actives) - m_Recycled.Add(rt); - - m_Actives.Clear(); - } - } - - RenderTexture Get(RenderTextureFormat format, int w, int h, int d = 1, bool enableRandomWrite = false, bool force3D = false) - { - RenderTexture rt = null; - int i, len = m_Recycled.Count; - - for (i = 0; i < len; i++) - { - var r = m_Recycled[i]; - if (r.width == w && r.height == h && r.volumeDepth == d && r.format == format && r.enableRandomWrite == enableRandomWrite && (!force3D || (r.dimension == TextureDimension.Tex3D))) - { - rt = r; - break; - } - } - - if (rt == null) - { - var dimension = (d > 1) || force3D - ? TextureDimension.Tex3D - : TextureDimension.Tex2D; - - rt = new RenderTexture(w, h, 0, format) - { - dimension = dimension, - filterMode = FilterMode.Bilinear, - wrapMode = TextureWrapMode.Clamp, - anisoLevel = 0, - volumeDepth = d, - enableRandomWrite = enableRandomWrite - }; - rt.Create(); - } - else m_Recycled.RemoveAt(i); - - m_Actives.Add(rt); - return rt; - } - - internal Texture Lerp(Texture from, Texture to, float t) - { - Assert.IsNotNull(from); - Assert.IsNotNull(to); - Assert.AreEqual(from.width, to.width); - Assert.AreEqual(from.height, to.height); - - // Saves a potentially expensive fullscreen blit when using dirt textures & the likes - if (from == to) - return from; - - // Don't need to lerp boundary conditions - if (t <= 0f) return from; - if (t >= 1f) return to; - - bool is3D = from is Texture3D - || (from is RenderTexture && ((RenderTexture)from).volumeDepth > 1); - - RenderTexture rt; - - // 3D texture blending is a special case and only works on compute enabled platforms - if (is3D) - { - int dpth = @from is Texture3D ? ((Texture3D) @from).depth : ((RenderTexture) @from).volumeDepth; - int size = Mathf.Max(from.width, from.height); - size = Mathf.Max(size, dpth); - - rt = Get(RenderTextureFormat.ARGBHalf, from.width, from.height, dpth, true, true); - - var compute = m_Resources.computeShaders.texture3dLerp; - int kernel = compute.FindKernel("KTexture3DLerp"); - m_Command.SetComputeVectorParam(compute, "_DimensionsAndLerp", new Vector4(from.width, from.height, dpth, t)); - m_Command.SetComputeTextureParam(compute, kernel, "_Output", rt); - m_Command.SetComputeTextureParam(compute, kernel, "_From", from); - m_Command.SetComputeTextureParam(compute, kernel, "_To", to); - - uint tgsX, tgsY, tgsZ; - compute.GetKernelThreadGroupSizes(kernel, out tgsX, out tgsY, out tgsZ); - Assert.AreEqual(tgsX, tgsY); - int groupSizeXY = Mathf.CeilToInt(size / (float)tgsX); - int groupSizeZ = Mathf.CeilToInt(size / (float)tgsZ); - - m_Command.DispatchCompute(compute, kernel, groupSizeXY, groupSizeXY, groupSizeZ); - return rt; - } - - // 2D texture blending - // We could handle textures with different sizes by picking the biggest one to avoid - // popping effects. This would work in most cases but will still pop if one texture is - // wider but shorter than the other. Generally speaking you're expected to use same-size - // textures anyway so we decided not to handle this case at the moment, especially since - // it would waste a lot of texture memory as soon as you start using bigger textures - // (snow ball effect). - var format = TextureFormatUtilities.GetUncompressedRenderTextureFormat(to); - rt = Get(format, to.width, to.height); - - var sheet = m_PropertySheets.Get(m_Resources.shaders.texture2dLerp); - sheet.properties.SetTexture(ShaderIDs.To, to); - sheet.properties.SetFloat(ShaderIDs.Interp, t); - - m_Command.BlitFullscreenTriangle(from, rt, sheet, 0); - - return rt; - } - - internal Texture Lerp(Texture from, Color to, float t) - { - Assert.IsNotNull(from); - - if (t < 0.00001) - return from; - - bool is3D = from is Texture3D - || (from is RenderTexture && ((RenderTexture)from).volumeDepth > 1); - - RenderTexture rt; - - // 3D texture blending is a special case and only works on compute enabled platforms - if (is3D) - { - int dpth = @from is Texture3D ? ((Texture3D) @from).depth : ((RenderTexture) @from).volumeDepth; - int size = Mathf.Max(from.width, from.height); - size = Mathf.Max(size, dpth); - - rt = Get(RenderTextureFormat.ARGBHalf, from.width, from.height, dpth, true, true); - - var compute = m_Resources.computeShaders.texture3dLerp; - int kernel = compute.FindKernel("KTexture3DLerpToColor"); - m_Command.SetComputeVectorParam(compute, "_DimensionsAndLerp", new Vector4(from.width, from.height, dpth, t)); - m_Command.SetComputeVectorParam(compute, "_TargetColor", new Vector4(to.r, to.g, to.b, to.a)); - m_Command.SetComputeTextureParam(compute, kernel, "_Output", rt); - m_Command.SetComputeTextureParam(compute, kernel, "_From", from); - - int groupSize = Mathf.CeilToInt(size / 4f); - m_Command.DispatchCompute(compute, kernel, groupSize, groupSize, groupSize); - return rt; - } - - // 2D texture blending - // We could handle textures with different sizes by picking the biggest one to avoid - // popping effects. This would work in most cases but will still pop if one texture is - // wider but shorter than the other. Generally speaking you're expected to use same-size - // textures anyway so we decided not to handle this case at the moment, especially since - // it would waste a lot of texture memory as soon as you start using bigger textures - // (snow ball effect). - var format = TextureFormatUtilities.GetUncompressedRenderTextureFormat(from); - rt = Get(format, from.width, from.height); - - var sheet = m_PropertySheets.Get(m_Resources.shaders.texture2dLerp); - sheet.properties.SetVector(ShaderIDs.TargetColor, new Vector4(to.r, to.g, to.b, to.a)); - sheet.properties.SetFloat(ShaderIDs.Interp, t); - - m_Command.BlitFullscreenTriangle(from, rt, sheet, 1); - - return rt; - } - - - internal void Clear() - { - foreach (var rt in m_Actives) - RuntimeUtilities.Destroy(rt); - - foreach (var rt in m_Recycled) - RuntimeUtilities.Destroy(rt); - - m_Actives.Clear(); - m_Recycled.Clear(); - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/TextureLerper.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/TextureLerper.cs.meta deleted file mode 100644 index 3ee298c1c..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/TextureLerper.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: f85e8d04208ed5145a521dd27d174830 -timeCreated: 1496844853 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/XRSettings.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/XRSettings.cs deleted file mode 100644 index 2f811e6b1..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/XRSettings.cs +++ /dev/null @@ -1,35 +0,0 @@ -// Small shim for VRSettings/XRSettings on XboxOne, Switch and PS Vita -#if ((UNITY_XBOXONE || UNITY_SWITCH || UNITY_PSP2) && !UNITY_2018_3_OR_NEWER) && !UNITY_EDITOR -using System; - -#if UNITY_2017_2_OR_NEWER -namespace UnityEngine.XR -#else -namespace UnityEngine.VR -#endif -{ -#if UNITY_2017_2_OR_NEWER - public static class XRSettings -#elif UNITY_5_6_OR_NEWER - public static class VRSettings -#endif - { - public static bool enabled { get; set; } - public static bool isDeviceActive { get; private set; } - public static bool showDeviceView { get; set; } - [Obsolete("renderScale is deprecated, use XRSettings.eyeTextureResolutionScale instead (UnityUpgradable) -> eyeTextureResolutionScale")] - public static float renderScale { get; set; } - public static float eyeTextureResolutionScale { get; set; } - public static int eyeTextureWidth { get; private set; } - public static int eyeTextureHeight { get; private set; } - public static RenderTextureDescriptor eyeTextureDesc { get; private set; } - public static float renderViewportScale { get; set; } - public static float occlusionMaskScale { get; set; } - public static bool useOcclusionMesh { get; set; } - public static string loadedDeviceName { get; private set; } - public static string[] supportedDevices { get; private set; } - public static void LoadDeviceByName(string deviceName) { } - public static void LoadDeviceByName(string[] prioritizedDeviceNameList) { } - } -} -#endif diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/XRSettings.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/XRSettings.cs.meta deleted file mode 100644 index 350516170..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Runtime/Utils/XRSettings.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: c387aa7210e2f324b85febd7211d6c9f -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders.meta deleted file mode 100644 index 95e67ba4b..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 660a3ee04f28e0a4a97dc5831c5a1de3 -folderAsset: yes -timeCreated: 1488806877 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/ACES.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/ACES.hlsl deleted file mode 100644 index 9f77efeab..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/ACES.hlsl +++ /dev/null @@ -1,1309 +0,0 @@ -#ifndef __ACES__ -#define __ACES__ - -/** - * https://github.com/ampas/aces-dev - * - * Academy Color Encoding System (ACES) software and tools are provided by the - * Academy under the following terms and conditions: A worldwide, royalty-free, - * non-exclusive right to copy, modify, create derivatives, and use, in source and - * binary forms, is hereby granted, subject to acceptance of this license. - * - * Copyright 2015 Academy of Motion Picture Arts and Sciences (A.M.P.A.S.). - * Portions contributed by others as indicated. All rights reserved. - * - * Performance of any of the aforementioned acts indicates acceptance to be bound - * by the following terms and conditions: - * - * * Copies of source code, in whole or in part, must retain the above copyright - * notice, this list of conditions and the Disclaimer of Warranty. - * - * * Use in binary form must retain the above copyright notice, this list of - * conditions and the Disclaimer of Warranty in the documentation and/or other - * materials provided with the distribution. - * - * * Nothing in this license shall be deemed to grant any rights to trademarks, - * copyrights, patents, trade secrets or any other intellectual property of - * A.M.P.A.S. or any contributors, except as expressly stated herein. - * - * * Neither the name "A.M.P.A.S." nor the name of any other contributors to this - * software may be used to endorse or promote products derivative of or based on - * this software without express prior written permission of A.M.P.A.S. or the - * contributors, as appropriate. - * - * This license shall be construed pursuant to the laws of the State of - * California, and any disputes related thereto shall be subject to the - * jurisdiction of the courts therein. - * - * Disclaimer of Warranty: THIS SOFTWARE IS PROVIDED BY A.M.P.A.S. AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, - * THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND - * NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL A.M.P.A.S., OR ANY - * CONTRIBUTORS OR DISTRIBUTORS, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, RESITUTIONARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE - * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF - * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * WITHOUT LIMITING THE GENERALITY OF THE FOREGOING, THE ACADEMY SPECIFICALLY - * DISCLAIMS ANY REPRESENTATIONS OR WARRANTIES WHATSOEVER RELATED TO PATENT OR - * OTHER INTELLECTUAL PROPERTY RIGHTS IN THE ACADEMY COLOR ENCODING SYSTEM, OR - * APPLICATIONS THEREOF, HELD BY PARTIES OTHER THAN A.M.P.A.S.,WHETHER DISCLOSED OR - * UNDISCLOSED. - */ - -#include "StdLib.hlsl" - -#define ACEScc_MAX 1.4679964 -#define ACEScc_MIDGRAY 0.4135884 - -// -// Precomputed matrices (pre-transposed) -// See https://github.com/ampas/aces-dev/blob/master/transforms/ctl/README-MATRIX.md -// -static const half3x3 sRGB_2_AP0 = { - 0.4397010, 0.3829780, 0.1773350, - 0.0897923, 0.8134230, 0.0967616, - 0.0175440, 0.1115440, 0.8707040 -}; - -static const half3x3 sRGB_2_AP1 = { - 0.61319, 0.33951, 0.04737, - 0.07021, 0.91634, 0.01345, - 0.02062, 0.10957, 0.86961 -}; - -static const half3x3 AP0_2_sRGB = { - 2.52169, -1.13413, -0.38756, - -0.27648, 1.37272, -0.09624, - -0.01538, -0.15298, 1.16835, -}; - -static const half3x3 AP1_2_sRGB = { - 1.70505, -0.62179, -0.08326, - -0.13026, 1.14080, -0.01055, - -0.02400, -0.12897, 1.15297, -}; - -static const half3x3 AP0_2_AP1_MAT = { - 1.4514393161, -0.2365107469, -0.2149285693, - -0.0765537734, 1.1762296998, -0.0996759264, - 0.0083161484, -0.0060324498, 0.9977163014 -}; - -static const half3x3 AP1_2_AP0_MAT = { - 0.6954522414, 0.1406786965, 0.1638690622, - 0.0447945634, 0.8596711185, 0.0955343182, - -0.0055258826, 0.0040252103, 1.0015006723 -}; - -static const half3x3 AP1_2_XYZ_MAT = { - 0.6624541811, 0.1340042065, 0.1561876870, - 0.2722287168, 0.6740817658, 0.0536895174, - -0.0055746495, 0.0040607335, 1.0103391003 -}; - -static const half3x3 XYZ_2_AP1_MAT = { - 1.6410233797, -0.3248032942, -0.2364246952, - -0.6636628587, 1.6153315917, 0.0167563477, - 0.0117218943, -0.0082844420, 0.9883948585 -}; - -static const half3x3 XYZ_2_REC709_MAT = { - 3.2409699419, -1.5373831776, -0.4986107603, - -0.9692436363, 1.8759675015, 0.0415550574, - 0.0556300797, -0.2039769589, 1.0569715142 -}; - -static const half3x3 XYZ_2_REC2020_MAT = { - 1.7166511880, -0.3556707838, -0.2533662814, - -0.6666843518, 1.6164812366, 0.0157685458, - 0.0176398574, -0.0427706133, 0.9421031212 -}; - -static const half3x3 XYZ_2_DCIP3_MAT = { - 2.7253940305, -1.0180030062, -0.4401631952, - -0.7951680258, 1.6897320548, 0.0226471906, - 0.0412418914, -0.0876390192, 1.1009293786 -}; - -static const half3 AP1_RGB2Y = half3(0.272229, 0.674082, 0.0536895); - -static const half3x3 RRT_SAT_MAT = { - 0.9708890, 0.0269633, 0.00214758, - 0.0108892, 0.9869630, 0.00214758, - 0.0108892, 0.0269633, 0.96214800 -}; - -static const half3x3 ODT_SAT_MAT = { - 0.949056, 0.0471857, 0.00375827, - 0.019056, 0.9771860, 0.00375827, - 0.019056, 0.0471857, 0.93375800 -}; - -static const half3x3 D60_2_D65_CAT = { - 0.98722400, -0.00611327, 0.0159533, - -0.00759836, 1.00186000, 0.0053302, - 0.00307257, -0.00509595, 1.0816800 -}; - -// -// Unity to ACES -// -// converts Unity raw (sRGB primaries) to -// ACES2065-1 (AP0 w/ linear encoding) -// -half3 unity_to_ACES(half3 x) -{ - x = mul(sRGB_2_AP0, x); - return x; -} - -// -// ACES to Unity -// -// converts ACES2065-1 (AP0 w/ linear encoding) -// Unity raw (sRGB primaries) to -// -half3 ACES_to_unity(half3 x) -{ - x = mul(AP0_2_sRGB, x); - return x; -} - -// -// Unity to ACEScg -// -// converts Unity raw (sRGB primaries) to -// ACEScg (AP1 w/ linear encoding) -// -half3 unity_to_ACEScg(half3 x) -{ - x = mul(sRGB_2_AP1, x); - return x; -} - -// -// ACEScg to Unity -// -// converts ACEScg (AP1 w/ linear encoding) to -// Unity raw (sRGB primaries) -// -half3 ACEScg_to_unity(half3 x) -{ - x = mul(AP1_2_sRGB, x); - return x; -} - -// -// ACES Color Space Conversion - ACES to ACEScc -// -// converts ACES2065-1 (AP0 w/ linear encoding) to -// ACEScc (AP1 w/ logarithmic encoding) -// -// This transform follows the formulas from section 4.4 in S-2014-003 -// -half ACES_to_ACEScc(half x) -{ - if (x <= 0.0) - return -0.35828683; // = (log2(pow(2.0, -15.0) * 0.5) + 9.72) / 17.52 - else if (x < pow(2.0, -15.0)) - return (log2(pow(2.0, -16.0) + x * 0.5) + 9.72) / 17.52; - else // (x >= pow(2.0, -15.0)) - return (log2(x) + 9.72) / 17.52; -} - -half3 ACES_to_ACEScc(half3 x) -{ - x = clamp(x, 0.0, HALF_MAX); - - // x is clamped to [0, HALF_MAX], skip the <= 0 check - return (x < 0.00003051757) ? (log2(0.00001525878 + x * 0.5) + 9.72) / 17.52 : (log2(x) + 9.72) / 17.52; - - /* - return half3( - ACES_to_ACEScc(x.r), - ACES_to_ACEScc(x.g), - ACES_to_ACEScc(x.b) - ); - */ -} - -// -// ACES Color Space Conversion - ACEScc to ACES -// -// converts ACEScc (AP1 w/ ACESlog encoding) to -// ACES2065-1 (AP0 w/ linear encoding) -// -// This transform follows the formulas from section 4.4 in S-2014-003 -// -half ACEScc_to_ACES(half x) -{ - // TODO: Optimize me - if (x < -0.3013698630) // (9.72 - 15) / 17.52 - return (pow(2.0, x * 17.52 - 9.72) - pow(2.0, -16.0)) * 2.0; - else if (x < (log2(HALF_MAX) + 9.72) / 17.52) - return pow(2.0, x * 17.52 - 9.72); - else // (x >= (log2(HALF_MAX) + 9.72) / 17.52) - return HALF_MAX; -} - -half3 ACEScc_to_ACES(half3 x) -{ - return half3( - ACEScc_to_ACES(x.r), - ACEScc_to_ACES(x.g), - ACEScc_to_ACES(x.b) - ); -} - -// -// ACES Color Space Conversion - ACES to ACEScg -// -// converts ACES2065-1 (AP0 w/ linear encoding) to -// ACEScg (AP1 w/ linear encoding) -// -half3 ACES_to_ACEScg(half3 x) -{ - return mul(AP0_2_AP1_MAT, x); -} - -// -// ACES Color Space Conversion - ACEScg to ACES -// -// converts ACEScg (AP1 w/ linear encoding) to -// ACES2065-1 (AP0 w/ linear encoding) -// -half3 ACEScg_to_ACES(half3 x) -{ - return mul(AP1_2_AP0_MAT, x); -} - -// -// Reference Rendering Transform (RRT) -// -// Input is ACES -// Output is OCES -// -half rgb_2_saturation(half3 rgb) -{ - const half TINY = 1e-4; - half mi = Min3(rgb.r, rgb.g, rgb.b); - half ma = Max3(rgb.r, rgb.g, rgb.b); - return (max(ma, TINY) - max(mi, TINY)) / max(ma, 1e-2); -} - -half rgb_2_yc(half3 rgb) -{ - const half ycRadiusWeight = 1.75; - - // Converts RGB to a luminance proxy, here called YC - // YC is ~ Y + K * Chroma - // Constant YC is a cone-shaped surface in RGB space, with the tip on the - // neutral axis, towards white. - // YC is normalized: RGB 1 1 1 maps to YC = 1 - // - // ycRadiusWeight defaults to 1.75, although can be overridden in function - // call to rgb_2_yc - // ycRadiusWeight = 1 -> YC for pure cyan, magenta, yellow == YC for neutral - // of same value - // ycRadiusWeight = 2 -> YC for pure red, green, blue == YC for neutral of - // same value. - - half r = rgb.x; - half g = rgb.y; - half b = rgb.z; - half chroma = sqrt(b * (b - g) + g * (g - r) + r * (r - b)); - return (b + g + r + ycRadiusWeight * chroma) / 3.0; -} - -half rgb_2_hue(half3 rgb) -{ - // Returns a geometric hue angle in degrees (0-360) based on RGB values. - // For neutral colors, hue is undefined and the function will return a quiet NaN value. - half hue; - if (rgb.x == rgb.y && rgb.y == rgb.z) - hue = 0.0; // RGB triplets where RGB are equal have an undefined hue - else - hue = (180.0 / PI) * atan2(sqrt(3.0) * (rgb.y - rgb.z), 2.0 * rgb.x - rgb.y - rgb.z); - - if (hue < 0.0) hue = hue + 360.0; - - return hue; -} - -half center_hue(half hue, half centerH) -{ - half hueCentered = hue - centerH; - if (hueCentered < -180.0) hueCentered = hueCentered + 360.0; - else if (hueCentered > 180.0) hueCentered = hueCentered - 360.0; - return hueCentered; -} - -half sigmoid_shaper(half x) -{ - // Sigmoid function in the range 0 to 1 spanning -2 to +2. - - half t = max(1.0 - abs(x / 2.0), 0.0); - half y = 1.0 + FastSign(x) * (1.0 - t * t); - - return y / 2.0; -} - -half glow_fwd(half ycIn, half glowGainIn, half glowMid) -{ - half glowGainOut; - - if (ycIn <= 2.0 / 3.0 * glowMid) - glowGainOut = glowGainIn; - else if (ycIn >= 2.0 * glowMid) - glowGainOut = 0.0; - else - glowGainOut = glowGainIn * (glowMid / ycIn - 1.0 / 2.0); - - return glowGainOut; -} - -/* -half cubic_basis_shaper -( - half x, - half w // full base width of the shaper function (in degrees) -) -{ - half M[4][4] = { - { -1.0 / 6, 3.0 / 6, -3.0 / 6, 1.0 / 6 }, - { 3.0 / 6, -6.0 / 6, 3.0 / 6, 0.0 / 6 }, - { -3.0 / 6, 0.0 / 6, 3.0 / 6, 0.0 / 6 }, - { 1.0 / 6, 4.0 / 6, 1.0 / 6, 0.0 / 6 } - }; - - half knots[5] = { - -w / 2.0, - -w / 4.0, - 0.0, - w / 4.0, - w / 2.0 - }; - - half y = 0.0; - if ((x > knots[0]) && (x < knots[4])) - { - half knot_coord = (x - knots[0]) * 4.0 / w; - int j = knot_coord; - half t = knot_coord - j; - - half monomials[4] = { t*t*t, t*t, t, 1.0 }; - - // (if/else structure required for compatibility with CTL < v1.5.) - if (j == 3) - { - y = monomials[0] * M[0][0] + monomials[1] * M[1][0] + - monomials[2] * M[2][0] + monomials[3] * M[3][0]; - } - else if (j == 2) - { - y = monomials[0] * M[0][1] + monomials[1] * M[1][1] + - monomials[2] * M[2][1] + monomials[3] * M[3][1]; - } - else if (j == 1) - { - y = monomials[0] * M[0][2] + monomials[1] * M[1][2] + - monomials[2] * M[2][2] + monomials[3] * M[3][2]; - } - else if (j == 0) - { - y = monomials[0] * M[0][3] + monomials[1] * M[1][3] + - monomials[2] * M[2][3] + monomials[3] * M[3][3]; - } - else - { - y = 0.0; - } - } - - return y * 3.0 / 2.0; -} -*/ - -static const half3x3 M = { - 0.5, -1.0, 0.5, - -1.0, 1.0, 0.0, - 0.5, 0.5, 0.0 -}; - -half segmented_spline_c5_fwd(half x) -{ - const half coefsLow[6] = { -4.0000000000, -4.0000000000, -3.1573765773, -0.4852499958, 1.8477324706, 1.8477324706 }; // coefs for B-spline between minPoint and midPoint (units of log luminance) - const half coefsHigh[6] = { -0.7185482425, 2.0810307172, 3.6681241237, 4.0000000000, 4.0000000000, 4.0000000000 }; // coefs for B-spline between midPoint and maxPoint (units of log luminance) - const half2 minPoint = half2(0.18 * exp2(-15.0), 0.0001); // {luminance, luminance} linear extension below this - const half2 midPoint = half2(0.18, 0.48); // {luminance, luminance} - const half2 maxPoint = half2(0.18 * exp2(18.0), 10000.0); // {luminance, luminance} linear extension above this - const half slopeLow = 0.0; // log-log slope of low linear extension - const half slopeHigh = 0.0; // log-log slope of high linear extension - - const int N_KNOTS_LOW = 4; - const int N_KNOTS_HIGH = 4; - - // Check for negatives or zero before taking the log. If negative or zero, - // set to ACESMIN.1 - float xCheck = x; - if (xCheck <= 0.0) xCheck = 0.00006103515; // = pow(2.0, -14.0); - - half logx = log10(xCheck); - half logy; - - if (logx <= log10(minPoint.x)) - { - logy = logx * slopeLow + (log10(minPoint.y) - slopeLow * log10(minPoint.x)); - } - else if ((logx > log10(minPoint.x)) && (logx < log10(midPoint.x))) - { - half knot_coord = (N_KNOTS_LOW - 1) * (logx - log10(minPoint.x)) / (log10(midPoint.x) - log10(minPoint.x)); - int j = knot_coord; - half t = knot_coord - j; - - half3 cf = half3(coefsLow[j], coefsLow[j + 1], coefsLow[j + 2]); - half3 monomials = half3(t * t, t, 1.0); - logy = dot(monomials, mul(M, cf)); - } - else if ((logx >= log10(midPoint.x)) && (logx < log10(maxPoint.x))) - { - half knot_coord = (N_KNOTS_HIGH - 1) * (logx - log10(midPoint.x)) / (log10(maxPoint.x) - log10(midPoint.x)); - int j = knot_coord; - half t = knot_coord - j; - - half3 cf = half3(coefsHigh[j], coefsHigh[j + 1], coefsHigh[j + 2]); - half3 monomials = half3(t * t, t, 1.0); - logy = dot(monomials, mul(M, cf)); - } - else - { //if (logIn >= log10(maxPoint.x)) { - logy = logx * slopeHigh + (log10(maxPoint.y) - slopeHigh * log10(maxPoint.x)); - } - - return pow(10.0, logy); -} - -half segmented_spline_c9_fwd(half x) -{ - const half coefsLow[10] = { -1.6989700043, -1.6989700043, -1.4779000000, -1.2291000000, -0.8648000000, -0.4480000000, 0.0051800000, 0.4511080334, 0.9113744414, 0.9113744414 }; // coefs for B-spline between minPoint and midPoint (units of log luminance) - const half coefsHigh[10] = { 0.5154386965, 0.8470437783, 1.1358000000, 1.3802000000, 1.5197000000, 1.5985000000, 1.6467000000, 1.6746091357, 1.6878733390, 1.6878733390 }; // coefs for B-spline between midPoint and maxPoint (units of log luminance) - const half2 minPoint = half2(segmented_spline_c5_fwd(0.18 * exp2(-6.5)), 0.02); // {luminance, luminance} linear extension below this - const half2 midPoint = half2(segmented_spline_c5_fwd(0.18), 4.8); // {luminance, luminance} - const half2 maxPoint = half2(segmented_spline_c5_fwd(0.18 * exp2(6.5)), 48.0); // {luminance, luminance} linear extension above this - const half slopeLow = 0.0; // log-log slope of low linear extension - const half slopeHigh = 0.04; // log-log slope of high linear extension - - const int N_KNOTS_LOW = 8; - const int N_KNOTS_HIGH = 8; - - // Check for negatives or zero before taking the log. If negative or zero, - // set to OCESMIN. - half xCheck = x; - if (xCheck <= 0.0) xCheck = 1e-4; - - half logx = log10(xCheck); - half logy; - - if (logx <= log10(minPoint.x)) - { - logy = logx * slopeLow + (log10(minPoint.y) - slopeLow * log10(minPoint.x)); - } - else if ((logx > log10(minPoint.x)) && (logx < log10(midPoint.x))) - { - half knot_coord = (N_KNOTS_LOW - 1) * (logx - log10(minPoint.x)) / (log10(midPoint.x) - log10(minPoint.x)); - int j = knot_coord; - half t = knot_coord - j; - - half3 cf = half3(coefsLow[j], coefsLow[j + 1], coefsLow[j + 2]); - half3 monomials = half3(t * t, t, 1.0); - logy = dot(monomials, mul(M, cf)); - } - else if ((logx >= log10(midPoint.x)) && (logx < log10(maxPoint.x))) - { - half knot_coord = (N_KNOTS_HIGH - 1) * (logx - log10(midPoint.x)) / (log10(maxPoint.x) - log10(midPoint.x)); - int j = knot_coord; - half t = knot_coord - j; - - half3 cf = half3(coefsHigh[j], coefsHigh[j + 1], coefsHigh[j + 2]); - half3 monomials = half3(t * t, t, 1.0); - logy = dot(monomials, mul(M, cf)); - } - else - { //if (logIn >= log10(maxPoint.x)) { - logy = logx * slopeHigh + (log10(maxPoint.y) - slopeHigh * log10(maxPoint.x)); - } - - return pow(10.0, logy); -} - -static const half RRT_GLOW_GAIN = 0.05; -static const half RRT_GLOW_MID = 0.08; - -static const half RRT_RED_SCALE = 0.82; -static const half RRT_RED_PIVOT = 0.03; -static const half RRT_RED_HUE = 0.0; -static const half RRT_RED_WIDTH = 135.0; - -static const half RRT_SAT_FACTOR = 0.96; - -half3 RRT(half3 aces) -{ - // --- Glow module --- // - half saturation = rgb_2_saturation(aces); - half ycIn = rgb_2_yc(aces); - half s = sigmoid_shaper((saturation - 0.4) / 0.2); - half addedGlow = 1.0 + glow_fwd(ycIn, RRT_GLOW_GAIN * s, RRT_GLOW_MID); - aces *= addedGlow; - - // --- Red modifier --- // - half hue = rgb_2_hue(aces); - half centeredHue = center_hue(hue, RRT_RED_HUE); - half hueWeight; - { - //hueWeight = cubic_basis_shaper(centeredHue, RRT_RED_WIDTH); - hueWeight = smoothstep(0.0, 1.0, 1.0 - abs(2.0 * centeredHue / RRT_RED_WIDTH)); - hueWeight *= hueWeight; - } - - aces.r += hueWeight * saturation * (RRT_RED_PIVOT - aces.r) * (1.0 - RRT_RED_SCALE); - - // --- ACES to RGB rendering space --- // - aces = clamp(aces, 0.0, HALF_MAX); // avoids saturated negative colors from becoming positive in the matrix - half3 rgbPre = mul(AP0_2_AP1_MAT, aces); - rgbPre = clamp(rgbPre, 0, HALF_MAX); - - // --- Global desaturation --- // - //rgbPre = mul(RRT_SAT_MAT, rgbPre); - rgbPre = lerp(dot(rgbPre, AP1_RGB2Y).xxx, rgbPre, RRT_SAT_FACTOR.xxx); - - // --- Apply the tonescale independently in rendering-space RGB --- // - half3 rgbPost; - rgbPost.x = segmented_spline_c5_fwd(rgbPre.x); - rgbPost.y = segmented_spline_c5_fwd(rgbPre.y); - rgbPost.z = segmented_spline_c5_fwd(rgbPre.z); - - // --- RGB rendering space to OCES --- // - half3 rgbOces = mul(AP1_2_AP0_MAT, rgbPost); - - return rgbOces; -} - -// -// Output Device Transform -// -half3 Y_2_linCV(half3 Y, half Ymax, half Ymin) -{ - return (Y - Ymin) / (Ymax - Ymin); -} - -half3 XYZ_2_xyY(half3 XYZ) -{ - half divisor = max(dot(XYZ, (1.0).xxx), 1e-4); - return half3(XYZ.xy / divisor, XYZ.y); -} - -half3 xyY_2_XYZ(half3 xyY) -{ - half m = xyY.z / max(xyY.y, 1e-4); - half3 XYZ = half3(xyY.xz, (1.0 - xyY.x - xyY.y)); - XYZ.xz *= m; - return XYZ; -} - -static const half DIM_SURROUND_GAMMA = 0.9811; - -half3 darkSurround_to_dimSurround(half3 linearCV) -{ - half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); - - half3 xyY = XYZ_2_xyY(XYZ); - xyY.z = clamp(xyY.z, 0.0, HALF_MAX); - xyY.z = pow(xyY.z, DIM_SURROUND_GAMMA); - XYZ = xyY_2_XYZ(xyY); - - return mul(XYZ_2_AP1_MAT, XYZ); -} - -half moncurve_r(half y, half gamma, half offs) -{ - // Reverse monitor curve - half x; - const half yb = pow(offs * gamma / ((gamma - 1.0) * (1.0 + offs)), gamma); - const half rs = pow((gamma - 1.0) / offs, gamma - 1.0) * pow((1.0 + offs) / gamma, gamma); - if (y >= yb) - x = (1.0 + offs) * pow(y, 1.0 / gamma) - offs; - else - x = y * rs; - return x; -} - -half bt1886_r(half L, half gamma, half Lw, half Lb) -{ - // The reference EOTF specified in Rec. ITU-R BT.1886 - // L = a(max[(V+b),0])^g - half a = pow(pow(Lw, 1.0 / gamma) - pow(Lb, 1.0 / gamma), gamma); - half b = pow(Lb, 1.0 / gamma) / (pow(Lw, 1.0 / gamma) - pow(Lb, 1.0 / gamma)); - half V = pow(max(L / a, 0.0), 1.0 / gamma) - b; - return V; -} - -half roll_white_fwd( - half x, // color value to adjust (white scaled to around 1.0) - half new_wht, // white adjustment (e.g. 0.9 for 10% darkening) - half width // adjusted width (e.g. 0.25 for top quarter of the tone scale) - ) -{ - const half x0 = -1.0; - const half x1 = x0 + width; - const half y0 = -new_wht; - const half y1 = x1; - const half m1 = (x1 - x0); - const half a = y0 - y1 + m1; - const half b = 2.0 * (y1 - y0) - m1; - const half c = y0; - const half t = (-x - x0) / (x1 - x0); - half o = 0.0; - if (t < 0.0) - o = -(t * b + c); - else if (t > 1.0) - o = x; - else - o = -((t * a + b) * t + c); - return o; -} - -half3 linear_to_sRGB(half3 x) -{ - return (x <= 0.0031308 ? (x * 12.9232102) : 1.055 * pow(x, 1.0 / 2.4) - 0.055); -} - -half3 linear_to_bt1886(half3 x, half gamma, half Lw, half Lb) -{ - // Good enough approximation for now, may consider using the exact formula instead - // TODO: Experiment - return pow(max(x, 0.0), 1.0 / 2.4); - - // Correct implementation (Reference EOTF specified in Rec. ITU-R BT.1886) : - // L = a(max[(V+b),0])^g - half invgamma = 1.0 / gamma; - half p_Lw = pow(Lw, invgamma); - half p_Lb = pow(Lb, invgamma); - half3 a = pow(p_Lw - p_Lb, gamma).xxx; - half3 b = (p_Lb / p_Lw - p_Lb).xxx; - half3 V = pow(max(x / a, 0.0), invgamma.xxx) - b; - return V; -} - -static const half CINEMA_WHITE = 48.0; -static const half CINEMA_BLACK = CINEMA_WHITE / 2400.0; -static const half ODT_SAT_FACTOR = 0.93; - -// ODT.Academy.RGBmonitor_100nits_dim.a1.0.3 -// ACES 1.0 Output - sRGB - -// -// Output Device Transform - RGB computer monitor -// - -// -// Summary : -// This transform is intended for mapping OCES onto a desktop computer monitor -// typical of those used in motion picture visual effects production. These -// monitors may occasionally be referred to as "sRGB" displays, however, the -// monitor for which this transform is designed does not exactly match the -// specifications in IEC 61966-2-1:1999. -// -// The assumed observer adapted white is D65, and the viewing environment is -// that of a dim surround. -// -// The monitor specified is intended to be more typical of those found in -// visual effects production. -// -// Device Primaries : -// Primaries are those specified in Rec. ITU-R BT.709 -// CIE 1931 chromaticities: x y Y -// Red: 0.64 0.33 -// Green: 0.3 0.6 -// Blue: 0.15 0.06 -// White: 0.3127 0.329 100 cd/m^2 -// -// Display EOTF : -// The reference electro-optical transfer function specified in -// IEC 61966-2-1:1999. -// -// Signal Range: -// This transform outputs full range code values. -// -// Assumed observer adapted white point: -// CIE 1931 chromaticities: x y -// 0.3127 0.329 -// -// Viewing Environment: -// This ODT has a compensation for viewing environment variables more typical -// of those associated with video mastering. -// -half3 ODT_RGBmonitor_100nits_dim(half3 oces) -{ - // OCES to RGB rendering space - half3 rgbPre = mul(AP0_2_AP1_MAT, oces); - - // Apply the tonescale independently in rendering-space RGB - half3 rgbPost; - rgbPost.x = segmented_spline_c9_fwd(rgbPre.x); - rgbPost.y = segmented_spline_c9_fwd(rgbPre.y); - rgbPost.z = segmented_spline_c9_fwd(rgbPre.z); - - // Scale luminance to linear code value - half3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); - - // Apply gamma adjustment to compensate for dim surround - linearCV = darkSurround_to_dimSurround(linearCV); - - // Apply desaturation to compensate for luminance difference - //linearCV = mul(ODT_SAT_MAT, linearCV); - linearCV = lerp(dot(linearCV, AP1_RGB2Y).xxx, linearCV, ODT_SAT_FACTOR.xxx); - - // Convert to display primary encoding - // Rendering space RGB to XYZ - half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); - - // Apply CAT from ACES white point to assumed observer adapted white point - XYZ = mul(D60_2_D65_CAT, XYZ); - - // CIE XYZ to display primaries - linearCV = mul(XYZ_2_REC709_MAT, XYZ); - - // Handle out-of-gamut values - // Clip values < 0 or > 1 (i.e. projecting outside the display primaries) - linearCV = saturate(linearCV); - - // TODO: Revisit when it is possible to deactivate Unity default framebuffer encoding - // with sRGB opto-electrical transfer function (OETF). - /* - // Encode linear code values with transfer function - half3 outputCV; - // moncurve_r with gamma of 2.4 and offset of 0.055 matches the EOTF found in IEC 61966-2-1:1999 (sRGB) - const half DISPGAMMA = 2.4; - const half OFFSET = 0.055; - outputCV.x = moncurve_r(linearCV.x, DISPGAMMA, OFFSET); - outputCV.y = moncurve_r(linearCV.y, DISPGAMMA, OFFSET); - outputCV.z = moncurve_r(linearCV.z, DISPGAMMA, OFFSET); - - outputCV = linear_to_sRGB(linearCV); - */ - - // Unity already draws to a sRGB target - return linearCV; -} - -// ODT.Academy.RGBmonitor_D60sim_100nits_dim.a1.0.3 -// ACES 1.0 Output - sRGB (D60 sim.) - -// -// Output Device Transform - RGB computer monitor (D60 simulation) -// - -// -// Summary : -// This transform is intended for mapping OCES onto a desktop computer monitor -// typical of those used in motion picture visual effects production. These -// monitors may occasionally be referred to as "sRGB" displays, however, the -// monitor for which this transform is designed does not exactly match the -// specifications in IEC 61966-2-1:1999. -// -// The assumed observer adapted white is D60, and the viewing environment is -// that of a dim surround. -// -// The monitor specified is intended to be more typical of those found in -// visual effects production. -// -// Device Primaries : -// Primaries are those specified in Rec. ITU-R BT.709 -// CIE 1931 chromaticities: x y Y -// Red: 0.64 0.33 -// Green: 0.3 0.6 -// Blue: 0.15 0.06 -// White: 0.3127 0.329 100 cd/m^2 -// -// Display EOTF : -// The reference electro-optical transfer function specified in -// IEC 61966-2-1:1999. -// -// Signal Range: -// This transform outputs full range code values. -// -// Assumed observer adapted white point: -// CIE 1931 chromaticities: x y -// 0.32168 0.33767 -// -// Viewing Environment: -// This ODT has a compensation for viewing environment variables more typical -// of those associated with video mastering. -// -half3 ODT_RGBmonitor_D60sim_100nits_dim(half3 oces) -{ - // OCES to RGB rendering space - half3 rgbPre = mul(AP0_2_AP1_MAT, oces); - - // Apply the tonescale independently in rendering-space RGB - half3 rgbPost; - rgbPost.x = segmented_spline_c9_fwd(rgbPre.x); - rgbPost.y = segmented_spline_c9_fwd(rgbPre.y); - rgbPost.z = segmented_spline_c9_fwd(rgbPre.z); - - // Scale luminance to linear code value - half3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); - - // --- Compensate for different white point being darker --- // - // This adjustment is to correct an issue that exists in ODTs where the device - // is calibrated to a white chromaticity other than D60. In order to simulate - // D60 on such devices, unequal code values are sent to the display to achieve - // neutrals at D60. In order to produce D60 on a device calibrated to the DCI - // white point (i.e. equal code values yield CIE x,y chromaticities of 0.314, - // 0.351) the red channel is higher than green and blue to compensate for the - // "greenish" DCI white. This is the correct behavior but it means that as - // highlight increase, the red channel will hit the device maximum first and - // clip, resulting in a chromaticity shift as the green and blue channels - // continue to increase. - // To avoid this clipping error, a slight scale factor is applied to allow the - // ODTs to simulate D60 within the D65 calibration white point. - - // Scale and clamp white to avoid casted highlights due to D60 simulation - const half SCALE = 0.955; - linearCV = min(linearCV, 1.0) * SCALE; - - // Apply gamma adjustment to compensate for dim surround - linearCV = darkSurround_to_dimSurround(linearCV); - - // Apply desaturation to compensate for luminance difference - //linearCV = mul(ODT_SAT_MAT, linearCV); - linearCV = lerp(dot(linearCV, AP1_RGB2Y).xxx, linearCV, ODT_SAT_FACTOR.xxx); - - // Convert to display primary encoding - // Rendering space RGB to XYZ - half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); - - // CIE XYZ to display primaries - linearCV = mul(XYZ_2_REC709_MAT, XYZ); - - // Handle out-of-gamut values - // Clip values < 0 or > 1 (i.e. projecting outside the display primaries) - linearCV = saturate(linearCV); - - // TODO: Revisit when it is possible to deactivate Unity default framebuffer encoding - // with sRGB opto-electrical transfer function (OETF). - /* - // Encode linear code values with transfer function - half3 outputCV; - // moncurve_r with gamma of 2.4 and offset of 0.055 matches the EOTF found in IEC 61966-2-1:1999 (sRGB) - const half DISPGAMMA = 2.4; - const half OFFSET = 0.055; - outputCV.x = moncurve_r(linearCV.x, DISPGAMMA, OFFSET); - outputCV.y = moncurve_r(linearCV.y, DISPGAMMA, OFFSET); - outputCV.z = moncurve_r(linearCV.z, DISPGAMMA, OFFSET); - - outputCV = linear_to_sRGB(linearCV); - */ - - // Unity already draws to a sRGB target - return linearCV; -} - -// ODT.Academy.Rec709_100nits_dim.a1.0.3 -// ACES 1.0 Output - Rec.709 - -// -// Output Device Transform - Rec709 -// - -// -// Summary : -// This transform is intended for mapping OCES onto a Rec.709 broadcast monitor -// that is calibrated to a D65 white point at 100 cd/m^2. The assumed observer -// adapted white is D65, and the viewing environment is a dim surround. -// -// A possible use case for this transform would be HDTV/video mastering. -// -// Device Primaries : -// Primaries are those specified in Rec. ITU-R BT.709 -// CIE 1931 chromaticities: x y Y -// Red: 0.64 0.33 -// Green: 0.3 0.6 -// Blue: 0.15 0.06 -// White: 0.3127 0.329 100 cd/m^2 -// -// Display EOTF : -// The reference electro-optical transfer function specified in -// Rec. ITU-R BT.1886. -// -// Signal Range: -// By default, this transform outputs full range code values. If instead a -// SMPTE "legal" signal is desired, there is a runtime flag to output -// SMPTE legal signal. In ctlrender, this can be achieved by appending -// '-param1 legalRange 1' after the '-ctl odt.ctl' string. -// -// Assumed observer adapted white point: -// CIE 1931 chromaticities: x y -// 0.3127 0.329 -// -// Viewing Environment: -// This ODT has a compensation for viewing environment variables more typical -// of those associated with video mastering. -// -half3 ODT_Rec709_100nits_dim(half3 oces) -{ - // OCES to RGB rendering space - half3 rgbPre = mul(AP0_2_AP1_MAT, oces); - - // Apply the tonescale independently in rendering-space RGB - half3 rgbPost; - rgbPost.x = segmented_spline_c9_fwd(rgbPre.x); - rgbPost.y = segmented_spline_c9_fwd(rgbPre.y); - rgbPost.z = segmented_spline_c9_fwd(rgbPre.z); - - // Scale luminance to linear code value - half3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); - - // Apply gamma adjustment to compensate for dim surround - linearCV = darkSurround_to_dimSurround(linearCV); - - // Apply desaturation to compensate for luminance difference - //linearCV = mul(ODT_SAT_MAT, linearCV); - linearCV = lerp(dot(linearCV, AP1_RGB2Y).xxx, linearCV, ODT_SAT_FACTOR.xxx); - - // Convert to display primary encoding - // Rendering space RGB to XYZ - half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); - - // Apply CAT from ACES white point to assumed observer adapted white point - XYZ = mul(D60_2_D65_CAT, XYZ); - - // CIE XYZ to display primaries - linearCV = mul(XYZ_2_REC709_MAT, XYZ); - - // Handle out-of-gamut values - // Clip values < 0 or > 1 (i.e. projecting outside the display primaries) - linearCV = saturate(linearCV); - - // Encode linear code values with transfer function - const half DISPGAMMA = 2.4; - const half L_W = 1.0; - const half L_B = 0.0; - half3 outputCV = linear_to_bt1886(linearCV, DISPGAMMA, L_W, L_B); - - // TODO: Implement support for legal range. - - // NOTE: Unity framebuffer encoding is encoded with sRGB opto-electrical transfer function (OETF) - // by default which will result in double perceptual encoding, thus for now if one want to use - // this ODT, he needs to decode its output with sRGB electro-optical transfer function (EOTF) to - // compensate for Unity default behaviour. - - return outputCV; -} - -// ODT.Academy.Rec709_D60sim_100nits_dim.a1.0.3 -// ACES 1.0 Output - Rec.709 (D60 sim.) - -// -// Output Device Transform - Rec709 (D60 simulation) -// - -// -// Summary : -// This transform is intended for mapping OCES onto a Rec.709 broadcast monitor -// that is calibrated to a D65 white point at 100 cd/m^2. The assumed observer -// adapted white is D60, and the viewing environment is a dim surround. -// -// A possible use case for this transform would be cinema "soft-proofing". -// -// Device Primaries : -// Primaries are those specified in Rec. ITU-R BT.709 -// CIE 1931 chromaticities: x y Y -// Red: 0.64 0.33 -// Green: 0.3 0.6 -// Blue: 0.15 0.06 -// White: 0.3127 0.329 100 cd/m^2 -// -// Display EOTF : -// The reference electro-optical transfer function specified in -// Rec. ITU-R BT.1886. -// -// Signal Range: -// By default, this transform outputs full range code values. If instead a -// SMPTE "legal" signal is desired, there is a runtime flag to output -// SMPTE legal signal. In ctlrender, this can be achieved by appending -// '-param1 legalRange 1' after the '-ctl odt.ctl' string. -// -// Assumed observer adapted white point: -// CIE 1931 chromaticities: x y -// 0.32168 0.33767 -// -// Viewing Environment: -// This ODT has a compensation for viewing environment variables more typical -// of those associated with video mastering. -// -half3 ODT_Rec709_D60sim_100nits_dim(half3 oces) -{ - // OCES to RGB rendering space - half3 rgbPre = mul(AP0_2_AP1_MAT, oces); - - // Apply the tonescale independently in rendering-space RGB - half3 rgbPost; - rgbPost.x = segmented_spline_c9_fwd(rgbPre.x); - rgbPost.y = segmented_spline_c9_fwd(rgbPre.y); - rgbPost.z = segmented_spline_c9_fwd(rgbPre.z); - - // Scale luminance to linear code value - half3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); - - // --- Compensate for different white point being darker --- // - // This adjustment is to correct an issue that exists in ODTs where the device - // is calibrated to a white chromaticity other than D60. In order to simulate - // D60 on such devices, unequal code values must be sent to the display to achieve - // the chromaticities of D60. More specifically, in order to produce D60 on a device - // calibrated to a D65 white point (i.e. equal code values yield CIE x,y - // chromaticities of 0.3127, 0.329) the red channel must be slightly higher than - // that of green and blue in order to compensate for the relatively more "blue-ish" - // D65 white. This unequalness of color channels is the correct behavior but it - // means that as neutral highlights increase, the red channel will hit the - // device maximum first and clip, resulting in a small chromaticity shift as the - // green and blue channels continue to increase to their maximums. - // To avoid this clipping error, a slight scale factor is applied to allow the - // ODTs to simulate D60 within the D65 calibration white point. - - // Scale and clamp white to avoid casted highlights due to D60 simulation - const half SCALE = 0.955; - linearCV = min(linearCV, 1.0) * SCALE; - - // Apply gamma adjustment to compensate for dim surround - linearCV = darkSurround_to_dimSurround(linearCV); - - // Apply desaturation to compensate for luminance difference - //linearCV = mul(ODT_SAT_MAT, linearCV); - linearCV = lerp(dot(linearCV, AP1_RGB2Y).xxx, linearCV, ODT_SAT_FACTOR.xxx); - - // Convert to display primary encoding - // Rendering space RGB to XYZ - half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); - - // CIE XYZ to display primaries - linearCV = mul(XYZ_2_REC709_MAT, XYZ); - - // Handle out-of-gamut values - // Clip values < 0 or > 1 (i.e. projecting outside the display primaries) - linearCV = saturate(linearCV); - - // Encode linear code values with transfer function - const half DISPGAMMA = 2.4; - const half L_W = 1.0; - const half L_B = 0.0; - half3 outputCV = linear_to_bt1886(linearCV, DISPGAMMA, L_W, L_B); - - // TODO: Implement support for legal range. - - // NOTE: Unity framebuffer encoding is encoded with sRGB opto-electrical transfer function (OETF) - // by default which will result in double perceptual encoding, thus for now if one want to use - // this ODT, he needs to decode its output with sRGB electro-optical transfer function (EOTF) to - // compensate for Unity default behaviour. - - return outputCV; -} - -// ODT.Academy.Rec2020_100nits_dim.a1.0.3 -// ACES 1.0 Output - Rec.2020 - -// -// Output Device Transform - Rec2020 -// - -// -// Summary : -// This transform is intended for mapping OCES onto a Rec.2020 broadcast -// monitor that is calibrated to a D65 white point at 100 cd/m^2. The assumed -// observer adapted white is D65, and the viewing environment is that of a dim -// surround. -// -// A possible use case for this transform would be UHDTV/video mastering. -// -// Device Primaries : -// Primaries are those specified in Rec. ITU-R BT.2020 -// CIE 1931 chromaticities: x y Y -// Red: 0.708 0.292 -// Green: 0.17 0.797 -// Blue: 0.131 0.046 -// White: 0.3127 0.329 100 cd/m^2 -// -// Display EOTF : -// The reference electro-optical transfer function specified in -// Rec. ITU-R BT.1886. -// -// Signal Range: -// By default, this transform outputs full range code values. If instead a -// SMPTE "legal" signal is desired, there is a runtime flag to output -// SMPTE legal signal. In ctlrender, this can be achieved by appending -// '-param1 legalRange 1' after the '-ctl odt.ctl' string. -// -// Assumed observer adapted white point: -// CIE 1931 chromaticities: x y -// 0.3127 0.329 -// -// Viewing Environment: -// This ODT has a compensation for viewing environment variables more typical -// of those associated with video mastering. -// - -half3 ODT_Rec2020_100nits_dim(half3 oces) -{ - // OCES to RGB rendering space - half3 rgbPre = mul(AP0_2_AP1_MAT, oces); - - // Apply the tonescale independently in rendering-space RGB - half3 rgbPost; - rgbPost.x = segmented_spline_c9_fwd(rgbPre.x); - rgbPost.y = segmented_spline_c9_fwd(rgbPre.y); - rgbPost.z = segmented_spline_c9_fwd(rgbPre.z); - - // Scale luminance to linear code value - half3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); - - // Apply gamma adjustment to compensate for dim surround - linearCV = darkSurround_to_dimSurround(linearCV); - - // Apply desaturation to compensate for luminance difference - //linearCV = mul(ODT_SAT_MAT, linearCV); - linearCV = lerp(dot(linearCV, AP1_RGB2Y).xxx, linearCV, ODT_SAT_FACTOR.xxx); - - // Convert to display primary encoding - // Rendering space RGB to XYZ - half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); - - // Apply CAT from ACES white point to assumed observer adapted white point - XYZ = mul(D60_2_D65_CAT, XYZ); - - // CIE XYZ to display primaries - linearCV = mul(XYZ_2_REC2020_MAT, XYZ); - - // Handle out-of-gamut values - // Clip values < 0 or > 1 (i.e. projecting outside the display primaries) - linearCV = saturate(linearCV); - - // Encode linear code values with transfer function - const half DISPGAMMA = 2.4; - const half L_W = 1.0; - const half L_B = 0.0; - half3 outputCV = linear_to_bt1886(linearCV, DISPGAMMA, L_W, L_B); - - // TODO: Implement support for legal range. - - // NOTE: Unity framebuffer encoding is encoded with sRGB opto-electrical transfer function (OETF) - // by default which will result in double perceptual encoding, thus for now if one want to use - // this ODT, he needs to decode its output with sRGB electro-optical transfer function (EOTF) to - // compensate for Unity default behaviour. - - return outputCV; -} - -// ODT.Academy.P3DCI_48nits.a1.0.3 -// ACES 1.0 Output - P3-DCI - -// -// Output Device Transform - P3DCI (D60 Simulation) -// - -// -// Summary : -// This transform is intended for mapping OCES onto a P3 digital cinema -// projector that is calibrated to a DCI white point at 48 cd/m^2. The assumed -// observer adapted white is D60, and the viewing environment is that of a dark -// theater. -// -// Device Primaries : -// CIE 1931 chromaticities: x y Y -// Red: 0.68 0.32 -// Green: 0.265 0.69 -// Blue: 0.15 0.06 -// White: 0.314 0.351 48 cd/m^2 -// -// Display EOTF : -// Gamma: 2.6 -// -// Assumed observer adapted white point: -// CIE 1931 chromaticities: x y -// 0.32168 0.33767 -// -// Viewing Environment: -// Environment specified in SMPTE RP 431-2-2007 -// -half3 ODT_P3DCI_48nits(half3 oces) -{ - // OCES to RGB rendering space - half3 rgbPre = mul(AP0_2_AP1_MAT, oces); - - // Apply the tonescale independently in rendering-space RGB - half3 rgbPost; - rgbPost.x = segmented_spline_c9_fwd(rgbPre.x); - rgbPost.y = segmented_spline_c9_fwd(rgbPre.y); - rgbPost.z = segmented_spline_c9_fwd(rgbPre.z); - - // Scale luminance to linear code value - half3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); - - // --- Compensate for different white point being darker --- // - // This adjustment is to correct an issue that exists in ODTs where the device - // is calibrated to a white chromaticity other than D60. In order to simulate - // D60 on such devices, unequal code values are sent to the display to achieve - // neutrals at D60. In order to produce D60 on a device calibrated to the DCI - // white point (i.e. equal code values yield CIE x,y chromaticities of 0.314, - // 0.351) the red channel is higher than green and blue to compensate for the - // "greenish" DCI white. This is the correct behavior but it means that as - // highlight increase, the red channel will hit the device maximum first and - // clip, resulting in a chromaticity shift as the green and blue channels - // continue to increase. - // To avoid this clipping error, a slight scale factor is applied to allow the - // ODTs to simulate D60 within the D65 calibration white point. However, the - // magnitude of the scale factor required for the P3DCI ODT was considered too - // large. Therefore, the scale factor was reduced and the additional required - // compression was achieved via a reshaping of the highlight rolloff in - // conjunction with the scale. The shape of this rolloff was determined - // throught subjective experiments and deemed to best reproduce the - // "character" of the highlights in the P3D60 ODT. - - // Roll off highlights to avoid need for as much scaling - const half NEW_WHT = 0.918; - const half ROLL_WIDTH = 0.5; - linearCV.x = roll_white_fwd(linearCV.x, NEW_WHT, ROLL_WIDTH); - linearCV.y = roll_white_fwd(linearCV.y, NEW_WHT, ROLL_WIDTH); - linearCV.z = roll_white_fwd(linearCV.z, NEW_WHT, ROLL_WIDTH); - - // Scale and clamp white to avoid casted highlights due to D60 simulation - const half SCALE = 0.96; - linearCV = min(linearCV, NEW_WHT) * SCALE; - - // Convert to display primary encoding - // Rendering space RGB to XYZ - half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); - - // CIE XYZ to display primaries - linearCV = mul(XYZ_2_DCIP3_MAT, XYZ); - - // Handle out-of-gamut values - // Clip values < 0 or > 1 (i.e. projecting outside the display primaries) - linearCV = saturate(linearCV); - - // Encode linear code values with transfer function - const half DISPGAMMA = 2.6; - half3 outputCV = pow(linearCV, 1.0 / DISPGAMMA); - - // NOTE: Unity framebuffer encoding is encoded with sRGB opto-electrical transfer function (OETF) - // by default which will result in double perceptual encoding, thus for now if one want to use - // this ODT, he needs to decode its output with sRGB electro-optical transfer function (EOTF) to - // compensate for Unity default behaviour. - - return outputCV; -} - -#endif // __ACES__ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/ACES.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/ACES.hlsl.meta deleted file mode 100644 index 2a351eb6c..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/ACES.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: d7de89b714449b04391f3a2fb53a9022 -timeCreated: 1493731593 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API.meta deleted file mode 100644 index c0209340e..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: fc4403a2b9698954c81d797b70e8a3e2 -folderAsset: yes -timeCreated: 1489753963 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/D3D11.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/D3D11.hlsl deleted file mode 100644 index 1982bcb36..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/D3D11.hlsl +++ /dev/null @@ -1,52 +0,0 @@ -#define UNITY_UV_STARTS_AT_TOP 1 -#define UNITY_REVERSED_Z 1 -#define UNITY_GATHER_SUPPORTED (SHADER_TARGET >= 50) -#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 - -#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName -#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName - -#define TEXTURE2D(textureName) Texture2D textureName -#define SAMPLER2D(samplerName) SamplerState samplerName - -#define TEXTURE3D(textureName) Texture3D textureName -#define SAMPLER3D(samplerName) SamplerState samplerName - -#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName -#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName - -#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName -#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName - -#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) -#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) - -#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) - -#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) -#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) - -#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) -#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) -#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) -#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) - -#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r -#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r - -#define UNITY_BRANCH [branch] -#define UNITY_FLATTEN [flatten] -#define UNITY_UNROLL [unroll] -#define UNITY_LOOP [loop] -#define UNITY_FASTOPT [fastopt] - -#define CBUFFER_START(name) cbuffer name { -#define CBUFFER_END }; - -#if UNITY_GATHER_SUPPORTED - #define FXAA_HLSL_5 1 - #define SMAA_HLSL_4_1 1 -#else - #define FXAA_HLSL_4 1 - #define SMAA_HLSL_4 1 -#endif diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/D3D11.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/D3D11.hlsl.meta deleted file mode 100644 index f4b2c3890..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/D3D11.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: d4e61b1eb5c3ac248add7bb738198560 -timeCreated: 1489753963 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/D3D12.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/D3D12.hlsl deleted file mode 100644 index 1982bcb36..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/D3D12.hlsl +++ /dev/null @@ -1,52 +0,0 @@ -#define UNITY_UV_STARTS_AT_TOP 1 -#define UNITY_REVERSED_Z 1 -#define UNITY_GATHER_SUPPORTED (SHADER_TARGET >= 50) -#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 - -#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName -#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName - -#define TEXTURE2D(textureName) Texture2D textureName -#define SAMPLER2D(samplerName) SamplerState samplerName - -#define TEXTURE3D(textureName) Texture3D textureName -#define SAMPLER3D(samplerName) SamplerState samplerName - -#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName -#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName - -#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName -#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName - -#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) -#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) - -#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) - -#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) -#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) - -#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) -#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) -#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) -#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) - -#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r -#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r - -#define UNITY_BRANCH [branch] -#define UNITY_FLATTEN [flatten] -#define UNITY_UNROLL [unroll] -#define UNITY_LOOP [loop] -#define UNITY_FASTOPT [fastopt] - -#define CBUFFER_START(name) cbuffer name { -#define CBUFFER_END }; - -#if UNITY_GATHER_SUPPORTED - #define FXAA_HLSL_5 1 - #define SMAA_HLSL_4_1 1 -#else - #define FXAA_HLSL_4 1 - #define SMAA_HLSL_4 1 -#endif diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/D3D12.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/D3D12.hlsl.meta deleted file mode 100644 index 8591a6d94..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/D3D12.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: ed6416461734f3a4d97b2475252d5f6c -timeCreated: 1489754075 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/D3D9.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/D3D9.hlsl deleted file mode 100644 index 8427b9c8a..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/D3D9.hlsl +++ /dev/null @@ -1,43 +0,0 @@ -// ALso used for Direct3D 11 "feature level 9.x" target for Windows Store and Windows Phone -#define UNITY_UV_STARTS_AT_TOP 1 -#define UNITY_REVERSED_Z 0 -#define UNITY_GATHER_SUPPORTED 0 -#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 - -#define TEXTURE2D_SAMPLER2D(textureName, samplerName) sampler2D textureName -#define TEXTURE3D_SAMPLER3D(textureName, samplerName) sampler3D textureName - -#define TEXTURE2D(textureName) sampler2D textureName -#define SAMPLER2D(samplerName) - -#define TEXTURE3D(textureName) sampler3D textureName -#define SAMPLER3D(samplerName) - -#define TEXTURE2D_ARGS(textureName, samplerName) sampler2D textureName -#define TEXTURE2D_PARAM(textureName, samplerName) textureName - -#define TEXTURE3D_ARGS(textureName, samplerName) sampler3D textureName -#define TEXTURE3D_PARAM(textureName, samplerName) textureName - -#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) tex2D(textureName, coord2) -#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) tex2Dlod(textureName, float4(coord2, 0.0, lod)) - -#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) tex3D(textureName, coord3) - -#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) tex2D(textureName, icoord2 / texelSize) -#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) tex2Dlod(textureName, float4(icoord2 / texelSize, 0.0, lod)) - -#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r -#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r - -#define UNITY_BRANCH -#define UNITY_FLATTEN -#define UNITY_UNROLL -#define UNITY_LOOP -#define UNITY_FASTOPT - -#define CBUFFER_START(name) -#define CBUFFER_END - -#define FXAA_HLSL_3 1 -#define SMAA_HLSL_3 1 diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/D3D9.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/D3D9.hlsl.meta deleted file mode 100644 index bb4b21136..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/D3D9.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: a741cbbb27e6ad747a354440a9132a66 -timeCreated: 1489754265 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/Metal.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/Metal.hlsl deleted file mode 100644 index 50916982d..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/Metal.hlsl +++ /dev/null @@ -1,47 +0,0 @@ -#define UNITY_UV_STARTS_AT_TOP 1 -#define UNITY_REVERSED_Z 1 -#define UNITY_GATHER_SUPPORTED 0 // Currently broken on Metal for some reason (May 2017) -#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 - -#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName -#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName - -#define TEXTURE2D(textureName) Texture2D textureName -#define SAMPLER2D(samplerName) SamplerState samplerName - -#define TEXTURE3D(textureName) Texture3D textureName -#define SAMPLER3D(samplerName) SamplerState samplerName - -#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName -#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName - -#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName -#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName - -#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) -#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) - -#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) - -#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) -#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) - -#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) -#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) -#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) -#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) - -#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r -#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r - -#define UNITY_BRANCH [branch] -#define UNITY_FLATTEN [flatten] -#define UNITY_UNROLL [unroll] -#define UNITY_LOOP [loop] -#define UNITY_FASTOPT [fastopt] - -#define CBUFFER_START(name) cbuffer name { -#define CBUFFER_END }; - -#define FXAA_HLSL_4 1 // See UNITY_GATHER_SUPPORTED -#define SMAA_HLSL_4 1 diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/Metal.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/Metal.hlsl.meta deleted file mode 100644 index 40b26e75f..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/Metal.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 38502e5cb7782364ba3db59850a9a8ad -timeCreated: 1489753963 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/OpenGL.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/OpenGL.hlsl deleted file mode 100644 index 9c7cd11f1..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/OpenGL.hlsl +++ /dev/null @@ -1,57 +0,0 @@ -// For now OpenGL is considered at GLES2 level -#define UNITY_UV_STARTS_AT_TOP 0 -#define UNITY_REVERSED_Z 0 -#define UNITY_GATHER_SUPPORTED 0 -#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 - -#define TEXTURE2D_SAMPLER2D(textureName, samplerName) sampler2D textureName -#define TEXTURE3D_SAMPLER3D(textureName, samplerName) sampler3D textureName - -#define TEXTURE2D(textureName) sampler2D textureName -#define SAMPLER2D(samplerName) - -#define TEXTURE3D(textureName) sampler3D textureName -#define SAMPLER3D(samplerName) - -#define TEXTURE2D_ARGS(textureName, samplerName) sampler2D textureName -#define TEXTURE2D_PARAM(textureName, samplerName) textureName - -#define TEXTURE3D_ARGS(textureName, samplerName) sampler3D textureName -#define TEXTURE3D_PARAM(textureName, samplerName) textureName - -#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) tex2D(textureName, coord2) -#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) tex2Dlod(textureName, float4(coord2, 0.0, lod)) - -#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) tex3D(textureName, coord3) - -#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) tex2D(textureName, icoord2 / texelSize) -#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) tex2Dlod(textureName, float4(icoord2 / texelSize, 0.0, lod)) - -#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r -#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r - -#if SHADER_API_GLES -# define UNITY_BRANCH -# define UNITY_FLATTEN -# define UNITY_UNROLL -# define UNITY_LOOP -# define UNITY_FASTOPT -#else -# define UNITY_BRANCH [branch] -# define UNITY_FLATTEN [flatten] -# define UNITY_UNROLL [unroll] -# define UNITY_LOOP [loop] -# define UNITY_FASTOPT [fastopt] -#endif - -#define CBUFFER_START(name) -#define CBUFFER_END - -#define FXAA_HLSL_3 1 -#define SMAA_HLSL_3 1 - -// pragma exclude_renderers is only supported since Unity 2018.1 for compute shaders -#if UNITY_VERSION < 201810 && !defined(SHADER_API_GLCORE) -# define DISABLE_COMPUTE_SHADERS 1 -# define TRIVIAL_COMPUTE_KERNEL(name) [numthreads(1, 1, 1)] void name() {} -#endif diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/OpenGL.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/OpenGL.hlsl.meta deleted file mode 100644 index 76f521295..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/OpenGL.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 6a0c0086cde60e74e9ad1fce57eab9f1 -timeCreated: 1489754265 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/PSP2.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/PSP2.hlsl deleted file mode 100644 index dcb0c7e37..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/PSP2.hlsl +++ /dev/null @@ -1,48 +0,0 @@ - -#define UNITY_UV_STARTS_AT_TOP 1 -#define UNITY_REVERSED_Z 0 -#define UNITY_GATHER_SUPPORTED 0 -#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 0 - -#define TEXTURE2D_SAMPLER2D(textureName, samplerName) sampler2D textureName - -#define TEXTURE2D(textureName) sampler2D textureName -#define SAMPLER2D(samplerName) - -#define TEXTURE2D_ARGS(textureName, samplerName) sampler2D textureName -#define TEXTURE2D_PARAM(textureName, samplerName) textureName - -#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) tex2D(textureName, coord2) -#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) tex2Dlod(textureName, float4(coord2, 0.0, lod)) - -#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) tex2D(textureName, icoord2 / texelSize) -#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) tex2Dlod(textureName, float4(icoord2 / texelSize, 0.0, lod)) - -#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) tex2D(textureName, coord2).r -#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) tex2Dlod(textureName, float4(coord2, 0.0, lod)).r - -// 3D textures are not supported on Vita, use 2D to avoid compile errors. -#define TEXTURE3D_SAMPLER3D(textureName, samplerName) sampler2D textureName -#define TEXTURE3D(textureName) sampler2D textureName -#define SAMPLER3D(samplerName) -#define TEXTURE3D_ARGS(textureName, samplerName) sampler2D textureName -#define TEXTURE3D_PARAM(textureName, samplerName) textureName -#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) tex2D(textureName, coord3) - -#define UNITY_BRANCH -#define UNITY_FLATTEN -#define UNITY_UNROLL -#define UNITY_LOOP -#define UNITY_FASTOPT - -#define CBUFFER_START(name) -#define CBUFFER_END - -#define FXAA_HLSL_3 1 -#define SMAA_HLSL_3 1 - -// pragma exclude_renderers is only supported since Unity 2018.1 for compute shaders -#if UNITY_VERSION < 201810 && !defined(SHADER_API_GLCORE) -# define DISABLE_COMPUTE_SHADERS 1 -# define TRIVIAL_COMPUTE_KERNEL(name) [numthreads(1, 1, 1)] void name() {} -#endif diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/PSP2.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/PSP2.hlsl.meta deleted file mode 100644 index 8bbb61ab9..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/PSP2.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: d916afaf5049bb24989e8e823280e99c -ShaderImporter: - externalObjects: {} - defaultTextures: [] - nonModifiableTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/PSSL.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/PSSL.hlsl deleted file mode 100644 index ef3eafb6b..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/PSSL.hlsl +++ /dev/null @@ -1,55 +0,0 @@ -#define UNITY_UV_STARTS_AT_TOP 1 -#define UNITY_REVERSED_Z 1 -#define UNITY_GATHER_SUPPORTED (SHADER_TARGET >= 50) -#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 -#define INTRINSIC_MINMAX3 -#define Min3 min3 -#define Max3 max3 - -#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName -#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName - -#define TEXTURE2D(textureName) Texture2D textureName -#define SAMPLER2D(samplerName) SamplerState samplerName - -#define TEXTURE3D(textureName) Texture3D textureName -#define SAMPLER3D(samplerName) SamplerState samplerName - -#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName -#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName - -#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName -#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName - -#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) -#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) - -#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) - -#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) -#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) - -#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) -#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) -#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) -#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) - -#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r -#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r - -#define UNITY_BRANCH [branch] -#define UNITY_FLATTEN [flatten] -#define UNITY_UNROLL [unroll] -#define UNITY_LOOP [loop] -#define UNITY_FASTOPT [fastopt] - -#define CBUFFER_START(name) ConstantBuffer name { -#define CBUFFER_END }; - -#if UNITY_GATHER_SUPPORTED - #define FXAA_HLSL_5 1 - #define SMAA_HLSL_4_1 1 -#else - #define FXAA_HLSL_4 1 - #define SMAA_HLSL_4 1 -#endif diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/PSSL.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/PSSL.hlsl.meta deleted file mode 100644 index e4424074c..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/PSSL.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 2399c8729aaf8344e8f9cf4721c5803a -timeCreated: 1489753963 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/Switch.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/Switch.hlsl deleted file mode 100644 index 875e6e098..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/Switch.hlsl +++ /dev/null @@ -1,51 +0,0 @@ -#define UNITY_UV_STARTS_AT_TOP 1 -#define UNITY_REVERSED_Z 1 -#define UNITY_GATHER_SUPPORTED (SHADER_TARGET >= 50) - -#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName -#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName - -#define TEXTURE2D(textureName) Texture2D textureName -#define SAMPLER2D(samplerName) SamplerState samplerName - -#define TEXTURE3D(textureName) Texture3D textureName -#define SAMPLER3D(samplerName) SamplerState samplerName - -#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName -#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName - -#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName -#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName - -#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) -#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) - -#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) - -#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) -#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) - -#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) -#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) -#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) -#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) - -#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r -#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r - -#define UNITY_BRANCH [branch] -#define UNITY_FLATTEN [flatten] -#define UNITY_UNROLL [unroll] -#define UNITY_LOOP [loop] -#define UNITY_FASTOPT [fastopt] - -#define CBUFFER_START(name) cbuffer name { -#define CBUFFER_END }; - -#if UNITY_GATHER_SUPPORTED - #define FXAA_HLSL_5 1 - #define SMAA_HLSL_4_1 1 -#else - #define FXAA_HLSL_4 1 - #define SMAA_HLSL_4 1 -#endif diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/Switch.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/Switch.hlsl.meta deleted file mode 100644 index aac604476..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/Switch.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 18095202690616846a484e633db69455 -ShaderImporter: - externalObjects: {} - defaultTextures: [] - nonModifiableTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/Vulkan.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/Vulkan.hlsl deleted file mode 100644 index 1982bcb36..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/Vulkan.hlsl +++ /dev/null @@ -1,52 +0,0 @@ -#define UNITY_UV_STARTS_AT_TOP 1 -#define UNITY_REVERSED_Z 1 -#define UNITY_GATHER_SUPPORTED (SHADER_TARGET >= 50) -#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 - -#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName -#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName - -#define TEXTURE2D(textureName) Texture2D textureName -#define SAMPLER2D(samplerName) SamplerState samplerName - -#define TEXTURE3D(textureName) Texture3D textureName -#define SAMPLER3D(samplerName) SamplerState samplerName - -#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName -#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName - -#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName -#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName - -#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) -#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) - -#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) - -#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) -#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) - -#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) -#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) -#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) -#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) - -#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r -#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r - -#define UNITY_BRANCH [branch] -#define UNITY_FLATTEN [flatten] -#define UNITY_UNROLL [unroll] -#define UNITY_LOOP [loop] -#define UNITY_FASTOPT [fastopt] - -#define CBUFFER_START(name) cbuffer name { -#define CBUFFER_END }; - -#if UNITY_GATHER_SUPPORTED - #define FXAA_HLSL_5 1 - #define SMAA_HLSL_4_1 1 -#else - #define FXAA_HLSL_4 1 - #define SMAA_HLSL_4 1 -#endif diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/Vulkan.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/Vulkan.hlsl.meta deleted file mode 100644 index 5c0078815..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/Vulkan.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 4f2b019548c499944923c5da221047a6 -timeCreated: 1489754021 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/XboxOne.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/XboxOne.hlsl deleted file mode 100644 index 1982bcb36..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/XboxOne.hlsl +++ /dev/null @@ -1,52 +0,0 @@ -#define UNITY_UV_STARTS_AT_TOP 1 -#define UNITY_REVERSED_Z 1 -#define UNITY_GATHER_SUPPORTED (SHADER_TARGET >= 50) -#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 - -#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName -#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName - -#define TEXTURE2D(textureName) Texture2D textureName -#define SAMPLER2D(samplerName) SamplerState samplerName - -#define TEXTURE3D(textureName) Texture3D textureName -#define SAMPLER3D(samplerName) SamplerState samplerName - -#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName -#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName - -#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName -#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName - -#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) -#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) - -#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) - -#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) -#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) - -#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) -#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) -#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) -#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) - -#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r -#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r - -#define UNITY_BRANCH [branch] -#define UNITY_FLATTEN [flatten] -#define UNITY_UNROLL [unroll] -#define UNITY_LOOP [loop] -#define UNITY_FASTOPT [fastopt] - -#define CBUFFER_START(name) cbuffer name { -#define CBUFFER_END }; - -#if UNITY_GATHER_SUPPORTED - #define FXAA_HLSL_5 1 - #define SMAA_HLSL_4_1 1 -#else - #define FXAA_HLSL_4 1 - #define SMAA_HLSL_4 1 -#endif diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/XboxOne.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/XboxOne.hlsl.meta deleted file mode 100644 index b9eb30408..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/API/XboxOne.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: cd7292cede5bbe44cb888e1e40efac1e -timeCreated: 1489754021 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins.meta deleted file mode 100644 index cc44d0edd..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 2ea9ecb99e9d2604c9c553b14e63a67f -folderAsset: yes -timeCreated: 1492175377 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/AutoExposure.compute b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/AutoExposure.compute deleted file mode 100644 index f87197de8..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/AutoExposure.compute +++ /dev/null @@ -1,88 +0,0 @@ -#pragma warning(disable : 3568) -#pragma exclude_renderers gles gles3 d3d11_9x - -#pragma kernel KAutoExposureAvgLuminance_fixed MAIN=KAutoExposureAvgLuminance_fixed -#pragma kernel KAutoExposureAvgLuminance_progressive MAIN=KAutoExposureAvgLuminance_progressive PROGRESSIVE - -#include "../StdLib.hlsl" -#include "ExposureHistogram.hlsl" - -StructuredBuffer _HistogramBuffer; -Texture2D _Source; -RWTexture2D _Destination; - -CBUFFER_START(Params) - float4 _Params1; // x: lowPercent, y: highPercent, z: minBrightness, w: maxBrightness - float4 _Params2; // x: speed down, y: speed up, z: exposure compensation, w: delta time - float4 _ScaleOffsetRes; // x: scale, y: offset, w: histogram pass width, h: histogram pass height -CBUFFER_END - -groupshared uint gs_pyramid[HISTOGRAM_REDUCTION_BINS]; - -float GetExposureMultiplier(float avgLuminance) -{ - avgLuminance = max(EPSILON, avgLuminance); - //float keyValue = 1.03 - (2.0 / (2.0 + log2(avgLuminance + 1.0))); - float keyValue = _Params2.z; - float exposure = keyValue / avgLuminance; - return exposure; -} - -float InterpolateExposure(float newExposure, float oldExposure) -{ - float delta = newExposure - oldExposure; - float speed = delta > 0.0 ? _Params2.x : _Params2.y; - float exposure = oldExposure + delta * (1.0 - exp2(-_Params2.w * speed)); - return exposure; -} - -#ifdef DISABLE_COMPUTE_SHADERS - -TRIVIAL_COMPUTE_KERNEL(MAIN) - -#else - -[numthreads(HISTOGRAM_REDUCTION_THREAD_X, HISTOGRAM_REDUCTION_THREAD_Y, 1)] -void MAIN(uint2 groupThreadId : SV_GroupThreadID) -{ -#if HISTOGRAM_REDUCTION_ALT_PATH - const uint thread_id = groupThreadId.y * HISTOGRAM_REDUCTION_THREAD_X + groupThreadId.x; - gs_pyramid[thread_id] = max(_HistogramBuffer[thread_id], _HistogramBuffer[thread_id + HISTOGRAM_REDUCTION_BINS]); -#else - const uint thread_id = groupThreadId.y * HISTOGRAM_REDUCTION_THREAD_X + groupThreadId.x; - gs_pyramid[thread_id] = _HistogramBuffer[thread_id]; -#endif - - GroupMemoryBarrierWithGroupSync(); - - // Parallel reduction to find the max value - UNITY_UNROLL - for (uint i = HISTOGRAM_REDUCTION_BINS >> 1u; i > 0u; i >>= 1u) - { - if (thread_id < i) - gs_pyramid[thread_id] = max(gs_pyramid[thread_id], gs_pyramid[thread_id + i]); - - GroupMemoryBarrierWithGroupSync(); - } - - GroupMemoryBarrierWithGroupSync(); - - if (thread_id == 0u) - { - float maxValue = 1.0 / float(gs_pyramid[0]); - -#if PROGRESSIVE - float avgLuminance = GetAverageLuminance(_HistogramBuffer, _Params1, maxValue, _ScaleOffsetRes.xy); - float exposure = GetExposureMultiplier(avgLuminance); - float prevExposure = _Source[uint2(0u, 0u)].x; - exposure = InterpolateExposure(exposure, prevExposure); - _Destination[uint2(0u, 0u)].x = exposure.x; -#else - float avgLuminance = GetAverageLuminance(_HistogramBuffer, _Params1, maxValue, _ScaleOffsetRes.xy); - float exposure = GetExposureMultiplier(avgLuminance); - _Destination[uint2(0u, 0u)].x = exposure.x; -#endif - } -} - -#endif // DISABLE_COMPUTE_SHADERS diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/AutoExposure.compute.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/AutoExposure.compute.meta deleted file mode 100644 index b5bf31667..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/AutoExposure.compute.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 34845e0ca016b7448842e965db5890a5 -timeCreated: 1519314976 -licenseType: Pro -ComputeShaderImporter: - currentAPIMask: 2228228 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Bloom.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Bloom.shader deleted file mode 100644 index 04ccc6fab..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Bloom.shader +++ /dev/null @@ -1,205 +0,0 @@ -Shader "Hidden/PostProcessing/Bloom" -{ - HLSLINCLUDE - - #include "../StdLib.hlsl" - #include "../Colors.hlsl" - #include "../Sampling.hlsl" - - TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); - TEXTURE2D_SAMPLER2D(_BloomTex, sampler_BloomTex); - TEXTURE2D_SAMPLER2D(_AutoExposureTex, sampler_AutoExposureTex); - - float4 _MainTex_TexelSize; - float _SampleScale; - float4 _ColorIntensity; - float4 _Threshold; // x: threshold value (linear), y: threshold - knee, z: knee * 2, w: 0.25 / knee - float4 _Params; // x: clamp, yzw: unused - - // ---------------------------------------------------------------------------------------- - // Prefilter - - half4 Prefilter(half4 color, float2 uv) - { - half autoExposure = SAMPLE_TEXTURE2D(_AutoExposureTex, sampler_AutoExposureTex, uv).r; - color *= autoExposure; - color = min(_Params.x, color); // clamp to max - color = QuadraticThreshold(color, _Threshold.x, _Threshold.yzw); - return color; - } - - half4 FragPrefilter13(VaryingsDefault i) : SV_Target - { - half4 color = DownsampleBox13Tap(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, UnityStereoAdjustedTexelSize(_MainTex_TexelSize).xy); - return Prefilter(SafeHDR(color), i.texcoord); - } - - half4 FragPrefilter4(VaryingsDefault i) : SV_Target - { - half4 color = DownsampleBox4Tap(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, UnityStereoAdjustedTexelSize(_MainTex_TexelSize).xy); - return Prefilter(SafeHDR(color), i.texcoord); - } - - // ---------------------------------------------------------------------------------------- - // Downsample - - half4 FragDownsample13(VaryingsDefault i) : SV_Target - { - half4 color = DownsampleBox13Tap(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, UnityStereoAdjustedTexelSize(_MainTex_TexelSize).xy); - return color; - } - - half4 FragDownsample4(VaryingsDefault i) : SV_Target - { - half4 color = DownsampleBox4Tap(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, UnityStereoAdjustedTexelSize(_MainTex_TexelSize).xy); - return color; - } - - // ---------------------------------------------------------------------------------------- - // Upsample & combine - - half4 Combine(half4 bloom, float2 uv) - { - half4 color = SAMPLE_TEXTURE2D(_BloomTex, sampler_BloomTex, uv); - return bloom + color; - } - - half4 FragUpsampleTent(VaryingsDefault i) : SV_Target - { - half4 bloom = UpsampleTent(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, UnityStereoAdjustedTexelSize(_MainTex_TexelSize).xy, _SampleScale); - return Combine(bloom, i.texcoordStereo); - } - - half4 FragUpsampleBox(VaryingsDefault i) : SV_Target - { - half4 bloom = UpsampleBox(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, UnityStereoAdjustedTexelSize(_MainTex_TexelSize).xy, _SampleScale); - return Combine(bloom, i.texcoordStereo); - } - - // ---------------------------------------------------------------------------------------- - // Debug overlays - - half4 FragDebugOverlayThreshold(VaryingsDefault i) : SV_Target - { - half4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); - return half4(Prefilter(SafeHDR(color), i.texcoord).rgb, 1.0); - } - - half4 FragDebugOverlayTent(VaryingsDefault i) : SV_Target - { - half4 bloom = UpsampleTent(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, UnityStereoAdjustedTexelSize(_MainTex_TexelSize).xy, _SampleScale); - return half4(bloom.rgb * _ColorIntensity.w * _ColorIntensity.rgb, 1.0); - } - - half4 FragDebugOverlayBox(VaryingsDefault i) : SV_Target - { - half4 bloom = UpsampleBox(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, UnityStereoAdjustedTexelSize(_MainTex_TexelSize).xy, _SampleScale); - return half4(bloom.rgb * _ColorIntensity.w * _ColorIntensity.rgb, 1.0); - } - - ENDHLSL - - SubShader - { - Cull Off ZWrite Off ZTest Always - - // 0: Prefilter 13 taps - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragPrefilter13 - - ENDHLSL - } - - // 1: Prefilter 4 taps - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragPrefilter4 - - ENDHLSL - } - - // 2: Downsample 13 taps - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragDownsample13 - - ENDHLSL - } - - // 3: Downsample 4 taps - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragDownsample4 - - ENDHLSL - } - - // 4: Upsample tent filter - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragUpsampleTent - - ENDHLSL - } - - // 5: Upsample box filter - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragUpsampleBox - - ENDHLSL - } - - // 6: Debug overlay (threshold) - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragDebugOverlayThreshold - - ENDHLSL - } - - // 7: Debug overlay (tent filter) - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragDebugOverlayTent - - ENDHLSL - } - - // 8: Debug overlay (box filter) - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragDebugOverlayBox - - ENDHLSL - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Bloom.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Bloom.shader.meta deleted file mode 100644 index a3ce4f078..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Bloom.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: c1e1d3119c6fd4646aea0b4b74cacc1a -timeCreated: 1489940191 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Copy.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Copy.shader deleted file mode 100644 index 41a21c745..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Copy.shader +++ /dev/null @@ -1,55 +0,0 @@ -Shader "Hidden/PostProcessing/Copy" -{ - HLSLINCLUDE - - #include "../StdLib.hlsl" - - TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); - - float4 Frag(VaryingsDefault i) : SV_Target - { - float4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); - return color; - } - - float4 FragKillNaN(VaryingsDefault i) : SV_Target - { - float4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); - - if (AnyIsNan(color)) - { - color = (0.0).xxxx; - } - - return color; - } - - ENDHLSL - - SubShader - { - Cull Off ZWrite Off ZTest Always - - // 0 - Fullscreen triangle copy - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment Frag - - ENDHLSL - } - - // 1 - Fullscreen triangle copy + NaN killer - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragKillNaN - - ENDHLSL - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Copy.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Copy.shader.meta deleted file mode 100644 index d5502308d..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Copy.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: cdbdb71de5f9c454b980f6d0e87f0afb -timeCreated: 1489880150 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/CopyStd.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/CopyStd.shader deleted file mode 100644 index 7f2f4ec4f..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/CopyStd.shader +++ /dev/null @@ -1,105 +0,0 @@ -Shader "Hidden/PostProcessing/CopyStd" -{ - // - // We need this shader for the very first RT blit using the internal CommandBuffer.Blit() method - // so it can handle AAResolve properly. We also need it to be separate because of VR and the - // need for a Properties block. If we were to add this block to the other Copy shader it would - // not allow us to manually bind _MainTex, thus breaking a few other things in the process... - // - - Properties - { - _MainTex ("", 2D) = "white" {} - } - - CGINCLUDE - - struct Attributes - { - float4 vertex : POSITION; - float2 texcoord : TEXCOORD0; - }; - - struct Varyings - { - float4 vertex : SV_POSITION; - float2 texcoord : TEXCOORD0; - }; - - sampler2D _MainTex; - float4 _MainTex_ST; - - Varyings Vert(Attributes v) - { - Varyings o; - o.vertex = float4(v.vertex.xy * 2.0 - 1.0, 0.0, 1.0); - o.texcoord = v.texcoord; - - #if UNITY_UV_STARTS_AT_TOP - o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); - #endif - - o.texcoord = o.texcoord * _MainTex_ST.xy + _MainTex_ST.zw; // We need this for VR - - return o; - } - - float4 Frag(Varyings i) : SV_Target - { - float4 color = tex2D(_MainTex, i.texcoord); - return color; - } - - //>>> We don't want to include StdLib.hlsl in this file so let's copy/paste what we need - bool IsNan(float x) - { - return (x < 0.0 || x > 0.0 || x == 0.0) ? false : true; - } - - bool AnyIsNan(float4 x) - { - return IsNan(x.x) || IsNan(x.y) || IsNan(x.z) || IsNan(x.w); - } - //<<< - - float4 FragKillNaN(Varyings i) : SV_Target - { - float4 color = tex2D(_MainTex, i.texcoord); - - if (AnyIsNan(color)) - { - color = (0.0).xxxx; - } - - return color; - } - - ENDCG - - SubShader - { - Cull Off ZWrite Off ZTest Always - - // 0 - Copy - Pass - { - CGPROGRAM - - #pragma vertex Vert - #pragma fragment Frag - - ENDCG - } - - // 1 - Copy + NaN killer - Pass - { - CGPROGRAM - - #pragma vertex Vert - #pragma fragment FragKillNaN - - ENDCG - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/CopyStd.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/CopyStd.shader.meta deleted file mode 100644 index 3107ddab9..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/CopyStd.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 4bf4cff0d0bac3d43894e2e8839feb40 -timeCreated: 1502891195 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/CopyStdFromDoubleWide.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/CopyStdFromDoubleWide.shader deleted file mode 100644 index e84087526..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/CopyStdFromDoubleWide.shader +++ /dev/null @@ -1,101 +0,0 @@ -Shader "Hidden/PostProcessing/CopyStdFromDoubleWide" -{ - //Blit from single-pass double-wide texture. Similar to CopyStd but with stereo texture as source - //and samples from double-wide. Having separate shader is cleaner than multiple #if in the code. - - Properties - { - _MainTex ("", 2D) = "white" {} - } - - CGINCLUDE - - struct Attributes - { - float4 vertex : POSITION; - float2 texcoord : TEXCOORD0; - }; - - struct Varyings - { - float4 vertex : SV_POSITION; - float2 texcoord : TEXCOORD0; - }; - - sampler2D _MainTex; - float4 _UVScaleOffset; - - Varyings Vert(Attributes v) - { - Varyings o; - o.vertex = float4(v.vertex.xy * 2.0 - 1.0, 0.0, 1.0); - o.texcoord = v.texcoord; - - #if UNITY_UV_STARTS_AT_TOP - o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); - #endif - - o.texcoord = o.texcoord * _UVScaleOffset.xy + _UVScaleOffset.zw; - - return o; - } - - float4 Frag(Varyings i) : SV_Target - { - float4 color = tex2D(_MainTex, i.texcoord); - return color; - } - - //>>> We don't want to include StdLib.hlsl in this file so let's copy/paste what we need - bool IsNan(float x) - { - return (x < 0.0 || x > 0.0 || x == 0.0) ? false : true; - } - - bool AnyIsNan(float4 x) - { - return IsNan(x.x) || IsNan(x.y) || IsNan(x.z) || IsNan(x.w); - } - //<<< - - float4 FragKillNaN(Varyings i) : SV_Target - { - float4 color = tex2D(_MainTex, i.texcoord); - - if (AnyIsNan(color)) - { - color = (0.0).xxxx; - } - - return color; - } - - ENDCG - - SubShader - { - Cull Off ZWrite Off ZTest Always - - // 0 - Copy - Pass - { - CGPROGRAM - - #pragma vertex Vert - #pragma fragment Frag - - ENDCG - } - - // 1 - Copy + NaN killer - Pass - { - CGPROGRAM - - #pragma vertex Vert - #pragma fragment FragKillNaN - - ENDCG - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/CopyStdFromDoubleWide.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/CopyStdFromDoubleWide.shader.meta deleted file mode 100644 index a76978545..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/CopyStdFromDoubleWide.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: e8ce9961912f3214586fe8709b9012c1 -ShaderImporter: - externalObjects: {} - defaultTextures: [] - nonModifiableTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/CopyStdFromTexArray.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/CopyStdFromTexArray.shader deleted file mode 100644 index 12330427a..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/CopyStdFromTexArray.shader +++ /dev/null @@ -1,105 +0,0 @@ -Shader "Hidden/PostProcessing/CopyStdFromTexArray" -{ - //Blit from texture array slice. Similar to CopyStd but with texture array as source - //and sampling from texture array. Having separate shader is cleaner than multiple #if in the code. - - Properties - { - _MainTex ("", 2DArray) = "white" {} - } - - CGINCLUDE - #pragma target 3.5 - - struct Attributes - { - float3 vertex : POSITION; - }; - - struct Varyings - { - float4 vertex : SV_POSITION; - float3 texcoord : TEXCOORD0; - }; - - Texture2DArray _MainTex; - SamplerState sampler_MainTex; - float _DepthSlice; - - float2 TransformTriangleVertexToUV(float2 vertex) - { - float2 uv = (vertex + 1.0) * 0.5; - return uv; - } - - Varyings Vert(Attributes v) - { - Varyings o; - o.vertex = float4(v.vertex.xy, 0.0, 1.0); - o.texcoord.xy = TransformTriangleVertexToUV(v.vertex.xy); - - #if UNITY_UV_STARTS_AT_TOP - o.texcoord.xy = o.texcoord.xy * float2(1.0, -1.0) + float2(0.0, 1.0); - #endif - o.texcoord.z = _DepthSlice; - - return o; - } - - float4 Frag(Varyings i) : SV_Target - { - float4 color = _MainTex.Sample(sampler_MainTex, i.texcoord); - return color; - } - - bool IsNan(float x) - { - return (x < 0.0 || x > 0.0 || x == 0.0) ? false : true; - } - - bool AnyIsNan(float4 x) - { - return IsNan(x.x) || IsNan(x.y) || IsNan(x.z) || IsNan(x.w); - } - - float4 FragKillNaN(Varyings i) : SV_Target - { - float4 color = _MainTex.Sample(sampler_MainTex, i.texcoord); - - if (AnyIsNan(color)) - { - color = (0.0).xxxx; - } - - return color; - } - - ENDCG - - SubShader - { - Cull Off ZWrite Off ZTest Always - - // 0 - Copy - Pass - { - CGPROGRAM - - #pragma vertex Vert - #pragma fragment Frag - - ENDCG - } - - // 0 - Copy + NaN killer - Pass - { - CGPROGRAM - - #pragma vertex Vert - #pragma fragment FragKillNaN - - ENDCG - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/CopyStdFromTexArray.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/CopyStdFromTexArray.shader.meta deleted file mode 100644 index f598e8e7c..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/CopyStdFromTexArray.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 02d2da9bc88d25c4d878c1ed4e0b3854 -ShaderImporter: - externalObjects: {} - defaultTextures: [] - nonModifiableTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DeferredFog.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DeferredFog.shader deleted file mode 100644 index 055fd1f82..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DeferredFog.shader +++ /dev/null @@ -1,65 +0,0 @@ -Shader "Hidden/PostProcessing/DeferredFog" -{ - HLSLINCLUDE - - #pragma multi_compile __ FOG_LINEAR FOG_EXP FOG_EXP2 - #include "../StdLib.hlsl" - #include "Fog.hlsl" - - TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); - TEXTURE2D_SAMPLER2D(_CameraDepthTexture, sampler_CameraDepthTexture); - - #define SKYBOX_THREASHOLD_VALUE 0.9999 - - float4 Frag(VaryingsDefault i) : SV_Target - { - half4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); - - float depth = SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoordStereo); - depth = Linear01Depth(depth); - float dist = ComputeFogDistance(depth); - half fog = 1.0 - ComputeFog(dist); - - return lerp(color, _FogColor, fog); - } - - float4 FragExcludeSkybox(VaryingsDefault i) : SV_Target - { - half4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); - - float depth = SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoordStereo); - depth = Linear01Depth(depth); - float skybox = depth < SKYBOX_THREASHOLD_VALUE; - float dist = ComputeFogDistance(depth); - half fog = 1.0 - ComputeFog(dist); - - return lerp(color, _FogColor, fog * skybox); - } - - ENDHLSL - - SubShader - { - Cull Off ZWrite Off ZTest Always - - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment Frag - - ENDHLSL - } - - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragExcludeSkybox - - ENDHLSL - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DeferredFog.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DeferredFog.shader.meta deleted file mode 100644 index 96a19d7f4..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DeferredFog.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 4117fce9491711c4094d33a048e36e73 -timeCreated: 1498468345 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DepthOfField.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DepthOfField.hlsl deleted file mode 100644 index 57c597fa9..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DepthOfField.hlsl +++ /dev/null @@ -1,271 +0,0 @@ -#ifndef UNITY_POSTFX_DEPTH_OF_FIELD -#define UNITY_POSTFX_DEPTH_OF_FIELD - -#include "../StdLib.hlsl" -#include "../Colors.hlsl" -#include "DiskKernels.hlsl" - -TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); -float4 _MainTex_TexelSize; - -TEXTURE2D_SAMPLER2D(_CameraDepthTexture, sampler_CameraDepthTexture); -TEXTURE2D_SAMPLER2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture); - -TEXTURE2D_SAMPLER2D(_CoCTex, sampler_CoCTex); - -TEXTURE2D_SAMPLER2D(_DepthOfFieldTex, sampler_DepthOfFieldTex); -float4 _DepthOfFieldTex_TexelSize; - -// Camera parameters -float _Distance; -float _LensCoeff; // f^2 / (N * (S1 - f) * film_width * 2) -float _MaxCoC; -float _RcpMaxCoC; -float _RcpAspect; -half3 _TaaParams; // Jitter.x, Jitter.y, Blending - -// CoC calculation -half4 FragCoC(VaryingsDefault i) : SV_Target -{ - float depth = LinearEyeDepth(SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoordStereo)); - half coc = (depth - _Distance) * _LensCoeff / max(depth, 1e-5); - return saturate(coc * 0.5 * _RcpMaxCoC + 0.5); -} - -// Temporal filter -half4 FragTempFilter(VaryingsDefault i) : SV_Target -{ - float3 uvOffs = _MainTex_TexelSize.xyy * float3(1.0, 1.0, 0.0); - -#if UNITY_GATHER_SUPPORTED - - half4 cocTL = GATHER_RED_TEXTURE2D(_CoCTex, sampler_CoCTex, UnityStereoTransformScreenSpaceTex(i.texcoord - uvOffs.xy * 0.5)); // top-left - half4 cocBR = GATHER_RED_TEXTURE2D(_CoCTex, sampler_CoCTex, UnityStereoTransformScreenSpaceTex(i.texcoord + uvOffs.xy * 0.5)); // bottom-right - half coc1 = cocTL.x; // top - half coc2 = cocTL.z; // left - half coc3 = cocBR.x; // bottom - half coc4 = cocBR.z; // right - -#else - - half coc1 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, UnityStereoTransformScreenSpaceTex(i.texcoord - uvOffs.xz)).r; // top - half coc2 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, UnityStereoTransformScreenSpaceTex(i.texcoord - uvOffs.zy)).r; // left - half coc3 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, UnityStereoTransformScreenSpaceTex(i.texcoord + uvOffs.zy)).r; // bottom - half coc4 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, UnityStereoTransformScreenSpaceTex(i.texcoord + uvOffs.xz)).r; // right - -#endif - - // Dejittered center sample. - half coc0 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, UnityStereoTransformScreenSpaceTex(i.texcoord - _TaaParams.xy)).r; - - // CoC dilation: determine the closest point in the four neighbors - float3 closest = float3(0.0, 0.0, coc0); - closest = coc1 < closest.z ? float3(-uvOffs.xz, coc1) : closest; - closest = coc2 < closest.z ? float3(-uvOffs.zy, coc2) : closest; - closest = coc3 < closest.z ? float3( uvOffs.zy, coc3) : closest; - closest = coc4 < closest.z ? float3( uvOffs.xz, coc4) : closest; - - // Sample the history buffer with the motion vector at the closest point - float2 motion = SAMPLE_TEXTURE2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture, UnityStereoTransformScreenSpaceTex(i.texcoord + closest.xy)).xy; - half cocHis = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord - motion)).r; - - // Neighborhood clamping - half cocMin = closest.z; - half cocMax = Max3(Max3(coc0, coc1, coc2), coc3, coc4); - cocHis = clamp(cocHis, cocMin, cocMax); - - // Blend with the history - return lerp(coc0, cocHis, _TaaParams.z); -} - -// Prefilter: downsampling and premultiplying -half4 FragPrefilter(VaryingsDefault i) : SV_Target -{ -#if UNITY_GATHER_SUPPORTED - - // Sample source colors - half4 c_r = GATHER_RED_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); - half4 c_g = GATHER_GREEN_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); - half4 c_b = GATHER_BLUE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); - - half3 c0 = half3(c_r.x, c_g.x, c_b.x); - half3 c1 = half3(c_r.y, c_g.y, c_b.y); - half3 c2 = half3(c_r.z, c_g.z, c_b.z); - half3 c3 = half3(c_r.w, c_g.w, c_b.w); - - // Sample CoCs - half4 cocs = GATHER_TEXTURE2D(_CoCTex, sampler_CoCTex, i.texcoordStereo) * 2.0 - 1.0; - half coc0 = cocs.x; - half coc1 = cocs.y; - half coc2 = cocs.z; - half coc3 = cocs.w; - -#else - - float3 duv = _MainTex_TexelSize.xyx * float3(0.5, 0.5, -0.5); - float2 uv0 = UnityStereoTransformScreenSpaceTex(i.texcoord - duv.xy); - float2 uv1 = UnityStereoTransformScreenSpaceTex(i.texcoord - duv.zy); - float2 uv2 = UnityStereoTransformScreenSpaceTex(i.texcoord + duv.zy); - float2 uv3 = UnityStereoTransformScreenSpaceTex(i.texcoord + duv.xy); - - // Sample source colors - half3 c0 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv0).rgb; - half3 c1 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv1).rgb; - half3 c2 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv2).rgb; - half3 c3 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv3).rgb; - - // Sample CoCs - half coc0 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, uv0).r * 2.0 - 1.0; - half coc1 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, uv1).r * 2.0 - 1.0; - half coc2 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, uv2).r * 2.0 - 1.0; - half coc3 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, uv3).r * 2.0 - 1.0; - -#endif - - // Apply CoC and luma weights to reduce bleeding and flickering - float w0 = abs(coc0) / (Max3(c0.r, c0.g, c0.b) + 1.0); - float w1 = abs(coc1) / (Max3(c1.r, c1.g, c1.b) + 1.0); - float w2 = abs(coc2) / (Max3(c2.r, c2.g, c2.b) + 1.0); - float w3 = abs(coc3) / (Max3(c3.r, c3.g, c3.b) + 1.0); - - // Weighted average of the color samples - half3 avg = c0 * w0 + c1 * w1 + c2 * w2 + c3 * w3; - avg /= max(w0 + w1 + w2 + w3, 1e-5); - - // Select the largest CoC value - half coc_min = min(coc0, Min3(coc1, coc2, coc3)); - half coc_max = max(coc0, Max3(coc1, coc2, coc3)); - half coc = (-coc_min > coc_max ? coc_min : coc_max) * _MaxCoC; - - // Premultiply CoC again - avg *= smoothstep(0, _MainTex_TexelSize.y * 2, abs(coc)); - -#if defined(UNITY_COLORSPACE_GAMMA) - avg = SRGBToLinear(avg); -#endif - - return half4(avg, coc); -} - -// Bokeh filter with disk-shaped kernels -half4 FragBlur(VaryingsDefault i) : SV_Target -{ - half4 samp0 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); - - half4 bgAcc = 0.0; // Background: far field bokeh - half4 fgAcc = 0.0; // Foreground: near field bokeh - - UNITY_LOOP - for (int si = 0; si < kSampleCount; si++) - { - float2 disp = kDiskKernel[si] * _MaxCoC; - float dist = length(disp); - - float2 duv = float2(disp.x * _RcpAspect, disp.y); - half4 samp = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + duv)); - - // BG: Compare CoC of the current sample and the center sample - // and select smaller one. - half bgCoC = max(min(samp0.a, samp.a), 0.0); - - // Compare the CoC to the sample distance. - // Add a small margin to smooth out. - const half margin = _MainTex_TexelSize.y * 2; - half bgWeight = saturate((bgCoC - dist + margin) / margin); - half fgWeight = saturate((-samp.a - dist + margin) / margin); - - // Cut influence from focused areas because they're darkened by CoC - // premultiplying. This is only needed for near field. - fgWeight *= step(_MainTex_TexelSize.y, -samp.a); - - // Accumulation - bgAcc += half4(samp.rgb, 1.0) * bgWeight; - fgAcc += half4(samp.rgb, 1.0) * fgWeight; - } - - // Get the weighted average. - bgAcc.rgb /= bgAcc.a + (bgAcc.a == 0.0); // zero-div guard - fgAcc.rgb /= fgAcc.a + (fgAcc.a == 0.0); - - // BG: Calculate the alpha value only based on the center CoC. - // This is a rather aggressive approximation but provides stable results. - bgAcc.a = smoothstep(_MainTex_TexelSize.y, _MainTex_TexelSize.y * 2.0, samp0.a); - - // FG: Normalize the total of the weights. - fgAcc.a *= PI / kSampleCount; - - // Alpha premultiplying - half alpha = saturate(fgAcc.a); - half3 rgb = lerp(bgAcc.rgb, fgAcc.rgb, alpha); - - return half4(rgb, alpha); -} - -// Postfilter blur -half4 FragPostBlur(VaryingsDefault i) : SV_Target -{ - // 9 tap tent filter with 4 bilinear samples - const float4 duv = _MainTex_TexelSize.xyxy * float4(0.5, 0.5, -0.5, 0); - half4 acc; - acc = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord - duv.xy)); - acc += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord - duv.zy)); - acc += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + duv.zy)); - acc += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + duv.xy)); - return acc / 4.0; -} - -// Combine with source -half4 FragCombine(VaryingsDefault i) : SV_Target -{ - half4 dof = SAMPLE_TEXTURE2D(_DepthOfFieldTex, sampler_DepthOfFieldTex, i.texcoordStereo); - half coc = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, i.texcoordStereo).r; - coc = (coc - 0.5) * 2.0 * _MaxCoC; - - // Convert CoC to far field alpha value. - float ffa = smoothstep(_MainTex_TexelSize.y * 2.0, _MainTex_TexelSize.y * 4.0, coc); - - half4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); - -#if defined(UNITY_COLORSPACE_GAMMA) - color = SRGBToLinear(color); -#endif - - half alpha = Max3(dof.r, dof.g, dof.b); - - // lerp(lerp(color, dof, ffa), dof, dof.a) - color = lerp(color, float4(dof.rgb, alpha), ffa + dof.a - ffa * dof.a); - -#if defined(UNITY_COLORSPACE_GAMMA) - color = LinearToSRGB(color); -#endif - - return color; -} - -// Debug overlay -half4 FragDebugOverlay(VaryingsDefault i) : SV_Target -{ - half3 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo).rgb; - - // Calculate the radiuses of CoC. - half4 src = SAMPLE_TEXTURE2D(_DepthOfFieldTex, sampler_DepthOfFieldTex, i.texcoordStereo); - float depth = LinearEyeDepth(SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoordStereo)); - float coc = (depth - _Distance) * _LensCoeff / depth; - coc *= 80; - - // Visualize CoC (white -> red -> gray) - half3 rgb = lerp(half3(1.0, 0.0, 0.0), half3(1.0, 1.0, 1.0), saturate(-coc)); - rgb = lerp(rgb, half3(0.4, 0.4, 0.4), saturate(coc)); - - // Black and white image overlay - rgb *= Luminance(color) + 0.5; - - // Gamma correction -#if !UNITY_COLORSPACE_GAMMA - rgb = SRGBToLinear(rgb); -#endif - - return half4(rgb, 1.0); -} - -#endif // UNITY_POSTFX_DEPTH_OF_FIELD diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DepthOfField.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DepthOfField.hlsl.meta deleted file mode 100644 index b5627011c..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DepthOfField.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 4ae2d18891fcdd2408b0c1f3f2038c62 -timeCreated: 1491839887 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DepthOfField.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DepthOfField.shader deleted file mode 100644 index d2508aacc..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DepthOfField.shader +++ /dev/null @@ -1,265 +0,0 @@ -Shader "Hidden/PostProcessing/DepthOfField" -{ - // SubShader with SM 5.0 support - // DX11+, OpenGL 4.3+, OpenGL ES 3.1+AEP, Vulkan, consoles - // Gather intrinsics are used to reduce texture sample count. - SubShader - { - Cull Off ZWrite Off ZTest Always - - Pass // 0 - { - Name "CoC Calculation" - - HLSLPROGRAM - #pragma target 3.5 - #pragma vertex VertDefault - #pragma fragment FragCoC - #include "DepthOfField.hlsl" - ENDHLSL - } - - Pass // 1 - { - Name "CoC Temporal Filter" - - HLSLPROGRAM - #pragma target 5.0 - #pragma vertex VertDefault - #pragma fragment FragTempFilter - #include "DepthOfField.hlsl" - ENDHLSL - } - - Pass // 2 - { - Name "Downsample and Prefilter" - - HLSLPROGRAM - #pragma target 5.0 - #pragma vertex VertDefault - #pragma fragment FragPrefilter - #include "DepthOfField.hlsl" - ENDHLSL - } - - Pass // 3 - { - Name "Bokeh Filter (small)" - - HLSLPROGRAM - #pragma target 3.5 - #pragma vertex VertDefault - #pragma fragment FragBlur - #define KERNEL_SMALL - #include "DepthOfField.hlsl" - ENDHLSL - } - - Pass // 4 - { - Name "Bokeh Filter (medium)" - - HLSLPROGRAM - #pragma target 3.5 - #pragma vertex VertDefault - #pragma fragment FragBlur - #define KERNEL_MEDIUM - #include "DepthOfField.hlsl" - ENDHLSL - } - - Pass // 5 - { - Name "Bokeh Filter (large)" - - HLSLPROGRAM - #pragma target 3.5 - #pragma vertex VertDefault - #pragma fragment FragBlur - #define KERNEL_LARGE - #include "DepthOfField.hlsl" - ENDHLSL - } - - Pass // 6 - { - Name "Bokeh Filter (very large)" - - HLSLPROGRAM - #pragma target 3.5 - #pragma vertex VertDefault - #pragma fragment FragBlur - #define KERNEL_VERYLARGE - #include "DepthOfField.hlsl" - ENDHLSL - } - - Pass // 7 - { - Name "Postfilter" - - HLSLPROGRAM - #pragma target 3.5 - #pragma vertex VertDefault - #pragma fragment FragPostBlur - #include "DepthOfField.hlsl" - ENDHLSL - } - - Pass // 8 - { - Name "Combine" - - HLSLPROGRAM - #pragma target 3.5 - #pragma vertex VertDefault - #pragma fragment FragCombine - #include "DepthOfField.hlsl" - ENDHLSL - } - - Pass // 9 - { - Name "Debug Overlay" - - HLSLPROGRAM - #pragma target 3.5 - #pragma vertex VertDefault - #pragma fragment FragDebugOverlay - #include "DepthOfField.hlsl" - ENDHLSL - } - } - - // Fallback SubShader with SM 3.5 - // DX11+, OpenGL 3.2+, OpenGL ES 3+, Metal, Vulkan, consoles - SubShader - { - Cull Off ZWrite Off ZTest Always - - Pass // 0 - { - Name "CoC Calculation" - - HLSLPROGRAM - #pragma target 3.5 - #pragma vertex VertDefault - #pragma fragment FragCoC - #include "DepthOfField.hlsl" - ENDHLSL - } - - Pass // 1 - { - Name "CoC Temporal Filter" - - HLSLPROGRAM - #pragma target 3.5 - #pragma vertex VertDefault - #pragma fragment FragTempFilter - #include "DepthOfField.hlsl" - ENDHLSL - } - - Pass // 2 - { - Name "Downsample and Prefilter" - - HLSLPROGRAM - #pragma target 3.5 - #pragma vertex VertDefault - #pragma fragment FragPrefilter - #include "DepthOfField.hlsl" - ENDHLSL - } - - Pass // 3 - { - Name "Bokeh Filter (small)" - - HLSLPROGRAM - #pragma target 3.5 - #pragma vertex VertDefault - #pragma fragment FragBlur - #define KERNEL_SMALL - #include "DepthOfField.hlsl" - ENDHLSL - } - - Pass // 4 - { - Name "Bokeh Filter (medium)" - - HLSLPROGRAM - #pragma target 3.5 - #pragma vertex VertDefault - #pragma fragment FragBlur - #define KERNEL_MEDIUM - #include "DepthOfField.hlsl" - ENDHLSL - } - - Pass // 5 - { - Name "Bokeh Filter (large)" - - HLSLPROGRAM - #pragma target 3.5 - #pragma vertex VertDefault - #pragma fragment FragBlur - #define KERNEL_LARGE - #include "DepthOfField.hlsl" - ENDHLSL - } - - Pass // 6 - { - Name "Bokeh Filter (very large)" - - HLSLPROGRAM - #pragma target 3.5 - #pragma vertex VertDefault - #pragma fragment FragBlur - #define KERNEL_VERYLARGE - #include "DepthOfField.hlsl" - ENDHLSL - } - - Pass // 7 - { - Name "Postfilter" - - HLSLPROGRAM - #pragma target 3.5 - #pragma vertex VertDefault - #pragma fragment FragPostBlur - #include "DepthOfField.hlsl" - ENDHLSL - } - - Pass // 8 - { - Name "Combine" - - HLSLPROGRAM - #pragma target 3.5 - #pragma vertex VertDefault - #pragma fragment FragCombine - #include "DepthOfField.hlsl" - ENDHLSL - } - - Pass // 9 - { - Name "Debug Overlay" - - HLSLPROGRAM - #pragma target 3.5 - #pragma vertex VertDefault - #pragma fragment FragDebugOverlay - #include "DepthOfField.hlsl" - ENDHLSL - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DepthOfField.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DepthOfField.shader.meta deleted file mode 100644 index 60a2b3805..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DepthOfField.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 0ef78d24e85a44f4da9d5b5eaa00e50b -timeCreated: 1491838816 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DiscardAlpha.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DiscardAlpha.shader deleted file mode 100644 index ff2e70282..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DiscardAlpha.shader +++ /dev/null @@ -1,31 +0,0 @@ -Shader "Hidden/PostProcessing/DiscardAlpha" -{ - HLSLINCLUDE - - #include "../StdLib.hlsl" - - TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); - - float4 Frag(VaryingsDefault i) : SV_Target - { - float4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); - return float4(color.rgb, 1.0); - } - - ENDHLSL - - SubShader - { - Cull Off ZWrite Off ZTest Always - - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment Frag - - ENDHLSL - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DiscardAlpha.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DiscardAlpha.shader.meta deleted file mode 100644 index 9e59224fe..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DiscardAlpha.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 5ab0816423f0dfe45841cab3b05ec9ef -timeCreated: 1496835037 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DiskKernels.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DiskKernels.hlsl deleted file mode 100644 index b817ce852..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DiskKernels.hlsl +++ /dev/null @@ -1,204 +0,0 @@ -#ifndef UNITY_POSTFX_DISK_KERNELS -#define UNITY_POSTFX_DISK_KERNELS - -#if !defined(KERNEL_SMALL) && !defined(KERNEL_MEDIUM) && \ - !defined(KERNEL_LARGE) && !defined(KERNEL_VERYLARGE) - -static const int kSampleCount = 1; -static const float2 kDiskKernel[1] = { float2(0, 0) }; - -#endif - -#if defined(KERNEL_SMALL) - -// rings = 2 -// points per ring = 5 -static const int kSampleCount = 16; -static const float2 kDiskKernel[kSampleCount] = { - float2(0,0), - float2(0.54545456,0), - float2(0.16855472,0.5187581), - float2(-0.44128203,0.3206101), - float2(-0.44128197,-0.3206102), - float2(0.1685548,-0.5187581), - float2(1,0), - float2(0.809017,0.58778524), - float2(0.30901697,0.95105654), - float2(-0.30901703,0.9510565), - float2(-0.80901706,0.5877852), - float2(-1,0), - float2(-0.80901694,-0.58778536), - float2(-0.30901664,-0.9510566), - float2(0.30901712,-0.9510565), - float2(0.80901694,-0.5877853), -}; - -#endif - -#if defined(KERNEL_MEDIUM) - -// rings = 3 -// points per ring = 7 -static const int kSampleCount = 22; -static const float2 kDiskKernel[kSampleCount] = { - float2(0,0), - float2(0.53333336,0), - float2(0.3325279,0.4169768), - float2(-0.11867785,0.5199616), - float2(-0.48051673,0.2314047), - float2(-0.48051673,-0.23140468), - float2(-0.11867763,-0.51996166), - float2(0.33252785,-0.4169769), - float2(1,0), - float2(0.90096885,0.43388376), - float2(0.6234898,0.7818315), - float2(0.22252098,0.9749279), - float2(-0.22252095,0.9749279), - float2(-0.62349,0.7818314), - float2(-0.90096885,0.43388382), - float2(-1,0), - float2(-0.90096885,-0.43388376), - float2(-0.6234896,-0.7818316), - float2(-0.22252055,-0.974928), - float2(0.2225215,-0.9749278), - float2(0.6234897,-0.7818316), - float2(0.90096885,-0.43388376), -}; - -#endif - -#if defined(KERNEL_LARGE) - -// rings = 4 -// points per ring = 7 -static const int kSampleCount = 43; -static const float2 kDiskKernel[kSampleCount] = { - float2(0,0), - float2(0.36363637,0), - float2(0.22672357,0.28430238), - float2(-0.08091671,0.35451925), - float2(-0.32762504,0.15777594), - float2(-0.32762504,-0.15777591), - float2(-0.08091656,-0.35451928), - float2(0.22672352,-0.2843024), - float2(0.6818182,0), - float2(0.614297,0.29582983), - float2(0.42510667,0.5330669), - float2(0.15171885,0.6647236), - float2(-0.15171883,0.6647236), - float2(-0.4251068,0.53306687), - float2(-0.614297,0.29582986), - float2(-0.6818182,0), - float2(-0.614297,-0.29582983), - float2(-0.42510656,-0.53306705), - float2(-0.15171856,-0.66472363), - float2(0.1517192,-0.6647235), - float2(0.4251066,-0.53306705), - float2(0.614297,-0.29582983), - float2(1,0), - float2(0.9555728,0.2947552), - float2(0.82623875,0.5633201), - float2(0.6234898,0.7818315), - float2(0.36534098,0.93087375), - float2(0.07473,0.9972038), - float2(-0.22252095,0.9749279), - float2(-0.50000006,0.8660254), - float2(-0.73305196,0.6801727), - float2(-0.90096885,0.43388382), - float2(-0.98883086,0.14904208), - float2(-0.9888308,-0.14904249), - float2(-0.90096885,-0.43388376), - float2(-0.73305184,-0.6801728), - float2(-0.4999999,-0.86602545), - float2(-0.222521,-0.9749279), - float2(0.07473029,-0.99720377), - float2(0.36534148,-0.9308736), - float2(0.6234897,-0.7818316), - float2(0.8262388,-0.56332), - float2(0.9555729,-0.29475483), -}; - -#endif - -#if defined(KERNEL_VERYLARGE) - -// rings = 5 -// points per ring = 7 -static const int kSampleCount = 71; -static const float2 kDiskKernel[kSampleCount] = { - float2(0,0), - float2(0.2758621,0), - float2(0.1719972,0.21567768), - float2(-0.061385095,0.26894566), - float2(-0.24854316,0.1196921), - float2(-0.24854316,-0.11969208), - float2(-0.061384983,-0.2689457), - float2(0.17199717,-0.21567771), - float2(0.51724136,0), - float2(0.46601835,0.22442262), - float2(0.32249472,0.40439558), - float2(0.11509705,0.50427306), - float2(-0.11509704,0.50427306), - float2(-0.3224948,0.40439552), - float2(-0.46601835,0.22442265), - float2(-0.51724136,0), - float2(-0.46601835,-0.22442262), - float2(-0.32249463,-0.40439564), - float2(-0.11509683,-0.5042731), - float2(0.11509732,-0.504273), - float2(0.32249466,-0.40439564), - float2(0.46601835,-0.22442262), - float2(0.7586207,0), - float2(0.7249173,0.22360738), - float2(0.6268018,0.4273463), - float2(0.47299224,0.59311354), - float2(0.27715522,0.7061801), - float2(0.056691725,0.75649947), - float2(-0.168809,0.7396005), - float2(-0.3793104,0.65698475), - float2(-0.55610836,0.51599306), - float2(-0.6834936,0.32915324), - float2(-0.7501475,0.113066405), - float2(-0.7501475,-0.11306671), - float2(-0.6834936,-0.32915318), - float2(-0.5561083,-0.5159932), - float2(-0.37931028,-0.6569848), - float2(-0.16880904,-0.7396005), - float2(0.056691945,-0.7564994), - float2(0.2771556,-0.7061799), - float2(0.47299215,-0.59311366), - float2(0.62680185,-0.4273462), - float2(0.72491735,-0.22360711), - float2(1,0), - float2(0.9749279,0.22252093), - float2(0.90096885,0.43388376), - float2(0.7818315,0.6234898), - float2(0.6234898,0.7818315), - float2(0.43388364,0.9009689), - float2(0.22252098,0.9749279), - float2(0,1), - float2(-0.22252095,0.9749279), - float2(-0.43388385,0.90096885), - float2(-0.62349,0.7818314), - float2(-0.7818317,0.62348956), - float2(-0.90096885,0.43388382), - float2(-0.9749279,0.22252093), - float2(-1,0), - float2(-0.9749279,-0.22252087), - float2(-0.90096885,-0.43388376), - float2(-0.7818314,-0.6234899), - float2(-0.6234896,-0.7818316), - float2(-0.43388346,-0.900969), - float2(-0.22252055,-0.974928), - float2(0,-1), - float2(0.2225215,-0.9749278), - float2(0.4338835,-0.90096897), - float2(0.6234897,-0.7818316), - float2(0.78183144,-0.62348986), - float2(0.90096885,-0.43388376), - float2(0.9749279,-0.22252086), -}; - -#endif - -#endif // UNITY_POSTFX_DISK_KERNELS diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DiskKernels.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DiskKernels.hlsl.meta deleted file mode 100644 index 0b525a093..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/DiskKernels.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: a4811657005cf0a439cbc4a989ce9083 -timeCreated: 1491839887 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Distortion.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Distortion.hlsl deleted file mode 100644 index 46ebf0a8c..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Distortion.hlsl +++ /dev/null @@ -1,34 +0,0 @@ -#ifndef UNITY_POSTFX_DISTORTION -#define UNITY_POSTFX_DISTORTION - -float4 _Distortion_Amount; -float4 _Distortion_CenterScale; - -float2 Distort(float2 uv) -{ - // Note: lens distortion is automatically disabled in VR so we won't bother handling stereo uvs - #if DISTORT - { - uv = (uv - 0.5) * _Distortion_Amount.z + 0.5; - float2 ruv = _Distortion_CenterScale.zw * (uv - 0.5 - _Distortion_CenterScale.xy); - float ru = length(float2(ruv)); - - UNITY_BRANCH - if (_Distortion_Amount.w > 0.0) - { - float wu = ru * _Distortion_Amount.x; - ru = tan(wu) * (1.0 / (ru * _Distortion_Amount.y)); - uv = uv + ruv * (ru - 1.0); - } - else - { - ru = (1.0 / ru) * _Distortion_Amount.x * atan(ru * _Distortion_Amount.y); - uv = uv + ruv * (ru - 1.0); - } - } - #endif - - return uv; -} - -#endif // UNITY_POSTFX_DISTORTION diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Distortion.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Distortion.hlsl.meta deleted file mode 100644 index 078acf3e1..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Distortion.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: c053166c69db5b943a5e70ec28113a24 -timeCreated: 1519741306 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Dithering.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Dithering.hlsl deleted file mode 100644 index 5ed1d0a0e..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Dithering.hlsl +++ /dev/null @@ -1,23 +0,0 @@ -#ifndef UNITY_POSTFX_DITHERING -#define UNITY_POSTFX_DITHERING - -TEXTURE2D_SAMPLER2D(_DitheringTex, sampler_DitheringTex); -float4 _Dithering_Coords; - -float3 Dither(float3 color, float2 uv) -{ - // Final pass dithering - // Symmetric triangular distribution on [-1,1] with maximal density at 0 - float noise = SAMPLE_TEXTURE2D(_DitheringTex, sampler_DitheringTex, uv * _Dithering_Coords.xy + _Dithering_Coords.zw).a * 2.0 - 1.0; - noise = FastSign(noise) * (1.0 - sqrt(1.0 - abs(noise))); - -#if UNITY_COLORSPACE_GAMMA - color += noise / 255.0; -#else - color = SRGBToLinear(LinearToSRGB(color) + noise / 255.0); -#endif - - return color; -} - -#endif // UNITY_POSTFX_DITHERING diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Dithering.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Dithering.hlsl.meta deleted file mode 100644 index bfde911f2..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Dithering.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: b17c8e94a77f9a24d80deb0464a28ddd -timeCreated: 1499075289 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ExposureHistogram.compute b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ExposureHistogram.compute deleted file mode 100644 index 8e100d534..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ExposureHistogram.compute +++ /dev/null @@ -1,102 +0,0 @@ -// Put the following line to 0 or comment it to disable vignette weighting -#define USE_VIGNETTE_WEIGHTING 1 - -#pragma warning(disable : 3568) -#pragma exclude_renderers gles gles3 d3d11_9x - -#include "../StdLib.hlsl" -#include "../Colors.hlsl" -#include "ExposureHistogram.hlsl" - -RWStructuredBuffer _HistogramBuffer; -Texture2D _Source; -SamplerState sampler_LinearClamp; - -CBUFFER_START(Params) - float4 _ScaleOffsetRes; // x: scale, y: offset, z: width, w: height -CBUFFER_END - -groupshared uint gs_histogram[HISTOGRAM_BINS]; - -#pragma kernel KEyeHistogram - -#ifdef DISABLE_COMPUTE_SHADERS - -TRIVIAL_COMPUTE_KERNEL(KEyeHistogram) -TRIVIAL_COMPUTE_KERNEL(KEyeHistogramClear) - -#else - -[numthreads(HISTOGRAM_THREAD_X, HISTOGRAM_THREAD_Y, 1)] -void KEyeHistogram(uint2 dispatchThreadId : SV_DispatchThreadID, uint2 groupThreadId : SV_GroupThreadID) -{ - const uint localThreadId = groupThreadId.y * HISTOGRAM_THREAD_X + groupThreadId.x; - - // Clears the shared memory -#if HISTOGRAM_REDUCTION_ALT_PATH - uint localThreadIdOff = localThreadId << 1u; - if (localThreadIdOff < HISTOGRAM_BINS) - { - gs_histogram[localThreadIdOff ] = 0u; - gs_histogram[localThreadIdOff + 1] = 0u; - } -#else - if (localThreadId < HISTOGRAM_BINS) - { - gs_histogram[localThreadId] = 0u; - } -#endif - - float2 ipos = float2(dispatchThreadId) * 2.0; - - GroupMemoryBarrierWithGroupSync(); - - // Gather local group histogram - if (ipos.x < _ScaleOffsetRes.z && ipos.y < _ScaleOffsetRes.w) - { - uint weight = 1u; - float2 sspos = ipos / _ScaleOffsetRes.zw; - - // Vignette weighting to put more focus on what's in the center of the screen - #if USE_VIGNETTE_WEIGHTING - { - float2 d = abs(sspos - (0.5).xx); - float vfactor = saturate(1.0 - dot(d, d)); - vfactor *= vfactor; - weight = (uint)(64.0 * vfactor); - } - #endif - - float3 color = _Source.SampleLevel(sampler_LinearClamp, sspos, 0.0).xyz; // Bilinear downsample 2x - float luminance = Luminance(color); - float logLuminance = GetHistogramBinFromLuminance(luminance, _ScaleOffsetRes.xy); - uint idx = (uint)(logLuminance * (HISTOGRAM_BINS - 1u)); - InterlockedAdd(gs_histogram[idx], weight); - } - - GroupMemoryBarrierWithGroupSync(); - - // Merge everything -#if HISTOGRAM_REDUCTION_ALT_PATH - if (localThreadIdOff < HISTOGRAM_BINS) - { - InterlockedAdd(_HistogramBuffer[localThreadIdOff ], gs_histogram[localThreadIdOff ]); - InterlockedAdd(_HistogramBuffer[localThreadIdOff + 1], gs_histogram[localThreadIdOff + 1]); - } -#else - if (localThreadId < HISTOGRAM_BINS) - { - InterlockedAdd(_HistogramBuffer[localThreadId], gs_histogram[localThreadId]); - } -#endif -} - -#pragma kernel KEyeHistogramClear -[numthreads(HISTOGRAM_THREAD_X, 1, 1)] -void KEyeHistogramClear(uint dispatchThreadId : SV_DispatchThreadID) -{ - if (dispatchThreadId < HISTOGRAM_BINS) - _HistogramBuffer[dispatchThreadId] = 0u; -} - -#endif // DISABLE_COMPUTE_SHADERS diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ExposureHistogram.compute.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ExposureHistogram.compute.meta deleted file mode 100644 index 8f7eefe3a..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ExposureHistogram.compute.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 8c2fcbdf9bc58664f89917f7b9d79501 -timeCreated: 1488985723 -licenseType: Pro -ComputeShaderImporter: - currentAPIMask: 4 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ExposureHistogram.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ExposureHistogram.hlsl deleted file mode 100644 index 67bd74477..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ExposureHistogram.hlsl +++ /dev/null @@ -1,95 +0,0 @@ -#ifndef UNITY_POSTFX_EXPOSURE_HISTOGRAM -#define UNITY_POSTFX_EXPOSURE_HISTOGRAM - -// Don't forget to update 'LogHistogram.cs' if you change these values ! -#define HISTOGRAM_BINS 128 -#define HISTOGRAM_TEXELS HISTOGRAM_BINS / 4 - -#if SHADER_API_GLES3 || SHADER_API_METAL - #define HISTOGRAM_THREAD_X 8 - #define HISTOGRAM_THREAD_Y 8 - #define HISTOGRAM_REDUCTION_THREAD_X 8 - #define HISTOGRAM_REDUCTION_THREAD_Y 8 - #define HISTOGRAM_REDUCTION_ALT_PATH 1 -#else - #define HISTOGRAM_THREAD_X 16 - #define HISTOGRAM_THREAD_Y 16 - #define HISTOGRAM_REDUCTION_THREAD_X HISTOGRAM_THREAD_X - #define HISTOGRAM_REDUCTION_THREAD_Y HISTOGRAM_BINS / HISTOGRAM_THREAD_Y - #define HISTOGRAM_REDUCTION_ALT_PATH 0 -#endif - -#define HISTOGRAM_REDUCTION_BINS HISTOGRAM_REDUCTION_THREAD_X * HISTOGRAM_REDUCTION_THREAD_Y - -float GetHistogramBinFromLuminance(float value, float2 scaleOffset) -{ - return saturate(log2(value) * scaleOffset.x + scaleOffset.y); -} - -float GetLuminanceFromHistogramBin(float bin, float2 scaleOffset) -{ - return exp2((bin - scaleOffset.y) / scaleOffset.x); -} - -float GetBinValue(StructuredBuffer buffer, uint index, float maxHistogramValue) -{ - return float(buffer[index]) * maxHistogramValue; -} - -float FindMaxHistogramValue(StructuredBuffer buffer) -{ - uint maxValue = 0u; - - for (uint i = 0; i < HISTOGRAM_BINS; i++) - { - uint h = buffer[i]; - maxValue = max(maxValue, h); - } - - return float(maxValue); -} - -void FilterLuminance(StructuredBuffer buffer, uint i, float maxHistogramValue, float2 scaleOffset, inout float4 filter) -{ - float binValue = GetBinValue(buffer, i, maxHistogramValue); - - // Filter dark areas - float offset = min(filter.z, binValue); - binValue -= offset; - filter.zw -= offset.xx; - - // Filter highlights - binValue = min(filter.w, binValue); - filter.w -= binValue; - - // Luminance at the bin - float luminance = GetLuminanceFromHistogramBin(float(i) / float(HISTOGRAM_BINS), scaleOffset); - - filter.xy += float2(luminance * binValue, binValue); -} - -float GetAverageLuminance(StructuredBuffer buffer, float4 params, float maxHistogramValue, float2 scaleOffset) -{ - // Sum of all bins - uint i; - float totalSum = 0.0; - - UNITY_UNROLL - for (i = 0; i < HISTOGRAM_BINS; i++) - totalSum += GetBinValue(buffer, i, maxHistogramValue); - - // Skip darker and lighter parts of the histogram to stabilize the auto exposure - // x: filtered sum - // y: accumulator - // zw: fractions - float4 filter = float4(0.0, 0.0, totalSum * params.xy); - - UNITY_UNROLL - for (i = 0; i < HISTOGRAM_BINS; i++) - FilterLuminance(buffer, i, maxHistogramValue, scaleOffset, filter); - - // Clamp to user brightness range - return clamp(filter.x / max(filter.y, EPSILON), params.z, params.w); -} - -#endif // UNITY_POSTFX_EXPOSURE_HISTOGRAM diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ExposureHistogram.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ExposureHistogram.hlsl.meta deleted file mode 100644 index cc2176347..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ExposureHistogram.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: e02724c54d545ad439d7a5fa991ae924 -timeCreated: 1488987302 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/FastApproximateAntialiasing.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/FastApproximateAntialiasing.hlsl deleted file mode 100644 index 233c33778..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/FastApproximateAntialiasing.hlsl +++ /dev/null @@ -1,2075 +0,0 @@ -#ifndef __FXAA3_INC__ -#define __FXAA3_INC__ - -#include "../xRLib.hlsl" - -/*============================================================================ - - -NVIDIA FXAA 3.11 by TIMOTHY LOTTES - - ------------------------------------------------------------------------------- -COPYRIGHT (C) 2010, 2011 NVIDIA CORPORATION. ALL RIGHTS RESERVED. ------------------------------------------------------------------------------- -TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THIS SOFTWARE IS PROVIDED -*AS IS* AND NVIDIA AND ITS SUPPLIERS DISCLAIM ALL WARRANTIES, EITHER EXPRESS -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL NVIDIA -OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR -CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR -LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, -OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR INABILITY TO USE -THIS SOFTWARE, EVEN IF NVIDIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - ------------------------------------------------------------------------------- -INTEGRATION CHECKLIST ------------------------------------------------------------------------------- -(1.) -In the shader source, setup defines for the desired configuration. -When providing multiple shaders (for different presets), -simply setup the defines differently in multiple files. -Example, - -#define FXAA_PC 1 -#define FXAA_HLSL_5 1 -#define FXAA_QUALITY__PRESET 12 - -Or, - -#define FXAA_360 1 - -Or, - -#define FXAA_PS3 1 - -Etc. - -(2.) -Then include this file, - -#include "Fxaa3_11.h" - -(3.) -Then call the FXAA pixel shader from within your desired shader. -Look at the FXAA Quality FxaaPixelShader() for docs on inputs. -As for FXAA 3.11 all inputs for all shaders are the same -to enable easy porting between platforms. - -return FxaaPixelShader(...); - -(4.) -Insure pass prior to FXAA outputs RGBL (see next section). -Or use, - -#define FXAA_GREEN_AS_LUMA 1 - -(5.) -Setup engine to provide the following constants -which are used in the FxaaPixelShader() inputs, - -FxaaFloat2 fxaaQualityRcpFrame, -FxaaFloat4 fxaaConsoleRcpFrameOpt, -FxaaFloat4 fxaaConsoleRcpFrameOpt2, -FxaaFloat4 fxaaConsole360RcpFrameOpt2, -FxaaFloat fxaaQualitySubpix, -FxaaFloat fxaaQualityEdgeThreshold, -FxaaFloat fxaaQualityEdgeThresholdMin, -FxaaFloat fxaaConsoleEdgeSharpness, -FxaaFloat fxaaConsoleEdgeThreshold, -FxaaFloat fxaaConsoleEdgeThresholdMin, -FxaaFloat4 fxaaConsole360ConstDir - -Look at the FXAA Quality FxaaPixelShader() for docs on inputs. - -(6.) -Have FXAA vertex shader run as a full screen triangle, -and output "pos" and "fxaaConsolePosPos" -such that inputs in the pixel shader provide, - -// {xy} = center of pixel -FxaaFloat2 pos, - -// {xy__} = upper left of pixel -// {__zw} = lower right of pixel -FxaaFloat4 fxaaConsolePosPos, - -(7.) -Insure the texture sampler(s) used by FXAA are set to bilinear filtering. - - ------------------------------------------------------------------------------- -INTEGRATION - RGBL AND COLORSPACE ------------------------------------------------------------------------------- -FXAA3 requires RGBL as input unless the following is set, - -#define FXAA_GREEN_AS_LUMA 1 - -In which case the engine uses green in place of luma, -and requires RGB input is in a non-linear colorspace. - -RGB should be LDR (low dynamic range). -Specifically do FXAA after tonemapping. - -RGB data as returned by a texture fetch can be non-linear, -or linear when FXAA_GREEN_AS_LUMA is not set. -Note an "sRGB format" texture counts as linear, -because the result of a texture fetch is linear data. -Regular "RGBA8" textures in the sRGB colorspace are non-linear. - -If FXAA_GREEN_AS_LUMA is not set, -luma must be stored in the alpha channel prior to running FXAA. -This luma should be in a perceptual space (could be gamma 2.0). -Example pass before FXAA where output is gamma 2.0 encoded, - -color.rgb = ToneMap(color.rgb); // linear color output -color.rgb = sqrt(color.rgb); // gamma 2.0 color output -return color; - -To use FXAA, - -color.rgb = ToneMap(color.rgb); // linear color output -color.rgb = sqrt(color.rgb); // gamma 2.0 color output -color.a = dot(color.rgb, FxaaFloat3(0.299, 0.587, 0.114)); // compute luma -return color; - -Another example where output is linear encoded, -say for instance writing to an sRGB formated render target, -where the render target does the conversion back to sRGB after blending, - -color.rgb = ToneMap(color.rgb); // linear color output -return color; - -To use FXAA, - -color.rgb = ToneMap(color.rgb); // linear color output -color.a = sqrt(dot(color.rgb, FxaaFloat3(0.299, 0.587, 0.114))); // compute luma -return color; - -Getting luma correct is required for the algorithm to work correctly. - - ------------------------------------------------------------------------------- -BEING LINEARLY CORRECT? ------------------------------------------------------------------------------- -Applying FXAA to a framebuffer with linear RGB color will look worse. -This is very counter intuitive, but happends to be true in this case. -The reason is because dithering artifacts will be more visiable -in a linear colorspace. - - ------------------------------------------------------------------------------- -COMPLEX INTEGRATION ------------------------------------------------------------------------------- -Q. What if the engine is blending into RGB before wanting to run FXAA? - -A. In the last opaque pass prior to FXAA, -have the pass write out luma into alpha. -Then blend into RGB only. -FXAA should be able to run ok -assuming the blending pass did not any add aliasing. -This should be the common case for particles and common blending passes. - -A. Or use FXAA_GREEN_AS_LUMA. - -============================================================================*/ - -/*============================================================================ - -INTEGRATION KNOBS - -============================================================================*/ -// -// FXAA_PS3 and FXAA_360 choose the console algorithm (FXAA3 CONSOLE). -// FXAA_360_OPT is a prototype for the new optimized 360 version. -// -// 1 = Use API. -// 0 = Don't use API. -// -/*--------------------------------------------------------------------------*/ -#ifndef FXAA_PS3 -#define FXAA_PS3 0 -#endif -/*--------------------------------------------------------------------------*/ -#ifndef FXAA_360 -#define FXAA_360 0 -#endif -/*--------------------------------------------------------------------------*/ -#ifndef FXAA_360_OPT -#define FXAA_360_OPT 0 -#endif -/*==========================================================================*/ -#ifndef FXAA_PC -// -// FXAA Quality -// The high quality PC algorithm. -// -#define FXAA_PC 0 -#endif -/*--------------------------------------------------------------------------*/ -#ifndef FXAA_PC_CONSOLE -// -// The console algorithm for PC is included -// for developers targeting really low spec machines. -// Likely better to just run FXAA_PC, and use a really low preset. -// -#define FXAA_PC_CONSOLE 0 -#endif -/*--------------------------------------------------------------------------*/ -#ifndef FXAA_GLSL_120 -#define FXAA_GLSL_120 0 -#endif -/*--------------------------------------------------------------------------*/ -#ifndef FXAA_GLSL_130 -#define FXAA_GLSL_130 0 -#endif -/*--------------------------------------------------------------------------*/ -#ifndef FXAA_HLSL_3 -#define FXAA_HLSL_3 0 -#endif -/*--------------------------------------------------------------------------*/ -#ifndef FXAA_HLSL_4 -#define FXAA_HLSL_4 0 -#endif -/*--------------------------------------------------------------------------*/ -#ifndef FXAA_HLSL_5 -#define FXAA_HLSL_5 0 -#endif -/*==========================================================================*/ -#ifndef FXAA_GREEN_AS_LUMA -// -// For those using non-linear color, -// and either not able to get luma in alpha, or not wanting to, -// this enables FXAA to run using green as a proxy for luma. -// So with this enabled, no need to pack luma in alpha. -// -// This will turn off AA on anything which lacks some amount of green. -// Pure red and blue or combination of only R and B, will get no AA. -// -// Might want to lower the settings for both, -// fxaaConsoleEdgeThresholdMin -// fxaaQualityEdgeThresholdMin -// In order to insure AA does not get turned off on colors -// which contain a minor amount of green. -// -// 1 = On. -// 0 = Off. -// -#define FXAA_GREEN_AS_LUMA 0 -#endif -/*--------------------------------------------------------------------------*/ -#ifndef FXAA_EARLY_EXIT -// -// Controls algorithm's early exit path. -// On PS3 turning this ON adds 2 cycles to the shader. -// On 360 turning this OFF adds 10ths of a millisecond to the shader. -// Turning this off on console will result in a more blurry image. -// So this defaults to on. -// -// 1 = On. -// 0 = Off. -// -#define FXAA_EARLY_EXIT 1 -#endif -/*--------------------------------------------------------------------------*/ -#ifndef FXAA_DISCARD -// -// Only valid for PC OpenGL currently. -// Probably will not work when FXAA_GREEN_AS_LUMA = 1. -// -// 1 = Use discard on pixels which don't need AA. -// For APIs which enable concurrent TEX+ROP from same surface. -// 0 = Return unchanged color on pixels which don't need AA. -// -#define FXAA_DISCARD 0 -#endif -/*--------------------------------------------------------------------------*/ -#ifndef FXAA_FAST_PIXEL_OFFSET -// -// Used for GLSL 120 only. -// -// 1 = GL API supports fast pixel offsets -// 0 = do not use fast pixel offsets -// -#ifdef GL_EXT_gpu_shader4 -#define FXAA_FAST_PIXEL_OFFSET 1 -#endif -#ifdef GL_NV_gpu_shader5 -#define FXAA_FAST_PIXEL_OFFSET 1 -#endif -#ifdef GL_ARB_gpu_shader5 -#define FXAA_FAST_PIXEL_OFFSET 1 -#endif -#ifndef FXAA_FAST_PIXEL_OFFSET -#define FXAA_FAST_PIXEL_OFFSET 0 -#endif -#endif -/*--------------------------------------------------------------------------*/ -#ifndef FXAA_GATHER4_ALPHA -// -// 1 = API supports gather4 on alpha channel. -// 0 = API does not support gather4 on alpha channel. -// -#if (FXAA_HLSL_5 == 1) -#define FXAA_GATHER4_ALPHA 1 -#endif -#ifdef GL_ARB_gpu_shader5 -#define FXAA_GATHER4_ALPHA 1 -#endif -#ifdef GL_NV_gpu_shader5 -#define FXAA_GATHER4_ALPHA 1 -#endif -#ifndef FXAA_GATHER4_ALPHA -#define FXAA_GATHER4_ALPHA 0 -#endif -#endif - -/*============================================================================ -FXAA CONSOLE PS3 - TUNING KNOBS -============================================================================*/ -#ifndef FXAA_CONSOLE__PS3_EDGE_SHARPNESS -// -// Consoles the sharpness of edges on PS3 only. -// Non-PS3 tuning is done with shader input. -// -// Due to the PS3 being ALU bound, -// there are only two safe values here: 4 and 8. -// These options use the shaders ability to a free *|/ by 2|4|8. -// -// 8.0 is sharper -// 4.0 is softer -// 2.0 is really soft (good for vector graphics inputs) -// -#if 1 -#define FXAA_CONSOLE__PS3_EDGE_SHARPNESS 8.0 -#endif -#if 0 -#define FXAA_CONSOLE__PS3_EDGE_SHARPNESS 4.0 -#endif -#if 0 -#define FXAA_CONSOLE__PS3_EDGE_SHARPNESS 2.0 -#endif -#endif -/*--------------------------------------------------------------------------*/ -#ifndef FXAA_CONSOLE__PS3_EDGE_THRESHOLD -// -// Only effects PS3. -// Non-PS3 tuning is done with shader input. -// -// The minimum amount of local contrast required to apply algorithm. -// The console setting has a different mapping than the quality setting. -// -// This only applies when FXAA_EARLY_EXIT is 1. -// -// Due to the PS3 being ALU bound, -// there are only two safe values here: 0.25 and 0.125. -// These options use the shaders ability to a free *|/ by 2|4|8. -// -// 0.125 leaves less aliasing, but is softer -// 0.25 leaves more aliasing, and is sharper -// -#if 1 -#define FXAA_CONSOLE__PS3_EDGE_THRESHOLD 0.125 -#else -#define FXAA_CONSOLE__PS3_EDGE_THRESHOLD 0.25 -#endif -#endif - -/*============================================================================ -FXAA QUALITY - TUNING KNOBS ------------------------------------------------------------------------------- -NOTE the other tuning knobs are now in the shader function inputs! -============================================================================*/ -#ifndef FXAA_QUALITY__PRESET -// -// Choose the quality preset. -// This needs to be compiled into the shader as it effects code. -// Best option to include multiple presets is to -// in each shader define the preset, then include this file. -// -// OPTIONS -// ----------------------------------------------------------------------- -// 10 to 15 - default medium dither (10=fastest, 15=highest quality) -// 20 to 29 - less dither, more expensive (20=fastest, 29=highest quality) -// 39 - no dither, very expensive -// -// NOTES -// ----------------------------------------------------------------------- -// 12 = slightly faster then FXAA 3.9 and higher edge quality (default) -// 13 = about same speed as FXAA 3.9 and better than 12 -// 23 = closest to FXAA 3.9 visually and performance wise -// _ = the lowest digit is directly related to performance -// _ = the highest digit is directly related to style -// -#define FXAA_QUALITY__PRESET 12 -#endif - - -/*============================================================================ - -FXAA QUALITY - PRESETS - -============================================================================*/ - -/*============================================================================ -FXAA QUALITY - MEDIUM DITHER PRESETS -============================================================================*/ -#if (FXAA_QUALITY__PRESET == 10) -#define FXAA_QUALITY__PS 3 -#define FXAA_QUALITY__P0 1.5 -#define FXAA_QUALITY__P1 3.0 -#define FXAA_QUALITY__P2 12.0 -#endif -/*--------------------------------------------------------------------------*/ -#if (FXAA_QUALITY__PRESET == 11) -#define FXAA_QUALITY__PS 4 -#define FXAA_QUALITY__P0 1.0 -#define FXAA_QUALITY__P1 1.5 -#define FXAA_QUALITY__P2 3.0 -#define FXAA_QUALITY__P3 12.0 -#endif -/*--------------------------------------------------------------------------*/ -#if (FXAA_QUALITY__PRESET == 12) -#define FXAA_QUALITY__PS 5 -#define FXAA_QUALITY__P0 1.0 -#define FXAA_QUALITY__P1 1.5 -#define FXAA_QUALITY__P2 2.0 -#define FXAA_QUALITY__P3 4.0 -#define FXAA_QUALITY__P4 12.0 -#endif -/*--------------------------------------------------------------------------*/ -#if (FXAA_QUALITY__PRESET == 13) -#define FXAA_QUALITY__PS 6 -#define FXAA_QUALITY__P0 1.0 -#define FXAA_QUALITY__P1 1.5 -#define FXAA_QUALITY__P2 2.0 -#define FXAA_QUALITY__P3 2.0 -#define FXAA_QUALITY__P4 4.0 -#define FXAA_QUALITY__P5 12.0 -#endif -/*--------------------------------------------------------------------------*/ -#if (FXAA_QUALITY__PRESET == 14) -#define FXAA_QUALITY__PS 7 -#define FXAA_QUALITY__P0 1.0 -#define FXAA_QUALITY__P1 1.5 -#define FXAA_QUALITY__P2 2.0 -#define FXAA_QUALITY__P3 2.0 -#define FXAA_QUALITY__P4 2.0 -#define FXAA_QUALITY__P5 4.0 -#define FXAA_QUALITY__P6 12.0 -#endif -/*--------------------------------------------------------------------------*/ -#if (FXAA_QUALITY__PRESET == 15) -#define FXAA_QUALITY__PS 8 -#define FXAA_QUALITY__P0 1.0 -#define FXAA_QUALITY__P1 1.5 -#define FXAA_QUALITY__P2 2.0 -#define FXAA_QUALITY__P3 2.0 -#define FXAA_QUALITY__P4 2.0 -#define FXAA_QUALITY__P5 2.0 -#define FXAA_QUALITY__P6 4.0 -#define FXAA_QUALITY__P7 12.0 -#endif - -/*============================================================================ -FXAA QUALITY - LOW DITHER PRESETS -============================================================================*/ -#if (FXAA_QUALITY__PRESET == 20) -#define FXAA_QUALITY__PS 3 -#define FXAA_QUALITY__P0 1.5 -#define FXAA_QUALITY__P1 2.0 -#define FXAA_QUALITY__P2 8.0 -#endif -/*--------------------------------------------------------------------------*/ -#if (FXAA_QUALITY__PRESET == 21) -#define FXAA_QUALITY__PS 4 -#define FXAA_QUALITY__P0 1.0 -#define FXAA_QUALITY__P1 1.5 -#define FXAA_QUALITY__P2 2.0 -#define FXAA_QUALITY__P3 8.0 -#endif -/*--------------------------------------------------------------------------*/ -#if (FXAA_QUALITY__PRESET == 22) -#define FXAA_QUALITY__PS 5 -#define FXAA_QUALITY__P0 1.0 -#define FXAA_QUALITY__P1 1.5 -#define FXAA_QUALITY__P2 2.0 -#define FXAA_QUALITY__P3 2.0 -#define FXAA_QUALITY__P4 8.0 -#endif -/*--------------------------------------------------------------------------*/ -#if (FXAA_QUALITY__PRESET == 23) -#define FXAA_QUALITY__PS 6 -#define FXAA_QUALITY__P0 1.0 -#define FXAA_QUALITY__P1 1.5 -#define FXAA_QUALITY__P2 2.0 -#define FXAA_QUALITY__P3 2.0 -#define FXAA_QUALITY__P4 2.0 -#define FXAA_QUALITY__P5 8.0 -#endif -/*--------------------------------------------------------------------------*/ -#if (FXAA_QUALITY__PRESET == 24) -#define FXAA_QUALITY__PS 7 -#define FXAA_QUALITY__P0 1.0 -#define FXAA_QUALITY__P1 1.5 -#define FXAA_QUALITY__P2 2.0 -#define FXAA_QUALITY__P3 2.0 -#define FXAA_QUALITY__P4 2.0 -#define FXAA_QUALITY__P5 3.0 -#define FXAA_QUALITY__P6 8.0 -#endif -/*--------------------------------------------------------------------------*/ -#if (FXAA_QUALITY__PRESET == 25) -#define FXAA_QUALITY__PS 8 -#define FXAA_QUALITY__P0 1.0 -#define FXAA_QUALITY__P1 1.5 -#define FXAA_QUALITY__P2 2.0 -#define FXAA_QUALITY__P3 2.0 -#define FXAA_QUALITY__P4 2.0 -#define FXAA_QUALITY__P5 2.0 -#define FXAA_QUALITY__P6 4.0 -#define FXAA_QUALITY__P7 8.0 -#endif -/*--------------------------------------------------------------------------*/ -#if (FXAA_QUALITY__PRESET == 26) -#define FXAA_QUALITY__PS 9 -#define FXAA_QUALITY__P0 1.0 -#define FXAA_QUALITY__P1 1.5 -#define FXAA_QUALITY__P2 2.0 -#define FXAA_QUALITY__P3 2.0 -#define FXAA_QUALITY__P4 2.0 -#define FXAA_QUALITY__P5 2.0 -#define FXAA_QUALITY__P6 2.0 -#define FXAA_QUALITY__P7 4.0 -#define FXAA_QUALITY__P8 8.0 -#endif -/*--------------------------------------------------------------------------*/ -#if (FXAA_QUALITY__PRESET == 27) -#define FXAA_QUALITY__PS 10 -#define FXAA_QUALITY__P0 1.0 -#define FXAA_QUALITY__P1 1.5 -#define FXAA_QUALITY__P2 2.0 -#define FXAA_QUALITY__P3 2.0 -#define FXAA_QUALITY__P4 2.0 -#define FXAA_QUALITY__P5 2.0 -#define FXAA_QUALITY__P6 2.0 -#define FXAA_QUALITY__P7 2.0 -#define FXAA_QUALITY__P8 4.0 -#define FXAA_QUALITY__P9 8.0 -#endif -/*--------------------------------------------------------------------------*/ -#if (FXAA_QUALITY__PRESET == 28) -#define FXAA_QUALITY__PS 11 -#define FXAA_QUALITY__P0 1.0 -#define FXAA_QUALITY__P1 1.5 -#define FXAA_QUALITY__P2 2.0 -#define FXAA_QUALITY__P3 2.0 -#define FXAA_QUALITY__P4 2.0 -#define FXAA_QUALITY__P5 2.0 -#define FXAA_QUALITY__P6 2.0 -#define FXAA_QUALITY__P7 2.0 -#define FXAA_QUALITY__P8 2.0 -#define FXAA_QUALITY__P9 4.0 -#define FXAA_QUALITY__P10 8.0 -#endif -/*--------------------------------------------------------------------------*/ -#if (FXAA_QUALITY__PRESET == 29) -#define FXAA_QUALITY__PS 12 -#define FXAA_QUALITY__P0 1.0 -#define FXAA_QUALITY__P1 1.5 -#define FXAA_QUALITY__P2 2.0 -#define FXAA_QUALITY__P3 2.0 -#define FXAA_QUALITY__P4 2.0 -#define FXAA_QUALITY__P5 2.0 -#define FXAA_QUALITY__P6 2.0 -#define FXAA_QUALITY__P7 2.0 -#define FXAA_QUALITY__P8 2.0 -#define FXAA_QUALITY__P9 2.0 -#define FXAA_QUALITY__P10 4.0 -#define FXAA_QUALITY__P11 8.0 -#endif - -/*============================================================================ -FXAA QUALITY - EXTREME QUALITY -============================================================================*/ -#if (FXAA_QUALITY__PRESET == 39) -#define FXAA_QUALITY__PS 12 -#define FXAA_QUALITY__P0 1.0 -#define FXAA_QUALITY__P1 1.0 -#define FXAA_QUALITY__P2 1.0 -#define FXAA_QUALITY__P3 1.0 -#define FXAA_QUALITY__P4 1.0 -#define FXAA_QUALITY__P5 1.5 -#define FXAA_QUALITY__P6 2.0 -#define FXAA_QUALITY__P7 2.0 -#define FXAA_QUALITY__P8 2.0 -#define FXAA_QUALITY__P9 2.0 -#define FXAA_QUALITY__P10 4.0 -#define FXAA_QUALITY__P11 8.0 -#endif - - - -/*============================================================================ - -API PORTING - -============================================================================*/ -#if (FXAA_GLSL_120 == 1) || (FXAA_GLSL_130 == 1) -#define FxaaBool bool -#define FxaaDiscard discard -#define FxaaFloat float -#define FxaaFloat2 vec2 -#define FxaaFloat3 vec3 -#define FxaaFloat4 vec4 -#define FxaaHalf float -#define FxaaHalf2 vec2 -#define FxaaHalf3 vec3 -#define FxaaHalf4 vec4 -#define FxaaInt2 ivec2 -#define FxaaSat(x) clamp(x, 0.0, 1.0) -#define FxaaTex sampler2D -#else -#define FxaaBool bool -#define FxaaDiscard clip(-1) -#define FxaaFloat float -#define FxaaFloat2 float2 -#define FxaaFloat3 float3 -#define FxaaFloat4 float4 -#define FxaaHalf half -#define FxaaHalf2 half2 -#define FxaaHalf3 half3 -#define FxaaHalf4 half4 -#define FxaaSat(x) saturate(x) -#endif -/*--------------------------------------------------------------------------*/ -#if (FXAA_GLSL_120 == 1) -// Requires, -// #version 120 -// And at least, -// #extension GL_EXT_gpu_shader4 : enable -// (or set FXAA_FAST_PIXEL_OFFSET 1 to work like DX9) -#define FxaaTexTop(t, p) texture2DLod(t, UnityStereoTransformScreenSpaceTex(p), 0.0) -#if (FXAA_FAST_PIXEL_OFFSET == 1) -#define FxaaTexOff(t, p, o, r) texture2DLodOffset(t, UnityStereoTransformScreenSpaceTex(p), 0.0, o) -#else -#define FxaaTexOff(t, p, o, r) texture2DLod(t, UnityStereoTransformScreenSpaceTex(p + (o * r)), 0.0) -#endif -#if (FXAA_GATHER4_ALPHA == 1) -// use #extension GL_ARB_gpu_shader5 : enable -#define FxaaTexAlpha4(t, p) textureGather(t, UnityStereoTransformScreenSpaceTex(p), 3) -#define FxaaTexOffAlpha4(t, p, o) textureGatherOffset(t, UnityStereoTransformScreenSpaceTex(p), o, 3) -#define FxaaTexGreen4(t, p) textureGather(t, UnityStereoTransformScreenSpaceTex(p), 1) -#define FxaaTexOffGreen4(t, p, o) textureGatherOffset(t, UnityStereoTransformScreenSpaceTex(p), o, 1) -#endif -#endif -/*--------------------------------------------------------------------------*/ -#if (FXAA_GLSL_130 == 1) -// Requires "#version 130" or better -#define FxaaTexTop(t, p) textureLod(t, UnityStereoTransformScreenSpaceTex(p), 0.0) -#define FxaaTexOff(t, p, o, r) textureLodOffset(t, UnityStereoTransformScreenSpaceTex(p), 0.0, o) -#if (FXAA_GATHER4_ALPHA == 1) -// use #extension GL_ARB_gpu_shader5 : enable -#define FxaaTexAlpha4(t, p) textureGather(t, UnityStereoTransformScreenSpaceTex(p), 3) -#define FxaaTexOffAlpha4(t, p, o) textureGatherOffset(t, UnityStereoTransformScreenSpaceTex(p), o, 3) -#define FxaaTexGreen4(t, p) textureGather(t, UnityStereoTransformScreenSpaceTex(p), 1) -#define FxaaTexOffGreen4(t, p, o) textureGatherOffset(t, UnityStereoTransformScreenSpaceTex(p), o, 1) -#endif -#endif -/*--------------------------------------------------------------------------*/ -#if (FXAA_HLSL_3 == 1) || (FXAA_360 == 1) || (FXAA_PS3 == 1) -#define FxaaInt2 float2 -#define FxaaTex sampler2D -#define FxaaTexTop(t, p) tex2Dlod(t, float4(UnityStereoTransformScreenSpaceTex(p), 0.0, 0.0)) -#define FxaaTexOff(t, p, o, r) tex2Dlod(t, float4(UnityStereoTransformScreenSpaceTex(p + (o * r)), 0, 0)) -#endif -/*--------------------------------------------------------------------------*/ -#if (FXAA_HLSL_4 == 1) -#define FxaaInt2 int2 -struct FxaaTex { SamplerState smpl; Texture2D tex; }; -#define FxaaTexTop(t, p) t.tex.SampleLevel(t.smpl, UnityStereoTransformScreenSpaceTex(p), 0.0) -#define FxaaTexOff(t, p, o, r) t.tex.SampleLevel(t.smpl, UnityStereoTransformScreenSpaceTex(p), 0.0, o) -#endif -/*--------------------------------------------------------------------------*/ -#if (FXAA_HLSL_5 == 1) -#define FxaaInt2 int2 -struct FxaaTex { SamplerState smpl; Texture2D tex; }; -#define FxaaTexTop(t, p) t.tex.SampleLevel(t.smpl, UnityStereoTransformScreenSpaceTex(p), 0.0) -#define FxaaTexOff(t, p, o, r) t.tex.SampleLevel(t.smpl, UnityStereoTransformScreenSpaceTex(p), 0.0, o) -#define FxaaTexAlpha4(t, p) t.tex.GatherAlpha(t.smpl, UnityStereoTransformScreenSpaceTex(p)) -#define FxaaTexOffAlpha4(t, p, o) t.tex.GatherAlpha(t.smpl, UnityStereoTransformScreenSpaceTex(p), o) -#define FxaaTexGreen4(t, p) t.tex.GatherGreen(t.smpl, UnityStereoTransformScreenSpaceTex(p)) -#define FxaaTexOffGreen4(t, p, o) t.tex.GatherGreen(t.smpl, UnityStereoTransformScreenSpaceTex(p), o) -#endif - - -/*============================================================================ -GREEN AS LUMA OPTION SUPPORT FUNCTION -============================================================================*/ -#if (FXAA_GREEN_AS_LUMA == 0) -FxaaFloat FxaaLuma(FxaaFloat4 rgba) { return rgba.w; } -#else -FxaaFloat FxaaLuma(FxaaFloat4 rgba) { return rgba.y; } -#endif - - - - -/*============================================================================ - -FXAA3 QUALITY - PC - -============================================================================*/ -#if (FXAA_PC == 1) -/*--------------------------------------------------------------------------*/ -FxaaFloat4 FxaaPixelShader( - // - // Use noperspective interpolation here (turn off perspective interpolation). - // {xy} = center of pixel - FxaaFloat2 pos, - // - // Used only for FXAA Console, and not used on the 360 version. - // Use noperspective interpolation here (turn off perspective interpolation). - // {xy__} = upper left of pixel - // {__zw} = lower right of pixel - FxaaFloat4 fxaaConsolePosPos, - // - // Input color texture. - // {rgb_} = color in linear or perceptual color space - // if (FXAA_GREEN_AS_LUMA == 0) - // {___a} = luma in perceptual color space (not linear) - FxaaTex tex, - // - // Only used on the optimized 360 version of FXAA Console. - // For everything but 360, just use the same input here as for "tex". - // For 360, same texture, just alias with a 2nd sampler. - // This sampler needs to have an exponent bias of -1. - FxaaTex fxaaConsole360TexExpBiasNegOne, - // - // Only used on the optimized 360 version of FXAA Console. - // For everything but 360, just use the same input here as for "tex". - // For 360, same texture, just alias with a 3nd sampler. - // This sampler needs to have an exponent bias of -2. - FxaaTex fxaaConsole360TexExpBiasNegTwo, - // - // Only used on FXAA Quality. - // This must be from a constant/uniform. - // {x_} = 1.0/screenWidthInPixels - // {_y} = 1.0/screenHeightInPixels - FxaaFloat2 fxaaQualityRcpFrame, - // - // Only used on FXAA Console. - // This must be from a constant/uniform. - // This effects sub-pixel AA quality and inversely sharpness. - // Where N ranges between, - // N = 0.50 (default) - // N = 0.33 (sharper) - // {x___} = -N/screenWidthInPixels - // {_y__} = -N/screenHeightInPixels - // {__z_} = N/screenWidthInPixels - // {___w} = N/screenHeightInPixels - FxaaFloat4 fxaaConsoleRcpFrameOpt, - // - // Only used on FXAA Console. - // Not used on 360, but used on PS3 and PC. - // This must be from a constant/uniform. - // {x___} = -2.0/screenWidthInPixels - // {_y__} = -2.0/screenHeightInPixels - // {__z_} = 2.0/screenWidthInPixels - // {___w} = 2.0/screenHeightInPixels - FxaaFloat4 fxaaConsoleRcpFrameOpt2, - // - // Only used on FXAA Console. - // Only used on 360 in place of fxaaConsoleRcpFrameOpt2. - // This must be from a constant/uniform. - // {x___} = 8.0/screenWidthInPixels - // {_y__} = 8.0/screenHeightInPixels - // {__z_} = -4.0/screenWidthInPixels - // {___w} = -4.0/screenHeightInPixels - FxaaFloat4 fxaaConsole360RcpFrameOpt2, - // - // Only used on FXAA Quality. - // This used to be the FXAA_QUALITY__SUBPIX define. - // It is here now to allow easier tuning. - // Choose the amount of sub-pixel aliasing removal. - // This can effect sharpness. - // 1.00 - upper limit (softer) - // 0.75 - default amount of filtering - // 0.50 - lower limit (sharper, less sub-pixel aliasing removal) - // 0.25 - almost off - // 0.00 - completely off - FxaaFloat fxaaQualitySubpix, - // - // Only used on FXAA Quality. - // This used to be the FXAA_QUALITY__EDGE_THRESHOLD define. - // It is here now to allow easier tuning. - // The minimum amount of local contrast required to apply algorithm. - // 0.333 - too little (faster) - // 0.250 - low quality - // 0.166 - default - // 0.125 - high quality - // 0.063 - overkill (slower) - FxaaFloat fxaaQualityEdgeThreshold, - // - // Only used on FXAA Quality. - // This used to be the FXAA_QUALITY__EDGE_THRESHOLD_MIN define. - // It is here now to allow easier tuning. - // Trims the algorithm from processing darks. - // 0.0833 - upper limit (default, the start of visible unfiltered edges) - // 0.0625 - high quality (faster) - // 0.0312 - visible limit (slower) - // Special notes when using FXAA_GREEN_AS_LUMA, - // Likely want to set this to zero. - // As colors that are mostly not-green - // will appear very dark in the green channel! - // Tune by looking at mostly non-green content, - // then start at zero and increase until aliasing is a problem. - FxaaFloat fxaaQualityEdgeThresholdMin, - // - // Only used on FXAA Console. - // This used to be the FXAA_CONSOLE__EDGE_SHARPNESS define. - // It is here now to allow easier tuning. - // This does not effect PS3, as this needs to be compiled in. - // Use FXAA_CONSOLE__PS3_EDGE_SHARPNESS for PS3. - // Due to the PS3 being ALU bound, - // there are only three safe values here: 2 and 4 and 8. - // These options use the shaders ability to a free *|/ by 2|4|8. - // For all other platforms can be a non-power of two. - // 8.0 is sharper (default!!!) - // 4.0 is softer - // 2.0 is really soft (good only for vector graphics inputs) - FxaaFloat fxaaConsoleEdgeSharpness, - // - // Only used on FXAA Console. - // This used to be the FXAA_CONSOLE__EDGE_THRESHOLD define. - // It is here now to allow easier tuning. - // This does not effect PS3, as this needs to be compiled in. - // Use FXAA_CONSOLE__PS3_EDGE_THRESHOLD for PS3. - // Due to the PS3 being ALU bound, - // there are only two safe values here: 1/4 and 1/8. - // These options use the shaders ability to a free *|/ by 2|4|8. - // The console setting has a different mapping than the quality setting. - // Other platforms can use other values. - // 0.125 leaves less aliasing, but is softer (default!!!) - // 0.25 leaves more aliasing, and is sharper - FxaaFloat fxaaConsoleEdgeThreshold, - // - // Only used on FXAA Console. - // This used to be the FXAA_CONSOLE__EDGE_THRESHOLD_MIN define. - // It is here now to allow easier tuning. - // Trims the algorithm from processing darks. - // The console setting has a different mapping than the quality setting. - // This only applies when FXAA_EARLY_EXIT is 1. - // This does not apply to PS3, - // PS3 was simplified to avoid more shader instructions. - // 0.06 - faster but more aliasing in darks - // 0.05 - default - // 0.04 - slower and less aliasing in darks - // Special notes when using FXAA_GREEN_AS_LUMA, - // Likely want to set this to zero. - // As colors that are mostly not-green - // will appear very dark in the green channel! - // Tune by looking at mostly non-green content, - // then start at zero and increase until aliasing is a problem. - FxaaFloat fxaaConsoleEdgeThresholdMin, - // - // Extra constants for 360 FXAA Console only. - // Use zeros or anything else for other platforms. - // These must be in physical constant registers and NOT immedates. - // Immedates will result in compiler un-optimizing. - // {xyzw} = float4(1.0, -1.0, 0.25, -0.25) - FxaaFloat4 fxaaConsole360ConstDir -) { - /*--------------------------------------------------------------------------*/ - FxaaFloat2 posM; - posM.x = pos.x; - posM.y = pos.y; -#if (FXAA_GATHER4_ALPHA == 1) -#if (FXAA_DISCARD == 0) - FxaaFloat4 rgbyM = FxaaTexTop(tex, posM); -#if (FXAA_GREEN_AS_LUMA == 0) -#define lumaM rgbyM.w -#else -#define lumaM rgbyM.y -#endif -#endif -#if (FXAA_GREEN_AS_LUMA == 0) - FxaaFloat4 luma4A = FxaaTexAlpha4(tex, posM); - FxaaFloat4 luma4B = FxaaTexOffAlpha4(tex, posM, FxaaInt2(-1, -1)); -#else - FxaaFloat4 luma4A = FxaaTexGreen4(tex, posM); - FxaaFloat4 luma4B = FxaaTexOffGreen4(tex, posM, FxaaInt2(-1, -1)); -#endif -#if (FXAA_DISCARD == 1) -#define lumaM luma4A.w -#endif -#define lumaE luma4A.z -#define lumaS luma4A.x -#define lumaSE luma4A.y -#define lumaNW luma4B.w -#define lumaN luma4B.z -#define lumaW luma4B.x -#else - FxaaFloat4 rgbyM = FxaaTexTop(tex, posM); -#if (FXAA_GREEN_AS_LUMA == 0) -#define lumaM rgbyM.w -#else -#define lumaM rgbyM.y -#endif - FxaaFloat lumaS = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(0, 1), fxaaQualityRcpFrame.xy)); - FxaaFloat lumaE = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(1, 0), fxaaQualityRcpFrame.xy)); - FxaaFloat lumaN = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(0, -1), fxaaQualityRcpFrame.xy)); - FxaaFloat lumaW = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(-1, 0), fxaaQualityRcpFrame.xy)); -#endif - /*--------------------------------------------------------------------------*/ - FxaaFloat maxSM = max(lumaS, lumaM); - FxaaFloat minSM = min(lumaS, lumaM); - FxaaFloat maxESM = max(lumaE, maxSM); - FxaaFloat minESM = min(lumaE, minSM); - FxaaFloat maxWN = max(lumaN, lumaW); - FxaaFloat minWN = min(lumaN, lumaW); - FxaaFloat rangeMax = max(maxWN, maxESM); - FxaaFloat rangeMin = min(minWN, minESM); - FxaaFloat rangeMaxScaled = rangeMax * fxaaQualityEdgeThreshold; - FxaaFloat range = rangeMax - rangeMin; - FxaaFloat rangeMaxClamped = max(fxaaQualityEdgeThresholdMin, rangeMaxScaled); - FxaaBool earlyExit = range < rangeMaxClamped; - /*--------------------------------------------------------------------------*/ - if (earlyExit) -#if (FXAA_DISCARD == 1) - FxaaDiscard; -#else - return rgbyM; -#endif - /*--------------------------------------------------------------------------*/ -#if (FXAA_GATHER4_ALPHA == 0) - FxaaFloat lumaNW = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(-1, -1), fxaaQualityRcpFrame.xy)); - FxaaFloat lumaSE = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(1, 1), fxaaQualityRcpFrame.xy)); - FxaaFloat lumaNE = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(1, -1), fxaaQualityRcpFrame.xy)); - FxaaFloat lumaSW = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(-1, 1), fxaaQualityRcpFrame.xy)); -#else - FxaaFloat lumaNE = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(1, -1), fxaaQualityRcpFrame.xy)); - FxaaFloat lumaSW = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(-1, 1), fxaaQualityRcpFrame.xy)); -#endif - /*--------------------------------------------------------------------------*/ - FxaaFloat lumaNS = lumaN + lumaS; - FxaaFloat lumaWE = lumaW + lumaE; - FxaaFloat subpixRcpRange = 1.0 / range; - FxaaFloat subpixNSWE = lumaNS + lumaWE; - FxaaFloat edgeHorz1 = (-2.0 * lumaM) + lumaNS; - FxaaFloat edgeVert1 = (-2.0 * lumaM) + lumaWE; - /*--------------------------------------------------------------------------*/ - FxaaFloat lumaNESE = lumaNE + lumaSE; - FxaaFloat lumaNWNE = lumaNW + lumaNE; - FxaaFloat edgeHorz2 = (-2.0 * lumaE) + lumaNESE; - FxaaFloat edgeVert2 = (-2.0 * lumaN) + lumaNWNE; - /*--------------------------------------------------------------------------*/ - FxaaFloat lumaNWSW = lumaNW + lumaSW; - FxaaFloat lumaSWSE = lumaSW + lumaSE; - FxaaFloat edgeHorz4 = (abs(edgeHorz1) * 2.0) + abs(edgeHorz2); - FxaaFloat edgeVert4 = (abs(edgeVert1) * 2.0) + abs(edgeVert2); - FxaaFloat edgeHorz3 = (-2.0 * lumaW) + lumaNWSW; - FxaaFloat edgeVert3 = (-2.0 * lumaS) + lumaSWSE; - FxaaFloat edgeHorz = abs(edgeHorz3) + edgeHorz4; - FxaaFloat edgeVert = abs(edgeVert3) + edgeVert4; - /*--------------------------------------------------------------------------*/ - FxaaFloat subpixNWSWNESE = lumaNWSW + lumaNESE; - FxaaFloat lengthSign = fxaaQualityRcpFrame.x; - FxaaBool horzSpan = edgeHorz >= edgeVert; - FxaaFloat subpixA = subpixNSWE * 2.0 + subpixNWSWNESE; - /*--------------------------------------------------------------------------*/ - if (!horzSpan) lumaN = lumaW; - if (!horzSpan) lumaS = lumaE; - if (horzSpan) lengthSign = fxaaQualityRcpFrame.y; - FxaaFloat subpixB = (subpixA * (1.0 / 12.0)) - lumaM; - /*--------------------------------------------------------------------------*/ - FxaaFloat gradientN = lumaN - lumaM; - FxaaFloat gradientS = lumaS - lumaM; - FxaaFloat lumaNN = lumaN + lumaM; - FxaaFloat lumaSS = lumaS + lumaM; - FxaaBool pairN = abs(gradientN) >= abs(gradientS); - FxaaFloat gradient = max(abs(gradientN), abs(gradientS)); - if (pairN) lengthSign = -lengthSign; - FxaaFloat subpixC = FxaaSat(abs(subpixB) * subpixRcpRange); - /*--------------------------------------------------------------------------*/ - FxaaFloat2 posB; - posB.x = posM.x; - posB.y = posM.y; - FxaaFloat2 offNP; - offNP.x = (!horzSpan) ? 0.0 : fxaaQualityRcpFrame.x; - offNP.y = (horzSpan) ? 0.0 : fxaaQualityRcpFrame.y; - if (!horzSpan) posB.x += lengthSign * 0.5; - if (horzSpan) posB.y += lengthSign * 0.5; - /*--------------------------------------------------------------------------*/ - FxaaFloat2 posN; - posN.x = posB.x - offNP.x * FXAA_QUALITY__P0; - posN.y = posB.y - offNP.y * FXAA_QUALITY__P0; - FxaaFloat2 posP; - posP.x = posB.x + offNP.x * FXAA_QUALITY__P0; - posP.y = posB.y + offNP.y * FXAA_QUALITY__P0; - FxaaFloat subpixD = ((-2.0)*subpixC) + 3.0; - FxaaFloat lumaEndN = FxaaLuma(FxaaTexTop(tex, posN)); - FxaaFloat subpixE = subpixC * subpixC; - FxaaFloat lumaEndP = FxaaLuma(FxaaTexTop(tex, posP)); - /*--------------------------------------------------------------------------*/ - if (!pairN) lumaNN = lumaSS; - FxaaFloat gradientScaled = gradient * 1.0 / 4.0; - FxaaFloat lumaMM = lumaM - lumaNN * 0.5; - FxaaFloat subpixF = subpixD * subpixE; - FxaaBool lumaMLTZero = lumaMM < 0.0; - /*--------------------------------------------------------------------------*/ - lumaEndN -= lumaNN * 0.5; - lumaEndP -= lumaNN * 0.5; - FxaaBool doneN = abs(lumaEndN) >= gradientScaled; - FxaaBool doneP = abs(lumaEndP) >= gradientScaled; - if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P1; - if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P1; - FxaaBool doneNP = (!doneN) || (!doneP); - if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P1; - if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P1; - /*--------------------------------------------------------------------------*/ - if (doneNP) - { - if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); - if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); - if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; - if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; - doneN = abs(lumaEndN) >= gradientScaled; - doneP = abs(lumaEndP) >= gradientScaled; - if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P2; - if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P2; - doneNP = (!doneN) || (!doneP); - if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P2; - if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P2; - /*--------------------------------------------------------------------------*/ -#if (FXAA_QUALITY__PS > 3) - if (doneNP) - { - if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); - if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); - if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; - if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; - doneN = abs(lumaEndN) >= gradientScaled; - doneP = abs(lumaEndP) >= gradientScaled; - if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P3; - if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P3; - doneNP = (!doneN) || (!doneP); - if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P3; - if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P3; - /*--------------------------------------------------------------------------*/ -#if (FXAA_QUALITY__PS > 4) - if (doneNP) - { - if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); - if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); - if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; - if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; - doneN = abs(lumaEndN) >= gradientScaled; - doneP = abs(lumaEndP) >= gradientScaled; - if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P4; - if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P4; - doneNP = (!doneN) || (!doneP); - if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P4; - if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P4; - /*--------------------------------------------------------------------------*/ -#if (FXAA_QUALITY__PS > 5) - if (doneNP) - { - if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); - if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); - if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; - if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; - doneN = abs(lumaEndN) >= gradientScaled; - doneP = abs(lumaEndP) >= gradientScaled; - if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P5; - if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P5; - doneNP = (!doneN) || (!doneP); - if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P5; - if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P5; - /*--------------------------------------------------------------------------*/ -#if (FXAA_QUALITY__PS > 6) - if (doneNP) - { - if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); - if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); - if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; - if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; - doneN = abs(lumaEndN) >= gradientScaled; - doneP = abs(lumaEndP) >= gradientScaled; - if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P6; - if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P6; - doneNP = (!doneN) || (!doneP); - if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P6; - if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P6; - /*--------------------------------------------------------------------------*/ -#if (FXAA_QUALITY__PS > 7) - if (doneNP) - { - if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); - if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); - if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; - if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; - doneN = abs(lumaEndN) >= gradientScaled; - doneP = abs(lumaEndP) >= gradientScaled; - if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P7; - if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P7; - doneNP = (!doneN) || (!doneP); - if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P7; - if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P7; - /*--------------------------------------------------------------------------*/ -#if (FXAA_QUALITY__PS > 8) - if (doneNP) - { - if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); - if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); - if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; - if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; - doneN = abs(lumaEndN) >= gradientScaled; - doneP = abs(lumaEndP) >= gradientScaled; - if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P8; - if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P8; - doneNP = (!doneN) || (!doneP); - if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P8; - if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P8; - /*--------------------------------------------------------------------------*/ -#if (FXAA_QUALITY__PS > 9) - if (doneNP) - { - if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); - if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); - if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; - if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; - doneN = abs(lumaEndN) >= gradientScaled; - doneP = abs(lumaEndP) >= gradientScaled; - if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P9; - if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P9; - doneNP = (!doneN) || (!doneP); - if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P9; - if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P9; - /*--------------------------------------------------------------------------*/ -#if (FXAA_QUALITY__PS > 10) - if (doneNP) - { - if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); - if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); - if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; - if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; - doneN = abs(lumaEndN) >= gradientScaled; - doneP = abs(lumaEndP) >= gradientScaled; - if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P10; - if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P10; - doneNP = (!doneN) || (!doneP); - if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P10; - if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P10; - /*--------------------------------------------------------------------------*/ -#if (FXAA_QUALITY__PS > 11) - if (doneNP) - { - if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); - if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); - if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; - if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; - doneN = abs(lumaEndN) >= gradientScaled; - doneP = abs(lumaEndP) >= gradientScaled; - if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P11; - if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P11; - doneNP = (!doneN) || (!doneP); - if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P11; - if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P11; - /*--------------------------------------------------------------------------*/ -#if (FXAA_QUALITY__PS > 12) - if (doneNP) - { - if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); - if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); - if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; - if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; - doneN = abs(lumaEndN) >= gradientScaled; - doneP = abs(lumaEndP) >= gradientScaled; - if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P12; - if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P12; - doneNP = (!doneN) || (!doneP); - if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P12; - if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P12; - /*--------------------------------------------------------------------------*/ - } -#endif - /*--------------------------------------------------------------------------*/ - } -#endif - /*--------------------------------------------------------------------------*/ - } -#endif - /*--------------------------------------------------------------------------*/ - } -#endif - /*--------------------------------------------------------------------------*/ - } -#endif - /*--------------------------------------------------------------------------*/ - } -#endif - /*--------------------------------------------------------------------------*/ - } -#endif - /*--------------------------------------------------------------------------*/ - } -#endif - /*--------------------------------------------------------------------------*/ - } -#endif - /*--------------------------------------------------------------------------*/ - } -#endif - /*--------------------------------------------------------------------------*/ - } - /*--------------------------------------------------------------------------*/ - FxaaFloat dstN = posM.x - posN.x; - FxaaFloat dstP = posP.x - posM.x; - if (!horzSpan) dstN = posM.y - posN.y; - if (!horzSpan) dstP = posP.y - posM.y; - /*--------------------------------------------------------------------------*/ - FxaaBool goodSpanN = (lumaEndN < 0.0) != lumaMLTZero; - FxaaFloat spanLength = (dstP + dstN); - FxaaBool goodSpanP = (lumaEndP < 0.0) != lumaMLTZero; - FxaaFloat spanLengthRcp = 1.0 / spanLength; - /*--------------------------------------------------------------------------*/ - FxaaBool directionN = dstN < dstP; - FxaaFloat dst = min(dstN, dstP); - FxaaBool goodSpan = directionN ? goodSpanN : goodSpanP; - FxaaFloat subpixG = subpixF * subpixF; - FxaaFloat pixelOffset = (dst * (-spanLengthRcp)) + 0.5; - FxaaFloat subpixH = subpixG * fxaaQualitySubpix; - /*--------------------------------------------------------------------------*/ - FxaaFloat pixelOffsetGood = goodSpan ? pixelOffset : 0.0; - FxaaFloat pixelOffsetSubpix = max(pixelOffsetGood, subpixH); - if (!horzSpan) posM.x += pixelOffsetSubpix * lengthSign; - if (horzSpan) posM.y += pixelOffsetSubpix * lengthSign; -#if (FXAA_DISCARD == 1) - return FxaaTexTop(tex, posM); -#else - return FxaaFloat4(FxaaTexTop(tex, posM).xyz, lumaM); -#endif -} -/*==========================================================================*/ -#endif - - - - -/*============================================================================ - -FXAA3 CONSOLE - PC VERSION - ------------------------------------------------------------------------------- -Instead of using this on PC, I'd suggest just using FXAA Quality with -#define FXAA_QUALITY__PRESET 10 -Or -#define FXAA_QUALITY__PRESET 20 -Either are higher qualilty and almost as fast as this on modern PC GPUs. -============================================================================*/ -#if (FXAA_PC_CONSOLE == 1) -/*--------------------------------------------------------------------------*/ -FxaaFloat4 FxaaPixelShader( - // See FXAA Quality FxaaPixelShader() source for docs on Inputs! - FxaaFloat2 pos, - FxaaFloat4 fxaaConsolePosPos, - FxaaTex tex, - FxaaTex fxaaConsole360TexExpBiasNegOne, - FxaaTex fxaaConsole360TexExpBiasNegTwo, - FxaaFloat2 fxaaQualityRcpFrame, - FxaaFloat4 fxaaConsoleRcpFrameOpt, - FxaaFloat4 fxaaConsoleRcpFrameOpt2, - FxaaFloat4 fxaaConsole360RcpFrameOpt2, - FxaaFloat fxaaQualitySubpix, - FxaaFloat fxaaQualityEdgeThreshold, - FxaaFloat fxaaQualityEdgeThresholdMin, - FxaaFloat fxaaConsoleEdgeSharpness, - FxaaFloat fxaaConsoleEdgeThreshold, - FxaaFloat fxaaConsoleEdgeThresholdMin, - FxaaFloat4 fxaaConsole360ConstDir -) -{ - /*--------------------------------------------------------------------------*/ - FxaaFloat lumaNw = FxaaLuma(FxaaTexTop(tex, fxaaConsolePosPos.xy)); - FxaaFloat lumaSw = FxaaLuma(FxaaTexTop(tex, fxaaConsolePosPos.xw)); - FxaaFloat lumaNe = FxaaLuma(FxaaTexTop(tex, fxaaConsolePosPos.zy)); - FxaaFloat lumaSe = FxaaLuma(FxaaTexTop(tex, fxaaConsolePosPos.zw)); - /*--------------------------------------------------------------------------*/ - FxaaFloat4 rgbyM = FxaaTexTop(tex, pos.xy); -#if (FXAA_GREEN_AS_LUMA == 0) - FxaaFloat lumaM = rgbyM.w; -#else - FxaaFloat lumaM = rgbyM.y; -#endif - /*--------------------------------------------------------------------------*/ - FxaaFloat lumaMaxNwSw = max(lumaNw, lumaSw); - lumaNe += 1.0 / 384.0; - FxaaFloat lumaMinNwSw = min(lumaNw, lumaSw); - /*--------------------------------------------------------------------------*/ - FxaaFloat lumaMaxNeSe = max(lumaNe, lumaSe); - FxaaFloat lumaMinNeSe = min(lumaNe, lumaSe); - /*--------------------------------------------------------------------------*/ - FxaaFloat lumaMax = max(lumaMaxNeSe, lumaMaxNwSw); - FxaaFloat lumaMin = min(lumaMinNeSe, lumaMinNwSw); - /*--------------------------------------------------------------------------*/ - FxaaFloat lumaMaxScaled = lumaMax * fxaaConsoleEdgeThreshold; - /*--------------------------------------------------------------------------*/ - FxaaFloat lumaMinM = min(lumaMin, lumaM); - FxaaFloat lumaMaxScaledClamped = max(fxaaConsoleEdgeThresholdMin, lumaMaxScaled); - FxaaFloat lumaMaxM = max(lumaMax, lumaM); - FxaaFloat dirSwMinusNe = lumaSw - lumaNe; - FxaaFloat lumaMaxSubMinM = lumaMaxM - lumaMinM; - FxaaFloat dirSeMinusNw = lumaSe - lumaNw; - if (lumaMaxSubMinM < lumaMaxScaledClamped) return rgbyM; - /*--------------------------------------------------------------------------*/ - FxaaFloat2 dir; - dir.x = dirSwMinusNe + dirSeMinusNw; - dir.y = dirSwMinusNe - dirSeMinusNw; - /*--------------------------------------------------------------------------*/ - FxaaFloat2 dir1 = normalize(dir.xy); - FxaaFloat4 rgbyN1 = FxaaTexTop(tex, pos.xy - dir1 * fxaaConsoleRcpFrameOpt.zw); - FxaaFloat4 rgbyP1 = FxaaTexTop(tex, pos.xy + dir1 * fxaaConsoleRcpFrameOpt.zw); - /*--------------------------------------------------------------------------*/ - FxaaFloat dirAbsMinTimesC = min(abs(dir1.x), abs(dir1.y)) * fxaaConsoleEdgeSharpness; - FxaaFloat2 dir2 = clamp(dir1.xy / dirAbsMinTimesC, -2.0, 2.0); - /*--------------------------------------------------------------------------*/ - FxaaFloat4 rgbyN2 = FxaaTexTop(tex, pos.xy - dir2 * fxaaConsoleRcpFrameOpt2.zw); - FxaaFloat4 rgbyP2 = FxaaTexTop(tex, pos.xy + dir2 * fxaaConsoleRcpFrameOpt2.zw); - /*--------------------------------------------------------------------------*/ - FxaaFloat4 rgbyA = rgbyN1 + rgbyP1; - FxaaFloat4 rgbyB = ((rgbyN2 + rgbyP2) * 0.25) + (rgbyA * 0.25); - /*--------------------------------------------------------------------------*/ -#if (FXAA_GREEN_AS_LUMA == 0) - FxaaBool twoTap = (rgbyB.w < lumaMin) || (rgbyB.w > lumaMax); -#else - FxaaBool twoTap = (rgbyB.y < lumaMin) || (rgbyB.y > lumaMax); -#endif - if (twoTap) rgbyB.xyz = rgbyA.xyz * 0.5; - return rgbyB; -} -/*==========================================================================*/ -#endif - - - -/*============================================================================ - -FXAA3 CONSOLE - 360 PIXEL SHADER - ------------------------------------------------------------------------------- -This optimized version thanks to suggestions from Andy Luedke. -Should be fully tex bound in all cases. -As of the FXAA 3.11 release, I have still not tested this code, -however I fixed a bug which was in both FXAA 3.9 and FXAA 3.10. -And note this is replacing the old unoptimized version. -If it does not work, please let me know so I can fix it. -============================================================================*/ -#if (FXAA_360 == 1) -/*--------------------------------------------------------------------------*/ -[reduceTempRegUsage(4)] -float4 FxaaPixelShader( - // See FXAA Quality FxaaPixelShader() source for docs on Inputs! - FxaaFloat2 pos, - FxaaFloat4 fxaaConsolePosPos, - FxaaTex tex, - FxaaTex fxaaConsole360TexExpBiasNegOne, - FxaaTex fxaaConsole360TexExpBiasNegTwo, - FxaaFloat2 fxaaQualityRcpFrame, - FxaaFloat4 fxaaConsoleRcpFrameOpt, - FxaaFloat4 fxaaConsoleRcpFrameOpt2, - FxaaFloat4 fxaaConsole360RcpFrameOpt2, - FxaaFloat fxaaQualitySubpix, - FxaaFloat fxaaQualityEdgeThreshold, - FxaaFloat fxaaQualityEdgeThresholdMin, - FxaaFloat fxaaConsoleEdgeSharpness, - FxaaFloat fxaaConsoleEdgeThreshold, - FxaaFloat fxaaConsoleEdgeThresholdMin, - FxaaFloat4 fxaaConsole360ConstDir -) -{ - /*--------------------------------------------------------------------------*/ - float4 lumaNwNeSwSe; -#if (FXAA_GREEN_AS_LUMA == 0) - asm - { - tfetch2D lumaNwNeSwSe.w___, tex, pos.xy, OffsetX = -0.5, OffsetY = -0.5, UseComputedLOD = false - tfetch2D lumaNwNeSwSe._w__, tex, pos.xy, OffsetX = 0.5, OffsetY = -0.5, UseComputedLOD = false - tfetch2D lumaNwNeSwSe.__w_, tex, pos.xy, OffsetX = -0.5, OffsetY = 0.5, UseComputedLOD = false - tfetch2D lumaNwNeSwSe.___w, tex, pos.xy, OffsetX = 0.5, OffsetY = 0.5, UseComputedLOD = false - }; -#else - asm - { - tfetch2D lumaNwNeSwSe.y___, tex, pos.xy, OffsetX = -0.5, OffsetY = -0.5, UseComputedLOD = false - tfetch2D lumaNwNeSwSe._y__, tex, pos.xy, OffsetX = 0.5, OffsetY = -0.5, UseComputedLOD = false - tfetch2D lumaNwNeSwSe.__y_, tex, pos.xy, OffsetX = -0.5, OffsetY = 0.5, UseComputedLOD = false - tfetch2D lumaNwNeSwSe.___y, tex, pos.xy, OffsetX = 0.5, OffsetY = 0.5, UseComputedLOD = false - }; -#endif - /*--------------------------------------------------------------------------*/ - lumaNwNeSwSe.y += 1.0 / 384.0; - float2 lumaMinTemp = min(lumaNwNeSwSe.xy, lumaNwNeSwSe.zw); - float2 lumaMaxTemp = max(lumaNwNeSwSe.xy, lumaNwNeSwSe.zw); - float lumaMin = min(lumaMinTemp.x, lumaMinTemp.y); - float lumaMax = max(lumaMaxTemp.x, lumaMaxTemp.y); - /*--------------------------------------------------------------------------*/ - float4 rgbyM = tex2Dlod(tex, float4(pos.xy, 0.0, 0.0)); -#if (FXAA_GREEN_AS_LUMA == 0) - float lumaMinM = min(lumaMin, rgbyM.w); - float lumaMaxM = max(lumaMax, rgbyM.w); -#else - float lumaMinM = min(lumaMin, rgbyM.y); - float lumaMaxM = max(lumaMax, rgbyM.y); -#endif - if ((lumaMaxM - lumaMinM) < max(fxaaConsoleEdgeThresholdMin, lumaMax * fxaaConsoleEdgeThreshold)) return rgbyM; - /*--------------------------------------------------------------------------*/ - float2 dir; - dir.x = dot(lumaNwNeSwSe, fxaaConsole360ConstDir.yyxx); - dir.y = dot(lumaNwNeSwSe, fxaaConsole360ConstDir.xyxy); - dir = normalize(dir); - /*--------------------------------------------------------------------------*/ - float4 dir1 = dir.xyxy * fxaaConsoleRcpFrameOpt.xyzw; - /*--------------------------------------------------------------------------*/ - float4 dir2; - float dirAbsMinTimesC = min(abs(dir.x), abs(dir.y)) * fxaaConsoleEdgeSharpness; - dir2 = saturate(fxaaConsole360ConstDir.zzww * dir.xyxy / dirAbsMinTimesC + 0.5); - dir2 = dir2 * fxaaConsole360RcpFrameOpt2.xyxy + fxaaConsole360RcpFrameOpt2.zwzw; - /*--------------------------------------------------------------------------*/ - float4 rgbyN1 = tex2Dlod(fxaaConsole360TexExpBiasNegOne, float4(pos.xy + dir1.xy, 0.0, 0.0)); - float4 rgbyP1 = tex2Dlod(fxaaConsole360TexExpBiasNegOne, float4(pos.xy + dir1.zw, 0.0, 0.0)); - float4 rgbyN2 = tex2Dlod(fxaaConsole360TexExpBiasNegTwo, float4(pos.xy + dir2.xy, 0.0, 0.0)); - float4 rgbyP2 = tex2Dlod(fxaaConsole360TexExpBiasNegTwo, float4(pos.xy + dir2.zw, 0.0, 0.0)); - /*--------------------------------------------------------------------------*/ - float4 rgbyA = rgbyN1 + rgbyP1; - float4 rgbyB = rgbyN2 + rgbyP2 + rgbyA * 0.5; - /*--------------------------------------------------------------------------*/ - float4 rgbyR = ((FxaaLuma(rgbyB) - lumaMax) > 0.0) ? rgbyA : rgbyB; - rgbyR = ((FxaaLuma(rgbyB) - lumaMin) > 0.0) ? rgbyR : rgbyA; - return rgbyR; -} -/*==========================================================================*/ -#endif - - - -/*============================================================================ - -FXAA3 CONSOLE - OPTIMIZED PS3 PIXEL SHADER (NO EARLY EXIT) - -============================================================================== -The code below does not exactly match the assembly. -I have a feeling that 12 cycles is possible, but was not able to get there. -Might have to increase register count to get full performance. -Note this shader does not use perspective interpolation. - -Use the following cgc options, - ---fenable-bx2 --fastmath --fastprecision --nofloatbindings - ------------------------------------------------------------------------------- -NVSHADERPERF OUTPUT ------------------------------------------------------------------------------- -For reference and to aid in debug, output of NVShaderPerf should match this, - -Shader to schedule: -0: texpkb h0.w(TRUE), v5.zyxx, #0 -2: addh h2.z(TRUE), h0.w, constant(0.001953, 0.000000, 0.000000, 0.000000).x -4: texpkb h0.w(TRUE), v5.xwxx, #0 -6: addh h0.z(TRUE), -h2, h0.w -7: texpkb h1.w(TRUE), v5, #0 -9: addh h0.x(TRUE), h0.z, -h1.w -10: addh h3.w(TRUE), h0.z, h1 -11: texpkb h2.w(TRUE), v5.zwzz, #0 -13: addh h0.z(TRUE), h3.w, -h2.w -14: addh h0.x(TRUE), h2.w, h0 -15: nrmh h1.xz(TRUE), h0_n -16: minh_m8 h0.x(TRUE), |h1|, |h1.z| -17: maxh h4.w(TRUE), h0, h1 -18: divx h2.xy(TRUE), h1_n.xzzw, h0_n -19: movr r1.zw(TRUE), v4.xxxy -20: madr r2.xz(TRUE), -h1, constant(cConst5.x, cConst5.y, cConst5.z, cConst5.w).zzww, r1.zzww -22: minh h5.w(TRUE), h0, h1 -23: texpkb h0(TRUE), r2.xzxx, #0 -25: madr r0.zw(TRUE), h1.xzxz, constant(cConst5.x, cConst5.y, cConst5.z, cConst5.w), r1 -27: maxh h4.x(TRUE), h2.z, h2.w -28: texpkb h1(TRUE), r0.zwzz, #0 -30: addh_d2 h1(TRUE), h0, h1 -31: madr r0.xy(TRUE), -h2, constant(cConst5.x, cConst5.y, cConst5.z, cConst5.w).xyxx, r1.zwzz -33: texpkb h0(TRUE), r0, #0 -35: minh h4.z(TRUE), h2, h2.w -36: fenct TRUE -37: madr r1.xy(TRUE), h2, constant(cConst5.x, cConst5.y, cConst5.z, cConst5.w).xyxx, r1.zwzz -39: texpkb h2(TRUE), r1, #0 -41: addh_d2 h0(TRUE), h0, h2 -42: maxh h2.w(TRUE), h4, h4.x -43: minh h2.x(TRUE), h5.w, h4.z -44: addh_d2 h0(TRUE), h0, h1 -45: slth h2.x(TRUE), h0.w, h2 -46: sgth h2.w(TRUE), h0, h2 -47: movh h0(TRUE), h0 -48: addx.c0 rc(TRUE), h2, h2.w -49: movh h0(c0.NE.x), h1 - -IPU0 ------ Simplified schedule: -------- -Pass | Unit | uOp | PC: Op ------+--------+------+------------------------- -1 | SCT0/1 | mov | 0: TXLr h0.w, g[TEX1].zyxx, const.xxxx, TEX0; -| TEX | txl | 0: TXLr h0.w, g[TEX1].zyxx, const.xxxx, TEX0; -| SCB1 | add | 2: ADDh h2.z, h0.--w-, const.--x-; -| | | -2 | SCT0/1 | mov | 4: TXLr h0.w, g[TEX1].xwxx, const.xxxx, TEX0; -| TEX | txl | 4: TXLr h0.w, g[TEX1].xwxx, const.xxxx, TEX0; -| SCB1 | add | 6: ADDh h0.z,-h2, h0.--w-; -| | | -3 | SCT0/1 | mov | 7: TXLr h1.w, g[TEX1], const.xxxx, TEX0; -| TEX | txl | 7: TXLr h1.w, g[TEX1], const.xxxx, TEX0; -| SCB0 | add | 9: ADDh h0.x, h0.z---,-h1.w---; -| SCB1 | add | 10: ADDh h3.w, h0.---z, h1; -| | | -4 | SCT0/1 | mov | 11: TXLr h2.w, g[TEX1].zwzz, const.xxxx, TEX0; -| TEX | txl | 11: TXLr h2.w, g[TEX1].zwzz, const.xxxx, TEX0; -| SCB0 | add | 14: ADDh h0.x, h2.w---, h0; -| SCB1 | add | 13: ADDh h0.z, h3.--w-,-h2.--w-; -| | | -5 | SCT1 | mov | 15: NRMh h1.xz, h0; -| SRB | nrm | 15: NRMh h1.xz, h0; -| SCB0 | min | 16: MINh*8 h0.x, |h1|, |h1.z---|; -| SCB1 | max | 17: MAXh h4.w, h0, h1; -| | | -6 | SCT0 | div | 18: DIVx h2.xy, h1.xz--, h0; -| SCT1 | mov | 19: MOVr r1.zw, g[TEX0].--xy; -| SCB0 | mad | 20: MADr r2.xz,-h1, const.z-w-, r1.z-w-; -| SCB1 | min | 22: MINh h5.w, h0, h1; -| | | -7 | SCT0/1 | mov | 23: TXLr h0, r2.xzxx, const.xxxx, TEX0; -| TEX | txl | 23: TXLr h0, r2.xzxx, const.xxxx, TEX0; -| SCB0 | max | 27: MAXh h4.x, h2.z---, h2.w---; -| SCB1 | mad | 25: MADr r0.zw, h1.--xz, const, r1; -| | | -8 | SCT0/1 | mov | 28: TXLr h1, r0.zwzz, const.xxxx, TEX0; -| TEX | txl | 28: TXLr h1, r0.zwzz, const.xxxx, TEX0; -| SCB0/1 | add | 30: ADDh/2 h1, h0, h1; -| | | -9 | SCT0 | mad | 31: MADr r0.xy,-h2, const.xy--, r1.zw--; -| SCT1 | mov | 33: TXLr h0, r0, const.zzzz, TEX0; -| TEX | txl | 33: TXLr h0, r0, const.zzzz, TEX0; -| SCB1 | min | 35: MINh h4.z, h2, h2.--w-; -| | | -10 | SCT0 | mad | 37: MADr r1.xy, h2, const.xy--, r1.zw--; -| SCT1 | mov | 39: TXLr h2, r1, const.zzzz, TEX0; -| TEX | txl | 39: TXLr h2, r1, const.zzzz, TEX0; -| SCB0/1 | add | 41: ADDh/2 h0, h0, h2; -| | | -11 | SCT0 | min | 43: MINh h2.x, h5.w---, h4.z---; -| SCT1 | max | 42: MAXh h2.w, h4, h4.---x; -| SCB0/1 | add | 44: ADDh/2 h0, h0, h1; -| | | -12 | SCT0 | set | 45: SLTh h2.x, h0.w---, h2; -| SCT1 | set | 46: SGTh h2.w, h0, h2; -| SCB0/1 | mul | 47: MOVh h0, h0; -| | | -13 | SCT0 | mad | 48: ADDxc0_s rc, h2, h2.w---; -| SCB0/1 | mul | 49: MOVh h0(NE0.xxxx), h1; - -Pass SCT TEX SCB -1: 0% 100% 25% -2: 0% 100% 25% -3: 0% 100% 50% -4: 0% 100% 50% -5: 0% 0% 50% -6: 100% 0% 75% -7: 0% 100% 75% -8: 0% 100% 100% -9: 0% 100% 25% -10: 0% 100% 100% -11: 50% 0% 100% -12: 50% 0% 100% -13: 25% 0% 100% - -MEAN: 17% 61% 67% - -Pass SCT0 SCT1 TEX SCB0 SCB1 -1: 0% 0% 100% 0% 100% -2: 0% 0% 100% 0% 100% -3: 0% 0% 100% 100% 100% -4: 0% 0% 100% 100% 100% -5: 0% 0% 0% 100% 100% -6: 100% 100% 0% 100% 100% -7: 0% 0% 100% 100% 100% -8: 0% 0% 100% 100% 100% -9: 0% 0% 100% 0% 100% -10: 0% 0% 100% 100% 100% -11: 100% 100% 0% 100% 100% -12: 100% 100% 0% 100% 100% -13: 100% 0% 0% 100% 100% - -MEAN: 30% 23% 61% 76% 100% -Fragment Performance Setup: Driver RSX Compiler, GPU RSX, Flags 0x5 -Results 13 cycles, 3 r regs, 923,076,923 pixels/s -============================================================================*/ -#if (FXAA_PS3 == 1) && (FXAA_EARLY_EXIT == 0) -/*--------------------------------------------------------------------------*/ -#pragma regcount 7 -#pragma disablepc all -#pragma option O3 -#pragma option OutColorPrec=fp16 -#pragma texformat default RGBA8 -/*==========================================================================*/ -half4 FxaaPixelShader( - // See FXAA Quality FxaaPixelShader() source for docs on Inputs! - FxaaFloat2 pos, - FxaaFloat4 fxaaConsolePosPos, - FxaaTex tex, - FxaaTex fxaaConsole360TexExpBiasNegOne, - FxaaTex fxaaConsole360TexExpBiasNegTwo, - FxaaFloat2 fxaaQualityRcpFrame, - FxaaFloat4 fxaaConsoleRcpFrameOpt, - FxaaFloat4 fxaaConsoleRcpFrameOpt2, - FxaaFloat4 fxaaConsole360RcpFrameOpt2, - FxaaFloat fxaaQualitySubpix, - FxaaFloat fxaaQualityEdgeThreshold, - FxaaFloat fxaaQualityEdgeThresholdMin, - FxaaFloat fxaaConsoleEdgeSharpness, - FxaaFloat fxaaConsoleEdgeThreshold, - FxaaFloat fxaaConsoleEdgeThresholdMin, - FxaaFloat4 fxaaConsole360ConstDir -) -{ - /*--------------------------------------------------------------------------*/ - // (1) - half4 dir; - half4 lumaNe = h4tex2Dlod(tex, half4(fxaaConsolePosPos.zy, 0, 0)); -#if (FXAA_GREEN_AS_LUMA == 0) - lumaNe.w += half(1.0 / 512.0); - dir.x = -lumaNe.w; - dir.z = -lumaNe.w; -#else - lumaNe.y += half(1.0 / 512.0); - dir.x = -lumaNe.y; - dir.z = -lumaNe.y; -#endif - /*--------------------------------------------------------------------------*/ - // (2) - half4 lumaSw = h4tex2Dlod(tex, half4(fxaaConsolePosPos.xw, 0, 0)); -#if (FXAA_GREEN_AS_LUMA == 0) - dir.x += lumaSw.w; - dir.z += lumaSw.w; -#else - dir.x += lumaSw.y; - dir.z += lumaSw.y; -#endif - /*--------------------------------------------------------------------------*/ - // (3) - half4 lumaNw = h4tex2Dlod(tex, half4(fxaaConsolePosPos.xy, 0, 0)); -#if (FXAA_GREEN_AS_LUMA == 0) - dir.x -= lumaNw.w; - dir.z += lumaNw.w; -#else - dir.x -= lumaNw.y; - dir.z += lumaNw.y; -#endif - /*--------------------------------------------------------------------------*/ - // (4) - half4 lumaSe = h4tex2Dlod(tex, half4(fxaaConsolePosPos.zw, 0, 0)); -#if (FXAA_GREEN_AS_LUMA == 0) - dir.x += lumaSe.w; - dir.z -= lumaSe.w; -#else - dir.x += lumaSe.y; - dir.z -= lumaSe.y; -#endif - /*--------------------------------------------------------------------------*/ - // (5) - half4 dir1_pos; - dir1_pos.xy = normalize(dir.xyz).xz; - half dirAbsMinTimesC = min(abs(dir1_pos.x), abs(dir1_pos.y)) * half(FXAA_CONSOLE__PS3_EDGE_SHARPNESS); - /*--------------------------------------------------------------------------*/ - // (6) - half4 dir2_pos; - dir2_pos.xy = clamp(dir1_pos.xy / dirAbsMinTimesC, half(-2.0), half(2.0)); - dir1_pos.zw = pos.xy; - dir2_pos.zw = pos.xy; - half4 temp1N; - temp1N.xy = dir1_pos.zw - dir1_pos.xy * fxaaConsoleRcpFrameOpt.zw; - /*--------------------------------------------------------------------------*/ - // (7) - temp1N = h4tex2Dlod(tex, half4(temp1N.xy, 0.0, 0.0)); - half4 rgby1; - rgby1.xy = dir1_pos.zw + dir1_pos.xy * fxaaConsoleRcpFrameOpt.zw; - /*--------------------------------------------------------------------------*/ - // (8) - rgby1 = h4tex2Dlod(tex, half4(rgby1.xy, 0.0, 0.0)); - rgby1 = (temp1N + rgby1) * 0.5; - /*--------------------------------------------------------------------------*/ - // (9) - half4 temp2N; - temp2N.xy = dir2_pos.zw - dir2_pos.xy * fxaaConsoleRcpFrameOpt2.zw; - temp2N = h4tex2Dlod(tex, half4(temp2N.xy, 0.0, 0.0)); - /*--------------------------------------------------------------------------*/ - // (10) - half4 rgby2; - rgby2.xy = dir2_pos.zw + dir2_pos.xy * fxaaConsoleRcpFrameOpt2.zw; - rgby2 = h4tex2Dlod(tex, half4(rgby2.xy, 0.0, 0.0)); - rgby2 = (temp2N + rgby2) * 0.5; - /*--------------------------------------------------------------------------*/ - // (11) - // compilier moves these scalar ops up to other cycles -#if (FXAA_GREEN_AS_LUMA == 0) - half lumaMin = min(min(lumaNw.w, lumaSw.w), min(lumaNe.w, lumaSe.w)); - half lumaMax = max(max(lumaNw.w, lumaSw.w), max(lumaNe.w, lumaSe.w)); -#else - half lumaMin = min(min(lumaNw.y, lumaSw.y), min(lumaNe.y, lumaSe.y)); - half lumaMax = max(max(lumaNw.y, lumaSw.y), max(lumaNe.y, lumaSe.y)); -#endif - rgby2 = (rgby2 + rgby1) * 0.5; - /*--------------------------------------------------------------------------*/ - // (12) -#if (FXAA_GREEN_AS_LUMA == 0) - bool twoTapLt = rgby2.w < lumaMin; - bool twoTapGt = rgby2.w > lumaMax; -#else - bool twoTapLt = rgby2.y < lumaMin; - bool twoTapGt = rgby2.y > lumaMax; -#endif - /*--------------------------------------------------------------------------*/ - // (13) - if (twoTapLt || twoTapGt) rgby2 = rgby1; - /*--------------------------------------------------------------------------*/ - return rgby2; -} -/*==========================================================================*/ -#endif - - - -/*============================================================================ - -FXAA3 CONSOLE - OPTIMIZED PS3 PIXEL SHADER (WITH EARLY EXIT) - -============================================================================== -The code mostly matches the assembly. -I have a feeling that 14 cycles is possible, but was not able to get there. -Might have to increase register count to get full performance. -Note this shader does not use perspective interpolation. - -Use the following cgc options, - ---fenable-bx2 --fastmath --fastprecision --nofloatbindings - -Use of FXAA_GREEN_AS_LUMA currently adds a cycle (16 clks). -Will look at fixing this for FXAA 3.12. ------------------------------------------------------------------------------- -NVSHADERPERF OUTPUT ------------------------------------------------------------------------------- -For reference and to aid in debug, output of NVShaderPerf should match this, - -Shader to schedule: -0: texpkb h0.w(TRUE), v5.zyxx, #0 -2: addh h2.y(TRUE), h0.w, constant(0.001953, 0.000000, 0.000000, 0.000000).x -4: texpkb h1.w(TRUE), v5.xwxx, #0 -6: addh h0.x(TRUE), h1.w, -h2.y -7: texpkb h2.w(TRUE), v5.zwzz, #0 -9: minh h4.w(TRUE), h2.y, h2 -10: maxh h5.x(TRUE), h2.y, h2.w -11: texpkb h0.w(TRUE), v5, #0 -13: addh h3.w(TRUE), -h0, h0.x -14: addh h0.x(TRUE), h0.w, h0 -15: addh h0.z(TRUE), -h2.w, h0.x -16: addh h0.x(TRUE), h2.w, h3.w -17: minh h5.y(TRUE), h0.w, h1.w -18: nrmh h2.xz(TRUE), h0_n -19: minh_m8 h2.w(TRUE), |h2.x|, |h2.z| -20: divx h4.xy(TRUE), h2_n.xzzw, h2_n.w -21: movr r1.zw(TRUE), v4.xxxy -22: maxh h2.w(TRUE), h0, h1 -23: fenct TRUE -24: madr r0.xy(TRUE), -h2.xzzw, constant(cConst5.x, cConst5.y, cConst5.z, cConst5.w).zwzz, r1.zwzz -26: texpkb h0(TRUE), r0, #0 -28: maxh h5.x(TRUE), h2.w, h5 -29: minh h5.w(TRUE), h5.y, h4 -30: madr r1.xy(TRUE), h2.xzzw, constant(cConst5.x, cConst5.y, cConst5.z, cConst5.w).zwzz, r1.zwzz -32: texpkb h2(TRUE), r1, #0 -34: addh_d2 h2(TRUE), h0, h2 -35: texpkb h1(TRUE), v4, #0 -37: maxh h5.y(TRUE), h5.x, h1.w -38: minh h4.w(TRUE), h1, h5 -39: madr r0.xy(TRUE), -h4, constant(cConst5.x, cConst5.y, cConst5.z, cConst5.w).xyxx, r1.zwzz -41: texpkb h0(TRUE), r0, #0 -43: addh_m8 h5.z(TRUE), h5.y, -h4.w -44: madr r2.xy(TRUE), h4, constant(cConst5.x, cConst5.y, cConst5.z, cConst5.w).xyxx, r1.zwzz -46: texpkb h3(TRUE), r2, #0 -48: addh_d2 h0(TRUE), h0, h3 -49: addh_d2 h3(TRUE), h0, h2 -50: movh h0(TRUE), h3 -51: slth h3.x(TRUE), h3.w, h5.w -52: sgth h3.w(TRUE), h3, h5.x -53: addx.c0 rc(TRUE), h3.x, h3 -54: slth.c0 rc(TRUE), h5.z, h5 -55: movh h0(c0.NE.w), h2 -56: movh h0(c0.NE.x), h1 - -IPU0 ------ Simplified schedule: -------- -Pass | Unit | uOp | PC: Op ------+--------+------+------------------------- -1 | SCT0/1 | mov | 0: TXLr h0.w, g[TEX1].zyxx, const.xxxx, TEX0; -| TEX | txl | 0: TXLr h0.w, g[TEX1].zyxx, const.xxxx, TEX0; -| SCB0 | add | 2: ADDh h2.y, h0.-w--, const.-x--; -| | | -2 | SCT0/1 | mov | 4: TXLr h1.w, g[TEX1].xwxx, const.xxxx, TEX0; -| TEX | txl | 4: TXLr h1.w, g[TEX1].xwxx, const.xxxx, TEX0; -| SCB0 | add | 6: ADDh h0.x, h1.w---,-h2.y---; -| | | -3 | SCT0/1 | mov | 7: TXLr h2.w, g[TEX1].zwzz, const.xxxx, TEX0; -| TEX | txl | 7: TXLr h2.w, g[TEX1].zwzz, const.xxxx, TEX0; -| SCB0 | max | 10: MAXh h5.x, h2.y---, h2.w---; -| SCB1 | min | 9: MINh h4.w, h2.---y, h2; -| | | -4 | SCT0/1 | mov | 11: TXLr h0.w, g[TEX1], const.xxxx, TEX0; -| TEX | txl | 11: TXLr h0.w, g[TEX1], const.xxxx, TEX0; -| SCB0 | add | 14: ADDh h0.x, h0.w---, h0; -| SCB1 | add | 13: ADDh h3.w,-h0, h0.---x; -| | | -5 | SCT0 | mad | 16: ADDh h0.x, h2.w---, h3.w---; -| SCT1 | mad | 15: ADDh h0.z,-h2.--w-, h0.--x-; -| SCB0 | min | 17: MINh h5.y, h0.-w--, h1.-w--; -| | | -6 | SCT1 | mov | 18: NRMh h2.xz, h0; -| SRB | nrm | 18: NRMh h2.xz, h0; -| SCB1 | min | 19: MINh*8 h2.w, |h2.---x|, |h2.---z|; -| | | -7 | SCT0 | div | 20: DIVx h4.xy, h2.xz--, h2.ww--; -| SCT1 | mov | 21: MOVr r1.zw, g[TEX0].--xy; -| SCB1 | max | 22: MAXh h2.w, h0, h1; -| | | -8 | SCT0 | mad | 24: MADr r0.xy,-h2.xz--, const.zw--, r1.zw--; -| SCT1 | mov | 26: TXLr h0, r0, const.xxxx, TEX0; -| TEX | txl | 26: TXLr h0, r0, const.xxxx, TEX0; -| SCB0 | max | 28: MAXh h5.x, h2.w---, h5; -| SCB1 | min | 29: MINh h5.w, h5.---y, h4; -| | | -9 | SCT0 | mad | 30: MADr r1.xy, h2.xz--, const.zw--, r1.zw--; -| SCT1 | mov | 32: TXLr h2, r1, const.xxxx, TEX0; -| TEX | txl | 32: TXLr h2, r1, const.xxxx, TEX0; -| SCB0/1 | add | 34: ADDh/2 h2, h0, h2; -| | | -10 | SCT0/1 | mov | 35: TXLr h1, g[TEX0], const.xxxx, TEX0; -| TEX | txl | 35: TXLr h1, g[TEX0], const.xxxx, TEX0; -| SCB0 | max | 37: MAXh h5.y, h5.-x--, h1.-w--; -| SCB1 | min | 38: MINh h4.w, h1, h5; -| | | -11 | SCT0 | mad | 39: MADr r0.xy,-h4, const.xy--, r1.zw--; -| SCT1 | mov | 41: TXLr h0, r0, const.zzzz, TEX0; -| TEX | txl | 41: TXLr h0, r0, const.zzzz, TEX0; -| SCB0 | mad | 44: MADr r2.xy, h4, const.xy--, r1.zw--; -| SCB1 | add | 43: ADDh*8 h5.z, h5.--y-,-h4.--w-; -| | | -12 | SCT0/1 | mov | 46: TXLr h3, r2, const.xxxx, TEX0; -| TEX | txl | 46: TXLr h3, r2, const.xxxx, TEX0; -| SCB0/1 | add | 48: ADDh/2 h0, h0, h3; -| | | -13 | SCT0/1 | mad | 49: ADDh/2 h3, h0, h2; -| SCB0/1 | mul | 50: MOVh h0, h3; -| | | -14 | SCT0 | set | 51: SLTh h3.x, h3.w---, h5.w---; -| SCT1 | set | 52: SGTh h3.w, h3, h5.---x; -| SCB0 | set | 54: SLThc0 rc, h5.z---, h5; -| SCB1 | add | 53: ADDxc0_s rc, h3.---x, h3; -| | | -15 | SCT0/1 | mul | 55: MOVh h0(NE0.wwww), h2; -| SCB0/1 | mul | 56: MOVh h0(NE0.xxxx), h1; - -Pass SCT TEX SCB -1: 0% 100% 25% -2: 0% 100% 25% -3: 0% 100% 50% -4: 0% 100% 50% -5: 50% 0% 25% -6: 0% 0% 25% -7: 100% 0% 25% -8: 0% 100% 50% -9: 0% 100% 100% -10: 0% 100% 50% -11: 0% 100% 75% -12: 0% 100% 100% -13: 100% 0% 100% -14: 50% 0% 50% -15: 100% 0% 100% - -MEAN: 26% 60% 56% - -Pass SCT0 SCT1 TEX SCB0 SCB1 -1: 0% 0% 100% 100% 0% -2: 0% 0% 100% 100% 0% -3: 0% 0% 100% 100% 100% -4: 0% 0% 100% 100% 100% -5: 100% 100% 0% 100% 0% -6: 0% 0% 0% 0% 100% -7: 100% 100% 0% 0% 100% -8: 0% 0% 100% 100% 100% -9: 0% 0% 100% 100% 100% -10: 0% 0% 100% 100% 100% -11: 0% 0% 100% 100% 100% -12: 0% 0% 100% 100% 100% -13: 100% 100% 0% 100% 100% -14: 100% 100% 0% 100% 100% -15: 100% 100% 0% 100% 100% - -MEAN: 33% 33% 60% 86% 80% -Fragment Performance Setup: Driver RSX Compiler, GPU RSX, Flags 0x5 -Results 15 cycles, 3 r regs, 800,000,000 pixels/s -============================================================================*/ -#if (FXAA_PS3 == 1) && (FXAA_EARLY_EXIT == 1) -/*--------------------------------------------------------------------------*/ -#pragma regcount 7 -#pragma disablepc all -#pragma option O2 -#pragma option OutColorPrec=fp16 -#pragma texformat default RGBA8 -/*==========================================================================*/ -half4 FxaaPixelShader( - // See FXAA Quality FxaaPixelShader() source for docs on Inputs! - FxaaFloat2 pos, - FxaaFloat4 fxaaConsolePosPos, - FxaaTex tex, - FxaaTex fxaaConsole360TexExpBiasNegOne, - FxaaTex fxaaConsole360TexExpBiasNegTwo, - FxaaFloat2 fxaaQualityRcpFrame, - FxaaFloat4 fxaaConsoleRcpFrameOpt, - FxaaFloat4 fxaaConsoleRcpFrameOpt2, - FxaaFloat4 fxaaConsole360RcpFrameOpt2, - FxaaFloat fxaaQualitySubpix, - FxaaFloat fxaaQualityEdgeThreshold, - FxaaFloat fxaaQualityEdgeThresholdMin, - FxaaFloat fxaaConsoleEdgeSharpness, - FxaaFloat fxaaConsoleEdgeThreshold, - FxaaFloat fxaaConsoleEdgeThresholdMin, - FxaaFloat4 fxaaConsole360ConstDir -) -{ - /*--------------------------------------------------------------------------*/ - // (1) - half4 rgbyNe = h4tex2Dlod(tex, half4(fxaaConsolePosPos.zy, 0, 0)); -#if (FXAA_GREEN_AS_LUMA == 0) - half lumaNe = rgbyNe.w + half(1.0 / 512.0); -#else - half lumaNe = rgbyNe.y + half(1.0 / 512.0); -#endif - /*--------------------------------------------------------------------------*/ - // (2) - half4 lumaSw = h4tex2Dlod(tex, half4(fxaaConsolePosPos.xw, 0, 0)); -#if (FXAA_GREEN_AS_LUMA == 0) - half lumaSwNegNe = lumaSw.w - lumaNe; -#else - half lumaSwNegNe = lumaSw.y - lumaNe; -#endif - /*--------------------------------------------------------------------------*/ - // (3) - half4 lumaNw = h4tex2Dlod(tex, half4(fxaaConsolePosPos.xy, 0, 0)); -#if (FXAA_GREEN_AS_LUMA == 0) - half lumaMaxNwSw = max(lumaNw.w, lumaSw.w); - half lumaMinNwSw = min(lumaNw.w, lumaSw.w); -#else - half lumaMaxNwSw = max(lumaNw.y, lumaSw.y); - half lumaMinNwSw = min(lumaNw.y, lumaSw.y); -#endif - /*--------------------------------------------------------------------------*/ - // (4) - half4 lumaSe = h4tex2Dlod(tex, half4(fxaaConsolePosPos.zw, 0, 0)); -#if (FXAA_GREEN_AS_LUMA == 0) - half dirZ = lumaNw.w + lumaSwNegNe; - half dirX = -lumaNw.w + lumaSwNegNe; -#else - half dirZ = lumaNw.y + lumaSwNegNe; - half dirX = -lumaNw.y + lumaSwNegNe; -#endif - /*--------------------------------------------------------------------------*/ - // (5) - half3 dir; - dir.y = 0.0; -#if (FXAA_GREEN_AS_LUMA == 0) - dir.x = lumaSe.w + dirX; - dir.z = -lumaSe.w + dirZ; - half lumaMinNeSe = min(lumaNe, lumaSe.w); -#else - dir.x = lumaSe.y + dirX; - dir.z = -lumaSe.y + dirZ; - half lumaMinNeSe = min(lumaNe, lumaSe.y); -#endif - /*--------------------------------------------------------------------------*/ - // (6) - half4 dir1_pos; - dir1_pos.xy = normalize(dir).xz; - half dirAbsMinTimes8 = min(abs(dir1_pos.x), abs(dir1_pos.y)) * half(FXAA_CONSOLE__PS3_EDGE_SHARPNESS); - /*--------------------------------------------------------------------------*/ - // (7) - half4 dir2_pos; - dir2_pos.xy = clamp(dir1_pos.xy / dirAbsMinTimes8, half(-2.0), half(2.0)); - dir1_pos.zw = pos.xy; - dir2_pos.zw = pos.xy; -#if (FXAA_GREEN_AS_LUMA == 0) - half lumaMaxNeSe = max(lumaNe, lumaSe.w); -#else - half lumaMaxNeSe = max(lumaNe, lumaSe.y); -#endif - /*--------------------------------------------------------------------------*/ - // (8) - half4 temp1N; - temp1N.xy = dir1_pos.zw - dir1_pos.xy * fxaaConsoleRcpFrameOpt.zw; - temp1N = h4tex2Dlod(tex, half4(temp1N.xy, 0.0, 0.0)); - half lumaMax = max(lumaMaxNwSw, lumaMaxNeSe); - half lumaMin = min(lumaMinNwSw, lumaMinNeSe); - /*--------------------------------------------------------------------------*/ - // (9) - half4 rgby1; - rgby1.xy = dir1_pos.zw + dir1_pos.xy * fxaaConsoleRcpFrameOpt.zw; - rgby1 = h4tex2Dlod(tex, half4(rgby1.xy, 0.0, 0.0)); - rgby1 = (temp1N + rgby1) * 0.5; - /*--------------------------------------------------------------------------*/ - // (10) - half4 rgbyM = h4tex2Dlod(tex, half4(pos.xy, 0.0, 0.0)); -#if (FXAA_GREEN_AS_LUMA == 0) - half lumaMaxM = max(lumaMax, rgbyM.w); - half lumaMinM = min(lumaMin, rgbyM.w); -#else - half lumaMaxM = max(lumaMax, rgbyM.y); - half lumaMinM = min(lumaMin, rgbyM.y); -#endif - /*--------------------------------------------------------------------------*/ - // (11) - half4 temp2N; - temp2N.xy = dir2_pos.zw - dir2_pos.xy * fxaaConsoleRcpFrameOpt2.zw; - temp2N = h4tex2Dlod(tex, half4(temp2N.xy, 0.0, 0.0)); - half4 rgby2; - rgby2.xy = dir2_pos.zw + dir2_pos.xy * fxaaConsoleRcpFrameOpt2.zw; - half lumaRangeM = (lumaMaxM - lumaMinM) / FXAA_CONSOLE__PS3_EDGE_THRESHOLD; - /*--------------------------------------------------------------------------*/ - // (12) - rgby2 = h4tex2Dlod(tex, half4(rgby2.xy, 0.0, 0.0)); - rgby2 = (temp2N + rgby2) * 0.5; - /*--------------------------------------------------------------------------*/ - // (13) - rgby2 = (rgby2 + rgby1) * 0.5; - /*--------------------------------------------------------------------------*/ - // (14) -#if (FXAA_GREEN_AS_LUMA == 0) - bool twoTapLt = rgby2.w < lumaMin; - bool twoTapGt = rgby2.w > lumaMax; -#else - bool twoTapLt = rgby2.y < lumaMin; - bool twoTapGt = rgby2.y > lumaMax; -#endif - bool earlyExit = lumaRangeM < lumaMax; - bool twoTap = twoTapLt || twoTapGt; - /*--------------------------------------------------------------------------*/ - // (15) - if (twoTap) rgby2 = rgby1; - if (earlyExit) rgby2 = rgbyM; - /*--------------------------------------------------------------------------*/ - return rgby2; -} -/*==========================================================================*/ -#endif - -#endif // __FXAA3_INC__ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/FastApproximateAntialiasing.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/FastApproximateAntialiasing.hlsl.meta deleted file mode 100644 index 35bef440f..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/FastApproximateAntialiasing.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 817a98c8f709269458e50b65910ed4bc -timeCreated: 1490347846 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/FinalPass.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/FinalPass.shader deleted file mode 100644 index a818323e8..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/FinalPass.shader +++ /dev/null @@ -1,156 +0,0 @@ -Shader "Hidden/PostProcessing/FinalPass" -{ - HLSLINCLUDE - - #pragma multi_compile __ FXAA FXAA_LOW - #pragma multi_compile __ FXAA_KEEP_ALPHA - - #pragma vertex VertUVTransform - #pragma fragment Frag - - #include "../StdLib.hlsl" - #include "../Colors.hlsl" - #include "Dithering.hlsl" - - // PS3 and XBOX360 aren't supported in Unity anymore, only use the PC variant - #define FXAA_PC 1 - - #if FXAA_KEEP_ALPHA - // Luma hasn't been encoded in alpha - #define FXAA_GREEN_AS_LUMA 1 - #else - // Luma is encoded in alpha after the first Uber pass - #define FXAA_GREEN_AS_LUMA 0 - #endif - - #if FXAA_LOW - #define FXAA_QUALITY__PRESET 12 - #define FXAA_QUALITY_SUBPIX 1.0 - #define FXAA_QUALITY_EDGE_THRESHOLD 0.166 - #define FXAA_QUALITY_EDGE_THRESHOLD_MIN 0.0625 - #else - #define FXAA_QUALITY__PRESET 28 - #define FXAA_QUALITY_SUBPIX 1.0 - #define FXAA_QUALITY_EDGE_THRESHOLD 0.063 - #define FXAA_QUALITY_EDGE_THRESHOLD_MIN 0.0312 - #endif - - #include "FastApproximateAntialiasing.hlsl" - - TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); - float4 _MainTex_TexelSize; - - float4 Frag(VaryingsDefault i) : SV_Target - { - half4 color = 0.0; - - // Fast Approximate Anti-aliasing - #if FXAA || FXAA_LOW - { - #if FXAA_HLSL_4 || FXAA_HLSL_5 - FxaaTex mainTex; - mainTex.tex = _MainTex; - mainTex.smpl = sampler_MainTex; - #else - FxaaTex mainTex = _MainTex; - #endif - - color = FxaaPixelShader( - i.texcoord, // pos - 0.0, // fxaaConsolePosPos (unused) - mainTex, // tex - mainTex, // fxaaConsole360TexExpBiasNegOne (unused) - mainTex, // fxaaConsole360TexExpBiasNegTwo (unused) - _MainTex_TexelSize.xy, // fxaaQualityRcpFrame - 0.0, // fxaaConsoleRcpFrameOpt (unused) - 0.0, // fxaaConsoleRcpFrameOpt2 (unused) - 0.0, // fxaaConsole360RcpFrameOpt2 (unused) - FXAA_QUALITY_SUBPIX, - FXAA_QUALITY_EDGE_THRESHOLD, - FXAA_QUALITY_EDGE_THRESHOLD_MIN, - 0.0, // fxaaConsoleEdgeSharpness (unused) - 0.0, // fxaaConsoleEdgeThreshold (unused) - 0.0, // fxaaConsoleEdgeThresholdMin (unused) - 0.0 // fxaaConsole360ConstDir (unused) - ); - - #if FXAA_KEEP_ALPHA - { - color.a = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo).a; - } - #endif - } - #else - { - color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); - } - #endif - - color.rgb = Dither(color.rgb, i.texcoord); - return color; - } - - ENDHLSL - - SubShader - { - Cull Off ZWrite Off ZTest Always - - Pass - { - HLSLPROGRAM - #pragma exclude_renderers gles vulkan switch - - #pragma multi_compile __ STEREO_INSTANCING_ENABLED STEREO_DOUBLEWIDE_TARGET - #pragma target 5.0 - - ENDHLSL - } - } - - SubShader - { - Cull Off ZWrite Off ZTest Always - - Pass - { - HLSLPROGRAM - #pragma exclude_renderers gles vulkan switch - - #pragma multi_compile __ STEREO_INSTANCING_ENABLED STEREO_DOUBLEWIDE_TARGET - #pragma target 3.0 - - ENDHLSL - } - } - - SubShader - { - Cull Off ZWrite Off ZTest Always - - Pass - { - HLSLPROGRAM - #pragma only_renderers gles - - #pragma multi_compile __ STEREO_INSTANCING_ENABLED STEREO_DOUBLEWIDE_TARGET - #pragma target es3.0 - - ENDHLSL - } - } - - SubShader - { - Cull Off ZWrite Off ZTest Always - - Pass - { - HLSLPROGRAM - #pragma only_renderers gles vulkan switch - - #pragma multi_compile __ STEREO_DOUBLEWIDE_TARGET //not supporting STEREO_INSTANCING_ENABLED - ENDHLSL - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/FinalPass.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/FinalPass.shader.meta deleted file mode 100644 index a8a06c9bd..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/FinalPass.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: f75014305794b3948a3c6d5ccd550e05 -timeCreated: 1492610926 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Fog.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Fog.hlsl deleted file mode 100644 index f4e93a4bf..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Fog.hlsl +++ /dev/null @@ -1,32 +0,0 @@ -#ifndef UNITY_POSTFX_FOG -#define UNITY_POSTFX_FOG - -half4 _FogColor; -float3 _FogParams; - -#define FOG_DENSITY _FogParams.x -#define FOG_START _FogParams.y -#define FOG_END _FogParams.z - -half ComputeFog(float z) -{ - half fog = 0.0; -#if FOG_LINEAR - fog = (FOG_END - z) / (FOG_END - FOG_START); -#elif FOG_EXP - fog = exp2(-FOG_DENSITY * z); -#else // FOG_EXP2 - fog = FOG_DENSITY * z; - fog = exp2(-fog * fog); -#endif - return saturate(fog); -} - -float ComputeFogDistance(float depth) -{ - float dist = depth * _ProjectionParams.z; - dist -= _ProjectionParams.y; - return dist; -} - -#endif // UNITY_POSTFX_FOG diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Fog.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Fog.hlsl.meta deleted file mode 100644 index 59ad34983..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Fog.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 6c5a4cd8abc6e204985ac645b8dad78e -timeCreated: 1498725505 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/GaussianDownsample.compute b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/GaussianDownsample.compute deleted file mode 100644 index d805349cd..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/GaussianDownsample.compute +++ /dev/null @@ -1,156 +0,0 @@ -// -// This is a modified version of the BlurCS compute shader from Microsoft's MiniEngine -// library. The copyright notice from the original version is included below. -// -// The original source code of MiniEngine is available on GitHub. -// https://github.com/Microsoft/DirectX-Graphics-Samples -// - -// -// Copyright (c) Microsoft. All rights reserved. -// This code is licensed under the MIT License (MIT). -// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF -// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY -// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR -// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. -// -// Developed by Minigraph -// -// Author: Bob Brown -// - -#pragma warning(disable : 3568) -#pragma exclude_renderers gles gles3 d3d11_9x - -#include "../StdLib.hlsl" - -Texture2D _Source; -RWTexture2D _Result; - -SamplerState sampler_LinearClamp; - -CBUFFER_START(cb) - float4 _Size; -CBUFFER_END - -// 16x16 pixels with an 8x8 center that we will be blurring writing out. Each uint is two color -// channels packed together. -// The reason for separating channels is to reduce bank conflicts in the local data memory -// controller. A large stride will cause more threads to collide on the same memory bank. -groupshared uint gs_cacheR[128]; -groupshared uint gs_cacheG[128]; -groupshared uint gs_cacheB[128]; -groupshared uint gs_cacheA[128]; - -float4 BlurPixels(float4 a, float4 b, float4 c, float4 d, float4 e, float4 f, float4 g, float4 h, float4 i) -{ - return 0.27343750 * (e ) - + 0.21875000 * (d + f) - + 0.10937500 * (c + g) - + 0.03125000 * (b + h) - + 0.00390625 * (a + i); -} - -void Store2Pixels(uint index, float4 pixel1, float4 pixel2) -{ - gs_cacheR[index] = f32tof16(pixel1.r) | f32tof16(pixel2.r) << 16; - gs_cacheG[index] = f32tof16(pixel1.g) | f32tof16(pixel2.g) << 16; - gs_cacheB[index] = f32tof16(pixel1.b) | f32tof16(pixel2.b) << 16; - gs_cacheA[index] = f32tof16(pixel1.a) | f32tof16(pixel2.a) << 16; -} - -void Load2Pixels(uint index, out float4 pixel1, out float4 pixel2) -{ - uint rr = gs_cacheR[index]; - uint gg = gs_cacheG[index]; - uint bb = gs_cacheB[index]; - uint aa = gs_cacheA[index]; - pixel1 = float4(f16tof32(rr ), f16tof32(gg ), f16tof32(bb ), f16tof32(aa )); - pixel2 = float4(f16tof32(rr >> 16), f16tof32(gg >> 16), f16tof32(bb >> 16), f16tof32(aa >> 16)); -} - -void Store1Pixel(uint index, float4 pixel) -{ - gs_cacheR[index] = asuint(pixel.r); - gs_cacheG[index] = asuint(pixel.g); - gs_cacheB[index] = asuint(pixel.b); - gs_cacheA[index] = asuint(pixel.a); -} - -void Load1Pixel(uint index, out float4 pixel) -{ - pixel = asfloat(uint4(gs_cacheR[index], gs_cacheG[index], gs_cacheB[index], gs_cacheA[index])); -} - -// Blur two pixels horizontally. This reduces LDS reads and pixel unpacking. -void BlurHorizontally(uint outIndex, uint leftMostIndex) -{ - float4 s0, s1, s2, s3, s4, s5, s6, s7, s8, s9; - Load2Pixels(leftMostIndex + 0, s0, s1); - Load2Pixels(leftMostIndex + 1, s2, s3); - Load2Pixels(leftMostIndex + 2, s4, s5); - Load2Pixels(leftMostIndex + 3, s6, s7); - Load2Pixels(leftMostIndex + 4, s8, s9); - - Store1Pixel(outIndex , BlurPixels(s0, s1, s2, s3, s4, s5, s6, s7, s8)); - Store1Pixel(outIndex + 1, BlurPixels(s1, s2, s3, s4, s5, s6, s7, s8, s9)); -} - -void BlurVertically(uint2 pixelCoord, uint topMostIndex) -{ - float4 s0, s1, s2, s3, s4, s5, s6, s7, s8; - Load1Pixel(topMostIndex , s0); - Load1Pixel(topMostIndex + 8, s1); - Load1Pixel(topMostIndex + 16, s2); - Load1Pixel(topMostIndex + 24, s3); - Load1Pixel(topMostIndex + 32, s4); - Load1Pixel(topMostIndex + 40, s5); - Load1Pixel(topMostIndex + 48, s6); - Load1Pixel(topMostIndex + 56, s7); - Load1Pixel(topMostIndex + 64, s8); - - float4 blurred = BlurPixels(s0, s1, s2, s3, s4, s5, s6, s7, s8); - - // Write to the final target - _Result[pixelCoord] = blurred; -} - -#pragma kernel KMain - -#ifdef DISABLE_COMPUTE_SHADERS - -TRIVIAL_COMPUTE_KERNEL(KMain) - -#else - -[numthreads(8, 8, 1)] -void KMain(uint2 groupId : SV_GroupID, uint2 groupThreadId : SV_GroupThreadID, uint2 dispatchThreadId : SV_DispatchThreadID) -{ - // Upper-left pixel coordinate of quad that this thread will read - int2 threadUL = (groupThreadId << 1) + (groupId << 3) - 4; - - // Downsample the block - float2 offset = float2(threadUL); - float4 p00 = _Source.SampleLevel(sampler_LinearClamp, (offset + 0.5) * _Size.zw, 0.0); - float4 p10 = _Source.SampleLevel(sampler_LinearClamp, (offset + float2(1.0, 0.0) + 0.5) * _Size.zw, 0.0); - float4 p01 = _Source.SampleLevel(sampler_LinearClamp, (offset + float2(0.0, 1.0) + 0.5) * _Size.zw, 0.0); - float4 p11 = _Source.SampleLevel(sampler_LinearClamp, (offset + float2(1.0, 1.0) + 0.5) * _Size.zw, 0.0); - - // Store the 4 downsampled pixels in LDS - uint destIdx = groupThreadId.x + (groupThreadId.y << 4u); - Store2Pixels(destIdx , p00, p10); - Store2Pixels(destIdx + 8u, p01, p11); - - GroupMemoryBarrierWithGroupSync(); - - // Horizontally blur the pixels in LDS - uint row = groupThreadId.y << 4u; - BlurHorizontally(row + (groupThreadId.x << 1u), row + groupThreadId.x + (groupThreadId.x & 4u)); - - GroupMemoryBarrierWithGroupSync(); - - // Vertically blur the pixels in LDS and write the result to memory - BlurVertically(dispatchThreadId, (groupThreadId.y << 3u) + groupThreadId.x); -} - -#endif // DISABLE_COMPUTE_SHADERS diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/GaussianDownsample.compute.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/GaussianDownsample.compute.meta deleted file mode 100644 index a7828467d..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/GaussianDownsample.compute.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 6dba4103d23a7904fbc49099355aff3e -timeCreated: 1503754250 -licenseType: Pro -ComputeShaderImporter: - currentAPIMask: 131076 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/GrainBaker.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/GrainBaker.shader deleted file mode 100644 index 7095a3bfa..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/GrainBaker.shader +++ /dev/null @@ -1,104 +0,0 @@ -Shader "Hidden/PostProcessing/GrainBaker" -{ - HLSLINCLUDE - - #pragma exclude_renderers d3d11_9x - #pragma target 3.0 - #include "../StdLib.hlsl" - - float _Phase; - float3 _NoiseParameters; - - // Implementation based on Timothy Lottes' "Large Grain" - // Reference code: https://www.shadertoy.com/view/4sSXDW - // Other article of interest: http://devlog-martinsh.blogspot.fr/2013/05/image-imperfections-and-film-grain-post.html - float Noise(float2 n, float x) - { - n += x; - return frac(sin(dot(n.xy, _NoiseParameters.xy)) * _NoiseParameters.z); - } - - float Step1(float2 uv, float n) - { - float b = 2.0, c = -12.0; - return (1.0 / (4.0 + b * 4.0 + abs(c))) * ( - Noise(uv + float2(-1.0, -1.0), n) + - Noise(uv + float2( 0.0, -1.0), n) * b + - Noise(uv + float2( 1.0, -1.0), n) + - Noise(uv + float2(-1.0, 0.0), n) * b + - Noise(uv + float2( 0.0, 0.0), n) * c + - Noise(uv + float2( 1.0, 0.0), n) * b + - Noise(uv + float2(-1.0, 1.0), n) + - Noise(uv + float2( 0.0, 1.0), n) * b + - Noise(uv + float2( 1.0, 1.0), n) - ); - } - - float Step2(float2 uv, float n) - { - float b = 2.0, c = 4.0; - return (1.0 / (4.0 + b * 4.0 + abs(c))) * ( - Step1(uv + float2(-1.0, -1.0), n) + - Step1(uv + float2( 0.0, -1.0), n) * b + - Step1(uv + float2( 1.0, -1.0), n) + - Step1(uv + float2(-1.0, 0.0), n) * b + - Step1(uv + float2( 0.0, 0.0), n) * c + - Step1(uv + float2( 1.0, 0.0), n) * b + - Step1(uv + float2(-1.0, 1.0), n) + - Step1(uv + float2( 0.0, 1.0), n) * b + - Step1(uv + float2( 1.0, 1.0), n) - ); - } - - float Step3BW(float2 uv) - { - return Step2(uv, frac(_Phase)); - } - - float3 Step3(float2 uv) - { - float a = Step2(uv, 0.07 * frac(_Phase)); - float b = Step2(uv, 0.11 * frac(_Phase)); - float c = Step2(uv, 0.13 * frac(_Phase)); - return float3(a, b, c); - } - - float4 FragGrain(VaryingsDefault i) : SV_Target - { - float grain = Step3BW(i.texcoordStereo * float2(128.0, 128.0)); - return float4(grain.xxx, 1.0); - } - - float4 FragGrainColored(VaryingsDefault i) : SV_Target - { - float3 grain = Step3(i.texcoordStereo * float2(128.0, 128.0)); - return float4(grain, 1.0); - } - - ENDHLSL - - SubShader - { - Cull Off ZWrite Off ZTest Always - - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragGrain - - ENDHLSL - } - - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragGrainColored - - ENDHLSL - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/GrainBaker.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/GrainBaker.shader.meta deleted file mode 100644 index 6cc9b9189..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/GrainBaker.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 0d8afcb51cc9f0349a6d190da929b838 -timeCreated: 1489138738 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Lut2DBaker.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Lut2DBaker.shader deleted file mode 100644 index 0c38c622e..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Lut2DBaker.shader +++ /dev/null @@ -1,222 +0,0 @@ -Shader "Hidden/PostProcessing/Lut2DBaker" -{ - HLSLINCLUDE - - #pragma target 3.0 - #include "../StdLib.hlsl" - #include "../Colors.hlsl" - #include "../ACES.hlsl" - - TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); - float4 _Lut2D_Params; - float4 _UserLut2D_Params; - - float3 _ColorBalance; - float3 _ColorFilter; - float3 _HueSatCon; - float _Brightness; // LDR only - - float3 _ChannelMixerRed; - float3 _ChannelMixerGreen; - float3 _ChannelMixerBlue; - - float3 _Lift; - float3 _InvGamma; - float3 _Gain; - - TEXTURE2D_SAMPLER2D(_Curves, sampler_Curves); - - float4 _CustomToneCurve; - float4 _ToeSegmentA; - float4 _ToeSegmentB; - float4 _MidSegmentA; - float4 _MidSegmentB; - float4 _ShoSegmentA; - float4 _ShoSegmentB; - - float3 ApplyCommonGradingSteps(float3 colorLinear) - { - colorLinear = WhiteBalance(colorLinear, _ColorBalance); - colorLinear *= _ColorFilter; - colorLinear = ChannelMixer(colorLinear, _ChannelMixerRed, _ChannelMixerGreen, _ChannelMixerBlue); - colorLinear = LiftGammaGainHDR(colorLinear, _Lift, _InvGamma, _Gain); - - // Do NOT feed negative values to RgbToHsv or they'll wrap around - colorLinear = max((float3)0.0, colorLinear); - - float3 hsv = RgbToHsv(colorLinear); - - // Hue Vs Sat - float satMult; - satMult = saturate(SAMPLE_TEXTURE2D_LOD(_Curves, sampler_Curves, float2(hsv.x, 0.25), 0).y) * 2.0; - - // Sat Vs Sat - satMult *= saturate(SAMPLE_TEXTURE2D_LOD(_Curves, sampler_Curves, float2(hsv.y, 0.25), 0).z) * 2.0; - - // Lum Vs Sat - satMult *= saturate(SAMPLE_TEXTURE2D_LOD(_Curves, sampler_Curves, float2(Luminance(colorLinear), 0.25), 0).w) * 2.0; - - // Hue Vs Hue - float hue = hsv.x + _HueSatCon.x; - float offset = saturate(SAMPLE_TEXTURE2D_LOD(_Curves, sampler_Curves, float2(hue, 0.25), 0).x) - 0.5; - hue += offset; - hsv.x = RotateHue(hue, 0.0, 1.0); - - colorLinear = HsvToRgb(hsv); - colorLinear = Saturation(colorLinear, _HueSatCon.y * satMult); - - return colorLinear; - } - - // - // LDR Grading process - // - float3 ColorGradeLDR(float3 colorLinear) - { - // Brightness is a simple linear multiplier. Works better in LDR than using e.v. - colorLinear *= _Brightness; - - // Contrast is done in linear, switching to log for that in LDR is pointless and doesn't - // feel as good to tweak - const float kMidGrey = pow(0.5, 2.2); - colorLinear = Contrast(colorLinear, kMidGrey, _HueSatCon.z); - - colorLinear = ApplyCommonGradingSteps(colorLinear); - - // YRGB only works in LDR for now as we don't do any curve range remapping - colorLinear = YrgbCurve(saturate(colorLinear), TEXTURE2D_PARAM(_Curves, sampler_Curves)); - - return saturate(colorLinear); - } - - float4 FragLDRFromScratch(VaryingsDefault i) : SV_Target - { - float3 colorLinear = GetLutStripValue(i.texcoordStereo, _Lut2D_Params); - float3 graded = ColorGradeLDR(colorLinear); - return float4(graded, 1.0); - } - - float4 FragLDR(VaryingsDefault i) : SV_Target - { - // Note: user luts may not have the same size as the internal one - float3 neutralColorLinear = GetLutStripValue(i.texcoordStereo, _Lut2D_Params); - float3 lookup = ApplyLut2D(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), neutralColorLinear, _UserLut2D_Params.xyz); - float3 colorLinear = lerp(neutralColorLinear, lookup, _UserLut2D_Params.w); - float3 graded = ColorGradeLDR(colorLinear); - return float4(graded, 1.0); - } - - // - // HDR Grading process - // - float3 LogGradeHDR(float3 colorLog) - { - // HDR contrast feels a lot more natural when done in log rather than doing it in linear - colorLog = Contrast(colorLog, ACEScc_MIDGRAY, _HueSatCon.z); - return colorLog; - } - - float3 LinearGradeHDR(float3 colorLinear) - { - colorLinear = ApplyCommonGradingSteps(colorLinear); - return colorLinear; - } - - float3 ColorGradeHDR(float3 colorLutSpace) - { - #if TONEMAPPING_ACES - { - float3 colorLinear = LUT_SPACE_DECODE(colorLutSpace); - float3 aces = unity_to_ACES(colorLinear); - - // ACEScc (log) space - float3 acescc = ACES_to_ACEScc(aces); - acescc = LogGradeHDR(acescc); - aces = ACEScc_to_ACES(acescc); - - // ACEScg (linear) space - float3 acescg = ACES_to_ACEScg(aces); - acescg = LinearGradeHDR(acescg); - - // Tonemap ODT(RRT(aces)) - aces = ACEScg_to_ACES(acescg); - colorLinear = AcesTonemap(aces); - - return colorLinear; - } - #else - { - // colorLutSpace is already in log space - colorLutSpace = LogGradeHDR(colorLutSpace); - - // Switch back to linear - float3 colorLinear = LUT_SPACE_DECODE(colorLutSpace); - colorLinear = LinearGradeHDR(colorLinear); - colorLinear = max(0.0, colorLinear); - - // Tonemap - #if TONEMAPPING_NEUTRAL - { - colorLinear = NeutralTonemap(colorLinear); - } - #elif TONEMAPPING_CUSTOM - { - colorLinear = CustomTonemap( - colorLinear, _CustomToneCurve.xyz, - _ToeSegmentA, _ToeSegmentB.xy, - _MidSegmentA, _MidSegmentB.xy, - _ShoSegmentA, _ShoSegmentB.xy - ); - } - #endif - - return colorLinear; - } - #endif - } - - float4 FragHDR(VaryingsDefault i) : SV_Target - { - float3 colorLutSpace = GetLutStripValue(i.texcoord, _Lut2D_Params); - float3 graded = ColorGradeHDR(colorLutSpace); - return float4(max(graded, 0.0), 1.0); - } - - ENDHLSL - - SubShader - { - Cull Off ZWrite Off ZTest Always - - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragLDRFromScratch - - ENDHLSL - } - - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragLDR - - ENDHLSL - } - - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragHDR - #pragma multi_compile __ TONEMAPPING_ACES TONEMAPPING_NEUTRAL TONEMAPPING_CUSTOM - - ENDHLSL - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Lut2DBaker.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Lut2DBaker.shader.meta deleted file mode 100644 index a35b9ef71..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Lut2DBaker.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 7ad194cbe7d006f4bace915156972026 -timeCreated: 1493730829 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Lut3DBaker.compute b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Lut3DBaker.compute deleted file mode 100644 index 1d960a583..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Lut3DBaker.compute +++ /dev/null @@ -1,177 +0,0 @@ -#include "../StdLib.hlsl" -#include "../Colors.hlsl" -#include "../ACES.hlsl" - -#pragma kernel KGenLut3D_NoTonemap TONEMAPPING_NONE -#pragma kernel KGenLut3D_AcesTonemap TONEMAPPING_ACES -#pragma kernel KGenLut3D_NeutralTonemap TONEMAPPING_NEUTRAL -#pragma kernel KGenLut3D_CustomTonemap TONEMAPPING_CUSTOM - -RWTexture3D _Output; - -CBUFFER_START(Params) - float4 _Size; // x: lut_size, y: 1 / (lut_size - 1), zw: unused - - float4 _ColorBalance; - float4 _ColorFilter; - float4 _HueSatCon; - - float4 _ChannelMixerRed; - float4 _ChannelMixerGreen; - float4 _ChannelMixerBlue; - - float4 _Lift; - float4 _InvGamma; - float4 _Gain; - - float4 _CustomToneCurve; - - // Packing is currently borked, can't pass float arrays without it creating one vector4 per - // float so we'll pack manually... - float4 _ToeSegmentA; - float4 _ToeSegmentB; - float4 _MidSegmentA; - float4 _MidSegmentB; - float4 _ShoSegmentA; - float4 _ShoSegmentB; -CBUFFER_END - -Texture2D _Curves; -SamplerState sampler_Curves; - -float3 LogGrade(float3 colorLog) -{ - // Contrast feels a lot more natural when done in log rather than doing it in linear - colorLog = Contrast(colorLog, ACEScc_MIDGRAY, _HueSatCon.z); - - return colorLog; -} - -float3 LinearGrade(float3 colorLinear) -{ - colorLinear = WhiteBalance(colorLinear, _ColorBalance.rgb); - colorLinear *= _ColorFilter.rgb; - colorLinear = ChannelMixer(colorLinear, _ChannelMixerRed.rgb, _ChannelMixerGreen.rgb, _ChannelMixerBlue.rgb); - colorLinear = LiftGammaGainHDR(colorLinear, _Lift.rgb, _InvGamma.rgb, _Gain.rgb); - - // Do NOT feed negative values to RgbToHsv or they'll wrap around - colorLinear = max(0.0, colorLinear); - - float3 hsv = RgbToHsv(colorLinear); - - // Hue Vs Sat - float satMult; - satMult = saturate(_Curves.SampleLevel(sampler_Curves, float2(hsv.x, 0.25), 0).y) * 2.0; - - // Sat Vs Sat - satMult *= saturate(_Curves.SampleLevel(sampler_Curves, float2(hsv.y, 0.25), 0).z) * 2.0; - - // Lum Vs Sat - satMult *= saturate(_Curves.SampleLevel(sampler_Curves, float2(Luminance(colorLinear), 0.25), 0).w) * 2.0; - - // Hue Vs Hue - float hue = hsv.x + _HueSatCon.x; - float offset = saturate(_Curves.SampleLevel(sampler_Curves, float2(hue, 0.25), 0).x) - 0.5; - hue += offset; - hsv.x = RotateHue(hue, 0.0, 1.0); - - colorLinear = HsvToRgb(hsv); - colorLinear = Saturation(colorLinear, _HueSatCon.y * satMult); - - return colorLinear; -} - -#if TONEMAPPING_ACES - -float3 ColorGrade(float3 colorLutSpace) -{ - float3 colorLinear = LUT_SPACE_DECODE(colorLutSpace); - float3 aces = unity_to_ACES(colorLinear); - - // ACEScc (log) space - float3 acescc = ACES_to_ACEScc(aces); - acescc = LogGrade(acescc); - aces = ACEScc_to_ACES(acescc); - - // ACEScg (linear) space - float3 acescg = ACES_to_ACEScg(aces); - acescg = LinearGrade(acescg); - - // Tonemap ODT(RRT(aces)) - aces = ACEScg_to_ACES(acescg); - colorLinear = AcesTonemap(aces); - - return colorLinear; -} - -#else - -float3 ColorGrade(float3 colorLutSpace) -{ - // colorLutSpace is already in log space - colorLutSpace = LogGrade(colorLutSpace); - - // Switch back to linear - float3 colorLinear = LUT_SPACE_DECODE(colorLutSpace); - colorLinear = LinearGrade(colorLinear); - colorLinear = max(0.0, colorLinear); - - // Tonemap - #if TONEMAPPING_NEUTRAL - { - colorLinear = NeutralTonemap(colorLinear); - } - #elif TONEMAPPING_CUSTOM - { - colorLinear = CustomTonemap( - colorLinear, _CustomToneCurve.xyz, - _ToeSegmentA, _ToeSegmentB.xy, - _MidSegmentA, _MidSegmentB.xy, - _ShoSegmentA, _ShoSegmentB.xy - ); - } - #endif - - return colorLinear; -} - -#endif - -void Eval(uint3 id) -{ - if (float(id.x) < _Size.x && float(id.y) < _Size.x && float(id.z) < _Size.x) - { - // Lut space (log space) - float3 colorLutSpace = float3(id) * _Size.y; - - // Color grade & tonemap - float3 graded = ColorGrade(colorLutSpace); - - _Output[id] = float4(max(graded, 0.0), 1.0); - } -} - -#define GROUP_SIZE 4 - -#ifdef DISABLE_COMPUTE_SHADERS - -TRIVIAL_COMPUTE_KERNEL(KGenLut3D_NoTonemap) -TRIVIAL_COMPUTE_KERNEL(KGenLut3D_AcesTonemap) -TRIVIAL_COMPUTE_KERNEL(KGenLut3D_NeutralTonemap) -TRIVIAL_COMPUTE_KERNEL(KGenLut3D_CustomTonemap) - -#else - -[numthreads(GROUP_SIZE, GROUP_SIZE, GROUP_SIZE)] -void KGenLut3D_NoTonemap(uint3 id : SV_DispatchThreadID) { Eval(id); } - -[numthreads(GROUP_SIZE, GROUP_SIZE, GROUP_SIZE)] -void KGenLut3D_AcesTonemap(uint3 id : SV_DispatchThreadID) { Eval(id); } - -[numthreads(GROUP_SIZE, GROUP_SIZE, GROUP_SIZE)] -void KGenLut3D_NeutralTonemap(uint3 id : SV_DispatchThreadID) { Eval(id); } - -[numthreads(GROUP_SIZE, GROUP_SIZE, GROUP_SIZE)] -void KGenLut3D_CustomTonemap(uint3 id : SV_DispatchThreadID) { Eval(id); } - -#endif // DISABLE_COMPUTE_SHADERS diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Lut3DBaker.compute.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Lut3DBaker.compute.meta deleted file mode 100644 index 78ab22dbb..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Lut3DBaker.compute.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 42496b74c071f5749950ca1abe33e945 -timeCreated: 1494926107 -licenseType: Pro -ComputeShaderImporter: - currentAPIMask: 131076 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MotionBlur.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MotionBlur.shader deleted file mode 100644 index 10d1cebc0..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MotionBlur.shader +++ /dev/null @@ -1,332 +0,0 @@ -Shader "Hidden/PostProcessing/MotionBlur" -{ - HLSLINCLUDE - - #pragma target 3.0 - #include "../StdLib.hlsl" - - TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); - float4 _MainTex_TexelSize; - - // Camera depth texture - TEXTURE2D_SAMPLER2D(_CameraDepthTexture, sampler_CameraDepthTexture); - - // Camera motion vectors texture - TEXTURE2D_SAMPLER2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture); - float4 _CameraMotionVectorsTexture_TexelSize; - - // Packed velocity texture (2/10/10/10) - TEXTURE2D_SAMPLER2D(_VelocityTex, sampler_VelocityTex); - float2 _VelocityTex_TexelSize; - - // NeighborMax texture - TEXTURE2D_SAMPLER2D(_NeighborMaxTex, sampler_NeighborMaxTex); - float2 _NeighborMaxTex_TexelSize; - - // Velocity scale factor - float _VelocityScale; - - // TileMax filter parameters - int _TileMaxLoop; - float2 _TileMaxOffs; - - // Maximum blur radius (in pixels) - half _MaxBlurRadius; - float _RcpMaxBlurRadius; - - // Filter parameters/coefficients - half _LoopCount; - - // ----------------------------------------------------------------------------- - // Prefilter - - // Velocity texture setup - half4 FragVelocitySetup(VaryingsDefault i) : SV_Target - { - // Sample the motion vector. - float2 v = SAMPLE_TEXTURE2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture, i.texcoord).rg; - - // Apply the exposure time and convert to the pixel space. - v *= (_VelocityScale * 0.5) * _CameraMotionVectorsTexture_TexelSize.zw; - - // Clamp the vector with the maximum blur radius. - v /= max(1.0, length(v) * _RcpMaxBlurRadius); - - // Sample the depth of the pixel. - half d = Linear01Depth(SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoord)); - - // Pack into 10/10/10/2 format. - return half4((v * _RcpMaxBlurRadius + 1.0) * 0.5, d, 0.0); - } - - half2 MaxV(half2 v1, half2 v2) - { - return dot(v1, v1) < dot(v2, v2) ? v2 : v1; - } - - // TileMax filter (2 pixel width with normalization) - half4 FragTileMax1(VaryingsDefault i) : SV_Target - { - float4 d = _MainTex_TexelSize.xyxy * float4(-0.5, -0.5, 0.5, 0.5); - - half2 v1 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.xy).rg; - half2 v2 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.zy).rg; - half2 v3 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.xw).rg; - half2 v4 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.zw).rg; - - v1 = (v1 * 2.0 - 1.0) * _MaxBlurRadius; - v2 = (v2 * 2.0 - 1.0) * _MaxBlurRadius; - v3 = (v3 * 2.0 - 1.0) * _MaxBlurRadius; - v4 = (v4 * 2.0 - 1.0) * _MaxBlurRadius; - - return half4(MaxV(MaxV(MaxV(v1, v2), v3), v4), 0.0, 0.0); - } - - // TileMax filter (2 pixel width) - half4 FragTileMax2(VaryingsDefault i) : SV_Target - { - float4 d = _MainTex_TexelSize.xyxy * float4(-0.5, -0.5, 0.5, 0.5); - - half2 v1 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.xy).rg; - half2 v2 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.zy).rg; - half2 v3 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.xw).rg; - half2 v4 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.zw).rg; - - return half4(MaxV(MaxV(MaxV(v1, v2), v3), v4), 0.0, 0.0); - } - - // TileMax filter (variable width) - half4 FragTileMaxV(VaryingsDefault i) : SV_Target - { - float2 uv0 = i.texcoord + _MainTex_TexelSize.xy * _TileMaxOffs.xy; - - float2 du = float2(_MainTex_TexelSize.x, 0.0); - float2 dv = float2(0.0, _MainTex_TexelSize.y); - - half2 vo = 0.0; - - UNITY_LOOP - for (int ix = 0; ix < _TileMaxLoop; ix++) - { - UNITY_LOOP - for (int iy = 0; iy < _TileMaxLoop; iy++) - { - float2 uv = uv0 + du * ix + dv * iy; - vo = MaxV(vo, SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv).rg); - } - } - - return half4(vo, 0.0, 0.0); - } - - // NeighborMax filter - half4 FragNeighborMax(VaryingsDefault i) : SV_Target - { - const half cw = 1.01; // Center weight tweak - - float4 d = _MainTex_TexelSize.xyxy * float4(1.0, 1.0, -1.0, 0.0); - - half2 v1 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord - d.xy).rg; - half2 v2 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord - d.wy).rg; - half2 v3 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord - d.zy).rg; - - half2 v4 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord - d.xw).rg; - half2 v5 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord).rg * cw; - half2 v6 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.xw).rg; - - half2 v7 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.zy).rg; - half2 v8 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.wy).rg; - half2 v9 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.xy).rg; - - half2 va = MaxV(v1, MaxV(v2, v3)); - half2 vb = MaxV(v4, MaxV(v5, v6)); - half2 vc = MaxV(v7, MaxV(v8, v9)); - - return half4(MaxV(va, MaxV(vb, vc)) * (1.0 / cw), 0.0, 0.0); - } - - // ----------------------------------------------------------------------------- - // Reconstruction - - // Returns true or false with a given interval. - bool Interval(half phase, half interval) - { - return frac(phase / interval) > 0.499; - } - - // Jitter function for tile lookup - float2 JitterTile(float2 uv) - { - float rx, ry; - sincos(GradientNoise(uv + float2(2.0, 0.0)) * TWO_PI, ry, rx); - return float2(rx, ry) * _NeighborMaxTex_TexelSize.xy * 0.25; - } - - // Velocity sampling function - half3 SampleVelocity(float2 uv) - { - half3 v = SAMPLE_TEXTURE2D_LOD(_VelocityTex, sampler_VelocityTex, uv, 0.0).xyz; - return half3((v.xy * 2.0 - 1.0) * _MaxBlurRadius, v.z); - } - - // Reconstruction filter - half4 FragReconstruction(VaryingsDefault i) : SV_Target - { - // Color sample at the center point - const half4 c_p = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); - - // Velocity/Depth sample at the center point - const half3 vd_p = SampleVelocity(i.texcoord); - const half l_v_p = max(length(vd_p.xy), 0.5); - const half rcp_d_p = 1.0 / vd_p.z; - - // NeighborMax vector sample at the center point - const half2 v_max = SAMPLE_TEXTURE2D(_NeighborMaxTex, sampler_NeighborMaxTex, i.texcoord + JitterTile(i.texcoord)).xy; - const half l_v_max = length(v_max); - const half rcp_l_v_max = 1.0 / l_v_max; - - // Escape early if the NeighborMax vector is small enough. - if (l_v_max < 2.0) return c_p; - - // Use V_p as a secondary sampling direction except when it's too small - // compared to V_max. This vector is rescaled to be the length of V_max. - const half2 v_alt = (l_v_p * 2.0 > l_v_max) ? vd_p.xy * (l_v_max / l_v_p) : v_max; - - // Determine the sample count. - const half sc = floor(min(_LoopCount, l_v_max * 0.5)); - - // Loop variables (starts from the outermost sample) - const half dt = 1.0 / sc; - const half t_offs = (GradientNoise(i.texcoord) - 0.5) * dt; - half t = 1.0 - dt * 0.5; - half count = 0.0; - - // Background velocity - // This is used for tracking the maximum velocity in the background layer. - half l_v_bg = max(l_v_p, 1.0); - - // Color accumlation - half4 acc = 0.0; - - UNITY_LOOP - while (t > dt * 0.25) - { - // Sampling direction (switched per every two samples) - const half2 v_s = Interval(count, 4.0) ? v_alt : v_max; - - // Sample position (inverted per every sample) - const half t_s = (Interval(count, 2.0) ? -t : t) + t_offs; - - // Distance to the sample position - const half l_t = l_v_max * abs(t_s); - - // UVs for the sample position - const float2 uv0 = i.texcoord + v_s * t_s * _MainTex_TexelSize.xy; - const float2 uv1 = i.texcoord + v_s * t_s * _VelocityTex_TexelSize.xy; - - // Color sample - const half3 c = SAMPLE_TEXTURE2D_LOD(_MainTex, sampler_MainTex, uv0, 0.0).rgb; - - // Velocity/Depth sample - const half3 vd = SampleVelocity(uv1); - - // Background/Foreground separation - const half fg = saturate((vd_p.z - vd.z) * 20.0 * rcp_d_p); - - // Length of the velocity vector - const half l_v = lerp(l_v_bg, length(vd.xy), fg); - - // Sample weight - // (Distance test) * (Spreading out by motion) * (Triangular window) - const half w = saturate(l_v - l_t) / l_v * (1.2 - t); - - // Color accumulation - acc += half4(c, 1.0) * w; - - // Update the background velocity. - l_v_bg = max(l_v_bg, l_v); - - // Advance to the next sample. - t = Interval(count, 2.0) ? t - dt : t; - count += 1.0; - } - - // Add the center sample. - acc += half4(c_p.rgb, 1.0) * (1.2 / (l_v_bg * sc * 2.0)); - - return half4(acc.rgb / acc.a, c_p.a); - } - - ENDHLSL - - SubShader - { - Cull Off ZWrite Off ZTest Always - - // (0) Velocity texture setup - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragVelocitySetup - - ENDHLSL - } - - // (1) TileMax filter (2 pixel width with normalization) - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragTileMax1 - - ENDHLSL - } - - // (2) TileMax filter (2 pixel width) - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragTileMax2 - - ENDHLSL - } - - // (3) TileMax filter (variable width) - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragTileMaxV - - ENDHLSL - } - - // (4) NeighborMax filter - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragNeighborMax - - ENDHLSL - } - - // (5) Reconstruction filter - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragReconstruction - - ENDHLSL - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MotionBlur.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MotionBlur.shader.meta deleted file mode 100644 index 879fb2093..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MotionBlur.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 2c459b89a7c8b1a4fbefe0d81341651c -timeCreated: 1489147878 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVO.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVO.shader deleted file mode 100644 index 4464a1731..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVO.shader +++ /dev/null @@ -1,111 +0,0 @@ -Shader "Hidden/PostProcessing/MultiScaleVO" -{ - HLSLINCLUDE - - #pragma exclude_renderers gles gles3 d3d11_9x - #pragma target 4.5 - - #include "../StdLib.hlsl" - #include "Fog.hlsl" - - TEXTURE2D_SAMPLER2D(_CameraDepthTexture, sampler_CameraDepthTexture); - TEXTURE2D_SAMPLER2D(_MSVOcclusionTexture, sampler_MSVOcclusionTexture); - float3 _AOColor; - - ENDHLSL - - SubShader - { - Cull Off ZWrite Off ZTest Always - - // 0 - Depth copy with procedural draw - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment Frag - - float4 Frag(VaryingsDefault i) : SV_Target - { - return SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoordStereo); - } - - ENDHLSL - } - - // 1 - Composite to G-buffer with procedural draw - Pass - { - Blend Zero OneMinusSrcColor, Zero OneMinusSrcAlpha - - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment Frag - - struct Output - { - float4 gbuffer0 : SV_Target0; - float4 gbuffer3 : SV_Target1; - }; - - Output Frag(VaryingsDefault i) - { - float ao = 1.0 - SAMPLE_TEXTURE2D(_MSVOcclusionTexture, sampler_MSVOcclusionTexture, i.texcoordStereo).r; - Output o; - o.gbuffer0 = float4(0.0, 0.0, 0.0, ao); - o.gbuffer3 = float4(ao * _AOColor, 0.0); - return o; - } - - ENDHLSL - } - - // 2 - Composite to the frame buffer - Pass - { - Blend Zero OneMinusSrcColor, Zero OneMinusSrcAlpha - - HLSLPROGRAM - - #pragma multi_compile _ APPLY_FORWARD_FOG - #pragma multi_compile _ FOG_LINEAR FOG_EXP FOG_EXP2 - #pragma vertex VertDefault - #pragma fragment Frag - - float4 Frag(VaryingsDefault i) : SV_Target - { - half ao = 1.0 - SAMPLE_TEXTURE2D(_MSVOcclusionTexture, sampler_MSVOcclusionTexture, i.texcoordStereo).r; - - // Apply fog when enabled (forward-only) - #if (APPLY_FORWARD_FOG) - float d = Linear01Depth(SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoordStereo)); - d = ComputeFogDistance(d); - ao *= ComputeFog(d); - #endif - - return float4(ao * _AOColor, 0.0); - } - - ENDHLSL - } - - // 3 - Debug overlay - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment Frag - - float4 Frag(VaryingsDefault i) : SV_Target - { - half ao = SAMPLE_TEXTURE2D(_MSVOcclusionTexture, sampler_MSVOcclusionTexture, i.texcoordStereo).r; - return float4(ao.rrr, 1.0); - } - - ENDHLSL - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVO.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVO.shader.meta deleted file mode 100644 index 714cbace1..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVO.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 67f9497810829eb4791ec19e95781e51 -timeCreated: 1503305114 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVODownsample1.compute b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVODownsample1.compute deleted file mode 100644 index b22fe9f93..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVODownsample1.compute +++ /dev/null @@ -1,136 +0,0 @@ -// -// This is a modified version of the SSAO renderer from Microsoft's MiniEngine -// library. The copyright notice from the original version is included below. -// -// The original source code of MiniEngine is available on GitHub. -// https://github.com/Microsoft/DirectX-Graphics-Samples -// - -// -// Copyright (c) Microsoft. All rights reserved. -// This code is licensed under the MIT License (MIT). -// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF -// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY -// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR -// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. -// -// Developed by Minigraph -// -// Author: James Stanard -// - -#pragma warning(disable : 3568) -#pragma exclude_renderers gles gles3 d3d11_9x - -#pragma kernel MultiScaleVODownsample1 main=MultiScaleVODownsample1 -#pragma kernel MultiScaleVODownsample1_MSAA main=MultiScaleVODownsample1_MSAA MSAA - -#include "../StdLib.hlsl" - -#ifdef MSAA -// Output textures -RWTexture2D LinearZ; -RWTexture2D DS2x; -RWTexture2DArray DS2xAtlas; -RWTexture2D DS4x; -RWTexture2DArray DS4xAtlas; - -// Input textures -Texture2D Depth; - -// Shared memory -groupshared float2 g_CacheW[256]; -#else -// Output textures -RWTexture2D LinearZ; -RWTexture2D DS2x; -RWTexture2DArray DS2xAtlas; -RWTexture2D DS4x; -RWTexture2DArray DS4xAtlas; - -// Input textures -Texture2D Depth; - -// Shared memory -groupshared float g_CacheW[256]; -#endif - -CBUFFER_START(CB0) - float4 ZBufferParams; -CBUFFER_END - -#ifdef MSAA -float2 Linearize(uint2 st) -{ - float depthMin = Depth[st].y; - float depthMax = Depth[st].x; - - float2 depth = float2(depthMin, depthMax); - float2 dist = 1.0 / (ZBufferParams.x * depth + ZBufferParams.y); -#ifdef UNITY_REVERSED_Z - if (depth.x == 0) dist.x = 1e5; - if (depth.y == 0) dist.y = 1e5; -#else - if (depth.x == 1) dist.x = 1e5; - if (depth.y == 1) dist.y = 1e5; -#endif - LinearZ[st] = dist; - return dist; -} -#else -float Linearize(uint2 st) -{ - float depth = Depth[st]; - float dist = 1.0 / (ZBufferParams.x * depth + ZBufferParams.y); -#ifdef UNITY_REVERSED_Z - if (depth == 0) dist = 1e5; -#else - if (depth == 1) dist = 1e5; -#endif - LinearZ[st] = dist; - return dist; -} -#endif - - -#ifdef DISABLE_COMPUTE_SHADERS - -TRIVIAL_COMPUTE_KERNEL(main) - -#else - -[numthreads(8, 8, 1)] -void main(uint3 Gid : SV_GroupID, uint GI : SV_GroupIndex, uint3 GTid : SV_GroupThreadID, uint3 DTid : SV_DispatchThreadID) -{ - uint2 startST = Gid.xy << 4 | GTid.xy; - uint destIdx = GTid.y << 4 | GTid.x; - g_CacheW[destIdx + 0 ] = Linearize(startST | uint2(0, 0)); - g_CacheW[destIdx + 8 ] = Linearize(startST | uint2(8, 0)); - g_CacheW[destIdx + 128] = Linearize(startST | uint2(0, 8)); - g_CacheW[destIdx + 136] = Linearize(startST | uint2(8, 8)); - - GroupMemoryBarrierWithGroupSync(); - - uint ldsIndex = (GTid.x << 1) | (GTid.y << 5); - - #ifdef MSAA - float2 w1 = g_CacheW[ldsIndex]; - #else - float w1 = g_CacheW[ldsIndex]; - #endif - uint2 st = DTid.xy; - uint slice = ((st.x & 3) | (st.y << 2)) & 15; - DS2x[st] = w1; - DS2xAtlas[uint3(st >> 2, slice)] = w1; - - if ((GI & 011) == 0) - { - st = DTid.xy >> 1; - slice = ((st.x & 3) | (st.y << 2)) & 15; - DS4x[st] = w1; - DS4xAtlas[uint3(st >> 2, slice)] = w1; - } - -} - -#endif diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVODownsample1.compute.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVODownsample1.compute.meta deleted file mode 100644 index 5f92087a8..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVODownsample1.compute.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 4c63bc487e6c29a4a99f85a6c47b292b -timeCreated: 1503305129 -licenseType: Pro -ComputeShaderImporter: - currentAPIMask: 131076 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVODownsample2.compute b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVODownsample2.compute deleted file mode 100644 index 1188c2e27..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVODownsample2.compute +++ /dev/null @@ -1,76 +0,0 @@ -// -// This is a modified version of the SSAO renderer from Microsoft's MiniEngine -// library. The copyright notice from the original version is included below. -// -// The original source code of MiniEngine is available on GitHub. -// https://github.com/Microsoft/DirectX-Graphics-Samples -// - -// -// Copyright (c) Microsoft. All rights reserved. -// This code is licensed under the MIT License (MIT). -// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF -// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY -// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR -// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. -// -// Developed by Minigraph -// -// Author: James Stanard -// - -#pragma warning(disable : 3568) -#pragma exclude_renderers gles gles3 d3d11_9x - -#pragma kernel MultiScaleVODownsample2 main=MultiScaleVODownsample2 -#pragma kernel MultiScaleVODownsample2_MSAA main=MultiScaleVODownsample2_MSAA MSAA - -#include "../StdLib.hlsl" - -#ifdef MSAA -Texture2D DS4x; -RWTexture2D DS8x; -RWTexture2DArray DS8xAtlas; -RWTexture2D DS16x; -RWTexture2DArray DS16xAtlas; -#else -Texture2D DS4x; -RWTexture2D DS8x; -RWTexture2DArray DS8xAtlas; -RWTexture2D DS16x; -RWTexture2DArray DS16xAtlas; -#endif - - -#ifdef DISABLE_COMPUTE_SHADERS - -TRIVIAL_COMPUTE_KERNEL(main) - -#else - -[numthreads(8, 8, 1)] -void main(uint3 Gid : SV_GroupID, uint GI : SV_GroupIndex, uint3 GTid : SV_GroupThreadID, uint3 DTid : SV_DispatchThreadID) -{ - #ifdef MSAA - float2 m1 = DS4x[DTid.xy << 1]; - #else - float m1 = DS4x[DTid.xy << 1]; - #endif - - uint2 st = DTid.xy; - uint2 stAtlas = st >> 2; - uint stSlice = ((st.x & 3) | (st.y << 2)) & 15; - DS8x[st] = m1; - DS8xAtlas[uint3(stAtlas, stSlice)] = m1; - - if ((GI & 011) == 0) - { - uint2 st = DTid.xy >> 1; - uint2 stAtlas = st >> 2; - uint stSlice = ((st.x & 3) | (st.y << 2)) & 15; - DS16x[st] = m1; - DS16xAtlas[uint3(stAtlas, stSlice)] = m1; - } -} - -#endif // DISABLE_COMPUTE_SHADERS diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVODownsample2.compute.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVODownsample2.compute.meta deleted file mode 100644 index 46306dce7..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVODownsample2.compute.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: e4d3e4779e48a374f91d48d4c0aedb7b -timeCreated: 1503305163 -licenseType: Pro -ComputeShaderImporter: - currentAPIMask: 131076 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVORender.compute b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVORender.compute deleted file mode 100644 index b2c29b613..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVORender.compute +++ /dev/null @@ -1,295 +0,0 @@ -// -// This is a modified version of the SSAO renderer from Microsoft's MiniEngine -// library. The copyright notice from the original version is included below. -// -// The original source code of MiniEngine is available on GitHub. -// https://github.com/Microsoft/DirectX-Graphics-Samples -// - -// -// Copyright (c) Microsoft. All rights reserved. -// This code is licensed under the MIT License (MIT). -// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF -// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY -// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR -// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. -// -// Developed by Minigraph -// -// Author: James Stanard -// - -#pragma warning(disable : 3568) -#pragma exclude_renderers gles gles3 d3d11_9x - -#pragma kernel MultiScaleVORender MAIN=MultiScaleVORender -#pragma kernel MultiScaleVORender_interleaved MAIN=MultiScaleVORender_interleaved INTERLEAVE_RESULT -#pragma kernel MultiScaleVORender_MSAA MAIN=MultiScaleVORender_MSAA MSAA -#pragma kernel MultiScaleVORender_MSAA_interleaved MAIN=MultiScaleVORender_MSAA_interleaved MSAA INTERLEAVE_RESULT - -#include "../StdLib.hlsl" - -#ifndef INTERLEAVE_RESULT -#define WIDE_SAMPLING 1 -#endif - -#if WIDE_SAMPLING -// 32x32 cache size: the 16x16 in the center forms the area of focus with the 8-pixel perimeter used for wide gathering. -#define TILE_DIM 32 -#define THREAD_COUNT_X 16 -#define THREAD_COUNT_Y 16 -#else -// 16x16 cache size: the 8x8 in the center forms the area of focus with the 4-pixel perimeter used for gathering. -#define TILE_DIM 16 -#define THREAD_COUNT_X 8 -#define THREAD_COUNT_Y 8 -#endif - - -#ifdef MSAA - // Input Textures - #ifdef INTERLEAVE_RESULT - Texture2DArray DepthTex; - #else - Texture2D DepthTex; - #endif - - // Output texture - RWTexture2D Occlusion; - - // Shared memory - groupshared float2 DepthSamples[TILE_DIM * TILE_DIM]; -#else - // Input Textures - #ifdef INTERLEAVE_RESULT - Texture2DArray DepthTex; - #else - Texture2D DepthTex; - #endif - - // Output texture - RWTexture2D Occlusion; - - // Shared memory - groupshared float DepthSamples[TILE_DIM * TILE_DIM]; -#endif - -SamplerState samplerDepthTex; - -CBUFFER_START(CB1) - float4 gInvThicknessTable[3]; - float4 gSampleWeightTable[3]; - float4 gInvSliceDimension; - float2 AdditionalParams; -CBUFFER_END - -#define gRejectFadeoff AdditionalParams.x -#define gIntensity AdditionalParams.y - -#ifdef MSAA -float2 TestSamplePair(float frontDepth, float2 invRange, uint base, int offset) -{ - // "Disocclusion" measures the penetration distance of the depth sample within the sphere. - // Disocclusion < 0 (full occlusion) -> the sample fell in front of the sphere - // Disocclusion > 1 (no occlusion) -> the sample fell behind the sphere - float2 disocclusion1 = DepthSamples[base + offset] * invRange - frontDepth; - float2 disocclusion2 = DepthSamples[base - offset] * invRange - frontDepth; - - float2 pseudoDisocclusion1 = saturate(gRejectFadeoff * disocclusion1); - float2 pseudoDisocclusion2 = saturate(gRejectFadeoff * disocclusion2); - - return saturate( - clamp(disocclusion1, pseudoDisocclusion2, 1.0) + - clamp(disocclusion2, pseudoDisocclusion1, 1.0) - - pseudoDisocclusion1 * pseudoDisocclusion2); -} - -float2 TestSamples(uint centerIdx, uint x, uint y, float2 invDepth, float invThickness) -{ -#if WIDE_SAMPLING - x <<= 1; - y <<= 1; -#endif - - float2 invRange = invThickness * invDepth; - float frontDepth = invThickness - 0.5; - - if (y == 0) - { - // Axial - return 0.5 * ( - TestSamplePair(frontDepth, invRange, centerIdx, x) + - TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM) - ); - } - else if (x == y) - { - // Diagonal - return 0.5 * ( - TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM - x) + - TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM + x) - ); - } - else - { - // L-Shaped - return 0.25 * ( - TestSamplePair(frontDepth, invRange, centerIdx, y * TILE_DIM + x) + - TestSamplePair(frontDepth, invRange, centerIdx, y * TILE_DIM - x) + - TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM + y) + - TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM - y) - ); - } -} -#else -float TestSamplePair(float frontDepth, float invRange, uint base, int offset) -{ - // "Disocclusion" measures the penetration distance of the depth sample within the sphere. - // Disocclusion < 0 (full occlusion) -> the sample fell in front of the sphere - // Disocclusion > 1 (no occlusion) -> the sample fell behind the sphere - float disocclusion1 = DepthSamples[base + offset] * invRange - frontDepth; - float disocclusion2 = DepthSamples[base - offset] * invRange - frontDepth; - - float pseudoDisocclusion1 = saturate(gRejectFadeoff * disocclusion1); - float pseudoDisocclusion2 = saturate(gRejectFadeoff * disocclusion2); - - return saturate( - clamp(disocclusion1, pseudoDisocclusion2, 1.0) + - clamp(disocclusion2, pseudoDisocclusion1, 1.0) - - pseudoDisocclusion1 * pseudoDisocclusion2); -} - -float TestSamples(uint centerIdx, uint x, uint y, float invDepth, float invThickness) -{ -#if WIDE_SAMPLING - x <<= 1; - y <<= 1; -#endif - - float invRange = invThickness * invDepth; - float frontDepth = invThickness - 0.5; - - if (y == 0) - { - // Axial - return 0.5 * ( - TestSamplePair(frontDepth, invRange, centerIdx, x) + - TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM) - ); - } - else if (x == y) - { - // Diagonal - return 0.5 * ( - TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM - x) + - TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM + x) - ); - } - else - { - // L-Shaped - return 0.25 * ( - TestSamplePair(frontDepth, invRange, centerIdx, y * TILE_DIM + x) + - TestSamplePair(frontDepth, invRange, centerIdx, y * TILE_DIM - x) + - TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM + y) + - TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM - y) - ); - } -} -#endif - -#ifdef DISABLE_COMPUTE_SHADERS - -TRIVIAL_COMPUTE_KERNEL(MAIN) - -#else - -[numthreads(THREAD_COUNT_X, THREAD_COUNT_Y, 1)] -void MAIN(uint3 Gid : SV_GroupID, uint GI : SV_GroupIndex, uint3 GTid : SV_GroupThreadID, uint3 DTid : SV_DispatchThreadID) -{ -#if WIDE_SAMPLING - float2 QuadCenterUV = int2(DTid.xy + GTid.xy - 7) * gInvSliceDimension.xy; -#else - float2 QuadCenterUV = int2(DTid.xy + GTid.xy - 3) * gInvSliceDimension.xy; -#endif - -#ifdef MSAA - // Fetch four depths and store them in LDS -#ifdef INTERLEAVE_RESULT - float4 depths0 = DepthTex.GatherRed(samplerDepthTex, float3(QuadCenterUV, DTid.z)); - float4 depths1 = DepthTex.GatherGreen(samplerDepthTex, float3(QuadCenterUV, DTid.z)); -#else - float4 depths0 = DepthTex.GatherRed(samplerDepthTex, QuadCenterUV); - float4 depths1 = DepthTex.GatherGreen(samplerDepthTex, QuadCenterUV); -#endif - int destIdx = GTid.x * 2 + GTid.y * 2 * TILE_DIM; - DepthSamples[destIdx] = float2(depths0.w, depths1.w); - DepthSamples[destIdx + 1] = float2(depths0.z, depths1.z); - DepthSamples[destIdx + TILE_DIM] = float2(depths0.x, depths1.x); - DepthSamples[destIdx + TILE_DIM + 1] = float2(depths0.y, depths1.y); -#else -#ifdef INTERLEAVE_RESULT - float4 depths = DepthTex.Gather(samplerDepthTex, float3(QuadCenterUV, DTid.z)); -#else - float4 depths = DepthTex.Gather(samplerDepthTex, QuadCenterUV); -#endif - int destIdx = GTid.x * 2 + GTid.y * 2 * TILE_DIM; - DepthSamples[destIdx] = depths.w; - DepthSamples[destIdx + 1] = depths.z; - DepthSamples[destIdx + TILE_DIM] = depths.x; - DepthSamples[destIdx + TILE_DIM + 1] = depths.y; -#endif - - GroupMemoryBarrierWithGroupSync(); - -#if WIDE_SAMPLING - uint thisIdx = GTid.x + GTid.y * TILE_DIM + 8 * TILE_DIM + 8; -#else - uint thisIdx = GTid.x + GTid.y * TILE_DIM + 4 * TILE_DIM + 4; -#endif - -#ifdef MSAA - const float2 invThisDepth = float2(1.0 / DepthSamples[thisIdx].x, 1.0 / DepthSamples[thisIdx].y); - float2 ao = 0.0; -#else - const float invThisDepth = 1.0 / DepthSamples[thisIdx]; - float ao = 0.0; -#endif - - -//#define SAMPLE_EXHAUSTIVELY - -#ifdef SAMPLE_EXHAUSTIVELY - // 68 samples: sample all cells in *within* a circular radius of 5 - ao += gSampleWeightTable[0].x * TestSamples(thisIdx, 1, 0, invThisDepth, gInvThicknessTable[0].x); - ao += gSampleWeightTable[0].y * TestSamples(thisIdx, 2, 0, invThisDepth, gInvThicknessTable[0].y); - ao += gSampleWeightTable[0].z * TestSamples(thisIdx, 3, 0, invThisDepth, gInvThicknessTable[0].z); - ao += gSampleWeightTable[0].w * TestSamples(thisIdx, 4, 0, invThisDepth, gInvThicknessTable[0].w); - ao += gSampleWeightTable[1].x * TestSamples(thisIdx, 1, 1, invThisDepth, gInvThicknessTable[1].x); - ao += gSampleWeightTable[2].x * TestSamples(thisIdx, 2, 2, invThisDepth, gInvThicknessTable[2].x); - ao += gSampleWeightTable[2].w * TestSamples(thisIdx, 3, 3, invThisDepth, gInvThicknessTable[2].w); - ao += gSampleWeightTable[1].y * TestSamples(thisIdx, 1, 2, invThisDepth, gInvThicknessTable[1].y); - ao += gSampleWeightTable[1].z * TestSamples(thisIdx, 1, 3, invThisDepth, gInvThicknessTable[1].z); - ao += gSampleWeightTable[1].w * TestSamples(thisIdx, 1, 4, invThisDepth, gInvThicknessTable[1].w); - ao += gSampleWeightTable[2].y * TestSamples(thisIdx, 2, 3, invThisDepth, gInvThicknessTable[2].y); - ao += gSampleWeightTable[2].z * TestSamples(thisIdx, 2, 4, invThisDepth, gInvThicknessTable[2].z); -#else // SAMPLE_CHECKER - // 36 samples: sample every-other cell in a checker board pattern - ao += gSampleWeightTable[0].y * TestSamples(thisIdx, 2, 0, invThisDepth, gInvThicknessTable[0].y); - ao += gSampleWeightTable[0].w * TestSamples(thisIdx, 4, 0, invThisDepth, gInvThicknessTable[0].w); - ao += gSampleWeightTable[1].x * TestSamples(thisIdx, 1, 1, invThisDepth, gInvThicknessTable[1].x); - ao += gSampleWeightTable[2].x * TestSamples(thisIdx, 2, 2, invThisDepth, gInvThicknessTable[2].x); - ao += gSampleWeightTable[2].w * TestSamples(thisIdx, 3, 3, invThisDepth, gInvThicknessTable[2].w); - ao += gSampleWeightTable[1].z * TestSamples(thisIdx, 1, 3, invThisDepth, gInvThicknessTable[1].z); - ao += gSampleWeightTable[2].z * TestSamples(thisIdx, 2, 4, invThisDepth, gInvThicknessTable[2].z); -#endif - -#ifdef INTERLEAVE_RESULT - uint2 OutPixel = DTid.xy << 2 | uint2(DTid.z & 3, DTid.z >> 2); -#else - uint2 OutPixel = DTid.xy; -#endif - Occlusion[OutPixel] = lerp(1, ao, gIntensity); -} - -#endif // DISABLE_COMPUTE_SHADERS diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVORender.compute.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVORender.compute.meta deleted file mode 100644 index 133cf43bb..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVORender.compute.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 34a460e8a2e66c243a9c12024e5a798d -timeCreated: 1503305142 -licenseType: Pro -ComputeShaderImporter: - currentAPIMask: 131076 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVOUpsample.compute b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVOUpsample.compute deleted file mode 100644 index 8b5b85818..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVOUpsample.compute +++ /dev/null @@ -1,432 +0,0 @@ -// -// This is a modified version of the SSAO renderer from Microsoft's MiniEngine -// library. The copyright notice from the original version is included below. -// -// The original source code of MiniEngine is available on GitHub. -// https://github.com/Microsoft/DirectX-Graphics-Samples -// - -// -// Copyright (c) Microsoft. All rights reserved. -// This code is licensed under the MIT License (MIT). -// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF -// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY -// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR -// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. -// -// Developed by Minigraph -// -// Author: James Stanard -// - -#pragma warning(disable : 3568) -#pragma exclude_renderers gles gles3 d3d11_9x - -#pragma kernel MultiScaleVOUpSample MAIN=MultiScaleVOUpSample -#pragma kernel MultiScaleVOUpSample_invert MAIN=MultiScaleVOUpSample_invert INVERT -#pragma kernel MultiScaleVOUpSample_premin MAIN=MultiScaleVOUpSample_premin COMBINE_LOWER_RESOLUTIONS -#pragma kernel MultiScaleVOUpSample_blendout MAIN=MultiScaleVOUpSample_blendout BLEND_WITH_HIGHER_RESOLUTION -#pragma kernel MultiScaleVOUpSample_premin_blendout MAIN=MultiScaleVOUpSample_premin_blendout COMBINE_LOWER_RESOLUTIONS BLEND_WITH_HIGHER_RESOLUTION - -#pragma kernel MultiScaleVOUpSample_MSAA MAIN=MultiScaleVOUpSample_MSAA -#pragma kernel MultiScaleVOUpSample_MSAA_invert MAIN=MultiScaleVOUpSample_MSAA_invert MSAA INVERT -#pragma kernel MultiScaleVOUpSample_MSAA_premin MAIN=MultiScaleVOUpSample_MSAA_premin MSAA COMBINE_LOWER_RESOLUTIONS -#pragma kernel MultiScaleVOUpSample_MSAA_blendout MAIN=MultiScaleVOUpSample_MSAA_blendout MSAA BLEND_WITH_HIGHER_RESOLUTION -#pragma kernel MultiScaleVOUpSample_MSAA_premin_blendout MAIN=MultiScaleVOUpSample_MSAA_premin_blendout MSAA COMBINE_LOWER_RESOLUTIONS BLEND_WITH_HIGHER_RESOLUTION - -#include "../StdLib.hlsl" - - -#ifdef MSAA - Texture2D LoResDB; SamplerState samplerLoResDB; - Texture2D HiResDB; SamplerState samplerHiResDB; - Texture2D LoResAO1; SamplerState samplerLoResAO1; - #ifdef COMBINE_LOWER_RESOLUTIONS - Texture2D LoResAO2; SamplerState samplerLoResAO2; - #endif - #ifdef BLEND_WITH_HIGHER_RESOLUTION - Texture2D HiResAO; SamplerState samplerHiResAO; - #endif - // Output textures - RWTexture2D AoResult; - - // Shared memory - groupshared float2 DepthCache[256]; - groupshared float2 AOCache1[256]; - groupshared float2 AOCache2[256]; -#else - // Input textures - Texture2D LoResDB; SamplerState samplerLoResDB; - Texture2D HiResDB; SamplerState samplerHiResDB; - Texture2D LoResAO1; SamplerState samplerLoResAO1; - #ifdef COMBINE_LOWER_RESOLUTIONS - Texture2D LoResAO2; SamplerState samplerLoResAO2; - #endif - #ifdef BLEND_WITH_HIGHER_RESOLUTION - Texture2D HiResAO; SamplerState samplerHiResAO; - #endif - - // Ouput textures - RWTexture2D AoResult; - - // Shared memory - groupshared float DepthCache[256]; - groupshared float AOCache1[256]; - groupshared float AOCache2[256]; - -#endif - -CBUFFER_START(CB1) - float4 InvLowResolution; - float4 InvHighResolution; - float4 AdditionalParams; -CBUFFER_END - -#define NoiseFilterStrength AdditionalParams.x -#define StepSize AdditionalParams.y -#define kBlurTolerance AdditionalParams.z -#define kUpsampleTolerance AdditionalParams.w - -void PrefetchData(uint index, float2 uv) -{ -#ifdef MSAA - float4 AO1_0 = LoResAO1.GatherRed(samplerLoResAO1, uv); - float4 AO1_1 = LoResAO1.GatherGreen(samplerLoResAO1, uv); - -#ifdef COMBINE_LOWER_RESOLUTIONS - AO1_0 = min(AO1_0, LoResAO2.GatherRed(samplerLoResAO2, uv)); - AO1_1 = min(AO1_1, LoResAO2.GatherGreen(samplerLoResAO2, uv)); -#endif - - AOCache1[index] = float2(AO1_0.w, AO1_1.w); - AOCache1[index + 1] = float2(AO1_0.z, AO1_1.z); - AOCache1[index + 16] = float2(AO1_0.x, AO1_1.x); - AOCache1[index + 17] = float2(AO1_0.y, AO1_1.y); - - float4 ID_0 = 1.0 / LoResDB.GatherRed(samplerLoResDB, uv); - float4 ID_1 = 1.0 / LoResDB.GatherGreen(samplerLoResDB, uv); - DepthCache[index] = float2(ID_0.w, ID_1.w); - DepthCache[index + 1] = float2(ID_0.z, ID_1.z); - DepthCache[index + 16] = float2(ID_0.x, ID_1.x); - DepthCache[index + 17] = float2(ID_0.y, ID_1.y); -#else - float4 AO1 = LoResAO1.Gather(samplerLoResAO1, uv); - -#ifdef COMBINE_LOWER_RESOLUTIONS - AO1 = min(AO1, LoResAO2.Gather(samplerLoResAO2, uv)); -#endif - - AOCache1[index] = AO1.w; - AOCache1[index + 1] = AO1.z; - AOCache1[index + 16] = AO1.x; - AOCache1[index + 17] = AO1.y; - - float4 ID = 1.0 / LoResDB.Gather(samplerLoResDB, uv); - DepthCache[index] = ID.w; - DepthCache[index + 1] = ID.z; - DepthCache[index + 16] = ID.x; - DepthCache[index + 17] = ID.y; -#endif -} - -float SmartBlur(float a, float b, float c, float d, float e, bool Left, bool Middle, bool Right) -{ - b = Left | Middle ? b : c; - a = Left ? a : b; - d = Right | Middle ? d : c; - e = Right ? e : d; - return ((a + e) / 2.0 + b + c + d) / 4.0; -} - -bool CompareDeltas(float d1, float d2, float l1, float l2) -{ - float temp = d1 * d2 + StepSize; - return temp * temp > l1 * l2 * kBlurTolerance; -} - -void BlurHorizontally(uint leftMostIndex) -{ -#ifdef MSAA - float2 a0 = AOCache1[leftMostIndex]; - float2 a1 = AOCache1[leftMostIndex + 1]; - float2 a2 = AOCache1[leftMostIndex + 2]; - float2 a3 = AOCache1[leftMostIndex + 3]; - float2 a4 = AOCache1[leftMostIndex + 4]; - float2 a5 = AOCache1[leftMostIndex + 5]; - float2 a6 = AOCache1[leftMostIndex + 6]; - - float2 d0 = DepthCache[leftMostIndex]; - float2 d1 = DepthCache[leftMostIndex + 1]; - float2 d2 = DepthCache[leftMostIndex + 2]; - float2 d3 = DepthCache[leftMostIndex + 3]; - float2 d4 = DepthCache[leftMostIndex + 4]; - float2 d5 = DepthCache[leftMostIndex + 5]; - float2 d6 = DepthCache[leftMostIndex + 6]; - - float2 d01 = d1 - d0; - float2 d12 = d2 - d1; - float2 d23 = d3 - d2; - float2 d34 = d4 - d3; - float2 d45 = d5 - d4; - float2 d56 = d6 - d5; - - float2 l01 = d01 * d01 + StepSize; - float2 l12 = d12 * d12 + StepSize; - float2 l23 = d23 * d23 + StepSize; - float2 l34 = d34 * d34 + StepSize; - float2 l45 = d45 * d45 + StepSize; - float2 l56 = d56 * d56 + StepSize; - - bool c02_0 = CompareDeltas(d01.x, d12.x, l01.x, l12.x); - bool c13_0 = CompareDeltas(d12.x, d23.x, l12.x, l23.x); - bool c24_0 = CompareDeltas(d23.x, d34.x, l23.x, l34.x); - bool c35_0 = CompareDeltas(d34.x, d45.x, l34.x, l45.x); - bool c46_0 = CompareDeltas(d45.x, d56.x, l45.x, l56.x); - - bool c02_1 = CompareDeltas(d01.y, d12.y, l01.y, l12.y); - bool c13_1 = CompareDeltas(d12.y, d23.y, l12.y, l23.y); - bool c24_1 = CompareDeltas(d23.y, d34.y, l23.y, l34.y); - bool c35_1 = CompareDeltas(d34.y, d45.y, l34.y, l45.y); - bool c46_1 = CompareDeltas(d45.y, d56.y, l45.y, l56.y); - - AOCache2[leftMostIndex] = float2(SmartBlur(a0.x.x, a1.x, a2.x, a3.x, a4.x, c02_0, c13_0, c24_0), SmartBlur(a0.y, a1.y, a2.y, a3.y, a4.y, c02_1, c13_1, c24_1)); - AOCache2[leftMostIndex + 1] = float2(SmartBlur(a1.x, a2.x, a3.x, a4.x, a5.x, c13_0, c24_0, c35_0), SmartBlur(a1.y, a2.y, a3.y, a4.y, a5.y, c13_1, c24_1, c35_1)); - AOCache2[leftMostIndex + 2] = float2(SmartBlur(a2.x, a3.x, a4.x, a5.x, a6.x, c24_0, c35_0, c46_0), SmartBlur(a2.y, a3.y, a4.y, a5.y, a6.y, c24_1, c35_1, c46_1)); -#else - float a0 = AOCache1[leftMostIndex]; - float a1 = AOCache1[leftMostIndex + 1]; - float a2 = AOCache1[leftMostIndex + 2]; - float a3 = AOCache1[leftMostIndex + 3]; - float a4 = AOCache1[leftMostIndex + 4]; - float a5 = AOCache1[leftMostIndex + 5]; - float a6 = AOCache1[leftMostIndex + 6]; - - float d0 = DepthCache[leftMostIndex]; - float d1 = DepthCache[leftMostIndex + 1]; - float d2 = DepthCache[leftMostIndex + 2]; - float d3 = DepthCache[leftMostIndex + 3]; - float d4 = DepthCache[leftMostIndex + 4]; - float d5 = DepthCache[leftMostIndex + 5]; - float d6 = DepthCache[leftMostIndex + 6]; - - float d01 = d1 - d0; - float d12 = d2 - d1; - float d23 = d3 - d2; - float d34 = d4 - d3; - float d45 = d5 - d4; - float d56 = d6 - d5; - - float l01 = d01 * d01 + StepSize; - float l12 = d12 * d12 + StepSize; - float l23 = d23 * d23 + StepSize; - float l34 = d34 * d34 + StepSize; - float l45 = d45 * d45 + StepSize; - float l56 = d56 * d56 + StepSize; - - bool c02 = CompareDeltas(d01, d12, l01, l12); - bool c13 = CompareDeltas(d12, d23, l12, l23); - bool c24 = CompareDeltas(d23, d34, l23, l34); - bool c35 = CompareDeltas(d34, d45, l34, l45); - bool c46 = CompareDeltas(d45, d56, l45, l56); - - AOCache2[leftMostIndex] = SmartBlur(a0, a1, a2, a3, a4, c02, c13, c24); - AOCache2[leftMostIndex + 1] = SmartBlur(a1, a2, a3, a4, a5, c13, c24, c35); - AOCache2[leftMostIndex + 2] = SmartBlur(a2, a3, a4, a5, a6, c24, c35, c46); -#endif -} - -void BlurVertically(uint topMostIndex) -{ -#ifdef MSAA - float2 a0 = AOCache2[topMostIndex]; - float2 a1 = AOCache2[topMostIndex + 16]; - float2 a2 = AOCache2[topMostIndex + 32]; - float2 a3 = AOCache2[topMostIndex + 48]; - float2 a4 = AOCache2[topMostIndex + 64]; - float2 a5 = AOCache2[topMostIndex + 80]; - - float2 d0 = DepthCache[topMostIndex + 2]; - float2 d1 = DepthCache[topMostIndex + 18]; - float2 d2 = DepthCache[topMostIndex + 34]; - float2 d3 = DepthCache[topMostIndex + 50]; - float2 d4 = DepthCache[topMostIndex + 66]; - float2 d5 = DepthCache[topMostIndex + 82]; - - float2 d01 = d1 - d0; - float2 d12 = d2 - d1; - float2 d23 = d3 - d2; - float2 d34 = d4 - d3; - float2 d45 = d5 - d4; - - float2 l01 = d01 * d01 + StepSize; - float2 l12 = d12 * d12 + StepSize; - float2 l23 = d23 * d23 + StepSize; - float2 l34 = d34 * d34 + StepSize; - float2 l45 = d45 * d45 + StepSize; - - bool c02_0 = CompareDeltas(d01.x, d12.x, l01.x, l12.x); - bool c13_0 = CompareDeltas(d12.x, d23.x, l12.x, l23.x); - bool c24_0 = CompareDeltas(d23.x, d34.x, l23.x, l34.x); - bool c35_0 = CompareDeltas(d34.x, d45.x, l34.x, l45.x); - - bool c02_1 = CompareDeltas(d01.y, d12.y, l01.y, l12.y); - bool c13_1 = CompareDeltas(d12.y, d23.y, l12.y, l23.y); - bool c24_1 = CompareDeltas(d23.y, d34.y, l23.y, l34.y); - bool c35_1 = CompareDeltas(d34.y, d45.y, l34.y, l45.y); - - float2 aoResult1 = float2(SmartBlur(a0.x, a1.x, a2.x, a3.x, a4.x, c02_0, c13_0, c24_0), SmartBlur(a0.y, a1.y, a2.y, a3.y, a4.y, c02_1, c13_1, c24_1)); - float2 aoResult2 = float2(SmartBlur(a1.x, a2.x, a3.x, a4.x, a5.x, c13_0, c24_0, c35_0), SmartBlur(a1.y, a2.y, a3.y, a4.y, a5.y, c13_1, c24_1, c35_1)); - - AOCache1[topMostIndex] = aoResult1; - AOCache1[topMostIndex + 16] = aoResult2; -#else - float a0 = AOCache2[topMostIndex]; - float a1 = AOCache2[topMostIndex + 16]; - float a2 = AOCache2[topMostIndex + 32]; - float a3 = AOCache2[topMostIndex + 48]; - float a4 = AOCache2[topMostIndex + 64]; - float a5 = AOCache2[topMostIndex + 80]; - - float d0 = DepthCache[topMostIndex + 2]; - float d1 = DepthCache[topMostIndex + 18]; - float d2 = DepthCache[topMostIndex + 34]; - float d3 = DepthCache[topMostIndex + 50]; - float d4 = DepthCache[topMostIndex + 66]; - float d5 = DepthCache[topMostIndex + 82]; - - float d01 = d1 - d0; - float d12 = d2 - d1; - float d23 = d3 - d2; - float d34 = d4 - d3; - float d45 = d5 - d4; - - float l01 = d01 * d01 + StepSize; - float l12 = d12 * d12 + StepSize; - float l23 = d23 * d23 + StepSize; - float l34 = d34 * d34 + StepSize; - float l45 = d45 * d45 + StepSize; - - bool c02 = CompareDeltas(d01, d12, l01, l12); - bool c13 = CompareDeltas(d12, d23, l12, l23); - bool c24 = CompareDeltas(d23, d34, l23, l34); - bool c35 = CompareDeltas(d34, d45, l34, l45); - - float aoResult1 = SmartBlur(a0, a1, a2, a3, a4, c02, c13, c24); - float aoResult2 = SmartBlur(a1, a2, a3, a4, a5, c13, c24, c35); - - AOCache1[topMostIndex] = aoResult1; - AOCache1[topMostIndex + 16] = aoResult2; -#endif -} - -// We essentially want 5 weights: 4 for each low-res pixel and 1 to blend in when none of the 4 really -// match. The filter strength is 1 / DeltaZTolerance. So a tolerance of 0.01 would yield a strength of 100. -// Note that a perfect match of low to high depths would yield a weight of 10^6, completely superceding any -// noise filtering. The noise filter is intended to soften the effects of shimmering when the high-res depth -// buffer has a lot of small holes in it causing the low-res depth buffer to inaccurately represent it. -float BilateralUpsample(float HiDepth, float HiAO, float4 LowDepths, float4 LowAO) -{ - float4 weights = float4(9, 3, 1, 3) / (abs(HiDepth - LowDepths) + kUpsampleTolerance); - float TotalWeight = dot(weights, 1) + NoiseFilterStrength; - float WeightedSum = dot(LowAO, weights) + NoiseFilterStrength;// * HiAO; - return HiAO * WeightedSum / TotalWeight; -} - -#ifdef DISABLE_COMPUTE_SHADERS - -TRIVIAL_COMPUTE_KERNEL(MAIN) - -#else - -[numthreads(8, 8, 1)] -void MAIN(uint3 Gid : SV_GroupID, uint GI : SV_GroupIndex, uint3 GTid : SV_GroupThreadID, uint3 DTid : SV_DispatchThreadID) -{ - // - // Load 4 pixels per thread into LDS to fill the 16x16 LDS cache with depth and AO - // - PrefetchData(GTid.x << 1 | GTid.y << 5, int2(DTid.xy + GTid.xy - 2) * InvLowResolution.xy); - GroupMemoryBarrierWithGroupSync(); - - // Goal: End up with a 9x9 patch that is blurred so we can upsample. Blur radius is 2 pixels, so start with 13x13 area. - - // - // Horizontally blur the pixels. 13x13 -> 9x13 - // - if (GI < 39) - BlurHorizontally((GI / 3) * 16 + (GI % 3) * 3); - GroupMemoryBarrierWithGroupSync(); - - // - // Vertically blur the pixels. 9x13 -> 9x9 - // - if (GI < 45) - BlurVertically((GI / 9) * 32 + GI % 9); - GroupMemoryBarrierWithGroupSync(); - - // - // Bilateral upsample - // - uint Idx0 = GTid.x + GTid.y * 16; - #ifdef MSAA - float4 LoSSAOs0 = float4(AOCache1[Idx0 + 16].x, AOCache1[Idx0 + 17].x, AOCache1[Idx0 + 1].x, AOCache1[Idx0].x); - float4 LoSSAOs1 = float4(AOCache1[Idx0 + 16].y, AOCache1[Idx0 + 17].y, AOCache1[Idx0 + 1].y, AOCache1[Idx0].y); - #else - float4 LoSSAOs = float4(AOCache1[Idx0 + 16], AOCache1[Idx0 + 17], AOCache1[Idx0 + 1], AOCache1[Idx0]); - #endif - - // We work on a quad of pixels at once because then we can gather 4 each of high and low-res depth values - float2 UV0 = DTid.xy * InvLowResolution.xy; - float2 UV1 = DTid.xy * 2 * InvHighResolution.xy; - -#ifdef MSAA - #ifdef BLEND_WITH_HIGHER_RESOLUTION - float4 HiSSAOs0 = HiResAO.GatherRed(samplerHiResAO, UV1); - float4 HiSSAOs1 = HiResAO.GatherGreen(samplerHiResAO, UV1); - #else - float4 HiSSAOs0 = 1.0; - float4 HiSSAOs1 = 1.0; - #endif - float4 LoDepths0 = LoResDB.GatherRed(samplerLoResDB, UV0); - float4 LoDepths1 = LoResDB.GatherGreen(samplerLoResDB, UV0); - float4 HiDepths0 = HiResDB.GatherRed(samplerHiResDB, UV1); - float4 HiDepths1 = HiResDB.GatherGreen(samplerHiResDB, UV1); - - int2 OutST = DTid.xy << 1; - - #ifdef INVERT - AoResult[OutST + int2(-1, 0)] = float2(1.0 - BilateralUpsample(HiDepths0.x, HiSSAOs0.x, LoDepths0.xyzw, LoSSAOs0.xyzw), 1.0 - BilateralUpsample(HiDepths1.x, HiSSAOs1.x, LoDepths1.xyzw, LoSSAOs1.xyzw)); - AoResult[OutST + int2( 0, 0)] = float2(1.0 - BilateralUpsample(HiDepths0.y, HiSSAOs0.y, LoDepths0.yzwx, LoSSAOs0.yzwx), 1.0 - BilateralUpsample(HiDepths1.y, HiSSAOs1.y, LoDepths1.yzwx, LoSSAOs1.yzwx)); - AoResult[OutST + int2( 0, -1)] = float2(1.0 - BilateralUpsample(HiDepths0.z, HiSSAOs0.z, LoDepths0.zwxy, LoSSAOs0.zwxy), 1.0 - BilateralUpsample(HiDepths1.z, HiSSAOs1.z, LoDepths1.zwxy, LoSSAOs1.zwxy)); - AoResult[OutST + int2(-1, -1)] = float2(1.0 - BilateralUpsample(HiDepths0.w, HiSSAOs0.w, LoDepths0.wxyz, LoSSAOs0.wxyz), 1.0 - BilateralUpsample(HiDepths1.w, HiSSAOs1.w, LoDepths1.wxyz, LoSSAOs1.wxyz)); - #else - AoResult[OutST + int2(-1, 0)] = float2(BilateralUpsample(HiDepths0.x, HiSSAOs0.x, LoDepths0.xyzw, LoSSAOs0.xyzw), BilateralUpsample(HiDepths1.x, HiSSAOs1.x, LoDepths1.xyzw, LoSSAOs1.xyzw)); - AoResult[OutST + int2( 0, 0)] = float2(BilateralUpsample(HiDepths0.y, HiSSAOs0.y, LoDepths0.yzwx, LoSSAOs0.yzwx), BilateralUpsample(HiDepths1.y, HiSSAOs1.y, LoDepths1.yzwx, LoSSAOs1.yzwx)); - AoResult[OutST + int2( 0, -1)] = float2(BilateralUpsample(HiDepths0.z, HiSSAOs0.z, LoDepths0.zwxy, LoSSAOs0.zwxy), BilateralUpsample(HiDepths1.z, HiSSAOs1.z, LoDepths1.zwxy, LoSSAOs1.zwxy)); - AoResult[OutST + int2(-1, -1)] = float2(BilateralUpsample(HiDepths0.w, HiSSAOs0.w, LoDepths0.wxyz, LoSSAOs0.wxyz),BilateralUpsample(HiDepths1.w, HiSSAOs1.w, LoDepths1.wxyz, LoSSAOs1.wxyz)); - #endif -#else - #ifdef BLEND_WITH_HIGHER_RESOLUTION - float4 HiSSAOs = HiResAO.Gather(samplerHiResAO, UV1); - #else - float4 HiSSAOs = 1.0; - #endif - float4 LoDepths = LoResDB.Gather(samplerLoResDB, UV0); - float4 HiDepths = HiResDB.Gather(samplerHiResDB, UV1); - - int2 OutST = DTid.xy << 1; - - #ifdef INVERT - AoResult[OutST + int2(-1, 0)] = 1.0 - BilateralUpsample(HiDepths.x, HiSSAOs.x, LoDepths.xyzw, LoSSAOs.xyzw); - AoResult[OutST + int2( 0, 0)] = 1.0 - BilateralUpsample(HiDepths.y, HiSSAOs.y, LoDepths.yzwx, LoSSAOs.yzwx); - AoResult[OutST + int2( 0, -1)] = 1.0 - BilateralUpsample(HiDepths.z, HiSSAOs.z, LoDepths.zwxy, LoSSAOs.zwxy); - AoResult[OutST + int2(-1, -1)] = 1.0 - BilateralUpsample(HiDepths.w, HiSSAOs.w, LoDepths.wxyz, LoSSAOs.wxyz); - #else - AoResult[OutST + int2(-1, 0)] = BilateralUpsample(HiDepths.x, HiSSAOs.x, LoDepths.xyzw, LoSSAOs.xyzw); - AoResult[OutST + int2( 0, 0)] = BilateralUpsample(HiDepths.y, HiSSAOs.y, LoDepths.yzwx, LoSSAOs.yzwx); - AoResult[OutST + int2( 0, -1)] = BilateralUpsample(HiDepths.z, HiSSAOs.z, LoDepths.zwxy, LoSSAOs.zwxy); - AoResult[OutST + int2(-1, -1)] = BilateralUpsample(HiDepths.w, HiSSAOs.w, LoDepths.wxyz, LoSSAOs.wxyz); - #endif -#endif -} - -#endif // DISABLE_COMPUTE_SHADERS diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVOUpsample.compute.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVOUpsample.compute.meta deleted file mode 100644 index aba8d28d1..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/MultiScaleVOUpsample.compute.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 600d6212b59bb40409d19d750b5fd1e9 -timeCreated: 1503305155 -licenseType: Pro -ComputeShaderImporter: - currentAPIMask: 131076 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ScalableAO.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ScalableAO.hlsl deleted file mode 100644 index 317c17e88..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ScalableAO.hlsl +++ /dev/null @@ -1,428 +0,0 @@ -#ifndef UNITY_POSTFX_AMBIENT_OCCLUSION -#define UNITY_POSTFX_AMBIENT_OCCLUSION - -#include "../StdLib.hlsl" -#include "../Colors.hlsl" -#include "Fog.hlsl" - -// -------- -// Options for further customization -// -------- - -// By default, a 5-tap Gaussian with the linear sampling technique is used -// in the bilateral noise filter. It can be replaced with a 7-tap Gaussian -// with adaptive sampling by enabling the macro below. Although the -// differences are not noticeable in most cases, it may provide preferable -// results with some special usage (e.g. NPR without textureing). -// #define BLUR_HIGH_QUALITY - -// By default, a fixed sampling pattern is used in the AO estimator. Although -// this gives preferable results in most cases, a completely random sampling -// pattern could give aesthetically better results. Disable the macro below -// to use such a random pattern instead of the fixed one. -#define FIX_SAMPLING_PATTERN - -// The SampleNormal function normalizes samples from G-buffer because -// they're possibly unnormalized. We can eliminate this if it can be said -// that there is no wrong shader that outputs unnormalized normals. -// #define VALIDATE_NORMALS - -// The constant below determines the contrast of occlusion. This allows -// users to control over/under occlusion. At the moment, this is not exposed -// to the editor because it's rarely useful. -static const float kContrast = 0.6; - -// The constant below controls the geometry-awareness of the bilateral -// filter. The higher value, the more sensitive it is. -static const float kGeometryCoeff = 0.8; - -// The constants below are used in the AO estimator. Beta is mainly used -// for suppressing self-shadowing noise, and Epsilon is used to prevent -// calculation underflow. See the paper (Morgan 2011 http://goo.gl/2iz3P) -// for further details of these constants. -static const float kBeta = 0.002; - -// -------- - -// System built-in variables -TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); -TEXTURE2D_SAMPLER2D(_CameraGBufferTexture2, sampler_CameraGBufferTexture2); -TEXTURE2D_SAMPLER2D(_CameraDepthTexture, sampler_CameraDepthTexture); -TEXTURE2D_SAMPLER2D(_CameraDepthNormalsTexture, sampler_CameraDepthNormalsTexture); - -float4 _MainTex_TexelSize; - -float4 _AOParams; -float3 _AOColor; - -// Sample count -#if !defined(SHADER_API_GLES) - #define SAMPLE_COUNT _AOParams.w -#else -// GLES2: In many cases, dynamic looping is not supported. - #define SAMPLE_COUNT 3 -#endif - -// Source texture properties -TEXTURE2D_SAMPLER2D(_SAOcclusionTexture, sampler_SAOcclusionTexture); -float4 _SAOcclusionTexture_TexelSize; - -// Other parameters -#define INTENSITY _AOParams.x -#define RADIUS _AOParams.y -#define DOWNSAMPLE _AOParams.z - -// Accessors for packed AO/normal buffer -half4 PackAONormal(half ao, half3 n) -{ - return half4(ao, n * 0.5 + 0.5); -} - -half GetPackedAO(half4 p) -{ - return p.r; -} - -half3 GetPackedNormal(half4 p) -{ - return p.gba * 2.0 - 1.0; -} - -// Boundary check for depth sampler -// (returns a very large value if it lies out of bounds) -float CheckBounds(float2 uv, float d) -{ - float ob = any(uv < 0) + any(uv > 1); -#if defined(UNITY_REVERSED_Z) - ob += (d <= 0.00001); -#else - ob += (d >= 0.99999); -#endif - return ob * 1e8; -} - -// Depth/normal sampling functions -float SampleDepth(float2 uv) -{ - float d = Linear01Depth(SAMPLE_DEPTH_TEXTURE_LOD(_CameraDepthTexture, sampler_CameraDepthTexture, UnityStereoTransformScreenSpaceTex(uv), 0)); - return d * _ProjectionParams.z + CheckBounds(uv, d); -} - -float3 SampleNormal(float2 uv) -{ -#if defined(SOURCE_GBUFFER) - float3 norm = SAMPLE_TEXTURE2D(_CameraGBufferTexture2, sampler_CameraGBufferTexture2, uv).xyz; - norm = norm * 2 - any(norm); // gets (0,0,0) when norm == 0 - norm = mul((float3x3)unity_WorldToCamera, norm); -#if defined(VALIDATE_NORMALS) - norm = normalize(norm); -#endif - return norm; -#else - float4 cdn = SAMPLE_TEXTURE2D(_CameraDepthNormalsTexture, sampler_CameraDepthNormalsTexture, uv); - return DecodeViewNormalStereo(cdn) * float3(1.0, 1.0, -1.0); -#endif -} - -float SampleDepthNormal(float2 uv, out float3 normal) -{ - normal = SampleNormal(UnityStereoTransformScreenSpaceTex(uv)); - return SampleDepth(uv); -} - -// Normal vector comparer (for geometry-aware weighting) -half CompareNormal(half3 d1, half3 d2) -{ - return smoothstep(kGeometryCoeff, 1.0, dot(d1, d2)); -} - -// Trigonometric function utility -float2 CosSin(float theta) -{ - float sn, cs; - sincos(theta, sn, cs); - return float2(cs, sn); -} - -// Pseudo random number generator with 2D coordinates -float UVRandom(float u, float v) -{ - float f = dot(float2(12.9898, 78.233), float2(u, v)); - return frac(43758.5453 * sin(f)); -} - -// Check if the camera is perspective. -// (returns 1.0 when orthographic) -float CheckPerspective(float x) -{ - return lerp(x, 1.0, unity_OrthoParams.w); -} - -// Reconstruct view-space position from UV and depth. -// p11_22 = (unity_CameraProjection._11, unity_CameraProjection._22) -// p13_31 = (unity_CameraProjection._13, unity_CameraProjection._23) -float3 ReconstructViewPos(float2 uv, float depth, float2 p11_22, float2 p13_31) -{ - return float3((uv * 2.0 - 1.0 - p13_31) / p11_22 * CheckPerspective(depth), depth); -} - -// Sample point picker -float3 PickSamplePoint(float2 uv, float index) -{ - // Uniformaly distributed points on a unit sphere - // http://mathworld.wolfram.com/SpherePointPicking.html -#if defined(FIX_SAMPLING_PATTERN) - float gn = GradientNoise(uv * DOWNSAMPLE); - // FIXEME: This was added to avoid a NVIDIA driver issue. - // vvvvvvvvvvvv - float u = frac(UVRandom(0.0, index + uv.x * 1e-10) + gn) * 2.0 - 1.0; - float theta = (UVRandom(1.0, index + uv.x * 1e-10) + gn) * TWO_PI; -#else - float u = UVRandom(uv.x + _Time.x, uv.y + index) * 2.0 - 1.0; - float theta = UVRandom(-uv.x - _Time.x, uv.y + index) * TWO_PI; -#endif - float3 v = float3(CosSin(theta) * sqrt(1.0 - u * u), u); - // Make them distributed between [0, _Radius] - float l = sqrt((index + 1.0) / SAMPLE_COUNT) * RADIUS; - return v * l; -} - -// -// Distance-based AO estimator based on Morgan 2011 -// "Alchemy screen-space ambient obscurance algorithm" -// http://graphics.cs.williams.edu/papers/AlchemyHPG11/ -// -float4 FragAO(VaryingsDefault i) : SV_Target -{ - float2 uv = i.texcoord; - - // Parameters used in coordinate conversion - float3x3 proj = (float3x3)unity_CameraProjection; - float2 p11_22 = float2(unity_CameraProjection._11, unity_CameraProjection._22); - float2 p13_31 = float2(unity_CameraProjection._13, unity_CameraProjection._23); - - // View space normal and depth - float3 norm_o; - float depth_o = SampleDepthNormal(uv, norm_o); - - // Reconstruct the view-space position. - float3 vpos_o = ReconstructViewPos(uv, depth_o, p11_22, p13_31); - - float ao = 0.0; - - for (int s = 0; s < int(SAMPLE_COUNT); s++) - { - // Sample point -#if defined(SHADER_API_D3D11) - // This 'floor(1.0001 * s)' operation is needed to avoid a NVidia shader issue. This issue - // is only observed on DX11. - float3 v_s1 = PickSamplePoint(uv, floor(1.0001 * s)); -#else - float3 v_s1 = PickSamplePoint(uv, s); -#endif - - v_s1 = faceforward(v_s1, -norm_o, v_s1); - float3 vpos_s1 = vpos_o + v_s1; - - // Reproject the sample point - float3 spos_s1 = mul(proj, vpos_s1); - float2 uv_s1_01 = (spos_s1.xy / CheckPerspective(vpos_s1.z) + 1.0) * 0.5; - - // Depth at the sample point - float depth_s1 = SampleDepth(uv_s1_01); - - // Relative position of the sample point - float3 vpos_s2 = ReconstructViewPos(uv_s1_01, depth_s1, p11_22, p13_31); - float3 v_s2 = vpos_s2 - vpos_o; - - // Estimate the obscurance value - float a1 = max(dot(v_s2, norm_o) - kBeta * depth_o, 0.0); - float a2 = dot(v_s2, v_s2) + EPSILON; - ao += a1 / a2; - } - - ao *= RADIUS; // Intensity normalization - - // Apply other parameters. - ao = PositivePow(ao * INTENSITY / SAMPLE_COUNT, kContrast); - - // Apply fog when enabled (forward-only) -#if (APPLY_FORWARD_FOG) - float d = Linear01Depth(SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoordStereo)); - d = ComputeFogDistance(d); - ao *= ComputeFog(d); -#endif - - return PackAONormal(ao, norm_o); -} - -// Geometry-aware separable bilateral filter -float4 FragBlur(VaryingsDefault i) : SV_Target -{ -#if defined(BLUR_HORIZONTAL) - // Horizontal pass: Always use 2 texels interval to match to - // the dither pattern. - float2 delta = float2(_MainTex_TexelSize.x * 2.0, 0.0); -#else - // Vertical pass: Apply _Downsample to match to the dither - // pattern in the original occlusion buffer. - float2 delta = float2(0.0, _MainTex_TexelSize.y / DOWNSAMPLE * 2.0); -#endif - -#if defined(BLUR_HIGH_QUALITY) - - // High quality 7-tap Gaussian with adaptive sampling - - half4 p0 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); - half4 p1a = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord - delta)); - half4 p1b = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + delta)); - half4 p2a = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord - delta * 2.0)); - half4 p2b = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + delta * 2.0)); - half4 p3a = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord - delta * 3.2307692308)); - half4 p3b = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + delta * 3.2307692308)); - -#if defined(BLUR_SAMPLE_CENTER_NORMAL) - half3 n0 = SampleNormal(i.texcoordStereo); -#else - half3 n0 = GetPackedNormal(p0); -#endif - - half w0 = 0.37004405286; - half w1a = CompareNormal(n0, GetPackedNormal(p1a)) * 0.31718061674; - half w1b = CompareNormal(n0, GetPackedNormal(p1b)) * 0.31718061674; - half w2a = CompareNormal(n0, GetPackedNormal(p2a)) * 0.19823788546; - half w2b = CompareNormal(n0, GetPackedNormal(p2b)) * 0.19823788546; - half w3a = CompareNormal(n0, GetPackedNormal(p3a)) * 0.11453744493; - half w3b = CompareNormal(n0, GetPackedNormal(p3b)) * 0.11453744493; - - half s; - s = GetPackedAO(p0) * w0; - s += GetPackedAO(p1a) * w1a; - s += GetPackedAO(p1b) * w1b; - s += GetPackedAO(p2a) * w2a; - s += GetPackedAO(p2b) * w2b; - s += GetPackedAO(p3a) * w3a; - s += GetPackedAO(p3b) * w3b; - - s /= w0 + w1a + w1b + w2a + w2b + w3a + w3b; - -#else - - // Fater 5-tap Gaussian with linear sampling - half4 p0 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); - half4 p1a = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord - delta * 1.3846153846)); - half4 p1b = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + delta * 1.3846153846)); - half4 p2a = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord - delta * 3.2307692308)); - half4 p2b = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + delta * 3.2307692308)); - -#if defined(BLUR_SAMPLE_CENTER_NORMAL) - half3 n0 = SampleNormal(i.texcoordStereo); -#else - half3 n0 = GetPackedNormal(p0); -#endif - - half w0 = 0.2270270270; - half w1a = CompareNormal(n0, GetPackedNormal(p1a)) * 0.3162162162; - half w1b = CompareNormal(n0, GetPackedNormal(p1b)) * 0.3162162162; - half w2a = CompareNormal(n0, GetPackedNormal(p2a)) * 0.0702702703; - half w2b = CompareNormal(n0, GetPackedNormal(p2b)) * 0.0702702703; - - half s; - s = GetPackedAO(p0) * w0; - s += GetPackedAO(p1a) * w1a; - s += GetPackedAO(p1b) * w1b; - s += GetPackedAO(p2a) * w2a; - s += GetPackedAO(p2b) * w2b; - - s /= w0 + w1a + w1b + w2a + w2b; - -#endif - - return PackAONormal(s, n0); -} - -// Gamma encoding (only needed in gamma lighting mode) -half EncodeAO(half x) -{ - #if UNITY_COLORSPACE_GAMMA - return 1.0 - max(LinearToSRGB(1.0 - saturate(x)), 0.0); - #else - return x; - #endif -} - -// Geometry-aware bilateral filter (single pass/small kernel) -half BlurSmall(TEXTURE2D_ARGS(tex, samp), float2 uv, float2 delta) -{ - half4 p0 = SAMPLE_TEXTURE2D(tex, samp, UnityStereoTransformScreenSpaceTex(uv)); - half4 p1 = SAMPLE_TEXTURE2D(tex, samp, UnityStereoTransformScreenSpaceTex(uv + float2(-delta.x, -delta.y))); - half4 p2 = SAMPLE_TEXTURE2D(tex, samp, UnityStereoTransformScreenSpaceTex(uv + float2( delta.x, -delta.y))); - half4 p3 = SAMPLE_TEXTURE2D(tex, samp, UnityStereoTransformScreenSpaceTex(uv + float2(-delta.x, delta.y))); - half4 p4 = SAMPLE_TEXTURE2D(tex, samp, UnityStereoTransformScreenSpaceTex(uv + float2( delta.x, delta.y))); - - half3 n0 = GetPackedNormal(p0); - - half w0 = 1.0; - half w1 = CompareNormal(n0, GetPackedNormal(p1)); - half w2 = CompareNormal(n0, GetPackedNormal(p2)); - half w3 = CompareNormal(n0, GetPackedNormal(p3)); - half w4 = CompareNormal(n0, GetPackedNormal(p4)); - - half s; - s = GetPackedAO(p0) * w0; - s += GetPackedAO(p1) * w1; - s += GetPackedAO(p2) * w2; - s += GetPackedAO(p3) * w3; - s += GetPackedAO(p4) * w4; - - return s / (w0 + w1 + w2 + w3 + w4); -} - -// Final composition shader -float4 FragComposition(VaryingsDefault i) : SV_Target -{ - float2 delta = _SAOcclusionTexture_TexelSize.xy / DOWNSAMPLE; - half ao = BlurSmall(TEXTURE2D_PARAM(_SAOcclusionTexture, sampler_SAOcclusionTexture), i.texcoord, delta); - ao = EncodeAO(ao); - return float4(ao * _AOColor, ao); -} - -#if !SHADER_API_GLES // Excluding the MRT pass under GLES2 - -struct CompositionOutput -{ - half4 gbuffer0 : SV_Target0; - half4 gbuffer3 : SV_Target1; -}; - -CompositionOutput FragCompositionGBuffer(VaryingsDefault i) -{ - // Workaround: _SAOcclusionTexture_Texelsize hasn't been set properly - // for some reasons. Use _ScreenParams instead. - float2 delta = (_ScreenParams.zw - 1.0) / DOWNSAMPLE; - half ao = BlurSmall(TEXTURE2D_PARAM(_SAOcclusionTexture, sampler_SAOcclusionTexture), i.texcoord, delta); - - CompositionOutput o; - o.gbuffer0 = half4(0.0, 0.0, 0.0, ao); - o.gbuffer3 = half4((half3)EncodeAO(ao) * _AOColor, 0.0); - return o; -} - -#else - -float4 FragCompositionGBuffer(VaryingsDefault i) : SV_Target -{ - return (0.0).xxxx; -} - -#endif - -float4 FragDebugOverlay(VaryingsDefault i) : SV_Target -{ - float2 delta = _SAOcclusionTexture_TexelSize.xy / DOWNSAMPLE; - half ao = BlurSmall(TEXTURE2D_PARAM(_SAOcclusionTexture, sampler_SAOcclusionTexture), i.texcoord, delta); - ao = EncodeAO(ao); - return float4(1.0 - ao.xxx, 1.0); -} - -#endif // UNITY_POSTFX_AMBIENT_OCCLUSION diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ScalableAO.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ScalableAO.hlsl.meta deleted file mode 100644 index 6185c0eff..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ScalableAO.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: e4b5af8727f8b8e49aa97c2e8e5d1a3d -timeCreated: 1498574653 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ScalableAO.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ScalableAO.shader deleted file mode 100644 index 3ff5ea0a9..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ScalableAO.shader +++ /dev/null @@ -1,127 +0,0 @@ -Shader "Hidden/PostProcessing/ScalableAO" -{ - HLSLINCLUDE - - #pragma exclude_renderers psp2 - #pragma target 3.0 - - ENDHLSL - - SubShader - { - Cull Off ZWrite Off ZTest Always - - // 0 - Occlusion estimation with CameraDepthTexture - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragAO - #pragma multi_compile _ APPLY_FORWARD_FOG - #pragma multi_compile _ FOG_LINEAR FOG_EXP FOG_EXP2 - #define SOURCE_DEPTH - #include "ScalableAO.hlsl" - - ENDHLSL - } - - // 1 - Occlusion estimation with G-Buffer - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragAO - #pragma multi_compile _ APPLY_FORWARD_FOG - #pragma multi_compile _ FOG_LINEAR FOG_EXP FOG_EXP2 - #define SOURCE_GBUFFER - #include "ScalableAO.hlsl" - - ENDHLSL - } - - // 2 - Separable blur (horizontal pass) with CameraDepthNormalsTexture - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragBlur - #define SOURCE_DEPTHNORMALS - #define BLUR_HORIZONTAL - #define BLUR_SAMPLE_CENTER_NORMAL - #include "ScalableAO.hlsl" - - ENDHLSL - } - - // 3 - Separable blur (horizontal pass) with G-Buffer - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragBlur - #define SOURCE_GBUFFER - #define BLUR_HORIZONTAL - #define BLUR_SAMPLE_CENTER_NORMAL - #include "ScalableAO.hlsl" - - ENDHLSL - } - - // 4 - Separable blur (vertical pass) - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragBlur - #define BLUR_VERTICAL - #include "ScalableAO.hlsl" - - ENDHLSL - } - - // 5 - Final composition - Pass - { - Blend Zero OneMinusSrcColor, Zero OneMinusSrcAlpha - - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragComposition - #include "ScalableAO.hlsl" - - ENDHLSL - } - - // 6 - Final composition (ambient only mode) - Pass - { - Blend Zero OneMinusSrcColor, Zero OneMinusSrcAlpha - - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragCompositionGBuffer - #include "ScalableAO.hlsl" - - ENDHLSL - } - - // 7 - Debug overlay - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragDebugOverlay - #include "ScalableAO.hlsl" - - ENDHLSL - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ScalableAO.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ScalableAO.shader.meta deleted file mode 100644 index 9990d32f2..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ScalableAO.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: d7640629310e79646af0f46eb55ae466 -timeCreated: 1498574566 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.hlsl deleted file mode 100644 index 58bc4bdd0..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.hlsl +++ /dev/null @@ -1,405 +0,0 @@ -#ifndef UNITY_POSTFX_SSR -#define UNITY_POSTFX_SSR - -#include "UnityCG.cginc" -#include "UnityPBSLighting.cginc" -#include "UnityStandardBRDF.cginc" -#include "UnityStandardUtils.cginc" - -#define SSR_MINIMUM_ATTENUATION 0.275 -#define SSR_ATTENUATION_SCALE (1.0 - SSR_MINIMUM_ATTENUATION) - -#define SSR_VIGNETTE_INTENSITY _VignetteIntensity -#define SSR_VIGNETTE_SMOOTHNESS 5. - -#define SSR_COLOR_NEIGHBORHOOD_SAMPLE_SPREAD 1.0 - -#define SSR_FINAL_BLEND_STATIC_FACTOR 0.95 -#define SSR_FINAL_BLEND_DYNAMIC_FACTOR 0.7 - -#define SSR_ENABLE_CONTACTS 0 -#define SSR_KILL_FIREFLIES 0 - -// -// Helper structs -// -struct Ray -{ - float3 origin; - float3 direction; -}; - -struct Segment -{ - float3 start; - float3 end; - - float3 direction; -}; - -struct Result -{ - bool isHit; - - float2 uv; - float3 position; - - int iterationCount; -}; - -// -// Uniforms -// -Texture2D _MainTex; SamplerState sampler_MainTex; -Texture2D _History; SamplerState sampler_History; - -Texture2D _CameraDepthTexture; SamplerState sampler_CameraDepthTexture; -Texture2D _CameraMotionVectorsTexture; SamplerState sampler_CameraMotionVectorsTexture; -Texture2D _CameraReflectionsTexture; SamplerState sampler_CameraReflectionsTexture; - -Texture2D _CameraGBufferTexture0; // albedo = g[0].rgb -Texture2D _CameraGBufferTexture1; // roughness = g[1].a -Texture2D _CameraGBufferTexture2; SamplerState sampler_CameraGBufferTexture2; // normal.xyz 2. * g[2].rgb - 1. - -Texture2D _Noise; SamplerState sampler_Noise; - -Texture2D _Test; SamplerState sampler_Test; -Texture2D _Resolve; SamplerState sampler_Resolve; - -float4 _MainTex_TexelSize; -float4 _Test_TexelSize; - -float4x4 _ViewMatrix; -float4x4 _InverseViewMatrix; -float4x4 _InverseProjectionMatrix; -float4x4 _ScreenSpaceProjectionMatrix; - -float4 _Params; // x: vignette intensity, y: distance fade, z: maximum march distance, w: blur pyramid lod count -float4 _Params2; // x: aspect ratio, y: noise tiling, z: thickness, w: maximum iteration count -#define _Attenuation .25 -#define _VignetteIntensity _Params.x -#define _DistanceFade _Params.y -#define _MaximumMarchDistance _Params.z -#define _BlurPyramidLODCount _Params.w -#define _AspectRatio _Params2.x -#define _NoiseTiling _Params2.y -#define _Bandwidth _Params2.z -#define _MaximumIterationCount _Params2.w - -// -// Helper functions -// -float Attenuate(float2 uv) -{ - float offset = min(1.0 - max(uv.x, uv.y), min(uv.x, uv.y)); - - float result = offset / (SSR_ATTENUATION_SCALE * _Attenuation + SSR_MINIMUM_ATTENUATION); - result = saturate(result); - - return pow(result, 0.5); -} - -float Vignette(float2 uv) -{ - float2 k = abs(uv - 0.5) * SSR_VIGNETTE_INTENSITY; - k.x *= _MainTex_TexelSize.y * _MainTex_TexelSize.z; - return pow(saturate(1.0 - dot(k, k)), SSR_VIGNETTE_SMOOTHNESS); -} - -float3 GetViewSpacePosition(float2 uv) -{ - float depth = _CameraDepthTexture.SampleLevel(sampler_CameraDepthTexture, UnityStereoTransformScreenSpaceTex(uv), 0).r; - float4 result = mul(_InverseProjectionMatrix, float4(2.0 * uv - 1.0, depth, 1.0)); - return result.xyz / result.w; -} - -float GetSquaredDistance(float2 first, float2 second) -{ - first -= second; - return dot(first, first); -} - -float4 ProjectToScreenSpace(float3 position) -{ - return float4( - _ScreenSpaceProjectionMatrix[0][0] * position.x + _ScreenSpaceProjectionMatrix[0][2] * position.z, - _ScreenSpaceProjectionMatrix[1][1] * position.y + _ScreenSpaceProjectionMatrix[1][2] * position.z, - _ScreenSpaceProjectionMatrix[2][2] * position.z + _ScreenSpaceProjectionMatrix[2][3], - _ScreenSpaceProjectionMatrix[3][2] * position.z - ); -} - -// Heavily adapted from McGuire and Mara's original implementation -// http://casual-effects.blogspot.com/2014/08/screen-space-ray-tracing.html -Result March(Ray ray, VaryingsDefault input) -{ - Result result; - - result.isHit = false; - - result.uv = 0.0; - result.position = 0.0; - - result.iterationCount = 0; - - Segment segment; - - segment.start = ray.origin; - - float end = ray.origin.z + ray.direction.z * _MaximumMarchDistance; - float magnitude = _MaximumMarchDistance; - - if (end > -_ProjectionParams.y) - magnitude = (-_ProjectionParams.y - ray.origin.z) / ray.direction.z; - - segment.end = ray.origin + ray.direction * magnitude; - - float4 r = ProjectToScreenSpace(segment.start); - float4 q = ProjectToScreenSpace(segment.end); - - const float2 homogenizers = rcp(float2(r.w, q.w)); - - segment.start *= homogenizers.x; - segment.end *= homogenizers.y; - - float4 endPoints = float4(r.xy, q.xy) * homogenizers.xxyy; - endPoints.zw += step(GetSquaredDistance(endPoints.xy, endPoints.zw), 0.0001) * max(_Test_TexelSize.x, _Test_TexelSize.y); - - float2 displacement = endPoints.zw - endPoints.xy; - - bool isPermuted = false; - - if (abs(displacement.x) < abs(displacement.y)) - { - isPermuted = true; - - displacement = displacement.yx; - endPoints.xyzw = endPoints.yxwz; - } - - float direction = sign(displacement.x); - float normalizer = direction / displacement.x; - - segment.direction = (segment.end - segment.start) * normalizer; - float4 derivatives = float4(float2(direction, displacement.y * normalizer), (homogenizers.y - homogenizers.x) * normalizer, segment.direction.z); - - float stride = 1.0 - min(1.0, -ray.origin.z * 0.01); - - float2 uv = input.texcoord * _NoiseTiling; - uv.y *= _AspectRatio; - - float jitter = _Noise.SampleLevel(sampler_Noise, uv + _WorldSpaceCameraPos.xz, 0).a; - stride *= _Bandwidth; - - derivatives *= stride; - segment.direction *= stride; - - float2 z = 0.0; - float4 tracker = float4(endPoints.xy, homogenizers.x, segment.start.z) + derivatives * jitter; - - for (int i = 0; i < _MaximumIterationCount; ++i) - { - if (any(result.uv < 0.0) || any(result.uv > 1.0)) - { - result.isHit = false; - return result; - } - - tracker += derivatives; - - z.x = z.y; - z.y = tracker.w + derivatives.w * 0.5; - z.y /= tracker.z + derivatives.z * 0.5; - -#if SSR_KILL_FIREFLIES - UNITY_FLATTEN - if (z.y < -_MaximumMarchDistance) - { - result.isHit = false; - return result; - } -#endif - - UNITY_FLATTEN - if (z.y > z.x) - { - float k = z.x; - z.x = z.y; - z.y = k; - } - - uv = tracker.xy; - - UNITY_FLATTEN - if (isPermuted) - uv = uv.yx; - - uv *= _Test_TexelSize.xy; - - float d = _CameraDepthTexture.SampleLevel(sampler_CameraDepthTexture, UnityStereoTransformScreenSpaceTex(uv), 0); - float depth = -LinearEyeDepth(d); - - UNITY_FLATTEN - if (z.y < depth) - { - result.uv = uv; - result.isHit = true; - result.iterationCount = i + 1; - return result; - } - } - - return result; -} - -// -// Fragment shaders -// -float4 FragTest(VaryingsDefault i) : SV_Target -{ - float4 gbuffer2 = _CameraGBufferTexture2.Sample(sampler_CameraGBufferTexture2, i.texcoordStereo); - - if (dot(gbuffer2, 1.0) == 0.0) - return 0.0; - - float3 normal = 2.0 * gbuffer2.rgb - 1.0; - normal = mul((float3x3)_ViewMatrix, normal); - - Ray ray; - - ray.origin = GetViewSpacePosition(i.texcoord); - - if (ray.origin.z < -_MaximumMarchDistance) - return 0.0; - - ray.direction = normalize(reflect(normalize(ray.origin), normal)); - - if (ray.direction.z > 0.0) - return 0.0; - - Result result = March(ray, i); - - float confidence = (float)result.iterationCount / (float)_MaximumIterationCount; - return float4(result.uv, confidence, (float)result.isHit); -} - -float4 FragResolve(VaryingsDefault i) : SV_Target -{ - float4 test = _Test.Load(int3(i.vertex.xy, 0)); - - if (test.w == 0.0) - return _MainTex.Sample(sampler_MainTex, i.texcoordStereo); - - float4 color = _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(test.xy), 0); - - float confidence = test.w * Attenuate(test.xy) * Vignette(test.xy); - - color.rgb *= confidence; - color.a = test.z; - - return color; -} - -float4 FragReproject(VaryingsDefault i) : SV_Target -{ - float2 motion = _CameraMotionVectorsTexture.SampleLevel(sampler_CameraMotionVectorsTexture, i.texcoordStereo, 0).xy; - float2 uv = i.texcoord - motion; - - const float2 k = SSR_COLOR_NEIGHBORHOOD_SAMPLE_SPREAD * _MainTex_TexelSize.xy; - - float4 color = _MainTex.SampleLevel(sampler_MainTex, i.texcoordStereo, 0); - - // 0 1 2 - // 3 - float4x4 top = float4x4( - _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + float2(-k.x, -k.y)), 0), - _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + float2( 0.0, -k.y)), 0), - _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + float2( k.x, -k.y)), 0), - _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + float2(-k.x, 0.0)), 0) - ); - - // 0 - // 1 2 3 - float4x4 bottom = float4x4( - _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + float2( k.x, 0.0)), 0), - _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + float2(-k.x, k.y)), 0), - _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + float2( 0.0, k.y)), 0), - _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + float2( k.x, k.y)), 0) - ); - - // PS4 INTRINSIC_MINMAX3 - #if SHADER_API_PSSL - float4 minimum = min3(min3(min3(min3(top[0], top[1], top[2]), top[3], bottom[0]), bottom[1], bottom[2]), bottom[3], color); - float4 maximum = max3(max3(max3(max3(top[0], top[1], top[2]), top[3], bottom[0]), bottom[1], bottom[2]), bottom[3], color); - #else - float4 minimum = min(min(min(min(min(min(min(min(top[0], top[1]), top[2]), top[3]), bottom[0]), bottom[1]), bottom[2]), bottom[3]), color); - float4 maximum = max(max(max(max(max(max(max(max(top[0], top[1]), top[2]), top[3]), bottom[0]), bottom[1]), bottom[2]), bottom[3]), color); - #endif - - float4 history = _History.SampleLevel(sampler_History, UnityStereoTransformScreenSpaceTex(uv), 0); - history = clamp(history, minimum, maximum); - - color.a = saturate(smoothstep(0.002 * _MainTex_TexelSize.z, 0.0035 * _MainTex_TexelSize.z, length(motion))); - - float weight = clamp(lerp(SSR_FINAL_BLEND_STATIC_FACTOR, SSR_FINAL_BLEND_DYNAMIC_FACTOR, - history.a * 100.0), SSR_FINAL_BLEND_DYNAMIC_FACTOR, SSR_FINAL_BLEND_STATIC_FACTOR); - - color.a *= 0.85; - return lerp(color, history, weight); -} - -float4 FragComposite(VaryingsDefault i) : SV_Target -{ - float z = _CameraDepthTexture.SampleLevel(sampler_CameraDepthTexture, i.texcoordStereo, 0).r; - - if (Linear01Depth(z) > 0.999) - return _MainTex.Sample(sampler_MainTex, i.texcoordStereo); - - float4 gbuffer0 = _CameraGBufferTexture0.Load(int3(i.vertex.xy, 0)); - float4 gbuffer1 = _CameraGBufferTexture1.Load(int3(i.vertex.xy, 0)); - float4 gbuffer2 = _CameraGBufferTexture2.Load(int3(i.vertex.xy, 0)); - - float oneMinusReflectivity = 0.0; - EnergyConservationBetweenDiffuseAndSpecular(gbuffer0.rgb, gbuffer1.rgb, oneMinusReflectivity); - - float3 normal = 2.0 * gbuffer2.rgb - 1.0; - float3 position = GetViewSpacePosition(i.texcoord); - - float3 eye = mul((float3x3)_InverseViewMatrix, normalize(position)); - position = mul(_InverseViewMatrix, float4(position, 1.0)).xyz; - -#if SSR_ENABLE_CONTACTS - float4 test = _Test.SampleLevel(sampler_Test, i.texcoordStereo, 0); - float4 resolve = _Resolve.SampleLevel(sampler_Resolve, i.texcoordStereo, SmoothnessToRoughness(gbuffer1.a) * (_BlurPyramidLODCount - 1.0) * test.z + 1.0); -#else - float4 resolve = _Resolve.SampleLevel(sampler_Resolve, i.texcoordStereo, SmoothnessToRoughness(gbuffer1.a) * (_BlurPyramidLODCount - 1.0) + 1.0); -#endif - - float confidence = saturate(2.0 * dot(-eye, normalize(reflect(-eye, normal)))); - - UnityLight light; - light.color = 0.0; - light.dir = 0.0; - light.ndotl = 0.0; - - UnityIndirect indirect; - indirect.diffuse = 0.0; - indirect.specular = resolve.rgb; - - resolve.rgb = UNITY_BRDF_PBS(gbuffer0.rgb, gbuffer1.rgb, oneMinusReflectivity, gbuffer1.a, normal, -eye, light, indirect).rgb; - - float4 reflectionProbes = _CameraReflectionsTexture.Sample(sampler_CameraReflectionsTexture, i.texcoordStereo); - - float4 color = _MainTex.Sample(sampler_MainTex, i.texcoordStereo); - color.rgb = max(0.0, color.rgb - reflectionProbes.rgb); - - resolve.a *= 2. * resolve.a; // 2 and 1.5 are quite important for the correct ratio of 3:2 distribution - float fade = 1.0 - saturate(1.5 * resolve.a * smoothstep(0.5, 1.0, 1.5 * resolve.a) * _DistanceFade); - - resolve.rgb = lerp(reflectionProbes.rgb, resolve.rgb, confidence * fade); - color.rgb += resolve.rgb * gbuffer0.a; - - return color; -} - -#endif // UNITY_POSTFX_SSR diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.hlsl.meta deleted file mode 100644 index ef421652e..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: ad99a5d3138ea7e47a3b2a3051034642 -timeCreated: 1503577882 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.shader deleted file mode 100644 index 9e1d0d28a..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.shader +++ /dev/null @@ -1,91 +0,0 @@ -Shader "Hidden/PostProcessing/ScreenSpaceReflections" -{ - // We need to use internal Unity lighting structures and functions for this effect so we have to - // stick to CGPROGRAM instead of HLSLPROGRAM - - CGINCLUDE - - #include "UnityCG.cginc" - #pragma target 5.0 - - // Ported from StdLib, we can't include it as it'll conflict with internal Unity includes - struct AttributesDefault - { - float3 vertex : POSITION; - }; - - struct VaryingsDefault - { - float4 vertex : SV_POSITION; - float2 texcoord : TEXCOORD0; - float2 texcoordStereo : TEXCOORD1; - }; - - VaryingsDefault VertDefault(AttributesDefault v) - { - VaryingsDefault o; - o.vertex = float4(v.vertex.xy, 0.0, 1.0); - o.texcoord = (v.vertex.xy + 1.0) * 0.5; - - #if UNITY_UV_STARTS_AT_TOP - o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); - #endif - - o.texcoordStereo = TransformStereoScreenSpaceTex(o.texcoord, 1.0); - - return o; - } - - #include "ScreenSpaceReflections.hlsl" - - ENDCG - - SubShader - { - Cull Off ZWrite Off ZTest Always - - // 0 - Test - Pass - { - CGPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragTest - - ENDCG - } - - // 1 - Resolve - Pass - { - CGPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragResolve - - ENDCG - } - - // 2 - Reproject - Pass - { - CGPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragReproject - - ENDCG - } - - // 3 - Composite - Pass - { - CGPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragComposite - - ENDCG - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.shader.meta deleted file mode 100644 index 0177f1455..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: f997a3dc9254c44459323cced085150c -timeCreated: 1503577833 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.hlsl deleted file mode 100644 index 5e05061b0..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.hlsl +++ /dev/null @@ -1,1436 +0,0 @@ -// Ported to Unity & tweaked by Thomas Hourdel (thomas@hourdel.com) -#include "../Colors.hlsl" - -/** - * Copyright (C) 2013 Jorge Jimenez (jorge@iryoku.com) - * Copyright (C) 2013 Jose I. Echevarria (joseignacioechevarria@gmail.com) - * Copyright (C) 2013 Belen Masia (bmasia@unizar.es) - * Copyright (C) 2013 Fernando Navarro (fernandn@microsoft.com) - * Copyright (C) 2013 Diego Gutierrez (diegog@unizar.es) - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies - * of the Software, and to permit persons to whom the Software is furnished to - * do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. As clarification, there - * is no requirement that the copyright notice and permission be included in - * binary distributions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. - */ - - -/** - * _______ ___ ___ ___ ___ - * / || \/ | / \ / \ - * | (---- | \ / | / ^ \ / ^ \ - * \ \ | |\/| | / /_\ \ / /_\ \ - * ----) | | | | | / _____ \ / _____ \ - * |_______/ |__| |__| /__/ \__\ /__/ \__\ - * - * E N H A N C E D - * S U B P I X E L M O R P H O L O G I C A L A N T I A L I A S I N G - * - * http://www.iryoku.com/smaa/ - * - * Hi, welcome aboard! - * - * Here you'll find instructions to get the shader up and running as fast as - * possible. - * - * IMPORTANTE NOTICE: when updating, remember to update both this file and the - * precomputed textures! They may change from version to version. - * - * The shader has three passes, chained together as follows: - * - * |input|------------------� - * v | - * [ SMAA*EdgeDetection ] | - * v | - * |edgesTex| | - * v | - * [ SMAABlendingWeightCalculation ] | - * v | - * |blendTex| | - * v | - * [ SMAANeighborhoodBlending ] <------� - * v - * |output| - * - * Note that each [pass] has its own vertex and pixel shader. Remember to use - * oversized triangles instead of quads to avoid overshading along the - * diagonal. - * - * You've three edge detection methods to choose from: luma, color or depth. - * They represent different quality/performance and anti-aliasing/sharpness - * tradeoffs, so our recommendation is for you to choose the one that best - * suits your particular scenario: - * - * - Depth edge detection is usually the fastest but it may miss some edges. - * - * - Luma edge detection is usually more expensive than depth edge detection, - * but catches visible edges that depth edge detection can miss. - * - * - Color edge detection is usually the most expensive one but catches - * chroma-only edges. - * - * For quickstarters: just use luma edge detection. - * - * The general advice is to not rush the integration process and ensure each - * step is done correctly (don't try to integrate SMAA T2x with predicated edge - * detection from the start!). Ok then, let's go! - * - * 1. The first step is to create two RGBA temporal render targets for holding - * |edgesTex| and |blendTex|. - * - * In DX10 or DX11, you can use a RG render target for the edges texture. - * In the case of NVIDIA GPUs, using RG render targets seems to actually be - * slower. - * - * On the Xbox 360, you can use the same render target for resolving both - * |edgesTex| and |blendTex|, as they aren't needed simultaneously. - * - * 2. Both temporal render targets |edgesTex| and |blendTex| must be cleared - * each frame. Do not forget to clear the alpha channel! - * - * 3. The next step is loading the two supporting precalculated textures, - * 'areaTex' and 'searchTex'. You'll find them in the 'Textures' folder as - * C++ headers, and also as regular DDS files. They'll be needed for the - * 'SMAABlendingWeightCalculation' pass. - * - * If you use the C++ headers, be sure to load them in the format specified - * inside of them. - * - * You can also compress 'areaTex' and 'searchTex' using BC5 and BC4 - * respectively, if you have that option in your content processor pipeline. - * When compressing then, you get a non-perceptible quality decrease, and a - * marginal performance increase. - * - * 4. All samplers must be set to linear filtering and clamp. - * - * After you get the technique working, remember that 64-bit inputs have - * half-rate linear filtering on GCN. - * - * If SMAA is applied to 64-bit color buffers, switching to point filtering - * when accesing them will increase the performance. Search for - * 'SMAASamplePoint' to see which textures may benefit from point - * filtering, and where (which is basically the color input in the edge - * detection and resolve passes). - * - * 5. All texture reads and buffer writes must be non-sRGB, with the exception - * of the input read and the output write in - * 'SMAANeighborhoodBlending' (and only in this pass!). If sRGB reads in - * this last pass are not possible, the technique will work anyway, but - * will perform antialiasing in gamma space. - * - * IMPORTANT: for best results the input read for the color/luma edge - * detection should *NOT* be sRGB. - * - * 6. Before including SMAA.h you'll have to setup the render target metrics, - * the target and any optional configuration defines. Optionally you can - * use a preset. - * - * You have the following targets available: - * SMAA_HLSL_3 - * SMAA_HLSL_4 - * SMAA_HLSL_4_1 - * SMAA_GLSL_3 * - * SMAA_GLSL_4 * - * - * * (See SMAA_INCLUDE_VS and SMAA_INCLUDE_PS below). - * - * And four presets: - * SMAA_PRESET_LOW (%60 of the quality) - * SMAA_PRESET_MEDIUM (%80 of the quality) - * SMAA_PRESET_HIGH (%95 of the quality) - * SMAA_PRESET_ULTRA (%99 of the quality) - * - * For example: - * #define SMAA_RT_METRICS float4(1.0 / 1280.0, 1.0 / 720.0, 1280.0, 720.0) - * #define SMAA_HLSL_4 - * #define SMAA_PRESET_HIGH - * #include "SMAA.h" - * - * Note that SMAA_RT_METRICS doesn't need to be a macro, it can be a - * uniform variable. The code is designed to minimize the impact of not - * using a constant value, but it is still better to hardcode it. - * - * Depending on how you encoded 'areaTex' and 'searchTex', you may have to - * add (and customize) the following defines before including SMAA.h: - * #define SMAA_AREATEX_SELECT(sample) sample.rg - * #define SMAA_SEARCHTEX_SELECT(sample) sample.r - * - * If your engine is already using porting macros, you can define - * SMAA_CUSTOM_SL, and define the porting functions by yourself. - * - * 7. Then, you'll have to setup the passes as indicated in the scheme above. - * You can take a look into SMAA.fx, to see how we did it for our demo. - * Checkout the function wrappers, you may want to copy-paste them! - * - * 8. It's recommended to validate the produced |edgesTex| and |blendTex|. - * You can use a screenshot from your engine to compare the |edgesTex| - * and |blendTex| produced inside of the engine with the results obtained - * with the reference demo. - * - * 9. After you get the last pass to work, it's time to optimize. You'll have - * to initialize a stencil buffer in the first pass (discard is already in - * the code), then mask execution by using it the second pass. The last - * pass should be executed in all pixels. - * - * - * After this point you can choose to enable predicated thresholding, - * temporal supersampling and motion blur integration: - * - * a) If you want to use predicated thresholding, take a look into - * SMAA_PREDICATION; you'll need to pass an extra texture in the edge - * detection pass. - * - * b) If you want to enable temporal supersampling (SMAA T2x): - * - * 1. The first step is to render using subpixel jitters. I won't go into - * detail, but it's as simple as moving each vertex position in the - * vertex shader, you can check how we do it in our DX10 demo. - * - * 2. Then, you must setup the temporal resolve. You may want to take a look - * into SMAAResolve for resolving 2x modes. After you get it working, you'll - * probably see ghosting everywhere. But fear not, you can enable the - * CryENGINE temporal reprojection by setting the SMAA_REPROJECTION macro. - * Check out SMAA_DECODE_VELOCITY if your velocity buffer is encoded. - * - * 3. The next step is to apply SMAA to each subpixel jittered frame, just as - * done for 1x. - * - * 4. At this point you should already have something usable, but for best - * results the proper area textures must be set depending on current jitter. - * For this, the parameter 'subsampleIndices' of - * 'SMAABlendingWeightCalculationPS' must be set as follows, for our T2x - * mode: - * - * @SUBSAMPLE_INDICES - * - * | S# | Camera Jitter | subsampleIndices | - * +----+------------------+---------------------+ - * | 0 | ( 0.25, -0.25) | float4(1, 1, 1, 0) | - * | 1 | (-0.25, 0.25) | float4(2, 2, 2, 0) | - * - * These jitter positions assume a bottom-to-top y axis. S# stands for the - * sample number. - * - * More information about temporal supersampling here: - * http://iryoku.com/aacourse/downloads/13-Anti-Aliasing-Methods-in-CryENGINE-3.pdf - * - * c) If you want to enable spatial multisampling (SMAA S2x): - * - * 1. The scene must be rendered using MSAA 2x. The MSAA 2x buffer must be - * created with: - * - DX10: see below (*) - * - DX10.1: D3D10_STANDARD_MULTISAMPLE_PATTERN or - * - DX11: D3D11_STANDARD_MULTISAMPLE_PATTERN - * - * This allows to ensure that the subsample order matches the table in - * @SUBSAMPLE_INDICES. - * - * (*) In the case of DX10, we refer the reader to: - * - SMAA::detectMSAAOrder and - * - SMAA::msaaReorder - * - * These functions allow to match the standard multisample patterns by - * detecting the subsample order for a specific GPU, and reordering - * them appropriately. - * - * 2. A shader must be run to output each subsample into a separate buffer - * (DX10 is required). You can use SMAASeparate for this purpose, or just do - * it in an existing pass (for example, in the tone mapping pass, which has - * the advantage of feeding tone mapped subsamples to SMAA, which will yield - * better results). - * - * 3. The full SMAA 1x pipeline must be run for each separated buffer, storing - * the results in the final buffer. The second run should alpha blend with - * the existing final buffer using a blending factor of 0.5. - * 'subsampleIndices' must be adjusted as in the SMAA T2x case (see point - * b). - * - * d) If you want to enable temporal supersampling on top of SMAA S2x - * (which actually is SMAA 4x): - * - * 1. SMAA 4x consists on temporally jittering SMAA S2x, so the first step is - * to calculate SMAA S2x for current frame. In this case, 'subsampleIndices' - * must be set as follows: - * - * | F# | S# | Camera Jitter | Net Jitter | subsampleIndices | - * +----+----+--------------------+-------------------+----------------------+ - * | 0 | 0 | ( 0.125, 0.125) | ( 0.375, -0.125) | float4(5, 3, 1, 3) | - * | 0 | 1 | ( 0.125, 0.125) | (-0.125, 0.375) | float4(4, 6, 2, 3) | - * +----+----+--------------------+-------------------+----------------------+ - * | 1 | 2 | (-0.125, -0.125) | ( 0.125, -0.375) | float4(3, 5, 1, 4) | - * | 1 | 3 | (-0.125, -0.125) | (-0.375, 0.125) | float4(6, 4, 2, 4) | - * - * These jitter positions assume a bottom-to-top y axis. F# stands for the - * frame number. S# stands for the sample number. - * - * 2. After calculating SMAA S2x for current frame (with the new subsample - * indices), previous frame must be reprojected as in SMAA T2x mode (see - * point b). - * - * e) If motion blur is used, you may want to do the edge detection pass - * together with motion blur. This has two advantages: - * - * 1. Pixels under heavy motion can be omitted from the edge detection process. - * For these pixels we can just store "no edge", as motion blur will take - * care of them. - * 2. The center pixel tap is reused. - * - * Note that in this case depth testing should be used instead of stenciling, - * as we have to write all the pixels in the motion blur pass. - * - * That's it! - */ - -//----------------------------------------------------------------------------- -// SMAA Presets - -/** - * Note that if you use one of these presets, the following configuration - * macros will be ignored if set in the "Configurable Defines" section. - */ - -#if defined(SMAA_PRESET_LOW) -#define SMAA_THRESHOLD 0.15 -#define SMAA_MAX_SEARCH_STEPS 4 -#define SMAA_DISABLE_DIAG_DETECTION -#define SMAA_DISABLE_CORNER_DETECTION -#elif defined(SMAA_PRESET_MEDIUM) -#define SMAA_THRESHOLD 0.1 -#define SMAA_MAX_SEARCH_STEPS 8 -#define SMAA_DISABLE_DIAG_DETECTION -#define SMAA_DISABLE_CORNER_DETECTION -#elif defined(SMAA_PRESET_HIGH) -#define SMAA_THRESHOLD 0.1 -#define SMAA_MAX_SEARCH_STEPS 16 -#define SMAA_MAX_SEARCH_STEPS_DIAG 8 -#define SMAA_CORNER_ROUNDING 25 -#elif defined(SMAA_PRESET_ULTRA) -#define SMAA_THRESHOLD 0.05 -#define SMAA_MAX_SEARCH_STEPS 32 -#define SMAA_MAX_SEARCH_STEPS_DIAG 16 -#define SMAA_CORNER_ROUNDING 25 -#endif - -//----------------------------------------------------------------------------- -// Configurable Defines - -/** - * SMAA_THRESHOLD specifies the threshold or sensitivity to edges. - * Lowering this value you will be able to detect more edges at the expense of - * performance. - * - * Range: [0, 0.5] - * 0.1 is a reasonable value, and allows to catch most visible edges. - * 0.05 is a rather overkill value, that allows to catch 'em all. - * - * If temporal supersampling is used, 0.2 could be a reasonable value, as low - * contrast edges are properly filtered by just 2x. - */ -#ifndef SMAA_THRESHOLD -#define SMAA_THRESHOLD 0.1 -#endif - -/** - * SMAA_DEPTH_THRESHOLD specifies the threshold for depth edge detection. - * - * Range: depends on the depth range of the scene. - */ -#ifndef SMAA_DEPTH_THRESHOLD -#define SMAA_DEPTH_THRESHOLD (0.1 * SMAA_THRESHOLD) -#endif - -/** - * SMAA_MAX_SEARCH_STEPS specifies the maximum steps performed in the - * horizontal/vertical pattern searches, at each side of the pixel. - * - * In number of pixels, it's actually the double. So the maximum line length - * perfectly handled by, for example 16, is 64 (by perfectly, we meant that - * longer lines won't look as good, but still antialiased). - * - * Range: [0, 112] - */ -#ifndef SMAA_MAX_SEARCH_STEPS -#define SMAA_MAX_SEARCH_STEPS 16 -#endif - -/** - * SMAA_MAX_SEARCH_STEPS_DIAG specifies the maximum steps performed in the - * diagonal pattern searches, at each side of the pixel. In this case we jump - * one pixel at time, instead of two. - * - * Range: [0, 20] - * - * On high-end machines it is cheap (between a 0.8x and 0.9x slower for 16 - * steps), but it can have a significant impact on older machines. - * - * Define SMAA_DISABLE_DIAG_DETECTION to disable diagonal processing. - */ -#ifndef SMAA_MAX_SEARCH_STEPS_DIAG -#define SMAA_MAX_SEARCH_STEPS_DIAG 8 -#endif - -/** - * SMAA_CORNER_ROUNDING specifies how much sharp corners will be rounded. - * - * Range: [0, 100] - * - * Define SMAA_DISABLE_CORNER_DETECTION to disable corner processing. - */ -#ifndef SMAA_CORNER_ROUNDING -#define SMAA_CORNER_ROUNDING 25 -#endif - -/** - * If there is an neighbor edge that has SMAA_LOCAL_CONTRAST_FACTOR times - * bigger contrast than current edge, current edge will be discarded. - * - * This allows to eliminate spurious crossing edges, and is based on the fact - * that, if there is too much contrast in a direction, that will hide - * perceptually contrast in the other neighbors. - */ -#ifndef SMAA_LOCAL_CONTRAST_ADAPTATION_FACTOR -#define SMAA_LOCAL_CONTRAST_ADAPTATION_FACTOR 2.0 -#endif - -/** - * Predicated thresholding allows to better preserve texture details and to - * improve performance, by decreasing the number of detected edges using an - * additional buffer like the light accumulation buffer, object ids or even the - * depth buffer (the depth buffer usage may be limited to indoor or short range - * scenes). - * - * It locally decreases the luma or color threshold if an edge is found in an - * additional buffer (so the global threshold can be higher). - * - * This method was developed by Playstation EDGE MLAA team, and used in - * Killzone 3, by using the light accumulation buffer. More information here: - * http://iryoku.com/aacourse/downloads/06-MLAA-on-PS3.pptx - */ -#ifndef SMAA_PREDICATION -#define SMAA_PREDICATION 0 -#endif - -/** - * Threshold to be used in the additional predication buffer. - * - * Range: depends on the input, so you'll have to find the magic number that - * works for you. - */ -#ifndef SMAA_PREDICATION_THRESHOLD -#define SMAA_PREDICATION_THRESHOLD 0.01 -#endif - -/** - * How much to scale the global threshold used for luma or color edge - * detection when using predication. - * - * Range: [1, 5] - */ -#ifndef SMAA_PREDICATION_SCALE -#define SMAA_PREDICATION_SCALE 2.0 -#endif - -/** - * How much to locally decrease the threshold. - * - * Range: [0, 1] - */ -#ifndef SMAA_PREDICATION_STRENGTH -#define SMAA_PREDICATION_STRENGTH 0.4 -#endif - -/** - * Temporal reprojection allows to remove ghosting artifacts when using - * temporal supersampling. We use the CryEngine 3 method which also introduces - * velocity weighting. This feature is of extreme importance for totally - * removing ghosting. More information here: - * http://iryoku.com/aacourse/downloads/13-Anti-Aliasing-Methods-in-CryENGINE-3.pdf - * - * Note that you'll need to setup a velocity buffer for enabling reprojection. - * For static geometry, saving the previous depth buffer is a viable - * alternative. - */ -#ifndef SMAA_REPROJECTION -#define SMAA_REPROJECTION 0 -#endif - -/** - * Temporal reprojection allows to remove ghosting artifacts when using - * temporal supersampling. However, the default reprojection requires a velocity buffer - * in order to function properly. - * - * A velocity buffer might not always be available (hi Unity 5!). To handle such cases - * we provide a UV-based approximation for calculating motion vectors on the fly. - */ -#ifndef SMAA_UV_BASED_REPROJECTION -#define SMAA_UV_BASED_REPROJECTION 0 -#endif - -/** - * SMAA_REPROJECTION_WEIGHT_SCALE controls the velocity weighting. It allows to - * remove ghosting trails behind the moving object, which are not removed by - * just using reprojection. Using low values will exhibit ghosting, while using - * high values will disable temporal supersampling under motion. - * - * Behind the scenes, velocity weighting removes temporal supersampling when - * the velocity of the subsamples differs (meaning they are different objects). - * - * Range: [0, 80] - */ -#ifndef SMAA_REPROJECTION_WEIGHT_SCALE -#define SMAA_REPROJECTION_WEIGHT_SCALE 30.0 -#endif - -/** - * On some compilers, discard cannot be used in vertex shaders. Thus, they need - * to be compiled separately. - */ -#ifndef SMAA_INCLUDE_VS -#define SMAA_INCLUDE_VS 1 -#endif -#ifndef SMAA_INCLUDE_PS -#define SMAA_INCLUDE_PS 1 -#endif - -//----------------------------------------------------------------------------- -// Texture Access Defines - -#ifndef SMAA_AREATEX_SELECT -#if defined(SMAA_HLSL_3) -#define SMAA_AREATEX_SELECT(sample) sample.ra -#else -#define SMAA_AREATEX_SELECT(sample) sample.rg -#endif -#endif - -#ifndef SMAA_SEARCHTEX_SELECT -#define SMAA_SEARCHTEX_SELECT(sample) sample.r -#endif - -#ifndef SMAA_DECODE_VELOCITY -#define SMAA_DECODE_VELOCITY(sample) sample.rg -#endif - -//----------------------------------------------------------------------------- -// Non-Configurable Defines - -#define SMAA_AREATEX_MAX_DISTANCE 16 -#define SMAA_AREATEX_MAX_DISTANCE_DIAG 20 -#define SMAA_AREATEX_PIXEL_SIZE (1.0 / float2(160.0, 560.0)) -#define SMAA_AREATEX_SUBTEX_SIZE (1.0 / 7.0) -#define SMAA_SEARCHTEX_SIZE float2(66.0, 33.0) -#define SMAA_SEARCHTEX_PACKED_SIZE float2(64.0, 16.0) -#define SMAA_CORNER_ROUNDING_NORM (float(SMAA_CORNER_ROUNDING) / 100.0) - -//----------------------------------------------------------------------------- -// Porting Functions - -#if defined(SMAA_HLSL_3) -#define SMAATexture2D(tex) sampler2D tex -#define SMAATexturePass2D(tex) tex -#define SMAASampleLevelZero(tex, coord) tex2Dlod(tex, float4(coord, 0.0, 0.0)) -#define SMAASampleLevelZeroPoint(tex, coord) tex2Dlod(tex, float4(coord, 0.0, 0.0)) -#define SMAASampleLevelZeroOffset(tex, coord, offset) tex2Dlod(tex, float4(coord + offset * SMAA_RT_METRICS.xy, 0.0, 0.0)) -#define SMAASample(tex, coord) tex2D(tex, coord) -#define SMAASamplePoint(tex, coord) tex2D(tex, coord) -#define SMAASampleOffset(tex, coord, offset) tex2D(tex, coord + offset * SMAA_RT_METRICS.xy) -//#define SMAA_FLATTEN [flatten] -//#define SMAA_BRANCH [branch] -#define SMAA_FLATTEN -#define SMAA_BRANCH -#endif -#if defined(SMAA_HLSL_4) || defined(SMAA_HLSL_4_1) -//SamplerState LinearSampler { Filter = MIN_MAG_LINEAR_MIP_POINT; AddressU = Clamp; AddressV = Clamp; }; -//SamplerState PointSampler { Filter = MIN_MAG_MIP_POINT; AddressU = Clamp; AddressV = Clamp; }; -#define SMAATexture2D(tex) Texture2D tex -#define SMAATexturePass2D(tex) tex -#define SMAASampleLevelZero(tex, coord) tex.SampleLevel(LinearSampler, coord, 0) -#define SMAASampleLevelZeroPoint(tex, coord) tex.SampleLevel(PointSampler, coord, 0) -#define SMAASampleLevelZeroOffset(tex, coord, offset) tex.SampleLevel(LinearSampler, coord, 0, offset) -#define SMAASample(tex, coord) tex.Sample(LinearSampler, coord) -#define SMAASamplePoint(tex, coord) tex.Sample(PointSampler, coord) -#define SMAASampleOffset(tex, coord, offset) tex.Sample(LinearSampler, coord, offset) -#define SMAA_FLATTEN [flatten] -#define SMAA_BRANCH [branch] -#define SMAATexture2DMS2(tex) Texture2DMS tex -#define SMAALoad(tex, pos, sample) tex.Load(pos, sample) -#if defined(SMAA_HLSL_4_1) -#define SMAAGather(tex, coord) tex.Gather(LinearSampler, coord, 0) -#endif -#endif -#if defined(SMAA_GLSL_3) || defined(SMAA_GLSL_4) -#define SMAATexture2D(tex) sampler2D tex -#define SMAATexturePass2D(tex) tex -#define SMAASampleLevelZero(tex, coord) textureLod(tex, coord, 0.0) -#define SMAASampleLevelZeroPoint(tex, coord) textureLod(tex, coord, 0.0) -#define SMAASampleLevelZeroOffset(tex, coord, offset) textureLodOffset(tex, coord, 0.0, offset) -#define SMAASample(tex, coord) texture(tex, coord) -#define SMAASamplePoint(tex, coord) texture(tex, coord) -#define SMAASampleOffset(tex, coord, offset) texture(tex, coord, offset) -#define SMAA_FLATTEN -#define SMAA_BRANCH -#define lerp(a, b, t) mix(a, b, t) -#define saturate(a) clamp(a, 0.0, 1.0) -#if defined(SMAA_GLSL_4) -#define mad(a, b, c) fma(a, b, c) -#define SMAAGather(tex, coord) textureGather(tex, coord) -#else -#define mad(a, b, c) (a * b + c) -#endif -#define float2 vec2 -#define float3 vec3 -#define float4 vec4 -#define int2 ivec2 -#define int3 ivec3 -#define int4 ivec4 -#define bool2 bvec2 -#define bool3 bvec3 -#define bool4 bvec4 -#endif - -#if !defined(SMAA_HLSL_3) && !defined(SMAA_HLSL_4) && !defined(SMAA_HLSL_4_1) && !defined(SMAA_GLSL_3) && !defined(SMAA_GLSL_4) && !defined(SMAA_CUSTOM_SL) -#error you must define the shading language: SMAA_HLSL_*, SMAA_GLSL_* or SMAA_CUSTOM_SL -#endif - -//----------------------------------------------------------------------------- -// Misc functions - -/** - * Gathers current pixel, and the top-left neighbors. - */ -float3 SMAAGatherNeighbours(float2 texcoord, - float4 offset[3], - SMAATexture2D(tex)) { - #ifdef SMAAGather - return SMAAGather(tex, texcoord + SMAA_RT_METRICS.xy * float2(-0.5, -0.5)).grb; - #else - float P = SMAASamplePoint(tex, texcoord).r; - float Pleft = SMAASamplePoint(tex, offset[0].xy).r; - float Ptop = SMAASamplePoint(tex, offset[0].zw).r; - return float3(P, Pleft, Ptop); - #endif -} - -/** - * Adjusts the threshold by means of predication. - */ -float2 SMAACalculatePredicatedThreshold(float2 texcoord, - float4 offset[3], - SMAATexture2D(predicationTex)) { - float3 neighbours = SMAAGatherNeighbours(texcoord, offset, SMAATexturePass2D(predicationTex)); - float2 delta = abs(neighbours.xx - neighbours.yz); - float2 edges = step(SMAA_PREDICATION_THRESHOLD, delta); - return SMAA_PREDICATION_SCALE * SMAA_THRESHOLD * (1.0 - SMAA_PREDICATION_STRENGTH * edges); -} - -/** - * Conditional move: - */ -void SMAAMovc(bool2 cond, inout float2 variable, float2 value) { - SMAA_FLATTEN if (cond.x) variable.x = value.x; - SMAA_FLATTEN if (cond.y) variable.y = value.y; -} - -void SMAAMovc(bool4 cond, inout float4 variable, float4 value) { - SMAAMovc(cond.xy, variable.xy, value.xy); - SMAAMovc(cond.zw, variable.zw, value.zw); -} - - -#if SMAA_INCLUDE_VS -//----------------------------------------------------------------------------- -// Vertex Shaders - -/** - * Edge Detection Vertex Shader - */ -void SMAAEdgeDetectionVS(float2 texcoord, - out float4 offset[3]) { - offset[0] = mad(SMAA_RT_METRICS.xyxy, float4(-1.0, 0.0, 0.0, -1.0), texcoord.xyxy); - offset[1] = mad(SMAA_RT_METRICS.xyxy, float4( 1.0, 0.0, 0.0, 1.0), texcoord.xyxy); - offset[2] = mad(SMAA_RT_METRICS.xyxy, float4(-2.0, 0.0, 0.0, -2.0), texcoord.xyxy); -} - -/** - * Blend Weight Calculation Vertex Shader - */ -void SMAABlendingWeightCalculationVS(float2 texcoord, - out float2 pixcoord, - out float4 offset[3]) { - pixcoord = texcoord * SMAA_RT_METRICS.zw; - - // We will use these offsets for the searches later on (see @PSEUDO_GATHER4): - offset[0] = mad(SMAA_RT_METRICS.xyxy, float4(-0.25, -0.125, 1.25, -0.125), texcoord.xyxy); - offset[1] = mad(SMAA_RT_METRICS.xyxy, float4(-0.125, -0.25, -0.125, 1.25), texcoord.xyxy); - - // And these for the searches, they indicate the ends of the loops: - offset[2] = mad(SMAA_RT_METRICS.xxyy, - float4(-2.0, 2.0, -2.0, 2.0) * float(SMAA_MAX_SEARCH_STEPS), - float4(offset[0].xz, offset[1].yw)); -} - -/** - * Neighborhood Blending Vertex Shader - */ -void SMAANeighborhoodBlendingVS(float2 texcoord, - out float4 offset) { - offset = mad(SMAA_RT_METRICS.xyxy, float4( 1.0, 0.0, 0.0, 1.0), texcoord.xyxy); -} -#endif // SMAA_INCLUDE_VS - -#if SMAA_INCLUDE_PS -//----------------------------------------------------------------------------- -// Edge Detection Pixel Shaders (First Pass) - -/** - * Luma Edge Detection - * - * IMPORTANT NOTICE: luma edge detection requires gamma-corrected colors, and - * thus 'colorTex' should be a non-sRGB texture. - */ -float2 SMAALumaEdgeDetectionPS(float2 texcoord, - float4 offset[3], - SMAATexture2D(colorTex) - #if SMAA_PREDICATION - , SMAATexture2D(predicationTex) - #endif - ) { - // Calculate the threshold: - #if SMAA_PREDICATION - float2 threshold = SMAACalculatePredicatedThreshold(texcoord, offset, SMAATexturePass2D(predicationTex)); - #else - float2 threshold = float2(SMAA_THRESHOLD, SMAA_THRESHOLD); - #endif - - // Calculate lumas: - float3 weights = float3(0.2126, 0.7152, 0.0722); - float L = dot(SMAASamplePoint(colorTex, texcoord).rgb, weights); - - float Lleft = dot(SMAASamplePoint(colorTex, offset[0].xy).rgb, weights); - float Ltop = dot(SMAASamplePoint(colorTex, offset[0].zw).rgb, weights); - - // We do the usual threshold: - float4 delta; - delta.xy = abs(L - float2(Lleft, Ltop)); - float2 edges = step(threshold, delta.xy); - - // Then discard if there is no edge: - if (dot(edges, float2(1.0, 1.0)) == 0.0) - discard; - - // Calculate right and bottom deltas: - float Lright = dot(SMAASamplePoint(colorTex, offset[1].xy).rgb, weights); - float Lbottom = dot(SMAASamplePoint(colorTex, offset[1].zw).rgb, weights); - delta.zw = abs(L - float2(Lright, Lbottom)); - - // Calculate the maximum delta in the direct neighborhood: - float2 maxDelta = max(delta.xy, delta.zw); - - // Calculate left-left and top-top deltas: - float Lleftleft = dot(SMAASamplePoint(colorTex, offset[2].xy).rgb, weights); - float Ltoptop = dot(SMAASamplePoint(colorTex, offset[2].zw).rgb, weights); - delta.zw = abs(float2(Lleft, Ltop) - float2(Lleftleft, Ltoptop)); - - // Calculate the final maximum delta: - maxDelta = max(maxDelta.xy, delta.zw); - float finalDelta = max(maxDelta.x, maxDelta.y); - - // Local contrast adaptation: -#if !defined(SHADER_API_OPENGL) - edges.xy *= step(finalDelta, SMAA_LOCAL_CONTRAST_ADAPTATION_FACTOR * delta.xy); -#endif - - return edges; -} - -/** - * Color Edge Detection - * - * IMPORTANT NOTICE: color edge detection requires gamma-corrected colors, and - * thus 'colorTex' should be a non-sRGB texture. - */ -float2 SMAAColorEdgeDetectionPS(float2 texcoord, - float4 offset[3], - SMAATexture2D(colorTex) - #if SMAA_PREDICATION - , SMAATexture2D(predicationTex) - #endif - ) { - // Calculate the threshold: - #if SMAA_PREDICATION - float2 threshold = SMAACalculatePredicatedThreshold(texcoord, offset, predicationTex); - #else - float2 threshold = float2(SMAA_THRESHOLD, SMAA_THRESHOLD); - #endif - - // Calculate color deltas: - float4 delta; - float3 C = SMAASamplePoint(colorTex, texcoord).rgb; - - float3 Cleft = SMAASamplePoint(colorTex, offset[0].xy).rgb; - float3 t = abs(C - Cleft); - delta.x = max(max(t.r, t.g), t.b); - - float3 Ctop = SMAASamplePoint(colorTex, offset[0].zw).rgb; - t = abs(C - Ctop); - delta.y = max(max(t.r, t.g), t.b); - - // We do the usual threshold: - float2 edges = step(threshold, delta.xy); - - // Then discard if there is no edge: - if (dot(edges, float2(1.0, 1.0)) == 0.0) - discard; - - // Calculate right and bottom deltas: - float3 Cright = SMAASamplePoint(colorTex, offset[1].xy).rgb; - t = abs(C - Cright); - delta.z = max(max(t.r, t.g), t.b); - - float3 Cbottom = SMAASamplePoint(colorTex, offset[1].zw).rgb; - t = abs(C - Cbottom); - delta.w = max(max(t.r, t.g), t.b); - - // Calculate the maximum delta in the direct neighborhood: - float2 maxDelta = max(delta.xy, delta.zw); - - // Calculate left-left and top-top deltas: - float3 Cleftleft = SMAASamplePoint(colorTex, offset[2].xy).rgb; - t = abs(Cleft - Cleftleft); - delta.z = max(max(t.r, t.g), t.b); - - float3 Ctoptop = SMAASamplePoint(colorTex, offset[2].zw).rgb; - t = abs(Ctop - Ctoptop); - delta.w = max(max(t.r, t.g), t.b); - - // Calculate the final maximum delta: - maxDelta = max(maxDelta.xy, delta.zw); - float finalDelta = max(maxDelta.x, maxDelta.y); - - // Local contrast adaptation: -#if !defined(SHADER_API_OPENGL) - edges.xy *= step(finalDelta, SMAA_LOCAL_CONTRAST_ADAPTATION_FACTOR * delta.xy); -#endif - - return edges; -} - -/** - * Depth Edge Detection - */ -float2 SMAADepthEdgeDetectionPS(float2 texcoord, - float4 offset[3], - SMAATexture2D(depthTex)) { - float3 neighbours = SMAAGatherNeighbours(texcoord, offset, SMAATexturePass2D(depthTex)); - float2 delta = abs(neighbours.xx - float2(neighbours.y, neighbours.z)); - float2 edges = step(SMAA_DEPTH_THRESHOLD, delta); - - if (dot(edges, float2(1.0, 1.0)) == 0.0) - discard; - - return edges; -} - -//----------------------------------------------------------------------------- -// Diagonal Search Functions - -#if !defined(SMAA_DISABLE_DIAG_DETECTION) - -/** - * Allows to decode two binary values from a bilinear-filtered access. - */ -float2 SMAADecodeDiagBilinearAccess(float2 e) { - // Bilinear access for fetching 'e' have a 0.25 offset, and we are - // interested in the R and G edges: - // - // +---G---+-------+ - // | x o R x | - // +-------+-------+ - // - // Then, if one of these edge is enabled: - // Red: (0.75 * X + 0.25 * 1) => 0.25 or 1.0 - // Green: (0.75 * 1 + 0.25 * X) => 0.75 or 1.0 - // - // This function will unpack the values (mad + mul + round): - // wolframalpha.com: round(x * abs(5 * x - 5 * 0.75)) plot 0 to 1 - e.r = e.r * abs(5.0 * e.r - 5.0 * 0.75); - return round(e); -} - -float4 SMAADecodeDiagBilinearAccess(float4 e) { - e.rb = e.rb * abs(5.0 * e.rb - 5.0 * 0.75); - return round(e); -} - -/** - * These functions allows to perform diagonal pattern searches. - */ -float2 SMAASearchDiag1(SMAATexture2D(edgesTex), float2 texcoord, float2 dir, out float2 e) { - float4 coord = float4(texcoord, -1.0, 1.0); - float3 t = float3(SMAA_RT_METRICS.xy, 1.0); - while (coord.z < float(SMAA_MAX_SEARCH_STEPS_DIAG - 1) && - coord.w > 0.9) { - coord.xyz = mad(t, float3(dir, 1.0), coord.xyz); - e = SMAASampleLevelZero(edgesTex, coord.xy).rg; - coord.w = dot(e, float2(0.5, 0.5)); - } - return coord.zw; -} - -float2 SMAASearchDiag2(SMAATexture2D(edgesTex), float2 texcoord, float2 dir, out float2 e) { - float4 coord = float4(texcoord, -1.0, 1.0); - coord.x += 0.25 * SMAA_RT_METRICS.x; // See @SearchDiag2Optimization - float3 t = float3(SMAA_RT_METRICS.xy, 1.0); - while (coord.z < float(SMAA_MAX_SEARCH_STEPS_DIAG - 1) && - coord.w > 0.9) { - coord.xyz = mad(t, float3(dir, 1.0), coord.xyz); - - // @SearchDiag2Optimization - // Fetch both edges at once using bilinear filtering: - e = SMAASampleLevelZero(edgesTex, coord.xy).rg; - e = SMAADecodeDiagBilinearAccess(e); - - // Non-optimized version: - // e.g = SMAASampleLevelZero(edgesTex, coord.xy).g; - // e.r = SMAASampleLevelZeroOffset(edgesTex, coord.xy, int2(1, 0)).r; - - coord.w = dot(e, float2(0.5, 0.5)); - } - return coord.zw; -} - -/** - * Similar to SMAAArea, this calculates the area corresponding to a certain - * diagonal distance and crossing edges 'e'. - */ -float2 SMAAAreaDiag(SMAATexture2D(areaTex), float2 dist, float2 e, float offset) { - float2 texcoord = mad(float2(SMAA_AREATEX_MAX_DISTANCE_DIAG, SMAA_AREATEX_MAX_DISTANCE_DIAG), e, dist); - - // We do a scale and bias for mapping to texel space: - texcoord = mad(SMAA_AREATEX_PIXEL_SIZE, texcoord, 0.5 * SMAA_AREATEX_PIXEL_SIZE); - - // Diagonal areas are on the second half of the texture: - texcoord.x += 0.5; - - // Move to proper place, according to the subpixel offset: - texcoord.y += SMAA_AREATEX_SUBTEX_SIZE * offset; - - // Do it! - return SMAA_AREATEX_SELECT(SMAASampleLevelZero(areaTex, texcoord)); -} - -/** - * This searches for diagonal patterns and returns the corresponding weights. - */ -float2 SMAACalculateDiagWeights(SMAATexture2D(edgesTex), SMAATexture2D(areaTex), float2 texcoord, float2 e, float4 subsampleIndices) { - float2 weights = float2(0.0, 0.0); - - // Search for the line ends: - float4 d; - float2 end; - if (e.r > 0.0) { - d.xz = SMAASearchDiag1(SMAATexturePass2D(edgesTex), texcoord, float2(-1.0, 1.0), end); - d.x += float(end.y > 0.9); - } else - d.xz = float2(0.0, 0.0); - d.yw = SMAASearchDiag1(SMAATexturePass2D(edgesTex), texcoord, float2(1.0, -1.0), end); - - SMAA_BRANCH - if (d.x + d.y > 2.0) { // d.x + d.y + 1 > 3 - // Fetch the crossing edges: - float4 coords = mad(float4(-d.x + 0.25, d.x, d.y, -d.y - 0.25), SMAA_RT_METRICS.xyxy, texcoord.xyxy); - float4 c; - c.xy = SMAASampleLevelZeroOffset(edgesTex, coords.xy, int2(-1, 0)).rg; - c.zw = SMAASampleLevelZeroOffset(edgesTex, coords.zw, int2( 1, 0)).rg; - c.yxwz = SMAADecodeDiagBilinearAccess(c.xyzw); - - // Non-optimized version: - // float4 coords = mad(float4(-d.x, d.x, d.y, -d.y), SMAA_RT_METRICS.xyxy, texcoord.xyxy); - // float4 c; - // c.x = SMAASampleLevelZeroOffset(edgesTex, coords.xy, int2(-1, 0)).g; - // c.y = SMAASampleLevelZeroOffset(edgesTex, coords.xy, int2( 0, 0)).r; - // c.z = SMAASampleLevelZeroOffset(edgesTex, coords.zw, int2( 1, 0)).g; - // c.w = SMAASampleLevelZeroOffset(edgesTex, coords.zw, int2( 1, -1)).r; - - // Merge crossing edges at each side into a single value: - float2 cc = mad(float2(2.0, 2.0), c.xz, c.yw); - - // Remove the crossing edge if we didn't found the end of the line: - SMAAMovc(bool2(step(float2(0.9, 0.9), d.zw)), cc, float2(0.0, 0.0)); - - // Fetch the areas for this line: - weights += SMAAAreaDiag(SMAATexturePass2D(areaTex), d.xy, cc, subsampleIndices.z); - } - - // Search for the line ends: - d.xz = SMAASearchDiag2(SMAATexturePass2D(edgesTex), texcoord, float2(-1.0, -1.0), end); - if (SMAASampleLevelZeroOffset(edgesTex, texcoord, int2(1, 0)).r > 0.0) { - d.yw = SMAASearchDiag2(SMAATexturePass2D(edgesTex), texcoord, float2(1.0, 1.0), end); - d.y += float(end.y > 0.9); - } else - d.yw = float2(0.0, 0.0); - - SMAA_BRANCH - if (d.x + d.y > 2.0) { // d.x + d.y + 1 > 3 - // Fetch the crossing edges: - float4 coords = mad(float4(-d.x, -d.x, d.y, d.y), SMAA_RT_METRICS.xyxy, texcoord.xyxy); - float4 c; - c.x = SMAASampleLevelZeroOffset(edgesTex, coords.xy, int2(-1, 0)).g; - c.y = SMAASampleLevelZeroOffset(edgesTex, coords.xy, int2( 0, -1)).r; - c.zw = SMAASampleLevelZeroOffset(edgesTex, coords.zw, int2( 1, 0)).gr; - float2 cc = mad(float2(2.0, 2.0), c.xz, c.yw); - - // Remove the crossing edge if we didn't found the end of the line: - SMAAMovc(bool2(step(float2(0.9, 0.9), d.zw)), cc, float2(0.0, 0.0)); - - // Fetch the areas for this line: - weights += SMAAAreaDiag(SMAATexturePass2D(areaTex), d.xy, cc, subsampleIndices.w).gr; - } - - return weights; -} -#endif - -//----------------------------------------------------------------------------- -// Horizontal/Vertical Search Functions - -/** - * This allows to determine how much length should we add in the last step - * of the searches. It takes the bilinearly interpolated edge (see - * @PSEUDO_GATHER4), and adds 0, 1 or 2, depending on which edges and - * crossing edges are active. - */ -float SMAASearchLength(SMAATexture2D(searchTex), float2 e, float offset) { - // The texture is flipped vertically, with left and right cases taking half - // of the space horizontally: - float2 scale = SMAA_SEARCHTEX_SIZE * float2(0.5, -1.0); - float2 bias = SMAA_SEARCHTEX_SIZE * float2(offset, 1.0); - - // Scale and bias to access texel centers: - scale += float2(-1.0, 1.0); - bias += float2( 0.5, -0.5); - - // Convert from pixel coordinates to texcoords: - // (We use SMAA_SEARCHTEX_PACKED_SIZE because the texture is cropped) - scale *= 1.0 / SMAA_SEARCHTEX_PACKED_SIZE; - bias *= 1.0 / SMAA_SEARCHTEX_PACKED_SIZE; - - // Lookup the search texture: - return SMAA_SEARCHTEX_SELECT(SMAASampleLevelZero(searchTex, mad(scale, e, bias))); -} - -/** - * Horizontal/vertical search functions for the 2nd pass. - */ -float SMAASearchXLeft(SMAATexture2D(edgesTex), SMAATexture2D(searchTex), float2 texcoord, float end) { - /** - * @PSEUDO_GATHER4 - * This texcoord has been offset by (-0.25, -0.125) in the vertex shader to - * sample between edge, thus fetching four edges in a row. - * Sampling with different offsets in each direction allows to disambiguate - * which edges are active from the four fetched ones. - */ - float2 e = float2(0.0, 1.0); - while (texcoord.x > end && - e.g > 0.8281 && // Is there some edge not activated? - e.r == 0.0) { // Or is there a crossing edge that breaks the line? - e = SMAASampleLevelZero(edgesTex, texcoord).rg; - texcoord = mad(-float2(2.0, 0.0), SMAA_RT_METRICS.xy, texcoord); - } - - float offset = mad(-(255.0 / 127.0), SMAASearchLength(SMAATexturePass2D(searchTex), e, 0.0), 3.25); - return mad(SMAA_RT_METRICS.x, offset, texcoord.x); - - // Non-optimized version: - // We correct the previous (-0.25, -0.125) offset we applied: - // texcoord.x += 0.25 * SMAA_RT_METRICS.x; - - // The searches are bias by 1, so adjust the coords accordingly: - // texcoord.x += SMAA_RT_METRICS.x; - - // Disambiguate the length added by the last step: - // texcoord.x += 2.0 * SMAA_RT_METRICS.x; // Undo last step - // texcoord.x -= SMAA_RT_METRICS.x * (255.0 / 127.0) * SMAASearchLength(SMAATexturePass2D(searchTex), e, 0.0); - // return mad(SMAA_RT_METRICS.x, offset, texcoord.x); -} - -float SMAASearchXRight(SMAATexture2D(edgesTex), SMAATexture2D(searchTex), float2 texcoord, float end) { - float2 e = float2(0.0, 1.0); - while (texcoord.x < end && - e.g > 0.8281 && // Is there some edge not activated? - e.r == 0.0) { // Or is there a crossing edge that breaks the line? - e = SMAASampleLevelZero(edgesTex, texcoord).rg; - texcoord = mad(float2(2.0, 0.0), SMAA_RT_METRICS.xy, texcoord); - } - float offset = mad(-(255.0 / 127.0), SMAASearchLength(SMAATexturePass2D(searchTex), e, 0.5), 3.25); - return mad(-SMAA_RT_METRICS.x, offset, texcoord.x); -} - -float SMAASearchYUp(SMAATexture2D(edgesTex), SMAATexture2D(searchTex), float2 texcoord, float end) { - float2 e = float2(1.0, 0.0); - while (texcoord.y > end && - e.r > 0.8281 && // Is there some edge not activated? - e.g == 0.0) { // Or is there a crossing edge that breaks the line? - e = SMAASampleLevelZero(edgesTex, texcoord).rg; - texcoord = mad(-float2(0.0, 2.0), SMAA_RT_METRICS.xy, texcoord); - } - float offset = mad(-(255.0 / 127.0), SMAASearchLength(SMAATexturePass2D(searchTex), e.gr, 0.0), 3.25); - return mad(SMAA_RT_METRICS.y, offset, texcoord.y); -} - -float SMAASearchYDown(SMAATexture2D(edgesTex), SMAATexture2D(searchTex), float2 texcoord, float end) { - float2 e = float2(1.0, 0.0); - while (texcoord.y < end && - e.r > 0.8281 && // Is there some edge not activated? - e.g == 0.0) { // Or is there a crossing edge that breaks the line? - e = SMAASampleLevelZero(edgesTex, texcoord).rg; - texcoord = mad(float2(0.0, 2.0), SMAA_RT_METRICS.xy, texcoord); - } - float offset = mad(-(255.0 / 127.0), SMAASearchLength(SMAATexturePass2D(searchTex), e.gr, 0.5), 3.25); - return mad(-SMAA_RT_METRICS.y, offset, texcoord.y); -} - -/** - * Ok, we have the distance and both crossing edges. So, what are the areas - * at each side of current edge? - */ -float2 SMAAArea(SMAATexture2D(areaTex), float2 dist, float e1, float e2, float offset) { - // Rounding prevents precision errors of bilinear filtering: - float2 texcoord = mad(float2(SMAA_AREATEX_MAX_DISTANCE, SMAA_AREATEX_MAX_DISTANCE), round(4.0 * float2(e1, e2)), dist); - - // We do a scale and bias for mapping to texel space: - texcoord = mad(SMAA_AREATEX_PIXEL_SIZE, texcoord, 0.5 * SMAA_AREATEX_PIXEL_SIZE); - - // Move to proper place, according to the subpixel offset: - texcoord.y = mad(SMAA_AREATEX_SUBTEX_SIZE, offset, texcoord.y); - - // Do it! - return SMAA_AREATEX_SELECT(SMAASampleLevelZero(areaTex, texcoord)); -} - -//----------------------------------------------------------------------------- -// Corner Detection Functions - -void SMAADetectHorizontalCornerPattern(SMAATexture2D(edgesTex), inout float2 weights, float4 texcoord, float2 d) { - #if !defined(SMAA_DISABLE_CORNER_DETECTION) - float2 leftRight = step(d.xy, d.yx); - float2 rounding = (1.0 - SMAA_CORNER_ROUNDING_NORM) * leftRight; - - rounding /= leftRight.x + leftRight.y; // Reduce blending for pixels in the center of a line. - - float2 factor = float2(1.0, 1.0); - factor.x -= rounding.x * SMAASampleLevelZeroOffset(edgesTex, texcoord.xy, int2(0, 1)).r; - factor.x -= rounding.y * SMAASampleLevelZeroOffset(edgesTex, texcoord.zw, int2(1, 1)).r; - factor.y -= rounding.x * SMAASampleLevelZeroOffset(edgesTex, texcoord.xy, int2(0, -2)).r; - factor.y -= rounding.y * SMAASampleLevelZeroOffset(edgesTex, texcoord.zw, int2(1, -2)).r; - - weights *= saturate(factor); - #endif -} - -void SMAADetectVerticalCornerPattern(SMAATexture2D(edgesTex), inout float2 weights, float4 texcoord, float2 d) { - #if !defined(SMAA_DISABLE_CORNER_DETECTION) - float2 leftRight = step(d.xy, d.yx); - float2 rounding = (1.0 - SMAA_CORNER_ROUNDING_NORM) * leftRight; - - rounding /= leftRight.x + leftRight.y; - - float2 factor = float2(1.0, 1.0); - factor.x -= rounding.x * SMAASampleLevelZeroOffset(edgesTex, texcoord.xy, int2( 1, 0)).g; - factor.x -= rounding.y * SMAASampleLevelZeroOffset(edgesTex, texcoord.zw, int2( 1, 1)).g; - factor.y -= rounding.x * SMAASampleLevelZeroOffset(edgesTex, texcoord.xy, int2(-2, 0)).g; - factor.y -= rounding.y * SMAASampleLevelZeroOffset(edgesTex, texcoord.zw, int2(-2, 1)).g; - - weights *= saturate(factor); - #endif -} - - -//----------------------------------------------------------------------------- -// Blending Weight Calculation Pixel Shader (Second Pass) - -float4 SMAABlendingWeightCalculationPS(float2 texcoord, - float2 pixcoord, - float4 offset[3], - SMAATexture2D(edgesTex), - SMAATexture2D(areaTex), - SMAATexture2D(searchTex), - float4 subsampleIndices) { // Just pass zero for SMAA 1x, see @SUBSAMPLE_INDICES. - float4 weights = float4(0.0, 0.0, 0.0, 0.0); - - float2 e = SMAASample(edgesTex, texcoord).rg; - - SMAA_BRANCH - if (e.g > 0.0) { // Edge at north - #if !defined(SMAA_DISABLE_DIAG_DETECTION) - // Diagonals have both north and west edges, so searching for them in - // one of the boundaries is enough. - weights.rg = SMAACalculateDiagWeights(SMAATexturePass2D(edgesTex), SMAATexturePass2D(areaTex), texcoord, e, subsampleIndices); - - // We give priority to diagonals, so if we find a diagonal we skip - // horizontal/vertical processing. - SMAA_BRANCH - if (weights.r == -weights.g) { // weights.r + weights.g == 0.0 - #endif - - float2 d; - - // Find the distance to the left: - float3 coords; - coords.x = SMAASearchXLeft(SMAATexturePass2D(edgesTex), SMAATexturePass2D(searchTex), offset[0].xy, offset[2].x); - coords.y = offset[1].y; // offset[1].y = texcoord.y - 0.25 * SMAA_RT_METRICS.y (@CROSSING_OFFSET) - d.x = coords.x; - - // Now fetch the left crossing edges, two at a time using bilinear - // filtering. Sampling at -0.25 (see @CROSSING_OFFSET) enables to - // discern what value each edge has: - float e1 = SMAASampleLevelZero(edgesTex, coords.xy).r; - - // Find the distance to the right: - coords.z = SMAASearchXRight(SMAATexturePass2D(edgesTex), SMAATexturePass2D(searchTex), offset[0].zw, offset[2].y); - d.y = coords.z; - - // We want the distances to be in pixel units (doing this here allow to - // better interleave arithmetic and memory accesses): - d = abs(round(mad(SMAA_RT_METRICS.zz, d, -pixcoord.xx))); - - // SMAAArea below needs a sqrt, as the areas texture is compressed - // quadratically: - float2 sqrt_d = sqrt(d); - - // Fetch the right crossing edges: - float e2 = SMAASampleLevelZeroOffset(edgesTex, coords.zy, int2(1, 0)).r; - - // Ok, we know how this pattern looks like, now it is time for getting - // the actual area: - weights.rg = SMAAArea(SMAATexturePass2D(areaTex), sqrt_d, e1, e2, subsampleIndices.y); - - // Fix corners: - coords.y = texcoord.y; - SMAADetectHorizontalCornerPattern(SMAATexturePass2D(edgesTex), weights.rg, coords.xyzy, d); - - #if !defined(SMAA_DISABLE_DIAG_DETECTION) - } else - e.r = 0.0; // Skip vertical processing. - #endif - } - - SMAA_BRANCH - if (e.r > 0.0) { // Edge at west - float2 d; - - // Find the distance to the top: - float3 coords; - coords.y = SMAASearchYUp(SMAATexturePass2D(edgesTex), SMAATexturePass2D(searchTex), offset[1].xy, offset[2].z); - coords.x = offset[0].x; // offset[1].x = texcoord.x - 0.25 * SMAA_RT_METRICS.x; - d.x = coords.y; - - // Fetch the top crossing edges: - float e1 = SMAASampleLevelZero(edgesTex, coords.xy).g; - - // Find the distance to the bottom: - coords.z = SMAASearchYDown(SMAATexturePass2D(edgesTex), SMAATexturePass2D(searchTex), offset[1].zw, offset[2].w); - d.y = coords.z; - - // We want the distances to be in pixel units: - d = abs(round(mad(SMAA_RT_METRICS.ww, d, -pixcoord.yy))); - - // SMAAArea below needs a sqrt, as the areas texture is compressed - // quadratically: - float2 sqrt_d = sqrt(d); - - // Fetch the bottom crossing edges: - float e2 = SMAASampleLevelZeroOffset(edgesTex, coords.xz, int2(0, 1)).g; - - // Get the area for this direction: - weights.ba = SMAAArea(SMAATexturePass2D(areaTex), sqrt_d, e1, e2, subsampleIndices.x); - - // Fix corners: - coords.x = texcoord.x; - SMAADetectVerticalCornerPattern(SMAATexturePass2D(edgesTex), weights.ba, coords.xyxz, d); - } - - return weights; -} - -//----------------------------------------------------------------------------- -// UV-based reprojection functions - -#if SMAA_UV_BASED_REPROJECTION -float2 SMAAReproject(float2 texcoord) -{ - // UV to clip-position: - // -- This must be sampled at exactly mip 0 due to possible gradient divergence - // -- as this function is called within a control flow block down below. - float depth = SMAASampleLevelZero(_CameraDepthTexture, texcoord).r; - float3 clipPosition = float3(2. * texcoord - 1., depth); - - // Reproject - float4 previousClipPosition = mul(_ReprojectionMatrix, float4(clipPosition, 1.)); - previousClipPosition.xyz /= previousClipPosition.w; - - // Clip-position to UV - return (.5 * previousClipPosition.xy + .5); -} -#endif - -//----------------------------------------------------------------------------- -// Neighborhood Blending Pixel Shader (Third Pass) - -float4 SMAANeighborhoodBlendingPS(float2 texcoord, - float4 offset, - SMAATexture2D(colorTex), - SMAATexture2D(blendTex) - #if SMAA_REPROJECTION - , SMAATexture2D(velocityTex) - #endif - ) { - // Fetch the blending weights for current pixel: - float4 a; - a.x = SMAASample(blendTex, offset.xy).a; // Right - a.y = SMAASample(blendTex, offset.zw).g; // Top - a.wz = SMAASample(blendTex, texcoord).xz; // Bottom / Left - - // Is there any blending weight with a value greater than 0.0? - SMAA_BRANCH - if (dot(a, float4(1.0, 1.0, 1.0, 1.0)) < 1e-5) { - float4 color = SMAASampleLevelZero(colorTex, texcoord); - - #if SMAA_REPROJECTION - float2 velocity = SMAA_DECODE_VELOCITY(SMAASampleLevelZero(velocityTex, texcoord)); - #elif SMAA_UV_BASED_REPROJECTION - float2 velocity = texcoord - SMAAReproject(texcoord); - #endif - - #if (SMAA_REPROJECTION || SMAA_UV_BASED_REPROJECTION) - // Pack velocity into the alpha channel: - color.a = sqrt(5.0 * length(velocity)); - #endif - - return color; - } else { - bool h = max(a.x, a.z) > max(a.y, a.w); // max(horizontal) > max(vertical) - - // Calculate the blending offsets: - float4 blendingOffset = float4(0.0, a.y, 0.0, a.w); - float2 blendingWeight = a.yw; - SMAAMovc(bool4(h, h, h, h), blendingOffset, float4(a.x, 0.0, a.z, 0.0)); - SMAAMovc(bool2(h, h), blendingWeight, a.xz); - blendingWeight /= dot(blendingWeight, float2(1.0, 1.0)); - - // Calculate the texture coordinates: - float4 blendingCoord = mad(blendingOffset, float4(SMAA_RT_METRICS.xy, -SMAA_RT_METRICS.xy), texcoord.xyxy); - - // We exploit bilinear filtering to mix current pixel with the chosen - // neighbor: - float4 color = blendingWeight.x * SMAASampleLevelZero(colorTex, blendingCoord.xy); - color += blendingWeight.y * SMAASampleLevelZero(colorTex, blendingCoord.zw); - - #if SMAA_REPROJECTION - // Antialias velocity for proper reprojection in a later stage: - float2 velocity = blendingWeight.x * SMAA_DECODE_VELOCITY(SMAASampleLevelZero(velocityTex, blendingCoord.xy)); - velocity += blendingWeight.y * SMAA_DECODE_VELOCITY(SMAASampleLevelZero(velocityTex, blendingCoord.zw)); - #elif SMAA_UV_BASED_REPROJECTION - // Antialias velocity for proper reprojection in a later stage: - float2 velocity = blendingWeight.x * (blendingCoord.xy - SMAAReproject(blendingCoord.xy)); - velocity += blendingWeight.y * (blendingCoord.zw - SMAAReproject(blendingCoord.zw)); - #endif - - #if (SMAA_REPROJECTION || SMAA_UV_BASED_REPROJECTION) - // Pack velocity into the alpha channel: - color.a = sqrt(5.0 * length(velocity)); - #endif - - return color; - } -} - -//----------------------------------------------------------------------------- -// Temporal Resolve Pixel Shader (Optional Pass) - -float4 SMAAResolvePS(float2 texcoord, - SMAATexture2D(currentColorTex), - SMAATexture2D(previousColorTex) - #if SMAA_REPROJECTION - , SMAATexture2D(velocityTex) - #endif - ) { - #if SMAA_REPROJECTION - // Velocity is assumed to be calculated for motion blur, so we need to - // inverse it for reprojection: - float2 velocity = -SMAA_DECODE_VELOCITY(SMAASamplePoint(velocityTex, texcoord).rg); - #elif SMAA_UV_BASED_REPROJECTION - float2 velocity = SMAAReproject(texcoord) - texcoord; - #endif - - #if (SMAA_REPROJECTION || SMAA_UV_BASED_REPROJECTION) - // Fetch current pixel: - float4 current = SMAASamplePoint(currentColorTex, texcoord); - - // Reproject current coordinates and fetch previous pixel: - float4 previous = SMAASamplePoint(previousColorTex, texcoord + velocity); - - // Attenuate the previous pixel if the velocity is different: - float delta = abs(current.a * current.a - previous.a * previous.a) / 5.0; - float weight = 0.5 * saturate(1.0 - sqrt(delta) * SMAA_REPROJECTION_WEIGHT_SCALE); - - // Blend the pixels according to the calculated weight: - // return lerp(current, previous, weight); - - // Neighbour clamp - // Contributed by pommak - float4 n0 = SMAASampleOffset(currentColorTex, texcoord, float2(-1, -1)); - float4 n1 = SMAASampleOffset(currentColorTex, texcoord, float2(+1, -1)); - float4 n2 = SMAASampleOffset(currentColorTex, texcoord, float2(-1, +1)); - float4 n3 = SMAASampleOffset(currentColorTex, texcoord, float2(+1, +1)); - float4 cmax = max(n0, max(n1, max(n2, n3))); - float4 cmin = min(n0, min(n1, min(n2, n3))); - float4 avg = 0.25 * (n0+n1+n2+n3); - float4 wk = abs(avg - current); - float blend = saturate(lerp(0.35, 0.85, wk)); - - // Clamp previous to neighbours colors - float4 previousClamped = clamp(previous, cmin, cmax); - - float4 color = lerp(lerp(current, previousClamped, 0.5*weight), previousClamped, weight); - return color; - #else - // Just blend the pixels: - float4 current = SMAASamplePoint(currentColorTex, texcoord); - float4 previous = SMAASamplePoint(previousColorTex, texcoord); - return lerp(current, previous, 0.5); - #endif -} - -//----------------------------------------------------------------------------- -// Separate Multisamples Pixel Shader (Optional Pass) - -#ifdef SMAALoad -void SMAASeparatePS(float4 position, - float2 texcoord, - out float4 target0, - out float4 target1, - SMAATexture2DMS2(colorTexMS)) { - int2 pos = int2(position.xy); - target0 = SMAALoad(colorTexMS, pos, 0); - target1 = SMAALoad(colorTexMS, pos, 1); -} -#endif - -//----------------------------------------------------------------------------- -#endif // SMAA_INCLUDE_PS diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.hlsl.meta deleted file mode 100644 index 6b0c83cdf..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 3e6879594f0f31c42b64e91e59fe78f6 -timeCreated: 1497734907 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.shader deleted file mode 100644 index 8c582c950..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.shader +++ /dev/null @@ -1,103 +0,0 @@ -Shader "Hidden/PostProcessing/SubpixelMorphologicalAntialiasing" -{ - HLSLINCLUDE - - #pragma exclude_renderers d3d11_9x - - ENDHLSL - - SubShader - { - Cull Off ZWrite Off ZTest Always - - // 0 - Edge detection (Low) - Pass - { - HLSLPROGRAM - - #pragma vertex VertEdge - #pragma fragment FragEdge - #define SMAA_PRESET_LOW - #include "SubpixelMorphologicalAntialiasingBridge.hlsl" - - ENDHLSL - } - - // 1 - Edge detection (Medium) - Pass - { - HLSLPROGRAM - - #pragma vertex VertEdge - #pragma fragment FragEdge - #define SMAA_PRESET_MEDIUM - #include "SubpixelMorphologicalAntialiasingBridge.hlsl" - - ENDHLSL - } - - // 2 - Edge detection (High) - Pass - { - HLSLPROGRAM - - #pragma vertex VertEdge - #pragma fragment FragEdge - #define SMAA_PRESET_HIGH - #include "SubpixelMorphologicalAntialiasingBridge.hlsl" - - ENDHLSL - } - - // 3 - Blend Weights Calculation (Low) - Pass - { - HLSLPROGRAM - - #pragma vertex VertBlend - #pragma fragment FragBlend - #define SMAA_PRESET_LOW - #include "SubpixelMorphologicalAntialiasingBridge.hlsl" - - ENDHLSL - } - - // 4 - Blend Weights Calculation (Medium) - Pass - { - HLSLPROGRAM - - #pragma vertex VertBlend - #pragma fragment FragBlend - #define SMAA_PRESET_MEDIUM - #include "SubpixelMorphologicalAntialiasingBridge.hlsl" - - ENDHLSL - } - - // 5 - Blend Weights Calculation (High) - Pass - { - HLSLPROGRAM - - #pragma vertex VertBlend - #pragma fragment FragBlend - #define SMAA_PRESET_HIGH - #include "SubpixelMorphologicalAntialiasingBridge.hlsl" - - ENDHLSL - } - - // 6 - Neighborhood Blending - Pass - { - HLSLPROGRAM - - #pragma vertex VertNeighbor - #pragma fragment FragNeighbor - #include "SubpixelMorphologicalAntialiasingBridge.hlsl" - - ENDHLSL - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.shader.meta deleted file mode 100644 index c3c196834..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 81af42a93ade3dd46a9b583d4eec76d6 -timeCreated: 1497734907 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl deleted file mode 100644 index 988dc49e8..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl +++ /dev/null @@ -1,120 +0,0 @@ -#ifndef UNITY_POSTFX_SMAA_BRIDGE -#define UNITY_POSTFX_SMAA_BRIDGE - -#include "../StdLib.hlsl" - -TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); -TEXTURE2D_SAMPLER2D(_BlendTex, sampler_BlendTex); -TEXTURE2D_SAMPLER2D(_AreaTex, sampler_AreaTex); -TEXTURE2D_SAMPLER2D(_SearchTex, sampler_SearchTex); -float4 _MainTex_TexelSize; - -#define SMAA_RT_METRICS _MainTex_TexelSize -#define SMAA_AREATEX_SELECT(s) s.rg -#define SMAA_SEARCHTEX_SELECT(s) s.a -#define LinearSampler sampler_MainTex -#define PointSampler sampler_MainTex - -#include "SubpixelMorphologicalAntialiasing.hlsl" - -// ---------------------------------------------------------------------------------------- -// Edge Detection - -struct VaryingsEdge -{ - float4 vertex : SV_POSITION; - float2 texcoord : TEXCOORD0; - float4 offsets[3] : TEXCOORD1; -}; - -VaryingsEdge VertEdge(AttributesDefault v) -{ - VaryingsEdge o; - o.vertex = float4(v.vertex.xy, 0.0, 1.0); - o.texcoord = TransformTriangleVertexToUV(v.vertex.xy); - -#if UNITY_UV_STARTS_AT_TOP - o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); -#endif - - o.offsets[0] = mad(SMAA_RT_METRICS.xyxy, float4(-1.0, 0.0, 0.0, -1.0), o.texcoord.xyxy); - o.offsets[1] = mad(SMAA_RT_METRICS.xyxy, float4( 1.0, 0.0, 0.0, 1.0), o.texcoord.xyxy); - o.offsets[2] = mad(SMAA_RT_METRICS.xyxy, float4(-2.0, 0.0, 0.0, -2.0), o.texcoord.xyxy); - - return o; -} - -float4 FragEdge(VaryingsEdge i) : SV_Target -{ - return float4(SMAAColorEdgeDetectionPS(i.texcoord, i.offsets, _MainTex), 0.0, 0.0); -} - -// ---------------------------------------------------------------------------------------- -// Blend Weights Calculation - -struct VaryingsBlend -{ - float4 vertex : SV_POSITION; - float2 texcoord : TEXCOORD0; - float2 pixcoord : TEXCOORD1; - float4 offsets[3] : TEXCOORD2; -}; - -VaryingsBlend VertBlend(AttributesDefault v) -{ - VaryingsBlend o; - o.vertex = float4(v.vertex.xy, 0.0, 1.0); - o.texcoord = TransformTriangleVertexToUV(v.vertex.xy); - -#if UNITY_UV_STARTS_AT_TOP - o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); -#endif - - o.pixcoord = o.texcoord * SMAA_RT_METRICS.zw; - - // We will use these offsets for the searches later on (see @PSEUDO_GATHER4): - o.offsets[0] = mad(SMAA_RT_METRICS.xyxy, float4(-0.250, -0.125, 1.250, -0.125), o.texcoord.xyxy); - o.offsets[1] = mad(SMAA_RT_METRICS.xyxy, float4(-0.125, -0.250, -0.125, 1.250), o.texcoord.xyxy); - - // And these for the searches, they indicate the ends of the loops: - o.offsets[2] = mad(SMAA_RT_METRICS.xxyy, float4(-2.0, 2.0, -2.0, 2.0) * float(SMAA_MAX_SEARCH_STEPS), - float4(o.offsets[0].xz, o.offsets[1].yw)); - - return o; -} - -float4 FragBlend(VaryingsBlend i) : SV_Target -{ - return SMAABlendingWeightCalculationPS(i.texcoord, i.pixcoord, i.offsets, _MainTex, _AreaTex, _SearchTex, 0); -} - -// ---------------------------------------------------------------------------------------- -// Neighborhood Blending - -struct VaryingsNeighbor -{ - float4 vertex : SV_POSITION; - float2 texcoord : TEXCOORD0; - float4 offset : TEXCOORD1; -}; - -VaryingsNeighbor VertNeighbor(AttributesDefault v) -{ - VaryingsNeighbor o; - o.vertex = float4(v.vertex.xy, 0.0, 1.0); - o.texcoord = TransformTriangleVertexToUV(v.vertex.xy); - -#if UNITY_UV_STARTS_AT_TOP - o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); -#endif - - o.offset = mad(SMAA_RT_METRICS.xyxy, float4(1.0, 0.0, 0.0, 1.0), o.texcoord.xyxy); - return o; -} - -float4 FragNeighbor(VaryingsNeighbor i) : SV_Target -{ - return SMAANeighborhoodBlendingPS(i.texcoord, i.offset, _MainTex, _BlendTex); -} - -#endif diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl.meta deleted file mode 100644 index 4079eb35c..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 4484ba9c9f221894bad091ea59c4b9c0 -ShaderImporter: - externalObjects: {} - defaultTextures: [] - nonModifiableTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/TemporalAntialiasing.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/TemporalAntialiasing.shader deleted file mode 100644 index af6d477da..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/TemporalAntialiasing.shader +++ /dev/null @@ -1,165 +0,0 @@ -Shader "Hidden/PostProcessing/TemporalAntialiasing" -{ - HLSLINCLUDE - - #pragma exclude_renderers gles psp2 - #include "../StdLib.hlsl" - #include "../Colors.hlsl" - - #if UNITY_VERSION >= 201710 - #define _MainTexSampler sampler_LinearClamp - #else - #define _MainTexSampler sampler_MainTex - #endif - - TEXTURE2D_SAMPLER2D(_MainTex, _MainTexSampler); - float4 _MainTex_TexelSize; - - TEXTURE2D_SAMPLER2D(_HistoryTex, sampler_HistoryTex); - - TEXTURE2D_SAMPLER2D(_CameraDepthTexture, sampler_CameraDepthTexture); - float4 _CameraDepthTexture_TexelSize; - - TEXTURE2D_SAMPLER2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture); - - float2 _Jitter; - float4 _FinalBlendParameters; // x: static, y: dynamic, z: motion amplification - float _Sharpness; - - float2 GetClosestFragment(float2 uv) - { - const float2 k = _CameraDepthTexture_TexelSize.xy; - - const float4 neighborhood = float4( - SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, UnityStereoClamp(uv - k)), - SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, UnityStereoClamp(uv + float2(k.x, -k.y))), - SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, UnityStereoClamp(uv + float2(-k.x, k.y))), - SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, UnityStereoClamp(uv + k)) - ); - - #if defined(UNITY_REVERSED_Z) - #define COMPARE_DEPTH(a, b) step(b, a) - #else - #define COMPARE_DEPTH(a, b) step(a, b) - #endif - - float3 result = float3(0.0, 0.0, SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, uv)); - result = lerp(result, float3(-1.0, -1.0, neighborhood.x), COMPARE_DEPTH(neighborhood.x, result.z)); - result = lerp(result, float3( 1.0, -1.0, neighborhood.y), COMPARE_DEPTH(neighborhood.y, result.z)); - result = lerp(result, float3(-1.0, 1.0, neighborhood.z), COMPARE_DEPTH(neighborhood.z, result.z)); - result = lerp(result, float3( 1.0, 1.0, neighborhood.w), COMPARE_DEPTH(neighborhood.w, result.z)); - - return (uv + result.xy * k); - } - - float4 ClipToAABB(float4 color, float3 minimum, float3 maximum) - { - // Note: only clips towards aabb center (but fast!) - float3 center = 0.5 * (maximum + minimum); - float3 extents = 0.5 * (maximum - minimum); - - // This is actually `distance`, however the keyword is reserved - float3 offset = color.rgb - center; - - float3 ts = abs(extents / (offset + 0.0001)); - float t = saturate(Min3(ts.x, ts.y, ts.z)); - color.rgb = center + offset * t; - return color; - } - - struct OutputSolver - { - float4 destination : SV_Target0; - float4 history : SV_Target1; - }; - - OutputSolver Solve(float2 motion, float2 texcoord) - { - const float2 k = _MainTex_TexelSize.xy; - float2 uv = UnityStereoClamp(texcoord - _Jitter); - - float4 color = SAMPLE_TEXTURE2D(_MainTex, _MainTexSampler, uv); - - float4 topLeft = SAMPLE_TEXTURE2D(_MainTex, _MainTexSampler, UnityStereoClamp(uv - k * 0.5)); - float4 bottomRight = SAMPLE_TEXTURE2D(_MainTex, _MainTexSampler, UnityStereoClamp(uv + k * 0.5)); - - float4 corners = 4.0 * (topLeft + bottomRight) - 2.0 * color; - - // Sharpen output - color += (color - (corners * 0.166667)) * 2.718282 * _Sharpness; - color = clamp(color, 0.0, HALF_MAX_MINUS1); - - // Tonemap color and history samples - float4 average = (corners + color) * 0.142857; - - float4 history = SAMPLE_TEXTURE2D(_HistoryTex, sampler_HistoryTex, UnityStereoClamp(texcoord - motion)); - - float motionLength = length(motion); - float2 luma = float2(Luminance(average), Luminance(color)); - //float nudge = 4.0 * abs(luma.x - luma.y); - float nudge = lerp(4.0, 0.25, saturate(motionLength * 100.0)) * abs(luma.x - luma.y); - - float4 minimum = min(bottomRight, topLeft) - nudge; - float4 maximum = max(topLeft, bottomRight) + nudge; - - // Clip history samples - history = ClipToAABB(history, minimum.xyz, maximum.xyz); - - // Blend method - float weight = clamp( - lerp(_FinalBlendParameters.x, _FinalBlendParameters.y, motionLength * _FinalBlendParameters.z), - _FinalBlendParameters.y, _FinalBlendParameters.x - ); - - color = lerp(color, history, weight); - color = clamp(color, 0.0, HALF_MAX_MINUS1); - - OutputSolver output; - output.destination = color; - output.history = color; - return output; - } - - OutputSolver FragSolverDilate(VaryingsDefault i) - { - float2 closest = GetClosestFragment(i.texcoordStereo); - float2 motion = SAMPLE_TEXTURE2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture, closest).xy; - return Solve(motion, i.texcoordStereo); - } - - OutputSolver FragSolverNoDilate(VaryingsDefault i) - { - // Don't dilate in ortho ! - float2 motion = SAMPLE_TEXTURE2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture, i.texcoordStereo).xy; - return Solve(motion, i.texcoordStereo); - } - - ENDHLSL - - SubShader - { - Cull Off ZWrite Off ZTest Always - - // 0: Perspective - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragSolverDilate - - ENDHLSL - } - - // 1: Ortho - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragSolverNoDilate - - ENDHLSL - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/TemporalAntialiasing.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/TemporalAntialiasing.shader.meta deleted file mode 100644 index 3702fbe87..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/TemporalAntialiasing.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 51bcf79c50dc92e47ba87821b61100c3 -timeCreated: 1490261802 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Texture2DLerp.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Texture2DLerp.shader deleted file mode 100644 index 52a150055..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Texture2DLerp.shader +++ /dev/null @@ -1,50 +0,0 @@ -Shader "Hidden/PostProcessing/Texture2DLerp" -{ - HLSLINCLUDE - - #include "../StdLib.hlsl" - - TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); // From - TEXTURE2D_SAMPLER2D(_To, sampler_To); - float _Interp; - float4 _TargetColor; - - float4 Frag(VaryingsDefault i) : SV_Target - { - float4 from = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); - float4 to = SAMPLE_TEXTURE2D(_To, sampler_To, i.texcoord); - return lerp(from, to, _Interp); - } - - float4 FragColor(VaryingsDefault i) : SV_Target - { - float4 from = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); - float4 to = _TargetColor; - return lerp(from, to, _Interp); - } - ENDHLSL - - SubShader - { - Cull Off ZWrite Off ZTest Always - - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment Frag - - ENDHLSL - } - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragColor - - ENDHLSL - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Texture2DLerp.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Texture2DLerp.shader.meta deleted file mode 100644 index 531685265..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Texture2DLerp.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 34a819c9e33402547a81619693adc8d5 -timeCreated: 1493129446 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Texture3DLerp.compute b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Texture3DLerp.compute deleted file mode 100644 index 7ecf39db4..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Texture3DLerp.compute +++ /dev/null @@ -1,50 +0,0 @@ -#pragma warning(disable : 3568) -#pragma exclude_renderers gles gles3 d3d11_9x - -#include "../StdLib.hlsl" - -#pragma kernel KTexture3DLerp -#pragma kernel KTexture3DLerpToColor - -RWTexture3D _Output; - -CBUFFER_START(Params) - float4 _DimensionsAndLerp; // xyz: surface dimensions, w: lerp factor - float4 _TargetColor; // Color to lerp into -CBUFFER_END - -Texture3D _From; -Texture3D _To; - -#define GROUP_SIZE 4 - -#ifdef DISABLE_COMPUTE_SHADERS - -TRIVIAL_COMPUTE_KERNEL(KTexture3DLerp) -TRIVIAL_COMPUTE_KERNEL(KTexture3DLerpToColor) - -#else - -[numthreads(GROUP_SIZE, GROUP_SIZE, GROUP_SIZE)] -void KTexture3DLerp(uint3 id : SV_DispatchThreadID) -{ - if(all(float3(id) < _DimensionsAndLerp.xyz)) - { - float4 from = _From[id]; - float4 to = _To[id]; - _Output[id] = lerp(from, to, _DimensionsAndLerp.wwww); - } -} - -[numthreads(GROUP_SIZE, GROUP_SIZE, GROUP_SIZE)] -void KTexture3DLerpToColor(uint3 id : SV_DispatchThreadID) -{ - if(all(float3(id) < _DimensionsAndLerp.xyz)) - { - float4 from = _From[id]; - float4 to = _TargetColor; - _Output[id] = lerp(from, to, _DimensionsAndLerp.wwww); - } -} - -#endif // DISABLE_COMPUTE_SHADERS diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Texture3DLerp.compute.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Texture3DLerp.compute.meta deleted file mode 100644 index 5cfc24e09..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Texture3DLerp.compute.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 31e9175024adfd44aba2530ff9b77494 -timeCreated: 1496933873 -licenseType: Pro -ComputeShaderImporter: - currentAPIMask: 4 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Uber.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Uber.shader deleted file mode 100644 index 9c08853bb..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Uber.shader +++ /dev/null @@ -1,315 +0,0 @@ -Shader "Hidden/PostProcessing/Uber" -{ - HLSLINCLUDE - - #pragma target 3.0 - - #pragma multi_compile __ DISTORT - #pragma multi_compile __ CHROMATIC_ABERRATION CHROMATIC_ABERRATION_LOW - #pragma multi_compile __ BLOOM BLOOM_LOW - #pragma multi_compile __ VIGNETTE - #pragma multi_compile __ GRAIN - #pragma multi_compile __ FINALPASS - // the following keywords are handled in API specific SubShaders below - // #pragma multi_compile __ COLOR_GRADING_LDR_2D COLOR_GRADING_HDR_2D COLOR_GRADING_HDR_3D - // #pragma multi_compile __ STEREO_INSTANCING_ENABLED STEREO_DOUBLEWIDE_TARGET - - #pragma vertex VertUVTransform - #pragma fragment FragUber - - #include "../StdLib.hlsl" - #include "../Colors.hlsl" - #include "../Sampling.hlsl" - #include "Distortion.hlsl" - #include "Dithering.hlsl" - - #define MAX_CHROMATIC_SAMPLES 16 - - TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); - float4 _MainTex_TexelSize; - - // Auto exposure / eye adaptation - TEXTURE2D_SAMPLER2D(_AutoExposureTex, sampler_AutoExposureTex); - - // Bloom - TEXTURE2D_SAMPLER2D(_BloomTex, sampler_BloomTex); - TEXTURE2D_SAMPLER2D(_Bloom_DirtTex, sampler_Bloom_DirtTex); - float4 _BloomTex_TexelSize; - float4 _Bloom_DirtTileOffset; // xy: tiling, zw: offset - half3 _Bloom_Settings; // x: sampleScale, y: intensity, z: dirt intensity - half3 _Bloom_Color; - - // Chromatic aberration - TEXTURE2D_SAMPLER2D(_ChromaticAberration_SpectralLut, sampler_ChromaticAberration_SpectralLut); - half _ChromaticAberration_Amount; - - // Color grading - #if COLOR_GRADING_HDR_3D - - TEXTURE3D_SAMPLER3D(_Lut3D, sampler_Lut3D); - float2 _Lut3D_Params; - - #else - - TEXTURE2D_SAMPLER2D(_Lut2D, sampler_Lut2D); - float3 _Lut2D_Params; - - #endif - - half _PostExposure; // EV (exp2) - - // Vignette - half3 _Vignette_Color; - half2 _Vignette_Center; // UV space - half4 _Vignette_Settings; // x: intensity, y: smoothness, z: roundness, w: rounded - half _Vignette_Opacity; - half _Vignette_Mode; // <0.5: procedural, >=0.5: masked - TEXTURE2D_SAMPLER2D(_Vignette_Mask, sampler_Vignette_Mask); - - // Grain - TEXTURE2D_SAMPLER2D(_GrainTex, sampler_GrainTex); - half2 _Grain_Params1; // x: lum_contrib, y: intensity - float4 _Grain_Params2; // x: xscale, h: yscale, z: xoffset, w: yoffset - - // Misc - half _LumaInAlpha; - - half4 FragUber(VaryingsDefault i) : SV_Target - { - float2 uv = i.texcoord; - - //>>> Automatically skipped by the shader optimizer when not used - float2 uvDistorted = Distort(i.texcoord); - float2 uvStereoDistorted = Distort(i.texcoordStereo); - //<<< - - half autoExposure = SAMPLE_TEXTURE2D(_AutoExposureTex, sampler_AutoExposureTex, uv).r; - half4 color = (0.0).xxxx; - - // Inspired by the method described in "Rendering Inside" [Playdead 2016] - // https://twitter.com/pixelmager/status/717019757766123520 - #if CHROMATIC_ABERRATION - { - float2 coords = 2.0 * uv - 1.0; - float2 end = uv - coords * dot(coords, coords) * _ChromaticAberration_Amount; - - float2 diff = end - uv; - int samples = clamp(int(length(_MainTex_TexelSize.zw * diff / 2.0)), 3, MAX_CHROMATIC_SAMPLES); - float2 delta = diff / samples; - float2 pos = uv; - half4 sum = (0.0).xxxx, filterSum = (0.0).xxxx; - - for (int i = 0; i < samples; i++) - { - half t = (i + 0.5) / samples; - half4 s = SAMPLE_TEXTURE2D_LOD(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(Distort(pos)), 0); - half4 filter = half4(SAMPLE_TEXTURE2D_LOD(_ChromaticAberration_SpectralLut, sampler_ChromaticAberration_SpectralLut, float2(t, 0.0), 0).rgb, 1.0); - - sum += s * filter; - filterSum += filter; - pos += delta; - } - - color = sum / filterSum; - } - #elif CHROMATIC_ABERRATION_LOW - { - float2 coords = 2.0 * uv - 1.0; - float2 end = uv - coords * dot(coords, coords) * _ChromaticAberration_Amount; - float2 delta = (end - uv) / 3; - - half4 filterA = half4(SAMPLE_TEXTURE2D_LOD(_ChromaticAberration_SpectralLut, sampler_ChromaticAberration_SpectralLut, float2(0.5 / 3, 0.0), 0).rgb, 1.0); - half4 filterB = half4(SAMPLE_TEXTURE2D_LOD(_ChromaticAberration_SpectralLut, sampler_ChromaticAberration_SpectralLut, float2(1.5 / 3, 0.0), 0).rgb, 1.0); - half4 filterC = half4(SAMPLE_TEXTURE2D_LOD(_ChromaticAberration_SpectralLut, sampler_ChromaticAberration_SpectralLut, float2(2.5 / 3, 0.0), 0).rgb, 1.0); - - half4 texelA = SAMPLE_TEXTURE2D_LOD(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(Distort(uv)), 0); - half4 texelB = SAMPLE_TEXTURE2D_LOD(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(Distort(delta + uv)), 0); - half4 texelC = SAMPLE_TEXTURE2D_LOD(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(Distort(delta * 2.0 + uv)), 0); - - half4 sum = texelA * filterA + texelB * filterB + texelC * filterC; - half4 filterSum = filterA + filterB + filterC; - color = sum / filterSum; - } - #else - { - color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uvStereoDistorted); - } - #endif - - // Gamma space... Gah. - #if UNITY_COLORSPACE_GAMMA - { - color = SRGBToLinear(color); - } - #endif - - color.rgb *= autoExposure; - - #if BLOOM || BLOOM_LOW - { - #if BLOOM - half4 bloom = UpsampleTent(TEXTURE2D_PARAM(_BloomTex, sampler_BloomTex), uvDistorted, _BloomTex_TexelSize.xy, _Bloom_Settings.x); - #else - half4 bloom = UpsampleBox(TEXTURE2D_PARAM(_BloomTex, sampler_BloomTex), uvDistorted, _BloomTex_TexelSize.xy, _Bloom_Settings.x); - #endif - - // UVs should be Distort(uv * _Bloom_DirtTileOffset.xy + _Bloom_DirtTileOffset.zw) - // but considering we use a cover-style scale on the dirt texture the difference - // isn't massive so we chose to save a few ALUs here instead in case lens distortion - // is active - half4 dirt = half4(SAMPLE_TEXTURE2D(_Bloom_DirtTex, sampler_Bloom_DirtTex, uvDistorted * _Bloom_DirtTileOffset.xy + _Bloom_DirtTileOffset.zw).rgb, 0.0); - - // Additive bloom (artist friendly) - bloom *= _Bloom_Settings.y; - dirt *= _Bloom_Settings.z; - color += bloom * half4(_Bloom_Color, 1.0); - color += dirt * bloom; - } - #endif - - #if VIGNETTE - { - UNITY_BRANCH - if (_Vignette_Mode < 0.5) - { - half2 d = abs(uvDistorted - _Vignette_Center) * _Vignette_Settings.x; - d.x *= lerp(1.0, _ScreenParams.x / _ScreenParams.y, _Vignette_Settings.w); - d = pow(saturate(d), _Vignette_Settings.z); // Roundness - half vfactor = pow(saturate(1.0 - dot(d, d)), _Vignette_Settings.y); - color.rgb *= lerp(_Vignette_Color, (1.0).xxx, vfactor); - color.a = lerp(1.0, color.a, vfactor); - } - else - { - half vfactor = SAMPLE_TEXTURE2D(_Vignette_Mask, sampler_Vignette_Mask, uvDistorted).a; - - #if !UNITY_COLORSPACE_GAMMA - { - vfactor = SRGBToLinear(vfactor); - } - #endif - - half3 new_color = color.rgb * lerp(_Vignette_Color, (1.0).xxx, vfactor); - color.rgb = lerp(color.rgb, new_color, _Vignette_Opacity); - color.a = lerp(1.0, color.a, vfactor); - } - } - #endif - - #if GRAIN - { - half3 grain = SAMPLE_TEXTURE2D(_GrainTex, sampler_GrainTex, i.texcoordStereo * _Grain_Params2.xy + _Grain_Params2.zw).rgb; - - // Noisiness response curve based on scene luminance - float lum = 1.0 - sqrt(Luminance(saturate(color))); - lum = lerp(1.0, lum, _Grain_Params1.x); - - color.rgb += color.rgb * grain * _Grain_Params1.y * lum; - } - #endif - - #if COLOR_GRADING_HDR_3D - { - color *= _PostExposure; - float3 colorLutSpace = saturate(LUT_SPACE_ENCODE(color.rgb)); - color.rgb = ApplyLut3D(TEXTURE3D_PARAM(_Lut3D, sampler_Lut3D), colorLutSpace, _Lut3D_Params); - } - #elif COLOR_GRADING_HDR_2D - { - color *= _PostExposure; - float3 colorLutSpace = saturate(LUT_SPACE_ENCODE(color.rgb)); - color.rgb = ApplyLut2D(TEXTURE2D_PARAM(_Lut2D, sampler_Lut2D), colorLutSpace, _Lut2D_Params); - } - #elif COLOR_GRADING_LDR_2D - { - color = saturate(color); - - // LDR Lut lookup needs to be in sRGB - for HDR stick to linear - color.rgb = LinearToSRGB(color.rgb); - color.rgb = ApplyLut2D(TEXTURE2D_PARAM(_Lut2D, sampler_Lut2D), color.rgb, _Lut2D_Params); - color.rgb = SRGBToLinear(color.rgb); - } - #endif - - half4 output = color; - - #if FINALPASS - { - #if UNITY_COLORSPACE_GAMMA - { - output = LinearToSRGB(output); - } - #endif - - output.rgb = Dither(output.rgb, i.texcoord); - } - #else - { - UNITY_BRANCH - if (_LumaInAlpha > 0.5) - { - // Put saturated luma in alpha for FXAA - higher quality than "green as luma" and - // necessary as RGB values will potentially still be HDR for the FXAA pass - half luma = Luminance(saturate(output)); - output.a = luma; - } - - #if UNITY_COLORSPACE_GAMMA - { - output = LinearToSRGB(output); - } - #endif - } - #endif - - // Output RGB is still HDR at that point (unless range was crunched by a tonemapper) - return output; - } - - ENDHLSL - - SubShader - { - Cull Off ZWrite Off ZTest Always - - Pass - { - HLSLPROGRAM - #pragma exclude_renderers gles vulkan switch - - #pragma multi_compile __ COLOR_GRADING_LDR_2D COLOR_GRADING_HDR_2D COLOR_GRADING_HDR_3D - #pragma multi_compile __ STEREO_INSTANCING_ENABLED STEREO_DOUBLEWIDE_TARGET - ENDHLSL - } - } - - SubShader - { - Cull Off ZWrite Off ZTest Always - - Pass - { - HLSLPROGRAM - #pragma only_renderers vulkan switch - - #pragma multi_compile __ COLOR_GRADING_LDR_2D COLOR_GRADING_HDR_2D COLOR_GRADING_HDR_3D - #pragma multi_compile __ STEREO_DOUBLEWIDE_TARGET // disabled for Vulkan because of shader compiler issues in older Unity versions: STEREO_INSTANCING_ENABLED - ENDHLSL - } - } - - SubShader - { - Cull Off ZWrite Off ZTest Always - - Pass - { - HLSLPROGRAM - #pragma only_renderers gles - - #pragma multi_compile __ COLOR_GRADING_LDR_2D COLOR_GRADING_HDR_2D // not supported by OpenGL ES 2.0: COLOR_GRADING_HDR_3D - #pragma multi_compile __ STEREO_DOUBLEWIDE_TARGET // not supported by OpenGL ES 2.0: STEREO_INSTANCING_ENABLED - ENDHLSL - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Uber.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Uber.shader.meta deleted file mode 100644 index 9cc4b695f..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Builtins/Uber.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 382151503e2a43a4ebb7366d1632731d -timeCreated: 1488883455 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Colors.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Colors.hlsl deleted file mode 100644 index 5a25c3049..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Colors.hlsl +++ /dev/null @@ -1,650 +0,0 @@ -#ifndef UNITY_POSTFX_COLOR -#define UNITY_POSTFX_COLOR - -#include "StdLib.hlsl" -#include "ACES.hlsl" - -#define LUT_SPACE_ENCODE(x) LinearToLogC(x) -#define LUT_SPACE_DECODE(x) LogCToLinear(x) - -#ifndef USE_PRECISE_LOGC - // Set to 1 to use more precise but more expensive log/linear conversions. I haven't found a proper - // use case for the high precision version yet so I'm leaving this to 0. - #define USE_PRECISE_LOGC 0 -#endif - -#ifndef TONEMAPPING_USE_FULL_ACES - // Set to 1 to use the full reference ACES tonemapper. This should only be used for research - // purposes as it's quite heavy and generally overkill. - #define TONEMAPPING_USE_FULL_ACES 0 -#endif - -#ifndef DEFAULT_MAX_PQ - // PQ ST.2048 max value - // 1.0 = 100nits, 100.0 = 10knits - #define DEFAULT_MAX_PQ 100.0 -#endif - -#ifndef USE_VERY_FAST_SRGB - #if defined(SHADER_API_MOBILE) - #define USE_VERY_FAST_SRGB 1 - #else - #define USE_VERY_FAST_SRGB 0 - #endif -#endif - -#ifndef USE_FAST_SRGB - #if defined(SHADER_API_CONSOLE) - #define USE_FAST_SRGB 1 - #else - #define USE_FAST_SRGB 0 - #endif -#endif - -// -// Alexa LogC converters (El 1000) -// See http://www.vocas.nl/webfm_send/964 -// Max range is ~58.85666 -// -struct ParamsLogC -{ - float cut; - float a, b, c, d, e, f; -}; - -static const ParamsLogC LogC = -{ - 0.011361, // cut - 5.555556, // a - 0.047996, // b - 0.244161, // c - 0.386036, // d - 5.301883, // e - 0.092819 // f -}; - -float LinearToLogC_Precise(half x) -{ - float o; - if (x > LogC.cut) - o = LogC.c * log10(LogC.a * x + LogC.b) + LogC.d; - else - o = LogC.e * x + LogC.f; - return o; -} - -float3 LinearToLogC(float3 x) -{ -#if USE_PRECISE_LOGC - return float3( - LinearToLogC_Precise(x.x), - LinearToLogC_Precise(x.y), - LinearToLogC_Precise(x.z) - ); -#else - return LogC.c * log10(LogC.a * x + LogC.b) + LogC.d; -#endif -} - -float LogCToLinear_Precise(float x) -{ - float o; - if (x > LogC.e * LogC.cut + LogC.f) - o = (pow(10.0, (x - LogC.d) / LogC.c) - LogC.b) / LogC.a; - else - o = (x - LogC.f) / LogC.e; - return o; -} - -float3 LogCToLinear(float3 x) -{ -#if USE_PRECISE_LOGC - return float3( - LogCToLinear_Precise(x.x), - LogCToLinear_Precise(x.y), - LogCToLinear_Precise(x.z) - ); -#else - return (pow(10.0, (x - LogC.d) / LogC.c) - LogC.b) / LogC.a; -#endif -} - -// -// SMPTE ST.2084 (PQ) transfer functions -// Used for HDR Lut storage, max range depends on the maxPQValue parameter -// -struct ParamsPQ -{ - float N, M; - float C1, C2, C3; -}; - -static const ParamsPQ PQ = -{ - 2610.0 / 4096.0 / 4.0, // N - 2523.0 / 4096.0 * 128.0, // M - 3424.0 / 4096.0, // C1 - 2413.0 / 4096.0 * 32.0, // C2 - 2392.0 / 4096.0 * 32.0, // C3 -}; - -float3 LinearToPQ(float3 x, float maxPQValue) -{ - x = PositivePow(x / maxPQValue, PQ.N); - float3 nd = (PQ.C1 + PQ.C2 * x) / (1.0 + PQ.C3 * x); - return PositivePow(nd, PQ.M); -} - -float3 LinearToPQ(float3 x) -{ - return LinearToPQ(x, DEFAULT_MAX_PQ); -} - -float3 PQToLinear(float3 x, float maxPQValue) -{ - x = PositivePow(x, rcp(PQ.M)); - float3 nd = max(x - PQ.C1, 0.0) / (PQ.C2 - (PQ.C3 * x)); - return PositivePow(nd, rcp(PQ.N)) * maxPQValue; -} - -float3 PQToLinear(float3 x) -{ - return PQToLinear(x, DEFAULT_MAX_PQ); -} - -// -// sRGB transfer functions -// Fast path ref: http://chilliant.blogspot.com.au/2012/08/srgb-approximations-for-hlsl.html?m=1 -// -half SRGBToLinear(half c) -{ -#if USE_VERY_FAST_SRGB - return c * c; -#elif USE_FAST_SRGB - return c * (c * (c * 0.305306011 + 0.682171111) + 0.012522878); -#else - half linearRGBLo = c / 12.92; - half linearRGBHi = PositivePow((c + 0.055) / 1.055, 2.4); - half linearRGB = (c <= 0.04045) ? linearRGBLo : linearRGBHi; - return linearRGB; -#endif -} - -half3 SRGBToLinear(half3 c) -{ -#if USE_VERY_FAST_SRGB - return c * c; -#elif USE_FAST_SRGB - return c * (c * (c * 0.305306011 + 0.682171111) + 0.012522878); -#else - half3 linearRGBLo = c / 12.92; - half3 linearRGBHi = PositivePow((c + 0.055) / 1.055, half3(2.4, 2.4, 2.4)); - half3 linearRGB = (c <= 0.04045) ? linearRGBLo : linearRGBHi; - return linearRGB; -#endif -} - -half4 SRGBToLinear(half4 c) -{ - return half4(SRGBToLinear(c.rgb), c.a); -} - -half LinearToSRGB(half c) -{ -#if USE_VERY_FAST_SRGB - return sqrt(c); -#elif USE_FAST_SRGB - return max(1.055 * PositivePow(c, 0.416666667) - 0.055, 0.0); -#else - half sRGBLo = c * 12.92; - half sRGBHi = (PositivePow(c, 1.0 / 2.4) * 1.055) - 0.055; - half sRGB = (c <= 0.0031308) ? sRGBLo : sRGBHi; - return sRGB; -#endif -} - -half3 LinearToSRGB(half3 c) -{ -#if USE_VERY_FAST_SRGB - return sqrt(c); -#elif USE_FAST_SRGB - return max(1.055 * PositivePow(c, 0.416666667) - 0.055, 0.0); -#else - half3 sRGBLo = c * 12.92; - half3 sRGBHi = (PositivePow(c, half3(1.0 / 2.4, 1.0 / 2.4, 1.0 / 2.4)) * 1.055) - 0.055; - half3 sRGB = (c <= 0.0031308) ? sRGBLo : sRGBHi; - return sRGB; -#endif -} - -half4 LinearToSRGB(half4 c) -{ - return half4(LinearToSRGB(c.rgb), c.a); -} - -// -// Convert rgb to luminance with rgb in linear space with sRGB primaries and D65 white point -// -half Luminance(half3 linearRgb) -{ - return dot(linearRgb, float3(0.2126729, 0.7151522, 0.0721750)); -} - -half Luminance(half4 linearRgba) -{ - return Luminance(linearRgba.rgb); -} - -// -// Quadratic color thresholding -// curve = (threshold - knee, knee * 2, 0.25 / knee) -// -half4 QuadraticThreshold(half4 color, half threshold, half3 curve) -{ - // Pixel brightness - half br = Max3(color.r, color.g, color.b); - - // Under-threshold part: quadratic curve - half rq = clamp(br - curve.x, 0.0, curve.y); - rq = curve.z * rq * rq; - - // Combine and apply the brightness response curve. - color *= max(rq, br - threshold) / max(br, EPSILON); - - return color; -} - -// -// Fast reversible tonemapper -// http://gpuopen.com/optimized-reversible-tonemapper-for-resolve/ -// -float3 FastTonemap(float3 c) -{ - return c * rcp(Max3(c.r, c.g, c.b) + 1.0); -} - -float4 FastTonemap(float4 c) -{ - return float4(FastTonemap(c.rgb), c.a); -} - -float3 FastTonemap(float3 c, float w) -{ - return c * (w * rcp(Max3(c.r, c.g, c.b) + 1.0)); -} - -float4 FastTonemap(float4 c, float w) -{ - return float4(FastTonemap(c.rgb, w), c.a); -} - -float3 FastTonemapInvert(float3 c) -{ - return c * rcp(1.0 - Max3(c.r, c.g, c.b)); -} - -float4 FastTonemapInvert(float4 c) -{ - return float4(FastTonemapInvert(c.rgb), c.a); -} - -// -// Neutral tonemapping (Hable/Hejl/Frostbite) -// Input is linear RGB -// -float3 NeutralCurve(float3 x, float a, float b, float c, float d, float e, float f) -{ - return ((x * (a * x + c * b) + d * e) / (x * (a * x + b) + d * f)) - e / f; -} - -float3 NeutralTonemap(float3 x) -{ - // Tonemap - float a = 0.2; - float b = 0.29; - float c = 0.24; - float d = 0.272; - float e = 0.02; - float f = 0.3; - float whiteLevel = 5.3; - float whiteClip = 1.0; - - float3 whiteScale = (1.0).xxx / NeutralCurve(whiteLevel, a, b, c, d, e, f); - x = NeutralCurve(x * whiteScale, a, b, c, d, e, f); - x *= whiteScale; - - // Post-curve white point adjustment - x /= whiteClip.xxx; - - return x; -} - -// -// Raw, unoptimized version of John Hable's artist-friendly tone curve -// Input is linear RGB -// -float EvalCustomSegment(float x, float4 segmentA, float2 segmentB) -{ - const float kOffsetX = segmentA.x; - const float kOffsetY = segmentA.y; - const float kScaleX = segmentA.z; - const float kScaleY = segmentA.w; - const float kLnA = segmentB.x; - const float kB = segmentB.y; - - float x0 = (x - kOffsetX) * kScaleX; - float y0 = (x0 > 0.0) ? exp(kLnA + kB * log(x0)) : 0.0; - return y0 * kScaleY + kOffsetY; -} - -float EvalCustomCurve(float x, float3 curve, float4 toeSegmentA, float2 toeSegmentB, float4 midSegmentA, float2 midSegmentB, float4 shoSegmentA, float2 shoSegmentB) -{ - float4 segmentA; - float2 segmentB; - - if (x < curve.y) - { - segmentA = toeSegmentA; - segmentB = toeSegmentB; - } - else if (x < curve.z) - { - segmentA = midSegmentA; - segmentB = midSegmentB; - } - else - { - segmentA = shoSegmentA; - segmentB = shoSegmentB; - } - - return EvalCustomSegment(x, segmentA, segmentB); -} - -// curve: x: inverseWhitePoint, y: x0, z: x1 -float3 CustomTonemap(float3 x, float3 curve, float4 toeSegmentA, float2 toeSegmentB, float4 midSegmentA, float2 midSegmentB, float4 shoSegmentA, float2 shoSegmentB) -{ - float3 normX = x * curve.x; - float3 ret; - ret.x = EvalCustomCurve(normX.x, curve, toeSegmentA, toeSegmentB, midSegmentA, midSegmentB, shoSegmentA, shoSegmentB); - ret.y = EvalCustomCurve(normX.y, curve, toeSegmentA, toeSegmentB, midSegmentA, midSegmentB, shoSegmentA, shoSegmentB); - ret.z = EvalCustomCurve(normX.z, curve, toeSegmentA, toeSegmentB, midSegmentA, midSegmentB, shoSegmentA, shoSegmentB); - return ret; -} - -// -// Filmic tonemapping (ACES fitting, unless TONEMAPPING_USE_FULL_ACES is set to 1) -// Input is ACES2065-1 (AP0 w/ linear encoding) -// -float3 AcesTonemap(float3 aces) -{ -#if TONEMAPPING_USE_FULL_ACES - - float3 oces = RRT(aces); - float3 odt = ODT_RGBmonitor_100nits_dim(oces); - return odt; - -#else - - // --- Glow module --- // - float saturation = rgb_2_saturation(aces); - float ycIn = rgb_2_yc(aces); - float s = sigmoid_shaper((saturation - 0.4) / 0.2); - float addedGlow = 1.0 + glow_fwd(ycIn, RRT_GLOW_GAIN * s, RRT_GLOW_MID); - aces *= addedGlow; - - // --- Red modifier --- // - float hue = rgb_2_hue(aces); - float centeredHue = center_hue(hue, RRT_RED_HUE); - float hueWeight; - { - //hueWeight = cubic_basis_shaper(centeredHue, RRT_RED_WIDTH); - hueWeight = smoothstep(0.0, 1.0, 1.0 - abs(2.0 * centeredHue / RRT_RED_WIDTH)); - hueWeight *= hueWeight; - } - - aces.r += hueWeight * saturation * (RRT_RED_PIVOT - aces.r) * (1.0 - RRT_RED_SCALE); - - // --- ACES to RGB rendering space --- // - float3 acescg = max(0.0, ACES_to_ACEScg(aces)); - - // --- Global desaturation --- // - //acescg = mul(RRT_SAT_MAT, acescg); - acescg = lerp(dot(acescg, AP1_RGB2Y).xxx, acescg, RRT_SAT_FACTOR.xxx); - - // Luminance fitting of *RRT.a1.0.3 + ODT.Academy.RGBmonitor_100nits_dim.a1.0.3*. - // https://github.com/colour-science/colour-unity/blob/master/Assets/Colour/Notebooks/CIECAM02_Unity.ipynb - // RMSE: 0.0012846272106 - const float a = 278.5085; - const float b = 10.7772; - const float c = 293.6045; - const float d = 88.7122; - const float e = 80.6889; - float3 x = acescg; - float3 rgbPost = (x * (a * x + b)) / (x * (c * x + d) + e); - - // Scale luminance to linear code value - // float3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); - - // Apply gamma adjustment to compensate for dim surround - float3 linearCV = darkSurround_to_dimSurround(rgbPost); - - // Apply desaturation to compensate for luminance difference - //linearCV = mul(ODT_SAT_MAT, color); - linearCV = lerp(dot(linearCV, AP1_RGB2Y).xxx, linearCV, ODT_SAT_FACTOR.xxx); - - // Convert to display primary encoding - // Rendering space RGB to XYZ - float3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); - - // Apply CAT from ACES white point to assumed observer adapted white point - XYZ = mul(D60_2_D65_CAT, XYZ); - - // CIE XYZ to display primaries - linearCV = mul(XYZ_2_REC709_MAT, XYZ); - - return linearCV; - -#endif -} - -// -// 3D LUT grading -// scaleOffset = (1 / lut_size, lut_size - 1) -// -half3 ApplyLut3D(TEXTURE3D_ARGS(tex, samplerTex), float3 uvw, float2 scaleOffset) -{ - uvw.xyz = uvw.xyz * scaleOffset.yyy * scaleOffset.xxx + scaleOffset.xxx * 0.5; - return SAMPLE_TEXTURE3D(tex, samplerTex, uvw).rgb; -} - -// -// 2D LUT grading -// scaleOffset = (1 / lut_width, 1 / lut_height, lut_height - 1) -// -half3 ApplyLut2D(TEXTURE2D_ARGS(tex, samplerTex), float3 uvw, float3 scaleOffset) -{ - // Strip format where `height = sqrt(width)` - uvw.z *= scaleOffset.z; - float shift = floor(uvw.z); - uvw.xy = uvw.xy * scaleOffset.z * scaleOffset.xy + scaleOffset.xy * 0.5; - uvw.x += shift * scaleOffset.y; - uvw.xyz = lerp( - SAMPLE_TEXTURE2D(tex, samplerTex, uvw.xy).rgb, - SAMPLE_TEXTURE2D(tex, samplerTex, uvw.xy + float2(scaleOffset.y, 0.0)).rgb, - uvw.z - shift - ); - return uvw; -} - -// -// Returns the default value for a given position on a 2D strip-format color lookup table -// params = (lut_height, 0.5 / lut_width, 0.5 / lut_height, lut_height / lut_height - 1) -// -float3 GetLutStripValue(float2 uv, float4 params) -{ - uv -= params.yz; - float3 color; - color.r = frac(uv.x * params.x); - color.b = uv.x - color.r / params.x; - color.g = uv.y; - return color * params.w; -} - -// -// White balance -// Recommended workspace: ACEScg (linear) -// -static const float3x3 LIN_2_LMS_MAT = { - 3.90405e-1, 5.49941e-1, 8.92632e-3, - 7.08416e-2, 9.63172e-1, 1.35775e-3, - 2.31082e-2, 1.28021e-1, 9.36245e-1 -}; - -static const float3x3 LMS_2_LIN_MAT = { - 2.85847e+0, -1.62879e+0, -2.48910e-2, - -2.10182e-1, 1.15820e+0, 3.24281e-4, - -4.18120e-2, -1.18169e-1, 1.06867e+0 -}; - -float3 WhiteBalance(float3 c, float3 balance) -{ - float3 lms = mul(LIN_2_LMS_MAT, c); - lms *= balance; - return mul(LMS_2_LIN_MAT, lms); -} - -// -// RGB / Full-range YCbCr conversions (ITU-R BT.601) -// -float3 RgbToYCbCr(float3 c) -{ - float Y = 0.299 * c.r + 0.587 * c.g + 0.114 * c.b; - float Cb = -0.169 * c.r - 0.331 * c.g + 0.500 * c.b; - float Cr = 0.500 * c.r - 0.419 * c.g - 0.081 * c.b; - return float3(Y, Cb, Cr); -} - -float3 YCbCrToRgb(float3 c) -{ - float R = c.x + 0.000 * c.y + 1.403 * c.z; - float G = c.x - 0.344 * c.y - 0.714 * c.z; - float B = c.x - 1.773 * c.y + 0.000 * c.z; - return float3(R, G, B); -} - -// -// Hue, Saturation, Value -// Ranges: -// Hue [0.0, 1.0] -// Sat [0.0, 1.0] -// Lum [0.0, HALF_MAX] -// -float3 RgbToHsv(float3 c) -{ - float4 K = float4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); - float4 p = lerp(float4(c.bg, K.wz), float4(c.gb, K.xy), step(c.b, c.g)); - float4 q = lerp(float4(p.xyw, c.r), float4(c.r, p.yzx), step(p.x, c.r)); - float d = q.x - min(q.w, q.y); - float e = EPSILON; - return float3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); -} - -float3 HsvToRgb(float3 c) -{ - float4 K = float4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); - float3 p = abs(frac(c.xxx + K.xyz) * 6.0 - K.www); - return c.z * lerp(K.xxx, saturate(p - K.xxx), c.y); -} - -float RotateHue(float value, float low, float hi) -{ - return (value < low) - ? value + hi - : (value > hi) - ? value - hi - : value; -} - -// -// RGB Saturation (closer to a vibrance effect than actual saturation) -// Recommended workspace: ACEScg (linear) -// Optimal range: [0.0, 2.0] -// -float3 Saturation(float3 c, float sat) -{ - float luma = Luminance(c); - return luma.xxx + sat.xxx * (c - luma.xxx); -} - -// -// Contrast (reacts better when applied in log) -// Optimal range: [0.0, 2.0] -// -float3 Contrast(float3 c, float midpoint, float contrast) -{ - return (c - midpoint) * contrast + midpoint; -} - -// -// Lift, Gamma (pre-inverted), Gain tuned for HDR use - best used with the ACES tonemapper as -// negative values will creep in the result -// Expected workspace: ACEScg (linear) -// -float3 LiftGammaGainHDR(float3 c, float3 lift, float3 invgamma, float3 gain) -{ - c = c * gain + lift; - - // ACEScg will output negative values, as clamping to 0 will lose precious information we'll - // mirror the gamma function instead - return FastSign(c) * pow(abs(c), invgamma); -} - -// -// Lift, Gamma (pre-inverted), Gain tuned for LDR use -// Input is linear RGB -// -float3 LiftGammaGainLDR(float3 c, float3 lift, float3 invgamma, float3 gain) -{ - c = saturate(PositivePow(saturate(c), invgamma)); - return gain * c + lift * (1.0 - c); -} - -// -// Remaps Y/R/G/B values -// curveTex has to be 128 pixels wide -// -float3 YrgbCurve(float3 c, TEXTURE2D_ARGS(curveTex, sampler_curveTex)) -{ - const float kHalfPixel = (1.0 / 128.0) / 2.0; - - // Y (master) - c += kHalfPixel.xxx; - float mr = SAMPLE_TEXTURE2D(curveTex, sampler_curveTex, float2(c.r, 0.75)).a; - float mg = SAMPLE_TEXTURE2D(curveTex, sampler_curveTex, float2(c.g, 0.75)).a; - float mb = SAMPLE_TEXTURE2D(curveTex, sampler_curveTex, float2(c.b, 0.75)).a; - c = saturate(float3(mr, mg, mb)); - - // RGB - c += kHalfPixel.xxx; - float r = SAMPLE_TEXTURE2D(curveTex, sampler_curveTex, float2(c.r, 0.75)).r; - float g = SAMPLE_TEXTURE2D(curveTex, sampler_curveTex, float2(c.g, 0.75)).g; - float b = SAMPLE_TEXTURE2D(curveTex, sampler_curveTex, float2(c.b, 0.75)).b; - return saturate(float3(r, g, b)); -} - -// -// Channel mixing (same as Photoshop's and DaVinci's Resolve) -// Recommended workspace: ACEScg (linear) -// Input mixers should be in range [-2.0; 2.0] -// -float3 ChannelMixer(float3 c, float3 red, float3 green, float3 blue) -{ - return float3( - dot(c, red), - dot(c, green), - dot(c, blue) - ); -} - -#endif // UNITY_POSTFX_COLOR diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Colors.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Colors.hlsl.meta deleted file mode 100644 index ee0264bd5..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Colors.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 7fa986a4042ff154093d3772d2dc4fc9 -timeCreated: 1493025378 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug.meta deleted file mode 100644 index bb3c6598d..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 418668fbeb6130848b1bffc8d5645b45 -folderAsset: yes -timeCreated: 1496329323 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Histogram.compute b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Histogram.compute deleted file mode 100644 index cc3cba9b5..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Histogram.compute +++ /dev/null @@ -1,75 +0,0 @@ -#pragma warning(disable : 3568) -#pragma exclude_renderers gles gles3 d3d11_9x - -#define HISTOGRAM_BINS 256 -#define GROUP_SIZE_X 16 -#define GROUP_SIZE_Y 16 - -#include "../StdLib.hlsl" -#include "../Colors.hlsl" - -RWStructuredBuffer _HistogramBuffer; -Texture2D _Source; - -CBUFFER_START(Params) - float4 _Params; // x: width, y: height, z: linear, w: channel -CBUFFER_END - -groupshared uint gs_histogram[HISTOGRAM_BINS]; - -#ifdef DISABLE_COMPUTE_SHADERS - -TRIVIAL_COMPUTE_KERNEL(KHistogramGather) -TRIVIAL_COMPUTE_KERNEL(KHistogramClear) - -#else - -#pragma kernel KHistogramGather -[numthreads(GROUP_SIZE_X, GROUP_SIZE_Y, 1)] -void KHistogramGather(uint2 dispatchThreadId : SV_DispatchThreadID, uint2 groupThreadId : SV_GroupThreadID) -{ - const uint localThreadId = groupThreadId.y * GROUP_SIZE_X + groupThreadId.x; - - // Clears the shared memory - if (localThreadId < HISTOGRAM_BINS) - gs_histogram[localThreadId] = 0u; - - GroupMemoryBarrierWithGroupSync(); - - // Gather local group histogram - if (dispatchThreadId.x < uint(_Params.x) && dispatchThreadId.y < uint(_Params.y)) - { - float3 color = saturate(_Source[dispatchThreadId].xyz); - - // We want a gamma-corrected histogram (like Photoshop & all) - if (_Params.z > 0) - color = LinearToSRGB(color); - - // Convert channel value to histogram bin - float channel; - uint c = uint(_Params.w); - - if (c > 2) channel = Luminance(color); - else channel = color[c]; - - uint idx = (uint)(round(channel * 255.0)); - - InterlockedAdd(gs_histogram[idx], 1u); - } - - GroupMemoryBarrierWithGroupSync(); - - // Merge everything - if (localThreadId < HISTOGRAM_BINS) - InterlockedAdd(_HistogramBuffer[localThreadId], gs_histogram[localThreadId]); -} - -#pragma kernel KHistogramClear -[numthreads(GROUP_SIZE_X, 1, 1)] -void KHistogramClear(uint dispatchThreadId : SV_DispatchThreadID) -{ - if (dispatchThreadId < HISTOGRAM_BINS) - _HistogramBuffer[dispatchThreadId] = 0u; -} - -#endif // DISABLE_COMPUTE_SHADERS diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Histogram.compute.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Histogram.compute.meta deleted file mode 100644 index df2ca20c8..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Histogram.compute.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 18183ebfeeab97749b43e38b928604a7 -timeCreated: 1499679719 -licenseType: Pro -ComputeShaderImporter: - currentAPIMask: 8196 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Histogram.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Histogram.shader deleted file mode 100644 index abdd9a052..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Histogram.shader +++ /dev/null @@ -1,97 +0,0 @@ -Shader "Hidden/PostProcessing/Debug/Histogram" -{ - HLSLINCLUDE - - #pragma exclude_renderers gles gles3 d3d11_9x - #pragma target 4.5 - #include "../StdLib.hlsl" - - #if SHADER_API_GLES3 - #define HISTOGRAM_BINS 128 - #else - #define HISTOGRAM_BINS 256 - #endif - - struct VaryingsHistogram - { - float4 vertex : SV_POSITION; - float2 texcoord : TEXCOORD0; - float maxValue : TEXCOORD1; - }; - - StructuredBuffer _HistogramBuffer; - float2 _Params; // x: width, y: height - - float FindMaxHistogramValue() - { - uint maxValue = 0u; - - UNITY_UNROLL - for (uint i = 0; i < HISTOGRAM_BINS; i++) - { - uint h = _HistogramBuffer[i]; - maxValue = max(maxValue, h); - } - - return float(maxValue); - } - - VaryingsHistogram Vert(AttributesDefault v) - { - VaryingsHistogram o; - o.vertex = float4(v.vertex.xy, 0.0, 1.0); - o.texcoord = TransformTriangleVertexToUV(v.vertex.xy); - - #if UNITY_UV_STARTS_AT_TOP - o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); - #endif - - #if SHADER_API_GLES3 // No texture loopup in VS on GLES3/Android - o.maxValue = 0; - #else - o.maxValue = _Params.y / FindMaxHistogramValue(); - #endif - - return o; - } - - float4 Frag(VaryingsHistogram i) : SV_Target - { - #if SHADER_API_GLES3 - float maxValue = _Params.y / FindMaxHistogramValue(); - #else - float maxValue = i.maxValue; - #endif - - const float kBinsMinusOne = HISTOGRAM_BINS - 1.0; - float remapI = i.texcoord.x * kBinsMinusOne; - uint index = floor(remapI); - float delta = frac(remapI); - float v1 = float(_HistogramBuffer[index]) * maxValue; - float v2 = float(_HistogramBuffer[min(index + 1, kBinsMinusOne)]) * maxValue; - float h = v1 * (1.0 - delta) + v2 * delta; - uint y = (uint)round(i.texcoord.y * _Params.y); - - float3 color = (0.0).xxx; - float fill = step(y, h); - color = lerp(color, (1.0).xxx, fill); - return float4(color, 1.0); - } - - ENDHLSL - - SubShader - { - Cull Off ZWrite Off ZTest Always - - Pass - { - HLSLPROGRAM - - #pragma vertex Vert - #pragma fragment Frag - - ENDHLSL - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Histogram.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Histogram.shader.meta deleted file mode 100644 index e09ac2b26..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Histogram.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: f7ea35cfb33fcad4ab8f2429ec103bef -timeCreated: 1499679714 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/LightMeter.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/LightMeter.shader deleted file mode 100644 index af1b22016..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/LightMeter.shader +++ /dev/null @@ -1,111 +0,0 @@ -Shader "Hidden/PostProcessing/Debug/LightMeter" -{ - HLSLINCLUDE - - #pragma exclude_renderers gles gles3 d3d11_9x - #pragma target 4.5 - #include "../StdLib.hlsl" - #include "../Builtins/ExposureHistogram.hlsl" - #pragma multi_compile __ COLOR_GRADING_HDR - #pragma multi_compile __ AUTO_EXPOSURE - - float4 _Params; // x: lowPercent, y: highPercent, z: minBrightness, w: maxBrightness - float4 _ScaleOffsetRes; // x: scale, y: offset, w: histogram pass width, h: histogram pass height - - TEXTURE3D_SAMPLER3D(_Lut3D, sampler_Lut3D); - - StructuredBuffer _HistogramBuffer; - - struct VaryingsLightMeter - { - float4 vertex : SV_POSITION; - float2 texcoord : TEXCOORD0; - float maxValue : TEXCOORD1; - float avgLuminance : TEXCOORD2; - }; - - VaryingsLightMeter Vert(AttributesDefault v) - { - VaryingsLightMeter o; - o.vertex = float4(v.vertex.xy, 0.0, 1.0); - o.texcoord = TransformTriangleVertexToUV(v.vertex.xy); - - #if UNITY_UV_STARTS_AT_TOP - o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); - #endif - - o.maxValue = 1.0 / FindMaxHistogramValue(_HistogramBuffer); - o.avgLuminance = GetAverageLuminance(_HistogramBuffer, _Params, o.maxValue, _ScaleOffsetRes.xy); - - return o; - } - - float4 Frag(VaryingsLightMeter i) : SV_Target - { - uint ix = (uint)(round(i.texcoord.x * HISTOGRAM_BINS)); - float bin = saturate(float(_HistogramBuffer[ix]) * i.maxValue); - float fill = step(i.texcoord.y, bin); - - float4 color = float4(lerp(0.0, 0.75, fill).xxx, 1.0); - - #if AUTO_EXPOSURE - const float3 kRangeColor = float3(0.05, 0.3, 0.4); - const float3 kAvgColor = float3(0.75, 0.1, 1.0); - - // Min / max brightness markers - float luminanceMin = GetHistogramBinFromLuminance(_Params.z, _ScaleOffsetRes.xy); - float luminanceMax = GetHistogramBinFromLuminance(_Params.w, _ScaleOffsetRes.xy); - - if (i.texcoord.x > luminanceMin && i.texcoord.x < luminanceMax) - { - color.rgb = fill.rrr * kRangeColor; - color.rgb += kRangeColor; - } - #endif - - #if COLOR_GRADING_HDR - // Draw color curves on top - float4 curves = 0.0; - float3 lut = SAMPLE_TEXTURE3D(_Lut3D, sampler_Lut3D, i.texcoord.xxx).rgb; - - if (abs(lut.r - i.texcoord.y) < _ScaleOffsetRes.w) - curves.ra += (1.0).xx; - - if (abs(lut.g - i.texcoord.y) < _ScaleOffsetRes.w) - curves.ga += (1.0).xx; - - if (abs(lut.b - i.texcoord.y) < _ScaleOffsetRes.w) - curves.gba += float3(0.5, (1.0).xx); - - color = any(curves) ? curves : color; - #endif - - #if AUTO_EXPOSURE - // Current average luminance marker - float luminanceAvg = GetHistogramBinFromLuminance(i.avgLuminance, _ScaleOffsetRes.xy); - float avgPx = luminanceAvg * _ScaleOffsetRes.z; - - if (abs(i.texcoord.x - luminanceAvg) < _ScaleOffsetRes.z * 2.0) - color.rgb = kAvgColor; - #endif - - return color; - } - - ENDHLSL - - SubShader - { - Cull Off ZWrite Off ZTest Always - - Pass - { - HLSLPROGRAM - - #pragma vertex Vert - #pragma fragment Frag - - ENDHLSL - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/LightMeter.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/LightMeter.shader.meta deleted file mode 100644 index 2a7736bde..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/LightMeter.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: b34a29e523cb9d545881e193a079f2df -timeCreated: 1496329341 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Overlays.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Overlays.shader deleted file mode 100644 index 8b2fccd94..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Overlays.shader +++ /dev/null @@ -1,369 +0,0 @@ -Shader "Hidden/PostProcessing/Debug/Overlays" -{ - HLSLINCLUDE - - #include "../StdLib.hlsl" - #include "../Colors.hlsl" - #pragma target 3.0 - - TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); - TEXTURE2D_SAMPLER2D(_CameraDepthTexture, sampler_CameraDepthTexture); - TEXTURE2D_SAMPLER2D(_CameraDepthNormalsTexture, sampler_CameraDepthNormalsTexture); - TEXTURE2D_SAMPLER2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture); - - #if SOURCE_GBUFFER - TEXTURE2D_SAMPLER2D(_CameraGBufferTexture2, sampler_CameraGBufferTexture2); - #endif - - float4 _MainTex_TexelSize; - float4 _Params; - - // ----------------------------------------------------------------------------- - // Depth - - float4 FragDepth(VaryingsDefault i) : SV_Target - { - float d = SAMPLE_DEPTH_TEXTURE_LOD(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoordStereo, 0); - d = lerp(d, Linear01Depth(d), _Params.x); - - //#if !UNITY_COLORSPACE_GAMMA - // d = SRGBToLinear(d); - //#endif - - return float4(d.xxx, 1.0); - } - - // ----------------------------------------------------------------------------- - // Normals - - float4 FragNormals(VaryingsDefault i) : SV_Target - { - #if SOURCE_GBUFFER - float3 norm = SAMPLE_TEXTURE2D(_CameraGBufferTexture2, sampler_CameraGBufferTexture2, i.texcoordStereo).xyz * 2.0 - 1.0; - float3 n = mul((float3x3)unity_WorldToCamera, norm); - #else - float4 cdn = SAMPLE_TEXTURE2D(_CameraDepthNormalsTexture, sampler_CameraDepthNormalsTexture, i.texcoordStereo); - float3 n = DecodeViewNormalStereo(cdn) * float3(1.0, 1.0, -1.0); - #endif - - #if UNITY_COLORSPACE_GAMMA - n = LinearToSRGB(n); - #endif - - return float4(n, 1.0); - } - - // ----------------------------------------------------------------------------- - // Motion vectors - - float DistanceToLine(float2 p, float2 p1, float2 p2) - { - float2 center = (p1 + p2) * 0.5; - float len = length(p2 - p1); - float2 dir = (p2 - p1) / len; - float2 rel_p = p - center; - return dot(rel_p, float2(dir.y, -dir.x)); - } - - float DistanceToSegment(float2 p, float2 p1, float2 p2) - { - float2 center = (p1 + p2) * 0.5; - float len = length(p2 - p1); - float2 dir = (p2 - p1) / len; - float2 rel_p = p - center; - float dist1 = abs(dot(rel_p, float2(dir.y, -dir.x))); - float dist2 = abs(dot(rel_p, dir)) - 0.5 * len; - return max(dist1, dist2); - } - - float DrawArrow(float2 texcoord, float body, float head, float height, float linewidth, float antialias) - { - float w = linewidth / 2.0 + antialias; - float2 start = -float2(body / 2.0, 0.0); - float2 end = float2(body / 2.0, 0.0); - - // Head: 3 lines - float d1 = DistanceToLine(texcoord, end, end - head * float2(1.0, -height)); - float d2 = DistanceToLine(texcoord, end - head * float2(1.0, height), end); - float d3 = texcoord.x - end.x + head; - - // Body: 1 segment - float d4 = DistanceToSegment(texcoord, start, end - float2(linewidth, 0.0)); - - float d = min(max(max(d1, d2), -d3), d4); - return d; - } - - float2 SampleMotionVectors(float2 coords) - { - float2 mv = SAMPLE_TEXTURE2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture, UnityStereoTransformScreenSpaceTex(coords)).xy; - mv.y *= -1.0; - return mv; - } - - float4 FragMotionVectors(VaryingsDefault i) : SV_Target - { -#if UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM - float3 src = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo).rgb; - float2 mv = SampleMotionVectors(i.texcoord); - - // Background color intensity - keep this low unless you want to make your eyes bleed - const float kIntensity = _Params.x; - - // Map motion vector direction to color wheel (hue between 0 and 360deg) - float phi = atan2(mv.x, mv.y); - float hue = (phi / PI + 1.0) * 0.5; - float r = abs(hue * 6.0 - 3.0) - 1.0; - float g = 2.0 - abs(hue * 6.0 - 2.0); - float b = 2.0 - abs(hue * 6.0 - 4.0); - float a = length(mv * kIntensity); - - float4 color = saturate(float4(r, g, b, a)); - - // Grid subdivisions - const float kGrid = _Params.y; - - // Arrow grid (aspect ratio is kept) - float rows = floor(kGrid * _MainTex_TexelSize.w / _MainTex_TexelSize.z); - float cols = kGrid; - float2 size = _MainTex_TexelSize.zw / float2(cols, rows); - float body = (min(size.x, size.y) / 1.4142135623730951) * saturate(length(mv * kGrid * 0.25)); - float2 texcoord = i.vertex.xy; - float2 center = (floor(texcoord / size) + 0.5) * size; - texcoord -= center; - - // Sample the center of the cell to get the current arrow vector - float2 arrow_coord = center / _MainTex_TexelSize.zw; - float2 mv_arrow = SampleMotionVectors(arrow_coord); - - // Skip empty motion - float d = 0.0; - if (any(mv_arrow)) - { - // Rotate the arrow according to the direction - mv_arrow = normalize(mv_arrow); - float2x2 rot = float2x2(mv_arrow.x, -mv_arrow.y, mv_arrow.y, mv_arrow.x); - texcoord = mul(rot, texcoord); - - d = DrawArrow(texcoord, body, 0.25 * body, 0.5, 2.0, 1.0); - d = 1.0 - saturate(d); - } - - #if !UNITY_COLORSPACE_GAMMA - src = LinearToSRGB(src); - #endif - - color.rgb = lerp(src, color.rgb, color.a); - - #if !UNITY_COLORSPACE_GAMMA - color.rgb = SRGBToLinear(color.rgb); - #endif - - return float4(color.rgb + d.xxx, 1.0); -#else - // Reading vertex SV_POSITION in a fragment shader is not supported by this platform so just return solid color. - return float4(1.0f, 0.0f, 1.0f, 1.0f); -#endif - } - - // ----------------------------------------------------------------------------- - // NAN tracker - - float4 FragNANTracker(VaryingsDefault i) : SV_Target - { - float4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); - - if (AnyIsNan(color)) - { - color = float4(1.0, 0.0, 1.0, 1.0); - } - else - { - // Dim the color buffer so we can see NaNs & Infs better - color.rgb = saturate(color.rgb) * 0.25; - } - - return color; - } - - // ----------------------------------------------------------------------------- - // Color blindness simulation - - float3 RGFilter(float3 color, float k1, float k2, float k3) - { - float3 c_lin = color * 128.498039; - - float r_blind = (k1 * c_lin.r + k2 * c_lin.g) / 16448.25098; - float b_blind = (k3 * c_lin.r - k3 * c_lin.g + 128.498039 * c_lin.b) / 16448.25098; - r_blind = saturate(r_blind); - b_blind = saturate(b_blind); - - return lerp(color, float3(r_blind, r_blind, b_blind), _Params.x); - } - - float4 FragDeuteranopia(VaryingsDefault i) : SV_Target - { - float3 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo).rgb; - color = saturate(color); - - #if UNITY_COLORSPACE_GAMMA - color = SRGBToLinear(color); - #endif - - color = RGFilter(color, 37.611765, 90.87451, -2.862745); - - #if UNITY_COLORSPACE_GAMMA - color = LinearToSRGB(color); - #endif - - return float4(color, 1.0); - } - - float4 FragProtanopia(VaryingsDefault i) : SV_Target - { - float3 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo).rgb; - color = saturate(color); - - #if UNITY_COLORSPACE_GAMMA - color = SRGBToLinear(color); - #endif - - color = RGFilter(color, 14.443137, 114.054902, 0.513725); - - #if UNITY_COLORSPACE_GAMMA - color = LinearToSRGB(color); - #endif - - return float4(color, 1.0); - } - - float4 FragTritanopia(VaryingsDefault i) : SV_Target - { - float3 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo).rgb; - color = saturate(color); - - float anchor_e0 = 0.05059983 + 0.08585369 + 0.00952420; - float anchor_e1 = 0.01893033 + 0.08925308 + 0.01370054; - float anchor_e2 = 0.00292202 + 0.00975732 + 0.07145979; - float inflection = anchor_e1 / anchor_e0; - - float a1 = -anchor_e2 * 0.007009; - float b1 = anchor_e2 * 0.0914; - float c1 = anchor_e0 * 0.007009 - anchor_e1 * 0.0914; - float a2 = anchor_e1 * 0.3636 - anchor_e2 * 0.2237; - float b2 = anchor_e2 * 0.1284 - anchor_e0 * 0.3636; - float c2 = anchor_e0 * 0.2237 - anchor_e1 * 0.1284; - - #if UNITY_COLORSPACE_GAMMA - color = SRGBToLinear(color); - #endif - - float3 c_lin = color * 128.498039; - - float L = (c_lin.r * 0.05059983 + c_lin.g * 0.08585369 + c_lin.b * 0.00952420) / 128.498039; - float M = (c_lin.r * 0.01893033 + c_lin.g * 0.08925308 + c_lin.b * 0.01370054) / 128.498039; - float S = (c_lin.r * 0.00292202 + c_lin.g * 0.00975732 + c_lin.b * 0.07145979) / 128.498039; - - float tmp = M / L; - - if (tmp < inflection) S = -(a1 * L + b1 * M) / c1; - else S = -(a2 * L + b2 * M) / c2; - - float r = L * 30.830854 - M * 29.832659 + S * 1.610474; - float g = -L * 6.481468 + M * 17.715578 - S * 2.532642; - float b = -L * 0.375690 - M * 1.199062 + S * 14.273846; - - color = lerp(color, saturate(float3(r, g, b)), _Params.x); - - #if UNITY_COLORSPACE_GAMMA - color = LinearToSRGB(color); - #endif - - return float4(color, 1.0); - } - - ENDHLSL - - SubShader - { - Cull Off ZWrite Off ZTest Always - - // 0 - Depth - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragDepth - - ENDHLSL - } - - // 1 - Normals - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragNormals - #pragma multi_compile _ SOURCE_GBUFFER - - ENDHLSL - } - - // 2 - Motion vectors - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragMotionVectors - - ENDHLSL - } - - // 3 - Nan tracker - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragNANTracker - - ENDHLSL - } - - // 4 - Color blindness (deuteranopia) - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragDeuteranopia - - ENDHLSL - } - - // 5 - Color blindness (protanopia) - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragProtanopia - - ENDHLSL - } - - // 6 - Color blindness (tritanopia) - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment FragTritanopia - - ENDHLSL - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Overlays.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Overlays.shader.meta deleted file mode 100644 index 579e6c841..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Overlays.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: b958ad1c92bd3d64c9e61318b8681dab -timeCreated: 1504771237 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Vectorscope.compute b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Vectorscope.compute deleted file mode 100644 index e6e3f799c..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Vectorscope.compute +++ /dev/null @@ -1,51 +0,0 @@ -#pragma warning(disable : 3568) -#pragma exclude_renderers gles gles3 d3d11_9x - -#include "../StdLib.hlsl" -#include "../Colors.hlsl" - -RWStructuredBuffer _VectorscopeBuffer; -Texture2D _Source; - -CBUFFER_START (Params) - float4 _Params; // x: source width, y: source height, z: buffer size, w: linear? -CBUFFER_END - -#define GROUP_SIZE_X 16 -#define GROUP_SIZE_Y 16 - -#ifdef DISABLE_COMPUTE_SHADERS - -TRIVIAL_COMPUTE_KERNEL(KVectorscopeGather) -TRIVIAL_COMPUTE_KERNEL(KVectorscopeClear) - -#else - -#pragma kernel KVectorscopeGather -[numthreads(GROUP_SIZE_X, GROUP_SIZE_Y, 1)] -void KVectorscopeGather(uint2 dispatchThreadId : SV_DispatchThreadID) -{ - if (dispatchThreadId.x < uint(_Params.x) && dispatchThreadId.y < uint(_Params.y)) - { - float3 color = saturate(_Source[dispatchThreadId].xyz); - - if (_Params.w > 0) - color = LinearToSRGB(color); - - float3 yuv = RgbToYCbCr(color); - yuv.yz += (0.5).xx; - uint u = (uint)floor(yuv.y * _Params.z); - uint v = (uint)floor(yuv.z * _Params.z); - InterlockedAdd(_VectorscopeBuffer[v * _Params.z + u], 1u); - } -} - -#pragma kernel KVectorscopeClear -[numthreads(GROUP_SIZE_X, GROUP_SIZE_Y, 1)] -void KVectorscopeClear(uint2 dispatchThreadId : SV_DispatchThreadID) -{ - if (dispatchThreadId.x < uint(_Params.z) && dispatchThreadId.y < uint(_Params.z)) - _VectorscopeBuffer[dispatchThreadId.y * _Params.z + dispatchThreadId.x] = 0u; -} - -#endif diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Vectorscope.compute.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Vectorscope.compute.meta deleted file mode 100644 index a4de9bd08..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Vectorscope.compute.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: e1efca7c36fd01840aae0dd10378de5c -timeCreated: 1499700468 -licenseType: Pro -ComputeShaderImporter: - currentAPIMask: 8196 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Vectorscope.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Vectorscope.shader deleted file mode 100644 index 3535fe6cb..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Vectorscope.shader +++ /dev/null @@ -1,59 +0,0 @@ -Shader "Hidden/PostProcessing/Debug/Vectorscope" -{ - HLSLINCLUDE - - #pragma exclude_renderers gles gles3 d3d11_9x - #pragma target 4.5 - #include "../StdLib.hlsl" - #include "../Colors.hlsl" - - StructuredBuffer _VectorscopeBuffer; - float3 _Params; // x: width, y: height, z: exposure, w: unused - - float Tonemap(float x, float exposure) - { - const float a = 6.2; - const float b = 0.5; - const float c = 1.7; - const float d = 0.06; - x *= exposure; - x = max(0.0, x - 0.004); - x = (x * (a * x + b)) / (x * (a * x + c) + d); - return x * x; - } - - float4 Frag(VaryingsDefault i) : SV_Target - { - i.texcoord.x = 1.0 - i.texcoord.x; - float2 uv = i.texcoord - (0.5).xx; - float3 c = YCbCrToRgb(float3(0.5, uv.x, uv.y)); - - float dist = sqrt(dot(uv, uv)); - float delta = fwidth(dist) * 0.5; - float alphaOut = 1.0 - smoothstep(0.5 - delta, 0.5 + delta, dist); - - uint2 uvI = i.texcoord.xy * _Params.xy; - uint v = _VectorscopeBuffer[uvI.x + uvI.y * _Params.x]; - float vt = saturate(Tonemap(v, _Params.z)); - - float4 color = float4(lerp(c, (0.0).xxx, vt), 1.0); - return color; - } - - ENDHLSL - - SubShader - { - Cull Off ZWrite Off ZTest Always - - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment Frag - - ENDHLSL - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Vectorscope.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Vectorscope.shader.meta deleted file mode 100644 index be9332753..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Vectorscope.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: a71093f2a4fe26a40805c22739e10e4a -timeCreated: 1499700462 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Waveform.compute b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Waveform.compute deleted file mode 100644 index 37b983eb6..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Waveform.compute +++ /dev/null @@ -1,58 +0,0 @@ -#pragma warning(disable : 3568) -#pragma exclude_renderers gles gles3 d3d11_9x - -#include "../StdLib.hlsl" -#include "../Colors.hlsl" - -RWStructuredBuffer _WaveformBuffer; -Texture2D _Source; -SamplerState sampler_Source; - -CBUFFER_START(Params) - float4 _Params; // x: source width, y: source height, z: linear, w: unused -CBUFFER_END - -#define GROUP_SIZE 256 -#define GROUP_SIZE_X 16 -#define GROUP_SIZE_Y 16 - -#ifdef DISABLE_COMPUTE_SHADERS - -TRIVIAL_COMPUTE_KERNEL(KWaveformGather) -TRIVIAL_COMPUTE_KERNEL(KWaveformClear) - -#else - -#pragma kernel KWaveformGather -[numthreads(1, GROUP_SIZE, 1)] -void KWaveformGather(uint2 dispatchThreadId : SV_DispatchThreadID) -{ - // Gather local group histogram - if (dispatchThreadId.x < uint(_Params.x) && dispatchThreadId.y < uint(_Params.y)) - { - float3 color = _Source[dispatchThreadId].rgb; - color = saturate(color); - - // We want a gamma-corrected histogram (like Photoshop & all) - if (_Params.z > 0) - color = LinearToSRGB(color); - - // Convert channel values to histogram bins - uint3 idx = (uint3)(round(color * (_Params.y - 1))); - idx += dispatchThreadId.x * _Params.y; - - if (idx.x > 0u) InterlockedAdd(_WaveformBuffer[idx.x].x, 1u); // Red - if (idx.y > 0u) InterlockedAdd(_WaveformBuffer[idx.y].y, 1u); // Green - if (idx.z > 0u) InterlockedAdd(_WaveformBuffer[idx.z].z, 1u); // Blue - } -} - -#pragma kernel KWaveformClear -[numthreads(GROUP_SIZE_X, GROUP_SIZE_Y, 1)] -void KWaveformClear(uint2 dispatchThreadId : SV_DispatchThreadID) -{ - if (dispatchThreadId.x < uint(_Params.x) && dispatchThreadId.y < uint(_Params.y)) - _WaveformBuffer[dispatchThreadId.y * uint(_Params.x) + dispatchThreadId.x] = uint4(0u, 0u, 0u, 0u); -} - -#endif // DISABLE_COMPUTE_SHADERS diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Waveform.compute.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Waveform.compute.meta deleted file mode 100644 index 6350f044b..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Waveform.compute.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 92c63830cd50c0b4fbb8233613839958 -timeCreated: 1499691152 -licenseType: Pro -ComputeShaderImporter: - currentAPIMask: 8196 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Waveform.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Waveform.shader deleted file mode 100644 index 2c3a8b942..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Waveform.shader +++ /dev/null @@ -1,58 +0,0 @@ -Shader "Hidden/PostProcessing/Debug/Waveform" -{ - HLSLINCLUDE - - #pragma exclude_renderers gles gles3 d3d11_9x - #pragma target 4.5 - #include "../StdLib.hlsl" - - StructuredBuffer _WaveformBuffer; - float3 _Params; // x: buffer width, y: buffer height, z: exposure, w: unused - - float3 Tonemap(float3 x, float exposure) - { - const float a = 6.2; - const float b = 0.5; - const float c = 1.7; - const float d = 0.06; - x *= exposure; - x = max((0.0).xxx, x - (0.004).xxx); - x = (x * (a * x + b)) / (x * (a * x + c) + d); - return x * x; - } - - float4 Frag(VaryingsDefault i) : SV_Target - { - const float3 red = float3(1.4, 0.03, 0.02); - const float3 green = float3(0.02, 1.1, 0.05); - const float3 blue = float3(0.0, 0.25, 1.5); - float3 color = float3(0.0, 0.0, 0.0); - - uint2 uvI = i.vertex.xy; - float3 w = _WaveformBuffer[uvI.x * _Params.y + uvI.y].xyz; - - color += red * w.r; - color += green * w.g; - color += blue * w.b; - color = Tonemap(color, _Params.z); - - return float4(saturate(color), 1.0); - } - - ENDHLSL - - SubShader - { - Cull Off ZWrite Off ZTest Always - - Pass - { - HLSLPROGRAM - - #pragma vertex VertDefault - #pragma fragment Frag - - ENDHLSL - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Waveform.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Waveform.shader.meta deleted file mode 100644 index beb193294..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Debug/Waveform.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 3020ac7ece79a7f4eb789a236f8bd6c5 -timeCreated: 1499691145 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Editor.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Editor.meta deleted file mode 100644 index 5bf7e339b..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Editor.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 5c66af49245494b4a8b294f2d39e7387 -folderAsset: yes -timeCreated: 1493903686 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Editor/ConvertToLog.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Editor/ConvertToLog.shader deleted file mode 100644 index 7f5f59681..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Editor/ConvertToLog.shader +++ /dev/null @@ -1,65 +0,0 @@ -Shader "Hidden/PostProcessing/Editor/ConvertToLog" -{ - Properties - { - _MainTex ("", 2D) = "white" {} - } - - CGINCLUDE - - #include "UnityCG.cginc" - - struct ParamsLogC - { - float cut; - float a, b, c, d, e, f; - }; - - static const ParamsLogC LogC = - { - 0.011361, // cut - 5.555556, // a - 0.047996, // b - 0.244161, // c - 0.386036, // d - 5.301883, // e - 0.092819 // f - }; - - float LinearToLogC_Precise(half x) - { - float o; - if (x > LogC.cut) - o = LogC.c * log10(LogC.a * x + LogC.b) + LogC.d; - else - o = LogC.e * x + LogC.f; - return o; - } - - sampler2D _MainTex; - - float4 Frag(v2f_img i) : SV_Target - { - float4 color = tex2D(_MainTex, i.uv); - color.rgb = float3(LinearToLogC_Precise(color.r), LinearToLogC_Precise(color.g), LinearToLogC_Precise(color.b)); - color.a = 1.0; - return color; - } - - ENDCG - - SubShader - { - Cull Off ZWrite Off ZTest Always - - Pass - { - CGPROGRAM - - #pragma vertex vert_img - #pragma fragment Frag - - ENDCG - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Editor/ConvertToLog.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Editor/ConvertToLog.shader.meta deleted file mode 100644 index 600eb2769..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Editor/ConvertToLog.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: fe144c7e314047f4bb779d555c5405ac -timeCreated: 1496747212 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Editor/CurveGrid.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Editor/CurveGrid.shader deleted file mode 100644 index 37c565791..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Editor/CurveGrid.shader +++ /dev/null @@ -1,63 +0,0 @@ -Shader "Hidden/PostProcessing/Editor/CurveGrid" -{ - CGINCLUDE - - #pragma target 3.0 - #include "UnityCG.cginc" - - float _DisabledState; - - float3 HsvToRgb(float3 c) - { - float4 K = float4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); - float3 p = abs(frac(c.xxx + K.xyz) * 6.0 - K.www); - return c.z * lerp(K.xxx, saturate(p - K.xxx), c.y); - } - - float4 FragHue(v2f_img i) : SV_Target - { - float3 hsv = HsvToRgb(float3(i.uv.x, 1.0, 0.2)); - float4 color = float4((0.0).xxx, 1.0); - color.rgb = lerp(color.rgb, hsv, smoothstep(0.5, 1.1, 1.0 - i.uv.y)) + lerp(color.rgb, hsv, smoothstep(0.5, 1.1, i.uv.y)); - color.rgb += (0.15).xxx; - return float4(color.rgb, color.a * _DisabledState); - } - - float4 FragSat(v2f_img i) : SV_Target - { - float4 color = float4((0.0).xxx, 1.0); - float sat = i.uv.x / 2; - color.rgb += lerp(color.rgb, (sat).xxx, smoothstep(0.5, 1.2, 1.0 - i.uv.y)) + lerp(color.rgb, (sat).xxx, smoothstep(0.5, 1.2, i.uv.y)); - color.rgb += (0.15).xxx; - return float4(color.rgb, color.a * _DisabledState); - } - - ENDCG - - SubShader - { - Cull Off ZWrite Off ZTest Always - - // (0) Hue - Pass - { - CGPROGRAM - - #pragma vertex vert_img - #pragma fragment FragHue - - ENDCG - } - - // (1) Sat/lum - Pass - { - CGPROGRAM - - #pragma vertex vert_img - #pragma fragment FragSat - - ENDCG - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Editor/CurveGrid.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Editor/CurveGrid.shader.meta deleted file mode 100644 index 6b4665f35..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Editor/CurveGrid.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 5bb6ef6f3e1b20348b4fdb01e4c404e2 -timeCreated: 1493997957 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Editor/Trackball.shader b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Editor/Trackball.shader deleted file mode 100644 index 38d92a402..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Editor/Trackball.shader +++ /dev/null @@ -1,118 +0,0 @@ -Shader "Hidden/PostProcessing/Editor/Trackball" -{ - CGINCLUDE - - #include "UnityCG.cginc" - - #define PI 3.14159265359 - #define PI2 6.28318530718 - - float _Offset; - float _DisabledState; - float2 _Resolution; // x: size, y: size / 2 - - float3 HsvToRgb(float3 c) - { - float4 K = float4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); - float3 p = abs(frac(c.xxx + K.xyz) * 6.0 - K.www); - return c.z * lerp(K.xxx, saturate(p - K.xxx), c.y); - } - - float4 CreateWheel(v2f_img i, float crossColor, float offsetColor) - { - const float kHueOuterRadius = 0.45; - const float kHueInnerRadius = 0.38; - const float kLumOuterRadius = 0.495; - const float kLumInnerRadius = 0.48; - - float4 color = (0.0).xxxx; - float2 uvc = i.uv - (0.5).xx; - float dist = sqrt(dot(uvc, uvc)); - float delta = fwidth(dist); - float angle = atan2(uvc.x, uvc.y); - - // Cross - { - float radius = (0.5 - kHueInnerRadius) * _Resolution.x + 1.0; - float2 pixel = (_Resolution.xx - 1.0) * i.uv + 1.0; - - float vline = step(floor(fmod(pixel.x, _Resolution.y)), 0.0); - vline *= step(radius, pixel.y) * step(pixel.y, _Resolution.x - radius); - - float hline = step(floor(fmod(pixel.y, _Resolution.y)), 0.0); - hline *= step(radius, pixel.x) * step(pixel.x, _Resolution.x - radius); - - color += hline.xxxx * (1.0).xxxx; - color += vline.xxxx * (1.0).xxxx; - color = saturate(color); - color *= half4((crossColor).xxx, 0.05); - } - - // Hue - { - float alphaOut = smoothstep(kHueOuterRadius - delta, kHueOuterRadius + delta, dist); - float alphaIn = smoothstep(kHueInnerRadius - delta, kHueInnerRadius + delta, dist); - - float hue = angle; - hue = 1.0 - ((hue > 0.0) ? hue : PI2 + hue) / PI2; - float4 c = float4(HsvToRgb(float3(hue, 1.0, 1.0)), 1.0); - color += lerp((0.0).xxxx, c, alphaIn - alphaOut); - } - - // Offset - { - float alphaOut = smoothstep(kLumOuterRadius - delta, kLumOuterRadius + delta, dist); - float alphaIn = smoothstep(kLumInnerRadius - delta, kLumInnerRadius + delta / 2, dist); - float4 c = float4((offsetColor).xxx, 1.0); - - float a = PI * _Offset; - if (_Offset >= 0 && angle < a && angle > 0.0) - c = float4((1.0).xxx, 0.5); - else if (angle > a && angle < 0.0) - c = float4((1.0).xxx, 0.5); - - color += lerp((0.0).xxxx, c, alphaIn - alphaOut); - } - - return color * _DisabledState; - } - - float4 FragTrackballDark(v2f_img i) : SV_Target - { - return CreateWheel(i, 1.0, 0.15); - } - - float4 FragTrackballLight(v2f_img i) : SV_Target - { - return CreateWheel(i, 0.0, 0.3); - } - - ENDCG - - SubShader - { - Cull Off ZWrite Off ZTest Always - - // (0) Dark skin - Pass - { - CGPROGRAM - - #pragma vertex vert_img - #pragma fragment FragTrackballDark - - ENDCG - } - - // (1) Light skin - Pass - { - CGPROGRAM - - #pragma vertex vert_img - #pragma fragment FragTrackballLight - - ENDCG - } - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Editor/Trackball.shader.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Editor/Trackball.shader.meta deleted file mode 100644 index 21ebfe49c..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Editor/Trackball.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: de7f3ac52268a194383c7d62c2a343c1 -timeCreated: 1493903699 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Sampling.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Sampling.hlsl deleted file mode 100644 index f92b9c3d6..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Sampling.hlsl +++ /dev/null @@ -1,91 +0,0 @@ -#ifndef UNITY_POSTFX_SAMPLING -#define UNITY_POSTFX_SAMPLING - -#include "StdLib.hlsl" - -// Better, temporally stable box filtering -// [Jimenez14] http://goo.gl/eomGso -// . . . . . . . -// . A . B . C . -// . . D . E . . -// . F . G . H . -// . . I . J . . -// . K . L . M . -// . . . . . . . -half4 DownsampleBox13Tap(TEXTURE2D_ARGS(tex, samplerTex), float2 uv, float2 texelSize) -{ - half4 A = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2(-1.0, -1.0))); - half4 B = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 0.0, -1.0))); - half4 C = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 1.0, -1.0))); - half4 D = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2(-0.5, -0.5))); - half4 E = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 0.5, -0.5))); - half4 F = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2(-1.0, 0.0))); - half4 G = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv )); - half4 H = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 1.0, 0.0))); - half4 I = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2(-0.5, 0.5))); - half4 J = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 0.5, 0.5))); - half4 K = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2(-1.0, 1.0))); - half4 L = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 0.0, 1.0))); - half4 M = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 1.0, 1.0))); - - half2 div = (1.0 / 4.0) * half2(0.5, 0.125); - - half4 o = (D + E + I + J) * div.x; - o += (A + B + G + F) * div.y; - o += (B + C + H + G) * div.y; - o += (F + G + L + K) * div.y; - o += (G + H + M + L) * div.y; - - return o; -} - -// Standard box filtering -half4 DownsampleBox4Tap(TEXTURE2D_ARGS(tex, samplerTex), float2 uv, float2 texelSize) -{ - float4 d = texelSize.xyxy * float4(-1.0, -1.0, 1.0, 1.0); - - half4 s; - s = (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.xy))); - s += (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.zy))); - s += (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.xw))); - s += (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.zw))); - - return s * (1.0 / 4.0); -} - -// 9-tap bilinear upsampler (tent filter) -half4 UpsampleTent(TEXTURE2D_ARGS(tex, samplerTex), float2 uv, float2 texelSize, float4 sampleScale) -{ - float4 d = texelSize.xyxy * float4(1.0, 1.0, -1.0, 0.0) * sampleScale; - - half4 s; - s = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv - d.xy)); - s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv - d.wy)) * 2.0; - s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv - d.zy)); - - s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.zw)) * 2.0; - s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv )) * 4.0; - s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.xw)) * 2.0; - - s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.zy)); - s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.wy)) * 2.0; - s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.xy)); - - return s * (1.0 / 16.0); -} - -// Standard box filtering -half4 UpsampleBox(TEXTURE2D_ARGS(tex, samplerTex), float2 uv, float2 texelSize, float4 sampleScale) -{ - float4 d = texelSize.xyxy * float4(-1.0, -1.0, 1.0, 1.0) * (sampleScale * 0.5); - - half4 s; - s = (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.xy))); - s += (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.zy))); - s += (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.xw))); - s += (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.zw))); - - return s * (1.0 / 4.0); -} - -#endif // UNITY_POSTFX_SAMPLING diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Sampling.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Sampling.hlsl.meta deleted file mode 100644 index 45ead5ae6..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/Sampling.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: f16ad9ee5ff13554b98568aa655d6bda -timeCreated: 1489940178 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/StdLib.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/StdLib.hlsl deleted file mode 100644 index 224dc7263..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/StdLib.hlsl +++ /dev/null @@ -1,322 +0,0 @@ -// Because this framework is supposed to work with the legacy render pipelines AND scriptable render -// pipelines we can't use Unity's shader libraries (some scriptable pipelines come with their own -// shader lib). So here goes a minimal shader lib only used for post-processing to ensure good -// compatibility with all pipelines. - -#ifndef UNITY_POSTFX_STDLIB -#define UNITY_POSTFX_STDLIB - -// ----------------------------------------------------------------------------- -// API macros - -#if defined(SHADER_API_PSSL) - #include "API/PSSL.hlsl" -#elif defined(SHADER_API_XBOXONE) - #include "API/XboxOne.hlsl" -#elif defined(SHADER_API_D3D11) - #include "API/D3D11.hlsl" -#elif defined(SHADER_API_D3D12) - #include "API/D3D12.hlsl" -#elif defined(SHADER_API_D3D9) || defined(SHADER_API_D3D11_9X) - #include "API/D3D9.hlsl" -#elif defined(SHADER_API_VULKAN) - #include "API/Vulkan.hlsl" -#elif defined(SHADER_API_SWITCH) - #include "API/Switch.hlsl" -#elif defined(SHADER_API_METAL) - #include "API/Metal.hlsl" -#elif defined(SHADER_API_PSP2) - #include "API/PSP2.hlsl" -#else - #include "API/OpenGL.hlsl" -#endif - -#if defined(SHADER_API_PSSL) || defined(SHADER_API_XBOXONE) || defined(SHADER_API_SWITCH) || defined(SHADER_API_PSP2) - #define SHADER_API_CONSOLE -#endif - -// ----------------------------------------------------------------------------- -// Constants - -#define HALF_MAX 65504.0 // (2 - 2^-10) * 2^15 -#define HALF_MAX_MINUS1 65472.0 // (2 - 2^-9) * 2^15 -#define EPSILON 1.0e-4 -#define PI 3.14159265359 -#define TWO_PI 6.28318530718 -#define FOUR_PI 12.56637061436 -#define INV_PI 0.31830988618 -#define INV_TWO_PI 0.15915494309 -#define INV_FOUR_PI 0.07957747155 -#define HALF_PI 1.57079632679 -#define INV_HALF_PI 0.636619772367 - -#define FLT_EPSILON 1.192092896e-07 // Smallest positive number, such that 1.0 + FLT_EPSILON != 1.0 -#define FLT_MIN 1.175494351e-38 // Minimum representable positive floating-point number -#define FLT_MAX 3.402823466e+38 // Maximum representable floating-point number - -// ----------------------------------------------------------------------------- -// Compatibility functions - -#if (SHADER_TARGET < 50 && !defined(SHADER_API_PSSL)) -float rcp(float value) -{ - return 1.0 / value; -} -#endif - -#if defined(SHADER_API_GLES) -#define mad(a, b, c) (a * b + c) -#endif - -#ifndef INTRINSIC_MINMAX3 -float Min3(float a, float b, float c) -{ - return min(min(a, b), c); -} - -float2 Min3(float2 a, float2 b, float2 c) -{ - return min(min(a, b), c); -} - -float3 Min3(float3 a, float3 b, float3 c) -{ - return min(min(a, b), c); -} - -float4 Min3(float4 a, float4 b, float4 c) -{ - return min(min(a, b), c); -} - -float Max3(float a, float b, float c) -{ - return max(max(a, b), c); -} - -float2 Max3(float2 a, float2 b, float2 c) -{ - return max(max(a, b), c); -} - -float3 Max3(float3 a, float3 b, float3 c) -{ - return max(max(a, b), c); -} - -float4 Max3(float4 a, float4 b, float4 c) -{ - return max(max(a, b), c); -} -#endif // INTRINSIC_MINMAX3 - -// https://twitter.com/SebAaltonen/status/878250919879639040 -// madd_sat + madd -float FastSign(float x) -{ - return saturate(x * FLT_MAX + 0.5) * 2.0 - 1.0; -} - -float2 FastSign(float2 x) -{ - return saturate(x * FLT_MAX + 0.5) * 2.0 - 1.0; -} - -float3 FastSign(float3 x) -{ - return saturate(x * FLT_MAX + 0.5) * 2.0 - 1.0; -} - -float4 FastSign(float4 x) -{ - return saturate(x * FLT_MAX + 0.5) * 2.0 - 1.0; -} - -// Using pow often result to a warning like this -// "pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them" -// PositivePow remove this warning when you know the value is positive and avoid inf/NAN. -float PositivePow(float base, float power) -{ - return pow(max(abs(base), float(FLT_EPSILON)), power); -} - -float2 PositivePow(float2 base, float2 power) -{ - return pow(max(abs(base), float2(FLT_EPSILON, FLT_EPSILON)), power); -} - -float3 PositivePow(float3 base, float3 power) -{ - return pow(max(abs(base), float3(FLT_EPSILON, FLT_EPSILON, FLT_EPSILON)), power); -} - -float4 PositivePow(float4 base, float4 power) -{ - return pow(max(abs(base), float4(FLT_EPSILON, FLT_EPSILON, FLT_EPSILON, FLT_EPSILON)), power); -} - -// NaN checker -// /Gic isn't enabled on fxc so we can't rely on isnan() anymore -bool IsNan(float x) -{ - // For some reason the following tests outputs "internal compiler error" randomly on desktop - // so we'll use a safer but slightly slower version instead :/ - //return (x <= 0.0 || 0.0 <= x) ? false : true; - return (x < 0.0 || x > 0.0 || x == 0.0) ? false : true; -} - -bool AnyIsNan(float2 x) -{ - return IsNan(x.x) || IsNan(x.y); -} - -bool AnyIsNan(float3 x) -{ - return IsNan(x.x) || IsNan(x.y) || IsNan(x.z); -} - -bool AnyIsNan(float4 x) -{ - return IsNan(x.x) || IsNan(x.y) || IsNan(x.z) || IsNan(x.w); -} - -// ----------------------------------------------------------------------------- -// Std unity data - -float4x4 unity_CameraProjection; -float4x4 unity_MatrixVP; -float4x4 unity_ObjectToWorld; -float4x4 unity_WorldToCamera; -float3 _WorldSpaceCameraPos; -float4 _ProjectionParams; // x: 1 (-1 flipped), y: near, z: far, w: 1/far -float4 unity_ColorSpaceLuminance; -float4 unity_DeltaTime; // x: dt, y: 1/dt, z: smoothDt, w: 1/smoothDt -float4 unity_OrthoParams; // x: width, y: height, z: unused, w: ortho ? 1 : 0 -float4 _ZBufferParams; // x: 1-far/near, y: far/near, z: x/far, w: y/far -float4 _ScreenParams; // x: width, y: height, z: 1+1/width, w: 1+1/height -float4 _Time; // x: t/20, y: t, z: t*2, w: t*3 -float4 _SinTime; // x: sin(t/20), y: sin(t), z: sin(t*2), w: sin(t*3) -float4 _CosTime; // x: cos(t/20), y: cos(t), z: cos(t*2), w: cos(t*3) - -// ----------------------------------------------------------------------------- -// Std functions - -// Z buffer depth to linear 0-1 depth -// Handles orthographic projection correctly -float Linear01Depth(float z) -{ - float isOrtho = unity_OrthoParams.w; - float isPers = 1.0 - unity_OrthoParams.w; - z *= _ZBufferParams.x; - return (1.0 - isOrtho * z) / (isPers * z + _ZBufferParams.y); -} - -float LinearEyeDepth(float z) -{ - return rcp(_ZBufferParams.z * z + _ZBufferParams.w); -} - -// Clamp HDR value within a safe range -half3 SafeHDR(half3 c) -{ - return min(c, HALF_MAX); -} - -half4 SafeHDR(half4 c) -{ - return min(c, HALF_MAX); -} - -// Decode normals stored in _CameraDepthNormalsTexture -float3 DecodeViewNormalStereo(float4 enc4) -{ - float kScale = 1.7777; - float3 nn = enc4.xyz * float3(2.0 * kScale, 2.0 * kScale, 0) + float3(-kScale, -kScale, 1); - float g = 2.0 / dot(nn.xyz, nn.xyz); - float3 n; - n.xy = g * nn.xy; - n.z = g - 1.0; - return n; -} - -// Interleaved gradient function from Jimenez 2014 -// http://www.iryoku.com/next-generation-post-processing-in-call-of-duty-advanced-warfare -float GradientNoise(float2 uv) -{ - uv = floor(uv * _ScreenParams.xy); - float f = dot(float2(0.06711056, 0.00583715), uv); - return frac(52.9829189 * frac(f)); -} - -// Vertex manipulation -float2 TransformTriangleVertexToUV(float2 vertex) -{ - float2 uv = (vertex + 1.0) * 0.5; - return uv; -} - -#include "xRLib.hlsl" - -// ----------------------------------------------------------------------------- -// Default vertex shaders - -struct AttributesDefault -{ - float3 vertex : POSITION; -}; - -struct VaryingsDefault -{ - float4 vertex : SV_POSITION; - float2 texcoord : TEXCOORD0; - float2 texcoordStereo : TEXCOORD1; -#if STEREO_INSTANCING_ENABLED - uint stereoTargetEyeIndex : SV_RenderTargetArrayIndex; -#endif -}; - -#if STEREO_INSTANCING_ENABLED -float _DepthSlice; -#endif - -VaryingsDefault VertDefault(AttributesDefault v) -{ - VaryingsDefault o; - o.vertex = float4(v.vertex.xy, 0.0, 1.0); - o.texcoord = TransformTriangleVertexToUV(v.vertex.xy); - -#if UNITY_UV_STARTS_AT_TOP - o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); -#endif - - o.texcoordStereo = TransformStereoScreenSpaceTex(o.texcoord, 1.0); - - return o; -} - -float4 _UVTransform; // xy: scale, wz: translate - -#if STEREO_DOUBLEWIDE_TARGET -float4 _PosScaleOffset; // xy: scale, wz: offset -#endif - -VaryingsDefault VertUVTransform(AttributesDefault v) -{ - VaryingsDefault o; - -#if STEREO_DOUBLEWIDE_TARGET - o.vertex = float4(v.vertex.xy * _PosScaleOffset.xy + _PosScaleOffset.zw, 0.0, 1.0); -#else - o.vertex = float4(v.vertex.xy, 0.0, 1.0); -#endif - o.texcoord = TransformTriangleVertexToUV(v.vertex.xy) * _UVTransform.xy + _UVTransform.zw; - o.texcoordStereo = TransformStereoScreenSpaceTex(o.texcoord, 1.0); -#if STEREO_INSTANCING_ENABLED - o.stereoTargetEyeIndex = (uint)_DepthSlice; -#endif - return o; -} - -#define TRANSFORM_TEX(tex,name) (tex.xy * name##_ST.xy + name##_ST.zw) - -#endif // UNITY_POSTFX_STDLIB diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/StdLib.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/StdLib.hlsl.meta deleted file mode 100644 index 853a9b933..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/StdLib.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 20aeae489f6be6a48aec52447f49169c -timeCreated: 1488887145 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/xRLib.hlsl b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/xRLib.hlsl deleted file mode 100644 index b3a21d74e..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/xRLib.hlsl +++ /dev/null @@ -1,98 +0,0 @@ -// VR/AR/xR lib - -#ifndef UNITY_POSTFX_XRLIB -#define UNITY_POSTFX_XRLIB - -#if defined(UNITY_SINGLE_PASS_STEREO) -CBUFFER_START(UnityStereoGlobals) - float4x4 unity_StereoMatrixP[2]; - float4x4 unity_StereoMatrixV[2]; - float4x4 unity_StereoMatrixInvV[2]; - float4x4 unity_StereoMatrixVP[2]; - - float4x4 unity_StereoCameraProjection[2]; - float4x4 unity_StereoCameraInvProjection[2]; - float4x4 unity_StereoWorldToCamera[2]; - float4x4 unity_StereoCameraToWorld[2]; - - float3 unity_StereoWorldSpaceCameraPos[2]; - float4 unity_StereoScaleOffset[2]; -CBUFFER_END - -CBUFFER_START(UnityStereoEyeIndex) - int unity_StereoEyeIndex; -CBUFFER_END -#endif - -float _RenderViewportScaleFactor; - -float2 UnityStereoScreenSpaceUVAdjust(float2 uv, float4 scaleAndOffset) -{ - return uv.xy * scaleAndOffset.xy + scaleAndOffset.zw; -} - -float4 UnityStereoScreenSpaceUVAdjust(float4 uv, float4 scaleAndOffset) -{ - return float4(UnityStereoScreenSpaceUVAdjust(uv.xy, scaleAndOffset), UnityStereoScreenSpaceUVAdjust(uv.zw, scaleAndOffset)); -} - -float2 UnityStereoClampScaleOffset(float2 uv, float4 scaleAndOffset) -{ - return clamp(uv, scaleAndOffset.zw, scaleAndOffset.zw + scaleAndOffset.xy); -} - -#if defined(UNITY_SINGLE_PASS_STEREO) -float2 TransformStereoScreenSpaceTex(float2 uv, float w) -{ - float4 scaleOffset = unity_StereoScaleOffset[unity_StereoEyeIndex]; - scaleOffset.xy *= _RenderViewportScaleFactor; - return uv.xy * scaleOffset.xy + scaleOffset.zw * w; -} - -float2 UnityStereoTransformScreenSpaceTex(float2 uv) -{ - return TransformStereoScreenSpaceTex(saturate(uv), 1.0); -} - -float4 UnityStereoTransformScreenSpaceTex(float4 uv) -{ - return float4(UnityStereoTransformScreenSpaceTex(uv.xy), UnityStereoTransformScreenSpaceTex(uv.zw)); -} - -float2 UnityStereoClamp(float2 uv) -{ - float4 scaleOffset = unity_StereoScaleOffset[unity_StereoEyeIndex]; - scaleOffset.xy *= _RenderViewportScaleFactor; - return UnityStereoClampScaleOffset(uv, scaleOffset); -} - -float4 UnityStereoAdjustedTexelSize(float4 texelSize) // Should take in _MainTex_TexelSize -{ - texelSize.x = texelSize.x * 2.0; // texelSize.x = 1/w. For a double-wide texture, the true resolution is given by 2/w. - texelSize.z = texelSize.z * 0.5; // texelSize.z = w. For a double-wide texture, the true size of the eye texture is given by w/2. - return texelSize; -} -#else -float2 TransformStereoScreenSpaceTex(float2 uv, float w) -{ - return uv * _RenderViewportScaleFactor; -} - -float2 UnityStereoTransformScreenSpaceTex(float2 uv) -{ - return TransformStereoScreenSpaceTex(saturate(uv), 1.0); -} - -float2 UnityStereoClamp(float2 uv) -{ - float4 scaleOffset = float4(_RenderViewportScaleFactor, _RenderViewportScaleFactor, 0.f, 0.f); - return UnityStereoClampScaleOffset(uv, scaleOffset); -} - -float4 UnityStereoAdjustedTexelSize(float4 texelSize) -{ - return texelSize; -} -#endif - -#endif // UNITY_POSTFX_XRLIB diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/xRLib.hlsl.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/xRLib.hlsl.meta deleted file mode 100644 index c32b44b20..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Shaders/xRLib.hlsl.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 981a66a12fced7a45b3c106b67167ab5 -timeCreated: 1497886257 -licenseType: Pro -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures.meta deleted file mode 100644 index fa6991884..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 180a4519fc4556c4fb5d941544b86398 -folderAsset: yes -timeCreated: 1488969093 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px.meta deleted file mode 100644 index 4d80a8d71..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: a46f66b7c3fc33547bd9093e960d9ab1 -folderAsset: yes -timeCreated: 1503659186 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_0.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_0.png deleted file mode 100644 index 29a91ffc0..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_0.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_0.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_0.png.meta deleted file mode 100644 index 2b29978e3..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_0.png.meta +++ /dev/null @@ -1,100 +0,0 @@ -fileFormatVersion: 2 -guid: 6017f374382d64245a0a4aab668e6f38 -timeCreated: 1503659186 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: iPhone - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Android - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: WebGL - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_1.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_1.png deleted file mode 100644 index bb842ea7f..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_1.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_1.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_1.png.meta deleted file mode 100644 index 786ef7f61..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_1.png.meta +++ /dev/null @@ -1,100 +0,0 @@ -fileFormatVersion: 2 -guid: 0f8fa14b3731cda4e947062e734d5e1e -timeCreated: 1503659186 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: iPhone - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Android - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: WebGL - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_2.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_2.png deleted file mode 100644 index 17b3b7eb9..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_2.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_2.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_2.png.meta deleted file mode 100644 index 4a875b7ba..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_2.png.meta +++ /dev/null @@ -1,100 +0,0 @@ -fileFormatVersion: 2 -guid: 1abfe0e165ca1e9428b455ffc9a2d9ef -timeCreated: 1503659186 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: iPhone - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Android - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: WebGL - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_3.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_3.png deleted file mode 100644 index eec51822c..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_3.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_3.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_3.png.meta deleted file mode 100644 index 4369ddddf..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_3.png.meta +++ /dev/null @@ -1,100 +0,0 @@ -fileFormatVersion: 2 -guid: c072b653e98a06e40857d76ca8c7eecd -timeCreated: 1503659187 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: iPhone - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Android - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: WebGL - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_4.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_4.png deleted file mode 100644 index 84bb96f2e..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_4.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_4.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_4.png.meta deleted file mode 100644 index 9e4b81489..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_4.png.meta +++ /dev/null @@ -1,100 +0,0 @@ -fileFormatVersion: 2 -guid: b52d5033b68309943a2386c270a90f44 -timeCreated: 1503659186 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: iPhone - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Android - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: WebGL - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_5.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_5.png deleted file mode 100644 index 296e728aa..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_5.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_5.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_5.png.meta deleted file mode 100644 index 867f72fa8..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_5.png.meta +++ /dev/null @@ -1,100 +0,0 @@ -fileFormatVersion: 2 -guid: acde5141d5f4f7a4188394bd52c4dc38 -timeCreated: 1503659186 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: iPhone - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Android - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: WebGL - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_6.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_6.png deleted file mode 100644 index d9da84662..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_6.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_6.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_6.png.meta deleted file mode 100644 index f4ae018cc..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_6.png.meta +++ /dev/null @@ -1,100 +0,0 @@ -fileFormatVersion: 2 -guid: 999434725cbc2be4eb54043b36efd4a8 -timeCreated: 1503659186 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: iPhone - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Android - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: WebGL - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_7.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_7.png deleted file mode 100644 index ab487a6c3..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_7.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_7.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_7.png.meta deleted file mode 100644 index c163c6ccb..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_7.png.meta +++ /dev/null @@ -1,100 +0,0 @@ -fileFormatVersion: 2 -guid: 70d0a1182b29d6347ac70374c3593bba -timeCreated: 1503659186 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: iPhone - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Android - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: WebGL - maxTextureSize: 256 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px.meta deleted file mode 100644 index abd1c77b0..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: eeecf288e8ae5be4692977cae1a3e077 -folderAsset: yes -timeCreated: 1488906458 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_0.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_0.png deleted file mode 100644 index d1920c63a..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_0.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_0.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_0.png.meta deleted file mode 100644 index a81381f13..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_0.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 50b54341495978843a6f85583ed4417d -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_1.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_1.png deleted file mode 100644 index 9d525e5a2..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_1.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_1.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_1.png.meta deleted file mode 100644 index cfa52cdc9..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_1.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 3c2f1fb7e4b66e74191b7c328ada52d9 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_10.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_10.png deleted file mode 100644 index ecadafb90..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_10.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_10.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_10.png.meta deleted file mode 100644 index b23f52c0a..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_10.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: afe1e502240079342a0a980484b6da8b -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_11.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_11.png deleted file mode 100644 index 923292a21..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_11.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_11.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_11.png.meta deleted file mode 100644 index 5430c15c5..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_11.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 771903fe7b4674445829e52e91cff019 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_12.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_12.png deleted file mode 100644 index 2077a1a63..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_12.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_12.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_12.png.meta deleted file mode 100644 index 6affbc581..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_12.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 980acadb960f8424c94307ec0e585b4e -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_13.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_13.png deleted file mode 100644 index 491f4c0e2..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_13.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_13.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_13.png.meta deleted file mode 100644 index a60c748f0..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_13.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 68613e6a221be1a4b9f31d7fa1c2d1bf -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_14.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_14.png deleted file mode 100644 index 3093572e2..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_14.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_14.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_14.png.meta deleted file mode 100644 index 47e341945..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_14.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: f6439b54b28f3884eb67579dec0b6f21 -timeCreated: 1485107929 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_15.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_15.png deleted file mode 100644 index ece485dcf..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_15.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_15.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_15.png.meta deleted file mode 100644 index 952023ff8..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_15.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 2ee161d8945169243b5698fec114e1b7 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_16.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_16.png deleted file mode 100644 index 8750ad630..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_16.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_16.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_16.png.meta deleted file mode 100644 index a9d7eb781..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_16.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 153f7d6dfbe713d4884df0f1e243ba92 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_17.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_17.png deleted file mode 100644 index bdee0f8a0..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_17.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_17.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_17.png.meta deleted file mode 100644 index f8ad95f36..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_17.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: bf95b6fdc179b0e4f890c841406193fc -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_18.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_18.png deleted file mode 100644 index 30c49f360..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_18.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_18.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_18.png.meta deleted file mode 100644 index c032f922b..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_18.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 74aca53eb7273624baffc2bf5e5cc173 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_19.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_19.png deleted file mode 100644 index 5180f1a97..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_19.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_19.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_19.png.meta deleted file mode 100644 index 287174fe8..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_19.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 729a3ae164bcb3b4380459386adcf331 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_2.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_2.png deleted file mode 100644 index f5912ee48..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_2.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_2.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_2.png.meta deleted file mode 100644 index cb2998328..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_2.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: a469f920b21fc7c4fb5b950917ce2fb2 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_20.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_20.png deleted file mode 100644 index 142489989..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_20.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_20.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_20.png.meta deleted file mode 100644 index 5e7ca30ec..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_20.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 6dda07f1420a968449cf4c6620c44d9f -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_21.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_21.png deleted file mode 100644 index d63401360..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_21.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_21.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_21.png.meta deleted file mode 100644 index 51de9484e..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_21.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: b7f000750830ddb4bbc80065b9314ce9 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_22.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_22.png deleted file mode 100644 index cb0a0ae3e..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_22.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_22.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_22.png.meta deleted file mode 100644 index 22ea61a68..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_22.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: df01d03f056c6f445b4b8a0ae054207c -timeCreated: 1485107929 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_23.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_23.png deleted file mode 100644 index b06379530..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_23.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_23.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_23.png.meta deleted file mode 100644 index d89cc9e2e..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_23.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: bfe953600e8fb1849a804ee08ace7b4c -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_24.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_24.png deleted file mode 100644 index f4debb8e5..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_24.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_24.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_24.png.meta deleted file mode 100644 index 3f569d763..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_24.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 32c6a5f7143b86c44bd5cdee2ff3f8ad -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_25.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_25.png deleted file mode 100644 index c20d7b259..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_25.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_25.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_25.png.meta deleted file mode 100644 index 8045a5e0b..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_25.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: f4b8ab78b57749d4e96d36f6d8a395d0 -timeCreated: 1485107929 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_26.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_26.png deleted file mode 100644 index 930ec4e2a..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_26.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_26.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_26.png.meta deleted file mode 100644 index 331064b5a..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_26.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 09f6c01f98a3ded4daf1afc52a3c260f -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_27.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_27.png deleted file mode 100644 index 06949cf2e..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_27.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_27.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_27.png.meta deleted file mode 100644 index 5665344d5..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_27.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: bdd06fb88ef36ed4a85dd506352c2d80 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_28.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_28.png deleted file mode 100644 index 9807e41f0..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_28.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_28.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_28.png.meta deleted file mode 100644 index 3bbb00d42..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_28.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 02c0a84bd64c6f044954d8bde9b46ec8 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_29.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_29.png deleted file mode 100644 index 413a86e08..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_29.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_29.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_29.png.meta deleted file mode 100644 index 527881a16..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_29.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: aa80dc44aa4fe4c43bb9d51d90cf2958 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_3.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_3.png deleted file mode 100644 index 767fc5859..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_3.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_3.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_3.png.meta deleted file mode 100644 index fbe528f8f..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_3.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 373f9bf6b0841af4ebf26d25e4a3f4e2 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_30.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_30.png deleted file mode 100644 index a1da55bbc..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_30.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_30.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_30.png.meta deleted file mode 100644 index dd61326fc..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_30.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 0fa10b21877c61b4db40ba5708815f81 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_31.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_31.png deleted file mode 100644 index e2961b5f8..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_31.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_31.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_31.png.meta deleted file mode 100644 index 8ed095094..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_31.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 6b0a189df0bd4d5448eaefb4e673ace8 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_32.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_32.png deleted file mode 100644 index 24d31e997..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_32.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_32.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_32.png.meta deleted file mode 100644 index c9e683347..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_32.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 87a5e40cc271ea648b583616f6ebe7fe -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_33.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_33.png deleted file mode 100644 index 3403d4dcb..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_33.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_33.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_33.png.meta deleted file mode 100644 index 7500baf08..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_33.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: b71bb466b71fd13449dd736f63caeb67 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_34.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_34.png deleted file mode 100644 index 2022cd9de..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_34.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_34.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_34.png.meta deleted file mode 100644 index 8a40dce3c..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_34.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 319b8e66db3faa4438cf6982e9c89b2f -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_35.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_35.png deleted file mode 100644 index bd9359c85..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_35.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_35.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_35.png.meta deleted file mode 100644 index 24a716de8..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_35.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 0a79c155edf9b2d429d4736abee5acdb -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_36.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_36.png deleted file mode 100644 index 22ed73a92..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_36.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_36.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_36.png.meta deleted file mode 100644 index e35210cfb..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_36.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 351e95d0e20a54849bd4ce5f9b498934 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_37.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_37.png deleted file mode 100644 index 6f84bb7bd..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_37.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_37.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_37.png.meta deleted file mode 100644 index af4db5a1a..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_37.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 1d6958e30e40a254dbe5a54c573eeb3c -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_38.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_38.png deleted file mode 100644 index d9c27fbcd..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_38.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_38.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_38.png.meta deleted file mode 100644 index 78b4dc4b8..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_38.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 9660a4ca1ca8425408ac25c641932977 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_39.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_39.png deleted file mode 100644 index 261014934..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_39.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_39.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_39.png.meta deleted file mode 100644 index 5f204ce79..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_39.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 547dbd5f858c74047ba3f213e4408307 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_4.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_4.png deleted file mode 100644 index 81cdc3d5f..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_4.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_4.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_4.png.meta deleted file mode 100644 index fe3a3921d..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_4.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 6fa5cf178eaaa5f42b820f636bb6e0bd -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_40.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_40.png deleted file mode 100644 index 8d9544600..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_40.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_40.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_40.png.meta deleted file mode 100644 index 3a71a40e3..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_40.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 1a9ce5640cde5934aae0022f020464a6 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_41.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_41.png deleted file mode 100644 index f6c01a6b4..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_41.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_41.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_41.png.meta deleted file mode 100644 index b7295d168..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_41.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: cd9006dc442cc244e89b3f492384d46a -timeCreated: 1485107929 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_42.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_42.png deleted file mode 100644 index 1d42c2f33..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_42.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_42.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_42.png.meta deleted file mode 100644 index 33ea83b1e..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_42.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: b266511438fae724f9d3ce6bd26583e8 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_43.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_43.png deleted file mode 100644 index 2f5c591f8..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_43.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_43.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_43.png.meta deleted file mode 100644 index 9526e702b..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_43.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 71bc1b6b66e8b784b972199b7e90204e -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_44.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_44.png deleted file mode 100644 index 765c01455..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_44.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_44.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_44.png.meta deleted file mode 100644 index 0b37eff47..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_44.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 15e54aa23a938444389469d53765d741 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_45.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_45.png deleted file mode 100644 index f335132f4..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_45.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_45.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_45.png.meta deleted file mode 100644 index 529ede37c..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_45.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: b9960364038cbfa4aa49d7b2032d3110 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_46.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_46.png deleted file mode 100644 index 5118df38c..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_46.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_46.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_46.png.meta deleted file mode 100644 index 06704ef5c..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_46.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 8ecbbcae4cc747a4abbc4adce795d25e -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_47.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_47.png deleted file mode 100644 index c22a6328d..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_47.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_47.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_47.png.meta deleted file mode 100644 index c1220ea20..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_47.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 1378a33cdd085d64c9da863d2484ff21 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_48.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_48.png deleted file mode 100644 index 782c38080..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_48.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_48.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_48.png.meta deleted file mode 100644 index f8a6e3b8c..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_48.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: aff59c63d25d43f4c938f248837c30fb -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_49.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_49.png deleted file mode 100644 index 34d36e62f..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_49.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_49.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_49.png.meta deleted file mode 100644 index 96d988696..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_49.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 3f7c3687170b90e4a8d2ee6b142670f4 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_5.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_5.png deleted file mode 100644 index 90a715a02..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_5.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_5.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_5.png.meta deleted file mode 100644 index adac8ba0f..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_5.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: a1ae041906217ae44a774d4ca139af50 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_50.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_50.png deleted file mode 100644 index df80595b3..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_50.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_50.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_50.png.meta deleted file mode 100644 index 80df0a1ed..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_50.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: d8c290e38ff0425409d0ae6a98c95e41 -timeCreated: 1485107929 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_51.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_51.png deleted file mode 100644 index ed9f2d368..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_51.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_51.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_51.png.meta deleted file mode 100644 index ff82bfdd9..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_51.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: d5a51525b27e3ee4aadbeb39cbcf0750 -timeCreated: 1485107929 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_52.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_52.png deleted file mode 100644 index be2c6fe86..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_52.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_52.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_52.png.meta deleted file mode 100644 index dc39ab106..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_52.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: d2e8e90fac2e6a341a38e1c3963c218d -timeCreated: 1485107929 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_53.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_53.png deleted file mode 100644 index c22649157..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_53.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_53.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_53.png.meta deleted file mode 100644 index 202abf53a..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_53.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: c94b57b5a32a22d43ade66e09f6a4bd2 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_54.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_54.png deleted file mode 100644 index 3b6bbb8e2..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_54.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_54.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_54.png.meta deleted file mode 100644 index 0a0a81a44..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_54.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 936dea238abb0864ab3985a995e16a29 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_55.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_55.png deleted file mode 100644 index 261291ab6..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_55.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_55.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_55.png.meta deleted file mode 100644 index 35ba219ea..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_55.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 5e542d0126a2c7848b66bffc428905fd -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_56.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_56.png deleted file mode 100644 index 7d8b29828..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_56.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_56.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_56.png.meta deleted file mode 100644 index d9c49cba0..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_56.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 70f23eaf7d8ae9147aa542d20e93733b -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_57.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_57.png deleted file mode 100644 index 97fe687c1..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_57.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_57.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_57.png.meta deleted file mode 100644 index aa0329025..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_57.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: e138166e7a7c70f49943be7edda35d35 -timeCreated: 1485107929 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_58.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_58.png deleted file mode 100644 index 9c0165985..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_58.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_58.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_58.png.meta deleted file mode 100644 index 3ac47bc54..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_58.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 85a45a6d8b2ffb84987d2b028ecfb220 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_59.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_59.png deleted file mode 100644 index 805a44e97..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_59.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_59.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_59.png.meta deleted file mode 100644 index be2d61381..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_59.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: d96974690c77f50489eb60ec84bd8dac -timeCreated: 1485107929 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_6.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_6.png deleted file mode 100644 index 326b1d3af..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_6.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_6.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_6.png.meta deleted file mode 100644 index 82ca96026..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_6.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 79b86f3419b87f3429164a956da8cfab -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_60.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_60.png deleted file mode 100644 index 5307242a1..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_60.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_60.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_60.png.meta deleted file mode 100644 index 9add371a0..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_60.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 404fa8def46b1c447817e1ebdaa7144e -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_61.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_61.png deleted file mode 100644 index 623794c32..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_61.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_61.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_61.png.meta deleted file mode 100644 index 8d50446ed..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_61.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 119591e0bb084e848835d237546b3882 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_62.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_62.png deleted file mode 100644 index d4b4f70be..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_62.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_62.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_62.png.meta deleted file mode 100644 index 6c4ec71d4..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_62.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: a03c400b0e3959f428ee99dfc6cfc263 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_63.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_63.png deleted file mode 100644 index 1746cc15b..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_63.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_63.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_63.png.meta deleted file mode 100644 index b23dbd08f..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_63.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 4a11d65ce13d5f542a0ff136cc2f3fba -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_7.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_7.png deleted file mode 100644 index 0a396d3f7..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_7.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_7.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_7.png.meta deleted file mode 100644 index eb464acff..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_7.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 3ac02e7e783571c468f9c086d2384ba7 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_8.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_8.png deleted file mode 100644 index 0b5d32e17..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_8.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_8.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_8.png.meta deleted file mode 100644 index 242fe69e7..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_8.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: c55042318a938344ab23cd7f09dd0076 -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_9.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_9.png deleted file mode 100644 index 2beb747f1..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_9.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_9.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_9.png.meta deleted file mode 100644 index 5f8db7a86..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_9.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 71583cfd8899717428d5b1a95fa39cda -timeCreated: 1485107928 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 64 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes.meta deleted file mode 100644 index 0d6b58575..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 32330dbb76fcb1f43a2c85bbcbf1cf1c -folderAsset: yes -timeCreated: 1496742837 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/Linear to Unity Log r1.cube b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/Linear to Unity Log r1.cube deleted file mode 100644 index 0ff910b74..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/Linear to Unity Log r1.cube +++ /dev/null @@ -1,35941 +0,0 @@ -TITLE "Linear to Unity Log r1" -LUT_3D_SIZE 33 -DOMAIN_MIN 0 0 0 -DOMAIN_MAX 1 1 1 -0.092819 0.092819 0.092819 -0.2262531 0.092819 0.092819 -0.2875993 0.092819 0.092819 -0.3262122 0.092819 0.092819 -0.3544566 0.092819 0.092819 -0.3767383 0.092819 0.092819 -0.3951413 0.092819 0.092819 -0.4108177 0.092819 0.092819 -0.4244723 0.092819 0.092819 -0.4365675 0.092819 0.092819 -0.4474232 0.092819 0.092819 -0.45727 0.092819 0.092819 -0.4662797 0.092819 0.092819 -0.4745834 0.092819 0.092819 -0.4822838 0.092819 0.092819 -0.4894626 0.092819 0.092819 -0.4961862 0.092819 0.092819 -0.5025087 0.092819 0.092819 -0.5084753 0.092819 0.092819 -0.514124 0.092819 0.092819 -0.519487 0.092819 0.092819 -0.5245917 0.092819 0.092819 -0.529462 0.092819 0.092819 -0.5341183 0.092819 0.092819 -0.5385787 0.092819 0.092819 -0.5428591 0.092819 0.092819 -0.5469733 0.092819 0.092819 -0.5509339 0.092819 0.092819 -0.5547519 0.092819 0.092819 -0.5584371 0.092819 0.092819 -0.5619986 0.092819 0.092819 -0.5654443 0.092819 0.092819 -0.5687816 0.092819 0.092819 -0.092819 0.2262531 0.092819 -0.2262531 0.2262531 0.092819 -0.2875993 0.2262531 0.092819 -0.3262122 0.2262531 0.092819 -0.3544566 0.2262531 0.092819 -0.3767383 0.2262531 0.092819 -0.3951413 0.2262531 0.092819 -0.4108177 0.2262531 0.092819 -0.4244723 0.2262531 0.092819 -0.4365675 0.2262531 0.092819 -0.4474232 0.2262531 0.092819 -0.45727 0.2262531 0.092819 -0.4662797 0.2262531 0.092819 -0.4745834 0.2262531 0.092819 -0.4822838 0.2262531 0.092819 -0.4894626 0.2262531 0.092819 -0.4961862 0.2262531 0.092819 -0.5025087 0.2262531 0.092819 -0.5084753 0.2262531 0.092819 -0.514124 0.2262531 0.092819 -0.519487 0.2262531 0.092819 -0.5245917 0.2262531 0.092819 -0.529462 0.2262531 0.092819 -0.5341183 0.2262531 0.092819 -0.5385787 0.2262531 0.092819 -0.5428591 0.2262531 0.092819 -0.5469733 0.2262531 0.092819 -0.5509339 0.2262531 0.092819 -0.5547519 0.2262531 0.092819 -0.5584371 0.2262531 0.092819 -0.5619986 0.2262531 0.092819 -0.5654443 0.2262531 0.092819 -0.5687816 0.2262531 0.092819 -0.092819 0.2875993 0.092819 -0.2262531 0.2875993 0.092819 -0.2875993 0.2875993 0.092819 -0.3262122 0.2875993 0.092819 -0.3544566 0.2875993 0.092819 -0.3767383 0.2875993 0.092819 -0.3951413 0.2875993 0.092819 -0.4108177 0.2875993 0.092819 -0.4244723 0.2875993 0.092819 -0.4365675 0.2875993 0.092819 -0.4474232 0.2875993 0.092819 -0.45727 0.2875993 0.092819 -0.4662797 0.2875993 0.092819 -0.4745834 0.2875993 0.092819 -0.4822838 0.2875993 0.092819 -0.4894626 0.2875993 0.092819 -0.4961862 0.2875993 0.092819 -0.5025087 0.2875993 0.092819 -0.5084753 0.2875993 0.092819 -0.514124 0.2875993 0.092819 -0.519487 0.2875993 0.092819 -0.5245917 0.2875993 0.092819 -0.529462 0.2875993 0.092819 -0.5341183 0.2875993 0.092819 -0.5385787 0.2875993 0.092819 -0.5428591 0.2875993 0.092819 -0.5469733 0.2875993 0.092819 -0.5509339 0.2875993 0.092819 -0.5547519 0.2875993 0.092819 -0.5584371 0.2875993 0.092819 -0.5619986 0.2875993 0.092819 -0.5654443 0.2875993 0.092819 -0.5687816 0.2875993 0.092819 -0.092819 0.3262122 0.092819 -0.2262531 0.3262122 0.092819 -0.2875993 0.3262122 0.092819 -0.3262122 0.3262122 0.092819 -0.3544566 0.3262122 0.092819 -0.3767383 0.3262122 0.092819 -0.3951413 0.3262122 0.092819 -0.4108177 0.3262122 0.092819 -0.4244723 0.3262122 0.092819 -0.4365675 0.3262122 0.092819 -0.4474232 0.3262122 0.092819 -0.45727 0.3262122 0.092819 -0.4662797 0.3262122 0.092819 -0.4745834 0.3262122 0.092819 -0.4822838 0.3262122 0.092819 -0.4894626 0.3262122 0.092819 -0.4961862 0.3262122 0.092819 -0.5025087 0.3262122 0.092819 -0.5084753 0.3262122 0.092819 -0.514124 0.3262122 0.092819 -0.519487 0.3262122 0.092819 -0.5245917 0.3262122 0.092819 -0.529462 0.3262122 0.092819 -0.5341183 0.3262122 0.092819 -0.5385787 0.3262122 0.092819 -0.5428591 0.3262122 0.092819 -0.5469733 0.3262122 0.092819 -0.5509339 0.3262122 0.092819 -0.5547519 0.3262122 0.092819 -0.5584371 0.3262122 0.092819 -0.5619986 0.3262122 0.092819 -0.5654443 0.3262122 0.092819 -0.5687816 0.3262122 0.092819 -0.092819 0.3544566 0.092819 -0.2262531 0.3544566 0.092819 -0.2875993 0.3544566 0.092819 -0.3262122 0.3544566 0.092819 -0.3544566 0.3544566 0.092819 -0.3767383 0.3544566 0.092819 -0.3951413 0.3544566 0.092819 -0.4108177 0.3544566 0.092819 -0.4244723 0.3544566 0.092819 -0.4365675 0.3544566 0.092819 -0.4474232 0.3544566 0.092819 -0.45727 0.3544566 0.092819 -0.4662797 0.3544566 0.092819 -0.4745834 0.3544566 0.092819 -0.4822838 0.3544566 0.092819 -0.4894626 0.3544566 0.092819 -0.4961862 0.3544566 0.092819 -0.5025087 0.3544566 0.092819 -0.5084753 0.3544566 0.092819 -0.514124 0.3544566 0.092819 -0.519487 0.3544566 0.092819 -0.5245917 0.3544566 0.092819 -0.529462 0.3544566 0.092819 -0.5341183 0.3544566 0.092819 -0.5385787 0.3544566 0.092819 -0.5428591 0.3544566 0.092819 -0.5469733 0.3544566 0.092819 -0.5509339 0.3544566 0.092819 -0.5547519 0.3544566 0.092819 -0.5584371 0.3544566 0.092819 -0.5619986 0.3544566 0.092819 -0.5654443 0.3544566 0.092819 -0.5687816 0.3544566 0.092819 -0.092819 0.3767383 0.092819 -0.2262531 0.3767383 0.092819 -0.2875993 0.3767383 0.092819 -0.3262122 0.3767383 0.092819 -0.3544566 0.3767383 0.092819 -0.3767383 0.3767383 0.092819 -0.3951413 0.3767383 0.092819 -0.4108177 0.3767383 0.092819 -0.4244723 0.3767383 0.092819 -0.4365675 0.3767383 0.092819 -0.4474232 0.3767383 0.092819 -0.45727 0.3767383 0.092819 -0.4662797 0.3767383 0.092819 -0.4745834 0.3767383 0.092819 -0.4822838 0.3767383 0.092819 -0.4894626 0.3767383 0.092819 -0.4961862 0.3767383 0.092819 -0.5025087 0.3767383 0.092819 -0.5084753 0.3767383 0.092819 -0.514124 0.3767383 0.092819 -0.519487 0.3767383 0.092819 -0.5245917 0.3767383 0.092819 -0.529462 0.3767383 0.092819 -0.5341183 0.3767383 0.092819 -0.5385787 0.3767383 0.092819 -0.5428591 0.3767383 0.092819 -0.5469733 0.3767383 0.092819 -0.5509339 0.3767383 0.092819 -0.5547519 0.3767383 0.092819 -0.5584371 0.3767383 0.092819 -0.5619986 0.3767383 0.092819 -0.5654443 0.3767383 0.092819 -0.5687816 0.3767383 0.092819 -0.092819 0.3951413 0.092819 -0.2262531 0.3951413 0.092819 -0.2875993 0.3951413 0.092819 -0.3262122 0.3951413 0.092819 -0.3544566 0.3951413 0.092819 -0.3767383 0.3951413 0.092819 -0.3951413 0.3951413 0.092819 -0.4108177 0.3951413 0.092819 -0.4244723 0.3951413 0.092819 -0.4365675 0.3951413 0.092819 -0.4474232 0.3951413 0.092819 -0.45727 0.3951413 0.092819 -0.4662797 0.3951413 0.092819 -0.4745834 0.3951413 0.092819 -0.4822838 0.3951413 0.092819 -0.4894626 0.3951413 0.092819 -0.4961862 0.3951413 0.092819 -0.5025087 0.3951413 0.092819 -0.5084753 0.3951413 0.092819 -0.514124 0.3951413 0.092819 -0.519487 0.3951413 0.092819 -0.5245917 0.3951413 0.092819 -0.529462 0.3951413 0.092819 -0.5341183 0.3951413 0.092819 -0.5385787 0.3951413 0.092819 -0.5428591 0.3951413 0.092819 -0.5469733 0.3951413 0.092819 -0.5509339 0.3951413 0.092819 -0.5547519 0.3951413 0.092819 -0.5584371 0.3951413 0.092819 -0.5619986 0.3951413 0.092819 -0.5654443 0.3951413 0.092819 -0.5687816 0.3951413 0.092819 -0.092819 0.4108177 0.092819 -0.2262531 0.4108177 0.092819 -0.2875993 0.4108177 0.092819 -0.3262122 0.4108177 0.092819 -0.3544566 0.4108177 0.092819 -0.3767383 0.4108177 0.092819 -0.3951413 0.4108177 0.092819 -0.4108177 0.4108177 0.092819 -0.4244723 0.4108177 0.092819 -0.4365675 0.4108177 0.092819 -0.4474232 0.4108177 0.092819 -0.45727 0.4108177 0.092819 -0.4662797 0.4108177 0.092819 -0.4745834 0.4108177 0.092819 -0.4822838 0.4108177 0.092819 -0.4894626 0.4108177 0.092819 -0.4961862 0.4108177 0.092819 -0.5025087 0.4108177 0.092819 -0.5084753 0.4108177 0.092819 -0.514124 0.4108177 0.092819 -0.519487 0.4108177 0.092819 -0.5245917 0.4108177 0.092819 -0.529462 0.4108177 0.092819 -0.5341183 0.4108177 0.092819 -0.5385787 0.4108177 0.092819 -0.5428591 0.4108177 0.092819 -0.5469733 0.4108177 0.092819 -0.5509339 0.4108177 0.092819 -0.5547519 0.4108177 0.092819 -0.5584371 0.4108177 0.092819 -0.5619986 0.4108177 0.092819 -0.5654443 0.4108177 0.092819 -0.5687816 0.4108177 0.092819 -0.092819 0.4244723 0.092819 -0.2262531 0.4244723 0.092819 -0.2875993 0.4244723 0.092819 -0.3262122 0.4244723 0.092819 -0.3544566 0.4244723 0.092819 -0.3767383 0.4244723 0.092819 -0.3951413 0.4244723 0.092819 -0.4108177 0.4244723 0.092819 -0.4244723 0.4244723 0.092819 -0.4365675 0.4244723 0.092819 -0.4474232 0.4244723 0.092819 -0.45727 0.4244723 0.092819 -0.4662797 0.4244723 0.092819 -0.4745834 0.4244723 0.092819 -0.4822838 0.4244723 0.092819 -0.4894626 0.4244723 0.092819 -0.4961862 0.4244723 0.092819 -0.5025087 0.4244723 0.092819 -0.5084753 0.4244723 0.092819 -0.514124 0.4244723 0.092819 -0.519487 0.4244723 0.092819 -0.5245917 0.4244723 0.092819 -0.529462 0.4244723 0.092819 -0.5341183 0.4244723 0.092819 -0.5385787 0.4244723 0.092819 -0.5428591 0.4244723 0.092819 -0.5469733 0.4244723 0.092819 -0.5509339 0.4244723 0.092819 -0.5547519 0.4244723 0.092819 -0.5584371 0.4244723 0.092819 -0.5619986 0.4244723 0.092819 -0.5654443 0.4244723 0.092819 -0.5687816 0.4244723 0.092819 -0.092819 0.4365675 0.092819 -0.2262531 0.4365675 0.092819 -0.2875993 0.4365675 0.092819 -0.3262122 0.4365675 0.092819 -0.3544566 0.4365675 0.092819 -0.3767383 0.4365675 0.092819 -0.3951413 0.4365675 0.092819 -0.4108177 0.4365675 0.092819 -0.4244723 0.4365675 0.092819 -0.4365675 0.4365675 0.092819 -0.4474232 0.4365675 0.092819 -0.45727 0.4365675 0.092819 -0.4662797 0.4365675 0.092819 -0.4745834 0.4365675 0.092819 -0.4822838 0.4365675 0.092819 -0.4894626 0.4365675 0.092819 -0.4961862 0.4365675 0.092819 -0.5025087 0.4365675 0.092819 -0.5084753 0.4365675 0.092819 -0.514124 0.4365675 0.092819 -0.519487 0.4365675 0.092819 -0.5245917 0.4365675 0.092819 -0.529462 0.4365675 0.092819 -0.5341183 0.4365675 0.092819 -0.5385787 0.4365675 0.092819 -0.5428591 0.4365675 0.092819 -0.5469733 0.4365675 0.092819 -0.5509339 0.4365675 0.092819 -0.5547519 0.4365675 0.092819 -0.5584371 0.4365675 0.092819 -0.5619986 0.4365675 0.092819 -0.5654443 0.4365675 0.092819 -0.5687816 0.4365675 0.092819 -0.092819 0.4474232 0.092819 -0.2262531 0.4474232 0.092819 -0.2875993 0.4474232 0.092819 -0.3262122 0.4474232 0.092819 -0.3544566 0.4474232 0.092819 -0.3767383 0.4474232 0.092819 -0.3951413 0.4474232 0.092819 -0.4108177 0.4474232 0.092819 -0.4244723 0.4474232 0.092819 -0.4365675 0.4474232 0.092819 -0.4474232 0.4474232 0.092819 -0.45727 0.4474232 0.092819 -0.4662797 0.4474232 0.092819 -0.4745834 0.4474232 0.092819 -0.4822838 0.4474232 0.092819 -0.4894626 0.4474232 0.092819 -0.4961862 0.4474232 0.092819 -0.5025087 0.4474232 0.092819 -0.5084753 0.4474232 0.092819 -0.514124 0.4474232 0.092819 -0.519487 0.4474232 0.092819 -0.5245917 0.4474232 0.092819 -0.529462 0.4474232 0.092819 -0.5341183 0.4474232 0.092819 -0.5385787 0.4474232 0.092819 -0.5428591 0.4474232 0.092819 -0.5469733 0.4474232 0.092819 -0.5509339 0.4474232 0.092819 -0.5547519 0.4474232 0.092819 -0.5584371 0.4474232 0.092819 -0.5619986 0.4474232 0.092819 -0.5654443 0.4474232 0.092819 -0.5687816 0.4474232 0.092819 -0.092819 0.45727 0.092819 -0.2262531 0.45727 0.092819 -0.2875993 0.45727 0.092819 -0.3262122 0.45727 0.092819 -0.3544566 0.45727 0.092819 -0.3767383 0.45727 0.092819 -0.3951413 0.45727 0.092819 -0.4108177 0.45727 0.092819 -0.4244723 0.45727 0.092819 -0.4365675 0.45727 0.092819 -0.4474232 0.45727 0.092819 -0.45727 0.45727 0.092819 -0.4662797 0.45727 0.092819 -0.4745834 0.45727 0.092819 -0.4822838 0.45727 0.092819 -0.4894626 0.45727 0.092819 -0.4961862 0.45727 0.092819 -0.5025087 0.45727 0.092819 -0.5084753 0.45727 0.092819 -0.514124 0.45727 0.092819 -0.519487 0.45727 0.092819 -0.5245917 0.45727 0.092819 -0.529462 0.45727 0.092819 -0.5341183 0.45727 0.092819 -0.5385787 0.45727 0.092819 -0.5428591 0.45727 0.092819 -0.5469733 0.45727 0.092819 -0.5509339 0.45727 0.092819 -0.5547519 0.45727 0.092819 -0.5584371 0.45727 0.092819 -0.5619986 0.45727 0.092819 -0.5654443 0.45727 0.092819 -0.5687816 0.45727 0.092819 -0.092819 0.4662797 0.092819 -0.2262531 0.4662797 0.092819 -0.2875993 0.4662797 0.092819 -0.3262122 0.4662797 0.092819 -0.3544566 0.4662797 0.092819 -0.3767383 0.4662797 0.092819 -0.3951413 0.4662797 0.092819 -0.4108177 0.4662797 0.092819 -0.4244723 0.4662797 0.092819 -0.4365675 0.4662797 0.092819 -0.4474232 0.4662797 0.092819 -0.45727 0.4662797 0.092819 -0.4662797 0.4662797 0.092819 -0.4745834 0.4662797 0.092819 -0.4822838 0.4662797 0.092819 -0.4894626 0.4662797 0.092819 -0.4961862 0.4662797 0.092819 -0.5025087 0.4662797 0.092819 -0.5084753 0.4662797 0.092819 -0.514124 0.4662797 0.092819 -0.519487 0.4662797 0.092819 -0.5245917 0.4662797 0.092819 -0.529462 0.4662797 0.092819 -0.5341183 0.4662797 0.092819 -0.5385787 0.4662797 0.092819 -0.5428591 0.4662797 0.092819 -0.5469733 0.4662797 0.092819 -0.5509339 0.4662797 0.092819 -0.5547519 0.4662797 0.092819 -0.5584371 0.4662797 0.092819 -0.5619986 0.4662797 0.092819 -0.5654443 0.4662797 0.092819 -0.5687816 0.4662797 0.092819 -0.092819 0.4745834 0.092819 -0.2262531 0.4745834 0.092819 -0.2875993 0.4745834 0.092819 -0.3262122 0.4745834 0.092819 -0.3544566 0.4745834 0.092819 -0.3767383 0.4745834 0.092819 -0.3951413 0.4745834 0.092819 -0.4108177 0.4745834 0.092819 -0.4244723 0.4745834 0.092819 -0.4365675 0.4745834 0.092819 -0.4474232 0.4745834 0.092819 -0.45727 0.4745834 0.092819 -0.4662797 0.4745834 0.092819 -0.4745834 0.4745834 0.092819 -0.4822838 0.4745834 0.092819 -0.4894626 0.4745834 0.092819 -0.4961862 0.4745834 0.092819 -0.5025087 0.4745834 0.092819 -0.5084753 0.4745834 0.092819 -0.514124 0.4745834 0.092819 -0.519487 0.4745834 0.092819 -0.5245917 0.4745834 0.092819 -0.529462 0.4745834 0.092819 -0.5341183 0.4745834 0.092819 -0.5385787 0.4745834 0.092819 -0.5428591 0.4745834 0.092819 -0.5469733 0.4745834 0.092819 -0.5509339 0.4745834 0.092819 -0.5547519 0.4745834 0.092819 -0.5584371 0.4745834 0.092819 -0.5619986 0.4745834 0.092819 -0.5654443 0.4745834 0.092819 -0.5687816 0.4745834 0.092819 -0.092819 0.4822838 0.092819 -0.2262531 0.4822838 0.092819 -0.2875993 0.4822838 0.092819 -0.3262122 0.4822838 0.092819 -0.3544566 0.4822838 0.092819 -0.3767383 0.4822838 0.092819 -0.3951413 0.4822838 0.092819 -0.4108177 0.4822838 0.092819 -0.4244723 0.4822838 0.092819 -0.4365675 0.4822838 0.092819 -0.4474232 0.4822838 0.092819 -0.45727 0.4822838 0.092819 -0.4662797 0.4822838 0.092819 -0.4745834 0.4822838 0.092819 -0.4822838 0.4822838 0.092819 -0.4894626 0.4822838 0.092819 -0.4961862 0.4822838 0.092819 -0.5025087 0.4822838 0.092819 -0.5084753 0.4822838 0.092819 -0.514124 0.4822838 0.092819 -0.519487 0.4822838 0.092819 -0.5245917 0.4822838 0.092819 -0.529462 0.4822838 0.092819 -0.5341183 0.4822838 0.092819 -0.5385787 0.4822838 0.092819 -0.5428591 0.4822838 0.092819 -0.5469733 0.4822838 0.092819 -0.5509339 0.4822838 0.092819 -0.5547519 0.4822838 0.092819 -0.5584371 0.4822838 0.092819 -0.5619986 0.4822838 0.092819 -0.5654443 0.4822838 0.092819 -0.5687816 0.4822838 0.092819 -0.092819 0.4894626 0.092819 -0.2262531 0.4894626 0.092819 -0.2875993 0.4894626 0.092819 -0.3262122 0.4894626 0.092819 -0.3544566 0.4894626 0.092819 -0.3767383 0.4894626 0.092819 -0.3951413 0.4894626 0.092819 -0.4108177 0.4894626 0.092819 -0.4244723 0.4894626 0.092819 -0.4365675 0.4894626 0.092819 -0.4474232 0.4894626 0.092819 -0.45727 0.4894626 0.092819 -0.4662797 0.4894626 0.092819 -0.4745834 0.4894626 0.092819 -0.4822838 0.4894626 0.092819 -0.4894626 0.4894626 0.092819 -0.4961862 0.4894626 0.092819 -0.5025087 0.4894626 0.092819 -0.5084753 0.4894626 0.092819 -0.514124 0.4894626 0.092819 -0.519487 0.4894626 0.092819 -0.5245917 0.4894626 0.092819 -0.529462 0.4894626 0.092819 -0.5341183 0.4894626 0.092819 -0.5385787 0.4894626 0.092819 -0.5428591 0.4894626 0.092819 -0.5469733 0.4894626 0.092819 -0.5509339 0.4894626 0.092819 -0.5547519 0.4894626 0.092819 -0.5584371 0.4894626 0.092819 -0.5619986 0.4894626 0.092819 -0.5654443 0.4894626 0.092819 -0.5687816 0.4894626 0.092819 -0.092819 0.4961862 0.092819 -0.2262531 0.4961862 0.092819 -0.2875993 0.4961862 0.092819 -0.3262122 0.4961862 0.092819 -0.3544566 0.4961862 0.092819 -0.3767383 0.4961862 0.092819 -0.3951413 0.4961862 0.092819 -0.4108177 0.4961862 0.092819 -0.4244723 0.4961862 0.092819 -0.4365675 0.4961862 0.092819 -0.4474232 0.4961862 0.092819 -0.45727 0.4961862 0.092819 -0.4662797 0.4961862 0.092819 -0.4745834 0.4961862 0.092819 -0.4822838 0.4961862 0.092819 -0.4894626 0.4961862 0.092819 -0.4961862 0.4961862 0.092819 -0.5025087 0.4961862 0.092819 -0.5084753 0.4961862 0.092819 -0.514124 0.4961862 0.092819 -0.519487 0.4961862 0.092819 -0.5245917 0.4961862 0.092819 -0.529462 0.4961862 0.092819 -0.5341183 0.4961862 0.092819 -0.5385787 0.4961862 0.092819 -0.5428591 0.4961862 0.092819 -0.5469733 0.4961862 0.092819 -0.5509339 0.4961862 0.092819 -0.5547519 0.4961862 0.092819 -0.5584371 0.4961862 0.092819 -0.5619986 0.4961862 0.092819 -0.5654443 0.4961862 0.092819 -0.5687816 0.4961862 0.092819 -0.092819 0.5025087 0.092819 -0.2262531 0.5025087 0.092819 -0.2875993 0.5025087 0.092819 -0.3262122 0.5025087 0.092819 -0.3544566 0.5025087 0.092819 -0.3767383 0.5025087 0.092819 -0.3951413 0.5025087 0.092819 -0.4108177 0.5025087 0.092819 -0.4244723 0.5025087 0.092819 -0.4365675 0.5025087 0.092819 -0.4474232 0.5025087 0.092819 -0.45727 0.5025087 0.092819 -0.4662797 0.5025087 0.092819 -0.4745834 0.5025087 0.092819 -0.4822838 0.5025087 0.092819 -0.4894626 0.5025087 0.092819 -0.4961862 0.5025087 0.092819 -0.5025087 0.5025087 0.092819 -0.5084753 0.5025087 0.092819 -0.514124 0.5025087 0.092819 -0.519487 0.5025087 0.092819 -0.5245917 0.5025087 0.092819 -0.529462 0.5025087 0.092819 -0.5341183 0.5025087 0.092819 -0.5385787 0.5025087 0.092819 -0.5428591 0.5025087 0.092819 -0.5469733 0.5025087 0.092819 -0.5509339 0.5025087 0.092819 -0.5547519 0.5025087 0.092819 -0.5584371 0.5025087 0.092819 -0.5619986 0.5025087 0.092819 -0.5654443 0.5025087 0.092819 -0.5687816 0.5025087 0.092819 -0.092819 0.5084753 0.092819 -0.2262531 0.5084753 0.092819 -0.2875993 0.5084753 0.092819 -0.3262122 0.5084753 0.092819 -0.3544566 0.5084753 0.092819 -0.3767383 0.5084753 0.092819 -0.3951413 0.5084753 0.092819 -0.4108177 0.5084753 0.092819 -0.4244723 0.5084753 0.092819 -0.4365675 0.5084753 0.092819 -0.4474232 0.5084753 0.092819 -0.45727 0.5084753 0.092819 -0.4662797 0.5084753 0.092819 -0.4745834 0.5084753 0.092819 -0.4822838 0.5084753 0.092819 -0.4894626 0.5084753 0.092819 -0.4961862 0.5084753 0.092819 -0.5025087 0.5084753 0.092819 -0.5084753 0.5084753 0.092819 -0.514124 0.5084753 0.092819 -0.519487 0.5084753 0.092819 -0.5245917 0.5084753 0.092819 -0.529462 0.5084753 0.092819 -0.5341183 0.5084753 0.092819 -0.5385787 0.5084753 0.092819 -0.5428591 0.5084753 0.092819 -0.5469733 0.5084753 0.092819 -0.5509339 0.5084753 0.092819 -0.5547519 0.5084753 0.092819 -0.5584371 0.5084753 0.092819 -0.5619986 0.5084753 0.092819 -0.5654443 0.5084753 0.092819 -0.5687816 0.5084753 0.092819 -0.092819 0.514124 0.092819 -0.2262531 0.514124 0.092819 -0.2875993 0.514124 0.092819 -0.3262122 0.514124 0.092819 -0.3544566 0.514124 0.092819 -0.3767383 0.514124 0.092819 -0.3951413 0.514124 0.092819 -0.4108177 0.514124 0.092819 -0.4244723 0.514124 0.092819 -0.4365675 0.514124 0.092819 -0.4474232 0.514124 0.092819 -0.45727 0.514124 0.092819 -0.4662797 0.514124 0.092819 -0.4745834 0.514124 0.092819 -0.4822838 0.514124 0.092819 -0.4894626 0.514124 0.092819 -0.4961862 0.514124 0.092819 -0.5025087 0.514124 0.092819 -0.5084753 0.514124 0.092819 -0.514124 0.514124 0.092819 -0.519487 0.514124 0.092819 -0.5245917 0.514124 0.092819 -0.529462 0.514124 0.092819 -0.5341183 0.514124 0.092819 -0.5385787 0.514124 0.092819 -0.5428591 0.514124 0.092819 -0.5469733 0.514124 0.092819 -0.5509339 0.514124 0.092819 -0.5547519 0.514124 0.092819 -0.5584371 0.514124 0.092819 -0.5619986 0.514124 0.092819 -0.5654443 0.514124 0.092819 -0.5687816 0.514124 0.092819 -0.092819 0.519487 0.092819 -0.2262531 0.519487 0.092819 -0.2875993 0.519487 0.092819 -0.3262122 0.519487 0.092819 -0.3544566 0.519487 0.092819 -0.3767383 0.519487 0.092819 -0.3951413 0.519487 0.092819 -0.4108177 0.519487 0.092819 -0.4244723 0.519487 0.092819 -0.4365675 0.519487 0.092819 -0.4474232 0.519487 0.092819 -0.45727 0.519487 0.092819 -0.4662797 0.519487 0.092819 -0.4745834 0.519487 0.092819 -0.4822838 0.519487 0.092819 -0.4894626 0.519487 0.092819 -0.4961862 0.519487 0.092819 -0.5025087 0.519487 0.092819 -0.5084753 0.519487 0.092819 -0.514124 0.519487 0.092819 -0.519487 0.519487 0.092819 -0.5245917 0.519487 0.092819 -0.529462 0.519487 0.092819 -0.5341183 0.519487 0.092819 -0.5385787 0.519487 0.092819 -0.5428591 0.519487 0.092819 -0.5469733 0.519487 0.092819 -0.5509339 0.519487 0.092819 -0.5547519 0.519487 0.092819 -0.5584371 0.519487 0.092819 -0.5619986 0.519487 0.092819 -0.5654443 0.519487 0.092819 -0.5687816 0.519487 0.092819 -0.092819 0.5245917 0.092819 -0.2262531 0.5245917 0.092819 -0.2875993 0.5245917 0.092819 -0.3262122 0.5245917 0.092819 -0.3544566 0.5245917 0.092819 -0.3767383 0.5245917 0.092819 -0.3951413 0.5245917 0.092819 -0.4108177 0.5245917 0.092819 -0.4244723 0.5245917 0.092819 -0.4365675 0.5245917 0.092819 -0.4474232 0.5245917 0.092819 -0.45727 0.5245917 0.092819 -0.4662797 0.5245917 0.092819 -0.4745834 0.5245917 0.092819 -0.4822838 0.5245917 0.092819 -0.4894626 0.5245917 0.092819 -0.4961862 0.5245917 0.092819 -0.5025087 0.5245917 0.092819 -0.5084753 0.5245917 0.092819 -0.514124 0.5245917 0.092819 -0.519487 0.5245917 0.092819 -0.5245917 0.5245917 0.092819 -0.529462 0.5245917 0.092819 -0.5341183 0.5245917 0.092819 -0.5385787 0.5245917 0.092819 -0.5428591 0.5245917 0.092819 -0.5469733 0.5245917 0.092819 -0.5509339 0.5245917 0.092819 -0.5547519 0.5245917 0.092819 -0.5584371 0.5245917 0.092819 -0.5619986 0.5245917 0.092819 -0.5654443 0.5245917 0.092819 -0.5687816 0.5245917 0.092819 -0.092819 0.529462 0.092819 -0.2262531 0.529462 0.092819 -0.2875993 0.529462 0.092819 -0.3262122 0.529462 0.092819 -0.3544566 0.529462 0.092819 -0.3767383 0.529462 0.092819 -0.3951413 0.529462 0.092819 -0.4108177 0.529462 0.092819 -0.4244723 0.529462 0.092819 -0.4365675 0.529462 0.092819 -0.4474232 0.529462 0.092819 -0.45727 0.529462 0.092819 -0.4662797 0.529462 0.092819 -0.4745834 0.529462 0.092819 -0.4822838 0.529462 0.092819 -0.4894626 0.529462 0.092819 -0.4961862 0.529462 0.092819 -0.5025087 0.529462 0.092819 -0.5084753 0.529462 0.092819 -0.514124 0.529462 0.092819 -0.519487 0.529462 0.092819 -0.5245917 0.529462 0.092819 -0.529462 0.529462 0.092819 -0.5341183 0.529462 0.092819 -0.5385787 0.529462 0.092819 -0.5428591 0.529462 0.092819 -0.5469733 0.529462 0.092819 -0.5509339 0.529462 0.092819 -0.5547519 0.529462 0.092819 -0.5584371 0.529462 0.092819 -0.5619986 0.529462 0.092819 -0.5654443 0.529462 0.092819 -0.5687816 0.529462 0.092819 -0.092819 0.5341183 0.092819 -0.2262531 0.5341183 0.092819 -0.2875993 0.5341183 0.092819 -0.3262122 0.5341183 0.092819 -0.3544566 0.5341183 0.092819 -0.3767383 0.5341183 0.092819 -0.3951413 0.5341183 0.092819 -0.4108177 0.5341183 0.092819 -0.4244723 0.5341183 0.092819 -0.4365675 0.5341183 0.092819 -0.4474232 0.5341183 0.092819 -0.45727 0.5341183 0.092819 -0.4662797 0.5341183 0.092819 -0.4745834 0.5341183 0.092819 -0.4822838 0.5341183 0.092819 -0.4894626 0.5341183 0.092819 -0.4961862 0.5341183 0.092819 -0.5025087 0.5341183 0.092819 -0.5084753 0.5341183 0.092819 -0.514124 0.5341183 0.092819 -0.519487 0.5341183 0.092819 -0.5245917 0.5341183 0.092819 -0.529462 0.5341183 0.092819 -0.5341183 0.5341183 0.092819 -0.5385787 0.5341183 0.092819 -0.5428591 0.5341183 0.092819 -0.5469733 0.5341183 0.092819 -0.5509339 0.5341183 0.092819 -0.5547519 0.5341183 0.092819 -0.5584371 0.5341183 0.092819 -0.5619986 0.5341183 0.092819 -0.5654443 0.5341183 0.092819 -0.5687816 0.5341183 0.092819 -0.092819 0.5385787 0.092819 -0.2262531 0.5385787 0.092819 -0.2875993 0.5385787 0.092819 -0.3262122 0.5385787 0.092819 -0.3544566 0.5385787 0.092819 -0.3767383 0.5385787 0.092819 -0.3951413 0.5385787 0.092819 -0.4108177 0.5385787 0.092819 -0.4244723 0.5385787 0.092819 -0.4365675 0.5385787 0.092819 -0.4474232 0.5385787 0.092819 -0.45727 0.5385787 0.092819 -0.4662797 0.5385787 0.092819 -0.4745834 0.5385787 0.092819 -0.4822838 0.5385787 0.092819 -0.4894626 0.5385787 0.092819 -0.4961862 0.5385787 0.092819 -0.5025087 0.5385787 0.092819 -0.5084753 0.5385787 0.092819 -0.514124 0.5385787 0.092819 -0.519487 0.5385787 0.092819 -0.5245917 0.5385787 0.092819 -0.529462 0.5385787 0.092819 -0.5341183 0.5385787 0.092819 -0.5385787 0.5385787 0.092819 -0.5428591 0.5385787 0.092819 -0.5469733 0.5385787 0.092819 -0.5509339 0.5385787 0.092819 -0.5547519 0.5385787 0.092819 -0.5584371 0.5385787 0.092819 -0.5619986 0.5385787 0.092819 -0.5654443 0.5385787 0.092819 -0.5687816 0.5385787 0.092819 -0.092819 0.5428591 0.092819 -0.2262531 0.5428591 0.092819 -0.2875993 0.5428591 0.092819 -0.3262122 0.5428591 0.092819 -0.3544566 0.5428591 0.092819 -0.3767383 0.5428591 0.092819 -0.3951413 0.5428591 0.092819 -0.4108177 0.5428591 0.092819 -0.4244723 0.5428591 0.092819 -0.4365675 0.5428591 0.092819 -0.4474232 0.5428591 0.092819 -0.45727 0.5428591 0.092819 -0.4662797 0.5428591 0.092819 -0.4745834 0.5428591 0.092819 -0.4822838 0.5428591 0.092819 -0.4894626 0.5428591 0.092819 -0.4961862 0.5428591 0.092819 -0.5025087 0.5428591 0.092819 -0.5084753 0.5428591 0.092819 -0.514124 0.5428591 0.092819 -0.519487 0.5428591 0.092819 -0.5245917 0.5428591 0.092819 -0.529462 0.5428591 0.092819 -0.5341183 0.5428591 0.092819 -0.5385787 0.5428591 0.092819 -0.5428591 0.5428591 0.092819 -0.5469733 0.5428591 0.092819 -0.5509339 0.5428591 0.092819 -0.5547519 0.5428591 0.092819 -0.5584371 0.5428591 0.092819 -0.5619986 0.5428591 0.092819 -0.5654443 0.5428591 0.092819 -0.5687816 0.5428591 0.092819 -0.092819 0.5469733 0.092819 -0.2262531 0.5469733 0.092819 -0.2875993 0.5469733 0.092819 -0.3262122 0.5469733 0.092819 -0.3544566 0.5469733 0.092819 -0.3767383 0.5469733 0.092819 -0.3951413 0.5469733 0.092819 -0.4108177 0.5469733 0.092819 -0.4244723 0.5469733 0.092819 -0.4365675 0.5469733 0.092819 -0.4474232 0.5469733 0.092819 -0.45727 0.5469733 0.092819 -0.4662797 0.5469733 0.092819 -0.4745834 0.5469733 0.092819 -0.4822838 0.5469733 0.092819 -0.4894626 0.5469733 0.092819 -0.4961862 0.5469733 0.092819 -0.5025087 0.5469733 0.092819 -0.5084753 0.5469733 0.092819 -0.514124 0.5469733 0.092819 -0.519487 0.5469733 0.092819 -0.5245917 0.5469733 0.092819 -0.529462 0.5469733 0.092819 -0.5341183 0.5469733 0.092819 -0.5385787 0.5469733 0.092819 -0.5428591 0.5469733 0.092819 -0.5469733 0.5469733 0.092819 -0.5509339 0.5469733 0.092819 -0.5547519 0.5469733 0.092819 -0.5584371 0.5469733 0.092819 -0.5619986 0.5469733 0.092819 -0.5654443 0.5469733 0.092819 -0.5687816 0.5469733 0.092819 -0.092819 0.5509339 0.092819 -0.2262531 0.5509339 0.092819 -0.2875993 0.5509339 0.092819 -0.3262122 0.5509339 0.092819 -0.3544566 0.5509339 0.092819 -0.3767383 0.5509339 0.092819 -0.3951413 0.5509339 0.092819 -0.4108177 0.5509339 0.092819 -0.4244723 0.5509339 0.092819 -0.4365675 0.5509339 0.092819 -0.4474232 0.5509339 0.092819 -0.45727 0.5509339 0.092819 -0.4662797 0.5509339 0.092819 -0.4745834 0.5509339 0.092819 -0.4822838 0.5509339 0.092819 -0.4894626 0.5509339 0.092819 -0.4961862 0.5509339 0.092819 -0.5025087 0.5509339 0.092819 -0.5084753 0.5509339 0.092819 -0.514124 0.5509339 0.092819 -0.519487 0.5509339 0.092819 -0.5245917 0.5509339 0.092819 -0.529462 0.5509339 0.092819 -0.5341183 0.5509339 0.092819 -0.5385787 0.5509339 0.092819 -0.5428591 0.5509339 0.092819 -0.5469733 0.5509339 0.092819 -0.5509339 0.5509339 0.092819 -0.5547519 0.5509339 0.092819 -0.5584371 0.5509339 0.092819 -0.5619986 0.5509339 0.092819 -0.5654443 0.5509339 0.092819 -0.5687816 0.5509339 0.092819 -0.092819 0.5547519 0.092819 -0.2262531 0.5547519 0.092819 -0.2875993 0.5547519 0.092819 -0.3262122 0.5547519 0.092819 -0.3544566 0.5547519 0.092819 -0.3767383 0.5547519 0.092819 -0.3951413 0.5547519 0.092819 -0.4108177 0.5547519 0.092819 -0.4244723 0.5547519 0.092819 -0.4365675 0.5547519 0.092819 -0.4474232 0.5547519 0.092819 -0.45727 0.5547519 0.092819 -0.4662797 0.5547519 0.092819 -0.4745834 0.5547519 0.092819 -0.4822838 0.5547519 0.092819 -0.4894626 0.5547519 0.092819 -0.4961862 0.5547519 0.092819 -0.5025087 0.5547519 0.092819 -0.5084753 0.5547519 0.092819 -0.514124 0.5547519 0.092819 -0.519487 0.5547519 0.092819 -0.5245917 0.5547519 0.092819 -0.529462 0.5547519 0.092819 -0.5341183 0.5547519 0.092819 -0.5385787 0.5547519 0.092819 -0.5428591 0.5547519 0.092819 -0.5469733 0.5547519 0.092819 -0.5509339 0.5547519 0.092819 -0.5547519 0.5547519 0.092819 -0.5584371 0.5547519 0.092819 -0.5619986 0.5547519 0.092819 -0.5654443 0.5547519 0.092819 -0.5687816 0.5547519 0.092819 -0.092819 0.5584371 0.092819 -0.2262531 0.5584371 0.092819 -0.2875993 0.5584371 0.092819 -0.3262122 0.5584371 0.092819 -0.3544566 0.5584371 0.092819 -0.3767383 0.5584371 0.092819 -0.3951413 0.5584371 0.092819 -0.4108177 0.5584371 0.092819 -0.4244723 0.5584371 0.092819 -0.4365675 0.5584371 0.092819 -0.4474232 0.5584371 0.092819 -0.45727 0.5584371 0.092819 -0.4662797 0.5584371 0.092819 -0.4745834 0.5584371 0.092819 -0.4822838 0.5584371 0.092819 -0.4894626 0.5584371 0.092819 -0.4961862 0.5584371 0.092819 -0.5025087 0.5584371 0.092819 -0.5084753 0.5584371 0.092819 -0.514124 0.5584371 0.092819 -0.519487 0.5584371 0.092819 -0.5245917 0.5584371 0.092819 -0.529462 0.5584371 0.092819 -0.5341183 0.5584371 0.092819 -0.5385787 0.5584371 0.092819 -0.5428591 0.5584371 0.092819 -0.5469733 0.5584371 0.092819 -0.5509339 0.5584371 0.092819 -0.5547519 0.5584371 0.092819 -0.5584371 0.5584371 0.092819 -0.5619986 0.5584371 0.092819 -0.5654443 0.5584371 0.092819 -0.5687816 0.5584371 0.092819 -0.092819 0.5619986 0.092819 -0.2262531 0.5619986 0.092819 -0.2875993 0.5619986 0.092819 -0.3262122 0.5619986 0.092819 -0.3544566 0.5619986 0.092819 -0.3767383 0.5619986 0.092819 -0.3951413 0.5619986 0.092819 -0.4108177 0.5619986 0.092819 -0.4244723 0.5619986 0.092819 -0.4365675 0.5619986 0.092819 -0.4474232 0.5619986 0.092819 -0.45727 0.5619986 0.092819 -0.4662797 0.5619986 0.092819 -0.4745834 0.5619986 0.092819 -0.4822838 0.5619986 0.092819 -0.4894626 0.5619986 0.092819 -0.4961862 0.5619986 0.092819 -0.5025087 0.5619986 0.092819 -0.5084753 0.5619986 0.092819 -0.514124 0.5619986 0.092819 -0.519487 0.5619986 0.092819 -0.5245917 0.5619986 0.092819 -0.529462 0.5619986 0.092819 -0.5341183 0.5619986 0.092819 -0.5385787 0.5619986 0.092819 -0.5428591 0.5619986 0.092819 -0.5469733 0.5619986 0.092819 -0.5509339 0.5619986 0.092819 -0.5547519 0.5619986 0.092819 -0.5584371 0.5619986 0.092819 -0.5619986 0.5619986 0.092819 -0.5654443 0.5619986 0.092819 -0.5687816 0.5619986 0.092819 -0.092819 0.5654443 0.092819 -0.2262531 0.5654443 0.092819 -0.2875993 0.5654443 0.092819 -0.3262122 0.5654443 0.092819 -0.3544566 0.5654443 0.092819 -0.3767383 0.5654443 0.092819 -0.3951413 0.5654443 0.092819 -0.4108177 0.5654443 0.092819 -0.4244723 0.5654443 0.092819 -0.4365675 0.5654443 0.092819 -0.4474232 0.5654443 0.092819 -0.45727 0.5654443 0.092819 -0.4662797 0.5654443 0.092819 -0.4745834 0.5654443 0.092819 -0.4822838 0.5654443 0.092819 -0.4894626 0.5654443 0.092819 -0.4961862 0.5654443 0.092819 -0.5025087 0.5654443 0.092819 -0.5084753 0.5654443 0.092819 -0.514124 0.5654443 0.092819 -0.519487 0.5654443 0.092819 -0.5245917 0.5654443 0.092819 -0.529462 0.5654443 0.092819 -0.5341183 0.5654443 0.092819 -0.5385787 0.5654443 0.092819 -0.5428591 0.5654443 0.092819 -0.5469733 0.5654443 0.092819 -0.5509339 0.5654443 0.092819 -0.5547519 0.5654443 0.092819 -0.5584371 0.5654443 0.092819 -0.5619986 0.5654443 0.092819 -0.5654443 0.5654443 0.092819 -0.5687816 0.5654443 0.092819 -0.092819 0.5687816 0.092819 -0.2262531 0.5687816 0.092819 -0.2875993 0.5687816 0.092819 -0.3262122 0.5687816 0.092819 -0.3544566 0.5687816 0.092819 -0.3767383 0.5687816 0.092819 -0.3951413 0.5687816 0.092819 -0.4108177 0.5687816 0.092819 -0.4244723 0.5687816 0.092819 -0.4365675 0.5687816 0.092819 -0.4474232 0.5687816 0.092819 -0.45727 0.5687816 0.092819 -0.4662797 0.5687816 0.092819 -0.4745834 0.5687816 0.092819 -0.4822838 0.5687816 0.092819 -0.4894626 0.5687816 0.092819 -0.4961862 0.5687816 0.092819 -0.5025087 0.5687816 0.092819 -0.5084753 0.5687816 0.092819 -0.514124 0.5687816 0.092819 -0.519487 0.5687816 0.092819 -0.5245917 0.5687816 0.092819 -0.529462 0.5687816 0.092819 -0.5341183 0.5687816 0.092819 -0.5385787 0.5687816 0.092819 -0.5428591 0.5687816 0.092819 -0.5469733 0.5687816 0.092819 -0.5509339 0.5687816 0.092819 -0.5547519 0.5687816 0.092819 -0.5584371 0.5687816 0.092819 -0.5619986 0.5687816 0.092819 -0.5654443 0.5687816 0.092819 -0.5687816 0.5687816 0.092819 -0.092819 0.092819 0.2262531 -0.2262531 0.092819 0.2262531 -0.2875993 0.092819 0.2262531 -0.3262122 0.092819 0.2262531 -0.3544566 0.092819 0.2262531 -0.3767383 0.092819 0.2262531 -0.3951413 0.092819 0.2262531 -0.4108177 0.092819 0.2262531 -0.4244723 0.092819 0.2262531 -0.4365675 0.092819 0.2262531 -0.4474232 0.092819 0.2262531 -0.45727 0.092819 0.2262531 -0.4662797 0.092819 0.2262531 -0.4745834 0.092819 0.2262531 -0.4822838 0.092819 0.2262531 -0.4894626 0.092819 0.2262531 -0.4961862 0.092819 0.2262531 -0.5025087 0.092819 0.2262531 -0.5084753 0.092819 0.2262531 -0.514124 0.092819 0.2262531 -0.519487 0.092819 0.2262531 -0.5245917 0.092819 0.2262531 -0.529462 0.092819 0.2262531 -0.5341183 0.092819 0.2262531 -0.5385787 0.092819 0.2262531 -0.5428591 0.092819 0.2262531 -0.5469733 0.092819 0.2262531 -0.5509339 0.092819 0.2262531 -0.5547519 0.092819 0.2262531 -0.5584371 0.092819 0.2262531 -0.5619986 0.092819 0.2262531 -0.5654443 0.092819 0.2262531 -0.5687816 0.092819 0.2262531 -0.092819 0.2262531 0.2262531 -0.2262531 0.2262531 0.2262531 -0.2875993 0.2262531 0.2262531 -0.3262122 0.2262531 0.2262531 -0.3544566 0.2262531 0.2262531 -0.3767383 0.2262531 0.2262531 -0.3951413 0.2262531 0.2262531 -0.4108177 0.2262531 0.2262531 -0.4244723 0.2262531 0.2262531 -0.4365675 0.2262531 0.2262531 -0.4474232 0.2262531 0.2262531 -0.45727 0.2262531 0.2262531 -0.4662797 0.2262531 0.2262531 -0.4745834 0.2262531 0.2262531 -0.4822838 0.2262531 0.2262531 -0.4894626 0.2262531 0.2262531 -0.4961862 0.2262531 0.2262531 -0.5025087 0.2262531 0.2262531 -0.5084753 0.2262531 0.2262531 -0.514124 0.2262531 0.2262531 -0.519487 0.2262531 0.2262531 -0.5245917 0.2262531 0.2262531 -0.529462 0.2262531 0.2262531 -0.5341183 0.2262531 0.2262531 -0.5385787 0.2262531 0.2262531 -0.5428591 0.2262531 0.2262531 -0.5469733 0.2262531 0.2262531 -0.5509339 0.2262531 0.2262531 -0.5547519 0.2262531 0.2262531 -0.5584371 0.2262531 0.2262531 -0.5619986 0.2262531 0.2262531 -0.5654443 0.2262531 0.2262531 -0.5687816 0.2262531 0.2262531 -0.092819 0.2875993 0.2262531 -0.2262531 0.2875993 0.2262531 -0.2875993 0.2875993 0.2262531 -0.3262122 0.2875993 0.2262531 -0.3544566 0.2875993 0.2262531 -0.3767383 0.2875993 0.2262531 -0.3951413 0.2875993 0.2262531 -0.4108177 0.2875993 0.2262531 -0.4244723 0.2875993 0.2262531 -0.4365675 0.2875993 0.2262531 -0.4474232 0.2875993 0.2262531 -0.45727 0.2875993 0.2262531 -0.4662797 0.2875993 0.2262531 -0.4745834 0.2875993 0.2262531 -0.4822838 0.2875993 0.2262531 -0.4894626 0.2875993 0.2262531 -0.4961862 0.2875993 0.2262531 -0.5025087 0.2875993 0.2262531 -0.5084753 0.2875993 0.2262531 -0.514124 0.2875993 0.2262531 -0.519487 0.2875993 0.2262531 -0.5245917 0.2875993 0.2262531 -0.529462 0.2875993 0.2262531 -0.5341183 0.2875993 0.2262531 -0.5385787 0.2875993 0.2262531 -0.5428591 0.2875993 0.2262531 -0.5469733 0.2875993 0.2262531 -0.5509339 0.2875993 0.2262531 -0.5547519 0.2875993 0.2262531 -0.5584371 0.2875993 0.2262531 -0.5619986 0.2875993 0.2262531 -0.5654443 0.2875993 0.2262531 -0.5687816 0.2875993 0.2262531 -0.092819 0.3262122 0.2262531 -0.2262531 0.3262122 0.2262531 -0.2875993 0.3262122 0.2262531 -0.3262122 0.3262122 0.2262531 -0.3544566 0.3262122 0.2262531 -0.3767383 0.3262122 0.2262531 -0.3951413 0.3262122 0.2262531 -0.4108177 0.3262122 0.2262531 -0.4244723 0.3262122 0.2262531 -0.4365675 0.3262122 0.2262531 -0.4474232 0.3262122 0.2262531 -0.45727 0.3262122 0.2262531 -0.4662797 0.3262122 0.2262531 -0.4745834 0.3262122 0.2262531 -0.4822838 0.3262122 0.2262531 -0.4894626 0.3262122 0.2262531 -0.4961862 0.3262122 0.2262531 -0.5025087 0.3262122 0.2262531 -0.5084753 0.3262122 0.2262531 -0.514124 0.3262122 0.2262531 -0.519487 0.3262122 0.2262531 -0.5245917 0.3262122 0.2262531 -0.529462 0.3262122 0.2262531 -0.5341183 0.3262122 0.2262531 -0.5385787 0.3262122 0.2262531 -0.5428591 0.3262122 0.2262531 -0.5469733 0.3262122 0.2262531 -0.5509339 0.3262122 0.2262531 -0.5547519 0.3262122 0.2262531 -0.5584371 0.3262122 0.2262531 -0.5619986 0.3262122 0.2262531 -0.5654443 0.3262122 0.2262531 -0.5687816 0.3262122 0.2262531 -0.092819 0.3544566 0.2262531 -0.2262531 0.3544566 0.2262531 -0.2875993 0.3544566 0.2262531 -0.3262122 0.3544566 0.2262531 -0.3544566 0.3544566 0.2262531 -0.3767383 0.3544566 0.2262531 -0.3951413 0.3544566 0.2262531 -0.4108177 0.3544566 0.2262531 -0.4244723 0.3544566 0.2262531 -0.4365675 0.3544566 0.2262531 -0.4474232 0.3544566 0.2262531 -0.45727 0.3544566 0.2262531 -0.4662797 0.3544566 0.2262531 -0.4745834 0.3544566 0.2262531 -0.4822838 0.3544566 0.2262531 -0.4894626 0.3544566 0.2262531 -0.4961862 0.3544566 0.2262531 -0.5025087 0.3544566 0.2262531 -0.5084753 0.3544566 0.2262531 -0.514124 0.3544566 0.2262531 -0.519487 0.3544566 0.2262531 -0.5245917 0.3544566 0.2262531 -0.529462 0.3544566 0.2262531 -0.5341183 0.3544566 0.2262531 -0.5385787 0.3544566 0.2262531 -0.5428591 0.3544566 0.2262531 -0.5469733 0.3544566 0.2262531 -0.5509339 0.3544566 0.2262531 -0.5547519 0.3544566 0.2262531 -0.5584371 0.3544566 0.2262531 -0.5619986 0.3544566 0.2262531 -0.5654443 0.3544566 0.2262531 -0.5687816 0.3544566 0.2262531 -0.092819 0.3767383 0.2262531 -0.2262531 0.3767383 0.2262531 -0.2875993 0.3767383 0.2262531 -0.3262122 0.3767383 0.2262531 -0.3544566 0.3767383 0.2262531 -0.3767383 0.3767383 0.2262531 -0.3951413 0.3767383 0.2262531 -0.4108177 0.3767383 0.2262531 -0.4244723 0.3767383 0.2262531 -0.4365675 0.3767383 0.2262531 -0.4474232 0.3767383 0.2262531 -0.45727 0.3767383 0.2262531 -0.4662797 0.3767383 0.2262531 -0.4745834 0.3767383 0.2262531 -0.4822838 0.3767383 0.2262531 -0.4894626 0.3767383 0.2262531 -0.4961862 0.3767383 0.2262531 -0.5025087 0.3767383 0.2262531 -0.5084753 0.3767383 0.2262531 -0.514124 0.3767383 0.2262531 -0.519487 0.3767383 0.2262531 -0.5245917 0.3767383 0.2262531 -0.529462 0.3767383 0.2262531 -0.5341183 0.3767383 0.2262531 -0.5385787 0.3767383 0.2262531 -0.5428591 0.3767383 0.2262531 -0.5469733 0.3767383 0.2262531 -0.5509339 0.3767383 0.2262531 -0.5547519 0.3767383 0.2262531 -0.5584371 0.3767383 0.2262531 -0.5619986 0.3767383 0.2262531 -0.5654443 0.3767383 0.2262531 -0.5687816 0.3767383 0.2262531 -0.092819 0.3951413 0.2262531 -0.2262531 0.3951413 0.2262531 -0.2875993 0.3951413 0.2262531 -0.3262122 0.3951413 0.2262531 -0.3544566 0.3951413 0.2262531 -0.3767383 0.3951413 0.2262531 -0.3951413 0.3951413 0.2262531 -0.4108177 0.3951413 0.2262531 -0.4244723 0.3951413 0.2262531 -0.4365675 0.3951413 0.2262531 -0.4474232 0.3951413 0.2262531 -0.45727 0.3951413 0.2262531 -0.4662797 0.3951413 0.2262531 -0.4745834 0.3951413 0.2262531 -0.4822838 0.3951413 0.2262531 -0.4894626 0.3951413 0.2262531 -0.4961862 0.3951413 0.2262531 -0.5025087 0.3951413 0.2262531 -0.5084753 0.3951413 0.2262531 -0.514124 0.3951413 0.2262531 -0.519487 0.3951413 0.2262531 -0.5245917 0.3951413 0.2262531 -0.529462 0.3951413 0.2262531 -0.5341183 0.3951413 0.2262531 -0.5385787 0.3951413 0.2262531 -0.5428591 0.3951413 0.2262531 -0.5469733 0.3951413 0.2262531 -0.5509339 0.3951413 0.2262531 -0.5547519 0.3951413 0.2262531 -0.5584371 0.3951413 0.2262531 -0.5619986 0.3951413 0.2262531 -0.5654443 0.3951413 0.2262531 -0.5687816 0.3951413 0.2262531 -0.092819 0.4108177 0.2262531 -0.2262531 0.4108177 0.2262531 -0.2875993 0.4108177 0.2262531 -0.3262122 0.4108177 0.2262531 -0.3544566 0.4108177 0.2262531 -0.3767383 0.4108177 0.2262531 -0.3951413 0.4108177 0.2262531 -0.4108177 0.4108177 0.2262531 -0.4244723 0.4108177 0.2262531 -0.4365675 0.4108177 0.2262531 -0.4474232 0.4108177 0.2262531 -0.45727 0.4108177 0.2262531 -0.4662797 0.4108177 0.2262531 -0.4745834 0.4108177 0.2262531 -0.4822838 0.4108177 0.2262531 -0.4894626 0.4108177 0.2262531 -0.4961862 0.4108177 0.2262531 -0.5025087 0.4108177 0.2262531 -0.5084753 0.4108177 0.2262531 -0.514124 0.4108177 0.2262531 -0.519487 0.4108177 0.2262531 -0.5245917 0.4108177 0.2262531 -0.529462 0.4108177 0.2262531 -0.5341183 0.4108177 0.2262531 -0.5385787 0.4108177 0.2262531 -0.5428591 0.4108177 0.2262531 -0.5469733 0.4108177 0.2262531 -0.5509339 0.4108177 0.2262531 -0.5547519 0.4108177 0.2262531 -0.5584371 0.4108177 0.2262531 -0.5619986 0.4108177 0.2262531 -0.5654443 0.4108177 0.2262531 -0.5687816 0.4108177 0.2262531 -0.092819 0.4244723 0.2262531 -0.2262531 0.4244723 0.2262531 -0.2875993 0.4244723 0.2262531 -0.3262122 0.4244723 0.2262531 -0.3544566 0.4244723 0.2262531 -0.3767383 0.4244723 0.2262531 -0.3951413 0.4244723 0.2262531 -0.4108177 0.4244723 0.2262531 -0.4244723 0.4244723 0.2262531 -0.4365675 0.4244723 0.2262531 -0.4474232 0.4244723 0.2262531 -0.45727 0.4244723 0.2262531 -0.4662797 0.4244723 0.2262531 -0.4745834 0.4244723 0.2262531 -0.4822838 0.4244723 0.2262531 -0.4894626 0.4244723 0.2262531 -0.4961862 0.4244723 0.2262531 -0.5025087 0.4244723 0.2262531 -0.5084753 0.4244723 0.2262531 -0.514124 0.4244723 0.2262531 -0.519487 0.4244723 0.2262531 -0.5245917 0.4244723 0.2262531 -0.529462 0.4244723 0.2262531 -0.5341183 0.4244723 0.2262531 -0.5385787 0.4244723 0.2262531 -0.5428591 0.4244723 0.2262531 -0.5469733 0.4244723 0.2262531 -0.5509339 0.4244723 0.2262531 -0.5547519 0.4244723 0.2262531 -0.5584371 0.4244723 0.2262531 -0.5619986 0.4244723 0.2262531 -0.5654443 0.4244723 0.2262531 -0.5687816 0.4244723 0.2262531 -0.092819 0.4365675 0.2262531 -0.2262531 0.4365675 0.2262531 -0.2875993 0.4365675 0.2262531 -0.3262122 0.4365675 0.2262531 -0.3544566 0.4365675 0.2262531 -0.3767383 0.4365675 0.2262531 -0.3951413 0.4365675 0.2262531 -0.4108177 0.4365675 0.2262531 -0.4244723 0.4365675 0.2262531 -0.4365675 0.4365675 0.2262531 -0.4474232 0.4365675 0.2262531 -0.45727 0.4365675 0.2262531 -0.4662797 0.4365675 0.2262531 -0.4745834 0.4365675 0.2262531 -0.4822838 0.4365675 0.2262531 -0.4894626 0.4365675 0.2262531 -0.4961862 0.4365675 0.2262531 -0.5025087 0.4365675 0.2262531 -0.5084753 0.4365675 0.2262531 -0.514124 0.4365675 0.2262531 -0.519487 0.4365675 0.2262531 -0.5245917 0.4365675 0.2262531 -0.529462 0.4365675 0.2262531 -0.5341183 0.4365675 0.2262531 -0.5385787 0.4365675 0.2262531 -0.5428591 0.4365675 0.2262531 -0.5469733 0.4365675 0.2262531 -0.5509339 0.4365675 0.2262531 -0.5547519 0.4365675 0.2262531 -0.5584371 0.4365675 0.2262531 -0.5619986 0.4365675 0.2262531 -0.5654443 0.4365675 0.2262531 -0.5687816 0.4365675 0.2262531 -0.092819 0.4474232 0.2262531 -0.2262531 0.4474232 0.2262531 -0.2875993 0.4474232 0.2262531 -0.3262122 0.4474232 0.2262531 -0.3544566 0.4474232 0.2262531 -0.3767383 0.4474232 0.2262531 -0.3951413 0.4474232 0.2262531 -0.4108177 0.4474232 0.2262531 -0.4244723 0.4474232 0.2262531 -0.4365675 0.4474232 0.2262531 -0.4474232 0.4474232 0.2262531 -0.45727 0.4474232 0.2262531 -0.4662797 0.4474232 0.2262531 -0.4745834 0.4474232 0.2262531 -0.4822838 0.4474232 0.2262531 -0.4894626 0.4474232 0.2262531 -0.4961862 0.4474232 0.2262531 -0.5025087 0.4474232 0.2262531 -0.5084753 0.4474232 0.2262531 -0.514124 0.4474232 0.2262531 -0.519487 0.4474232 0.2262531 -0.5245917 0.4474232 0.2262531 -0.529462 0.4474232 0.2262531 -0.5341183 0.4474232 0.2262531 -0.5385787 0.4474232 0.2262531 -0.5428591 0.4474232 0.2262531 -0.5469733 0.4474232 0.2262531 -0.5509339 0.4474232 0.2262531 -0.5547519 0.4474232 0.2262531 -0.5584371 0.4474232 0.2262531 -0.5619986 0.4474232 0.2262531 -0.5654443 0.4474232 0.2262531 -0.5687816 0.4474232 0.2262531 -0.092819 0.45727 0.2262531 -0.2262531 0.45727 0.2262531 -0.2875993 0.45727 0.2262531 -0.3262122 0.45727 0.2262531 -0.3544566 0.45727 0.2262531 -0.3767383 0.45727 0.2262531 -0.3951413 0.45727 0.2262531 -0.4108177 0.45727 0.2262531 -0.4244723 0.45727 0.2262531 -0.4365675 0.45727 0.2262531 -0.4474232 0.45727 0.2262531 -0.45727 0.45727 0.2262531 -0.4662797 0.45727 0.2262531 -0.4745834 0.45727 0.2262531 -0.4822838 0.45727 0.2262531 -0.4894626 0.45727 0.2262531 -0.4961862 0.45727 0.2262531 -0.5025087 0.45727 0.2262531 -0.5084753 0.45727 0.2262531 -0.514124 0.45727 0.2262531 -0.519487 0.45727 0.2262531 -0.5245917 0.45727 0.2262531 -0.529462 0.45727 0.2262531 -0.5341183 0.45727 0.2262531 -0.5385787 0.45727 0.2262531 -0.5428591 0.45727 0.2262531 -0.5469733 0.45727 0.2262531 -0.5509339 0.45727 0.2262531 -0.5547519 0.45727 0.2262531 -0.5584371 0.45727 0.2262531 -0.5619986 0.45727 0.2262531 -0.5654443 0.45727 0.2262531 -0.5687816 0.45727 0.2262531 -0.092819 0.4662797 0.2262531 -0.2262531 0.4662797 0.2262531 -0.2875993 0.4662797 0.2262531 -0.3262122 0.4662797 0.2262531 -0.3544566 0.4662797 0.2262531 -0.3767383 0.4662797 0.2262531 -0.3951413 0.4662797 0.2262531 -0.4108177 0.4662797 0.2262531 -0.4244723 0.4662797 0.2262531 -0.4365675 0.4662797 0.2262531 -0.4474232 0.4662797 0.2262531 -0.45727 0.4662797 0.2262531 -0.4662797 0.4662797 0.2262531 -0.4745834 0.4662797 0.2262531 -0.4822838 0.4662797 0.2262531 -0.4894626 0.4662797 0.2262531 -0.4961862 0.4662797 0.2262531 -0.5025087 0.4662797 0.2262531 -0.5084753 0.4662797 0.2262531 -0.514124 0.4662797 0.2262531 -0.519487 0.4662797 0.2262531 -0.5245917 0.4662797 0.2262531 -0.529462 0.4662797 0.2262531 -0.5341183 0.4662797 0.2262531 -0.5385787 0.4662797 0.2262531 -0.5428591 0.4662797 0.2262531 -0.5469733 0.4662797 0.2262531 -0.5509339 0.4662797 0.2262531 -0.5547519 0.4662797 0.2262531 -0.5584371 0.4662797 0.2262531 -0.5619986 0.4662797 0.2262531 -0.5654443 0.4662797 0.2262531 -0.5687816 0.4662797 0.2262531 -0.092819 0.4745834 0.2262531 -0.2262531 0.4745834 0.2262531 -0.2875993 0.4745834 0.2262531 -0.3262122 0.4745834 0.2262531 -0.3544566 0.4745834 0.2262531 -0.3767383 0.4745834 0.2262531 -0.3951413 0.4745834 0.2262531 -0.4108177 0.4745834 0.2262531 -0.4244723 0.4745834 0.2262531 -0.4365675 0.4745834 0.2262531 -0.4474232 0.4745834 0.2262531 -0.45727 0.4745834 0.2262531 -0.4662797 0.4745834 0.2262531 -0.4745834 0.4745834 0.2262531 -0.4822838 0.4745834 0.2262531 -0.4894626 0.4745834 0.2262531 -0.4961862 0.4745834 0.2262531 -0.5025087 0.4745834 0.2262531 -0.5084753 0.4745834 0.2262531 -0.514124 0.4745834 0.2262531 -0.519487 0.4745834 0.2262531 -0.5245917 0.4745834 0.2262531 -0.529462 0.4745834 0.2262531 -0.5341183 0.4745834 0.2262531 -0.5385787 0.4745834 0.2262531 -0.5428591 0.4745834 0.2262531 -0.5469733 0.4745834 0.2262531 -0.5509339 0.4745834 0.2262531 -0.5547519 0.4745834 0.2262531 -0.5584371 0.4745834 0.2262531 -0.5619986 0.4745834 0.2262531 -0.5654443 0.4745834 0.2262531 -0.5687816 0.4745834 0.2262531 -0.092819 0.4822838 0.2262531 -0.2262531 0.4822838 0.2262531 -0.2875993 0.4822838 0.2262531 -0.3262122 0.4822838 0.2262531 -0.3544566 0.4822838 0.2262531 -0.3767383 0.4822838 0.2262531 -0.3951413 0.4822838 0.2262531 -0.4108177 0.4822838 0.2262531 -0.4244723 0.4822838 0.2262531 -0.4365675 0.4822838 0.2262531 -0.4474232 0.4822838 0.2262531 -0.45727 0.4822838 0.2262531 -0.4662797 0.4822838 0.2262531 -0.4745834 0.4822838 0.2262531 -0.4822838 0.4822838 0.2262531 -0.4894626 0.4822838 0.2262531 -0.4961862 0.4822838 0.2262531 -0.5025087 0.4822838 0.2262531 -0.5084753 0.4822838 0.2262531 -0.514124 0.4822838 0.2262531 -0.519487 0.4822838 0.2262531 -0.5245917 0.4822838 0.2262531 -0.529462 0.4822838 0.2262531 -0.5341183 0.4822838 0.2262531 -0.5385787 0.4822838 0.2262531 -0.5428591 0.4822838 0.2262531 -0.5469733 0.4822838 0.2262531 -0.5509339 0.4822838 0.2262531 -0.5547519 0.4822838 0.2262531 -0.5584371 0.4822838 0.2262531 -0.5619986 0.4822838 0.2262531 -0.5654443 0.4822838 0.2262531 -0.5687816 0.4822838 0.2262531 -0.092819 0.4894626 0.2262531 -0.2262531 0.4894626 0.2262531 -0.2875993 0.4894626 0.2262531 -0.3262122 0.4894626 0.2262531 -0.3544566 0.4894626 0.2262531 -0.3767383 0.4894626 0.2262531 -0.3951413 0.4894626 0.2262531 -0.4108177 0.4894626 0.2262531 -0.4244723 0.4894626 0.2262531 -0.4365675 0.4894626 0.2262531 -0.4474232 0.4894626 0.2262531 -0.45727 0.4894626 0.2262531 -0.4662797 0.4894626 0.2262531 -0.4745834 0.4894626 0.2262531 -0.4822838 0.4894626 0.2262531 -0.4894626 0.4894626 0.2262531 -0.4961862 0.4894626 0.2262531 -0.5025087 0.4894626 0.2262531 -0.5084753 0.4894626 0.2262531 -0.514124 0.4894626 0.2262531 -0.519487 0.4894626 0.2262531 -0.5245917 0.4894626 0.2262531 -0.529462 0.4894626 0.2262531 -0.5341183 0.4894626 0.2262531 -0.5385787 0.4894626 0.2262531 -0.5428591 0.4894626 0.2262531 -0.5469733 0.4894626 0.2262531 -0.5509339 0.4894626 0.2262531 -0.5547519 0.4894626 0.2262531 -0.5584371 0.4894626 0.2262531 -0.5619986 0.4894626 0.2262531 -0.5654443 0.4894626 0.2262531 -0.5687816 0.4894626 0.2262531 -0.092819 0.4961862 0.2262531 -0.2262531 0.4961862 0.2262531 -0.2875993 0.4961862 0.2262531 -0.3262122 0.4961862 0.2262531 -0.3544566 0.4961862 0.2262531 -0.3767383 0.4961862 0.2262531 -0.3951413 0.4961862 0.2262531 -0.4108177 0.4961862 0.2262531 -0.4244723 0.4961862 0.2262531 -0.4365675 0.4961862 0.2262531 -0.4474232 0.4961862 0.2262531 -0.45727 0.4961862 0.2262531 -0.4662797 0.4961862 0.2262531 -0.4745834 0.4961862 0.2262531 -0.4822838 0.4961862 0.2262531 -0.4894626 0.4961862 0.2262531 -0.4961862 0.4961862 0.2262531 -0.5025087 0.4961862 0.2262531 -0.5084753 0.4961862 0.2262531 -0.514124 0.4961862 0.2262531 -0.519487 0.4961862 0.2262531 -0.5245917 0.4961862 0.2262531 -0.529462 0.4961862 0.2262531 -0.5341183 0.4961862 0.2262531 -0.5385787 0.4961862 0.2262531 -0.5428591 0.4961862 0.2262531 -0.5469733 0.4961862 0.2262531 -0.5509339 0.4961862 0.2262531 -0.5547519 0.4961862 0.2262531 -0.5584371 0.4961862 0.2262531 -0.5619986 0.4961862 0.2262531 -0.5654443 0.4961862 0.2262531 -0.5687816 0.4961862 0.2262531 -0.092819 0.5025087 0.2262531 -0.2262531 0.5025087 0.2262531 -0.2875993 0.5025087 0.2262531 -0.3262122 0.5025087 0.2262531 -0.3544566 0.5025087 0.2262531 -0.3767383 0.5025087 0.2262531 -0.3951413 0.5025087 0.2262531 -0.4108177 0.5025087 0.2262531 -0.4244723 0.5025087 0.2262531 -0.4365675 0.5025087 0.2262531 -0.4474232 0.5025087 0.2262531 -0.45727 0.5025087 0.2262531 -0.4662797 0.5025087 0.2262531 -0.4745834 0.5025087 0.2262531 -0.4822838 0.5025087 0.2262531 -0.4894626 0.5025087 0.2262531 -0.4961862 0.5025087 0.2262531 -0.5025087 0.5025087 0.2262531 -0.5084753 0.5025087 0.2262531 -0.514124 0.5025087 0.2262531 -0.519487 0.5025087 0.2262531 -0.5245917 0.5025087 0.2262531 -0.529462 0.5025087 0.2262531 -0.5341183 0.5025087 0.2262531 -0.5385787 0.5025087 0.2262531 -0.5428591 0.5025087 0.2262531 -0.5469733 0.5025087 0.2262531 -0.5509339 0.5025087 0.2262531 -0.5547519 0.5025087 0.2262531 -0.5584371 0.5025087 0.2262531 -0.5619986 0.5025087 0.2262531 -0.5654443 0.5025087 0.2262531 -0.5687816 0.5025087 0.2262531 -0.092819 0.5084753 0.2262531 -0.2262531 0.5084753 0.2262531 -0.2875993 0.5084753 0.2262531 -0.3262122 0.5084753 0.2262531 -0.3544566 0.5084753 0.2262531 -0.3767383 0.5084753 0.2262531 -0.3951413 0.5084753 0.2262531 -0.4108177 0.5084753 0.2262531 -0.4244723 0.5084753 0.2262531 -0.4365675 0.5084753 0.2262531 -0.4474232 0.5084753 0.2262531 -0.45727 0.5084753 0.2262531 -0.4662797 0.5084753 0.2262531 -0.4745834 0.5084753 0.2262531 -0.4822838 0.5084753 0.2262531 -0.4894626 0.5084753 0.2262531 -0.4961862 0.5084753 0.2262531 -0.5025087 0.5084753 0.2262531 -0.5084753 0.5084753 0.2262531 -0.514124 0.5084753 0.2262531 -0.519487 0.5084753 0.2262531 -0.5245917 0.5084753 0.2262531 -0.529462 0.5084753 0.2262531 -0.5341183 0.5084753 0.2262531 -0.5385787 0.5084753 0.2262531 -0.5428591 0.5084753 0.2262531 -0.5469733 0.5084753 0.2262531 -0.5509339 0.5084753 0.2262531 -0.5547519 0.5084753 0.2262531 -0.5584371 0.5084753 0.2262531 -0.5619986 0.5084753 0.2262531 -0.5654443 0.5084753 0.2262531 -0.5687816 0.5084753 0.2262531 -0.092819 0.514124 0.2262531 -0.2262531 0.514124 0.2262531 -0.2875993 0.514124 0.2262531 -0.3262122 0.514124 0.2262531 -0.3544566 0.514124 0.2262531 -0.3767383 0.514124 0.2262531 -0.3951413 0.514124 0.2262531 -0.4108177 0.514124 0.2262531 -0.4244723 0.514124 0.2262531 -0.4365675 0.514124 0.2262531 -0.4474232 0.514124 0.2262531 -0.45727 0.514124 0.2262531 -0.4662797 0.514124 0.2262531 -0.4745834 0.514124 0.2262531 -0.4822838 0.514124 0.2262531 -0.4894626 0.514124 0.2262531 -0.4961862 0.514124 0.2262531 -0.5025087 0.514124 0.2262531 -0.5084753 0.514124 0.2262531 -0.514124 0.514124 0.2262531 -0.519487 0.514124 0.2262531 -0.5245917 0.514124 0.2262531 -0.529462 0.514124 0.2262531 -0.5341183 0.514124 0.2262531 -0.5385787 0.514124 0.2262531 -0.5428591 0.514124 0.2262531 -0.5469733 0.514124 0.2262531 -0.5509339 0.514124 0.2262531 -0.5547519 0.514124 0.2262531 -0.5584371 0.514124 0.2262531 -0.5619986 0.514124 0.2262531 -0.5654443 0.514124 0.2262531 -0.5687816 0.514124 0.2262531 -0.092819 0.519487 0.2262531 -0.2262531 0.519487 0.2262531 -0.2875993 0.519487 0.2262531 -0.3262122 0.519487 0.2262531 -0.3544566 0.519487 0.2262531 -0.3767383 0.519487 0.2262531 -0.3951413 0.519487 0.2262531 -0.4108177 0.519487 0.2262531 -0.4244723 0.519487 0.2262531 -0.4365675 0.519487 0.2262531 -0.4474232 0.519487 0.2262531 -0.45727 0.519487 0.2262531 -0.4662797 0.519487 0.2262531 -0.4745834 0.519487 0.2262531 -0.4822838 0.519487 0.2262531 -0.4894626 0.519487 0.2262531 -0.4961862 0.519487 0.2262531 -0.5025087 0.519487 0.2262531 -0.5084753 0.519487 0.2262531 -0.514124 0.519487 0.2262531 -0.519487 0.519487 0.2262531 -0.5245917 0.519487 0.2262531 -0.529462 0.519487 0.2262531 -0.5341183 0.519487 0.2262531 -0.5385787 0.519487 0.2262531 -0.5428591 0.519487 0.2262531 -0.5469733 0.519487 0.2262531 -0.5509339 0.519487 0.2262531 -0.5547519 0.519487 0.2262531 -0.5584371 0.519487 0.2262531 -0.5619986 0.519487 0.2262531 -0.5654443 0.519487 0.2262531 -0.5687816 0.519487 0.2262531 -0.092819 0.5245917 0.2262531 -0.2262531 0.5245917 0.2262531 -0.2875993 0.5245917 0.2262531 -0.3262122 0.5245917 0.2262531 -0.3544566 0.5245917 0.2262531 -0.3767383 0.5245917 0.2262531 -0.3951413 0.5245917 0.2262531 -0.4108177 0.5245917 0.2262531 -0.4244723 0.5245917 0.2262531 -0.4365675 0.5245917 0.2262531 -0.4474232 0.5245917 0.2262531 -0.45727 0.5245917 0.2262531 -0.4662797 0.5245917 0.2262531 -0.4745834 0.5245917 0.2262531 -0.4822838 0.5245917 0.2262531 -0.4894626 0.5245917 0.2262531 -0.4961862 0.5245917 0.2262531 -0.5025087 0.5245917 0.2262531 -0.5084753 0.5245917 0.2262531 -0.514124 0.5245917 0.2262531 -0.519487 0.5245917 0.2262531 -0.5245917 0.5245917 0.2262531 -0.529462 0.5245917 0.2262531 -0.5341183 0.5245917 0.2262531 -0.5385787 0.5245917 0.2262531 -0.5428591 0.5245917 0.2262531 -0.5469733 0.5245917 0.2262531 -0.5509339 0.5245917 0.2262531 -0.5547519 0.5245917 0.2262531 -0.5584371 0.5245917 0.2262531 -0.5619986 0.5245917 0.2262531 -0.5654443 0.5245917 0.2262531 -0.5687816 0.5245917 0.2262531 -0.092819 0.529462 0.2262531 -0.2262531 0.529462 0.2262531 -0.2875993 0.529462 0.2262531 -0.3262122 0.529462 0.2262531 -0.3544566 0.529462 0.2262531 -0.3767383 0.529462 0.2262531 -0.3951413 0.529462 0.2262531 -0.4108177 0.529462 0.2262531 -0.4244723 0.529462 0.2262531 -0.4365675 0.529462 0.2262531 -0.4474232 0.529462 0.2262531 -0.45727 0.529462 0.2262531 -0.4662797 0.529462 0.2262531 -0.4745834 0.529462 0.2262531 -0.4822838 0.529462 0.2262531 -0.4894626 0.529462 0.2262531 -0.4961862 0.529462 0.2262531 -0.5025087 0.529462 0.2262531 -0.5084753 0.529462 0.2262531 -0.514124 0.529462 0.2262531 -0.519487 0.529462 0.2262531 -0.5245917 0.529462 0.2262531 -0.529462 0.529462 0.2262531 -0.5341183 0.529462 0.2262531 -0.5385787 0.529462 0.2262531 -0.5428591 0.529462 0.2262531 -0.5469733 0.529462 0.2262531 -0.5509339 0.529462 0.2262531 -0.5547519 0.529462 0.2262531 -0.5584371 0.529462 0.2262531 -0.5619986 0.529462 0.2262531 -0.5654443 0.529462 0.2262531 -0.5687816 0.529462 0.2262531 -0.092819 0.5341183 0.2262531 -0.2262531 0.5341183 0.2262531 -0.2875993 0.5341183 0.2262531 -0.3262122 0.5341183 0.2262531 -0.3544566 0.5341183 0.2262531 -0.3767383 0.5341183 0.2262531 -0.3951413 0.5341183 0.2262531 -0.4108177 0.5341183 0.2262531 -0.4244723 0.5341183 0.2262531 -0.4365675 0.5341183 0.2262531 -0.4474232 0.5341183 0.2262531 -0.45727 0.5341183 0.2262531 -0.4662797 0.5341183 0.2262531 -0.4745834 0.5341183 0.2262531 -0.4822838 0.5341183 0.2262531 -0.4894626 0.5341183 0.2262531 -0.4961862 0.5341183 0.2262531 -0.5025087 0.5341183 0.2262531 -0.5084753 0.5341183 0.2262531 -0.514124 0.5341183 0.2262531 -0.519487 0.5341183 0.2262531 -0.5245917 0.5341183 0.2262531 -0.529462 0.5341183 0.2262531 -0.5341183 0.5341183 0.2262531 -0.5385787 0.5341183 0.2262531 -0.5428591 0.5341183 0.2262531 -0.5469733 0.5341183 0.2262531 -0.5509339 0.5341183 0.2262531 -0.5547519 0.5341183 0.2262531 -0.5584371 0.5341183 0.2262531 -0.5619986 0.5341183 0.2262531 -0.5654443 0.5341183 0.2262531 -0.5687816 0.5341183 0.2262531 -0.092819 0.5385787 0.2262531 -0.2262531 0.5385787 0.2262531 -0.2875993 0.5385787 0.2262531 -0.3262122 0.5385787 0.2262531 -0.3544566 0.5385787 0.2262531 -0.3767383 0.5385787 0.2262531 -0.3951413 0.5385787 0.2262531 -0.4108177 0.5385787 0.2262531 -0.4244723 0.5385787 0.2262531 -0.4365675 0.5385787 0.2262531 -0.4474232 0.5385787 0.2262531 -0.45727 0.5385787 0.2262531 -0.4662797 0.5385787 0.2262531 -0.4745834 0.5385787 0.2262531 -0.4822838 0.5385787 0.2262531 -0.4894626 0.5385787 0.2262531 -0.4961862 0.5385787 0.2262531 -0.5025087 0.5385787 0.2262531 -0.5084753 0.5385787 0.2262531 -0.514124 0.5385787 0.2262531 -0.519487 0.5385787 0.2262531 -0.5245917 0.5385787 0.2262531 -0.529462 0.5385787 0.2262531 -0.5341183 0.5385787 0.2262531 -0.5385787 0.5385787 0.2262531 -0.5428591 0.5385787 0.2262531 -0.5469733 0.5385787 0.2262531 -0.5509339 0.5385787 0.2262531 -0.5547519 0.5385787 0.2262531 -0.5584371 0.5385787 0.2262531 -0.5619986 0.5385787 0.2262531 -0.5654443 0.5385787 0.2262531 -0.5687816 0.5385787 0.2262531 -0.092819 0.5428591 0.2262531 -0.2262531 0.5428591 0.2262531 -0.2875993 0.5428591 0.2262531 -0.3262122 0.5428591 0.2262531 -0.3544566 0.5428591 0.2262531 -0.3767383 0.5428591 0.2262531 -0.3951413 0.5428591 0.2262531 -0.4108177 0.5428591 0.2262531 -0.4244723 0.5428591 0.2262531 -0.4365675 0.5428591 0.2262531 -0.4474232 0.5428591 0.2262531 -0.45727 0.5428591 0.2262531 -0.4662797 0.5428591 0.2262531 -0.4745834 0.5428591 0.2262531 -0.4822838 0.5428591 0.2262531 -0.4894626 0.5428591 0.2262531 -0.4961862 0.5428591 0.2262531 -0.5025087 0.5428591 0.2262531 -0.5084753 0.5428591 0.2262531 -0.514124 0.5428591 0.2262531 -0.519487 0.5428591 0.2262531 -0.5245917 0.5428591 0.2262531 -0.529462 0.5428591 0.2262531 -0.5341183 0.5428591 0.2262531 -0.5385787 0.5428591 0.2262531 -0.5428591 0.5428591 0.2262531 -0.5469733 0.5428591 0.2262531 -0.5509339 0.5428591 0.2262531 -0.5547519 0.5428591 0.2262531 -0.5584371 0.5428591 0.2262531 -0.5619986 0.5428591 0.2262531 -0.5654443 0.5428591 0.2262531 -0.5687816 0.5428591 0.2262531 -0.092819 0.5469733 0.2262531 -0.2262531 0.5469733 0.2262531 -0.2875993 0.5469733 0.2262531 -0.3262122 0.5469733 0.2262531 -0.3544566 0.5469733 0.2262531 -0.3767383 0.5469733 0.2262531 -0.3951413 0.5469733 0.2262531 -0.4108177 0.5469733 0.2262531 -0.4244723 0.5469733 0.2262531 -0.4365675 0.5469733 0.2262531 -0.4474232 0.5469733 0.2262531 -0.45727 0.5469733 0.2262531 -0.4662797 0.5469733 0.2262531 -0.4745834 0.5469733 0.2262531 -0.4822838 0.5469733 0.2262531 -0.4894626 0.5469733 0.2262531 -0.4961862 0.5469733 0.2262531 -0.5025087 0.5469733 0.2262531 -0.5084753 0.5469733 0.2262531 -0.514124 0.5469733 0.2262531 -0.519487 0.5469733 0.2262531 -0.5245917 0.5469733 0.2262531 -0.529462 0.5469733 0.2262531 -0.5341183 0.5469733 0.2262531 -0.5385787 0.5469733 0.2262531 -0.5428591 0.5469733 0.2262531 -0.5469733 0.5469733 0.2262531 -0.5509339 0.5469733 0.2262531 -0.5547519 0.5469733 0.2262531 -0.5584371 0.5469733 0.2262531 -0.5619986 0.5469733 0.2262531 -0.5654443 0.5469733 0.2262531 -0.5687816 0.5469733 0.2262531 -0.092819 0.5509339 0.2262531 -0.2262531 0.5509339 0.2262531 -0.2875993 0.5509339 0.2262531 -0.3262122 0.5509339 0.2262531 -0.3544566 0.5509339 0.2262531 -0.3767383 0.5509339 0.2262531 -0.3951413 0.5509339 0.2262531 -0.4108177 0.5509339 0.2262531 -0.4244723 0.5509339 0.2262531 -0.4365675 0.5509339 0.2262531 -0.4474232 0.5509339 0.2262531 -0.45727 0.5509339 0.2262531 -0.4662797 0.5509339 0.2262531 -0.4745834 0.5509339 0.2262531 -0.4822838 0.5509339 0.2262531 -0.4894626 0.5509339 0.2262531 -0.4961862 0.5509339 0.2262531 -0.5025087 0.5509339 0.2262531 -0.5084753 0.5509339 0.2262531 -0.514124 0.5509339 0.2262531 -0.519487 0.5509339 0.2262531 -0.5245917 0.5509339 0.2262531 -0.529462 0.5509339 0.2262531 -0.5341183 0.5509339 0.2262531 -0.5385787 0.5509339 0.2262531 -0.5428591 0.5509339 0.2262531 -0.5469733 0.5509339 0.2262531 -0.5509339 0.5509339 0.2262531 -0.5547519 0.5509339 0.2262531 -0.5584371 0.5509339 0.2262531 -0.5619986 0.5509339 0.2262531 -0.5654443 0.5509339 0.2262531 -0.5687816 0.5509339 0.2262531 -0.092819 0.5547519 0.2262531 -0.2262531 0.5547519 0.2262531 -0.2875993 0.5547519 0.2262531 -0.3262122 0.5547519 0.2262531 -0.3544566 0.5547519 0.2262531 -0.3767383 0.5547519 0.2262531 -0.3951413 0.5547519 0.2262531 -0.4108177 0.5547519 0.2262531 -0.4244723 0.5547519 0.2262531 -0.4365675 0.5547519 0.2262531 -0.4474232 0.5547519 0.2262531 -0.45727 0.5547519 0.2262531 -0.4662797 0.5547519 0.2262531 -0.4745834 0.5547519 0.2262531 -0.4822838 0.5547519 0.2262531 -0.4894626 0.5547519 0.2262531 -0.4961862 0.5547519 0.2262531 -0.5025087 0.5547519 0.2262531 -0.5084753 0.5547519 0.2262531 -0.514124 0.5547519 0.2262531 -0.519487 0.5547519 0.2262531 -0.5245917 0.5547519 0.2262531 -0.529462 0.5547519 0.2262531 -0.5341183 0.5547519 0.2262531 -0.5385787 0.5547519 0.2262531 -0.5428591 0.5547519 0.2262531 -0.5469733 0.5547519 0.2262531 -0.5509339 0.5547519 0.2262531 -0.5547519 0.5547519 0.2262531 -0.5584371 0.5547519 0.2262531 -0.5619986 0.5547519 0.2262531 -0.5654443 0.5547519 0.2262531 -0.5687816 0.5547519 0.2262531 -0.092819 0.5584371 0.2262531 -0.2262531 0.5584371 0.2262531 -0.2875993 0.5584371 0.2262531 -0.3262122 0.5584371 0.2262531 -0.3544566 0.5584371 0.2262531 -0.3767383 0.5584371 0.2262531 -0.3951413 0.5584371 0.2262531 -0.4108177 0.5584371 0.2262531 -0.4244723 0.5584371 0.2262531 -0.4365675 0.5584371 0.2262531 -0.4474232 0.5584371 0.2262531 -0.45727 0.5584371 0.2262531 -0.4662797 0.5584371 0.2262531 -0.4745834 0.5584371 0.2262531 -0.4822838 0.5584371 0.2262531 -0.4894626 0.5584371 0.2262531 -0.4961862 0.5584371 0.2262531 -0.5025087 0.5584371 0.2262531 -0.5084753 0.5584371 0.2262531 -0.514124 0.5584371 0.2262531 -0.519487 0.5584371 0.2262531 -0.5245917 0.5584371 0.2262531 -0.529462 0.5584371 0.2262531 -0.5341183 0.5584371 0.2262531 -0.5385787 0.5584371 0.2262531 -0.5428591 0.5584371 0.2262531 -0.5469733 0.5584371 0.2262531 -0.5509339 0.5584371 0.2262531 -0.5547519 0.5584371 0.2262531 -0.5584371 0.5584371 0.2262531 -0.5619986 0.5584371 0.2262531 -0.5654443 0.5584371 0.2262531 -0.5687816 0.5584371 0.2262531 -0.092819 0.5619986 0.2262531 -0.2262531 0.5619986 0.2262531 -0.2875993 0.5619986 0.2262531 -0.3262122 0.5619986 0.2262531 -0.3544566 0.5619986 0.2262531 -0.3767383 0.5619986 0.2262531 -0.3951413 0.5619986 0.2262531 -0.4108177 0.5619986 0.2262531 -0.4244723 0.5619986 0.2262531 -0.4365675 0.5619986 0.2262531 -0.4474232 0.5619986 0.2262531 -0.45727 0.5619986 0.2262531 -0.4662797 0.5619986 0.2262531 -0.4745834 0.5619986 0.2262531 -0.4822838 0.5619986 0.2262531 -0.4894626 0.5619986 0.2262531 -0.4961862 0.5619986 0.2262531 -0.5025087 0.5619986 0.2262531 -0.5084753 0.5619986 0.2262531 -0.514124 0.5619986 0.2262531 -0.519487 0.5619986 0.2262531 -0.5245917 0.5619986 0.2262531 -0.529462 0.5619986 0.2262531 -0.5341183 0.5619986 0.2262531 -0.5385787 0.5619986 0.2262531 -0.5428591 0.5619986 0.2262531 -0.5469733 0.5619986 0.2262531 -0.5509339 0.5619986 0.2262531 -0.5547519 0.5619986 0.2262531 -0.5584371 0.5619986 0.2262531 -0.5619986 0.5619986 0.2262531 -0.5654443 0.5619986 0.2262531 -0.5687816 0.5619986 0.2262531 -0.092819 0.5654443 0.2262531 -0.2262531 0.5654443 0.2262531 -0.2875993 0.5654443 0.2262531 -0.3262122 0.5654443 0.2262531 -0.3544566 0.5654443 0.2262531 -0.3767383 0.5654443 0.2262531 -0.3951413 0.5654443 0.2262531 -0.4108177 0.5654443 0.2262531 -0.4244723 0.5654443 0.2262531 -0.4365675 0.5654443 0.2262531 -0.4474232 0.5654443 0.2262531 -0.45727 0.5654443 0.2262531 -0.4662797 0.5654443 0.2262531 -0.4745834 0.5654443 0.2262531 -0.4822838 0.5654443 0.2262531 -0.4894626 0.5654443 0.2262531 -0.4961862 0.5654443 0.2262531 -0.5025087 0.5654443 0.2262531 -0.5084753 0.5654443 0.2262531 -0.514124 0.5654443 0.2262531 -0.519487 0.5654443 0.2262531 -0.5245917 0.5654443 0.2262531 -0.529462 0.5654443 0.2262531 -0.5341183 0.5654443 0.2262531 -0.5385787 0.5654443 0.2262531 -0.5428591 0.5654443 0.2262531 -0.5469733 0.5654443 0.2262531 -0.5509339 0.5654443 0.2262531 -0.5547519 0.5654443 0.2262531 -0.5584371 0.5654443 0.2262531 -0.5619986 0.5654443 0.2262531 -0.5654443 0.5654443 0.2262531 -0.5687816 0.5654443 0.2262531 -0.092819 0.5687816 0.2262531 -0.2262531 0.5687816 0.2262531 -0.2875993 0.5687816 0.2262531 -0.3262122 0.5687816 0.2262531 -0.3544566 0.5687816 0.2262531 -0.3767383 0.5687816 0.2262531 -0.3951413 0.5687816 0.2262531 -0.4108177 0.5687816 0.2262531 -0.4244723 0.5687816 0.2262531 -0.4365675 0.5687816 0.2262531 -0.4474232 0.5687816 0.2262531 -0.45727 0.5687816 0.2262531 -0.4662797 0.5687816 0.2262531 -0.4745834 0.5687816 0.2262531 -0.4822838 0.5687816 0.2262531 -0.4894626 0.5687816 0.2262531 -0.4961862 0.5687816 0.2262531 -0.5025087 0.5687816 0.2262531 -0.5084753 0.5687816 0.2262531 -0.514124 0.5687816 0.2262531 -0.519487 0.5687816 0.2262531 -0.5245917 0.5687816 0.2262531 -0.529462 0.5687816 0.2262531 -0.5341183 0.5687816 0.2262531 -0.5385787 0.5687816 0.2262531 -0.5428591 0.5687816 0.2262531 -0.5469733 0.5687816 0.2262531 -0.5509339 0.5687816 0.2262531 -0.5547519 0.5687816 0.2262531 -0.5584371 0.5687816 0.2262531 -0.5619986 0.5687816 0.2262531 -0.5654443 0.5687816 0.2262531 -0.5687816 0.5687816 0.2262531 -0.092819 0.092819 0.2875993 -0.2262531 0.092819 0.2875993 -0.2875993 0.092819 0.2875993 -0.3262122 0.092819 0.2875993 -0.3544566 0.092819 0.2875993 -0.3767383 0.092819 0.2875993 -0.3951413 0.092819 0.2875993 -0.4108177 0.092819 0.2875993 -0.4244723 0.092819 0.2875993 -0.4365675 0.092819 0.2875993 -0.4474232 0.092819 0.2875993 -0.45727 0.092819 0.2875993 -0.4662797 0.092819 0.2875993 -0.4745834 0.092819 0.2875993 -0.4822838 0.092819 0.2875993 -0.4894626 0.092819 0.2875993 -0.4961862 0.092819 0.2875993 -0.5025087 0.092819 0.2875993 -0.5084753 0.092819 0.2875993 -0.514124 0.092819 0.2875993 -0.519487 0.092819 0.2875993 -0.5245917 0.092819 0.2875993 -0.529462 0.092819 0.2875993 -0.5341183 0.092819 0.2875993 -0.5385787 0.092819 0.2875993 -0.5428591 0.092819 0.2875993 -0.5469733 0.092819 0.2875993 -0.5509339 0.092819 0.2875993 -0.5547519 0.092819 0.2875993 -0.5584371 0.092819 0.2875993 -0.5619986 0.092819 0.2875993 -0.5654443 0.092819 0.2875993 -0.5687816 0.092819 0.2875993 -0.092819 0.2262531 0.2875993 -0.2262531 0.2262531 0.2875993 -0.2875993 0.2262531 0.2875993 -0.3262122 0.2262531 0.2875993 -0.3544566 0.2262531 0.2875993 -0.3767383 0.2262531 0.2875993 -0.3951413 0.2262531 0.2875993 -0.4108177 0.2262531 0.2875993 -0.4244723 0.2262531 0.2875993 -0.4365675 0.2262531 0.2875993 -0.4474232 0.2262531 0.2875993 -0.45727 0.2262531 0.2875993 -0.4662797 0.2262531 0.2875993 -0.4745834 0.2262531 0.2875993 -0.4822838 0.2262531 0.2875993 -0.4894626 0.2262531 0.2875993 -0.4961862 0.2262531 0.2875993 -0.5025087 0.2262531 0.2875993 -0.5084753 0.2262531 0.2875993 -0.514124 0.2262531 0.2875993 -0.519487 0.2262531 0.2875993 -0.5245917 0.2262531 0.2875993 -0.529462 0.2262531 0.2875993 -0.5341183 0.2262531 0.2875993 -0.5385787 0.2262531 0.2875993 -0.5428591 0.2262531 0.2875993 -0.5469733 0.2262531 0.2875993 -0.5509339 0.2262531 0.2875993 -0.5547519 0.2262531 0.2875993 -0.5584371 0.2262531 0.2875993 -0.5619986 0.2262531 0.2875993 -0.5654443 0.2262531 0.2875993 -0.5687816 0.2262531 0.2875993 -0.092819 0.2875993 0.2875993 -0.2262531 0.2875993 0.2875993 -0.2875993 0.2875993 0.2875993 -0.3262122 0.2875993 0.2875993 -0.3544566 0.2875993 0.2875993 -0.3767383 0.2875993 0.2875993 -0.3951413 0.2875993 0.2875993 -0.4108177 0.2875993 0.2875993 -0.4244723 0.2875993 0.2875993 -0.4365675 0.2875993 0.2875993 -0.4474232 0.2875993 0.2875993 -0.45727 0.2875993 0.2875993 -0.4662797 0.2875993 0.2875993 -0.4745834 0.2875993 0.2875993 -0.4822838 0.2875993 0.2875993 -0.4894626 0.2875993 0.2875993 -0.4961862 0.2875993 0.2875993 -0.5025087 0.2875993 0.2875993 -0.5084753 0.2875993 0.2875993 -0.514124 0.2875993 0.2875993 -0.519487 0.2875993 0.2875993 -0.5245917 0.2875993 0.2875993 -0.529462 0.2875993 0.2875993 -0.5341183 0.2875993 0.2875993 -0.5385787 0.2875993 0.2875993 -0.5428591 0.2875993 0.2875993 -0.5469733 0.2875993 0.2875993 -0.5509339 0.2875993 0.2875993 -0.5547519 0.2875993 0.2875993 -0.5584371 0.2875993 0.2875993 -0.5619986 0.2875993 0.2875993 -0.5654443 0.2875993 0.2875993 -0.5687816 0.2875993 0.2875993 -0.092819 0.3262122 0.2875993 -0.2262531 0.3262122 0.2875993 -0.2875993 0.3262122 0.2875993 -0.3262122 0.3262122 0.2875993 -0.3544566 0.3262122 0.2875993 -0.3767383 0.3262122 0.2875993 -0.3951413 0.3262122 0.2875993 -0.4108177 0.3262122 0.2875993 -0.4244723 0.3262122 0.2875993 -0.4365675 0.3262122 0.2875993 -0.4474232 0.3262122 0.2875993 -0.45727 0.3262122 0.2875993 -0.4662797 0.3262122 0.2875993 -0.4745834 0.3262122 0.2875993 -0.4822838 0.3262122 0.2875993 -0.4894626 0.3262122 0.2875993 -0.4961862 0.3262122 0.2875993 -0.5025087 0.3262122 0.2875993 -0.5084753 0.3262122 0.2875993 -0.514124 0.3262122 0.2875993 -0.519487 0.3262122 0.2875993 -0.5245917 0.3262122 0.2875993 -0.529462 0.3262122 0.2875993 -0.5341183 0.3262122 0.2875993 -0.5385787 0.3262122 0.2875993 -0.5428591 0.3262122 0.2875993 -0.5469733 0.3262122 0.2875993 -0.5509339 0.3262122 0.2875993 -0.5547519 0.3262122 0.2875993 -0.5584371 0.3262122 0.2875993 -0.5619986 0.3262122 0.2875993 -0.5654443 0.3262122 0.2875993 -0.5687816 0.3262122 0.2875993 -0.092819 0.3544566 0.2875993 -0.2262531 0.3544566 0.2875993 -0.2875993 0.3544566 0.2875993 -0.3262122 0.3544566 0.2875993 -0.3544566 0.3544566 0.2875993 -0.3767383 0.3544566 0.2875993 -0.3951413 0.3544566 0.2875993 -0.4108177 0.3544566 0.2875993 -0.4244723 0.3544566 0.2875993 -0.4365675 0.3544566 0.2875993 -0.4474232 0.3544566 0.2875993 -0.45727 0.3544566 0.2875993 -0.4662797 0.3544566 0.2875993 -0.4745834 0.3544566 0.2875993 -0.4822838 0.3544566 0.2875993 -0.4894626 0.3544566 0.2875993 -0.4961862 0.3544566 0.2875993 -0.5025087 0.3544566 0.2875993 -0.5084753 0.3544566 0.2875993 -0.514124 0.3544566 0.2875993 -0.519487 0.3544566 0.2875993 -0.5245917 0.3544566 0.2875993 -0.529462 0.3544566 0.2875993 -0.5341183 0.3544566 0.2875993 -0.5385787 0.3544566 0.2875993 -0.5428591 0.3544566 0.2875993 -0.5469733 0.3544566 0.2875993 -0.5509339 0.3544566 0.2875993 -0.5547519 0.3544566 0.2875993 -0.5584371 0.3544566 0.2875993 -0.5619986 0.3544566 0.2875993 -0.5654443 0.3544566 0.2875993 -0.5687816 0.3544566 0.2875993 -0.092819 0.3767383 0.2875993 -0.2262531 0.3767383 0.2875993 -0.2875993 0.3767383 0.2875993 -0.3262122 0.3767383 0.2875993 -0.3544566 0.3767383 0.2875993 -0.3767383 0.3767383 0.2875993 -0.3951413 0.3767383 0.2875993 -0.4108177 0.3767383 0.2875993 -0.4244723 0.3767383 0.2875993 -0.4365675 0.3767383 0.2875993 -0.4474232 0.3767383 0.2875993 -0.45727 0.3767383 0.2875993 -0.4662797 0.3767383 0.2875993 -0.4745834 0.3767383 0.2875993 -0.4822838 0.3767383 0.2875993 -0.4894626 0.3767383 0.2875993 -0.4961862 0.3767383 0.2875993 -0.5025087 0.3767383 0.2875993 -0.5084753 0.3767383 0.2875993 -0.514124 0.3767383 0.2875993 -0.519487 0.3767383 0.2875993 -0.5245917 0.3767383 0.2875993 -0.529462 0.3767383 0.2875993 -0.5341183 0.3767383 0.2875993 -0.5385787 0.3767383 0.2875993 -0.5428591 0.3767383 0.2875993 -0.5469733 0.3767383 0.2875993 -0.5509339 0.3767383 0.2875993 -0.5547519 0.3767383 0.2875993 -0.5584371 0.3767383 0.2875993 -0.5619986 0.3767383 0.2875993 -0.5654443 0.3767383 0.2875993 -0.5687816 0.3767383 0.2875993 -0.092819 0.3951413 0.2875993 -0.2262531 0.3951413 0.2875993 -0.2875993 0.3951413 0.2875993 -0.3262122 0.3951413 0.2875993 -0.3544566 0.3951413 0.2875993 -0.3767383 0.3951413 0.2875993 -0.3951413 0.3951413 0.2875993 -0.4108177 0.3951413 0.2875993 -0.4244723 0.3951413 0.2875993 -0.4365675 0.3951413 0.2875993 -0.4474232 0.3951413 0.2875993 -0.45727 0.3951413 0.2875993 -0.4662797 0.3951413 0.2875993 -0.4745834 0.3951413 0.2875993 -0.4822838 0.3951413 0.2875993 -0.4894626 0.3951413 0.2875993 -0.4961862 0.3951413 0.2875993 -0.5025087 0.3951413 0.2875993 -0.5084753 0.3951413 0.2875993 -0.514124 0.3951413 0.2875993 -0.519487 0.3951413 0.2875993 -0.5245917 0.3951413 0.2875993 -0.529462 0.3951413 0.2875993 -0.5341183 0.3951413 0.2875993 -0.5385787 0.3951413 0.2875993 -0.5428591 0.3951413 0.2875993 -0.5469733 0.3951413 0.2875993 -0.5509339 0.3951413 0.2875993 -0.5547519 0.3951413 0.2875993 -0.5584371 0.3951413 0.2875993 -0.5619986 0.3951413 0.2875993 -0.5654443 0.3951413 0.2875993 -0.5687816 0.3951413 0.2875993 -0.092819 0.4108177 0.2875993 -0.2262531 0.4108177 0.2875993 -0.2875993 0.4108177 0.2875993 -0.3262122 0.4108177 0.2875993 -0.3544566 0.4108177 0.2875993 -0.3767383 0.4108177 0.2875993 -0.3951413 0.4108177 0.2875993 -0.4108177 0.4108177 0.2875993 -0.4244723 0.4108177 0.2875993 -0.4365675 0.4108177 0.2875993 -0.4474232 0.4108177 0.2875993 -0.45727 0.4108177 0.2875993 -0.4662797 0.4108177 0.2875993 -0.4745834 0.4108177 0.2875993 -0.4822838 0.4108177 0.2875993 -0.4894626 0.4108177 0.2875993 -0.4961862 0.4108177 0.2875993 -0.5025087 0.4108177 0.2875993 -0.5084753 0.4108177 0.2875993 -0.514124 0.4108177 0.2875993 -0.519487 0.4108177 0.2875993 -0.5245917 0.4108177 0.2875993 -0.529462 0.4108177 0.2875993 -0.5341183 0.4108177 0.2875993 -0.5385787 0.4108177 0.2875993 -0.5428591 0.4108177 0.2875993 -0.5469733 0.4108177 0.2875993 -0.5509339 0.4108177 0.2875993 -0.5547519 0.4108177 0.2875993 -0.5584371 0.4108177 0.2875993 -0.5619986 0.4108177 0.2875993 -0.5654443 0.4108177 0.2875993 -0.5687816 0.4108177 0.2875993 -0.092819 0.4244723 0.2875993 -0.2262531 0.4244723 0.2875993 -0.2875993 0.4244723 0.2875993 -0.3262122 0.4244723 0.2875993 -0.3544566 0.4244723 0.2875993 -0.3767383 0.4244723 0.2875993 -0.3951413 0.4244723 0.2875993 -0.4108177 0.4244723 0.2875993 -0.4244723 0.4244723 0.2875993 -0.4365675 0.4244723 0.2875993 -0.4474232 0.4244723 0.2875993 -0.45727 0.4244723 0.2875993 -0.4662797 0.4244723 0.2875993 -0.4745834 0.4244723 0.2875993 -0.4822838 0.4244723 0.2875993 -0.4894626 0.4244723 0.2875993 -0.4961862 0.4244723 0.2875993 -0.5025087 0.4244723 0.2875993 -0.5084753 0.4244723 0.2875993 -0.514124 0.4244723 0.2875993 -0.519487 0.4244723 0.2875993 -0.5245917 0.4244723 0.2875993 -0.529462 0.4244723 0.2875993 -0.5341183 0.4244723 0.2875993 -0.5385787 0.4244723 0.2875993 -0.5428591 0.4244723 0.2875993 -0.5469733 0.4244723 0.2875993 -0.5509339 0.4244723 0.2875993 -0.5547519 0.4244723 0.2875993 -0.5584371 0.4244723 0.2875993 -0.5619986 0.4244723 0.2875993 -0.5654443 0.4244723 0.2875993 -0.5687816 0.4244723 0.2875993 -0.092819 0.4365675 0.2875993 -0.2262531 0.4365675 0.2875993 -0.2875993 0.4365675 0.2875993 -0.3262122 0.4365675 0.2875993 -0.3544566 0.4365675 0.2875993 -0.3767383 0.4365675 0.2875993 -0.3951413 0.4365675 0.2875993 -0.4108177 0.4365675 0.2875993 -0.4244723 0.4365675 0.2875993 -0.4365675 0.4365675 0.2875993 -0.4474232 0.4365675 0.2875993 -0.45727 0.4365675 0.2875993 -0.4662797 0.4365675 0.2875993 -0.4745834 0.4365675 0.2875993 -0.4822838 0.4365675 0.2875993 -0.4894626 0.4365675 0.2875993 -0.4961862 0.4365675 0.2875993 -0.5025087 0.4365675 0.2875993 -0.5084753 0.4365675 0.2875993 -0.514124 0.4365675 0.2875993 -0.519487 0.4365675 0.2875993 -0.5245917 0.4365675 0.2875993 -0.529462 0.4365675 0.2875993 -0.5341183 0.4365675 0.2875993 -0.5385787 0.4365675 0.2875993 -0.5428591 0.4365675 0.2875993 -0.5469733 0.4365675 0.2875993 -0.5509339 0.4365675 0.2875993 -0.5547519 0.4365675 0.2875993 -0.5584371 0.4365675 0.2875993 -0.5619986 0.4365675 0.2875993 -0.5654443 0.4365675 0.2875993 -0.5687816 0.4365675 0.2875993 -0.092819 0.4474232 0.2875993 -0.2262531 0.4474232 0.2875993 -0.2875993 0.4474232 0.2875993 -0.3262122 0.4474232 0.2875993 -0.3544566 0.4474232 0.2875993 -0.3767383 0.4474232 0.2875993 -0.3951413 0.4474232 0.2875993 -0.4108177 0.4474232 0.2875993 -0.4244723 0.4474232 0.2875993 -0.4365675 0.4474232 0.2875993 -0.4474232 0.4474232 0.2875993 -0.45727 0.4474232 0.2875993 -0.4662797 0.4474232 0.2875993 -0.4745834 0.4474232 0.2875993 -0.4822838 0.4474232 0.2875993 -0.4894626 0.4474232 0.2875993 -0.4961862 0.4474232 0.2875993 -0.5025087 0.4474232 0.2875993 -0.5084753 0.4474232 0.2875993 -0.514124 0.4474232 0.2875993 -0.519487 0.4474232 0.2875993 -0.5245917 0.4474232 0.2875993 -0.529462 0.4474232 0.2875993 -0.5341183 0.4474232 0.2875993 -0.5385787 0.4474232 0.2875993 -0.5428591 0.4474232 0.2875993 -0.5469733 0.4474232 0.2875993 -0.5509339 0.4474232 0.2875993 -0.5547519 0.4474232 0.2875993 -0.5584371 0.4474232 0.2875993 -0.5619986 0.4474232 0.2875993 -0.5654443 0.4474232 0.2875993 -0.5687816 0.4474232 0.2875993 -0.092819 0.45727 0.2875993 -0.2262531 0.45727 0.2875993 -0.2875993 0.45727 0.2875993 -0.3262122 0.45727 0.2875993 -0.3544566 0.45727 0.2875993 -0.3767383 0.45727 0.2875993 -0.3951413 0.45727 0.2875993 -0.4108177 0.45727 0.2875993 -0.4244723 0.45727 0.2875993 -0.4365675 0.45727 0.2875993 -0.4474232 0.45727 0.2875993 -0.45727 0.45727 0.2875993 -0.4662797 0.45727 0.2875993 -0.4745834 0.45727 0.2875993 -0.4822838 0.45727 0.2875993 -0.4894626 0.45727 0.2875993 -0.4961862 0.45727 0.2875993 -0.5025087 0.45727 0.2875993 -0.5084753 0.45727 0.2875993 -0.514124 0.45727 0.2875993 -0.519487 0.45727 0.2875993 -0.5245917 0.45727 0.2875993 -0.529462 0.45727 0.2875993 -0.5341183 0.45727 0.2875993 -0.5385787 0.45727 0.2875993 -0.5428591 0.45727 0.2875993 -0.5469733 0.45727 0.2875993 -0.5509339 0.45727 0.2875993 -0.5547519 0.45727 0.2875993 -0.5584371 0.45727 0.2875993 -0.5619986 0.45727 0.2875993 -0.5654443 0.45727 0.2875993 -0.5687816 0.45727 0.2875993 -0.092819 0.4662797 0.2875993 -0.2262531 0.4662797 0.2875993 -0.2875993 0.4662797 0.2875993 -0.3262122 0.4662797 0.2875993 -0.3544566 0.4662797 0.2875993 -0.3767383 0.4662797 0.2875993 -0.3951413 0.4662797 0.2875993 -0.4108177 0.4662797 0.2875993 -0.4244723 0.4662797 0.2875993 -0.4365675 0.4662797 0.2875993 -0.4474232 0.4662797 0.2875993 -0.45727 0.4662797 0.2875993 -0.4662797 0.4662797 0.2875993 -0.4745834 0.4662797 0.2875993 -0.4822838 0.4662797 0.2875993 -0.4894626 0.4662797 0.2875993 -0.4961862 0.4662797 0.2875993 -0.5025087 0.4662797 0.2875993 -0.5084753 0.4662797 0.2875993 -0.514124 0.4662797 0.2875993 -0.519487 0.4662797 0.2875993 -0.5245917 0.4662797 0.2875993 -0.529462 0.4662797 0.2875993 -0.5341183 0.4662797 0.2875993 -0.5385787 0.4662797 0.2875993 -0.5428591 0.4662797 0.2875993 -0.5469733 0.4662797 0.2875993 -0.5509339 0.4662797 0.2875993 -0.5547519 0.4662797 0.2875993 -0.5584371 0.4662797 0.2875993 -0.5619986 0.4662797 0.2875993 -0.5654443 0.4662797 0.2875993 -0.5687816 0.4662797 0.2875993 -0.092819 0.4745834 0.2875993 -0.2262531 0.4745834 0.2875993 -0.2875993 0.4745834 0.2875993 -0.3262122 0.4745834 0.2875993 -0.3544566 0.4745834 0.2875993 -0.3767383 0.4745834 0.2875993 -0.3951413 0.4745834 0.2875993 -0.4108177 0.4745834 0.2875993 -0.4244723 0.4745834 0.2875993 -0.4365675 0.4745834 0.2875993 -0.4474232 0.4745834 0.2875993 -0.45727 0.4745834 0.2875993 -0.4662797 0.4745834 0.2875993 -0.4745834 0.4745834 0.2875993 -0.4822838 0.4745834 0.2875993 -0.4894626 0.4745834 0.2875993 -0.4961862 0.4745834 0.2875993 -0.5025087 0.4745834 0.2875993 -0.5084753 0.4745834 0.2875993 -0.514124 0.4745834 0.2875993 -0.519487 0.4745834 0.2875993 -0.5245917 0.4745834 0.2875993 -0.529462 0.4745834 0.2875993 -0.5341183 0.4745834 0.2875993 -0.5385787 0.4745834 0.2875993 -0.5428591 0.4745834 0.2875993 -0.5469733 0.4745834 0.2875993 -0.5509339 0.4745834 0.2875993 -0.5547519 0.4745834 0.2875993 -0.5584371 0.4745834 0.2875993 -0.5619986 0.4745834 0.2875993 -0.5654443 0.4745834 0.2875993 -0.5687816 0.4745834 0.2875993 -0.092819 0.4822838 0.2875993 -0.2262531 0.4822838 0.2875993 -0.2875993 0.4822838 0.2875993 -0.3262122 0.4822838 0.2875993 -0.3544566 0.4822838 0.2875993 -0.3767383 0.4822838 0.2875993 -0.3951413 0.4822838 0.2875993 -0.4108177 0.4822838 0.2875993 -0.4244723 0.4822838 0.2875993 -0.4365675 0.4822838 0.2875993 -0.4474232 0.4822838 0.2875993 -0.45727 0.4822838 0.2875993 -0.4662797 0.4822838 0.2875993 -0.4745834 0.4822838 0.2875993 -0.4822838 0.4822838 0.2875993 -0.4894626 0.4822838 0.2875993 -0.4961862 0.4822838 0.2875993 -0.5025087 0.4822838 0.2875993 -0.5084753 0.4822838 0.2875993 -0.514124 0.4822838 0.2875993 -0.519487 0.4822838 0.2875993 -0.5245917 0.4822838 0.2875993 -0.529462 0.4822838 0.2875993 -0.5341183 0.4822838 0.2875993 -0.5385787 0.4822838 0.2875993 -0.5428591 0.4822838 0.2875993 -0.5469733 0.4822838 0.2875993 -0.5509339 0.4822838 0.2875993 -0.5547519 0.4822838 0.2875993 -0.5584371 0.4822838 0.2875993 -0.5619986 0.4822838 0.2875993 -0.5654443 0.4822838 0.2875993 -0.5687816 0.4822838 0.2875993 -0.092819 0.4894626 0.2875993 -0.2262531 0.4894626 0.2875993 -0.2875993 0.4894626 0.2875993 -0.3262122 0.4894626 0.2875993 -0.3544566 0.4894626 0.2875993 -0.3767383 0.4894626 0.2875993 -0.3951413 0.4894626 0.2875993 -0.4108177 0.4894626 0.2875993 -0.4244723 0.4894626 0.2875993 -0.4365675 0.4894626 0.2875993 -0.4474232 0.4894626 0.2875993 -0.45727 0.4894626 0.2875993 -0.4662797 0.4894626 0.2875993 -0.4745834 0.4894626 0.2875993 -0.4822838 0.4894626 0.2875993 -0.4894626 0.4894626 0.2875993 -0.4961862 0.4894626 0.2875993 -0.5025087 0.4894626 0.2875993 -0.5084753 0.4894626 0.2875993 -0.514124 0.4894626 0.2875993 -0.519487 0.4894626 0.2875993 -0.5245917 0.4894626 0.2875993 -0.529462 0.4894626 0.2875993 -0.5341183 0.4894626 0.2875993 -0.5385787 0.4894626 0.2875993 -0.5428591 0.4894626 0.2875993 -0.5469733 0.4894626 0.2875993 -0.5509339 0.4894626 0.2875993 -0.5547519 0.4894626 0.2875993 -0.5584371 0.4894626 0.2875993 -0.5619986 0.4894626 0.2875993 -0.5654443 0.4894626 0.2875993 -0.5687816 0.4894626 0.2875993 -0.092819 0.4961862 0.2875993 -0.2262531 0.4961862 0.2875993 -0.2875993 0.4961862 0.2875993 -0.3262122 0.4961862 0.2875993 -0.3544566 0.4961862 0.2875993 -0.3767383 0.4961862 0.2875993 -0.3951413 0.4961862 0.2875993 -0.4108177 0.4961862 0.2875993 -0.4244723 0.4961862 0.2875993 -0.4365675 0.4961862 0.2875993 -0.4474232 0.4961862 0.2875993 -0.45727 0.4961862 0.2875993 -0.4662797 0.4961862 0.2875993 -0.4745834 0.4961862 0.2875993 -0.4822838 0.4961862 0.2875993 -0.4894626 0.4961862 0.2875993 -0.4961862 0.4961862 0.2875993 -0.5025087 0.4961862 0.2875993 -0.5084753 0.4961862 0.2875993 -0.514124 0.4961862 0.2875993 -0.519487 0.4961862 0.2875993 -0.5245917 0.4961862 0.2875993 -0.529462 0.4961862 0.2875993 -0.5341183 0.4961862 0.2875993 -0.5385787 0.4961862 0.2875993 -0.5428591 0.4961862 0.2875993 -0.5469733 0.4961862 0.2875993 -0.5509339 0.4961862 0.2875993 -0.5547519 0.4961862 0.2875993 -0.5584371 0.4961862 0.2875993 -0.5619986 0.4961862 0.2875993 -0.5654443 0.4961862 0.2875993 -0.5687816 0.4961862 0.2875993 -0.092819 0.5025087 0.2875993 -0.2262531 0.5025087 0.2875993 -0.2875993 0.5025087 0.2875993 -0.3262122 0.5025087 0.2875993 -0.3544566 0.5025087 0.2875993 -0.3767383 0.5025087 0.2875993 -0.3951413 0.5025087 0.2875993 -0.4108177 0.5025087 0.2875993 -0.4244723 0.5025087 0.2875993 -0.4365675 0.5025087 0.2875993 -0.4474232 0.5025087 0.2875993 -0.45727 0.5025087 0.2875993 -0.4662797 0.5025087 0.2875993 -0.4745834 0.5025087 0.2875993 -0.4822838 0.5025087 0.2875993 -0.4894626 0.5025087 0.2875993 -0.4961862 0.5025087 0.2875993 -0.5025087 0.5025087 0.2875993 -0.5084753 0.5025087 0.2875993 -0.514124 0.5025087 0.2875993 -0.519487 0.5025087 0.2875993 -0.5245917 0.5025087 0.2875993 -0.529462 0.5025087 0.2875993 -0.5341183 0.5025087 0.2875993 -0.5385787 0.5025087 0.2875993 -0.5428591 0.5025087 0.2875993 -0.5469733 0.5025087 0.2875993 -0.5509339 0.5025087 0.2875993 -0.5547519 0.5025087 0.2875993 -0.5584371 0.5025087 0.2875993 -0.5619986 0.5025087 0.2875993 -0.5654443 0.5025087 0.2875993 -0.5687816 0.5025087 0.2875993 -0.092819 0.5084753 0.2875993 -0.2262531 0.5084753 0.2875993 -0.2875993 0.5084753 0.2875993 -0.3262122 0.5084753 0.2875993 -0.3544566 0.5084753 0.2875993 -0.3767383 0.5084753 0.2875993 -0.3951413 0.5084753 0.2875993 -0.4108177 0.5084753 0.2875993 -0.4244723 0.5084753 0.2875993 -0.4365675 0.5084753 0.2875993 -0.4474232 0.5084753 0.2875993 -0.45727 0.5084753 0.2875993 -0.4662797 0.5084753 0.2875993 -0.4745834 0.5084753 0.2875993 -0.4822838 0.5084753 0.2875993 -0.4894626 0.5084753 0.2875993 -0.4961862 0.5084753 0.2875993 -0.5025087 0.5084753 0.2875993 -0.5084753 0.5084753 0.2875993 -0.514124 0.5084753 0.2875993 -0.519487 0.5084753 0.2875993 -0.5245917 0.5084753 0.2875993 -0.529462 0.5084753 0.2875993 -0.5341183 0.5084753 0.2875993 -0.5385787 0.5084753 0.2875993 -0.5428591 0.5084753 0.2875993 -0.5469733 0.5084753 0.2875993 -0.5509339 0.5084753 0.2875993 -0.5547519 0.5084753 0.2875993 -0.5584371 0.5084753 0.2875993 -0.5619986 0.5084753 0.2875993 -0.5654443 0.5084753 0.2875993 -0.5687816 0.5084753 0.2875993 -0.092819 0.514124 0.2875993 -0.2262531 0.514124 0.2875993 -0.2875993 0.514124 0.2875993 -0.3262122 0.514124 0.2875993 -0.3544566 0.514124 0.2875993 -0.3767383 0.514124 0.2875993 -0.3951413 0.514124 0.2875993 -0.4108177 0.514124 0.2875993 -0.4244723 0.514124 0.2875993 -0.4365675 0.514124 0.2875993 -0.4474232 0.514124 0.2875993 -0.45727 0.514124 0.2875993 -0.4662797 0.514124 0.2875993 -0.4745834 0.514124 0.2875993 -0.4822838 0.514124 0.2875993 -0.4894626 0.514124 0.2875993 -0.4961862 0.514124 0.2875993 -0.5025087 0.514124 0.2875993 -0.5084753 0.514124 0.2875993 -0.514124 0.514124 0.2875993 -0.519487 0.514124 0.2875993 -0.5245917 0.514124 0.2875993 -0.529462 0.514124 0.2875993 -0.5341183 0.514124 0.2875993 -0.5385787 0.514124 0.2875993 -0.5428591 0.514124 0.2875993 -0.5469733 0.514124 0.2875993 -0.5509339 0.514124 0.2875993 -0.5547519 0.514124 0.2875993 -0.5584371 0.514124 0.2875993 -0.5619986 0.514124 0.2875993 -0.5654443 0.514124 0.2875993 -0.5687816 0.514124 0.2875993 -0.092819 0.519487 0.2875993 -0.2262531 0.519487 0.2875993 -0.2875993 0.519487 0.2875993 -0.3262122 0.519487 0.2875993 -0.3544566 0.519487 0.2875993 -0.3767383 0.519487 0.2875993 -0.3951413 0.519487 0.2875993 -0.4108177 0.519487 0.2875993 -0.4244723 0.519487 0.2875993 -0.4365675 0.519487 0.2875993 -0.4474232 0.519487 0.2875993 -0.45727 0.519487 0.2875993 -0.4662797 0.519487 0.2875993 -0.4745834 0.519487 0.2875993 -0.4822838 0.519487 0.2875993 -0.4894626 0.519487 0.2875993 -0.4961862 0.519487 0.2875993 -0.5025087 0.519487 0.2875993 -0.5084753 0.519487 0.2875993 -0.514124 0.519487 0.2875993 -0.519487 0.519487 0.2875993 -0.5245917 0.519487 0.2875993 -0.529462 0.519487 0.2875993 -0.5341183 0.519487 0.2875993 -0.5385787 0.519487 0.2875993 -0.5428591 0.519487 0.2875993 -0.5469733 0.519487 0.2875993 -0.5509339 0.519487 0.2875993 -0.5547519 0.519487 0.2875993 -0.5584371 0.519487 0.2875993 -0.5619986 0.519487 0.2875993 -0.5654443 0.519487 0.2875993 -0.5687816 0.519487 0.2875993 -0.092819 0.5245917 0.2875993 -0.2262531 0.5245917 0.2875993 -0.2875993 0.5245917 0.2875993 -0.3262122 0.5245917 0.2875993 -0.3544566 0.5245917 0.2875993 -0.3767383 0.5245917 0.2875993 -0.3951413 0.5245917 0.2875993 -0.4108177 0.5245917 0.2875993 -0.4244723 0.5245917 0.2875993 -0.4365675 0.5245917 0.2875993 -0.4474232 0.5245917 0.2875993 -0.45727 0.5245917 0.2875993 -0.4662797 0.5245917 0.2875993 -0.4745834 0.5245917 0.2875993 -0.4822838 0.5245917 0.2875993 -0.4894626 0.5245917 0.2875993 -0.4961862 0.5245917 0.2875993 -0.5025087 0.5245917 0.2875993 -0.5084753 0.5245917 0.2875993 -0.514124 0.5245917 0.2875993 -0.519487 0.5245917 0.2875993 -0.5245917 0.5245917 0.2875993 -0.529462 0.5245917 0.2875993 -0.5341183 0.5245917 0.2875993 -0.5385787 0.5245917 0.2875993 -0.5428591 0.5245917 0.2875993 -0.5469733 0.5245917 0.2875993 -0.5509339 0.5245917 0.2875993 -0.5547519 0.5245917 0.2875993 -0.5584371 0.5245917 0.2875993 -0.5619986 0.5245917 0.2875993 -0.5654443 0.5245917 0.2875993 -0.5687816 0.5245917 0.2875993 -0.092819 0.529462 0.2875993 -0.2262531 0.529462 0.2875993 -0.2875993 0.529462 0.2875993 -0.3262122 0.529462 0.2875993 -0.3544566 0.529462 0.2875993 -0.3767383 0.529462 0.2875993 -0.3951413 0.529462 0.2875993 -0.4108177 0.529462 0.2875993 -0.4244723 0.529462 0.2875993 -0.4365675 0.529462 0.2875993 -0.4474232 0.529462 0.2875993 -0.45727 0.529462 0.2875993 -0.4662797 0.529462 0.2875993 -0.4745834 0.529462 0.2875993 -0.4822838 0.529462 0.2875993 -0.4894626 0.529462 0.2875993 -0.4961862 0.529462 0.2875993 -0.5025087 0.529462 0.2875993 -0.5084753 0.529462 0.2875993 -0.514124 0.529462 0.2875993 -0.519487 0.529462 0.2875993 -0.5245917 0.529462 0.2875993 -0.529462 0.529462 0.2875993 -0.5341183 0.529462 0.2875993 -0.5385787 0.529462 0.2875993 -0.5428591 0.529462 0.2875993 -0.5469733 0.529462 0.2875993 -0.5509339 0.529462 0.2875993 -0.5547519 0.529462 0.2875993 -0.5584371 0.529462 0.2875993 -0.5619986 0.529462 0.2875993 -0.5654443 0.529462 0.2875993 -0.5687816 0.529462 0.2875993 -0.092819 0.5341183 0.2875993 -0.2262531 0.5341183 0.2875993 -0.2875993 0.5341183 0.2875993 -0.3262122 0.5341183 0.2875993 -0.3544566 0.5341183 0.2875993 -0.3767383 0.5341183 0.2875993 -0.3951413 0.5341183 0.2875993 -0.4108177 0.5341183 0.2875993 -0.4244723 0.5341183 0.2875993 -0.4365675 0.5341183 0.2875993 -0.4474232 0.5341183 0.2875993 -0.45727 0.5341183 0.2875993 -0.4662797 0.5341183 0.2875993 -0.4745834 0.5341183 0.2875993 -0.4822838 0.5341183 0.2875993 -0.4894626 0.5341183 0.2875993 -0.4961862 0.5341183 0.2875993 -0.5025087 0.5341183 0.2875993 -0.5084753 0.5341183 0.2875993 -0.514124 0.5341183 0.2875993 -0.519487 0.5341183 0.2875993 -0.5245917 0.5341183 0.2875993 -0.529462 0.5341183 0.2875993 -0.5341183 0.5341183 0.2875993 -0.5385787 0.5341183 0.2875993 -0.5428591 0.5341183 0.2875993 -0.5469733 0.5341183 0.2875993 -0.5509339 0.5341183 0.2875993 -0.5547519 0.5341183 0.2875993 -0.5584371 0.5341183 0.2875993 -0.5619986 0.5341183 0.2875993 -0.5654443 0.5341183 0.2875993 -0.5687816 0.5341183 0.2875993 -0.092819 0.5385787 0.2875993 -0.2262531 0.5385787 0.2875993 -0.2875993 0.5385787 0.2875993 -0.3262122 0.5385787 0.2875993 -0.3544566 0.5385787 0.2875993 -0.3767383 0.5385787 0.2875993 -0.3951413 0.5385787 0.2875993 -0.4108177 0.5385787 0.2875993 -0.4244723 0.5385787 0.2875993 -0.4365675 0.5385787 0.2875993 -0.4474232 0.5385787 0.2875993 -0.45727 0.5385787 0.2875993 -0.4662797 0.5385787 0.2875993 -0.4745834 0.5385787 0.2875993 -0.4822838 0.5385787 0.2875993 -0.4894626 0.5385787 0.2875993 -0.4961862 0.5385787 0.2875993 -0.5025087 0.5385787 0.2875993 -0.5084753 0.5385787 0.2875993 -0.514124 0.5385787 0.2875993 -0.519487 0.5385787 0.2875993 -0.5245917 0.5385787 0.2875993 -0.529462 0.5385787 0.2875993 -0.5341183 0.5385787 0.2875993 -0.5385787 0.5385787 0.2875993 -0.5428591 0.5385787 0.2875993 -0.5469733 0.5385787 0.2875993 -0.5509339 0.5385787 0.2875993 -0.5547519 0.5385787 0.2875993 -0.5584371 0.5385787 0.2875993 -0.5619986 0.5385787 0.2875993 -0.5654443 0.5385787 0.2875993 -0.5687816 0.5385787 0.2875993 -0.092819 0.5428591 0.2875993 -0.2262531 0.5428591 0.2875993 -0.2875993 0.5428591 0.2875993 -0.3262122 0.5428591 0.2875993 -0.3544566 0.5428591 0.2875993 -0.3767383 0.5428591 0.2875993 -0.3951413 0.5428591 0.2875993 -0.4108177 0.5428591 0.2875993 -0.4244723 0.5428591 0.2875993 -0.4365675 0.5428591 0.2875993 -0.4474232 0.5428591 0.2875993 -0.45727 0.5428591 0.2875993 -0.4662797 0.5428591 0.2875993 -0.4745834 0.5428591 0.2875993 -0.4822838 0.5428591 0.2875993 -0.4894626 0.5428591 0.2875993 -0.4961862 0.5428591 0.2875993 -0.5025087 0.5428591 0.2875993 -0.5084753 0.5428591 0.2875993 -0.514124 0.5428591 0.2875993 -0.519487 0.5428591 0.2875993 -0.5245917 0.5428591 0.2875993 -0.529462 0.5428591 0.2875993 -0.5341183 0.5428591 0.2875993 -0.5385787 0.5428591 0.2875993 -0.5428591 0.5428591 0.2875993 -0.5469733 0.5428591 0.2875993 -0.5509339 0.5428591 0.2875993 -0.5547519 0.5428591 0.2875993 -0.5584371 0.5428591 0.2875993 -0.5619986 0.5428591 0.2875993 -0.5654443 0.5428591 0.2875993 -0.5687816 0.5428591 0.2875993 -0.092819 0.5469733 0.2875993 -0.2262531 0.5469733 0.2875993 -0.2875993 0.5469733 0.2875993 -0.3262122 0.5469733 0.2875993 -0.3544566 0.5469733 0.2875993 -0.3767383 0.5469733 0.2875993 -0.3951413 0.5469733 0.2875993 -0.4108177 0.5469733 0.2875993 -0.4244723 0.5469733 0.2875993 -0.4365675 0.5469733 0.2875993 -0.4474232 0.5469733 0.2875993 -0.45727 0.5469733 0.2875993 -0.4662797 0.5469733 0.2875993 -0.4745834 0.5469733 0.2875993 -0.4822838 0.5469733 0.2875993 -0.4894626 0.5469733 0.2875993 -0.4961862 0.5469733 0.2875993 -0.5025087 0.5469733 0.2875993 -0.5084753 0.5469733 0.2875993 -0.514124 0.5469733 0.2875993 -0.519487 0.5469733 0.2875993 -0.5245917 0.5469733 0.2875993 -0.529462 0.5469733 0.2875993 -0.5341183 0.5469733 0.2875993 -0.5385787 0.5469733 0.2875993 -0.5428591 0.5469733 0.2875993 -0.5469733 0.5469733 0.2875993 -0.5509339 0.5469733 0.2875993 -0.5547519 0.5469733 0.2875993 -0.5584371 0.5469733 0.2875993 -0.5619986 0.5469733 0.2875993 -0.5654443 0.5469733 0.2875993 -0.5687816 0.5469733 0.2875993 -0.092819 0.5509339 0.2875993 -0.2262531 0.5509339 0.2875993 -0.2875993 0.5509339 0.2875993 -0.3262122 0.5509339 0.2875993 -0.3544566 0.5509339 0.2875993 -0.3767383 0.5509339 0.2875993 -0.3951413 0.5509339 0.2875993 -0.4108177 0.5509339 0.2875993 -0.4244723 0.5509339 0.2875993 -0.4365675 0.5509339 0.2875993 -0.4474232 0.5509339 0.2875993 -0.45727 0.5509339 0.2875993 -0.4662797 0.5509339 0.2875993 -0.4745834 0.5509339 0.2875993 -0.4822838 0.5509339 0.2875993 -0.4894626 0.5509339 0.2875993 -0.4961862 0.5509339 0.2875993 -0.5025087 0.5509339 0.2875993 -0.5084753 0.5509339 0.2875993 -0.514124 0.5509339 0.2875993 -0.519487 0.5509339 0.2875993 -0.5245917 0.5509339 0.2875993 -0.529462 0.5509339 0.2875993 -0.5341183 0.5509339 0.2875993 -0.5385787 0.5509339 0.2875993 -0.5428591 0.5509339 0.2875993 -0.5469733 0.5509339 0.2875993 -0.5509339 0.5509339 0.2875993 -0.5547519 0.5509339 0.2875993 -0.5584371 0.5509339 0.2875993 -0.5619986 0.5509339 0.2875993 -0.5654443 0.5509339 0.2875993 -0.5687816 0.5509339 0.2875993 -0.092819 0.5547519 0.2875993 -0.2262531 0.5547519 0.2875993 -0.2875993 0.5547519 0.2875993 -0.3262122 0.5547519 0.2875993 -0.3544566 0.5547519 0.2875993 -0.3767383 0.5547519 0.2875993 -0.3951413 0.5547519 0.2875993 -0.4108177 0.5547519 0.2875993 -0.4244723 0.5547519 0.2875993 -0.4365675 0.5547519 0.2875993 -0.4474232 0.5547519 0.2875993 -0.45727 0.5547519 0.2875993 -0.4662797 0.5547519 0.2875993 -0.4745834 0.5547519 0.2875993 -0.4822838 0.5547519 0.2875993 -0.4894626 0.5547519 0.2875993 -0.4961862 0.5547519 0.2875993 -0.5025087 0.5547519 0.2875993 -0.5084753 0.5547519 0.2875993 -0.514124 0.5547519 0.2875993 -0.519487 0.5547519 0.2875993 -0.5245917 0.5547519 0.2875993 -0.529462 0.5547519 0.2875993 -0.5341183 0.5547519 0.2875993 -0.5385787 0.5547519 0.2875993 -0.5428591 0.5547519 0.2875993 -0.5469733 0.5547519 0.2875993 -0.5509339 0.5547519 0.2875993 -0.5547519 0.5547519 0.2875993 -0.5584371 0.5547519 0.2875993 -0.5619986 0.5547519 0.2875993 -0.5654443 0.5547519 0.2875993 -0.5687816 0.5547519 0.2875993 -0.092819 0.5584371 0.2875993 -0.2262531 0.5584371 0.2875993 -0.2875993 0.5584371 0.2875993 -0.3262122 0.5584371 0.2875993 -0.3544566 0.5584371 0.2875993 -0.3767383 0.5584371 0.2875993 -0.3951413 0.5584371 0.2875993 -0.4108177 0.5584371 0.2875993 -0.4244723 0.5584371 0.2875993 -0.4365675 0.5584371 0.2875993 -0.4474232 0.5584371 0.2875993 -0.45727 0.5584371 0.2875993 -0.4662797 0.5584371 0.2875993 -0.4745834 0.5584371 0.2875993 -0.4822838 0.5584371 0.2875993 -0.4894626 0.5584371 0.2875993 -0.4961862 0.5584371 0.2875993 -0.5025087 0.5584371 0.2875993 -0.5084753 0.5584371 0.2875993 -0.514124 0.5584371 0.2875993 -0.519487 0.5584371 0.2875993 -0.5245917 0.5584371 0.2875993 -0.529462 0.5584371 0.2875993 -0.5341183 0.5584371 0.2875993 -0.5385787 0.5584371 0.2875993 -0.5428591 0.5584371 0.2875993 -0.5469733 0.5584371 0.2875993 -0.5509339 0.5584371 0.2875993 -0.5547519 0.5584371 0.2875993 -0.5584371 0.5584371 0.2875993 -0.5619986 0.5584371 0.2875993 -0.5654443 0.5584371 0.2875993 -0.5687816 0.5584371 0.2875993 -0.092819 0.5619986 0.2875993 -0.2262531 0.5619986 0.2875993 -0.2875993 0.5619986 0.2875993 -0.3262122 0.5619986 0.2875993 -0.3544566 0.5619986 0.2875993 -0.3767383 0.5619986 0.2875993 -0.3951413 0.5619986 0.2875993 -0.4108177 0.5619986 0.2875993 -0.4244723 0.5619986 0.2875993 -0.4365675 0.5619986 0.2875993 -0.4474232 0.5619986 0.2875993 -0.45727 0.5619986 0.2875993 -0.4662797 0.5619986 0.2875993 -0.4745834 0.5619986 0.2875993 -0.4822838 0.5619986 0.2875993 -0.4894626 0.5619986 0.2875993 -0.4961862 0.5619986 0.2875993 -0.5025087 0.5619986 0.2875993 -0.5084753 0.5619986 0.2875993 -0.514124 0.5619986 0.2875993 -0.519487 0.5619986 0.2875993 -0.5245917 0.5619986 0.2875993 -0.529462 0.5619986 0.2875993 -0.5341183 0.5619986 0.2875993 -0.5385787 0.5619986 0.2875993 -0.5428591 0.5619986 0.2875993 -0.5469733 0.5619986 0.2875993 -0.5509339 0.5619986 0.2875993 -0.5547519 0.5619986 0.2875993 -0.5584371 0.5619986 0.2875993 -0.5619986 0.5619986 0.2875993 -0.5654443 0.5619986 0.2875993 -0.5687816 0.5619986 0.2875993 -0.092819 0.5654443 0.2875993 -0.2262531 0.5654443 0.2875993 -0.2875993 0.5654443 0.2875993 -0.3262122 0.5654443 0.2875993 -0.3544566 0.5654443 0.2875993 -0.3767383 0.5654443 0.2875993 -0.3951413 0.5654443 0.2875993 -0.4108177 0.5654443 0.2875993 -0.4244723 0.5654443 0.2875993 -0.4365675 0.5654443 0.2875993 -0.4474232 0.5654443 0.2875993 -0.45727 0.5654443 0.2875993 -0.4662797 0.5654443 0.2875993 -0.4745834 0.5654443 0.2875993 -0.4822838 0.5654443 0.2875993 -0.4894626 0.5654443 0.2875993 -0.4961862 0.5654443 0.2875993 -0.5025087 0.5654443 0.2875993 -0.5084753 0.5654443 0.2875993 -0.514124 0.5654443 0.2875993 -0.519487 0.5654443 0.2875993 -0.5245917 0.5654443 0.2875993 -0.529462 0.5654443 0.2875993 -0.5341183 0.5654443 0.2875993 -0.5385787 0.5654443 0.2875993 -0.5428591 0.5654443 0.2875993 -0.5469733 0.5654443 0.2875993 -0.5509339 0.5654443 0.2875993 -0.5547519 0.5654443 0.2875993 -0.5584371 0.5654443 0.2875993 -0.5619986 0.5654443 0.2875993 -0.5654443 0.5654443 0.2875993 -0.5687816 0.5654443 0.2875993 -0.092819 0.5687816 0.2875993 -0.2262531 0.5687816 0.2875993 -0.2875993 0.5687816 0.2875993 -0.3262122 0.5687816 0.2875993 -0.3544566 0.5687816 0.2875993 -0.3767383 0.5687816 0.2875993 -0.3951413 0.5687816 0.2875993 -0.4108177 0.5687816 0.2875993 -0.4244723 0.5687816 0.2875993 -0.4365675 0.5687816 0.2875993 -0.4474232 0.5687816 0.2875993 -0.45727 0.5687816 0.2875993 -0.4662797 0.5687816 0.2875993 -0.4745834 0.5687816 0.2875993 -0.4822838 0.5687816 0.2875993 -0.4894626 0.5687816 0.2875993 -0.4961862 0.5687816 0.2875993 -0.5025087 0.5687816 0.2875993 -0.5084753 0.5687816 0.2875993 -0.514124 0.5687816 0.2875993 -0.519487 0.5687816 0.2875993 -0.5245917 0.5687816 0.2875993 -0.529462 0.5687816 0.2875993 -0.5341183 0.5687816 0.2875993 -0.5385787 0.5687816 0.2875993 -0.5428591 0.5687816 0.2875993 -0.5469733 0.5687816 0.2875993 -0.5509339 0.5687816 0.2875993 -0.5547519 0.5687816 0.2875993 -0.5584371 0.5687816 0.2875993 -0.5619986 0.5687816 0.2875993 -0.5654443 0.5687816 0.2875993 -0.5687816 0.5687816 0.2875993 -0.092819 0.092819 0.3262122 -0.2262531 0.092819 0.3262122 -0.2875993 0.092819 0.3262122 -0.3262122 0.092819 0.3262122 -0.3544566 0.092819 0.3262122 -0.3767383 0.092819 0.3262122 -0.3951413 0.092819 0.3262122 -0.4108177 0.092819 0.3262122 -0.4244723 0.092819 0.3262122 -0.4365675 0.092819 0.3262122 -0.4474232 0.092819 0.3262122 -0.45727 0.092819 0.3262122 -0.4662797 0.092819 0.3262122 -0.4745834 0.092819 0.3262122 -0.4822838 0.092819 0.3262122 -0.4894626 0.092819 0.3262122 -0.4961862 0.092819 0.3262122 -0.5025087 0.092819 0.3262122 -0.5084753 0.092819 0.3262122 -0.514124 0.092819 0.3262122 -0.519487 0.092819 0.3262122 -0.5245917 0.092819 0.3262122 -0.529462 0.092819 0.3262122 -0.5341183 0.092819 0.3262122 -0.5385787 0.092819 0.3262122 -0.5428591 0.092819 0.3262122 -0.5469733 0.092819 0.3262122 -0.5509339 0.092819 0.3262122 -0.5547519 0.092819 0.3262122 -0.5584371 0.092819 0.3262122 -0.5619986 0.092819 0.3262122 -0.5654443 0.092819 0.3262122 -0.5687816 0.092819 0.3262122 -0.092819 0.2262531 0.3262122 -0.2262531 0.2262531 0.3262122 -0.2875993 0.2262531 0.3262122 -0.3262122 0.2262531 0.3262122 -0.3544566 0.2262531 0.3262122 -0.3767383 0.2262531 0.3262122 -0.3951413 0.2262531 0.3262122 -0.4108177 0.2262531 0.3262122 -0.4244723 0.2262531 0.3262122 -0.4365675 0.2262531 0.3262122 -0.4474232 0.2262531 0.3262122 -0.45727 0.2262531 0.3262122 -0.4662797 0.2262531 0.3262122 -0.4745834 0.2262531 0.3262122 -0.4822838 0.2262531 0.3262122 -0.4894626 0.2262531 0.3262122 -0.4961862 0.2262531 0.3262122 -0.5025087 0.2262531 0.3262122 -0.5084753 0.2262531 0.3262122 -0.514124 0.2262531 0.3262122 -0.519487 0.2262531 0.3262122 -0.5245917 0.2262531 0.3262122 -0.529462 0.2262531 0.3262122 -0.5341183 0.2262531 0.3262122 -0.5385787 0.2262531 0.3262122 -0.5428591 0.2262531 0.3262122 -0.5469733 0.2262531 0.3262122 -0.5509339 0.2262531 0.3262122 -0.5547519 0.2262531 0.3262122 -0.5584371 0.2262531 0.3262122 -0.5619986 0.2262531 0.3262122 -0.5654443 0.2262531 0.3262122 -0.5687816 0.2262531 0.3262122 -0.092819 0.2875993 0.3262122 -0.2262531 0.2875993 0.3262122 -0.2875993 0.2875993 0.3262122 -0.3262122 0.2875993 0.3262122 -0.3544566 0.2875993 0.3262122 -0.3767383 0.2875993 0.3262122 -0.3951413 0.2875993 0.3262122 -0.4108177 0.2875993 0.3262122 -0.4244723 0.2875993 0.3262122 -0.4365675 0.2875993 0.3262122 -0.4474232 0.2875993 0.3262122 -0.45727 0.2875993 0.3262122 -0.4662797 0.2875993 0.3262122 -0.4745834 0.2875993 0.3262122 -0.4822838 0.2875993 0.3262122 -0.4894626 0.2875993 0.3262122 -0.4961862 0.2875993 0.3262122 -0.5025087 0.2875993 0.3262122 -0.5084753 0.2875993 0.3262122 -0.514124 0.2875993 0.3262122 -0.519487 0.2875993 0.3262122 -0.5245917 0.2875993 0.3262122 -0.529462 0.2875993 0.3262122 -0.5341183 0.2875993 0.3262122 -0.5385787 0.2875993 0.3262122 -0.5428591 0.2875993 0.3262122 -0.5469733 0.2875993 0.3262122 -0.5509339 0.2875993 0.3262122 -0.5547519 0.2875993 0.3262122 -0.5584371 0.2875993 0.3262122 -0.5619986 0.2875993 0.3262122 -0.5654443 0.2875993 0.3262122 -0.5687816 0.2875993 0.3262122 -0.092819 0.3262122 0.3262122 -0.2262531 0.3262122 0.3262122 -0.2875993 0.3262122 0.3262122 -0.3262122 0.3262122 0.3262122 -0.3544566 0.3262122 0.3262122 -0.3767383 0.3262122 0.3262122 -0.3951413 0.3262122 0.3262122 -0.4108177 0.3262122 0.3262122 -0.4244723 0.3262122 0.3262122 -0.4365675 0.3262122 0.3262122 -0.4474232 0.3262122 0.3262122 -0.45727 0.3262122 0.3262122 -0.4662797 0.3262122 0.3262122 -0.4745834 0.3262122 0.3262122 -0.4822838 0.3262122 0.3262122 -0.4894626 0.3262122 0.3262122 -0.4961862 0.3262122 0.3262122 -0.5025087 0.3262122 0.3262122 -0.5084753 0.3262122 0.3262122 -0.514124 0.3262122 0.3262122 -0.519487 0.3262122 0.3262122 -0.5245917 0.3262122 0.3262122 -0.529462 0.3262122 0.3262122 -0.5341183 0.3262122 0.3262122 -0.5385787 0.3262122 0.3262122 -0.5428591 0.3262122 0.3262122 -0.5469733 0.3262122 0.3262122 -0.5509339 0.3262122 0.3262122 -0.5547519 0.3262122 0.3262122 -0.5584371 0.3262122 0.3262122 -0.5619986 0.3262122 0.3262122 -0.5654443 0.3262122 0.3262122 -0.5687816 0.3262122 0.3262122 -0.092819 0.3544566 0.3262122 -0.2262531 0.3544566 0.3262122 -0.2875993 0.3544566 0.3262122 -0.3262122 0.3544566 0.3262122 -0.3544566 0.3544566 0.3262122 -0.3767383 0.3544566 0.3262122 -0.3951413 0.3544566 0.3262122 -0.4108177 0.3544566 0.3262122 -0.4244723 0.3544566 0.3262122 -0.4365675 0.3544566 0.3262122 -0.4474232 0.3544566 0.3262122 -0.45727 0.3544566 0.3262122 -0.4662797 0.3544566 0.3262122 -0.4745834 0.3544566 0.3262122 -0.4822838 0.3544566 0.3262122 -0.4894626 0.3544566 0.3262122 -0.4961862 0.3544566 0.3262122 -0.5025087 0.3544566 0.3262122 -0.5084753 0.3544566 0.3262122 -0.514124 0.3544566 0.3262122 -0.519487 0.3544566 0.3262122 -0.5245917 0.3544566 0.3262122 -0.529462 0.3544566 0.3262122 -0.5341183 0.3544566 0.3262122 -0.5385787 0.3544566 0.3262122 -0.5428591 0.3544566 0.3262122 -0.5469733 0.3544566 0.3262122 -0.5509339 0.3544566 0.3262122 -0.5547519 0.3544566 0.3262122 -0.5584371 0.3544566 0.3262122 -0.5619986 0.3544566 0.3262122 -0.5654443 0.3544566 0.3262122 -0.5687816 0.3544566 0.3262122 -0.092819 0.3767383 0.3262122 -0.2262531 0.3767383 0.3262122 -0.2875993 0.3767383 0.3262122 -0.3262122 0.3767383 0.3262122 -0.3544566 0.3767383 0.3262122 -0.3767383 0.3767383 0.3262122 -0.3951413 0.3767383 0.3262122 -0.4108177 0.3767383 0.3262122 -0.4244723 0.3767383 0.3262122 -0.4365675 0.3767383 0.3262122 -0.4474232 0.3767383 0.3262122 -0.45727 0.3767383 0.3262122 -0.4662797 0.3767383 0.3262122 -0.4745834 0.3767383 0.3262122 -0.4822838 0.3767383 0.3262122 -0.4894626 0.3767383 0.3262122 -0.4961862 0.3767383 0.3262122 -0.5025087 0.3767383 0.3262122 -0.5084753 0.3767383 0.3262122 -0.514124 0.3767383 0.3262122 -0.519487 0.3767383 0.3262122 -0.5245917 0.3767383 0.3262122 -0.529462 0.3767383 0.3262122 -0.5341183 0.3767383 0.3262122 -0.5385787 0.3767383 0.3262122 -0.5428591 0.3767383 0.3262122 -0.5469733 0.3767383 0.3262122 -0.5509339 0.3767383 0.3262122 -0.5547519 0.3767383 0.3262122 -0.5584371 0.3767383 0.3262122 -0.5619986 0.3767383 0.3262122 -0.5654443 0.3767383 0.3262122 -0.5687816 0.3767383 0.3262122 -0.092819 0.3951413 0.3262122 -0.2262531 0.3951413 0.3262122 -0.2875993 0.3951413 0.3262122 -0.3262122 0.3951413 0.3262122 -0.3544566 0.3951413 0.3262122 -0.3767383 0.3951413 0.3262122 -0.3951413 0.3951413 0.3262122 -0.4108177 0.3951413 0.3262122 -0.4244723 0.3951413 0.3262122 -0.4365675 0.3951413 0.3262122 -0.4474232 0.3951413 0.3262122 -0.45727 0.3951413 0.3262122 -0.4662797 0.3951413 0.3262122 -0.4745834 0.3951413 0.3262122 -0.4822838 0.3951413 0.3262122 -0.4894626 0.3951413 0.3262122 -0.4961862 0.3951413 0.3262122 -0.5025087 0.3951413 0.3262122 -0.5084753 0.3951413 0.3262122 -0.514124 0.3951413 0.3262122 -0.519487 0.3951413 0.3262122 -0.5245917 0.3951413 0.3262122 -0.529462 0.3951413 0.3262122 -0.5341183 0.3951413 0.3262122 -0.5385787 0.3951413 0.3262122 -0.5428591 0.3951413 0.3262122 -0.5469733 0.3951413 0.3262122 -0.5509339 0.3951413 0.3262122 -0.5547519 0.3951413 0.3262122 -0.5584371 0.3951413 0.3262122 -0.5619986 0.3951413 0.3262122 -0.5654443 0.3951413 0.3262122 -0.5687816 0.3951413 0.3262122 -0.092819 0.4108177 0.3262122 -0.2262531 0.4108177 0.3262122 -0.2875993 0.4108177 0.3262122 -0.3262122 0.4108177 0.3262122 -0.3544566 0.4108177 0.3262122 -0.3767383 0.4108177 0.3262122 -0.3951413 0.4108177 0.3262122 -0.4108177 0.4108177 0.3262122 -0.4244723 0.4108177 0.3262122 -0.4365675 0.4108177 0.3262122 -0.4474232 0.4108177 0.3262122 -0.45727 0.4108177 0.3262122 -0.4662797 0.4108177 0.3262122 -0.4745834 0.4108177 0.3262122 -0.4822838 0.4108177 0.3262122 -0.4894626 0.4108177 0.3262122 -0.4961862 0.4108177 0.3262122 -0.5025087 0.4108177 0.3262122 -0.5084753 0.4108177 0.3262122 -0.514124 0.4108177 0.3262122 -0.519487 0.4108177 0.3262122 -0.5245917 0.4108177 0.3262122 -0.529462 0.4108177 0.3262122 -0.5341183 0.4108177 0.3262122 -0.5385787 0.4108177 0.3262122 -0.5428591 0.4108177 0.3262122 -0.5469733 0.4108177 0.3262122 -0.5509339 0.4108177 0.3262122 -0.5547519 0.4108177 0.3262122 -0.5584371 0.4108177 0.3262122 -0.5619986 0.4108177 0.3262122 -0.5654443 0.4108177 0.3262122 -0.5687816 0.4108177 0.3262122 -0.092819 0.4244723 0.3262122 -0.2262531 0.4244723 0.3262122 -0.2875993 0.4244723 0.3262122 -0.3262122 0.4244723 0.3262122 -0.3544566 0.4244723 0.3262122 -0.3767383 0.4244723 0.3262122 -0.3951413 0.4244723 0.3262122 -0.4108177 0.4244723 0.3262122 -0.4244723 0.4244723 0.3262122 -0.4365675 0.4244723 0.3262122 -0.4474232 0.4244723 0.3262122 -0.45727 0.4244723 0.3262122 -0.4662797 0.4244723 0.3262122 -0.4745834 0.4244723 0.3262122 -0.4822838 0.4244723 0.3262122 -0.4894626 0.4244723 0.3262122 -0.4961862 0.4244723 0.3262122 -0.5025087 0.4244723 0.3262122 -0.5084753 0.4244723 0.3262122 -0.514124 0.4244723 0.3262122 -0.519487 0.4244723 0.3262122 -0.5245917 0.4244723 0.3262122 -0.529462 0.4244723 0.3262122 -0.5341183 0.4244723 0.3262122 -0.5385787 0.4244723 0.3262122 -0.5428591 0.4244723 0.3262122 -0.5469733 0.4244723 0.3262122 -0.5509339 0.4244723 0.3262122 -0.5547519 0.4244723 0.3262122 -0.5584371 0.4244723 0.3262122 -0.5619986 0.4244723 0.3262122 -0.5654443 0.4244723 0.3262122 -0.5687816 0.4244723 0.3262122 -0.092819 0.4365675 0.3262122 -0.2262531 0.4365675 0.3262122 -0.2875993 0.4365675 0.3262122 -0.3262122 0.4365675 0.3262122 -0.3544566 0.4365675 0.3262122 -0.3767383 0.4365675 0.3262122 -0.3951413 0.4365675 0.3262122 -0.4108177 0.4365675 0.3262122 -0.4244723 0.4365675 0.3262122 -0.4365675 0.4365675 0.3262122 -0.4474232 0.4365675 0.3262122 -0.45727 0.4365675 0.3262122 -0.4662797 0.4365675 0.3262122 -0.4745834 0.4365675 0.3262122 -0.4822838 0.4365675 0.3262122 -0.4894626 0.4365675 0.3262122 -0.4961862 0.4365675 0.3262122 -0.5025087 0.4365675 0.3262122 -0.5084753 0.4365675 0.3262122 -0.514124 0.4365675 0.3262122 -0.519487 0.4365675 0.3262122 -0.5245917 0.4365675 0.3262122 -0.529462 0.4365675 0.3262122 -0.5341183 0.4365675 0.3262122 -0.5385787 0.4365675 0.3262122 -0.5428591 0.4365675 0.3262122 -0.5469733 0.4365675 0.3262122 -0.5509339 0.4365675 0.3262122 -0.5547519 0.4365675 0.3262122 -0.5584371 0.4365675 0.3262122 -0.5619986 0.4365675 0.3262122 -0.5654443 0.4365675 0.3262122 -0.5687816 0.4365675 0.3262122 -0.092819 0.4474232 0.3262122 -0.2262531 0.4474232 0.3262122 -0.2875993 0.4474232 0.3262122 -0.3262122 0.4474232 0.3262122 -0.3544566 0.4474232 0.3262122 -0.3767383 0.4474232 0.3262122 -0.3951413 0.4474232 0.3262122 -0.4108177 0.4474232 0.3262122 -0.4244723 0.4474232 0.3262122 -0.4365675 0.4474232 0.3262122 -0.4474232 0.4474232 0.3262122 -0.45727 0.4474232 0.3262122 -0.4662797 0.4474232 0.3262122 -0.4745834 0.4474232 0.3262122 -0.4822838 0.4474232 0.3262122 -0.4894626 0.4474232 0.3262122 -0.4961862 0.4474232 0.3262122 -0.5025087 0.4474232 0.3262122 -0.5084753 0.4474232 0.3262122 -0.514124 0.4474232 0.3262122 -0.519487 0.4474232 0.3262122 -0.5245917 0.4474232 0.3262122 -0.529462 0.4474232 0.3262122 -0.5341183 0.4474232 0.3262122 -0.5385787 0.4474232 0.3262122 -0.5428591 0.4474232 0.3262122 -0.5469733 0.4474232 0.3262122 -0.5509339 0.4474232 0.3262122 -0.5547519 0.4474232 0.3262122 -0.5584371 0.4474232 0.3262122 -0.5619986 0.4474232 0.3262122 -0.5654443 0.4474232 0.3262122 -0.5687816 0.4474232 0.3262122 -0.092819 0.45727 0.3262122 -0.2262531 0.45727 0.3262122 -0.2875993 0.45727 0.3262122 -0.3262122 0.45727 0.3262122 -0.3544566 0.45727 0.3262122 -0.3767383 0.45727 0.3262122 -0.3951413 0.45727 0.3262122 -0.4108177 0.45727 0.3262122 -0.4244723 0.45727 0.3262122 -0.4365675 0.45727 0.3262122 -0.4474232 0.45727 0.3262122 -0.45727 0.45727 0.3262122 -0.4662797 0.45727 0.3262122 -0.4745834 0.45727 0.3262122 -0.4822838 0.45727 0.3262122 -0.4894626 0.45727 0.3262122 -0.4961862 0.45727 0.3262122 -0.5025087 0.45727 0.3262122 -0.5084753 0.45727 0.3262122 -0.514124 0.45727 0.3262122 -0.519487 0.45727 0.3262122 -0.5245917 0.45727 0.3262122 -0.529462 0.45727 0.3262122 -0.5341183 0.45727 0.3262122 -0.5385787 0.45727 0.3262122 -0.5428591 0.45727 0.3262122 -0.5469733 0.45727 0.3262122 -0.5509339 0.45727 0.3262122 -0.5547519 0.45727 0.3262122 -0.5584371 0.45727 0.3262122 -0.5619986 0.45727 0.3262122 -0.5654443 0.45727 0.3262122 -0.5687816 0.45727 0.3262122 -0.092819 0.4662797 0.3262122 -0.2262531 0.4662797 0.3262122 -0.2875993 0.4662797 0.3262122 -0.3262122 0.4662797 0.3262122 -0.3544566 0.4662797 0.3262122 -0.3767383 0.4662797 0.3262122 -0.3951413 0.4662797 0.3262122 -0.4108177 0.4662797 0.3262122 -0.4244723 0.4662797 0.3262122 -0.4365675 0.4662797 0.3262122 -0.4474232 0.4662797 0.3262122 -0.45727 0.4662797 0.3262122 -0.4662797 0.4662797 0.3262122 -0.4745834 0.4662797 0.3262122 -0.4822838 0.4662797 0.3262122 -0.4894626 0.4662797 0.3262122 -0.4961862 0.4662797 0.3262122 -0.5025087 0.4662797 0.3262122 -0.5084753 0.4662797 0.3262122 -0.514124 0.4662797 0.3262122 -0.519487 0.4662797 0.3262122 -0.5245917 0.4662797 0.3262122 -0.529462 0.4662797 0.3262122 -0.5341183 0.4662797 0.3262122 -0.5385787 0.4662797 0.3262122 -0.5428591 0.4662797 0.3262122 -0.5469733 0.4662797 0.3262122 -0.5509339 0.4662797 0.3262122 -0.5547519 0.4662797 0.3262122 -0.5584371 0.4662797 0.3262122 -0.5619986 0.4662797 0.3262122 -0.5654443 0.4662797 0.3262122 -0.5687816 0.4662797 0.3262122 -0.092819 0.4745834 0.3262122 -0.2262531 0.4745834 0.3262122 -0.2875993 0.4745834 0.3262122 -0.3262122 0.4745834 0.3262122 -0.3544566 0.4745834 0.3262122 -0.3767383 0.4745834 0.3262122 -0.3951413 0.4745834 0.3262122 -0.4108177 0.4745834 0.3262122 -0.4244723 0.4745834 0.3262122 -0.4365675 0.4745834 0.3262122 -0.4474232 0.4745834 0.3262122 -0.45727 0.4745834 0.3262122 -0.4662797 0.4745834 0.3262122 -0.4745834 0.4745834 0.3262122 -0.4822838 0.4745834 0.3262122 -0.4894626 0.4745834 0.3262122 -0.4961862 0.4745834 0.3262122 -0.5025087 0.4745834 0.3262122 -0.5084753 0.4745834 0.3262122 -0.514124 0.4745834 0.3262122 -0.519487 0.4745834 0.3262122 -0.5245917 0.4745834 0.3262122 -0.529462 0.4745834 0.3262122 -0.5341183 0.4745834 0.3262122 -0.5385787 0.4745834 0.3262122 -0.5428591 0.4745834 0.3262122 -0.5469733 0.4745834 0.3262122 -0.5509339 0.4745834 0.3262122 -0.5547519 0.4745834 0.3262122 -0.5584371 0.4745834 0.3262122 -0.5619986 0.4745834 0.3262122 -0.5654443 0.4745834 0.3262122 -0.5687816 0.4745834 0.3262122 -0.092819 0.4822838 0.3262122 -0.2262531 0.4822838 0.3262122 -0.2875993 0.4822838 0.3262122 -0.3262122 0.4822838 0.3262122 -0.3544566 0.4822838 0.3262122 -0.3767383 0.4822838 0.3262122 -0.3951413 0.4822838 0.3262122 -0.4108177 0.4822838 0.3262122 -0.4244723 0.4822838 0.3262122 -0.4365675 0.4822838 0.3262122 -0.4474232 0.4822838 0.3262122 -0.45727 0.4822838 0.3262122 -0.4662797 0.4822838 0.3262122 -0.4745834 0.4822838 0.3262122 -0.4822838 0.4822838 0.3262122 -0.4894626 0.4822838 0.3262122 -0.4961862 0.4822838 0.3262122 -0.5025087 0.4822838 0.3262122 -0.5084753 0.4822838 0.3262122 -0.514124 0.4822838 0.3262122 -0.519487 0.4822838 0.3262122 -0.5245917 0.4822838 0.3262122 -0.529462 0.4822838 0.3262122 -0.5341183 0.4822838 0.3262122 -0.5385787 0.4822838 0.3262122 -0.5428591 0.4822838 0.3262122 -0.5469733 0.4822838 0.3262122 -0.5509339 0.4822838 0.3262122 -0.5547519 0.4822838 0.3262122 -0.5584371 0.4822838 0.3262122 -0.5619986 0.4822838 0.3262122 -0.5654443 0.4822838 0.3262122 -0.5687816 0.4822838 0.3262122 -0.092819 0.4894626 0.3262122 -0.2262531 0.4894626 0.3262122 -0.2875993 0.4894626 0.3262122 -0.3262122 0.4894626 0.3262122 -0.3544566 0.4894626 0.3262122 -0.3767383 0.4894626 0.3262122 -0.3951413 0.4894626 0.3262122 -0.4108177 0.4894626 0.3262122 -0.4244723 0.4894626 0.3262122 -0.4365675 0.4894626 0.3262122 -0.4474232 0.4894626 0.3262122 -0.45727 0.4894626 0.3262122 -0.4662797 0.4894626 0.3262122 -0.4745834 0.4894626 0.3262122 -0.4822838 0.4894626 0.3262122 -0.4894626 0.4894626 0.3262122 -0.4961862 0.4894626 0.3262122 -0.5025087 0.4894626 0.3262122 -0.5084753 0.4894626 0.3262122 -0.514124 0.4894626 0.3262122 -0.519487 0.4894626 0.3262122 -0.5245917 0.4894626 0.3262122 -0.529462 0.4894626 0.3262122 -0.5341183 0.4894626 0.3262122 -0.5385787 0.4894626 0.3262122 -0.5428591 0.4894626 0.3262122 -0.5469733 0.4894626 0.3262122 -0.5509339 0.4894626 0.3262122 -0.5547519 0.4894626 0.3262122 -0.5584371 0.4894626 0.3262122 -0.5619986 0.4894626 0.3262122 -0.5654443 0.4894626 0.3262122 -0.5687816 0.4894626 0.3262122 -0.092819 0.4961862 0.3262122 -0.2262531 0.4961862 0.3262122 -0.2875993 0.4961862 0.3262122 -0.3262122 0.4961862 0.3262122 -0.3544566 0.4961862 0.3262122 -0.3767383 0.4961862 0.3262122 -0.3951413 0.4961862 0.3262122 -0.4108177 0.4961862 0.3262122 -0.4244723 0.4961862 0.3262122 -0.4365675 0.4961862 0.3262122 -0.4474232 0.4961862 0.3262122 -0.45727 0.4961862 0.3262122 -0.4662797 0.4961862 0.3262122 -0.4745834 0.4961862 0.3262122 -0.4822838 0.4961862 0.3262122 -0.4894626 0.4961862 0.3262122 -0.4961862 0.4961862 0.3262122 -0.5025087 0.4961862 0.3262122 -0.5084753 0.4961862 0.3262122 -0.514124 0.4961862 0.3262122 -0.519487 0.4961862 0.3262122 -0.5245917 0.4961862 0.3262122 -0.529462 0.4961862 0.3262122 -0.5341183 0.4961862 0.3262122 -0.5385787 0.4961862 0.3262122 -0.5428591 0.4961862 0.3262122 -0.5469733 0.4961862 0.3262122 -0.5509339 0.4961862 0.3262122 -0.5547519 0.4961862 0.3262122 -0.5584371 0.4961862 0.3262122 -0.5619986 0.4961862 0.3262122 -0.5654443 0.4961862 0.3262122 -0.5687816 0.4961862 0.3262122 -0.092819 0.5025087 0.3262122 -0.2262531 0.5025087 0.3262122 -0.2875993 0.5025087 0.3262122 -0.3262122 0.5025087 0.3262122 -0.3544566 0.5025087 0.3262122 -0.3767383 0.5025087 0.3262122 -0.3951413 0.5025087 0.3262122 -0.4108177 0.5025087 0.3262122 -0.4244723 0.5025087 0.3262122 -0.4365675 0.5025087 0.3262122 -0.4474232 0.5025087 0.3262122 -0.45727 0.5025087 0.3262122 -0.4662797 0.5025087 0.3262122 -0.4745834 0.5025087 0.3262122 -0.4822838 0.5025087 0.3262122 -0.4894626 0.5025087 0.3262122 -0.4961862 0.5025087 0.3262122 -0.5025087 0.5025087 0.3262122 -0.5084753 0.5025087 0.3262122 -0.514124 0.5025087 0.3262122 -0.519487 0.5025087 0.3262122 -0.5245917 0.5025087 0.3262122 -0.529462 0.5025087 0.3262122 -0.5341183 0.5025087 0.3262122 -0.5385787 0.5025087 0.3262122 -0.5428591 0.5025087 0.3262122 -0.5469733 0.5025087 0.3262122 -0.5509339 0.5025087 0.3262122 -0.5547519 0.5025087 0.3262122 -0.5584371 0.5025087 0.3262122 -0.5619986 0.5025087 0.3262122 -0.5654443 0.5025087 0.3262122 -0.5687816 0.5025087 0.3262122 -0.092819 0.5084753 0.3262122 -0.2262531 0.5084753 0.3262122 -0.2875993 0.5084753 0.3262122 -0.3262122 0.5084753 0.3262122 -0.3544566 0.5084753 0.3262122 -0.3767383 0.5084753 0.3262122 -0.3951413 0.5084753 0.3262122 -0.4108177 0.5084753 0.3262122 -0.4244723 0.5084753 0.3262122 -0.4365675 0.5084753 0.3262122 -0.4474232 0.5084753 0.3262122 -0.45727 0.5084753 0.3262122 -0.4662797 0.5084753 0.3262122 -0.4745834 0.5084753 0.3262122 -0.4822838 0.5084753 0.3262122 -0.4894626 0.5084753 0.3262122 -0.4961862 0.5084753 0.3262122 -0.5025087 0.5084753 0.3262122 -0.5084753 0.5084753 0.3262122 -0.514124 0.5084753 0.3262122 -0.519487 0.5084753 0.3262122 -0.5245917 0.5084753 0.3262122 -0.529462 0.5084753 0.3262122 -0.5341183 0.5084753 0.3262122 -0.5385787 0.5084753 0.3262122 -0.5428591 0.5084753 0.3262122 -0.5469733 0.5084753 0.3262122 -0.5509339 0.5084753 0.3262122 -0.5547519 0.5084753 0.3262122 -0.5584371 0.5084753 0.3262122 -0.5619986 0.5084753 0.3262122 -0.5654443 0.5084753 0.3262122 -0.5687816 0.5084753 0.3262122 -0.092819 0.514124 0.3262122 -0.2262531 0.514124 0.3262122 -0.2875993 0.514124 0.3262122 -0.3262122 0.514124 0.3262122 -0.3544566 0.514124 0.3262122 -0.3767383 0.514124 0.3262122 -0.3951413 0.514124 0.3262122 -0.4108177 0.514124 0.3262122 -0.4244723 0.514124 0.3262122 -0.4365675 0.514124 0.3262122 -0.4474232 0.514124 0.3262122 -0.45727 0.514124 0.3262122 -0.4662797 0.514124 0.3262122 -0.4745834 0.514124 0.3262122 -0.4822838 0.514124 0.3262122 -0.4894626 0.514124 0.3262122 -0.4961862 0.514124 0.3262122 -0.5025087 0.514124 0.3262122 -0.5084753 0.514124 0.3262122 -0.514124 0.514124 0.3262122 -0.519487 0.514124 0.3262122 -0.5245917 0.514124 0.3262122 -0.529462 0.514124 0.3262122 -0.5341183 0.514124 0.3262122 -0.5385787 0.514124 0.3262122 -0.5428591 0.514124 0.3262122 -0.5469733 0.514124 0.3262122 -0.5509339 0.514124 0.3262122 -0.5547519 0.514124 0.3262122 -0.5584371 0.514124 0.3262122 -0.5619986 0.514124 0.3262122 -0.5654443 0.514124 0.3262122 -0.5687816 0.514124 0.3262122 -0.092819 0.519487 0.3262122 -0.2262531 0.519487 0.3262122 -0.2875993 0.519487 0.3262122 -0.3262122 0.519487 0.3262122 -0.3544566 0.519487 0.3262122 -0.3767383 0.519487 0.3262122 -0.3951413 0.519487 0.3262122 -0.4108177 0.519487 0.3262122 -0.4244723 0.519487 0.3262122 -0.4365675 0.519487 0.3262122 -0.4474232 0.519487 0.3262122 -0.45727 0.519487 0.3262122 -0.4662797 0.519487 0.3262122 -0.4745834 0.519487 0.3262122 -0.4822838 0.519487 0.3262122 -0.4894626 0.519487 0.3262122 -0.4961862 0.519487 0.3262122 -0.5025087 0.519487 0.3262122 -0.5084753 0.519487 0.3262122 -0.514124 0.519487 0.3262122 -0.519487 0.519487 0.3262122 -0.5245917 0.519487 0.3262122 -0.529462 0.519487 0.3262122 -0.5341183 0.519487 0.3262122 -0.5385787 0.519487 0.3262122 -0.5428591 0.519487 0.3262122 -0.5469733 0.519487 0.3262122 -0.5509339 0.519487 0.3262122 -0.5547519 0.519487 0.3262122 -0.5584371 0.519487 0.3262122 -0.5619986 0.519487 0.3262122 -0.5654443 0.519487 0.3262122 -0.5687816 0.519487 0.3262122 -0.092819 0.5245917 0.3262122 -0.2262531 0.5245917 0.3262122 -0.2875993 0.5245917 0.3262122 -0.3262122 0.5245917 0.3262122 -0.3544566 0.5245917 0.3262122 -0.3767383 0.5245917 0.3262122 -0.3951413 0.5245917 0.3262122 -0.4108177 0.5245917 0.3262122 -0.4244723 0.5245917 0.3262122 -0.4365675 0.5245917 0.3262122 -0.4474232 0.5245917 0.3262122 -0.45727 0.5245917 0.3262122 -0.4662797 0.5245917 0.3262122 -0.4745834 0.5245917 0.3262122 -0.4822838 0.5245917 0.3262122 -0.4894626 0.5245917 0.3262122 -0.4961862 0.5245917 0.3262122 -0.5025087 0.5245917 0.3262122 -0.5084753 0.5245917 0.3262122 -0.514124 0.5245917 0.3262122 -0.519487 0.5245917 0.3262122 -0.5245917 0.5245917 0.3262122 -0.529462 0.5245917 0.3262122 -0.5341183 0.5245917 0.3262122 -0.5385787 0.5245917 0.3262122 -0.5428591 0.5245917 0.3262122 -0.5469733 0.5245917 0.3262122 -0.5509339 0.5245917 0.3262122 -0.5547519 0.5245917 0.3262122 -0.5584371 0.5245917 0.3262122 -0.5619986 0.5245917 0.3262122 -0.5654443 0.5245917 0.3262122 -0.5687816 0.5245917 0.3262122 -0.092819 0.529462 0.3262122 -0.2262531 0.529462 0.3262122 -0.2875993 0.529462 0.3262122 -0.3262122 0.529462 0.3262122 -0.3544566 0.529462 0.3262122 -0.3767383 0.529462 0.3262122 -0.3951413 0.529462 0.3262122 -0.4108177 0.529462 0.3262122 -0.4244723 0.529462 0.3262122 -0.4365675 0.529462 0.3262122 -0.4474232 0.529462 0.3262122 -0.45727 0.529462 0.3262122 -0.4662797 0.529462 0.3262122 -0.4745834 0.529462 0.3262122 -0.4822838 0.529462 0.3262122 -0.4894626 0.529462 0.3262122 -0.4961862 0.529462 0.3262122 -0.5025087 0.529462 0.3262122 -0.5084753 0.529462 0.3262122 -0.514124 0.529462 0.3262122 -0.519487 0.529462 0.3262122 -0.5245917 0.529462 0.3262122 -0.529462 0.529462 0.3262122 -0.5341183 0.529462 0.3262122 -0.5385787 0.529462 0.3262122 -0.5428591 0.529462 0.3262122 -0.5469733 0.529462 0.3262122 -0.5509339 0.529462 0.3262122 -0.5547519 0.529462 0.3262122 -0.5584371 0.529462 0.3262122 -0.5619986 0.529462 0.3262122 -0.5654443 0.529462 0.3262122 -0.5687816 0.529462 0.3262122 -0.092819 0.5341183 0.3262122 -0.2262531 0.5341183 0.3262122 -0.2875993 0.5341183 0.3262122 -0.3262122 0.5341183 0.3262122 -0.3544566 0.5341183 0.3262122 -0.3767383 0.5341183 0.3262122 -0.3951413 0.5341183 0.3262122 -0.4108177 0.5341183 0.3262122 -0.4244723 0.5341183 0.3262122 -0.4365675 0.5341183 0.3262122 -0.4474232 0.5341183 0.3262122 -0.45727 0.5341183 0.3262122 -0.4662797 0.5341183 0.3262122 -0.4745834 0.5341183 0.3262122 -0.4822838 0.5341183 0.3262122 -0.4894626 0.5341183 0.3262122 -0.4961862 0.5341183 0.3262122 -0.5025087 0.5341183 0.3262122 -0.5084753 0.5341183 0.3262122 -0.514124 0.5341183 0.3262122 -0.519487 0.5341183 0.3262122 -0.5245917 0.5341183 0.3262122 -0.529462 0.5341183 0.3262122 -0.5341183 0.5341183 0.3262122 -0.5385787 0.5341183 0.3262122 -0.5428591 0.5341183 0.3262122 -0.5469733 0.5341183 0.3262122 -0.5509339 0.5341183 0.3262122 -0.5547519 0.5341183 0.3262122 -0.5584371 0.5341183 0.3262122 -0.5619986 0.5341183 0.3262122 -0.5654443 0.5341183 0.3262122 -0.5687816 0.5341183 0.3262122 -0.092819 0.5385787 0.3262122 -0.2262531 0.5385787 0.3262122 -0.2875993 0.5385787 0.3262122 -0.3262122 0.5385787 0.3262122 -0.3544566 0.5385787 0.3262122 -0.3767383 0.5385787 0.3262122 -0.3951413 0.5385787 0.3262122 -0.4108177 0.5385787 0.3262122 -0.4244723 0.5385787 0.3262122 -0.4365675 0.5385787 0.3262122 -0.4474232 0.5385787 0.3262122 -0.45727 0.5385787 0.3262122 -0.4662797 0.5385787 0.3262122 -0.4745834 0.5385787 0.3262122 -0.4822838 0.5385787 0.3262122 -0.4894626 0.5385787 0.3262122 -0.4961862 0.5385787 0.3262122 -0.5025087 0.5385787 0.3262122 -0.5084753 0.5385787 0.3262122 -0.514124 0.5385787 0.3262122 -0.519487 0.5385787 0.3262122 -0.5245917 0.5385787 0.3262122 -0.529462 0.5385787 0.3262122 -0.5341183 0.5385787 0.3262122 -0.5385787 0.5385787 0.3262122 -0.5428591 0.5385787 0.3262122 -0.5469733 0.5385787 0.3262122 -0.5509339 0.5385787 0.3262122 -0.5547519 0.5385787 0.3262122 -0.5584371 0.5385787 0.3262122 -0.5619986 0.5385787 0.3262122 -0.5654443 0.5385787 0.3262122 -0.5687816 0.5385787 0.3262122 -0.092819 0.5428591 0.3262122 -0.2262531 0.5428591 0.3262122 -0.2875993 0.5428591 0.3262122 -0.3262122 0.5428591 0.3262122 -0.3544566 0.5428591 0.3262122 -0.3767383 0.5428591 0.3262122 -0.3951413 0.5428591 0.3262122 -0.4108177 0.5428591 0.3262122 -0.4244723 0.5428591 0.3262122 -0.4365675 0.5428591 0.3262122 -0.4474232 0.5428591 0.3262122 -0.45727 0.5428591 0.3262122 -0.4662797 0.5428591 0.3262122 -0.4745834 0.5428591 0.3262122 -0.4822838 0.5428591 0.3262122 -0.4894626 0.5428591 0.3262122 -0.4961862 0.5428591 0.3262122 -0.5025087 0.5428591 0.3262122 -0.5084753 0.5428591 0.3262122 -0.514124 0.5428591 0.3262122 -0.519487 0.5428591 0.3262122 -0.5245917 0.5428591 0.3262122 -0.529462 0.5428591 0.3262122 -0.5341183 0.5428591 0.3262122 -0.5385787 0.5428591 0.3262122 -0.5428591 0.5428591 0.3262122 -0.5469733 0.5428591 0.3262122 -0.5509339 0.5428591 0.3262122 -0.5547519 0.5428591 0.3262122 -0.5584371 0.5428591 0.3262122 -0.5619986 0.5428591 0.3262122 -0.5654443 0.5428591 0.3262122 -0.5687816 0.5428591 0.3262122 -0.092819 0.5469733 0.3262122 -0.2262531 0.5469733 0.3262122 -0.2875993 0.5469733 0.3262122 -0.3262122 0.5469733 0.3262122 -0.3544566 0.5469733 0.3262122 -0.3767383 0.5469733 0.3262122 -0.3951413 0.5469733 0.3262122 -0.4108177 0.5469733 0.3262122 -0.4244723 0.5469733 0.3262122 -0.4365675 0.5469733 0.3262122 -0.4474232 0.5469733 0.3262122 -0.45727 0.5469733 0.3262122 -0.4662797 0.5469733 0.3262122 -0.4745834 0.5469733 0.3262122 -0.4822838 0.5469733 0.3262122 -0.4894626 0.5469733 0.3262122 -0.4961862 0.5469733 0.3262122 -0.5025087 0.5469733 0.3262122 -0.5084753 0.5469733 0.3262122 -0.514124 0.5469733 0.3262122 -0.519487 0.5469733 0.3262122 -0.5245917 0.5469733 0.3262122 -0.529462 0.5469733 0.3262122 -0.5341183 0.5469733 0.3262122 -0.5385787 0.5469733 0.3262122 -0.5428591 0.5469733 0.3262122 -0.5469733 0.5469733 0.3262122 -0.5509339 0.5469733 0.3262122 -0.5547519 0.5469733 0.3262122 -0.5584371 0.5469733 0.3262122 -0.5619986 0.5469733 0.3262122 -0.5654443 0.5469733 0.3262122 -0.5687816 0.5469733 0.3262122 -0.092819 0.5509339 0.3262122 -0.2262531 0.5509339 0.3262122 -0.2875993 0.5509339 0.3262122 -0.3262122 0.5509339 0.3262122 -0.3544566 0.5509339 0.3262122 -0.3767383 0.5509339 0.3262122 -0.3951413 0.5509339 0.3262122 -0.4108177 0.5509339 0.3262122 -0.4244723 0.5509339 0.3262122 -0.4365675 0.5509339 0.3262122 -0.4474232 0.5509339 0.3262122 -0.45727 0.5509339 0.3262122 -0.4662797 0.5509339 0.3262122 -0.4745834 0.5509339 0.3262122 -0.4822838 0.5509339 0.3262122 -0.4894626 0.5509339 0.3262122 -0.4961862 0.5509339 0.3262122 -0.5025087 0.5509339 0.3262122 -0.5084753 0.5509339 0.3262122 -0.514124 0.5509339 0.3262122 -0.519487 0.5509339 0.3262122 -0.5245917 0.5509339 0.3262122 -0.529462 0.5509339 0.3262122 -0.5341183 0.5509339 0.3262122 -0.5385787 0.5509339 0.3262122 -0.5428591 0.5509339 0.3262122 -0.5469733 0.5509339 0.3262122 -0.5509339 0.5509339 0.3262122 -0.5547519 0.5509339 0.3262122 -0.5584371 0.5509339 0.3262122 -0.5619986 0.5509339 0.3262122 -0.5654443 0.5509339 0.3262122 -0.5687816 0.5509339 0.3262122 -0.092819 0.5547519 0.3262122 -0.2262531 0.5547519 0.3262122 -0.2875993 0.5547519 0.3262122 -0.3262122 0.5547519 0.3262122 -0.3544566 0.5547519 0.3262122 -0.3767383 0.5547519 0.3262122 -0.3951413 0.5547519 0.3262122 -0.4108177 0.5547519 0.3262122 -0.4244723 0.5547519 0.3262122 -0.4365675 0.5547519 0.3262122 -0.4474232 0.5547519 0.3262122 -0.45727 0.5547519 0.3262122 -0.4662797 0.5547519 0.3262122 -0.4745834 0.5547519 0.3262122 -0.4822838 0.5547519 0.3262122 -0.4894626 0.5547519 0.3262122 -0.4961862 0.5547519 0.3262122 -0.5025087 0.5547519 0.3262122 -0.5084753 0.5547519 0.3262122 -0.514124 0.5547519 0.3262122 -0.519487 0.5547519 0.3262122 -0.5245917 0.5547519 0.3262122 -0.529462 0.5547519 0.3262122 -0.5341183 0.5547519 0.3262122 -0.5385787 0.5547519 0.3262122 -0.5428591 0.5547519 0.3262122 -0.5469733 0.5547519 0.3262122 -0.5509339 0.5547519 0.3262122 -0.5547519 0.5547519 0.3262122 -0.5584371 0.5547519 0.3262122 -0.5619986 0.5547519 0.3262122 -0.5654443 0.5547519 0.3262122 -0.5687816 0.5547519 0.3262122 -0.092819 0.5584371 0.3262122 -0.2262531 0.5584371 0.3262122 -0.2875993 0.5584371 0.3262122 -0.3262122 0.5584371 0.3262122 -0.3544566 0.5584371 0.3262122 -0.3767383 0.5584371 0.3262122 -0.3951413 0.5584371 0.3262122 -0.4108177 0.5584371 0.3262122 -0.4244723 0.5584371 0.3262122 -0.4365675 0.5584371 0.3262122 -0.4474232 0.5584371 0.3262122 -0.45727 0.5584371 0.3262122 -0.4662797 0.5584371 0.3262122 -0.4745834 0.5584371 0.3262122 -0.4822838 0.5584371 0.3262122 -0.4894626 0.5584371 0.3262122 -0.4961862 0.5584371 0.3262122 -0.5025087 0.5584371 0.3262122 -0.5084753 0.5584371 0.3262122 -0.514124 0.5584371 0.3262122 -0.519487 0.5584371 0.3262122 -0.5245917 0.5584371 0.3262122 -0.529462 0.5584371 0.3262122 -0.5341183 0.5584371 0.3262122 -0.5385787 0.5584371 0.3262122 -0.5428591 0.5584371 0.3262122 -0.5469733 0.5584371 0.3262122 -0.5509339 0.5584371 0.3262122 -0.5547519 0.5584371 0.3262122 -0.5584371 0.5584371 0.3262122 -0.5619986 0.5584371 0.3262122 -0.5654443 0.5584371 0.3262122 -0.5687816 0.5584371 0.3262122 -0.092819 0.5619986 0.3262122 -0.2262531 0.5619986 0.3262122 -0.2875993 0.5619986 0.3262122 -0.3262122 0.5619986 0.3262122 -0.3544566 0.5619986 0.3262122 -0.3767383 0.5619986 0.3262122 -0.3951413 0.5619986 0.3262122 -0.4108177 0.5619986 0.3262122 -0.4244723 0.5619986 0.3262122 -0.4365675 0.5619986 0.3262122 -0.4474232 0.5619986 0.3262122 -0.45727 0.5619986 0.3262122 -0.4662797 0.5619986 0.3262122 -0.4745834 0.5619986 0.3262122 -0.4822838 0.5619986 0.3262122 -0.4894626 0.5619986 0.3262122 -0.4961862 0.5619986 0.3262122 -0.5025087 0.5619986 0.3262122 -0.5084753 0.5619986 0.3262122 -0.514124 0.5619986 0.3262122 -0.519487 0.5619986 0.3262122 -0.5245917 0.5619986 0.3262122 -0.529462 0.5619986 0.3262122 -0.5341183 0.5619986 0.3262122 -0.5385787 0.5619986 0.3262122 -0.5428591 0.5619986 0.3262122 -0.5469733 0.5619986 0.3262122 -0.5509339 0.5619986 0.3262122 -0.5547519 0.5619986 0.3262122 -0.5584371 0.5619986 0.3262122 -0.5619986 0.5619986 0.3262122 -0.5654443 0.5619986 0.3262122 -0.5687816 0.5619986 0.3262122 -0.092819 0.5654443 0.3262122 -0.2262531 0.5654443 0.3262122 -0.2875993 0.5654443 0.3262122 -0.3262122 0.5654443 0.3262122 -0.3544566 0.5654443 0.3262122 -0.3767383 0.5654443 0.3262122 -0.3951413 0.5654443 0.3262122 -0.4108177 0.5654443 0.3262122 -0.4244723 0.5654443 0.3262122 -0.4365675 0.5654443 0.3262122 -0.4474232 0.5654443 0.3262122 -0.45727 0.5654443 0.3262122 -0.4662797 0.5654443 0.3262122 -0.4745834 0.5654443 0.3262122 -0.4822838 0.5654443 0.3262122 -0.4894626 0.5654443 0.3262122 -0.4961862 0.5654443 0.3262122 -0.5025087 0.5654443 0.3262122 -0.5084753 0.5654443 0.3262122 -0.514124 0.5654443 0.3262122 -0.519487 0.5654443 0.3262122 -0.5245917 0.5654443 0.3262122 -0.529462 0.5654443 0.3262122 -0.5341183 0.5654443 0.3262122 -0.5385787 0.5654443 0.3262122 -0.5428591 0.5654443 0.3262122 -0.5469733 0.5654443 0.3262122 -0.5509339 0.5654443 0.3262122 -0.5547519 0.5654443 0.3262122 -0.5584371 0.5654443 0.3262122 -0.5619986 0.5654443 0.3262122 -0.5654443 0.5654443 0.3262122 -0.5687816 0.5654443 0.3262122 -0.092819 0.5687816 0.3262122 -0.2262531 0.5687816 0.3262122 -0.2875993 0.5687816 0.3262122 -0.3262122 0.5687816 0.3262122 -0.3544566 0.5687816 0.3262122 -0.3767383 0.5687816 0.3262122 -0.3951413 0.5687816 0.3262122 -0.4108177 0.5687816 0.3262122 -0.4244723 0.5687816 0.3262122 -0.4365675 0.5687816 0.3262122 -0.4474232 0.5687816 0.3262122 -0.45727 0.5687816 0.3262122 -0.4662797 0.5687816 0.3262122 -0.4745834 0.5687816 0.3262122 -0.4822838 0.5687816 0.3262122 -0.4894626 0.5687816 0.3262122 -0.4961862 0.5687816 0.3262122 -0.5025087 0.5687816 0.3262122 -0.5084753 0.5687816 0.3262122 -0.514124 0.5687816 0.3262122 -0.519487 0.5687816 0.3262122 -0.5245917 0.5687816 0.3262122 -0.529462 0.5687816 0.3262122 -0.5341183 0.5687816 0.3262122 -0.5385787 0.5687816 0.3262122 -0.5428591 0.5687816 0.3262122 -0.5469733 0.5687816 0.3262122 -0.5509339 0.5687816 0.3262122 -0.5547519 0.5687816 0.3262122 -0.5584371 0.5687816 0.3262122 -0.5619986 0.5687816 0.3262122 -0.5654443 0.5687816 0.3262122 -0.5687816 0.5687816 0.3262122 -0.092819 0.092819 0.3544566 -0.2262531 0.092819 0.3544566 -0.2875993 0.092819 0.3544566 -0.3262122 0.092819 0.3544566 -0.3544566 0.092819 0.3544566 -0.3767383 0.092819 0.3544566 -0.3951413 0.092819 0.3544566 -0.4108177 0.092819 0.3544566 -0.4244723 0.092819 0.3544566 -0.4365675 0.092819 0.3544566 -0.4474232 0.092819 0.3544566 -0.45727 0.092819 0.3544566 -0.4662797 0.092819 0.3544566 -0.4745834 0.092819 0.3544566 -0.4822838 0.092819 0.3544566 -0.4894626 0.092819 0.3544566 -0.4961862 0.092819 0.3544566 -0.5025087 0.092819 0.3544566 -0.5084753 0.092819 0.3544566 -0.514124 0.092819 0.3544566 -0.519487 0.092819 0.3544566 -0.5245917 0.092819 0.3544566 -0.529462 0.092819 0.3544566 -0.5341183 0.092819 0.3544566 -0.5385787 0.092819 0.3544566 -0.5428591 0.092819 0.3544566 -0.5469733 0.092819 0.3544566 -0.5509339 0.092819 0.3544566 -0.5547519 0.092819 0.3544566 -0.5584371 0.092819 0.3544566 -0.5619986 0.092819 0.3544566 -0.5654443 0.092819 0.3544566 -0.5687816 0.092819 0.3544566 -0.092819 0.2262531 0.3544566 -0.2262531 0.2262531 0.3544566 -0.2875993 0.2262531 0.3544566 -0.3262122 0.2262531 0.3544566 -0.3544566 0.2262531 0.3544566 -0.3767383 0.2262531 0.3544566 -0.3951413 0.2262531 0.3544566 -0.4108177 0.2262531 0.3544566 -0.4244723 0.2262531 0.3544566 -0.4365675 0.2262531 0.3544566 -0.4474232 0.2262531 0.3544566 -0.45727 0.2262531 0.3544566 -0.4662797 0.2262531 0.3544566 -0.4745834 0.2262531 0.3544566 -0.4822838 0.2262531 0.3544566 -0.4894626 0.2262531 0.3544566 -0.4961862 0.2262531 0.3544566 -0.5025087 0.2262531 0.3544566 -0.5084753 0.2262531 0.3544566 -0.514124 0.2262531 0.3544566 -0.519487 0.2262531 0.3544566 -0.5245917 0.2262531 0.3544566 -0.529462 0.2262531 0.3544566 -0.5341183 0.2262531 0.3544566 -0.5385787 0.2262531 0.3544566 -0.5428591 0.2262531 0.3544566 -0.5469733 0.2262531 0.3544566 -0.5509339 0.2262531 0.3544566 -0.5547519 0.2262531 0.3544566 -0.5584371 0.2262531 0.3544566 -0.5619986 0.2262531 0.3544566 -0.5654443 0.2262531 0.3544566 -0.5687816 0.2262531 0.3544566 -0.092819 0.2875993 0.3544566 -0.2262531 0.2875993 0.3544566 -0.2875993 0.2875993 0.3544566 -0.3262122 0.2875993 0.3544566 -0.3544566 0.2875993 0.3544566 -0.3767383 0.2875993 0.3544566 -0.3951413 0.2875993 0.3544566 -0.4108177 0.2875993 0.3544566 -0.4244723 0.2875993 0.3544566 -0.4365675 0.2875993 0.3544566 -0.4474232 0.2875993 0.3544566 -0.45727 0.2875993 0.3544566 -0.4662797 0.2875993 0.3544566 -0.4745834 0.2875993 0.3544566 -0.4822838 0.2875993 0.3544566 -0.4894626 0.2875993 0.3544566 -0.4961862 0.2875993 0.3544566 -0.5025087 0.2875993 0.3544566 -0.5084753 0.2875993 0.3544566 -0.514124 0.2875993 0.3544566 -0.519487 0.2875993 0.3544566 -0.5245917 0.2875993 0.3544566 -0.529462 0.2875993 0.3544566 -0.5341183 0.2875993 0.3544566 -0.5385787 0.2875993 0.3544566 -0.5428591 0.2875993 0.3544566 -0.5469733 0.2875993 0.3544566 -0.5509339 0.2875993 0.3544566 -0.5547519 0.2875993 0.3544566 -0.5584371 0.2875993 0.3544566 -0.5619986 0.2875993 0.3544566 -0.5654443 0.2875993 0.3544566 -0.5687816 0.2875993 0.3544566 -0.092819 0.3262122 0.3544566 -0.2262531 0.3262122 0.3544566 -0.2875993 0.3262122 0.3544566 -0.3262122 0.3262122 0.3544566 -0.3544566 0.3262122 0.3544566 -0.3767383 0.3262122 0.3544566 -0.3951413 0.3262122 0.3544566 -0.4108177 0.3262122 0.3544566 -0.4244723 0.3262122 0.3544566 -0.4365675 0.3262122 0.3544566 -0.4474232 0.3262122 0.3544566 -0.45727 0.3262122 0.3544566 -0.4662797 0.3262122 0.3544566 -0.4745834 0.3262122 0.3544566 -0.4822838 0.3262122 0.3544566 -0.4894626 0.3262122 0.3544566 -0.4961862 0.3262122 0.3544566 -0.5025087 0.3262122 0.3544566 -0.5084753 0.3262122 0.3544566 -0.514124 0.3262122 0.3544566 -0.519487 0.3262122 0.3544566 -0.5245917 0.3262122 0.3544566 -0.529462 0.3262122 0.3544566 -0.5341183 0.3262122 0.3544566 -0.5385787 0.3262122 0.3544566 -0.5428591 0.3262122 0.3544566 -0.5469733 0.3262122 0.3544566 -0.5509339 0.3262122 0.3544566 -0.5547519 0.3262122 0.3544566 -0.5584371 0.3262122 0.3544566 -0.5619986 0.3262122 0.3544566 -0.5654443 0.3262122 0.3544566 -0.5687816 0.3262122 0.3544566 -0.092819 0.3544566 0.3544566 -0.2262531 0.3544566 0.3544566 -0.2875993 0.3544566 0.3544566 -0.3262122 0.3544566 0.3544566 -0.3544566 0.3544566 0.3544566 -0.3767383 0.3544566 0.3544566 -0.3951413 0.3544566 0.3544566 -0.4108177 0.3544566 0.3544566 -0.4244723 0.3544566 0.3544566 -0.4365675 0.3544566 0.3544566 -0.4474232 0.3544566 0.3544566 -0.45727 0.3544566 0.3544566 -0.4662797 0.3544566 0.3544566 -0.4745834 0.3544566 0.3544566 -0.4822838 0.3544566 0.3544566 -0.4894626 0.3544566 0.3544566 -0.4961862 0.3544566 0.3544566 -0.5025087 0.3544566 0.3544566 -0.5084753 0.3544566 0.3544566 -0.514124 0.3544566 0.3544566 -0.519487 0.3544566 0.3544566 -0.5245917 0.3544566 0.3544566 -0.529462 0.3544566 0.3544566 -0.5341183 0.3544566 0.3544566 -0.5385787 0.3544566 0.3544566 -0.5428591 0.3544566 0.3544566 -0.5469733 0.3544566 0.3544566 -0.5509339 0.3544566 0.3544566 -0.5547519 0.3544566 0.3544566 -0.5584371 0.3544566 0.3544566 -0.5619986 0.3544566 0.3544566 -0.5654443 0.3544566 0.3544566 -0.5687816 0.3544566 0.3544566 -0.092819 0.3767383 0.3544566 -0.2262531 0.3767383 0.3544566 -0.2875993 0.3767383 0.3544566 -0.3262122 0.3767383 0.3544566 -0.3544566 0.3767383 0.3544566 -0.3767383 0.3767383 0.3544566 -0.3951413 0.3767383 0.3544566 -0.4108177 0.3767383 0.3544566 -0.4244723 0.3767383 0.3544566 -0.4365675 0.3767383 0.3544566 -0.4474232 0.3767383 0.3544566 -0.45727 0.3767383 0.3544566 -0.4662797 0.3767383 0.3544566 -0.4745834 0.3767383 0.3544566 -0.4822838 0.3767383 0.3544566 -0.4894626 0.3767383 0.3544566 -0.4961862 0.3767383 0.3544566 -0.5025087 0.3767383 0.3544566 -0.5084753 0.3767383 0.3544566 -0.514124 0.3767383 0.3544566 -0.519487 0.3767383 0.3544566 -0.5245917 0.3767383 0.3544566 -0.529462 0.3767383 0.3544566 -0.5341183 0.3767383 0.3544566 -0.5385787 0.3767383 0.3544566 -0.5428591 0.3767383 0.3544566 -0.5469733 0.3767383 0.3544566 -0.5509339 0.3767383 0.3544566 -0.5547519 0.3767383 0.3544566 -0.5584371 0.3767383 0.3544566 -0.5619986 0.3767383 0.3544566 -0.5654443 0.3767383 0.3544566 -0.5687816 0.3767383 0.3544566 -0.092819 0.3951413 0.3544566 -0.2262531 0.3951413 0.3544566 -0.2875993 0.3951413 0.3544566 -0.3262122 0.3951413 0.3544566 -0.3544566 0.3951413 0.3544566 -0.3767383 0.3951413 0.3544566 -0.3951413 0.3951413 0.3544566 -0.4108177 0.3951413 0.3544566 -0.4244723 0.3951413 0.3544566 -0.4365675 0.3951413 0.3544566 -0.4474232 0.3951413 0.3544566 -0.45727 0.3951413 0.3544566 -0.4662797 0.3951413 0.3544566 -0.4745834 0.3951413 0.3544566 -0.4822838 0.3951413 0.3544566 -0.4894626 0.3951413 0.3544566 -0.4961862 0.3951413 0.3544566 -0.5025087 0.3951413 0.3544566 -0.5084753 0.3951413 0.3544566 -0.514124 0.3951413 0.3544566 -0.519487 0.3951413 0.3544566 -0.5245917 0.3951413 0.3544566 -0.529462 0.3951413 0.3544566 -0.5341183 0.3951413 0.3544566 -0.5385787 0.3951413 0.3544566 -0.5428591 0.3951413 0.3544566 -0.5469733 0.3951413 0.3544566 -0.5509339 0.3951413 0.3544566 -0.5547519 0.3951413 0.3544566 -0.5584371 0.3951413 0.3544566 -0.5619986 0.3951413 0.3544566 -0.5654443 0.3951413 0.3544566 -0.5687816 0.3951413 0.3544566 -0.092819 0.4108177 0.3544566 -0.2262531 0.4108177 0.3544566 -0.2875993 0.4108177 0.3544566 -0.3262122 0.4108177 0.3544566 -0.3544566 0.4108177 0.3544566 -0.3767383 0.4108177 0.3544566 -0.3951413 0.4108177 0.3544566 -0.4108177 0.4108177 0.3544566 -0.4244723 0.4108177 0.3544566 -0.4365675 0.4108177 0.3544566 -0.4474232 0.4108177 0.3544566 -0.45727 0.4108177 0.3544566 -0.4662797 0.4108177 0.3544566 -0.4745834 0.4108177 0.3544566 -0.4822838 0.4108177 0.3544566 -0.4894626 0.4108177 0.3544566 -0.4961862 0.4108177 0.3544566 -0.5025087 0.4108177 0.3544566 -0.5084753 0.4108177 0.3544566 -0.514124 0.4108177 0.3544566 -0.519487 0.4108177 0.3544566 -0.5245917 0.4108177 0.3544566 -0.529462 0.4108177 0.3544566 -0.5341183 0.4108177 0.3544566 -0.5385787 0.4108177 0.3544566 -0.5428591 0.4108177 0.3544566 -0.5469733 0.4108177 0.3544566 -0.5509339 0.4108177 0.3544566 -0.5547519 0.4108177 0.3544566 -0.5584371 0.4108177 0.3544566 -0.5619986 0.4108177 0.3544566 -0.5654443 0.4108177 0.3544566 -0.5687816 0.4108177 0.3544566 -0.092819 0.4244723 0.3544566 -0.2262531 0.4244723 0.3544566 -0.2875993 0.4244723 0.3544566 -0.3262122 0.4244723 0.3544566 -0.3544566 0.4244723 0.3544566 -0.3767383 0.4244723 0.3544566 -0.3951413 0.4244723 0.3544566 -0.4108177 0.4244723 0.3544566 -0.4244723 0.4244723 0.3544566 -0.4365675 0.4244723 0.3544566 -0.4474232 0.4244723 0.3544566 -0.45727 0.4244723 0.3544566 -0.4662797 0.4244723 0.3544566 -0.4745834 0.4244723 0.3544566 -0.4822838 0.4244723 0.3544566 -0.4894626 0.4244723 0.3544566 -0.4961862 0.4244723 0.3544566 -0.5025087 0.4244723 0.3544566 -0.5084753 0.4244723 0.3544566 -0.514124 0.4244723 0.3544566 -0.519487 0.4244723 0.3544566 -0.5245917 0.4244723 0.3544566 -0.529462 0.4244723 0.3544566 -0.5341183 0.4244723 0.3544566 -0.5385787 0.4244723 0.3544566 -0.5428591 0.4244723 0.3544566 -0.5469733 0.4244723 0.3544566 -0.5509339 0.4244723 0.3544566 -0.5547519 0.4244723 0.3544566 -0.5584371 0.4244723 0.3544566 -0.5619986 0.4244723 0.3544566 -0.5654443 0.4244723 0.3544566 -0.5687816 0.4244723 0.3544566 -0.092819 0.4365675 0.3544566 -0.2262531 0.4365675 0.3544566 -0.2875993 0.4365675 0.3544566 -0.3262122 0.4365675 0.3544566 -0.3544566 0.4365675 0.3544566 -0.3767383 0.4365675 0.3544566 -0.3951413 0.4365675 0.3544566 -0.4108177 0.4365675 0.3544566 -0.4244723 0.4365675 0.3544566 -0.4365675 0.4365675 0.3544566 -0.4474232 0.4365675 0.3544566 -0.45727 0.4365675 0.3544566 -0.4662797 0.4365675 0.3544566 -0.4745834 0.4365675 0.3544566 -0.4822838 0.4365675 0.3544566 -0.4894626 0.4365675 0.3544566 -0.4961862 0.4365675 0.3544566 -0.5025087 0.4365675 0.3544566 -0.5084753 0.4365675 0.3544566 -0.514124 0.4365675 0.3544566 -0.519487 0.4365675 0.3544566 -0.5245917 0.4365675 0.3544566 -0.529462 0.4365675 0.3544566 -0.5341183 0.4365675 0.3544566 -0.5385787 0.4365675 0.3544566 -0.5428591 0.4365675 0.3544566 -0.5469733 0.4365675 0.3544566 -0.5509339 0.4365675 0.3544566 -0.5547519 0.4365675 0.3544566 -0.5584371 0.4365675 0.3544566 -0.5619986 0.4365675 0.3544566 -0.5654443 0.4365675 0.3544566 -0.5687816 0.4365675 0.3544566 -0.092819 0.4474232 0.3544566 -0.2262531 0.4474232 0.3544566 -0.2875993 0.4474232 0.3544566 -0.3262122 0.4474232 0.3544566 -0.3544566 0.4474232 0.3544566 -0.3767383 0.4474232 0.3544566 -0.3951413 0.4474232 0.3544566 -0.4108177 0.4474232 0.3544566 -0.4244723 0.4474232 0.3544566 -0.4365675 0.4474232 0.3544566 -0.4474232 0.4474232 0.3544566 -0.45727 0.4474232 0.3544566 -0.4662797 0.4474232 0.3544566 -0.4745834 0.4474232 0.3544566 -0.4822838 0.4474232 0.3544566 -0.4894626 0.4474232 0.3544566 -0.4961862 0.4474232 0.3544566 -0.5025087 0.4474232 0.3544566 -0.5084753 0.4474232 0.3544566 -0.514124 0.4474232 0.3544566 -0.519487 0.4474232 0.3544566 -0.5245917 0.4474232 0.3544566 -0.529462 0.4474232 0.3544566 -0.5341183 0.4474232 0.3544566 -0.5385787 0.4474232 0.3544566 -0.5428591 0.4474232 0.3544566 -0.5469733 0.4474232 0.3544566 -0.5509339 0.4474232 0.3544566 -0.5547519 0.4474232 0.3544566 -0.5584371 0.4474232 0.3544566 -0.5619986 0.4474232 0.3544566 -0.5654443 0.4474232 0.3544566 -0.5687816 0.4474232 0.3544566 -0.092819 0.45727 0.3544566 -0.2262531 0.45727 0.3544566 -0.2875993 0.45727 0.3544566 -0.3262122 0.45727 0.3544566 -0.3544566 0.45727 0.3544566 -0.3767383 0.45727 0.3544566 -0.3951413 0.45727 0.3544566 -0.4108177 0.45727 0.3544566 -0.4244723 0.45727 0.3544566 -0.4365675 0.45727 0.3544566 -0.4474232 0.45727 0.3544566 -0.45727 0.45727 0.3544566 -0.4662797 0.45727 0.3544566 -0.4745834 0.45727 0.3544566 -0.4822838 0.45727 0.3544566 -0.4894626 0.45727 0.3544566 -0.4961862 0.45727 0.3544566 -0.5025087 0.45727 0.3544566 -0.5084753 0.45727 0.3544566 -0.514124 0.45727 0.3544566 -0.519487 0.45727 0.3544566 -0.5245917 0.45727 0.3544566 -0.529462 0.45727 0.3544566 -0.5341183 0.45727 0.3544566 -0.5385787 0.45727 0.3544566 -0.5428591 0.45727 0.3544566 -0.5469733 0.45727 0.3544566 -0.5509339 0.45727 0.3544566 -0.5547519 0.45727 0.3544566 -0.5584371 0.45727 0.3544566 -0.5619986 0.45727 0.3544566 -0.5654443 0.45727 0.3544566 -0.5687816 0.45727 0.3544566 -0.092819 0.4662797 0.3544566 -0.2262531 0.4662797 0.3544566 -0.2875993 0.4662797 0.3544566 -0.3262122 0.4662797 0.3544566 -0.3544566 0.4662797 0.3544566 -0.3767383 0.4662797 0.3544566 -0.3951413 0.4662797 0.3544566 -0.4108177 0.4662797 0.3544566 -0.4244723 0.4662797 0.3544566 -0.4365675 0.4662797 0.3544566 -0.4474232 0.4662797 0.3544566 -0.45727 0.4662797 0.3544566 -0.4662797 0.4662797 0.3544566 -0.4745834 0.4662797 0.3544566 -0.4822838 0.4662797 0.3544566 -0.4894626 0.4662797 0.3544566 -0.4961862 0.4662797 0.3544566 -0.5025087 0.4662797 0.3544566 -0.5084753 0.4662797 0.3544566 -0.514124 0.4662797 0.3544566 -0.519487 0.4662797 0.3544566 -0.5245917 0.4662797 0.3544566 -0.529462 0.4662797 0.3544566 -0.5341183 0.4662797 0.3544566 -0.5385787 0.4662797 0.3544566 -0.5428591 0.4662797 0.3544566 -0.5469733 0.4662797 0.3544566 -0.5509339 0.4662797 0.3544566 -0.5547519 0.4662797 0.3544566 -0.5584371 0.4662797 0.3544566 -0.5619986 0.4662797 0.3544566 -0.5654443 0.4662797 0.3544566 -0.5687816 0.4662797 0.3544566 -0.092819 0.4745834 0.3544566 -0.2262531 0.4745834 0.3544566 -0.2875993 0.4745834 0.3544566 -0.3262122 0.4745834 0.3544566 -0.3544566 0.4745834 0.3544566 -0.3767383 0.4745834 0.3544566 -0.3951413 0.4745834 0.3544566 -0.4108177 0.4745834 0.3544566 -0.4244723 0.4745834 0.3544566 -0.4365675 0.4745834 0.3544566 -0.4474232 0.4745834 0.3544566 -0.45727 0.4745834 0.3544566 -0.4662797 0.4745834 0.3544566 -0.4745834 0.4745834 0.3544566 -0.4822838 0.4745834 0.3544566 -0.4894626 0.4745834 0.3544566 -0.4961862 0.4745834 0.3544566 -0.5025087 0.4745834 0.3544566 -0.5084753 0.4745834 0.3544566 -0.514124 0.4745834 0.3544566 -0.519487 0.4745834 0.3544566 -0.5245917 0.4745834 0.3544566 -0.529462 0.4745834 0.3544566 -0.5341183 0.4745834 0.3544566 -0.5385787 0.4745834 0.3544566 -0.5428591 0.4745834 0.3544566 -0.5469733 0.4745834 0.3544566 -0.5509339 0.4745834 0.3544566 -0.5547519 0.4745834 0.3544566 -0.5584371 0.4745834 0.3544566 -0.5619986 0.4745834 0.3544566 -0.5654443 0.4745834 0.3544566 -0.5687816 0.4745834 0.3544566 -0.092819 0.4822838 0.3544566 -0.2262531 0.4822838 0.3544566 -0.2875993 0.4822838 0.3544566 -0.3262122 0.4822838 0.3544566 -0.3544566 0.4822838 0.3544566 -0.3767383 0.4822838 0.3544566 -0.3951413 0.4822838 0.3544566 -0.4108177 0.4822838 0.3544566 -0.4244723 0.4822838 0.3544566 -0.4365675 0.4822838 0.3544566 -0.4474232 0.4822838 0.3544566 -0.45727 0.4822838 0.3544566 -0.4662797 0.4822838 0.3544566 -0.4745834 0.4822838 0.3544566 -0.4822838 0.4822838 0.3544566 -0.4894626 0.4822838 0.3544566 -0.4961862 0.4822838 0.3544566 -0.5025087 0.4822838 0.3544566 -0.5084753 0.4822838 0.3544566 -0.514124 0.4822838 0.3544566 -0.519487 0.4822838 0.3544566 -0.5245917 0.4822838 0.3544566 -0.529462 0.4822838 0.3544566 -0.5341183 0.4822838 0.3544566 -0.5385787 0.4822838 0.3544566 -0.5428591 0.4822838 0.3544566 -0.5469733 0.4822838 0.3544566 -0.5509339 0.4822838 0.3544566 -0.5547519 0.4822838 0.3544566 -0.5584371 0.4822838 0.3544566 -0.5619986 0.4822838 0.3544566 -0.5654443 0.4822838 0.3544566 -0.5687816 0.4822838 0.3544566 -0.092819 0.4894626 0.3544566 -0.2262531 0.4894626 0.3544566 -0.2875993 0.4894626 0.3544566 -0.3262122 0.4894626 0.3544566 -0.3544566 0.4894626 0.3544566 -0.3767383 0.4894626 0.3544566 -0.3951413 0.4894626 0.3544566 -0.4108177 0.4894626 0.3544566 -0.4244723 0.4894626 0.3544566 -0.4365675 0.4894626 0.3544566 -0.4474232 0.4894626 0.3544566 -0.45727 0.4894626 0.3544566 -0.4662797 0.4894626 0.3544566 -0.4745834 0.4894626 0.3544566 -0.4822838 0.4894626 0.3544566 -0.4894626 0.4894626 0.3544566 -0.4961862 0.4894626 0.3544566 -0.5025087 0.4894626 0.3544566 -0.5084753 0.4894626 0.3544566 -0.514124 0.4894626 0.3544566 -0.519487 0.4894626 0.3544566 -0.5245917 0.4894626 0.3544566 -0.529462 0.4894626 0.3544566 -0.5341183 0.4894626 0.3544566 -0.5385787 0.4894626 0.3544566 -0.5428591 0.4894626 0.3544566 -0.5469733 0.4894626 0.3544566 -0.5509339 0.4894626 0.3544566 -0.5547519 0.4894626 0.3544566 -0.5584371 0.4894626 0.3544566 -0.5619986 0.4894626 0.3544566 -0.5654443 0.4894626 0.3544566 -0.5687816 0.4894626 0.3544566 -0.092819 0.4961862 0.3544566 -0.2262531 0.4961862 0.3544566 -0.2875993 0.4961862 0.3544566 -0.3262122 0.4961862 0.3544566 -0.3544566 0.4961862 0.3544566 -0.3767383 0.4961862 0.3544566 -0.3951413 0.4961862 0.3544566 -0.4108177 0.4961862 0.3544566 -0.4244723 0.4961862 0.3544566 -0.4365675 0.4961862 0.3544566 -0.4474232 0.4961862 0.3544566 -0.45727 0.4961862 0.3544566 -0.4662797 0.4961862 0.3544566 -0.4745834 0.4961862 0.3544566 -0.4822838 0.4961862 0.3544566 -0.4894626 0.4961862 0.3544566 -0.4961862 0.4961862 0.3544566 -0.5025087 0.4961862 0.3544566 -0.5084753 0.4961862 0.3544566 -0.514124 0.4961862 0.3544566 -0.519487 0.4961862 0.3544566 -0.5245917 0.4961862 0.3544566 -0.529462 0.4961862 0.3544566 -0.5341183 0.4961862 0.3544566 -0.5385787 0.4961862 0.3544566 -0.5428591 0.4961862 0.3544566 -0.5469733 0.4961862 0.3544566 -0.5509339 0.4961862 0.3544566 -0.5547519 0.4961862 0.3544566 -0.5584371 0.4961862 0.3544566 -0.5619986 0.4961862 0.3544566 -0.5654443 0.4961862 0.3544566 -0.5687816 0.4961862 0.3544566 -0.092819 0.5025087 0.3544566 -0.2262531 0.5025087 0.3544566 -0.2875993 0.5025087 0.3544566 -0.3262122 0.5025087 0.3544566 -0.3544566 0.5025087 0.3544566 -0.3767383 0.5025087 0.3544566 -0.3951413 0.5025087 0.3544566 -0.4108177 0.5025087 0.3544566 -0.4244723 0.5025087 0.3544566 -0.4365675 0.5025087 0.3544566 -0.4474232 0.5025087 0.3544566 -0.45727 0.5025087 0.3544566 -0.4662797 0.5025087 0.3544566 -0.4745834 0.5025087 0.3544566 -0.4822838 0.5025087 0.3544566 -0.4894626 0.5025087 0.3544566 -0.4961862 0.5025087 0.3544566 -0.5025087 0.5025087 0.3544566 -0.5084753 0.5025087 0.3544566 -0.514124 0.5025087 0.3544566 -0.519487 0.5025087 0.3544566 -0.5245917 0.5025087 0.3544566 -0.529462 0.5025087 0.3544566 -0.5341183 0.5025087 0.3544566 -0.5385787 0.5025087 0.3544566 -0.5428591 0.5025087 0.3544566 -0.5469733 0.5025087 0.3544566 -0.5509339 0.5025087 0.3544566 -0.5547519 0.5025087 0.3544566 -0.5584371 0.5025087 0.3544566 -0.5619986 0.5025087 0.3544566 -0.5654443 0.5025087 0.3544566 -0.5687816 0.5025087 0.3544566 -0.092819 0.5084753 0.3544566 -0.2262531 0.5084753 0.3544566 -0.2875993 0.5084753 0.3544566 -0.3262122 0.5084753 0.3544566 -0.3544566 0.5084753 0.3544566 -0.3767383 0.5084753 0.3544566 -0.3951413 0.5084753 0.3544566 -0.4108177 0.5084753 0.3544566 -0.4244723 0.5084753 0.3544566 -0.4365675 0.5084753 0.3544566 -0.4474232 0.5084753 0.3544566 -0.45727 0.5084753 0.3544566 -0.4662797 0.5084753 0.3544566 -0.4745834 0.5084753 0.3544566 -0.4822838 0.5084753 0.3544566 -0.4894626 0.5084753 0.3544566 -0.4961862 0.5084753 0.3544566 -0.5025087 0.5084753 0.3544566 -0.5084753 0.5084753 0.3544566 -0.514124 0.5084753 0.3544566 -0.519487 0.5084753 0.3544566 -0.5245917 0.5084753 0.3544566 -0.529462 0.5084753 0.3544566 -0.5341183 0.5084753 0.3544566 -0.5385787 0.5084753 0.3544566 -0.5428591 0.5084753 0.3544566 -0.5469733 0.5084753 0.3544566 -0.5509339 0.5084753 0.3544566 -0.5547519 0.5084753 0.3544566 -0.5584371 0.5084753 0.3544566 -0.5619986 0.5084753 0.3544566 -0.5654443 0.5084753 0.3544566 -0.5687816 0.5084753 0.3544566 -0.092819 0.514124 0.3544566 -0.2262531 0.514124 0.3544566 -0.2875993 0.514124 0.3544566 -0.3262122 0.514124 0.3544566 -0.3544566 0.514124 0.3544566 -0.3767383 0.514124 0.3544566 -0.3951413 0.514124 0.3544566 -0.4108177 0.514124 0.3544566 -0.4244723 0.514124 0.3544566 -0.4365675 0.514124 0.3544566 -0.4474232 0.514124 0.3544566 -0.45727 0.514124 0.3544566 -0.4662797 0.514124 0.3544566 -0.4745834 0.514124 0.3544566 -0.4822838 0.514124 0.3544566 -0.4894626 0.514124 0.3544566 -0.4961862 0.514124 0.3544566 -0.5025087 0.514124 0.3544566 -0.5084753 0.514124 0.3544566 -0.514124 0.514124 0.3544566 -0.519487 0.514124 0.3544566 -0.5245917 0.514124 0.3544566 -0.529462 0.514124 0.3544566 -0.5341183 0.514124 0.3544566 -0.5385787 0.514124 0.3544566 -0.5428591 0.514124 0.3544566 -0.5469733 0.514124 0.3544566 -0.5509339 0.514124 0.3544566 -0.5547519 0.514124 0.3544566 -0.5584371 0.514124 0.3544566 -0.5619986 0.514124 0.3544566 -0.5654443 0.514124 0.3544566 -0.5687816 0.514124 0.3544566 -0.092819 0.519487 0.3544566 -0.2262531 0.519487 0.3544566 -0.2875993 0.519487 0.3544566 -0.3262122 0.519487 0.3544566 -0.3544566 0.519487 0.3544566 -0.3767383 0.519487 0.3544566 -0.3951413 0.519487 0.3544566 -0.4108177 0.519487 0.3544566 -0.4244723 0.519487 0.3544566 -0.4365675 0.519487 0.3544566 -0.4474232 0.519487 0.3544566 -0.45727 0.519487 0.3544566 -0.4662797 0.519487 0.3544566 -0.4745834 0.519487 0.3544566 -0.4822838 0.519487 0.3544566 -0.4894626 0.519487 0.3544566 -0.4961862 0.519487 0.3544566 -0.5025087 0.519487 0.3544566 -0.5084753 0.519487 0.3544566 -0.514124 0.519487 0.3544566 -0.519487 0.519487 0.3544566 -0.5245917 0.519487 0.3544566 -0.529462 0.519487 0.3544566 -0.5341183 0.519487 0.3544566 -0.5385787 0.519487 0.3544566 -0.5428591 0.519487 0.3544566 -0.5469733 0.519487 0.3544566 -0.5509339 0.519487 0.3544566 -0.5547519 0.519487 0.3544566 -0.5584371 0.519487 0.3544566 -0.5619986 0.519487 0.3544566 -0.5654443 0.519487 0.3544566 -0.5687816 0.519487 0.3544566 -0.092819 0.5245917 0.3544566 -0.2262531 0.5245917 0.3544566 -0.2875993 0.5245917 0.3544566 -0.3262122 0.5245917 0.3544566 -0.3544566 0.5245917 0.3544566 -0.3767383 0.5245917 0.3544566 -0.3951413 0.5245917 0.3544566 -0.4108177 0.5245917 0.3544566 -0.4244723 0.5245917 0.3544566 -0.4365675 0.5245917 0.3544566 -0.4474232 0.5245917 0.3544566 -0.45727 0.5245917 0.3544566 -0.4662797 0.5245917 0.3544566 -0.4745834 0.5245917 0.3544566 -0.4822838 0.5245917 0.3544566 -0.4894626 0.5245917 0.3544566 -0.4961862 0.5245917 0.3544566 -0.5025087 0.5245917 0.3544566 -0.5084753 0.5245917 0.3544566 -0.514124 0.5245917 0.3544566 -0.519487 0.5245917 0.3544566 -0.5245917 0.5245917 0.3544566 -0.529462 0.5245917 0.3544566 -0.5341183 0.5245917 0.3544566 -0.5385787 0.5245917 0.3544566 -0.5428591 0.5245917 0.3544566 -0.5469733 0.5245917 0.3544566 -0.5509339 0.5245917 0.3544566 -0.5547519 0.5245917 0.3544566 -0.5584371 0.5245917 0.3544566 -0.5619986 0.5245917 0.3544566 -0.5654443 0.5245917 0.3544566 -0.5687816 0.5245917 0.3544566 -0.092819 0.529462 0.3544566 -0.2262531 0.529462 0.3544566 -0.2875993 0.529462 0.3544566 -0.3262122 0.529462 0.3544566 -0.3544566 0.529462 0.3544566 -0.3767383 0.529462 0.3544566 -0.3951413 0.529462 0.3544566 -0.4108177 0.529462 0.3544566 -0.4244723 0.529462 0.3544566 -0.4365675 0.529462 0.3544566 -0.4474232 0.529462 0.3544566 -0.45727 0.529462 0.3544566 -0.4662797 0.529462 0.3544566 -0.4745834 0.529462 0.3544566 -0.4822838 0.529462 0.3544566 -0.4894626 0.529462 0.3544566 -0.4961862 0.529462 0.3544566 -0.5025087 0.529462 0.3544566 -0.5084753 0.529462 0.3544566 -0.514124 0.529462 0.3544566 -0.519487 0.529462 0.3544566 -0.5245917 0.529462 0.3544566 -0.529462 0.529462 0.3544566 -0.5341183 0.529462 0.3544566 -0.5385787 0.529462 0.3544566 -0.5428591 0.529462 0.3544566 -0.5469733 0.529462 0.3544566 -0.5509339 0.529462 0.3544566 -0.5547519 0.529462 0.3544566 -0.5584371 0.529462 0.3544566 -0.5619986 0.529462 0.3544566 -0.5654443 0.529462 0.3544566 -0.5687816 0.529462 0.3544566 -0.092819 0.5341183 0.3544566 -0.2262531 0.5341183 0.3544566 -0.2875993 0.5341183 0.3544566 -0.3262122 0.5341183 0.3544566 -0.3544566 0.5341183 0.3544566 -0.3767383 0.5341183 0.3544566 -0.3951413 0.5341183 0.3544566 -0.4108177 0.5341183 0.3544566 -0.4244723 0.5341183 0.3544566 -0.4365675 0.5341183 0.3544566 -0.4474232 0.5341183 0.3544566 -0.45727 0.5341183 0.3544566 -0.4662797 0.5341183 0.3544566 -0.4745834 0.5341183 0.3544566 -0.4822838 0.5341183 0.3544566 -0.4894626 0.5341183 0.3544566 -0.4961862 0.5341183 0.3544566 -0.5025087 0.5341183 0.3544566 -0.5084753 0.5341183 0.3544566 -0.514124 0.5341183 0.3544566 -0.519487 0.5341183 0.3544566 -0.5245917 0.5341183 0.3544566 -0.529462 0.5341183 0.3544566 -0.5341183 0.5341183 0.3544566 -0.5385787 0.5341183 0.3544566 -0.5428591 0.5341183 0.3544566 -0.5469733 0.5341183 0.3544566 -0.5509339 0.5341183 0.3544566 -0.5547519 0.5341183 0.3544566 -0.5584371 0.5341183 0.3544566 -0.5619986 0.5341183 0.3544566 -0.5654443 0.5341183 0.3544566 -0.5687816 0.5341183 0.3544566 -0.092819 0.5385787 0.3544566 -0.2262531 0.5385787 0.3544566 -0.2875993 0.5385787 0.3544566 -0.3262122 0.5385787 0.3544566 -0.3544566 0.5385787 0.3544566 -0.3767383 0.5385787 0.3544566 -0.3951413 0.5385787 0.3544566 -0.4108177 0.5385787 0.3544566 -0.4244723 0.5385787 0.3544566 -0.4365675 0.5385787 0.3544566 -0.4474232 0.5385787 0.3544566 -0.45727 0.5385787 0.3544566 -0.4662797 0.5385787 0.3544566 -0.4745834 0.5385787 0.3544566 -0.4822838 0.5385787 0.3544566 -0.4894626 0.5385787 0.3544566 -0.4961862 0.5385787 0.3544566 -0.5025087 0.5385787 0.3544566 -0.5084753 0.5385787 0.3544566 -0.514124 0.5385787 0.3544566 -0.519487 0.5385787 0.3544566 -0.5245917 0.5385787 0.3544566 -0.529462 0.5385787 0.3544566 -0.5341183 0.5385787 0.3544566 -0.5385787 0.5385787 0.3544566 -0.5428591 0.5385787 0.3544566 -0.5469733 0.5385787 0.3544566 -0.5509339 0.5385787 0.3544566 -0.5547519 0.5385787 0.3544566 -0.5584371 0.5385787 0.3544566 -0.5619986 0.5385787 0.3544566 -0.5654443 0.5385787 0.3544566 -0.5687816 0.5385787 0.3544566 -0.092819 0.5428591 0.3544566 -0.2262531 0.5428591 0.3544566 -0.2875993 0.5428591 0.3544566 -0.3262122 0.5428591 0.3544566 -0.3544566 0.5428591 0.3544566 -0.3767383 0.5428591 0.3544566 -0.3951413 0.5428591 0.3544566 -0.4108177 0.5428591 0.3544566 -0.4244723 0.5428591 0.3544566 -0.4365675 0.5428591 0.3544566 -0.4474232 0.5428591 0.3544566 -0.45727 0.5428591 0.3544566 -0.4662797 0.5428591 0.3544566 -0.4745834 0.5428591 0.3544566 -0.4822838 0.5428591 0.3544566 -0.4894626 0.5428591 0.3544566 -0.4961862 0.5428591 0.3544566 -0.5025087 0.5428591 0.3544566 -0.5084753 0.5428591 0.3544566 -0.514124 0.5428591 0.3544566 -0.519487 0.5428591 0.3544566 -0.5245917 0.5428591 0.3544566 -0.529462 0.5428591 0.3544566 -0.5341183 0.5428591 0.3544566 -0.5385787 0.5428591 0.3544566 -0.5428591 0.5428591 0.3544566 -0.5469733 0.5428591 0.3544566 -0.5509339 0.5428591 0.3544566 -0.5547519 0.5428591 0.3544566 -0.5584371 0.5428591 0.3544566 -0.5619986 0.5428591 0.3544566 -0.5654443 0.5428591 0.3544566 -0.5687816 0.5428591 0.3544566 -0.092819 0.5469733 0.3544566 -0.2262531 0.5469733 0.3544566 -0.2875993 0.5469733 0.3544566 -0.3262122 0.5469733 0.3544566 -0.3544566 0.5469733 0.3544566 -0.3767383 0.5469733 0.3544566 -0.3951413 0.5469733 0.3544566 -0.4108177 0.5469733 0.3544566 -0.4244723 0.5469733 0.3544566 -0.4365675 0.5469733 0.3544566 -0.4474232 0.5469733 0.3544566 -0.45727 0.5469733 0.3544566 -0.4662797 0.5469733 0.3544566 -0.4745834 0.5469733 0.3544566 -0.4822838 0.5469733 0.3544566 -0.4894626 0.5469733 0.3544566 -0.4961862 0.5469733 0.3544566 -0.5025087 0.5469733 0.3544566 -0.5084753 0.5469733 0.3544566 -0.514124 0.5469733 0.3544566 -0.519487 0.5469733 0.3544566 -0.5245917 0.5469733 0.3544566 -0.529462 0.5469733 0.3544566 -0.5341183 0.5469733 0.3544566 -0.5385787 0.5469733 0.3544566 -0.5428591 0.5469733 0.3544566 -0.5469733 0.5469733 0.3544566 -0.5509339 0.5469733 0.3544566 -0.5547519 0.5469733 0.3544566 -0.5584371 0.5469733 0.3544566 -0.5619986 0.5469733 0.3544566 -0.5654443 0.5469733 0.3544566 -0.5687816 0.5469733 0.3544566 -0.092819 0.5509339 0.3544566 -0.2262531 0.5509339 0.3544566 -0.2875993 0.5509339 0.3544566 -0.3262122 0.5509339 0.3544566 -0.3544566 0.5509339 0.3544566 -0.3767383 0.5509339 0.3544566 -0.3951413 0.5509339 0.3544566 -0.4108177 0.5509339 0.3544566 -0.4244723 0.5509339 0.3544566 -0.4365675 0.5509339 0.3544566 -0.4474232 0.5509339 0.3544566 -0.45727 0.5509339 0.3544566 -0.4662797 0.5509339 0.3544566 -0.4745834 0.5509339 0.3544566 -0.4822838 0.5509339 0.3544566 -0.4894626 0.5509339 0.3544566 -0.4961862 0.5509339 0.3544566 -0.5025087 0.5509339 0.3544566 -0.5084753 0.5509339 0.3544566 -0.514124 0.5509339 0.3544566 -0.519487 0.5509339 0.3544566 -0.5245917 0.5509339 0.3544566 -0.529462 0.5509339 0.3544566 -0.5341183 0.5509339 0.3544566 -0.5385787 0.5509339 0.3544566 -0.5428591 0.5509339 0.3544566 -0.5469733 0.5509339 0.3544566 -0.5509339 0.5509339 0.3544566 -0.5547519 0.5509339 0.3544566 -0.5584371 0.5509339 0.3544566 -0.5619986 0.5509339 0.3544566 -0.5654443 0.5509339 0.3544566 -0.5687816 0.5509339 0.3544566 -0.092819 0.5547519 0.3544566 -0.2262531 0.5547519 0.3544566 -0.2875993 0.5547519 0.3544566 -0.3262122 0.5547519 0.3544566 -0.3544566 0.5547519 0.3544566 -0.3767383 0.5547519 0.3544566 -0.3951413 0.5547519 0.3544566 -0.4108177 0.5547519 0.3544566 -0.4244723 0.5547519 0.3544566 -0.4365675 0.5547519 0.3544566 -0.4474232 0.5547519 0.3544566 -0.45727 0.5547519 0.3544566 -0.4662797 0.5547519 0.3544566 -0.4745834 0.5547519 0.3544566 -0.4822838 0.5547519 0.3544566 -0.4894626 0.5547519 0.3544566 -0.4961862 0.5547519 0.3544566 -0.5025087 0.5547519 0.3544566 -0.5084753 0.5547519 0.3544566 -0.514124 0.5547519 0.3544566 -0.519487 0.5547519 0.3544566 -0.5245917 0.5547519 0.3544566 -0.529462 0.5547519 0.3544566 -0.5341183 0.5547519 0.3544566 -0.5385787 0.5547519 0.3544566 -0.5428591 0.5547519 0.3544566 -0.5469733 0.5547519 0.3544566 -0.5509339 0.5547519 0.3544566 -0.5547519 0.5547519 0.3544566 -0.5584371 0.5547519 0.3544566 -0.5619986 0.5547519 0.3544566 -0.5654443 0.5547519 0.3544566 -0.5687816 0.5547519 0.3544566 -0.092819 0.5584371 0.3544566 -0.2262531 0.5584371 0.3544566 -0.2875993 0.5584371 0.3544566 -0.3262122 0.5584371 0.3544566 -0.3544566 0.5584371 0.3544566 -0.3767383 0.5584371 0.3544566 -0.3951413 0.5584371 0.3544566 -0.4108177 0.5584371 0.3544566 -0.4244723 0.5584371 0.3544566 -0.4365675 0.5584371 0.3544566 -0.4474232 0.5584371 0.3544566 -0.45727 0.5584371 0.3544566 -0.4662797 0.5584371 0.3544566 -0.4745834 0.5584371 0.3544566 -0.4822838 0.5584371 0.3544566 -0.4894626 0.5584371 0.3544566 -0.4961862 0.5584371 0.3544566 -0.5025087 0.5584371 0.3544566 -0.5084753 0.5584371 0.3544566 -0.514124 0.5584371 0.3544566 -0.519487 0.5584371 0.3544566 -0.5245917 0.5584371 0.3544566 -0.529462 0.5584371 0.3544566 -0.5341183 0.5584371 0.3544566 -0.5385787 0.5584371 0.3544566 -0.5428591 0.5584371 0.3544566 -0.5469733 0.5584371 0.3544566 -0.5509339 0.5584371 0.3544566 -0.5547519 0.5584371 0.3544566 -0.5584371 0.5584371 0.3544566 -0.5619986 0.5584371 0.3544566 -0.5654443 0.5584371 0.3544566 -0.5687816 0.5584371 0.3544566 -0.092819 0.5619986 0.3544566 -0.2262531 0.5619986 0.3544566 -0.2875993 0.5619986 0.3544566 -0.3262122 0.5619986 0.3544566 -0.3544566 0.5619986 0.3544566 -0.3767383 0.5619986 0.3544566 -0.3951413 0.5619986 0.3544566 -0.4108177 0.5619986 0.3544566 -0.4244723 0.5619986 0.3544566 -0.4365675 0.5619986 0.3544566 -0.4474232 0.5619986 0.3544566 -0.45727 0.5619986 0.3544566 -0.4662797 0.5619986 0.3544566 -0.4745834 0.5619986 0.3544566 -0.4822838 0.5619986 0.3544566 -0.4894626 0.5619986 0.3544566 -0.4961862 0.5619986 0.3544566 -0.5025087 0.5619986 0.3544566 -0.5084753 0.5619986 0.3544566 -0.514124 0.5619986 0.3544566 -0.519487 0.5619986 0.3544566 -0.5245917 0.5619986 0.3544566 -0.529462 0.5619986 0.3544566 -0.5341183 0.5619986 0.3544566 -0.5385787 0.5619986 0.3544566 -0.5428591 0.5619986 0.3544566 -0.5469733 0.5619986 0.3544566 -0.5509339 0.5619986 0.3544566 -0.5547519 0.5619986 0.3544566 -0.5584371 0.5619986 0.3544566 -0.5619986 0.5619986 0.3544566 -0.5654443 0.5619986 0.3544566 -0.5687816 0.5619986 0.3544566 -0.092819 0.5654443 0.3544566 -0.2262531 0.5654443 0.3544566 -0.2875993 0.5654443 0.3544566 -0.3262122 0.5654443 0.3544566 -0.3544566 0.5654443 0.3544566 -0.3767383 0.5654443 0.3544566 -0.3951413 0.5654443 0.3544566 -0.4108177 0.5654443 0.3544566 -0.4244723 0.5654443 0.3544566 -0.4365675 0.5654443 0.3544566 -0.4474232 0.5654443 0.3544566 -0.45727 0.5654443 0.3544566 -0.4662797 0.5654443 0.3544566 -0.4745834 0.5654443 0.3544566 -0.4822838 0.5654443 0.3544566 -0.4894626 0.5654443 0.3544566 -0.4961862 0.5654443 0.3544566 -0.5025087 0.5654443 0.3544566 -0.5084753 0.5654443 0.3544566 -0.514124 0.5654443 0.3544566 -0.519487 0.5654443 0.3544566 -0.5245917 0.5654443 0.3544566 -0.529462 0.5654443 0.3544566 -0.5341183 0.5654443 0.3544566 -0.5385787 0.5654443 0.3544566 -0.5428591 0.5654443 0.3544566 -0.5469733 0.5654443 0.3544566 -0.5509339 0.5654443 0.3544566 -0.5547519 0.5654443 0.3544566 -0.5584371 0.5654443 0.3544566 -0.5619986 0.5654443 0.3544566 -0.5654443 0.5654443 0.3544566 -0.5687816 0.5654443 0.3544566 -0.092819 0.5687816 0.3544566 -0.2262531 0.5687816 0.3544566 -0.2875993 0.5687816 0.3544566 -0.3262122 0.5687816 0.3544566 -0.3544566 0.5687816 0.3544566 -0.3767383 0.5687816 0.3544566 -0.3951413 0.5687816 0.3544566 -0.4108177 0.5687816 0.3544566 -0.4244723 0.5687816 0.3544566 -0.4365675 0.5687816 0.3544566 -0.4474232 0.5687816 0.3544566 -0.45727 0.5687816 0.3544566 -0.4662797 0.5687816 0.3544566 -0.4745834 0.5687816 0.3544566 -0.4822838 0.5687816 0.3544566 -0.4894626 0.5687816 0.3544566 -0.4961862 0.5687816 0.3544566 -0.5025087 0.5687816 0.3544566 -0.5084753 0.5687816 0.3544566 -0.514124 0.5687816 0.3544566 -0.519487 0.5687816 0.3544566 -0.5245917 0.5687816 0.3544566 -0.529462 0.5687816 0.3544566 -0.5341183 0.5687816 0.3544566 -0.5385787 0.5687816 0.3544566 -0.5428591 0.5687816 0.3544566 -0.5469733 0.5687816 0.3544566 -0.5509339 0.5687816 0.3544566 -0.5547519 0.5687816 0.3544566 -0.5584371 0.5687816 0.3544566 -0.5619986 0.5687816 0.3544566 -0.5654443 0.5687816 0.3544566 -0.5687816 0.5687816 0.3544566 -0.092819 0.092819 0.3767383 -0.2262531 0.092819 0.3767383 -0.2875993 0.092819 0.3767383 -0.3262122 0.092819 0.3767383 -0.3544566 0.092819 0.3767383 -0.3767383 0.092819 0.3767383 -0.3951413 0.092819 0.3767383 -0.4108177 0.092819 0.3767383 -0.4244723 0.092819 0.3767383 -0.4365675 0.092819 0.3767383 -0.4474232 0.092819 0.3767383 -0.45727 0.092819 0.3767383 -0.4662797 0.092819 0.3767383 -0.4745834 0.092819 0.3767383 -0.4822838 0.092819 0.3767383 -0.4894626 0.092819 0.3767383 -0.4961862 0.092819 0.3767383 -0.5025087 0.092819 0.3767383 -0.5084753 0.092819 0.3767383 -0.514124 0.092819 0.3767383 -0.519487 0.092819 0.3767383 -0.5245917 0.092819 0.3767383 -0.529462 0.092819 0.3767383 -0.5341183 0.092819 0.3767383 -0.5385787 0.092819 0.3767383 -0.5428591 0.092819 0.3767383 -0.5469733 0.092819 0.3767383 -0.5509339 0.092819 0.3767383 -0.5547519 0.092819 0.3767383 -0.5584371 0.092819 0.3767383 -0.5619986 0.092819 0.3767383 -0.5654443 0.092819 0.3767383 -0.5687816 0.092819 0.3767383 -0.092819 0.2262531 0.3767383 -0.2262531 0.2262531 0.3767383 -0.2875993 0.2262531 0.3767383 -0.3262122 0.2262531 0.3767383 -0.3544566 0.2262531 0.3767383 -0.3767383 0.2262531 0.3767383 -0.3951413 0.2262531 0.3767383 -0.4108177 0.2262531 0.3767383 -0.4244723 0.2262531 0.3767383 -0.4365675 0.2262531 0.3767383 -0.4474232 0.2262531 0.3767383 -0.45727 0.2262531 0.3767383 -0.4662797 0.2262531 0.3767383 -0.4745834 0.2262531 0.3767383 -0.4822838 0.2262531 0.3767383 -0.4894626 0.2262531 0.3767383 -0.4961862 0.2262531 0.3767383 -0.5025087 0.2262531 0.3767383 -0.5084753 0.2262531 0.3767383 -0.514124 0.2262531 0.3767383 -0.519487 0.2262531 0.3767383 -0.5245917 0.2262531 0.3767383 -0.529462 0.2262531 0.3767383 -0.5341183 0.2262531 0.3767383 -0.5385787 0.2262531 0.3767383 -0.5428591 0.2262531 0.3767383 -0.5469733 0.2262531 0.3767383 -0.5509339 0.2262531 0.3767383 -0.5547519 0.2262531 0.3767383 -0.5584371 0.2262531 0.3767383 -0.5619986 0.2262531 0.3767383 -0.5654443 0.2262531 0.3767383 -0.5687816 0.2262531 0.3767383 -0.092819 0.2875993 0.3767383 -0.2262531 0.2875993 0.3767383 -0.2875993 0.2875993 0.3767383 -0.3262122 0.2875993 0.3767383 -0.3544566 0.2875993 0.3767383 -0.3767383 0.2875993 0.3767383 -0.3951413 0.2875993 0.3767383 -0.4108177 0.2875993 0.3767383 -0.4244723 0.2875993 0.3767383 -0.4365675 0.2875993 0.3767383 -0.4474232 0.2875993 0.3767383 -0.45727 0.2875993 0.3767383 -0.4662797 0.2875993 0.3767383 -0.4745834 0.2875993 0.3767383 -0.4822838 0.2875993 0.3767383 -0.4894626 0.2875993 0.3767383 -0.4961862 0.2875993 0.3767383 -0.5025087 0.2875993 0.3767383 -0.5084753 0.2875993 0.3767383 -0.514124 0.2875993 0.3767383 -0.519487 0.2875993 0.3767383 -0.5245917 0.2875993 0.3767383 -0.529462 0.2875993 0.3767383 -0.5341183 0.2875993 0.3767383 -0.5385787 0.2875993 0.3767383 -0.5428591 0.2875993 0.3767383 -0.5469733 0.2875993 0.3767383 -0.5509339 0.2875993 0.3767383 -0.5547519 0.2875993 0.3767383 -0.5584371 0.2875993 0.3767383 -0.5619986 0.2875993 0.3767383 -0.5654443 0.2875993 0.3767383 -0.5687816 0.2875993 0.3767383 -0.092819 0.3262122 0.3767383 -0.2262531 0.3262122 0.3767383 -0.2875993 0.3262122 0.3767383 -0.3262122 0.3262122 0.3767383 -0.3544566 0.3262122 0.3767383 -0.3767383 0.3262122 0.3767383 -0.3951413 0.3262122 0.3767383 -0.4108177 0.3262122 0.3767383 -0.4244723 0.3262122 0.3767383 -0.4365675 0.3262122 0.3767383 -0.4474232 0.3262122 0.3767383 -0.45727 0.3262122 0.3767383 -0.4662797 0.3262122 0.3767383 -0.4745834 0.3262122 0.3767383 -0.4822838 0.3262122 0.3767383 -0.4894626 0.3262122 0.3767383 -0.4961862 0.3262122 0.3767383 -0.5025087 0.3262122 0.3767383 -0.5084753 0.3262122 0.3767383 -0.514124 0.3262122 0.3767383 -0.519487 0.3262122 0.3767383 -0.5245917 0.3262122 0.3767383 -0.529462 0.3262122 0.3767383 -0.5341183 0.3262122 0.3767383 -0.5385787 0.3262122 0.3767383 -0.5428591 0.3262122 0.3767383 -0.5469733 0.3262122 0.3767383 -0.5509339 0.3262122 0.3767383 -0.5547519 0.3262122 0.3767383 -0.5584371 0.3262122 0.3767383 -0.5619986 0.3262122 0.3767383 -0.5654443 0.3262122 0.3767383 -0.5687816 0.3262122 0.3767383 -0.092819 0.3544566 0.3767383 -0.2262531 0.3544566 0.3767383 -0.2875993 0.3544566 0.3767383 -0.3262122 0.3544566 0.3767383 -0.3544566 0.3544566 0.3767383 -0.3767383 0.3544566 0.3767383 -0.3951413 0.3544566 0.3767383 -0.4108177 0.3544566 0.3767383 -0.4244723 0.3544566 0.3767383 -0.4365675 0.3544566 0.3767383 -0.4474232 0.3544566 0.3767383 -0.45727 0.3544566 0.3767383 -0.4662797 0.3544566 0.3767383 -0.4745834 0.3544566 0.3767383 -0.4822838 0.3544566 0.3767383 -0.4894626 0.3544566 0.3767383 -0.4961862 0.3544566 0.3767383 -0.5025087 0.3544566 0.3767383 -0.5084753 0.3544566 0.3767383 -0.514124 0.3544566 0.3767383 -0.519487 0.3544566 0.3767383 -0.5245917 0.3544566 0.3767383 -0.529462 0.3544566 0.3767383 -0.5341183 0.3544566 0.3767383 -0.5385787 0.3544566 0.3767383 -0.5428591 0.3544566 0.3767383 -0.5469733 0.3544566 0.3767383 -0.5509339 0.3544566 0.3767383 -0.5547519 0.3544566 0.3767383 -0.5584371 0.3544566 0.3767383 -0.5619986 0.3544566 0.3767383 -0.5654443 0.3544566 0.3767383 -0.5687816 0.3544566 0.3767383 -0.092819 0.3767383 0.3767383 -0.2262531 0.3767383 0.3767383 -0.2875993 0.3767383 0.3767383 -0.3262122 0.3767383 0.3767383 -0.3544566 0.3767383 0.3767383 -0.3767383 0.3767383 0.3767383 -0.3951413 0.3767383 0.3767383 -0.4108177 0.3767383 0.3767383 -0.4244723 0.3767383 0.3767383 -0.4365675 0.3767383 0.3767383 -0.4474232 0.3767383 0.3767383 -0.45727 0.3767383 0.3767383 -0.4662797 0.3767383 0.3767383 -0.4745834 0.3767383 0.3767383 -0.4822838 0.3767383 0.3767383 -0.4894626 0.3767383 0.3767383 -0.4961862 0.3767383 0.3767383 -0.5025087 0.3767383 0.3767383 -0.5084753 0.3767383 0.3767383 -0.514124 0.3767383 0.3767383 -0.519487 0.3767383 0.3767383 -0.5245917 0.3767383 0.3767383 -0.529462 0.3767383 0.3767383 -0.5341183 0.3767383 0.3767383 -0.5385787 0.3767383 0.3767383 -0.5428591 0.3767383 0.3767383 -0.5469733 0.3767383 0.3767383 -0.5509339 0.3767383 0.3767383 -0.5547519 0.3767383 0.3767383 -0.5584371 0.3767383 0.3767383 -0.5619986 0.3767383 0.3767383 -0.5654443 0.3767383 0.3767383 -0.5687816 0.3767383 0.3767383 -0.092819 0.3951413 0.3767383 -0.2262531 0.3951413 0.3767383 -0.2875993 0.3951413 0.3767383 -0.3262122 0.3951413 0.3767383 -0.3544566 0.3951413 0.3767383 -0.3767383 0.3951413 0.3767383 -0.3951413 0.3951413 0.3767383 -0.4108177 0.3951413 0.3767383 -0.4244723 0.3951413 0.3767383 -0.4365675 0.3951413 0.3767383 -0.4474232 0.3951413 0.3767383 -0.45727 0.3951413 0.3767383 -0.4662797 0.3951413 0.3767383 -0.4745834 0.3951413 0.3767383 -0.4822838 0.3951413 0.3767383 -0.4894626 0.3951413 0.3767383 -0.4961862 0.3951413 0.3767383 -0.5025087 0.3951413 0.3767383 -0.5084753 0.3951413 0.3767383 -0.514124 0.3951413 0.3767383 -0.519487 0.3951413 0.3767383 -0.5245917 0.3951413 0.3767383 -0.529462 0.3951413 0.3767383 -0.5341183 0.3951413 0.3767383 -0.5385787 0.3951413 0.3767383 -0.5428591 0.3951413 0.3767383 -0.5469733 0.3951413 0.3767383 -0.5509339 0.3951413 0.3767383 -0.5547519 0.3951413 0.3767383 -0.5584371 0.3951413 0.3767383 -0.5619986 0.3951413 0.3767383 -0.5654443 0.3951413 0.3767383 -0.5687816 0.3951413 0.3767383 -0.092819 0.4108177 0.3767383 -0.2262531 0.4108177 0.3767383 -0.2875993 0.4108177 0.3767383 -0.3262122 0.4108177 0.3767383 -0.3544566 0.4108177 0.3767383 -0.3767383 0.4108177 0.3767383 -0.3951413 0.4108177 0.3767383 -0.4108177 0.4108177 0.3767383 -0.4244723 0.4108177 0.3767383 -0.4365675 0.4108177 0.3767383 -0.4474232 0.4108177 0.3767383 -0.45727 0.4108177 0.3767383 -0.4662797 0.4108177 0.3767383 -0.4745834 0.4108177 0.3767383 -0.4822838 0.4108177 0.3767383 -0.4894626 0.4108177 0.3767383 -0.4961862 0.4108177 0.3767383 -0.5025087 0.4108177 0.3767383 -0.5084753 0.4108177 0.3767383 -0.514124 0.4108177 0.3767383 -0.519487 0.4108177 0.3767383 -0.5245917 0.4108177 0.3767383 -0.529462 0.4108177 0.3767383 -0.5341183 0.4108177 0.3767383 -0.5385787 0.4108177 0.3767383 -0.5428591 0.4108177 0.3767383 -0.5469733 0.4108177 0.3767383 -0.5509339 0.4108177 0.3767383 -0.5547519 0.4108177 0.3767383 -0.5584371 0.4108177 0.3767383 -0.5619986 0.4108177 0.3767383 -0.5654443 0.4108177 0.3767383 -0.5687816 0.4108177 0.3767383 -0.092819 0.4244723 0.3767383 -0.2262531 0.4244723 0.3767383 -0.2875993 0.4244723 0.3767383 -0.3262122 0.4244723 0.3767383 -0.3544566 0.4244723 0.3767383 -0.3767383 0.4244723 0.3767383 -0.3951413 0.4244723 0.3767383 -0.4108177 0.4244723 0.3767383 -0.4244723 0.4244723 0.3767383 -0.4365675 0.4244723 0.3767383 -0.4474232 0.4244723 0.3767383 -0.45727 0.4244723 0.3767383 -0.4662797 0.4244723 0.3767383 -0.4745834 0.4244723 0.3767383 -0.4822838 0.4244723 0.3767383 -0.4894626 0.4244723 0.3767383 -0.4961862 0.4244723 0.3767383 -0.5025087 0.4244723 0.3767383 -0.5084753 0.4244723 0.3767383 -0.514124 0.4244723 0.3767383 -0.519487 0.4244723 0.3767383 -0.5245917 0.4244723 0.3767383 -0.529462 0.4244723 0.3767383 -0.5341183 0.4244723 0.3767383 -0.5385787 0.4244723 0.3767383 -0.5428591 0.4244723 0.3767383 -0.5469733 0.4244723 0.3767383 -0.5509339 0.4244723 0.3767383 -0.5547519 0.4244723 0.3767383 -0.5584371 0.4244723 0.3767383 -0.5619986 0.4244723 0.3767383 -0.5654443 0.4244723 0.3767383 -0.5687816 0.4244723 0.3767383 -0.092819 0.4365675 0.3767383 -0.2262531 0.4365675 0.3767383 -0.2875993 0.4365675 0.3767383 -0.3262122 0.4365675 0.3767383 -0.3544566 0.4365675 0.3767383 -0.3767383 0.4365675 0.3767383 -0.3951413 0.4365675 0.3767383 -0.4108177 0.4365675 0.3767383 -0.4244723 0.4365675 0.3767383 -0.4365675 0.4365675 0.3767383 -0.4474232 0.4365675 0.3767383 -0.45727 0.4365675 0.3767383 -0.4662797 0.4365675 0.3767383 -0.4745834 0.4365675 0.3767383 -0.4822838 0.4365675 0.3767383 -0.4894626 0.4365675 0.3767383 -0.4961862 0.4365675 0.3767383 -0.5025087 0.4365675 0.3767383 -0.5084753 0.4365675 0.3767383 -0.514124 0.4365675 0.3767383 -0.519487 0.4365675 0.3767383 -0.5245917 0.4365675 0.3767383 -0.529462 0.4365675 0.3767383 -0.5341183 0.4365675 0.3767383 -0.5385787 0.4365675 0.3767383 -0.5428591 0.4365675 0.3767383 -0.5469733 0.4365675 0.3767383 -0.5509339 0.4365675 0.3767383 -0.5547519 0.4365675 0.3767383 -0.5584371 0.4365675 0.3767383 -0.5619986 0.4365675 0.3767383 -0.5654443 0.4365675 0.3767383 -0.5687816 0.4365675 0.3767383 -0.092819 0.4474232 0.3767383 -0.2262531 0.4474232 0.3767383 -0.2875993 0.4474232 0.3767383 -0.3262122 0.4474232 0.3767383 -0.3544566 0.4474232 0.3767383 -0.3767383 0.4474232 0.3767383 -0.3951413 0.4474232 0.3767383 -0.4108177 0.4474232 0.3767383 -0.4244723 0.4474232 0.3767383 -0.4365675 0.4474232 0.3767383 -0.4474232 0.4474232 0.3767383 -0.45727 0.4474232 0.3767383 -0.4662797 0.4474232 0.3767383 -0.4745834 0.4474232 0.3767383 -0.4822838 0.4474232 0.3767383 -0.4894626 0.4474232 0.3767383 -0.4961862 0.4474232 0.3767383 -0.5025087 0.4474232 0.3767383 -0.5084753 0.4474232 0.3767383 -0.514124 0.4474232 0.3767383 -0.519487 0.4474232 0.3767383 -0.5245917 0.4474232 0.3767383 -0.529462 0.4474232 0.3767383 -0.5341183 0.4474232 0.3767383 -0.5385787 0.4474232 0.3767383 -0.5428591 0.4474232 0.3767383 -0.5469733 0.4474232 0.3767383 -0.5509339 0.4474232 0.3767383 -0.5547519 0.4474232 0.3767383 -0.5584371 0.4474232 0.3767383 -0.5619986 0.4474232 0.3767383 -0.5654443 0.4474232 0.3767383 -0.5687816 0.4474232 0.3767383 -0.092819 0.45727 0.3767383 -0.2262531 0.45727 0.3767383 -0.2875993 0.45727 0.3767383 -0.3262122 0.45727 0.3767383 -0.3544566 0.45727 0.3767383 -0.3767383 0.45727 0.3767383 -0.3951413 0.45727 0.3767383 -0.4108177 0.45727 0.3767383 -0.4244723 0.45727 0.3767383 -0.4365675 0.45727 0.3767383 -0.4474232 0.45727 0.3767383 -0.45727 0.45727 0.3767383 -0.4662797 0.45727 0.3767383 -0.4745834 0.45727 0.3767383 -0.4822838 0.45727 0.3767383 -0.4894626 0.45727 0.3767383 -0.4961862 0.45727 0.3767383 -0.5025087 0.45727 0.3767383 -0.5084753 0.45727 0.3767383 -0.514124 0.45727 0.3767383 -0.519487 0.45727 0.3767383 -0.5245917 0.45727 0.3767383 -0.529462 0.45727 0.3767383 -0.5341183 0.45727 0.3767383 -0.5385787 0.45727 0.3767383 -0.5428591 0.45727 0.3767383 -0.5469733 0.45727 0.3767383 -0.5509339 0.45727 0.3767383 -0.5547519 0.45727 0.3767383 -0.5584371 0.45727 0.3767383 -0.5619986 0.45727 0.3767383 -0.5654443 0.45727 0.3767383 -0.5687816 0.45727 0.3767383 -0.092819 0.4662797 0.3767383 -0.2262531 0.4662797 0.3767383 -0.2875993 0.4662797 0.3767383 -0.3262122 0.4662797 0.3767383 -0.3544566 0.4662797 0.3767383 -0.3767383 0.4662797 0.3767383 -0.3951413 0.4662797 0.3767383 -0.4108177 0.4662797 0.3767383 -0.4244723 0.4662797 0.3767383 -0.4365675 0.4662797 0.3767383 -0.4474232 0.4662797 0.3767383 -0.45727 0.4662797 0.3767383 -0.4662797 0.4662797 0.3767383 -0.4745834 0.4662797 0.3767383 -0.4822838 0.4662797 0.3767383 -0.4894626 0.4662797 0.3767383 -0.4961862 0.4662797 0.3767383 -0.5025087 0.4662797 0.3767383 -0.5084753 0.4662797 0.3767383 -0.514124 0.4662797 0.3767383 -0.519487 0.4662797 0.3767383 -0.5245917 0.4662797 0.3767383 -0.529462 0.4662797 0.3767383 -0.5341183 0.4662797 0.3767383 -0.5385787 0.4662797 0.3767383 -0.5428591 0.4662797 0.3767383 -0.5469733 0.4662797 0.3767383 -0.5509339 0.4662797 0.3767383 -0.5547519 0.4662797 0.3767383 -0.5584371 0.4662797 0.3767383 -0.5619986 0.4662797 0.3767383 -0.5654443 0.4662797 0.3767383 -0.5687816 0.4662797 0.3767383 -0.092819 0.4745834 0.3767383 -0.2262531 0.4745834 0.3767383 -0.2875993 0.4745834 0.3767383 -0.3262122 0.4745834 0.3767383 -0.3544566 0.4745834 0.3767383 -0.3767383 0.4745834 0.3767383 -0.3951413 0.4745834 0.3767383 -0.4108177 0.4745834 0.3767383 -0.4244723 0.4745834 0.3767383 -0.4365675 0.4745834 0.3767383 -0.4474232 0.4745834 0.3767383 -0.45727 0.4745834 0.3767383 -0.4662797 0.4745834 0.3767383 -0.4745834 0.4745834 0.3767383 -0.4822838 0.4745834 0.3767383 -0.4894626 0.4745834 0.3767383 -0.4961862 0.4745834 0.3767383 -0.5025087 0.4745834 0.3767383 -0.5084753 0.4745834 0.3767383 -0.514124 0.4745834 0.3767383 -0.519487 0.4745834 0.3767383 -0.5245917 0.4745834 0.3767383 -0.529462 0.4745834 0.3767383 -0.5341183 0.4745834 0.3767383 -0.5385787 0.4745834 0.3767383 -0.5428591 0.4745834 0.3767383 -0.5469733 0.4745834 0.3767383 -0.5509339 0.4745834 0.3767383 -0.5547519 0.4745834 0.3767383 -0.5584371 0.4745834 0.3767383 -0.5619986 0.4745834 0.3767383 -0.5654443 0.4745834 0.3767383 -0.5687816 0.4745834 0.3767383 -0.092819 0.4822838 0.3767383 -0.2262531 0.4822838 0.3767383 -0.2875993 0.4822838 0.3767383 -0.3262122 0.4822838 0.3767383 -0.3544566 0.4822838 0.3767383 -0.3767383 0.4822838 0.3767383 -0.3951413 0.4822838 0.3767383 -0.4108177 0.4822838 0.3767383 -0.4244723 0.4822838 0.3767383 -0.4365675 0.4822838 0.3767383 -0.4474232 0.4822838 0.3767383 -0.45727 0.4822838 0.3767383 -0.4662797 0.4822838 0.3767383 -0.4745834 0.4822838 0.3767383 -0.4822838 0.4822838 0.3767383 -0.4894626 0.4822838 0.3767383 -0.4961862 0.4822838 0.3767383 -0.5025087 0.4822838 0.3767383 -0.5084753 0.4822838 0.3767383 -0.514124 0.4822838 0.3767383 -0.519487 0.4822838 0.3767383 -0.5245917 0.4822838 0.3767383 -0.529462 0.4822838 0.3767383 -0.5341183 0.4822838 0.3767383 -0.5385787 0.4822838 0.3767383 -0.5428591 0.4822838 0.3767383 -0.5469733 0.4822838 0.3767383 -0.5509339 0.4822838 0.3767383 -0.5547519 0.4822838 0.3767383 -0.5584371 0.4822838 0.3767383 -0.5619986 0.4822838 0.3767383 -0.5654443 0.4822838 0.3767383 -0.5687816 0.4822838 0.3767383 -0.092819 0.4894626 0.3767383 -0.2262531 0.4894626 0.3767383 -0.2875993 0.4894626 0.3767383 -0.3262122 0.4894626 0.3767383 -0.3544566 0.4894626 0.3767383 -0.3767383 0.4894626 0.3767383 -0.3951413 0.4894626 0.3767383 -0.4108177 0.4894626 0.3767383 -0.4244723 0.4894626 0.3767383 -0.4365675 0.4894626 0.3767383 -0.4474232 0.4894626 0.3767383 -0.45727 0.4894626 0.3767383 -0.4662797 0.4894626 0.3767383 -0.4745834 0.4894626 0.3767383 -0.4822838 0.4894626 0.3767383 -0.4894626 0.4894626 0.3767383 -0.4961862 0.4894626 0.3767383 -0.5025087 0.4894626 0.3767383 -0.5084753 0.4894626 0.3767383 -0.514124 0.4894626 0.3767383 -0.519487 0.4894626 0.3767383 -0.5245917 0.4894626 0.3767383 -0.529462 0.4894626 0.3767383 -0.5341183 0.4894626 0.3767383 -0.5385787 0.4894626 0.3767383 -0.5428591 0.4894626 0.3767383 -0.5469733 0.4894626 0.3767383 -0.5509339 0.4894626 0.3767383 -0.5547519 0.4894626 0.3767383 -0.5584371 0.4894626 0.3767383 -0.5619986 0.4894626 0.3767383 -0.5654443 0.4894626 0.3767383 -0.5687816 0.4894626 0.3767383 -0.092819 0.4961862 0.3767383 -0.2262531 0.4961862 0.3767383 -0.2875993 0.4961862 0.3767383 -0.3262122 0.4961862 0.3767383 -0.3544566 0.4961862 0.3767383 -0.3767383 0.4961862 0.3767383 -0.3951413 0.4961862 0.3767383 -0.4108177 0.4961862 0.3767383 -0.4244723 0.4961862 0.3767383 -0.4365675 0.4961862 0.3767383 -0.4474232 0.4961862 0.3767383 -0.45727 0.4961862 0.3767383 -0.4662797 0.4961862 0.3767383 -0.4745834 0.4961862 0.3767383 -0.4822838 0.4961862 0.3767383 -0.4894626 0.4961862 0.3767383 -0.4961862 0.4961862 0.3767383 -0.5025087 0.4961862 0.3767383 -0.5084753 0.4961862 0.3767383 -0.514124 0.4961862 0.3767383 -0.519487 0.4961862 0.3767383 -0.5245917 0.4961862 0.3767383 -0.529462 0.4961862 0.3767383 -0.5341183 0.4961862 0.3767383 -0.5385787 0.4961862 0.3767383 -0.5428591 0.4961862 0.3767383 -0.5469733 0.4961862 0.3767383 -0.5509339 0.4961862 0.3767383 -0.5547519 0.4961862 0.3767383 -0.5584371 0.4961862 0.3767383 -0.5619986 0.4961862 0.3767383 -0.5654443 0.4961862 0.3767383 -0.5687816 0.4961862 0.3767383 -0.092819 0.5025087 0.3767383 -0.2262531 0.5025087 0.3767383 -0.2875993 0.5025087 0.3767383 -0.3262122 0.5025087 0.3767383 -0.3544566 0.5025087 0.3767383 -0.3767383 0.5025087 0.3767383 -0.3951413 0.5025087 0.3767383 -0.4108177 0.5025087 0.3767383 -0.4244723 0.5025087 0.3767383 -0.4365675 0.5025087 0.3767383 -0.4474232 0.5025087 0.3767383 -0.45727 0.5025087 0.3767383 -0.4662797 0.5025087 0.3767383 -0.4745834 0.5025087 0.3767383 -0.4822838 0.5025087 0.3767383 -0.4894626 0.5025087 0.3767383 -0.4961862 0.5025087 0.3767383 -0.5025087 0.5025087 0.3767383 -0.5084753 0.5025087 0.3767383 -0.514124 0.5025087 0.3767383 -0.519487 0.5025087 0.3767383 -0.5245917 0.5025087 0.3767383 -0.529462 0.5025087 0.3767383 -0.5341183 0.5025087 0.3767383 -0.5385787 0.5025087 0.3767383 -0.5428591 0.5025087 0.3767383 -0.5469733 0.5025087 0.3767383 -0.5509339 0.5025087 0.3767383 -0.5547519 0.5025087 0.3767383 -0.5584371 0.5025087 0.3767383 -0.5619986 0.5025087 0.3767383 -0.5654443 0.5025087 0.3767383 -0.5687816 0.5025087 0.3767383 -0.092819 0.5084753 0.3767383 -0.2262531 0.5084753 0.3767383 -0.2875993 0.5084753 0.3767383 -0.3262122 0.5084753 0.3767383 -0.3544566 0.5084753 0.3767383 -0.3767383 0.5084753 0.3767383 -0.3951413 0.5084753 0.3767383 -0.4108177 0.5084753 0.3767383 -0.4244723 0.5084753 0.3767383 -0.4365675 0.5084753 0.3767383 -0.4474232 0.5084753 0.3767383 -0.45727 0.5084753 0.3767383 -0.4662797 0.5084753 0.3767383 -0.4745834 0.5084753 0.3767383 -0.4822838 0.5084753 0.3767383 -0.4894626 0.5084753 0.3767383 -0.4961862 0.5084753 0.3767383 -0.5025087 0.5084753 0.3767383 -0.5084753 0.5084753 0.3767383 -0.514124 0.5084753 0.3767383 -0.519487 0.5084753 0.3767383 -0.5245917 0.5084753 0.3767383 -0.529462 0.5084753 0.3767383 -0.5341183 0.5084753 0.3767383 -0.5385787 0.5084753 0.3767383 -0.5428591 0.5084753 0.3767383 -0.5469733 0.5084753 0.3767383 -0.5509339 0.5084753 0.3767383 -0.5547519 0.5084753 0.3767383 -0.5584371 0.5084753 0.3767383 -0.5619986 0.5084753 0.3767383 -0.5654443 0.5084753 0.3767383 -0.5687816 0.5084753 0.3767383 -0.092819 0.514124 0.3767383 -0.2262531 0.514124 0.3767383 -0.2875993 0.514124 0.3767383 -0.3262122 0.514124 0.3767383 -0.3544566 0.514124 0.3767383 -0.3767383 0.514124 0.3767383 -0.3951413 0.514124 0.3767383 -0.4108177 0.514124 0.3767383 -0.4244723 0.514124 0.3767383 -0.4365675 0.514124 0.3767383 -0.4474232 0.514124 0.3767383 -0.45727 0.514124 0.3767383 -0.4662797 0.514124 0.3767383 -0.4745834 0.514124 0.3767383 -0.4822838 0.514124 0.3767383 -0.4894626 0.514124 0.3767383 -0.4961862 0.514124 0.3767383 -0.5025087 0.514124 0.3767383 -0.5084753 0.514124 0.3767383 -0.514124 0.514124 0.3767383 -0.519487 0.514124 0.3767383 -0.5245917 0.514124 0.3767383 -0.529462 0.514124 0.3767383 -0.5341183 0.514124 0.3767383 -0.5385787 0.514124 0.3767383 -0.5428591 0.514124 0.3767383 -0.5469733 0.514124 0.3767383 -0.5509339 0.514124 0.3767383 -0.5547519 0.514124 0.3767383 -0.5584371 0.514124 0.3767383 -0.5619986 0.514124 0.3767383 -0.5654443 0.514124 0.3767383 -0.5687816 0.514124 0.3767383 -0.092819 0.519487 0.3767383 -0.2262531 0.519487 0.3767383 -0.2875993 0.519487 0.3767383 -0.3262122 0.519487 0.3767383 -0.3544566 0.519487 0.3767383 -0.3767383 0.519487 0.3767383 -0.3951413 0.519487 0.3767383 -0.4108177 0.519487 0.3767383 -0.4244723 0.519487 0.3767383 -0.4365675 0.519487 0.3767383 -0.4474232 0.519487 0.3767383 -0.45727 0.519487 0.3767383 -0.4662797 0.519487 0.3767383 -0.4745834 0.519487 0.3767383 -0.4822838 0.519487 0.3767383 -0.4894626 0.519487 0.3767383 -0.4961862 0.519487 0.3767383 -0.5025087 0.519487 0.3767383 -0.5084753 0.519487 0.3767383 -0.514124 0.519487 0.3767383 -0.519487 0.519487 0.3767383 -0.5245917 0.519487 0.3767383 -0.529462 0.519487 0.3767383 -0.5341183 0.519487 0.3767383 -0.5385787 0.519487 0.3767383 -0.5428591 0.519487 0.3767383 -0.5469733 0.519487 0.3767383 -0.5509339 0.519487 0.3767383 -0.5547519 0.519487 0.3767383 -0.5584371 0.519487 0.3767383 -0.5619986 0.519487 0.3767383 -0.5654443 0.519487 0.3767383 -0.5687816 0.519487 0.3767383 -0.092819 0.5245917 0.3767383 -0.2262531 0.5245917 0.3767383 -0.2875993 0.5245917 0.3767383 -0.3262122 0.5245917 0.3767383 -0.3544566 0.5245917 0.3767383 -0.3767383 0.5245917 0.3767383 -0.3951413 0.5245917 0.3767383 -0.4108177 0.5245917 0.3767383 -0.4244723 0.5245917 0.3767383 -0.4365675 0.5245917 0.3767383 -0.4474232 0.5245917 0.3767383 -0.45727 0.5245917 0.3767383 -0.4662797 0.5245917 0.3767383 -0.4745834 0.5245917 0.3767383 -0.4822838 0.5245917 0.3767383 -0.4894626 0.5245917 0.3767383 -0.4961862 0.5245917 0.3767383 -0.5025087 0.5245917 0.3767383 -0.5084753 0.5245917 0.3767383 -0.514124 0.5245917 0.3767383 -0.519487 0.5245917 0.3767383 -0.5245917 0.5245917 0.3767383 -0.529462 0.5245917 0.3767383 -0.5341183 0.5245917 0.3767383 -0.5385787 0.5245917 0.3767383 -0.5428591 0.5245917 0.3767383 -0.5469733 0.5245917 0.3767383 -0.5509339 0.5245917 0.3767383 -0.5547519 0.5245917 0.3767383 -0.5584371 0.5245917 0.3767383 -0.5619986 0.5245917 0.3767383 -0.5654443 0.5245917 0.3767383 -0.5687816 0.5245917 0.3767383 -0.092819 0.529462 0.3767383 -0.2262531 0.529462 0.3767383 -0.2875993 0.529462 0.3767383 -0.3262122 0.529462 0.3767383 -0.3544566 0.529462 0.3767383 -0.3767383 0.529462 0.3767383 -0.3951413 0.529462 0.3767383 -0.4108177 0.529462 0.3767383 -0.4244723 0.529462 0.3767383 -0.4365675 0.529462 0.3767383 -0.4474232 0.529462 0.3767383 -0.45727 0.529462 0.3767383 -0.4662797 0.529462 0.3767383 -0.4745834 0.529462 0.3767383 -0.4822838 0.529462 0.3767383 -0.4894626 0.529462 0.3767383 -0.4961862 0.529462 0.3767383 -0.5025087 0.529462 0.3767383 -0.5084753 0.529462 0.3767383 -0.514124 0.529462 0.3767383 -0.519487 0.529462 0.3767383 -0.5245917 0.529462 0.3767383 -0.529462 0.529462 0.3767383 -0.5341183 0.529462 0.3767383 -0.5385787 0.529462 0.3767383 -0.5428591 0.529462 0.3767383 -0.5469733 0.529462 0.3767383 -0.5509339 0.529462 0.3767383 -0.5547519 0.529462 0.3767383 -0.5584371 0.529462 0.3767383 -0.5619986 0.529462 0.3767383 -0.5654443 0.529462 0.3767383 -0.5687816 0.529462 0.3767383 -0.092819 0.5341183 0.3767383 -0.2262531 0.5341183 0.3767383 -0.2875993 0.5341183 0.3767383 -0.3262122 0.5341183 0.3767383 -0.3544566 0.5341183 0.3767383 -0.3767383 0.5341183 0.3767383 -0.3951413 0.5341183 0.3767383 -0.4108177 0.5341183 0.3767383 -0.4244723 0.5341183 0.3767383 -0.4365675 0.5341183 0.3767383 -0.4474232 0.5341183 0.3767383 -0.45727 0.5341183 0.3767383 -0.4662797 0.5341183 0.3767383 -0.4745834 0.5341183 0.3767383 -0.4822838 0.5341183 0.3767383 -0.4894626 0.5341183 0.3767383 -0.4961862 0.5341183 0.3767383 -0.5025087 0.5341183 0.3767383 -0.5084753 0.5341183 0.3767383 -0.514124 0.5341183 0.3767383 -0.519487 0.5341183 0.3767383 -0.5245917 0.5341183 0.3767383 -0.529462 0.5341183 0.3767383 -0.5341183 0.5341183 0.3767383 -0.5385787 0.5341183 0.3767383 -0.5428591 0.5341183 0.3767383 -0.5469733 0.5341183 0.3767383 -0.5509339 0.5341183 0.3767383 -0.5547519 0.5341183 0.3767383 -0.5584371 0.5341183 0.3767383 -0.5619986 0.5341183 0.3767383 -0.5654443 0.5341183 0.3767383 -0.5687816 0.5341183 0.3767383 -0.092819 0.5385787 0.3767383 -0.2262531 0.5385787 0.3767383 -0.2875993 0.5385787 0.3767383 -0.3262122 0.5385787 0.3767383 -0.3544566 0.5385787 0.3767383 -0.3767383 0.5385787 0.3767383 -0.3951413 0.5385787 0.3767383 -0.4108177 0.5385787 0.3767383 -0.4244723 0.5385787 0.3767383 -0.4365675 0.5385787 0.3767383 -0.4474232 0.5385787 0.3767383 -0.45727 0.5385787 0.3767383 -0.4662797 0.5385787 0.3767383 -0.4745834 0.5385787 0.3767383 -0.4822838 0.5385787 0.3767383 -0.4894626 0.5385787 0.3767383 -0.4961862 0.5385787 0.3767383 -0.5025087 0.5385787 0.3767383 -0.5084753 0.5385787 0.3767383 -0.514124 0.5385787 0.3767383 -0.519487 0.5385787 0.3767383 -0.5245917 0.5385787 0.3767383 -0.529462 0.5385787 0.3767383 -0.5341183 0.5385787 0.3767383 -0.5385787 0.5385787 0.3767383 -0.5428591 0.5385787 0.3767383 -0.5469733 0.5385787 0.3767383 -0.5509339 0.5385787 0.3767383 -0.5547519 0.5385787 0.3767383 -0.5584371 0.5385787 0.3767383 -0.5619986 0.5385787 0.3767383 -0.5654443 0.5385787 0.3767383 -0.5687816 0.5385787 0.3767383 -0.092819 0.5428591 0.3767383 -0.2262531 0.5428591 0.3767383 -0.2875993 0.5428591 0.3767383 -0.3262122 0.5428591 0.3767383 -0.3544566 0.5428591 0.3767383 -0.3767383 0.5428591 0.3767383 -0.3951413 0.5428591 0.3767383 -0.4108177 0.5428591 0.3767383 -0.4244723 0.5428591 0.3767383 -0.4365675 0.5428591 0.3767383 -0.4474232 0.5428591 0.3767383 -0.45727 0.5428591 0.3767383 -0.4662797 0.5428591 0.3767383 -0.4745834 0.5428591 0.3767383 -0.4822838 0.5428591 0.3767383 -0.4894626 0.5428591 0.3767383 -0.4961862 0.5428591 0.3767383 -0.5025087 0.5428591 0.3767383 -0.5084753 0.5428591 0.3767383 -0.514124 0.5428591 0.3767383 -0.519487 0.5428591 0.3767383 -0.5245917 0.5428591 0.3767383 -0.529462 0.5428591 0.3767383 -0.5341183 0.5428591 0.3767383 -0.5385787 0.5428591 0.3767383 -0.5428591 0.5428591 0.3767383 -0.5469733 0.5428591 0.3767383 -0.5509339 0.5428591 0.3767383 -0.5547519 0.5428591 0.3767383 -0.5584371 0.5428591 0.3767383 -0.5619986 0.5428591 0.3767383 -0.5654443 0.5428591 0.3767383 -0.5687816 0.5428591 0.3767383 -0.092819 0.5469733 0.3767383 -0.2262531 0.5469733 0.3767383 -0.2875993 0.5469733 0.3767383 -0.3262122 0.5469733 0.3767383 -0.3544566 0.5469733 0.3767383 -0.3767383 0.5469733 0.3767383 -0.3951413 0.5469733 0.3767383 -0.4108177 0.5469733 0.3767383 -0.4244723 0.5469733 0.3767383 -0.4365675 0.5469733 0.3767383 -0.4474232 0.5469733 0.3767383 -0.45727 0.5469733 0.3767383 -0.4662797 0.5469733 0.3767383 -0.4745834 0.5469733 0.3767383 -0.4822838 0.5469733 0.3767383 -0.4894626 0.5469733 0.3767383 -0.4961862 0.5469733 0.3767383 -0.5025087 0.5469733 0.3767383 -0.5084753 0.5469733 0.3767383 -0.514124 0.5469733 0.3767383 -0.519487 0.5469733 0.3767383 -0.5245917 0.5469733 0.3767383 -0.529462 0.5469733 0.3767383 -0.5341183 0.5469733 0.3767383 -0.5385787 0.5469733 0.3767383 -0.5428591 0.5469733 0.3767383 -0.5469733 0.5469733 0.3767383 -0.5509339 0.5469733 0.3767383 -0.5547519 0.5469733 0.3767383 -0.5584371 0.5469733 0.3767383 -0.5619986 0.5469733 0.3767383 -0.5654443 0.5469733 0.3767383 -0.5687816 0.5469733 0.3767383 -0.092819 0.5509339 0.3767383 -0.2262531 0.5509339 0.3767383 -0.2875993 0.5509339 0.3767383 -0.3262122 0.5509339 0.3767383 -0.3544566 0.5509339 0.3767383 -0.3767383 0.5509339 0.3767383 -0.3951413 0.5509339 0.3767383 -0.4108177 0.5509339 0.3767383 -0.4244723 0.5509339 0.3767383 -0.4365675 0.5509339 0.3767383 -0.4474232 0.5509339 0.3767383 -0.45727 0.5509339 0.3767383 -0.4662797 0.5509339 0.3767383 -0.4745834 0.5509339 0.3767383 -0.4822838 0.5509339 0.3767383 -0.4894626 0.5509339 0.3767383 -0.4961862 0.5509339 0.3767383 -0.5025087 0.5509339 0.3767383 -0.5084753 0.5509339 0.3767383 -0.514124 0.5509339 0.3767383 -0.519487 0.5509339 0.3767383 -0.5245917 0.5509339 0.3767383 -0.529462 0.5509339 0.3767383 -0.5341183 0.5509339 0.3767383 -0.5385787 0.5509339 0.3767383 -0.5428591 0.5509339 0.3767383 -0.5469733 0.5509339 0.3767383 -0.5509339 0.5509339 0.3767383 -0.5547519 0.5509339 0.3767383 -0.5584371 0.5509339 0.3767383 -0.5619986 0.5509339 0.3767383 -0.5654443 0.5509339 0.3767383 -0.5687816 0.5509339 0.3767383 -0.092819 0.5547519 0.3767383 -0.2262531 0.5547519 0.3767383 -0.2875993 0.5547519 0.3767383 -0.3262122 0.5547519 0.3767383 -0.3544566 0.5547519 0.3767383 -0.3767383 0.5547519 0.3767383 -0.3951413 0.5547519 0.3767383 -0.4108177 0.5547519 0.3767383 -0.4244723 0.5547519 0.3767383 -0.4365675 0.5547519 0.3767383 -0.4474232 0.5547519 0.3767383 -0.45727 0.5547519 0.3767383 -0.4662797 0.5547519 0.3767383 -0.4745834 0.5547519 0.3767383 -0.4822838 0.5547519 0.3767383 -0.4894626 0.5547519 0.3767383 -0.4961862 0.5547519 0.3767383 -0.5025087 0.5547519 0.3767383 -0.5084753 0.5547519 0.3767383 -0.514124 0.5547519 0.3767383 -0.519487 0.5547519 0.3767383 -0.5245917 0.5547519 0.3767383 -0.529462 0.5547519 0.3767383 -0.5341183 0.5547519 0.3767383 -0.5385787 0.5547519 0.3767383 -0.5428591 0.5547519 0.3767383 -0.5469733 0.5547519 0.3767383 -0.5509339 0.5547519 0.3767383 -0.5547519 0.5547519 0.3767383 -0.5584371 0.5547519 0.3767383 -0.5619986 0.5547519 0.3767383 -0.5654443 0.5547519 0.3767383 -0.5687816 0.5547519 0.3767383 -0.092819 0.5584371 0.3767383 -0.2262531 0.5584371 0.3767383 -0.2875993 0.5584371 0.3767383 -0.3262122 0.5584371 0.3767383 -0.3544566 0.5584371 0.3767383 -0.3767383 0.5584371 0.3767383 -0.3951413 0.5584371 0.3767383 -0.4108177 0.5584371 0.3767383 -0.4244723 0.5584371 0.3767383 -0.4365675 0.5584371 0.3767383 -0.4474232 0.5584371 0.3767383 -0.45727 0.5584371 0.3767383 -0.4662797 0.5584371 0.3767383 -0.4745834 0.5584371 0.3767383 -0.4822838 0.5584371 0.3767383 -0.4894626 0.5584371 0.3767383 -0.4961862 0.5584371 0.3767383 -0.5025087 0.5584371 0.3767383 -0.5084753 0.5584371 0.3767383 -0.514124 0.5584371 0.3767383 -0.519487 0.5584371 0.3767383 -0.5245917 0.5584371 0.3767383 -0.529462 0.5584371 0.3767383 -0.5341183 0.5584371 0.3767383 -0.5385787 0.5584371 0.3767383 -0.5428591 0.5584371 0.3767383 -0.5469733 0.5584371 0.3767383 -0.5509339 0.5584371 0.3767383 -0.5547519 0.5584371 0.3767383 -0.5584371 0.5584371 0.3767383 -0.5619986 0.5584371 0.3767383 -0.5654443 0.5584371 0.3767383 -0.5687816 0.5584371 0.3767383 -0.092819 0.5619986 0.3767383 -0.2262531 0.5619986 0.3767383 -0.2875993 0.5619986 0.3767383 -0.3262122 0.5619986 0.3767383 -0.3544566 0.5619986 0.3767383 -0.3767383 0.5619986 0.3767383 -0.3951413 0.5619986 0.3767383 -0.4108177 0.5619986 0.3767383 -0.4244723 0.5619986 0.3767383 -0.4365675 0.5619986 0.3767383 -0.4474232 0.5619986 0.3767383 -0.45727 0.5619986 0.3767383 -0.4662797 0.5619986 0.3767383 -0.4745834 0.5619986 0.3767383 -0.4822838 0.5619986 0.3767383 -0.4894626 0.5619986 0.3767383 -0.4961862 0.5619986 0.3767383 -0.5025087 0.5619986 0.3767383 -0.5084753 0.5619986 0.3767383 -0.514124 0.5619986 0.3767383 -0.519487 0.5619986 0.3767383 -0.5245917 0.5619986 0.3767383 -0.529462 0.5619986 0.3767383 -0.5341183 0.5619986 0.3767383 -0.5385787 0.5619986 0.3767383 -0.5428591 0.5619986 0.3767383 -0.5469733 0.5619986 0.3767383 -0.5509339 0.5619986 0.3767383 -0.5547519 0.5619986 0.3767383 -0.5584371 0.5619986 0.3767383 -0.5619986 0.5619986 0.3767383 -0.5654443 0.5619986 0.3767383 -0.5687816 0.5619986 0.3767383 -0.092819 0.5654443 0.3767383 -0.2262531 0.5654443 0.3767383 -0.2875993 0.5654443 0.3767383 -0.3262122 0.5654443 0.3767383 -0.3544566 0.5654443 0.3767383 -0.3767383 0.5654443 0.3767383 -0.3951413 0.5654443 0.3767383 -0.4108177 0.5654443 0.3767383 -0.4244723 0.5654443 0.3767383 -0.4365675 0.5654443 0.3767383 -0.4474232 0.5654443 0.3767383 -0.45727 0.5654443 0.3767383 -0.4662797 0.5654443 0.3767383 -0.4745834 0.5654443 0.3767383 -0.4822838 0.5654443 0.3767383 -0.4894626 0.5654443 0.3767383 -0.4961862 0.5654443 0.3767383 -0.5025087 0.5654443 0.3767383 -0.5084753 0.5654443 0.3767383 -0.514124 0.5654443 0.3767383 -0.519487 0.5654443 0.3767383 -0.5245917 0.5654443 0.3767383 -0.529462 0.5654443 0.3767383 -0.5341183 0.5654443 0.3767383 -0.5385787 0.5654443 0.3767383 -0.5428591 0.5654443 0.3767383 -0.5469733 0.5654443 0.3767383 -0.5509339 0.5654443 0.3767383 -0.5547519 0.5654443 0.3767383 -0.5584371 0.5654443 0.3767383 -0.5619986 0.5654443 0.3767383 -0.5654443 0.5654443 0.3767383 -0.5687816 0.5654443 0.3767383 -0.092819 0.5687816 0.3767383 -0.2262531 0.5687816 0.3767383 -0.2875993 0.5687816 0.3767383 -0.3262122 0.5687816 0.3767383 -0.3544566 0.5687816 0.3767383 -0.3767383 0.5687816 0.3767383 -0.3951413 0.5687816 0.3767383 -0.4108177 0.5687816 0.3767383 -0.4244723 0.5687816 0.3767383 -0.4365675 0.5687816 0.3767383 -0.4474232 0.5687816 0.3767383 -0.45727 0.5687816 0.3767383 -0.4662797 0.5687816 0.3767383 -0.4745834 0.5687816 0.3767383 -0.4822838 0.5687816 0.3767383 -0.4894626 0.5687816 0.3767383 -0.4961862 0.5687816 0.3767383 -0.5025087 0.5687816 0.3767383 -0.5084753 0.5687816 0.3767383 -0.514124 0.5687816 0.3767383 -0.519487 0.5687816 0.3767383 -0.5245917 0.5687816 0.3767383 -0.529462 0.5687816 0.3767383 -0.5341183 0.5687816 0.3767383 -0.5385787 0.5687816 0.3767383 -0.5428591 0.5687816 0.3767383 -0.5469733 0.5687816 0.3767383 -0.5509339 0.5687816 0.3767383 -0.5547519 0.5687816 0.3767383 -0.5584371 0.5687816 0.3767383 -0.5619986 0.5687816 0.3767383 -0.5654443 0.5687816 0.3767383 -0.5687816 0.5687816 0.3767383 -0.092819 0.092819 0.3951413 -0.2262531 0.092819 0.3951413 -0.2875993 0.092819 0.3951413 -0.3262122 0.092819 0.3951413 -0.3544566 0.092819 0.3951413 -0.3767383 0.092819 0.3951413 -0.3951413 0.092819 0.3951413 -0.4108177 0.092819 0.3951413 -0.4244723 0.092819 0.3951413 -0.4365675 0.092819 0.3951413 -0.4474232 0.092819 0.3951413 -0.45727 0.092819 0.3951413 -0.4662797 0.092819 0.3951413 -0.4745834 0.092819 0.3951413 -0.4822838 0.092819 0.3951413 -0.4894626 0.092819 0.3951413 -0.4961862 0.092819 0.3951413 -0.5025087 0.092819 0.3951413 -0.5084753 0.092819 0.3951413 -0.514124 0.092819 0.3951413 -0.519487 0.092819 0.3951413 -0.5245917 0.092819 0.3951413 -0.529462 0.092819 0.3951413 -0.5341183 0.092819 0.3951413 -0.5385787 0.092819 0.3951413 -0.5428591 0.092819 0.3951413 -0.5469733 0.092819 0.3951413 -0.5509339 0.092819 0.3951413 -0.5547519 0.092819 0.3951413 -0.5584371 0.092819 0.3951413 -0.5619986 0.092819 0.3951413 -0.5654443 0.092819 0.3951413 -0.5687816 0.092819 0.3951413 -0.092819 0.2262531 0.3951413 -0.2262531 0.2262531 0.3951413 -0.2875993 0.2262531 0.3951413 -0.3262122 0.2262531 0.3951413 -0.3544566 0.2262531 0.3951413 -0.3767383 0.2262531 0.3951413 -0.3951413 0.2262531 0.3951413 -0.4108177 0.2262531 0.3951413 -0.4244723 0.2262531 0.3951413 -0.4365675 0.2262531 0.3951413 -0.4474232 0.2262531 0.3951413 -0.45727 0.2262531 0.3951413 -0.4662797 0.2262531 0.3951413 -0.4745834 0.2262531 0.3951413 -0.4822838 0.2262531 0.3951413 -0.4894626 0.2262531 0.3951413 -0.4961862 0.2262531 0.3951413 -0.5025087 0.2262531 0.3951413 -0.5084753 0.2262531 0.3951413 -0.514124 0.2262531 0.3951413 -0.519487 0.2262531 0.3951413 -0.5245917 0.2262531 0.3951413 -0.529462 0.2262531 0.3951413 -0.5341183 0.2262531 0.3951413 -0.5385787 0.2262531 0.3951413 -0.5428591 0.2262531 0.3951413 -0.5469733 0.2262531 0.3951413 -0.5509339 0.2262531 0.3951413 -0.5547519 0.2262531 0.3951413 -0.5584371 0.2262531 0.3951413 -0.5619986 0.2262531 0.3951413 -0.5654443 0.2262531 0.3951413 -0.5687816 0.2262531 0.3951413 -0.092819 0.2875993 0.3951413 -0.2262531 0.2875993 0.3951413 -0.2875993 0.2875993 0.3951413 -0.3262122 0.2875993 0.3951413 -0.3544566 0.2875993 0.3951413 -0.3767383 0.2875993 0.3951413 -0.3951413 0.2875993 0.3951413 -0.4108177 0.2875993 0.3951413 -0.4244723 0.2875993 0.3951413 -0.4365675 0.2875993 0.3951413 -0.4474232 0.2875993 0.3951413 -0.45727 0.2875993 0.3951413 -0.4662797 0.2875993 0.3951413 -0.4745834 0.2875993 0.3951413 -0.4822838 0.2875993 0.3951413 -0.4894626 0.2875993 0.3951413 -0.4961862 0.2875993 0.3951413 -0.5025087 0.2875993 0.3951413 -0.5084753 0.2875993 0.3951413 -0.514124 0.2875993 0.3951413 -0.519487 0.2875993 0.3951413 -0.5245917 0.2875993 0.3951413 -0.529462 0.2875993 0.3951413 -0.5341183 0.2875993 0.3951413 -0.5385787 0.2875993 0.3951413 -0.5428591 0.2875993 0.3951413 -0.5469733 0.2875993 0.3951413 -0.5509339 0.2875993 0.3951413 -0.5547519 0.2875993 0.3951413 -0.5584371 0.2875993 0.3951413 -0.5619986 0.2875993 0.3951413 -0.5654443 0.2875993 0.3951413 -0.5687816 0.2875993 0.3951413 -0.092819 0.3262122 0.3951413 -0.2262531 0.3262122 0.3951413 -0.2875993 0.3262122 0.3951413 -0.3262122 0.3262122 0.3951413 -0.3544566 0.3262122 0.3951413 -0.3767383 0.3262122 0.3951413 -0.3951413 0.3262122 0.3951413 -0.4108177 0.3262122 0.3951413 -0.4244723 0.3262122 0.3951413 -0.4365675 0.3262122 0.3951413 -0.4474232 0.3262122 0.3951413 -0.45727 0.3262122 0.3951413 -0.4662797 0.3262122 0.3951413 -0.4745834 0.3262122 0.3951413 -0.4822838 0.3262122 0.3951413 -0.4894626 0.3262122 0.3951413 -0.4961862 0.3262122 0.3951413 -0.5025087 0.3262122 0.3951413 -0.5084753 0.3262122 0.3951413 -0.514124 0.3262122 0.3951413 -0.519487 0.3262122 0.3951413 -0.5245917 0.3262122 0.3951413 -0.529462 0.3262122 0.3951413 -0.5341183 0.3262122 0.3951413 -0.5385787 0.3262122 0.3951413 -0.5428591 0.3262122 0.3951413 -0.5469733 0.3262122 0.3951413 -0.5509339 0.3262122 0.3951413 -0.5547519 0.3262122 0.3951413 -0.5584371 0.3262122 0.3951413 -0.5619986 0.3262122 0.3951413 -0.5654443 0.3262122 0.3951413 -0.5687816 0.3262122 0.3951413 -0.092819 0.3544566 0.3951413 -0.2262531 0.3544566 0.3951413 -0.2875993 0.3544566 0.3951413 -0.3262122 0.3544566 0.3951413 -0.3544566 0.3544566 0.3951413 -0.3767383 0.3544566 0.3951413 -0.3951413 0.3544566 0.3951413 -0.4108177 0.3544566 0.3951413 -0.4244723 0.3544566 0.3951413 -0.4365675 0.3544566 0.3951413 -0.4474232 0.3544566 0.3951413 -0.45727 0.3544566 0.3951413 -0.4662797 0.3544566 0.3951413 -0.4745834 0.3544566 0.3951413 -0.4822838 0.3544566 0.3951413 -0.4894626 0.3544566 0.3951413 -0.4961862 0.3544566 0.3951413 -0.5025087 0.3544566 0.3951413 -0.5084753 0.3544566 0.3951413 -0.514124 0.3544566 0.3951413 -0.519487 0.3544566 0.3951413 -0.5245917 0.3544566 0.3951413 -0.529462 0.3544566 0.3951413 -0.5341183 0.3544566 0.3951413 -0.5385787 0.3544566 0.3951413 -0.5428591 0.3544566 0.3951413 -0.5469733 0.3544566 0.3951413 -0.5509339 0.3544566 0.3951413 -0.5547519 0.3544566 0.3951413 -0.5584371 0.3544566 0.3951413 -0.5619986 0.3544566 0.3951413 -0.5654443 0.3544566 0.3951413 -0.5687816 0.3544566 0.3951413 -0.092819 0.3767383 0.3951413 -0.2262531 0.3767383 0.3951413 -0.2875993 0.3767383 0.3951413 -0.3262122 0.3767383 0.3951413 -0.3544566 0.3767383 0.3951413 -0.3767383 0.3767383 0.3951413 -0.3951413 0.3767383 0.3951413 -0.4108177 0.3767383 0.3951413 -0.4244723 0.3767383 0.3951413 -0.4365675 0.3767383 0.3951413 -0.4474232 0.3767383 0.3951413 -0.45727 0.3767383 0.3951413 -0.4662797 0.3767383 0.3951413 -0.4745834 0.3767383 0.3951413 -0.4822838 0.3767383 0.3951413 -0.4894626 0.3767383 0.3951413 -0.4961862 0.3767383 0.3951413 -0.5025087 0.3767383 0.3951413 -0.5084753 0.3767383 0.3951413 -0.514124 0.3767383 0.3951413 -0.519487 0.3767383 0.3951413 -0.5245917 0.3767383 0.3951413 -0.529462 0.3767383 0.3951413 -0.5341183 0.3767383 0.3951413 -0.5385787 0.3767383 0.3951413 -0.5428591 0.3767383 0.3951413 -0.5469733 0.3767383 0.3951413 -0.5509339 0.3767383 0.3951413 -0.5547519 0.3767383 0.3951413 -0.5584371 0.3767383 0.3951413 -0.5619986 0.3767383 0.3951413 -0.5654443 0.3767383 0.3951413 -0.5687816 0.3767383 0.3951413 -0.092819 0.3951413 0.3951413 -0.2262531 0.3951413 0.3951413 -0.2875993 0.3951413 0.3951413 -0.3262122 0.3951413 0.3951413 -0.3544566 0.3951413 0.3951413 -0.3767383 0.3951413 0.3951413 -0.3951413 0.3951413 0.3951413 -0.4108177 0.3951413 0.3951413 -0.4244723 0.3951413 0.3951413 -0.4365675 0.3951413 0.3951413 -0.4474232 0.3951413 0.3951413 -0.45727 0.3951413 0.3951413 -0.4662797 0.3951413 0.3951413 -0.4745834 0.3951413 0.3951413 -0.4822838 0.3951413 0.3951413 -0.4894626 0.3951413 0.3951413 -0.4961862 0.3951413 0.3951413 -0.5025087 0.3951413 0.3951413 -0.5084753 0.3951413 0.3951413 -0.514124 0.3951413 0.3951413 -0.519487 0.3951413 0.3951413 -0.5245917 0.3951413 0.3951413 -0.529462 0.3951413 0.3951413 -0.5341183 0.3951413 0.3951413 -0.5385787 0.3951413 0.3951413 -0.5428591 0.3951413 0.3951413 -0.5469733 0.3951413 0.3951413 -0.5509339 0.3951413 0.3951413 -0.5547519 0.3951413 0.3951413 -0.5584371 0.3951413 0.3951413 -0.5619986 0.3951413 0.3951413 -0.5654443 0.3951413 0.3951413 -0.5687816 0.3951413 0.3951413 -0.092819 0.4108177 0.3951413 -0.2262531 0.4108177 0.3951413 -0.2875993 0.4108177 0.3951413 -0.3262122 0.4108177 0.3951413 -0.3544566 0.4108177 0.3951413 -0.3767383 0.4108177 0.3951413 -0.3951413 0.4108177 0.3951413 -0.4108177 0.4108177 0.3951413 -0.4244723 0.4108177 0.3951413 -0.4365675 0.4108177 0.3951413 -0.4474232 0.4108177 0.3951413 -0.45727 0.4108177 0.3951413 -0.4662797 0.4108177 0.3951413 -0.4745834 0.4108177 0.3951413 -0.4822838 0.4108177 0.3951413 -0.4894626 0.4108177 0.3951413 -0.4961862 0.4108177 0.3951413 -0.5025087 0.4108177 0.3951413 -0.5084753 0.4108177 0.3951413 -0.514124 0.4108177 0.3951413 -0.519487 0.4108177 0.3951413 -0.5245917 0.4108177 0.3951413 -0.529462 0.4108177 0.3951413 -0.5341183 0.4108177 0.3951413 -0.5385787 0.4108177 0.3951413 -0.5428591 0.4108177 0.3951413 -0.5469733 0.4108177 0.3951413 -0.5509339 0.4108177 0.3951413 -0.5547519 0.4108177 0.3951413 -0.5584371 0.4108177 0.3951413 -0.5619986 0.4108177 0.3951413 -0.5654443 0.4108177 0.3951413 -0.5687816 0.4108177 0.3951413 -0.092819 0.4244723 0.3951413 -0.2262531 0.4244723 0.3951413 -0.2875993 0.4244723 0.3951413 -0.3262122 0.4244723 0.3951413 -0.3544566 0.4244723 0.3951413 -0.3767383 0.4244723 0.3951413 -0.3951413 0.4244723 0.3951413 -0.4108177 0.4244723 0.3951413 -0.4244723 0.4244723 0.3951413 -0.4365675 0.4244723 0.3951413 -0.4474232 0.4244723 0.3951413 -0.45727 0.4244723 0.3951413 -0.4662797 0.4244723 0.3951413 -0.4745834 0.4244723 0.3951413 -0.4822838 0.4244723 0.3951413 -0.4894626 0.4244723 0.3951413 -0.4961862 0.4244723 0.3951413 -0.5025087 0.4244723 0.3951413 -0.5084753 0.4244723 0.3951413 -0.514124 0.4244723 0.3951413 -0.519487 0.4244723 0.3951413 -0.5245917 0.4244723 0.3951413 -0.529462 0.4244723 0.3951413 -0.5341183 0.4244723 0.3951413 -0.5385787 0.4244723 0.3951413 -0.5428591 0.4244723 0.3951413 -0.5469733 0.4244723 0.3951413 -0.5509339 0.4244723 0.3951413 -0.5547519 0.4244723 0.3951413 -0.5584371 0.4244723 0.3951413 -0.5619986 0.4244723 0.3951413 -0.5654443 0.4244723 0.3951413 -0.5687816 0.4244723 0.3951413 -0.092819 0.4365675 0.3951413 -0.2262531 0.4365675 0.3951413 -0.2875993 0.4365675 0.3951413 -0.3262122 0.4365675 0.3951413 -0.3544566 0.4365675 0.3951413 -0.3767383 0.4365675 0.3951413 -0.3951413 0.4365675 0.3951413 -0.4108177 0.4365675 0.3951413 -0.4244723 0.4365675 0.3951413 -0.4365675 0.4365675 0.3951413 -0.4474232 0.4365675 0.3951413 -0.45727 0.4365675 0.3951413 -0.4662797 0.4365675 0.3951413 -0.4745834 0.4365675 0.3951413 -0.4822838 0.4365675 0.3951413 -0.4894626 0.4365675 0.3951413 -0.4961862 0.4365675 0.3951413 -0.5025087 0.4365675 0.3951413 -0.5084753 0.4365675 0.3951413 -0.514124 0.4365675 0.3951413 -0.519487 0.4365675 0.3951413 -0.5245917 0.4365675 0.3951413 -0.529462 0.4365675 0.3951413 -0.5341183 0.4365675 0.3951413 -0.5385787 0.4365675 0.3951413 -0.5428591 0.4365675 0.3951413 -0.5469733 0.4365675 0.3951413 -0.5509339 0.4365675 0.3951413 -0.5547519 0.4365675 0.3951413 -0.5584371 0.4365675 0.3951413 -0.5619986 0.4365675 0.3951413 -0.5654443 0.4365675 0.3951413 -0.5687816 0.4365675 0.3951413 -0.092819 0.4474232 0.3951413 -0.2262531 0.4474232 0.3951413 -0.2875993 0.4474232 0.3951413 -0.3262122 0.4474232 0.3951413 -0.3544566 0.4474232 0.3951413 -0.3767383 0.4474232 0.3951413 -0.3951413 0.4474232 0.3951413 -0.4108177 0.4474232 0.3951413 -0.4244723 0.4474232 0.3951413 -0.4365675 0.4474232 0.3951413 -0.4474232 0.4474232 0.3951413 -0.45727 0.4474232 0.3951413 -0.4662797 0.4474232 0.3951413 -0.4745834 0.4474232 0.3951413 -0.4822838 0.4474232 0.3951413 -0.4894626 0.4474232 0.3951413 -0.4961862 0.4474232 0.3951413 -0.5025087 0.4474232 0.3951413 -0.5084753 0.4474232 0.3951413 -0.514124 0.4474232 0.3951413 -0.519487 0.4474232 0.3951413 -0.5245917 0.4474232 0.3951413 -0.529462 0.4474232 0.3951413 -0.5341183 0.4474232 0.3951413 -0.5385787 0.4474232 0.3951413 -0.5428591 0.4474232 0.3951413 -0.5469733 0.4474232 0.3951413 -0.5509339 0.4474232 0.3951413 -0.5547519 0.4474232 0.3951413 -0.5584371 0.4474232 0.3951413 -0.5619986 0.4474232 0.3951413 -0.5654443 0.4474232 0.3951413 -0.5687816 0.4474232 0.3951413 -0.092819 0.45727 0.3951413 -0.2262531 0.45727 0.3951413 -0.2875993 0.45727 0.3951413 -0.3262122 0.45727 0.3951413 -0.3544566 0.45727 0.3951413 -0.3767383 0.45727 0.3951413 -0.3951413 0.45727 0.3951413 -0.4108177 0.45727 0.3951413 -0.4244723 0.45727 0.3951413 -0.4365675 0.45727 0.3951413 -0.4474232 0.45727 0.3951413 -0.45727 0.45727 0.3951413 -0.4662797 0.45727 0.3951413 -0.4745834 0.45727 0.3951413 -0.4822838 0.45727 0.3951413 -0.4894626 0.45727 0.3951413 -0.4961862 0.45727 0.3951413 -0.5025087 0.45727 0.3951413 -0.5084753 0.45727 0.3951413 -0.514124 0.45727 0.3951413 -0.519487 0.45727 0.3951413 -0.5245917 0.45727 0.3951413 -0.529462 0.45727 0.3951413 -0.5341183 0.45727 0.3951413 -0.5385787 0.45727 0.3951413 -0.5428591 0.45727 0.3951413 -0.5469733 0.45727 0.3951413 -0.5509339 0.45727 0.3951413 -0.5547519 0.45727 0.3951413 -0.5584371 0.45727 0.3951413 -0.5619986 0.45727 0.3951413 -0.5654443 0.45727 0.3951413 -0.5687816 0.45727 0.3951413 -0.092819 0.4662797 0.3951413 -0.2262531 0.4662797 0.3951413 -0.2875993 0.4662797 0.3951413 -0.3262122 0.4662797 0.3951413 -0.3544566 0.4662797 0.3951413 -0.3767383 0.4662797 0.3951413 -0.3951413 0.4662797 0.3951413 -0.4108177 0.4662797 0.3951413 -0.4244723 0.4662797 0.3951413 -0.4365675 0.4662797 0.3951413 -0.4474232 0.4662797 0.3951413 -0.45727 0.4662797 0.3951413 -0.4662797 0.4662797 0.3951413 -0.4745834 0.4662797 0.3951413 -0.4822838 0.4662797 0.3951413 -0.4894626 0.4662797 0.3951413 -0.4961862 0.4662797 0.3951413 -0.5025087 0.4662797 0.3951413 -0.5084753 0.4662797 0.3951413 -0.514124 0.4662797 0.3951413 -0.519487 0.4662797 0.3951413 -0.5245917 0.4662797 0.3951413 -0.529462 0.4662797 0.3951413 -0.5341183 0.4662797 0.3951413 -0.5385787 0.4662797 0.3951413 -0.5428591 0.4662797 0.3951413 -0.5469733 0.4662797 0.3951413 -0.5509339 0.4662797 0.3951413 -0.5547519 0.4662797 0.3951413 -0.5584371 0.4662797 0.3951413 -0.5619986 0.4662797 0.3951413 -0.5654443 0.4662797 0.3951413 -0.5687816 0.4662797 0.3951413 -0.092819 0.4745834 0.3951413 -0.2262531 0.4745834 0.3951413 -0.2875993 0.4745834 0.3951413 -0.3262122 0.4745834 0.3951413 -0.3544566 0.4745834 0.3951413 -0.3767383 0.4745834 0.3951413 -0.3951413 0.4745834 0.3951413 -0.4108177 0.4745834 0.3951413 -0.4244723 0.4745834 0.3951413 -0.4365675 0.4745834 0.3951413 -0.4474232 0.4745834 0.3951413 -0.45727 0.4745834 0.3951413 -0.4662797 0.4745834 0.3951413 -0.4745834 0.4745834 0.3951413 -0.4822838 0.4745834 0.3951413 -0.4894626 0.4745834 0.3951413 -0.4961862 0.4745834 0.3951413 -0.5025087 0.4745834 0.3951413 -0.5084753 0.4745834 0.3951413 -0.514124 0.4745834 0.3951413 -0.519487 0.4745834 0.3951413 -0.5245917 0.4745834 0.3951413 -0.529462 0.4745834 0.3951413 -0.5341183 0.4745834 0.3951413 -0.5385787 0.4745834 0.3951413 -0.5428591 0.4745834 0.3951413 -0.5469733 0.4745834 0.3951413 -0.5509339 0.4745834 0.3951413 -0.5547519 0.4745834 0.3951413 -0.5584371 0.4745834 0.3951413 -0.5619986 0.4745834 0.3951413 -0.5654443 0.4745834 0.3951413 -0.5687816 0.4745834 0.3951413 -0.092819 0.4822838 0.3951413 -0.2262531 0.4822838 0.3951413 -0.2875993 0.4822838 0.3951413 -0.3262122 0.4822838 0.3951413 -0.3544566 0.4822838 0.3951413 -0.3767383 0.4822838 0.3951413 -0.3951413 0.4822838 0.3951413 -0.4108177 0.4822838 0.3951413 -0.4244723 0.4822838 0.3951413 -0.4365675 0.4822838 0.3951413 -0.4474232 0.4822838 0.3951413 -0.45727 0.4822838 0.3951413 -0.4662797 0.4822838 0.3951413 -0.4745834 0.4822838 0.3951413 -0.4822838 0.4822838 0.3951413 -0.4894626 0.4822838 0.3951413 -0.4961862 0.4822838 0.3951413 -0.5025087 0.4822838 0.3951413 -0.5084753 0.4822838 0.3951413 -0.514124 0.4822838 0.3951413 -0.519487 0.4822838 0.3951413 -0.5245917 0.4822838 0.3951413 -0.529462 0.4822838 0.3951413 -0.5341183 0.4822838 0.3951413 -0.5385787 0.4822838 0.3951413 -0.5428591 0.4822838 0.3951413 -0.5469733 0.4822838 0.3951413 -0.5509339 0.4822838 0.3951413 -0.5547519 0.4822838 0.3951413 -0.5584371 0.4822838 0.3951413 -0.5619986 0.4822838 0.3951413 -0.5654443 0.4822838 0.3951413 -0.5687816 0.4822838 0.3951413 -0.092819 0.4894626 0.3951413 -0.2262531 0.4894626 0.3951413 -0.2875993 0.4894626 0.3951413 -0.3262122 0.4894626 0.3951413 -0.3544566 0.4894626 0.3951413 -0.3767383 0.4894626 0.3951413 -0.3951413 0.4894626 0.3951413 -0.4108177 0.4894626 0.3951413 -0.4244723 0.4894626 0.3951413 -0.4365675 0.4894626 0.3951413 -0.4474232 0.4894626 0.3951413 -0.45727 0.4894626 0.3951413 -0.4662797 0.4894626 0.3951413 -0.4745834 0.4894626 0.3951413 -0.4822838 0.4894626 0.3951413 -0.4894626 0.4894626 0.3951413 -0.4961862 0.4894626 0.3951413 -0.5025087 0.4894626 0.3951413 -0.5084753 0.4894626 0.3951413 -0.514124 0.4894626 0.3951413 -0.519487 0.4894626 0.3951413 -0.5245917 0.4894626 0.3951413 -0.529462 0.4894626 0.3951413 -0.5341183 0.4894626 0.3951413 -0.5385787 0.4894626 0.3951413 -0.5428591 0.4894626 0.3951413 -0.5469733 0.4894626 0.3951413 -0.5509339 0.4894626 0.3951413 -0.5547519 0.4894626 0.3951413 -0.5584371 0.4894626 0.3951413 -0.5619986 0.4894626 0.3951413 -0.5654443 0.4894626 0.3951413 -0.5687816 0.4894626 0.3951413 -0.092819 0.4961862 0.3951413 -0.2262531 0.4961862 0.3951413 -0.2875993 0.4961862 0.3951413 -0.3262122 0.4961862 0.3951413 -0.3544566 0.4961862 0.3951413 -0.3767383 0.4961862 0.3951413 -0.3951413 0.4961862 0.3951413 -0.4108177 0.4961862 0.3951413 -0.4244723 0.4961862 0.3951413 -0.4365675 0.4961862 0.3951413 -0.4474232 0.4961862 0.3951413 -0.45727 0.4961862 0.3951413 -0.4662797 0.4961862 0.3951413 -0.4745834 0.4961862 0.3951413 -0.4822838 0.4961862 0.3951413 -0.4894626 0.4961862 0.3951413 -0.4961862 0.4961862 0.3951413 -0.5025087 0.4961862 0.3951413 -0.5084753 0.4961862 0.3951413 -0.514124 0.4961862 0.3951413 -0.519487 0.4961862 0.3951413 -0.5245917 0.4961862 0.3951413 -0.529462 0.4961862 0.3951413 -0.5341183 0.4961862 0.3951413 -0.5385787 0.4961862 0.3951413 -0.5428591 0.4961862 0.3951413 -0.5469733 0.4961862 0.3951413 -0.5509339 0.4961862 0.3951413 -0.5547519 0.4961862 0.3951413 -0.5584371 0.4961862 0.3951413 -0.5619986 0.4961862 0.3951413 -0.5654443 0.4961862 0.3951413 -0.5687816 0.4961862 0.3951413 -0.092819 0.5025087 0.3951413 -0.2262531 0.5025087 0.3951413 -0.2875993 0.5025087 0.3951413 -0.3262122 0.5025087 0.3951413 -0.3544566 0.5025087 0.3951413 -0.3767383 0.5025087 0.3951413 -0.3951413 0.5025087 0.3951413 -0.4108177 0.5025087 0.3951413 -0.4244723 0.5025087 0.3951413 -0.4365675 0.5025087 0.3951413 -0.4474232 0.5025087 0.3951413 -0.45727 0.5025087 0.3951413 -0.4662797 0.5025087 0.3951413 -0.4745834 0.5025087 0.3951413 -0.4822838 0.5025087 0.3951413 -0.4894626 0.5025087 0.3951413 -0.4961862 0.5025087 0.3951413 -0.5025087 0.5025087 0.3951413 -0.5084753 0.5025087 0.3951413 -0.514124 0.5025087 0.3951413 -0.519487 0.5025087 0.3951413 -0.5245917 0.5025087 0.3951413 -0.529462 0.5025087 0.3951413 -0.5341183 0.5025087 0.3951413 -0.5385787 0.5025087 0.3951413 -0.5428591 0.5025087 0.3951413 -0.5469733 0.5025087 0.3951413 -0.5509339 0.5025087 0.3951413 -0.5547519 0.5025087 0.3951413 -0.5584371 0.5025087 0.3951413 -0.5619986 0.5025087 0.3951413 -0.5654443 0.5025087 0.3951413 -0.5687816 0.5025087 0.3951413 -0.092819 0.5084753 0.3951413 -0.2262531 0.5084753 0.3951413 -0.2875993 0.5084753 0.3951413 -0.3262122 0.5084753 0.3951413 -0.3544566 0.5084753 0.3951413 -0.3767383 0.5084753 0.3951413 -0.3951413 0.5084753 0.3951413 -0.4108177 0.5084753 0.3951413 -0.4244723 0.5084753 0.3951413 -0.4365675 0.5084753 0.3951413 -0.4474232 0.5084753 0.3951413 -0.45727 0.5084753 0.3951413 -0.4662797 0.5084753 0.3951413 -0.4745834 0.5084753 0.3951413 -0.4822838 0.5084753 0.3951413 -0.4894626 0.5084753 0.3951413 -0.4961862 0.5084753 0.3951413 -0.5025087 0.5084753 0.3951413 -0.5084753 0.5084753 0.3951413 -0.514124 0.5084753 0.3951413 -0.519487 0.5084753 0.3951413 -0.5245917 0.5084753 0.3951413 -0.529462 0.5084753 0.3951413 -0.5341183 0.5084753 0.3951413 -0.5385787 0.5084753 0.3951413 -0.5428591 0.5084753 0.3951413 -0.5469733 0.5084753 0.3951413 -0.5509339 0.5084753 0.3951413 -0.5547519 0.5084753 0.3951413 -0.5584371 0.5084753 0.3951413 -0.5619986 0.5084753 0.3951413 -0.5654443 0.5084753 0.3951413 -0.5687816 0.5084753 0.3951413 -0.092819 0.514124 0.3951413 -0.2262531 0.514124 0.3951413 -0.2875993 0.514124 0.3951413 -0.3262122 0.514124 0.3951413 -0.3544566 0.514124 0.3951413 -0.3767383 0.514124 0.3951413 -0.3951413 0.514124 0.3951413 -0.4108177 0.514124 0.3951413 -0.4244723 0.514124 0.3951413 -0.4365675 0.514124 0.3951413 -0.4474232 0.514124 0.3951413 -0.45727 0.514124 0.3951413 -0.4662797 0.514124 0.3951413 -0.4745834 0.514124 0.3951413 -0.4822838 0.514124 0.3951413 -0.4894626 0.514124 0.3951413 -0.4961862 0.514124 0.3951413 -0.5025087 0.514124 0.3951413 -0.5084753 0.514124 0.3951413 -0.514124 0.514124 0.3951413 -0.519487 0.514124 0.3951413 -0.5245917 0.514124 0.3951413 -0.529462 0.514124 0.3951413 -0.5341183 0.514124 0.3951413 -0.5385787 0.514124 0.3951413 -0.5428591 0.514124 0.3951413 -0.5469733 0.514124 0.3951413 -0.5509339 0.514124 0.3951413 -0.5547519 0.514124 0.3951413 -0.5584371 0.514124 0.3951413 -0.5619986 0.514124 0.3951413 -0.5654443 0.514124 0.3951413 -0.5687816 0.514124 0.3951413 -0.092819 0.519487 0.3951413 -0.2262531 0.519487 0.3951413 -0.2875993 0.519487 0.3951413 -0.3262122 0.519487 0.3951413 -0.3544566 0.519487 0.3951413 -0.3767383 0.519487 0.3951413 -0.3951413 0.519487 0.3951413 -0.4108177 0.519487 0.3951413 -0.4244723 0.519487 0.3951413 -0.4365675 0.519487 0.3951413 -0.4474232 0.519487 0.3951413 -0.45727 0.519487 0.3951413 -0.4662797 0.519487 0.3951413 -0.4745834 0.519487 0.3951413 -0.4822838 0.519487 0.3951413 -0.4894626 0.519487 0.3951413 -0.4961862 0.519487 0.3951413 -0.5025087 0.519487 0.3951413 -0.5084753 0.519487 0.3951413 -0.514124 0.519487 0.3951413 -0.519487 0.519487 0.3951413 -0.5245917 0.519487 0.3951413 -0.529462 0.519487 0.3951413 -0.5341183 0.519487 0.3951413 -0.5385787 0.519487 0.3951413 -0.5428591 0.519487 0.3951413 -0.5469733 0.519487 0.3951413 -0.5509339 0.519487 0.3951413 -0.5547519 0.519487 0.3951413 -0.5584371 0.519487 0.3951413 -0.5619986 0.519487 0.3951413 -0.5654443 0.519487 0.3951413 -0.5687816 0.519487 0.3951413 -0.092819 0.5245917 0.3951413 -0.2262531 0.5245917 0.3951413 -0.2875993 0.5245917 0.3951413 -0.3262122 0.5245917 0.3951413 -0.3544566 0.5245917 0.3951413 -0.3767383 0.5245917 0.3951413 -0.3951413 0.5245917 0.3951413 -0.4108177 0.5245917 0.3951413 -0.4244723 0.5245917 0.3951413 -0.4365675 0.5245917 0.3951413 -0.4474232 0.5245917 0.3951413 -0.45727 0.5245917 0.3951413 -0.4662797 0.5245917 0.3951413 -0.4745834 0.5245917 0.3951413 -0.4822838 0.5245917 0.3951413 -0.4894626 0.5245917 0.3951413 -0.4961862 0.5245917 0.3951413 -0.5025087 0.5245917 0.3951413 -0.5084753 0.5245917 0.3951413 -0.514124 0.5245917 0.3951413 -0.519487 0.5245917 0.3951413 -0.5245917 0.5245917 0.3951413 -0.529462 0.5245917 0.3951413 -0.5341183 0.5245917 0.3951413 -0.5385787 0.5245917 0.3951413 -0.5428591 0.5245917 0.3951413 -0.5469733 0.5245917 0.3951413 -0.5509339 0.5245917 0.3951413 -0.5547519 0.5245917 0.3951413 -0.5584371 0.5245917 0.3951413 -0.5619986 0.5245917 0.3951413 -0.5654443 0.5245917 0.3951413 -0.5687816 0.5245917 0.3951413 -0.092819 0.529462 0.3951413 -0.2262531 0.529462 0.3951413 -0.2875993 0.529462 0.3951413 -0.3262122 0.529462 0.3951413 -0.3544566 0.529462 0.3951413 -0.3767383 0.529462 0.3951413 -0.3951413 0.529462 0.3951413 -0.4108177 0.529462 0.3951413 -0.4244723 0.529462 0.3951413 -0.4365675 0.529462 0.3951413 -0.4474232 0.529462 0.3951413 -0.45727 0.529462 0.3951413 -0.4662797 0.529462 0.3951413 -0.4745834 0.529462 0.3951413 -0.4822838 0.529462 0.3951413 -0.4894626 0.529462 0.3951413 -0.4961862 0.529462 0.3951413 -0.5025087 0.529462 0.3951413 -0.5084753 0.529462 0.3951413 -0.514124 0.529462 0.3951413 -0.519487 0.529462 0.3951413 -0.5245917 0.529462 0.3951413 -0.529462 0.529462 0.3951413 -0.5341183 0.529462 0.3951413 -0.5385787 0.529462 0.3951413 -0.5428591 0.529462 0.3951413 -0.5469733 0.529462 0.3951413 -0.5509339 0.529462 0.3951413 -0.5547519 0.529462 0.3951413 -0.5584371 0.529462 0.3951413 -0.5619986 0.529462 0.3951413 -0.5654443 0.529462 0.3951413 -0.5687816 0.529462 0.3951413 -0.092819 0.5341183 0.3951413 -0.2262531 0.5341183 0.3951413 -0.2875993 0.5341183 0.3951413 -0.3262122 0.5341183 0.3951413 -0.3544566 0.5341183 0.3951413 -0.3767383 0.5341183 0.3951413 -0.3951413 0.5341183 0.3951413 -0.4108177 0.5341183 0.3951413 -0.4244723 0.5341183 0.3951413 -0.4365675 0.5341183 0.3951413 -0.4474232 0.5341183 0.3951413 -0.45727 0.5341183 0.3951413 -0.4662797 0.5341183 0.3951413 -0.4745834 0.5341183 0.3951413 -0.4822838 0.5341183 0.3951413 -0.4894626 0.5341183 0.3951413 -0.4961862 0.5341183 0.3951413 -0.5025087 0.5341183 0.3951413 -0.5084753 0.5341183 0.3951413 -0.514124 0.5341183 0.3951413 -0.519487 0.5341183 0.3951413 -0.5245917 0.5341183 0.3951413 -0.529462 0.5341183 0.3951413 -0.5341183 0.5341183 0.3951413 -0.5385787 0.5341183 0.3951413 -0.5428591 0.5341183 0.3951413 -0.5469733 0.5341183 0.3951413 -0.5509339 0.5341183 0.3951413 -0.5547519 0.5341183 0.3951413 -0.5584371 0.5341183 0.3951413 -0.5619986 0.5341183 0.3951413 -0.5654443 0.5341183 0.3951413 -0.5687816 0.5341183 0.3951413 -0.092819 0.5385787 0.3951413 -0.2262531 0.5385787 0.3951413 -0.2875993 0.5385787 0.3951413 -0.3262122 0.5385787 0.3951413 -0.3544566 0.5385787 0.3951413 -0.3767383 0.5385787 0.3951413 -0.3951413 0.5385787 0.3951413 -0.4108177 0.5385787 0.3951413 -0.4244723 0.5385787 0.3951413 -0.4365675 0.5385787 0.3951413 -0.4474232 0.5385787 0.3951413 -0.45727 0.5385787 0.3951413 -0.4662797 0.5385787 0.3951413 -0.4745834 0.5385787 0.3951413 -0.4822838 0.5385787 0.3951413 -0.4894626 0.5385787 0.3951413 -0.4961862 0.5385787 0.3951413 -0.5025087 0.5385787 0.3951413 -0.5084753 0.5385787 0.3951413 -0.514124 0.5385787 0.3951413 -0.519487 0.5385787 0.3951413 -0.5245917 0.5385787 0.3951413 -0.529462 0.5385787 0.3951413 -0.5341183 0.5385787 0.3951413 -0.5385787 0.5385787 0.3951413 -0.5428591 0.5385787 0.3951413 -0.5469733 0.5385787 0.3951413 -0.5509339 0.5385787 0.3951413 -0.5547519 0.5385787 0.3951413 -0.5584371 0.5385787 0.3951413 -0.5619986 0.5385787 0.3951413 -0.5654443 0.5385787 0.3951413 -0.5687816 0.5385787 0.3951413 -0.092819 0.5428591 0.3951413 -0.2262531 0.5428591 0.3951413 -0.2875993 0.5428591 0.3951413 -0.3262122 0.5428591 0.3951413 -0.3544566 0.5428591 0.3951413 -0.3767383 0.5428591 0.3951413 -0.3951413 0.5428591 0.3951413 -0.4108177 0.5428591 0.3951413 -0.4244723 0.5428591 0.3951413 -0.4365675 0.5428591 0.3951413 -0.4474232 0.5428591 0.3951413 -0.45727 0.5428591 0.3951413 -0.4662797 0.5428591 0.3951413 -0.4745834 0.5428591 0.3951413 -0.4822838 0.5428591 0.3951413 -0.4894626 0.5428591 0.3951413 -0.4961862 0.5428591 0.3951413 -0.5025087 0.5428591 0.3951413 -0.5084753 0.5428591 0.3951413 -0.514124 0.5428591 0.3951413 -0.519487 0.5428591 0.3951413 -0.5245917 0.5428591 0.3951413 -0.529462 0.5428591 0.3951413 -0.5341183 0.5428591 0.3951413 -0.5385787 0.5428591 0.3951413 -0.5428591 0.5428591 0.3951413 -0.5469733 0.5428591 0.3951413 -0.5509339 0.5428591 0.3951413 -0.5547519 0.5428591 0.3951413 -0.5584371 0.5428591 0.3951413 -0.5619986 0.5428591 0.3951413 -0.5654443 0.5428591 0.3951413 -0.5687816 0.5428591 0.3951413 -0.092819 0.5469733 0.3951413 -0.2262531 0.5469733 0.3951413 -0.2875993 0.5469733 0.3951413 -0.3262122 0.5469733 0.3951413 -0.3544566 0.5469733 0.3951413 -0.3767383 0.5469733 0.3951413 -0.3951413 0.5469733 0.3951413 -0.4108177 0.5469733 0.3951413 -0.4244723 0.5469733 0.3951413 -0.4365675 0.5469733 0.3951413 -0.4474232 0.5469733 0.3951413 -0.45727 0.5469733 0.3951413 -0.4662797 0.5469733 0.3951413 -0.4745834 0.5469733 0.3951413 -0.4822838 0.5469733 0.3951413 -0.4894626 0.5469733 0.3951413 -0.4961862 0.5469733 0.3951413 -0.5025087 0.5469733 0.3951413 -0.5084753 0.5469733 0.3951413 -0.514124 0.5469733 0.3951413 -0.519487 0.5469733 0.3951413 -0.5245917 0.5469733 0.3951413 -0.529462 0.5469733 0.3951413 -0.5341183 0.5469733 0.3951413 -0.5385787 0.5469733 0.3951413 -0.5428591 0.5469733 0.3951413 -0.5469733 0.5469733 0.3951413 -0.5509339 0.5469733 0.3951413 -0.5547519 0.5469733 0.3951413 -0.5584371 0.5469733 0.3951413 -0.5619986 0.5469733 0.3951413 -0.5654443 0.5469733 0.3951413 -0.5687816 0.5469733 0.3951413 -0.092819 0.5509339 0.3951413 -0.2262531 0.5509339 0.3951413 -0.2875993 0.5509339 0.3951413 -0.3262122 0.5509339 0.3951413 -0.3544566 0.5509339 0.3951413 -0.3767383 0.5509339 0.3951413 -0.3951413 0.5509339 0.3951413 -0.4108177 0.5509339 0.3951413 -0.4244723 0.5509339 0.3951413 -0.4365675 0.5509339 0.3951413 -0.4474232 0.5509339 0.3951413 -0.45727 0.5509339 0.3951413 -0.4662797 0.5509339 0.3951413 -0.4745834 0.5509339 0.3951413 -0.4822838 0.5509339 0.3951413 -0.4894626 0.5509339 0.3951413 -0.4961862 0.5509339 0.3951413 -0.5025087 0.5509339 0.3951413 -0.5084753 0.5509339 0.3951413 -0.514124 0.5509339 0.3951413 -0.519487 0.5509339 0.3951413 -0.5245917 0.5509339 0.3951413 -0.529462 0.5509339 0.3951413 -0.5341183 0.5509339 0.3951413 -0.5385787 0.5509339 0.3951413 -0.5428591 0.5509339 0.3951413 -0.5469733 0.5509339 0.3951413 -0.5509339 0.5509339 0.3951413 -0.5547519 0.5509339 0.3951413 -0.5584371 0.5509339 0.3951413 -0.5619986 0.5509339 0.3951413 -0.5654443 0.5509339 0.3951413 -0.5687816 0.5509339 0.3951413 -0.092819 0.5547519 0.3951413 -0.2262531 0.5547519 0.3951413 -0.2875993 0.5547519 0.3951413 -0.3262122 0.5547519 0.3951413 -0.3544566 0.5547519 0.3951413 -0.3767383 0.5547519 0.3951413 -0.3951413 0.5547519 0.3951413 -0.4108177 0.5547519 0.3951413 -0.4244723 0.5547519 0.3951413 -0.4365675 0.5547519 0.3951413 -0.4474232 0.5547519 0.3951413 -0.45727 0.5547519 0.3951413 -0.4662797 0.5547519 0.3951413 -0.4745834 0.5547519 0.3951413 -0.4822838 0.5547519 0.3951413 -0.4894626 0.5547519 0.3951413 -0.4961862 0.5547519 0.3951413 -0.5025087 0.5547519 0.3951413 -0.5084753 0.5547519 0.3951413 -0.514124 0.5547519 0.3951413 -0.519487 0.5547519 0.3951413 -0.5245917 0.5547519 0.3951413 -0.529462 0.5547519 0.3951413 -0.5341183 0.5547519 0.3951413 -0.5385787 0.5547519 0.3951413 -0.5428591 0.5547519 0.3951413 -0.5469733 0.5547519 0.3951413 -0.5509339 0.5547519 0.3951413 -0.5547519 0.5547519 0.3951413 -0.5584371 0.5547519 0.3951413 -0.5619986 0.5547519 0.3951413 -0.5654443 0.5547519 0.3951413 -0.5687816 0.5547519 0.3951413 -0.092819 0.5584371 0.3951413 -0.2262531 0.5584371 0.3951413 -0.2875993 0.5584371 0.3951413 -0.3262122 0.5584371 0.3951413 -0.3544566 0.5584371 0.3951413 -0.3767383 0.5584371 0.3951413 -0.3951413 0.5584371 0.3951413 -0.4108177 0.5584371 0.3951413 -0.4244723 0.5584371 0.3951413 -0.4365675 0.5584371 0.3951413 -0.4474232 0.5584371 0.3951413 -0.45727 0.5584371 0.3951413 -0.4662797 0.5584371 0.3951413 -0.4745834 0.5584371 0.3951413 -0.4822838 0.5584371 0.3951413 -0.4894626 0.5584371 0.3951413 -0.4961862 0.5584371 0.3951413 -0.5025087 0.5584371 0.3951413 -0.5084753 0.5584371 0.3951413 -0.514124 0.5584371 0.3951413 -0.519487 0.5584371 0.3951413 -0.5245917 0.5584371 0.3951413 -0.529462 0.5584371 0.3951413 -0.5341183 0.5584371 0.3951413 -0.5385787 0.5584371 0.3951413 -0.5428591 0.5584371 0.3951413 -0.5469733 0.5584371 0.3951413 -0.5509339 0.5584371 0.3951413 -0.5547519 0.5584371 0.3951413 -0.5584371 0.5584371 0.3951413 -0.5619986 0.5584371 0.3951413 -0.5654443 0.5584371 0.3951413 -0.5687816 0.5584371 0.3951413 -0.092819 0.5619986 0.3951413 -0.2262531 0.5619986 0.3951413 -0.2875993 0.5619986 0.3951413 -0.3262122 0.5619986 0.3951413 -0.3544566 0.5619986 0.3951413 -0.3767383 0.5619986 0.3951413 -0.3951413 0.5619986 0.3951413 -0.4108177 0.5619986 0.3951413 -0.4244723 0.5619986 0.3951413 -0.4365675 0.5619986 0.3951413 -0.4474232 0.5619986 0.3951413 -0.45727 0.5619986 0.3951413 -0.4662797 0.5619986 0.3951413 -0.4745834 0.5619986 0.3951413 -0.4822838 0.5619986 0.3951413 -0.4894626 0.5619986 0.3951413 -0.4961862 0.5619986 0.3951413 -0.5025087 0.5619986 0.3951413 -0.5084753 0.5619986 0.3951413 -0.514124 0.5619986 0.3951413 -0.519487 0.5619986 0.3951413 -0.5245917 0.5619986 0.3951413 -0.529462 0.5619986 0.3951413 -0.5341183 0.5619986 0.3951413 -0.5385787 0.5619986 0.3951413 -0.5428591 0.5619986 0.3951413 -0.5469733 0.5619986 0.3951413 -0.5509339 0.5619986 0.3951413 -0.5547519 0.5619986 0.3951413 -0.5584371 0.5619986 0.3951413 -0.5619986 0.5619986 0.3951413 -0.5654443 0.5619986 0.3951413 -0.5687816 0.5619986 0.3951413 -0.092819 0.5654443 0.3951413 -0.2262531 0.5654443 0.3951413 -0.2875993 0.5654443 0.3951413 -0.3262122 0.5654443 0.3951413 -0.3544566 0.5654443 0.3951413 -0.3767383 0.5654443 0.3951413 -0.3951413 0.5654443 0.3951413 -0.4108177 0.5654443 0.3951413 -0.4244723 0.5654443 0.3951413 -0.4365675 0.5654443 0.3951413 -0.4474232 0.5654443 0.3951413 -0.45727 0.5654443 0.3951413 -0.4662797 0.5654443 0.3951413 -0.4745834 0.5654443 0.3951413 -0.4822838 0.5654443 0.3951413 -0.4894626 0.5654443 0.3951413 -0.4961862 0.5654443 0.3951413 -0.5025087 0.5654443 0.3951413 -0.5084753 0.5654443 0.3951413 -0.514124 0.5654443 0.3951413 -0.519487 0.5654443 0.3951413 -0.5245917 0.5654443 0.3951413 -0.529462 0.5654443 0.3951413 -0.5341183 0.5654443 0.3951413 -0.5385787 0.5654443 0.3951413 -0.5428591 0.5654443 0.3951413 -0.5469733 0.5654443 0.3951413 -0.5509339 0.5654443 0.3951413 -0.5547519 0.5654443 0.3951413 -0.5584371 0.5654443 0.3951413 -0.5619986 0.5654443 0.3951413 -0.5654443 0.5654443 0.3951413 -0.5687816 0.5654443 0.3951413 -0.092819 0.5687816 0.3951413 -0.2262531 0.5687816 0.3951413 -0.2875993 0.5687816 0.3951413 -0.3262122 0.5687816 0.3951413 -0.3544566 0.5687816 0.3951413 -0.3767383 0.5687816 0.3951413 -0.3951413 0.5687816 0.3951413 -0.4108177 0.5687816 0.3951413 -0.4244723 0.5687816 0.3951413 -0.4365675 0.5687816 0.3951413 -0.4474232 0.5687816 0.3951413 -0.45727 0.5687816 0.3951413 -0.4662797 0.5687816 0.3951413 -0.4745834 0.5687816 0.3951413 -0.4822838 0.5687816 0.3951413 -0.4894626 0.5687816 0.3951413 -0.4961862 0.5687816 0.3951413 -0.5025087 0.5687816 0.3951413 -0.5084753 0.5687816 0.3951413 -0.514124 0.5687816 0.3951413 -0.519487 0.5687816 0.3951413 -0.5245917 0.5687816 0.3951413 -0.529462 0.5687816 0.3951413 -0.5341183 0.5687816 0.3951413 -0.5385787 0.5687816 0.3951413 -0.5428591 0.5687816 0.3951413 -0.5469733 0.5687816 0.3951413 -0.5509339 0.5687816 0.3951413 -0.5547519 0.5687816 0.3951413 -0.5584371 0.5687816 0.3951413 -0.5619986 0.5687816 0.3951413 -0.5654443 0.5687816 0.3951413 -0.5687816 0.5687816 0.3951413 -0.092819 0.092819 0.4108177 -0.2262531 0.092819 0.4108177 -0.2875993 0.092819 0.4108177 -0.3262122 0.092819 0.4108177 -0.3544566 0.092819 0.4108177 -0.3767383 0.092819 0.4108177 -0.3951413 0.092819 0.4108177 -0.4108177 0.092819 0.4108177 -0.4244723 0.092819 0.4108177 -0.4365675 0.092819 0.4108177 -0.4474232 0.092819 0.4108177 -0.45727 0.092819 0.4108177 -0.4662797 0.092819 0.4108177 -0.4745834 0.092819 0.4108177 -0.4822838 0.092819 0.4108177 -0.4894626 0.092819 0.4108177 -0.4961862 0.092819 0.4108177 -0.5025087 0.092819 0.4108177 -0.5084753 0.092819 0.4108177 -0.514124 0.092819 0.4108177 -0.519487 0.092819 0.4108177 -0.5245917 0.092819 0.4108177 -0.529462 0.092819 0.4108177 -0.5341183 0.092819 0.4108177 -0.5385787 0.092819 0.4108177 -0.5428591 0.092819 0.4108177 -0.5469733 0.092819 0.4108177 -0.5509339 0.092819 0.4108177 -0.5547519 0.092819 0.4108177 -0.5584371 0.092819 0.4108177 -0.5619986 0.092819 0.4108177 -0.5654443 0.092819 0.4108177 -0.5687816 0.092819 0.4108177 -0.092819 0.2262531 0.4108177 -0.2262531 0.2262531 0.4108177 -0.2875993 0.2262531 0.4108177 -0.3262122 0.2262531 0.4108177 -0.3544566 0.2262531 0.4108177 -0.3767383 0.2262531 0.4108177 -0.3951413 0.2262531 0.4108177 -0.4108177 0.2262531 0.4108177 -0.4244723 0.2262531 0.4108177 -0.4365675 0.2262531 0.4108177 -0.4474232 0.2262531 0.4108177 -0.45727 0.2262531 0.4108177 -0.4662797 0.2262531 0.4108177 -0.4745834 0.2262531 0.4108177 -0.4822838 0.2262531 0.4108177 -0.4894626 0.2262531 0.4108177 -0.4961862 0.2262531 0.4108177 -0.5025087 0.2262531 0.4108177 -0.5084753 0.2262531 0.4108177 -0.514124 0.2262531 0.4108177 -0.519487 0.2262531 0.4108177 -0.5245917 0.2262531 0.4108177 -0.529462 0.2262531 0.4108177 -0.5341183 0.2262531 0.4108177 -0.5385787 0.2262531 0.4108177 -0.5428591 0.2262531 0.4108177 -0.5469733 0.2262531 0.4108177 -0.5509339 0.2262531 0.4108177 -0.5547519 0.2262531 0.4108177 -0.5584371 0.2262531 0.4108177 -0.5619986 0.2262531 0.4108177 -0.5654443 0.2262531 0.4108177 -0.5687816 0.2262531 0.4108177 -0.092819 0.2875993 0.4108177 -0.2262531 0.2875993 0.4108177 -0.2875993 0.2875993 0.4108177 -0.3262122 0.2875993 0.4108177 -0.3544566 0.2875993 0.4108177 -0.3767383 0.2875993 0.4108177 -0.3951413 0.2875993 0.4108177 -0.4108177 0.2875993 0.4108177 -0.4244723 0.2875993 0.4108177 -0.4365675 0.2875993 0.4108177 -0.4474232 0.2875993 0.4108177 -0.45727 0.2875993 0.4108177 -0.4662797 0.2875993 0.4108177 -0.4745834 0.2875993 0.4108177 -0.4822838 0.2875993 0.4108177 -0.4894626 0.2875993 0.4108177 -0.4961862 0.2875993 0.4108177 -0.5025087 0.2875993 0.4108177 -0.5084753 0.2875993 0.4108177 -0.514124 0.2875993 0.4108177 -0.519487 0.2875993 0.4108177 -0.5245917 0.2875993 0.4108177 -0.529462 0.2875993 0.4108177 -0.5341183 0.2875993 0.4108177 -0.5385787 0.2875993 0.4108177 -0.5428591 0.2875993 0.4108177 -0.5469733 0.2875993 0.4108177 -0.5509339 0.2875993 0.4108177 -0.5547519 0.2875993 0.4108177 -0.5584371 0.2875993 0.4108177 -0.5619986 0.2875993 0.4108177 -0.5654443 0.2875993 0.4108177 -0.5687816 0.2875993 0.4108177 -0.092819 0.3262122 0.4108177 -0.2262531 0.3262122 0.4108177 -0.2875993 0.3262122 0.4108177 -0.3262122 0.3262122 0.4108177 -0.3544566 0.3262122 0.4108177 -0.3767383 0.3262122 0.4108177 -0.3951413 0.3262122 0.4108177 -0.4108177 0.3262122 0.4108177 -0.4244723 0.3262122 0.4108177 -0.4365675 0.3262122 0.4108177 -0.4474232 0.3262122 0.4108177 -0.45727 0.3262122 0.4108177 -0.4662797 0.3262122 0.4108177 -0.4745834 0.3262122 0.4108177 -0.4822838 0.3262122 0.4108177 -0.4894626 0.3262122 0.4108177 -0.4961862 0.3262122 0.4108177 -0.5025087 0.3262122 0.4108177 -0.5084753 0.3262122 0.4108177 -0.514124 0.3262122 0.4108177 -0.519487 0.3262122 0.4108177 -0.5245917 0.3262122 0.4108177 -0.529462 0.3262122 0.4108177 -0.5341183 0.3262122 0.4108177 -0.5385787 0.3262122 0.4108177 -0.5428591 0.3262122 0.4108177 -0.5469733 0.3262122 0.4108177 -0.5509339 0.3262122 0.4108177 -0.5547519 0.3262122 0.4108177 -0.5584371 0.3262122 0.4108177 -0.5619986 0.3262122 0.4108177 -0.5654443 0.3262122 0.4108177 -0.5687816 0.3262122 0.4108177 -0.092819 0.3544566 0.4108177 -0.2262531 0.3544566 0.4108177 -0.2875993 0.3544566 0.4108177 -0.3262122 0.3544566 0.4108177 -0.3544566 0.3544566 0.4108177 -0.3767383 0.3544566 0.4108177 -0.3951413 0.3544566 0.4108177 -0.4108177 0.3544566 0.4108177 -0.4244723 0.3544566 0.4108177 -0.4365675 0.3544566 0.4108177 -0.4474232 0.3544566 0.4108177 -0.45727 0.3544566 0.4108177 -0.4662797 0.3544566 0.4108177 -0.4745834 0.3544566 0.4108177 -0.4822838 0.3544566 0.4108177 -0.4894626 0.3544566 0.4108177 -0.4961862 0.3544566 0.4108177 -0.5025087 0.3544566 0.4108177 -0.5084753 0.3544566 0.4108177 -0.514124 0.3544566 0.4108177 -0.519487 0.3544566 0.4108177 -0.5245917 0.3544566 0.4108177 -0.529462 0.3544566 0.4108177 -0.5341183 0.3544566 0.4108177 -0.5385787 0.3544566 0.4108177 -0.5428591 0.3544566 0.4108177 -0.5469733 0.3544566 0.4108177 -0.5509339 0.3544566 0.4108177 -0.5547519 0.3544566 0.4108177 -0.5584371 0.3544566 0.4108177 -0.5619986 0.3544566 0.4108177 -0.5654443 0.3544566 0.4108177 -0.5687816 0.3544566 0.4108177 -0.092819 0.3767383 0.4108177 -0.2262531 0.3767383 0.4108177 -0.2875993 0.3767383 0.4108177 -0.3262122 0.3767383 0.4108177 -0.3544566 0.3767383 0.4108177 -0.3767383 0.3767383 0.4108177 -0.3951413 0.3767383 0.4108177 -0.4108177 0.3767383 0.4108177 -0.4244723 0.3767383 0.4108177 -0.4365675 0.3767383 0.4108177 -0.4474232 0.3767383 0.4108177 -0.45727 0.3767383 0.4108177 -0.4662797 0.3767383 0.4108177 -0.4745834 0.3767383 0.4108177 -0.4822838 0.3767383 0.4108177 -0.4894626 0.3767383 0.4108177 -0.4961862 0.3767383 0.4108177 -0.5025087 0.3767383 0.4108177 -0.5084753 0.3767383 0.4108177 -0.514124 0.3767383 0.4108177 -0.519487 0.3767383 0.4108177 -0.5245917 0.3767383 0.4108177 -0.529462 0.3767383 0.4108177 -0.5341183 0.3767383 0.4108177 -0.5385787 0.3767383 0.4108177 -0.5428591 0.3767383 0.4108177 -0.5469733 0.3767383 0.4108177 -0.5509339 0.3767383 0.4108177 -0.5547519 0.3767383 0.4108177 -0.5584371 0.3767383 0.4108177 -0.5619986 0.3767383 0.4108177 -0.5654443 0.3767383 0.4108177 -0.5687816 0.3767383 0.4108177 -0.092819 0.3951413 0.4108177 -0.2262531 0.3951413 0.4108177 -0.2875993 0.3951413 0.4108177 -0.3262122 0.3951413 0.4108177 -0.3544566 0.3951413 0.4108177 -0.3767383 0.3951413 0.4108177 -0.3951413 0.3951413 0.4108177 -0.4108177 0.3951413 0.4108177 -0.4244723 0.3951413 0.4108177 -0.4365675 0.3951413 0.4108177 -0.4474232 0.3951413 0.4108177 -0.45727 0.3951413 0.4108177 -0.4662797 0.3951413 0.4108177 -0.4745834 0.3951413 0.4108177 -0.4822838 0.3951413 0.4108177 -0.4894626 0.3951413 0.4108177 -0.4961862 0.3951413 0.4108177 -0.5025087 0.3951413 0.4108177 -0.5084753 0.3951413 0.4108177 -0.514124 0.3951413 0.4108177 -0.519487 0.3951413 0.4108177 -0.5245917 0.3951413 0.4108177 -0.529462 0.3951413 0.4108177 -0.5341183 0.3951413 0.4108177 -0.5385787 0.3951413 0.4108177 -0.5428591 0.3951413 0.4108177 -0.5469733 0.3951413 0.4108177 -0.5509339 0.3951413 0.4108177 -0.5547519 0.3951413 0.4108177 -0.5584371 0.3951413 0.4108177 -0.5619986 0.3951413 0.4108177 -0.5654443 0.3951413 0.4108177 -0.5687816 0.3951413 0.4108177 -0.092819 0.4108177 0.4108177 -0.2262531 0.4108177 0.4108177 -0.2875993 0.4108177 0.4108177 -0.3262122 0.4108177 0.4108177 -0.3544566 0.4108177 0.4108177 -0.3767383 0.4108177 0.4108177 -0.3951413 0.4108177 0.4108177 -0.4108177 0.4108177 0.4108177 -0.4244723 0.4108177 0.4108177 -0.4365675 0.4108177 0.4108177 -0.4474232 0.4108177 0.4108177 -0.45727 0.4108177 0.4108177 -0.4662797 0.4108177 0.4108177 -0.4745834 0.4108177 0.4108177 -0.4822838 0.4108177 0.4108177 -0.4894626 0.4108177 0.4108177 -0.4961862 0.4108177 0.4108177 -0.5025087 0.4108177 0.4108177 -0.5084753 0.4108177 0.4108177 -0.514124 0.4108177 0.4108177 -0.519487 0.4108177 0.4108177 -0.5245917 0.4108177 0.4108177 -0.529462 0.4108177 0.4108177 -0.5341183 0.4108177 0.4108177 -0.5385787 0.4108177 0.4108177 -0.5428591 0.4108177 0.4108177 -0.5469733 0.4108177 0.4108177 -0.5509339 0.4108177 0.4108177 -0.5547519 0.4108177 0.4108177 -0.5584371 0.4108177 0.4108177 -0.5619986 0.4108177 0.4108177 -0.5654443 0.4108177 0.4108177 -0.5687816 0.4108177 0.4108177 -0.092819 0.4244723 0.4108177 -0.2262531 0.4244723 0.4108177 -0.2875993 0.4244723 0.4108177 -0.3262122 0.4244723 0.4108177 -0.3544566 0.4244723 0.4108177 -0.3767383 0.4244723 0.4108177 -0.3951413 0.4244723 0.4108177 -0.4108177 0.4244723 0.4108177 -0.4244723 0.4244723 0.4108177 -0.4365675 0.4244723 0.4108177 -0.4474232 0.4244723 0.4108177 -0.45727 0.4244723 0.4108177 -0.4662797 0.4244723 0.4108177 -0.4745834 0.4244723 0.4108177 -0.4822838 0.4244723 0.4108177 -0.4894626 0.4244723 0.4108177 -0.4961862 0.4244723 0.4108177 -0.5025087 0.4244723 0.4108177 -0.5084753 0.4244723 0.4108177 -0.514124 0.4244723 0.4108177 -0.519487 0.4244723 0.4108177 -0.5245917 0.4244723 0.4108177 -0.529462 0.4244723 0.4108177 -0.5341183 0.4244723 0.4108177 -0.5385787 0.4244723 0.4108177 -0.5428591 0.4244723 0.4108177 -0.5469733 0.4244723 0.4108177 -0.5509339 0.4244723 0.4108177 -0.5547519 0.4244723 0.4108177 -0.5584371 0.4244723 0.4108177 -0.5619986 0.4244723 0.4108177 -0.5654443 0.4244723 0.4108177 -0.5687816 0.4244723 0.4108177 -0.092819 0.4365675 0.4108177 -0.2262531 0.4365675 0.4108177 -0.2875993 0.4365675 0.4108177 -0.3262122 0.4365675 0.4108177 -0.3544566 0.4365675 0.4108177 -0.3767383 0.4365675 0.4108177 -0.3951413 0.4365675 0.4108177 -0.4108177 0.4365675 0.4108177 -0.4244723 0.4365675 0.4108177 -0.4365675 0.4365675 0.4108177 -0.4474232 0.4365675 0.4108177 -0.45727 0.4365675 0.4108177 -0.4662797 0.4365675 0.4108177 -0.4745834 0.4365675 0.4108177 -0.4822838 0.4365675 0.4108177 -0.4894626 0.4365675 0.4108177 -0.4961862 0.4365675 0.4108177 -0.5025087 0.4365675 0.4108177 -0.5084753 0.4365675 0.4108177 -0.514124 0.4365675 0.4108177 -0.519487 0.4365675 0.4108177 -0.5245917 0.4365675 0.4108177 -0.529462 0.4365675 0.4108177 -0.5341183 0.4365675 0.4108177 -0.5385787 0.4365675 0.4108177 -0.5428591 0.4365675 0.4108177 -0.5469733 0.4365675 0.4108177 -0.5509339 0.4365675 0.4108177 -0.5547519 0.4365675 0.4108177 -0.5584371 0.4365675 0.4108177 -0.5619986 0.4365675 0.4108177 -0.5654443 0.4365675 0.4108177 -0.5687816 0.4365675 0.4108177 -0.092819 0.4474232 0.4108177 -0.2262531 0.4474232 0.4108177 -0.2875993 0.4474232 0.4108177 -0.3262122 0.4474232 0.4108177 -0.3544566 0.4474232 0.4108177 -0.3767383 0.4474232 0.4108177 -0.3951413 0.4474232 0.4108177 -0.4108177 0.4474232 0.4108177 -0.4244723 0.4474232 0.4108177 -0.4365675 0.4474232 0.4108177 -0.4474232 0.4474232 0.4108177 -0.45727 0.4474232 0.4108177 -0.4662797 0.4474232 0.4108177 -0.4745834 0.4474232 0.4108177 -0.4822838 0.4474232 0.4108177 -0.4894626 0.4474232 0.4108177 -0.4961862 0.4474232 0.4108177 -0.5025087 0.4474232 0.4108177 -0.5084753 0.4474232 0.4108177 -0.514124 0.4474232 0.4108177 -0.519487 0.4474232 0.4108177 -0.5245917 0.4474232 0.4108177 -0.529462 0.4474232 0.4108177 -0.5341183 0.4474232 0.4108177 -0.5385787 0.4474232 0.4108177 -0.5428591 0.4474232 0.4108177 -0.5469733 0.4474232 0.4108177 -0.5509339 0.4474232 0.4108177 -0.5547519 0.4474232 0.4108177 -0.5584371 0.4474232 0.4108177 -0.5619986 0.4474232 0.4108177 -0.5654443 0.4474232 0.4108177 -0.5687816 0.4474232 0.4108177 -0.092819 0.45727 0.4108177 -0.2262531 0.45727 0.4108177 -0.2875993 0.45727 0.4108177 -0.3262122 0.45727 0.4108177 -0.3544566 0.45727 0.4108177 -0.3767383 0.45727 0.4108177 -0.3951413 0.45727 0.4108177 -0.4108177 0.45727 0.4108177 -0.4244723 0.45727 0.4108177 -0.4365675 0.45727 0.4108177 -0.4474232 0.45727 0.4108177 -0.45727 0.45727 0.4108177 -0.4662797 0.45727 0.4108177 -0.4745834 0.45727 0.4108177 -0.4822838 0.45727 0.4108177 -0.4894626 0.45727 0.4108177 -0.4961862 0.45727 0.4108177 -0.5025087 0.45727 0.4108177 -0.5084753 0.45727 0.4108177 -0.514124 0.45727 0.4108177 -0.519487 0.45727 0.4108177 -0.5245917 0.45727 0.4108177 -0.529462 0.45727 0.4108177 -0.5341183 0.45727 0.4108177 -0.5385787 0.45727 0.4108177 -0.5428591 0.45727 0.4108177 -0.5469733 0.45727 0.4108177 -0.5509339 0.45727 0.4108177 -0.5547519 0.45727 0.4108177 -0.5584371 0.45727 0.4108177 -0.5619986 0.45727 0.4108177 -0.5654443 0.45727 0.4108177 -0.5687816 0.45727 0.4108177 -0.092819 0.4662797 0.4108177 -0.2262531 0.4662797 0.4108177 -0.2875993 0.4662797 0.4108177 -0.3262122 0.4662797 0.4108177 -0.3544566 0.4662797 0.4108177 -0.3767383 0.4662797 0.4108177 -0.3951413 0.4662797 0.4108177 -0.4108177 0.4662797 0.4108177 -0.4244723 0.4662797 0.4108177 -0.4365675 0.4662797 0.4108177 -0.4474232 0.4662797 0.4108177 -0.45727 0.4662797 0.4108177 -0.4662797 0.4662797 0.4108177 -0.4745834 0.4662797 0.4108177 -0.4822838 0.4662797 0.4108177 -0.4894626 0.4662797 0.4108177 -0.4961862 0.4662797 0.4108177 -0.5025087 0.4662797 0.4108177 -0.5084753 0.4662797 0.4108177 -0.514124 0.4662797 0.4108177 -0.519487 0.4662797 0.4108177 -0.5245917 0.4662797 0.4108177 -0.529462 0.4662797 0.4108177 -0.5341183 0.4662797 0.4108177 -0.5385787 0.4662797 0.4108177 -0.5428591 0.4662797 0.4108177 -0.5469733 0.4662797 0.4108177 -0.5509339 0.4662797 0.4108177 -0.5547519 0.4662797 0.4108177 -0.5584371 0.4662797 0.4108177 -0.5619986 0.4662797 0.4108177 -0.5654443 0.4662797 0.4108177 -0.5687816 0.4662797 0.4108177 -0.092819 0.4745834 0.4108177 -0.2262531 0.4745834 0.4108177 -0.2875993 0.4745834 0.4108177 -0.3262122 0.4745834 0.4108177 -0.3544566 0.4745834 0.4108177 -0.3767383 0.4745834 0.4108177 -0.3951413 0.4745834 0.4108177 -0.4108177 0.4745834 0.4108177 -0.4244723 0.4745834 0.4108177 -0.4365675 0.4745834 0.4108177 -0.4474232 0.4745834 0.4108177 -0.45727 0.4745834 0.4108177 -0.4662797 0.4745834 0.4108177 -0.4745834 0.4745834 0.4108177 -0.4822838 0.4745834 0.4108177 -0.4894626 0.4745834 0.4108177 -0.4961862 0.4745834 0.4108177 -0.5025087 0.4745834 0.4108177 -0.5084753 0.4745834 0.4108177 -0.514124 0.4745834 0.4108177 -0.519487 0.4745834 0.4108177 -0.5245917 0.4745834 0.4108177 -0.529462 0.4745834 0.4108177 -0.5341183 0.4745834 0.4108177 -0.5385787 0.4745834 0.4108177 -0.5428591 0.4745834 0.4108177 -0.5469733 0.4745834 0.4108177 -0.5509339 0.4745834 0.4108177 -0.5547519 0.4745834 0.4108177 -0.5584371 0.4745834 0.4108177 -0.5619986 0.4745834 0.4108177 -0.5654443 0.4745834 0.4108177 -0.5687816 0.4745834 0.4108177 -0.092819 0.4822838 0.4108177 -0.2262531 0.4822838 0.4108177 -0.2875993 0.4822838 0.4108177 -0.3262122 0.4822838 0.4108177 -0.3544566 0.4822838 0.4108177 -0.3767383 0.4822838 0.4108177 -0.3951413 0.4822838 0.4108177 -0.4108177 0.4822838 0.4108177 -0.4244723 0.4822838 0.4108177 -0.4365675 0.4822838 0.4108177 -0.4474232 0.4822838 0.4108177 -0.45727 0.4822838 0.4108177 -0.4662797 0.4822838 0.4108177 -0.4745834 0.4822838 0.4108177 -0.4822838 0.4822838 0.4108177 -0.4894626 0.4822838 0.4108177 -0.4961862 0.4822838 0.4108177 -0.5025087 0.4822838 0.4108177 -0.5084753 0.4822838 0.4108177 -0.514124 0.4822838 0.4108177 -0.519487 0.4822838 0.4108177 -0.5245917 0.4822838 0.4108177 -0.529462 0.4822838 0.4108177 -0.5341183 0.4822838 0.4108177 -0.5385787 0.4822838 0.4108177 -0.5428591 0.4822838 0.4108177 -0.5469733 0.4822838 0.4108177 -0.5509339 0.4822838 0.4108177 -0.5547519 0.4822838 0.4108177 -0.5584371 0.4822838 0.4108177 -0.5619986 0.4822838 0.4108177 -0.5654443 0.4822838 0.4108177 -0.5687816 0.4822838 0.4108177 -0.092819 0.4894626 0.4108177 -0.2262531 0.4894626 0.4108177 -0.2875993 0.4894626 0.4108177 -0.3262122 0.4894626 0.4108177 -0.3544566 0.4894626 0.4108177 -0.3767383 0.4894626 0.4108177 -0.3951413 0.4894626 0.4108177 -0.4108177 0.4894626 0.4108177 -0.4244723 0.4894626 0.4108177 -0.4365675 0.4894626 0.4108177 -0.4474232 0.4894626 0.4108177 -0.45727 0.4894626 0.4108177 -0.4662797 0.4894626 0.4108177 -0.4745834 0.4894626 0.4108177 -0.4822838 0.4894626 0.4108177 -0.4894626 0.4894626 0.4108177 -0.4961862 0.4894626 0.4108177 -0.5025087 0.4894626 0.4108177 -0.5084753 0.4894626 0.4108177 -0.514124 0.4894626 0.4108177 -0.519487 0.4894626 0.4108177 -0.5245917 0.4894626 0.4108177 -0.529462 0.4894626 0.4108177 -0.5341183 0.4894626 0.4108177 -0.5385787 0.4894626 0.4108177 -0.5428591 0.4894626 0.4108177 -0.5469733 0.4894626 0.4108177 -0.5509339 0.4894626 0.4108177 -0.5547519 0.4894626 0.4108177 -0.5584371 0.4894626 0.4108177 -0.5619986 0.4894626 0.4108177 -0.5654443 0.4894626 0.4108177 -0.5687816 0.4894626 0.4108177 -0.092819 0.4961862 0.4108177 -0.2262531 0.4961862 0.4108177 -0.2875993 0.4961862 0.4108177 -0.3262122 0.4961862 0.4108177 -0.3544566 0.4961862 0.4108177 -0.3767383 0.4961862 0.4108177 -0.3951413 0.4961862 0.4108177 -0.4108177 0.4961862 0.4108177 -0.4244723 0.4961862 0.4108177 -0.4365675 0.4961862 0.4108177 -0.4474232 0.4961862 0.4108177 -0.45727 0.4961862 0.4108177 -0.4662797 0.4961862 0.4108177 -0.4745834 0.4961862 0.4108177 -0.4822838 0.4961862 0.4108177 -0.4894626 0.4961862 0.4108177 -0.4961862 0.4961862 0.4108177 -0.5025087 0.4961862 0.4108177 -0.5084753 0.4961862 0.4108177 -0.514124 0.4961862 0.4108177 -0.519487 0.4961862 0.4108177 -0.5245917 0.4961862 0.4108177 -0.529462 0.4961862 0.4108177 -0.5341183 0.4961862 0.4108177 -0.5385787 0.4961862 0.4108177 -0.5428591 0.4961862 0.4108177 -0.5469733 0.4961862 0.4108177 -0.5509339 0.4961862 0.4108177 -0.5547519 0.4961862 0.4108177 -0.5584371 0.4961862 0.4108177 -0.5619986 0.4961862 0.4108177 -0.5654443 0.4961862 0.4108177 -0.5687816 0.4961862 0.4108177 -0.092819 0.5025087 0.4108177 -0.2262531 0.5025087 0.4108177 -0.2875993 0.5025087 0.4108177 -0.3262122 0.5025087 0.4108177 -0.3544566 0.5025087 0.4108177 -0.3767383 0.5025087 0.4108177 -0.3951413 0.5025087 0.4108177 -0.4108177 0.5025087 0.4108177 -0.4244723 0.5025087 0.4108177 -0.4365675 0.5025087 0.4108177 -0.4474232 0.5025087 0.4108177 -0.45727 0.5025087 0.4108177 -0.4662797 0.5025087 0.4108177 -0.4745834 0.5025087 0.4108177 -0.4822838 0.5025087 0.4108177 -0.4894626 0.5025087 0.4108177 -0.4961862 0.5025087 0.4108177 -0.5025087 0.5025087 0.4108177 -0.5084753 0.5025087 0.4108177 -0.514124 0.5025087 0.4108177 -0.519487 0.5025087 0.4108177 -0.5245917 0.5025087 0.4108177 -0.529462 0.5025087 0.4108177 -0.5341183 0.5025087 0.4108177 -0.5385787 0.5025087 0.4108177 -0.5428591 0.5025087 0.4108177 -0.5469733 0.5025087 0.4108177 -0.5509339 0.5025087 0.4108177 -0.5547519 0.5025087 0.4108177 -0.5584371 0.5025087 0.4108177 -0.5619986 0.5025087 0.4108177 -0.5654443 0.5025087 0.4108177 -0.5687816 0.5025087 0.4108177 -0.092819 0.5084753 0.4108177 -0.2262531 0.5084753 0.4108177 -0.2875993 0.5084753 0.4108177 -0.3262122 0.5084753 0.4108177 -0.3544566 0.5084753 0.4108177 -0.3767383 0.5084753 0.4108177 -0.3951413 0.5084753 0.4108177 -0.4108177 0.5084753 0.4108177 -0.4244723 0.5084753 0.4108177 -0.4365675 0.5084753 0.4108177 -0.4474232 0.5084753 0.4108177 -0.45727 0.5084753 0.4108177 -0.4662797 0.5084753 0.4108177 -0.4745834 0.5084753 0.4108177 -0.4822838 0.5084753 0.4108177 -0.4894626 0.5084753 0.4108177 -0.4961862 0.5084753 0.4108177 -0.5025087 0.5084753 0.4108177 -0.5084753 0.5084753 0.4108177 -0.514124 0.5084753 0.4108177 -0.519487 0.5084753 0.4108177 -0.5245917 0.5084753 0.4108177 -0.529462 0.5084753 0.4108177 -0.5341183 0.5084753 0.4108177 -0.5385787 0.5084753 0.4108177 -0.5428591 0.5084753 0.4108177 -0.5469733 0.5084753 0.4108177 -0.5509339 0.5084753 0.4108177 -0.5547519 0.5084753 0.4108177 -0.5584371 0.5084753 0.4108177 -0.5619986 0.5084753 0.4108177 -0.5654443 0.5084753 0.4108177 -0.5687816 0.5084753 0.4108177 -0.092819 0.514124 0.4108177 -0.2262531 0.514124 0.4108177 -0.2875993 0.514124 0.4108177 -0.3262122 0.514124 0.4108177 -0.3544566 0.514124 0.4108177 -0.3767383 0.514124 0.4108177 -0.3951413 0.514124 0.4108177 -0.4108177 0.514124 0.4108177 -0.4244723 0.514124 0.4108177 -0.4365675 0.514124 0.4108177 -0.4474232 0.514124 0.4108177 -0.45727 0.514124 0.4108177 -0.4662797 0.514124 0.4108177 -0.4745834 0.514124 0.4108177 -0.4822838 0.514124 0.4108177 -0.4894626 0.514124 0.4108177 -0.4961862 0.514124 0.4108177 -0.5025087 0.514124 0.4108177 -0.5084753 0.514124 0.4108177 -0.514124 0.514124 0.4108177 -0.519487 0.514124 0.4108177 -0.5245917 0.514124 0.4108177 -0.529462 0.514124 0.4108177 -0.5341183 0.514124 0.4108177 -0.5385787 0.514124 0.4108177 -0.5428591 0.514124 0.4108177 -0.5469733 0.514124 0.4108177 -0.5509339 0.514124 0.4108177 -0.5547519 0.514124 0.4108177 -0.5584371 0.514124 0.4108177 -0.5619986 0.514124 0.4108177 -0.5654443 0.514124 0.4108177 -0.5687816 0.514124 0.4108177 -0.092819 0.519487 0.4108177 -0.2262531 0.519487 0.4108177 -0.2875993 0.519487 0.4108177 -0.3262122 0.519487 0.4108177 -0.3544566 0.519487 0.4108177 -0.3767383 0.519487 0.4108177 -0.3951413 0.519487 0.4108177 -0.4108177 0.519487 0.4108177 -0.4244723 0.519487 0.4108177 -0.4365675 0.519487 0.4108177 -0.4474232 0.519487 0.4108177 -0.45727 0.519487 0.4108177 -0.4662797 0.519487 0.4108177 -0.4745834 0.519487 0.4108177 -0.4822838 0.519487 0.4108177 -0.4894626 0.519487 0.4108177 -0.4961862 0.519487 0.4108177 -0.5025087 0.519487 0.4108177 -0.5084753 0.519487 0.4108177 -0.514124 0.519487 0.4108177 -0.519487 0.519487 0.4108177 -0.5245917 0.519487 0.4108177 -0.529462 0.519487 0.4108177 -0.5341183 0.519487 0.4108177 -0.5385787 0.519487 0.4108177 -0.5428591 0.519487 0.4108177 -0.5469733 0.519487 0.4108177 -0.5509339 0.519487 0.4108177 -0.5547519 0.519487 0.4108177 -0.5584371 0.519487 0.4108177 -0.5619986 0.519487 0.4108177 -0.5654443 0.519487 0.4108177 -0.5687816 0.519487 0.4108177 -0.092819 0.5245917 0.4108177 -0.2262531 0.5245917 0.4108177 -0.2875993 0.5245917 0.4108177 -0.3262122 0.5245917 0.4108177 -0.3544566 0.5245917 0.4108177 -0.3767383 0.5245917 0.4108177 -0.3951413 0.5245917 0.4108177 -0.4108177 0.5245917 0.4108177 -0.4244723 0.5245917 0.4108177 -0.4365675 0.5245917 0.4108177 -0.4474232 0.5245917 0.4108177 -0.45727 0.5245917 0.4108177 -0.4662797 0.5245917 0.4108177 -0.4745834 0.5245917 0.4108177 -0.4822838 0.5245917 0.4108177 -0.4894626 0.5245917 0.4108177 -0.4961862 0.5245917 0.4108177 -0.5025087 0.5245917 0.4108177 -0.5084753 0.5245917 0.4108177 -0.514124 0.5245917 0.4108177 -0.519487 0.5245917 0.4108177 -0.5245917 0.5245917 0.4108177 -0.529462 0.5245917 0.4108177 -0.5341183 0.5245917 0.4108177 -0.5385787 0.5245917 0.4108177 -0.5428591 0.5245917 0.4108177 -0.5469733 0.5245917 0.4108177 -0.5509339 0.5245917 0.4108177 -0.5547519 0.5245917 0.4108177 -0.5584371 0.5245917 0.4108177 -0.5619986 0.5245917 0.4108177 -0.5654443 0.5245917 0.4108177 -0.5687816 0.5245917 0.4108177 -0.092819 0.529462 0.4108177 -0.2262531 0.529462 0.4108177 -0.2875993 0.529462 0.4108177 -0.3262122 0.529462 0.4108177 -0.3544566 0.529462 0.4108177 -0.3767383 0.529462 0.4108177 -0.3951413 0.529462 0.4108177 -0.4108177 0.529462 0.4108177 -0.4244723 0.529462 0.4108177 -0.4365675 0.529462 0.4108177 -0.4474232 0.529462 0.4108177 -0.45727 0.529462 0.4108177 -0.4662797 0.529462 0.4108177 -0.4745834 0.529462 0.4108177 -0.4822838 0.529462 0.4108177 -0.4894626 0.529462 0.4108177 -0.4961862 0.529462 0.4108177 -0.5025087 0.529462 0.4108177 -0.5084753 0.529462 0.4108177 -0.514124 0.529462 0.4108177 -0.519487 0.529462 0.4108177 -0.5245917 0.529462 0.4108177 -0.529462 0.529462 0.4108177 -0.5341183 0.529462 0.4108177 -0.5385787 0.529462 0.4108177 -0.5428591 0.529462 0.4108177 -0.5469733 0.529462 0.4108177 -0.5509339 0.529462 0.4108177 -0.5547519 0.529462 0.4108177 -0.5584371 0.529462 0.4108177 -0.5619986 0.529462 0.4108177 -0.5654443 0.529462 0.4108177 -0.5687816 0.529462 0.4108177 -0.092819 0.5341183 0.4108177 -0.2262531 0.5341183 0.4108177 -0.2875993 0.5341183 0.4108177 -0.3262122 0.5341183 0.4108177 -0.3544566 0.5341183 0.4108177 -0.3767383 0.5341183 0.4108177 -0.3951413 0.5341183 0.4108177 -0.4108177 0.5341183 0.4108177 -0.4244723 0.5341183 0.4108177 -0.4365675 0.5341183 0.4108177 -0.4474232 0.5341183 0.4108177 -0.45727 0.5341183 0.4108177 -0.4662797 0.5341183 0.4108177 -0.4745834 0.5341183 0.4108177 -0.4822838 0.5341183 0.4108177 -0.4894626 0.5341183 0.4108177 -0.4961862 0.5341183 0.4108177 -0.5025087 0.5341183 0.4108177 -0.5084753 0.5341183 0.4108177 -0.514124 0.5341183 0.4108177 -0.519487 0.5341183 0.4108177 -0.5245917 0.5341183 0.4108177 -0.529462 0.5341183 0.4108177 -0.5341183 0.5341183 0.4108177 -0.5385787 0.5341183 0.4108177 -0.5428591 0.5341183 0.4108177 -0.5469733 0.5341183 0.4108177 -0.5509339 0.5341183 0.4108177 -0.5547519 0.5341183 0.4108177 -0.5584371 0.5341183 0.4108177 -0.5619986 0.5341183 0.4108177 -0.5654443 0.5341183 0.4108177 -0.5687816 0.5341183 0.4108177 -0.092819 0.5385787 0.4108177 -0.2262531 0.5385787 0.4108177 -0.2875993 0.5385787 0.4108177 -0.3262122 0.5385787 0.4108177 -0.3544566 0.5385787 0.4108177 -0.3767383 0.5385787 0.4108177 -0.3951413 0.5385787 0.4108177 -0.4108177 0.5385787 0.4108177 -0.4244723 0.5385787 0.4108177 -0.4365675 0.5385787 0.4108177 -0.4474232 0.5385787 0.4108177 -0.45727 0.5385787 0.4108177 -0.4662797 0.5385787 0.4108177 -0.4745834 0.5385787 0.4108177 -0.4822838 0.5385787 0.4108177 -0.4894626 0.5385787 0.4108177 -0.4961862 0.5385787 0.4108177 -0.5025087 0.5385787 0.4108177 -0.5084753 0.5385787 0.4108177 -0.514124 0.5385787 0.4108177 -0.519487 0.5385787 0.4108177 -0.5245917 0.5385787 0.4108177 -0.529462 0.5385787 0.4108177 -0.5341183 0.5385787 0.4108177 -0.5385787 0.5385787 0.4108177 -0.5428591 0.5385787 0.4108177 -0.5469733 0.5385787 0.4108177 -0.5509339 0.5385787 0.4108177 -0.5547519 0.5385787 0.4108177 -0.5584371 0.5385787 0.4108177 -0.5619986 0.5385787 0.4108177 -0.5654443 0.5385787 0.4108177 -0.5687816 0.5385787 0.4108177 -0.092819 0.5428591 0.4108177 -0.2262531 0.5428591 0.4108177 -0.2875993 0.5428591 0.4108177 -0.3262122 0.5428591 0.4108177 -0.3544566 0.5428591 0.4108177 -0.3767383 0.5428591 0.4108177 -0.3951413 0.5428591 0.4108177 -0.4108177 0.5428591 0.4108177 -0.4244723 0.5428591 0.4108177 -0.4365675 0.5428591 0.4108177 -0.4474232 0.5428591 0.4108177 -0.45727 0.5428591 0.4108177 -0.4662797 0.5428591 0.4108177 -0.4745834 0.5428591 0.4108177 -0.4822838 0.5428591 0.4108177 -0.4894626 0.5428591 0.4108177 -0.4961862 0.5428591 0.4108177 -0.5025087 0.5428591 0.4108177 -0.5084753 0.5428591 0.4108177 -0.514124 0.5428591 0.4108177 -0.519487 0.5428591 0.4108177 -0.5245917 0.5428591 0.4108177 -0.529462 0.5428591 0.4108177 -0.5341183 0.5428591 0.4108177 -0.5385787 0.5428591 0.4108177 -0.5428591 0.5428591 0.4108177 -0.5469733 0.5428591 0.4108177 -0.5509339 0.5428591 0.4108177 -0.5547519 0.5428591 0.4108177 -0.5584371 0.5428591 0.4108177 -0.5619986 0.5428591 0.4108177 -0.5654443 0.5428591 0.4108177 -0.5687816 0.5428591 0.4108177 -0.092819 0.5469733 0.4108177 -0.2262531 0.5469733 0.4108177 -0.2875993 0.5469733 0.4108177 -0.3262122 0.5469733 0.4108177 -0.3544566 0.5469733 0.4108177 -0.3767383 0.5469733 0.4108177 -0.3951413 0.5469733 0.4108177 -0.4108177 0.5469733 0.4108177 -0.4244723 0.5469733 0.4108177 -0.4365675 0.5469733 0.4108177 -0.4474232 0.5469733 0.4108177 -0.45727 0.5469733 0.4108177 -0.4662797 0.5469733 0.4108177 -0.4745834 0.5469733 0.4108177 -0.4822838 0.5469733 0.4108177 -0.4894626 0.5469733 0.4108177 -0.4961862 0.5469733 0.4108177 -0.5025087 0.5469733 0.4108177 -0.5084753 0.5469733 0.4108177 -0.514124 0.5469733 0.4108177 -0.519487 0.5469733 0.4108177 -0.5245917 0.5469733 0.4108177 -0.529462 0.5469733 0.4108177 -0.5341183 0.5469733 0.4108177 -0.5385787 0.5469733 0.4108177 -0.5428591 0.5469733 0.4108177 -0.5469733 0.5469733 0.4108177 -0.5509339 0.5469733 0.4108177 -0.5547519 0.5469733 0.4108177 -0.5584371 0.5469733 0.4108177 -0.5619986 0.5469733 0.4108177 -0.5654443 0.5469733 0.4108177 -0.5687816 0.5469733 0.4108177 -0.092819 0.5509339 0.4108177 -0.2262531 0.5509339 0.4108177 -0.2875993 0.5509339 0.4108177 -0.3262122 0.5509339 0.4108177 -0.3544566 0.5509339 0.4108177 -0.3767383 0.5509339 0.4108177 -0.3951413 0.5509339 0.4108177 -0.4108177 0.5509339 0.4108177 -0.4244723 0.5509339 0.4108177 -0.4365675 0.5509339 0.4108177 -0.4474232 0.5509339 0.4108177 -0.45727 0.5509339 0.4108177 -0.4662797 0.5509339 0.4108177 -0.4745834 0.5509339 0.4108177 -0.4822838 0.5509339 0.4108177 -0.4894626 0.5509339 0.4108177 -0.4961862 0.5509339 0.4108177 -0.5025087 0.5509339 0.4108177 -0.5084753 0.5509339 0.4108177 -0.514124 0.5509339 0.4108177 -0.519487 0.5509339 0.4108177 -0.5245917 0.5509339 0.4108177 -0.529462 0.5509339 0.4108177 -0.5341183 0.5509339 0.4108177 -0.5385787 0.5509339 0.4108177 -0.5428591 0.5509339 0.4108177 -0.5469733 0.5509339 0.4108177 -0.5509339 0.5509339 0.4108177 -0.5547519 0.5509339 0.4108177 -0.5584371 0.5509339 0.4108177 -0.5619986 0.5509339 0.4108177 -0.5654443 0.5509339 0.4108177 -0.5687816 0.5509339 0.4108177 -0.092819 0.5547519 0.4108177 -0.2262531 0.5547519 0.4108177 -0.2875993 0.5547519 0.4108177 -0.3262122 0.5547519 0.4108177 -0.3544566 0.5547519 0.4108177 -0.3767383 0.5547519 0.4108177 -0.3951413 0.5547519 0.4108177 -0.4108177 0.5547519 0.4108177 -0.4244723 0.5547519 0.4108177 -0.4365675 0.5547519 0.4108177 -0.4474232 0.5547519 0.4108177 -0.45727 0.5547519 0.4108177 -0.4662797 0.5547519 0.4108177 -0.4745834 0.5547519 0.4108177 -0.4822838 0.5547519 0.4108177 -0.4894626 0.5547519 0.4108177 -0.4961862 0.5547519 0.4108177 -0.5025087 0.5547519 0.4108177 -0.5084753 0.5547519 0.4108177 -0.514124 0.5547519 0.4108177 -0.519487 0.5547519 0.4108177 -0.5245917 0.5547519 0.4108177 -0.529462 0.5547519 0.4108177 -0.5341183 0.5547519 0.4108177 -0.5385787 0.5547519 0.4108177 -0.5428591 0.5547519 0.4108177 -0.5469733 0.5547519 0.4108177 -0.5509339 0.5547519 0.4108177 -0.5547519 0.5547519 0.4108177 -0.5584371 0.5547519 0.4108177 -0.5619986 0.5547519 0.4108177 -0.5654443 0.5547519 0.4108177 -0.5687816 0.5547519 0.4108177 -0.092819 0.5584371 0.4108177 -0.2262531 0.5584371 0.4108177 -0.2875993 0.5584371 0.4108177 -0.3262122 0.5584371 0.4108177 -0.3544566 0.5584371 0.4108177 -0.3767383 0.5584371 0.4108177 -0.3951413 0.5584371 0.4108177 -0.4108177 0.5584371 0.4108177 -0.4244723 0.5584371 0.4108177 -0.4365675 0.5584371 0.4108177 -0.4474232 0.5584371 0.4108177 -0.45727 0.5584371 0.4108177 -0.4662797 0.5584371 0.4108177 -0.4745834 0.5584371 0.4108177 -0.4822838 0.5584371 0.4108177 -0.4894626 0.5584371 0.4108177 -0.4961862 0.5584371 0.4108177 -0.5025087 0.5584371 0.4108177 -0.5084753 0.5584371 0.4108177 -0.514124 0.5584371 0.4108177 -0.519487 0.5584371 0.4108177 -0.5245917 0.5584371 0.4108177 -0.529462 0.5584371 0.4108177 -0.5341183 0.5584371 0.4108177 -0.5385787 0.5584371 0.4108177 -0.5428591 0.5584371 0.4108177 -0.5469733 0.5584371 0.4108177 -0.5509339 0.5584371 0.4108177 -0.5547519 0.5584371 0.4108177 -0.5584371 0.5584371 0.4108177 -0.5619986 0.5584371 0.4108177 -0.5654443 0.5584371 0.4108177 -0.5687816 0.5584371 0.4108177 -0.092819 0.5619986 0.4108177 -0.2262531 0.5619986 0.4108177 -0.2875993 0.5619986 0.4108177 -0.3262122 0.5619986 0.4108177 -0.3544566 0.5619986 0.4108177 -0.3767383 0.5619986 0.4108177 -0.3951413 0.5619986 0.4108177 -0.4108177 0.5619986 0.4108177 -0.4244723 0.5619986 0.4108177 -0.4365675 0.5619986 0.4108177 -0.4474232 0.5619986 0.4108177 -0.45727 0.5619986 0.4108177 -0.4662797 0.5619986 0.4108177 -0.4745834 0.5619986 0.4108177 -0.4822838 0.5619986 0.4108177 -0.4894626 0.5619986 0.4108177 -0.4961862 0.5619986 0.4108177 -0.5025087 0.5619986 0.4108177 -0.5084753 0.5619986 0.4108177 -0.514124 0.5619986 0.4108177 -0.519487 0.5619986 0.4108177 -0.5245917 0.5619986 0.4108177 -0.529462 0.5619986 0.4108177 -0.5341183 0.5619986 0.4108177 -0.5385787 0.5619986 0.4108177 -0.5428591 0.5619986 0.4108177 -0.5469733 0.5619986 0.4108177 -0.5509339 0.5619986 0.4108177 -0.5547519 0.5619986 0.4108177 -0.5584371 0.5619986 0.4108177 -0.5619986 0.5619986 0.4108177 -0.5654443 0.5619986 0.4108177 -0.5687816 0.5619986 0.4108177 -0.092819 0.5654443 0.4108177 -0.2262531 0.5654443 0.4108177 -0.2875993 0.5654443 0.4108177 -0.3262122 0.5654443 0.4108177 -0.3544566 0.5654443 0.4108177 -0.3767383 0.5654443 0.4108177 -0.3951413 0.5654443 0.4108177 -0.4108177 0.5654443 0.4108177 -0.4244723 0.5654443 0.4108177 -0.4365675 0.5654443 0.4108177 -0.4474232 0.5654443 0.4108177 -0.45727 0.5654443 0.4108177 -0.4662797 0.5654443 0.4108177 -0.4745834 0.5654443 0.4108177 -0.4822838 0.5654443 0.4108177 -0.4894626 0.5654443 0.4108177 -0.4961862 0.5654443 0.4108177 -0.5025087 0.5654443 0.4108177 -0.5084753 0.5654443 0.4108177 -0.514124 0.5654443 0.4108177 -0.519487 0.5654443 0.4108177 -0.5245917 0.5654443 0.4108177 -0.529462 0.5654443 0.4108177 -0.5341183 0.5654443 0.4108177 -0.5385787 0.5654443 0.4108177 -0.5428591 0.5654443 0.4108177 -0.5469733 0.5654443 0.4108177 -0.5509339 0.5654443 0.4108177 -0.5547519 0.5654443 0.4108177 -0.5584371 0.5654443 0.4108177 -0.5619986 0.5654443 0.4108177 -0.5654443 0.5654443 0.4108177 -0.5687816 0.5654443 0.4108177 -0.092819 0.5687816 0.4108177 -0.2262531 0.5687816 0.4108177 -0.2875993 0.5687816 0.4108177 -0.3262122 0.5687816 0.4108177 -0.3544566 0.5687816 0.4108177 -0.3767383 0.5687816 0.4108177 -0.3951413 0.5687816 0.4108177 -0.4108177 0.5687816 0.4108177 -0.4244723 0.5687816 0.4108177 -0.4365675 0.5687816 0.4108177 -0.4474232 0.5687816 0.4108177 -0.45727 0.5687816 0.4108177 -0.4662797 0.5687816 0.4108177 -0.4745834 0.5687816 0.4108177 -0.4822838 0.5687816 0.4108177 -0.4894626 0.5687816 0.4108177 -0.4961862 0.5687816 0.4108177 -0.5025087 0.5687816 0.4108177 -0.5084753 0.5687816 0.4108177 -0.514124 0.5687816 0.4108177 -0.519487 0.5687816 0.4108177 -0.5245917 0.5687816 0.4108177 -0.529462 0.5687816 0.4108177 -0.5341183 0.5687816 0.4108177 -0.5385787 0.5687816 0.4108177 -0.5428591 0.5687816 0.4108177 -0.5469733 0.5687816 0.4108177 -0.5509339 0.5687816 0.4108177 -0.5547519 0.5687816 0.4108177 -0.5584371 0.5687816 0.4108177 -0.5619986 0.5687816 0.4108177 -0.5654443 0.5687816 0.4108177 -0.5687816 0.5687816 0.4108177 -0.092819 0.092819 0.4244723 -0.2262531 0.092819 0.4244723 -0.2875993 0.092819 0.4244723 -0.3262122 0.092819 0.4244723 -0.3544566 0.092819 0.4244723 -0.3767383 0.092819 0.4244723 -0.3951413 0.092819 0.4244723 -0.4108177 0.092819 0.4244723 -0.4244723 0.092819 0.4244723 -0.4365675 0.092819 0.4244723 -0.4474232 0.092819 0.4244723 -0.45727 0.092819 0.4244723 -0.4662797 0.092819 0.4244723 -0.4745834 0.092819 0.4244723 -0.4822838 0.092819 0.4244723 -0.4894626 0.092819 0.4244723 -0.4961862 0.092819 0.4244723 -0.5025087 0.092819 0.4244723 -0.5084753 0.092819 0.4244723 -0.514124 0.092819 0.4244723 -0.519487 0.092819 0.4244723 -0.5245917 0.092819 0.4244723 -0.529462 0.092819 0.4244723 -0.5341183 0.092819 0.4244723 -0.5385787 0.092819 0.4244723 -0.5428591 0.092819 0.4244723 -0.5469733 0.092819 0.4244723 -0.5509339 0.092819 0.4244723 -0.5547519 0.092819 0.4244723 -0.5584371 0.092819 0.4244723 -0.5619986 0.092819 0.4244723 -0.5654443 0.092819 0.4244723 -0.5687816 0.092819 0.4244723 -0.092819 0.2262531 0.4244723 -0.2262531 0.2262531 0.4244723 -0.2875993 0.2262531 0.4244723 -0.3262122 0.2262531 0.4244723 -0.3544566 0.2262531 0.4244723 -0.3767383 0.2262531 0.4244723 -0.3951413 0.2262531 0.4244723 -0.4108177 0.2262531 0.4244723 -0.4244723 0.2262531 0.4244723 -0.4365675 0.2262531 0.4244723 -0.4474232 0.2262531 0.4244723 -0.45727 0.2262531 0.4244723 -0.4662797 0.2262531 0.4244723 -0.4745834 0.2262531 0.4244723 -0.4822838 0.2262531 0.4244723 -0.4894626 0.2262531 0.4244723 -0.4961862 0.2262531 0.4244723 -0.5025087 0.2262531 0.4244723 -0.5084753 0.2262531 0.4244723 -0.514124 0.2262531 0.4244723 -0.519487 0.2262531 0.4244723 -0.5245917 0.2262531 0.4244723 -0.529462 0.2262531 0.4244723 -0.5341183 0.2262531 0.4244723 -0.5385787 0.2262531 0.4244723 -0.5428591 0.2262531 0.4244723 -0.5469733 0.2262531 0.4244723 -0.5509339 0.2262531 0.4244723 -0.5547519 0.2262531 0.4244723 -0.5584371 0.2262531 0.4244723 -0.5619986 0.2262531 0.4244723 -0.5654443 0.2262531 0.4244723 -0.5687816 0.2262531 0.4244723 -0.092819 0.2875993 0.4244723 -0.2262531 0.2875993 0.4244723 -0.2875993 0.2875993 0.4244723 -0.3262122 0.2875993 0.4244723 -0.3544566 0.2875993 0.4244723 -0.3767383 0.2875993 0.4244723 -0.3951413 0.2875993 0.4244723 -0.4108177 0.2875993 0.4244723 -0.4244723 0.2875993 0.4244723 -0.4365675 0.2875993 0.4244723 -0.4474232 0.2875993 0.4244723 -0.45727 0.2875993 0.4244723 -0.4662797 0.2875993 0.4244723 -0.4745834 0.2875993 0.4244723 -0.4822838 0.2875993 0.4244723 -0.4894626 0.2875993 0.4244723 -0.4961862 0.2875993 0.4244723 -0.5025087 0.2875993 0.4244723 -0.5084753 0.2875993 0.4244723 -0.514124 0.2875993 0.4244723 -0.519487 0.2875993 0.4244723 -0.5245917 0.2875993 0.4244723 -0.529462 0.2875993 0.4244723 -0.5341183 0.2875993 0.4244723 -0.5385787 0.2875993 0.4244723 -0.5428591 0.2875993 0.4244723 -0.5469733 0.2875993 0.4244723 -0.5509339 0.2875993 0.4244723 -0.5547519 0.2875993 0.4244723 -0.5584371 0.2875993 0.4244723 -0.5619986 0.2875993 0.4244723 -0.5654443 0.2875993 0.4244723 -0.5687816 0.2875993 0.4244723 -0.092819 0.3262122 0.4244723 -0.2262531 0.3262122 0.4244723 -0.2875993 0.3262122 0.4244723 -0.3262122 0.3262122 0.4244723 -0.3544566 0.3262122 0.4244723 -0.3767383 0.3262122 0.4244723 -0.3951413 0.3262122 0.4244723 -0.4108177 0.3262122 0.4244723 -0.4244723 0.3262122 0.4244723 -0.4365675 0.3262122 0.4244723 -0.4474232 0.3262122 0.4244723 -0.45727 0.3262122 0.4244723 -0.4662797 0.3262122 0.4244723 -0.4745834 0.3262122 0.4244723 -0.4822838 0.3262122 0.4244723 -0.4894626 0.3262122 0.4244723 -0.4961862 0.3262122 0.4244723 -0.5025087 0.3262122 0.4244723 -0.5084753 0.3262122 0.4244723 -0.514124 0.3262122 0.4244723 -0.519487 0.3262122 0.4244723 -0.5245917 0.3262122 0.4244723 -0.529462 0.3262122 0.4244723 -0.5341183 0.3262122 0.4244723 -0.5385787 0.3262122 0.4244723 -0.5428591 0.3262122 0.4244723 -0.5469733 0.3262122 0.4244723 -0.5509339 0.3262122 0.4244723 -0.5547519 0.3262122 0.4244723 -0.5584371 0.3262122 0.4244723 -0.5619986 0.3262122 0.4244723 -0.5654443 0.3262122 0.4244723 -0.5687816 0.3262122 0.4244723 -0.092819 0.3544566 0.4244723 -0.2262531 0.3544566 0.4244723 -0.2875993 0.3544566 0.4244723 -0.3262122 0.3544566 0.4244723 -0.3544566 0.3544566 0.4244723 -0.3767383 0.3544566 0.4244723 -0.3951413 0.3544566 0.4244723 -0.4108177 0.3544566 0.4244723 -0.4244723 0.3544566 0.4244723 -0.4365675 0.3544566 0.4244723 -0.4474232 0.3544566 0.4244723 -0.45727 0.3544566 0.4244723 -0.4662797 0.3544566 0.4244723 -0.4745834 0.3544566 0.4244723 -0.4822838 0.3544566 0.4244723 -0.4894626 0.3544566 0.4244723 -0.4961862 0.3544566 0.4244723 -0.5025087 0.3544566 0.4244723 -0.5084753 0.3544566 0.4244723 -0.514124 0.3544566 0.4244723 -0.519487 0.3544566 0.4244723 -0.5245917 0.3544566 0.4244723 -0.529462 0.3544566 0.4244723 -0.5341183 0.3544566 0.4244723 -0.5385787 0.3544566 0.4244723 -0.5428591 0.3544566 0.4244723 -0.5469733 0.3544566 0.4244723 -0.5509339 0.3544566 0.4244723 -0.5547519 0.3544566 0.4244723 -0.5584371 0.3544566 0.4244723 -0.5619986 0.3544566 0.4244723 -0.5654443 0.3544566 0.4244723 -0.5687816 0.3544566 0.4244723 -0.092819 0.3767383 0.4244723 -0.2262531 0.3767383 0.4244723 -0.2875993 0.3767383 0.4244723 -0.3262122 0.3767383 0.4244723 -0.3544566 0.3767383 0.4244723 -0.3767383 0.3767383 0.4244723 -0.3951413 0.3767383 0.4244723 -0.4108177 0.3767383 0.4244723 -0.4244723 0.3767383 0.4244723 -0.4365675 0.3767383 0.4244723 -0.4474232 0.3767383 0.4244723 -0.45727 0.3767383 0.4244723 -0.4662797 0.3767383 0.4244723 -0.4745834 0.3767383 0.4244723 -0.4822838 0.3767383 0.4244723 -0.4894626 0.3767383 0.4244723 -0.4961862 0.3767383 0.4244723 -0.5025087 0.3767383 0.4244723 -0.5084753 0.3767383 0.4244723 -0.514124 0.3767383 0.4244723 -0.519487 0.3767383 0.4244723 -0.5245917 0.3767383 0.4244723 -0.529462 0.3767383 0.4244723 -0.5341183 0.3767383 0.4244723 -0.5385787 0.3767383 0.4244723 -0.5428591 0.3767383 0.4244723 -0.5469733 0.3767383 0.4244723 -0.5509339 0.3767383 0.4244723 -0.5547519 0.3767383 0.4244723 -0.5584371 0.3767383 0.4244723 -0.5619986 0.3767383 0.4244723 -0.5654443 0.3767383 0.4244723 -0.5687816 0.3767383 0.4244723 -0.092819 0.3951413 0.4244723 -0.2262531 0.3951413 0.4244723 -0.2875993 0.3951413 0.4244723 -0.3262122 0.3951413 0.4244723 -0.3544566 0.3951413 0.4244723 -0.3767383 0.3951413 0.4244723 -0.3951413 0.3951413 0.4244723 -0.4108177 0.3951413 0.4244723 -0.4244723 0.3951413 0.4244723 -0.4365675 0.3951413 0.4244723 -0.4474232 0.3951413 0.4244723 -0.45727 0.3951413 0.4244723 -0.4662797 0.3951413 0.4244723 -0.4745834 0.3951413 0.4244723 -0.4822838 0.3951413 0.4244723 -0.4894626 0.3951413 0.4244723 -0.4961862 0.3951413 0.4244723 -0.5025087 0.3951413 0.4244723 -0.5084753 0.3951413 0.4244723 -0.514124 0.3951413 0.4244723 -0.519487 0.3951413 0.4244723 -0.5245917 0.3951413 0.4244723 -0.529462 0.3951413 0.4244723 -0.5341183 0.3951413 0.4244723 -0.5385787 0.3951413 0.4244723 -0.5428591 0.3951413 0.4244723 -0.5469733 0.3951413 0.4244723 -0.5509339 0.3951413 0.4244723 -0.5547519 0.3951413 0.4244723 -0.5584371 0.3951413 0.4244723 -0.5619986 0.3951413 0.4244723 -0.5654443 0.3951413 0.4244723 -0.5687816 0.3951413 0.4244723 -0.092819 0.4108177 0.4244723 -0.2262531 0.4108177 0.4244723 -0.2875993 0.4108177 0.4244723 -0.3262122 0.4108177 0.4244723 -0.3544566 0.4108177 0.4244723 -0.3767383 0.4108177 0.4244723 -0.3951413 0.4108177 0.4244723 -0.4108177 0.4108177 0.4244723 -0.4244723 0.4108177 0.4244723 -0.4365675 0.4108177 0.4244723 -0.4474232 0.4108177 0.4244723 -0.45727 0.4108177 0.4244723 -0.4662797 0.4108177 0.4244723 -0.4745834 0.4108177 0.4244723 -0.4822838 0.4108177 0.4244723 -0.4894626 0.4108177 0.4244723 -0.4961862 0.4108177 0.4244723 -0.5025087 0.4108177 0.4244723 -0.5084753 0.4108177 0.4244723 -0.514124 0.4108177 0.4244723 -0.519487 0.4108177 0.4244723 -0.5245917 0.4108177 0.4244723 -0.529462 0.4108177 0.4244723 -0.5341183 0.4108177 0.4244723 -0.5385787 0.4108177 0.4244723 -0.5428591 0.4108177 0.4244723 -0.5469733 0.4108177 0.4244723 -0.5509339 0.4108177 0.4244723 -0.5547519 0.4108177 0.4244723 -0.5584371 0.4108177 0.4244723 -0.5619986 0.4108177 0.4244723 -0.5654443 0.4108177 0.4244723 -0.5687816 0.4108177 0.4244723 -0.092819 0.4244723 0.4244723 -0.2262531 0.4244723 0.4244723 -0.2875993 0.4244723 0.4244723 -0.3262122 0.4244723 0.4244723 -0.3544566 0.4244723 0.4244723 -0.3767383 0.4244723 0.4244723 -0.3951413 0.4244723 0.4244723 -0.4108177 0.4244723 0.4244723 -0.4244723 0.4244723 0.4244723 -0.4365675 0.4244723 0.4244723 -0.4474232 0.4244723 0.4244723 -0.45727 0.4244723 0.4244723 -0.4662797 0.4244723 0.4244723 -0.4745834 0.4244723 0.4244723 -0.4822838 0.4244723 0.4244723 -0.4894626 0.4244723 0.4244723 -0.4961862 0.4244723 0.4244723 -0.5025087 0.4244723 0.4244723 -0.5084753 0.4244723 0.4244723 -0.514124 0.4244723 0.4244723 -0.519487 0.4244723 0.4244723 -0.5245917 0.4244723 0.4244723 -0.529462 0.4244723 0.4244723 -0.5341183 0.4244723 0.4244723 -0.5385787 0.4244723 0.4244723 -0.5428591 0.4244723 0.4244723 -0.5469733 0.4244723 0.4244723 -0.5509339 0.4244723 0.4244723 -0.5547519 0.4244723 0.4244723 -0.5584371 0.4244723 0.4244723 -0.5619986 0.4244723 0.4244723 -0.5654443 0.4244723 0.4244723 -0.5687816 0.4244723 0.4244723 -0.092819 0.4365675 0.4244723 -0.2262531 0.4365675 0.4244723 -0.2875993 0.4365675 0.4244723 -0.3262122 0.4365675 0.4244723 -0.3544566 0.4365675 0.4244723 -0.3767383 0.4365675 0.4244723 -0.3951413 0.4365675 0.4244723 -0.4108177 0.4365675 0.4244723 -0.4244723 0.4365675 0.4244723 -0.4365675 0.4365675 0.4244723 -0.4474232 0.4365675 0.4244723 -0.45727 0.4365675 0.4244723 -0.4662797 0.4365675 0.4244723 -0.4745834 0.4365675 0.4244723 -0.4822838 0.4365675 0.4244723 -0.4894626 0.4365675 0.4244723 -0.4961862 0.4365675 0.4244723 -0.5025087 0.4365675 0.4244723 -0.5084753 0.4365675 0.4244723 -0.514124 0.4365675 0.4244723 -0.519487 0.4365675 0.4244723 -0.5245917 0.4365675 0.4244723 -0.529462 0.4365675 0.4244723 -0.5341183 0.4365675 0.4244723 -0.5385787 0.4365675 0.4244723 -0.5428591 0.4365675 0.4244723 -0.5469733 0.4365675 0.4244723 -0.5509339 0.4365675 0.4244723 -0.5547519 0.4365675 0.4244723 -0.5584371 0.4365675 0.4244723 -0.5619986 0.4365675 0.4244723 -0.5654443 0.4365675 0.4244723 -0.5687816 0.4365675 0.4244723 -0.092819 0.4474232 0.4244723 -0.2262531 0.4474232 0.4244723 -0.2875993 0.4474232 0.4244723 -0.3262122 0.4474232 0.4244723 -0.3544566 0.4474232 0.4244723 -0.3767383 0.4474232 0.4244723 -0.3951413 0.4474232 0.4244723 -0.4108177 0.4474232 0.4244723 -0.4244723 0.4474232 0.4244723 -0.4365675 0.4474232 0.4244723 -0.4474232 0.4474232 0.4244723 -0.45727 0.4474232 0.4244723 -0.4662797 0.4474232 0.4244723 -0.4745834 0.4474232 0.4244723 -0.4822838 0.4474232 0.4244723 -0.4894626 0.4474232 0.4244723 -0.4961862 0.4474232 0.4244723 -0.5025087 0.4474232 0.4244723 -0.5084753 0.4474232 0.4244723 -0.514124 0.4474232 0.4244723 -0.519487 0.4474232 0.4244723 -0.5245917 0.4474232 0.4244723 -0.529462 0.4474232 0.4244723 -0.5341183 0.4474232 0.4244723 -0.5385787 0.4474232 0.4244723 -0.5428591 0.4474232 0.4244723 -0.5469733 0.4474232 0.4244723 -0.5509339 0.4474232 0.4244723 -0.5547519 0.4474232 0.4244723 -0.5584371 0.4474232 0.4244723 -0.5619986 0.4474232 0.4244723 -0.5654443 0.4474232 0.4244723 -0.5687816 0.4474232 0.4244723 -0.092819 0.45727 0.4244723 -0.2262531 0.45727 0.4244723 -0.2875993 0.45727 0.4244723 -0.3262122 0.45727 0.4244723 -0.3544566 0.45727 0.4244723 -0.3767383 0.45727 0.4244723 -0.3951413 0.45727 0.4244723 -0.4108177 0.45727 0.4244723 -0.4244723 0.45727 0.4244723 -0.4365675 0.45727 0.4244723 -0.4474232 0.45727 0.4244723 -0.45727 0.45727 0.4244723 -0.4662797 0.45727 0.4244723 -0.4745834 0.45727 0.4244723 -0.4822838 0.45727 0.4244723 -0.4894626 0.45727 0.4244723 -0.4961862 0.45727 0.4244723 -0.5025087 0.45727 0.4244723 -0.5084753 0.45727 0.4244723 -0.514124 0.45727 0.4244723 -0.519487 0.45727 0.4244723 -0.5245917 0.45727 0.4244723 -0.529462 0.45727 0.4244723 -0.5341183 0.45727 0.4244723 -0.5385787 0.45727 0.4244723 -0.5428591 0.45727 0.4244723 -0.5469733 0.45727 0.4244723 -0.5509339 0.45727 0.4244723 -0.5547519 0.45727 0.4244723 -0.5584371 0.45727 0.4244723 -0.5619986 0.45727 0.4244723 -0.5654443 0.45727 0.4244723 -0.5687816 0.45727 0.4244723 -0.092819 0.4662797 0.4244723 -0.2262531 0.4662797 0.4244723 -0.2875993 0.4662797 0.4244723 -0.3262122 0.4662797 0.4244723 -0.3544566 0.4662797 0.4244723 -0.3767383 0.4662797 0.4244723 -0.3951413 0.4662797 0.4244723 -0.4108177 0.4662797 0.4244723 -0.4244723 0.4662797 0.4244723 -0.4365675 0.4662797 0.4244723 -0.4474232 0.4662797 0.4244723 -0.45727 0.4662797 0.4244723 -0.4662797 0.4662797 0.4244723 -0.4745834 0.4662797 0.4244723 -0.4822838 0.4662797 0.4244723 -0.4894626 0.4662797 0.4244723 -0.4961862 0.4662797 0.4244723 -0.5025087 0.4662797 0.4244723 -0.5084753 0.4662797 0.4244723 -0.514124 0.4662797 0.4244723 -0.519487 0.4662797 0.4244723 -0.5245917 0.4662797 0.4244723 -0.529462 0.4662797 0.4244723 -0.5341183 0.4662797 0.4244723 -0.5385787 0.4662797 0.4244723 -0.5428591 0.4662797 0.4244723 -0.5469733 0.4662797 0.4244723 -0.5509339 0.4662797 0.4244723 -0.5547519 0.4662797 0.4244723 -0.5584371 0.4662797 0.4244723 -0.5619986 0.4662797 0.4244723 -0.5654443 0.4662797 0.4244723 -0.5687816 0.4662797 0.4244723 -0.092819 0.4745834 0.4244723 -0.2262531 0.4745834 0.4244723 -0.2875993 0.4745834 0.4244723 -0.3262122 0.4745834 0.4244723 -0.3544566 0.4745834 0.4244723 -0.3767383 0.4745834 0.4244723 -0.3951413 0.4745834 0.4244723 -0.4108177 0.4745834 0.4244723 -0.4244723 0.4745834 0.4244723 -0.4365675 0.4745834 0.4244723 -0.4474232 0.4745834 0.4244723 -0.45727 0.4745834 0.4244723 -0.4662797 0.4745834 0.4244723 -0.4745834 0.4745834 0.4244723 -0.4822838 0.4745834 0.4244723 -0.4894626 0.4745834 0.4244723 -0.4961862 0.4745834 0.4244723 -0.5025087 0.4745834 0.4244723 -0.5084753 0.4745834 0.4244723 -0.514124 0.4745834 0.4244723 -0.519487 0.4745834 0.4244723 -0.5245917 0.4745834 0.4244723 -0.529462 0.4745834 0.4244723 -0.5341183 0.4745834 0.4244723 -0.5385787 0.4745834 0.4244723 -0.5428591 0.4745834 0.4244723 -0.5469733 0.4745834 0.4244723 -0.5509339 0.4745834 0.4244723 -0.5547519 0.4745834 0.4244723 -0.5584371 0.4745834 0.4244723 -0.5619986 0.4745834 0.4244723 -0.5654443 0.4745834 0.4244723 -0.5687816 0.4745834 0.4244723 -0.092819 0.4822838 0.4244723 -0.2262531 0.4822838 0.4244723 -0.2875993 0.4822838 0.4244723 -0.3262122 0.4822838 0.4244723 -0.3544566 0.4822838 0.4244723 -0.3767383 0.4822838 0.4244723 -0.3951413 0.4822838 0.4244723 -0.4108177 0.4822838 0.4244723 -0.4244723 0.4822838 0.4244723 -0.4365675 0.4822838 0.4244723 -0.4474232 0.4822838 0.4244723 -0.45727 0.4822838 0.4244723 -0.4662797 0.4822838 0.4244723 -0.4745834 0.4822838 0.4244723 -0.4822838 0.4822838 0.4244723 -0.4894626 0.4822838 0.4244723 -0.4961862 0.4822838 0.4244723 -0.5025087 0.4822838 0.4244723 -0.5084753 0.4822838 0.4244723 -0.514124 0.4822838 0.4244723 -0.519487 0.4822838 0.4244723 -0.5245917 0.4822838 0.4244723 -0.529462 0.4822838 0.4244723 -0.5341183 0.4822838 0.4244723 -0.5385787 0.4822838 0.4244723 -0.5428591 0.4822838 0.4244723 -0.5469733 0.4822838 0.4244723 -0.5509339 0.4822838 0.4244723 -0.5547519 0.4822838 0.4244723 -0.5584371 0.4822838 0.4244723 -0.5619986 0.4822838 0.4244723 -0.5654443 0.4822838 0.4244723 -0.5687816 0.4822838 0.4244723 -0.092819 0.4894626 0.4244723 -0.2262531 0.4894626 0.4244723 -0.2875993 0.4894626 0.4244723 -0.3262122 0.4894626 0.4244723 -0.3544566 0.4894626 0.4244723 -0.3767383 0.4894626 0.4244723 -0.3951413 0.4894626 0.4244723 -0.4108177 0.4894626 0.4244723 -0.4244723 0.4894626 0.4244723 -0.4365675 0.4894626 0.4244723 -0.4474232 0.4894626 0.4244723 -0.45727 0.4894626 0.4244723 -0.4662797 0.4894626 0.4244723 -0.4745834 0.4894626 0.4244723 -0.4822838 0.4894626 0.4244723 -0.4894626 0.4894626 0.4244723 -0.4961862 0.4894626 0.4244723 -0.5025087 0.4894626 0.4244723 -0.5084753 0.4894626 0.4244723 -0.514124 0.4894626 0.4244723 -0.519487 0.4894626 0.4244723 -0.5245917 0.4894626 0.4244723 -0.529462 0.4894626 0.4244723 -0.5341183 0.4894626 0.4244723 -0.5385787 0.4894626 0.4244723 -0.5428591 0.4894626 0.4244723 -0.5469733 0.4894626 0.4244723 -0.5509339 0.4894626 0.4244723 -0.5547519 0.4894626 0.4244723 -0.5584371 0.4894626 0.4244723 -0.5619986 0.4894626 0.4244723 -0.5654443 0.4894626 0.4244723 -0.5687816 0.4894626 0.4244723 -0.092819 0.4961862 0.4244723 -0.2262531 0.4961862 0.4244723 -0.2875993 0.4961862 0.4244723 -0.3262122 0.4961862 0.4244723 -0.3544566 0.4961862 0.4244723 -0.3767383 0.4961862 0.4244723 -0.3951413 0.4961862 0.4244723 -0.4108177 0.4961862 0.4244723 -0.4244723 0.4961862 0.4244723 -0.4365675 0.4961862 0.4244723 -0.4474232 0.4961862 0.4244723 -0.45727 0.4961862 0.4244723 -0.4662797 0.4961862 0.4244723 -0.4745834 0.4961862 0.4244723 -0.4822838 0.4961862 0.4244723 -0.4894626 0.4961862 0.4244723 -0.4961862 0.4961862 0.4244723 -0.5025087 0.4961862 0.4244723 -0.5084753 0.4961862 0.4244723 -0.514124 0.4961862 0.4244723 -0.519487 0.4961862 0.4244723 -0.5245917 0.4961862 0.4244723 -0.529462 0.4961862 0.4244723 -0.5341183 0.4961862 0.4244723 -0.5385787 0.4961862 0.4244723 -0.5428591 0.4961862 0.4244723 -0.5469733 0.4961862 0.4244723 -0.5509339 0.4961862 0.4244723 -0.5547519 0.4961862 0.4244723 -0.5584371 0.4961862 0.4244723 -0.5619986 0.4961862 0.4244723 -0.5654443 0.4961862 0.4244723 -0.5687816 0.4961862 0.4244723 -0.092819 0.5025087 0.4244723 -0.2262531 0.5025087 0.4244723 -0.2875993 0.5025087 0.4244723 -0.3262122 0.5025087 0.4244723 -0.3544566 0.5025087 0.4244723 -0.3767383 0.5025087 0.4244723 -0.3951413 0.5025087 0.4244723 -0.4108177 0.5025087 0.4244723 -0.4244723 0.5025087 0.4244723 -0.4365675 0.5025087 0.4244723 -0.4474232 0.5025087 0.4244723 -0.45727 0.5025087 0.4244723 -0.4662797 0.5025087 0.4244723 -0.4745834 0.5025087 0.4244723 -0.4822838 0.5025087 0.4244723 -0.4894626 0.5025087 0.4244723 -0.4961862 0.5025087 0.4244723 -0.5025087 0.5025087 0.4244723 -0.5084753 0.5025087 0.4244723 -0.514124 0.5025087 0.4244723 -0.519487 0.5025087 0.4244723 -0.5245917 0.5025087 0.4244723 -0.529462 0.5025087 0.4244723 -0.5341183 0.5025087 0.4244723 -0.5385787 0.5025087 0.4244723 -0.5428591 0.5025087 0.4244723 -0.5469733 0.5025087 0.4244723 -0.5509339 0.5025087 0.4244723 -0.5547519 0.5025087 0.4244723 -0.5584371 0.5025087 0.4244723 -0.5619986 0.5025087 0.4244723 -0.5654443 0.5025087 0.4244723 -0.5687816 0.5025087 0.4244723 -0.092819 0.5084753 0.4244723 -0.2262531 0.5084753 0.4244723 -0.2875993 0.5084753 0.4244723 -0.3262122 0.5084753 0.4244723 -0.3544566 0.5084753 0.4244723 -0.3767383 0.5084753 0.4244723 -0.3951413 0.5084753 0.4244723 -0.4108177 0.5084753 0.4244723 -0.4244723 0.5084753 0.4244723 -0.4365675 0.5084753 0.4244723 -0.4474232 0.5084753 0.4244723 -0.45727 0.5084753 0.4244723 -0.4662797 0.5084753 0.4244723 -0.4745834 0.5084753 0.4244723 -0.4822838 0.5084753 0.4244723 -0.4894626 0.5084753 0.4244723 -0.4961862 0.5084753 0.4244723 -0.5025087 0.5084753 0.4244723 -0.5084753 0.5084753 0.4244723 -0.514124 0.5084753 0.4244723 -0.519487 0.5084753 0.4244723 -0.5245917 0.5084753 0.4244723 -0.529462 0.5084753 0.4244723 -0.5341183 0.5084753 0.4244723 -0.5385787 0.5084753 0.4244723 -0.5428591 0.5084753 0.4244723 -0.5469733 0.5084753 0.4244723 -0.5509339 0.5084753 0.4244723 -0.5547519 0.5084753 0.4244723 -0.5584371 0.5084753 0.4244723 -0.5619986 0.5084753 0.4244723 -0.5654443 0.5084753 0.4244723 -0.5687816 0.5084753 0.4244723 -0.092819 0.514124 0.4244723 -0.2262531 0.514124 0.4244723 -0.2875993 0.514124 0.4244723 -0.3262122 0.514124 0.4244723 -0.3544566 0.514124 0.4244723 -0.3767383 0.514124 0.4244723 -0.3951413 0.514124 0.4244723 -0.4108177 0.514124 0.4244723 -0.4244723 0.514124 0.4244723 -0.4365675 0.514124 0.4244723 -0.4474232 0.514124 0.4244723 -0.45727 0.514124 0.4244723 -0.4662797 0.514124 0.4244723 -0.4745834 0.514124 0.4244723 -0.4822838 0.514124 0.4244723 -0.4894626 0.514124 0.4244723 -0.4961862 0.514124 0.4244723 -0.5025087 0.514124 0.4244723 -0.5084753 0.514124 0.4244723 -0.514124 0.514124 0.4244723 -0.519487 0.514124 0.4244723 -0.5245917 0.514124 0.4244723 -0.529462 0.514124 0.4244723 -0.5341183 0.514124 0.4244723 -0.5385787 0.514124 0.4244723 -0.5428591 0.514124 0.4244723 -0.5469733 0.514124 0.4244723 -0.5509339 0.514124 0.4244723 -0.5547519 0.514124 0.4244723 -0.5584371 0.514124 0.4244723 -0.5619986 0.514124 0.4244723 -0.5654443 0.514124 0.4244723 -0.5687816 0.514124 0.4244723 -0.092819 0.519487 0.4244723 -0.2262531 0.519487 0.4244723 -0.2875993 0.519487 0.4244723 -0.3262122 0.519487 0.4244723 -0.3544566 0.519487 0.4244723 -0.3767383 0.519487 0.4244723 -0.3951413 0.519487 0.4244723 -0.4108177 0.519487 0.4244723 -0.4244723 0.519487 0.4244723 -0.4365675 0.519487 0.4244723 -0.4474232 0.519487 0.4244723 -0.45727 0.519487 0.4244723 -0.4662797 0.519487 0.4244723 -0.4745834 0.519487 0.4244723 -0.4822838 0.519487 0.4244723 -0.4894626 0.519487 0.4244723 -0.4961862 0.519487 0.4244723 -0.5025087 0.519487 0.4244723 -0.5084753 0.519487 0.4244723 -0.514124 0.519487 0.4244723 -0.519487 0.519487 0.4244723 -0.5245917 0.519487 0.4244723 -0.529462 0.519487 0.4244723 -0.5341183 0.519487 0.4244723 -0.5385787 0.519487 0.4244723 -0.5428591 0.519487 0.4244723 -0.5469733 0.519487 0.4244723 -0.5509339 0.519487 0.4244723 -0.5547519 0.519487 0.4244723 -0.5584371 0.519487 0.4244723 -0.5619986 0.519487 0.4244723 -0.5654443 0.519487 0.4244723 -0.5687816 0.519487 0.4244723 -0.092819 0.5245917 0.4244723 -0.2262531 0.5245917 0.4244723 -0.2875993 0.5245917 0.4244723 -0.3262122 0.5245917 0.4244723 -0.3544566 0.5245917 0.4244723 -0.3767383 0.5245917 0.4244723 -0.3951413 0.5245917 0.4244723 -0.4108177 0.5245917 0.4244723 -0.4244723 0.5245917 0.4244723 -0.4365675 0.5245917 0.4244723 -0.4474232 0.5245917 0.4244723 -0.45727 0.5245917 0.4244723 -0.4662797 0.5245917 0.4244723 -0.4745834 0.5245917 0.4244723 -0.4822838 0.5245917 0.4244723 -0.4894626 0.5245917 0.4244723 -0.4961862 0.5245917 0.4244723 -0.5025087 0.5245917 0.4244723 -0.5084753 0.5245917 0.4244723 -0.514124 0.5245917 0.4244723 -0.519487 0.5245917 0.4244723 -0.5245917 0.5245917 0.4244723 -0.529462 0.5245917 0.4244723 -0.5341183 0.5245917 0.4244723 -0.5385787 0.5245917 0.4244723 -0.5428591 0.5245917 0.4244723 -0.5469733 0.5245917 0.4244723 -0.5509339 0.5245917 0.4244723 -0.5547519 0.5245917 0.4244723 -0.5584371 0.5245917 0.4244723 -0.5619986 0.5245917 0.4244723 -0.5654443 0.5245917 0.4244723 -0.5687816 0.5245917 0.4244723 -0.092819 0.529462 0.4244723 -0.2262531 0.529462 0.4244723 -0.2875993 0.529462 0.4244723 -0.3262122 0.529462 0.4244723 -0.3544566 0.529462 0.4244723 -0.3767383 0.529462 0.4244723 -0.3951413 0.529462 0.4244723 -0.4108177 0.529462 0.4244723 -0.4244723 0.529462 0.4244723 -0.4365675 0.529462 0.4244723 -0.4474232 0.529462 0.4244723 -0.45727 0.529462 0.4244723 -0.4662797 0.529462 0.4244723 -0.4745834 0.529462 0.4244723 -0.4822838 0.529462 0.4244723 -0.4894626 0.529462 0.4244723 -0.4961862 0.529462 0.4244723 -0.5025087 0.529462 0.4244723 -0.5084753 0.529462 0.4244723 -0.514124 0.529462 0.4244723 -0.519487 0.529462 0.4244723 -0.5245917 0.529462 0.4244723 -0.529462 0.529462 0.4244723 -0.5341183 0.529462 0.4244723 -0.5385787 0.529462 0.4244723 -0.5428591 0.529462 0.4244723 -0.5469733 0.529462 0.4244723 -0.5509339 0.529462 0.4244723 -0.5547519 0.529462 0.4244723 -0.5584371 0.529462 0.4244723 -0.5619986 0.529462 0.4244723 -0.5654443 0.529462 0.4244723 -0.5687816 0.529462 0.4244723 -0.092819 0.5341183 0.4244723 -0.2262531 0.5341183 0.4244723 -0.2875993 0.5341183 0.4244723 -0.3262122 0.5341183 0.4244723 -0.3544566 0.5341183 0.4244723 -0.3767383 0.5341183 0.4244723 -0.3951413 0.5341183 0.4244723 -0.4108177 0.5341183 0.4244723 -0.4244723 0.5341183 0.4244723 -0.4365675 0.5341183 0.4244723 -0.4474232 0.5341183 0.4244723 -0.45727 0.5341183 0.4244723 -0.4662797 0.5341183 0.4244723 -0.4745834 0.5341183 0.4244723 -0.4822838 0.5341183 0.4244723 -0.4894626 0.5341183 0.4244723 -0.4961862 0.5341183 0.4244723 -0.5025087 0.5341183 0.4244723 -0.5084753 0.5341183 0.4244723 -0.514124 0.5341183 0.4244723 -0.519487 0.5341183 0.4244723 -0.5245917 0.5341183 0.4244723 -0.529462 0.5341183 0.4244723 -0.5341183 0.5341183 0.4244723 -0.5385787 0.5341183 0.4244723 -0.5428591 0.5341183 0.4244723 -0.5469733 0.5341183 0.4244723 -0.5509339 0.5341183 0.4244723 -0.5547519 0.5341183 0.4244723 -0.5584371 0.5341183 0.4244723 -0.5619986 0.5341183 0.4244723 -0.5654443 0.5341183 0.4244723 -0.5687816 0.5341183 0.4244723 -0.092819 0.5385787 0.4244723 -0.2262531 0.5385787 0.4244723 -0.2875993 0.5385787 0.4244723 -0.3262122 0.5385787 0.4244723 -0.3544566 0.5385787 0.4244723 -0.3767383 0.5385787 0.4244723 -0.3951413 0.5385787 0.4244723 -0.4108177 0.5385787 0.4244723 -0.4244723 0.5385787 0.4244723 -0.4365675 0.5385787 0.4244723 -0.4474232 0.5385787 0.4244723 -0.45727 0.5385787 0.4244723 -0.4662797 0.5385787 0.4244723 -0.4745834 0.5385787 0.4244723 -0.4822838 0.5385787 0.4244723 -0.4894626 0.5385787 0.4244723 -0.4961862 0.5385787 0.4244723 -0.5025087 0.5385787 0.4244723 -0.5084753 0.5385787 0.4244723 -0.514124 0.5385787 0.4244723 -0.519487 0.5385787 0.4244723 -0.5245917 0.5385787 0.4244723 -0.529462 0.5385787 0.4244723 -0.5341183 0.5385787 0.4244723 -0.5385787 0.5385787 0.4244723 -0.5428591 0.5385787 0.4244723 -0.5469733 0.5385787 0.4244723 -0.5509339 0.5385787 0.4244723 -0.5547519 0.5385787 0.4244723 -0.5584371 0.5385787 0.4244723 -0.5619986 0.5385787 0.4244723 -0.5654443 0.5385787 0.4244723 -0.5687816 0.5385787 0.4244723 -0.092819 0.5428591 0.4244723 -0.2262531 0.5428591 0.4244723 -0.2875993 0.5428591 0.4244723 -0.3262122 0.5428591 0.4244723 -0.3544566 0.5428591 0.4244723 -0.3767383 0.5428591 0.4244723 -0.3951413 0.5428591 0.4244723 -0.4108177 0.5428591 0.4244723 -0.4244723 0.5428591 0.4244723 -0.4365675 0.5428591 0.4244723 -0.4474232 0.5428591 0.4244723 -0.45727 0.5428591 0.4244723 -0.4662797 0.5428591 0.4244723 -0.4745834 0.5428591 0.4244723 -0.4822838 0.5428591 0.4244723 -0.4894626 0.5428591 0.4244723 -0.4961862 0.5428591 0.4244723 -0.5025087 0.5428591 0.4244723 -0.5084753 0.5428591 0.4244723 -0.514124 0.5428591 0.4244723 -0.519487 0.5428591 0.4244723 -0.5245917 0.5428591 0.4244723 -0.529462 0.5428591 0.4244723 -0.5341183 0.5428591 0.4244723 -0.5385787 0.5428591 0.4244723 -0.5428591 0.5428591 0.4244723 -0.5469733 0.5428591 0.4244723 -0.5509339 0.5428591 0.4244723 -0.5547519 0.5428591 0.4244723 -0.5584371 0.5428591 0.4244723 -0.5619986 0.5428591 0.4244723 -0.5654443 0.5428591 0.4244723 -0.5687816 0.5428591 0.4244723 -0.092819 0.5469733 0.4244723 -0.2262531 0.5469733 0.4244723 -0.2875993 0.5469733 0.4244723 -0.3262122 0.5469733 0.4244723 -0.3544566 0.5469733 0.4244723 -0.3767383 0.5469733 0.4244723 -0.3951413 0.5469733 0.4244723 -0.4108177 0.5469733 0.4244723 -0.4244723 0.5469733 0.4244723 -0.4365675 0.5469733 0.4244723 -0.4474232 0.5469733 0.4244723 -0.45727 0.5469733 0.4244723 -0.4662797 0.5469733 0.4244723 -0.4745834 0.5469733 0.4244723 -0.4822838 0.5469733 0.4244723 -0.4894626 0.5469733 0.4244723 -0.4961862 0.5469733 0.4244723 -0.5025087 0.5469733 0.4244723 -0.5084753 0.5469733 0.4244723 -0.514124 0.5469733 0.4244723 -0.519487 0.5469733 0.4244723 -0.5245917 0.5469733 0.4244723 -0.529462 0.5469733 0.4244723 -0.5341183 0.5469733 0.4244723 -0.5385787 0.5469733 0.4244723 -0.5428591 0.5469733 0.4244723 -0.5469733 0.5469733 0.4244723 -0.5509339 0.5469733 0.4244723 -0.5547519 0.5469733 0.4244723 -0.5584371 0.5469733 0.4244723 -0.5619986 0.5469733 0.4244723 -0.5654443 0.5469733 0.4244723 -0.5687816 0.5469733 0.4244723 -0.092819 0.5509339 0.4244723 -0.2262531 0.5509339 0.4244723 -0.2875993 0.5509339 0.4244723 -0.3262122 0.5509339 0.4244723 -0.3544566 0.5509339 0.4244723 -0.3767383 0.5509339 0.4244723 -0.3951413 0.5509339 0.4244723 -0.4108177 0.5509339 0.4244723 -0.4244723 0.5509339 0.4244723 -0.4365675 0.5509339 0.4244723 -0.4474232 0.5509339 0.4244723 -0.45727 0.5509339 0.4244723 -0.4662797 0.5509339 0.4244723 -0.4745834 0.5509339 0.4244723 -0.4822838 0.5509339 0.4244723 -0.4894626 0.5509339 0.4244723 -0.4961862 0.5509339 0.4244723 -0.5025087 0.5509339 0.4244723 -0.5084753 0.5509339 0.4244723 -0.514124 0.5509339 0.4244723 -0.519487 0.5509339 0.4244723 -0.5245917 0.5509339 0.4244723 -0.529462 0.5509339 0.4244723 -0.5341183 0.5509339 0.4244723 -0.5385787 0.5509339 0.4244723 -0.5428591 0.5509339 0.4244723 -0.5469733 0.5509339 0.4244723 -0.5509339 0.5509339 0.4244723 -0.5547519 0.5509339 0.4244723 -0.5584371 0.5509339 0.4244723 -0.5619986 0.5509339 0.4244723 -0.5654443 0.5509339 0.4244723 -0.5687816 0.5509339 0.4244723 -0.092819 0.5547519 0.4244723 -0.2262531 0.5547519 0.4244723 -0.2875993 0.5547519 0.4244723 -0.3262122 0.5547519 0.4244723 -0.3544566 0.5547519 0.4244723 -0.3767383 0.5547519 0.4244723 -0.3951413 0.5547519 0.4244723 -0.4108177 0.5547519 0.4244723 -0.4244723 0.5547519 0.4244723 -0.4365675 0.5547519 0.4244723 -0.4474232 0.5547519 0.4244723 -0.45727 0.5547519 0.4244723 -0.4662797 0.5547519 0.4244723 -0.4745834 0.5547519 0.4244723 -0.4822838 0.5547519 0.4244723 -0.4894626 0.5547519 0.4244723 -0.4961862 0.5547519 0.4244723 -0.5025087 0.5547519 0.4244723 -0.5084753 0.5547519 0.4244723 -0.514124 0.5547519 0.4244723 -0.519487 0.5547519 0.4244723 -0.5245917 0.5547519 0.4244723 -0.529462 0.5547519 0.4244723 -0.5341183 0.5547519 0.4244723 -0.5385787 0.5547519 0.4244723 -0.5428591 0.5547519 0.4244723 -0.5469733 0.5547519 0.4244723 -0.5509339 0.5547519 0.4244723 -0.5547519 0.5547519 0.4244723 -0.5584371 0.5547519 0.4244723 -0.5619986 0.5547519 0.4244723 -0.5654443 0.5547519 0.4244723 -0.5687816 0.5547519 0.4244723 -0.092819 0.5584371 0.4244723 -0.2262531 0.5584371 0.4244723 -0.2875993 0.5584371 0.4244723 -0.3262122 0.5584371 0.4244723 -0.3544566 0.5584371 0.4244723 -0.3767383 0.5584371 0.4244723 -0.3951413 0.5584371 0.4244723 -0.4108177 0.5584371 0.4244723 -0.4244723 0.5584371 0.4244723 -0.4365675 0.5584371 0.4244723 -0.4474232 0.5584371 0.4244723 -0.45727 0.5584371 0.4244723 -0.4662797 0.5584371 0.4244723 -0.4745834 0.5584371 0.4244723 -0.4822838 0.5584371 0.4244723 -0.4894626 0.5584371 0.4244723 -0.4961862 0.5584371 0.4244723 -0.5025087 0.5584371 0.4244723 -0.5084753 0.5584371 0.4244723 -0.514124 0.5584371 0.4244723 -0.519487 0.5584371 0.4244723 -0.5245917 0.5584371 0.4244723 -0.529462 0.5584371 0.4244723 -0.5341183 0.5584371 0.4244723 -0.5385787 0.5584371 0.4244723 -0.5428591 0.5584371 0.4244723 -0.5469733 0.5584371 0.4244723 -0.5509339 0.5584371 0.4244723 -0.5547519 0.5584371 0.4244723 -0.5584371 0.5584371 0.4244723 -0.5619986 0.5584371 0.4244723 -0.5654443 0.5584371 0.4244723 -0.5687816 0.5584371 0.4244723 -0.092819 0.5619986 0.4244723 -0.2262531 0.5619986 0.4244723 -0.2875993 0.5619986 0.4244723 -0.3262122 0.5619986 0.4244723 -0.3544566 0.5619986 0.4244723 -0.3767383 0.5619986 0.4244723 -0.3951413 0.5619986 0.4244723 -0.4108177 0.5619986 0.4244723 -0.4244723 0.5619986 0.4244723 -0.4365675 0.5619986 0.4244723 -0.4474232 0.5619986 0.4244723 -0.45727 0.5619986 0.4244723 -0.4662797 0.5619986 0.4244723 -0.4745834 0.5619986 0.4244723 -0.4822838 0.5619986 0.4244723 -0.4894626 0.5619986 0.4244723 -0.4961862 0.5619986 0.4244723 -0.5025087 0.5619986 0.4244723 -0.5084753 0.5619986 0.4244723 -0.514124 0.5619986 0.4244723 -0.519487 0.5619986 0.4244723 -0.5245917 0.5619986 0.4244723 -0.529462 0.5619986 0.4244723 -0.5341183 0.5619986 0.4244723 -0.5385787 0.5619986 0.4244723 -0.5428591 0.5619986 0.4244723 -0.5469733 0.5619986 0.4244723 -0.5509339 0.5619986 0.4244723 -0.5547519 0.5619986 0.4244723 -0.5584371 0.5619986 0.4244723 -0.5619986 0.5619986 0.4244723 -0.5654443 0.5619986 0.4244723 -0.5687816 0.5619986 0.4244723 -0.092819 0.5654443 0.4244723 -0.2262531 0.5654443 0.4244723 -0.2875993 0.5654443 0.4244723 -0.3262122 0.5654443 0.4244723 -0.3544566 0.5654443 0.4244723 -0.3767383 0.5654443 0.4244723 -0.3951413 0.5654443 0.4244723 -0.4108177 0.5654443 0.4244723 -0.4244723 0.5654443 0.4244723 -0.4365675 0.5654443 0.4244723 -0.4474232 0.5654443 0.4244723 -0.45727 0.5654443 0.4244723 -0.4662797 0.5654443 0.4244723 -0.4745834 0.5654443 0.4244723 -0.4822838 0.5654443 0.4244723 -0.4894626 0.5654443 0.4244723 -0.4961862 0.5654443 0.4244723 -0.5025087 0.5654443 0.4244723 -0.5084753 0.5654443 0.4244723 -0.514124 0.5654443 0.4244723 -0.519487 0.5654443 0.4244723 -0.5245917 0.5654443 0.4244723 -0.529462 0.5654443 0.4244723 -0.5341183 0.5654443 0.4244723 -0.5385787 0.5654443 0.4244723 -0.5428591 0.5654443 0.4244723 -0.5469733 0.5654443 0.4244723 -0.5509339 0.5654443 0.4244723 -0.5547519 0.5654443 0.4244723 -0.5584371 0.5654443 0.4244723 -0.5619986 0.5654443 0.4244723 -0.5654443 0.5654443 0.4244723 -0.5687816 0.5654443 0.4244723 -0.092819 0.5687816 0.4244723 -0.2262531 0.5687816 0.4244723 -0.2875993 0.5687816 0.4244723 -0.3262122 0.5687816 0.4244723 -0.3544566 0.5687816 0.4244723 -0.3767383 0.5687816 0.4244723 -0.3951413 0.5687816 0.4244723 -0.4108177 0.5687816 0.4244723 -0.4244723 0.5687816 0.4244723 -0.4365675 0.5687816 0.4244723 -0.4474232 0.5687816 0.4244723 -0.45727 0.5687816 0.4244723 -0.4662797 0.5687816 0.4244723 -0.4745834 0.5687816 0.4244723 -0.4822838 0.5687816 0.4244723 -0.4894626 0.5687816 0.4244723 -0.4961862 0.5687816 0.4244723 -0.5025087 0.5687816 0.4244723 -0.5084753 0.5687816 0.4244723 -0.514124 0.5687816 0.4244723 -0.519487 0.5687816 0.4244723 -0.5245917 0.5687816 0.4244723 -0.529462 0.5687816 0.4244723 -0.5341183 0.5687816 0.4244723 -0.5385787 0.5687816 0.4244723 -0.5428591 0.5687816 0.4244723 -0.5469733 0.5687816 0.4244723 -0.5509339 0.5687816 0.4244723 -0.5547519 0.5687816 0.4244723 -0.5584371 0.5687816 0.4244723 -0.5619986 0.5687816 0.4244723 -0.5654443 0.5687816 0.4244723 -0.5687816 0.5687816 0.4244723 -0.092819 0.092819 0.4365675 -0.2262531 0.092819 0.4365675 -0.2875993 0.092819 0.4365675 -0.3262122 0.092819 0.4365675 -0.3544566 0.092819 0.4365675 -0.3767383 0.092819 0.4365675 -0.3951413 0.092819 0.4365675 -0.4108177 0.092819 0.4365675 -0.4244723 0.092819 0.4365675 -0.4365675 0.092819 0.4365675 -0.4474232 0.092819 0.4365675 -0.45727 0.092819 0.4365675 -0.4662797 0.092819 0.4365675 -0.4745834 0.092819 0.4365675 -0.4822838 0.092819 0.4365675 -0.4894626 0.092819 0.4365675 -0.4961862 0.092819 0.4365675 -0.5025087 0.092819 0.4365675 -0.5084753 0.092819 0.4365675 -0.514124 0.092819 0.4365675 -0.519487 0.092819 0.4365675 -0.5245917 0.092819 0.4365675 -0.529462 0.092819 0.4365675 -0.5341183 0.092819 0.4365675 -0.5385787 0.092819 0.4365675 -0.5428591 0.092819 0.4365675 -0.5469733 0.092819 0.4365675 -0.5509339 0.092819 0.4365675 -0.5547519 0.092819 0.4365675 -0.5584371 0.092819 0.4365675 -0.5619986 0.092819 0.4365675 -0.5654443 0.092819 0.4365675 -0.5687816 0.092819 0.4365675 -0.092819 0.2262531 0.4365675 -0.2262531 0.2262531 0.4365675 -0.2875993 0.2262531 0.4365675 -0.3262122 0.2262531 0.4365675 -0.3544566 0.2262531 0.4365675 -0.3767383 0.2262531 0.4365675 -0.3951413 0.2262531 0.4365675 -0.4108177 0.2262531 0.4365675 -0.4244723 0.2262531 0.4365675 -0.4365675 0.2262531 0.4365675 -0.4474232 0.2262531 0.4365675 -0.45727 0.2262531 0.4365675 -0.4662797 0.2262531 0.4365675 -0.4745834 0.2262531 0.4365675 -0.4822838 0.2262531 0.4365675 -0.4894626 0.2262531 0.4365675 -0.4961862 0.2262531 0.4365675 -0.5025087 0.2262531 0.4365675 -0.5084753 0.2262531 0.4365675 -0.514124 0.2262531 0.4365675 -0.519487 0.2262531 0.4365675 -0.5245917 0.2262531 0.4365675 -0.529462 0.2262531 0.4365675 -0.5341183 0.2262531 0.4365675 -0.5385787 0.2262531 0.4365675 -0.5428591 0.2262531 0.4365675 -0.5469733 0.2262531 0.4365675 -0.5509339 0.2262531 0.4365675 -0.5547519 0.2262531 0.4365675 -0.5584371 0.2262531 0.4365675 -0.5619986 0.2262531 0.4365675 -0.5654443 0.2262531 0.4365675 -0.5687816 0.2262531 0.4365675 -0.092819 0.2875993 0.4365675 -0.2262531 0.2875993 0.4365675 -0.2875993 0.2875993 0.4365675 -0.3262122 0.2875993 0.4365675 -0.3544566 0.2875993 0.4365675 -0.3767383 0.2875993 0.4365675 -0.3951413 0.2875993 0.4365675 -0.4108177 0.2875993 0.4365675 -0.4244723 0.2875993 0.4365675 -0.4365675 0.2875993 0.4365675 -0.4474232 0.2875993 0.4365675 -0.45727 0.2875993 0.4365675 -0.4662797 0.2875993 0.4365675 -0.4745834 0.2875993 0.4365675 -0.4822838 0.2875993 0.4365675 -0.4894626 0.2875993 0.4365675 -0.4961862 0.2875993 0.4365675 -0.5025087 0.2875993 0.4365675 -0.5084753 0.2875993 0.4365675 -0.514124 0.2875993 0.4365675 -0.519487 0.2875993 0.4365675 -0.5245917 0.2875993 0.4365675 -0.529462 0.2875993 0.4365675 -0.5341183 0.2875993 0.4365675 -0.5385787 0.2875993 0.4365675 -0.5428591 0.2875993 0.4365675 -0.5469733 0.2875993 0.4365675 -0.5509339 0.2875993 0.4365675 -0.5547519 0.2875993 0.4365675 -0.5584371 0.2875993 0.4365675 -0.5619986 0.2875993 0.4365675 -0.5654443 0.2875993 0.4365675 -0.5687816 0.2875993 0.4365675 -0.092819 0.3262122 0.4365675 -0.2262531 0.3262122 0.4365675 -0.2875993 0.3262122 0.4365675 -0.3262122 0.3262122 0.4365675 -0.3544566 0.3262122 0.4365675 -0.3767383 0.3262122 0.4365675 -0.3951413 0.3262122 0.4365675 -0.4108177 0.3262122 0.4365675 -0.4244723 0.3262122 0.4365675 -0.4365675 0.3262122 0.4365675 -0.4474232 0.3262122 0.4365675 -0.45727 0.3262122 0.4365675 -0.4662797 0.3262122 0.4365675 -0.4745834 0.3262122 0.4365675 -0.4822838 0.3262122 0.4365675 -0.4894626 0.3262122 0.4365675 -0.4961862 0.3262122 0.4365675 -0.5025087 0.3262122 0.4365675 -0.5084753 0.3262122 0.4365675 -0.514124 0.3262122 0.4365675 -0.519487 0.3262122 0.4365675 -0.5245917 0.3262122 0.4365675 -0.529462 0.3262122 0.4365675 -0.5341183 0.3262122 0.4365675 -0.5385787 0.3262122 0.4365675 -0.5428591 0.3262122 0.4365675 -0.5469733 0.3262122 0.4365675 -0.5509339 0.3262122 0.4365675 -0.5547519 0.3262122 0.4365675 -0.5584371 0.3262122 0.4365675 -0.5619986 0.3262122 0.4365675 -0.5654443 0.3262122 0.4365675 -0.5687816 0.3262122 0.4365675 -0.092819 0.3544566 0.4365675 -0.2262531 0.3544566 0.4365675 -0.2875993 0.3544566 0.4365675 -0.3262122 0.3544566 0.4365675 -0.3544566 0.3544566 0.4365675 -0.3767383 0.3544566 0.4365675 -0.3951413 0.3544566 0.4365675 -0.4108177 0.3544566 0.4365675 -0.4244723 0.3544566 0.4365675 -0.4365675 0.3544566 0.4365675 -0.4474232 0.3544566 0.4365675 -0.45727 0.3544566 0.4365675 -0.4662797 0.3544566 0.4365675 -0.4745834 0.3544566 0.4365675 -0.4822838 0.3544566 0.4365675 -0.4894626 0.3544566 0.4365675 -0.4961862 0.3544566 0.4365675 -0.5025087 0.3544566 0.4365675 -0.5084753 0.3544566 0.4365675 -0.514124 0.3544566 0.4365675 -0.519487 0.3544566 0.4365675 -0.5245917 0.3544566 0.4365675 -0.529462 0.3544566 0.4365675 -0.5341183 0.3544566 0.4365675 -0.5385787 0.3544566 0.4365675 -0.5428591 0.3544566 0.4365675 -0.5469733 0.3544566 0.4365675 -0.5509339 0.3544566 0.4365675 -0.5547519 0.3544566 0.4365675 -0.5584371 0.3544566 0.4365675 -0.5619986 0.3544566 0.4365675 -0.5654443 0.3544566 0.4365675 -0.5687816 0.3544566 0.4365675 -0.092819 0.3767383 0.4365675 -0.2262531 0.3767383 0.4365675 -0.2875993 0.3767383 0.4365675 -0.3262122 0.3767383 0.4365675 -0.3544566 0.3767383 0.4365675 -0.3767383 0.3767383 0.4365675 -0.3951413 0.3767383 0.4365675 -0.4108177 0.3767383 0.4365675 -0.4244723 0.3767383 0.4365675 -0.4365675 0.3767383 0.4365675 -0.4474232 0.3767383 0.4365675 -0.45727 0.3767383 0.4365675 -0.4662797 0.3767383 0.4365675 -0.4745834 0.3767383 0.4365675 -0.4822838 0.3767383 0.4365675 -0.4894626 0.3767383 0.4365675 -0.4961862 0.3767383 0.4365675 -0.5025087 0.3767383 0.4365675 -0.5084753 0.3767383 0.4365675 -0.514124 0.3767383 0.4365675 -0.519487 0.3767383 0.4365675 -0.5245917 0.3767383 0.4365675 -0.529462 0.3767383 0.4365675 -0.5341183 0.3767383 0.4365675 -0.5385787 0.3767383 0.4365675 -0.5428591 0.3767383 0.4365675 -0.5469733 0.3767383 0.4365675 -0.5509339 0.3767383 0.4365675 -0.5547519 0.3767383 0.4365675 -0.5584371 0.3767383 0.4365675 -0.5619986 0.3767383 0.4365675 -0.5654443 0.3767383 0.4365675 -0.5687816 0.3767383 0.4365675 -0.092819 0.3951413 0.4365675 -0.2262531 0.3951413 0.4365675 -0.2875993 0.3951413 0.4365675 -0.3262122 0.3951413 0.4365675 -0.3544566 0.3951413 0.4365675 -0.3767383 0.3951413 0.4365675 -0.3951413 0.3951413 0.4365675 -0.4108177 0.3951413 0.4365675 -0.4244723 0.3951413 0.4365675 -0.4365675 0.3951413 0.4365675 -0.4474232 0.3951413 0.4365675 -0.45727 0.3951413 0.4365675 -0.4662797 0.3951413 0.4365675 -0.4745834 0.3951413 0.4365675 -0.4822838 0.3951413 0.4365675 -0.4894626 0.3951413 0.4365675 -0.4961862 0.3951413 0.4365675 -0.5025087 0.3951413 0.4365675 -0.5084753 0.3951413 0.4365675 -0.514124 0.3951413 0.4365675 -0.519487 0.3951413 0.4365675 -0.5245917 0.3951413 0.4365675 -0.529462 0.3951413 0.4365675 -0.5341183 0.3951413 0.4365675 -0.5385787 0.3951413 0.4365675 -0.5428591 0.3951413 0.4365675 -0.5469733 0.3951413 0.4365675 -0.5509339 0.3951413 0.4365675 -0.5547519 0.3951413 0.4365675 -0.5584371 0.3951413 0.4365675 -0.5619986 0.3951413 0.4365675 -0.5654443 0.3951413 0.4365675 -0.5687816 0.3951413 0.4365675 -0.092819 0.4108177 0.4365675 -0.2262531 0.4108177 0.4365675 -0.2875993 0.4108177 0.4365675 -0.3262122 0.4108177 0.4365675 -0.3544566 0.4108177 0.4365675 -0.3767383 0.4108177 0.4365675 -0.3951413 0.4108177 0.4365675 -0.4108177 0.4108177 0.4365675 -0.4244723 0.4108177 0.4365675 -0.4365675 0.4108177 0.4365675 -0.4474232 0.4108177 0.4365675 -0.45727 0.4108177 0.4365675 -0.4662797 0.4108177 0.4365675 -0.4745834 0.4108177 0.4365675 -0.4822838 0.4108177 0.4365675 -0.4894626 0.4108177 0.4365675 -0.4961862 0.4108177 0.4365675 -0.5025087 0.4108177 0.4365675 -0.5084753 0.4108177 0.4365675 -0.514124 0.4108177 0.4365675 -0.519487 0.4108177 0.4365675 -0.5245917 0.4108177 0.4365675 -0.529462 0.4108177 0.4365675 -0.5341183 0.4108177 0.4365675 -0.5385787 0.4108177 0.4365675 -0.5428591 0.4108177 0.4365675 -0.5469733 0.4108177 0.4365675 -0.5509339 0.4108177 0.4365675 -0.5547519 0.4108177 0.4365675 -0.5584371 0.4108177 0.4365675 -0.5619986 0.4108177 0.4365675 -0.5654443 0.4108177 0.4365675 -0.5687816 0.4108177 0.4365675 -0.092819 0.4244723 0.4365675 -0.2262531 0.4244723 0.4365675 -0.2875993 0.4244723 0.4365675 -0.3262122 0.4244723 0.4365675 -0.3544566 0.4244723 0.4365675 -0.3767383 0.4244723 0.4365675 -0.3951413 0.4244723 0.4365675 -0.4108177 0.4244723 0.4365675 -0.4244723 0.4244723 0.4365675 -0.4365675 0.4244723 0.4365675 -0.4474232 0.4244723 0.4365675 -0.45727 0.4244723 0.4365675 -0.4662797 0.4244723 0.4365675 -0.4745834 0.4244723 0.4365675 -0.4822838 0.4244723 0.4365675 -0.4894626 0.4244723 0.4365675 -0.4961862 0.4244723 0.4365675 -0.5025087 0.4244723 0.4365675 -0.5084753 0.4244723 0.4365675 -0.514124 0.4244723 0.4365675 -0.519487 0.4244723 0.4365675 -0.5245917 0.4244723 0.4365675 -0.529462 0.4244723 0.4365675 -0.5341183 0.4244723 0.4365675 -0.5385787 0.4244723 0.4365675 -0.5428591 0.4244723 0.4365675 -0.5469733 0.4244723 0.4365675 -0.5509339 0.4244723 0.4365675 -0.5547519 0.4244723 0.4365675 -0.5584371 0.4244723 0.4365675 -0.5619986 0.4244723 0.4365675 -0.5654443 0.4244723 0.4365675 -0.5687816 0.4244723 0.4365675 -0.092819 0.4365675 0.4365675 -0.2262531 0.4365675 0.4365675 -0.2875993 0.4365675 0.4365675 -0.3262122 0.4365675 0.4365675 -0.3544566 0.4365675 0.4365675 -0.3767383 0.4365675 0.4365675 -0.3951413 0.4365675 0.4365675 -0.4108177 0.4365675 0.4365675 -0.4244723 0.4365675 0.4365675 -0.4365675 0.4365675 0.4365675 -0.4474232 0.4365675 0.4365675 -0.45727 0.4365675 0.4365675 -0.4662797 0.4365675 0.4365675 -0.4745834 0.4365675 0.4365675 -0.4822838 0.4365675 0.4365675 -0.4894626 0.4365675 0.4365675 -0.4961862 0.4365675 0.4365675 -0.5025087 0.4365675 0.4365675 -0.5084753 0.4365675 0.4365675 -0.514124 0.4365675 0.4365675 -0.519487 0.4365675 0.4365675 -0.5245917 0.4365675 0.4365675 -0.529462 0.4365675 0.4365675 -0.5341183 0.4365675 0.4365675 -0.5385787 0.4365675 0.4365675 -0.5428591 0.4365675 0.4365675 -0.5469733 0.4365675 0.4365675 -0.5509339 0.4365675 0.4365675 -0.5547519 0.4365675 0.4365675 -0.5584371 0.4365675 0.4365675 -0.5619986 0.4365675 0.4365675 -0.5654443 0.4365675 0.4365675 -0.5687816 0.4365675 0.4365675 -0.092819 0.4474232 0.4365675 -0.2262531 0.4474232 0.4365675 -0.2875993 0.4474232 0.4365675 -0.3262122 0.4474232 0.4365675 -0.3544566 0.4474232 0.4365675 -0.3767383 0.4474232 0.4365675 -0.3951413 0.4474232 0.4365675 -0.4108177 0.4474232 0.4365675 -0.4244723 0.4474232 0.4365675 -0.4365675 0.4474232 0.4365675 -0.4474232 0.4474232 0.4365675 -0.45727 0.4474232 0.4365675 -0.4662797 0.4474232 0.4365675 -0.4745834 0.4474232 0.4365675 -0.4822838 0.4474232 0.4365675 -0.4894626 0.4474232 0.4365675 -0.4961862 0.4474232 0.4365675 -0.5025087 0.4474232 0.4365675 -0.5084753 0.4474232 0.4365675 -0.514124 0.4474232 0.4365675 -0.519487 0.4474232 0.4365675 -0.5245917 0.4474232 0.4365675 -0.529462 0.4474232 0.4365675 -0.5341183 0.4474232 0.4365675 -0.5385787 0.4474232 0.4365675 -0.5428591 0.4474232 0.4365675 -0.5469733 0.4474232 0.4365675 -0.5509339 0.4474232 0.4365675 -0.5547519 0.4474232 0.4365675 -0.5584371 0.4474232 0.4365675 -0.5619986 0.4474232 0.4365675 -0.5654443 0.4474232 0.4365675 -0.5687816 0.4474232 0.4365675 -0.092819 0.45727 0.4365675 -0.2262531 0.45727 0.4365675 -0.2875993 0.45727 0.4365675 -0.3262122 0.45727 0.4365675 -0.3544566 0.45727 0.4365675 -0.3767383 0.45727 0.4365675 -0.3951413 0.45727 0.4365675 -0.4108177 0.45727 0.4365675 -0.4244723 0.45727 0.4365675 -0.4365675 0.45727 0.4365675 -0.4474232 0.45727 0.4365675 -0.45727 0.45727 0.4365675 -0.4662797 0.45727 0.4365675 -0.4745834 0.45727 0.4365675 -0.4822838 0.45727 0.4365675 -0.4894626 0.45727 0.4365675 -0.4961862 0.45727 0.4365675 -0.5025087 0.45727 0.4365675 -0.5084753 0.45727 0.4365675 -0.514124 0.45727 0.4365675 -0.519487 0.45727 0.4365675 -0.5245917 0.45727 0.4365675 -0.529462 0.45727 0.4365675 -0.5341183 0.45727 0.4365675 -0.5385787 0.45727 0.4365675 -0.5428591 0.45727 0.4365675 -0.5469733 0.45727 0.4365675 -0.5509339 0.45727 0.4365675 -0.5547519 0.45727 0.4365675 -0.5584371 0.45727 0.4365675 -0.5619986 0.45727 0.4365675 -0.5654443 0.45727 0.4365675 -0.5687816 0.45727 0.4365675 -0.092819 0.4662797 0.4365675 -0.2262531 0.4662797 0.4365675 -0.2875993 0.4662797 0.4365675 -0.3262122 0.4662797 0.4365675 -0.3544566 0.4662797 0.4365675 -0.3767383 0.4662797 0.4365675 -0.3951413 0.4662797 0.4365675 -0.4108177 0.4662797 0.4365675 -0.4244723 0.4662797 0.4365675 -0.4365675 0.4662797 0.4365675 -0.4474232 0.4662797 0.4365675 -0.45727 0.4662797 0.4365675 -0.4662797 0.4662797 0.4365675 -0.4745834 0.4662797 0.4365675 -0.4822838 0.4662797 0.4365675 -0.4894626 0.4662797 0.4365675 -0.4961862 0.4662797 0.4365675 -0.5025087 0.4662797 0.4365675 -0.5084753 0.4662797 0.4365675 -0.514124 0.4662797 0.4365675 -0.519487 0.4662797 0.4365675 -0.5245917 0.4662797 0.4365675 -0.529462 0.4662797 0.4365675 -0.5341183 0.4662797 0.4365675 -0.5385787 0.4662797 0.4365675 -0.5428591 0.4662797 0.4365675 -0.5469733 0.4662797 0.4365675 -0.5509339 0.4662797 0.4365675 -0.5547519 0.4662797 0.4365675 -0.5584371 0.4662797 0.4365675 -0.5619986 0.4662797 0.4365675 -0.5654443 0.4662797 0.4365675 -0.5687816 0.4662797 0.4365675 -0.092819 0.4745834 0.4365675 -0.2262531 0.4745834 0.4365675 -0.2875993 0.4745834 0.4365675 -0.3262122 0.4745834 0.4365675 -0.3544566 0.4745834 0.4365675 -0.3767383 0.4745834 0.4365675 -0.3951413 0.4745834 0.4365675 -0.4108177 0.4745834 0.4365675 -0.4244723 0.4745834 0.4365675 -0.4365675 0.4745834 0.4365675 -0.4474232 0.4745834 0.4365675 -0.45727 0.4745834 0.4365675 -0.4662797 0.4745834 0.4365675 -0.4745834 0.4745834 0.4365675 -0.4822838 0.4745834 0.4365675 -0.4894626 0.4745834 0.4365675 -0.4961862 0.4745834 0.4365675 -0.5025087 0.4745834 0.4365675 -0.5084753 0.4745834 0.4365675 -0.514124 0.4745834 0.4365675 -0.519487 0.4745834 0.4365675 -0.5245917 0.4745834 0.4365675 -0.529462 0.4745834 0.4365675 -0.5341183 0.4745834 0.4365675 -0.5385787 0.4745834 0.4365675 -0.5428591 0.4745834 0.4365675 -0.5469733 0.4745834 0.4365675 -0.5509339 0.4745834 0.4365675 -0.5547519 0.4745834 0.4365675 -0.5584371 0.4745834 0.4365675 -0.5619986 0.4745834 0.4365675 -0.5654443 0.4745834 0.4365675 -0.5687816 0.4745834 0.4365675 -0.092819 0.4822838 0.4365675 -0.2262531 0.4822838 0.4365675 -0.2875993 0.4822838 0.4365675 -0.3262122 0.4822838 0.4365675 -0.3544566 0.4822838 0.4365675 -0.3767383 0.4822838 0.4365675 -0.3951413 0.4822838 0.4365675 -0.4108177 0.4822838 0.4365675 -0.4244723 0.4822838 0.4365675 -0.4365675 0.4822838 0.4365675 -0.4474232 0.4822838 0.4365675 -0.45727 0.4822838 0.4365675 -0.4662797 0.4822838 0.4365675 -0.4745834 0.4822838 0.4365675 -0.4822838 0.4822838 0.4365675 -0.4894626 0.4822838 0.4365675 -0.4961862 0.4822838 0.4365675 -0.5025087 0.4822838 0.4365675 -0.5084753 0.4822838 0.4365675 -0.514124 0.4822838 0.4365675 -0.519487 0.4822838 0.4365675 -0.5245917 0.4822838 0.4365675 -0.529462 0.4822838 0.4365675 -0.5341183 0.4822838 0.4365675 -0.5385787 0.4822838 0.4365675 -0.5428591 0.4822838 0.4365675 -0.5469733 0.4822838 0.4365675 -0.5509339 0.4822838 0.4365675 -0.5547519 0.4822838 0.4365675 -0.5584371 0.4822838 0.4365675 -0.5619986 0.4822838 0.4365675 -0.5654443 0.4822838 0.4365675 -0.5687816 0.4822838 0.4365675 -0.092819 0.4894626 0.4365675 -0.2262531 0.4894626 0.4365675 -0.2875993 0.4894626 0.4365675 -0.3262122 0.4894626 0.4365675 -0.3544566 0.4894626 0.4365675 -0.3767383 0.4894626 0.4365675 -0.3951413 0.4894626 0.4365675 -0.4108177 0.4894626 0.4365675 -0.4244723 0.4894626 0.4365675 -0.4365675 0.4894626 0.4365675 -0.4474232 0.4894626 0.4365675 -0.45727 0.4894626 0.4365675 -0.4662797 0.4894626 0.4365675 -0.4745834 0.4894626 0.4365675 -0.4822838 0.4894626 0.4365675 -0.4894626 0.4894626 0.4365675 -0.4961862 0.4894626 0.4365675 -0.5025087 0.4894626 0.4365675 -0.5084753 0.4894626 0.4365675 -0.514124 0.4894626 0.4365675 -0.519487 0.4894626 0.4365675 -0.5245917 0.4894626 0.4365675 -0.529462 0.4894626 0.4365675 -0.5341183 0.4894626 0.4365675 -0.5385787 0.4894626 0.4365675 -0.5428591 0.4894626 0.4365675 -0.5469733 0.4894626 0.4365675 -0.5509339 0.4894626 0.4365675 -0.5547519 0.4894626 0.4365675 -0.5584371 0.4894626 0.4365675 -0.5619986 0.4894626 0.4365675 -0.5654443 0.4894626 0.4365675 -0.5687816 0.4894626 0.4365675 -0.092819 0.4961862 0.4365675 -0.2262531 0.4961862 0.4365675 -0.2875993 0.4961862 0.4365675 -0.3262122 0.4961862 0.4365675 -0.3544566 0.4961862 0.4365675 -0.3767383 0.4961862 0.4365675 -0.3951413 0.4961862 0.4365675 -0.4108177 0.4961862 0.4365675 -0.4244723 0.4961862 0.4365675 -0.4365675 0.4961862 0.4365675 -0.4474232 0.4961862 0.4365675 -0.45727 0.4961862 0.4365675 -0.4662797 0.4961862 0.4365675 -0.4745834 0.4961862 0.4365675 -0.4822838 0.4961862 0.4365675 -0.4894626 0.4961862 0.4365675 -0.4961862 0.4961862 0.4365675 -0.5025087 0.4961862 0.4365675 -0.5084753 0.4961862 0.4365675 -0.514124 0.4961862 0.4365675 -0.519487 0.4961862 0.4365675 -0.5245917 0.4961862 0.4365675 -0.529462 0.4961862 0.4365675 -0.5341183 0.4961862 0.4365675 -0.5385787 0.4961862 0.4365675 -0.5428591 0.4961862 0.4365675 -0.5469733 0.4961862 0.4365675 -0.5509339 0.4961862 0.4365675 -0.5547519 0.4961862 0.4365675 -0.5584371 0.4961862 0.4365675 -0.5619986 0.4961862 0.4365675 -0.5654443 0.4961862 0.4365675 -0.5687816 0.4961862 0.4365675 -0.092819 0.5025087 0.4365675 -0.2262531 0.5025087 0.4365675 -0.2875993 0.5025087 0.4365675 -0.3262122 0.5025087 0.4365675 -0.3544566 0.5025087 0.4365675 -0.3767383 0.5025087 0.4365675 -0.3951413 0.5025087 0.4365675 -0.4108177 0.5025087 0.4365675 -0.4244723 0.5025087 0.4365675 -0.4365675 0.5025087 0.4365675 -0.4474232 0.5025087 0.4365675 -0.45727 0.5025087 0.4365675 -0.4662797 0.5025087 0.4365675 -0.4745834 0.5025087 0.4365675 -0.4822838 0.5025087 0.4365675 -0.4894626 0.5025087 0.4365675 -0.4961862 0.5025087 0.4365675 -0.5025087 0.5025087 0.4365675 -0.5084753 0.5025087 0.4365675 -0.514124 0.5025087 0.4365675 -0.519487 0.5025087 0.4365675 -0.5245917 0.5025087 0.4365675 -0.529462 0.5025087 0.4365675 -0.5341183 0.5025087 0.4365675 -0.5385787 0.5025087 0.4365675 -0.5428591 0.5025087 0.4365675 -0.5469733 0.5025087 0.4365675 -0.5509339 0.5025087 0.4365675 -0.5547519 0.5025087 0.4365675 -0.5584371 0.5025087 0.4365675 -0.5619986 0.5025087 0.4365675 -0.5654443 0.5025087 0.4365675 -0.5687816 0.5025087 0.4365675 -0.092819 0.5084753 0.4365675 -0.2262531 0.5084753 0.4365675 -0.2875993 0.5084753 0.4365675 -0.3262122 0.5084753 0.4365675 -0.3544566 0.5084753 0.4365675 -0.3767383 0.5084753 0.4365675 -0.3951413 0.5084753 0.4365675 -0.4108177 0.5084753 0.4365675 -0.4244723 0.5084753 0.4365675 -0.4365675 0.5084753 0.4365675 -0.4474232 0.5084753 0.4365675 -0.45727 0.5084753 0.4365675 -0.4662797 0.5084753 0.4365675 -0.4745834 0.5084753 0.4365675 -0.4822838 0.5084753 0.4365675 -0.4894626 0.5084753 0.4365675 -0.4961862 0.5084753 0.4365675 -0.5025087 0.5084753 0.4365675 -0.5084753 0.5084753 0.4365675 -0.514124 0.5084753 0.4365675 -0.519487 0.5084753 0.4365675 -0.5245917 0.5084753 0.4365675 -0.529462 0.5084753 0.4365675 -0.5341183 0.5084753 0.4365675 -0.5385787 0.5084753 0.4365675 -0.5428591 0.5084753 0.4365675 -0.5469733 0.5084753 0.4365675 -0.5509339 0.5084753 0.4365675 -0.5547519 0.5084753 0.4365675 -0.5584371 0.5084753 0.4365675 -0.5619986 0.5084753 0.4365675 -0.5654443 0.5084753 0.4365675 -0.5687816 0.5084753 0.4365675 -0.092819 0.514124 0.4365675 -0.2262531 0.514124 0.4365675 -0.2875993 0.514124 0.4365675 -0.3262122 0.514124 0.4365675 -0.3544566 0.514124 0.4365675 -0.3767383 0.514124 0.4365675 -0.3951413 0.514124 0.4365675 -0.4108177 0.514124 0.4365675 -0.4244723 0.514124 0.4365675 -0.4365675 0.514124 0.4365675 -0.4474232 0.514124 0.4365675 -0.45727 0.514124 0.4365675 -0.4662797 0.514124 0.4365675 -0.4745834 0.514124 0.4365675 -0.4822838 0.514124 0.4365675 -0.4894626 0.514124 0.4365675 -0.4961862 0.514124 0.4365675 -0.5025087 0.514124 0.4365675 -0.5084753 0.514124 0.4365675 -0.514124 0.514124 0.4365675 -0.519487 0.514124 0.4365675 -0.5245917 0.514124 0.4365675 -0.529462 0.514124 0.4365675 -0.5341183 0.514124 0.4365675 -0.5385787 0.514124 0.4365675 -0.5428591 0.514124 0.4365675 -0.5469733 0.514124 0.4365675 -0.5509339 0.514124 0.4365675 -0.5547519 0.514124 0.4365675 -0.5584371 0.514124 0.4365675 -0.5619986 0.514124 0.4365675 -0.5654443 0.514124 0.4365675 -0.5687816 0.514124 0.4365675 -0.092819 0.519487 0.4365675 -0.2262531 0.519487 0.4365675 -0.2875993 0.519487 0.4365675 -0.3262122 0.519487 0.4365675 -0.3544566 0.519487 0.4365675 -0.3767383 0.519487 0.4365675 -0.3951413 0.519487 0.4365675 -0.4108177 0.519487 0.4365675 -0.4244723 0.519487 0.4365675 -0.4365675 0.519487 0.4365675 -0.4474232 0.519487 0.4365675 -0.45727 0.519487 0.4365675 -0.4662797 0.519487 0.4365675 -0.4745834 0.519487 0.4365675 -0.4822838 0.519487 0.4365675 -0.4894626 0.519487 0.4365675 -0.4961862 0.519487 0.4365675 -0.5025087 0.519487 0.4365675 -0.5084753 0.519487 0.4365675 -0.514124 0.519487 0.4365675 -0.519487 0.519487 0.4365675 -0.5245917 0.519487 0.4365675 -0.529462 0.519487 0.4365675 -0.5341183 0.519487 0.4365675 -0.5385787 0.519487 0.4365675 -0.5428591 0.519487 0.4365675 -0.5469733 0.519487 0.4365675 -0.5509339 0.519487 0.4365675 -0.5547519 0.519487 0.4365675 -0.5584371 0.519487 0.4365675 -0.5619986 0.519487 0.4365675 -0.5654443 0.519487 0.4365675 -0.5687816 0.519487 0.4365675 -0.092819 0.5245917 0.4365675 -0.2262531 0.5245917 0.4365675 -0.2875993 0.5245917 0.4365675 -0.3262122 0.5245917 0.4365675 -0.3544566 0.5245917 0.4365675 -0.3767383 0.5245917 0.4365675 -0.3951413 0.5245917 0.4365675 -0.4108177 0.5245917 0.4365675 -0.4244723 0.5245917 0.4365675 -0.4365675 0.5245917 0.4365675 -0.4474232 0.5245917 0.4365675 -0.45727 0.5245917 0.4365675 -0.4662797 0.5245917 0.4365675 -0.4745834 0.5245917 0.4365675 -0.4822838 0.5245917 0.4365675 -0.4894626 0.5245917 0.4365675 -0.4961862 0.5245917 0.4365675 -0.5025087 0.5245917 0.4365675 -0.5084753 0.5245917 0.4365675 -0.514124 0.5245917 0.4365675 -0.519487 0.5245917 0.4365675 -0.5245917 0.5245917 0.4365675 -0.529462 0.5245917 0.4365675 -0.5341183 0.5245917 0.4365675 -0.5385787 0.5245917 0.4365675 -0.5428591 0.5245917 0.4365675 -0.5469733 0.5245917 0.4365675 -0.5509339 0.5245917 0.4365675 -0.5547519 0.5245917 0.4365675 -0.5584371 0.5245917 0.4365675 -0.5619986 0.5245917 0.4365675 -0.5654443 0.5245917 0.4365675 -0.5687816 0.5245917 0.4365675 -0.092819 0.529462 0.4365675 -0.2262531 0.529462 0.4365675 -0.2875993 0.529462 0.4365675 -0.3262122 0.529462 0.4365675 -0.3544566 0.529462 0.4365675 -0.3767383 0.529462 0.4365675 -0.3951413 0.529462 0.4365675 -0.4108177 0.529462 0.4365675 -0.4244723 0.529462 0.4365675 -0.4365675 0.529462 0.4365675 -0.4474232 0.529462 0.4365675 -0.45727 0.529462 0.4365675 -0.4662797 0.529462 0.4365675 -0.4745834 0.529462 0.4365675 -0.4822838 0.529462 0.4365675 -0.4894626 0.529462 0.4365675 -0.4961862 0.529462 0.4365675 -0.5025087 0.529462 0.4365675 -0.5084753 0.529462 0.4365675 -0.514124 0.529462 0.4365675 -0.519487 0.529462 0.4365675 -0.5245917 0.529462 0.4365675 -0.529462 0.529462 0.4365675 -0.5341183 0.529462 0.4365675 -0.5385787 0.529462 0.4365675 -0.5428591 0.529462 0.4365675 -0.5469733 0.529462 0.4365675 -0.5509339 0.529462 0.4365675 -0.5547519 0.529462 0.4365675 -0.5584371 0.529462 0.4365675 -0.5619986 0.529462 0.4365675 -0.5654443 0.529462 0.4365675 -0.5687816 0.529462 0.4365675 -0.092819 0.5341183 0.4365675 -0.2262531 0.5341183 0.4365675 -0.2875993 0.5341183 0.4365675 -0.3262122 0.5341183 0.4365675 -0.3544566 0.5341183 0.4365675 -0.3767383 0.5341183 0.4365675 -0.3951413 0.5341183 0.4365675 -0.4108177 0.5341183 0.4365675 -0.4244723 0.5341183 0.4365675 -0.4365675 0.5341183 0.4365675 -0.4474232 0.5341183 0.4365675 -0.45727 0.5341183 0.4365675 -0.4662797 0.5341183 0.4365675 -0.4745834 0.5341183 0.4365675 -0.4822838 0.5341183 0.4365675 -0.4894626 0.5341183 0.4365675 -0.4961862 0.5341183 0.4365675 -0.5025087 0.5341183 0.4365675 -0.5084753 0.5341183 0.4365675 -0.514124 0.5341183 0.4365675 -0.519487 0.5341183 0.4365675 -0.5245917 0.5341183 0.4365675 -0.529462 0.5341183 0.4365675 -0.5341183 0.5341183 0.4365675 -0.5385787 0.5341183 0.4365675 -0.5428591 0.5341183 0.4365675 -0.5469733 0.5341183 0.4365675 -0.5509339 0.5341183 0.4365675 -0.5547519 0.5341183 0.4365675 -0.5584371 0.5341183 0.4365675 -0.5619986 0.5341183 0.4365675 -0.5654443 0.5341183 0.4365675 -0.5687816 0.5341183 0.4365675 -0.092819 0.5385787 0.4365675 -0.2262531 0.5385787 0.4365675 -0.2875993 0.5385787 0.4365675 -0.3262122 0.5385787 0.4365675 -0.3544566 0.5385787 0.4365675 -0.3767383 0.5385787 0.4365675 -0.3951413 0.5385787 0.4365675 -0.4108177 0.5385787 0.4365675 -0.4244723 0.5385787 0.4365675 -0.4365675 0.5385787 0.4365675 -0.4474232 0.5385787 0.4365675 -0.45727 0.5385787 0.4365675 -0.4662797 0.5385787 0.4365675 -0.4745834 0.5385787 0.4365675 -0.4822838 0.5385787 0.4365675 -0.4894626 0.5385787 0.4365675 -0.4961862 0.5385787 0.4365675 -0.5025087 0.5385787 0.4365675 -0.5084753 0.5385787 0.4365675 -0.514124 0.5385787 0.4365675 -0.519487 0.5385787 0.4365675 -0.5245917 0.5385787 0.4365675 -0.529462 0.5385787 0.4365675 -0.5341183 0.5385787 0.4365675 -0.5385787 0.5385787 0.4365675 -0.5428591 0.5385787 0.4365675 -0.5469733 0.5385787 0.4365675 -0.5509339 0.5385787 0.4365675 -0.5547519 0.5385787 0.4365675 -0.5584371 0.5385787 0.4365675 -0.5619986 0.5385787 0.4365675 -0.5654443 0.5385787 0.4365675 -0.5687816 0.5385787 0.4365675 -0.092819 0.5428591 0.4365675 -0.2262531 0.5428591 0.4365675 -0.2875993 0.5428591 0.4365675 -0.3262122 0.5428591 0.4365675 -0.3544566 0.5428591 0.4365675 -0.3767383 0.5428591 0.4365675 -0.3951413 0.5428591 0.4365675 -0.4108177 0.5428591 0.4365675 -0.4244723 0.5428591 0.4365675 -0.4365675 0.5428591 0.4365675 -0.4474232 0.5428591 0.4365675 -0.45727 0.5428591 0.4365675 -0.4662797 0.5428591 0.4365675 -0.4745834 0.5428591 0.4365675 -0.4822838 0.5428591 0.4365675 -0.4894626 0.5428591 0.4365675 -0.4961862 0.5428591 0.4365675 -0.5025087 0.5428591 0.4365675 -0.5084753 0.5428591 0.4365675 -0.514124 0.5428591 0.4365675 -0.519487 0.5428591 0.4365675 -0.5245917 0.5428591 0.4365675 -0.529462 0.5428591 0.4365675 -0.5341183 0.5428591 0.4365675 -0.5385787 0.5428591 0.4365675 -0.5428591 0.5428591 0.4365675 -0.5469733 0.5428591 0.4365675 -0.5509339 0.5428591 0.4365675 -0.5547519 0.5428591 0.4365675 -0.5584371 0.5428591 0.4365675 -0.5619986 0.5428591 0.4365675 -0.5654443 0.5428591 0.4365675 -0.5687816 0.5428591 0.4365675 -0.092819 0.5469733 0.4365675 -0.2262531 0.5469733 0.4365675 -0.2875993 0.5469733 0.4365675 -0.3262122 0.5469733 0.4365675 -0.3544566 0.5469733 0.4365675 -0.3767383 0.5469733 0.4365675 -0.3951413 0.5469733 0.4365675 -0.4108177 0.5469733 0.4365675 -0.4244723 0.5469733 0.4365675 -0.4365675 0.5469733 0.4365675 -0.4474232 0.5469733 0.4365675 -0.45727 0.5469733 0.4365675 -0.4662797 0.5469733 0.4365675 -0.4745834 0.5469733 0.4365675 -0.4822838 0.5469733 0.4365675 -0.4894626 0.5469733 0.4365675 -0.4961862 0.5469733 0.4365675 -0.5025087 0.5469733 0.4365675 -0.5084753 0.5469733 0.4365675 -0.514124 0.5469733 0.4365675 -0.519487 0.5469733 0.4365675 -0.5245917 0.5469733 0.4365675 -0.529462 0.5469733 0.4365675 -0.5341183 0.5469733 0.4365675 -0.5385787 0.5469733 0.4365675 -0.5428591 0.5469733 0.4365675 -0.5469733 0.5469733 0.4365675 -0.5509339 0.5469733 0.4365675 -0.5547519 0.5469733 0.4365675 -0.5584371 0.5469733 0.4365675 -0.5619986 0.5469733 0.4365675 -0.5654443 0.5469733 0.4365675 -0.5687816 0.5469733 0.4365675 -0.092819 0.5509339 0.4365675 -0.2262531 0.5509339 0.4365675 -0.2875993 0.5509339 0.4365675 -0.3262122 0.5509339 0.4365675 -0.3544566 0.5509339 0.4365675 -0.3767383 0.5509339 0.4365675 -0.3951413 0.5509339 0.4365675 -0.4108177 0.5509339 0.4365675 -0.4244723 0.5509339 0.4365675 -0.4365675 0.5509339 0.4365675 -0.4474232 0.5509339 0.4365675 -0.45727 0.5509339 0.4365675 -0.4662797 0.5509339 0.4365675 -0.4745834 0.5509339 0.4365675 -0.4822838 0.5509339 0.4365675 -0.4894626 0.5509339 0.4365675 -0.4961862 0.5509339 0.4365675 -0.5025087 0.5509339 0.4365675 -0.5084753 0.5509339 0.4365675 -0.514124 0.5509339 0.4365675 -0.519487 0.5509339 0.4365675 -0.5245917 0.5509339 0.4365675 -0.529462 0.5509339 0.4365675 -0.5341183 0.5509339 0.4365675 -0.5385787 0.5509339 0.4365675 -0.5428591 0.5509339 0.4365675 -0.5469733 0.5509339 0.4365675 -0.5509339 0.5509339 0.4365675 -0.5547519 0.5509339 0.4365675 -0.5584371 0.5509339 0.4365675 -0.5619986 0.5509339 0.4365675 -0.5654443 0.5509339 0.4365675 -0.5687816 0.5509339 0.4365675 -0.092819 0.5547519 0.4365675 -0.2262531 0.5547519 0.4365675 -0.2875993 0.5547519 0.4365675 -0.3262122 0.5547519 0.4365675 -0.3544566 0.5547519 0.4365675 -0.3767383 0.5547519 0.4365675 -0.3951413 0.5547519 0.4365675 -0.4108177 0.5547519 0.4365675 -0.4244723 0.5547519 0.4365675 -0.4365675 0.5547519 0.4365675 -0.4474232 0.5547519 0.4365675 -0.45727 0.5547519 0.4365675 -0.4662797 0.5547519 0.4365675 -0.4745834 0.5547519 0.4365675 -0.4822838 0.5547519 0.4365675 -0.4894626 0.5547519 0.4365675 -0.4961862 0.5547519 0.4365675 -0.5025087 0.5547519 0.4365675 -0.5084753 0.5547519 0.4365675 -0.514124 0.5547519 0.4365675 -0.519487 0.5547519 0.4365675 -0.5245917 0.5547519 0.4365675 -0.529462 0.5547519 0.4365675 -0.5341183 0.5547519 0.4365675 -0.5385787 0.5547519 0.4365675 -0.5428591 0.5547519 0.4365675 -0.5469733 0.5547519 0.4365675 -0.5509339 0.5547519 0.4365675 -0.5547519 0.5547519 0.4365675 -0.5584371 0.5547519 0.4365675 -0.5619986 0.5547519 0.4365675 -0.5654443 0.5547519 0.4365675 -0.5687816 0.5547519 0.4365675 -0.092819 0.5584371 0.4365675 -0.2262531 0.5584371 0.4365675 -0.2875993 0.5584371 0.4365675 -0.3262122 0.5584371 0.4365675 -0.3544566 0.5584371 0.4365675 -0.3767383 0.5584371 0.4365675 -0.3951413 0.5584371 0.4365675 -0.4108177 0.5584371 0.4365675 -0.4244723 0.5584371 0.4365675 -0.4365675 0.5584371 0.4365675 -0.4474232 0.5584371 0.4365675 -0.45727 0.5584371 0.4365675 -0.4662797 0.5584371 0.4365675 -0.4745834 0.5584371 0.4365675 -0.4822838 0.5584371 0.4365675 -0.4894626 0.5584371 0.4365675 -0.4961862 0.5584371 0.4365675 -0.5025087 0.5584371 0.4365675 -0.5084753 0.5584371 0.4365675 -0.514124 0.5584371 0.4365675 -0.519487 0.5584371 0.4365675 -0.5245917 0.5584371 0.4365675 -0.529462 0.5584371 0.4365675 -0.5341183 0.5584371 0.4365675 -0.5385787 0.5584371 0.4365675 -0.5428591 0.5584371 0.4365675 -0.5469733 0.5584371 0.4365675 -0.5509339 0.5584371 0.4365675 -0.5547519 0.5584371 0.4365675 -0.5584371 0.5584371 0.4365675 -0.5619986 0.5584371 0.4365675 -0.5654443 0.5584371 0.4365675 -0.5687816 0.5584371 0.4365675 -0.092819 0.5619986 0.4365675 -0.2262531 0.5619986 0.4365675 -0.2875993 0.5619986 0.4365675 -0.3262122 0.5619986 0.4365675 -0.3544566 0.5619986 0.4365675 -0.3767383 0.5619986 0.4365675 -0.3951413 0.5619986 0.4365675 -0.4108177 0.5619986 0.4365675 -0.4244723 0.5619986 0.4365675 -0.4365675 0.5619986 0.4365675 -0.4474232 0.5619986 0.4365675 -0.45727 0.5619986 0.4365675 -0.4662797 0.5619986 0.4365675 -0.4745834 0.5619986 0.4365675 -0.4822838 0.5619986 0.4365675 -0.4894626 0.5619986 0.4365675 -0.4961862 0.5619986 0.4365675 -0.5025087 0.5619986 0.4365675 -0.5084753 0.5619986 0.4365675 -0.514124 0.5619986 0.4365675 -0.519487 0.5619986 0.4365675 -0.5245917 0.5619986 0.4365675 -0.529462 0.5619986 0.4365675 -0.5341183 0.5619986 0.4365675 -0.5385787 0.5619986 0.4365675 -0.5428591 0.5619986 0.4365675 -0.5469733 0.5619986 0.4365675 -0.5509339 0.5619986 0.4365675 -0.5547519 0.5619986 0.4365675 -0.5584371 0.5619986 0.4365675 -0.5619986 0.5619986 0.4365675 -0.5654443 0.5619986 0.4365675 -0.5687816 0.5619986 0.4365675 -0.092819 0.5654443 0.4365675 -0.2262531 0.5654443 0.4365675 -0.2875993 0.5654443 0.4365675 -0.3262122 0.5654443 0.4365675 -0.3544566 0.5654443 0.4365675 -0.3767383 0.5654443 0.4365675 -0.3951413 0.5654443 0.4365675 -0.4108177 0.5654443 0.4365675 -0.4244723 0.5654443 0.4365675 -0.4365675 0.5654443 0.4365675 -0.4474232 0.5654443 0.4365675 -0.45727 0.5654443 0.4365675 -0.4662797 0.5654443 0.4365675 -0.4745834 0.5654443 0.4365675 -0.4822838 0.5654443 0.4365675 -0.4894626 0.5654443 0.4365675 -0.4961862 0.5654443 0.4365675 -0.5025087 0.5654443 0.4365675 -0.5084753 0.5654443 0.4365675 -0.514124 0.5654443 0.4365675 -0.519487 0.5654443 0.4365675 -0.5245917 0.5654443 0.4365675 -0.529462 0.5654443 0.4365675 -0.5341183 0.5654443 0.4365675 -0.5385787 0.5654443 0.4365675 -0.5428591 0.5654443 0.4365675 -0.5469733 0.5654443 0.4365675 -0.5509339 0.5654443 0.4365675 -0.5547519 0.5654443 0.4365675 -0.5584371 0.5654443 0.4365675 -0.5619986 0.5654443 0.4365675 -0.5654443 0.5654443 0.4365675 -0.5687816 0.5654443 0.4365675 -0.092819 0.5687816 0.4365675 -0.2262531 0.5687816 0.4365675 -0.2875993 0.5687816 0.4365675 -0.3262122 0.5687816 0.4365675 -0.3544566 0.5687816 0.4365675 -0.3767383 0.5687816 0.4365675 -0.3951413 0.5687816 0.4365675 -0.4108177 0.5687816 0.4365675 -0.4244723 0.5687816 0.4365675 -0.4365675 0.5687816 0.4365675 -0.4474232 0.5687816 0.4365675 -0.45727 0.5687816 0.4365675 -0.4662797 0.5687816 0.4365675 -0.4745834 0.5687816 0.4365675 -0.4822838 0.5687816 0.4365675 -0.4894626 0.5687816 0.4365675 -0.4961862 0.5687816 0.4365675 -0.5025087 0.5687816 0.4365675 -0.5084753 0.5687816 0.4365675 -0.514124 0.5687816 0.4365675 -0.519487 0.5687816 0.4365675 -0.5245917 0.5687816 0.4365675 -0.529462 0.5687816 0.4365675 -0.5341183 0.5687816 0.4365675 -0.5385787 0.5687816 0.4365675 -0.5428591 0.5687816 0.4365675 -0.5469733 0.5687816 0.4365675 -0.5509339 0.5687816 0.4365675 -0.5547519 0.5687816 0.4365675 -0.5584371 0.5687816 0.4365675 -0.5619986 0.5687816 0.4365675 -0.5654443 0.5687816 0.4365675 -0.5687816 0.5687816 0.4365675 -0.092819 0.092819 0.4474232 -0.2262531 0.092819 0.4474232 -0.2875993 0.092819 0.4474232 -0.3262122 0.092819 0.4474232 -0.3544566 0.092819 0.4474232 -0.3767383 0.092819 0.4474232 -0.3951413 0.092819 0.4474232 -0.4108177 0.092819 0.4474232 -0.4244723 0.092819 0.4474232 -0.4365675 0.092819 0.4474232 -0.4474232 0.092819 0.4474232 -0.45727 0.092819 0.4474232 -0.4662797 0.092819 0.4474232 -0.4745834 0.092819 0.4474232 -0.4822838 0.092819 0.4474232 -0.4894626 0.092819 0.4474232 -0.4961862 0.092819 0.4474232 -0.5025087 0.092819 0.4474232 -0.5084753 0.092819 0.4474232 -0.514124 0.092819 0.4474232 -0.519487 0.092819 0.4474232 -0.5245917 0.092819 0.4474232 -0.529462 0.092819 0.4474232 -0.5341183 0.092819 0.4474232 -0.5385787 0.092819 0.4474232 -0.5428591 0.092819 0.4474232 -0.5469733 0.092819 0.4474232 -0.5509339 0.092819 0.4474232 -0.5547519 0.092819 0.4474232 -0.5584371 0.092819 0.4474232 -0.5619986 0.092819 0.4474232 -0.5654443 0.092819 0.4474232 -0.5687816 0.092819 0.4474232 -0.092819 0.2262531 0.4474232 -0.2262531 0.2262531 0.4474232 -0.2875993 0.2262531 0.4474232 -0.3262122 0.2262531 0.4474232 -0.3544566 0.2262531 0.4474232 -0.3767383 0.2262531 0.4474232 -0.3951413 0.2262531 0.4474232 -0.4108177 0.2262531 0.4474232 -0.4244723 0.2262531 0.4474232 -0.4365675 0.2262531 0.4474232 -0.4474232 0.2262531 0.4474232 -0.45727 0.2262531 0.4474232 -0.4662797 0.2262531 0.4474232 -0.4745834 0.2262531 0.4474232 -0.4822838 0.2262531 0.4474232 -0.4894626 0.2262531 0.4474232 -0.4961862 0.2262531 0.4474232 -0.5025087 0.2262531 0.4474232 -0.5084753 0.2262531 0.4474232 -0.514124 0.2262531 0.4474232 -0.519487 0.2262531 0.4474232 -0.5245917 0.2262531 0.4474232 -0.529462 0.2262531 0.4474232 -0.5341183 0.2262531 0.4474232 -0.5385787 0.2262531 0.4474232 -0.5428591 0.2262531 0.4474232 -0.5469733 0.2262531 0.4474232 -0.5509339 0.2262531 0.4474232 -0.5547519 0.2262531 0.4474232 -0.5584371 0.2262531 0.4474232 -0.5619986 0.2262531 0.4474232 -0.5654443 0.2262531 0.4474232 -0.5687816 0.2262531 0.4474232 -0.092819 0.2875993 0.4474232 -0.2262531 0.2875993 0.4474232 -0.2875993 0.2875993 0.4474232 -0.3262122 0.2875993 0.4474232 -0.3544566 0.2875993 0.4474232 -0.3767383 0.2875993 0.4474232 -0.3951413 0.2875993 0.4474232 -0.4108177 0.2875993 0.4474232 -0.4244723 0.2875993 0.4474232 -0.4365675 0.2875993 0.4474232 -0.4474232 0.2875993 0.4474232 -0.45727 0.2875993 0.4474232 -0.4662797 0.2875993 0.4474232 -0.4745834 0.2875993 0.4474232 -0.4822838 0.2875993 0.4474232 -0.4894626 0.2875993 0.4474232 -0.4961862 0.2875993 0.4474232 -0.5025087 0.2875993 0.4474232 -0.5084753 0.2875993 0.4474232 -0.514124 0.2875993 0.4474232 -0.519487 0.2875993 0.4474232 -0.5245917 0.2875993 0.4474232 -0.529462 0.2875993 0.4474232 -0.5341183 0.2875993 0.4474232 -0.5385787 0.2875993 0.4474232 -0.5428591 0.2875993 0.4474232 -0.5469733 0.2875993 0.4474232 -0.5509339 0.2875993 0.4474232 -0.5547519 0.2875993 0.4474232 -0.5584371 0.2875993 0.4474232 -0.5619986 0.2875993 0.4474232 -0.5654443 0.2875993 0.4474232 -0.5687816 0.2875993 0.4474232 -0.092819 0.3262122 0.4474232 -0.2262531 0.3262122 0.4474232 -0.2875993 0.3262122 0.4474232 -0.3262122 0.3262122 0.4474232 -0.3544566 0.3262122 0.4474232 -0.3767383 0.3262122 0.4474232 -0.3951413 0.3262122 0.4474232 -0.4108177 0.3262122 0.4474232 -0.4244723 0.3262122 0.4474232 -0.4365675 0.3262122 0.4474232 -0.4474232 0.3262122 0.4474232 -0.45727 0.3262122 0.4474232 -0.4662797 0.3262122 0.4474232 -0.4745834 0.3262122 0.4474232 -0.4822838 0.3262122 0.4474232 -0.4894626 0.3262122 0.4474232 -0.4961862 0.3262122 0.4474232 -0.5025087 0.3262122 0.4474232 -0.5084753 0.3262122 0.4474232 -0.514124 0.3262122 0.4474232 -0.519487 0.3262122 0.4474232 -0.5245917 0.3262122 0.4474232 -0.529462 0.3262122 0.4474232 -0.5341183 0.3262122 0.4474232 -0.5385787 0.3262122 0.4474232 -0.5428591 0.3262122 0.4474232 -0.5469733 0.3262122 0.4474232 -0.5509339 0.3262122 0.4474232 -0.5547519 0.3262122 0.4474232 -0.5584371 0.3262122 0.4474232 -0.5619986 0.3262122 0.4474232 -0.5654443 0.3262122 0.4474232 -0.5687816 0.3262122 0.4474232 -0.092819 0.3544566 0.4474232 -0.2262531 0.3544566 0.4474232 -0.2875993 0.3544566 0.4474232 -0.3262122 0.3544566 0.4474232 -0.3544566 0.3544566 0.4474232 -0.3767383 0.3544566 0.4474232 -0.3951413 0.3544566 0.4474232 -0.4108177 0.3544566 0.4474232 -0.4244723 0.3544566 0.4474232 -0.4365675 0.3544566 0.4474232 -0.4474232 0.3544566 0.4474232 -0.45727 0.3544566 0.4474232 -0.4662797 0.3544566 0.4474232 -0.4745834 0.3544566 0.4474232 -0.4822838 0.3544566 0.4474232 -0.4894626 0.3544566 0.4474232 -0.4961862 0.3544566 0.4474232 -0.5025087 0.3544566 0.4474232 -0.5084753 0.3544566 0.4474232 -0.514124 0.3544566 0.4474232 -0.519487 0.3544566 0.4474232 -0.5245917 0.3544566 0.4474232 -0.529462 0.3544566 0.4474232 -0.5341183 0.3544566 0.4474232 -0.5385787 0.3544566 0.4474232 -0.5428591 0.3544566 0.4474232 -0.5469733 0.3544566 0.4474232 -0.5509339 0.3544566 0.4474232 -0.5547519 0.3544566 0.4474232 -0.5584371 0.3544566 0.4474232 -0.5619986 0.3544566 0.4474232 -0.5654443 0.3544566 0.4474232 -0.5687816 0.3544566 0.4474232 -0.092819 0.3767383 0.4474232 -0.2262531 0.3767383 0.4474232 -0.2875993 0.3767383 0.4474232 -0.3262122 0.3767383 0.4474232 -0.3544566 0.3767383 0.4474232 -0.3767383 0.3767383 0.4474232 -0.3951413 0.3767383 0.4474232 -0.4108177 0.3767383 0.4474232 -0.4244723 0.3767383 0.4474232 -0.4365675 0.3767383 0.4474232 -0.4474232 0.3767383 0.4474232 -0.45727 0.3767383 0.4474232 -0.4662797 0.3767383 0.4474232 -0.4745834 0.3767383 0.4474232 -0.4822838 0.3767383 0.4474232 -0.4894626 0.3767383 0.4474232 -0.4961862 0.3767383 0.4474232 -0.5025087 0.3767383 0.4474232 -0.5084753 0.3767383 0.4474232 -0.514124 0.3767383 0.4474232 -0.519487 0.3767383 0.4474232 -0.5245917 0.3767383 0.4474232 -0.529462 0.3767383 0.4474232 -0.5341183 0.3767383 0.4474232 -0.5385787 0.3767383 0.4474232 -0.5428591 0.3767383 0.4474232 -0.5469733 0.3767383 0.4474232 -0.5509339 0.3767383 0.4474232 -0.5547519 0.3767383 0.4474232 -0.5584371 0.3767383 0.4474232 -0.5619986 0.3767383 0.4474232 -0.5654443 0.3767383 0.4474232 -0.5687816 0.3767383 0.4474232 -0.092819 0.3951413 0.4474232 -0.2262531 0.3951413 0.4474232 -0.2875993 0.3951413 0.4474232 -0.3262122 0.3951413 0.4474232 -0.3544566 0.3951413 0.4474232 -0.3767383 0.3951413 0.4474232 -0.3951413 0.3951413 0.4474232 -0.4108177 0.3951413 0.4474232 -0.4244723 0.3951413 0.4474232 -0.4365675 0.3951413 0.4474232 -0.4474232 0.3951413 0.4474232 -0.45727 0.3951413 0.4474232 -0.4662797 0.3951413 0.4474232 -0.4745834 0.3951413 0.4474232 -0.4822838 0.3951413 0.4474232 -0.4894626 0.3951413 0.4474232 -0.4961862 0.3951413 0.4474232 -0.5025087 0.3951413 0.4474232 -0.5084753 0.3951413 0.4474232 -0.514124 0.3951413 0.4474232 -0.519487 0.3951413 0.4474232 -0.5245917 0.3951413 0.4474232 -0.529462 0.3951413 0.4474232 -0.5341183 0.3951413 0.4474232 -0.5385787 0.3951413 0.4474232 -0.5428591 0.3951413 0.4474232 -0.5469733 0.3951413 0.4474232 -0.5509339 0.3951413 0.4474232 -0.5547519 0.3951413 0.4474232 -0.5584371 0.3951413 0.4474232 -0.5619986 0.3951413 0.4474232 -0.5654443 0.3951413 0.4474232 -0.5687816 0.3951413 0.4474232 -0.092819 0.4108177 0.4474232 -0.2262531 0.4108177 0.4474232 -0.2875993 0.4108177 0.4474232 -0.3262122 0.4108177 0.4474232 -0.3544566 0.4108177 0.4474232 -0.3767383 0.4108177 0.4474232 -0.3951413 0.4108177 0.4474232 -0.4108177 0.4108177 0.4474232 -0.4244723 0.4108177 0.4474232 -0.4365675 0.4108177 0.4474232 -0.4474232 0.4108177 0.4474232 -0.45727 0.4108177 0.4474232 -0.4662797 0.4108177 0.4474232 -0.4745834 0.4108177 0.4474232 -0.4822838 0.4108177 0.4474232 -0.4894626 0.4108177 0.4474232 -0.4961862 0.4108177 0.4474232 -0.5025087 0.4108177 0.4474232 -0.5084753 0.4108177 0.4474232 -0.514124 0.4108177 0.4474232 -0.519487 0.4108177 0.4474232 -0.5245917 0.4108177 0.4474232 -0.529462 0.4108177 0.4474232 -0.5341183 0.4108177 0.4474232 -0.5385787 0.4108177 0.4474232 -0.5428591 0.4108177 0.4474232 -0.5469733 0.4108177 0.4474232 -0.5509339 0.4108177 0.4474232 -0.5547519 0.4108177 0.4474232 -0.5584371 0.4108177 0.4474232 -0.5619986 0.4108177 0.4474232 -0.5654443 0.4108177 0.4474232 -0.5687816 0.4108177 0.4474232 -0.092819 0.4244723 0.4474232 -0.2262531 0.4244723 0.4474232 -0.2875993 0.4244723 0.4474232 -0.3262122 0.4244723 0.4474232 -0.3544566 0.4244723 0.4474232 -0.3767383 0.4244723 0.4474232 -0.3951413 0.4244723 0.4474232 -0.4108177 0.4244723 0.4474232 -0.4244723 0.4244723 0.4474232 -0.4365675 0.4244723 0.4474232 -0.4474232 0.4244723 0.4474232 -0.45727 0.4244723 0.4474232 -0.4662797 0.4244723 0.4474232 -0.4745834 0.4244723 0.4474232 -0.4822838 0.4244723 0.4474232 -0.4894626 0.4244723 0.4474232 -0.4961862 0.4244723 0.4474232 -0.5025087 0.4244723 0.4474232 -0.5084753 0.4244723 0.4474232 -0.514124 0.4244723 0.4474232 -0.519487 0.4244723 0.4474232 -0.5245917 0.4244723 0.4474232 -0.529462 0.4244723 0.4474232 -0.5341183 0.4244723 0.4474232 -0.5385787 0.4244723 0.4474232 -0.5428591 0.4244723 0.4474232 -0.5469733 0.4244723 0.4474232 -0.5509339 0.4244723 0.4474232 -0.5547519 0.4244723 0.4474232 -0.5584371 0.4244723 0.4474232 -0.5619986 0.4244723 0.4474232 -0.5654443 0.4244723 0.4474232 -0.5687816 0.4244723 0.4474232 -0.092819 0.4365675 0.4474232 -0.2262531 0.4365675 0.4474232 -0.2875993 0.4365675 0.4474232 -0.3262122 0.4365675 0.4474232 -0.3544566 0.4365675 0.4474232 -0.3767383 0.4365675 0.4474232 -0.3951413 0.4365675 0.4474232 -0.4108177 0.4365675 0.4474232 -0.4244723 0.4365675 0.4474232 -0.4365675 0.4365675 0.4474232 -0.4474232 0.4365675 0.4474232 -0.45727 0.4365675 0.4474232 -0.4662797 0.4365675 0.4474232 -0.4745834 0.4365675 0.4474232 -0.4822838 0.4365675 0.4474232 -0.4894626 0.4365675 0.4474232 -0.4961862 0.4365675 0.4474232 -0.5025087 0.4365675 0.4474232 -0.5084753 0.4365675 0.4474232 -0.514124 0.4365675 0.4474232 -0.519487 0.4365675 0.4474232 -0.5245917 0.4365675 0.4474232 -0.529462 0.4365675 0.4474232 -0.5341183 0.4365675 0.4474232 -0.5385787 0.4365675 0.4474232 -0.5428591 0.4365675 0.4474232 -0.5469733 0.4365675 0.4474232 -0.5509339 0.4365675 0.4474232 -0.5547519 0.4365675 0.4474232 -0.5584371 0.4365675 0.4474232 -0.5619986 0.4365675 0.4474232 -0.5654443 0.4365675 0.4474232 -0.5687816 0.4365675 0.4474232 -0.092819 0.4474232 0.4474232 -0.2262531 0.4474232 0.4474232 -0.2875993 0.4474232 0.4474232 -0.3262122 0.4474232 0.4474232 -0.3544566 0.4474232 0.4474232 -0.3767383 0.4474232 0.4474232 -0.3951413 0.4474232 0.4474232 -0.4108177 0.4474232 0.4474232 -0.4244723 0.4474232 0.4474232 -0.4365675 0.4474232 0.4474232 -0.4474232 0.4474232 0.4474232 -0.45727 0.4474232 0.4474232 -0.4662797 0.4474232 0.4474232 -0.4745834 0.4474232 0.4474232 -0.4822838 0.4474232 0.4474232 -0.4894626 0.4474232 0.4474232 -0.4961862 0.4474232 0.4474232 -0.5025087 0.4474232 0.4474232 -0.5084753 0.4474232 0.4474232 -0.514124 0.4474232 0.4474232 -0.519487 0.4474232 0.4474232 -0.5245917 0.4474232 0.4474232 -0.529462 0.4474232 0.4474232 -0.5341183 0.4474232 0.4474232 -0.5385787 0.4474232 0.4474232 -0.5428591 0.4474232 0.4474232 -0.5469733 0.4474232 0.4474232 -0.5509339 0.4474232 0.4474232 -0.5547519 0.4474232 0.4474232 -0.5584371 0.4474232 0.4474232 -0.5619986 0.4474232 0.4474232 -0.5654443 0.4474232 0.4474232 -0.5687816 0.4474232 0.4474232 -0.092819 0.45727 0.4474232 -0.2262531 0.45727 0.4474232 -0.2875993 0.45727 0.4474232 -0.3262122 0.45727 0.4474232 -0.3544566 0.45727 0.4474232 -0.3767383 0.45727 0.4474232 -0.3951413 0.45727 0.4474232 -0.4108177 0.45727 0.4474232 -0.4244723 0.45727 0.4474232 -0.4365675 0.45727 0.4474232 -0.4474232 0.45727 0.4474232 -0.45727 0.45727 0.4474232 -0.4662797 0.45727 0.4474232 -0.4745834 0.45727 0.4474232 -0.4822838 0.45727 0.4474232 -0.4894626 0.45727 0.4474232 -0.4961862 0.45727 0.4474232 -0.5025087 0.45727 0.4474232 -0.5084753 0.45727 0.4474232 -0.514124 0.45727 0.4474232 -0.519487 0.45727 0.4474232 -0.5245917 0.45727 0.4474232 -0.529462 0.45727 0.4474232 -0.5341183 0.45727 0.4474232 -0.5385787 0.45727 0.4474232 -0.5428591 0.45727 0.4474232 -0.5469733 0.45727 0.4474232 -0.5509339 0.45727 0.4474232 -0.5547519 0.45727 0.4474232 -0.5584371 0.45727 0.4474232 -0.5619986 0.45727 0.4474232 -0.5654443 0.45727 0.4474232 -0.5687816 0.45727 0.4474232 -0.092819 0.4662797 0.4474232 -0.2262531 0.4662797 0.4474232 -0.2875993 0.4662797 0.4474232 -0.3262122 0.4662797 0.4474232 -0.3544566 0.4662797 0.4474232 -0.3767383 0.4662797 0.4474232 -0.3951413 0.4662797 0.4474232 -0.4108177 0.4662797 0.4474232 -0.4244723 0.4662797 0.4474232 -0.4365675 0.4662797 0.4474232 -0.4474232 0.4662797 0.4474232 -0.45727 0.4662797 0.4474232 -0.4662797 0.4662797 0.4474232 -0.4745834 0.4662797 0.4474232 -0.4822838 0.4662797 0.4474232 -0.4894626 0.4662797 0.4474232 -0.4961862 0.4662797 0.4474232 -0.5025087 0.4662797 0.4474232 -0.5084753 0.4662797 0.4474232 -0.514124 0.4662797 0.4474232 -0.519487 0.4662797 0.4474232 -0.5245917 0.4662797 0.4474232 -0.529462 0.4662797 0.4474232 -0.5341183 0.4662797 0.4474232 -0.5385787 0.4662797 0.4474232 -0.5428591 0.4662797 0.4474232 -0.5469733 0.4662797 0.4474232 -0.5509339 0.4662797 0.4474232 -0.5547519 0.4662797 0.4474232 -0.5584371 0.4662797 0.4474232 -0.5619986 0.4662797 0.4474232 -0.5654443 0.4662797 0.4474232 -0.5687816 0.4662797 0.4474232 -0.092819 0.4745834 0.4474232 -0.2262531 0.4745834 0.4474232 -0.2875993 0.4745834 0.4474232 -0.3262122 0.4745834 0.4474232 -0.3544566 0.4745834 0.4474232 -0.3767383 0.4745834 0.4474232 -0.3951413 0.4745834 0.4474232 -0.4108177 0.4745834 0.4474232 -0.4244723 0.4745834 0.4474232 -0.4365675 0.4745834 0.4474232 -0.4474232 0.4745834 0.4474232 -0.45727 0.4745834 0.4474232 -0.4662797 0.4745834 0.4474232 -0.4745834 0.4745834 0.4474232 -0.4822838 0.4745834 0.4474232 -0.4894626 0.4745834 0.4474232 -0.4961862 0.4745834 0.4474232 -0.5025087 0.4745834 0.4474232 -0.5084753 0.4745834 0.4474232 -0.514124 0.4745834 0.4474232 -0.519487 0.4745834 0.4474232 -0.5245917 0.4745834 0.4474232 -0.529462 0.4745834 0.4474232 -0.5341183 0.4745834 0.4474232 -0.5385787 0.4745834 0.4474232 -0.5428591 0.4745834 0.4474232 -0.5469733 0.4745834 0.4474232 -0.5509339 0.4745834 0.4474232 -0.5547519 0.4745834 0.4474232 -0.5584371 0.4745834 0.4474232 -0.5619986 0.4745834 0.4474232 -0.5654443 0.4745834 0.4474232 -0.5687816 0.4745834 0.4474232 -0.092819 0.4822838 0.4474232 -0.2262531 0.4822838 0.4474232 -0.2875993 0.4822838 0.4474232 -0.3262122 0.4822838 0.4474232 -0.3544566 0.4822838 0.4474232 -0.3767383 0.4822838 0.4474232 -0.3951413 0.4822838 0.4474232 -0.4108177 0.4822838 0.4474232 -0.4244723 0.4822838 0.4474232 -0.4365675 0.4822838 0.4474232 -0.4474232 0.4822838 0.4474232 -0.45727 0.4822838 0.4474232 -0.4662797 0.4822838 0.4474232 -0.4745834 0.4822838 0.4474232 -0.4822838 0.4822838 0.4474232 -0.4894626 0.4822838 0.4474232 -0.4961862 0.4822838 0.4474232 -0.5025087 0.4822838 0.4474232 -0.5084753 0.4822838 0.4474232 -0.514124 0.4822838 0.4474232 -0.519487 0.4822838 0.4474232 -0.5245917 0.4822838 0.4474232 -0.529462 0.4822838 0.4474232 -0.5341183 0.4822838 0.4474232 -0.5385787 0.4822838 0.4474232 -0.5428591 0.4822838 0.4474232 -0.5469733 0.4822838 0.4474232 -0.5509339 0.4822838 0.4474232 -0.5547519 0.4822838 0.4474232 -0.5584371 0.4822838 0.4474232 -0.5619986 0.4822838 0.4474232 -0.5654443 0.4822838 0.4474232 -0.5687816 0.4822838 0.4474232 -0.092819 0.4894626 0.4474232 -0.2262531 0.4894626 0.4474232 -0.2875993 0.4894626 0.4474232 -0.3262122 0.4894626 0.4474232 -0.3544566 0.4894626 0.4474232 -0.3767383 0.4894626 0.4474232 -0.3951413 0.4894626 0.4474232 -0.4108177 0.4894626 0.4474232 -0.4244723 0.4894626 0.4474232 -0.4365675 0.4894626 0.4474232 -0.4474232 0.4894626 0.4474232 -0.45727 0.4894626 0.4474232 -0.4662797 0.4894626 0.4474232 -0.4745834 0.4894626 0.4474232 -0.4822838 0.4894626 0.4474232 -0.4894626 0.4894626 0.4474232 -0.4961862 0.4894626 0.4474232 -0.5025087 0.4894626 0.4474232 -0.5084753 0.4894626 0.4474232 -0.514124 0.4894626 0.4474232 -0.519487 0.4894626 0.4474232 -0.5245917 0.4894626 0.4474232 -0.529462 0.4894626 0.4474232 -0.5341183 0.4894626 0.4474232 -0.5385787 0.4894626 0.4474232 -0.5428591 0.4894626 0.4474232 -0.5469733 0.4894626 0.4474232 -0.5509339 0.4894626 0.4474232 -0.5547519 0.4894626 0.4474232 -0.5584371 0.4894626 0.4474232 -0.5619986 0.4894626 0.4474232 -0.5654443 0.4894626 0.4474232 -0.5687816 0.4894626 0.4474232 -0.092819 0.4961862 0.4474232 -0.2262531 0.4961862 0.4474232 -0.2875993 0.4961862 0.4474232 -0.3262122 0.4961862 0.4474232 -0.3544566 0.4961862 0.4474232 -0.3767383 0.4961862 0.4474232 -0.3951413 0.4961862 0.4474232 -0.4108177 0.4961862 0.4474232 -0.4244723 0.4961862 0.4474232 -0.4365675 0.4961862 0.4474232 -0.4474232 0.4961862 0.4474232 -0.45727 0.4961862 0.4474232 -0.4662797 0.4961862 0.4474232 -0.4745834 0.4961862 0.4474232 -0.4822838 0.4961862 0.4474232 -0.4894626 0.4961862 0.4474232 -0.4961862 0.4961862 0.4474232 -0.5025087 0.4961862 0.4474232 -0.5084753 0.4961862 0.4474232 -0.514124 0.4961862 0.4474232 -0.519487 0.4961862 0.4474232 -0.5245917 0.4961862 0.4474232 -0.529462 0.4961862 0.4474232 -0.5341183 0.4961862 0.4474232 -0.5385787 0.4961862 0.4474232 -0.5428591 0.4961862 0.4474232 -0.5469733 0.4961862 0.4474232 -0.5509339 0.4961862 0.4474232 -0.5547519 0.4961862 0.4474232 -0.5584371 0.4961862 0.4474232 -0.5619986 0.4961862 0.4474232 -0.5654443 0.4961862 0.4474232 -0.5687816 0.4961862 0.4474232 -0.092819 0.5025087 0.4474232 -0.2262531 0.5025087 0.4474232 -0.2875993 0.5025087 0.4474232 -0.3262122 0.5025087 0.4474232 -0.3544566 0.5025087 0.4474232 -0.3767383 0.5025087 0.4474232 -0.3951413 0.5025087 0.4474232 -0.4108177 0.5025087 0.4474232 -0.4244723 0.5025087 0.4474232 -0.4365675 0.5025087 0.4474232 -0.4474232 0.5025087 0.4474232 -0.45727 0.5025087 0.4474232 -0.4662797 0.5025087 0.4474232 -0.4745834 0.5025087 0.4474232 -0.4822838 0.5025087 0.4474232 -0.4894626 0.5025087 0.4474232 -0.4961862 0.5025087 0.4474232 -0.5025087 0.5025087 0.4474232 -0.5084753 0.5025087 0.4474232 -0.514124 0.5025087 0.4474232 -0.519487 0.5025087 0.4474232 -0.5245917 0.5025087 0.4474232 -0.529462 0.5025087 0.4474232 -0.5341183 0.5025087 0.4474232 -0.5385787 0.5025087 0.4474232 -0.5428591 0.5025087 0.4474232 -0.5469733 0.5025087 0.4474232 -0.5509339 0.5025087 0.4474232 -0.5547519 0.5025087 0.4474232 -0.5584371 0.5025087 0.4474232 -0.5619986 0.5025087 0.4474232 -0.5654443 0.5025087 0.4474232 -0.5687816 0.5025087 0.4474232 -0.092819 0.5084753 0.4474232 -0.2262531 0.5084753 0.4474232 -0.2875993 0.5084753 0.4474232 -0.3262122 0.5084753 0.4474232 -0.3544566 0.5084753 0.4474232 -0.3767383 0.5084753 0.4474232 -0.3951413 0.5084753 0.4474232 -0.4108177 0.5084753 0.4474232 -0.4244723 0.5084753 0.4474232 -0.4365675 0.5084753 0.4474232 -0.4474232 0.5084753 0.4474232 -0.45727 0.5084753 0.4474232 -0.4662797 0.5084753 0.4474232 -0.4745834 0.5084753 0.4474232 -0.4822838 0.5084753 0.4474232 -0.4894626 0.5084753 0.4474232 -0.4961862 0.5084753 0.4474232 -0.5025087 0.5084753 0.4474232 -0.5084753 0.5084753 0.4474232 -0.514124 0.5084753 0.4474232 -0.519487 0.5084753 0.4474232 -0.5245917 0.5084753 0.4474232 -0.529462 0.5084753 0.4474232 -0.5341183 0.5084753 0.4474232 -0.5385787 0.5084753 0.4474232 -0.5428591 0.5084753 0.4474232 -0.5469733 0.5084753 0.4474232 -0.5509339 0.5084753 0.4474232 -0.5547519 0.5084753 0.4474232 -0.5584371 0.5084753 0.4474232 -0.5619986 0.5084753 0.4474232 -0.5654443 0.5084753 0.4474232 -0.5687816 0.5084753 0.4474232 -0.092819 0.514124 0.4474232 -0.2262531 0.514124 0.4474232 -0.2875993 0.514124 0.4474232 -0.3262122 0.514124 0.4474232 -0.3544566 0.514124 0.4474232 -0.3767383 0.514124 0.4474232 -0.3951413 0.514124 0.4474232 -0.4108177 0.514124 0.4474232 -0.4244723 0.514124 0.4474232 -0.4365675 0.514124 0.4474232 -0.4474232 0.514124 0.4474232 -0.45727 0.514124 0.4474232 -0.4662797 0.514124 0.4474232 -0.4745834 0.514124 0.4474232 -0.4822838 0.514124 0.4474232 -0.4894626 0.514124 0.4474232 -0.4961862 0.514124 0.4474232 -0.5025087 0.514124 0.4474232 -0.5084753 0.514124 0.4474232 -0.514124 0.514124 0.4474232 -0.519487 0.514124 0.4474232 -0.5245917 0.514124 0.4474232 -0.529462 0.514124 0.4474232 -0.5341183 0.514124 0.4474232 -0.5385787 0.514124 0.4474232 -0.5428591 0.514124 0.4474232 -0.5469733 0.514124 0.4474232 -0.5509339 0.514124 0.4474232 -0.5547519 0.514124 0.4474232 -0.5584371 0.514124 0.4474232 -0.5619986 0.514124 0.4474232 -0.5654443 0.514124 0.4474232 -0.5687816 0.514124 0.4474232 -0.092819 0.519487 0.4474232 -0.2262531 0.519487 0.4474232 -0.2875993 0.519487 0.4474232 -0.3262122 0.519487 0.4474232 -0.3544566 0.519487 0.4474232 -0.3767383 0.519487 0.4474232 -0.3951413 0.519487 0.4474232 -0.4108177 0.519487 0.4474232 -0.4244723 0.519487 0.4474232 -0.4365675 0.519487 0.4474232 -0.4474232 0.519487 0.4474232 -0.45727 0.519487 0.4474232 -0.4662797 0.519487 0.4474232 -0.4745834 0.519487 0.4474232 -0.4822838 0.519487 0.4474232 -0.4894626 0.519487 0.4474232 -0.4961862 0.519487 0.4474232 -0.5025087 0.519487 0.4474232 -0.5084753 0.519487 0.4474232 -0.514124 0.519487 0.4474232 -0.519487 0.519487 0.4474232 -0.5245917 0.519487 0.4474232 -0.529462 0.519487 0.4474232 -0.5341183 0.519487 0.4474232 -0.5385787 0.519487 0.4474232 -0.5428591 0.519487 0.4474232 -0.5469733 0.519487 0.4474232 -0.5509339 0.519487 0.4474232 -0.5547519 0.519487 0.4474232 -0.5584371 0.519487 0.4474232 -0.5619986 0.519487 0.4474232 -0.5654443 0.519487 0.4474232 -0.5687816 0.519487 0.4474232 -0.092819 0.5245917 0.4474232 -0.2262531 0.5245917 0.4474232 -0.2875993 0.5245917 0.4474232 -0.3262122 0.5245917 0.4474232 -0.3544566 0.5245917 0.4474232 -0.3767383 0.5245917 0.4474232 -0.3951413 0.5245917 0.4474232 -0.4108177 0.5245917 0.4474232 -0.4244723 0.5245917 0.4474232 -0.4365675 0.5245917 0.4474232 -0.4474232 0.5245917 0.4474232 -0.45727 0.5245917 0.4474232 -0.4662797 0.5245917 0.4474232 -0.4745834 0.5245917 0.4474232 -0.4822838 0.5245917 0.4474232 -0.4894626 0.5245917 0.4474232 -0.4961862 0.5245917 0.4474232 -0.5025087 0.5245917 0.4474232 -0.5084753 0.5245917 0.4474232 -0.514124 0.5245917 0.4474232 -0.519487 0.5245917 0.4474232 -0.5245917 0.5245917 0.4474232 -0.529462 0.5245917 0.4474232 -0.5341183 0.5245917 0.4474232 -0.5385787 0.5245917 0.4474232 -0.5428591 0.5245917 0.4474232 -0.5469733 0.5245917 0.4474232 -0.5509339 0.5245917 0.4474232 -0.5547519 0.5245917 0.4474232 -0.5584371 0.5245917 0.4474232 -0.5619986 0.5245917 0.4474232 -0.5654443 0.5245917 0.4474232 -0.5687816 0.5245917 0.4474232 -0.092819 0.529462 0.4474232 -0.2262531 0.529462 0.4474232 -0.2875993 0.529462 0.4474232 -0.3262122 0.529462 0.4474232 -0.3544566 0.529462 0.4474232 -0.3767383 0.529462 0.4474232 -0.3951413 0.529462 0.4474232 -0.4108177 0.529462 0.4474232 -0.4244723 0.529462 0.4474232 -0.4365675 0.529462 0.4474232 -0.4474232 0.529462 0.4474232 -0.45727 0.529462 0.4474232 -0.4662797 0.529462 0.4474232 -0.4745834 0.529462 0.4474232 -0.4822838 0.529462 0.4474232 -0.4894626 0.529462 0.4474232 -0.4961862 0.529462 0.4474232 -0.5025087 0.529462 0.4474232 -0.5084753 0.529462 0.4474232 -0.514124 0.529462 0.4474232 -0.519487 0.529462 0.4474232 -0.5245917 0.529462 0.4474232 -0.529462 0.529462 0.4474232 -0.5341183 0.529462 0.4474232 -0.5385787 0.529462 0.4474232 -0.5428591 0.529462 0.4474232 -0.5469733 0.529462 0.4474232 -0.5509339 0.529462 0.4474232 -0.5547519 0.529462 0.4474232 -0.5584371 0.529462 0.4474232 -0.5619986 0.529462 0.4474232 -0.5654443 0.529462 0.4474232 -0.5687816 0.529462 0.4474232 -0.092819 0.5341183 0.4474232 -0.2262531 0.5341183 0.4474232 -0.2875993 0.5341183 0.4474232 -0.3262122 0.5341183 0.4474232 -0.3544566 0.5341183 0.4474232 -0.3767383 0.5341183 0.4474232 -0.3951413 0.5341183 0.4474232 -0.4108177 0.5341183 0.4474232 -0.4244723 0.5341183 0.4474232 -0.4365675 0.5341183 0.4474232 -0.4474232 0.5341183 0.4474232 -0.45727 0.5341183 0.4474232 -0.4662797 0.5341183 0.4474232 -0.4745834 0.5341183 0.4474232 -0.4822838 0.5341183 0.4474232 -0.4894626 0.5341183 0.4474232 -0.4961862 0.5341183 0.4474232 -0.5025087 0.5341183 0.4474232 -0.5084753 0.5341183 0.4474232 -0.514124 0.5341183 0.4474232 -0.519487 0.5341183 0.4474232 -0.5245917 0.5341183 0.4474232 -0.529462 0.5341183 0.4474232 -0.5341183 0.5341183 0.4474232 -0.5385787 0.5341183 0.4474232 -0.5428591 0.5341183 0.4474232 -0.5469733 0.5341183 0.4474232 -0.5509339 0.5341183 0.4474232 -0.5547519 0.5341183 0.4474232 -0.5584371 0.5341183 0.4474232 -0.5619986 0.5341183 0.4474232 -0.5654443 0.5341183 0.4474232 -0.5687816 0.5341183 0.4474232 -0.092819 0.5385787 0.4474232 -0.2262531 0.5385787 0.4474232 -0.2875993 0.5385787 0.4474232 -0.3262122 0.5385787 0.4474232 -0.3544566 0.5385787 0.4474232 -0.3767383 0.5385787 0.4474232 -0.3951413 0.5385787 0.4474232 -0.4108177 0.5385787 0.4474232 -0.4244723 0.5385787 0.4474232 -0.4365675 0.5385787 0.4474232 -0.4474232 0.5385787 0.4474232 -0.45727 0.5385787 0.4474232 -0.4662797 0.5385787 0.4474232 -0.4745834 0.5385787 0.4474232 -0.4822838 0.5385787 0.4474232 -0.4894626 0.5385787 0.4474232 -0.4961862 0.5385787 0.4474232 -0.5025087 0.5385787 0.4474232 -0.5084753 0.5385787 0.4474232 -0.514124 0.5385787 0.4474232 -0.519487 0.5385787 0.4474232 -0.5245917 0.5385787 0.4474232 -0.529462 0.5385787 0.4474232 -0.5341183 0.5385787 0.4474232 -0.5385787 0.5385787 0.4474232 -0.5428591 0.5385787 0.4474232 -0.5469733 0.5385787 0.4474232 -0.5509339 0.5385787 0.4474232 -0.5547519 0.5385787 0.4474232 -0.5584371 0.5385787 0.4474232 -0.5619986 0.5385787 0.4474232 -0.5654443 0.5385787 0.4474232 -0.5687816 0.5385787 0.4474232 -0.092819 0.5428591 0.4474232 -0.2262531 0.5428591 0.4474232 -0.2875993 0.5428591 0.4474232 -0.3262122 0.5428591 0.4474232 -0.3544566 0.5428591 0.4474232 -0.3767383 0.5428591 0.4474232 -0.3951413 0.5428591 0.4474232 -0.4108177 0.5428591 0.4474232 -0.4244723 0.5428591 0.4474232 -0.4365675 0.5428591 0.4474232 -0.4474232 0.5428591 0.4474232 -0.45727 0.5428591 0.4474232 -0.4662797 0.5428591 0.4474232 -0.4745834 0.5428591 0.4474232 -0.4822838 0.5428591 0.4474232 -0.4894626 0.5428591 0.4474232 -0.4961862 0.5428591 0.4474232 -0.5025087 0.5428591 0.4474232 -0.5084753 0.5428591 0.4474232 -0.514124 0.5428591 0.4474232 -0.519487 0.5428591 0.4474232 -0.5245917 0.5428591 0.4474232 -0.529462 0.5428591 0.4474232 -0.5341183 0.5428591 0.4474232 -0.5385787 0.5428591 0.4474232 -0.5428591 0.5428591 0.4474232 -0.5469733 0.5428591 0.4474232 -0.5509339 0.5428591 0.4474232 -0.5547519 0.5428591 0.4474232 -0.5584371 0.5428591 0.4474232 -0.5619986 0.5428591 0.4474232 -0.5654443 0.5428591 0.4474232 -0.5687816 0.5428591 0.4474232 -0.092819 0.5469733 0.4474232 -0.2262531 0.5469733 0.4474232 -0.2875993 0.5469733 0.4474232 -0.3262122 0.5469733 0.4474232 -0.3544566 0.5469733 0.4474232 -0.3767383 0.5469733 0.4474232 -0.3951413 0.5469733 0.4474232 -0.4108177 0.5469733 0.4474232 -0.4244723 0.5469733 0.4474232 -0.4365675 0.5469733 0.4474232 -0.4474232 0.5469733 0.4474232 -0.45727 0.5469733 0.4474232 -0.4662797 0.5469733 0.4474232 -0.4745834 0.5469733 0.4474232 -0.4822838 0.5469733 0.4474232 -0.4894626 0.5469733 0.4474232 -0.4961862 0.5469733 0.4474232 -0.5025087 0.5469733 0.4474232 -0.5084753 0.5469733 0.4474232 -0.514124 0.5469733 0.4474232 -0.519487 0.5469733 0.4474232 -0.5245917 0.5469733 0.4474232 -0.529462 0.5469733 0.4474232 -0.5341183 0.5469733 0.4474232 -0.5385787 0.5469733 0.4474232 -0.5428591 0.5469733 0.4474232 -0.5469733 0.5469733 0.4474232 -0.5509339 0.5469733 0.4474232 -0.5547519 0.5469733 0.4474232 -0.5584371 0.5469733 0.4474232 -0.5619986 0.5469733 0.4474232 -0.5654443 0.5469733 0.4474232 -0.5687816 0.5469733 0.4474232 -0.092819 0.5509339 0.4474232 -0.2262531 0.5509339 0.4474232 -0.2875993 0.5509339 0.4474232 -0.3262122 0.5509339 0.4474232 -0.3544566 0.5509339 0.4474232 -0.3767383 0.5509339 0.4474232 -0.3951413 0.5509339 0.4474232 -0.4108177 0.5509339 0.4474232 -0.4244723 0.5509339 0.4474232 -0.4365675 0.5509339 0.4474232 -0.4474232 0.5509339 0.4474232 -0.45727 0.5509339 0.4474232 -0.4662797 0.5509339 0.4474232 -0.4745834 0.5509339 0.4474232 -0.4822838 0.5509339 0.4474232 -0.4894626 0.5509339 0.4474232 -0.4961862 0.5509339 0.4474232 -0.5025087 0.5509339 0.4474232 -0.5084753 0.5509339 0.4474232 -0.514124 0.5509339 0.4474232 -0.519487 0.5509339 0.4474232 -0.5245917 0.5509339 0.4474232 -0.529462 0.5509339 0.4474232 -0.5341183 0.5509339 0.4474232 -0.5385787 0.5509339 0.4474232 -0.5428591 0.5509339 0.4474232 -0.5469733 0.5509339 0.4474232 -0.5509339 0.5509339 0.4474232 -0.5547519 0.5509339 0.4474232 -0.5584371 0.5509339 0.4474232 -0.5619986 0.5509339 0.4474232 -0.5654443 0.5509339 0.4474232 -0.5687816 0.5509339 0.4474232 -0.092819 0.5547519 0.4474232 -0.2262531 0.5547519 0.4474232 -0.2875993 0.5547519 0.4474232 -0.3262122 0.5547519 0.4474232 -0.3544566 0.5547519 0.4474232 -0.3767383 0.5547519 0.4474232 -0.3951413 0.5547519 0.4474232 -0.4108177 0.5547519 0.4474232 -0.4244723 0.5547519 0.4474232 -0.4365675 0.5547519 0.4474232 -0.4474232 0.5547519 0.4474232 -0.45727 0.5547519 0.4474232 -0.4662797 0.5547519 0.4474232 -0.4745834 0.5547519 0.4474232 -0.4822838 0.5547519 0.4474232 -0.4894626 0.5547519 0.4474232 -0.4961862 0.5547519 0.4474232 -0.5025087 0.5547519 0.4474232 -0.5084753 0.5547519 0.4474232 -0.514124 0.5547519 0.4474232 -0.519487 0.5547519 0.4474232 -0.5245917 0.5547519 0.4474232 -0.529462 0.5547519 0.4474232 -0.5341183 0.5547519 0.4474232 -0.5385787 0.5547519 0.4474232 -0.5428591 0.5547519 0.4474232 -0.5469733 0.5547519 0.4474232 -0.5509339 0.5547519 0.4474232 -0.5547519 0.5547519 0.4474232 -0.5584371 0.5547519 0.4474232 -0.5619986 0.5547519 0.4474232 -0.5654443 0.5547519 0.4474232 -0.5687816 0.5547519 0.4474232 -0.092819 0.5584371 0.4474232 -0.2262531 0.5584371 0.4474232 -0.2875993 0.5584371 0.4474232 -0.3262122 0.5584371 0.4474232 -0.3544566 0.5584371 0.4474232 -0.3767383 0.5584371 0.4474232 -0.3951413 0.5584371 0.4474232 -0.4108177 0.5584371 0.4474232 -0.4244723 0.5584371 0.4474232 -0.4365675 0.5584371 0.4474232 -0.4474232 0.5584371 0.4474232 -0.45727 0.5584371 0.4474232 -0.4662797 0.5584371 0.4474232 -0.4745834 0.5584371 0.4474232 -0.4822838 0.5584371 0.4474232 -0.4894626 0.5584371 0.4474232 -0.4961862 0.5584371 0.4474232 -0.5025087 0.5584371 0.4474232 -0.5084753 0.5584371 0.4474232 -0.514124 0.5584371 0.4474232 -0.519487 0.5584371 0.4474232 -0.5245917 0.5584371 0.4474232 -0.529462 0.5584371 0.4474232 -0.5341183 0.5584371 0.4474232 -0.5385787 0.5584371 0.4474232 -0.5428591 0.5584371 0.4474232 -0.5469733 0.5584371 0.4474232 -0.5509339 0.5584371 0.4474232 -0.5547519 0.5584371 0.4474232 -0.5584371 0.5584371 0.4474232 -0.5619986 0.5584371 0.4474232 -0.5654443 0.5584371 0.4474232 -0.5687816 0.5584371 0.4474232 -0.092819 0.5619986 0.4474232 -0.2262531 0.5619986 0.4474232 -0.2875993 0.5619986 0.4474232 -0.3262122 0.5619986 0.4474232 -0.3544566 0.5619986 0.4474232 -0.3767383 0.5619986 0.4474232 -0.3951413 0.5619986 0.4474232 -0.4108177 0.5619986 0.4474232 -0.4244723 0.5619986 0.4474232 -0.4365675 0.5619986 0.4474232 -0.4474232 0.5619986 0.4474232 -0.45727 0.5619986 0.4474232 -0.4662797 0.5619986 0.4474232 -0.4745834 0.5619986 0.4474232 -0.4822838 0.5619986 0.4474232 -0.4894626 0.5619986 0.4474232 -0.4961862 0.5619986 0.4474232 -0.5025087 0.5619986 0.4474232 -0.5084753 0.5619986 0.4474232 -0.514124 0.5619986 0.4474232 -0.519487 0.5619986 0.4474232 -0.5245917 0.5619986 0.4474232 -0.529462 0.5619986 0.4474232 -0.5341183 0.5619986 0.4474232 -0.5385787 0.5619986 0.4474232 -0.5428591 0.5619986 0.4474232 -0.5469733 0.5619986 0.4474232 -0.5509339 0.5619986 0.4474232 -0.5547519 0.5619986 0.4474232 -0.5584371 0.5619986 0.4474232 -0.5619986 0.5619986 0.4474232 -0.5654443 0.5619986 0.4474232 -0.5687816 0.5619986 0.4474232 -0.092819 0.5654443 0.4474232 -0.2262531 0.5654443 0.4474232 -0.2875993 0.5654443 0.4474232 -0.3262122 0.5654443 0.4474232 -0.3544566 0.5654443 0.4474232 -0.3767383 0.5654443 0.4474232 -0.3951413 0.5654443 0.4474232 -0.4108177 0.5654443 0.4474232 -0.4244723 0.5654443 0.4474232 -0.4365675 0.5654443 0.4474232 -0.4474232 0.5654443 0.4474232 -0.45727 0.5654443 0.4474232 -0.4662797 0.5654443 0.4474232 -0.4745834 0.5654443 0.4474232 -0.4822838 0.5654443 0.4474232 -0.4894626 0.5654443 0.4474232 -0.4961862 0.5654443 0.4474232 -0.5025087 0.5654443 0.4474232 -0.5084753 0.5654443 0.4474232 -0.514124 0.5654443 0.4474232 -0.519487 0.5654443 0.4474232 -0.5245917 0.5654443 0.4474232 -0.529462 0.5654443 0.4474232 -0.5341183 0.5654443 0.4474232 -0.5385787 0.5654443 0.4474232 -0.5428591 0.5654443 0.4474232 -0.5469733 0.5654443 0.4474232 -0.5509339 0.5654443 0.4474232 -0.5547519 0.5654443 0.4474232 -0.5584371 0.5654443 0.4474232 -0.5619986 0.5654443 0.4474232 -0.5654443 0.5654443 0.4474232 -0.5687816 0.5654443 0.4474232 -0.092819 0.5687816 0.4474232 -0.2262531 0.5687816 0.4474232 -0.2875993 0.5687816 0.4474232 -0.3262122 0.5687816 0.4474232 -0.3544566 0.5687816 0.4474232 -0.3767383 0.5687816 0.4474232 -0.3951413 0.5687816 0.4474232 -0.4108177 0.5687816 0.4474232 -0.4244723 0.5687816 0.4474232 -0.4365675 0.5687816 0.4474232 -0.4474232 0.5687816 0.4474232 -0.45727 0.5687816 0.4474232 -0.4662797 0.5687816 0.4474232 -0.4745834 0.5687816 0.4474232 -0.4822838 0.5687816 0.4474232 -0.4894626 0.5687816 0.4474232 -0.4961862 0.5687816 0.4474232 -0.5025087 0.5687816 0.4474232 -0.5084753 0.5687816 0.4474232 -0.514124 0.5687816 0.4474232 -0.519487 0.5687816 0.4474232 -0.5245917 0.5687816 0.4474232 -0.529462 0.5687816 0.4474232 -0.5341183 0.5687816 0.4474232 -0.5385787 0.5687816 0.4474232 -0.5428591 0.5687816 0.4474232 -0.5469733 0.5687816 0.4474232 -0.5509339 0.5687816 0.4474232 -0.5547519 0.5687816 0.4474232 -0.5584371 0.5687816 0.4474232 -0.5619986 0.5687816 0.4474232 -0.5654443 0.5687816 0.4474232 -0.5687816 0.5687816 0.4474232 -0.092819 0.092819 0.45727 -0.2262531 0.092819 0.45727 -0.2875993 0.092819 0.45727 -0.3262122 0.092819 0.45727 -0.3544566 0.092819 0.45727 -0.3767383 0.092819 0.45727 -0.3951413 0.092819 0.45727 -0.4108177 0.092819 0.45727 -0.4244723 0.092819 0.45727 -0.4365675 0.092819 0.45727 -0.4474232 0.092819 0.45727 -0.45727 0.092819 0.45727 -0.4662797 0.092819 0.45727 -0.4745834 0.092819 0.45727 -0.4822838 0.092819 0.45727 -0.4894626 0.092819 0.45727 -0.4961862 0.092819 0.45727 -0.5025087 0.092819 0.45727 -0.5084753 0.092819 0.45727 -0.514124 0.092819 0.45727 -0.519487 0.092819 0.45727 -0.5245917 0.092819 0.45727 -0.529462 0.092819 0.45727 -0.5341183 0.092819 0.45727 -0.5385787 0.092819 0.45727 -0.5428591 0.092819 0.45727 -0.5469733 0.092819 0.45727 -0.5509339 0.092819 0.45727 -0.5547519 0.092819 0.45727 -0.5584371 0.092819 0.45727 -0.5619986 0.092819 0.45727 -0.5654443 0.092819 0.45727 -0.5687816 0.092819 0.45727 -0.092819 0.2262531 0.45727 -0.2262531 0.2262531 0.45727 -0.2875993 0.2262531 0.45727 -0.3262122 0.2262531 0.45727 -0.3544566 0.2262531 0.45727 -0.3767383 0.2262531 0.45727 -0.3951413 0.2262531 0.45727 -0.4108177 0.2262531 0.45727 -0.4244723 0.2262531 0.45727 -0.4365675 0.2262531 0.45727 -0.4474232 0.2262531 0.45727 -0.45727 0.2262531 0.45727 -0.4662797 0.2262531 0.45727 -0.4745834 0.2262531 0.45727 -0.4822838 0.2262531 0.45727 -0.4894626 0.2262531 0.45727 -0.4961862 0.2262531 0.45727 -0.5025087 0.2262531 0.45727 -0.5084753 0.2262531 0.45727 -0.514124 0.2262531 0.45727 -0.519487 0.2262531 0.45727 -0.5245917 0.2262531 0.45727 -0.529462 0.2262531 0.45727 -0.5341183 0.2262531 0.45727 -0.5385787 0.2262531 0.45727 -0.5428591 0.2262531 0.45727 -0.5469733 0.2262531 0.45727 -0.5509339 0.2262531 0.45727 -0.5547519 0.2262531 0.45727 -0.5584371 0.2262531 0.45727 -0.5619986 0.2262531 0.45727 -0.5654443 0.2262531 0.45727 -0.5687816 0.2262531 0.45727 -0.092819 0.2875993 0.45727 -0.2262531 0.2875993 0.45727 -0.2875993 0.2875993 0.45727 -0.3262122 0.2875993 0.45727 -0.3544566 0.2875993 0.45727 -0.3767383 0.2875993 0.45727 -0.3951413 0.2875993 0.45727 -0.4108177 0.2875993 0.45727 -0.4244723 0.2875993 0.45727 -0.4365675 0.2875993 0.45727 -0.4474232 0.2875993 0.45727 -0.45727 0.2875993 0.45727 -0.4662797 0.2875993 0.45727 -0.4745834 0.2875993 0.45727 -0.4822838 0.2875993 0.45727 -0.4894626 0.2875993 0.45727 -0.4961862 0.2875993 0.45727 -0.5025087 0.2875993 0.45727 -0.5084753 0.2875993 0.45727 -0.514124 0.2875993 0.45727 -0.519487 0.2875993 0.45727 -0.5245917 0.2875993 0.45727 -0.529462 0.2875993 0.45727 -0.5341183 0.2875993 0.45727 -0.5385787 0.2875993 0.45727 -0.5428591 0.2875993 0.45727 -0.5469733 0.2875993 0.45727 -0.5509339 0.2875993 0.45727 -0.5547519 0.2875993 0.45727 -0.5584371 0.2875993 0.45727 -0.5619986 0.2875993 0.45727 -0.5654443 0.2875993 0.45727 -0.5687816 0.2875993 0.45727 -0.092819 0.3262122 0.45727 -0.2262531 0.3262122 0.45727 -0.2875993 0.3262122 0.45727 -0.3262122 0.3262122 0.45727 -0.3544566 0.3262122 0.45727 -0.3767383 0.3262122 0.45727 -0.3951413 0.3262122 0.45727 -0.4108177 0.3262122 0.45727 -0.4244723 0.3262122 0.45727 -0.4365675 0.3262122 0.45727 -0.4474232 0.3262122 0.45727 -0.45727 0.3262122 0.45727 -0.4662797 0.3262122 0.45727 -0.4745834 0.3262122 0.45727 -0.4822838 0.3262122 0.45727 -0.4894626 0.3262122 0.45727 -0.4961862 0.3262122 0.45727 -0.5025087 0.3262122 0.45727 -0.5084753 0.3262122 0.45727 -0.514124 0.3262122 0.45727 -0.519487 0.3262122 0.45727 -0.5245917 0.3262122 0.45727 -0.529462 0.3262122 0.45727 -0.5341183 0.3262122 0.45727 -0.5385787 0.3262122 0.45727 -0.5428591 0.3262122 0.45727 -0.5469733 0.3262122 0.45727 -0.5509339 0.3262122 0.45727 -0.5547519 0.3262122 0.45727 -0.5584371 0.3262122 0.45727 -0.5619986 0.3262122 0.45727 -0.5654443 0.3262122 0.45727 -0.5687816 0.3262122 0.45727 -0.092819 0.3544566 0.45727 -0.2262531 0.3544566 0.45727 -0.2875993 0.3544566 0.45727 -0.3262122 0.3544566 0.45727 -0.3544566 0.3544566 0.45727 -0.3767383 0.3544566 0.45727 -0.3951413 0.3544566 0.45727 -0.4108177 0.3544566 0.45727 -0.4244723 0.3544566 0.45727 -0.4365675 0.3544566 0.45727 -0.4474232 0.3544566 0.45727 -0.45727 0.3544566 0.45727 -0.4662797 0.3544566 0.45727 -0.4745834 0.3544566 0.45727 -0.4822838 0.3544566 0.45727 -0.4894626 0.3544566 0.45727 -0.4961862 0.3544566 0.45727 -0.5025087 0.3544566 0.45727 -0.5084753 0.3544566 0.45727 -0.514124 0.3544566 0.45727 -0.519487 0.3544566 0.45727 -0.5245917 0.3544566 0.45727 -0.529462 0.3544566 0.45727 -0.5341183 0.3544566 0.45727 -0.5385787 0.3544566 0.45727 -0.5428591 0.3544566 0.45727 -0.5469733 0.3544566 0.45727 -0.5509339 0.3544566 0.45727 -0.5547519 0.3544566 0.45727 -0.5584371 0.3544566 0.45727 -0.5619986 0.3544566 0.45727 -0.5654443 0.3544566 0.45727 -0.5687816 0.3544566 0.45727 -0.092819 0.3767383 0.45727 -0.2262531 0.3767383 0.45727 -0.2875993 0.3767383 0.45727 -0.3262122 0.3767383 0.45727 -0.3544566 0.3767383 0.45727 -0.3767383 0.3767383 0.45727 -0.3951413 0.3767383 0.45727 -0.4108177 0.3767383 0.45727 -0.4244723 0.3767383 0.45727 -0.4365675 0.3767383 0.45727 -0.4474232 0.3767383 0.45727 -0.45727 0.3767383 0.45727 -0.4662797 0.3767383 0.45727 -0.4745834 0.3767383 0.45727 -0.4822838 0.3767383 0.45727 -0.4894626 0.3767383 0.45727 -0.4961862 0.3767383 0.45727 -0.5025087 0.3767383 0.45727 -0.5084753 0.3767383 0.45727 -0.514124 0.3767383 0.45727 -0.519487 0.3767383 0.45727 -0.5245917 0.3767383 0.45727 -0.529462 0.3767383 0.45727 -0.5341183 0.3767383 0.45727 -0.5385787 0.3767383 0.45727 -0.5428591 0.3767383 0.45727 -0.5469733 0.3767383 0.45727 -0.5509339 0.3767383 0.45727 -0.5547519 0.3767383 0.45727 -0.5584371 0.3767383 0.45727 -0.5619986 0.3767383 0.45727 -0.5654443 0.3767383 0.45727 -0.5687816 0.3767383 0.45727 -0.092819 0.3951413 0.45727 -0.2262531 0.3951413 0.45727 -0.2875993 0.3951413 0.45727 -0.3262122 0.3951413 0.45727 -0.3544566 0.3951413 0.45727 -0.3767383 0.3951413 0.45727 -0.3951413 0.3951413 0.45727 -0.4108177 0.3951413 0.45727 -0.4244723 0.3951413 0.45727 -0.4365675 0.3951413 0.45727 -0.4474232 0.3951413 0.45727 -0.45727 0.3951413 0.45727 -0.4662797 0.3951413 0.45727 -0.4745834 0.3951413 0.45727 -0.4822838 0.3951413 0.45727 -0.4894626 0.3951413 0.45727 -0.4961862 0.3951413 0.45727 -0.5025087 0.3951413 0.45727 -0.5084753 0.3951413 0.45727 -0.514124 0.3951413 0.45727 -0.519487 0.3951413 0.45727 -0.5245917 0.3951413 0.45727 -0.529462 0.3951413 0.45727 -0.5341183 0.3951413 0.45727 -0.5385787 0.3951413 0.45727 -0.5428591 0.3951413 0.45727 -0.5469733 0.3951413 0.45727 -0.5509339 0.3951413 0.45727 -0.5547519 0.3951413 0.45727 -0.5584371 0.3951413 0.45727 -0.5619986 0.3951413 0.45727 -0.5654443 0.3951413 0.45727 -0.5687816 0.3951413 0.45727 -0.092819 0.4108177 0.45727 -0.2262531 0.4108177 0.45727 -0.2875993 0.4108177 0.45727 -0.3262122 0.4108177 0.45727 -0.3544566 0.4108177 0.45727 -0.3767383 0.4108177 0.45727 -0.3951413 0.4108177 0.45727 -0.4108177 0.4108177 0.45727 -0.4244723 0.4108177 0.45727 -0.4365675 0.4108177 0.45727 -0.4474232 0.4108177 0.45727 -0.45727 0.4108177 0.45727 -0.4662797 0.4108177 0.45727 -0.4745834 0.4108177 0.45727 -0.4822838 0.4108177 0.45727 -0.4894626 0.4108177 0.45727 -0.4961862 0.4108177 0.45727 -0.5025087 0.4108177 0.45727 -0.5084753 0.4108177 0.45727 -0.514124 0.4108177 0.45727 -0.519487 0.4108177 0.45727 -0.5245917 0.4108177 0.45727 -0.529462 0.4108177 0.45727 -0.5341183 0.4108177 0.45727 -0.5385787 0.4108177 0.45727 -0.5428591 0.4108177 0.45727 -0.5469733 0.4108177 0.45727 -0.5509339 0.4108177 0.45727 -0.5547519 0.4108177 0.45727 -0.5584371 0.4108177 0.45727 -0.5619986 0.4108177 0.45727 -0.5654443 0.4108177 0.45727 -0.5687816 0.4108177 0.45727 -0.092819 0.4244723 0.45727 -0.2262531 0.4244723 0.45727 -0.2875993 0.4244723 0.45727 -0.3262122 0.4244723 0.45727 -0.3544566 0.4244723 0.45727 -0.3767383 0.4244723 0.45727 -0.3951413 0.4244723 0.45727 -0.4108177 0.4244723 0.45727 -0.4244723 0.4244723 0.45727 -0.4365675 0.4244723 0.45727 -0.4474232 0.4244723 0.45727 -0.45727 0.4244723 0.45727 -0.4662797 0.4244723 0.45727 -0.4745834 0.4244723 0.45727 -0.4822838 0.4244723 0.45727 -0.4894626 0.4244723 0.45727 -0.4961862 0.4244723 0.45727 -0.5025087 0.4244723 0.45727 -0.5084753 0.4244723 0.45727 -0.514124 0.4244723 0.45727 -0.519487 0.4244723 0.45727 -0.5245917 0.4244723 0.45727 -0.529462 0.4244723 0.45727 -0.5341183 0.4244723 0.45727 -0.5385787 0.4244723 0.45727 -0.5428591 0.4244723 0.45727 -0.5469733 0.4244723 0.45727 -0.5509339 0.4244723 0.45727 -0.5547519 0.4244723 0.45727 -0.5584371 0.4244723 0.45727 -0.5619986 0.4244723 0.45727 -0.5654443 0.4244723 0.45727 -0.5687816 0.4244723 0.45727 -0.092819 0.4365675 0.45727 -0.2262531 0.4365675 0.45727 -0.2875993 0.4365675 0.45727 -0.3262122 0.4365675 0.45727 -0.3544566 0.4365675 0.45727 -0.3767383 0.4365675 0.45727 -0.3951413 0.4365675 0.45727 -0.4108177 0.4365675 0.45727 -0.4244723 0.4365675 0.45727 -0.4365675 0.4365675 0.45727 -0.4474232 0.4365675 0.45727 -0.45727 0.4365675 0.45727 -0.4662797 0.4365675 0.45727 -0.4745834 0.4365675 0.45727 -0.4822838 0.4365675 0.45727 -0.4894626 0.4365675 0.45727 -0.4961862 0.4365675 0.45727 -0.5025087 0.4365675 0.45727 -0.5084753 0.4365675 0.45727 -0.514124 0.4365675 0.45727 -0.519487 0.4365675 0.45727 -0.5245917 0.4365675 0.45727 -0.529462 0.4365675 0.45727 -0.5341183 0.4365675 0.45727 -0.5385787 0.4365675 0.45727 -0.5428591 0.4365675 0.45727 -0.5469733 0.4365675 0.45727 -0.5509339 0.4365675 0.45727 -0.5547519 0.4365675 0.45727 -0.5584371 0.4365675 0.45727 -0.5619986 0.4365675 0.45727 -0.5654443 0.4365675 0.45727 -0.5687816 0.4365675 0.45727 -0.092819 0.4474232 0.45727 -0.2262531 0.4474232 0.45727 -0.2875993 0.4474232 0.45727 -0.3262122 0.4474232 0.45727 -0.3544566 0.4474232 0.45727 -0.3767383 0.4474232 0.45727 -0.3951413 0.4474232 0.45727 -0.4108177 0.4474232 0.45727 -0.4244723 0.4474232 0.45727 -0.4365675 0.4474232 0.45727 -0.4474232 0.4474232 0.45727 -0.45727 0.4474232 0.45727 -0.4662797 0.4474232 0.45727 -0.4745834 0.4474232 0.45727 -0.4822838 0.4474232 0.45727 -0.4894626 0.4474232 0.45727 -0.4961862 0.4474232 0.45727 -0.5025087 0.4474232 0.45727 -0.5084753 0.4474232 0.45727 -0.514124 0.4474232 0.45727 -0.519487 0.4474232 0.45727 -0.5245917 0.4474232 0.45727 -0.529462 0.4474232 0.45727 -0.5341183 0.4474232 0.45727 -0.5385787 0.4474232 0.45727 -0.5428591 0.4474232 0.45727 -0.5469733 0.4474232 0.45727 -0.5509339 0.4474232 0.45727 -0.5547519 0.4474232 0.45727 -0.5584371 0.4474232 0.45727 -0.5619986 0.4474232 0.45727 -0.5654443 0.4474232 0.45727 -0.5687816 0.4474232 0.45727 -0.092819 0.45727 0.45727 -0.2262531 0.45727 0.45727 -0.2875993 0.45727 0.45727 -0.3262122 0.45727 0.45727 -0.3544566 0.45727 0.45727 -0.3767383 0.45727 0.45727 -0.3951413 0.45727 0.45727 -0.4108177 0.45727 0.45727 -0.4244723 0.45727 0.45727 -0.4365675 0.45727 0.45727 -0.4474232 0.45727 0.45727 -0.45727 0.45727 0.45727 -0.4662797 0.45727 0.45727 -0.4745834 0.45727 0.45727 -0.4822838 0.45727 0.45727 -0.4894626 0.45727 0.45727 -0.4961862 0.45727 0.45727 -0.5025087 0.45727 0.45727 -0.5084753 0.45727 0.45727 -0.514124 0.45727 0.45727 -0.519487 0.45727 0.45727 -0.5245917 0.45727 0.45727 -0.529462 0.45727 0.45727 -0.5341183 0.45727 0.45727 -0.5385787 0.45727 0.45727 -0.5428591 0.45727 0.45727 -0.5469733 0.45727 0.45727 -0.5509339 0.45727 0.45727 -0.5547519 0.45727 0.45727 -0.5584371 0.45727 0.45727 -0.5619986 0.45727 0.45727 -0.5654443 0.45727 0.45727 -0.5687816 0.45727 0.45727 -0.092819 0.4662797 0.45727 -0.2262531 0.4662797 0.45727 -0.2875993 0.4662797 0.45727 -0.3262122 0.4662797 0.45727 -0.3544566 0.4662797 0.45727 -0.3767383 0.4662797 0.45727 -0.3951413 0.4662797 0.45727 -0.4108177 0.4662797 0.45727 -0.4244723 0.4662797 0.45727 -0.4365675 0.4662797 0.45727 -0.4474232 0.4662797 0.45727 -0.45727 0.4662797 0.45727 -0.4662797 0.4662797 0.45727 -0.4745834 0.4662797 0.45727 -0.4822838 0.4662797 0.45727 -0.4894626 0.4662797 0.45727 -0.4961862 0.4662797 0.45727 -0.5025087 0.4662797 0.45727 -0.5084753 0.4662797 0.45727 -0.514124 0.4662797 0.45727 -0.519487 0.4662797 0.45727 -0.5245917 0.4662797 0.45727 -0.529462 0.4662797 0.45727 -0.5341183 0.4662797 0.45727 -0.5385787 0.4662797 0.45727 -0.5428591 0.4662797 0.45727 -0.5469733 0.4662797 0.45727 -0.5509339 0.4662797 0.45727 -0.5547519 0.4662797 0.45727 -0.5584371 0.4662797 0.45727 -0.5619986 0.4662797 0.45727 -0.5654443 0.4662797 0.45727 -0.5687816 0.4662797 0.45727 -0.092819 0.4745834 0.45727 -0.2262531 0.4745834 0.45727 -0.2875993 0.4745834 0.45727 -0.3262122 0.4745834 0.45727 -0.3544566 0.4745834 0.45727 -0.3767383 0.4745834 0.45727 -0.3951413 0.4745834 0.45727 -0.4108177 0.4745834 0.45727 -0.4244723 0.4745834 0.45727 -0.4365675 0.4745834 0.45727 -0.4474232 0.4745834 0.45727 -0.45727 0.4745834 0.45727 -0.4662797 0.4745834 0.45727 -0.4745834 0.4745834 0.45727 -0.4822838 0.4745834 0.45727 -0.4894626 0.4745834 0.45727 -0.4961862 0.4745834 0.45727 -0.5025087 0.4745834 0.45727 -0.5084753 0.4745834 0.45727 -0.514124 0.4745834 0.45727 -0.519487 0.4745834 0.45727 -0.5245917 0.4745834 0.45727 -0.529462 0.4745834 0.45727 -0.5341183 0.4745834 0.45727 -0.5385787 0.4745834 0.45727 -0.5428591 0.4745834 0.45727 -0.5469733 0.4745834 0.45727 -0.5509339 0.4745834 0.45727 -0.5547519 0.4745834 0.45727 -0.5584371 0.4745834 0.45727 -0.5619986 0.4745834 0.45727 -0.5654443 0.4745834 0.45727 -0.5687816 0.4745834 0.45727 -0.092819 0.4822838 0.45727 -0.2262531 0.4822838 0.45727 -0.2875993 0.4822838 0.45727 -0.3262122 0.4822838 0.45727 -0.3544566 0.4822838 0.45727 -0.3767383 0.4822838 0.45727 -0.3951413 0.4822838 0.45727 -0.4108177 0.4822838 0.45727 -0.4244723 0.4822838 0.45727 -0.4365675 0.4822838 0.45727 -0.4474232 0.4822838 0.45727 -0.45727 0.4822838 0.45727 -0.4662797 0.4822838 0.45727 -0.4745834 0.4822838 0.45727 -0.4822838 0.4822838 0.45727 -0.4894626 0.4822838 0.45727 -0.4961862 0.4822838 0.45727 -0.5025087 0.4822838 0.45727 -0.5084753 0.4822838 0.45727 -0.514124 0.4822838 0.45727 -0.519487 0.4822838 0.45727 -0.5245917 0.4822838 0.45727 -0.529462 0.4822838 0.45727 -0.5341183 0.4822838 0.45727 -0.5385787 0.4822838 0.45727 -0.5428591 0.4822838 0.45727 -0.5469733 0.4822838 0.45727 -0.5509339 0.4822838 0.45727 -0.5547519 0.4822838 0.45727 -0.5584371 0.4822838 0.45727 -0.5619986 0.4822838 0.45727 -0.5654443 0.4822838 0.45727 -0.5687816 0.4822838 0.45727 -0.092819 0.4894626 0.45727 -0.2262531 0.4894626 0.45727 -0.2875993 0.4894626 0.45727 -0.3262122 0.4894626 0.45727 -0.3544566 0.4894626 0.45727 -0.3767383 0.4894626 0.45727 -0.3951413 0.4894626 0.45727 -0.4108177 0.4894626 0.45727 -0.4244723 0.4894626 0.45727 -0.4365675 0.4894626 0.45727 -0.4474232 0.4894626 0.45727 -0.45727 0.4894626 0.45727 -0.4662797 0.4894626 0.45727 -0.4745834 0.4894626 0.45727 -0.4822838 0.4894626 0.45727 -0.4894626 0.4894626 0.45727 -0.4961862 0.4894626 0.45727 -0.5025087 0.4894626 0.45727 -0.5084753 0.4894626 0.45727 -0.514124 0.4894626 0.45727 -0.519487 0.4894626 0.45727 -0.5245917 0.4894626 0.45727 -0.529462 0.4894626 0.45727 -0.5341183 0.4894626 0.45727 -0.5385787 0.4894626 0.45727 -0.5428591 0.4894626 0.45727 -0.5469733 0.4894626 0.45727 -0.5509339 0.4894626 0.45727 -0.5547519 0.4894626 0.45727 -0.5584371 0.4894626 0.45727 -0.5619986 0.4894626 0.45727 -0.5654443 0.4894626 0.45727 -0.5687816 0.4894626 0.45727 -0.092819 0.4961862 0.45727 -0.2262531 0.4961862 0.45727 -0.2875993 0.4961862 0.45727 -0.3262122 0.4961862 0.45727 -0.3544566 0.4961862 0.45727 -0.3767383 0.4961862 0.45727 -0.3951413 0.4961862 0.45727 -0.4108177 0.4961862 0.45727 -0.4244723 0.4961862 0.45727 -0.4365675 0.4961862 0.45727 -0.4474232 0.4961862 0.45727 -0.45727 0.4961862 0.45727 -0.4662797 0.4961862 0.45727 -0.4745834 0.4961862 0.45727 -0.4822838 0.4961862 0.45727 -0.4894626 0.4961862 0.45727 -0.4961862 0.4961862 0.45727 -0.5025087 0.4961862 0.45727 -0.5084753 0.4961862 0.45727 -0.514124 0.4961862 0.45727 -0.519487 0.4961862 0.45727 -0.5245917 0.4961862 0.45727 -0.529462 0.4961862 0.45727 -0.5341183 0.4961862 0.45727 -0.5385787 0.4961862 0.45727 -0.5428591 0.4961862 0.45727 -0.5469733 0.4961862 0.45727 -0.5509339 0.4961862 0.45727 -0.5547519 0.4961862 0.45727 -0.5584371 0.4961862 0.45727 -0.5619986 0.4961862 0.45727 -0.5654443 0.4961862 0.45727 -0.5687816 0.4961862 0.45727 -0.092819 0.5025087 0.45727 -0.2262531 0.5025087 0.45727 -0.2875993 0.5025087 0.45727 -0.3262122 0.5025087 0.45727 -0.3544566 0.5025087 0.45727 -0.3767383 0.5025087 0.45727 -0.3951413 0.5025087 0.45727 -0.4108177 0.5025087 0.45727 -0.4244723 0.5025087 0.45727 -0.4365675 0.5025087 0.45727 -0.4474232 0.5025087 0.45727 -0.45727 0.5025087 0.45727 -0.4662797 0.5025087 0.45727 -0.4745834 0.5025087 0.45727 -0.4822838 0.5025087 0.45727 -0.4894626 0.5025087 0.45727 -0.4961862 0.5025087 0.45727 -0.5025087 0.5025087 0.45727 -0.5084753 0.5025087 0.45727 -0.514124 0.5025087 0.45727 -0.519487 0.5025087 0.45727 -0.5245917 0.5025087 0.45727 -0.529462 0.5025087 0.45727 -0.5341183 0.5025087 0.45727 -0.5385787 0.5025087 0.45727 -0.5428591 0.5025087 0.45727 -0.5469733 0.5025087 0.45727 -0.5509339 0.5025087 0.45727 -0.5547519 0.5025087 0.45727 -0.5584371 0.5025087 0.45727 -0.5619986 0.5025087 0.45727 -0.5654443 0.5025087 0.45727 -0.5687816 0.5025087 0.45727 -0.092819 0.5084753 0.45727 -0.2262531 0.5084753 0.45727 -0.2875993 0.5084753 0.45727 -0.3262122 0.5084753 0.45727 -0.3544566 0.5084753 0.45727 -0.3767383 0.5084753 0.45727 -0.3951413 0.5084753 0.45727 -0.4108177 0.5084753 0.45727 -0.4244723 0.5084753 0.45727 -0.4365675 0.5084753 0.45727 -0.4474232 0.5084753 0.45727 -0.45727 0.5084753 0.45727 -0.4662797 0.5084753 0.45727 -0.4745834 0.5084753 0.45727 -0.4822838 0.5084753 0.45727 -0.4894626 0.5084753 0.45727 -0.4961862 0.5084753 0.45727 -0.5025087 0.5084753 0.45727 -0.5084753 0.5084753 0.45727 -0.514124 0.5084753 0.45727 -0.519487 0.5084753 0.45727 -0.5245917 0.5084753 0.45727 -0.529462 0.5084753 0.45727 -0.5341183 0.5084753 0.45727 -0.5385787 0.5084753 0.45727 -0.5428591 0.5084753 0.45727 -0.5469733 0.5084753 0.45727 -0.5509339 0.5084753 0.45727 -0.5547519 0.5084753 0.45727 -0.5584371 0.5084753 0.45727 -0.5619986 0.5084753 0.45727 -0.5654443 0.5084753 0.45727 -0.5687816 0.5084753 0.45727 -0.092819 0.514124 0.45727 -0.2262531 0.514124 0.45727 -0.2875993 0.514124 0.45727 -0.3262122 0.514124 0.45727 -0.3544566 0.514124 0.45727 -0.3767383 0.514124 0.45727 -0.3951413 0.514124 0.45727 -0.4108177 0.514124 0.45727 -0.4244723 0.514124 0.45727 -0.4365675 0.514124 0.45727 -0.4474232 0.514124 0.45727 -0.45727 0.514124 0.45727 -0.4662797 0.514124 0.45727 -0.4745834 0.514124 0.45727 -0.4822838 0.514124 0.45727 -0.4894626 0.514124 0.45727 -0.4961862 0.514124 0.45727 -0.5025087 0.514124 0.45727 -0.5084753 0.514124 0.45727 -0.514124 0.514124 0.45727 -0.519487 0.514124 0.45727 -0.5245917 0.514124 0.45727 -0.529462 0.514124 0.45727 -0.5341183 0.514124 0.45727 -0.5385787 0.514124 0.45727 -0.5428591 0.514124 0.45727 -0.5469733 0.514124 0.45727 -0.5509339 0.514124 0.45727 -0.5547519 0.514124 0.45727 -0.5584371 0.514124 0.45727 -0.5619986 0.514124 0.45727 -0.5654443 0.514124 0.45727 -0.5687816 0.514124 0.45727 -0.092819 0.519487 0.45727 -0.2262531 0.519487 0.45727 -0.2875993 0.519487 0.45727 -0.3262122 0.519487 0.45727 -0.3544566 0.519487 0.45727 -0.3767383 0.519487 0.45727 -0.3951413 0.519487 0.45727 -0.4108177 0.519487 0.45727 -0.4244723 0.519487 0.45727 -0.4365675 0.519487 0.45727 -0.4474232 0.519487 0.45727 -0.45727 0.519487 0.45727 -0.4662797 0.519487 0.45727 -0.4745834 0.519487 0.45727 -0.4822838 0.519487 0.45727 -0.4894626 0.519487 0.45727 -0.4961862 0.519487 0.45727 -0.5025087 0.519487 0.45727 -0.5084753 0.519487 0.45727 -0.514124 0.519487 0.45727 -0.519487 0.519487 0.45727 -0.5245917 0.519487 0.45727 -0.529462 0.519487 0.45727 -0.5341183 0.519487 0.45727 -0.5385787 0.519487 0.45727 -0.5428591 0.519487 0.45727 -0.5469733 0.519487 0.45727 -0.5509339 0.519487 0.45727 -0.5547519 0.519487 0.45727 -0.5584371 0.519487 0.45727 -0.5619986 0.519487 0.45727 -0.5654443 0.519487 0.45727 -0.5687816 0.519487 0.45727 -0.092819 0.5245917 0.45727 -0.2262531 0.5245917 0.45727 -0.2875993 0.5245917 0.45727 -0.3262122 0.5245917 0.45727 -0.3544566 0.5245917 0.45727 -0.3767383 0.5245917 0.45727 -0.3951413 0.5245917 0.45727 -0.4108177 0.5245917 0.45727 -0.4244723 0.5245917 0.45727 -0.4365675 0.5245917 0.45727 -0.4474232 0.5245917 0.45727 -0.45727 0.5245917 0.45727 -0.4662797 0.5245917 0.45727 -0.4745834 0.5245917 0.45727 -0.4822838 0.5245917 0.45727 -0.4894626 0.5245917 0.45727 -0.4961862 0.5245917 0.45727 -0.5025087 0.5245917 0.45727 -0.5084753 0.5245917 0.45727 -0.514124 0.5245917 0.45727 -0.519487 0.5245917 0.45727 -0.5245917 0.5245917 0.45727 -0.529462 0.5245917 0.45727 -0.5341183 0.5245917 0.45727 -0.5385787 0.5245917 0.45727 -0.5428591 0.5245917 0.45727 -0.5469733 0.5245917 0.45727 -0.5509339 0.5245917 0.45727 -0.5547519 0.5245917 0.45727 -0.5584371 0.5245917 0.45727 -0.5619986 0.5245917 0.45727 -0.5654443 0.5245917 0.45727 -0.5687816 0.5245917 0.45727 -0.092819 0.529462 0.45727 -0.2262531 0.529462 0.45727 -0.2875993 0.529462 0.45727 -0.3262122 0.529462 0.45727 -0.3544566 0.529462 0.45727 -0.3767383 0.529462 0.45727 -0.3951413 0.529462 0.45727 -0.4108177 0.529462 0.45727 -0.4244723 0.529462 0.45727 -0.4365675 0.529462 0.45727 -0.4474232 0.529462 0.45727 -0.45727 0.529462 0.45727 -0.4662797 0.529462 0.45727 -0.4745834 0.529462 0.45727 -0.4822838 0.529462 0.45727 -0.4894626 0.529462 0.45727 -0.4961862 0.529462 0.45727 -0.5025087 0.529462 0.45727 -0.5084753 0.529462 0.45727 -0.514124 0.529462 0.45727 -0.519487 0.529462 0.45727 -0.5245917 0.529462 0.45727 -0.529462 0.529462 0.45727 -0.5341183 0.529462 0.45727 -0.5385787 0.529462 0.45727 -0.5428591 0.529462 0.45727 -0.5469733 0.529462 0.45727 -0.5509339 0.529462 0.45727 -0.5547519 0.529462 0.45727 -0.5584371 0.529462 0.45727 -0.5619986 0.529462 0.45727 -0.5654443 0.529462 0.45727 -0.5687816 0.529462 0.45727 -0.092819 0.5341183 0.45727 -0.2262531 0.5341183 0.45727 -0.2875993 0.5341183 0.45727 -0.3262122 0.5341183 0.45727 -0.3544566 0.5341183 0.45727 -0.3767383 0.5341183 0.45727 -0.3951413 0.5341183 0.45727 -0.4108177 0.5341183 0.45727 -0.4244723 0.5341183 0.45727 -0.4365675 0.5341183 0.45727 -0.4474232 0.5341183 0.45727 -0.45727 0.5341183 0.45727 -0.4662797 0.5341183 0.45727 -0.4745834 0.5341183 0.45727 -0.4822838 0.5341183 0.45727 -0.4894626 0.5341183 0.45727 -0.4961862 0.5341183 0.45727 -0.5025087 0.5341183 0.45727 -0.5084753 0.5341183 0.45727 -0.514124 0.5341183 0.45727 -0.519487 0.5341183 0.45727 -0.5245917 0.5341183 0.45727 -0.529462 0.5341183 0.45727 -0.5341183 0.5341183 0.45727 -0.5385787 0.5341183 0.45727 -0.5428591 0.5341183 0.45727 -0.5469733 0.5341183 0.45727 -0.5509339 0.5341183 0.45727 -0.5547519 0.5341183 0.45727 -0.5584371 0.5341183 0.45727 -0.5619986 0.5341183 0.45727 -0.5654443 0.5341183 0.45727 -0.5687816 0.5341183 0.45727 -0.092819 0.5385787 0.45727 -0.2262531 0.5385787 0.45727 -0.2875993 0.5385787 0.45727 -0.3262122 0.5385787 0.45727 -0.3544566 0.5385787 0.45727 -0.3767383 0.5385787 0.45727 -0.3951413 0.5385787 0.45727 -0.4108177 0.5385787 0.45727 -0.4244723 0.5385787 0.45727 -0.4365675 0.5385787 0.45727 -0.4474232 0.5385787 0.45727 -0.45727 0.5385787 0.45727 -0.4662797 0.5385787 0.45727 -0.4745834 0.5385787 0.45727 -0.4822838 0.5385787 0.45727 -0.4894626 0.5385787 0.45727 -0.4961862 0.5385787 0.45727 -0.5025087 0.5385787 0.45727 -0.5084753 0.5385787 0.45727 -0.514124 0.5385787 0.45727 -0.519487 0.5385787 0.45727 -0.5245917 0.5385787 0.45727 -0.529462 0.5385787 0.45727 -0.5341183 0.5385787 0.45727 -0.5385787 0.5385787 0.45727 -0.5428591 0.5385787 0.45727 -0.5469733 0.5385787 0.45727 -0.5509339 0.5385787 0.45727 -0.5547519 0.5385787 0.45727 -0.5584371 0.5385787 0.45727 -0.5619986 0.5385787 0.45727 -0.5654443 0.5385787 0.45727 -0.5687816 0.5385787 0.45727 -0.092819 0.5428591 0.45727 -0.2262531 0.5428591 0.45727 -0.2875993 0.5428591 0.45727 -0.3262122 0.5428591 0.45727 -0.3544566 0.5428591 0.45727 -0.3767383 0.5428591 0.45727 -0.3951413 0.5428591 0.45727 -0.4108177 0.5428591 0.45727 -0.4244723 0.5428591 0.45727 -0.4365675 0.5428591 0.45727 -0.4474232 0.5428591 0.45727 -0.45727 0.5428591 0.45727 -0.4662797 0.5428591 0.45727 -0.4745834 0.5428591 0.45727 -0.4822838 0.5428591 0.45727 -0.4894626 0.5428591 0.45727 -0.4961862 0.5428591 0.45727 -0.5025087 0.5428591 0.45727 -0.5084753 0.5428591 0.45727 -0.514124 0.5428591 0.45727 -0.519487 0.5428591 0.45727 -0.5245917 0.5428591 0.45727 -0.529462 0.5428591 0.45727 -0.5341183 0.5428591 0.45727 -0.5385787 0.5428591 0.45727 -0.5428591 0.5428591 0.45727 -0.5469733 0.5428591 0.45727 -0.5509339 0.5428591 0.45727 -0.5547519 0.5428591 0.45727 -0.5584371 0.5428591 0.45727 -0.5619986 0.5428591 0.45727 -0.5654443 0.5428591 0.45727 -0.5687816 0.5428591 0.45727 -0.092819 0.5469733 0.45727 -0.2262531 0.5469733 0.45727 -0.2875993 0.5469733 0.45727 -0.3262122 0.5469733 0.45727 -0.3544566 0.5469733 0.45727 -0.3767383 0.5469733 0.45727 -0.3951413 0.5469733 0.45727 -0.4108177 0.5469733 0.45727 -0.4244723 0.5469733 0.45727 -0.4365675 0.5469733 0.45727 -0.4474232 0.5469733 0.45727 -0.45727 0.5469733 0.45727 -0.4662797 0.5469733 0.45727 -0.4745834 0.5469733 0.45727 -0.4822838 0.5469733 0.45727 -0.4894626 0.5469733 0.45727 -0.4961862 0.5469733 0.45727 -0.5025087 0.5469733 0.45727 -0.5084753 0.5469733 0.45727 -0.514124 0.5469733 0.45727 -0.519487 0.5469733 0.45727 -0.5245917 0.5469733 0.45727 -0.529462 0.5469733 0.45727 -0.5341183 0.5469733 0.45727 -0.5385787 0.5469733 0.45727 -0.5428591 0.5469733 0.45727 -0.5469733 0.5469733 0.45727 -0.5509339 0.5469733 0.45727 -0.5547519 0.5469733 0.45727 -0.5584371 0.5469733 0.45727 -0.5619986 0.5469733 0.45727 -0.5654443 0.5469733 0.45727 -0.5687816 0.5469733 0.45727 -0.092819 0.5509339 0.45727 -0.2262531 0.5509339 0.45727 -0.2875993 0.5509339 0.45727 -0.3262122 0.5509339 0.45727 -0.3544566 0.5509339 0.45727 -0.3767383 0.5509339 0.45727 -0.3951413 0.5509339 0.45727 -0.4108177 0.5509339 0.45727 -0.4244723 0.5509339 0.45727 -0.4365675 0.5509339 0.45727 -0.4474232 0.5509339 0.45727 -0.45727 0.5509339 0.45727 -0.4662797 0.5509339 0.45727 -0.4745834 0.5509339 0.45727 -0.4822838 0.5509339 0.45727 -0.4894626 0.5509339 0.45727 -0.4961862 0.5509339 0.45727 -0.5025087 0.5509339 0.45727 -0.5084753 0.5509339 0.45727 -0.514124 0.5509339 0.45727 -0.519487 0.5509339 0.45727 -0.5245917 0.5509339 0.45727 -0.529462 0.5509339 0.45727 -0.5341183 0.5509339 0.45727 -0.5385787 0.5509339 0.45727 -0.5428591 0.5509339 0.45727 -0.5469733 0.5509339 0.45727 -0.5509339 0.5509339 0.45727 -0.5547519 0.5509339 0.45727 -0.5584371 0.5509339 0.45727 -0.5619986 0.5509339 0.45727 -0.5654443 0.5509339 0.45727 -0.5687816 0.5509339 0.45727 -0.092819 0.5547519 0.45727 -0.2262531 0.5547519 0.45727 -0.2875993 0.5547519 0.45727 -0.3262122 0.5547519 0.45727 -0.3544566 0.5547519 0.45727 -0.3767383 0.5547519 0.45727 -0.3951413 0.5547519 0.45727 -0.4108177 0.5547519 0.45727 -0.4244723 0.5547519 0.45727 -0.4365675 0.5547519 0.45727 -0.4474232 0.5547519 0.45727 -0.45727 0.5547519 0.45727 -0.4662797 0.5547519 0.45727 -0.4745834 0.5547519 0.45727 -0.4822838 0.5547519 0.45727 -0.4894626 0.5547519 0.45727 -0.4961862 0.5547519 0.45727 -0.5025087 0.5547519 0.45727 -0.5084753 0.5547519 0.45727 -0.514124 0.5547519 0.45727 -0.519487 0.5547519 0.45727 -0.5245917 0.5547519 0.45727 -0.529462 0.5547519 0.45727 -0.5341183 0.5547519 0.45727 -0.5385787 0.5547519 0.45727 -0.5428591 0.5547519 0.45727 -0.5469733 0.5547519 0.45727 -0.5509339 0.5547519 0.45727 -0.5547519 0.5547519 0.45727 -0.5584371 0.5547519 0.45727 -0.5619986 0.5547519 0.45727 -0.5654443 0.5547519 0.45727 -0.5687816 0.5547519 0.45727 -0.092819 0.5584371 0.45727 -0.2262531 0.5584371 0.45727 -0.2875993 0.5584371 0.45727 -0.3262122 0.5584371 0.45727 -0.3544566 0.5584371 0.45727 -0.3767383 0.5584371 0.45727 -0.3951413 0.5584371 0.45727 -0.4108177 0.5584371 0.45727 -0.4244723 0.5584371 0.45727 -0.4365675 0.5584371 0.45727 -0.4474232 0.5584371 0.45727 -0.45727 0.5584371 0.45727 -0.4662797 0.5584371 0.45727 -0.4745834 0.5584371 0.45727 -0.4822838 0.5584371 0.45727 -0.4894626 0.5584371 0.45727 -0.4961862 0.5584371 0.45727 -0.5025087 0.5584371 0.45727 -0.5084753 0.5584371 0.45727 -0.514124 0.5584371 0.45727 -0.519487 0.5584371 0.45727 -0.5245917 0.5584371 0.45727 -0.529462 0.5584371 0.45727 -0.5341183 0.5584371 0.45727 -0.5385787 0.5584371 0.45727 -0.5428591 0.5584371 0.45727 -0.5469733 0.5584371 0.45727 -0.5509339 0.5584371 0.45727 -0.5547519 0.5584371 0.45727 -0.5584371 0.5584371 0.45727 -0.5619986 0.5584371 0.45727 -0.5654443 0.5584371 0.45727 -0.5687816 0.5584371 0.45727 -0.092819 0.5619986 0.45727 -0.2262531 0.5619986 0.45727 -0.2875993 0.5619986 0.45727 -0.3262122 0.5619986 0.45727 -0.3544566 0.5619986 0.45727 -0.3767383 0.5619986 0.45727 -0.3951413 0.5619986 0.45727 -0.4108177 0.5619986 0.45727 -0.4244723 0.5619986 0.45727 -0.4365675 0.5619986 0.45727 -0.4474232 0.5619986 0.45727 -0.45727 0.5619986 0.45727 -0.4662797 0.5619986 0.45727 -0.4745834 0.5619986 0.45727 -0.4822838 0.5619986 0.45727 -0.4894626 0.5619986 0.45727 -0.4961862 0.5619986 0.45727 -0.5025087 0.5619986 0.45727 -0.5084753 0.5619986 0.45727 -0.514124 0.5619986 0.45727 -0.519487 0.5619986 0.45727 -0.5245917 0.5619986 0.45727 -0.529462 0.5619986 0.45727 -0.5341183 0.5619986 0.45727 -0.5385787 0.5619986 0.45727 -0.5428591 0.5619986 0.45727 -0.5469733 0.5619986 0.45727 -0.5509339 0.5619986 0.45727 -0.5547519 0.5619986 0.45727 -0.5584371 0.5619986 0.45727 -0.5619986 0.5619986 0.45727 -0.5654443 0.5619986 0.45727 -0.5687816 0.5619986 0.45727 -0.092819 0.5654443 0.45727 -0.2262531 0.5654443 0.45727 -0.2875993 0.5654443 0.45727 -0.3262122 0.5654443 0.45727 -0.3544566 0.5654443 0.45727 -0.3767383 0.5654443 0.45727 -0.3951413 0.5654443 0.45727 -0.4108177 0.5654443 0.45727 -0.4244723 0.5654443 0.45727 -0.4365675 0.5654443 0.45727 -0.4474232 0.5654443 0.45727 -0.45727 0.5654443 0.45727 -0.4662797 0.5654443 0.45727 -0.4745834 0.5654443 0.45727 -0.4822838 0.5654443 0.45727 -0.4894626 0.5654443 0.45727 -0.4961862 0.5654443 0.45727 -0.5025087 0.5654443 0.45727 -0.5084753 0.5654443 0.45727 -0.514124 0.5654443 0.45727 -0.519487 0.5654443 0.45727 -0.5245917 0.5654443 0.45727 -0.529462 0.5654443 0.45727 -0.5341183 0.5654443 0.45727 -0.5385787 0.5654443 0.45727 -0.5428591 0.5654443 0.45727 -0.5469733 0.5654443 0.45727 -0.5509339 0.5654443 0.45727 -0.5547519 0.5654443 0.45727 -0.5584371 0.5654443 0.45727 -0.5619986 0.5654443 0.45727 -0.5654443 0.5654443 0.45727 -0.5687816 0.5654443 0.45727 -0.092819 0.5687816 0.45727 -0.2262531 0.5687816 0.45727 -0.2875993 0.5687816 0.45727 -0.3262122 0.5687816 0.45727 -0.3544566 0.5687816 0.45727 -0.3767383 0.5687816 0.45727 -0.3951413 0.5687816 0.45727 -0.4108177 0.5687816 0.45727 -0.4244723 0.5687816 0.45727 -0.4365675 0.5687816 0.45727 -0.4474232 0.5687816 0.45727 -0.45727 0.5687816 0.45727 -0.4662797 0.5687816 0.45727 -0.4745834 0.5687816 0.45727 -0.4822838 0.5687816 0.45727 -0.4894626 0.5687816 0.45727 -0.4961862 0.5687816 0.45727 -0.5025087 0.5687816 0.45727 -0.5084753 0.5687816 0.45727 -0.514124 0.5687816 0.45727 -0.519487 0.5687816 0.45727 -0.5245917 0.5687816 0.45727 -0.529462 0.5687816 0.45727 -0.5341183 0.5687816 0.45727 -0.5385787 0.5687816 0.45727 -0.5428591 0.5687816 0.45727 -0.5469733 0.5687816 0.45727 -0.5509339 0.5687816 0.45727 -0.5547519 0.5687816 0.45727 -0.5584371 0.5687816 0.45727 -0.5619986 0.5687816 0.45727 -0.5654443 0.5687816 0.45727 -0.5687816 0.5687816 0.45727 -0.092819 0.092819 0.4662797 -0.2262531 0.092819 0.4662797 -0.2875993 0.092819 0.4662797 -0.3262122 0.092819 0.4662797 -0.3544566 0.092819 0.4662797 -0.3767383 0.092819 0.4662797 -0.3951413 0.092819 0.4662797 -0.4108177 0.092819 0.4662797 -0.4244723 0.092819 0.4662797 -0.4365675 0.092819 0.4662797 -0.4474232 0.092819 0.4662797 -0.45727 0.092819 0.4662797 -0.4662797 0.092819 0.4662797 -0.4745834 0.092819 0.4662797 -0.4822838 0.092819 0.4662797 -0.4894626 0.092819 0.4662797 -0.4961862 0.092819 0.4662797 -0.5025087 0.092819 0.4662797 -0.5084753 0.092819 0.4662797 -0.514124 0.092819 0.4662797 -0.519487 0.092819 0.4662797 -0.5245917 0.092819 0.4662797 -0.529462 0.092819 0.4662797 -0.5341183 0.092819 0.4662797 -0.5385787 0.092819 0.4662797 -0.5428591 0.092819 0.4662797 -0.5469733 0.092819 0.4662797 -0.5509339 0.092819 0.4662797 -0.5547519 0.092819 0.4662797 -0.5584371 0.092819 0.4662797 -0.5619986 0.092819 0.4662797 -0.5654443 0.092819 0.4662797 -0.5687816 0.092819 0.4662797 -0.092819 0.2262531 0.4662797 -0.2262531 0.2262531 0.4662797 -0.2875993 0.2262531 0.4662797 -0.3262122 0.2262531 0.4662797 -0.3544566 0.2262531 0.4662797 -0.3767383 0.2262531 0.4662797 -0.3951413 0.2262531 0.4662797 -0.4108177 0.2262531 0.4662797 -0.4244723 0.2262531 0.4662797 -0.4365675 0.2262531 0.4662797 -0.4474232 0.2262531 0.4662797 -0.45727 0.2262531 0.4662797 -0.4662797 0.2262531 0.4662797 -0.4745834 0.2262531 0.4662797 -0.4822838 0.2262531 0.4662797 -0.4894626 0.2262531 0.4662797 -0.4961862 0.2262531 0.4662797 -0.5025087 0.2262531 0.4662797 -0.5084753 0.2262531 0.4662797 -0.514124 0.2262531 0.4662797 -0.519487 0.2262531 0.4662797 -0.5245917 0.2262531 0.4662797 -0.529462 0.2262531 0.4662797 -0.5341183 0.2262531 0.4662797 -0.5385787 0.2262531 0.4662797 -0.5428591 0.2262531 0.4662797 -0.5469733 0.2262531 0.4662797 -0.5509339 0.2262531 0.4662797 -0.5547519 0.2262531 0.4662797 -0.5584371 0.2262531 0.4662797 -0.5619986 0.2262531 0.4662797 -0.5654443 0.2262531 0.4662797 -0.5687816 0.2262531 0.4662797 -0.092819 0.2875993 0.4662797 -0.2262531 0.2875993 0.4662797 -0.2875993 0.2875993 0.4662797 -0.3262122 0.2875993 0.4662797 -0.3544566 0.2875993 0.4662797 -0.3767383 0.2875993 0.4662797 -0.3951413 0.2875993 0.4662797 -0.4108177 0.2875993 0.4662797 -0.4244723 0.2875993 0.4662797 -0.4365675 0.2875993 0.4662797 -0.4474232 0.2875993 0.4662797 -0.45727 0.2875993 0.4662797 -0.4662797 0.2875993 0.4662797 -0.4745834 0.2875993 0.4662797 -0.4822838 0.2875993 0.4662797 -0.4894626 0.2875993 0.4662797 -0.4961862 0.2875993 0.4662797 -0.5025087 0.2875993 0.4662797 -0.5084753 0.2875993 0.4662797 -0.514124 0.2875993 0.4662797 -0.519487 0.2875993 0.4662797 -0.5245917 0.2875993 0.4662797 -0.529462 0.2875993 0.4662797 -0.5341183 0.2875993 0.4662797 -0.5385787 0.2875993 0.4662797 -0.5428591 0.2875993 0.4662797 -0.5469733 0.2875993 0.4662797 -0.5509339 0.2875993 0.4662797 -0.5547519 0.2875993 0.4662797 -0.5584371 0.2875993 0.4662797 -0.5619986 0.2875993 0.4662797 -0.5654443 0.2875993 0.4662797 -0.5687816 0.2875993 0.4662797 -0.092819 0.3262122 0.4662797 -0.2262531 0.3262122 0.4662797 -0.2875993 0.3262122 0.4662797 -0.3262122 0.3262122 0.4662797 -0.3544566 0.3262122 0.4662797 -0.3767383 0.3262122 0.4662797 -0.3951413 0.3262122 0.4662797 -0.4108177 0.3262122 0.4662797 -0.4244723 0.3262122 0.4662797 -0.4365675 0.3262122 0.4662797 -0.4474232 0.3262122 0.4662797 -0.45727 0.3262122 0.4662797 -0.4662797 0.3262122 0.4662797 -0.4745834 0.3262122 0.4662797 -0.4822838 0.3262122 0.4662797 -0.4894626 0.3262122 0.4662797 -0.4961862 0.3262122 0.4662797 -0.5025087 0.3262122 0.4662797 -0.5084753 0.3262122 0.4662797 -0.514124 0.3262122 0.4662797 -0.519487 0.3262122 0.4662797 -0.5245917 0.3262122 0.4662797 -0.529462 0.3262122 0.4662797 -0.5341183 0.3262122 0.4662797 -0.5385787 0.3262122 0.4662797 -0.5428591 0.3262122 0.4662797 -0.5469733 0.3262122 0.4662797 -0.5509339 0.3262122 0.4662797 -0.5547519 0.3262122 0.4662797 -0.5584371 0.3262122 0.4662797 -0.5619986 0.3262122 0.4662797 -0.5654443 0.3262122 0.4662797 -0.5687816 0.3262122 0.4662797 -0.092819 0.3544566 0.4662797 -0.2262531 0.3544566 0.4662797 -0.2875993 0.3544566 0.4662797 -0.3262122 0.3544566 0.4662797 -0.3544566 0.3544566 0.4662797 -0.3767383 0.3544566 0.4662797 -0.3951413 0.3544566 0.4662797 -0.4108177 0.3544566 0.4662797 -0.4244723 0.3544566 0.4662797 -0.4365675 0.3544566 0.4662797 -0.4474232 0.3544566 0.4662797 -0.45727 0.3544566 0.4662797 -0.4662797 0.3544566 0.4662797 -0.4745834 0.3544566 0.4662797 -0.4822838 0.3544566 0.4662797 -0.4894626 0.3544566 0.4662797 -0.4961862 0.3544566 0.4662797 -0.5025087 0.3544566 0.4662797 -0.5084753 0.3544566 0.4662797 -0.514124 0.3544566 0.4662797 -0.519487 0.3544566 0.4662797 -0.5245917 0.3544566 0.4662797 -0.529462 0.3544566 0.4662797 -0.5341183 0.3544566 0.4662797 -0.5385787 0.3544566 0.4662797 -0.5428591 0.3544566 0.4662797 -0.5469733 0.3544566 0.4662797 -0.5509339 0.3544566 0.4662797 -0.5547519 0.3544566 0.4662797 -0.5584371 0.3544566 0.4662797 -0.5619986 0.3544566 0.4662797 -0.5654443 0.3544566 0.4662797 -0.5687816 0.3544566 0.4662797 -0.092819 0.3767383 0.4662797 -0.2262531 0.3767383 0.4662797 -0.2875993 0.3767383 0.4662797 -0.3262122 0.3767383 0.4662797 -0.3544566 0.3767383 0.4662797 -0.3767383 0.3767383 0.4662797 -0.3951413 0.3767383 0.4662797 -0.4108177 0.3767383 0.4662797 -0.4244723 0.3767383 0.4662797 -0.4365675 0.3767383 0.4662797 -0.4474232 0.3767383 0.4662797 -0.45727 0.3767383 0.4662797 -0.4662797 0.3767383 0.4662797 -0.4745834 0.3767383 0.4662797 -0.4822838 0.3767383 0.4662797 -0.4894626 0.3767383 0.4662797 -0.4961862 0.3767383 0.4662797 -0.5025087 0.3767383 0.4662797 -0.5084753 0.3767383 0.4662797 -0.514124 0.3767383 0.4662797 -0.519487 0.3767383 0.4662797 -0.5245917 0.3767383 0.4662797 -0.529462 0.3767383 0.4662797 -0.5341183 0.3767383 0.4662797 -0.5385787 0.3767383 0.4662797 -0.5428591 0.3767383 0.4662797 -0.5469733 0.3767383 0.4662797 -0.5509339 0.3767383 0.4662797 -0.5547519 0.3767383 0.4662797 -0.5584371 0.3767383 0.4662797 -0.5619986 0.3767383 0.4662797 -0.5654443 0.3767383 0.4662797 -0.5687816 0.3767383 0.4662797 -0.092819 0.3951413 0.4662797 -0.2262531 0.3951413 0.4662797 -0.2875993 0.3951413 0.4662797 -0.3262122 0.3951413 0.4662797 -0.3544566 0.3951413 0.4662797 -0.3767383 0.3951413 0.4662797 -0.3951413 0.3951413 0.4662797 -0.4108177 0.3951413 0.4662797 -0.4244723 0.3951413 0.4662797 -0.4365675 0.3951413 0.4662797 -0.4474232 0.3951413 0.4662797 -0.45727 0.3951413 0.4662797 -0.4662797 0.3951413 0.4662797 -0.4745834 0.3951413 0.4662797 -0.4822838 0.3951413 0.4662797 -0.4894626 0.3951413 0.4662797 -0.4961862 0.3951413 0.4662797 -0.5025087 0.3951413 0.4662797 -0.5084753 0.3951413 0.4662797 -0.514124 0.3951413 0.4662797 -0.519487 0.3951413 0.4662797 -0.5245917 0.3951413 0.4662797 -0.529462 0.3951413 0.4662797 -0.5341183 0.3951413 0.4662797 -0.5385787 0.3951413 0.4662797 -0.5428591 0.3951413 0.4662797 -0.5469733 0.3951413 0.4662797 -0.5509339 0.3951413 0.4662797 -0.5547519 0.3951413 0.4662797 -0.5584371 0.3951413 0.4662797 -0.5619986 0.3951413 0.4662797 -0.5654443 0.3951413 0.4662797 -0.5687816 0.3951413 0.4662797 -0.092819 0.4108177 0.4662797 -0.2262531 0.4108177 0.4662797 -0.2875993 0.4108177 0.4662797 -0.3262122 0.4108177 0.4662797 -0.3544566 0.4108177 0.4662797 -0.3767383 0.4108177 0.4662797 -0.3951413 0.4108177 0.4662797 -0.4108177 0.4108177 0.4662797 -0.4244723 0.4108177 0.4662797 -0.4365675 0.4108177 0.4662797 -0.4474232 0.4108177 0.4662797 -0.45727 0.4108177 0.4662797 -0.4662797 0.4108177 0.4662797 -0.4745834 0.4108177 0.4662797 -0.4822838 0.4108177 0.4662797 -0.4894626 0.4108177 0.4662797 -0.4961862 0.4108177 0.4662797 -0.5025087 0.4108177 0.4662797 -0.5084753 0.4108177 0.4662797 -0.514124 0.4108177 0.4662797 -0.519487 0.4108177 0.4662797 -0.5245917 0.4108177 0.4662797 -0.529462 0.4108177 0.4662797 -0.5341183 0.4108177 0.4662797 -0.5385787 0.4108177 0.4662797 -0.5428591 0.4108177 0.4662797 -0.5469733 0.4108177 0.4662797 -0.5509339 0.4108177 0.4662797 -0.5547519 0.4108177 0.4662797 -0.5584371 0.4108177 0.4662797 -0.5619986 0.4108177 0.4662797 -0.5654443 0.4108177 0.4662797 -0.5687816 0.4108177 0.4662797 -0.092819 0.4244723 0.4662797 -0.2262531 0.4244723 0.4662797 -0.2875993 0.4244723 0.4662797 -0.3262122 0.4244723 0.4662797 -0.3544566 0.4244723 0.4662797 -0.3767383 0.4244723 0.4662797 -0.3951413 0.4244723 0.4662797 -0.4108177 0.4244723 0.4662797 -0.4244723 0.4244723 0.4662797 -0.4365675 0.4244723 0.4662797 -0.4474232 0.4244723 0.4662797 -0.45727 0.4244723 0.4662797 -0.4662797 0.4244723 0.4662797 -0.4745834 0.4244723 0.4662797 -0.4822838 0.4244723 0.4662797 -0.4894626 0.4244723 0.4662797 -0.4961862 0.4244723 0.4662797 -0.5025087 0.4244723 0.4662797 -0.5084753 0.4244723 0.4662797 -0.514124 0.4244723 0.4662797 -0.519487 0.4244723 0.4662797 -0.5245917 0.4244723 0.4662797 -0.529462 0.4244723 0.4662797 -0.5341183 0.4244723 0.4662797 -0.5385787 0.4244723 0.4662797 -0.5428591 0.4244723 0.4662797 -0.5469733 0.4244723 0.4662797 -0.5509339 0.4244723 0.4662797 -0.5547519 0.4244723 0.4662797 -0.5584371 0.4244723 0.4662797 -0.5619986 0.4244723 0.4662797 -0.5654443 0.4244723 0.4662797 -0.5687816 0.4244723 0.4662797 -0.092819 0.4365675 0.4662797 -0.2262531 0.4365675 0.4662797 -0.2875993 0.4365675 0.4662797 -0.3262122 0.4365675 0.4662797 -0.3544566 0.4365675 0.4662797 -0.3767383 0.4365675 0.4662797 -0.3951413 0.4365675 0.4662797 -0.4108177 0.4365675 0.4662797 -0.4244723 0.4365675 0.4662797 -0.4365675 0.4365675 0.4662797 -0.4474232 0.4365675 0.4662797 -0.45727 0.4365675 0.4662797 -0.4662797 0.4365675 0.4662797 -0.4745834 0.4365675 0.4662797 -0.4822838 0.4365675 0.4662797 -0.4894626 0.4365675 0.4662797 -0.4961862 0.4365675 0.4662797 -0.5025087 0.4365675 0.4662797 -0.5084753 0.4365675 0.4662797 -0.514124 0.4365675 0.4662797 -0.519487 0.4365675 0.4662797 -0.5245917 0.4365675 0.4662797 -0.529462 0.4365675 0.4662797 -0.5341183 0.4365675 0.4662797 -0.5385787 0.4365675 0.4662797 -0.5428591 0.4365675 0.4662797 -0.5469733 0.4365675 0.4662797 -0.5509339 0.4365675 0.4662797 -0.5547519 0.4365675 0.4662797 -0.5584371 0.4365675 0.4662797 -0.5619986 0.4365675 0.4662797 -0.5654443 0.4365675 0.4662797 -0.5687816 0.4365675 0.4662797 -0.092819 0.4474232 0.4662797 -0.2262531 0.4474232 0.4662797 -0.2875993 0.4474232 0.4662797 -0.3262122 0.4474232 0.4662797 -0.3544566 0.4474232 0.4662797 -0.3767383 0.4474232 0.4662797 -0.3951413 0.4474232 0.4662797 -0.4108177 0.4474232 0.4662797 -0.4244723 0.4474232 0.4662797 -0.4365675 0.4474232 0.4662797 -0.4474232 0.4474232 0.4662797 -0.45727 0.4474232 0.4662797 -0.4662797 0.4474232 0.4662797 -0.4745834 0.4474232 0.4662797 -0.4822838 0.4474232 0.4662797 -0.4894626 0.4474232 0.4662797 -0.4961862 0.4474232 0.4662797 -0.5025087 0.4474232 0.4662797 -0.5084753 0.4474232 0.4662797 -0.514124 0.4474232 0.4662797 -0.519487 0.4474232 0.4662797 -0.5245917 0.4474232 0.4662797 -0.529462 0.4474232 0.4662797 -0.5341183 0.4474232 0.4662797 -0.5385787 0.4474232 0.4662797 -0.5428591 0.4474232 0.4662797 -0.5469733 0.4474232 0.4662797 -0.5509339 0.4474232 0.4662797 -0.5547519 0.4474232 0.4662797 -0.5584371 0.4474232 0.4662797 -0.5619986 0.4474232 0.4662797 -0.5654443 0.4474232 0.4662797 -0.5687816 0.4474232 0.4662797 -0.092819 0.45727 0.4662797 -0.2262531 0.45727 0.4662797 -0.2875993 0.45727 0.4662797 -0.3262122 0.45727 0.4662797 -0.3544566 0.45727 0.4662797 -0.3767383 0.45727 0.4662797 -0.3951413 0.45727 0.4662797 -0.4108177 0.45727 0.4662797 -0.4244723 0.45727 0.4662797 -0.4365675 0.45727 0.4662797 -0.4474232 0.45727 0.4662797 -0.45727 0.45727 0.4662797 -0.4662797 0.45727 0.4662797 -0.4745834 0.45727 0.4662797 -0.4822838 0.45727 0.4662797 -0.4894626 0.45727 0.4662797 -0.4961862 0.45727 0.4662797 -0.5025087 0.45727 0.4662797 -0.5084753 0.45727 0.4662797 -0.514124 0.45727 0.4662797 -0.519487 0.45727 0.4662797 -0.5245917 0.45727 0.4662797 -0.529462 0.45727 0.4662797 -0.5341183 0.45727 0.4662797 -0.5385787 0.45727 0.4662797 -0.5428591 0.45727 0.4662797 -0.5469733 0.45727 0.4662797 -0.5509339 0.45727 0.4662797 -0.5547519 0.45727 0.4662797 -0.5584371 0.45727 0.4662797 -0.5619986 0.45727 0.4662797 -0.5654443 0.45727 0.4662797 -0.5687816 0.45727 0.4662797 -0.092819 0.4662797 0.4662797 -0.2262531 0.4662797 0.4662797 -0.2875993 0.4662797 0.4662797 -0.3262122 0.4662797 0.4662797 -0.3544566 0.4662797 0.4662797 -0.3767383 0.4662797 0.4662797 -0.3951413 0.4662797 0.4662797 -0.4108177 0.4662797 0.4662797 -0.4244723 0.4662797 0.4662797 -0.4365675 0.4662797 0.4662797 -0.4474232 0.4662797 0.4662797 -0.45727 0.4662797 0.4662797 -0.4662797 0.4662797 0.4662797 -0.4745834 0.4662797 0.4662797 -0.4822838 0.4662797 0.4662797 -0.4894626 0.4662797 0.4662797 -0.4961862 0.4662797 0.4662797 -0.5025087 0.4662797 0.4662797 -0.5084753 0.4662797 0.4662797 -0.514124 0.4662797 0.4662797 -0.519487 0.4662797 0.4662797 -0.5245917 0.4662797 0.4662797 -0.529462 0.4662797 0.4662797 -0.5341183 0.4662797 0.4662797 -0.5385787 0.4662797 0.4662797 -0.5428591 0.4662797 0.4662797 -0.5469733 0.4662797 0.4662797 -0.5509339 0.4662797 0.4662797 -0.5547519 0.4662797 0.4662797 -0.5584371 0.4662797 0.4662797 -0.5619986 0.4662797 0.4662797 -0.5654443 0.4662797 0.4662797 -0.5687816 0.4662797 0.4662797 -0.092819 0.4745834 0.4662797 -0.2262531 0.4745834 0.4662797 -0.2875993 0.4745834 0.4662797 -0.3262122 0.4745834 0.4662797 -0.3544566 0.4745834 0.4662797 -0.3767383 0.4745834 0.4662797 -0.3951413 0.4745834 0.4662797 -0.4108177 0.4745834 0.4662797 -0.4244723 0.4745834 0.4662797 -0.4365675 0.4745834 0.4662797 -0.4474232 0.4745834 0.4662797 -0.45727 0.4745834 0.4662797 -0.4662797 0.4745834 0.4662797 -0.4745834 0.4745834 0.4662797 -0.4822838 0.4745834 0.4662797 -0.4894626 0.4745834 0.4662797 -0.4961862 0.4745834 0.4662797 -0.5025087 0.4745834 0.4662797 -0.5084753 0.4745834 0.4662797 -0.514124 0.4745834 0.4662797 -0.519487 0.4745834 0.4662797 -0.5245917 0.4745834 0.4662797 -0.529462 0.4745834 0.4662797 -0.5341183 0.4745834 0.4662797 -0.5385787 0.4745834 0.4662797 -0.5428591 0.4745834 0.4662797 -0.5469733 0.4745834 0.4662797 -0.5509339 0.4745834 0.4662797 -0.5547519 0.4745834 0.4662797 -0.5584371 0.4745834 0.4662797 -0.5619986 0.4745834 0.4662797 -0.5654443 0.4745834 0.4662797 -0.5687816 0.4745834 0.4662797 -0.092819 0.4822838 0.4662797 -0.2262531 0.4822838 0.4662797 -0.2875993 0.4822838 0.4662797 -0.3262122 0.4822838 0.4662797 -0.3544566 0.4822838 0.4662797 -0.3767383 0.4822838 0.4662797 -0.3951413 0.4822838 0.4662797 -0.4108177 0.4822838 0.4662797 -0.4244723 0.4822838 0.4662797 -0.4365675 0.4822838 0.4662797 -0.4474232 0.4822838 0.4662797 -0.45727 0.4822838 0.4662797 -0.4662797 0.4822838 0.4662797 -0.4745834 0.4822838 0.4662797 -0.4822838 0.4822838 0.4662797 -0.4894626 0.4822838 0.4662797 -0.4961862 0.4822838 0.4662797 -0.5025087 0.4822838 0.4662797 -0.5084753 0.4822838 0.4662797 -0.514124 0.4822838 0.4662797 -0.519487 0.4822838 0.4662797 -0.5245917 0.4822838 0.4662797 -0.529462 0.4822838 0.4662797 -0.5341183 0.4822838 0.4662797 -0.5385787 0.4822838 0.4662797 -0.5428591 0.4822838 0.4662797 -0.5469733 0.4822838 0.4662797 -0.5509339 0.4822838 0.4662797 -0.5547519 0.4822838 0.4662797 -0.5584371 0.4822838 0.4662797 -0.5619986 0.4822838 0.4662797 -0.5654443 0.4822838 0.4662797 -0.5687816 0.4822838 0.4662797 -0.092819 0.4894626 0.4662797 -0.2262531 0.4894626 0.4662797 -0.2875993 0.4894626 0.4662797 -0.3262122 0.4894626 0.4662797 -0.3544566 0.4894626 0.4662797 -0.3767383 0.4894626 0.4662797 -0.3951413 0.4894626 0.4662797 -0.4108177 0.4894626 0.4662797 -0.4244723 0.4894626 0.4662797 -0.4365675 0.4894626 0.4662797 -0.4474232 0.4894626 0.4662797 -0.45727 0.4894626 0.4662797 -0.4662797 0.4894626 0.4662797 -0.4745834 0.4894626 0.4662797 -0.4822838 0.4894626 0.4662797 -0.4894626 0.4894626 0.4662797 -0.4961862 0.4894626 0.4662797 -0.5025087 0.4894626 0.4662797 -0.5084753 0.4894626 0.4662797 -0.514124 0.4894626 0.4662797 -0.519487 0.4894626 0.4662797 -0.5245917 0.4894626 0.4662797 -0.529462 0.4894626 0.4662797 -0.5341183 0.4894626 0.4662797 -0.5385787 0.4894626 0.4662797 -0.5428591 0.4894626 0.4662797 -0.5469733 0.4894626 0.4662797 -0.5509339 0.4894626 0.4662797 -0.5547519 0.4894626 0.4662797 -0.5584371 0.4894626 0.4662797 -0.5619986 0.4894626 0.4662797 -0.5654443 0.4894626 0.4662797 -0.5687816 0.4894626 0.4662797 -0.092819 0.4961862 0.4662797 -0.2262531 0.4961862 0.4662797 -0.2875993 0.4961862 0.4662797 -0.3262122 0.4961862 0.4662797 -0.3544566 0.4961862 0.4662797 -0.3767383 0.4961862 0.4662797 -0.3951413 0.4961862 0.4662797 -0.4108177 0.4961862 0.4662797 -0.4244723 0.4961862 0.4662797 -0.4365675 0.4961862 0.4662797 -0.4474232 0.4961862 0.4662797 -0.45727 0.4961862 0.4662797 -0.4662797 0.4961862 0.4662797 -0.4745834 0.4961862 0.4662797 -0.4822838 0.4961862 0.4662797 -0.4894626 0.4961862 0.4662797 -0.4961862 0.4961862 0.4662797 -0.5025087 0.4961862 0.4662797 -0.5084753 0.4961862 0.4662797 -0.514124 0.4961862 0.4662797 -0.519487 0.4961862 0.4662797 -0.5245917 0.4961862 0.4662797 -0.529462 0.4961862 0.4662797 -0.5341183 0.4961862 0.4662797 -0.5385787 0.4961862 0.4662797 -0.5428591 0.4961862 0.4662797 -0.5469733 0.4961862 0.4662797 -0.5509339 0.4961862 0.4662797 -0.5547519 0.4961862 0.4662797 -0.5584371 0.4961862 0.4662797 -0.5619986 0.4961862 0.4662797 -0.5654443 0.4961862 0.4662797 -0.5687816 0.4961862 0.4662797 -0.092819 0.5025087 0.4662797 -0.2262531 0.5025087 0.4662797 -0.2875993 0.5025087 0.4662797 -0.3262122 0.5025087 0.4662797 -0.3544566 0.5025087 0.4662797 -0.3767383 0.5025087 0.4662797 -0.3951413 0.5025087 0.4662797 -0.4108177 0.5025087 0.4662797 -0.4244723 0.5025087 0.4662797 -0.4365675 0.5025087 0.4662797 -0.4474232 0.5025087 0.4662797 -0.45727 0.5025087 0.4662797 -0.4662797 0.5025087 0.4662797 -0.4745834 0.5025087 0.4662797 -0.4822838 0.5025087 0.4662797 -0.4894626 0.5025087 0.4662797 -0.4961862 0.5025087 0.4662797 -0.5025087 0.5025087 0.4662797 -0.5084753 0.5025087 0.4662797 -0.514124 0.5025087 0.4662797 -0.519487 0.5025087 0.4662797 -0.5245917 0.5025087 0.4662797 -0.529462 0.5025087 0.4662797 -0.5341183 0.5025087 0.4662797 -0.5385787 0.5025087 0.4662797 -0.5428591 0.5025087 0.4662797 -0.5469733 0.5025087 0.4662797 -0.5509339 0.5025087 0.4662797 -0.5547519 0.5025087 0.4662797 -0.5584371 0.5025087 0.4662797 -0.5619986 0.5025087 0.4662797 -0.5654443 0.5025087 0.4662797 -0.5687816 0.5025087 0.4662797 -0.092819 0.5084753 0.4662797 -0.2262531 0.5084753 0.4662797 -0.2875993 0.5084753 0.4662797 -0.3262122 0.5084753 0.4662797 -0.3544566 0.5084753 0.4662797 -0.3767383 0.5084753 0.4662797 -0.3951413 0.5084753 0.4662797 -0.4108177 0.5084753 0.4662797 -0.4244723 0.5084753 0.4662797 -0.4365675 0.5084753 0.4662797 -0.4474232 0.5084753 0.4662797 -0.45727 0.5084753 0.4662797 -0.4662797 0.5084753 0.4662797 -0.4745834 0.5084753 0.4662797 -0.4822838 0.5084753 0.4662797 -0.4894626 0.5084753 0.4662797 -0.4961862 0.5084753 0.4662797 -0.5025087 0.5084753 0.4662797 -0.5084753 0.5084753 0.4662797 -0.514124 0.5084753 0.4662797 -0.519487 0.5084753 0.4662797 -0.5245917 0.5084753 0.4662797 -0.529462 0.5084753 0.4662797 -0.5341183 0.5084753 0.4662797 -0.5385787 0.5084753 0.4662797 -0.5428591 0.5084753 0.4662797 -0.5469733 0.5084753 0.4662797 -0.5509339 0.5084753 0.4662797 -0.5547519 0.5084753 0.4662797 -0.5584371 0.5084753 0.4662797 -0.5619986 0.5084753 0.4662797 -0.5654443 0.5084753 0.4662797 -0.5687816 0.5084753 0.4662797 -0.092819 0.514124 0.4662797 -0.2262531 0.514124 0.4662797 -0.2875993 0.514124 0.4662797 -0.3262122 0.514124 0.4662797 -0.3544566 0.514124 0.4662797 -0.3767383 0.514124 0.4662797 -0.3951413 0.514124 0.4662797 -0.4108177 0.514124 0.4662797 -0.4244723 0.514124 0.4662797 -0.4365675 0.514124 0.4662797 -0.4474232 0.514124 0.4662797 -0.45727 0.514124 0.4662797 -0.4662797 0.514124 0.4662797 -0.4745834 0.514124 0.4662797 -0.4822838 0.514124 0.4662797 -0.4894626 0.514124 0.4662797 -0.4961862 0.514124 0.4662797 -0.5025087 0.514124 0.4662797 -0.5084753 0.514124 0.4662797 -0.514124 0.514124 0.4662797 -0.519487 0.514124 0.4662797 -0.5245917 0.514124 0.4662797 -0.529462 0.514124 0.4662797 -0.5341183 0.514124 0.4662797 -0.5385787 0.514124 0.4662797 -0.5428591 0.514124 0.4662797 -0.5469733 0.514124 0.4662797 -0.5509339 0.514124 0.4662797 -0.5547519 0.514124 0.4662797 -0.5584371 0.514124 0.4662797 -0.5619986 0.514124 0.4662797 -0.5654443 0.514124 0.4662797 -0.5687816 0.514124 0.4662797 -0.092819 0.519487 0.4662797 -0.2262531 0.519487 0.4662797 -0.2875993 0.519487 0.4662797 -0.3262122 0.519487 0.4662797 -0.3544566 0.519487 0.4662797 -0.3767383 0.519487 0.4662797 -0.3951413 0.519487 0.4662797 -0.4108177 0.519487 0.4662797 -0.4244723 0.519487 0.4662797 -0.4365675 0.519487 0.4662797 -0.4474232 0.519487 0.4662797 -0.45727 0.519487 0.4662797 -0.4662797 0.519487 0.4662797 -0.4745834 0.519487 0.4662797 -0.4822838 0.519487 0.4662797 -0.4894626 0.519487 0.4662797 -0.4961862 0.519487 0.4662797 -0.5025087 0.519487 0.4662797 -0.5084753 0.519487 0.4662797 -0.514124 0.519487 0.4662797 -0.519487 0.519487 0.4662797 -0.5245917 0.519487 0.4662797 -0.529462 0.519487 0.4662797 -0.5341183 0.519487 0.4662797 -0.5385787 0.519487 0.4662797 -0.5428591 0.519487 0.4662797 -0.5469733 0.519487 0.4662797 -0.5509339 0.519487 0.4662797 -0.5547519 0.519487 0.4662797 -0.5584371 0.519487 0.4662797 -0.5619986 0.519487 0.4662797 -0.5654443 0.519487 0.4662797 -0.5687816 0.519487 0.4662797 -0.092819 0.5245917 0.4662797 -0.2262531 0.5245917 0.4662797 -0.2875993 0.5245917 0.4662797 -0.3262122 0.5245917 0.4662797 -0.3544566 0.5245917 0.4662797 -0.3767383 0.5245917 0.4662797 -0.3951413 0.5245917 0.4662797 -0.4108177 0.5245917 0.4662797 -0.4244723 0.5245917 0.4662797 -0.4365675 0.5245917 0.4662797 -0.4474232 0.5245917 0.4662797 -0.45727 0.5245917 0.4662797 -0.4662797 0.5245917 0.4662797 -0.4745834 0.5245917 0.4662797 -0.4822838 0.5245917 0.4662797 -0.4894626 0.5245917 0.4662797 -0.4961862 0.5245917 0.4662797 -0.5025087 0.5245917 0.4662797 -0.5084753 0.5245917 0.4662797 -0.514124 0.5245917 0.4662797 -0.519487 0.5245917 0.4662797 -0.5245917 0.5245917 0.4662797 -0.529462 0.5245917 0.4662797 -0.5341183 0.5245917 0.4662797 -0.5385787 0.5245917 0.4662797 -0.5428591 0.5245917 0.4662797 -0.5469733 0.5245917 0.4662797 -0.5509339 0.5245917 0.4662797 -0.5547519 0.5245917 0.4662797 -0.5584371 0.5245917 0.4662797 -0.5619986 0.5245917 0.4662797 -0.5654443 0.5245917 0.4662797 -0.5687816 0.5245917 0.4662797 -0.092819 0.529462 0.4662797 -0.2262531 0.529462 0.4662797 -0.2875993 0.529462 0.4662797 -0.3262122 0.529462 0.4662797 -0.3544566 0.529462 0.4662797 -0.3767383 0.529462 0.4662797 -0.3951413 0.529462 0.4662797 -0.4108177 0.529462 0.4662797 -0.4244723 0.529462 0.4662797 -0.4365675 0.529462 0.4662797 -0.4474232 0.529462 0.4662797 -0.45727 0.529462 0.4662797 -0.4662797 0.529462 0.4662797 -0.4745834 0.529462 0.4662797 -0.4822838 0.529462 0.4662797 -0.4894626 0.529462 0.4662797 -0.4961862 0.529462 0.4662797 -0.5025087 0.529462 0.4662797 -0.5084753 0.529462 0.4662797 -0.514124 0.529462 0.4662797 -0.519487 0.529462 0.4662797 -0.5245917 0.529462 0.4662797 -0.529462 0.529462 0.4662797 -0.5341183 0.529462 0.4662797 -0.5385787 0.529462 0.4662797 -0.5428591 0.529462 0.4662797 -0.5469733 0.529462 0.4662797 -0.5509339 0.529462 0.4662797 -0.5547519 0.529462 0.4662797 -0.5584371 0.529462 0.4662797 -0.5619986 0.529462 0.4662797 -0.5654443 0.529462 0.4662797 -0.5687816 0.529462 0.4662797 -0.092819 0.5341183 0.4662797 -0.2262531 0.5341183 0.4662797 -0.2875993 0.5341183 0.4662797 -0.3262122 0.5341183 0.4662797 -0.3544566 0.5341183 0.4662797 -0.3767383 0.5341183 0.4662797 -0.3951413 0.5341183 0.4662797 -0.4108177 0.5341183 0.4662797 -0.4244723 0.5341183 0.4662797 -0.4365675 0.5341183 0.4662797 -0.4474232 0.5341183 0.4662797 -0.45727 0.5341183 0.4662797 -0.4662797 0.5341183 0.4662797 -0.4745834 0.5341183 0.4662797 -0.4822838 0.5341183 0.4662797 -0.4894626 0.5341183 0.4662797 -0.4961862 0.5341183 0.4662797 -0.5025087 0.5341183 0.4662797 -0.5084753 0.5341183 0.4662797 -0.514124 0.5341183 0.4662797 -0.519487 0.5341183 0.4662797 -0.5245917 0.5341183 0.4662797 -0.529462 0.5341183 0.4662797 -0.5341183 0.5341183 0.4662797 -0.5385787 0.5341183 0.4662797 -0.5428591 0.5341183 0.4662797 -0.5469733 0.5341183 0.4662797 -0.5509339 0.5341183 0.4662797 -0.5547519 0.5341183 0.4662797 -0.5584371 0.5341183 0.4662797 -0.5619986 0.5341183 0.4662797 -0.5654443 0.5341183 0.4662797 -0.5687816 0.5341183 0.4662797 -0.092819 0.5385787 0.4662797 -0.2262531 0.5385787 0.4662797 -0.2875993 0.5385787 0.4662797 -0.3262122 0.5385787 0.4662797 -0.3544566 0.5385787 0.4662797 -0.3767383 0.5385787 0.4662797 -0.3951413 0.5385787 0.4662797 -0.4108177 0.5385787 0.4662797 -0.4244723 0.5385787 0.4662797 -0.4365675 0.5385787 0.4662797 -0.4474232 0.5385787 0.4662797 -0.45727 0.5385787 0.4662797 -0.4662797 0.5385787 0.4662797 -0.4745834 0.5385787 0.4662797 -0.4822838 0.5385787 0.4662797 -0.4894626 0.5385787 0.4662797 -0.4961862 0.5385787 0.4662797 -0.5025087 0.5385787 0.4662797 -0.5084753 0.5385787 0.4662797 -0.514124 0.5385787 0.4662797 -0.519487 0.5385787 0.4662797 -0.5245917 0.5385787 0.4662797 -0.529462 0.5385787 0.4662797 -0.5341183 0.5385787 0.4662797 -0.5385787 0.5385787 0.4662797 -0.5428591 0.5385787 0.4662797 -0.5469733 0.5385787 0.4662797 -0.5509339 0.5385787 0.4662797 -0.5547519 0.5385787 0.4662797 -0.5584371 0.5385787 0.4662797 -0.5619986 0.5385787 0.4662797 -0.5654443 0.5385787 0.4662797 -0.5687816 0.5385787 0.4662797 -0.092819 0.5428591 0.4662797 -0.2262531 0.5428591 0.4662797 -0.2875993 0.5428591 0.4662797 -0.3262122 0.5428591 0.4662797 -0.3544566 0.5428591 0.4662797 -0.3767383 0.5428591 0.4662797 -0.3951413 0.5428591 0.4662797 -0.4108177 0.5428591 0.4662797 -0.4244723 0.5428591 0.4662797 -0.4365675 0.5428591 0.4662797 -0.4474232 0.5428591 0.4662797 -0.45727 0.5428591 0.4662797 -0.4662797 0.5428591 0.4662797 -0.4745834 0.5428591 0.4662797 -0.4822838 0.5428591 0.4662797 -0.4894626 0.5428591 0.4662797 -0.4961862 0.5428591 0.4662797 -0.5025087 0.5428591 0.4662797 -0.5084753 0.5428591 0.4662797 -0.514124 0.5428591 0.4662797 -0.519487 0.5428591 0.4662797 -0.5245917 0.5428591 0.4662797 -0.529462 0.5428591 0.4662797 -0.5341183 0.5428591 0.4662797 -0.5385787 0.5428591 0.4662797 -0.5428591 0.5428591 0.4662797 -0.5469733 0.5428591 0.4662797 -0.5509339 0.5428591 0.4662797 -0.5547519 0.5428591 0.4662797 -0.5584371 0.5428591 0.4662797 -0.5619986 0.5428591 0.4662797 -0.5654443 0.5428591 0.4662797 -0.5687816 0.5428591 0.4662797 -0.092819 0.5469733 0.4662797 -0.2262531 0.5469733 0.4662797 -0.2875993 0.5469733 0.4662797 -0.3262122 0.5469733 0.4662797 -0.3544566 0.5469733 0.4662797 -0.3767383 0.5469733 0.4662797 -0.3951413 0.5469733 0.4662797 -0.4108177 0.5469733 0.4662797 -0.4244723 0.5469733 0.4662797 -0.4365675 0.5469733 0.4662797 -0.4474232 0.5469733 0.4662797 -0.45727 0.5469733 0.4662797 -0.4662797 0.5469733 0.4662797 -0.4745834 0.5469733 0.4662797 -0.4822838 0.5469733 0.4662797 -0.4894626 0.5469733 0.4662797 -0.4961862 0.5469733 0.4662797 -0.5025087 0.5469733 0.4662797 -0.5084753 0.5469733 0.4662797 -0.514124 0.5469733 0.4662797 -0.519487 0.5469733 0.4662797 -0.5245917 0.5469733 0.4662797 -0.529462 0.5469733 0.4662797 -0.5341183 0.5469733 0.4662797 -0.5385787 0.5469733 0.4662797 -0.5428591 0.5469733 0.4662797 -0.5469733 0.5469733 0.4662797 -0.5509339 0.5469733 0.4662797 -0.5547519 0.5469733 0.4662797 -0.5584371 0.5469733 0.4662797 -0.5619986 0.5469733 0.4662797 -0.5654443 0.5469733 0.4662797 -0.5687816 0.5469733 0.4662797 -0.092819 0.5509339 0.4662797 -0.2262531 0.5509339 0.4662797 -0.2875993 0.5509339 0.4662797 -0.3262122 0.5509339 0.4662797 -0.3544566 0.5509339 0.4662797 -0.3767383 0.5509339 0.4662797 -0.3951413 0.5509339 0.4662797 -0.4108177 0.5509339 0.4662797 -0.4244723 0.5509339 0.4662797 -0.4365675 0.5509339 0.4662797 -0.4474232 0.5509339 0.4662797 -0.45727 0.5509339 0.4662797 -0.4662797 0.5509339 0.4662797 -0.4745834 0.5509339 0.4662797 -0.4822838 0.5509339 0.4662797 -0.4894626 0.5509339 0.4662797 -0.4961862 0.5509339 0.4662797 -0.5025087 0.5509339 0.4662797 -0.5084753 0.5509339 0.4662797 -0.514124 0.5509339 0.4662797 -0.519487 0.5509339 0.4662797 -0.5245917 0.5509339 0.4662797 -0.529462 0.5509339 0.4662797 -0.5341183 0.5509339 0.4662797 -0.5385787 0.5509339 0.4662797 -0.5428591 0.5509339 0.4662797 -0.5469733 0.5509339 0.4662797 -0.5509339 0.5509339 0.4662797 -0.5547519 0.5509339 0.4662797 -0.5584371 0.5509339 0.4662797 -0.5619986 0.5509339 0.4662797 -0.5654443 0.5509339 0.4662797 -0.5687816 0.5509339 0.4662797 -0.092819 0.5547519 0.4662797 -0.2262531 0.5547519 0.4662797 -0.2875993 0.5547519 0.4662797 -0.3262122 0.5547519 0.4662797 -0.3544566 0.5547519 0.4662797 -0.3767383 0.5547519 0.4662797 -0.3951413 0.5547519 0.4662797 -0.4108177 0.5547519 0.4662797 -0.4244723 0.5547519 0.4662797 -0.4365675 0.5547519 0.4662797 -0.4474232 0.5547519 0.4662797 -0.45727 0.5547519 0.4662797 -0.4662797 0.5547519 0.4662797 -0.4745834 0.5547519 0.4662797 -0.4822838 0.5547519 0.4662797 -0.4894626 0.5547519 0.4662797 -0.4961862 0.5547519 0.4662797 -0.5025087 0.5547519 0.4662797 -0.5084753 0.5547519 0.4662797 -0.514124 0.5547519 0.4662797 -0.519487 0.5547519 0.4662797 -0.5245917 0.5547519 0.4662797 -0.529462 0.5547519 0.4662797 -0.5341183 0.5547519 0.4662797 -0.5385787 0.5547519 0.4662797 -0.5428591 0.5547519 0.4662797 -0.5469733 0.5547519 0.4662797 -0.5509339 0.5547519 0.4662797 -0.5547519 0.5547519 0.4662797 -0.5584371 0.5547519 0.4662797 -0.5619986 0.5547519 0.4662797 -0.5654443 0.5547519 0.4662797 -0.5687816 0.5547519 0.4662797 -0.092819 0.5584371 0.4662797 -0.2262531 0.5584371 0.4662797 -0.2875993 0.5584371 0.4662797 -0.3262122 0.5584371 0.4662797 -0.3544566 0.5584371 0.4662797 -0.3767383 0.5584371 0.4662797 -0.3951413 0.5584371 0.4662797 -0.4108177 0.5584371 0.4662797 -0.4244723 0.5584371 0.4662797 -0.4365675 0.5584371 0.4662797 -0.4474232 0.5584371 0.4662797 -0.45727 0.5584371 0.4662797 -0.4662797 0.5584371 0.4662797 -0.4745834 0.5584371 0.4662797 -0.4822838 0.5584371 0.4662797 -0.4894626 0.5584371 0.4662797 -0.4961862 0.5584371 0.4662797 -0.5025087 0.5584371 0.4662797 -0.5084753 0.5584371 0.4662797 -0.514124 0.5584371 0.4662797 -0.519487 0.5584371 0.4662797 -0.5245917 0.5584371 0.4662797 -0.529462 0.5584371 0.4662797 -0.5341183 0.5584371 0.4662797 -0.5385787 0.5584371 0.4662797 -0.5428591 0.5584371 0.4662797 -0.5469733 0.5584371 0.4662797 -0.5509339 0.5584371 0.4662797 -0.5547519 0.5584371 0.4662797 -0.5584371 0.5584371 0.4662797 -0.5619986 0.5584371 0.4662797 -0.5654443 0.5584371 0.4662797 -0.5687816 0.5584371 0.4662797 -0.092819 0.5619986 0.4662797 -0.2262531 0.5619986 0.4662797 -0.2875993 0.5619986 0.4662797 -0.3262122 0.5619986 0.4662797 -0.3544566 0.5619986 0.4662797 -0.3767383 0.5619986 0.4662797 -0.3951413 0.5619986 0.4662797 -0.4108177 0.5619986 0.4662797 -0.4244723 0.5619986 0.4662797 -0.4365675 0.5619986 0.4662797 -0.4474232 0.5619986 0.4662797 -0.45727 0.5619986 0.4662797 -0.4662797 0.5619986 0.4662797 -0.4745834 0.5619986 0.4662797 -0.4822838 0.5619986 0.4662797 -0.4894626 0.5619986 0.4662797 -0.4961862 0.5619986 0.4662797 -0.5025087 0.5619986 0.4662797 -0.5084753 0.5619986 0.4662797 -0.514124 0.5619986 0.4662797 -0.519487 0.5619986 0.4662797 -0.5245917 0.5619986 0.4662797 -0.529462 0.5619986 0.4662797 -0.5341183 0.5619986 0.4662797 -0.5385787 0.5619986 0.4662797 -0.5428591 0.5619986 0.4662797 -0.5469733 0.5619986 0.4662797 -0.5509339 0.5619986 0.4662797 -0.5547519 0.5619986 0.4662797 -0.5584371 0.5619986 0.4662797 -0.5619986 0.5619986 0.4662797 -0.5654443 0.5619986 0.4662797 -0.5687816 0.5619986 0.4662797 -0.092819 0.5654443 0.4662797 -0.2262531 0.5654443 0.4662797 -0.2875993 0.5654443 0.4662797 -0.3262122 0.5654443 0.4662797 -0.3544566 0.5654443 0.4662797 -0.3767383 0.5654443 0.4662797 -0.3951413 0.5654443 0.4662797 -0.4108177 0.5654443 0.4662797 -0.4244723 0.5654443 0.4662797 -0.4365675 0.5654443 0.4662797 -0.4474232 0.5654443 0.4662797 -0.45727 0.5654443 0.4662797 -0.4662797 0.5654443 0.4662797 -0.4745834 0.5654443 0.4662797 -0.4822838 0.5654443 0.4662797 -0.4894626 0.5654443 0.4662797 -0.4961862 0.5654443 0.4662797 -0.5025087 0.5654443 0.4662797 -0.5084753 0.5654443 0.4662797 -0.514124 0.5654443 0.4662797 -0.519487 0.5654443 0.4662797 -0.5245917 0.5654443 0.4662797 -0.529462 0.5654443 0.4662797 -0.5341183 0.5654443 0.4662797 -0.5385787 0.5654443 0.4662797 -0.5428591 0.5654443 0.4662797 -0.5469733 0.5654443 0.4662797 -0.5509339 0.5654443 0.4662797 -0.5547519 0.5654443 0.4662797 -0.5584371 0.5654443 0.4662797 -0.5619986 0.5654443 0.4662797 -0.5654443 0.5654443 0.4662797 -0.5687816 0.5654443 0.4662797 -0.092819 0.5687816 0.4662797 -0.2262531 0.5687816 0.4662797 -0.2875993 0.5687816 0.4662797 -0.3262122 0.5687816 0.4662797 -0.3544566 0.5687816 0.4662797 -0.3767383 0.5687816 0.4662797 -0.3951413 0.5687816 0.4662797 -0.4108177 0.5687816 0.4662797 -0.4244723 0.5687816 0.4662797 -0.4365675 0.5687816 0.4662797 -0.4474232 0.5687816 0.4662797 -0.45727 0.5687816 0.4662797 -0.4662797 0.5687816 0.4662797 -0.4745834 0.5687816 0.4662797 -0.4822838 0.5687816 0.4662797 -0.4894626 0.5687816 0.4662797 -0.4961862 0.5687816 0.4662797 -0.5025087 0.5687816 0.4662797 -0.5084753 0.5687816 0.4662797 -0.514124 0.5687816 0.4662797 -0.519487 0.5687816 0.4662797 -0.5245917 0.5687816 0.4662797 -0.529462 0.5687816 0.4662797 -0.5341183 0.5687816 0.4662797 -0.5385787 0.5687816 0.4662797 -0.5428591 0.5687816 0.4662797 -0.5469733 0.5687816 0.4662797 -0.5509339 0.5687816 0.4662797 -0.5547519 0.5687816 0.4662797 -0.5584371 0.5687816 0.4662797 -0.5619986 0.5687816 0.4662797 -0.5654443 0.5687816 0.4662797 -0.5687816 0.5687816 0.4662797 -0.092819 0.092819 0.4745834 -0.2262531 0.092819 0.4745834 -0.2875993 0.092819 0.4745834 -0.3262122 0.092819 0.4745834 -0.3544566 0.092819 0.4745834 -0.3767383 0.092819 0.4745834 -0.3951413 0.092819 0.4745834 -0.4108177 0.092819 0.4745834 -0.4244723 0.092819 0.4745834 -0.4365675 0.092819 0.4745834 -0.4474232 0.092819 0.4745834 -0.45727 0.092819 0.4745834 -0.4662797 0.092819 0.4745834 -0.4745834 0.092819 0.4745834 -0.4822838 0.092819 0.4745834 -0.4894626 0.092819 0.4745834 -0.4961862 0.092819 0.4745834 -0.5025087 0.092819 0.4745834 -0.5084753 0.092819 0.4745834 -0.514124 0.092819 0.4745834 -0.519487 0.092819 0.4745834 -0.5245917 0.092819 0.4745834 -0.529462 0.092819 0.4745834 -0.5341183 0.092819 0.4745834 -0.5385787 0.092819 0.4745834 -0.5428591 0.092819 0.4745834 -0.5469733 0.092819 0.4745834 -0.5509339 0.092819 0.4745834 -0.5547519 0.092819 0.4745834 -0.5584371 0.092819 0.4745834 -0.5619986 0.092819 0.4745834 -0.5654443 0.092819 0.4745834 -0.5687816 0.092819 0.4745834 -0.092819 0.2262531 0.4745834 -0.2262531 0.2262531 0.4745834 -0.2875993 0.2262531 0.4745834 -0.3262122 0.2262531 0.4745834 -0.3544566 0.2262531 0.4745834 -0.3767383 0.2262531 0.4745834 -0.3951413 0.2262531 0.4745834 -0.4108177 0.2262531 0.4745834 -0.4244723 0.2262531 0.4745834 -0.4365675 0.2262531 0.4745834 -0.4474232 0.2262531 0.4745834 -0.45727 0.2262531 0.4745834 -0.4662797 0.2262531 0.4745834 -0.4745834 0.2262531 0.4745834 -0.4822838 0.2262531 0.4745834 -0.4894626 0.2262531 0.4745834 -0.4961862 0.2262531 0.4745834 -0.5025087 0.2262531 0.4745834 -0.5084753 0.2262531 0.4745834 -0.514124 0.2262531 0.4745834 -0.519487 0.2262531 0.4745834 -0.5245917 0.2262531 0.4745834 -0.529462 0.2262531 0.4745834 -0.5341183 0.2262531 0.4745834 -0.5385787 0.2262531 0.4745834 -0.5428591 0.2262531 0.4745834 -0.5469733 0.2262531 0.4745834 -0.5509339 0.2262531 0.4745834 -0.5547519 0.2262531 0.4745834 -0.5584371 0.2262531 0.4745834 -0.5619986 0.2262531 0.4745834 -0.5654443 0.2262531 0.4745834 -0.5687816 0.2262531 0.4745834 -0.092819 0.2875993 0.4745834 -0.2262531 0.2875993 0.4745834 -0.2875993 0.2875993 0.4745834 -0.3262122 0.2875993 0.4745834 -0.3544566 0.2875993 0.4745834 -0.3767383 0.2875993 0.4745834 -0.3951413 0.2875993 0.4745834 -0.4108177 0.2875993 0.4745834 -0.4244723 0.2875993 0.4745834 -0.4365675 0.2875993 0.4745834 -0.4474232 0.2875993 0.4745834 -0.45727 0.2875993 0.4745834 -0.4662797 0.2875993 0.4745834 -0.4745834 0.2875993 0.4745834 -0.4822838 0.2875993 0.4745834 -0.4894626 0.2875993 0.4745834 -0.4961862 0.2875993 0.4745834 -0.5025087 0.2875993 0.4745834 -0.5084753 0.2875993 0.4745834 -0.514124 0.2875993 0.4745834 -0.519487 0.2875993 0.4745834 -0.5245917 0.2875993 0.4745834 -0.529462 0.2875993 0.4745834 -0.5341183 0.2875993 0.4745834 -0.5385787 0.2875993 0.4745834 -0.5428591 0.2875993 0.4745834 -0.5469733 0.2875993 0.4745834 -0.5509339 0.2875993 0.4745834 -0.5547519 0.2875993 0.4745834 -0.5584371 0.2875993 0.4745834 -0.5619986 0.2875993 0.4745834 -0.5654443 0.2875993 0.4745834 -0.5687816 0.2875993 0.4745834 -0.092819 0.3262122 0.4745834 -0.2262531 0.3262122 0.4745834 -0.2875993 0.3262122 0.4745834 -0.3262122 0.3262122 0.4745834 -0.3544566 0.3262122 0.4745834 -0.3767383 0.3262122 0.4745834 -0.3951413 0.3262122 0.4745834 -0.4108177 0.3262122 0.4745834 -0.4244723 0.3262122 0.4745834 -0.4365675 0.3262122 0.4745834 -0.4474232 0.3262122 0.4745834 -0.45727 0.3262122 0.4745834 -0.4662797 0.3262122 0.4745834 -0.4745834 0.3262122 0.4745834 -0.4822838 0.3262122 0.4745834 -0.4894626 0.3262122 0.4745834 -0.4961862 0.3262122 0.4745834 -0.5025087 0.3262122 0.4745834 -0.5084753 0.3262122 0.4745834 -0.514124 0.3262122 0.4745834 -0.519487 0.3262122 0.4745834 -0.5245917 0.3262122 0.4745834 -0.529462 0.3262122 0.4745834 -0.5341183 0.3262122 0.4745834 -0.5385787 0.3262122 0.4745834 -0.5428591 0.3262122 0.4745834 -0.5469733 0.3262122 0.4745834 -0.5509339 0.3262122 0.4745834 -0.5547519 0.3262122 0.4745834 -0.5584371 0.3262122 0.4745834 -0.5619986 0.3262122 0.4745834 -0.5654443 0.3262122 0.4745834 -0.5687816 0.3262122 0.4745834 -0.092819 0.3544566 0.4745834 -0.2262531 0.3544566 0.4745834 -0.2875993 0.3544566 0.4745834 -0.3262122 0.3544566 0.4745834 -0.3544566 0.3544566 0.4745834 -0.3767383 0.3544566 0.4745834 -0.3951413 0.3544566 0.4745834 -0.4108177 0.3544566 0.4745834 -0.4244723 0.3544566 0.4745834 -0.4365675 0.3544566 0.4745834 -0.4474232 0.3544566 0.4745834 -0.45727 0.3544566 0.4745834 -0.4662797 0.3544566 0.4745834 -0.4745834 0.3544566 0.4745834 -0.4822838 0.3544566 0.4745834 -0.4894626 0.3544566 0.4745834 -0.4961862 0.3544566 0.4745834 -0.5025087 0.3544566 0.4745834 -0.5084753 0.3544566 0.4745834 -0.514124 0.3544566 0.4745834 -0.519487 0.3544566 0.4745834 -0.5245917 0.3544566 0.4745834 -0.529462 0.3544566 0.4745834 -0.5341183 0.3544566 0.4745834 -0.5385787 0.3544566 0.4745834 -0.5428591 0.3544566 0.4745834 -0.5469733 0.3544566 0.4745834 -0.5509339 0.3544566 0.4745834 -0.5547519 0.3544566 0.4745834 -0.5584371 0.3544566 0.4745834 -0.5619986 0.3544566 0.4745834 -0.5654443 0.3544566 0.4745834 -0.5687816 0.3544566 0.4745834 -0.092819 0.3767383 0.4745834 -0.2262531 0.3767383 0.4745834 -0.2875993 0.3767383 0.4745834 -0.3262122 0.3767383 0.4745834 -0.3544566 0.3767383 0.4745834 -0.3767383 0.3767383 0.4745834 -0.3951413 0.3767383 0.4745834 -0.4108177 0.3767383 0.4745834 -0.4244723 0.3767383 0.4745834 -0.4365675 0.3767383 0.4745834 -0.4474232 0.3767383 0.4745834 -0.45727 0.3767383 0.4745834 -0.4662797 0.3767383 0.4745834 -0.4745834 0.3767383 0.4745834 -0.4822838 0.3767383 0.4745834 -0.4894626 0.3767383 0.4745834 -0.4961862 0.3767383 0.4745834 -0.5025087 0.3767383 0.4745834 -0.5084753 0.3767383 0.4745834 -0.514124 0.3767383 0.4745834 -0.519487 0.3767383 0.4745834 -0.5245917 0.3767383 0.4745834 -0.529462 0.3767383 0.4745834 -0.5341183 0.3767383 0.4745834 -0.5385787 0.3767383 0.4745834 -0.5428591 0.3767383 0.4745834 -0.5469733 0.3767383 0.4745834 -0.5509339 0.3767383 0.4745834 -0.5547519 0.3767383 0.4745834 -0.5584371 0.3767383 0.4745834 -0.5619986 0.3767383 0.4745834 -0.5654443 0.3767383 0.4745834 -0.5687816 0.3767383 0.4745834 -0.092819 0.3951413 0.4745834 -0.2262531 0.3951413 0.4745834 -0.2875993 0.3951413 0.4745834 -0.3262122 0.3951413 0.4745834 -0.3544566 0.3951413 0.4745834 -0.3767383 0.3951413 0.4745834 -0.3951413 0.3951413 0.4745834 -0.4108177 0.3951413 0.4745834 -0.4244723 0.3951413 0.4745834 -0.4365675 0.3951413 0.4745834 -0.4474232 0.3951413 0.4745834 -0.45727 0.3951413 0.4745834 -0.4662797 0.3951413 0.4745834 -0.4745834 0.3951413 0.4745834 -0.4822838 0.3951413 0.4745834 -0.4894626 0.3951413 0.4745834 -0.4961862 0.3951413 0.4745834 -0.5025087 0.3951413 0.4745834 -0.5084753 0.3951413 0.4745834 -0.514124 0.3951413 0.4745834 -0.519487 0.3951413 0.4745834 -0.5245917 0.3951413 0.4745834 -0.529462 0.3951413 0.4745834 -0.5341183 0.3951413 0.4745834 -0.5385787 0.3951413 0.4745834 -0.5428591 0.3951413 0.4745834 -0.5469733 0.3951413 0.4745834 -0.5509339 0.3951413 0.4745834 -0.5547519 0.3951413 0.4745834 -0.5584371 0.3951413 0.4745834 -0.5619986 0.3951413 0.4745834 -0.5654443 0.3951413 0.4745834 -0.5687816 0.3951413 0.4745834 -0.092819 0.4108177 0.4745834 -0.2262531 0.4108177 0.4745834 -0.2875993 0.4108177 0.4745834 -0.3262122 0.4108177 0.4745834 -0.3544566 0.4108177 0.4745834 -0.3767383 0.4108177 0.4745834 -0.3951413 0.4108177 0.4745834 -0.4108177 0.4108177 0.4745834 -0.4244723 0.4108177 0.4745834 -0.4365675 0.4108177 0.4745834 -0.4474232 0.4108177 0.4745834 -0.45727 0.4108177 0.4745834 -0.4662797 0.4108177 0.4745834 -0.4745834 0.4108177 0.4745834 -0.4822838 0.4108177 0.4745834 -0.4894626 0.4108177 0.4745834 -0.4961862 0.4108177 0.4745834 -0.5025087 0.4108177 0.4745834 -0.5084753 0.4108177 0.4745834 -0.514124 0.4108177 0.4745834 -0.519487 0.4108177 0.4745834 -0.5245917 0.4108177 0.4745834 -0.529462 0.4108177 0.4745834 -0.5341183 0.4108177 0.4745834 -0.5385787 0.4108177 0.4745834 -0.5428591 0.4108177 0.4745834 -0.5469733 0.4108177 0.4745834 -0.5509339 0.4108177 0.4745834 -0.5547519 0.4108177 0.4745834 -0.5584371 0.4108177 0.4745834 -0.5619986 0.4108177 0.4745834 -0.5654443 0.4108177 0.4745834 -0.5687816 0.4108177 0.4745834 -0.092819 0.4244723 0.4745834 -0.2262531 0.4244723 0.4745834 -0.2875993 0.4244723 0.4745834 -0.3262122 0.4244723 0.4745834 -0.3544566 0.4244723 0.4745834 -0.3767383 0.4244723 0.4745834 -0.3951413 0.4244723 0.4745834 -0.4108177 0.4244723 0.4745834 -0.4244723 0.4244723 0.4745834 -0.4365675 0.4244723 0.4745834 -0.4474232 0.4244723 0.4745834 -0.45727 0.4244723 0.4745834 -0.4662797 0.4244723 0.4745834 -0.4745834 0.4244723 0.4745834 -0.4822838 0.4244723 0.4745834 -0.4894626 0.4244723 0.4745834 -0.4961862 0.4244723 0.4745834 -0.5025087 0.4244723 0.4745834 -0.5084753 0.4244723 0.4745834 -0.514124 0.4244723 0.4745834 -0.519487 0.4244723 0.4745834 -0.5245917 0.4244723 0.4745834 -0.529462 0.4244723 0.4745834 -0.5341183 0.4244723 0.4745834 -0.5385787 0.4244723 0.4745834 -0.5428591 0.4244723 0.4745834 -0.5469733 0.4244723 0.4745834 -0.5509339 0.4244723 0.4745834 -0.5547519 0.4244723 0.4745834 -0.5584371 0.4244723 0.4745834 -0.5619986 0.4244723 0.4745834 -0.5654443 0.4244723 0.4745834 -0.5687816 0.4244723 0.4745834 -0.092819 0.4365675 0.4745834 -0.2262531 0.4365675 0.4745834 -0.2875993 0.4365675 0.4745834 -0.3262122 0.4365675 0.4745834 -0.3544566 0.4365675 0.4745834 -0.3767383 0.4365675 0.4745834 -0.3951413 0.4365675 0.4745834 -0.4108177 0.4365675 0.4745834 -0.4244723 0.4365675 0.4745834 -0.4365675 0.4365675 0.4745834 -0.4474232 0.4365675 0.4745834 -0.45727 0.4365675 0.4745834 -0.4662797 0.4365675 0.4745834 -0.4745834 0.4365675 0.4745834 -0.4822838 0.4365675 0.4745834 -0.4894626 0.4365675 0.4745834 -0.4961862 0.4365675 0.4745834 -0.5025087 0.4365675 0.4745834 -0.5084753 0.4365675 0.4745834 -0.514124 0.4365675 0.4745834 -0.519487 0.4365675 0.4745834 -0.5245917 0.4365675 0.4745834 -0.529462 0.4365675 0.4745834 -0.5341183 0.4365675 0.4745834 -0.5385787 0.4365675 0.4745834 -0.5428591 0.4365675 0.4745834 -0.5469733 0.4365675 0.4745834 -0.5509339 0.4365675 0.4745834 -0.5547519 0.4365675 0.4745834 -0.5584371 0.4365675 0.4745834 -0.5619986 0.4365675 0.4745834 -0.5654443 0.4365675 0.4745834 -0.5687816 0.4365675 0.4745834 -0.092819 0.4474232 0.4745834 -0.2262531 0.4474232 0.4745834 -0.2875993 0.4474232 0.4745834 -0.3262122 0.4474232 0.4745834 -0.3544566 0.4474232 0.4745834 -0.3767383 0.4474232 0.4745834 -0.3951413 0.4474232 0.4745834 -0.4108177 0.4474232 0.4745834 -0.4244723 0.4474232 0.4745834 -0.4365675 0.4474232 0.4745834 -0.4474232 0.4474232 0.4745834 -0.45727 0.4474232 0.4745834 -0.4662797 0.4474232 0.4745834 -0.4745834 0.4474232 0.4745834 -0.4822838 0.4474232 0.4745834 -0.4894626 0.4474232 0.4745834 -0.4961862 0.4474232 0.4745834 -0.5025087 0.4474232 0.4745834 -0.5084753 0.4474232 0.4745834 -0.514124 0.4474232 0.4745834 -0.519487 0.4474232 0.4745834 -0.5245917 0.4474232 0.4745834 -0.529462 0.4474232 0.4745834 -0.5341183 0.4474232 0.4745834 -0.5385787 0.4474232 0.4745834 -0.5428591 0.4474232 0.4745834 -0.5469733 0.4474232 0.4745834 -0.5509339 0.4474232 0.4745834 -0.5547519 0.4474232 0.4745834 -0.5584371 0.4474232 0.4745834 -0.5619986 0.4474232 0.4745834 -0.5654443 0.4474232 0.4745834 -0.5687816 0.4474232 0.4745834 -0.092819 0.45727 0.4745834 -0.2262531 0.45727 0.4745834 -0.2875993 0.45727 0.4745834 -0.3262122 0.45727 0.4745834 -0.3544566 0.45727 0.4745834 -0.3767383 0.45727 0.4745834 -0.3951413 0.45727 0.4745834 -0.4108177 0.45727 0.4745834 -0.4244723 0.45727 0.4745834 -0.4365675 0.45727 0.4745834 -0.4474232 0.45727 0.4745834 -0.45727 0.45727 0.4745834 -0.4662797 0.45727 0.4745834 -0.4745834 0.45727 0.4745834 -0.4822838 0.45727 0.4745834 -0.4894626 0.45727 0.4745834 -0.4961862 0.45727 0.4745834 -0.5025087 0.45727 0.4745834 -0.5084753 0.45727 0.4745834 -0.514124 0.45727 0.4745834 -0.519487 0.45727 0.4745834 -0.5245917 0.45727 0.4745834 -0.529462 0.45727 0.4745834 -0.5341183 0.45727 0.4745834 -0.5385787 0.45727 0.4745834 -0.5428591 0.45727 0.4745834 -0.5469733 0.45727 0.4745834 -0.5509339 0.45727 0.4745834 -0.5547519 0.45727 0.4745834 -0.5584371 0.45727 0.4745834 -0.5619986 0.45727 0.4745834 -0.5654443 0.45727 0.4745834 -0.5687816 0.45727 0.4745834 -0.092819 0.4662797 0.4745834 -0.2262531 0.4662797 0.4745834 -0.2875993 0.4662797 0.4745834 -0.3262122 0.4662797 0.4745834 -0.3544566 0.4662797 0.4745834 -0.3767383 0.4662797 0.4745834 -0.3951413 0.4662797 0.4745834 -0.4108177 0.4662797 0.4745834 -0.4244723 0.4662797 0.4745834 -0.4365675 0.4662797 0.4745834 -0.4474232 0.4662797 0.4745834 -0.45727 0.4662797 0.4745834 -0.4662797 0.4662797 0.4745834 -0.4745834 0.4662797 0.4745834 -0.4822838 0.4662797 0.4745834 -0.4894626 0.4662797 0.4745834 -0.4961862 0.4662797 0.4745834 -0.5025087 0.4662797 0.4745834 -0.5084753 0.4662797 0.4745834 -0.514124 0.4662797 0.4745834 -0.519487 0.4662797 0.4745834 -0.5245917 0.4662797 0.4745834 -0.529462 0.4662797 0.4745834 -0.5341183 0.4662797 0.4745834 -0.5385787 0.4662797 0.4745834 -0.5428591 0.4662797 0.4745834 -0.5469733 0.4662797 0.4745834 -0.5509339 0.4662797 0.4745834 -0.5547519 0.4662797 0.4745834 -0.5584371 0.4662797 0.4745834 -0.5619986 0.4662797 0.4745834 -0.5654443 0.4662797 0.4745834 -0.5687816 0.4662797 0.4745834 -0.092819 0.4745834 0.4745834 -0.2262531 0.4745834 0.4745834 -0.2875993 0.4745834 0.4745834 -0.3262122 0.4745834 0.4745834 -0.3544566 0.4745834 0.4745834 -0.3767383 0.4745834 0.4745834 -0.3951413 0.4745834 0.4745834 -0.4108177 0.4745834 0.4745834 -0.4244723 0.4745834 0.4745834 -0.4365675 0.4745834 0.4745834 -0.4474232 0.4745834 0.4745834 -0.45727 0.4745834 0.4745834 -0.4662797 0.4745834 0.4745834 -0.4745834 0.4745834 0.4745834 -0.4822838 0.4745834 0.4745834 -0.4894626 0.4745834 0.4745834 -0.4961862 0.4745834 0.4745834 -0.5025087 0.4745834 0.4745834 -0.5084753 0.4745834 0.4745834 -0.514124 0.4745834 0.4745834 -0.519487 0.4745834 0.4745834 -0.5245917 0.4745834 0.4745834 -0.529462 0.4745834 0.4745834 -0.5341183 0.4745834 0.4745834 -0.5385787 0.4745834 0.4745834 -0.5428591 0.4745834 0.4745834 -0.5469733 0.4745834 0.4745834 -0.5509339 0.4745834 0.4745834 -0.5547519 0.4745834 0.4745834 -0.5584371 0.4745834 0.4745834 -0.5619986 0.4745834 0.4745834 -0.5654443 0.4745834 0.4745834 -0.5687816 0.4745834 0.4745834 -0.092819 0.4822838 0.4745834 -0.2262531 0.4822838 0.4745834 -0.2875993 0.4822838 0.4745834 -0.3262122 0.4822838 0.4745834 -0.3544566 0.4822838 0.4745834 -0.3767383 0.4822838 0.4745834 -0.3951413 0.4822838 0.4745834 -0.4108177 0.4822838 0.4745834 -0.4244723 0.4822838 0.4745834 -0.4365675 0.4822838 0.4745834 -0.4474232 0.4822838 0.4745834 -0.45727 0.4822838 0.4745834 -0.4662797 0.4822838 0.4745834 -0.4745834 0.4822838 0.4745834 -0.4822838 0.4822838 0.4745834 -0.4894626 0.4822838 0.4745834 -0.4961862 0.4822838 0.4745834 -0.5025087 0.4822838 0.4745834 -0.5084753 0.4822838 0.4745834 -0.514124 0.4822838 0.4745834 -0.519487 0.4822838 0.4745834 -0.5245917 0.4822838 0.4745834 -0.529462 0.4822838 0.4745834 -0.5341183 0.4822838 0.4745834 -0.5385787 0.4822838 0.4745834 -0.5428591 0.4822838 0.4745834 -0.5469733 0.4822838 0.4745834 -0.5509339 0.4822838 0.4745834 -0.5547519 0.4822838 0.4745834 -0.5584371 0.4822838 0.4745834 -0.5619986 0.4822838 0.4745834 -0.5654443 0.4822838 0.4745834 -0.5687816 0.4822838 0.4745834 -0.092819 0.4894626 0.4745834 -0.2262531 0.4894626 0.4745834 -0.2875993 0.4894626 0.4745834 -0.3262122 0.4894626 0.4745834 -0.3544566 0.4894626 0.4745834 -0.3767383 0.4894626 0.4745834 -0.3951413 0.4894626 0.4745834 -0.4108177 0.4894626 0.4745834 -0.4244723 0.4894626 0.4745834 -0.4365675 0.4894626 0.4745834 -0.4474232 0.4894626 0.4745834 -0.45727 0.4894626 0.4745834 -0.4662797 0.4894626 0.4745834 -0.4745834 0.4894626 0.4745834 -0.4822838 0.4894626 0.4745834 -0.4894626 0.4894626 0.4745834 -0.4961862 0.4894626 0.4745834 -0.5025087 0.4894626 0.4745834 -0.5084753 0.4894626 0.4745834 -0.514124 0.4894626 0.4745834 -0.519487 0.4894626 0.4745834 -0.5245917 0.4894626 0.4745834 -0.529462 0.4894626 0.4745834 -0.5341183 0.4894626 0.4745834 -0.5385787 0.4894626 0.4745834 -0.5428591 0.4894626 0.4745834 -0.5469733 0.4894626 0.4745834 -0.5509339 0.4894626 0.4745834 -0.5547519 0.4894626 0.4745834 -0.5584371 0.4894626 0.4745834 -0.5619986 0.4894626 0.4745834 -0.5654443 0.4894626 0.4745834 -0.5687816 0.4894626 0.4745834 -0.092819 0.4961862 0.4745834 -0.2262531 0.4961862 0.4745834 -0.2875993 0.4961862 0.4745834 -0.3262122 0.4961862 0.4745834 -0.3544566 0.4961862 0.4745834 -0.3767383 0.4961862 0.4745834 -0.3951413 0.4961862 0.4745834 -0.4108177 0.4961862 0.4745834 -0.4244723 0.4961862 0.4745834 -0.4365675 0.4961862 0.4745834 -0.4474232 0.4961862 0.4745834 -0.45727 0.4961862 0.4745834 -0.4662797 0.4961862 0.4745834 -0.4745834 0.4961862 0.4745834 -0.4822838 0.4961862 0.4745834 -0.4894626 0.4961862 0.4745834 -0.4961862 0.4961862 0.4745834 -0.5025087 0.4961862 0.4745834 -0.5084753 0.4961862 0.4745834 -0.514124 0.4961862 0.4745834 -0.519487 0.4961862 0.4745834 -0.5245917 0.4961862 0.4745834 -0.529462 0.4961862 0.4745834 -0.5341183 0.4961862 0.4745834 -0.5385787 0.4961862 0.4745834 -0.5428591 0.4961862 0.4745834 -0.5469733 0.4961862 0.4745834 -0.5509339 0.4961862 0.4745834 -0.5547519 0.4961862 0.4745834 -0.5584371 0.4961862 0.4745834 -0.5619986 0.4961862 0.4745834 -0.5654443 0.4961862 0.4745834 -0.5687816 0.4961862 0.4745834 -0.092819 0.5025087 0.4745834 -0.2262531 0.5025087 0.4745834 -0.2875993 0.5025087 0.4745834 -0.3262122 0.5025087 0.4745834 -0.3544566 0.5025087 0.4745834 -0.3767383 0.5025087 0.4745834 -0.3951413 0.5025087 0.4745834 -0.4108177 0.5025087 0.4745834 -0.4244723 0.5025087 0.4745834 -0.4365675 0.5025087 0.4745834 -0.4474232 0.5025087 0.4745834 -0.45727 0.5025087 0.4745834 -0.4662797 0.5025087 0.4745834 -0.4745834 0.5025087 0.4745834 -0.4822838 0.5025087 0.4745834 -0.4894626 0.5025087 0.4745834 -0.4961862 0.5025087 0.4745834 -0.5025087 0.5025087 0.4745834 -0.5084753 0.5025087 0.4745834 -0.514124 0.5025087 0.4745834 -0.519487 0.5025087 0.4745834 -0.5245917 0.5025087 0.4745834 -0.529462 0.5025087 0.4745834 -0.5341183 0.5025087 0.4745834 -0.5385787 0.5025087 0.4745834 -0.5428591 0.5025087 0.4745834 -0.5469733 0.5025087 0.4745834 -0.5509339 0.5025087 0.4745834 -0.5547519 0.5025087 0.4745834 -0.5584371 0.5025087 0.4745834 -0.5619986 0.5025087 0.4745834 -0.5654443 0.5025087 0.4745834 -0.5687816 0.5025087 0.4745834 -0.092819 0.5084753 0.4745834 -0.2262531 0.5084753 0.4745834 -0.2875993 0.5084753 0.4745834 -0.3262122 0.5084753 0.4745834 -0.3544566 0.5084753 0.4745834 -0.3767383 0.5084753 0.4745834 -0.3951413 0.5084753 0.4745834 -0.4108177 0.5084753 0.4745834 -0.4244723 0.5084753 0.4745834 -0.4365675 0.5084753 0.4745834 -0.4474232 0.5084753 0.4745834 -0.45727 0.5084753 0.4745834 -0.4662797 0.5084753 0.4745834 -0.4745834 0.5084753 0.4745834 -0.4822838 0.5084753 0.4745834 -0.4894626 0.5084753 0.4745834 -0.4961862 0.5084753 0.4745834 -0.5025087 0.5084753 0.4745834 -0.5084753 0.5084753 0.4745834 -0.514124 0.5084753 0.4745834 -0.519487 0.5084753 0.4745834 -0.5245917 0.5084753 0.4745834 -0.529462 0.5084753 0.4745834 -0.5341183 0.5084753 0.4745834 -0.5385787 0.5084753 0.4745834 -0.5428591 0.5084753 0.4745834 -0.5469733 0.5084753 0.4745834 -0.5509339 0.5084753 0.4745834 -0.5547519 0.5084753 0.4745834 -0.5584371 0.5084753 0.4745834 -0.5619986 0.5084753 0.4745834 -0.5654443 0.5084753 0.4745834 -0.5687816 0.5084753 0.4745834 -0.092819 0.514124 0.4745834 -0.2262531 0.514124 0.4745834 -0.2875993 0.514124 0.4745834 -0.3262122 0.514124 0.4745834 -0.3544566 0.514124 0.4745834 -0.3767383 0.514124 0.4745834 -0.3951413 0.514124 0.4745834 -0.4108177 0.514124 0.4745834 -0.4244723 0.514124 0.4745834 -0.4365675 0.514124 0.4745834 -0.4474232 0.514124 0.4745834 -0.45727 0.514124 0.4745834 -0.4662797 0.514124 0.4745834 -0.4745834 0.514124 0.4745834 -0.4822838 0.514124 0.4745834 -0.4894626 0.514124 0.4745834 -0.4961862 0.514124 0.4745834 -0.5025087 0.514124 0.4745834 -0.5084753 0.514124 0.4745834 -0.514124 0.514124 0.4745834 -0.519487 0.514124 0.4745834 -0.5245917 0.514124 0.4745834 -0.529462 0.514124 0.4745834 -0.5341183 0.514124 0.4745834 -0.5385787 0.514124 0.4745834 -0.5428591 0.514124 0.4745834 -0.5469733 0.514124 0.4745834 -0.5509339 0.514124 0.4745834 -0.5547519 0.514124 0.4745834 -0.5584371 0.514124 0.4745834 -0.5619986 0.514124 0.4745834 -0.5654443 0.514124 0.4745834 -0.5687816 0.514124 0.4745834 -0.092819 0.519487 0.4745834 -0.2262531 0.519487 0.4745834 -0.2875993 0.519487 0.4745834 -0.3262122 0.519487 0.4745834 -0.3544566 0.519487 0.4745834 -0.3767383 0.519487 0.4745834 -0.3951413 0.519487 0.4745834 -0.4108177 0.519487 0.4745834 -0.4244723 0.519487 0.4745834 -0.4365675 0.519487 0.4745834 -0.4474232 0.519487 0.4745834 -0.45727 0.519487 0.4745834 -0.4662797 0.519487 0.4745834 -0.4745834 0.519487 0.4745834 -0.4822838 0.519487 0.4745834 -0.4894626 0.519487 0.4745834 -0.4961862 0.519487 0.4745834 -0.5025087 0.519487 0.4745834 -0.5084753 0.519487 0.4745834 -0.514124 0.519487 0.4745834 -0.519487 0.519487 0.4745834 -0.5245917 0.519487 0.4745834 -0.529462 0.519487 0.4745834 -0.5341183 0.519487 0.4745834 -0.5385787 0.519487 0.4745834 -0.5428591 0.519487 0.4745834 -0.5469733 0.519487 0.4745834 -0.5509339 0.519487 0.4745834 -0.5547519 0.519487 0.4745834 -0.5584371 0.519487 0.4745834 -0.5619986 0.519487 0.4745834 -0.5654443 0.519487 0.4745834 -0.5687816 0.519487 0.4745834 -0.092819 0.5245917 0.4745834 -0.2262531 0.5245917 0.4745834 -0.2875993 0.5245917 0.4745834 -0.3262122 0.5245917 0.4745834 -0.3544566 0.5245917 0.4745834 -0.3767383 0.5245917 0.4745834 -0.3951413 0.5245917 0.4745834 -0.4108177 0.5245917 0.4745834 -0.4244723 0.5245917 0.4745834 -0.4365675 0.5245917 0.4745834 -0.4474232 0.5245917 0.4745834 -0.45727 0.5245917 0.4745834 -0.4662797 0.5245917 0.4745834 -0.4745834 0.5245917 0.4745834 -0.4822838 0.5245917 0.4745834 -0.4894626 0.5245917 0.4745834 -0.4961862 0.5245917 0.4745834 -0.5025087 0.5245917 0.4745834 -0.5084753 0.5245917 0.4745834 -0.514124 0.5245917 0.4745834 -0.519487 0.5245917 0.4745834 -0.5245917 0.5245917 0.4745834 -0.529462 0.5245917 0.4745834 -0.5341183 0.5245917 0.4745834 -0.5385787 0.5245917 0.4745834 -0.5428591 0.5245917 0.4745834 -0.5469733 0.5245917 0.4745834 -0.5509339 0.5245917 0.4745834 -0.5547519 0.5245917 0.4745834 -0.5584371 0.5245917 0.4745834 -0.5619986 0.5245917 0.4745834 -0.5654443 0.5245917 0.4745834 -0.5687816 0.5245917 0.4745834 -0.092819 0.529462 0.4745834 -0.2262531 0.529462 0.4745834 -0.2875993 0.529462 0.4745834 -0.3262122 0.529462 0.4745834 -0.3544566 0.529462 0.4745834 -0.3767383 0.529462 0.4745834 -0.3951413 0.529462 0.4745834 -0.4108177 0.529462 0.4745834 -0.4244723 0.529462 0.4745834 -0.4365675 0.529462 0.4745834 -0.4474232 0.529462 0.4745834 -0.45727 0.529462 0.4745834 -0.4662797 0.529462 0.4745834 -0.4745834 0.529462 0.4745834 -0.4822838 0.529462 0.4745834 -0.4894626 0.529462 0.4745834 -0.4961862 0.529462 0.4745834 -0.5025087 0.529462 0.4745834 -0.5084753 0.529462 0.4745834 -0.514124 0.529462 0.4745834 -0.519487 0.529462 0.4745834 -0.5245917 0.529462 0.4745834 -0.529462 0.529462 0.4745834 -0.5341183 0.529462 0.4745834 -0.5385787 0.529462 0.4745834 -0.5428591 0.529462 0.4745834 -0.5469733 0.529462 0.4745834 -0.5509339 0.529462 0.4745834 -0.5547519 0.529462 0.4745834 -0.5584371 0.529462 0.4745834 -0.5619986 0.529462 0.4745834 -0.5654443 0.529462 0.4745834 -0.5687816 0.529462 0.4745834 -0.092819 0.5341183 0.4745834 -0.2262531 0.5341183 0.4745834 -0.2875993 0.5341183 0.4745834 -0.3262122 0.5341183 0.4745834 -0.3544566 0.5341183 0.4745834 -0.3767383 0.5341183 0.4745834 -0.3951413 0.5341183 0.4745834 -0.4108177 0.5341183 0.4745834 -0.4244723 0.5341183 0.4745834 -0.4365675 0.5341183 0.4745834 -0.4474232 0.5341183 0.4745834 -0.45727 0.5341183 0.4745834 -0.4662797 0.5341183 0.4745834 -0.4745834 0.5341183 0.4745834 -0.4822838 0.5341183 0.4745834 -0.4894626 0.5341183 0.4745834 -0.4961862 0.5341183 0.4745834 -0.5025087 0.5341183 0.4745834 -0.5084753 0.5341183 0.4745834 -0.514124 0.5341183 0.4745834 -0.519487 0.5341183 0.4745834 -0.5245917 0.5341183 0.4745834 -0.529462 0.5341183 0.4745834 -0.5341183 0.5341183 0.4745834 -0.5385787 0.5341183 0.4745834 -0.5428591 0.5341183 0.4745834 -0.5469733 0.5341183 0.4745834 -0.5509339 0.5341183 0.4745834 -0.5547519 0.5341183 0.4745834 -0.5584371 0.5341183 0.4745834 -0.5619986 0.5341183 0.4745834 -0.5654443 0.5341183 0.4745834 -0.5687816 0.5341183 0.4745834 -0.092819 0.5385787 0.4745834 -0.2262531 0.5385787 0.4745834 -0.2875993 0.5385787 0.4745834 -0.3262122 0.5385787 0.4745834 -0.3544566 0.5385787 0.4745834 -0.3767383 0.5385787 0.4745834 -0.3951413 0.5385787 0.4745834 -0.4108177 0.5385787 0.4745834 -0.4244723 0.5385787 0.4745834 -0.4365675 0.5385787 0.4745834 -0.4474232 0.5385787 0.4745834 -0.45727 0.5385787 0.4745834 -0.4662797 0.5385787 0.4745834 -0.4745834 0.5385787 0.4745834 -0.4822838 0.5385787 0.4745834 -0.4894626 0.5385787 0.4745834 -0.4961862 0.5385787 0.4745834 -0.5025087 0.5385787 0.4745834 -0.5084753 0.5385787 0.4745834 -0.514124 0.5385787 0.4745834 -0.519487 0.5385787 0.4745834 -0.5245917 0.5385787 0.4745834 -0.529462 0.5385787 0.4745834 -0.5341183 0.5385787 0.4745834 -0.5385787 0.5385787 0.4745834 -0.5428591 0.5385787 0.4745834 -0.5469733 0.5385787 0.4745834 -0.5509339 0.5385787 0.4745834 -0.5547519 0.5385787 0.4745834 -0.5584371 0.5385787 0.4745834 -0.5619986 0.5385787 0.4745834 -0.5654443 0.5385787 0.4745834 -0.5687816 0.5385787 0.4745834 -0.092819 0.5428591 0.4745834 -0.2262531 0.5428591 0.4745834 -0.2875993 0.5428591 0.4745834 -0.3262122 0.5428591 0.4745834 -0.3544566 0.5428591 0.4745834 -0.3767383 0.5428591 0.4745834 -0.3951413 0.5428591 0.4745834 -0.4108177 0.5428591 0.4745834 -0.4244723 0.5428591 0.4745834 -0.4365675 0.5428591 0.4745834 -0.4474232 0.5428591 0.4745834 -0.45727 0.5428591 0.4745834 -0.4662797 0.5428591 0.4745834 -0.4745834 0.5428591 0.4745834 -0.4822838 0.5428591 0.4745834 -0.4894626 0.5428591 0.4745834 -0.4961862 0.5428591 0.4745834 -0.5025087 0.5428591 0.4745834 -0.5084753 0.5428591 0.4745834 -0.514124 0.5428591 0.4745834 -0.519487 0.5428591 0.4745834 -0.5245917 0.5428591 0.4745834 -0.529462 0.5428591 0.4745834 -0.5341183 0.5428591 0.4745834 -0.5385787 0.5428591 0.4745834 -0.5428591 0.5428591 0.4745834 -0.5469733 0.5428591 0.4745834 -0.5509339 0.5428591 0.4745834 -0.5547519 0.5428591 0.4745834 -0.5584371 0.5428591 0.4745834 -0.5619986 0.5428591 0.4745834 -0.5654443 0.5428591 0.4745834 -0.5687816 0.5428591 0.4745834 -0.092819 0.5469733 0.4745834 -0.2262531 0.5469733 0.4745834 -0.2875993 0.5469733 0.4745834 -0.3262122 0.5469733 0.4745834 -0.3544566 0.5469733 0.4745834 -0.3767383 0.5469733 0.4745834 -0.3951413 0.5469733 0.4745834 -0.4108177 0.5469733 0.4745834 -0.4244723 0.5469733 0.4745834 -0.4365675 0.5469733 0.4745834 -0.4474232 0.5469733 0.4745834 -0.45727 0.5469733 0.4745834 -0.4662797 0.5469733 0.4745834 -0.4745834 0.5469733 0.4745834 -0.4822838 0.5469733 0.4745834 -0.4894626 0.5469733 0.4745834 -0.4961862 0.5469733 0.4745834 -0.5025087 0.5469733 0.4745834 -0.5084753 0.5469733 0.4745834 -0.514124 0.5469733 0.4745834 -0.519487 0.5469733 0.4745834 -0.5245917 0.5469733 0.4745834 -0.529462 0.5469733 0.4745834 -0.5341183 0.5469733 0.4745834 -0.5385787 0.5469733 0.4745834 -0.5428591 0.5469733 0.4745834 -0.5469733 0.5469733 0.4745834 -0.5509339 0.5469733 0.4745834 -0.5547519 0.5469733 0.4745834 -0.5584371 0.5469733 0.4745834 -0.5619986 0.5469733 0.4745834 -0.5654443 0.5469733 0.4745834 -0.5687816 0.5469733 0.4745834 -0.092819 0.5509339 0.4745834 -0.2262531 0.5509339 0.4745834 -0.2875993 0.5509339 0.4745834 -0.3262122 0.5509339 0.4745834 -0.3544566 0.5509339 0.4745834 -0.3767383 0.5509339 0.4745834 -0.3951413 0.5509339 0.4745834 -0.4108177 0.5509339 0.4745834 -0.4244723 0.5509339 0.4745834 -0.4365675 0.5509339 0.4745834 -0.4474232 0.5509339 0.4745834 -0.45727 0.5509339 0.4745834 -0.4662797 0.5509339 0.4745834 -0.4745834 0.5509339 0.4745834 -0.4822838 0.5509339 0.4745834 -0.4894626 0.5509339 0.4745834 -0.4961862 0.5509339 0.4745834 -0.5025087 0.5509339 0.4745834 -0.5084753 0.5509339 0.4745834 -0.514124 0.5509339 0.4745834 -0.519487 0.5509339 0.4745834 -0.5245917 0.5509339 0.4745834 -0.529462 0.5509339 0.4745834 -0.5341183 0.5509339 0.4745834 -0.5385787 0.5509339 0.4745834 -0.5428591 0.5509339 0.4745834 -0.5469733 0.5509339 0.4745834 -0.5509339 0.5509339 0.4745834 -0.5547519 0.5509339 0.4745834 -0.5584371 0.5509339 0.4745834 -0.5619986 0.5509339 0.4745834 -0.5654443 0.5509339 0.4745834 -0.5687816 0.5509339 0.4745834 -0.092819 0.5547519 0.4745834 -0.2262531 0.5547519 0.4745834 -0.2875993 0.5547519 0.4745834 -0.3262122 0.5547519 0.4745834 -0.3544566 0.5547519 0.4745834 -0.3767383 0.5547519 0.4745834 -0.3951413 0.5547519 0.4745834 -0.4108177 0.5547519 0.4745834 -0.4244723 0.5547519 0.4745834 -0.4365675 0.5547519 0.4745834 -0.4474232 0.5547519 0.4745834 -0.45727 0.5547519 0.4745834 -0.4662797 0.5547519 0.4745834 -0.4745834 0.5547519 0.4745834 -0.4822838 0.5547519 0.4745834 -0.4894626 0.5547519 0.4745834 -0.4961862 0.5547519 0.4745834 -0.5025087 0.5547519 0.4745834 -0.5084753 0.5547519 0.4745834 -0.514124 0.5547519 0.4745834 -0.519487 0.5547519 0.4745834 -0.5245917 0.5547519 0.4745834 -0.529462 0.5547519 0.4745834 -0.5341183 0.5547519 0.4745834 -0.5385787 0.5547519 0.4745834 -0.5428591 0.5547519 0.4745834 -0.5469733 0.5547519 0.4745834 -0.5509339 0.5547519 0.4745834 -0.5547519 0.5547519 0.4745834 -0.5584371 0.5547519 0.4745834 -0.5619986 0.5547519 0.4745834 -0.5654443 0.5547519 0.4745834 -0.5687816 0.5547519 0.4745834 -0.092819 0.5584371 0.4745834 -0.2262531 0.5584371 0.4745834 -0.2875993 0.5584371 0.4745834 -0.3262122 0.5584371 0.4745834 -0.3544566 0.5584371 0.4745834 -0.3767383 0.5584371 0.4745834 -0.3951413 0.5584371 0.4745834 -0.4108177 0.5584371 0.4745834 -0.4244723 0.5584371 0.4745834 -0.4365675 0.5584371 0.4745834 -0.4474232 0.5584371 0.4745834 -0.45727 0.5584371 0.4745834 -0.4662797 0.5584371 0.4745834 -0.4745834 0.5584371 0.4745834 -0.4822838 0.5584371 0.4745834 -0.4894626 0.5584371 0.4745834 -0.4961862 0.5584371 0.4745834 -0.5025087 0.5584371 0.4745834 -0.5084753 0.5584371 0.4745834 -0.514124 0.5584371 0.4745834 -0.519487 0.5584371 0.4745834 -0.5245917 0.5584371 0.4745834 -0.529462 0.5584371 0.4745834 -0.5341183 0.5584371 0.4745834 -0.5385787 0.5584371 0.4745834 -0.5428591 0.5584371 0.4745834 -0.5469733 0.5584371 0.4745834 -0.5509339 0.5584371 0.4745834 -0.5547519 0.5584371 0.4745834 -0.5584371 0.5584371 0.4745834 -0.5619986 0.5584371 0.4745834 -0.5654443 0.5584371 0.4745834 -0.5687816 0.5584371 0.4745834 -0.092819 0.5619986 0.4745834 -0.2262531 0.5619986 0.4745834 -0.2875993 0.5619986 0.4745834 -0.3262122 0.5619986 0.4745834 -0.3544566 0.5619986 0.4745834 -0.3767383 0.5619986 0.4745834 -0.3951413 0.5619986 0.4745834 -0.4108177 0.5619986 0.4745834 -0.4244723 0.5619986 0.4745834 -0.4365675 0.5619986 0.4745834 -0.4474232 0.5619986 0.4745834 -0.45727 0.5619986 0.4745834 -0.4662797 0.5619986 0.4745834 -0.4745834 0.5619986 0.4745834 -0.4822838 0.5619986 0.4745834 -0.4894626 0.5619986 0.4745834 -0.4961862 0.5619986 0.4745834 -0.5025087 0.5619986 0.4745834 -0.5084753 0.5619986 0.4745834 -0.514124 0.5619986 0.4745834 -0.519487 0.5619986 0.4745834 -0.5245917 0.5619986 0.4745834 -0.529462 0.5619986 0.4745834 -0.5341183 0.5619986 0.4745834 -0.5385787 0.5619986 0.4745834 -0.5428591 0.5619986 0.4745834 -0.5469733 0.5619986 0.4745834 -0.5509339 0.5619986 0.4745834 -0.5547519 0.5619986 0.4745834 -0.5584371 0.5619986 0.4745834 -0.5619986 0.5619986 0.4745834 -0.5654443 0.5619986 0.4745834 -0.5687816 0.5619986 0.4745834 -0.092819 0.5654443 0.4745834 -0.2262531 0.5654443 0.4745834 -0.2875993 0.5654443 0.4745834 -0.3262122 0.5654443 0.4745834 -0.3544566 0.5654443 0.4745834 -0.3767383 0.5654443 0.4745834 -0.3951413 0.5654443 0.4745834 -0.4108177 0.5654443 0.4745834 -0.4244723 0.5654443 0.4745834 -0.4365675 0.5654443 0.4745834 -0.4474232 0.5654443 0.4745834 -0.45727 0.5654443 0.4745834 -0.4662797 0.5654443 0.4745834 -0.4745834 0.5654443 0.4745834 -0.4822838 0.5654443 0.4745834 -0.4894626 0.5654443 0.4745834 -0.4961862 0.5654443 0.4745834 -0.5025087 0.5654443 0.4745834 -0.5084753 0.5654443 0.4745834 -0.514124 0.5654443 0.4745834 -0.519487 0.5654443 0.4745834 -0.5245917 0.5654443 0.4745834 -0.529462 0.5654443 0.4745834 -0.5341183 0.5654443 0.4745834 -0.5385787 0.5654443 0.4745834 -0.5428591 0.5654443 0.4745834 -0.5469733 0.5654443 0.4745834 -0.5509339 0.5654443 0.4745834 -0.5547519 0.5654443 0.4745834 -0.5584371 0.5654443 0.4745834 -0.5619986 0.5654443 0.4745834 -0.5654443 0.5654443 0.4745834 -0.5687816 0.5654443 0.4745834 -0.092819 0.5687816 0.4745834 -0.2262531 0.5687816 0.4745834 -0.2875993 0.5687816 0.4745834 -0.3262122 0.5687816 0.4745834 -0.3544566 0.5687816 0.4745834 -0.3767383 0.5687816 0.4745834 -0.3951413 0.5687816 0.4745834 -0.4108177 0.5687816 0.4745834 -0.4244723 0.5687816 0.4745834 -0.4365675 0.5687816 0.4745834 -0.4474232 0.5687816 0.4745834 -0.45727 0.5687816 0.4745834 -0.4662797 0.5687816 0.4745834 -0.4745834 0.5687816 0.4745834 -0.4822838 0.5687816 0.4745834 -0.4894626 0.5687816 0.4745834 -0.4961862 0.5687816 0.4745834 -0.5025087 0.5687816 0.4745834 -0.5084753 0.5687816 0.4745834 -0.514124 0.5687816 0.4745834 -0.519487 0.5687816 0.4745834 -0.5245917 0.5687816 0.4745834 -0.529462 0.5687816 0.4745834 -0.5341183 0.5687816 0.4745834 -0.5385787 0.5687816 0.4745834 -0.5428591 0.5687816 0.4745834 -0.5469733 0.5687816 0.4745834 -0.5509339 0.5687816 0.4745834 -0.5547519 0.5687816 0.4745834 -0.5584371 0.5687816 0.4745834 -0.5619986 0.5687816 0.4745834 -0.5654443 0.5687816 0.4745834 -0.5687816 0.5687816 0.4745834 -0.092819 0.092819 0.4822838 -0.2262531 0.092819 0.4822838 -0.2875993 0.092819 0.4822838 -0.3262122 0.092819 0.4822838 -0.3544566 0.092819 0.4822838 -0.3767383 0.092819 0.4822838 -0.3951413 0.092819 0.4822838 -0.4108177 0.092819 0.4822838 -0.4244723 0.092819 0.4822838 -0.4365675 0.092819 0.4822838 -0.4474232 0.092819 0.4822838 -0.45727 0.092819 0.4822838 -0.4662797 0.092819 0.4822838 -0.4745834 0.092819 0.4822838 -0.4822838 0.092819 0.4822838 -0.4894626 0.092819 0.4822838 -0.4961862 0.092819 0.4822838 -0.5025087 0.092819 0.4822838 -0.5084753 0.092819 0.4822838 -0.514124 0.092819 0.4822838 -0.519487 0.092819 0.4822838 -0.5245917 0.092819 0.4822838 -0.529462 0.092819 0.4822838 -0.5341183 0.092819 0.4822838 -0.5385787 0.092819 0.4822838 -0.5428591 0.092819 0.4822838 -0.5469733 0.092819 0.4822838 -0.5509339 0.092819 0.4822838 -0.5547519 0.092819 0.4822838 -0.5584371 0.092819 0.4822838 -0.5619986 0.092819 0.4822838 -0.5654443 0.092819 0.4822838 -0.5687816 0.092819 0.4822838 -0.092819 0.2262531 0.4822838 -0.2262531 0.2262531 0.4822838 -0.2875993 0.2262531 0.4822838 -0.3262122 0.2262531 0.4822838 -0.3544566 0.2262531 0.4822838 -0.3767383 0.2262531 0.4822838 -0.3951413 0.2262531 0.4822838 -0.4108177 0.2262531 0.4822838 -0.4244723 0.2262531 0.4822838 -0.4365675 0.2262531 0.4822838 -0.4474232 0.2262531 0.4822838 -0.45727 0.2262531 0.4822838 -0.4662797 0.2262531 0.4822838 -0.4745834 0.2262531 0.4822838 -0.4822838 0.2262531 0.4822838 -0.4894626 0.2262531 0.4822838 -0.4961862 0.2262531 0.4822838 -0.5025087 0.2262531 0.4822838 -0.5084753 0.2262531 0.4822838 -0.514124 0.2262531 0.4822838 -0.519487 0.2262531 0.4822838 -0.5245917 0.2262531 0.4822838 -0.529462 0.2262531 0.4822838 -0.5341183 0.2262531 0.4822838 -0.5385787 0.2262531 0.4822838 -0.5428591 0.2262531 0.4822838 -0.5469733 0.2262531 0.4822838 -0.5509339 0.2262531 0.4822838 -0.5547519 0.2262531 0.4822838 -0.5584371 0.2262531 0.4822838 -0.5619986 0.2262531 0.4822838 -0.5654443 0.2262531 0.4822838 -0.5687816 0.2262531 0.4822838 -0.092819 0.2875993 0.4822838 -0.2262531 0.2875993 0.4822838 -0.2875993 0.2875993 0.4822838 -0.3262122 0.2875993 0.4822838 -0.3544566 0.2875993 0.4822838 -0.3767383 0.2875993 0.4822838 -0.3951413 0.2875993 0.4822838 -0.4108177 0.2875993 0.4822838 -0.4244723 0.2875993 0.4822838 -0.4365675 0.2875993 0.4822838 -0.4474232 0.2875993 0.4822838 -0.45727 0.2875993 0.4822838 -0.4662797 0.2875993 0.4822838 -0.4745834 0.2875993 0.4822838 -0.4822838 0.2875993 0.4822838 -0.4894626 0.2875993 0.4822838 -0.4961862 0.2875993 0.4822838 -0.5025087 0.2875993 0.4822838 -0.5084753 0.2875993 0.4822838 -0.514124 0.2875993 0.4822838 -0.519487 0.2875993 0.4822838 -0.5245917 0.2875993 0.4822838 -0.529462 0.2875993 0.4822838 -0.5341183 0.2875993 0.4822838 -0.5385787 0.2875993 0.4822838 -0.5428591 0.2875993 0.4822838 -0.5469733 0.2875993 0.4822838 -0.5509339 0.2875993 0.4822838 -0.5547519 0.2875993 0.4822838 -0.5584371 0.2875993 0.4822838 -0.5619986 0.2875993 0.4822838 -0.5654443 0.2875993 0.4822838 -0.5687816 0.2875993 0.4822838 -0.092819 0.3262122 0.4822838 -0.2262531 0.3262122 0.4822838 -0.2875993 0.3262122 0.4822838 -0.3262122 0.3262122 0.4822838 -0.3544566 0.3262122 0.4822838 -0.3767383 0.3262122 0.4822838 -0.3951413 0.3262122 0.4822838 -0.4108177 0.3262122 0.4822838 -0.4244723 0.3262122 0.4822838 -0.4365675 0.3262122 0.4822838 -0.4474232 0.3262122 0.4822838 -0.45727 0.3262122 0.4822838 -0.4662797 0.3262122 0.4822838 -0.4745834 0.3262122 0.4822838 -0.4822838 0.3262122 0.4822838 -0.4894626 0.3262122 0.4822838 -0.4961862 0.3262122 0.4822838 -0.5025087 0.3262122 0.4822838 -0.5084753 0.3262122 0.4822838 -0.514124 0.3262122 0.4822838 -0.519487 0.3262122 0.4822838 -0.5245917 0.3262122 0.4822838 -0.529462 0.3262122 0.4822838 -0.5341183 0.3262122 0.4822838 -0.5385787 0.3262122 0.4822838 -0.5428591 0.3262122 0.4822838 -0.5469733 0.3262122 0.4822838 -0.5509339 0.3262122 0.4822838 -0.5547519 0.3262122 0.4822838 -0.5584371 0.3262122 0.4822838 -0.5619986 0.3262122 0.4822838 -0.5654443 0.3262122 0.4822838 -0.5687816 0.3262122 0.4822838 -0.092819 0.3544566 0.4822838 -0.2262531 0.3544566 0.4822838 -0.2875993 0.3544566 0.4822838 -0.3262122 0.3544566 0.4822838 -0.3544566 0.3544566 0.4822838 -0.3767383 0.3544566 0.4822838 -0.3951413 0.3544566 0.4822838 -0.4108177 0.3544566 0.4822838 -0.4244723 0.3544566 0.4822838 -0.4365675 0.3544566 0.4822838 -0.4474232 0.3544566 0.4822838 -0.45727 0.3544566 0.4822838 -0.4662797 0.3544566 0.4822838 -0.4745834 0.3544566 0.4822838 -0.4822838 0.3544566 0.4822838 -0.4894626 0.3544566 0.4822838 -0.4961862 0.3544566 0.4822838 -0.5025087 0.3544566 0.4822838 -0.5084753 0.3544566 0.4822838 -0.514124 0.3544566 0.4822838 -0.519487 0.3544566 0.4822838 -0.5245917 0.3544566 0.4822838 -0.529462 0.3544566 0.4822838 -0.5341183 0.3544566 0.4822838 -0.5385787 0.3544566 0.4822838 -0.5428591 0.3544566 0.4822838 -0.5469733 0.3544566 0.4822838 -0.5509339 0.3544566 0.4822838 -0.5547519 0.3544566 0.4822838 -0.5584371 0.3544566 0.4822838 -0.5619986 0.3544566 0.4822838 -0.5654443 0.3544566 0.4822838 -0.5687816 0.3544566 0.4822838 -0.092819 0.3767383 0.4822838 -0.2262531 0.3767383 0.4822838 -0.2875993 0.3767383 0.4822838 -0.3262122 0.3767383 0.4822838 -0.3544566 0.3767383 0.4822838 -0.3767383 0.3767383 0.4822838 -0.3951413 0.3767383 0.4822838 -0.4108177 0.3767383 0.4822838 -0.4244723 0.3767383 0.4822838 -0.4365675 0.3767383 0.4822838 -0.4474232 0.3767383 0.4822838 -0.45727 0.3767383 0.4822838 -0.4662797 0.3767383 0.4822838 -0.4745834 0.3767383 0.4822838 -0.4822838 0.3767383 0.4822838 -0.4894626 0.3767383 0.4822838 -0.4961862 0.3767383 0.4822838 -0.5025087 0.3767383 0.4822838 -0.5084753 0.3767383 0.4822838 -0.514124 0.3767383 0.4822838 -0.519487 0.3767383 0.4822838 -0.5245917 0.3767383 0.4822838 -0.529462 0.3767383 0.4822838 -0.5341183 0.3767383 0.4822838 -0.5385787 0.3767383 0.4822838 -0.5428591 0.3767383 0.4822838 -0.5469733 0.3767383 0.4822838 -0.5509339 0.3767383 0.4822838 -0.5547519 0.3767383 0.4822838 -0.5584371 0.3767383 0.4822838 -0.5619986 0.3767383 0.4822838 -0.5654443 0.3767383 0.4822838 -0.5687816 0.3767383 0.4822838 -0.092819 0.3951413 0.4822838 -0.2262531 0.3951413 0.4822838 -0.2875993 0.3951413 0.4822838 -0.3262122 0.3951413 0.4822838 -0.3544566 0.3951413 0.4822838 -0.3767383 0.3951413 0.4822838 -0.3951413 0.3951413 0.4822838 -0.4108177 0.3951413 0.4822838 -0.4244723 0.3951413 0.4822838 -0.4365675 0.3951413 0.4822838 -0.4474232 0.3951413 0.4822838 -0.45727 0.3951413 0.4822838 -0.4662797 0.3951413 0.4822838 -0.4745834 0.3951413 0.4822838 -0.4822838 0.3951413 0.4822838 -0.4894626 0.3951413 0.4822838 -0.4961862 0.3951413 0.4822838 -0.5025087 0.3951413 0.4822838 -0.5084753 0.3951413 0.4822838 -0.514124 0.3951413 0.4822838 -0.519487 0.3951413 0.4822838 -0.5245917 0.3951413 0.4822838 -0.529462 0.3951413 0.4822838 -0.5341183 0.3951413 0.4822838 -0.5385787 0.3951413 0.4822838 -0.5428591 0.3951413 0.4822838 -0.5469733 0.3951413 0.4822838 -0.5509339 0.3951413 0.4822838 -0.5547519 0.3951413 0.4822838 -0.5584371 0.3951413 0.4822838 -0.5619986 0.3951413 0.4822838 -0.5654443 0.3951413 0.4822838 -0.5687816 0.3951413 0.4822838 -0.092819 0.4108177 0.4822838 -0.2262531 0.4108177 0.4822838 -0.2875993 0.4108177 0.4822838 -0.3262122 0.4108177 0.4822838 -0.3544566 0.4108177 0.4822838 -0.3767383 0.4108177 0.4822838 -0.3951413 0.4108177 0.4822838 -0.4108177 0.4108177 0.4822838 -0.4244723 0.4108177 0.4822838 -0.4365675 0.4108177 0.4822838 -0.4474232 0.4108177 0.4822838 -0.45727 0.4108177 0.4822838 -0.4662797 0.4108177 0.4822838 -0.4745834 0.4108177 0.4822838 -0.4822838 0.4108177 0.4822838 -0.4894626 0.4108177 0.4822838 -0.4961862 0.4108177 0.4822838 -0.5025087 0.4108177 0.4822838 -0.5084753 0.4108177 0.4822838 -0.514124 0.4108177 0.4822838 -0.519487 0.4108177 0.4822838 -0.5245917 0.4108177 0.4822838 -0.529462 0.4108177 0.4822838 -0.5341183 0.4108177 0.4822838 -0.5385787 0.4108177 0.4822838 -0.5428591 0.4108177 0.4822838 -0.5469733 0.4108177 0.4822838 -0.5509339 0.4108177 0.4822838 -0.5547519 0.4108177 0.4822838 -0.5584371 0.4108177 0.4822838 -0.5619986 0.4108177 0.4822838 -0.5654443 0.4108177 0.4822838 -0.5687816 0.4108177 0.4822838 -0.092819 0.4244723 0.4822838 -0.2262531 0.4244723 0.4822838 -0.2875993 0.4244723 0.4822838 -0.3262122 0.4244723 0.4822838 -0.3544566 0.4244723 0.4822838 -0.3767383 0.4244723 0.4822838 -0.3951413 0.4244723 0.4822838 -0.4108177 0.4244723 0.4822838 -0.4244723 0.4244723 0.4822838 -0.4365675 0.4244723 0.4822838 -0.4474232 0.4244723 0.4822838 -0.45727 0.4244723 0.4822838 -0.4662797 0.4244723 0.4822838 -0.4745834 0.4244723 0.4822838 -0.4822838 0.4244723 0.4822838 -0.4894626 0.4244723 0.4822838 -0.4961862 0.4244723 0.4822838 -0.5025087 0.4244723 0.4822838 -0.5084753 0.4244723 0.4822838 -0.514124 0.4244723 0.4822838 -0.519487 0.4244723 0.4822838 -0.5245917 0.4244723 0.4822838 -0.529462 0.4244723 0.4822838 -0.5341183 0.4244723 0.4822838 -0.5385787 0.4244723 0.4822838 -0.5428591 0.4244723 0.4822838 -0.5469733 0.4244723 0.4822838 -0.5509339 0.4244723 0.4822838 -0.5547519 0.4244723 0.4822838 -0.5584371 0.4244723 0.4822838 -0.5619986 0.4244723 0.4822838 -0.5654443 0.4244723 0.4822838 -0.5687816 0.4244723 0.4822838 -0.092819 0.4365675 0.4822838 -0.2262531 0.4365675 0.4822838 -0.2875993 0.4365675 0.4822838 -0.3262122 0.4365675 0.4822838 -0.3544566 0.4365675 0.4822838 -0.3767383 0.4365675 0.4822838 -0.3951413 0.4365675 0.4822838 -0.4108177 0.4365675 0.4822838 -0.4244723 0.4365675 0.4822838 -0.4365675 0.4365675 0.4822838 -0.4474232 0.4365675 0.4822838 -0.45727 0.4365675 0.4822838 -0.4662797 0.4365675 0.4822838 -0.4745834 0.4365675 0.4822838 -0.4822838 0.4365675 0.4822838 -0.4894626 0.4365675 0.4822838 -0.4961862 0.4365675 0.4822838 -0.5025087 0.4365675 0.4822838 -0.5084753 0.4365675 0.4822838 -0.514124 0.4365675 0.4822838 -0.519487 0.4365675 0.4822838 -0.5245917 0.4365675 0.4822838 -0.529462 0.4365675 0.4822838 -0.5341183 0.4365675 0.4822838 -0.5385787 0.4365675 0.4822838 -0.5428591 0.4365675 0.4822838 -0.5469733 0.4365675 0.4822838 -0.5509339 0.4365675 0.4822838 -0.5547519 0.4365675 0.4822838 -0.5584371 0.4365675 0.4822838 -0.5619986 0.4365675 0.4822838 -0.5654443 0.4365675 0.4822838 -0.5687816 0.4365675 0.4822838 -0.092819 0.4474232 0.4822838 -0.2262531 0.4474232 0.4822838 -0.2875993 0.4474232 0.4822838 -0.3262122 0.4474232 0.4822838 -0.3544566 0.4474232 0.4822838 -0.3767383 0.4474232 0.4822838 -0.3951413 0.4474232 0.4822838 -0.4108177 0.4474232 0.4822838 -0.4244723 0.4474232 0.4822838 -0.4365675 0.4474232 0.4822838 -0.4474232 0.4474232 0.4822838 -0.45727 0.4474232 0.4822838 -0.4662797 0.4474232 0.4822838 -0.4745834 0.4474232 0.4822838 -0.4822838 0.4474232 0.4822838 -0.4894626 0.4474232 0.4822838 -0.4961862 0.4474232 0.4822838 -0.5025087 0.4474232 0.4822838 -0.5084753 0.4474232 0.4822838 -0.514124 0.4474232 0.4822838 -0.519487 0.4474232 0.4822838 -0.5245917 0.4474232 0.4822838 -0.529462 0.4474232 0.4822838 -0.5341183 0.4474232 0.4822838 -0.5385787 0.4474232 0.4822838 -0.5428591 0.4474232 0.4822838 -0.5469733 0.4474232 0.4822838 -0.5509339 0.4474232 0.4822838 -0.5547519 0.4474232 0.4822838 -0.5584371 0.4474232 0.4822838 -0.5619986 0.4474232 0.4822838 -0.5654443 0.4474232 0.4822838 -0.5687816 0.4474232 0.4822838 -0.092819 0.45727 0.4822838 -0.2262531 0.45727 0.4822838 -0.2875993 0.45727 0.4822838 -0.3262122 0.45727 0.4822838 -0.3544566 0.45727 0.4822838 -0.3767383 0.45727 0.4822838 -0.3951413 0.45727 0.4822838 -0.4108177 0.45727 0.4822838 -0.4244723 0.45727 0.4822838 -0.4365675 0.45727 0.4822838 -0.4474232 0.45727 0.4822838 -0.45727 0.45727 0.4822838 -0.4662797 0.45727 0.4822838 -0.4745834 0.45727 0.4822838 -0.4822838 0.45727 0.4822838 -0.4894626 0.45727 0.4822838 -0.4961862 0.45727 0.4822838 -0.5025087 0.45727 0.4822838 -0.5084753 0.45727 0.4822838 -0.514124 0.45727 0.4822838 -0.519487 0.45727 0.4822838 -0.5245917 0.45727 0.4822838 -0.529462 0.45727 0.4822838 -0.5341183 0.45727 0.4822838 -0.5385787 0.45727 0.4822838 -0.5428591 0.45727 0.4822838 -0.5469733 0.45727 0.4822838 -0.5509339 0.45727 0.4822838 -0.5547519 0.45727 0.4822838 -0.5584371 0.45727 0.4822838 -0.5619986 0.45727 0.4822838 -0.5654443 0.45727 0.4822838 -0.5687816 0.45727 0.4822838 -0.092819 0.4662797 0.4822838 -0.2262531 0.4662797 0.4822838 -0.2875993 0.4662797 0.4822838 -0.3262122 0.4662797 0.4822838 -0.3544566 0.4662797 0.4822838 -0.3767383 0.4662797 0.4822838 -0.3951413 0.4662797 0.4822838 -0.4108177 0.4662797 0.4822838 -0.4244723 0.4662797 0.4822838 -0.4365675 0.4662797 0.4822838 -0.4474232 0.4662797 0.4822838 -0.45727 0.4662797 0.4822838 -0.4662797 0.4662797 0.4822838 -0.4745834 0.4662797 0.4822838 -0.4822838 0.4662797 0.4822838 -0.4894626 0.4662797 0.4822838 -0.4961862 0.4662797 0.4822838 -0.5025087 0.4662797 0.4822838 -0.5084753 0.4662797 0.4822838 -0.514124 0.4662797 0.4822838 -0.519487 0.4662797 0.4822838 -0.5245917 0.4662797 0.4822838 -0.529462 0.4662797 0.4822838 -0.5341183 0.4662797 0.4822838 -0.5385787 0.4662797 0.4822838 -0.5428591 0.4662797 0.4822838 -0.5469733 0.4662797 0.4822838 -0.5509339 0.4662797 0.4822838 -0.5547519 0.4662797 0.4822838 -0.5584371 0.4662797 0.4822838 -0.5619986 0.4662797 0.4822838 -0.5654443 0.4662797 0.4822838 -0.5687816 0.4662797 0.4822838 -0.092819 0.4745834 0.4822838 -0.2262531 0.4745834 0.4822838 -0.2875993 0.4745834 0.4822838 -0.3262122 0.4745834 0.4822838 -0.3544566 0.4745834 0.4822838 -0.3767383 0.4745834 0.4822838 -0.3951413 0.4745834 0.4822838 -0.4108177 0.4745834 0.4822838 -0.4244723 0.4745834 0.4822838 -0.4365675 0.4745834 0.4822838 -0.4474232 0.4745834 0.4822838 -0.45727 0.4745834 0.4822838 -0.4662797 0.4745834 0.4822838 -0.4745834 0.4745834 0.4822838 -0.4822838 0.4745834 0.4822838 -0.4894626 0.4745834 0.4822838 -0.4961862 0.4745834 0.4822838 -0.5025087 0.4745834 0.4822838 -0.5084753 0.4745834 0.4822838 -0.514124 0.4745834 0.4822838 -0.519487 0.4745834 0.4822838 -0.5245917 0.4745834 0.4822838 -0.529462 0.4745834 0.4822838 -0.5341183 0.4745834 0.4822838 -0.5385787 0.4745834 0.4822838 -0.5428591 0.4745834 0.4822838 -0.5469733 0.4745834 0.4822838 -0.5509339 0.4745834 0.4822838 -0.5547519 0.4745834 0.4822838 -0.5584371 0.4745834 0.4822838 -0.5619986 0.4745834 0.4822838 -0.5654443 0.4745834 0.4822838 -0.5687816 0.4745834 0.4822838 -0.092819 0.4822838 0.4822838 -0.2262531 0.4822838 0.4822838 -0.2875993 0.4822838 0.4822838 -0.3262122 0.4822838 0.4822838 -0.3544566 0.4822838 0.4822838 -0.3767383 0.4822838 0.4822838 -0.3951413 0.4822838 0.4822838 -0.4108177 0.4822838 0.4822838 -0.4244723 0.4822838 0.4822838 -0.4365675 0.4822838 0.4822838 -0.4474232 0.4822838 0.4822838 -0.45727 0.4822838 0.4822838 -0.4662797 0.4822838 0.4822838 -0.4745834 0.4822838 0.4822838 -0.4822838 0.4822838 0.4822838 -0.4894626 0.4822838 0.4822838 -0.4961862 0.4822838 0.4822838 -0.5025087 0.4822838 0.4822838 -0.5084753 0.4822838 0.4822838 -0.514124 0.4822838 0.4822838 -0.519487 0.4822838 0.4822838 -0.5245917 0.4822838 0.4822838 -0.529462 0.4822838 0.4822838 -0.5341183 0.4822838 0.4822838 -0.5385787 0.4822838 0.4822838 -0.5428591 0.4822838 0.4822838 -0.5469733 0.4822838 0.4822838 -0.5509339 0.4822838 0.4822838 -0.5547519 0.4822838 0.4822838 -0.5584371 0.4822838 0.4822838 -0.5619986 0.4822838 0.4822838 -0.5654443 0.4822838 0.4822838 -0.5687816 0.4822838 0.4822838 -0.092819 0.4894626 0.4822838 -0.2262531 0.4894626 0.4822838 -0.2875993 0.4894626 0.4822838 -0.3262122 0.4894626 0.4822838 -0.3544566 0.4894626 0.4822838 -0.3767383 0.4894626 0.4822838 -0.3951413 0.4894626 0.4822838 -0.4108177 0.4894626 0.4822838 -0.4244723 0.4894626 0.4822838 -0.4365675 0.4894626 0.4822838 -0.4474232 0.4894626 0.4822838 -0.45727 0.4894626 0.4822838 -0.4662797 0.4894626 0.4822838 -0.4745834 0.4894626 0.4822838 -0.4822838 0.4894626 0.4822838 -0.4894626 0.4894626 0.4822838 -0.4961862 0.4894626 0.4822838 -0.5025087 0.4894626 0.4822838 -0.5084753 0.4894626 0.4822838 -0.514124 0.4894626 0.4822838 -0.519487 0.4894626 0.4822838 -0.5245917 0.4894626 0.4822838 -0.529462 0.4894626 0.4822838 -0.5341183 0.4894626 0.4822838 -0.5385787 0.4894626 0.4822838 -0.5428591 0.4894626 0.4822838 -0.5469733 0.4894626 0.4822838 -0.5509339 0.4894626 0.4822838 -0.5547519 0.4894626 0.4822838 -0.5584371 0.4894626 0.4822838 -0.5619986 0.4894626 0.4822838 -0.5654443 0.4894626 0.4822838 -0.5687816 0.4894626 0.4822838 -0.092819 0.4961862 0.4822838 -0.2262531 0.4961862 0.4822838 -0.2875993 0.4961862 0.4822838 -0.3262122 0.4961862 0.4822838 -0.3544566 0.4961862 0.4822838 -0.3767383 0.4961862 0.4822838 -0.3951413 0.4961862 0.4822838 -0.4108177 0.4961862 0.4822838 -0.4244723 0.4961862 0.4822838 -0.4365675 0.4961862 0.4822838 -0.4474232 0.4961862 0.4822838 -0.45727 0.4961862 0.4822838 -0.4662797 0.4961862 0.4822838 -0.4745834 0.4961862 0.4822838 -0.4822838 0.4961862 0.4822838 -0.4894626 0.4961862 0.4822838 -0.4961862 0.4961862 0.4822838 -0.5025087 0.4961862 0.4822838 -0.5084753 0.4961862 0.4822838 -0.514124 0.4961862 0.4822838 -0.519487 0.4961862 0.4822838 -0.5245917 0.4961862 0.4822838 -0.529462 0.4961862 0.4822838 -0.5341183 0.4961862 0.4822838 -0.5385787 0.4961862 0.4822838 -0.5428591 0.4961862 0.4822838 -0.5469733 0.4961862 0.4822838 -0.5509339 0.4961862 0.4822838 -0.5547519 0.4961862 0.4822838 -0.5584371 0.4961862 0.4822838 -0.5619986 0.4961862 0.4822838 -0.5654443 0.4961862 0.4822838 -0.5687816 0.4961862 0.4822838 -0.092819 0.5025087 0.4822838 -0.2262531 0.5025087 0.4822838 -0.2875993 0.5025087 0.4822838 -0.3262122 0.5025087 0.4822838 -0.3544566 0.5025087 0.4822838 -0.3767383 0.5025087 0.4822838 -0.3951413 0.5025087 0.4822838 -0.4108177 0.5025087 0.4822838 -0.4244723 0.5025087 0.4822838 -0.4365675 0.5025087 0.4822838 -0.4474232 0.5025087 0.4822838 -0.45727 0.5025087 0.4822838 -0.4662797 0.5025087 0.4822838 -0.4745834 0.5025087 0.4822838 -0.4822838 0.5025087 0.4822838 -0.4894626 0.5025087 0.4822838 -0.4961862 0.5025087 0.4822838 -0.5025087 0.5025087 0.4822838 -0.5084753 0.5025087 0.4822838 -0.514124 0.5025087 0.4822838 -0.519487 0.5025087 0.4822838 -0.5245917 0.5025087 0.4822838 -0.529462 0.5025087 0.4822838 -0.5341183 0.5025087 0.4822838 -0.5385787 0.5025087 0.4822838 -0.5428591 0.5025087 0.4822838 -0.5469733 0.5025087 0.4822838 -0.5509339 0.5025087 0.4822838 -0.5547519 0.5025087 0.4822838 -0.5584371 0.5025087 0.4822838 -0.5619986 0.5025087 0.4822838 -0.5654443 0.5025087 0.4822838 -0.5687816 0.5025087 0.4822838 -0.092819 0.5084753 0.4822838 -0.2262531 0.5084753 0.4822838 -0.2875993 0.5084753 0.4822838 -0.3262122 0.5084753 0.4822838 -0.3544566 0.5084753 0.4822838 -0.3767383 0.5084753 0.4822838 -0.3951413 0.5084753 0.4822838 -0.4108177 0.5084753 0.4822838 -0.4244723 0.5084753 0.4822838 -0.4365675 0.5084753 0.4822838 -0.4474232 0.5084753 0.4822838 -0.45727 0.5084753 0.4822838 -0.4662797 0.5084753 0.4822838 -0.4745834 0.5084753 0.4822838 -0.4822838 0.5084753 0.4822838 -0.4894626 0.5084753 0.4822838 -0.4961862 0.5084753 0.4822838 -0.5025087 0.5084753 0.4822838 -0.5084753 0.5084753 0.4822838 -0.514124 0.5084753 0.4822838 -0.519487 0.5084753 0.4822838 -0.5245917 0.5084753 0.4822838 -0.529462 0.5084753 0.4822838 -0.5341183 0.5084753 0.4822838 -0.5385787 0.5084753 0.4822838 -0.5428591 0.5084753 0.4822838 -0.5469733 0.5084753 0.4822838 -0.5509339 0.5084753 0.4822838 -0.5547519 0.5084753 0.4822838 -0.5584371 0.5084753 0.4822838 -0.5619986 0.5084753 0.4822838 -0.5654443 0.5084753 0.4822838 -0.5687816 0.5084753 0.4822838 -0.092819 0.514124 0.4822838 -0.2262531 0.514124 0.4822838 -0.2875993 0.514124 0.4822838 -0.3262122 0.514124 0.4822838 -0.3544566 0.514124 0.4822838 -0.3767383 0.514124 0.4822838 -0.3951413 0.514124 0.4822838 -0.4108177 0.514124 0.4822838 -0.4244723 0.514124 0.4822838 -0.4365675 0.514124 0.4822838 -0.4474232 0.514124 0.4822838 -0.45727 0.514124 0.4822838 -0.4662797 0.514124 0.4822838 -0.4745834 0.514124 0.4822838 -0.4822838 0.514124 0.4822838 -0.4894626 0.514124 0.4822838 -0.4961862 0.514124 0.4822838 -0.5025087 0.514124 0.4822838 -0.5084753 0.514124 0.4822838 -0.514124 0.514124 0.4822838 -0.519487 0.514124 0.4822838 -0.5245917 0.514124 0.4822838 -0.529462 0.514124 0.4822838 -0.5341183 0.514124 0.4822838 -0.5385787 0.514124 0.4822838 -0.5428591 0.514124 0.4822838 -0.5469733 0.514124 0.4822838 -0.5509339 0.514124 0.4822838 -0.5547519 0.514124 0.4822838 -0.5584371 0.514124 0.4822838 -0.5619986 0.514124 0.4822838 -0.5654443 0.514124 0.4822838 -0.5687816 0.514124 0.4822838 -0.092819 0.519487 0.4822838 -0.2262531 0.519487 0.4822838 -0.2875993 0.519487 0.4822838 -0.3262122 0.519487 0.4822838 -0.3544566 0.519487 0.4822838 -0.3767383 0.519487 0.4822838 -0.3951413 0.519487 0.4822838 -0.4108177 0.519487 0.4822838 -0.4244723 0.519487 0.4822838 -0.4365675 0.519487 0.4822838 -0.4474232 0.519487 0.4822838 -0.45727 0.519487 0.4822838 -0.4662797 0.519487 0.4822838 -0.4745834 0.519487 0.4822838 -0.4822838 0.519487 0.4822838 -0.4894626 0.519487 0.4822838 -0.4961862 0.519487 0.4822838 -0.5025087 0.519487 0.4822838 -0.5084753 0.519487 0.4822838 -0.514124 0.519487 0.4822838 -0.519487 0.519487 0.4822838 -0.5245917 0.519487 0.4822838 -0.529462 0.519487 0.4822838 -0.5341183 0.519487 0.4822838 -0.5385787 0.519487 0.4822838 -0.5428591 0.519487 0.4822838 -0.5469733 0.519487 0.4822838 -0.5509339 0.519487 0.4822838 -0.5547519 0.519487 0.4822838 -0.5584371 0.519487 0.4822838 -0.5619986 0.519487 0.4822838 -0.5654443 0.519487 0.4822838 -0.5687816 0.519487 0.4822838 -0.092819 0.5245917 0.4822838 -0.2262531 0.5245917 0.4822838 -0.2875993 0.5245917 0.4822838 -0.3262122 0.5245917 0.4822838 -0.3544566 0.5245917 0.4822838 -0.3767383 0.5245917 0.4822838 -0.3951413 0.5245917 0.4822838 -0.4108177 0.5245917 0.4822838 -0.4244723 0.5245917 0.4822838 -0.4365675 0.5245917 0.4822838 -0.4474232 0.5245917 0.4822838 -0.45727 0.5245917 0.4822838 -0.4662797 0.5245917 0.4822838 -0.4745834 0.5245917 0.4822838 -0.4822838 0.5245917 0.4822838 -0.4894626 0.5245917 0.4822838 -0.4961862 0.5245917 0.4822838 -0.5025087 0.5245917 0.4822838 -0.5084753 0.5245917 0.4822838 -0.514124 0.5245917 0.4822838 -0.519487 0.5245917 0.4822838 -0.5245917 0.5245917 0.4822838 -0.529462 0.5245917 0.4822838 -0.5341183 0.5245917 0.4822838 -0.5385787 0.5245917 0.4822838 -0.5428591 0.5245917 0.4822838 -0.5469733 0.5245917 0.4822838 -0.5509339 0.5245917 0.4822838 -0.5547519 0.5245917 0.4822838 -0.5584371 0.5245917 0.4822838 -0.5619986 0.5245917 0.4822838 -0.5654443 0.5245917 0.4822838 -0.5687816 0.5245917 0.4822838 -0.092819 0.529462 0.4822838 -0.2262531 0.529462 0.4822838 -0.2875993 0.529462 0.4822838 -0.3262122 0.529462 0.4822838 -0.3544566 0.529462 0.4822838 -0.3767383 0.529462 0.4822838 -0.3951413 0.529462 0.4822838 -0.4108177 0.529462 0.4822838 -0.4244723 0.529462 0.4822838 -0.4365675 0.529462 0.4822838 -0.4474232 0.529462 0.4822838 -0.45727 0.529462 0.4822838 -0.4662797 0.529462 0.4822838 -0.4745834 0.529462 0.4822838 -0.4822838 0.529462 0.4822838 -0.4894626 0.529462 0.4822838 -0.4961862 0.529462 0.4822838 -0.5025087 0.529462 0.4822838 -0.5084753 0.529462 0.4822838 -0.514124 0.529462 0.4822838 -0.519487 0.529462 0.4822838 -0.5245917 0.529462 0.4822838 -0.529462 0.529462 0.4822838 -0.5341183 0.529462 0.4822838 -0.5385787 0.529462 0.4822838 -0.5428591 0.529462 0.4822838 -0.5469733 0.529462 0.4822838 -0.5509339 0.529462 0.4822838 -0.5547519 0.529462 0.4822838 -0.5584371 0.529462 0.4822838 -0.5619986 0.529462 0.4822838 -0.5654443 0.529462 0.4822838 -0.5687816 0.529462 0.4822838 -0.092819 0.5341183 0.4822838 -0.2262531 0.5341183 0.4822838 -0.2875993 0.5341183 0.4822838 -0.3262122 0.5341183 0.4822838 -0.3544566 0.5341183 0.4822838 -0.3767383 0.5341183 0.4822838 -0.3951413 0.5341183 0.4822838 -0.4108177 0.5341183 0.4822838 -0.4244723 0.5341183 0.4822838 -0.4365675 0.5341183 0.4822838 -0.4474232 0.5341183 0.4822838 -0.45727 0.5341183 0.4822838 -0.4662797 0.5341183 0.4822838 -0.4745834 0.5341183 0.4822838 -0.4822838 0.5341183 0.4822838 -0.4894626 0.5341183 0.4822838 -0.4961862 0.5341183 0.4822838 -0.5025087 0.5341183 0.4822838 -0.5084753 0.5341183 0.4822838 -0.514124 0.5341183 0.4822838 -0.519487 0.5341183 0.4822838 -0.5245917 0.5341183 0.4822838 -0.529462 0.5341183 0.4822838 -0.5341183 0.5341183 0.4822838 -0.5385787 0.5341183 0.4822838 -0.5428591 0.5341183 0.4822838 -0.5469733 0.5341183 0.4822838 -0.5509339 0.5341183 0.4822838 -0.5547519 0.5341183 0.4822838 -0.5584371 0.5341183 0.4822838 -0.5619986 0.5341183 0.4822838 -0.5654443 0.5341183 0.4822838 -0.5687816 0.5341183 0.4822838 -0.092819 0.5385787 0.4822838 -0.2262531 0.5385787 0.4822838 -0.2875993 0.5385787 0.4822838 -0.3262122 0.5385787 0.4822838 -0.3544566 0.5385787 0.4822838 -0.3767383 0.5385787 0.4822838 -0.3951413 0.5385787 0.4822838 -0.4108177 0.5385787 0.4822838 -0.4244723 0.5385787 0.4822838 -0.4365675 0.5385787 0.4822838 -0.4474232 0.5385787 0.4822838 -0.45727 0.5385787 0.4822838 -0.4662797 0.5385787 0.4822838 -0.4745834 0.5385787 0.4822838 -0.4822838 0.5385787 0.4822838 -0.4894626 0.5385787 0.4822838 -0.4961862 0.5385787 0.4822838 -0.5025087 0.5385787 0.4822838 -0.5084753 0.5385787 0.4822838 -0.514124 0.5385787 0.4822838 -0.519487 0.5385787 0.4822838 -0.5245917 0.5385787 0.4822838 -0.529462 0.5385787 0.4822838 -0.5341183 0.5385787 0.4822838 -0.5385787 0.5385787 0.4822838 -0.5428591 0.5385787 0.4822838 -0.5469733 0.5385787 0.4822838 -0.5509339 0.5385787 0.4822838 -0.5547519 0.5385787 0.4822838 -0.5584371 0.5385787 0.4822838 -0.5619986 0.5385787 0.4822838 -0.5654443 0.5385787 0.4822838 -0.5687816 0.5385787 0.4822838 -0.092819 0.5428591 0.4822838 -0.2262531 0.5428591 0.4822838 -0.2875993 0.5428591 0.4822838 -0.3262122 0.5428591 0.4822838 -0.3544566 0.5428591 0.4822838 -0.3767383 0.5428591 0.4822838 -0.3951413 0.5428591 0.4822838 -0.4108177 0.5428591 0.4822838 -0.4244723 0.5428591 0.4822838 -0.4365675 0.5428591 0.4822838 -0.4474232 0.5428591 0.4822838 -0.45727 0.5428591 0.4822838 -0.4662797 0.5428591 0.4822838 -0.4745834 0.5428591 0.4822838 -0.4822838 0.5428591 0.4822838 -0.4894626 0.5428591 0.4822838 -0.4961862 0.5428591 0.4822838 -0.5025087 0.5428591 0.4822838 -0.5084753 0.5428591 0.4822838 -0.514124 0.5428591 0.4822838 -0.519487 0.5428591 0.4822838 -0.5245917 0.5428591 0.4822838 -0.529462 0.5428591 0.4822838 -0.5341183 0.5428591 0.4822838 -0.5385787 0.5428591 0.4822838 -0.5428591 0.5428591 0.4822838 -0.5469733 0.5428591 0.4822838 -0.5509339 0.5428591 0.4822838 -0.5547519 0.5428591 0.4822838 -0.5584371 0.5428591 0.4822838 -0.5619986 0.5428591 0.4822838 -0.5654443 0.5428591 0.4822838 -0.5687816 0.5428591 0.4822838 -0.092819 0.5469733 0.4822838 -0.2262531 0.5469733 0.4822838 -0.2875993 0.5469733 0.4822838 -0.3262122 0.5469733 0.4822838 -0.3544566 0.5469733 0.4822838 -0.3767383 0.5469733 0.4822838 -0.3951413 0.5469733 0.4822838 -0.4108177 0.5469733 0.4822838 -0.4244723 0.5469733 0.4822838 -0.4365675 0.5469733 0.4822838 -0.4474232 0.5469733 0.4822838 -0.45727 0.5469733 0.4822838 -0.4662797 0.5469733 0.4822838 -0.4745834 0.5469733 0.4822838 -0.4822838 0.5469733 0.4822838 -0.4894626 0.5469733 0.4822838 -0.4961862 0.5469733 0.4822838 -0.5025087 0.5469733 0.4822838 -0.5084753 0.5469733 0.4822838 -0.514124 0.5469733 0.4822838 -0.519487 0.5469733 0.4822838 -0.5245917 0.5469733 0.4822838 -0.529462 0.5469733 0.4822838 -0.5341183 0.5469733 0.4822838 -0.5385787 0.5469733 0.4822838 -0.5428591 0.5469733 0.4822838 -0.5469733 0.5469733 0.4822838 -0.5509339 0.5469733 0.4822838 -0.5547519 0.5469733 0.4822838 -0.5584371 0.5469733 0.4822838 -0.5619986 0.5469733 0.4822838 -0.5654443 0.5469733 0.4822838 -0.5687816 0.5469733 0.4822838 -0.092819 0.5509339 0.4822838 -0.2262531 0.5509339 0.4822838 -0.2875993 0.5509339 0.4822838 -0.3262122 0.5509339 0.4822838 -0.3544566 0.5509339 0.4822838 -0.3767383 0.5509339 0.4822838 -0.3951413 0.5509339 0.4822838 -0.4108177 0.5509339 0.4822838 -0.4244723 0.5509339 0.4822838 -0.4365675 0.5509339 0.4822838 -0.4474232 0.5509339 0.4822838 -0.45727 0.5509339 0.4822838 -0.4662797 0.5509339 0.4822838 -0.4745834 0.5509339 0.4822838 -0.4822838 0.5509339 0.4822838 -0.4894626 0.5509339 0.4822838 -0.4961862 0.5509339 0.4822838 -0.5025087 0.5509339 0.4822838 -0.5084753 0.5509339 0.4822838 -0.514124 0.5509339 0.4822838 -0.519487 0.5509339 0.4822838 -0.5245917 0.5509339 0.4822838 -0.529462 0.5509339 0.4822838 -0.5341183 0.5509339 0.4822838 -0.5385787 0.5509339 0.4822838 -0.5428591 0.5509339 0.4822838 -0.5469733 0.5509339 0.4822838 -0.5509339 0.5509339 0.4822838 -0.5547519 0.5509339 0.4822838 -0.5584371 0.5509339 0.4822838 -0.5619986 0.5509339 0.4822838 -0.5654443 0.5509339 0.4822838 -0.5687816 0.5509339 0.4822838 -0.092819 0.5547519 0.4822838 -0.2262531 0.5547519 0.4822838 -0.2875993 0.5547519 0.4822838 -0.3262122 0.5547519 0.4822838 -0.3544566 0.5547519 0.4822838 -0.3767383 0.5547519 0.4822838 -0.3951413 0.5547519 0.4822838 -0.4108177 0.5547519 0.4822838 -0.4244723 0.5547519 0.4822838 -0.4365675 0.5547519 0.4822838 -0.4474232 0.5547519 0.4822838 -0.45727 0.5547519 0.4822838 -0.4662797 0.5547519 0.4822838 -0.4745834 0.5547519 0.4822838 -0.4822838 0.5547519 0.4822838 -0.4894626 0.5547519 0.4822838 -0.4961862 0.5547519 0.4822838 -0.5025087 0.5547519 0.4822838 -0.5084753 0.5547519 0.4822838 -0.514124 0.5547519 0.4822838 -0.519487 0.5547519 0.4822838 -0.5245917 0.5547519 0.4822838 -0.529462 0.5547519 0.4822838 -0.5341183 0.5547519 0.4822838 -0.5385787 0.5547519 0.4822838 -0.5428591 0.5547519 0.4822838 -0.5469733 0.5547519 0.4822838 -0.5509339 0.5547519 0.4822838 -0.5547519 0.5547519 0.4822838 -0.5584371 0.5547519 0.4822838 -0.5619986 0.5547519 0.4822838 -0.5654443 0.5547519 0.4822838 -0.5687816 0.5547519 0.4822838 -0.092819 0.5584371 0.4822838 -0.2262531 0.5584371 0.4822838 -0.2875993 0.5584371 0.4822838 -0.3262122 0.5584371 0.4822838 -0.3544566 0.5584371 0.4822838 -0.3767383 0.5584371 0.4822838 -0.3951413 0.5584371 0.4822838 -0.4108177 0.5584371 0.4822838 -0.4244723 0.5584371 0.4822838 -0.4365675 0.5584371 0.4822838 -0.4474232 0.5584371 0.4822838 -0.45727 0.5584371 0.4822838 -0.4662797 0.5584371 0.4822838 -0.4745834 0.5584371 0.4822838 -0.4822838 0.5584371 0.4822838 -0.4894626 0.5584371 0.4822838 -0.4961862 0.5584371 0.4822838 -0.5025087 0.5584371 0.4822838 -0.5084753 0.5584371 0.4822838 -0.514124 0.5584371 0.4822838 -0.519487 0.5584371 0.4822838 -0.5245917 0.5584371 0.4822838 -0.529462 0.5584371 0.4822838 -0.5341183 0.5584371 0.4822838 -0.5385787 0.5584371 0.4822838 -0.5428591 0.5584371 0.4822838 -0.5469733 0.5584371 0.4822838 -0.5509339 0.5584371 0.4822838 -0.5547519 0.5584371 0.4822838 -0.5584371 0.5584371 0.4822838 -0.5619986 0.5584371 0.4822838 -0.5654443 0.5584371 0.4822838 -0.5687816 0.5584371 0.4822838 -0.092819 0.5619986 0.4822838 -0.2262531 0.5619986 0.4822838 -0.2875993 0.5619986 0.4822838 -0.3262122 0.5619986 0.4822838 -0.3544566 0.5619986 0.4822838 -0.3767383 0.5619986 0.4822838 -0.3951413 0.5619986 0.4822838 -0.4108177 0.5619986 0.4822838 -0.4244723 0.5619986 0.4822838 -0.4365675 0.5619986 0.4822838 -0.4474232 0.5619986 0.4822838 -0.45727 0.5619986 0.4822838 -0.4662797 0.5619986 0.4822838 -0.4745834 0.5619986 0.4822838 -0.4822838 0.5619986 0.4822838 -0.4894626 0.5619986 0.4822838 -0.4961862 0.5619986 0.4822838 -0.5025087 0.5619986 0.4822838 -0.5084753 0.5619986 0.4822838 -0.514124 0.5619986 0.4822838 -0.519487 0.5619986 0.4822838 -0.5245917 0.5619986 0.4822838 -0.529462 0.5619986 0.4822838 -0.5341183 0.5619986 0.4822838 -0.5385787 0.5619986 0.4822838 -0.5428591 0.5619986 0.4822838 -0.5469733 0.5619986 0.4822838 -0.5509339 0.5619986 0.4822838 -0.5547519 0.5619986 0.4822838 -0.5584371 0.5619986 0.4822838 -0.5619986 0.5619986 0.4822838 -0.5654443 0.5619986 0.4822838 -0.5687816 0.5619986 0.4822838 -0.092819 0.5654443 0.4822838 -0.2262531 0.5654443 0.4822838 -0.2875993 0.5654443 0.4822838 -0.3262122 0.5654443 0.4822838 -0.3544566 0.5654443 0.4822838 -0.3767383 0.5654443 0.4822838 -0.3951413 0.5654443 0.4822838 -0.4108177 0.5654443 0.4822838 -0.4244723 0.5654443 0.4822838 -0.4365675 0.5654443 0.4822838 -0.4474232 0.5654443 0.4822838 -0.45727 0.5654443 0.4822838 -0.4662797 0.5654443 0.4822838 -0.4745834 0.5654443 0.4822838 -0.4822838 0.5654443 0.4822838 -0.4894626 0.5654443 0.4822838 -0.4961862 0.5654443 0.4822838 -0.5025087 0.5654443 0.4822838 -0.5084753 0.5654443 0.4822838 -0.514124 0.5654443 0.4822838 -0.519487 0.5654443 0.4822838 -0.5245917 0.5654443 0.4822838 -0.529462 0.5654443 0.4822838 -0.5341183 0.5654443 0.4822838 -0.5385787 0.5654443 0.4822838 -0.5428591 0.5654443 0.4822838 -0.5469733 0.5654443 0.4822838 -0.5509339 0.5654443 0.4822838 -0.5547519 0.5654443 0.4822838 -0.5584371 0.5654443 0.4822838 -0.5619986 0.5654443 0.4822838 -0.5654443 0.5654443 0.4822838 -0.5687816 0.5654443 0.4822838 -0.092819 0.5687816 0.4822838 -0.2262531 0.5687816 0.4822838 -0.2875993 0.5687816 0.4822838 -0.3262122 0.5687816 0.4822838 -0.3544566 0.5687816 0.4822838 -0.3767383 0.5687816 0.4822838 -0.3951413 0.5687816 0.4822838 -0.4108177 0.5687816 0.4822838 -0.4244723 0.5687816 0.4822838 -0.4365675 0.5687816 0.4822838 -0.4474232 0.5687816 0.4822838 -0.45727 0.5687816 0.4822838 -0.4662797 0.5687816 0.4822838 -0.4745834 0.5687816 0.4822838 -0.4822838 0.5687816 0.4822838 -0.4894626 0.5687816 0.4822838 -0.4961862 0.5687816 0.4822838 -0.5025087 0.5687816 0.4822838 -0.5084753 0.5687816 0.4822838 -0.514124 0.5687816 0.4822838 -0.519487 0.5687816 0.4822838 -0.5245917 0.5687816 0.4822838 -0.529462 0.5687816 0.4822838 -0.5341183 0.5687816 0.4822838 -0.5385787 0.5687816 0.4822838 -0.5428591 0.5687816 0.4822838 -0.5469733 0.5687816 0.4822838 -0.5509339 0.5687816 0.4822838 -0.5547519 0.5687816 0.4822838 -0.5584371 0.5687816 0.4822838 -0.5619986 0.5687816 0.4822838 -0.5654443 0.5687816 0.4822838 -0.5687816 0.5687816 0.4822838 -0.092819 0.092819 0.4894626 -0.2262531 0.092819 0.4894626 -0.2875993 0.092819 0.4894626 -0.3262122 0.092819 0.4894626 -0.3544566 0.092819 0.4894626 -0.3767383 0.092819 0.4894626 -0.3951413 0.092819 0.4894626 -0.4108177 0.092819 0.4894626 -0.4244723 0.092819 0.4894626 -0.4365675 0.092819 0.4894626 -0.4474232 0.092819 0.4894626 -0.45727 0.092819 0.4894626 -0.4662797 0.092819 0.4894626 -0.4745834 0.092819 0.4894626 -0.4822838 0.092819 0.4894626 -0.4894626 0.092819 0.4894626 -0.4961862 0.092819 0.4894626 -0.5025087 0.092819 0.4894626 -0.5084753 0.092819 0.4894626 -0.514124 0.092819 0.4894626 -0.519487 0.092819 0.4894626 -0.5245917 0.092819 0.4894626 -0.529462 0.092819 0.4894626 -0.5341183 0.092819 0.4894626 -0.5385787 0.092819 0.4894626 -0.5428591 0.092819 0.4894626 -0.5469733 0.092819 0.4894626 -0.5509339 0.092819 0.4894626 -0.5547519 0.092819 0.4894626 -0.5584371 0.092819 0.4894626 -0.5619986 0.092819 0.4894626 -0.5654443 0.092819 0.4894626 -0.5687816 0.092819 0.4894626 -0.092819 0.2262531 0.4894626 -0.2262531 0.2262531 0.4894626 -0.2875993 0.2262531 0.4894626 -0.3262122 0.2262531 0.4894626 -0.3544566 0.2262531 0.4894626 -0.3767383 0.2262531 0.4894626 -0.3951413 0.2262531 0.4894626 -0.4108177 0.2262531 0.4894626 -0.4244723 0.2262531 0.4894626 -0.4365675 0.2262531 0.4894626 -0.4474232 0.2262531 0.4894626 -0.45727 0.2262531 0.4894626 -0.4662797 0.2262531 0.4894626 -0.4745834 0.2262531 0.4894626 -0.4822838 0.2262531 0.4894626 -0.4894626 0.2262531 0.4894626 -0.4961862 0.2262531 0.4894626 -0.5025087 0.2262531 0.4894626 -0.5084753 0.2262531 0.4894626 -0.514124 0.2262531 0.4894626 -0.519487 0.2262531 0.4894626 -0.5245917 0.2262531 0.4894626 -0.529462 0.2262531 0.4894626 -0.5341183 0.2262531 0.4894626 -0.5385787 0.2262531 0.4894626 -0.5428591 0.2262531 0.4894626 -0.5469733 0.2262531 0.4894626 -0.5509339 0.2262531 0.4894626 -0.5547519 0.2262531 0.4894626 -0.5584371 0.2262531 0.4894626 -0.5619986 0.2262531 0.4894626 -0.5654443 0.2262531 0.4894626 -0.5687816 0.2262531 0.4894626 -0.092819 0.2875993 0.4894626 -0.2262531 0.2875993 0.4894626 -0.2875993 0.2875993 0.4894626 -0.3262122 0.2875993 0.4894626 -0.3544566 0.2875993 0.4894626 -0.3767383 0.2875993 0.4894626 -0.3951413 0.2875993 0.4894626 -0.4108177 0.2875993 0.4894626 -0.4244723 0.2875993 0.4894626 -0.4365675 0.2875993 0.4894626 -0.4474232 0.2875993 0.4894626 -0.45727 0.2875993 0.4894626 -0.4662797 0.2875993 0.4894626 -0.4745834 0.2875993 0.4894626 -0.4822838 0.2875993 0.4894626 -0.4894626 0.2875993 0.4894626 -0.4961862 0.2875993 0.4894626 -0.5025087 0.2875993 0.4894626 -0.5084753 0.2875993 0.4894626 -0.514124 0.2875993 0.4894626 -0.519487 0.2875993 0.4894626 -0.5245917 0.2875993 0.4894626 -0.529462 0.2875993 0.4894626 -0.5341183 0.2875993 0.4894626 -0.5385787 0.2875993 0.4894626 -0.5428591 0.2875993 0.4894626 -0.5469733 0.2875993 0.4894626 -0.5509339 0.2875993 0.4894626 -0.5547519 0.2875993 0.4894626 -0.5584371 0.2875993 0.4894626 -0.5619986 0.2875993 0.4894626 -0.5654443 0.2875993 0.4894626 -0.5687816 0.2875993 0.4894626 -0.092819 0.3262122 0.4894626 -0.2262531 0.3262122 0.4894626 -0.2875993 0.3262122 0.4894626 -0.3262122 0.3262122 0.4894626 -0.3544566 0.3262122 0.4894626 -0.3767383 0.3262122 0.4894626 -0.3951413 0.3262122 0.4894626 -0.4108177 0.3262122 0.4894626 -0.4244723 0.3262122 0.4894626 -0.4365675 0.3262122 0.4894626 -0.4474232 0.3262122 0.4894626 -0.45727 0.3262122 0.4894626 -0.4662797 0.3262122 0.4894626 -0.4745834 0.3262122 0.4894626 -0.4822838 0.3262122 0.4894626 -0.4894626 0.3262122 0.4894626 -0.4961862 0.3262122 0.4894626 -0.5025087 0.3262122 0.4894626 -0.5084753 0.3262122 0.4894626 -0.514124 0.3262122 0.4894626 -0.519487 0.3262122 0.4894626 -0.5245917 0.3262122 0.4894626 -0.529462 0.3262122 0.4894626 -0.5341183 0.3262122 0.4894626 -0.5385787 0.3262122 0.4894626 -0.5428591 0.3262122 0.4894626 -0.5469733 0.3262122 0.4894626 -0.5509339 0.3262122 0.4894626 -0.5547519 0.3262122 0.4894626 -0.5584371 0.3262122 0.4894626 -0.5619986 0.3262122 0.4894626 -0.5654443 0.3262122 0.4894626 -0.5687816 0.3262122 0.4894626 -0.092819 0.3544566 0.4894626 -0.2262531 0.3544566 0.4894626 -0.2875993 0.3544566 0.4894626 -0.3262122 0.3544566 0.4894626 -0.3544566 0.3544566 0.4894626 -0.3767383 0.3544566 0.4894626 -0.3951413 0.3544566 0.4894626 -0.4108177 0.3544566 0.4894626 -0.4244723 0.3544566 0.4894626 -0.4365675 0.3544566 0.4894626 -0.4474232 0.3544566 0.4894626 -0.45727 0.3544566 0.4894626 -0.4662797 0.3544566 0.4894626 -0.4745834 0.3544566 0.4894626 -0.4822838 0.3544566 0.4894626 -0.4894626 0.3544566 0.4894626 -0.4961862 0.3544566 0.4894626 -0.5025087 0.3544566 0.4894626 -0.5084753 0.3544566 0.4894626 -0.514124 0.3544566 0.4894626 -0.519487 0.3544566 0.4894626 -0.5245917 0.3544566 0.4894626 -0.529462 0.3544566 0.4894626 -0.5341183 0.3544566 0.4894626 -0.5385787 0.3544566 0.4894626 -0.5428591 0.3544566 0.4894626 -0.5469733 0.3544566 0.4894626 -0.5509339 0.3544566 0.4894626 -0.5547519 0.3544566 0.4894626 -0.5584371 0.3544566 0.4894626 -0.5619986 0.3544566 0.4894626 -0.5654443 0.3544566 0.4894626 -0.5687816 0.3544566 0.4894626 -0.092819 0.3767383 0.4894626 -0.2262531 0.3767383 0.4894626 -0.2875993 0.3767383 0.4894626 -0.3262122 0.3767383 0.4894626 -0.3544566 0.3767383 0.4894626 -0.3767383 0.3767383 0.4894626 -0.3951413 0.3767383 0.4894626 -0.4108177 0.3767383 0.4894626 -0.4244723 0.3767383 0.4894626 -0.4365675 0.3767383 0.4894626 -0.4474232 0.3767383 0.4894626 -0.45727 0.3767383 0.4894626 -0.4662797 0.3767383 0.4894626 -0.4745834 0.3767383 0.4894626 -0.4822838 0.3767383 0.4894626 -0.4894626 0.3767383 0.4894626 -0.4961862 0.3767383 0.4894626 -0.5025087 0.3767383 0.4894626 -0.5084753 0.3767383 0.4894626 -0.514124 0.3767383 0.4894626 -0.519487 0.3767383 0.4894626 -0.5245917 0.3767383 0.4894626 -0.529462 0.3767383 0.4894626 -0.5341183 0.3767383 0.4894626 -0.5385787 0.3767383 0.4894626 -0.5428591 0.3767383 0.4894626 -0.5469733 0.3767383 0.4894626 -0.5509339 0.3767383 0.4894626 -0.5547519 0.3767383 0.4894626 -0.5584371 0.3767383 0.4894626 -0.5619986 0.3767383 0.4894626 -0.5654443 0.3767383 0.4894626 -0.5687816 0.3767383 0.4894626 -0.092819 0.3951413 0.4894626 -0.2262531 0.3951413 0.4894626 -0.2875993 0.3951413 0.4894626 -0.3262122 0.3951413 0.4894626 -0.3544566 0.3951413 0.4894626 -0.3767383 0.3951413 0.4894626 -0.3951413 0.3951413 0.4894626 -0.4108177 0.3951413 0.4894626 -0.4244723 0.3951413 0.4894626 -0.4365675 0.3951413 0.4894626 -0.4474232 0.3951413 0.4894626 -0.45727 0.3951413 0.4894626 -0.4662797 0.3951413 0.4894626 -0.4745834 0.3951413 0.4894626 -0.4822838 0.3951413 0.4894626 -0.4894626 0.3951413 0.4894626 -0.4961862 0.3951413 0.4894626 -0.5025087 0.3951413 0.4894626 -0.5084753 0.3951413 0.4894626 -0.514124 0.3951413 0.4894626 -0.519487 0.3951413 0.4894626 -0.5245917 0.3951413 0.4894626 -0.529462 0.3951413 0.4894626 -0.5341183 0.3951413 0.4894626 -0.5385787 0.3951413 0.4894626 -0.5428591 0.3951413 0.4894626 -0.5469733 0.3951413 0.4894626 -0.5509339 0.3951413 0.4894626 -0.5547519 0.3951413 0.4894626 -0.5584371 0.3951413 0.4894626 -0.5619986 0.3951413 0.4894626 -0.5654443 0.3951413 0.4894626 -0.5687816 0.3951413 0.4894626 -0.092819 0.4108177 0.4894626 -0.2262531 0.4108177 0.4894626 -0.2875993 0.4108177 0.4894626 -0.3262122 0.4108177 0.4894626 -0.3544566 0.4108177 0.4894626 -0.3767383 0.4108177 0.4894626 -0.3951413 0.4108177 0.4894626 -0.4108177 0.4108177 0.4894626 -0.4244723 0.4108177 0.4894626 -0.4365675 0.4108177 0.4894626 -0.4474232 0.4108177 0.4894626 -0.45727 0.4108177 0.4894626 -0.4662797 0.4108177 0.4894626 -0.4745834 0.4108177 0.4894626 -0.4822838 0.4108177 0.4894626 -0.4894626 0.4108177 0.4894626 -0.4961862 0.4108177 0.4894626 -0.5025087 0.4108177 0.4894626 -0.5084753 0.4108177 0.4894626 -0.514124 0.4108177 0.4894626 -0.519487 0.4108177 0.4894626 -0.5245917 0.4108177 0.4894626 -0.529462 0.4108177 0.4894626 -0.5341183 0.4108177 0.4894626 -0.5385787 0.4108177 0.4894626 -0.5428591 0.4108177 0.4894626 -0.5469733 0.4108177 0.4894626 -0.5509339 0.4108177 0.4894626 -0.5547519 0.4108177 0.4894626 -0.5584371 0.4108177 0.4894626 -0.5619986 0.4108177 0.4894626 -0.5654443 0.4108177 0.4894626 -0.5687816 0.4108177 0.4894626 -0.092819 0.4244723 0.4894626 -0.2262531 0.4244723 0.4894626 -0.2875993 0.4244723 0.4894626 -0.3262122 0.4244723 0.4894626 -0.3544566 0.4244723 0.4894626 -0.3767383 0.4244723 0.4894626 -0.3951413 0.4244723 0.4894626 -0.4108177 0.4244723 0.4894626 -0.4244723 0.4244723 0.4894626 -0.4365675 0.4244723 0.4894626 -0.4474232 0.4244723 0.4894626 -0.45727 0.4244723 0.4894626 -0.4662797 0.4244723 0.4894626 -0.4745834 0.4244723 0.4894626 -0.4822838 0.4244723 0.4894626 -0.4894626 0.4244723 0.4894626 -0.4961862 0.4244723 0.4894626 -0.5025087 0.4244723 0.4894626 -0.5084753 0.4244723 0.4894626 -0.514124 0.4244723 0.4894626 -0.519487 0.4244723 0.4894626 -0.5245917 0.4244723 0.4894626 -0.529462 0.4244723 0.4894626 -0.5341183 0.4244723 0.4894626 -0.5385787 0.4244723 0.4894626 -0.5428591 0.4244723 0.4894626 -0.5469733 0.4244723 0.4894626 -0.5509339 0.4244723 0.4894626 -0.5547519 0.4244723 0.4894626 -0.5584371 0.4244723 0.4894626 -0.5619986 0.4244723 0.4894626 -0.5654443 0.4244723 0.4894626 -0.5687816 0.4244723 0.4894626 -0.092819 0.4365675 0.4894626 -0.2262531 0.4365675 0.4894626 -0.2875993 0.4365675 0.4894626 -0.3262122 0.4365675 0.4894626 -0.3544566 0.4365675 0.4894626 -0.3767383 0.4365675 0.4894626 -0.3951413 0.4365675 0.4894626 -0.4108177 0.4365675 0.4894626 -0.4244723 0.4365675 0.4894626 -0.4365675 0.4365675 0.4894626 -0.4474232 0.4365675 0.4894626 -0.45727 0.4365675 0.4894626 -0.4662797 0.4365675 0.4894626 -0.4745834 0.4365675 0.4894626 -0.4822838 0.4365675 0.4894626 -0.4894626 0.4365675 0.4894626 -0.4961862 0.4365675 0.4894626 -0.5025087 0.4365675 0.4894626 -0.5084753 0.4365675 0.4894626 -0.514124 0.4365675 0.4894626 -0.519487 0.4365675 0.4894626 -0.5245917 0.4365675 0.4894626 -0.529462 0.4365675 0.4894626 -0.5341183 0.4365675 0.4894626 -0.5385787 0.4365675 0.4894626 -0.5428591 0.4365675 0.4894626 -0.5469733 0.4365675 0.4894626 -0.5509339 0.4365675 0.4894626 -0.5547519 0.4365675 0.4894626 -0.5584371 0.4365675 0.4894626 -0.5619986 0.4365675 0.4894626 -0.5654443 0.4365675 0.4894626 -0.5687816 0.4365675 0.4894626 -0.092819 0.4474232 0.4894626 -0.2262531 0.4474232 0.4894626 -0.2875993 0.4474232 0.4894626 -0.3262122 0.4474232 0.4894626 -0.3544566 0.4474232 0.4894626 -0.3767383 0.4474232 0.4894626 -0.3951413 0.4474232 0.4894626 -0.4108177 0.4474232 0.4894626 -0.4244723 0.4474232 0.4894626 -0.4365675 0.4474232 0.4894626 -0.4474232 0.4474232 0.4894626 -0.45727 0.4474232 0.4894626 -0.4662797 0.4474232 0.4894626 -0.4745834 0.4474232 0.4894626 -0.4822838 0.4474232 0.4894626 -0.4894626 0.4474232 0.4894626 -0.4961862 0.4474232 0.4894626 -0.5025087 0.4474232 0.4894626 -0.5084753 0.4474232 0.4894626 -0.514124 0.4474232 0.4894626 -0.519487 0.4474232 0.4894626 -0.5245917 0.4474232 0.4894626 -0.529462 0.4474232 0.4894626 -0.5341183 0.4474232 0.4894626 -0.5385787 0.4474232 0.4894626 -0.5428591 0.4474232 0.4894626 -0.5469733 0.4474232 0.4894626 -0.5509339 0.4474232 0.4894626 -0.5547519 0.4474232 0.4894626 -0.5584371 0.4474232 0.4894626 -0.5619986 0.4474232 0.4894626 -0.5654443 0.4474232 0.4894626 -0.5687816 0.4474232 0.4894626 -0.092819 0.45727 0.4894626 -0.2262531 0.45727 0.4894626 -0.2875993 0.45727 0.4894626 -0.3262122 0.45727 0.4894626 -0.3544566 0.45727 0.4894626 -0.3767383 0.45727 0.4894626 -0.3951413 0.45727 0.4894626 -0.4108177 0.45727 0.4894626 -0.4244723 0.45727 0.4894626 -0.4365675 0.45727 0.4894626 -0.4474232 0.45727 0.4894626 -0.45727 0.45727 0.4894626 -0.4662797 0.45727 0.4894626 -0.4745834 0.45727 0.4894626 -0.4822838 0.45727 0.4894626 -0.4894626 0.45727 0.4894626 -0.4961862 0.45727 0.4894626 -0.5025087 0.45727 0.4894626 -0.5084753 0.45727 0.4894626 -0.514124 0.45727 0.4894626 -0.519487 0.45727 0.4894626 -0.5245917 0.45727 0.4894626 -0.529462 0.45727 0.4894626 -0.5341183 0.45727 0.4894626 -0.5385787 0.45727 0.4894626 -0.5428591 0.45727 0.4894626 -0.5469733 0.45727 0.4894626 -0.5509339 0.45727 0.4894626 -0.5547519 0.45727 0.4894626 -0.5584371 0.45727 0.4894626 -0.5619986 0.45727 0.4894626 -0.5654443 0.45727 0.4894626 -0.5687816 0.45727 0.4894626 -0.092819 0.4662797 0.4894626 -0.2262531 0.4662797 0.4894626 -0.2875993 0.4662797 0.4894626 -0.3262122 0.4662797 0.4894626 -0.3544566 0.4662797 0.4894626 -0.3767383 0.4662797 0.4894626 -0.3951413 0.4662797 0.4894626 -0.4108177 0.4662797 0.4894626 -0.4244723 0.4662797 0.4894626 -0.4365675 0.4662797 0.4894626 -0.4474232 0.4662797 0.4894626 -0.45727 0.4662797 0.4894626 -0.4662797 0.4662797 0.4894626 -0.4745834 0.4662797 0.4894626 -0.4822838 0.4662797 0.4894626 -0.4894626 0.4662797 0.4894626 -0.4961862 0.4662797 0.4894626 -0.5025087 0.4662797 0.4894626 -0.5084753 0.4662797 0.4894626 -0.514124 0.4662797 0.4894626 -0.519487 0.4662797 0.4894626 -0.5245917 0.4662797 0.4894626 -0.529462 0.4662797 0.4894626 -0.5341183 0.4662797 0.4894626 -0.5385787 0.4662797 0.4894626 -0.5428591 0.4662797 0.4894626 -0.5469733 0.4662797 0.4894626 -0.5509339 0.4662797 0.4894626 -0.5547519 0.4662797 0.4894626 -0.5584371 0.4662797 0.4894626 -0.5619986 0.4662797 0.4894626 -0.5654443 0.4662797 0.4894626 -0.5687816 0.4662797 0.4894626 -0.092819 0.4745834 0.4894626 -0.2262531 0.4745834 0.4894626 -0.2875993 0.4745834 0.4894626 -0.3262122 0.4745834 0.4894626 -0.3544566 0.4745834 0.4894626 -0.3767383 0.4745834 0.4894626 -0.3951413 0.4745834 0.4894626 -0.4108177 0.4745834 0.4894626 -0.4244723 0.4745834 0.4894626 -0.4365675 0.4745834 0.4894626 -0.4474232 0.4745834 0.4894626 -0.45727 0.4745834 0.4894626 -0.4662797 0.4745834 0.4894626 -0.4745834 0.4745834 0.4894626 -0.4822838 0.4745834 0.4894626 -0.4894626 0.4745834 0.4894626 -0.4961862 0.4745834 0.4894626 -0.5025087 0.4745834 0.4894626 -0.5084753 0.4745834 0.4894626 -0.514124 0.4745834 0.4894626 -0.519487 0.4745834 0.4894626 -0.5245917 0.4745834 0.4894626 -0.529462 0.4745834 0.4894626 -0.5341183 0.4745834 0.4894626 -0.5385787 0.4745834 0.4894626 -0.5428591 0.4745834 0.4894626 -0.5469733 0.4745834 0.4894626 -0.5509339 0.4745834 0.4894626 -0.5547519 0.4745834 0.4894626 -0.5584371 0.4745834 0.4894626 -0.5619986 0.4745834 0.4894626 -0.5654443 0.4745834 0.4894626 -0.5687816 0.4745834 0.4894626 -0.092819 0.4822838 0.4894626 -0.2262531 0.4822838 0.4894626 -0.2875993 0.4822838 0.4894626 -0.3262122 0.4822838 0.4894626 -0.3544566 0.4822838 0.4894626 -0.3767383 0.4822838 0.4894626 -0.3951413 0.4822838 0.4894626 -0.4108177 0.4822838 0.4894626 -0.4244723 0.4822838 0.4894626 -0.4365675 0.4822838 0.4894626 -0.4474232 0.4822838 0.4894626 -0.45727 0.4822838 0.4894626 -0.4662797 0.4822838 0.4894626 -0.4745834 0.4822838 0.4894626 -0.4822838 0.4822838 0.4894626 -0.4894626 0.4822838 0.4894626 -0.4961862 0.4822838 0.4894626 -0.5025087 0.4822838 0.4894626 -0.5084753 0.4822838 0.4894626 -0.514124 0.4822838 0.4894626 -0.519487 0.4822838 0.4894626 -0.5245917 0.4822838 0.4894626 -0.529462 0.4822838 0.4894626 -0.5341183 0.4822838 0.4894626 -0.5385787 0.4822838 0.4894626 -0.5428591 0.4822838 0.4894626 -0.5469733 0.4822838 0.4894626 -0.5509339 0.4822838 0.4894626 -0.5547519 0.4822838 0.4894626 -0.5584371 0.4822838 0.4894626 -0.5619986 0.4822838 0.4894626 -0.5654443 0.4822838 0.4894626 -0.5687816 0.4822838 0.4894626 -0.092819 0.4894626 0.4894626 -0.2262531 0.4894626 0.4894626 -0.2875993 0.4894626 0.4894626 -0.3262122 0.4894626 0.4894626 -0.3544566 0.4894626 0.4894626 -0.3767383 0.4894626 0.4894626 -0.3951413 0.4894626 0.4894626 -0.4108177 0.4894626 0.4894626 -0.4244723 0.4894626 0.4894626 -0.4365675 0.4894626 0.4894626 -0.4474232 0.4894626 0.4894626 -0.45727 0.4894626 0.4894626 -0.4662797 0.4894626 0.4894626 -0.4745834 0.4894626 0.4894626 -0.4822838 0.4894626 0.4894626 -0.4894626 0.4894626 0.4894626 -0.4961862 0.4894626 0.4894626 -0.5025087 0.4894626 0.4894626 -0.5084753 0.4894626 0.4894626 -0.514124 0.4894626 0.4894626 -0.519487 0.4894626 0.4894626 -0.5245917 0.4894626 0.4894626 -0.529462 0.4894626 0.4894626 -0.5341183 0.4894626 0.4894626 -0.5385787 0.4894626 0.4894626 -0.5428591 0.4894626 0.4894626 -0.5469733 0.4894626 0.4894626 -0.5509339 0.4894626 0.4894626 -0.5547519 0.4894626 0.4894626 -0.5584371 0.4894626 0.4894626 -0.5619986 0.4894626 0.4894626 -0.5654443 0.4894626 0.4894626 -0.5687816 0.4894626 0.4894626 -0.092819 0.4961862 0.4894626 -0.2262531 0.4961862 0.4894626 -0.2875993 0.4961862 0.4894626 -0.3262122 0.4961862 0.4894626 -0.3544566 0.4961862 0.4894626 -0.3767383 0.4961862 0.4894626 -0.3951413 0.4961862 0.4894626 -0.4108177 0.4961862 0.4894626 -0.4244723 0.4961862 0.4894626 -0.4365675 0.4961862 0.4894626 -0.4474232 0.4961862 0.4894626 -0.45727 0.4961862 0.4894626 -0.4662797 0.4961862 0.4894626 -0.4745834 0.4961862 0.4894626 -0.4822838 0.4961862 0.4894626 -0.4894626 0.4961862 0.4894626 -0.4961862 0.4961862 0.4894626 -0.5025087 0.4961862 0.4894626 -0.5084753 0.4961862 0.4894626 -0.514124 0.4961862 0.4894626 -0.519487 0.4961862 0.4894626 -0.5245917 0.4961862 0.4894626 -0.529462 0.4961862 0.4894626 -0.5341183 0.4961862 0.4894626 -0.5385787 0.4961862 0.4894626 -0.5428591 0.4961862 0.4894626 -0.5469733 0.4961862 0.4894626 -0.5509339 0.4961862 0.4894626 -0.5547519 0.4961862 0.4894626 -0.5584371 0.4961862 0.4894626 -0.5619986 0.4961862 0.4894626 -0.5654443 0.4961862 0.4894626 -0.5687816 0.4961862 0.4894626 -0.092819 0.5025087 0.4894626 -0.2262531 0.5025087 0.4894626 -0.2875993 0.5025087 0.4894626 -0.3262122 0.5025087 0.4894626 -0.3544566 0.5025087 0.4894626 -0.3767383 0.5025087 0.4894626 -0.3951413 0.5025087 0.4894626 -0.4108177 0.5025087 0.4894626 -0.4244723 0.5025087 0.4894626 -0.4365675 0.5025087 0.4894626 -0.4474232 0.5025087 0.4894626 -0.45727 0.5025087 0.4894626 -0.4662797 0.5025087 0.4894626 -0.4745834 0.5025087 0.4894626 -0.4822838 0.5025087 0.4894626 -0.4894626 0.5025087 0.4894626 -0.4961862 0.5025087 0.4894626 -0.5025087 0.5025087 0.4894626 -0.5084753 0.5025087 0.4894626 -0.514124 0.5025087 0.4894626 -0.519487 0.5025087 0.4894626 -0.5245917 0.5025087 0.4894626 -0.529462 0.5025087 0.4894626 -0.5341183 0.5025087 0.4894626 -0.5385787 0.5025087 0.4894626 -0.5428591 0.5025087 0.4894626 -0.5469733 0.5025087 0.4894626 -0.5509339 0.5025087 0.4894626 -0.5547519 0.5025087 0.4894626 -0.5584371 0.5025087 0.4894626 -0.5619986 0.5025087 0.4894626 -0.5654443 0.5025087 0.4894626 -0.5687816 0.5025087 0.4894626 -0.092819 0.5084753 0.4894626 -0.2262531 0.5084753 0.4894626 -0.2875993 0.5084753 0.4894626 -0.3262122 0.5084753 0.4894626 -0.3544566 0.5084753 0.4894626 -0.3767383 0.5084753 0.4894626 -0.3951413 0.5084753 0.4894626 -0.4108177 0.5084753 0.4894626 -0.4244723 0.5084753 0.4894626 -0.4365675 0.5084753 0.4894626 -0.4474232 0.5084753 0.4894626 -0.45727 0.5084753 0.4894626 -0.4662797 0.5084753 0.4894626 -0.4745834 0.5084753 0.4894626 -0.4822838 0.5084753 0.4894626 -0.4894626 0.5084753 0.4894626 -0.4961862 0.5084753 0.4894626 -0.5025087 0.5084753 0.4894626 -0.5084753 0.5084753 0.4894626 -0.514124 0.5084753 0.4894626 -0.519487 0.5084753 0.4894626 -0.5245917 0.5084753 0.4894626 -0.529462 0.5084753 0.4894626 -0.5341183 0.5084753 0.4894626 -0.5385787 0.5084753 0.4894626 -0.5428591 0.5084753 0.4894626 -0.5469733 0.5084753 0.4894626 -0.5509339 0.5084753 0.4894626 -0.5547519 0.5084753 0.4894626 -0.5584371 0.5084753 0.4894626 -0.5619986 0.5084753 0.4894626 -0.5654443 0.5084753 0.4894626 -0.5687816 0.5084753 0.4894626 -0.092819 0.514124 0.4894626 -0.2262531 0.514124 0.4894626 -0.2875993 0.514124 0.4894626 -0.3262122 0.514124 0.4894626 -0.3544566 0.514124 0.4894626 -0.3767383 0.514124 0.4894626 -0.3951413 0.514124 0.4894626 -0.4108177 0.514124 0.4894626 -0.4244723 0.514124 0.4894626 -0.4365675 0.514124 0.4894626 -0.4474232 0.514124 0.4894626 -0.45727 0.514124 0.4894626 -0.4662797 0.514124 0.4894626 -0.4745834 0.514124 0.4894626 -0.4822838 0.514124 0.4894626 -0.4894626 0.514124 0.4894626 -0.4961862 0.514124 0.4894626 -0.5025087 0.514124 0.4894626 -0.5084753 0.514124 0.4894626 -0.514124 0.514124 0.4894626 -0.519487 0.514124 0.4894626 -0.5245917 0.514124 0.4894626 -0.529462 0.514124 0.4894626 -0.5341183 0.514124 0.4894626 -0.5385787 0.514124 0.4894626 -0.5428591 0.514124 0.4894626 -0.5469733 0.514124 0.4894626 -0.5509339 0.514124 0.4894626 -0.5547519 0.514124 0.4894626 -0.5584371 0.514124 0.4894626 -0.5619986 0.514124 0.4894626 -0.5654443 0.514124 0.4894626 -0.5687816 0.514124 0.4894626 -0.092819 0.519487 0.4894626 -0.2262531 0.519487 0.4894626 -0.2875993 0.519487 0.4894626 -0.3262122 0.519487 0.4894626 -0.3544566 0.519487 0.4894626 -0.3767383 0.519487 0.4894626 -0.3951413 0.519487 0.4894626 -0.4108177 0.519487 0.4894626 -0.4244723 0.519487 0.4894626 -0.4365675 0.519487 0.4894626 -0.4474232 0.519487 0.4894626 -0.45727 0.519487 0.4894626 -0.4662797 0.519487 0.4894626 -0.4745834 0.519487 0.4894626 -0.4822838 0.519487 0.4894626 -0.4894626 0.519487 0.4894626 -0.4961862 0.519487 0.4894626 -0.5025087 0.519487 0.4894626 -0.5084753 0.519487 0.4894626 -0.514124 0.519487 0.4894626 -0.519487 0.519487 0.4894626 -0.5245917 0.519487 0.4894626 -0.529462 0.519487 0.4894626 -0.5341183 0.519487 0.4894626 -0.5385787 0.519487 0.4894626 -0.5428591 0.519487 0.4894626 -0.5469733 0.519487 0.4894626 -0.5509339 0.519487 0.4894626 -0.5547519 0.519487 0.4894626 -0.5584371 0.519487 0.4894626 -0.5619986 0.519487 0.4894626 -0.5654443 0.519487 0.4894626 -0.5687816 0.519487 0.4894626 -0.092819 0.5245917 0.4894626 -0.2262531 0.5245917 0.4894626 -0.2875993 0.5245917 0.4894626 -0.3262122 0.5245917 0.4894626 -0.3544566 0.5245917 0.4894626 -0.3767383 0.5245917 0.4894626 -0.3951413 0.5245917 0.4894626 -0.4108177 0.5245917 0.4894626 -0.4244723 0.5245917 0.4894626 -0.4365675 0.5245917 0.4894626 -0.4474232 0.5245917 0.4894626 -0.45727 0.5245917 0.4894626 -0.4662797 0.5245917 0.4894626 -0.4745834 0.5245917 0.4894626 -0.4822838 0.5245917 0.4894626 -0.4894626 0.5245917 0.4894626 -0.4961862 0.5245917 0.4894626 -0.5025087 0.5245917 0.4894626 -0.5084753 0.5245917 0.4894626 -0.514124 0.5245917 0.4894626 -0.519487 0.5245917 0.4894626 -0.5245917 0.5245917 0.4894626 -0.529462 0.5245917 0.4894626 -0.5341183 0.5245917 0.4894626 -0.5385787 0.5245917 0.4894626 -0.5428591 0.5245917 0.4894626 -0.5469733 0.5245917 0.4894626 -0.5509339 0.5245917 0.4894626 -0.5547519 0.5245917 0.4894626 -0.5584371 0.5245917 0.4894626 -0.5619986 0.5245917 0.4894626 -0.5654443 0.5245917 0.4894626 -0.5687816 0.5245917 0.4894626 -0.092819 0.529462 0.4894626 -0.2262531 0.529462 0.4894626 -0.2875993 0.529462 0.4894626 -0.3262122 0.529462 0.4894626 -0.3544566 0.529462 0.4894626 -0.3767383 0.529462 0.4894626 -0.3951413 0.529462 0.4894626 -0.4108177 0.529462 0.4894626 -0.4244723 0.529462 0.4894626 -0.4365675 0.529462 0.4894626 -0.4474232 0.529462 0.4894626 -0.45727 0.529462 0.4894626 -0.4662797 0.529462 0.4894626 -0.4745834 0.529462 0.4894626 -0.4822838 0.529462 0.4894626 -0.4894626 0.529462 0.4894626 -0.4961862 0.529462 0.4894626 -0.5025087 0.529462 0.4894626 -0.5084753 0.529462 0.4894626 -0.514124 0.529462 0.4894626 -0.519487 0.529462 0.4894626 -0.5245917 0.529462 0.4894626 -0.529462 0.529462 0.4894626 -0.5341183 0.529462 0.4894626 -0.5385787 0.529462 0.4894626 -0.5428591 0.529462 0.4894626 -0.5469733 0.529462 0.4894626 -0.5509339 0.529462 0.4894626 -0.5547519 0.529462 0.4894626 -0.5584371 0.529462 0.4894626 -0.5619986 0.529462 0.4894626 -0.5654443 0.529462 0.4894626 -0.5687816 0.529462 0.4894626 -0.092819 0.5341183 0.4894626 -0.2262531 0.5341183 0.4894626 -0.2875993 0.5341183 0.4894626 -0.3262122 0.5341183 0.4894626 -0.3544566 0.5341183 0.4894626 -0.3767383 0.5341183 0.4894626 -0.3951413 0.5341183 0.4894626 -0.4108177 0.5341183 0.4894626 -0.4244723 0.5341183 0.4894626 -0.4365675 0.5341183 0.4894626 -0.4474232 0.5341183 0.4894626 -0.45727 0.5341183 0.4894626 -0.4662797 0.5341183 0.4894626 -0.4745834 0.5341183 0.4894626 -0.4822838 0.5341183 0.4894626 -0.4894626 0.5341183 0.4894626 -0.4961862 0.5341183 0.4894626 -0.5025087 0.5341183 0.4894626 -0.5084753 0.5341183 0.4894626 -0.514124 0.5341183 0.4894626 -0.519487 0.5341183 0.4894626 -0.5245917 0.5341183 0.4894626 -0.529462 0.5341183 0.4894626 -0.5341183 0.5341183 0.4894626 -0.5385787 0.5341183 0.4894626 -0.5428591 0.5341183 0.4894626 -0.5469733 0.5341183 0.4894626 -0.5509339 0.5341183 0.4894626 -0.5547519 0.5341183 0.4894626 -0.5584371 0.5341183 0.4894626 -0.5619986 0.5341183 0.4894626 -0.5654443 0.5341183 0.4894626 -0.5687816 0.5341183 0.4894626 -0.092819 0.5385787 0.4894626 -0.2262531 0.5385787 0.4894626 -0.2875993 0.5385787 0.4894626 -0.3262122 0.5385787 0.4894626 -0.3544566 0.5385787 0.4894626 -0.3767383 0.5385787 0.4894626 -0.3951413 0.5385787 0.4894626 -0.4108177 0.5385787 0.4894626 -0.4244723 0.5385787 0.4894626 -0.4365675 0.5385787 0.4894626 -0.4474232 0.5385787 0.4894626 -0.45727 0.5385787 0.4894626 -0.4662797 0.5385787 0.4894626 -0.4745834 0.5385787 0.4894626 -0.4822838 0.5385787 0.4894626 -0.4894626 0.5385787 0.4894626 -0.4961862 0.5385787 0.4894626 -0.5025087 0.5385787 0.4894626 -0.5084753 0.5385787 0.4894626 -0.514124 0.5385787 0.4894626 -0.519487 0.5385787 0.4894626 -0.5245917 0.5385787 0.4894626 -0.529462 0.5385787 0.4894626 -0.5341183 0.5385787 0.4894626 -0.5385787 0.5385787 0.4894626 -0.5428591 0.5385787 0.4894626 -0.5469733 0.5385787 0.4894626 -0.5509339 0.5385787 0.4894626 -0.5547519 0.5385787 0.4894626 -0.5584371 0.5385787 0.4894626 -0.5619986 0.5385787 0.4894626 -0.5654443 0.5385787 0.4894626 -0.5687816 0.5385787 0.4894626 -0.092819 0.5428591 0.4894626 -0.2262531 0.5428591 0.4894626 -0.2875993 0.5428591 0.4894626 -0.3262122 0.5428591 0.4894626 -0.3544566 0.5428591 0.4894626 -0.3767383 0.5428591 0.4894626 -0.3951413 0.5428591 0.4894626 -0.4108177 0.5428591 0.4894626 -0.4244723 0.5428591 0.4894626 -0.4365675 0.5428591 0.4894626 -0.4474232 0.5428591 0.4894626 -0.45727 0.5428591 0.4894626 -0.4662797 0.5428591 0.4894626 -0.4745834 0.5428591 0.4894626 -0.4822838 0.5428591 0.4894626 -0.4894626 0.5428591 0.4894626 -0.4961862 0.5428591 0.4894626 -0.5025087 0.5428591 0.4894626 -0.5084753 0.5428591 0.4894626 -0.514124 0.5428591 0.4894626 -0.519487 0.5428591 0.4894626 -0.5245917 0.5428591 0.4894626 -0.529462 0.5428591 0.4894626 -0.5341183 0.5428591 0.4894626 -0.5385787 0.5428591 0.4894626 -0.5428591 0.5428591 0.4894626 -0.5469733 0.5428591 0.4894626 -0.5509339 0.5428591 0.4894626 -0.5547519 0.5428591 0.4894626 -0.5584371 0.5428591 0.4894626 -0.5619986 0.5428591 0.4894626 -0.5654443 0.5428591 0.4894626 -0.5687816 0.5428591 0.4894626 -0.092819 0.5469733 0.4894626 -0.2262531 0.5469733 0.4894626 -0.2875993 0.5469733 0.4894626 -0.3262122 0.5469733 0.4894626 -0.3544566 0.5469733 0.4894626 -0.3767383 0.5469733 0.4894626 -0.3951413 0.5469733 0.4894626 -0.4108177 0.5469733 0.4894626 -0.4244723 0.5469733 0.4894626 -0.4365675 0.5469733 0.4894626 -0.4474232 0.5469733 0.4894626 -0.45727 0.5469733 0.4894626 -0.4662797 0.5469733 0.4894626 -0.4745834 0.5469733 0.4894626 -0.4822838 0.5469733 0.4894626 -0.4894626 0.5469733 0.4894626 -0.4961862 0.5469733 0.4894626 -0.5025087 0.5469733 0.4894626 -0.5084753 0.5469733 0.4894626 -0.514124 0.5469733 0.4894626 -0.519487 0.5469733 0.4894626 -0.5245917 0.5469733 0.4894626 -0.529462 0.5469733 0.4894626 -0.5341183 0.5469733 0.4894626 -0.5385787 0.5469733 0.4894626 -0.5428591 0.5469733 0.4894626 -0.5469733 0.5469733 0.4894626 -0.5509339 0.5469733 0.4894626 -0.5547519 0.5469733 0.4894626 -0.5584371 0.5469733 0.4894626 -0.5619986 0.5469733 0.4894626 -0.5654443 0.5469733 0.4894626 -0.5687816 0.5469733 0.4894626 -0.092819 0.5509339 0.4894626 -0.2262531 0.5509339 0.4894626 -0.2875993 0.5509339 0.4894626 -0.3262122 0.5509339 0.4894626 -0.3544566 0.5509339 0.4894626 -0.3767383 0.5509339 0.4894626 -0.3951413 0.5509339 0.4894626 -0.4108177 0.5509339 0.4894626 -0.4244723 0.5509339 0.4894626 -0.4365675 0.5509339 0.4894626 -0.4474232 0.5509339 0.4894626 -0.45727 0.5509339 0.4894626 -0.4662797 0.5509339 0.4894626 -0.4745834 0.5509339 0.4894626 -0.4822838 0.5509339 0.4894626 -0.4894626 0.5509339 0.4894626 -0.4961862 0.5509339 0.4894626 -0.5025087 0.5509339 0.4894626 -0.5084753 0.5509339 0.4894626 -0.514124 0.5509339 0.4894626 -0.519487 0.5509339 0.4894626 -0.5245917 0.5509339 0.4894626 -0.529462 0.5509339 0.4894626 -0.5341183 0.5509339 0.4894626 -0.5385787 0.5509339 0.4894626 -0.5428591 0.5509339 0.4894626 -0.5469733 0.5509339 0.4894626 -0.5509339 0.5509339 0.4894626 -0.5547519 0.5509339 0.4894626 -0.5584371 0.5509339 0.4894626 -0.5619986 0.5509339 0.4894626 -0.5654443 0.5509339 0.4894626 -0.5687816 0.5509339 0.4894626 -0.092819 0.5547519 0.4894626 -0.2262531 0.5547519 0.4894626 -0.2875993 0.5547519 0.4894626 -0.3262122 0.5547519 0.4894626 -0.3544566 0.5547519 0.4894626 -0.3767383 0.5547519 0.4894626 -0.3951413 0.5547519 0.4894626 -0.4108177 0.5547519 0.4894626 -0.4244723 0.5547519 0.4894626 -0.4365675 0.5547519 0.4894626 -0.4474232 0.5547519 0.4894626 -0.45727 0.5547519 0.4894626 -0.4662797 0.5547519 0.4894626 -0.4745834 0.5547519 0.4894626 -0.4822838 0.5547519 0.4894626 -0.4894626 0.5547519 0.4894626 -0.4961862 0.5547519 0.4894626 -0.5025087 0.5547519 0.4894626 -0.5084753 0.5547519 0.4894626 -0.514124 0.5547519 0.4894626 -0.519487 0.5547519 0.4894626 -0.5245917 0.5547519 0.4894626 -0.529462 0.5547519 0.4894626 -0.5341183 0.5547519 0.4894626 -0.5385787 0.5547519 0.4894626 -0.5428591 0.5547519 0.4894626 -0.5469733 0.5547519 0.4894626 -0.5509339 0.5547519 0.4894626 -0.5547519 0.5547519 0.4894626 -0.5584371 0.5547519 0.4894626 -0.5619986 0.5547519 0.4894626 -0.5654443 0.5547519 0.4894626 -0.5687816 0.5547519 0.4894626 -0.092819 0.5584371 0.4894626 -0.2262531 0.5584371 0.4894626 -0.2875993 0.5584371 0.4894626 -0.3262122 0.5584371 0.4894626 -0.3544566 0.5584371 0.4894626 -0.3767383 0.5584371 0.4894626 -0.3951413 0.5584371 0.4894626 -0.4108177 0.5584371 0.4894626 -0.4244723 0.5584371 0.4894626 -0.4365675 0.5584371 0.4894626 -0.4474232 0.5584371 0.4894626 -0.45727 0.5584371 0.4894626 -0.4662797 0.5584371 0.4894626 -0.4745834 0.5584371 0.4894626 -0.4822838 0.5584371 0.4894626 -0.4894626 0.5584371 0.4894626 -0.4961862 0.5584371 0.4894626 -0.5025087 0.5584371 0.4894626 -0.5084753 0.5584371 0.4894626 -0.514124 0.5584371 0.4894626 -0.519487 0.5584371 0.4894626 -0.5245917 0.5584371 0.4894626 -0.529462 0.5584371 0.4894626 -0.5341183 0.5584371 0.4894626 -0.5385787 0.5584371 0.4894626 -0.5428591 0.5584371 0.4894626 -0.5469733 0.5584371 0.4894626 -0.5509339 0.5584371 0.4894626 -0.5547519 0.5584371 0.4894626 -0.5584371 0.5584371 0.4894626 -0.5619986 0.5584371 0.4894626 -0.5654443 0.5584371 0.4894626 -0.5687816 0.5584371 0.4894626 -0.092819 0.5619986 0.4894626 -0.2262531 0.5619986 0.4894626 -0.2875993 0.5619986 0.4894626 -0.3262122 0.5619986 0.4894626 -0.3544566 0.5619986 0.4894626 -0.3767383 0.5619986 0.4894626 -0.3951413 0.5619986 0.4894626 -0.4108177 0.5619986 0.4894626 -0.4244723 0.5619986 0.4894626 -0.4365675 0.5619986 0.4894626 -0.4474232 0.5619986 0.4894626 -0.45727 0.5619986 0.4894626 -0.4662797 0.5619986 0.4894626 -0.4745834 0.5619986 0.4894626 -0.4822838 0.5619986 0.4894626 -0.4894626 0.5619986 0.4894626 -0.4961862 0.5619986 0.4894626 -0.5025087 0.5619986 0.4894626 -0.5084753 0.5619986 0.4894626 -0.514124 0.5619986 0.4894626 -0.519487 0.5619986 0.4894626 -0.5245917 0.5619986 0.4894626 -0.529462 0.5619986 0.4894626 -0.5341183 0.5619986 0.4894626 -0.5385787 0.5619986 0.4894626 -0.5428591 0.5619986 0.4894626 -0.5469733 0.5619986 0.4894626 -0.5509339 0.5619986 0.4894626 -0.5547519 0.5619986 0.4894626 -0.5584371 0.5619986 0.4894626 -0.5619986 0.5619986 0.4894626 -0.5654443 0.5619986 0.4894626 -0.5687816 0.5619986 0.4894626 -0.092819 0.5654443 0.4894626 -0.2262531 0.5654443 0.4894626 -0.2875993 0.5654443 0.4894626 -0.3262122 0.5654443 0.4894626 -0.3544566 0.5654443 0.4894626 -0.3767383 0.5654443 0.4894626 -0.3951413 0.5654443 0.4894626 -0.4108177 0.5654443 0.4894626 -0.4244723 0.5654443 0.4894626 -0.4365675 0.5654443 0.4894626 -0.4474232 0.5654443 0.4894626 -0.45727 0.5654443 0.4894626 -0.4662797 0.5654443 0.4894626 -0.4745834 0.5654443 0.4894626 -0.4822838 0.5654443 0.4894626 -0.4894626 0.5654443 0.4894626 -0.4961862 0.5654443 0.4894626 -0.5025087 0.5654443 0.4894626 -0.5084753 0.5654443 0.4894626 -0.514124 0.5654443 0.4894626 -0.519487 0.5654443 0.4894626 -0.5245917 0.5654443 0.4894626 -0.529462 0.5654443 0.4894626 -0.5341183 0.5654443 0.4894626 -0.5385787 0.5654443 0.4894626 -0.5428591 0.5654443 0.4894626 -0.5469733 0.5654443 0.4894626 -0.5509339 0.5654443 0.4894626 -0.5547519 0.5654443 0.4894626 -0.5584371 0.5654443 0.4894626 -0.5619986 0.5654443 0.4894626 -0.5654443 0.5654443 0.4894626 -0.5687816 0.5654443 0.4894626 -0.092819 0.5687816 0.4894626 -0.2262531 0.5687816 0.4894626 -0.2875993 0.5687816 0.4894626 -0.3262122 0.5687816 0.4894626 -0.3544566 0.5687816 0.4894626 -0.3767383 0.5687816 0.4894626 -0.3951413 0.5687816 0.4894626 -0.4108177 0.5687816 0.4894626 -0.4244723 0.5687816 0.4894626 -0.4365675 0.5687816 0.4894626 -0.4474232 0.5687816 0.4894626 -0.45727 0.5687816 0.4894626 -0.4662797 0.5687816 0.4894626 -0.4745834 0.5687816 0.4894626 -0.4822838 0.5687816 0.4894626 -0.4894626 0.5687816 0.4894626 -0.4961862 0.5687816 0.4894626 -0.5025087 0.5687816 0.4894626 -0.5084753 0.5687816 0.4894626 -0.514124 0.5687816 0.4894626 -0.519487 0.5687816 0.4894626 -0.5245917 0.5687816 0.4894626 -0.529462 0.5687816 0.4894626 -0.5341183 0.5687816 0.4894626 -0.5385787 0.5687816 0.4894626 -0.5428591 0.5687816 0.4894626 -0.5469733 0.5687816 0.4894626 -0.5509339 0.5687816 0.4894626 -0.5547519 0.5687816 0.4894626 -0.5584371 0.5687816 0.4894626 -0.5619986 0.5687816 0.4894626 -0.5654443 0.5687816 0.4894626 -0.5687816 0.5687816 0.4894626 -0.092819 0.092819 0.4961862 -0.2262531 0.092819 0.4961862 -0.2875993 0.092819 0.4961862 -0.3262122 0.092819 0.4961862 -0.3544566 0.092819 0.4961862 -0.3767383 0.092819 0.4961862 -0.3951413 0.092819 0.4961862 -0.4108177 0.092819 0.4961862 -0.4244723 0.092819 0.4961862 -0.4365675 0.092819 0.4961862 -0.4474232 0.092819 0.4961862 -0.45727 0.092819 0.4961862 -0.4662797 0.092819 0.4961862 -0.4745834 0.092819 0.4961862 -0.4822838 0.092819 0.4961862 -0.4894626 0.092819 0.4961862 -0.4961862 0.092819 0.4961862 -0.5025087 0.092819 0.4961862 -0.5084753 0.092819 0.4961862 -0.514124 0.092819 0.4961862 -0.519487 0.092819 0.4961862 -0.5245917 0.092819 0.4961862 -0.529462 0.092819 0.4961862 -0.5341183 0.092819 0.4961862 -0.5385787 0.092819 0.4961862 -0.5428591 0.092819 0.4961862 -0.5469733 0.092819 0.4961862 -0.5509339 0.092819 0.4961862 -0.5547519 0.092819 0.4961862 -0.5584371 0.092819 0.4961862 -0.5619986 0.092819 0.4961862 -0.5654443 0.092819 0.4961862 -0.5687816 0.092819 0.4961862 -0.092819 0.2262531 0.4961862 -0.2262531 0.2262531 0.4961862 -0.2875993 0.2262531 0.4961862 -0.3262122 0.2262531 0.4961862 -0.3544566 0.2262531 0.4961862 -0.3767383 0.2262531 0.4961862 -0.3951413 0.2262531 0.4961862 -0.4108177 0.2262531 0.4961862 -0.4244723 0.2262531 0.4961862 -0.4365675 0.2262531 0.4961862 -0.4474232 0.2262531 0.4961862 -0.45727 0.2262531 0.4961862 -0.4662797 0.2262531 0.4961862 -0.4745834 0.2262531 0.4961862 -0.4822838 0.2262531 0.4961862 -0.4894626 0.2262531 0.4961862 -0.4961862 0.2262531 0.4961862 -0.5025087 0.2262531 0.4961862 -0.5084753 0.2262531 0.4961862 -0.514124 0.2262531 0.4961862 -0.519487 0.2262531 0.4961862 -0.5245917 0.2262531 0.4961862 -0.529462 0.2262531 0.4961862 -0.5341183 0.2262531 0.4961862 -0.5385787 0.2262531 0.4961862 -0.5428591 0.2262531 0.4961862 -0.5469733 0.2262531 0.4961862 -0.5509339 0.2262531 0.4961862 -0.5547519 0.2262531 0.4961862 -0.5584371 0.2262531 0.4961862 -0.5619986 0.2262531 0.4961862 -0.5654443 0.2262531 0.4961862 -0.5687816 0.2262531 0.4961862 -0.092819 0.2875993 0.4961862 -0.2262531 0.2875993 0.4961862 -0.2875993 0.2875993 0.4961862 -0.3262122 0.2875993 0.4961862 -0.3544566 0.2875993 0.4961862 -0.3767383 0.2875993 0.4961862 -0.3951413 0.2875993 0.4961862 -0.4108177 0.2875993 0.4961862 -0.4244723 0.2875993 0.4961862 -0.4365675 0.2875993 0.4961862 -0.4474232 0.2875993 0.4961862 -0.45727 0.2875993 0.4961862 -0.4662797 0.2875993 0.4961862 -0.4745834 0.2875993 0.4961862 -0.4822838 0.2875993 0.4961862 -0.4894626 0.2875993 0.4961862 -0.4961862 0.2875993 0.4961862 -0.5025087 0.2875993 0.4961862 -0.5084753 0.2875993 0.4961862 -0.514124 0.2875993 0.4961862 -0.519487 0.2875993 0.4961862 -0.5245917 0.2875993 0.4961862 -0.529462 0.2875993 0.4961862 -0.5341183 0.2875993 0.4961862 -0.5385787 0.2875993 0.4961862 -0.5428591 0.2875993 0.4961862 -0.5469733 0.2875993 0.4961862 -0.5509339 0.2875993 0.4961862 -0.5547519 0.2875993 0.4961862 -0.5584371 0.2875993 0.4961862 -0.5619986 0.2875993 0.4961862 -0.5654443 0.2875993 0.4961862 -0.5687816 0.2875993 0.4961862 -0.092819 0.3262122 0.4961862 -0.2262531 0.3262122 0.4961862 -0.2875993 0.3262122 0.4961862 -0.3262122 0.3262122 0.4961862 -0.3544566 0.3262122 0.4961862 -0.3767383 0.3262122 0.4961862 -0.3951413 0.3262122 0.4961862 -0.4108177 0.3262122 0.4961862 -0.4244723 0.3262122 0.4961862 -0.4365675 0.3262122 0.4961862 -0.4474232 0.3262122 0.4961862 -0.45727 0.3262122 0.4961862 -0.4662797 0.3262122 0.4961862 -0.4745834 0.3262122 0.4961862 -0.4822838 0.3262122 0.4961862 -0.4894626 0.3262122 0.4961862 -0.4961862 0.3262122 0.4961862 -0.5025087 0.3262122 0.4961862 -0.5084753 0.3262122 0.4961862 -0.514124 0.3262122 0.4961862 -0.519487 0.3262122 0.4961862 -0.5245917 0.3262122 0.4961862 -0.529462 0.3262122 0.4961862 -0.5341183 0.3262122 0.4961862 -0.5385787 0.3262122 0.4961862 -0.5428591 0.3262122 0.4961862 -0.5469733 0.3262122 0.4961862 -0.5509339 0.3262122 0.4961862 -0.5547519 0.3262122 0.4961862 -0.5584371 0.3262122 0.4961862 -0.5619986 0.3262122 0.4961862 -0.5654443 0.3262122 0.4961862 -0.5687816 0.3262122 0.4961862 -0.092819 0.3544566 0.4961862 -0.2262531 0.3544566 0.4961862 -0.2875993 0.3544566 0.4961862 -0.3262122 0.3544566 0.4961862 -0.3544566 0.3544566 0.4961862 -0.3767383 0.3544566 0.4961862 -0.3951413 0.3544566 0.4961862 -0.4108177 0.3544566 0.4961862 -0.4244723 0.3544566 0.4961862 -0.4365675 0.3544566 0.4961862 -0.4474232 0.3544566 0.4961862 -0.45727 0.3544566 0.4961862 -0.4662797 0.3544566 0.4961862 -0.4745834 0.3544566 0.4961862 -0.4822838 0.3544566 0.4961862 -0.4894626 0.3544566 0.4961862 -0.4961862 0.3544566 0.4961862 -0.5025087 0.3544566 0.4961862 -0.5084753 0.3544566 0.4961862 -0.514124 0.3544566 0.4961862 -0.519487 0.3544566 0.4961862 -0.5245917 0.3544566 0.4961862 -0.529462 0.3544566 0.4961862 -0.5341183 0.3544566 0.4961862 -0.5385787 0.3544566 0.4961862 -0.5428591 0.3544566 0.4961862 -0.5469733 0.3544566 0.4961862 -0.5509339 0.3544566 0.4961862 -0.5547519 0.3544566 0.4961862 -0.5584371 0.3544566 0.4961862 -0.5619986 0.3544566 0.4961862 -0.5654443 0.3544566 0.4961862 -0.5687816 0.3544566 0.4961862 -0.092819 0.3767383 0.4961862 -0.2262531 0.3767383 0.4961862 -0.2875993 0.3767383 0.4961862 -0.3262122 0.3767383 0.4961862 -0.3544566 0.3767383 0.4961862 -0.3767383 0.3767383 0.4961862 -0.3951413 0.3767383 0.4961862 -0.4108177 0.3767383 0.4961862 -0.4244723 0.3767383 0.4961862 -0.4365675 0.3767383 0.4961862 -0.4474232 0.3767383 0.4961862 -0.45727 0.3767383 0.4961862 -0.4662797 0.3767383 0.4961862 -0.4745834 0.3767383 0.4961862 -0.4822838 0.3767383 0.4961862 -0.4894626 0.3767383 0.4961862 -0.4961862 0.3767383 0.4961862 -0.5025087 0.3767383 0.4961862 -0.5084753 0.3767383 0.4961862 -0.514124 0.3767383 0.4961862 -0.519487 0.3767383 0.4961862 -0.5245917 0.3767383 0.4961862 -0.529462 0.3767383 0.4961862 -0.5341183 0.3767383 0.4961862 -0.5385787 0.3767383 0.4961862 -0.5428591 0.3767383 0.4961862 -0.5469733 0.3767383 0.4961862 -0.5509339 0.3767383 0.4961862 -0.5547519 0.3767383 0.4961862 -0.5584371 0.3767383 0.4961862 -0.5619986 0.3767383 0.4961862 -0.5654443 0.3767383 0.4961862 -0.5687816 0.3767383 0.4961862 -0.092819 0.3951413 0.4961862 -0.2262531 0.3951413 0.4961862 -0.2875993 0.3951413 0.4961862 -0.3262122 0.3951413 0.4961862 -0.3544566 0.3951413 0.4961862 -0.3767383 0.3951413 0.4961862 -0.3951413 0.3951413 0.4961862 -0.4108177 0.3951413 0.4961862 -0.4244723 0.3951413 0.4961862 -0.4365675 0.3951413 0.4961862 -0.4474232 0.3951413 0.4961862 -0.45727 0.3951413 0.4961862 -0.4662797 0.3951413 0.4961862 -0.4745834 0.3951413 0.4961862 -0.4822838 0.3951413 0.4961862 -0.4894626 0.3951413 0.4961862 -0.4961862 0.3951413 0.4961862 -0.5025087 0.3951413 0.4961862 -0.5084753 0.3951413 0.4961862 -0.514124 0.3951413 0.4961862 -0.519487 0.3951413 0.4961862 -0.5245917 0.3951413 0.4961862 -0.529462 0.3951413 0.4961862 -0.5341183 0.3951413 0.4961862 -0.5385787 0.3951413 0.4961862 -0.5428591 0.3951413 0.4961862 -0.5469733 0.3951413 0.4961862 -0.5509339 0.3951413 0.4961862 -0.5547519 0.3951413 0.4961862 -0.5584371 0.3951413 0.4961862 -0.5619986 0.3951413 0.4961862 -0.5654443 0.3951413 0.4961862 -0.5687816 0.3951413 0.4961862 -0.092819 0.4108177 0.4961862 -0.2262531 0.4108177 0.4961862 -0.2875993 0.4108177 0.4961862 -0.3262122 0.4108177 0.4961862 -0.3544566 0.4108177 0.4961862 -0.3767383 0.4108177 0.4961862 -0.3951413 0.4108177 0.4961862 -0.4108177 0.4108177 0.4961862 -0.4244723 0.4108177 0.4961862 -0.4365675 0.4108177 0.4961862 -0.4474232 0.4108177 0.4961862 -0.45727 0.4108177 0.4961862 -0.4662797 0.4108177 0.4961862 -0.4745834 0.4108177 0.4961862 -0.4822838 0.4108177 0.4961862 -0.4894626 0.4108177 0.4961862 -0.4961862 0.4108177 0.4961862 -0.5025087 0.4108177 0.4961862 -0.5084753 0.4108177 0.4961862 -0.514124 0.4108177 0.4961862 -0.519487 0.4108177 0.4961862 -0.5245917 0.4108177 0.4961862 -0.529462 0.4108177 0.4961862 -0.5341183 0.4108177 0.4961862 -0.5385787 0.4108177 0.4961862 -0.5428591 0.4108177 0.4961862 -0.5469733 0.4108177 0.4961862 -0.5509339 0.4108177 0.4961862 -0.5547519 0.4108177 0.4961862 -0.5584371 0.4108177 0.4961862 -0.5619986 0.4108177 0.4961862 -0.5654443 0.4108177 0.4961862 -0.5687816 0.4108177 0.4961862 -0.092819 0.4244723 0.4961862 -0.2262531 0.4244723 0.4961862 -0.2875993 0.4244723 0.4961862 -0.3262122 0.4244723 0.4961862 -0.3544566 0.4244723 0.4961862 -0.3767383 0.4244723 0.4961862 -0.3951413 0.4244723 0.4961862 -0.4108177 0.4244723 0.4961862 -0.4244723 0.4244723 0.4961862 -0.4365675 0.4244723 0.4961862 -0.4474232 0.4244723 0.4961862 -0.45727 0.4244723 0.4961862 -0.4662797 0.4244723 0.4961862 -0.4745834 0.4244723 0.4961862 -0.4822838 0.4244723 0.4961862 -0.4894626 0.4244723 0.4961862 -0.4961862 0.4244723 0.4961862 -0.5025087 0.4244723 0.4961862 -0.5084753 0.4244723 0.4961862 -0.514124 0.4244723 0.4961862 -0.519487 0.4244723 0.4961862 -0.5245917 0.4244723 0.4961862 -0.529462 0.4244723 0.4961862 -0.5341183 0.4244723 0.4961862 -0.5385787 0.4244723 0.4961862 -0.5428591 0.4244723 0.4961862 -0.5469733 0.4244723 0.4961862 -0.5509339 0.4244723 0.4961862 -0.5547519 0.4244723 0.4961862 -0.5584371 0.4244723 0.4961862 -0.5619986 0.4244723 0.4961862 -0.5654443 0.4244723 0.4961862 -0.5687816 0.4244723 0.4961862 -0.092819 0.4365675 0.4961862 -0.2262531 0.4365675 0.4961862 -0.2875993 0.4365675 0.4961862 -0.3262122 0.4365675 0.4961862 -0.3544566 0.4365675 0.4961862 -0.3767383 0.4365675 0.4961862 -0.3951413 0.4365675 0.4961862 -0.4108177 0.4365675 0.4961862 -0.4244723 0.4365675 0.4961862 -0.4365675 0.4365675 0.4961862 -0.4474232 0.4365675 0.4961862 -0.45727 0.4365675 0.4961862 -0.4662797 0.4365675 0.4961862 -0.4745834 0.4365675 0.4961862 -0.4822838 0.4365675 0.4961862 -0.4894626 0.4365675 0.4961862 -0.4961862 0.4365675 0.4961862 -0.5025087 0.4365675 0.4961862 -0.5084753 0.4365675 0.4961862 -0.514124 0.4365675 0.4961862 -0.519487 0.4365675 0.4961862 -0.5245917 0.4365675 0.4961862 -0.529462 0.4365675 0.4961862 -0.5341183 0.4365675 0.4961862 -0.5385787 0.4365675 0.4961862 -0.5428591 0.4365675 0.4961862 -0.5469733 0.4365675 0.4961862 -0.5509339 0.4365675 0.4961862 -0.5547519 0.4365675 0.4961862 -0.5584371 0.4365675 0.4961862 -0.5619986 0.4365675 0.4961862 -0.5654443 0.4365675 0.4961862 -0.5687816 0.4365675 0.4961862 -0.092819 0.4474232 0.4961862 -0.2262531 0.4474232 0.4961862 -0.2875993 0.4474232 0.4961862 -0.3262122 0.4474232 0.4961862 -0.3544566 0.4474232 0.4961862 -0.3767383 0.4474232 0.4961862 -0.3951413 0.4474232 0.4961862 -0.4108177 0.4474232 0.4961862 -0.4244723 0.4474232 0.4961862 -0.4365675 0.4474232 0.4961862 -0.4474232 0.4474232 0.4961862 -0.45727 0.4474232 0.4961862 -0.4662797 0.4474232 0.4961862 -0.4745834 0.4474232 0.4961862 -0.4822838 0.4474232 0.4961862 -0.4894626 0.4474232 0.4961862 -0.4961862 0.4474232 0.4961862 -0.5025087 0.4474232 0.4961862 -0.5084753 0.4474232 0.4961862 -0.514124 0.4474232 0.4961862 -0.519487 0.4474232 0.4961862 -0.5245917 0.4474232 0.4961862 -0.529462 0.4474232 0.4961862 -0.5341183 0.4474232 0.4961862 -0.5385787 0.4474232 0.4961862 -0.5428591 0.4474232 0.4961862 -0.5469733 0.4474232 0.4961862 -0.5509339 0.4474232 0.4961862 -0.5547519 0.4474232 0.4961862 -0.5584371 0.4474232 0.4961862 -0.5619986 0.4474232 0.4961862 -0.5654443 0.4474232 0.4961862 -0.5687816 0.4474232 0.4961862 -0.092819 0.45727 0.4961862 -0.2262531 0.45727 0.4961862 -0.2875993 0.45727 0.4961862 -0.3262122 0.45727 0.4961862 -0.3544566 0.45727 0.4961862 -0.3767383 0.45727 0.4961862 -0.3951413 0.45727 0.4961862 -0.4108177 0.45727 0.4961862 -0.4244723 0.45727 0.4961862 -0.4365675 0.45727 0.4961862 -0.4474232 0.45727 0.4961862 -0.45727 0.45727 0.4961862 -0.4662797 0.45727 0.4961862 -0.4745834 0.45727 0.4961862 -0.4822838 0.45727 0.4961862 -0.4894626 0.45727 0.4961862 -0.4961862 0.45727 0.4961862 -0.5025087 0.45727 0.4961862 -0.5084753 0.45727 0.4961862 -0.514124 0.45727 0.4961862 -0.519487 0.45727 0.4961862 -0.5245917 0.45727 0.4961862 -0.529462 0.45727 0.4961862 -0.5341183 0.45727 0.4961862 -0.5385787 0.45727 0.4961862 -0.5428591 0.45727 0.4961862 -0.5469733 0.45727 0.4961862 -0.5509339 0.45727 0.4961862 -0.5547519 0.45727 0.4961862 -0.5584371 0.45727 0.4961862 -0.5619986 0.45727 0.4961862 -0.5654443 0.45727 0.4961862 -0.5687816 0.45727 0.4961862 -0.092819 0.4662797 0.4961862 -0.2262531 0.4662797 0.4961862 -0.2875993 0.4662797 0.4961862 -0.3262122 0.4662797 0.4961862 -0.3544566 0.4662797 0.4961862 -0.3767383 0.4662797 0.4961862 -0.3951413 0.4662797 0.4961862 -0.4108177 0.4662797 0.4961862 -0.4244723 0.4662797 0.4961862 -0.4365675 0.4662797 0.4961862 -0.4474232 0.4662797 0.4961862 -0.45727 0.4662797 0.4961862 -0.4662797 0.4662797 0.4961862 -0.4745834 0.4662797 0.4961862 -0.4822838 0.4662797 0.4961862 -0.4894626 0.4662797 0.4961862 -0.4961862 0.4662797 0.4961862 -0.5025087 0.4662797 0.4961862 -0.5084753 0.4662797 0.4961862 -0.514124 0.4662797 0.4961862 -0.519487 0.4662797 0.4961862 -0.5245917 0.4662797 0.4961862 -0.529462 0.4662797 0.4961862 -0.5341183 0.4662797 0.4961862 -0.5385787 0.4662797 0.4961862 -0.5428591 0.4662797 0.4961862 -0.5469733 0.4662797 0.4961862 -0.5509339 0.4662797 0.4961862 -0.5547519 0.4662797 0.4961862 -0.5584371 0.4662797 0.4961862 -0.5619986 0.4662797 0.4961862 -0.5654443 0.4662797 0.4961862 -0.5687816 0.4662797 0.4961862 -0.092819 0.4745834 0.4961862 -0.2262531 0.4745834 0.4961862 -0.2875993 0.4745834 0.4961862 -0.3262122 0.4745834 0.4961862 -0.3544566 0.4745834 0.4961862 -0.3767383 0.4745834 0.4961862 -0.3951413 0.4745834 0.4961862 -0.4108177 0.4745834 0.4961862 -0.4244723 0.4745834 0.4961862 -0.4365675 0.4745834 0.4961862 -0.4474232 0.4745834 0.4961862 -0.45727 0.4745834 0.4961862 -0.4662797 0.4745834 0.4961862 -0.4745834 0.4745834 0.4961862 -0.4822838 0.4745834 0.4961862 -0.4894626 0.4745834 0.4961862 -0.4961862 0.4745834 0.4961862 -0.5025087 0.4745834 0.4961862 -0.5084753 0.4745834 0.4961862 -0.514124 0.4745834 0.4961862 -0.519487 0.4745834 0.4961862 -0.5245917 0.4745834 0.4961862 -0.529462 0.4745834 0.4961862 -0.5341183 0.4745834 0.4961862 -0.5385787 0.4745834 0.4961862 -0.5428591 0.4745834 0.4961862 -0.5469733 0.4745834 0.4961862 -0.5509339 0.4745834 0.4961862 -0.5547519 0.4745834 0.4961862 -0.5584371 0.4745834 0.4961862 -0.5619986 0.4745834 0.4961862 -0.5654443 0.4745834 0.4961862 -0.5687816 0.4745834 0.4961862 -0.092819 0.4822838 0.4961862 -0.2262531 0.4822838 0.4961862 -0.2875993 0.4822838 0.4961862 -0.3262122 0.4822838 0.4961862 -0.3544566 0.4822838 0.4961862 -0.3767383 0.4822838 0.4961862 -0.3951413 0.4822838 0.4961862 -0.4108177 0.4822838 0.4961862 -0.4244723 0.4822838 0.4961862 -0.4365675 0.4822838 0.4961862 -0.4474232 0.4822838 0.4961862 -0.45727 0.4822838 0.4961862 -0.4662797 0.4822838 0.4961862 -0.4745834 0.4822838 0.4961862 -0.4822838 0.4822838 0.4961862 -0.4894626 0.4822838 0.4961862 -0.4961862 0.4822838 0.4961862 -0.5025087 0.4822838 0.4961862 -0.5084753 0.4822838 0.4961862 -0.514124 0.4822838 0.4961862 -0.519487 0.4822838 0.4961862 -0.5245917 0.4822838 0.4961862 -0.529462 0.4822838 0.4961862 -0.5341183 0.4822838 0.4961862 -0.5385787 0.4822838 0.4961862 -0.5428591 0.4822838 0.4961862 -0.5469733 0.4822838 0.4961862 -0.5509339 0.4822838 0.4961862 -0.5547519 0.4822838 0.4961862 -0.5584371 0.4822838 0.4961862 -0.5619986 0.4822838 0.4961862 -0.5654443 0.4822838 0.4961862 -0.5687816 0.4822838 0.4961862 -0.092819 0.4894626 0.4961862 -0.2262531 0.4894626 0.4961862 -0.2875993 0.4894626 0.4961862 -0.3262122 0.4894626 0.4961862 -0.3544566 0.4894626 0.4961862 -0.3767383 0.4894626 0.4961862 -0.3951413 0.4894626 0.4961862 -0.4108177 0.4894626 0.4961862 -0.4244723 0.4894626 0.4961862 -0.4365675 0.4894626 0.4961862 -0.4474232 0.4894626 0.4961862 -0.45727 0.4894626 0.4961862 -0.4662797 0.4894626 0.4961862 -0.4745834 0.4894626 0.4961862 -0.4822838 0.4894626 0.4961862 -0.4894626 0.4894626 0.4961862 -0.4961862 0.4894626 0.4961862 -0.5025087 0.4894626 0.4961862 -0.5084753 0.4894626 0.4961862 -0.514124 0.4894626 0.4961862 -0.519487 0.4894626 0.4961862 -0.5245917 0.4894626 0.4961862 -0.529462 0.4894626 0.4961862 -0.5341183 0.4894626 0.4961862 -0.5385787 0.4894626 0.4961862 -0.5428591 0.4894626 0.4961862 -0.5469733 0.4894626 0.4961862 -0.5509339 0.4894626 0.4961862 -0.5547519 0.4894626 0.4961862 -0.5584371 0.4894626 0.4961862 -0.5619986 0.4894626 0.4961862 -0.5654443 0.4894626 0.4961862 -0.5687816 0.4894626 0.4961862 -0.092819 0.4961862 0.4961862 -0.2262531 0.4961862 0.4961862 -0.2875993 0.4961862 0.4961862 -0.3262122 0.4961862 0.4961862 -0.3544566 0.4961862 0.4961862 -0.3767383 0.4961862 0.4961862 -0.3951413 0.4961862 0.4961862 -0.4108177 0.4961862 0.4961862 -0.4244723 0.4961862 0.4961862 -0.4365675 0.4961862 0.4961862 -0.4474232 0.4961862 0.4961862 -0.45727 0.4961862 0.4961862 -0.4662797 0.4961862 0.4961862 -0.4745834 0.4961862 0.4961862 -0.4822838 0.4961862 0.4961862 -0.4894626 0.4961862 0.4961862 -0.4961862 0.4961862 0.4961862 -0.5025087 0.4961862 0.4961862 -0.5084753 0.4961862 0.4961862 -0.514124 0.4961862 0.4961862 -0.519487 0.4961862 0.4961862 -0.5245917 0.4961862 0.4961862 -0.529462 0.4961862 0.4961862 -0.5341183 0.4961862 0.4961862 -0.5385787 0.4961862 0.4961862 -0.5428591 0.4961862 0.4961862 -0.5469733 0.4961862 0.4961862 -0.5509339 0.4961862 0.4961862 -0.5547519 0.4961862 0.4961862 -0.5584371 0.4961862 0.4961862 -0.5619986 0.4961862 0.4961862 -0.5654443 0.4961862 0.4961862 -0.5687816 0.4961862 0.4961862 -0.092819 0.5025087 0.4961862 -0.2262531 0.5025087 0.4961862 -0.2875993 0.5025087 0.4961862 -0.3262122 0.5025087 0.4961862 -0.3544566 0.5025087 0.4961862 -0.3767383 0.5025087 0.4961862 -0.3951413 0.5025087 0.4961862 -0.4108177 0.5025087 0.4961862 -0.4244723 0.5025087 0.4961862 -0.4365675 0.5025087 0.4961862 -0.4474232 0.5025087 0.4961862 -0.45727 0.5025087 0.4961862 -0.4662797 0.5025087 0.4961862 -0.4745834 0.5025087 0.4961862 -0.4822838 0.5025087 0.4961862 -0.4894626 0.5025087 0.4961862 -0.4961862 0.5025087 0.4961862 -0.5025087 0.5025087 0.4961862 -0.5084753 0.5025087 0.4961862 -0.514124 0.5025087 0.4961862 -0.519487 0.5025087 0.4961862 -0.5245917 0.5025087 0.4961862 -0.529462 0.5025087 0.4961862 -0.5341183 0.5025087 0.4961862 -0.5385787 0.5025087 0.4961862 -0.5428591 0.5025087 0.4961862 -0.5469733 0.5025087 0.4961862 -0.5509339 0.5025087 0.4961862 -0.5547519 0.5025087 0.4961862 -0.5584371 0.5025087 0.4961862 -0.5619986 0.5025087 0.4961862 -0.5654443 0.5025087 0.4961862 -0.5687816 0.5025087 0.4961862 -0.092819 0.5084753 0.4961862 -0.2262531 0.5084753 0.4961862 -0.2875993 0.5084753 0.4961862 -0.3262122 0.5084753 0.4961862 -0.3544566 0.5084753 0.4961862 -0.3767383 0.5084753 0.4961862 -0.3951413 0.5084753 0.4961862 -0.4108177 0.5084753 0.4961862 -0.4244723 0.5084753 0.4961862 -0.4365675 0.5084753 0.4961862 -0.4474232 0.5084753 0.4961862 -0.45727 0.5084753 0.4961862 -0.4662797 0.5084753 0.4961862 -0.4745834 0.5084753 0.4961862 -0.4822838 0.5084753 0.4961862 -0.4894626 0.5084753 0.4961862 -0.4961862 0.5084753 0.4961862 -0.5025087 0.5084753 0.4961862 -0.5084753 0.5084753 0.4961862 -0.514124 0.5084753 0.4961862 -0.519487 0.5084753 0.4961862 -0.5245917 0.5084753 0.4961862 -0.529462 0.5084753 0.4961862 -0.5341183 0.5084753 0.4961862 -0.5385787 0.5084753 0.4961862 -0.5428591 0.5084753 0.4961862 -0.5469733 0.5084753 0.4961862 -0.5509339 0.5084753 0.4961862 -0.5547519 0.5084753 0.4961862 -0.5584371 0.5084753 0.4961862 -0.5619986 0.5084753 0.4961862 -0.5654443 0.5084753 0.4961862 -0.5687816 0.5084753 0.4961862 -0.092819 0.514124 0.4961862 -0.2262531 0.514124 0.4961862 -0.2875993 0.514124 0.4961862 -0.3262122 0.514124 0.4961862 -0.3544566 0.514124 0.4961862 -0.3767383 0.514124 0.4961862 -0.3951413 0.514124 0.4961862 -0.4108177 0.514124 0.4961862 -0.4244723 0.514124 0.4961862 -0.4365675 0.514124 0.4961862 -0.4474232 0.514124 0.4961862 -0.45727 0.514124 0.4961862 -0.4662797 0.514124 0.4961862 -0.4745834 0.514124 0.4961862 -0.4822838 0.514124 0.4961862 -0.4894626 0.514124 0.4961862 -0.4961862 0.514124 0.4961862 -0.5025087 0.514124 0.4961862 -0.5084753 0.514124 0.4961862 -0.514124 0.514124 0.4961862 -0.519487 0.514124 0.4961862 -0.5245917 0.514124 0.4961862 -0.529462 0.514124 0.4961862 -0.5341183 0.514124 0.4961862 -0.5385787 0.514124 0.4961862 -0.5428591 0.514124 0.4961862 -0.5469733 0.514124 0.4961862 -0.5509339 0.514124 0.4961862 -0.5547519 0.514124 0.4961862 -0.5584371 0.514124 0.4961862 -0.5619986 0.514124 0.4961862 -0.5654443 0.514124 0.4961862 -0.5687816 0.514124 0.4961862 -0.092819 0.519487 0.4961862 -0.2262531 0.519487 0.4961862 -0.2875993 0.519487 0.4961862 -0.3262122 0.519487 0.4961862 -0.3544566 0.519487 0.4961862 -0.3767383 0.519487 0.4961862 -0.3951413 0.519487 0.4961862 -0.4108177 0.519487 0.4961862 -0.4244723 0.519487 0.4961862 -0.4365675 0.519487 0.4961862 -0.4474232 0.519487 0.4961862 -0.45727 0.519487 0.4961862 -0.4662797 0.519487 0.4961862 -0.4745834 0.519487 0.4961862 -0.4822838 0.519487 0.4961862 -0.4894626 0.519487 0.4961862 -0.4961862 0.519487 0.4961862 -0.5025087 0.519487 0.4961862 -0.5084753 0.519487 0.4961862 -0.514124 0.519487 0.4961862 -0.519487 0.519487 0.4961862 -0.5245917 0.519487 0.4961862 -0.529462 0.519487 0.4961862 -0.5341183 0.519487 0.4961862 -0.5385787 0.519487 0.4961862 -0.5428591 0.519487 0.4961862 -0.5469733 0.519487 0.4961862 -0.5509339 0.519487 0.4961862 -0.5547519 0.519487 0.4961862 -0.5584371 0.519487 0.4961862 -0.5619986 0.519487 0.4961862 -0.5654443 0.519487 0.4961862 -0.5687816 0.519487 0.4961862 -0.092819 0.5245917 0.4961862 -0.2262531 0.5245917 0.4961862 -0.2875993 0.5245917 0.4961862 -0.3262122 0.5245917 0.4961862 -0.3544566 0.5245917 0.4961862 -0.3767383 0.5245917 0.4961862 -0.3951413 0.5245917 0.4961862 -0.4108177 0.5245917 0.4961862 -0.4244723 0.5245917 0.4961862 -0.4365675 0.5245917 0.4961862 -0.4474232 0.5245917 0.4961862 -0.45727 0.5245917 0.4961862 -0.4662797 0.5245917 0.4961862 -0.4745834 0.5245917 0.4961862 -0.4822838 0.5245917 0.4961862 -0.4894626 0.5245917 0.4961862 -0.4961862 0.5245917 0.4961862 -0.5025087 0.5245917 0.4961862 -0.5084753 0.5245917 0.4961862 -0.514124 0.5245917 0.4961862 -0.519487 0.5245917 0.4961862 -0.5245917 0.5245917 0.4961862 -0.529462 0.5245917 0.4961862 -0.5341183 0.5245917 0.4961862 -0.5385787 0.5245917 0.4961862 -0.5428591 0.5245917 0.4961862 -0.5469733 0.5245917 0.4961862 -0.5509339 0.5245917 0.4961862 -0.5547519 0.5245917 0.4961862 -0.5584371 0.5245917 0.4961862 -0.5619986 0.5245917 0.4961862 -0.5654443 0.5245917 0.4961862 -0.5687816 0.5245917 0.4961862 -0.092819 0.529462 0.4961862 -0.2262531 0.529462 0.4961862 -0.2875993 0.529462 0.4961862 -0.3262122 0.529462 0.4961862 -0.3544566 0.529462 0.4961862 -0.3767383 0.529462 0.4961862 -0.3951413 0.529462 0.4961862 -0.4108177 0.529462 0.4961862 -0.4244723 0.529462 0.4961862 -0.4365675 0.529462 0.4961862 -0.4474232 0.529462 0.4961862 -0.45727 0.529462 0.4961862 -0.4662797 0.529462 0.4961862 -0.4745834 0.529462 0.4961862 -0.4822838 0.529462 0.4961862 -0.4894626 0.529462 0.4961862 -0.4961862 0.529462 0.4961862 -0.5025087 0.529462 0.4961862 -0.5084753 0.529462 0.4961862 -0.514124 0.529462 0.4961862 -0.519487 0.529462 0.4961862 -0.5245917 0.529462 0.4961862 -0.529462 0.529462 0.4961862 -0.5341183 0.529462 0.4961862 -0.5385787 0.529462 0.4961862 -0.5428591 0.529462 0.4961862 -0.5469733 0.529462 0.4961862 -0.5509339 0.529462 0.4961862 -0.5547519 0.529462 0.4961862 -0.5584371 0.529462 0.4961862 -0.5619986 0.529462 0.4961862 -0.5654443 0.529462 0.4961862 -0.5687816 0.529462 0.4961862 -0.092819 0.5341183 0.4961862 -0.2262531 0.5341183 0.4961862 -0.2875993 0.5341183 0.4961862 -0.3262122 0.5341183 0.4961862 -0.3544566 0.5341183 0.4961862 -0.3767383 0.5341183 0.4961862 -0.3951413 0.5341183 0.4961862 -0.4108177 0.5341183 0.4961862 -0.4244723 0.5341183 0.4961862 -0.4365675 0.5341183 0.4961862 -0.4474232 0.5341183 0.4961862 -0.45727 0.5341183 0.4961862 -0.4662797 0.5341183 0.4961862 -0.4745834 0.5341183 0.4961862 -0.4822838 0.5341183 0.4961862 -0.4894626 0.5341183 0.4961862 -0.4961862 0.5341183 0.4961862 -0.5025087 0.5341183 0.4961862 -0.5084753 0.5341183 0.4961862 -0.514124 0.5341183 0.4961862 -0.519487 0.5341183 0.4961862 -0.5245917 0.5341183 0.4961862 -0.529462 0.5341183 0.4961862 -0.5341183 0.5341183 0.4961862 -0.5385787 0.5341183 0.4961862 -0.5428591 0.5341183 0.4961862 -0.5469733 0.5341183 0.4961862 -0.5509339 0.5341183 0.4961862 -0.5547519 0.5341183 0.4961862 -0.5584371 0.5341183 0.4961862 -0.5619986 0.5341183 0.4961862 -0.5654443 0.5341183 0.4961862 -0.5687816 0.5341183 0.4961862 -0.092819 0.5385787 0.4961862 -0.2262531 0.5385787 0.4961862 -0.2875993 0.5385787 0.4961862 -0.3262122 0.5385787 0.4961862 -0.3544566 0.5385787 0.4961862 -0.3767383 0.5385787 0.4961862 -0.3951413 0.5385787 0.4961862 -0.4108177 0.5385787 0.4961862 -0.4244723 0.5385787 0.4961862 -0.4365675 0.5385787 0.4961862 -0.4474232 0.5385787 0.4961862 -0.45727 0.5385787 0.4961862 -0.4662797 0.5385787 0.4961862 -0.4745834 0.5385787 0.4961862 -0.4822838 0.5385787 0.4961862 -0.4894626 0.5385787 0.4961862 -0.4961862 0.5385787 0.4961862 -0.5025087 0.5385787 0.4961862 -0.5084753 0.5385787 0.4961862 -0.514124 0.5385787 0.4961862 -0.519487 0.5385787 0.4961862 -0.5245917 0.5385787 0.4961862 -0.529462 0.5385787 0.4961862 -0.5341183 0.5385787 0.4961862 -0.5385787 0.5385787 0.4961862 -0.5428591 0.5385787 0.4961862 -0.5469733 0.5385787 0.4961862 -0.5509339 0.5385787 0.4961862 -0.5547519 0.5385787 0.4961862 -0.5584371 0.5385787 0.4961862 -0.5619986 0.5385787 0.4961862 -0.5654443 0.5385787 0.4961862 -0.5687816 0.5385787 0.4961862 -0.092819 0.5428591 0.4961862 -0.2262531 0.5428591 0.4961862 -0.2875993 0.5428591 0.4961862 -0.3262122 0.5428591 0.4961862 -0.3544566 0.5428591 0.4961862 -0.3767383 0.5428591 0.4961862 -0.3951413 0.5428591 0.4961862 -0.4108177 0.5428591 0.4961862 -0.4244723 0.5428591 0.4961862 -0.4365675 0.5428591 0.4961862 -0.4474232 0.5428591 0.4961862 -0.45727 0.5428591 0.4961862 -0.4662797 0.5428591 0.4961862 -0.4745834 0.5428591 0.4961862 -0.4822838 0.5428591 0.4961862 -0.4894626 0.5428591 0.4961862 -0.4961862 0.5428591 0.4961862 -0.5025087 0.5428591 0.4961862 -0.5084753 0.5428591 0.4961862 -0.514124 0.5428591 0.4961862 -0.519487 0.5428591 0.4961862 -0.5245917 0.5428591 0.4961862 -0.529462 0.5428591 0.4961862 -0.5341183 0.5428591 0.4961862 -0.5385787 0.5428591 0.4961862 -0.5428591 0.5428591 0.4961862 -0.5469733 0.5428591 0.4961862 -0.5509339 0.5428591 0.4961862 -0.5547519 0.5428591 0.4961862 -0.5584371 0.5428591 0.4961862 -0.5619986 0.5428591 0.4961862 -0.5654443 0.5428591 0.4961862 -0.5687816 0.5428591 0.4961862 -0.092819 0.5469733 0.4961862 -0.2262531 0.5469733 0.4961862 -0.2875993 0.5469733 0.4961862 -0.3262122 0.5469733 0.4961862 -0.3544566 0.5469733 0.4961862 -0.3767383 0.5469733 0.4961862 -0.3951413 0.5469733 0.4961862 -0.4108177 0.5469733 0.4961862 -0.4244723 0.5469733 0.4961862 -0.4365675 0.5469733 0.4961862 -0.4474232 0.5469733 0.4961862 -0.45727 0.5469733 0.4961862 -0.4662797 0.5469733 0.4961862 -0.4745834 0.5469733 0.4961862 -0.4822838 0.5469733 0.4961862 -0.4894626 0.5469733 0.4961862 -0.4961862 0.5469733 0.4961862 -0.5025087 0.5469733 0.4961862 -0.5084753 0.5469733 0.4961862 -0.514124 0.5469733 0.4961862 -0.519487 0.5469733 0.4961862 -0.5245917 0.5469733 0.4961862 -0.529462 0.5469733 0.4961862 -0.5341183 0.5469733 0.4961862 -0.5385787 0.5469733 0.4961862 -0.5428591 0.5469733 0.4961862 -0.5469733 0.5469733 0.4961862 -0.5509339 0.5469733 0.4961862 -0.5547519 0.5469733 0.4961862 -0.5584371 0.5469733 0.4961862 -0.5619986 0.5469733 0.4961862 -0.5654443 0.5469733 0.4961862 -0.5687816 0.5469733 0.4961862 -0.092819 0.5509339 0.4961862 -0.2262531 0.5509339 0.4961862 -0.2875993 0.5509339 0.4961862 -0.3262122 0.5509339 0.4961862 -0.3544566 0.5509339 0.4961862 -0.3767383 0.5509339 0.4961862 -0.3951413 0.5509339 0.4961862 -0.4108177 0.5509339 0.4961862 -0.4244723 0.5509339 0.4961862 -0.4365675 0.5509339 0.4961862 -0.4474232 0.5509339 0.4961862 -0.45727 0.5509339 0.4961862 -0.4662797 0.5509339 0.4961862 -0.4745834 0.5509339 0.4961862 -0.4822838 0.5509339 0.4961862 -0.4894626 0.5509339 0.4961862 -0.4961862 0.5509339 0.4961862 -0.5025087 0.5509339 0.4961862 -0.5084753 0.5509339 0.4961862 -0.514124 0.5509339 0.4961862 -0.519487 0.5509339 0.4961862 -0.5245917 0.5509339 0.4961862 -0.529462 0.5509339 0.4961862 -0.5341183 0.5509339 0.4961862 -0.5385787 0.5509339 0.4961862 -0.5428591 0.5509339 0.4961862 -0.5469733 0.5509339 0.4961862 -0.5509339 0.5509339 0.4961862 -0.5547519 0.5509339 0.4961862 -0.5584371 0.5509339 0.4961862 -0.5619986 0.5509339 0.4961862 -0.5654443 0.5509339 0.4961862 -0.5687816 0.5509339 0.4961862 -0.092819 0.5547519 0.4961862 -0.2262531 0.5547519 0.4961862 -0.2875993 0.5547519 0.4961862 -0.3262122 0.5547519 0.4961862 -0.3544566 0.5547519 0.4961862 -0.3767383 0.5547519 0.4961862 -0.3951413 0.5547519 0.4961862 -0.4108177 0.5547519 0.4961862 -0.4244723 0.5547519 0.4961862 -0.4365675 0.5547519 0.4961862 -0.4474232 0.5547519 0.4961862 -0.45727 0.5547519 0.4961862 -0.4662797 0.5547519 0.4961862 -0.4745834 0.5547519 0.4961862 -0.4822838 0.5547519 0.4961862 -0.4894626 0.5547519 0.4961862 -0.4961862 0.5547519 0.4961862 -0.5025087 0.5547519 0.4961862 -0.5084753 0.5547519 0.4961862 -0.514124 0.5547519 0.4961862 -0.519487 0.5547519 0.4961862 -0.5245917 0.5547519 0.4961862 -0.529462 0.5547519 0.4961862 -0.5341183 0.5547519 0.4961862 -0.5385787 0.5547519 0.4961862 -0.5428591 0.5547519 0.4961862 -0.5469733 0.5547519 0.4961862 -0.5509339 0.5547519 0.4961862 -0.5547519 0.5547519 0.4961862 -0.5584371 0.5547519 0.4961862 -0.5619986 0.5547519 0.4961862 -0.5654443 0.5547519 0.4961862 -0.5687816 0.5547519 0.4961862 -0.092819 0.5584371 0.4961862 -0.2262531 0.5584371 0.4961862 -0.2875993 0.5584371 0.4961862 -0.3262122 0.5584371 0.4961862 -0.3544566 0.5584371 0.4961862 -0.3767383 0.5584371 0.4961862 -0.3951413 0.5584371 0.4961862 -0.4108177 0.5584371 0.4961862 -0.4244723 0.5584371 0.4961862 -0.4365675 0.5584371 0.4961862 -0.4474232 0.5584371 0.4961862 -0.45727 0.5584371 0.4961862 -0.4662797 0.5584371 0.4961862 -0.4745834 0.5584371 0.4961862 -0.4822838 0.5584371 0.4961862 -0.4894626 0.5584371 0.4961862 -0.4961862 0.5584371 0.4961862 -0.5025087 0.5584371 0.4961862 -0.5084753 0.5584371 0.4961862 -0.514124 0.5584371 0.4961862 -0.519487 0.5584371 0.4961862 -0.5245917 0.5584371 0.4961862 -0.529462 0.5584371 0.4961862 -0.5341183 0.5584371 0.4961862 -0.5385787 0.5584371 0.4961862 -0.5428591 0.5584371 0.4961862 -0.5469733 0.5584371 0.4961862 -0.5509339 0.5584371 0.4961862 -0.5547519 0.5584371 0.4961862 -0.5584371 0.5584371 0.4961862 -0.5619986 0.5584371 0.4961862 -0.5654443 0.5584371 0.4961862 -0.5687816 0.5584371 0.4961862 -0.092819 0.5619986 0.4961862 -0.2262531 0.5619986 0.4961862 -0.2875993 0.5619986 0.4961862 -0.3262122 0.5619986 0.4961862 -0.3544566 0.5619986 0.4961862 -0.3767383 0.5619986 0.4961862 -0.3951413 0.5619986 0.4961862 -0.4108177 0.5619986 0.4961862 -0.4244723 0.5619986 0.4961862 -0.4365675 0.5619986 0.4961862 -0.4474232 0.5619986 0.4961862 -0.45727 0.5619986 0.4961862 -0.4662797 0.5619986 0.4961862 -0.4745834 0.5619986 0.4961862 -0.4822838 0.5619986 0.4961862 -0.4894626 0.5619986 0.4961862 -0.4961862 0.5619986 0.4961862 -0.5025087 0.5619986 0.4961862 -0.5084753 0.5619986 0.4961862 -0.514124 0.5619986 0.4961862 -0.519487 0.5619986 0.4961862 -0.5245917 0.5619986 0.4961862 -0.529462 0.5619986 0.4961862 -0.5341183 0.5619986 0.4961862 -0.5385787 0.5619986 0.4961862 -0.5428591 0.5619986 0.4961862 -0.5469733 0.5619986 0.4961862 -0.5509339 0.5619986 0.4961862 -0.5547519 0.5619986 0.4961862 -0.5584371 0.5619986 0.4961862 -0.5619986 0.5619986 0.4961862 -0.5654443 0.5619986 0.4961862 -0.5687816 0.5619986 0.4961862 -0.092819 0.5654443 0.4961862 -0.2262531 0.5654443 0.4961862 -0.2875993 0.5654443 0.4961862 -0.3262122 0.5654443 0.4961862 -0.3544566 0.5654443 0.4961862 -0.3767383 0.5654443 0.4961862 -0.3951413 0.5654443 0.4961862 -0.4108177 0.5654443 0.4961862 -0.4244723 0.5654443 0.4961862 -0.4365675 0.5654443 0.4961862 -0.4474232 0.5654443 0.4961862 -0.45727 0.5654443 0.4961862 -0.4662797 0.5654443 0.4961862 -0.4745834 0.5654443 0.4961862 -0.4822838 0.5654443 0.4961862 -0.4894626 0.5654443 0.4961862 -0.4961862 0.5654443 0.4961862 -0.5025087 0.5654443 0.4961862 -0.5084753 0.5654443 0.4961862 -0.514124 0.5654443 0.4961862 -0.519487 0.5654443 0.4961862 -0.5245917 0.5654443 0.4961862 -0.529462 0.5654443 0.4961862 -0.5341183 0.5654443 0.4961862 -0.5385787 0.5654443 0.4961862 -0.5428591 0.5654443 0.4961862 -0.5469733 0.5654443 0.4961862 -0.5509339 0.5654443 0.4961862 -0.5547519 0.5654443 0.4961862 -0.5584371 0.5654443 0.4961862 -0.5619986 0.5654443 0.4961862 -0.5654443 0.5654443 0.4961862 -0.5687816 0.5654443 0.4961862 -0.092819 0.5687816 0.4961862 -0.2262531 0.5687816 0.4961862 -0.2875993 0.5687816 0.4961862 -0.3262122 0.5687816 0.4961862 -0.3544566 0.5687816 0.4961862 -0.3767383 0.5687816 0.4961862 -0.3951413 0.5687816 0.4961862 -0.4108177 0.5687816 0.4961862 -0.4244723 0.5687816 0.4961862 -0.4365675 0.5687816 0.4961862 -0.4474232 0.5687816 0.4961862 -0.45727 0.5687816 0.4961862 -0.4662797 0.5687816 0.4961862 -0.4745834 0.5687816 0.4961862 -0.4822838 0.5687816 0.4961862 -0.4894626 0.5687816 0.4961862 -0.4961862 0.5687816 0.4961862 -0.5025087 0.5687816 0.4961862 -0.5084753 0.5687816 0.4961862 -0.514124 0.5687816 0.4961862 -0.519487 0.5687816 0.4961862 -0.5245917 0.5687816 0.4961862 -0.529462 0.5687816 0.4961862 -0.5341183 0.5687816 0.4961862 -0.5385787 0.5687816 0.4961862 -0.5428591 0.5687816 0.4961862 -0.5469733 0.5687816 0.4961862 -0.5509339 0.5687816 0.4961862 -0.5547519 0.5687816 0.4961862 -0.5584371 0.5687816 0.4961862 -0.5619986 0.5687816 0.4961862 -0.5654443 0.5687816 0.4961862 -0.5687816 0.5687816 0.4961862 -0.092819 0.092819 0.5025087 -0.2262531 0.092819 0.5025087 -0.2875993 0.092819 0.5025087 -0.3262122 0.092819 0.5025087 -0.3544566 0.092819 0.5025087 -0.3767383 0.092819 0.5025087 -0.3951413 0.092819 0.5025087 -0.4108177 0.092819 0.5025087 -0.4244723 0.092819 0.5025087 -0.4365675 0.092819 0.5025087 -0.4474232 0.092819 0.5025087 -0.45727 0.092819 0.5025087 -0.4662797 0.092819 0.5025087 -0.4745834 0.092819 0.5025087 -0.4822838 0.092819 0.5025087 -0.4894626 0.092819 0.5025087 -0.4961862 0.092819 0.5025087 -0.5025087 0.092819 0.5025087 -0.5084753 0.092819 0.5025087 -0.514124 0.092819 0.5025087 -0.519487 0.092819 0.5025087 -0.5245917 0.092819 0.5025087 -0.529462 0.092819 0.5025087 -0.5341183 0.092819 0.5025087 -0.5385787 0.092819 0.5025087 -0.5428591 0.092819 0.5025087 -0.5469733 0.092819 0.5025087 -0.5509339 0.092819 0.5025087 -0.5547519 0.092819 0.5025087 -0.5584371 0.092819 0.5025087 -0.5619986 0.092819 0.5025087 -0.5654443 0.092819 0.5025087 -0.5687816 0.092819 0.5025087 -0.092819 0.2262531 0.5025087 -0.2262531 0.2262531 0.5025087 -0.2875993 0.2262531 0.5025087 -0.3262122 0.2262531 0.5025087 -0.3544566 0.2262531 0.5025087 -0.3767383 0.2262531 0.5025087 -0.3951413 0.2262531 0.5025087 -0.4108177 0.2262531 0.5025087 -0.4244723 0.2262531 0.5025087 -0.4365675 0.2262531 0.5025087 -0.4474232 0.2262531 0.5025087 -0.45727 0.2262531 0.5025087 -0.4662797 0.2262531 0.5025087 -0.4745834 0.2262531 0.5025087 -0.4822838 0.2262531 0.5025087 -0.4894626 0.2262531 0.5025087 -0.4961862 0.2262531 0.5025087 -0.5025087 0.2262531 0.5025087 -0.5084753 0.2262531 0.5025087 -0.514124 0.2262531 0.5025087 -0.519487 0.2262531 0.5025087 -0.5245917 0.2262531 0.5025087 -0.529462 0.2262531 0.5025087 -0.5341183 0.2262531 0.5025087 -0.5385787 0.2262531 0.5025087 -0.5428591 0.2262531 0.5025087 -0.5469733 0.2262531 0.5025087 -0.5509339 0.2262531 0.5025087 -0.5547519 0.2262531 0.5025087 -0.5584371 0.2262531 0.5025087 -0.5619986 0.2262531 0.5025087 -0.5654443 0.2262531 0.5025087 -0.5687816 0.2262531 0.5025087 -0.092819 0.2875993 0.5025087 -0.2262531 0.2875993 0.5025087 -0.2875993 0.2875993 0.5025087 -0.3262122 0.2875993 0.5025087 -0.3544566 0.2875993 0.5025087 -0.3767383 0.2875993 0.5025087 -0.3951413 0.2875993 0.5025087 -0.4108177 0.2875993 0.5025087 -0.4244723 0.2875993 0.5025087 -0.4365675 0.2875993 0.5025087 -0.4474232 0.2875993 0.5025087 -0.45727 0.2875993 0.5025087 -0.4662797 0.2875993 0.5025087 -0.4745834 0.2875993 0.5025087 -0.4822838 0.2875993 0.5025087 -0.4894626 0.2875993 0.5025087 -0.4961862 0.2875993 0.5025087 -0.5025087 0.2875993 0.5025087 -0.5084753 0.2875993 0.5025087 -0.514124 0.2875993 0.5025087 -0.519487 0.2875993 0.5025087 -0.5245917 0.2875993 0.5025087 -0.529462 0.2875993 0.5025087 -0.5341183 0.2875993 0.5025087 -0.5385787 0.2875993 0.5025087 -0.5428591 0.2875993 0.5025087 -0.5469733 0.2875993 0.5025087 -0.5509339 0.2875993 0.5025087 -0.5547519 0.2875993 0.5025087 -0.5584371 0.2875993 0.5025087 -0.5619986 0.2875993 0.5025087 -0.5654443 0.2875993 0.5025087 -0.5687816 0.2875993 0.5025087 -0.092819 0.3262122 0.5025087 -0.2262531 0.3262122 0.5025087 -0.2875993 0.3262122 0.5025087 -0.3262122 0.3262122 0.5025087 -0.3544566 0.3262122 0.5025087 -0.3767383 0.3262122 0.5025087 -0.3951413 0.3262122 0.5025087 -0.4108177 0.3262122 0.5025087 -0.4244723 0.3262122 0.5025087 -0.4365675 0.3262122 0.5025087 -0.4474232 0.3262122 0.5025087 -0.45727 0.3262122 0.5025087 -0.4662797 0.3262122 0.5025087 -0.4745834 0.3262122 0.5025087 -0.4822838 0.3262122 0.5025087 -0.4894626 0.3262122 0.5025087 -0.4961862 0.3262122 0.5025087 -0.5025087 0.3262122 0.5025087 -0.5084753 0.3262122 0.5025087 -0.514124 0.3262122 0.5025087 -0.519487 0.3262122 0.5025087 -0.5245917 0.3262122 0.5025087 -0.529462 0.3262122 0.5025087 -0.5341183 0.3262122 0.5025087 -0.5385787 0.3262122 0.5025087 -0.5428591 0.3262122 0.5025087 -0.5469733 0.3262122 0.5025087 -0.5509339 0.3262122 0.5025087 -0.5547519 0.3262122 0.5025087 -0.5584371 0.3262122 0.5025087 -0.5619986 0.3262122 0.5025087 -0.5654443 0.3262122 0.5025087 -0.5687816 0.3262122 0.5025087 -0.092819 0.3544566 0.5025087 -0.2262531 0.3544566 0.5025087 -0.2875993 0.3544566 0.5025087 -0.3262122 0.3544566 0.5025087 -0.3544566 0.3544566 0.5025087 -0.3767383 0.3544566 0.5025087 -0.3951413 0.3544566 0.5025087 -0.4108177 0.3544566 0.5025087 -0.4244723 0.3544566 0.5025087 -0.4365675 0.3544566 0.5025087 -0.4474232 0.3544566 0.5025087 -0.45727 0.3544566 0.5025087 -0.4662797 0.3544566 0.5025087 -0.4745834 0.3544566 0.5025087 -0.4822838 0.3544566 0.5025087 -0.4894626 0.3544566 0.5025087 -0.4961862 0.3544566 0.5025087 -0.5025087 0.3544566 0.5025087 -0.5084753 0.3544566 0.5025087 -0.514124 0.3544566 0.5025087 -0.519487 0.3544566 0.5025087 -0.5245917 0.3544566 0.5025087 -0.529462 0.3544566 0.5025087 -0.5341183 0.3544566 0.5025087 -0.5385787 0.3544566 0.5025087 -0.5428591 0.3544566 0.5025087 -0.5469733 0.3544566 0.5025087 -0.5509339 0.3544566 0.5025087 -0.5547519 0.3544566 0.5025087 -0.5584371 0.3544566 0.5025087 -0.5619986 0.3544566 0.5025087 -0.5654443 0.3544566 0.5025087 -0.5687816 0.3544566 0.5025087 -0.092819 0.3767383 0.5025087 -0.2262531 0.3767383 0.5025087 -0.2875993 0.3767383 0.5025087 -0.3262122 0.3767383 0.5025087 -0.3544566 0.3767383 0.5025087 -0.3767383 0.3767383 0.5025087 -0.3951413 0.3767383 0.5025087 -0.4108177 0.3767383 0.5025087 -0.4244723 0.3767383 0.5025087 -0.4365675 0.3767383 0.5025087 -0.4474232 0.3767383 0.5025087 -0.45727 0.3767383 0.5025087 -0.4662797 0.3767383 0.5025087 -0.4745834 0.3767383 0.5025087 -0.4822838 0.3767383 0.5025087 -0.4894626 0.3767383 0.5025087 -0.4961862 0.3767383 0.5025087 -0.5025087 0.3767383 0.5025087 -0.5084753 0.3767383 0.5025087 -0.514124 0.3767383 0.5025087 -0.519487 0.3767383 0.5025087 -0.5245917 0.3767383 0.5025087 -0.529462 0.3767383 0.5025087 -0.5341183 0.3767383 0.5025087 -0.5385787 0.3767383 0.5025087 -0.5428591 0.3767383 0.5025087 -0.5469733 0.3767383 0.5025087 -0.5509339 0.3767383 0.5025087 -0.5547519 0.3767383 0.5025087 -0.5584371 0.3767383 0.5025087 -0.5619986 0.3767383 0.5025087 -0.5654443 0.3767383 0.5025087 -0.5687816 0.3767383 0.5025087 -0.092819 0.3951413 0.5025087 -0.2262531 0.3951413 0.5025087 -0.2875993 0.3951413 0.5025087 -0.3262122 0.3951413 0.5025087 -0.3544566 0.3951413 0.5025087 -0.3767383 0.3951413 0.5025087 -0.3951413 0.3951413 0.5025087 -0.4108177 0.3951413 0.5025087 -0.4244723 0.3951413 0.5025087 -0.4365675 0.3951413 0.5025087 -0.4474232 0.3951413 0.5025087 -0.45727 0.3951413 0.5025087 -0.4662797 0.3951413 0.5025087 -0.4745834 0.3951413 0.5025087 -0.4822838 0.3951413 0.5025087 -0.4894626 0.3951413 0.5025087 -0.4961862 0.3951413 0.5025087 -0.5025087 0.3951413 0.5025087 -0.5084753 0.3951413 0.5025087 -0.514124 0.3951413 0.5025087 -0.519487 0.3951413 0.5025087 -0.5245917 0.3951413 0.5025087 -0.529462 0.3951413 0.5025087 -0.5341183 0.3951413 0.5025087 -0.5385787 0.3951413 0.5025087 -0.5428591 0.3951413 0.5025087 -0.5469733 0.3951413 0.5025087 -0.5509339 0.3951413 0.5025087 -0.5547519 0.3951413 0.5025087 -0.5584371 0.3951413 0.5025087 -0.5619986 0.3951413 0.5025087 -0.5654443 0.3951413 0.5025087 -0.5687816 0.3951413 0.5025087 -0.092819 0.4108177 0.5025087 -0.2262531 0.4108177 0.5025087 -0.2875993 0.4108177 0.5025087 -0.3262122 0.4108177 0.5025087 -0.3544566 0.4108177 0.5025087 -0.3767383 0.4108177 0.5025087 -0.3951413 0.4108177 0.5025087 -0.4108177 0.4108177 0.5025087 -0.4244723 0.4108177 0.5025087 -0.4365675 0.4108177 0.5025087 -0.4474232 0.4108177 0.5025087 -0.45727 0.4108177 0.5025087 -0.4662797 0.4108177 0.5025087 -0.4745834 0.4108177 0.5025087 -0.4822838 0.4108177 0.5025087 -0.4894626 0.4108177 0.5025087 -0.4961862 0.4108177 0.5025087 -0.5025087 0.4108177 0.5025087 -0.5084753 0.4108177 0.5025087 -0.514124 0.4108177 0.5025087 -0.519487 0.4108177 0.5025087 -0.5245917 0.4108177 0.5025087 -0.529462 0.4108177 0.5025087 -0.5341183 0.4108177 0.5025087 -0.5385787 0.4108177 0.5025087 -0.5428591 0.4108177 0.5025087 -0.5469733 0.4108177 0.5025087 -0.5509339 0.4108177 0.5025087 -0.5547519 0.4108177 0.5025087 -0.5584371 0.4108177 0.5025087 -0.5619986 0.4108177 0.5025087 -0.5654443 0.4108177 0.5025087 -0.5687816 0.4108177 0.5025087 -0.092819 0.4244723 0.5025087 -0.2262531 0.4244723 0.5025087 -0.2875993 0.4244723 0.5025087 -0.3262122 0.4244723 0.5025087 -0.3544566 0.4244723 0.5025087 -0.3767383 0.4244723 0.5025087 -0.3951413 0.4244723 0.5025087 -0.4108177 0.4244723 0.5025087 -0.4244723 0.4244723 0.5025087 -0.4365675 0.4244723 0.5025087 -0.4474232 0.4244723 0.5025087 -0.45727 0.4244723 0.5025087 -0.4662797 0.4244723 0.5025087 -0.4745834 0.4244723 0.5025087 -0.4822838 0.4244723 0.5025087 -0.4894626 0.4244723 0.5025087 -0.4961862 0.4244723 0.5025087 -0.5025087 0.4244723 0.5025087 -0.5084753 0.4244723 0.5025087 -0.514124 0.4244723 0.5025087 -0.519487 0.4244723 0.5025087 -0.5245917 0.4244723 0.5025087 -0.529462 0.4244723 0.5025087 -0.5341183 0.4244723 0.5025087 -0.5385787 0.4244723 0.5025087 -0.5428591 0.4244723 0.5025087 -0.5469733 0.4244723 0.5025087 -0.5509339 0.4244723 0.5025087 -0.5547519 0.4244723 0.5025087 -0.5584371 0.4244723 0.5025087 -0.5619986 0.4244723 0.5025087 -0.5654443 0.4244723 0.5025087 -0.5687816 0.4244723 0.5025087 -0.092819 0.4365675 0.5025087 -0.2262531 0.4365675 0.5025087 -0.2875993 0.4365675 0.5025087 -0.3262122 0.4365675 0.5025087 -0.3544566 0.4365675 0.5025087 -0.3767383 0.4365675 0.5025087 -0.3951413 0.4365675 0.5025087 -0.4108177 0.4365675 0.5025087 -0.4244723 0.4365675 0.5025087 -0.4365675 0.4365675 0.5025087 -0.4474232 0.4365675 0.5025087 -0.45727 0.4365675 0.5025087 -0.4662797 0.4365675 0.5025087 -0.4745834 0.4365675 0.5025087 -0.4822838 0.4365675 0.5025087 -0.4894626 0.4365675 0.5025087 -0.4961862 0.4365675 0.5025087 -0.5025087 0.4365675 0.5025087 -0.5084753 0.4365675 0.5025087 -0.514124 0.4365675 0.5025087 -0.519487 0.4365675 0.5025087 -0.5245917 0.4365675 0.5025087 -0.529462 0.4365675 0.5025087 -0.5341183 0.4365675 0.5025087 -0.5385787 0.4365675 0.5025087 -0.5428591 0.4365675 0.5025087 -0.5469733 0.4365675 0.5025087 -0.5509339 0.4365675 0.5025087 -0.5547519 0.4365675 0.5025087 -0.5584371 0.4365675 0.5025087 -0.5619986 0.4365675 0.5025087 -0.5654443 0.4365675 0.5025087 -0.5687816 0.4365675 0.5025087 -0.092819 0.4474232 0.5025087 -0.2262531 0.4474232 0.5025087 -0.2875993 0.4474232 0.5025087 -0.3262122 0.4474232 0.5025087 -0.3544566 0.4474232 0.5025087 -0.3767383 0.4474232 0.5025087 -0.3951413 0.4474232 0.5025087 -0.4108177 0.4474232 0.5025087 -0.4244723 0.4474232 0.5025087 -0.4365675 0.4474232 0.5025087 -0.4474232 0.4474232 0.5025087 -0.45727 0.4474232 0.5025087 -0.4662797 0.4474232 0.5025087 -0.4745834 0.4474232 0.5025087 -0.4822838 0.4474232 0.5025087 -0.4894626 0.4474232 0.5025087 -0.4961862 0.4474232 0.5025087 -0.5025087 0.4474232 0.5025087 -0.5084753 0.4474232 0.5025087 -0.514124 0.4474232 0.5025087 -0.519487 0.4474232 0.5025087 -0.5245917 0.4474232 0.5025087 -0.529462 0.4474232 0.5025087 -0.5341183 0.4474232 0.5025087 -0.5385787 0.4474232 0.5025087 -0.5428591 0.4474232 0.5025087 -0.5469733 0.4474232 0.5025087 -0.5509339 0.4474232 0.5025087 -0.5547519 0.4474232 0.5025087 -0.5584371 0.4474232 0.5025087 -0.5619986 0.4474232 0.5025087 -0.5654443 0.4474232 0.5025087 -0.5687816 0.4474232 0.5025087 -0.092819 0.45727 0.5025087 -0.2262531 0.45727 0.5025087 -0.2875993 0.45727 0.5025087 -0.3262122 0.45727 0.5025087 -0.3544566 0.45727 0.5025087 -0.3767383 0.45727 0.5025087 -0.3951413 0.45727 0.5025087 -0.4108177 0.45727 0.5025087 -0.4244723 0.45727 0.5025087 -0.4365675 0.45727 0.5025087 -0.4474232 0.45727 0.5025087 -0.45727 0.45727 0.5025087 -0.4662797 0.45727 0.5025087 -0.4745834 0.45727 0.5025087 -0.4822838 0.45727 0.5025087 -0.4894626 0.45727 0.5025087 -0.4961862 0.45727 0.5025087 -0.5025087 0.45727 0.5025087 -0.5084753 0.45727 0.5025087 -0.514124 0.45727 0.5025087 -0.519487 0.45727 0.5025087 -0.5245917 0.45727 0.5025087 -0.529462 0.45727 0.5025087 -0.5341183 0.45727 0.5025087 -0.5385787 0.45727 0.5025087 -0.5428591 0.45727 0.5025087 -0.5469733 0.45727 0.5025087 -0.5509339 0.45727 0.5025087 -0.5547519 0.45727 0.5025087 -0.5584371 0.45727 0.5025087 -0.5619986 0.45727 0.5025087 -0.5654443 0.45727 0.5025087 -0.5687816 0.45727 0.5025087 -0.092819 0.4662797 0.5025087 -0.2262531 0.4662797 0.5025087 -0.2875993 0.4662797 0.5025087 -0.3262122 0.4662797 0.5025087 -0.3544566 0.4662797 0.5025087 -0.3767383 0.4662797 0.5025087 -0.3951413 0.4662797 0.5025087 -0.4108177 0.4662797 0.5025087 -0.4244723 0.4662797 0.5025087 -0.4365675 0.4662797 0.5025087 -0.4474232 0.4662797 0.5025087 -0.45727 0.4662797 0.5025087 -0.4662797 0.4662797 0.5025087 -0.4745834 0.4662797 0.5025087 -0.4822838 0.4662797 0.5025087 -0.4894626 0.4662797 0.5025087 -0.4961862 0.4662797 0.5025087 -0.5025087 0.4662797 0.5025087 -0.5084753 0.4662797 0.5025087 -0.514124 0.4662797 0.5025087 -0.519487 0.4662797 0.5025087 -0.5245917 0.4662797 0.5025087 -0.529462 0.4662797 0.5025087 -0.5341183 0.4662797 0.5025087 -0.5385787 0.4662797 0.5025087 -0.5428591 0.4662797 0.5025087 -0.5469733 0.4662797 0.5025087 -0.5509339 0.4662797 0.5025087 -0.5547519 0.4662797 0.5025087 -0.5584371 0.4662797 0.5025087 -0.5619986 0.4662797 0.5025087 -0.5654443 0.4662797 0.5025087 -0.5687816 0.4662797 0.5025087 -0.092819 0.4745834 0.5025087 -0.2262531 0.4745834 0.5025087 -0.2875993 0.4745834 0.5025087 -0.3262122 0.4745834 0.5025087 -0.3544566 0.4745834 0.5025087 -0.3767383 0.4745834 0.5025087 -0.3951413 0.4745834 0.5025087 -0.4108177 0.4745834 0.5025087 -0.4244723 0.4745834 0.5025087 -0.4365675 0.4745834 0.5025087 -0.4474232 0.4745834 0.5025087 -0.45727 0.4745834 0.5025087 -0.4662797 0.4745834 0.5025087 -0.4745834 0.4745834 0.5025087 -0.4822838 0.4745834 0.5025087 -0.4894626 0.4745834 0.5025087 -0.4961862 0.4745834 0.5025087 -0.5025087 0.4745834 0.5025087 -0.5084753 0.4745834 0.5025087 -0.514124 0.4745834 0.5025087 -0.519487 0.4745834 0.5025087 -0.5245917 0.4745834 0.5025087 -0.529462 0.4745834 0.5025087 -0.5341183 0.4745834 0.5025087 -0.5385787 0.4745834 0.5025087 -0.5428591 0.4745834 0.5025087 -0.5469733 0.4745834 0.5025087 -0.5509339 0.4745834 0.5025087 -0.5547519 0.4745834 0.5025087 -0.5584371 0.4745834 0.5025087 -0.5619986 0.4745834 0.5025087 -0.5654443 0.4745834 0.5025087 -0.5687816 0.4745834 0.5025087 -0.092819 0.4822838 0.5025087 -0.2262531 0.4822838 0.5025087 -0.2875993 0.4822838 0.5025087 -0.3262122 0.4822838 0.5025087 -0.3544566 0.4822838 0.5025087 -0.3767383 0.4822838 0.5025087 -0.3951413 0.4822838 0.5025087 -0.4108177 0.4822838 0.5025087 -0.4244723 0.4822838 0.5025087 -0.4365675 0.4822838 0.5025087 -0.4474232 0.4822838 0.5025087 -0.45727 0.4822838 0.5025087 -0.4662797 0.4822838 0.5025087 -0.4745834 0.4822838 0.5025087 -0.4822838 0.4822838 0.5025087 -0.4894626 0.4822838 0.5025087 -0.4961862 0.4822838 0.5025087 -0.5025087 0.4822838 0.5025087 -0.5084753 0.4822838 0.5025087 -0.514124 0.4822838 0.5025087 -0.519487 0.4822838 0.5025087 -0.5245917 0.4822838 0.5025087 -0.529462 0.4822838 0.5025087 -0.5341183 0.4822838 0.5025087 -0.5385787 0.4822838 0.5025087 -0.5428591 0.4822838 0.5025087 -0.5469733 0.4822838 0.5025087 -0.5509339 0.4822838 0.5025087 -0.5547519 0.4822838 0.5025087 -0.5584371 0.4822838 0.5025087 -0.5619986 0.4822838 0.5025087 -0.5654443 0.4822838 0.5025087 -0.5687816 0.4822838 0.5025087 -0.092819 0.4894626 0.5025087 -0.2262531 0.4894626 0.5025087 -0.2875993 0.4894626 0.5025087 -0.3262122 0.4894626 0.5025087 -0.3544566 0.4894626 0.5025087 -0.3767383 0.4894626 0.5025087 -0.3951413 0.4894626 0.5025087 -0.4108177 0.4894626 0.5025087 -0.4244723 0.4894626 0.5025087 -0.4365675 0.4894626 0.5025087 -0.4474232 0.4894626 0.5025087 -0.45727 0.4894626 0.5025087 -0.4662797 0.4894626 0.5025087 -0.4745834 0.4894626 0.5025087 -0.4822838 0.4894626 0.5025087 -0.4894626 0.4894626 0.5025087 -0.4961862 0.4894626 0.5025087 -0.5025087 0.4894626 0.5025087 -0.5084753 0.4894626 0.5025087 -0.514124 0.4894626 0.5025087 -0.519487 0.4894626 0.5025087 -0.5245917 0.4894626 0.5025087 -0.529462 0.4894626 0.5025087 -0.5341183 0.4894626 0.5025087 -0.5385787 0.4894626 0.5025087 -0.5428591 0.4894626 0.5025087 -0.5469733 0.4894626 0.5025087 -0.5509339 0.4894626 0.5025087 -0.5547519 0.4894626 0.5025087 -0.5584371 0.4894626 0.5025087 -0.5619986 0.4894626 0.5025087 -0.5654443 0.4894626 0.5025087 -0.5687816 0.4894626 0.5025087 -0.092819 0.4961862 0.5025087 -0.2262531 0.4961862 0.5025087 -0.2875993 0.4961862 0.5025087 -0.3262122 0.4961862 0.5025087 -0.3544566 0.4961862 0.5025087 -0.3767383 0.4961862 0.5025087 -0.3951413 0.4961862 0.5025087 -0.4108177 0.4961862 0.5025087 -0.4244723 0.4961862 0.5025087 -0.4365675 0.4961862 0.5025087 -0.4474232 0.4961862 0.5025087 -0.45727 0.4961862 0.5025087 -0.4662797 0.4961862 0.5025087 -0.4745834 0.4961862 0.5025087 -0.4822838 0.4961862 0.5025087 -0.4894626 0.4961862 0.5025087 -0.4961862 0.4961862 0.5025087 -0.5025087 0.4961862 0.5025087 -0.5084753 0.4961862 0.5025087 -0.514124 0.4961862 0.5025087 -0.519487 0.4961862 0.5025087 -0.5245917 0.4961862 0.5025087 -0.529462 0.4961862 0.5025087 -0.5341183 0.4961862 0.5025087 -0.5385787 0.4961862 0.5025087 -0.5428591 0.4961862 0.5025087 -0.5469733 0.4961862 0.5025087 -0.5509339 0.4961862 0.5025087 -0.5547519 0.4961862 0.5025087 -0.5584371 0.4961862 0.5025087 -0.5619986 0.4961862 0.5025087 -0.5654443 0.4961862 0.5025087 -0.5687816 0.4961862 0.5025087 -0.092819 0.5025087 0.5025087 -0.2262531 0.5025087 0.5025087 -0.2875993 0.5025087 0.5025087 -0.3262122 0.5025087 0.5025087 -0.3544566 0.5025087 0.5025087 -0.3767383 0.5025087 0.5025087 -0.3951413 0.5025087 0.5025087 -0.4108177 0.5025087 0.5025087 -0.4244723 0.5025087 0.5025087 -0.4365675 0.5025087 0.5025087 -0.4474232 0.5025087 0.5025087 -0.45727 0.5025087 0.5025087 -0.4662797 0.5025087 0.5025087 -0.4745834 0.5025087 0.5025087 -0.4822838 0.5025087 0.5025087 -0.4894626 0.5025087 0.5025087 -0.4961862 0.5025087 0.5025087 -0.5025087 0.5025087 0.5025087 -0.5084753 0.5025087 0.5025087 -0.514124 0.5025087 0.5025087 -0.519487 0.5025087 0.5025087 -0.5245917 0.5025087 0.5025087 -0.529462 0.5025087 0.5025087 -0.5341183 0.5025087 0.5025087 -0.5385787 0.5025087 0.5025087 -0.5428591 0.5025087 0.5025087 -0.5469733 0.5025087 0.5025087 -0.5509339 0.5025087 0.5025087 -0.5547519 0.5025087 0.5025087 -0.5584371 0.5025087 0.5025087 -0.5619986 0.5025087 0.5025087 -0.5654443 0.5025087 0.5025087 -0.5687816 0.5025087 0.5025087 -0.092819 0.5084753 0.5025087 -0.2262531 0.5084753 0.5025087 -0.2875993 0.5084753 0.5025087 -0.3262122 0.5084753 0.5025087 -0.3544566 0.5084753 0.5025087 -0.3767383 0.5084753 0.5025087 -0.3951413 0.5084753 0.5025087 -0.4108177 0.5084753 0.5025087 -0.4244723 0.5084753 0.5025087 -0.4365675 0.5084753 0.5025087 -0.4474232 0.5084753 0.5025087 -0.45727 0.5084753 0.5025087 -0.4662797 0.5084753 0.5025087 -0.4745834 0.5084753 0.5025087 -0.4822838 0.5084753 0.5025087 -0.4894626 0.5084753 0.5025087 -0.4961862 0.5084753 0.5025087 -0.5025087 0.5084753 0.5025087 -0.5084753 0.5084753 0.5025087 -0.514124 0.5084753 0.5025087 -0.519487 0.5084753 0.5025087 -0.5245917 0.5084753 0.5025087 -0.529462 0.5084753 0.5025087 -0.5341183 0.5084753 0.5025087 -0.5385787 0.5084753 0.5025087 -0.5428591 0.5084753 0.5025087 -0.5469733 0.5084753 0.5025087 -0.5509339 0.5084753 0.5025087 -0.5547519 0.5084753 0.5025087 -0.5584371 0.5084753 0.5025087 -0.5619986 0.5084753 0.5025087 -0.5654443 0.5084753 0.5025087 -0.5687816 0.5084753 0.5025087 -0.092819 0.514124 0.5025087 -0.2262531 0.514124 0.5025087 -0.2875993 0.514124 0.5025087 -0.3262122 0.514124 0.5025087 -0.3544566 0.514124 0.5025087 -0.3767383 0.514124 0.5025087 -0.3951413 0.514124 0.5025087 -0.4108177 0.514124 0.5025087 -0.4244723 0.514124 0.5025087 -0.4365675 0.514124 0.5025087 -0.4474232 0.514124 0.5025087 -0.45727 0.514124 0.5025087 -0.4662797 0.514124 0.5025087 -0.4745834 0.514124 0.5025087 -0.4822838 0.514124 0.5025087 -0.4894626 0.514124 0.5025087 -0.4961862 0.514124 0.5025087 -0.5025087 0.514124 0.5025087 -0.5084753 0.514124 0.5025087 -0.514124 0.514124 0.5025087 -0.519487 0.514124 0.5025087 -0.5245917 0.514124 0.5025087 -0.529462 0.514124 0.5025087 -0.5341183 0.514124 0.5025087 -0.5385787 0.514124 0.5025087 -0.5428591 0.514124 0.5025087 -0.5469733 0.514124 0.5025087 -0.5509339 0.514124 0.5025087 -0.5547519 0.514124 0.5025087 -0.5584371 0.514124 0.5025087 -0.5619986 0.514124 0.5025087 -0.5654443 0.514124 0.5025087 -0.5687816 0.514124 0.5025087 -0.092819 0.519487 0.5025087 -0.2262531 0.519487 0.5025087 -0.2875993 0.519487 0.5025087 -0.3262122 0.519487 0.5025087 -0.3544566 0.519487 0.5025087 -0.3767383 0.519487 0.5025087 -0.3951413 0.519487 0.5025087 -0.4108177 0.519487 0.5025087 -0.4244723 0.519487 0.5025087 -0.4365675 0.519487 0.5025087 -0.4474232 0.519487 0.5025087 -0.45727 0.519487 0.5025087 -0.4662797 0.519487 0.5025087 -0.4745834 0.519487 0.5025087 -0.4822838 0.519487 0.5025087 -0.4894626 0.519487 0.5025087 -0.4961862 0.519487 0.5025087 -0.5025087 0.519487 0.5025087 -0.5084753 0.519487 0.5025087 -0.514124 0.519487 0.5025087 -0.519487 0.519487 0.5025087 -0.5245917 0.519487 0.5025087 -0.529462 0.519487 0.5025087 -0.5341183 0.519487 0.5025087 -0.5385787 0.519487 0.5025087 -0.5428591 0.519487 0.5025087 -0.5469733 0.519487 0.5025087 -0.5509339 0.519487 0.5025087 -0.5547519 0.519487 0.5025087 -0.5584371 0.519487 0.5025087 -0.5619986 0.519487 0.5025087 -0.5654443 0.519487 0.5025087 -0.5687816 0.519487 0.5025087 -0.092819 0.5245917 0.5025087 -0.2262531 0.5245917 0.5025087 -0.2875993 0.5245917 0.5025087 -0.3262122 0.5245917 0.5025087 -0.3544566 0.5245917 0.5025087 -0.3767383 0.5245917 0.5025087 -0.3951413 0.5245917 0.5025087 -0.4108177 0.5245917 0.5025087 -0.4244723 0.5245917 0.5025087 -0.4365675 0.5245917 0.5025087 -0.4474232 0.5245917 0.5025087 -0.45727 0.5245917 0.5025087 -0.4662797 0.5245917 0.5025087 -0.4745834 0.5245917 0.5025087 -0.4822838 0.5245917 0.5025087 -0.4894626 0.5245917 0.5025087 -0.4961862 0.5245917 0.5025087 -0.5025087 0.5245917 0.5025087 -0.5084753 0.5245917 0.5025087 -0.514124 0.5245917 0.5025087 -0.519487 0.5245917 0.5025087 -0.5245917 0.5245917 0.5025087 -0.529462 0.5245917 0.5025087 -0.5341183 0.5245917 0.5025087 -0.5385787 0.5245917 0.5025087 -0.5428591 0.5245917 0.5025087 -0.5469733 0.5245917 0.5025087 -0.5509339 0.5245917 0.5025087 -0.5547519 0.5245917 0.5025087 -0.5584371 0.5245917 0.5025087 -0.5619986 0.5245917 0.5025087 -0.5654443 0.5245917 0.5025087 -0.5687816 0.5245917 0.5025087 -0.092819 0.529462 0.5025087 -0.2262531 0.529462 0.5025087 -0.2875993 0.529462 0.5025087 -0.3262122 0.529462 0.5025087 -0.3544566 0.529462 0.5025087 -0.3767383 0.529462 0.5025087 -0.3951413 0.529462 0.5025087 -0.4108177 0.529462 0.5025087 -0.4244723 0.529462 0.5025087 -0.4365675 0.529462 0.5025087 -0.4474232 0.529462 0.5025087 -0.45727 0.529462 0.5025087 -0.4662797 0.529462 0.5025087 -0.4745834 0.529462 0.5025087 -0.4822838 0.529462 0.5025087 -0.4894626 0.529462 0.5025087 -0.4961862 0.529462 0.5025087 -0.5025087 0.529462 0.5025087 -0.5084753 0.529462 0.5025087 -0.514124 0.529462 0.5025087 -0.519487 0.529462 0.5025087 -0.5245917 0.529462 0.5025087 -0.529462 0.529462 0.5025087 -0.5341183 0.529462 0.5025087 -0.5385787 0.529462 0.5025087 -0.5428591 0.529462 0.5025087 -0.5469733 0.529462 0.5025087 -0.5509339 0.529462 0.5025087 -0.5547519 0.529462 0.5025087 -0.5584371 0.529462 0.5025087 -0.5619986 0.529462 0.5025087 -0.5654443 0.529462 0.5025087 -0.5687816 0.529462 0.5025087 -0.092819 0.5341183 0.5025087 -0.2262531 0.5341183 0.5025087 -0.2875993 0.5341183 0.5025087 -0.3262122 0.5341183 0.5025087 -0.3544566 0.5341183 0.5025087 -0.3767383 0.5341183 0.5025087 -0.3951413 0.5341183 0.5025087 -0.4108177 0.5341183 0.5025087 -0.4244723 0.5341183 0.5025087 -0.4365675 0.5341183 0.5025087 -0.4474232 0.5341183 0.5025087 -0.45727 0.5341183 0.5025087 -0.4662797 0.5341183 0.5025087 -0.4745834 0.5341183 0.5025087 -0.4822838 0.5341183 0.5025087 -0.4894626 0.5341183 0.5025087 -0.4961862 0.5341183 0.5025087 -0.5025087 0.5341183 0.5025087 -0.5084753 0.5341183 0.5025087 -0.514124 0.5341183 0.5025087 -0.519487 0.5341183 0.5025087 -0.5245917 0.5341183 0.5025087 -0.529462 0.5341183 0.5025087 -0.5341183 0.5341183 0.5025087 -0.5385787 0.5341183 0.5025087 -0.5428591 0.5341183 0.5025087 -0.5469733 0.5341183 0.5025087 -0.5509339 0.5341183 0.5025087 -0.5547519 0.5341183 0.5025087 -0.5584371 0.5341183 0.5025087 -0.5619986 0.5341183 0.5025087 -0.5654443 0.5341183 0.5025087 -0.5687816 0.5341183 0.5025087 -0.092819 0.5385787 0.5025087 -0.2262531 0.5385787 0.5025087 -0.2875993 0.5385787 0.5025087 -0.3262122 0.5385787 0.5025087 -0.3544566 0.5385787 0.5025087 -0.3767383 0.5385787 0.5025087 -0.3951413 0.5385787 0.5025087 -0.4108177 0.5385787 0.5025087 -0.4244723 0.5385787 0.5025087 -0.4365675 0.5385787 0.5025087 -0.4474232 0.5385787 0.5025087 -0.45727 0.5385787 0.5025087 -0.4662797 0.5385787 0.5025087 -0.4745834 0.5385787 0.5025087 -0.4822838 0.5385787 0.5025087 -0.4894626 0.5385787 0.5025087 -0.4961862 0.5385787 0.5025087 -0.5025087 0.5385787 0.5025087 -0.5084753 0.5385787 0.5025087 -0.514124 0.5385787 0.5025087 -0.519487 0.5385787 0.5025087 -0.5245917 0.5385787 0.5025087 -0.529462 0.5385787 0.5025087 -0.5341183 0.5385787 0.5025087 -0.5385787 0.5385787 0.5025087 -0.5428591 0.5385787 0.5025087 -0.5469733 0.5385787 0.5025087 -0.5509339 0.5385787 0.5025087 -0.5547519 0.5385787 0.5025087 -0.5584371 0.5385787 0.5025087 -0.5619986 0.5385787 0.5025087 -0.5654443 0.5385787 0.5025087 -0.5687816 0.5385787 0.5025087 -0.092819 0.5428591 0.5025087 -0.2262531 0.5428591 0.5025087 -0.2875993 0.5428591 0.5025087 -0.3262122 0.5428591 0.5025087 -0.3544566 0.5428591 0.5025087 -0.3767383 0.5428591 0.5025087 -0.3951413 0.5428591 0.5025087 -0.4108177 0.5428591 0.5025087 -0.4244723 0.5428591 0.5025087 -0.4365675 0.5428591 0.5025087 -0.4474232 0.5428591 0.5025087 -0.45727 0.5428591 0.5025087 -0.4662797 0.5428591 0.5025087 -0.4745834 0.5428591 0.5025087 -0.4822838 0.5428591 0.5025087 -0.4894626 0.5428591 0.5025087 -0.4961862 0.5428591 0.5025087 -0.5025087 0.5428591 0.5025087 -0.5084753 0.5428591 0.5025087 -0.514124 0.5428591 0.5025087 -0.519487 0.5428591 0.5025087 -0.5245917 0.5428591 0.5025087 -0.529462 0.5428591 0.5025087 -0.5341183 0.5428591 0.5025087 -0.5385787 0.5428591 0.5025087 -0.5428591 0.5428591 0.5025087 -0.5469733 0.5428591 0.5025087 -0.5509339 0.5428591 0.5025087 -0.5547519 0.5428591 0.5025087 -0.5584371 0.5428591 0.5025087 -0.5619986 0.5428591 0.5025087 -0.5654443 0.5428591 0.5025087 -0.5687816 0.5428591 0.5025087 -0.092819 0.5469733 0.5025087 -0.2262531 0.5469733 0.5025087 -0.2875993 0.5469733 0.5025087 -0.3262122 0.5469733 0.5025087 -0.3544566 0.5469733 0.5025087 -0.3767383 0.5469733 0.5025087 -0.3951413 0.5469733 0.5025087 -0.4108177 0.5469733 0.5025087 -0.4244723 0.5469733 0.5025087 -0.4365675 0.5469733 0.5025087 -0.4474232 0.5469733 0.5025087 -0.45727 0.5469733 0.5025087 -0.4662797 0.5469733 0.5025087 -0.4745834 0.5469733 0.5025087 -0.4822838 0.5469733 0.5025087 -0.4894626 0.5469733 0.5025087 -0.4961862 0.5469733 0.5025087 -0.5025087 0.5469733 0.5025087 -0.5084753 0.5469733 0.5025087 -0.514124 0.5469733 0.5025087 -0.519487 0.5469733 0.5025087 -0.5245917 0.5469733 0.5025087 -0.529462 0.5469733 0.5025087 -0.5341183 0.5469733 0.5025087 -0.5385787 0.5469733 0.5025087 -0.5428591 0.5469733 0.5025087 -0.5469733 0.5469733 0.5025087 -0.5509339 0.5469733 0.5025087 -0.5547519 0.5469733 0.5025087 -0.5584371 0.5469733 0.5025087 -0.5619986 0.5469733 0.5025087 -0.5654443 0.5469733 0.5025087 -0.5687816 0.5469733 0.5025087 -0.092819 0.5509339 0.5025087 -0.2262531 0.5509339 0.5025087 -0.2875993 0.5509339 0.5025087 -0.3262122 0.5509339 0.5025087 -0.3544566 0.5509339 0.5025087 -0.3767383 0.5509339 0.5025087 -0.3951413 0.5509339 0.5025087 -0.4108177 0.5509339 0.5025087 -0.4244723 0.5509339 0.5025087 -0.4365675 0.5509339 0.5025087 -0.4474232 0.5509339 0.5025087 -0.45727 0.5509339 0.5025087 -0.4662797 0.5509339 0.5025087 -0.4745834 0.5509339 0.5025087 -0.4822838 0.5509339 0.5025087 -0.4894626 0.5509339 0.5025087 -0.4961862 0.5509339 0.5025087 -0.5025087 0.5509339 0.5025087 -0.5084753 0.5509339 0.5025087 -0.514124 0.5509339 0.5025087 -0.519487 0.5509339 0.5025087 -0.5245917 0.5509339 0.5025087 -0.529462 0.5509339 0.5025087 -0.5341183 0.5509339 0.5025087 -0.5385787 0.5509339 0.5025087 -0.5428591 0.5509339 0.5025087 -0.5469733 0.5509339 0.5025087 -0.5509339 0.5509339 0.5025087 -0.5547519 0.5509339 0.5025087 -0.5584371 0.5509339 0.5025087 -0.5619986 0.5509339 0.5025087 -0.5654443 0.5509339 0.5025087 -0.5687816 0.5509339 0.5025087 -0.092819 0.5547519 0.5025087 -0.2262531 0.5547519 0.5025087 -0.2875993 0.5547519 0.5025087 -0.3262122 0.5547519 0.5025087 -0.3544566 0.5547519 0.5025087 -0.3767383 0.5547519 0.5025087 -0.3951413 0.5547519 0.5025087 -0.4108177 0.5547519 0.5025087 -0.4244723 0.5547519 0.5025087 -0.4365675 0.5547519 0.5025087 -0.4474232 0.5547519 0.5025087 -0.45727 0.5547519 0.5025087 -0.4662797 0.5547519 0.5025087 -0.4745834 0.5547519 0.5025087 -0.4822838 0.5547519 0.5025087 -0.4894626 0.5547519 0.5025087 -0.4961862 0.5547519 0.5025087 -0.5025087 0.5547519 0.5025087 -0.5084753 0.5547519 0.5025087 -0.514124 0.5547519 0.5025087 -0.519487 0.5547519 0.5025087 -0.5245917 0.5547519 0.5025087 -0.529462 0.5547519 0.5025087 -0.5341183 0.5547519 0.5025087 -0.5385787 0.5547519 0.5025087 -0.5428591 0.5547519 0.5025087 -0.5469733 0.5547519 0.5025087 -0.5509339 0.5547519 0.5025087 -0.5547519 0.5547519 0.5025087 -0.5584371 0.5547519 0.5025087 -0.5619986 0.5547519 0.5025087 -0.5654443 0.5547519 0.5025087 -0.5687816 0.5547519 0.5025087 -0.092819 0.5584371 0.5025087 -0.2262531 0.5584371 0.5025087 -0.2875993 0.5584371 0.5025087 -0.3262122 0.5584371 0.5025087 -0.3544566 0.5584371 0.5025087 -0.3767383 0.5584371 0.5025087 -0.3951413 0.5584371 0.5025087 -0.4108177 0.5584371 0.5025087 -0.4244723 0.5584371 0.5025087 -0.4365675 0.5584371 0.5025087 -0.4474232 0.5584371 0.5025087 -0.45727 0.5584371 0.5025087 -0.4662797 0.5584371 0.5025087 -0.4745834 0.5584371 0.5025087 -0.4822838 0.5584371 0.5025087 -0.4894626 0.5584371 0.5025087 -0.4961862 0.5584371 0.5025087 -0.5025087 0.5584371 0.5025087 -0.5084753 0.5584371 0.5025087 -0.514124 0.5584371 0.5025087 -0.519487 0.5584371 0.5025087 -0.5245917 0.5584371 0.5025087 -0.529462 0.5584371 0.5025087 -0.5341183 0.5584371 0.5025087 -0.5385787 0.5584371 0.5025087 -0.5428591 0.5584371 0.5025087 -0.5469733 0.5584371 0.5025087 -0.5509339 0.5584371 0.5025087 -0.5547519 0.5584371 0.5025087 -0.5584371 0.5584371 0.5025087 -0.5619986 0.5584371 0.5025087 -0.5654443 0.5584371 0.5025087 -0.5687816 0.5584371 0.5025087 -0.092819 0.5619986 0.5025087 -0.2262531 0.5619986 0.5025087 -0.2875993 0.5619986 0.5025087 -0.3262122 0.5619986 0.5025087 -0.3544566 0.5619986 0.5025087 -0.3767383 0.5619986 0.5025087 -0.3951413 0.5619986 0.5025087 -0.4108177 0.5619986 0.5025087 -0.4244723 0.5619986 0.5025087 -0.4365675 0.5619986 0.5025087 -0.4474232 0.5619986 0.5025087 -0.45727 0.5619986 0.5025087 -0.4662797 0.5619986 0.5025087 -0.4745834 0.5619986 0.5025087 -0.4822838 0.5619986 0.5025087 -0.4894626 0.5619986 0.5025087 -0.4961862 0.5619986 0.5025087 -0.5025087 0.5619986 0.5025087 -0.5084753 0.5619986 0.5025087 -0.514124 0.5619986 0.5025087 -0.519487 0.5619986 0.5025087 -0.5245917 0.5619986 0.5025087 -0.529462 0.5619986 0.5025087 -0.5341183 0.5619986 0.5025087 -0.5385787 0.5619986 0.5025087 -0.5428591 0.5619986 0.5025087 -0.5469733 0.5619986 0.5025087 -0.5509339 0.5619986 0.5025087 -0.5547519 0.5619986 0.5025087 -0.5584371 0.5619986 0.5025087 -0.5619986 0.5619986 0.5025087 -0.5654443 0.5619986 0.5025087 -0.5687816 0.5619986 0.5025087 -0.092819 0.5654443 0.5025087 -0.2262531 0.5654443 0.5025087 -0.2875993 0.5654443 0.5025087 -0.3262122 0.5654443 0.5025087 -0.3544566 0.5654443 0.5025087 -0.3767383 0.5654443 0.5025087 -0.3951413 0.5654443 0.5025087 -0.4108177 0.5654443 0.5025087 -0.4244723 0.5654443 0.5025087 -0.4365675 0.5654443 0.5025087 -0.4474232 0.5654443 0.5025087 -0.45727 0.5654443 0.5025087 -0.4662797 0.5654443 0.5025087 -0.4745834 0.5654443 0.5025087 -0.4822838 0.5654443 0.5025087 -0.4894626 0.5654443 0.5025087 -0.4961862 0.5654443 0.5025087 -0.5025087 0.5654443 0.5025087 -0.5084753 0.5654443 0.5025087 -0.514124 0.5654443 0.5025087 -0.519487 0.5654443 0.5025087 -0.5245917 0.5654443 0.5025087 -0.529462 0.5654443 0.5025087 -0.5341183 0.5654443 0.5025087 -0.5385787 0.5654443 0.5025087 -0.5428591 0.5654443 0.5025087 -0.5469733 0.5654443 0.5025087 -0.5509339 0.5654443 0.5025087 -0.5547519 0.5654443 0.5025087 -0.5584371 0.5654443 0.5025087 -0.5619986 0.5654443 0.5025087 -0.5654443 0.5654443 0.5025087 -0.5687816 0.5654443 0.5025087 -0.092819 0.5687816 0.5025087 -0.2262531 0.5687816 0.5025087 -0.2875993 0.5687816 0.5025087 -0.3262122 0.5687816 0.5025087 -0.3544566 0.5687816 0.5025087 -0.3767383 0.5687816 0.5025087 -0.3951413 0.5687816 0.5025087 -0.4108177 0.5687816 0.5025087 -0.4244723 0.5687816 0.5025087 -0.4365675 0.5687816 0.5025087 -0.4474232 0.5687816 0.5025087 -0.45727 0.5687816 0.5025087 -0.4662797 0.5687816 0.5025087 -0.4745834 0.5687816 0.5025087 -0.4822838 0.5687816 0.5025087 -0.4894626 0.5687816 0.5025087 -0.4961862 0.5687816 0.5025087 -0.5025087 0.5687816 0.5025087 -0.5084753 0.5687816 0.5025087 -0.514124 0.5687816 0.5025087 -0.519487 0.5687816 0.5025087 -0.5245917 0.5687816 0.5025087 -0.529462 0.5687816 0.5025087 -0.5341183 0.5687816 0.5025087 -0.5385787 0.5687816 0.5025087 -0.5428591 0.5687816 0.5025087 -0.5469733 0.5687816 0.5025087 -0.5509339 0.5687816 0.5025087 -0.5547519 0.5687816 0.5025087 -0.5584371 0.5687816 0.5025087 -0.5619986 0.5687816 0.5025087 -0.5654443 0.5687816 0.5025087 -0.5687816 0.5687816 0.5025087 -0.092819 0.092819 0.5084753 -0.2262531 0.092819 0.5084753 -0.2875993 0.092819 0.5084753 -0.3262122 0.092819 0.5084753 -0.3544566 0.092819 0.5084753 -0.3767383 0.092819 0.5084753 -0.3951413 0.092819 0.5084753 -0.4108177 0.092819 0.5084753 -0.4244723 0.092819 0.5084753 -0.4365675 0.092819 0.5084753 -0.4474232 0.092819 0.5084753 -0.45727 0.092819 0.5084753 -0.4662797 0.092819 0.5084753 -0.4745834 0.092819 0.5084753 -0.4822838 0.092819 0.5084753 -0.4894626 0.092819 0.5084753 -0.4961862 0.092819 0.5084753 -0.5025087 0.092819 0.5084753 -0.5084753 0.092819 0.5084753 -0.514124 0.092819 0.5084753 -0.519487 0.092819 0.5084753 -0.5245917 0.092819 0.5084753 -0.529462 0.092819 0.5084753 -0.5341183 0.092819 0.5084753 -0.5385787 0.092819 0.5084753 -0.5428591 0.092819 0.5084753 -0.5469733 0.092819 0.5084753 -0.5509339 0.092819 0.5084753 -0.5547519 0.092819 0.5084753 -0.5584371 0.092819 0.5084753 -0.5619986 0.092819 0.5084753 -0.5654443 0.092819 0.5084753 -0.5687816 0.092819 0.5084753 -0.092819 0.2262531 0.5084753 -0.2262531 0.2262531 0.5084753 -0.2875993 0.2262531 0.5084753 -0.3262122 0.2262531 0.5084753 -0.3544566 0.2262531 0.5084753 -0.3767383 0.2262531 0.5084753 -0.3951413 0.2262531 0.5084753 -0.4108177 0.2262531 0.5084753 -0.4244723 0.2262531 0.5084753 -0.4365675 0.2262531 0.5084753 -0.4474232 0.2262531 0.5084753 -0.45727 0.2262531 0.5084753 -0.4662797 0.2262531 0.5084753 -0.4745834 0.2262531 0.5084753 -0.4822838 0.2262531 0.5084753 -0.4894626 0.2262531 0.5084753 -0.4961862 0.2262531 0.5084753 -0.5025087 0.2262531 0.5084753 -0.5084753 0.2262531 0.5084753 -0.514124 0.2262531 0.5084753 -0.519487 0.2262531 0.5084753 -0.5245917 0.2262531 0.5084753 -0.529462 0.2262531 0.5084753 -0.5341183 0.2262531 0.5084753 -0.5385787 0.2262531 0.5084753 -0.5428591 0.2262531 0.5084753 -0.5469733 0.2262531 0.5084753 -0.5509339 0.2262531 0.5084753 -0.5547519 0.2262531 0.5084753 -0.5584371 0.2262531 0.5084753 -0.5619986 0.2262531 0.5084753 -0.5654443 0.2262531 0.5084753 -0.5687816 0.2262531 0.5084753 -0.092819 0.2875993 0.5084753 -0.2262531 0.2875993 0.5084753 -0.2875993 0.2875993 0.5084753 -0.3262122 0.2875993 0.5084753 -0.3544566 0.2875993 0.5084753 -0.3767383 0.2875993 0.5084753 -0.3951413 0.2875993 0.5084753 -0.4108177 0.2875993 0.5084753 -0.4244723 0.2875993 0.5084753 -0.4365675 0.2875993 0.5084753 -0.4474232 0.2875993 0.5084753 -0.45727 0.2875993 0.5084753 -0.4662797 0.2875993 0.5084753 -0.4745834 0.2875993 0.5084753 -0.4822838 0.2875993 0.5084753 -0.4894626 0.2875993 0.5084753 -0.4961862 0.2875993 0.5084753 -0.5025087 0.2875993 0.5084753 -0.5084753 0.2875993 0.5084753 -0.514124 0.2875993 0.5084753 -0.519487 0.2875993 0.5084753 -0.5245917 0.2875993 0.5084753 -0.529462 0.2875993 0.5084753 -0.5341183 0.2875993 0.5084753 -0.5385787 0.2875993 0.5084753 -0.5428591 0.2875993 0.5084753 -0.5469733 0.2875993 0.5084753 -0.5509339 0.2875993 0.5084753 -0.5547519 0.2875993 0.5084753 -0.5584371 0.2875993 0.5084753 -0.5619986 0.2875993 0.5084753 -0.5654443 0.2875993 0.5084753 -0.5687816 0.2875993 0.5084753 -0.092819 0.3262122 0.5084753 -0.2262531 0.3262122 0.5084753 -0.2875993 0.3262122 0.5084753 -0.3262122 0.3262122 0.5084753 -0.3544566 0.3262122 0.5084753 -0.3767383 0.3262122 0.5084753 -0.3951413 0.3262122 0.5084753 -0.4108177 0.3262122 0.5084753 -0.4244723 0.3262122 0.5084753 -0.4365675 0.3262122 0.5084753 -0.4474232 0.3262122 0.5084753 -0.45727 0.3262122 0.5084753 -0.4662797 0.3262122 0.5084753 -0.4745834 0.3262122 0.5084753 -0.4822838 0.3262122 0.5084753 -0.4894626 0.3262122 0.5084753 -0.4961862 0.3262122 0.5084753 -0.5025087 0.3262122 0.5084753 -0.5084753 0.3262122 0.5084753 -0.514124 0.3262122 0.5084753 -0.519487 0.3262122 0.5084753 -0.5245917 0.3262122 0.5084753 -0.529462 0.3262122 0.5084753 -0.5341183 0.3262122 0.5084753 -0.5385787 0.3262122 0.5084753 -0.5428591 0.3262122 0.5084753 -0.5469733 0.3262122 0.5084753 -0.5509339 0.3262122 0.5084753 -0.5547519 0.3262122 0.5084753 -0.5584371 0.3262122 0.5084753 -0.5619986 0.3262122 0.5084753 -0.5654443 0.3262122 0.5084753 -0.5687816 0.3262122 0.5084753 -0.092819 0.3544566 0.5084753 -0.2262531 0.3544566 0.5084753 -0.2875993 0.3544566 0.5084753 -0.3262122 0.3544566 0.5084753 -0.3544566 0.3544566 0.5084753 -0.3767383 0.3544566 0.5084753 -0.3951413 0.3544566 0.5084753 -0.4108177 0.3544566 0.5084753 -0.4244723 0.3544566 0.5084753 -0.4365675 0.3544566 0.5084753 -0.4474232 0.3544566 0.5084753 -0.45727 0.3544566 0.5084753 -0.4662797 0.3544566 0.5084753 -0.4745834 0.3544566 0.5084753 -0.4822838 0.3544566 0.5084753 -0.4894626 0.3544566 0.5084753 -0.4961862 0.3544566 0.5084753 -0.5025087 0.3544566 0.5084753 -0.5084753 0.3544566 0.5084753 -0.514124 0.3544566 0.5084753 -0.519487 0.3544566 0.5084753 -0.5245917 0.3544566 0.5084753 -0.529462 0.3544566 0.5084753 -0.5341183 0.3544566 0.5084753 -0.5385787 0.3544566 0.5084753 -0.5428591 0.3544566 0.5084753 -0.5469733 0.3544566 0.5084753 -0.5509339 0.3544566 0.5084753 -0.5547519 0.3544566 0.5084753 -0.5584371 0.3544566 0.5084753 -0.5619986 0.3544566 0.5084753 -0.5654443 0.3544566 0.5084753 -0.5687816 0.3544566 0.5084753 -0.092819 0.3767383 0.5084753 -0.2262531 0.3767383 0.5084753 -0.2875993 0.3767383 0.5084753 -0.3262122 0.3767383 0.5084753 -0.3544566 0.3767383 0.5084753 -0.3767383 0.3767383 0.5084753 -0.3951413 0.3767383 0.5084753 -0.4108177 0.3767383 0.5084753 -0.4244723 0.3767383 0.5084753 -0.4365675 0.3767383 0.5084753 -0.4474232 0.3767383 0.5084753 -0.45727 0.3767383 0.5084753 -0.4662797 0.3767383 0.5084753 -0.4745834 0.3767383 0.5084753 -0.4822838 0.3767383 0.5084753 -0.4894626 0.3767383 0.5084753 -0.4961862 0.3767383 0.5084753 -0.5025087 0.3767383 0.5084753 -0.5084753 0.3767383 0.5084753 -0.514124 0.3767383 0.5084753 -0.519487 0.3767383 0.5084753 -0.5245917 0.3767383 0.5084753 -0.529462 0.3767383 0.5084753 -0.5341183 0.3767383 0.5084753 -0.5385787 0.3767383 0.5084753 -0.5428591 0.3767383 0.5084753 -0.5469733 0.3767383 0.5084753 -0.5509339 0.3767383 0.5084753 -0.5547519 0.3767383 0.5084753 -0.5584371 0.3767383 0.5084753 -0.5619986 0.3767383 0.5084753 -0.5654443 0.3767383 0.5084753 -0.5687816 0.3767383 0.5084753 -0.092819 0.3951413 0.5084753 -0.2262531 0.3951413 0.5084753 -0.2875993 0.3951413 0.5084753 -0.3262122 0.3951413 0.5084753 -0.3544566 0.3951413 0.5084753 -0.3767383 0.3951413 0.5084753 -0.3951413 0.3951413 0.5084753 -0.4108177 0.3951413 0.5084753 -0.4244723 0.3951413 0.5084753 -0.4365675 0.3951413 0.5084753 -0.4474232 0.3951413 0.5084753 -0.45727 0.3951413 0.5084753 -0.4662797 0.3951413 0.5084753 -0.4745834 0.3951413 0.5084753 -0.4822838 0.3951413 0.5084753 -0.4894626 0.3951413 0.5084753 -0.4961862 0.3951413 0.5084753 -0.5025087 0.3951413 0.5084753 -0.5084753 0.3951413 0.5084753 -0.514124 0.3951413 0.5084753 -0.519487 0.3951413 0.5084753 -0.5245917 0.3951413 0.5084753 -0.529462 0.3951413 0.5084753 -0.5341183 0.3951413 0.5084753 -0.5385787 0.3951413 0.5084753 -0.5428591 0.3951413 0.5084753 -0.5469733 0.3951413 0.5084753 -0.5509339 0.3951413 0.5084753 -0.5547519 0.3951413 0.5084753 -0.5584371 0.3951413 0.5084753 -0.5619986 0.3951413 0.5084753 -0.5654443 0.3951413 0.5084753 -0.5687816 0.3951413 0.5084753 -0.092819 0.4108177 0.5084753 -0.2262531 0.4108177 0.5084753 -0.2875993 0.4108177 0.5084753 -0.3262122 0.4108177 0.5084753 -0.3544566 0.4108177 0.5084753 -0.3767383 0.4108177 0.5084753 -0.3951413 0.4108177 0.5084753 -0.4108177 0.4108177 0.5084753 -0.4244723 0.4108177 0.5084753 -0.4365675 0.4108177 0.5084753 -0.4474232 0.4108177 0.5084753 -0.45727 0.4108177 0.5084753 -0.4662797 0.4108177 0.5084753 -0.4745834 0.4108177 0.5084753 -0.4822838 0.4108177 0.5084753 -0.4894626 0.4108177 0.5084753 -0.4961862 0.4108177 0.5084753 -0.5025087 0.4108177 0.5084753 -0.5084753 0.4108177 0.5084753 -0.514124 0.4108177 0.5084753 -0.519487 0.4108177 0.5084753 -0.5245917 0.4108177 0.5084753 -0.529462 0.4108177 0.5084753 -0.5341183 0.4108177 0.5084753 -0.5385787 0.4108177 0.5084753 -0.5428591 0.4108177 0.5084753 -0.5469733 0.4108177 0.5084753 -0.5509339 0.4108177 0.5084753 -0.5547519 0.4108177 0.5084753 -0.5584371 0.4108177 0.5084753 -0.5619986 0.4108177 0.5084753 -0.5654443 0.4108177 0.5084753 -0.5687816 0.4108177 0.5084753 -0.092819 0.4244723 0.5084753 -0.2262531 0.4244723 0.5084753 -0.2875993 0.4244723 0.5084753 -0.3262122 0.4244723 0.5084753 -0.3544566 0.4244723 0.5084753 -0.3767383 0.4244723 0.5084753 -0.3951413 0.4244723 0.5084753 -0.4108177 0.4244723 0.5084753 -0.4244723 0.4244723 0.5084753 -0.4365675 0.4244723 0.5084753 -0.4474232 0.4244723 0.5084753 -0.45727 0.4244723 0.5084753 -0.4662797 0.4244723 0.5084753 -0.4745834 0.4244723 0.5084753 -0.4822838 0.4244723 0.5084753 -0.4894626 0.4244723 0.5084753 -0.4961862 0.4244723 0.5084753 -0.5025087 0.4244723 0.5084753 -0.5084753 0.4244723 0.5084753 -0.514124 0.4244723 0.5084753 -0.519487 0.4244723 0.5084753 -0.5245917 0.4244723 0.5084753 -0.529462 0.4244723 0.5084753 -0.5341183 0.4244723 0.5084753 -0.5385787 0.4244723 0.5084753 -0.5428591 0.4244723 0.5084753 -0.5469733 0.4244723 0.5084753 -0.5509339 0.4244723 0.5084753 -0.5547519 0.4244723 0.5084753 -0.5584371 0.4244723 0.5084753 -0.5619986 0.4244723 0.5084753 -0.5654443 0.4244723 0.5084753 -0.5687816 0.4244723 0.5084753 -0.092819 0.4365675 0.5084753 -0.2262531 0.4365675 0.5084753 -0.2875993 0.4365675 0.5084753 -0.3262122 0.4365675 0.5084753 -0.3544566 0.4365675 0.5084753 -0.3767383 0.4365675 0.5084753 -0.3951413 0.4365675 0.5084753 -0.4108177 0.4365675 0.5084753 -0.4244723 0.4365675 0.5084753 -0.4365675 0.4365675 0.5084753 -0.4474232 0.4365675 0.5084753 -0.45727 0.4365675 0.5084753 -0.4662797 0.4365675 0.5084753 -0.4745834 0.4365675 0.5084753 -0.4822838 0.4365675 0.5084753 -0.4894626 0.4365675 0.5084753 -0.4961862 0.4365675 0.5084753 -0.5025087 0.4365675 0.5084753 -0.5084753 0.4365675 0.5084753 -0.514124 0.4365675 0.5084753 -0.519487 0.4365675 0.5084753 -0.5245917 0.4365675 0.5084753 -0.529462 0.4365675 0.5084753 -0.5341183 0.4365675 0.5084753 -0.5385787 0.4365675 0.5084753 -0.5428591 0.4365675 0.5084753 -0.5469733 0.4365675 0.5084753 -0.5509339 0.4365675 0.5084753 -0.5547519 0.4365675 0.5084753 -0.5584371 0.4365675 0.5084753 -0.5619986 0.4365675 0.5084753 -0.5654443 0.4365675 0.5084753 -0.5687816 0.4365675 0.5084753 -0.092819 0.4474232 0.5084753 -0.2262531 0.4474232 0.5084753 -0.2875993 0.4474232 0.5084753 -0.3262122 0.4474232 0.5084753 -0.3544566 0.4474232 0.5084753 -0.3767383 0.4474232 0.5084753 -0.3951413 0.4474232 0.5084753 -0.4108177 0.4474232 0.5084753 -0.4244723 0.4474232 0.5084753 -0.4365675 0.4474232 0.5084753 -0.4474232 0.4474232 0.5084753 -0.45727 0.4474232 0.5084753 -0.4662797 0.4474232 0.5084753 -0.4745834 0.4474232 0.5084753 -0.4822838 0.4474232 0.5084753 -0.4894626 0.4474232 0.5084753 -0.4961862 0.4474232 0.5084753 -0.5025087 0.4474232 0.5084753 -0.5084753 0.4474232 0.5084753 -0.514124 0.4474232 0.5084753 -0.519487 0.4474232 0.5084753 -0.5245917 0.4474232 0.5084753 -0.529462 0.4474232 0.5084753 -0.5341183 0.4474232 0.5084753 -0.5385787 0.4474232 0.5084753 -0.5428591 0.4474232 0.5084753 -0.5469733 0.4474232 0.5084753 -0.5509339 0.4474232 0.5084753 -0.5547519 0.4474232 0.5084753 -0.5584371 0.4474232 0.5084753 -0.5619986 0.4474232 0.5084753 -0.5654443 0.4474232 0.5084753 -0.5687816 0.4474232 0.5084753 -0.092819 0.45727 0.5084753 -0.2262531 0.45727 0.5084753 -0.2875993 0.45727 0.5084753 -0.3262122 0.45727 0.5084753 -0.3544566 0.45727 0.5084753 -0.3767383 0.45727 0.5084753 -0.3951413 0.45727 0.5084753 -0.4108177 0.45727 0.5084753 -0.4244723 0.45727 0.5084753 -0.4365675 0.45727 0.5084753 -0.4474232 0.45727 0.5084753 -0.45727 0.45727 0.5084753 -0.4662797 0.45727 0.5084753 -0.4745834 0.45727 0.5084753 -0.4822838 0.45727 0.5084753 -0.4894626 0.45727 0.5084753 -0.4961862 0.45727 0.5084753 -0.5025087 0.45727 0.5084753 -0.5084753 0.45727 0.5084753 -0.514124 0.45727 0.5084753 -0.519487 0.45727 0.5084753 -0.5245917 0.45727 0.5084753 -0.529462 0.45727 0.5084753 -0.5341183 0.45727 0.5084753 -0.5385787 0.45727 0.5084753 -0.5428591 0.45727 0.5084753 -0.5469733 0.45727 0.5084753 -0.5509339 0.45727 0.5084753 -0.5547519 0.45727 0.5084753 -0.5584371 0.45727 0.5084753 -0.5619986 0.45727 0.5084753 -0.5654443 0.45727 0.5084753 -0.5687816 0.45727 0.5084753 -0.092819 0.4662797 0.5084753 -0.2262531 0.4662797 0.5084753 -0.2875993 0.4662797 0.5084753 -0.3262122 0.4662797 0.5084753 -0.3544566 0.4662797 0.5084753 -0.3767383 0.4662797 0.5084753 -0.3951413 0.4662797 0.5084753 -0.4108177 0.4662797 0.5084753 -0.4244723 0.4662797 0.5084753 -0.4365675 0.4662797 0.5084753 -0.4474232 0.4662797 0.5084753 -0.45727 0.4662797 0.5084753 -0.4662797 0.4662797 0.5084753 -0.4745834 0.4662797 0.5084753 -0.4822838 0.4662797 0.5084753 -0.4894626 0.4662797 0.5084753 -0.4961862 0.4662797 0.5084753 -0.5025087 0.4662797 0.5084753 -0.5084753 0.4662797 0.5084753 -0.514124 0.4662797 0.5084753 -0.519487 0.4662797 0.5084753 -0.5245917 0.4662797 0.5084753 -0.529462 0.4662797 0.5084753 -0.5341183 0.4662797 0.5084753 -0.5385787 0.4662797 0.5084753 -0.5428591 0.4662797 0.5084753 -0.5469733 0.4662797 0.5084753 -0.5509339 0.4662797 0.5084753 -0.5547519 0.4662797 0.5084753 -0.5584371 0.4662797 0.5084753 -0.5619986 0.4662797 0.5084753 -0.5654443 0.4662797 0.5084753 -0.5687816 0.4662797 0.5084753 -0.092819 0.4745834 0.5084753 -0.2262531 0.4745834 0.5084753 -0.2875993 0.4745834 0.5084753 -0.3262122 0.4745834 0.5084753 -0.3544566 0.4745834 0.5084753 -0.3767383 0.4745834 0.5084753 -0.3951413 0.4745834 0.5084753 -0.4108177 0.4745834 0.5084753 -0.4244723 0.4745834 0.5084753 -0.4365675 0.4745834 0.5084753 -0.4474232 0.4745834 0.5084753 -0.45727 0.4745834 0.5084753 -0.4662797 0.4745834 0.5084753 -0.4745834 0.4745834 0.5084753 -0.4822838 0.4745834 0.5084753 -0.4894626 0.4745834 0.5084753 -0.4961862 0.4745834 0.5084753 -0.5025087 0.4745834 0.5084753 -0.5084753 0.4745834 0.5084753 -0.514124 0.4745834 0.5084753 -0.519487 0.4745834 0.5084753 -0.5245917 0.4745834 0.5084753 -0.529462 0.4745834 0.5084753 -0.5341183 0.4745834 0.5084753 -0.5385787 0.4745834 0.5084753 -0.5428591 0.4745834 0.5084753 -0.5469733 0.4745834 0.5084753 -0.5509339 0.4745834 0.5084753 -0.5547519 0.4745834 0.5084753 -0.5584371 0.4745834 0.5084753 -0.5619986 0.4745834 0.5084753 -0.5654443 0.4745834 0.5084753 -0.5687816 0.4745834 0.5084753 -0.092819 0.4822838 0.5084753 -0.2262531 0.4822838 0.5084753 -0.2875993 0.4822838 0.5084753 -0.3262122 0.4822838 0.5084753 -0.3544566 0.4822838 0.5084753 -0.3767383 0.4822838 0.5084753 -0.3951413 0.4822838 0.5084753 -0.4108177 0.4822838 0.5084753 -0.4244723 0.4822838 0.5084753 -0.4365675 0.4822838 0.5084753 -0.4474232 0.4822838 0.5084753 -0.45727 0.4822838 0.5084753 -0.4662797 0.4822838 0.5084753 -0.4745834 0.4822838 0.5084753 -0.4822838 0.4822838 0.5084753 -0.4894626 0.4822838 0.5084753 -0.4961862 0.4822838 0.5084753 -0.5025087 0.4822838 0.5084753 -0.5084753 0.4822838 0.5084753 -0.514124 0.4822838 0.5084753 -0.519487 0.4822838 0.5084753 -0.5245917 0.4822838 0.5084753 -0.529462 0.4822838 0.5084753 -0.5341183 0.4822838 0.5084753 -0.5385787 0.4822838 0.5084753 -0.5428591 0.4822838 0.5084753 -0.5469733 0.4822838 0.5084753 -0.5509339 0.4822838 0.5084753 -0.5547519 0.4822838 0.5084753 -0.5584371 0.4822838 0.5084753 -0.5619986 0.4822838 0.5084753 -0.5654443 0.4822838 0.5084753 -0.5687816 0.4822838 0.5084753 -0.092819 0.4894626 0.5084753 -0.2262531 0.4894626 0.5084753 -0.2875993 0.4894626 0.5084753 -0.3262122 0.4894626 0.5084753 -0.3544566 0.4894626 0.5084753 -0.3767383 0.4894626 0.5084753 -0.3951413 0.4894626 0.5084753 -0.4108177 0.4894626 0.5084753 -0.4244723 0.4894626 0.5084753 -0.4365675 0.4894626 0.5084753 -0.4474232 0.4894626 0.5084753 -0.45727 0.4894626 0.5084753 -0.4662797 0.4894626 0.5084753 -0.4745834 0.4894626 0.5084753 -0.4822838 0.4894626 0.5084753 -0.4894626 0.4894626 0.5084753 -0.4961862 0.4894626 0.5084753 -0.5025087 0.4894626 0.5084753 -0.5084753 0.4894626 0.5084753 -0.514124 0.4894626 0.5084753 -0.519487 0.4894626 0.5084753 -0.5245917 0.4894626 0.5084753 -0.529462 0.4894626 0.5084753 -0.5341183 0.4894626 0.5084753 -0.5385787 0.4894626 0.5084753 -0.5428591 0.4894626 0.5084753 -0.5469733 0.4894626 0.5084753 -0.5509339 0.4894626 0.5084753 -0.5547519 0.4894626 0.5084753 -0.5584371 0.4894626 0.5084753 -0.5619986 0.4894626 0.5084753 -0.5654443 0.4894626 0.5084753 -0.5687816 0.4894626 0.5084753 -0.092819 0.4961862 0.5084753 -0.2262531 0.4961862 0.5084753 -0.2875993 0.4961862 0.5084753 -0.3262122 0.4961862 0.5084753 -0.3544566 0.4961862 0.5084753 -0.3767383 0.4961862 0.5084753 -0.3951413 0.4961862 0.5084753 -0.4108177 0.4961862 0.5084753 -0.4244723 0.4961862 0.5084753 -0.4365675 0.4961862 0.5084753 -0.4474232 0.4961862 0.5084753 -0.45727 0.4961862 0.5084753 -0.4662797 0.4961862 0.5084753 -0.4745834 0.4961862 0.5084753 -0.4822838 0.4961862 0.5084753 -0.4894626 0.4961862 0.5084753 -0.4961862 0.4961862 0.5084753 -0.5025087 0.4961862 0.5084753 -0.5084753 0.4961862 0.5084753 -0.514124 0.4961862 0.5084753 -0.519487 0.4961862 0.5084753 -0.5245917 0.4961862 0.5084753 -0.529462 0.4961862 0.5084753 -0.5341183 0.4961862 0.5084753 -0.5385787 0.4961862 0.5084753 -0.5428591 0.4961862 0.5084753 -0.5469733 0.4961862 0.5084753 -0.5509339 0.4961862 0.5084753 -0.5547519 0.4961862 0.5084753 -0.5584371 0.4961862 0.5084753 -0.5619986 0.4961862 0.5084753 -0.5654443 0.4961862 0.5084753 -0.5687816 0.4961862 0.5084753 -0.092819 0.5025087 0.5084753 -0.2262531 0.5025087 0.5084753 -0.2875993 0.5025087 0.5084753 -0.3262122 0.5025087 0.5084753 -0.3544566 0.5025087 0.5084753 -0.3767383 0.5025087 0.5084753 -0.3951413 0.5025087 0.5084753 -0.4108177 0.5025087 0.5084753 -0.4244723 0.5025087 0.5084753 -0.4365675 0.5025087 0.5084753 -0.4474232 0.5025087 0.5084753 -0.45727 0.5025087 0.5084753 -0.4662797 0.5025087 0.5084753 -0.4745834 0.5025087 0.5084753 -0.4822838 0.5025087 0.5084753 -0.4894626 0.5025087 0.5084753 -0.4961862 0.5025087 0.5084753 -0.5025087 0.5025087 0.5084753 -0.5084753 0.5025087 0.5084753 -0.514124 0.5025087 0.5084753 -0.519487 0.5025087 0.5084753 -0.5245917 0.5025087 0.5084753 -0.529462 0.5025087 0.5084753 -0.5341183 0.5025087 0.5084753 -0.5385787 0.5025087 0.5084753 -0.5428591 0.5025087 0.5084753 -0.5469733 0.5025087 0.5084753 -0.5509339 0.5025087 0.5084753 -0.5547519 0.5025087 0.5084753 -0.5584371 0.5025087 0.5084753 -0.5619986 0.5025087 0.5084753 -0.5654443 0.5025087 0.5084753 -0.5687816 0.5025087 0.5084753 -0.092819 0.5084753 0.5084753 -0.2262531 0.5084753 0.5084753 -0.2875993 0.5084753 0.5084753 -0.3262122 0.5084753 0.5084753 -0.3544566 0.5084753 0.5084753 -0.3767383 0.5084753 0.5084753 -0.3951413 0.5084753 0.5084753 -0.4108177 0.5084753 0.5084753 -0.4244723 0.5084753 0.5084753 -0.4365675 0.5084753 0.5084753 -0.4474232 0.5084753 0.5084753 -0.45727 0.5084753 0.5084753 -0.4662797 0.5084753 0.5084753 -0.4745834 0.5084753 0.5084753 -0.4822838 0.5084753 0.5084753 -0.4894626 0.5084753 0.5084753 -0.4961862 0.5084753 0.5084753 -0.5025087 0.5084753 0.5084753 -0.5084753 0.5084753 0.5084753 -0.514124 0.5084753 0.5084753 -0.519487 0.5084753 0.5084753 -0.5245917 0.5084753 0.5084753 -0.529462 0.5084753 0.5084753 -0.5341183 0.5084753 0.5084753 -0.5385787 0.5084753 0.5084753 -0.5428591 0.5084753 0.5084753 -0.5469733 0.5084753 0.5084753 -0.5509339 0.5084753 0.5084753 -0.5547519 0.5084753 0.5084753 -0.5584371 0.5084753 0.5084753 -0.5619986 0.5084753 0.5084753 -0.5654443 0.5084753 0.5084753 -0.5687816 0.5084753 0.5084753 -0.092819 0.514124 0.5084753 -0.2262531 0.514124 0.5084753 -0.2875993 0.514124 0.5084753 -0.3262122 0.514124 0.5084753 -0.3544566 0.514124 0.5084753 -0.3767383 0.514124 0.5084753 -0.3951413 0.514124 0.5084753 -0.4108177 0.514124 0.5084753 -0.4244723 0.514124 0.5084753 -0.4365675 0.514124 0.5084753 -0.4474232 0.514124 0.5084753 -0.45727 0.514124 0.5084753 -0.4662797 0.514124 0.5084753 -0.4745834 0.514124 0.5084753 -0.4822838 0.514124 0.5084753 -0.4894626 0.514124 0.5084753 -0.4961862 0.514124 0.5084753 -0.5025087 0.514124 0.5084753 -0.5084753 0.514124 0.5084753 -0.514124 0.514124 0.5084753 -0.519487 0.514124 0.5084753 -0.5245917 0.514124 0.5084753 -0.529462 0.514124 0.5084753 -0.5341183 0.514124 0.5084753 -0.5385787 0.514124 0.5084753 -0.5428591 0.514124 0.5084753 -0.5469733 0.514124 0.5084753 -0.5509339 0.514124 0.5084753 -0.5547519 0.514124 0.5084753 -0.5584371 0.514124 0.5084753 -0.5619986 0.514124 0.5084753 -0.5654443 0.514124 0.5084753 -0.5687816 0.514124 0.5084753 -0.092819 0.519487 0.5084753 -0.2262531 0.519487 0.5084753 -0.2875993 0.519487 0.5084753 -0.3262122 0.519487 0.5084753 -0.3544566 0.519487 0.5084753 -0.3767383 0.519487 0.5084753 -0.3951413 0.519487 0.5084753 -0.4108177 0.519487 0.5084753 -0.4244723 0.519487 0.5084753 -0.4365675 0.519487 0.5084753 -0.4474232 0.519487 0.5084753 -0.45727 0.519487 0.5084753 -0.4662797 0.519487 0.5084753 -0.4745834 0.519487 0.5084753 -0.4822838 0.519487 0.5084753 -0.4894626 0.519487 0.5084753 -0.4961862 0.519487 0.5084753 -0.5025087 0.519487 0.5084753 -0.5084753 0.519487 0.5084753 -0.514124 0.519487 0.5084753 -0.519487 0.519487 0.5084753 -0.5245917 0.519487 0.5084753 -0.529462 0.519487 0.5084753 -0.5341183 0.519487 0.5084753 -0.5385787 0.519487 0.5084753 -0.5428591 0.519487 0.5084753 -0.5469733 0.519487 0.5084753 -0.5509339 0.519487 0.5084753 -0.5547519 0.519487 0.5084753 -0.5584371 0.519487 0.5084753 -0.5619986 0.519487 0.5084753 -0.5654443 0.519487 0.5084753 -0.5687816 0.519487 0.5084753 -0.092819 0.5245917 0.5084753 -0.2262531 0.5245917 0.5084753 -0.2875993 0.5245917 0.5084753 -0.3262122 0.5245917 0.5084753 -0.3544566 0.5245917 0.5084753 -0.3767383 0.5245917 0.5084753 -0.3951413 0.5245917 0.5084753 -0.4108177 0.5245917 0.5084753 -0.4244723 0.5245917 0.5084753 -0.4365675 0.5245917 0.5084753 -0.4474232 0.5245917 0.5084753 -0.45727 0.5245917 0.5084753 -0.4662797 0.5245917 0.5084753 -0.4745834 0.5245917 0.5084753 -0.4822838 0.5245917 0.5084753 -0.4894626 0.5245917 0.5084753 -0.4961862 0.5245917 0.5084753 -0.5025087 0.5245917 0.5084753 -0.5084753 0.5245917 0.5084753 -0.514124 0.5245917 0.5084753 -0.519487 0.5245917 0.5084753 -0.5245917 0.5245917 0.5084753 -0.529462 0.5245917 0.5084753 -0.5341183 0.5245917 0.5084753 -0.5385787 0.5245917 0.5084753 -0.5428591 0.5245917 0.5084753 -0.5469733 0.5245917 0.5084753 -0.5509339 0.5245917 0.5084753 -0.5547519 0.5245917 0.5084753 -0.5584371 0.5245917 0.5084753 -0.5619986 0.5245917 0.5084753 -0.5654443 0.5245917 0.5084753 -0.5687816 0.5245917 0.5084753 -0.092819 0.529462 0.5084753 -0.2262531 0.529462 0.5084753 -0.2875993 0.529462 0.5084753 -0.3262122 0.529462 0.5084753 -0.3544566 0.529462 0.5084753 -0.3767383 0.529462 0.5084753 -0.3951413 0.529462 0.5084753 -0.4108177 0.529462 0.5084753 -0.4244723 0.529462 0.5084753 -0.4365675 0.529462 0.5084753 -0.4474232 0.529462 0.5084753 -0.45727 0.529462 0.5084753 -0.4662797 0.529462 0.5084753 -0.4745834 0.529462 0.5084753 -0.4822838 0.529462 0.5084753 -0.4894626 0.529462 0.5084753 -0.4961862 0.529462 0.5084753 -0.5025087 0.529462 0.5084753 -0.5084753 0.529462 0.5084753 -0.514124 0.529462 0.5084753 -0.519487 0.529462 0.5084753 -0.5245917 0.529462 0.5084753 -0.529462 0.529462 0.5084753 -0.5341183 0.529462 0.5084753 -0.5385787 0.529462 0.5084753 -0.5428591 0.529462 0.5084753 -0.5469733 0.529462 0.5084753 -0.5509339 0.529462 0.5084753 -0.5547519 0.529462 0.5084753 -0.5584371 0.529462 0.5084753 -0.5619986 0.529462 0.5084753 -0.5654443 0.529462 0.5084753 -0.5687816 0.529462 0.5084753 -0.092819 0.5341183 0.5084753 -0.2262531 0.5341183 0.5084753 -0.2875993 0.5341183 0.5084753 -0.3262122 0.5341183 0.5084753 -0.3544566 0.5341183 0.5084753 -0.3767383 0.5341183 0.5084753 -0.3951413 0.5341183 0.5084753 -0.4108177 0.5341183 0.5084753 -0.4244723 0.5341183 0.5084753 -0.4365675 0.5341183 0.5084753 -0.4474232 0.5341183 0.5084753 -0.45727 0.5341183 0.5084753 -0.4662797 0.5341183 0.5084753 -0.4745834 0.5341183 0.5084753 -0.4822838 0.5341183 0.5084753 -0.4894626 0.5341183 0.5084753 -0.4961862 0.5341183 0.5084753 -0.5025087 0.5341183 0.5084753 -0.5084753 0.5341183 0.5084753 -0.514124 0.5341183 0.5084753 -0.519487 0.5341183 0.5084753 -0.5245917 0.5341183 0.5084753 -0.529462 0.5341183 0.5084753 -0.5341183 0.5341183 0.5084753 -0.5385787 0.5341183 0.5084753 -0.5428591 0.5341183 0.5084753 -0.5469733 0.5341183 0.5084753 -0.5509339 0.5341183 0.5084753 -0.5547519 0.5341183 0.5084753 -0.5584371 0.5341183 0.5084753 -0.5619986 0.5341183 0.5084753 -0.5654443 0.5341183 0.5084753 -0.5687816 0.5341183 0.5084753 -0.092819 0.5385787 0.5084753 -0.2262531 0.5385787 0.5084753 -0.2875993 0.5385787 0.5084753 -0.3262122 0.5385787 0.5084753 -0.3544566 0.5385787 0.5084753 -0.3767383 0.5385787 0.5084753 -0.3951413 0.5385787 0.5084753 -0.4108177 0.5385787 0.5084753 -0.4244723 0.5385787 0.5084753 -0.4365675 0.5385787 0.5084753 -0.4474232 0.5385787 0.5084753 -0.45727 0.5385787 0.5084753 -0.4662797 0.5385787 0.5084753 -0.4745834 0.5385787 0.5084753 -0.4822838 0.5385787 0.5084753 -0.4894626 0.5385787 0.5084753 -0.4961862 0.5385787 0.5084753 -0.5025087 0.5385787 0.5084753 -0.5084753 0.5385787 0.5084753 -0.514124 0.5385787 0.5084753 -0.519487 0.5385787 0.5084753 -0.5245917 0.5385787 0.5084753 -0.529462 0.5385787 0.5084753 -0.5341183 0.5385787 0.5084753 -0.5385787 0.5385787 0.5084753 -0.5428591 0.5385787 0.5084753 -0.5469733 0.5385787 0.5084753 -0.5509339 0.5385787 0.5084753 -0.5547519 0.5385787 0.5084753 -0.5584371 0.5385787 0.5084753 -0.5619986 0.5385787 0.5084753 -0.5654443 0.5385787 0.5084753 -0.5687816 0.5385787 0.5084753 -0.092819 0.5428591 0.5084753 -0.2262531 0.5428591 0.5084753 -0.2875993 0.5428591 0.5084753 -0.3262122 0.5428591 0.5084753 -0.3544566 0.5428591 0.5084753 -0.3767383 0.5428591 0.5084753 -0.3951413 0.5428591 0.5084753 -0.4108177 0.5428591 0.5084753 -0.4244723 0.5428591 0.5084753 -0.4365675 0.5428591 0.5084753 -0.4474232 0.5428591 0.5084753 -0.45727 0.5428591 0.5084753 -0.4662797 0.5428591 0.5084753 -0.4745834 0.5428591 0.5084753 -0.4822838 0.5428591 0.5084753 -0.4894626 0.5428591 0.5084753 -0.4961862 0.5428591 0.5084753 -0.5025087 0.5428591 0.5084753 -0.5084753 0.5428591 0.5084753 -0.514124 0.5428591 0.5084753 -0.519487 0.5428591 0.5084753 -0.5245917 0.5428591 0.5084753 -0.529462 0.5428591 0.5084753 -0.5341183 0.5428591 0.5084753 -0.5385787 0.5428591 0.5084753 -0.5428591 0.5428591 0.5084753 -0.5469733 0.5428591 0.5084753 -0.5509339 0.5428591 0.5084753 -0.5547519 0.5428591 0.5084753 -0.5584371 0.5428591 0.5084753 -0.5619986 0.5428591 0.5084753 -0.5654443 0.5428591 0.5084753 -0.5687816 0.5428591 0.5084753 -0.092819 0.5469733 0.5084753 -0.2262531 0.5469733 0.5084753 -0.2875993 0.5469733 0.5084753 -0.3262122 0.5469733 0.5084753 -0.3544566 0.5469733 0.5084753 -0.3767383 0.5469733 0.5084753 -0.3951413 0.5469733 0.5084753 -0.4108177 0.5469733 0.5084753 -0.4244723 0.5469733 0.5084753 -0.4365675 0.5469733 0.5084753 -0.4474232 0.5469733 0.5084753 -0.45727 0.5469733 0.5084753 -0.4662797 0.5469733 0.5084753 -0.4745834 0.5469733 0.5084753 -0.4822838 0.5469733 0.5084753 -0.4894626 0.5469733 0.5084753 -0.4961862 0.5469733 0.5084753 -0.5025087 0.5469733 0.5084753 -0.5084753 0.5469733 0.5084753 -0.514124 0.5469733 0.5084753 -0.519487 0.5469733 0.5084753 -0.5245917 0.5469733 0.5084753 -0.529462 0.5469733 0.5084753 -0.5341183 0.5469733 0.5084753 -0.5385787 0.5469733 0.5084753 -0.5428591 0.5469733 0.5084753 -0.5469733 0.5469733 0.5084753 -0.5509339 0.5469733 0.5084753 -0.5547519 0.5469733 0.5084753 -0.5584371 0.5469733 0.5084753 -0.5619986 0.5469733 0.5084753 -0.5654443 0.5469733 0.5084753 -0.5687816 0.5469733 0.5084753 -0.092819 0.5509339 0.5084753 -0.2262531 0.5509339 0.5084753 -0.2875993 0.5509339 0.5084753 -0.3262122 0.5509339 0.5084753 -0.3544566 0.5509339 0.5084753 -0.3767383 0.5509339 0.5084753 -0.3951413 0.5509339 0.5084753 -0.4108177 0.5509339 0.5084753 -0.4244723 0.5509339 0.5084753 -0.4365675 0.5509339 0.5084753 -0.4474232 0.5509339 0.5084753 -0.45727 0.5509339 0.5084753 -0.4662797 0.5509339 0.5084753 -0.4745834 0.5509339 0.5084753 -0.4822838 0.5509339 0.5084753 -0.4894626 0.5509339 0.5084753 -0.4961862 0.5509339 0.5084753 -0.5025087 0.5509339 0.5084753 -0.5084753 0.5509339 0.5084753 -0.514124 0.5509339 0.5084753 -0.519487 0.5509339 0.5084753 -0.5245917 0.5509339 0.5084753 -0.529462 0.5509339 0.5084753 -0.5341183 0.5509339 0.5084753 -0.5385787 0.5509339 0.5084753 -0.5428591 0.5509339 0.5084753 -0.5469733 0.5509339 0.5084753 -0.5509339 0.5509339 0.5084753 -0.5547519 0.5509339 0.5084753 -0.5584371 0.5509339 0.5084753 -0.5619986 0.5509339 0.5084753 -0.5654443 0.5509339 0.5084753 -0.5687816 0.5509339 0.5084753 -0.092819 0.5547519 0.5084753 -0.2262531 0.5547519 0.5084753 -0.2875993 0.5547519 0.5084753 -0.3262122 0.5547519 0.5084753 -0.3544566 0.5547519 0.5084753 -0.3767383 0.5547519 0.5084753 -0.3951413 0.5547519 0.5084753 -0.4108177 0.5547519 0.5084753 -0.4244723 0.5547519 0.5084753 -0.4365675 0.5547519 0.5084753 -0.4474232 0.5547519 0.5084753 -0.45727 0.5547519 0.5084753 -0.4662797 0.5547519 0.5084753 -0.4745834 0.5547519 0.5084753 -0.4822838 0.5547519 0.5084753 -0.4894626 0.5547519 0.5084753 -0.4961862 0.5547519 0.5084753 -0.5025087 0.5547519 0.5084753 -0.5084753 0.5547519 0.5084753 -0.514124 0.5547519 0.5084753 -0.519487 0.5547519 0.5084753 -0.5245917 0.5547519 0.5084753 -0.529462 0.5547519 0.5084753 -0.5341183 0.5547519 0.5084753 -0.5385787 0.5547519 0.5084753 -0.5428591 0.5547519 0.5084753 -0.5469733 0.5547519 0.5084753 -0.5509339 0.5547519 0.5084753 -0.5547519 0.5547519 0.5084753 -0.5584371 0.5547519 0.5084753 -0.5619986 0.5547519 0.5084753 -0.5654443 0.5547519 0.5084753 -0.5687816 0.5547519 0.5084753 -0.092819 0.5584371 0.5084753 -0.2262531 0.5584371 0.5084753 -0.2875993 0.5584371 0.5084753 -0.3262122 0.5584371 0.5084753 -0.3544566 0.5584371 0.5084753 -0.3767383 0.5584371 0.5084753 -0.3951413 0.5584371 0.5084753 -0.4108177 0.5584371 0.5084753 -0.4244723 0.5584371 0.5084753 -0.4365675 0.5584371 0.5084753 -0.4474232 0.5584371 0.5084753 -0.45727 0.5584371 0.5084753 -0.4662797 0.5584371 0.5084753 -0.4745834 0.5584371 0.5084753 -0.4822838 0.5584371 0.5084753 -0.4894626 0.5584371 0.5084753 -0.4961862 0.5584371 0.5084753 -0.5025087 0.5584371 0.5084753 -0.5084753 0.5584371 0.5084753 -0.514124 0.5584371 0.5084753 -0.519487 0.5584371 0.5084753 -0.5245917 0.5584371 0.5084753 -0.529462 0.5584371 0.5084753 -0.5341183 0.5584371 0.5084753 -0.5385787 0.5584371 0.5084753 -0.5428591 0.5584371 0.5084753 -0.5469733 0.5584371 0.5084753 -0.5509339 0.5584371 0.5084753 -0.5547519 0.5584371 0.5084753 -0.5584371 0.5584371 0.5084753 -0.5619986 0.5584371 0.5084753 -0.5654443 0.5584371 0.5084753 -0.5687816 0.5584371 0.5084753 -0.092819 0.5619986 0.5084753 -0.2262531 0.5619986 0.5084753 -0.2875993 0.5619986 0.5084753 -0.3262122 0.5619986 0.5084753 -0.3544566 0.5619986 0.5084753 -0.3767383 0.5619986 0.5084753 -0.3951413 0.5619986 0.5084753 -0.4108177 0.5619986 0.5084753 -0.4244723 0.5619986 0.5084753 -0.4365675 0.5619986 0.5084753 -0.4474232 0.5619986 0.5084753 -0.45727 0.5619986 0.5084753 -0.4662797 0.5619986 0.5084753 -0.4745834 0.5619986 0.5084753 -0.4822838 0.5619986 0.5084753 -0.4894626 0.5619986 0.5084753 -0.4961862 0.5619986 0.5084753 -0.5025087 0.5619986 0.5084753 -0.5084753 0.5619986 0.5084753 -0.514124 0.5619986 0.5084753 -0.519487 0.5619986 0.5084753 -0.5245917 0.5619986 0.5084753 -0.529462 0.5619986 0.5084753 -0.5341183 0.5619986 0.5084753 -0.5385787 0.5619986 0.5084753 -0.5428591 0.5619986 0.5084753 -0.5469733 0.5619986 0.5084753 -0.5509339 0.5619986 0.5084753 -0.5547519 0.5619986 0.5084753 -0.5584371 0.5619986 0.5084753 -0.5619986 0.5619986 0.5084753 -0.5654443 0.5619986 0.5084753 -0.5687816 0.5619986 0.5084753 -0.092819 0.5654443 0.5084753 -0.2262531 0.5654443 0.5084753 -0.2875993 0.5654443 0.5084753 -0.3262122 0.5654443 0.5084753 -0.3544566 0.5654443 0.5084753 -0.3767383 0.5654443 0.5084753 -0.3951413 0.5654443 0.5084753 -0.4108177 0.5654443 0.5084753 -0.4244723 0.5654443 0.5084753 -0.4365675 0.5654443 0.5084753 -0.4474232 0.5654443 0.5084753 -0.45727 0.5654443 0.5084753 -0.4662797 0.5654443 0.5084753 -0.4745834 0.5654443 0.5084753 -0.4822838 0.5654443 0.5084753 -0.4894626 0.5654443 0.5084753 -0.4961862 0.5654443 0.5084753 -0.5025087 0.5654443 0.5084753 -0.5084753 0.5654443 0.5084753 -0.514124 0.5654443 0.5084753 -0.519487 0.5654443 0.5084753 -0.5245917 0.5654443 0.5084753 -0.529462 0.5654443 0.5084753 -0.5341183 0.5654443 0.5084753 -0.5385787 0.5654443 0.5084753 -0.5428591 0.5654443 0.5084753 -0.5469733 0.5654443 0.5084753 -0.5509339 0.5654443 0.5084753 -0.5547519 0.5654443 0.5084753 -0.5584371 0.5654443 0.5084753 -0.5619986 0.5654443 0.5084753 -0.5654443 0.5654443 0.5084753 -0.5687816 0.5654443 0.5084753 -0.092819 0.5687816 0.5084753 -0.2262531 0.5687816 0.5084753 -0.2875993 0.5687816 0.5084753 -0.3262122 0.5687816 0.5084753 -0.3544566 0.5687816 0.5084753 -0.3767383 0.5687816 0.5084753 -0.3951413 0.5687816 0.5084753 -0.4108177 0.5687816 0.5084753 -0.4244723 0.5687816 0.5084753 -0.4365675 0.5687816 0.5084753 -0.4474232 0.5687816 0.5084753 -0.45727 0.5687816 0.5084753 -0.4662797 0.5687816 0.5084753 -0.4745834 0.5687816 0.5084753 -0.4822838 0.5687816 0.5084753 -0.4894626 0.5687816 0.5084753 -0.4961862 0.5687816 0.5084753 -0.5025087 0.5687816 0.5084753 -0.5084753 0.5687816 0.5084753 -0.514124 0.5687816 0.5084753 -0.519487 0.5687816 0.5084753 -0.5245917 0.5687816 0.5084753 -0.529462 0.5687816 0.5084753 -0.5341183 0.5687816 0.5084753 -0.5385787 0.5687816 0.5084753 -0.5428591 0.5687816 0.5084753 -0.5469733 0.5687816 0.5084753 -0.5509339 0.5687816 0.5084753 -0.5547519 0.5687816 0.5084753 -0.5584371 0.5687816 0.5084753 -0.5619986 0.5687816 0.5084753 -0.5654443 0.5687816 0.5084753 -0.5687816 0.5687816 0.5084753 -0.092819 0.092819 0.514124 -0.2262531 0.092819 0.514124 -0.2875993 0.092819 0.514124 -0.3262122 0.092819 0.514124 -0.3544566 0.092819 0.514124 -0.3767383 0.092819 0.514124 -0.3951413 0.092819 0.514124 -0.4108177 0.092819 0.514124 -0.4244723 0.092819 0.514124 -0.4365675 0.092819 0.514124 -0.4474232 0.092819 0.514124 -0.45727 0.092819 0.514124 -0.4662797 0.092819 0.514124 -0.4745834 0.092819 0.514124 -0.4822838 0.092819 0.514124 -0.4894626 0.092819 0.514124 -0.4961862 0.092819 0.514124 -0.5025087 0.092819 0.514124 -0.5084753 0.092819 0.514124 -0.514124 0.092819 0.514124 -0.519487 0.092819 0.514124 -0.5245917 0.092819 0.514124 -0.529462 0.092819 0.514124 -0.5341183 0.092819 0.514124 -0.5385787 0.092819 0.514124 -0.5428591 0.092819 0.514124 -0.5469733 0.092819 0.514124 -0.5509339 0.092819 0.514124 -0.5547519 0.092819 0.514124 -0.5584371 0.092819 0.514124 -0.5619986 0.092819 0.514124 -0.5654443 0.092819 0.514124 -0.5687816 0.092819 0.514124 -0.092819 0.2262531 0.514124 -0.2262531 0.2262531 0.514124 -0.2875993 0.2262531 0.514124 -0.3262122 0.2262531 0.514124 -0.3544566 0.2262531 0.514124 -0.3767383 0.2262531 0.514124 -0.3951413 0.2262531 0.514124 -0.4108177 0.2262531 0.514124 -0.4244723 0.2262531 0.514124 -0.4365675 0.2262531 0.514124 -0.4474232 0.2262531 0.514124 -0.45727 0.2262531 0.514124 -0.4662797 0.2262531 0.514124 -0.4745834 0.2262531 0.514124 -0.4822838 0.2262531 0.514124 -0.4894626 0.2262531 0.514124 -0.4961862 0.2262531 0.514124 -0.5025087 0.2262531 0.514124 -0.5084753 0.2262531 0.514124 -0.514124 0.2262531 0.514124 -0.519487 0.2262531 0.514124 -0.5245917 0.2262531 0.514124 -0.529462 0.2262531 0.514124 -0.5341183 0.2262531 0.514124 -0.5385787 0.2262531 0.514124 -0.5428591 0.2262531 0.514124 -0.5469733 0.2262531 0.514124 -0.5509339 0.2262531 0.514124 -0.5547519 0.2262531 0.514124 -0.5584371 0.2262531 0.514124 -0.5619986 0.2262531 0.514124 -0.5654443 0.2262531 0.514124 -0.5687816 0.2262531 0.514124 -0.092819 0.2875993 0.514124 -0.2262531 0.2875993 0.514124 -0.2875993 0.2875993 0.514124 -0.3262122 0.2875993 0.514124 -0.3544566 0.2875993 0.514124 -0.3767383 0.2875993 0.514124 -0.3951413 0.2875993 0.514124 -0.4108177 0.2875993 0.514124 -0.4244723 0.2875993 0.514124 -0.4365675 0.2875993 0.514124 -0.4474232 0.2875993 0.514124 -0.45727 0.2875993 0.514124 -0.4662797 0.2875993 0.514124 -0.4745834 0.2875993 0.514124 -0.4822838 0.2875993 0.514124 -0.4894626 0.2875993 0.514124 -0.4961862 0.2875993 0.514124 -0.5025087 0.2875993 0.514124 -0.5084753 0.2875993 0.514124 -0.514124 0.2875993 0.514124 -0.519487 0.2875993 0.514124 -0.5245917 0.2875993 0.514124 -0.529462 0.2875993 0.514124 -0.5341183 0.2875993 0.514124 -0.5385787 0.2875993 0.514124 -0.5428591 0.2875993 0.514124 -0.5469733 0.2875993 0.514124 -0.5509339 0.2875993 0.514124 -0.5547519 0.2875993 0.514124 -0.5584371 0.2875993 0.514124 -0.5619986 0.2875993 0.514124 -0.5654443 0.2875993 0.514124 -0.5687816 0.2875993 0.514124 -0.092819 0.3262122 0.514124 -0.2262531 0.3262122 0.514124 -0.2875993 0.3262122 0.514124 -0.3262122 0.3262122 0.514124 -0.3544566 0.3262122 0.514124 -0.3767383 0.3262122 0.514124 -0.3951413 0.3262122 0.514124 -0.4108177 0.3262122 0.514124 -0.4244723 0.3262122 0.514124 -0.4365675 0.3262122 0.514124 -0.4474232 0.3262122 0.514124 -0.45727 0.3262122 0.514124 -0.4662797 0.3262122 0.514124 -0.4745834 0.3262122 0.514124 -0.4822838 0.3262122 0.514124 -0.4894626 0.3262122 0.514124 -0.4961862 0.3262122 0.514124 -0.5025087 0.3262122 0.514124 -0.5084753 0.3262122 0.514124 -0.514124 0.3262122 0.514124 -0.519487 0.3262122 0.514124 -0.5245917 0.3262122 0.514124 -0.529462 0.3262122 0.514124 -0.5341183 0.3262122 0.514124 -0.5385787 0.3262122 0.514124 -0.5428591 0.3262122 0.514124 -0.5469733 0.3262122 0.514124 -0.5509339 0.3262122 0.514124 -0.5547519 0.3262122 0.514124 -0.5584371 0.3262122 0.514124 -0.5619986 0.3262122 0.514124 -0.5654443 0.3262122 0.514124 -0.5687816 0.3262122 0.514124 -0.092819 0.3544566 0.514124 -0.2262531 0.3544566 0.514124 -0.2875993 0.3544566 0.514124 -0.3262122 0.3544566 0.514124 -0.3544566 0.3544566 0.514124 -0.3767383 0.3544566 0.514124 -0.3951413 0.3544566 0.514124 -0.4108177 0.3544566 0.514124 -0.4244723 0.3544566 0.514124 -0.4365675 0.3544566 0.514124 -0.4474232 0.3544566 0.514124 -0.45727 0.3544566 0.514124 -0.4662797 0.3544566 0.514124 -0.4745834 0.3544566 0.514124 -0.4822838 0.3544566 0.514124 -0.4894626 0.3544566 0.514124 -0.4961862 0.3544566 0.514124 -0.5025087 0.3544566 0.514124 -0.5084753 0.3544566 0.514124 -0.514124 0.3544566 0.514124 -0.519487 0.3544566 0.514124 -0.5245917 0.3544566 0.514124 -0.529462 0.3544566 0.514124 -0.5341183 0.3544566 0.514124 -0.5385787 0.3544566 0.514124 -0.5428591 0.3544566 0.514124 -0.5469733 0.3544566 0.514124 -0.5509339 0.3544566 0.514124 -0.5547519 0.3544566 0.514124 -0.5584371 0.3544566 0.514124 -0.5619986 0.3544566 0.514124 -0.5654443 0.3544566 0.514124 -0.5687816 0.3544566 0.514124 -0.092819 0.3767383 0.514124 -0.2262531 0.3767383 0.514124 -0.2875993 0.3767383 0.514124 -0.3262122 0.3767383 0.514124 -0.3544566 0.3767383 0.514124 -0.3767383 0.3767383 0.514124 -0.3951413 0.3767383 0.514124 -0.4108177 0.3767383 0.514124 -0.4244723 0.3767383 0.514124 -0.4365675 0.3767383 0.514124 -0.4474232 0.3767383 0.514124 -0.45727 0.3767383 0.514124 -0.4662797 0.3767383 0.514124 -0.4745834 0.3767383 0.514124 -0.4822838 0.3767383 0.514124 -0.4894626 0.3767383 0.514124 -0.4961862 0.3767383 0.514124 -0.5025087 0.3767383 0.514124 -0.5084753 0.3767383 0.514124 -0.514124 0.3767383 0.514124 -0.519487 0.3767383 0.514124 -0.5245917 0.3767383 0.514124 -0.529462 0.3767383 0.514124 -0.5341183 0.3767383 0.514124 -0.5385787 0.3767383 0.514124 -0.5428591 0.3767383 0.514124 -0.5469733 0.3767383 0.514124 -0.5509339 0.3767383 0.514124 -0.5547519 0.3767383 0.514124 -0.5584371 0.3767383 0.514124 -0.5619986 0.3767383 0.514124 -0.5654443 0.3767383 0.514124 -0.5687816 0.3767383 0.514124 -0.092819 0.3951413 0.514124 -0.2262531 0.3951413 0.514124 -0.2875993 0.3951413 0.514124 -0.3262122 0.3951413 0.514124 -0.3544566 0.3951413 0.514124 -0.3767383 0.3951413 0.514124 -0.3951413 0.3951413 0.514124 -0.4108177 0.3951413 0.514124 -0.4244723 0.3951413 0.514124 -0.4365675 0.3951413 0.514124 -0.4474232 0.3951413 0.514124 -0.45727 0.3951413 0.514124 -0.4662797 0.3951413 0.514124 -0.4745834 0.3951413 0.514124 -0.4822838 0.3951413 0.514124 -0.4894626 0.3951413 0.514124 -0.4961862 0.3951413 0.514124 -0.5025087 0.3951413 0.514124 -0.5084753 0.3951413 0.514124 -0.514124 0.3951413 0.514124 -0.519487 0.3951413 0.514124 -0.5245917 0.3951413 0.514124 -0.529462 0.3951413 0.514124 -0.5341183 0.3951413 0.514124 -0.5385787 0.3951413 0.514124 -0.5428591 0.3951413 0.514124 -0.5469733 0.3951413 0.514124 -0.5509339 0.3951413 0.514124 -0.5547519 0.3951413 0.514124 -0.5584371 0.3951413 0.514124 -0.5619986 0.3951413 0.514124 -0.5654443 0.3951413 0.514124 -0.5687816 0.3951413 0.514124 -0.092819 0.4108177 0.514124 -0.2262531 0.4108177 0.514124 -0.2875993 0.4108177 0.514124 -0.3262122 0.4108177 0.514124 -0.3544566 0.4108177 0.514124 -0.3767383 0.4108177 0.514124 -0.3951413 0.4108177 0.514124 -0.4108177 0.4108177 0.514124 -0.4244723 0.4108177 0.514124 -0.4365675 0.4108177 0.514124 -0.4474232 0.4108177 0.514124 -0.45727 0.4108177 0.514124 -0.4662797 0.4108177 0.514124 -0.4745834 0.4108177 0.514124 -0.4822838 0.4108177 0.514124 -0.4894626 0.4108177 0.514124 -0.4961862 0.4108177 0.514124 -0.5025087 0.4108177 0.514124 -0.5084753 0.4108177 0.514124 -0.514124 0.4108177 0.514124 -0.519487 0.4108177 0.514124 -0.5245917 0.4108177 0.514124 -0.529462 0.4108177 0.514124 -0.5341183 0.4108177 0.514124 -0.5385787 0.4108177 0.514124 -0.5428591 0.4108177 0.514124 -0.5469733 0.4108177 0.514124 -0.5509339 0.4108177 0.514124 -0.5547519 0.4108177 0.514124 -0.5584371 0.4108177 0.514124 -0.5619986 0.4108177 0.514124 -0.5654443 0.4108177 0.514124 -0.5687816 0.4108177 0.514124 -0.092819 0.4244723 0.514124 -0.2262531 0.4244723 0.514124 -0.2875993 0.4244723 0.514124 -0.3262122 0.4244723 0.514124 -0.3544566 0.4244723 0.514124 -0.3767383 0.4244723 0.514124 -0.3951413 0.4244723 0.514124 -0.4108177 0.4244723 0.514124 -0.4244723 0.4244723 0.514124 -0.4365675 0.4244723 0.514124 -0.4474232 0.4244723 0.514124 -0.45727 0.4244723 0.514124 -0.4662797 0.4244723 0.514124 -0.4745834 0.4244723 0.514124 -0.4822838 0.4244723 0.514124 -0.4894626 0.4244723 0.514124 -0.4961862 0.4244723 0.514124 -0.5025087 0.4244723 0.514124 -0.5084753 0.4244723 0.514124 -0.514124 0.4244723 0.514124 -0.519487 0.4244723 0.514124 -0.5245917 0.4244723 0.514124 -0.529462 0.4244723 0.514124 -0.5341183 0.4244723 0.514124 -0.5385787 0.4244723 0.514124 -0.5428591 0.4244723 0.514124 -0.5469733 0.4244723 0.514124 -0.5509339 0.4244723 0.514124 -0.5547519 0.4244723 0.514124 -0.5584371 0.4244723 0.514124 -0.5619986 0.4244723 0.514124 -0.5654443 0.4244723 0.514124 -0.5687816 0.4244723 0.514124 -0.092819 0.4365675 0.514124 -0.2262531 0.4365675 0.514124 -0.2875993 0.4365675 0.514124 -0.3262122 0.4365675 0.514124 -0.3544566 0.4365675 0.514124 -0.3767383 0.4365675 0.514124 -0.3951413 0.4365675 0.514124 -0.4108177 0.4365675 0.514124 -0.4244723 0.4365675 0.514124 -0.4365675 0.4365675 0.514124 -0.4474232 0.4365675 0.514124 -0.45727 0.4365675 0.514124 -0.4662797 0.4365675 0.514124 -0.4745834 0.4365675 0.514124 -0.4822838 0.4365675 0.514124 -0.4894626 0.4365675 0.514124 -0.4961862 0.4365675 0.514124 -0.5025087 0.4365675 0.514124 -0.5084753 0.4365675 0.514124 -0.514124 0.4365675 0.514124 -0.519487 0.4365675 0.514124 -0.5245917 0.4365675 0.514124 -0.529462 0.4365675 0.514124 -0.5341183 0.4365675 0.514124 -0.5385787 0.4365675 0.514124 -0.5428591 0.4365675 0.514124 -0.5469733 0.4365675 0.514124 -0.5509339 0.4365675 0.514124 -0.5547519 0.4365675 0.514124 -0.5584371 0.4365675 0.514124 -0.5619986 0.4365675 0.514124 -0.5654443 0.4365675 0.514124 -0.5687816 0.4365675 0.514124 -0.092819 0.4474232 0.514124 -0.2262531 0.4474232 0.514124 -0.2875993 0.4474232 0.514124 -0.3262122 0.4474232 0.514124 -0.3544566 0.4474232 0.514124 -0.3767383 0.4474232 0.514124 -0.3951413 0.4474232 0.514124 -0.4108177 0.4474232 0.514124 -0.4244723 0.4474232 0.514124 -0.4365675 0.4474232 0.514124 -0.4474232 0.4474232 0.514124 -0.45727 0.4474232 0.514124 -0.4662797 0.4474232 0.514124 -0.4745834 0.4474232 0.514124 -0.4822838 0.4474232 0.514124 -0.4894626 0.4474232 0.514124 -0.4961862 0.4474232 0.514124 -0.5025087 0.4474232 0.514124 -0.5084753 0.4474232 0.514124 -0.514124 0.4474232 0.514124 -0.519487 0.4474232 0.514124 -0.5245917 0.4474232 0.514124 -0.529462 0.4474232 0.514124 -0.5341183 0.4474232 0.514124 -0.5385787 0.4474232 0.514124 -0.5428591 0.4474232 0.514124 -0.5469733 0.4474232 0.514124 -0.5509339 0.4474232 0.514124 -0.5547519 0.4474232 0.514124 -0.5584371 0.4474232 0.514124 -0.5619986 0.4474232 0.514124 -0.5654443 0.4474232 0.514124 -0.5687816 0.4474232 0.514124 -0.092819 0.45727 0.514124 -0.2262531 0.45727 0.514124 -0.2875993 0.45727 0.514124 -0.3262122 0.45727 0.514124 -0.3544566 0.45727 0.514124 -0.3767383 0.45727 0.514124 -0.3951413 0.45727 0.514124 -0.4108177 0.45727 0.514124 -0.4244723 0.45727 0.514124 -0.4365675 0.45727 0.514124 -0.4474232 0.45727 0.514124 -0.45727 0.45727 0.514124 -0.4662797 0.45727 0.514124 -0.4745834 0.45727 0.514124 -0.4822838 0.45727 0.514124 -0.4894626 0.45727 0.514124 -0.4961862 0.45727 0.514124 -0.5025087 0.45727 0.514124 -0.5084753 0.45727 0.514124 -0.514124 0.45727 0.514124 -0.519487 0.45727 0.514124 -0.5245917 0.45727 0.514124 -0.529462 0.45727 0.514124 -0.5341183 0.45727 0.514124 -0.5385787 0.45727 0.514124 -0.5428591 0.45727 0.514124 -0.5469733 0.45727 0.514124 -0.5509339 0.45727 0.514124 -0.5547519 0.45727 0.514124 -0.5584371 0.45727 0.514124 -0.5619986 0.45727 0.514124 -0.5654443 0.45727 0.514124 -0.5687816 0.45727 0.514124 -0.092819 0.4662797 0.514124 -0.2262531 0.4662797 0.514124 -0.2875993 0.4662797 0.514124 -0.3262122 0.4662797 0.514124 -0.3544566 0.4662797 0.514124 -0.3767383 0.4662797 0.514124 -0.3951413 0.4662797 0.514124 -0.4108177 0.4662797 0.514124 -0.4244723 0.4662797 0.514124 -0.4365675 0.4662797 0.514124 -0.4474232 0.4662797 0.514124 -0.45727 0.4662797 0.514124 -0.4662797 0.4662797 0.514124 -0.4745834 0.4662797 0.514124 -0.4822838 0.4662797 0.514124 -0.4894626 0.4662797 0.514124 -0.4961862 0.4662797 0.514124 -0.5025087 0.4662797 0.514124 -0.5084753 0.4662797 0.514124 -0.514124 0.4662797 0.514124 -0.519487 0.4662797 0.514124 -0.5245917 0.4662797 0.514124 -0.529462 0.4662797 0.514124 -0.5341183 0.4662797 0.514124 -0.5385787 0.4662797 0.514124 -0.5428591 0.4662797 0.514124 -0.5469733 0.4662797 0.514124 -0.5509339 0.4662797 0.514124 -0.5547519 0.4662797 0.514124 -0.5584371 0.4662797 0.514124 -0.5619986 0.4662797 0.514124 -0.5654443 0.4662797 0.514124 -0.5687816 0.4662797 0.514124 -0.092819 0.4745834 0.514124 -0.2262531 0.4745834 0.514124 -0.2875993 0.4745834 0.514124 -0.3262122 0.4745834 0.514124 -0.3544566 0.4745834 0.514124 -0.3767383 0.4745834 0.514124 -0.3951413 0.4745834 0.514124 -0.4108177 0.4745834 0.514124 -0.4244723 0.4745834 0.514124 -0.4365675 0.4745834 0.514124 -0.4474232 0.4745834 0.514124 -0.45727 0.4745834 0.514124 -0.4662797 0.4745834 0.514124 -0.4745834 0.4745834 0.514124 -0.4822838 0.4745834 0.514124 -0.4894626 0.4745834 0.514124 -0.4961862 0.4745834 0.514124 -0.5025087 0.4745834 0.514124 -0.5084753 0.4745834 0.514124 -0.514124 0.4745834 0.514124 -0.519487 0.4745834 0.514124 -0.5245917 0.4745834 0.514124 -0.529462 0.4745834 0.514124 -0.5341183 0.4745834 0.514124 -0.5385787 0.4745834 0.514124 -0.5428591 0.4745834 0.514124 -0.5469733 0.4745834 0.514124 -0.5509339 0.4745834 0.514124 -0.5547519 0.4745834 0.514124 -0.5584371 0.4745834 0.514124 -0.5619986 0.4745834 0.514124 -0.5654443 0.4745834 0.514124 -0.5687816 0.4745834 0.514124 -0.092819 0.4822838 0.514124 -0.2262531 0.4822838 0.514124 -0.2875993 0.4822838 0.514124 -0.3262122 0.4822838 0.514124 -0.3544566 0.4822838 0.514124 -0.3767383 0.4822838 0.514124 -0.3951413 0.4822838 0.514124 -0.4108177 0.4822838 0.514124 -0.4244723 0.4822838 0.514124 -0.4365675 0.4822838 0.514124 -0.4474232 0.4822838 0.514124 -0.45727 0.4822838 0.514124 -0.4662797 0.4822838 0.514124 -0.4745834 0.4822838 0.514124 -0.4822838 0.4822838 0.514124 -0.4894626 0.4822838 0.514124 -0.4961862 0.4822838 0.514124 -0.5025087 0.4822838 0.514124 -0.5084753 0.4822838 0.514124 -0.514124 0.4822838 0.514124 -0.519487 0.4822838 0.514124 -0.5245917 0.4822838 0.514124 -0.529462 0.4822838 0.514124 -0.5341183 0.4822838 0.514124 -0.5385787 0.4822838 0.514124 -0.5428591 0.4822838 0.514124 -0.5469733 0.4822838 0.514124 -0.5509339 0.4822838 0.514124 -0.5547519 0.4822838 0.514124 -0.5584371 0.4822838 0.514124 -0.5619986 0.4822838 0.514124 -0.5654443 0.4822838 0.514124 -0.5687816 0.4822838 0.514124 -0.092819 0.4894626 0.514124 -0.2262531 0.4894626 0.514124 -0.2875993 0.4894626 0.514124 -0.3262122 0.4894626 0.514124 -0.3544566 0.4894626 0.514124 -0.3767383 0.4894626 0.514124 -0.3951413 0.4894626 0.514124 -0.4108177 0.4894626 0.514124 -0.4244723 0.4894626 0.514124 -0.4365675 0.4894626 0.514124 -0.4474232 0.4894626 0.514124 -0.45727 0.4894626 0.514124 -0.4662797 0.4894626 0.514124 -0.4745834 0.4894626 0.514124 -0.4822838 0.4894626 0.514124 -0.4894626 0.4894626 0.514124 -0.4961862 0.4894626 0.514124 -0.5025087 0.4894626 0.514124 -0.5084753 0.4894626 0.514124 -0.514124 0.4894626 0.514124 -0.519487 0.4894626 0.514124 -0.5245917 0.4894626 0.514124 -0.529462 0.4894626 0.514124 -0.5341183 0.4894626 0.514124 -0.5385787 0.4894626 0.514124 -0.5428591 0.4894626 0.514124 -0.5469733 0.4894626 0.514124 -0.5509339 0.4894626 0.514124 -0.5547519 0.4894626 0.514124 -0.5584371 0.4894626 0.514124 -0.5619986 0.4894626 0.514124 -0.5654443 0.4894626 0.514124 -0.5687816 0.4894626 0.514124 -0.092819 0.4961862 0.514124 -0.2262531 0.4961862 0.514124 -0.2875993 0.4961862 0.514124 -0.3262122 0.4961862 0.514124 -0.3544566 0.4961862 0.514124 -0.3767383 0.4961862 0.514124 -0.3951413 0.4961862 0.514124 -0.4108177 0.4961862 0.514124 -0.4244723 0.4961862 0.514124 -0.4365675 0.4961862 0.514124 -0.4474232 0.4961862 0.514124 -0.45727 0.4961862 0.514124 -0.4662797 0.4961862 0.514124 -0.4745834 0.4961862 0.514124 -0.4822838 0.4961862 0.514124 -0.4894626 0.4961862 0.514124 -0.4961862 0.4961862 0.514124 -0.5025087 0.4961862 0.514124 -0.5084753 0.4961862 0.514124 -0.514124 0.4961862 0.514124 -0.519487 0.4961862 0.514124 -0.5245917 0.4961862 0.514124 -0.529462 0.4961862 0.514124 -0.5341183 0.4961862 0.514124 -0.5385787 0.4961862 0.514124 -0.5428591 0.4961862 0.514124 -0.5469733 0.4961862 0.514124 -0.5509339 0.4961862 0.514124 -0.5547519 0.4961862 0.514124 -0.5584371 0.4961862 0.514124 -0.5619986 0.4961862 0.514124 -0.5654443 0.4961862 0.514124 -0.5687816 0.4961862 0.514124 -0.092819 0.5025087 0.514124 -0.2262531 0.5025087 0.514124 -0.2875993 0.5025087 0.514124 -0.3262122 0.5025087 0.514124 -0.3544566 0.5025087 0.514124 -0.3767383 0.5025087 0.514124 -0.3951413 0.5025087 0.514124 -0.4108177 0.5025087 0.514124 -0.4244723 0.5025087 0.514124 -0.4365675 0.5025087 0.514124 -0.4474232 0.5025087 0.514124 -0.45727 0.5025087 0.514124 -0.4662797 0.5025087 0.514124 -0.4745834 0.5025087 0.514124 -0.4822838 0.5025087 0.514124 -0.4894626 0.5025087 0.514124 -0.4961862 0.5025087 0.514124 -0.5025087 0.5025087 0.514124 -0.5084753 0.5025087 0.514124 -0.514124 0.5025087 0.514124 -0.519487 0.5025087 0.514124 -0.5245917 0.5025087 0.514124 -0.529462 0.5025087 0.514124 -0.5341183 0.5025087 0.514124 -0.5385787 0.5025087 0.514124 -0.5428591 0.5025087 0.514124 -0.5469733 0.5025087 0.514124 -0.5509339 0.5025087 0.514124 -0.5547519 0.5025087 0.514124 -0.5584371 0.5025087 0.514124 -0.5619986 0.5025087 0.514124 -0.5654443 0.5025087 0.514124 -0.5687816 0.5025087 0.514124 -0.092819 0.5084753 0.514124 -0.2262531 0.5084753 0.514124 -0.2875993 0.5084753 0.514124 -0.3262122 0.5084753 0.514124 -0.3544566 0.5084753 0.514124 -0.3767383 0.5084753 0.514124 -0.3951413 0.5084753 0.514124 -0.4108177 0.5084753 0.514124 -0.4244723 0.5084753 0.514124 -0.4365675 0.5084753 0.514124 -0.4474232 0.5084753 0.514124 -0.45727 0.5084753 0.514124 -0.4662797 0.5084753 0.514124 -0.4745834 0.5084753 0.514124 -0.4822838 0.5084753 0.514124 -0.4894626 0.5084753 0.514124 -0.4961862 0.5084753 0.514124 -0.5025087 0.5084753 0.514124 -0.5084753 0.5084753 0.514124 -0.514124 0.5084753 0.514124 -0.519487 0.5084753 0.514124 -0.5245917 0.5084753 0.514124 -0.529462 0.5084753 0.514124 -0.5341183 0.5084753 0.514124 -0.5385787 0.5084753 0.514124 -0.5428591 0.5084753 0.514124 -0.5469733 0.5084753 0.514124 -0.5509339 0.5084753 0.514124 -0.5547519 0.5084753 0.514124 -0.5584371 0.5084753 0.514124 -0.5619986 0.5084753 0.514124 -0.5654443 0.5084753 0.514124 -0.5687816 0.5084753 0.514124 -0.092819 0.514124 0.514124 -0.2262531 0.514124 0.514124 -0.2875993 0.514124 0.514124 -0.3262122 0.514124 0.514124 -0.3544566 0.514124 0.514124 -0.3767383 0.514124 0.514124 -0.3951413 0.514124 0.514124 -0.4108177 0.514124 0.514124 -0.4244723 0.514124 0.514124 -0.4365675 0.514124 0.514124 -0.4474232 0.514124 0.514124 -0.45727 0.514124 0.514124 -0.4662797 0.514124 0.514124 -0.4745834 0.514124 0.514124 -0.4822838 0.514124 0.514124 -0.4894626 0.514124 0.514124 -0.4961862 0.514124 0.514124 -0.5025087 0.514124 0.514124 -0.5084753 0.514124 0.514124 -0.514124 0.514124 0.514124 -0.519487 0.514124 0.514124 -0.5245917 0.514124 0.514124 -0.529462 0.514124 0.514124 -0.5341183 0.514124 0.514124 -0.5385787 0.514124 0.514124 -0.5428591 0.514124 0.514124 -0.5469733 0.514124 0.514124 -0.5509339 0.514124 0.514124 -0.5547519 0.514124 0.514124 -0.5584371 0.514124 0.514124 -0.5619986 0.514124 0.514124 -0.5654443 0.514124 0.514124 -0.5687816 0.514124 0.514124 -0.092819 0.519487 0.514124 -0.2262531 0.519487 0.514124 -0.2875993 0.519487 0.514124 -0.3262122 0.519487 0.514124 -0.3544566 0.519487 0.514124 -0.3767383 0.519487 0.514124 -0.3951413 0.519487 0.514124 -0.4108177 0.519487 0.514124 -0.4244723 0.519487 0.514124 -0.4365675 0.519487 0.514124 -0.4474232 0.519487 0.514124 -0.45727 0.519487 0.514124 -0.4662797 0.519487 0.514124 -0.4745834 0.519487 0.514124 -0.4822838 0.519487 0.514124 -0.4894626 0.519487 0.514124 -0.4961862 0.519487 0.514124 -0.5025087 0.519487 0.514124 -0.5084753 0.519487 0.514124 -0.514124 0.519487 0.514124 -0.519487 0.519487 0.514124 -0.5245917 0.519487 0.514124 -0.529462 0.519487 0.514124 -0.5341183 0.519487 0.514124 -0.5385787 0.519487 0.514124 -0.5428591 0.519487 0.514124 -0.5469733 0.519487 0.514124 -0.5509339 0.519487 0.514124 -0.5547519 0.519487 0.514124 -0.5584371 0.519487 0.514124 -0.5619986 0.519487 0.514124 -0.5654443 0.519487 0.514124 -0.5687816 0.519487 0.514124 -0.092819 0.5245917 0.514124 -0.2262531 0.5245917 0.514124 -0.2875993 0.5245917 0.514124 -0.3262122 0.5245917 0.514124 -0.3544566 0.5245917 0.514124 -0.3767383 0.5245917 0.514124 -0.3951413 0.5245917 0.514124 -0.4108177 0.5245917 0.514124 -0.4244723 0.5245917 0.514124 -0.4365675 0.5245917 0.514124 -0.4474232 0.5245917 0.514124 -0.45727 0.5245917 0.514124 -0.4662797 0.5245917 0.514124 -0.4745834 0.5245917 0.514124 -0.4822838 0.5245917 0.514124 -0.4894626 0.5245917 0.514124 -0.4961862 0.5245917 0.514124 -0.5025087 0.5245917 0.514124 -0.5084753 0.5245917 0.514124 -0.514124 0.5245917 0.514124 -0.519487 0.5245917 0.514124 -0.5245917 0.5245917 0.514124 -0.529462 0.5245917 0.514124 -0.5341183 0.5245917 0.514124 -0.5385787 0.5245917 0.514124 -0.5428591 0.5245917 0.514124 -0.5469733 0.5245917 0.514124 -0.5509339 0.5245917 0.514124 -0.5547519 0.5245917 0.514124 -0.5584371 0.5245917 0.514124 -0.5619986 0.5245917 0.514124 -0.5654443 0.5245917 0.514124 -0.5687816 0.5245917 0.514124 -0.092819 0.529462 0.514124 -0.2262531 0.529462 0.514124 -0.2875993 0.529462 0.514124 -0.3262122 0.529462 0.514124 -0.3544566 0.529462 0.514124 -0.3767383 0.529462 0.514124 -0.3951413 0.529462 0.514124 -0.4108177 0.529462 0.514124 -0.4244723 0.529462 0.514124 -0.4365675 0.529462 0.514124 -0.4474232 0.529462 0.514124 -0.45727 0.529462 0.514124 -0.4662797 0.529462 0.514124 -0.4745834 0.529462 0.514124 -0.4822838 0.529462 0.514124 -0.4894626 0.529462 0.514124 -0.4961862 0.529462 0.514124 -0.5025087 0.529462 0.514124 -0.5084753 0.529462 0.514124 -0.514124 0.529462 0.514124 -0.519487 0.529462 0.514124 -0.5245917 0.529462 0.514124 -0.529462 0.529462 0.514124 -0.5341183 0.529462 0.514124 -0.5385787 0.529462 0.514124 -0.5428591 0.529462 0.514124 -0.5469733 0.529462 0.514124 -0.5509339 0.529462 0.514124 -0.5547519 0.529462 0.514124 -0.5584371 0.529462 0.514124 -0.5619986 0.529462 0.514124 -0.5654443 0.529462 0.514124 -0.5687816 0.529462 0.514124 -0.092819 0.5341183 0.514124 -0.2262531 0.5341183 0.514124 -0.2875993 0.5341183 0.514124 -0.3262122 0.5341183 0.514124 -0.3544566 0.5341183 0.514124 -0.3767383 0.5341183 0.514124 -0.3951413 0.5341183 0.514124 -0.4108177 0.5341183 0.514124 -0.4244723 0.5341183 0.514124 -0.4365675 0.5341183 0.514124 -0.4474232 0.5341183 0.514124 -0.45727 0.5341183 0.514124 -0.4662797 0.5341183 0.514124 -0.4745834 0.5341183 0.514124 -0.4822838 0.5341183 0.514124 -0.4894626 0.5341183 0.514124 -0.4961862 0.5341183 0.514124 -0.5025087 0.5341183 0.514124 -0.5084753 0.5341183 0.514124 -0.514124 0.5341183 0.514124 -0.519487 0.5341183 0.514124 -0.5245917 0.5341183 0.514124 -0.529462 0.5341183 0.514124 -0.5341183 0.5341183 0.514124 -0.5385787 0.5341183 0.514124 -0.5428591 0.5341183 0.514124 -0.5469733 0.5341183 0.514124 -0.5509339 0.5341183 0.514124 -0.5547519 0.5341183 0.514124 -0.5584371 0.5341183 0.514124 -0.5619986 0.5341183 0.514124 -0.5654443 0.5341183 0.514124 -0.5687816 0.5341183 0.514124 -0.092819 0.5385787 0.514124 -0.2262531 0.5385787 0.514124 -0.2875993 0.5385787 0.514124 -0.3262122 0.5385787 0.514124 -0.3544566 0.5385787 0.514124 -0.3767383 0.5385787 0.514124 -0.3951413 0.5385787 0.514124 -0.4108177 0.5385787 0.514124 -0.4244723 0.5385787 0.514124 -0.4365675 0.5385787 0.514124 -0.4474232 0.5385787 0.514124 -0.45727 0.5385787 0.514124 -0.4662797 0.5385787 0.514124 -0.4745834 0.5385787 0.514124 -0.4822838 0.5385787 0.514124 -0.4894626 0.5385787 0.514124 -0.4961862 0.5385787 0.514124 -0.5025087 0.5385787 0.514124 -0.5084753 0.5385787 0.514124 -0.514124 0.5385787 0.514124 -0.519487 0.5385787 0.514124 -0.5245917 0.5385787 0.514124 -0.529462 0.5385787 0.514124 -0.5341183 0.5385787 0.514124 -0.5385787 0.5385787 0.514124 -0.5428591 0.5385787 0.514124 -0.5469733 0.5385787 0.514124 -0.5509339 0.5385787 0.514124 -0.5547519 0.5385787 0.514124 -0.5584371 0.5385787 0.514124 -0.5619986 0.5385787 0.514124 -0.5654443 0.5385787 0.514124 -0.5687816 0.5385787 0.514124 -0.092819 0.5428591 0.514124 -0.2262531 0.5428591 0.514124 -0.2875993 0.5428591 0.514124 -0.3262122 0.5428591 0.514124 -0.3544566 0.5428591 0.514124 -0.3767383 0.5428591 0.514124 -0.3951413 0.5428591 0.514124 -0.4108177 0.5428591 0.514124 -0.4244723 0.5428591 0.514124 -0.4365675 0.5428591 0.514124 -0.4474232 0.5428591 0.514124 -0.45727 0.5428591 0.514124 -0.4662797 0.5428591 0.514124 -0.4745834 0.5428591 0.514124 -0.4822838 0.5428591 0.514124 -0.4894626 0.5428591 0.514124 -0.4961862 0.5428591 0.514124 -0.5025087 0.5428591 0.514124 -0.5084753 0.5428591 0.514124 -0.514124 0.5428591 0.514124 -0.519487 0.5428591 0.514124 -0.5245917 0.5428591 0.514124 -0.529462 0.5428591 0.514124 -0.5341183 0.5428591 0.514124 -0.5385787 0.5428591 0.514124 -0.5428591 0.5428591 0.514124 -0.5469733 0.5428591 0.514124 -0.5509339 0.5428591 0.514124 -0.5547519 0.5428591 0.514124 -0.5584371 0.5428591 0.514124 -0.5619986 0.5428591 0.514124 -0.5654443 0.5428591 0.514124 -0.5687816 0.5428591 0.514124 -0.092819 0.5469733 0.514124 -0.2262531 0.5469733 0.514124 -0.2875993 0.5469733 0.514124 -0.3262122 0.5469733 0.514124 -0.3544566 0.5469733 0.514124 -0.3767383 0.5469733 0.514124 -0.3951413 0.5469733 0.514124 -0.4108177 0.5469733 0.514124 -0.4244723 0.5469733 0.514124 -0.4365675 0.5469733 0.514124 -0.4474232 0.5469733 0.514124 -0.45727 0.5469733 0.514124 -0.4662797 0.5469733 0.514124 -0.4745834 0.5469733 0.514124 -0.4822838 0.5469733 0.514124 -0.4894626 0.5469733 0.514124 -0.4961862 0.5469733 0.514124 -0.5025087 0.5469733 0.514124 -0.5084753 0.5469733 0.514124 -0.514124 0.5469733 0.514124 -0.519487 0.5469733 0.514124 -0.5245917 0.5469733 0.514124 -0.529462 0.5469733 0.514124 -0.5341183 0.5469733 0.514124 -0.5385787 0.5469733 0.514124 -0.5428591 0.5469733 0.514124 -0.5469733 0.5469733 0.514124 -0.5509339 0.5469733 0.514124 -0.5547519 0.5469733 0.514124 -0.5584371 0.5469733 0.514124 -0.5619986 0.5469733 0.514124 -0.5654443 0.5469733 0.514124 -0.5687816 0.5469733 0.514124 -0.092819 0.5509339 0.514124 -0.2262531 0.5509339 0.514124 -0.2875993 0.5509339 0.514124 -0.3262122 0.5509339 0.514124 -0.3544566 0.5509339 0.514124 -0.3767383 0.5509339 0.514124 -0.3951413 0.5509339 0.514124 -0.4108177 0.5509339 0.514124 -0.4244723 0.5509339 0.514124 -0.4365675 0.5509339 0.514124 -0.4474232 0.5509339 0.514124 -0.45727 0.5509339 0.514124 -0.4662797 0.5509339 0.514124 -0.4745834 0.5509339 0.514124 -0.4822838 0.5509339 0.514124 -0.4894626 0.5509339 0.514124 -0.4961862 0.5509339 0.514124 -0.5025087 0.5509339 0.514124 -0.5084753 0.5509339 0.514124 -0.514124 0.5509339 0.514124 -0.519487 0.5509339 0.514124 -0.5245917 0.5509339 0.514124 -0.529462 0.5509339 0.514124 -0.5341183 0.5509339 0.514124 -0.5385787 0.5509339 0.514124 -0.5428591 0.5509339 0.514124 -0.5469733 0.5509339 0.514124 -0.5509339 0.5509339 0.514124 -0.5547519 0.5509339 0.514124 -0.5584371 0.5509339 0.514124 -0.5619986 0.5509339 0.514124 -0.5654443 0.5509339 0.514124 -0.5687816 0.5509339 0.514124 -0.092819 0.5547519 0.514124 -0.2262531 0.5547519 0.514124 -0.2875993 0.5547519 0.514124 -0.3262122 0.5547519 0.514124 -0.3544566 0.5547519 0.514124 -0.3767383 0.5547519 0.514124 -0.3951413 0.5547519 0.514124 -0.4108177 0.5547519 0.514124 -0.4244723 0.5547519 0.514124 -0.4365675 0.5547519 0.514124 -0.4474232 0.5547519 0.514124 -0.45727 0.5547519 0.514124 -0.4662797 0.5547519 0.514124 -0.4745834 0.5547519 0.514124 -0.4822838 0.5547519 0.514124 -0.4894626 0.5547519 0.514124 -0.4961862 0.5547519 0.514124 -0.5025087 0.5547519 0.514124 -0.5084753 0.5547519 0.514124 -0.514124 0.5547519 0.514124 -0.519487 0.5547519 0.514124 -0.5245917 0.5547519 0.514124 -0.529462 0.5547519 0.514124 -0.5341183 0.5547519 0.514124 -0.5385787 0.5547519 0.514124 -0.5428591 0.5547519 0.514124 -0.5469733 0.5547519 0.514124 -0.5509339 0.5547519 0.514124 -0.5547519 0.5547519 0.514124 -0.5584371 0.5547519 0.514124 -0.5619986 0.5547519 0.514124 -0.5654443 0.5547519 0.514124 -0.5687816 0.5547519 0.514124 -0.092819 0.5584371 0.514124 -0.2262531 0.5584371 0.514124 -0.2875993 0.5584371 0.514124 -0.3262122 0.5584371 0.514124 -0.3544566 0.5584371 0.514124 -0.3767383 0.5584371 0.514124 -0.3951413 0.5584371 0.514124 -0.4108177 0.5584371 0.514124 -0.4244723 0.5584371 0.514124 -0.4365675 0.5584371 0.514124 -0.4474232 0.5584371 0.514124 -0.45727 0.5584371 0.514124 -0.4662797 0.5584371 0.514124 -0.4745834 0.5584371 0.514124 -0.4822838 0.5584371 0.514124 -0.4894626 0.5584371 0.514124 -0.4961862 0.5584371 0.514124 -0.5025087 0.5584371 0.514124 -0.5084753 0.5584371 0.514124 -0.514124 0.5584371 0.514124 -0.519487 0.5584371 0.514124 -0.5245917 0.5584371 0.514124 -0.529462 0.5584371 0.514124 -0.5341183 0.5584371 0.514124 -0.5385787 0.5584371 0.514124 -0.5428591 0.5584371 0.514124 -0.5469733 0.5584371 0.514124 -0.5509339 0.5584371 0.514124 -0.5547519 0.5584371 0.514124 -0.5584371 0.5584371 0.514124 -0.5619986 0.5584371 0.514124 -0.5654443 0.5584371 0.514124 -0.5687816 0.5584371 0.514124 -0.092819 0.5619986 0.514124 -0.2262531 0.5619986 0.514124 -0.2875993 0.5619986 0.514124 -0.3262122 0.5619986 0.514124 -0.3544566 0.5619986 0.514124 -0.3767383 0.5619986 0.514124 -0.3951413 0.5619986 0.514124 -0.4108177 0.5619986 0.514124 -0.4244723 0.5619986 0.514124 -0.4365675 0.5619986 0.514124 -0.4474232 0.5619986 0.514124 -0.45727 0.5619986 0.514124 -0.4662797 0.5619986 0.514124 -0.4745834 0.5619986 0.514124 -0.4822838 0.5619986 0.514124 -0.4894626 0.5619986 0.514124 -0.4961862 0.5619986 0.514124 -0.5025087 0.5619986 0.514124 -0.5084753 0.5619986 0.514124 -0.514124 0.5619986 0.514124 -0.519487 0.5619986 0.514124 -0.5245917 0.5619986 0.514124 -0.529462 0.5619986 0.514124 -0.5341183 0.5619986 0.514124 -0.5385787 0.5619986 0.514124 -0.5428591 0.5619986 0.514124 -0.5469733 0.5619986 0.514124 -0.5509339 0.5619986 0.514124 -0.5547519 0.5619986 0.514124 -0.5584371 0.5619986 0.514124 -0.5619986 0.5619986 0.514124 -0.5654443 0.5619986 0.514124 -0.5687816 0.5619986 0.514124 -0.092819 0.5654443 0.514124 -0.2262531 0.5654443 0.514124 -0.2875993 0.5654443 0.514124 -0.3262122 0.5654443 0.514124 -0.3544566 0.5654443 0.514124 -0.3767383 0.5654443 0.514124 -0.3951413 0.5654443 0.514124 -0.4108177 0.5654443 0.514124 -0.4244723 0.5654443 0.514124 -0.4365675 0.5654443 0.514124 -0.4474232 0.5654443 0.514124 -0.45727 0.5654443 0.514124 -0.4662797 0.5654443 0.514124 -0.4745834 0.5654443 0.514124 -0.4822838 0.5654443 0.514124 -0.4894626 0.5654443 0.514124 -0.4961862 0.5654443 0.514124 -0.5025087 0.5654443 0.514124 -0.5084753 0.5654443 0.514124 -0.514124 0.5654443 0.514124 -0.519487 0.5654443 0.514124 -0.5245917 0.5654443 0.514124 -0.529462 0.5654443 0.514124 -0.5341183 0.5654443 0.514124 -0.5385787 0.5654443 0.514124 -0.5428591 0.5654443 0.514124 -0.5469733 0.5654443 0.514124 -0.5509339 0.5654443 0.514124 -0.5547519 0.5654443 0.514124 -0.5584371 0.5654443 0.514124 -0.5619986 0.5654443 0.514124 -0.5654443 0.5654443 0.514124 -0.5687816 0.5654443 0.514124 -0.092819 0.5687816 0.514124 -0.2262531 0.5687816 0.514124 -0.2875993 0.5687816 0.514124 -0.3262122 0.5687816 0.514124 -0.3544566 0.5687816 0.514124 -0.3767383 0.5687816 0.514124 -0.3951413 0.5687816 0.514124 -0.4108177 0.5687816 0.514124 -0.4244723 0.5687816 0.514124 -0.4365675 0.5687816 0.514124 -0.4474232 0.5687816 0.514124 -0.45727 0.5687816 0.514124 -0.4662797 0.5687816 0.514124 -0.4745834 0.5687816 0.514124 -0.4822838 0.5687816 0.514124 -0.4894626 0.5687816 0.514124 -0.4961862 0.5687816 0.514124 -0.5025087 0.5687816 0.514124 -0.5084753 0.5687816 0.514124 -0.514124 0.5687816 0.514124 -0.519487 0.5687816 0.514124 -0.5245917 0.5687816 0.514124 -0.529462 0.5687816 0.514124 -0.5341183 0.5687816 0.514124 -0.5385787 0.5687816 0.514124 -0.5428591 0.5687816 0.514124 -0.5469733 0.5687816 0.514124 -0.5509339 0.5687816 0.514124 -0.5547519 0.5687816 0.514124 -0.5584371 0.5687816 0.514124 -0.5619986 0.5687816 0.514124 -0.5654443 0.5687816 0.514124 -0.5687816 0.5687816 0.514124 -0.092819 0.092819 0.519487 -0.2262531 0.092819 0.519487 -0.2875993 0.092819 0.519487 -0.3262122 0.092819 0.519487 -0.3544566 0.092819 0.519487 -0.3767383 0.092819 0.519487 -0.3951413 0.092819 0.519487 -0.4108177 0.092819 0.519487 -0.4244723 0.092819 0.519487 -0.4365675 0.092819 0.519487 -0.4474232 0.092819 0.519487 -0.45727 0.092819 0.519487 -0.4662797 0.092819 0.519487 -0.4745834 0.092819 0.519487 -0.4822838 0.092819 0.519487 -0.4894626 0.092819 0.519487 -0.4961862 0.092819 0.519487 -0.5025087 0.092819 0.519487 -0.5084753 0.092819 0.519487 -0.514124 0.092819 0.519487 -0.519487 0.092819 0.519487 -0.5245917 0.092819 0.519487 -0.529462 0.092819 0.519487 -0.5341183 0.092819 0.519487 -0.5385787 0.092819 0.519487 -0.5428591 0.092819 0.519487 -0.5469733 0.092819 0.519487 -0.5509339 0.092819 0.519487 -0.5547519 0.092819 0.519487 -0.5584371 0.092819 0.519487 -0.5619986 0.092819 0.519487 -0.5654443 0.092819 0.519487 -0.5687816 0.092819 0.519487 -0.092819 0.2262531 0.519487 -0.2262531 0.2262531 0.519487 -0.2875993 0.2262531 0.519487 -0.3262122 0.2262531 0.519487 -0.3544566 0.2262531 0.519487 -0.3767383 0.2262531 0.519487 -0.3951413 0.2262531 0.519487 -0.4108177 0.2262531 0.519487 -0.4244723 0.2262531 0.519487 -0.4365675 0.2262531 0.519487 -0.4474232 0.2262531 0.519487 -0.45727 0.2262531 0.519487 -0.4662797 0.2262531 0.519487 -0.4745834 0.2262531 0.519487 -0.4822838 0.2262531 0.519487 -0.4894626 0.2262531 0.519487 -0.4961862 0.2262531 0.519487 -0.5025087 0.2262531 0.519487 -0.5084753 0.2262531 0.519487 -0.514124 0.2262531 0.519487 -0.519487 0.2262531 0.519487 -0.5245917 0.2262531 0.519487 -0.529462 0.2262531 0.519487 -0.5341183 0.2262531 0.519487 -0.5385787 0.2262531 0.519487 -0.5428591 0.2262531 0.519487 -0.5469733 0.2262531 0.519487 -0.5509339 0.2262531 0.519487 -0.5547519 0.2262531 0.519487 -0.5584371 0.2262531 0.519487 -0.5619986 0.2262531 0.519487 -0.5654443 0.2262531 0.519487 -0.5687816 0.2262531 0.519487 -0.092819 0.2875993 0.519487 -0.2262531 0.2875993 0.519487 -0.2875993 0.2875993 0.519487 -0.3262122 0.2875993 0.519487 -0.3544566 0.2875993 0.519487 -0.3767383 0.2875993 0.519487 -0.3951413 0.2875993 0.519487 -0.4108177 0.2875993 0.519487 -0.4244723 0.2875993 0.519487 -0.4365675 0.2875993 0.519487 -0.4474232 0.2875993 0.519487 -0.45727 0.2875993 0.519487 -0.4662797 0.2875993 0.519487 -0.4745834 0.2875993 0.519487 -0.4822838 0.2875993 0.519487 -0.4894626 0.2875993 0.519487 -0.4961862 0.2875993 0.519487 -0.5025087 0.2875993 0.519487 -0.5084753 0.2875993 0.519487 -0.514124 0.2875993 0.519487 -0.519487 0.2875993 0.519487 -0.5245917 0.2875993 0.519487 -0.529462 0.2875993 0.519487 -0.5341183 0.2875993 0.519487 -0.5385787 0.2875993 0.519487 -0.5428591 0.2875993 0.519487 -0.5469733 0.2875993 0.519487 -0.5509339 0.2875993 0.519487 -0.5547519 0.2875993 0.519487 -0.5584371 0.2875993 0.519487 -0.5619986 0.2875993 0.519487 -0.5654443 0.2875993 0.519487 -0.5687816 0.2875993 0.519487 -0.092819 0.3262122 0.519487 -0.2262531 0.3262122 0.519487 -0.2875993 0.3262122 0.519487 -0.3262122 0.3262122 0.519487 -0.3544566 0.3262122 0.519487 -0.3767383 0.3262122 0.519487 -0.3951413 0.3262122 0.519487 -0.4108177 0.3262122 0.519487 -0.4244723 0.3262122 0.519487 -0.4365675 0.3262122 0.519487 -0.4474232 0.3262122 0.519487 -0.45727 0.3262122 0.519487 -0.4662797 0.3262122 0.519487 -0.4745834 0.3262122 0.519487 -0.4822838 0.3262122 0.519487 -0.4894626 0.3262122 0.519487 -0.4961862 0.3262122 0.519487 -0.5025087 0.3262122 0.519487 -0.5084753 0.3262122 0.519487 -0.514124 0.3262122 0.519487 -0.519487 0.3262122 0.519487 -0.5245917 0.3262122 0.519487 -0.529462 0.3262122 0.519487 -0.5341183 0.3262122 0.519487 -0.5385787 0.3262122 0.519487 -0.5428591 0.3262122 0.519487 -0.5469733 0.3262122 0.519487 -0.5509339 0.3262122 0.519487 -0.5547519 0.3262122 0.519487 -0.5584371 0.3262122 0.519487 -0.5619986 0.3262122 0.519487 -0.5654443 0.3262122 0.519487 -0.5687816 0.3262122 0.519487 -0.092819 0.3544566 0.519487 -0.2262531 0.3544566 0.519487 -0.2875993 0.3544566 0.519487 -0.3262122 0.3544566 0.519487 -0.3544566 0.3544566 0.519487 -0.3767383 0.3544566 0.519487 -0.3951413 0.3544566 0.519487 -0.4108177 0.3544566 0.519487 -0.4244723 0.3544566 0.519487 -0.4365675 0.3544566 0.519487 -0.4474232 0.3544566 0.519487 -0.45727 0.3544566 0.519487 -0.4662797 0.3544566 0.519487 -0.4745834 0.3544566 0.519487 -0.4822838 0.3544566 0.519487 -0.4894626 0.3544566 0.519487 -0.4961862 0.3544566 0.519487 -0.5025087 0.3544566 0.519487 -0.5084753 0.3544566 0.519487 -0.514124 0.3544566 0.519487 -0.519487 0.3544566 0.519487 -0.5245917 0.3544566 0.519487 -0.529462 0.3544566 0.519487 -0.5341183 0.3544566 0.519487 -0.5385787 0.3544566 0.519487 -0.5428591 0.3544566 0.519487 -0.5469733 0.3544566 0.519487 -0.5509339 0.3544566 0.519487 -0.5547519 0.3544566 0.519487 -0.5584371 0.3544566 0.519487 -0.5619986 0.3544566 0.519487 -0.5654443 0.3544566 0.519487 -0.5687816 0.3544566 0.519487 -0.092819 0.3767383 0.519487 -0.2262531 0.3767383 0.519487 -0.2875993 0.3767383 0.519487 -0.3262122 0.3767383 0.519487 -0.3544566 0.3767383 0.519487 -0.3767383 0.3767383 0.519487 -0.3951413 0.3767383 0.519487 -0.4108177 0.3767383 0.519487 -0.4244723 0.3767383 0.519487 -0.4365675 0.3767383 0.519487 -0.4474232 0.3767383 0.519487 -0.45727 0.3767383 0.519487 -0.4662797 0.3767383 0.519487 -0.4745834 0.3767383 0.519487 -0.4822838 0.3767383 0.519487 -0.4894626 0.3767383 0.519487 -0.4961862 0.3767383 0.519487 -0.5025087 0.3767383 0.519487 -0.5084753 0.3767383 0.519487 -0.514124 0.3767383 0.519487 -0.519487 0.3767383 0.519487 -0.5245917 0.3767383 0.519487 -0.529462 0.3767383 0.519487 -0.5341183 0.3767383 0.519487 -0.5385787 0.3767383 0.519487 -0.5428591 0.3767383 0.519487 -0.5469733 0.3767383 0.519487 -0.5509339 0.3767383 0.519487 -0.5547519 0.3767383 0.519487 -0.5584371 0.3767383 0.519487 -0.5619986 0.3767383 0.519487 -0.5654443 0.3767383 0.519487 -0.5687816 0.3767383 0.519487 -0.092819 0.3951413 0.519487 -0.2262531 0.3951413 0.519487 -0.2875993 0.3951413 0.519487 -0.3262122 0.3951413 0.519487 -0.3544566 0.3951413 0.519487 -0.3767383 0.3951413 0.519487 -0.3951413 0.3951413 0.519487 -0.4108177 0.3951413 0.519487 -0.4244723 0.3951413 0.519487 -0.4365675 0.3951413 0.519487 -0.4474232 0.3951413 0.519487 -0.45727 0.3951413 0.519487 -0.4662797 0.3951413 0.519487 -0.4745834 0.3951413 0.519487 -0.4822838 0.3951413 0.519487 -0.4894626 0.3951413 0.519487 -0.4961862 0.3951413 0.519487 -0.5025087 0.3951413 0.519487 -0.5084753 0.3951413 0.519487 -0.514124 0.3951413 0.519487 -0.519487 0.3951413 0.519487 -0.5245917 0.3951413 0.519487 -0.529462 0.3951413 0.519487 -0.5341183 0.3951413 0.519487 -0.5385787 0.3951413 0.519487 -0.5428591 0.3951413 0.519487 -0.5469733 0.3951413 0.519487 -0.5509339 0.3951413 0.519487 -0.5547519 0.3951413 0.519487 -0.5584371 0.3951413 0.519487 -0.5619986 0.3951413 0.519487 -0.5654443 0.3951413 0.519487 -0.5687816 0.3951413 0.519487 -0.092819 0.4108177 0.519487 -0.2262531 0.4108177 0.519487 -0.2875993 0.4108177 0.519487 -0.3262122 0.4108177 0.519487 -0.3544566 0.4108177 0.519487 -0.3767383 0.4108177 0.519487 -0.3951413 0.4108177 0.519487 -0.4108177 0.4108177 0.519487 -0.4244723 0.4108177 0.519487 -0.4365675 0.4108177 0.519487 -0.4474232 0.4108177 0.519487 -0.45727 0.4108177 0.519487 -0.4662797 0.4108177 0.519487 -0.4745834 0.4108177 0.519487 -0.4822838 0.4108177 0.519487 -0.4894626 0.4108177 0.519487 -0.4961862 0.4108177 0.519487 -0.5025087 0.4108177 0.519487 -0.5084753 0.4108177 0.519487 -0.514124 0.4108177 0.519487 -0.519487 0.4108177 0.519487 -0.5245917 0.4108177 0.519487 -0.529462 0.4108177 0.519487 -0.5341183 0.4108177 0.519487 -0.5385787 0.4108177 0.519487 -0.5428591 0.4108177 0.519487 -0.5469733 0.4108177 0.519487 -0.5509339 0.4108177 0.519487 -0.5547519 0.4108177 0.519487 -0.5584371 0.4108177 0.519487 -0.5619986 0.4108177 0.519487 -0.5654443 0.4108177 0.519487 -0.5687816 0.4108177 0.519487 -0.092819 0.4244723 0.519487 -0.2262531 0.4244723 0.519487 -0.2875993 0.4244723 0.519487 -0.3262122 0.4244723 0.519487 -0.3544566 0.4244723 0.519487 -0.3767383 0.4244723 0.519487 -0.3951413 0.4244723 0.519487 -0.4108177 0.4244723 0.519487 -0.4244723 0.4244723 0.519487 -0.4365675 0.4244723 0.519487 -0.4474232 0.4244723 0.519487 -0.45727 0.4244723 0.519487 -0.4662797 0.4244723 0.519487 -0.4745834 0.4244723 0.519487 -0.4822838 0.4244723 0.519487 -0.4894626 0.4244723 0.519487 -0.4961862 0.4244723 0.519487 -0.5025087 0.4244723 0.519487 -0.5084753 0.4244723 0.519487 -0.514124 0.4244723 0.519487 -0.519487 0.4244723 0.519487 -0.5245917 0.4244723 0.519487 -0.529462 0.4244723 0.519487 -0.5341183 0.4244723 0.519487 -0.5385787 0.4244723 0.519487 -0.5428591 0.4244723 0.519487 -0.5469733 0.4244723 0.519487 -0.5509339 0.4244723 0.519487 -0.5547519 0.4244723 0.519487 -0.5584371 0.4244723 0.519487 -0.5619986 0.4244723 0.519487 -0.5654443 0.4244723 0.519487 -0.5687816 0.4244723 0.519487 -0.092819 0.4365675 0.519487 -0.2262531 0.4365675 0.519487 -0.2875993 0.4365675 0.519487 -0.3262122 0.4365675 0.519487 -0.3544566 0.4365675 0.519487 -0.3767383 0.4365675 0.519487 -0.3951413 0.4365675 0.519487 -0.4108177 0.4365675 0.519487 -0.4244723 0.4365675 0.519487 -0.4365675 0.4365675 0.519487 -0.4474232 0.4365675 0.519487 -0.45727 0.4365675 0.519487 -0.4662797 0.4365675 0.519487 -0.4745834 0.4365675 0.519487 -0.4822838 0.4365675 0.519487 -0.4894626 0.4365675 0.519487 -0.4961862 0.4365675 0.519487 -0.5025087 0.4365675 0.519487 -0.5084753 0.4365675 0.519487 -0.514124 0.4365675 0.519487 -0.519487 0.4365675 0.519487 -0.5245917 0.4365675 0.519487 -0.529462 0.4365675 0.519487 -0.5341183 0.4365675 0.519487 -0.5385787 0.4365675 0.519487 -0.5428591 0.4365675 0.519487 -0.5469733 0.4365675 0.519487 -0.5509339 0.4365675 0.519487 -0.5547519 0.4365675 0.519487 -0.5584371 0.4365675 0.519487 -0.5619986 0.4365675 0.519487 -0.5654443 0.4365675 0.519487 -0.5687816 0.4365675 0.519487 -0.092819 0.4474232 0.519487 -0.2262531 0.4474232 0.519487 -0.2875993 0.4474232 0.519487 -0.3262122 0.4474232 0.519487 -0.3544566 0.4474232 0.519487 -0.3767383 0.4474232 0.519487 -0.3951413 0.4474232 0.519487 -0.4108177 0.4474232 0.519487 -0.4244723 0.4474232 0.519487 -0.4365675 0.4474232 0.519487 -0.4474232 0.4474232 0.519487 -0.45727 0.4474232 0.519487 -0.4662797 0.4474232 0.519487 -0.4745834 0.4474232 0.519487 -0.4822838 0.4474232 0.519487 -0.4894626 0.4474232 0.519487 -0.4961862 0.4474232 0.519487 -0.5025087 0.4474232 0.519487 -0.5084753 0.4474232 0.519487 -0.514124 0.4474232 0.519487 -0.519487 0.4474232 0.519487 -0.5245917 0.4474232 0.519487 -0.529462 0.4474232 0.519487 -0.5341183 0.4474232 0.519487 -0.5385787 0.4474232 0.519487 -0.5428591 0.4474232 0.519487 -0.5469733 0.4474232 0.519487 -0.5509339 0.4474232 0.519487 -0.5547519 0.4474232 0.519487 -0.5584371 0.4474232 0.519487 -0.5619986 0.4474232 0.519487 -0.5654443 0.4474232 0.519487 -0.5687816 0.4474232 0.519487 -0.092819 0.45727 0.519487 -0.2262531 0.45727 0.519487 -0.2875993 0.45727 0.519487 -0.3262122 0.45727 0.519487 -0.3544566 0.45727 0.519487 -0.3767383 0.45727 0.519487 -0.3951413 0.45727 0.519487 -0.4108177 0.45727 0.519487 -0.4244723 0.45727 0.519487 -0.4365675 0.45727 0.519487 -0.4474232 0.45727 0.519487 -0.45727 0.45727 0.519487 -0.4662797 0.45727 0.519487 -0.4745834 0.45727 0.519487 -0.4822838 0.45727 0.519487 -0.4894626 0.45727 0.519487 -0.4961862 0.45727 0.519487 -0.5025087 0.45727 0.519487 -0.5084753 0.45727 0.519487 -0.514124 0.45727 0.519487 -0.519487 0.45727 0.519487 -0.5245917 0.45727 0.519487 -0.529462 0.45727 0.519487 -0.5341183 0.45727 0.519487 -0.5385787 0.45727 0.519487 -0.5428591 0.45727 0.519487 -0.5469733 0.45727 0.519487 -0.5509339 0.45727 0.519487 -0.5547519 0.45727 0.519487 -0.5584371 0.45727 0.519487 -0.5619986 0.45727 0.519487 -0.5654443 0.45727 0.519487 -0.5687816 0.45727 0.519487 -0.092819 0.4662797 0.519487 -0.2262531 0.4662797 0.519487 -0.2875993 0.4662797 0.519487 -0.3262122 0.4662797 0.519487 -0.3544566 0.4662797 0.519487 -0.3767383 0.4662797 0.519487 -0.3951413 0.4662797 0.519487 -0.4108177 0.4662797 0.519487 -0.4244723 0.4662797 0.519487 -0.4365675 0.4662797 0.519487 -0.4474232 0.4662797 0.519487 -0.45727 0.4662797 0.519487 -0.4662797 0.4662797 0.519487 -0.4745834 0.4662797 0.519487 -0.4822838 0.4662797 0.519487 -0.4894626 0.4662797 0.519487 -0.4961862 0.4662797 0.519487 -0.5025087 0.4662797 0.519487 -0.5084753 0.4662797 0.519487 -0.514124 0.4662797 0.519487 -0.519487 0.4662797 0.519487 -0.5245917 0.4662797 0.519487 -0.529462 0.4662797 0.519487 -0.5341183 0.4662797 0.519487 -0.5385787 0.4662797 0.519487 -0.5428591 0.4662797 0.519487 -0.5469733 0.4662797 0.519487 -0.5509339 0.4662797 0.519487 -0.5547519 0.4662797 0.519487 -0.5584371 0.4662797 0.519487 -0.5619986 0.4662797 0.519487 -0.5654443 0.4662797 0.519487 -0.5687816 0.4662797 0.519487 -0.092819 0.4745834 0.519487 -0.2262531 0.4745834 0.519487 -0.2875993 0.4745834 0.519487 -0.3262122 0.4745834 0.519487 -0.3544566 0.4745834 0.519487 -0.3767383 0.4745834 0.519487 -0.3951413 0.4745834 0.519487 -0.4108177 0.4745834 0.519487 -0.4244723 0.4745834 0.519487 -0.4365675 0.4745834 0.519487 -0.4474232 0.4745834 0.519487 -0.45727 0.4745834 0.519487 -0.4662797 0.4745834 0.519487 -0.4745834 0.4745834 0.519487 -0.4822838 0.4745834 0.519487 -0.4894626 0.4745834 0.519487 -0.4961862 0.4745834 0.519487 -0.5025087 0.4745834 0.519487 -0.5084753 0.4745834 0.519487 -0.514124 0.4745834 0.519487 -0.519487 0.4745834 0.519487 -0.5245917 0.4745834 0.519487 -0.529462 0.4745834 0.519487 -0.5341183 0.4745834 0.519487 -0.5385787 0.4745834 0.519487 -0.5428591 0.4745834 0.519487 -0.5469733 0.4745834 0.519487 -0.5509339 0.4745834 0.519487 -0.5547519 0.4745834 0.519487 -0.5584371 0.4745834 0.519487 -0.5619986 0.4745834 0.519487 -0.5654443 0.4745834 0.519487 -0.5687816 0.4745834 0.519487 -0.092819 0.4822838 0.519487 -0.2262531 0.4822838 0.519487 -0.2875993 0.4822838 0.519487 -0.3262122 0.4822838 0.519487 -0.3544566 0.4822838 0.519487 -0.3767383 0.4822838 0.519487 -0.3951413 0.4822838 0.519487 -0.4108177 0.4822838 0.519487 -0.4244723 0.4822838 0.519487 -0.4365675 0.4822838 0.519487 -0.4474232 0.4822838 0.519487 -0.45727 0.4822838 0.519487 -0.4662797 0.4822838 0.519487 -0.4745834 0.4822838 0.519487 -0.4822838 0.4822838 0.519487 -0.4894626 0.4822838 0.519487 -0.4961862 0.4822838 0.519487 -0.5025087 0.4822838 0.519487 -0.5084753 0.4822838 0.519487 -0.514124 0.4822838 0.519487 -0.519487 0.4822838 0.519487 -0.5245917 0.4822838 0.519487 -0.529462 0.4822838 0.519487 -0.5341183 0.4822838 0.519487 -0.5385787 0.4822838 0.519487 -0.5428591 0.4822838 0.519487 -0.5469733 0.4822838 0.519487 -0.5509339 0.4822838 0.519487 -0.5547519 0.4822838 0.519487 -0.5584371 0.4822838 0.519487 -0.5619986 0.4822838 0.519487 -0.5654443 0.4822838 0.519487 -0.5687816 0.4822838 0.519487 -0.092819 0.4894626 0.519487 -0.2262531 0.4894626 0.519487 -0.2875993 0.4894626 0.519487 -0.3262122 0.4894626 0.519487 -0.3544566 0.4894626 0.519487 -0.3767383 0.4894626 0.519487 -0.3951413 0.4894626 0.519487 -0.4108177 0.4894626 0.519487 -0.4244723 0.4894626 0.519487 -0.4365675 0.4894626 0.519487 -0.4474232 0.4894626 0.519487 -0.45727 0.4894626 0.519487 -0.4662797 0.4894626 0.519487 -0.4745834 0.4894626 0.519487 -0.4822838 0.4894626 0.519487 -0.4894626 0.4894626 0.519487 -0.4961862 0.4894626 0.519487 -0.5025087 0.4894626 0.519487 -0.5084753 0.4894626 0.519487 -0.514124 0.4894626 0.519487 -0.519487 0.4894626 0.519487 -0.5245917 0.4894626 0.519487 -0.529462 0.4894626 0.519487 -0.5341183 0.4894626 0.519487 -0.5385787 0.4894626 0.519487 -0.5428591 0.4894626 0.519487 -0.5469733 0.4894626 0.519487 -0.5509339 0.4894626 0.519487 -0.5547519 0.4894626 0.519487 -0.5584371 0.4894626 0.519487 -0.5619986 0.4894626 0.519487 -0.5654443 0.4894626 0.519487 -0.5687816 0.4894626 0.519487 -0.092819 0.4961862 0.519487 -0.2262531 0.4961862 0.519487 -0.2875993 0.4961862 0.519487 -0.3262122 0.4961862 0.519487 -0.3544566 0.4961862 0.519487 -0.3767383 0.4961862 0.519487 -0.3951413 0.4961862 0.519487 -0.4108177 0.4961862 0.519487 -0.4244723 0.4961862 0.519487 -0.4365675 0.4961862 0.519487 -0.4474232 0.4961862 0.519487 -0.45727 0.4961862 0.519487 -0.4662797 0.4961862 0.519487 -0.4745834 0.4961862 0.519487 -0.4822838 0.4961862 0.519487 -0.4894626 0.4961862 0.519487 -0.4961862 0.4961862 0.519487 -0.5025087 0.4961862 0.519487 -0.5084753 0.4961862 0.519487 -0.514124 0.4961862 0.519487 -0.519487 0.4961862 0.519487 -0.5245917 0.4961862 0.519487 -0.529462 0.4961862 0.519487 -0.5341183 0.4961862 0.519487 -0.5385787 0.4961862 0.519487 -0.5428591 0.4961862 0.519487 -0.5469733 0.4961862 0.519487 -0.5509339 0.4961862 0.519487 -0.5547519 0.4961862 0.519487 -0.5584371 0.4961862 0.519487 -0.5619986 0.4961862 0.519487 -0.5654443 0.4961862 0.519487 -0.5687816 0.4961862 0.519487 -0.092819 0.5025087 0.519487 -0.2262531 0.5025087 0.519487 -0.2875993 0.5025087 0.519487 -0.3262122 0.5025087 0.519487 -0.3544566 0.5025087 0.519487 -0.3767383 0.5025087 0.519487 -0.3951413 0.5025087 0.519487 -0.4108177 0.5025087 0.519487 -0.4244723 0.5025087 0.519487 -0.4365675 0.5025087 0.519487 -0.4474232 0.5025087 0.519487 -0.45727 0.5025087 0.519487 -0.4662797 0.5025087 0.519487 -0.4745834 0.5025087 0.519487 -0.4822838 0.5025087 0.519487 -0.4894626 0.5025087 0.519487 -0.4961862 0.5025087 0.519487 -0.5025087 0.5025087 0.519487 -0.5084753 0.5025087 0.519487 -0.514124 0.5025087 0.519487 -0.519487 0.5025087 0.519487 -0.5245917 0.5025087 0.519487 -0.529462 0.5025087 0.519487 -0.5341183 0.5025087 0.519487 -0.5385787 0.5025087 0.519487 -0.5428591 0.5025087 0.519487 -0.5469733 0.5025087 0.519487 -0.5509339 0.5025087 0.519487 -0.5547519 0.5025087 0.519487 -0.5584371 0.5025087 0.519487 -0.5619986 0.5025087 0.519487 -0.5654443 0.5025087 0.519487 -0.5687816 0.5025087 0.519487 -0.092819 0.5084753 0.519487 -0.2262531 0.5084753 0.519487 -0.2875993 0.5084753 0.519487 -0.3262122 0.5084753 0.519487 -0.3544566 0.5084753 0.519487 -0.3767383 0.5084753 0.519487 -0.3951413 0.5084753 0.519487 -0.4108177 0.5084753 0.519487 -0.4244723 0.5084753 0.519487 -0.4365675 0.5084753 0.519487 -0.4474232 0.5084753 0.519487 -0.45727 0.5084753 0.519487 -0.4662797 0.5084753 0.519487 -0.4745834 0.5084753 0.519487 -0.4822838 0.5084753 0.519487 -0.4894626 0.5084753 0.519487 -0.4961862 0.5084753 0.519487 -0.5025087 0.5084753 0.519487 -0.5084753 0.5084753 0.519487 -0.514124 0.5084753 0.519487 -0.519487 0.5084753 0.519487 -0.5245917 0.5084753 0.519487 -0.529462 0.5084753 0.519487 -0.5341183 0.5084753 0.519487 -0.5385787 0.5084753 0.519487 -0.5428591 0.5084753 0.519487 -0.5469733 0.5084753 0.519487 -0.5509339 0.5084753 0.519487 -0.5547519 0.5084753 0.519487 -0.5584371 0.5084753 0.519487 -0.5619986 0.5084753 0.519487 -0.5654443 0.5084753 0.519487 -0.5687816 0.5084753 0.519487 -0.092819 0.514124 0.519487 -0.2262531 0.514124 0.519487 -0.2875993 0.514124 0.519487 -0.3262122 0.514124 0.519487 -0.3544566 0.514124 0.519487 -0.3767383 0.514124 0.519487 -0.3951413 0.514124 0.519487 -0.4108177 0.514124 0.519487 -0.4244723 0.514124 0.519487 -0.4365675 0.514124 0.519487 -0.4474232 0.514124 0.519487 -0.45727 0.514124 0.519487 -0.4662797 0.514124 0.519487 -0.4745834 0.514124 0.519487 -0.4822838 0.514124 0.519487 -0.4894626 0.514124 0.519487 -0.4961862 0.514124 0.519487 -0.5025087 0.514124 0.519487 -0.5084753 0.514124 0.519487 -0.514124 0.514124 0.519487 -0.519487 0.514124 0.519487 -0.5245917 0.514124 0.519487 -0.529462 0.514124 0.519487 -0.5341183 0.514124 0.519487 -0.5385787 0.514124 0.519487 -0.5428591 0.514124 0.519487 -0.5469733 0.514124 0.519487 -0.5509339 0.514124 0.519487 -0.5547519 0.514124 0.519487 -0.5584371 0.514124 0.519487 -0.5619986 0.514124 0.519487 -0.5654443 0.514124 0.519487 -0.5687816 0.514124 0.519487 -0.092819 0.519487 0.519487 -0.2262531 0.519487 0.519487 -0.2875993 0.519487 0.519487 -0.3262122 0.519487 0.519487 -0.3544566 0.519487 0.519487 -0.3767383 0.519487 0.519487 -0.3951413 0.519487 0.519487 -0.4108177 0.519487 0.519487 -0.4244723 0.519487 0.519487 -0.4365675 0.519487 0.519487 -0.4474232 0.519487 0.519487 -0.45727 0.519487 0.519487 -0.4662797 0.519487 0.519487 -0.4745834 0.519487 0.519487 -0.4822838 0.519487 0.519487 -0.4894626 0.519487 0.519487 -0.4961862 0.519487 0.519487 -0.5025087 0.519487 0.519487 -0.5084753 0.519487 0.519487 -0.514124 0.519487 0.519487 -0.519487 0.519487 0.519487 -0.5245917 0.519487 0.519487 -0.529462 0.519487 0.519487 -0.5341183 0.519487 0.519487 -0.5385787 0.519487 0.519487 -0.5428591 0.519487 0.519487 -0.5469733 0.519487 0.519487 -0.5509339 0.519487 0.519487 -0.5547519 0.519487 0.519487 -0.5584371 0.519487 0.519487 -0.5619986 0.519487 0.519487 -0.5654443 0.519487 0.519487 -0.5687816 0.519487 0.519487 -0.092819 0.5245917 0.519487 -0.2262531 0.5245917 0.519487 -0.2875993 0.5245917 0.519487 -0.3262122 0.5245917 0.519487 -0.3544566 0.5245917 0.519487 -0.3767383 0.5245917 0.519487 -0.3951413 0.5245917 0.519487 -0.4108177 0.5245917 0.519487 -0.4244723 0.5245917 0.519487 -0.4365675 0.5245917 0.519487 -0.4474232 0.5245917 0.519487 -0.45727 0.5245917 0.519487 -0.4662797 0.5245917 0.519487 -0.4745834 0.5245917 0.519487 -0.4822838 0.5245917 0.519487 -0.4894626 0.5245917 0.519487 -0.4961862 0.5245917 0.519487 -0.5025087 0.5245917 0.519487 -0.5084753 0.5245917 0.519487 -0.514124 0.5245917 0.519487 -0.519487 0.5245917 0.519487 -0.5245917 0.5245917 0.519487 -0.529462 0.5245917 0.519487 -0.5341183 0.5245917 0.519487 -0.5385787 0.5245917 0.519487 -0.5428591 0.5245917 0.519487 -0.5469733 0.5245917 0.519487 -0.5509339 0.5245917 0.519487 -0.5547519 0.5245917 0.519487 -0.5584371 0.5245917 0.519487 -0.5619986 0.5245917 0.519487 -0.5654443 0.5245917 0.519487 -0.5687816 0.5245917 0.519487 -0.092819 0.529462 0.519487 -0.2262531 0.529462 0.519487 -0.2875993 0.529462 0.519487 -0.3262122 0.529462 0.519487 -0.3544566 0.529462 0.519487 -0.3767383 0.529462 0.519487 -0.3951413 0.529462 0.519487 -0.4108177 0.529462 0.519487 -0.4244723 0.529462 0.519487 -0.4365675 0.529462 0.519487 -0.4474232 0.529462 0.519487 -0.45727 0.529462 0.519487 -0.4662797 0.529462 0.519487 -0.4745834 0.529462 0.519487 -0.4822838 0.529462 0.519487 -0.4894626 0.529462 0.519487 -0.4961862 0.529462 0.519487 -0.5025087 0.529462 0.519487 -0.5084753 0.529462 0.519487 -0.514124 0.529462 0.519487 -0.519487 0.529462 0.519487 -0.5245917 0.529462 0.519487 -0.529462 0.529462 0.519487 -0.5341183 0.529462 0.519487 -0.5385787 0.529462 0.519487 -0.5428591 0.529462 0.519487 -0.5469733 0.529462 0.519487 -0.5509339 0.529462 0.519487 -0.5547519 0.529462 0.519487 -0.5584371 0.529462 0.519487 -0.5619986 0.529462 0.519487 -0.5654443 0.529462 0.519487 -0.5687816 0.529462 0.519487 -0.092819 0.5341183 0.519487 -0.2262531 0.5341183 0.519487 -0.2875993 0.5341183 0.519487 -0.3262122 0.5341183 0.519487 -0.3544566 0.5341183 0.519487 -0.3767383 0.5341183 0.519487 -0.3951413 0.5341183 0.519487 -0.4108177 0.5341183 0.519487 -0.4244723 0.5341183 0.519487 -0.4365675 0.5341183 0.519487 -0.4474232 0.5341183 0.519487 -0.45727 0.5341183 0.519487 -0.4662797 0.5341183 0.519487 -0.4745834 0.5341183 0.519487 -0.4822838 0.5341183 0.519487 -0.4894626 0.5341183 0.519487 -0.4961862 0.5341183 0.519487 -0.5025087 0.5341183 0.519487 -0.5084753 0.5341183 0.519487 -0.514124 0.5341183 0.519487 -0.519487 0.5341183 0.519487 -0.5245917 0.5341183 0.519487 -0.529462 0.5341183 0.519487 -0.5341183 0.5341183 0.519487 -0.5385787 0.5341183 0.519487 -0.5428591 0.5341183 0.519487 -0.5469733 0.5341183 0.519487 -0.5509339 0.5341183 0.519487 -0.5547519 0.5341183 0.519487 -0.5584371 0.5341183 0.519487 -0.5619986 0.5341183 0.519487 -0.5654443 0.5341183 0.519487 -0.5687816 0.5341183 0.519487 -0.092819 0.5385787 0.519487 -0.2262531 0.5385787 0.519487 -0.2875993 0.5385787 0.519487 -0.3262122 0.5385787 0.519487 -0.3544566 0.5385787 0.519487 -0.3767383 0.5385787 0.519487 -0.3951413 0.5385787 0.519487 -0.4108177 0.5385787 0.519487 -0.4244723 0.5385787 0.519487 -0.4365675 0.5385787 0.519487 -0.4474232 0.5385787 0.519487 -0.45727 0.5385787 0.519487 -0.4662797 0.5385787 0.519487 -0.4745834 0.5385787 0.519487 -0.4822838 0.5385787 0.519487 -0.4894626 0.5385787 0.519487 -0.4961862 0.5385787 0.519487 -0.5025087 0.5385787 0.519487 -0.5084753 0.5385787 0.519487 -0.514124 0.5385787 0.519487 -0.519487 0.5385787 0.519487 -0.5245917 0.5385787 0.519487 -0.529462 0.5385787 0.519487 -0.5341183 0.5385787 0.519487 -0.5385787 0.5385787 0.519487 -0.5428591 0.5385787 0.519487 -0.5469733 0.5385787 0.519487 -0.5509339 0.5385787 0.519487 -0.5547519 0.5385787 0.519487 -0.5584371 0.5385787 0.519487 -0.5619986 0.5385787 0.519487 -0.5654443 0.5385787 0.519487 -0.5687816 0.5385787 0.519487 -0.092819 0.5428591 0.519487 -0.2262531 0.5428591 0.519487 -0.2875993 0.5428591 0.519487 -0.3262122 0.5428591 0.519487 -0.3544566 0.5428591 0.519487 -0.3767383 0.5428591 0.519487 -0.3951413 0.5428591 0.519487 -0.4108177 0.5428591 0.519487 -0.4244723 0.5428591 0.519487 -0.4365675 0.5428591 0.519487 -0.4474232 0.5428591 0.519487 -0.45727 0.5428591 0.519487 -0.4662797 0.5428591 0.519487 -0.4745834 0.5428591 0.519487 -0.4822838 0.5428591 0.519487 -0.4894626 0.5428591 0.519487 -0.4961862 0.5428591 0.519487 -0.5025087 0.5428591 0.519487 -0.5084753 0.5428591 0.519487 -0.514124 0.5428591 0.519487 -0.519487 0.5428591 0.519487 -0.5245917 0.5428591 0.519487 -0.529462 0.5428591 0.519487 -0.5341183 0.5428591 0.519487 -0.5385787 0.5428591 0.519487 -0.5428591 0.5428591 0.519487 -0.5469733 0.5428591 0.519487 -0.5509339 0.5428591 0.519487 -0.5547519 0.5428591 0.519487 -0.5584371 0.5428591 0.519487 -0.5619986 0.5428591 0.519487 -0.5654443 0.5428591 0.519487 -0.5687816 0.5428591 0.519487 -0.092819 0.5469733 0.519487 -0.2262531 0.5469733 0.519487 -0.2875993 0.5469733 0.519487 -0.3262122 0.5469733 0.519487 -0.3544566 0.5469733 0.519487 -0.3767383 0.5469733 0.519487 -0.3951413 0.5469733 0.519487 -0.4108177 0.5469733 0.519487 -0.4244723 0.5469733 0.519487 -0.4365675 0.5469733 0.519487 -0.4474232 0.5469733 0.519487 -0.45727 0.5469733 0.519487 -0.4662797 0.5469733 0.519487 -0.4745834 0.5469733 0.519487 -0.4822838 0.5469733 0.519487 -0.4894626 0.5469733 0.519487 -0.4961862 0.5469733 0.519487 -0.5025087 0.5469733 0.519487 -0.5084753 0.5469733 0.519487 -0.514124 0.5469733 0.519487 -0.519487 0.5469733 0.519487 -0.5245917 0.5469733 0.519487 -0.529462 0.5469733 0.519487 -0.5341183 0.5469733 0.519487 -0.5385787 0.5469733 0.519487 -0.5428591 0.5469733 0.519487 -0.5469733 0.5469733 0.519487 -0.5509339 0.5469733 0.519487 -0.5547519 0.5469733 0.519487 -0.5584371 0.5469733 0.519487 -0.5619986 0.5469733 0.519487 -0.5654443 0.5469733 0.519487 -0.5687816 0.5469733 0.519487 -0.092819 0.5509339 0.519487 -0.2262531 0.5509339 0.519487 -0.2875993 0.5509339 0.519487 -0.3262122 0.5509339 0.519487 -0.3544566 0.5509339 0.519487 -0.3767383 0.5509339 0.519487 -0.3951413 0.5509339 0.519487 -0.4108177 0.5509339 0.519487 -0.4244723 0.5509339 0.519487 -0.4365675 0.5509339 0.519487 -0.4474232 0.5509339 0.519487 -0.45727 0.5509339 0.519487 -0.4662797 0.5509339 0.519487 -0.4745834 0.5509339 0.519487 -0.4822838 0.5509339 0.519487 -0.4894626 0.5509339 0.519487 -0.4961862 0.5509339 0.519487 -0.5025087 0.5509339 0.519487 -0.5084753 0.5509339 0.519487 -0.514124 0.5509339 0.519487 -0.519487 0.5509339 0.519487 -0.5245917 0.5509339 0.519487 -0.529462 0.5509339 0.519487 -0.5341183 0.5509339 0.519487 -0.5385787 0.5509339 0.519487 -0.5428591 0.5509339 0.519487 -0.5469733 0.5509339 0.519487 -0.5509339 0.5509339 0.519487 -0.5547519 0.5509339 0.519487 -0.5584371 0.5509339 0.519487 -0.5619986 0.5509339 0.519487 -0.5654443 0.5509339 0.519487 -0.5687816 0.5509339 0.519487 -0.092819 0.5547519 0.519487 -0.2262531 0.5547519 0.519487 -0.2875993 0.5547519 0.519487 -0.3262122 0.5547519 0.519487 -0.3544566 0.5547519 0.519487 -0.3767383 0.5547519 0.519487 -0.3951413 0.5547519 0.519487 -0.4108177 0.5547519 0.519487 -0.4244723 0.5547519 0.519487 -0.4365675 0.5547519 0.519487 -0.4474232 0.5547519 0.519487 -0.45727 0.5547519 0.519487 -0.4662797 0.5547519 0.519487 -0.4745834 0.5547519 0.519487 -0.4822838 0.5547519 0.519487 -0.4894626 0.5547519 0.519487 -0.4961862 0.5547519 0.519487 -0.5025087 0.5547519 0.519487 -0.5084753 0.5547519 0.519487 -0.514124 0.5547519 0.519487 -0.519487 0.5547519 0.519487 -0.5245917 0.5547519 0.519487 -0.529462 0.5547519 0.519487 -0.5341183 0.5547519 0.519487 -0.5385787 0.5547519 0.519487 -0.5428591 0.5547519 0.519487 -0.5469733 0.5547519 0.519487 -0.5509339 0.5547519 0.519487 -0.5547519 0.5547519 0.519487 -0.5584371 0.5547519 0.519487 -0.5619986 0.5547519 0.519487 -0.5654443 0.5547519 0.519487 -0.5687816 0.5547519 0.519487 -0.092819 0.5584371 0.519487 -0.2262531 0.5584371 0.519487 -0.2875993 0.5584371 0.519487 -0.3262122 0.5584371 0.519487 -0.3544566 0.5584371 0.519487 -0.3767383 0.5584371 0.519487 -0.3951413 0.5584371 0.519487 -0.4108177 0.5584371 0.519487 -0.4244723 0.5584371 0.519487 -0.4365675 0.5584371 0.519487 -0.4474232 0.5584371 0.519487 -0.45727 0.5584371 0.519487 -0.4662797 0.5584371 0.519487 -0.4745834 0.5584371 0.519487 -0.4822838 0.5584371 0.519487 -0.4894626 0.5584371 0.519487 -0.4961862 0.5584371 0.519487 -0.5025087 0.5584371 0.519487 -0.5084753 0.5584371 0.519487 -0.514124 0.5584371 0.519487 -0.519487 0.5584371 0.519487 -0.5245917 0.5584371 0.519487 -0.529462 0.5584371 0.519487 -0.5341183 0.5584371 0.519487 -0.5385787 0.5584371 0.519487 -0.5428591 0.5584371 0.519487 -0.5469733 0.5584371 0.519487 -0.5509339 0.5584371 0.519487 -0.5547519 0.5584371 0.519487 -0.5584371 0.5584371 0.519487 -0.5619986 0.5584371 0.519487 -0.5654443 0.5584371 0.519487 -0.5687816 0.5584371 0.519487 -0.092819 0.5619986 0.519487 -0.2262531 0.5619986 0.519487 -0.2875993 0.5619986 0.519487 -0.3262122 0.5619986 0.519487 -0.3544566 0.5619986 0.519487 -0.3767383 0.5619986 0.519487 -0.3951413 0.5619986 0.519487 -0.4108177 0.5619986 0.519487 -0.4244723 0.5619986 0.519487 -0.4365675 0.5619986 0.519487 -0.4474232 0.5619986 0.519487 -0.45727 0.5619986 0.519487 -0.4662797 0.5619986 0.519487 -0.4745834 0.5619986 0.519487 -0.4822838 0.5619986 0.519487 -0.4894626 0.5619986 0.519487 -0.4961862 0.5619986 0.519487 -0.5025087 0.5619986 0.519487 -0.5084753 0.5619986 0.519487 -0.514124 0.5619986 0.519487 -0.519487 0.5619986 0.519487 -0.5245917 0.5619986 0.519487 -0.529462 0.5619986 0.519487 -0.5341183 0.5619986 0.519487 -0.5385787 0.5619986 0.519487 -0.5428591 0.5619986 0.519487 -0.5469733 0.5619986 0.519487 -0.5509339 0.5619986 0.519487 -0.5547519 0.5619986 0.519487 -0.5584371 0.5619986 0.519487 -0.5619986 0.5619986 0.519487 -0.5654443 0.5619986 0.519487 -0.5687816 0.5619986 0.519487 -0.092819 0.5654443 0.519487 -0.2262531 0.5654443 0.519487 -0.2875993 0.5654443 0.519487 -0.3262122 0.5654443 0.519487 -0.3544566 0.5654443 0.519487 -0.3767383 0.5654443 0.519487 -0.3951413 0.5654443 0.519487 -0.4108177 0.5654443 0.519487 -0.4244723 0.5654443 0.519487 -0.4365675 0.5654443 0.519487 -0.4474232 0.5654443 0.519487 -0.45727 0.5654443 0.519487 -0.4662797 0.5654443 0.519487 -0.4745834 0.5654443 0.519487 -0.4822838 0.5654443 0.519487 -0.4894626 0.5654443 0.519487 -0.4961862 0.5654443 0.519487 -0.5025087 0.5654443 0.519487 -0.5084753 0.5654443 0.519487 -0.514124 0.5654443 0.519487 -0.519487 0.5654443 0.519487 -0.5245917 0.5654443 0.519487 -0.529462 0.5654443 0.519487 -0.5341183 0.5654443 0.519487 -0.5385787 0.5654443 0.519487 -0.5428591 0.5654443 0.519487 -0.5469733 0.5654443 0.519487 -0.5509339 0.5654443 0.519487 -0.5547519 0.5654443 0.519487 -0.5584371 0.5654443 0.519487 -0.5619986 0.5654443 0.519487 -0.5654443 0.5654443 0.519487 -0.5687816 0.5654443 0.519487 -0.092819 0.5687816 0.519487 -0.2262531 0.5687816 0.519487 -0.2875993 0.5687816 0.519487 -0.3262122 0.5687816 0.519487 -0.3544566 0.5687816 0.519487 -0.3767383 0.5687816 0.519487 -0.3951413 0.5687816 0.519487 -0.4108177 0.5687816 0.519487 -0.4244723 0.5687816 0.519487 -0.4365675 0.5687816 0.519487 -0.4474232 0.5687816 0.519487 -0.45727 0.5687816 0.519487 -0.4662797 0.5687816 0.519487 -0.4745834 0.5687816 0.519487 -0.4822838 0.5687816 0.519487 -0.4894626 0.5687816 0.519487 -0.4961862 0.5687816 0.519487 -0.5025087 0.5687816 0.519487 -0.5084753 0.5687816 0.519487 -0.514124 0.5687816 0.519487 -0.519487 0.5687816 0.519487 -0.5245917 0.5687816 0.519487 -0.529462 0.5687816 0.519487 -0.5341183 0.5687816 0.519487 -0.5385787 0.5687816 0.519487 -0.5428591 0.5687816 0.519487 -0.5469733 0.5687816 0.519487 -0.5509339 0.5687816 0.519487 -0.5547519 0.5687816 0.519487 -0.5584371 0.5687816 0.519487 -0.5619986 0.5687816 0.519487 -0.5654443 0.5687816 0.519487 -0.5687816 0.5687816 0.519487 -0.092819 0.092819 0.5245917 -0.2262531 0.092819 0.5245917 -0.2875993 0.092819 0.5245917 -0.3262122 0.092819 0.5245917 -0.3544566 0.092819 0.5245917 -0.3767383 0.092819 0.5245917 -0.3951413 0.092819 0.5245917 -0.4108177 0.092819 0.5245917 -0.4244723 0.092819 0.5245917 -0.4365675 0.092819 0.5245917 -0.4474232 0.092819 0.5245917 -0.45727 0.092819 0.5245917 -0.4662797 0.092819 0.5245917 -0.4745834 0.092819 0.5245917 -0.4822838 0.092819 0.5245917 -0.4894626 0.092819 0.5245917 -0.4961862 0.092819 0.5245917 -0.5025087 0.092819 0.5245917 -0.5084753 0.092819 0.5245917 -0.514124 0.092819 0.5245917 -0.519487 0.092819 0.5245917 -0.5245917 0.092819 0.5245917 -0.529462 0.092819 0.5245917 -0.5341183 0.092819 0.5245917 -0.5385787 0.092819 0.5245917 -0.5428591 0.092819 0.5245917 -0.5469733 0.092819 0.5245917 -0.5509339 0.092819 0.5245917 -0.5547519 0.092819 0.5245917 -0.5584371 0.092819 0.5245917 -0.5619986 0.092819 0.5245917 -0.5654443 0.092819 0.5245917 -0.5687816 0.092819 0.5245917 -0.092819 0.2262531 0.5245917 -0.2262531 0.2262531 0.5245917 -0.2875993 0.2262531 0.5245917 -0.3262122 0.2262531 0.5245917 -0.3544566 0.2262531 0.5245917 -0.3767383 0.2262531 0.5245917 -0.3951413 0.2262531 0.5245917 -0.4108177 0.2262531 0.5245917 -0.4244723 0.2262531 0.5245917 -0.4365675 0.2262531 0.5245917 -0.4474232 0.2262531 0.5245917 -0.45727 0.2262531 0.5245917 -0.4662797 0.2262531 0.5245917 -0.4745834 0.2262531 0.5245917 -0.4822838 0.2262531 0.5245917 -0.4894626 0.2262531 0.5245917 -0.4961862 0.2262531 0.5245917 -0.5025087 0.2262531 0.5245917 -0.5084753 0.2262531 0.5245917 -0.514124 0.2262531 0.5245917 -0.519487 0.2262531 0.5245917 -0.5245917 0.2262531 0.5245917 -0.529462 0.2262531 0.5245917 -0.5341183 0.2262531 0.5245917 -0.5385787 0.2262531 0.5245917 -0.5428591 0.2262531 0.5245917 -0.5469733 0.2262531 0.5245917 -0.5509339 0.2262531 0.5245917 -0.5547519 0.2262531 0.5245917 -0.5584371 0.2262531 0.5245917 -0.5619986 0.2262531 0.5245917 -0.5654443 0.2262531 0.5245917 -0.5687816 0.2262531 0.5245917 -0.092819 0.2875993 0.5245917 -0.2262531 0.2875993 0.5245917 -0.2875993 0.2875993 0.5245917 -0.3262122 0.2875993 0.5245917 -0.3544566 0.2875993 0.5245917 -0.3767383 0.2875993 0.5245917 -0.3951413 0.2875993 0.5245917 -0.4108177 0.2875993 0.5245917 -0.4244723 0.2875993 0.5245917 -0.4365675 0.2875993 0.5245917 -0.4474232 0.2875993 0.5245917 -0.45727 0.2875993 0.5245917 -0.4662797 0.2875993 0.5245917 -0.4745834 0.2875993 0.5245917 -0.4822838 0.2875993 0.5245917 -0.4894626 0.2875993 0.5245917 -0.4961862 0.2875993 0.5245917 -0.5025087 0.2875993 0.5245917 -0.5084753 0.2875993 0.5245917 -0.514124 0.2875993 0.5245917 -0.519487 0.2875993 0.5245917 -0.5245917 0.2875993 0.5245917 -0.529462 0.2875993 0.5245917 -0.5341183 0.2875993 0.5245917 -0.5385787 0.2875993 0.5245917 -0.5428591 0.2875993 0.5245917 -0.5469733 0.2875993 0.5245917 -0.5509339 0.2875993 0.5245917 -0.5547519 0.2875993 0.5245917 -0.5584371 0.2875993 0.5245917 -0.5619986 0.2875993 0.5245917 -0.5654443 0.2875993 0.5245917 -0.5687816 0.2875993 0.5245917 -0.092819 0.3262122 0.5245917 -0.2262531 0.3262122 0.5245917 -0.2875993 0.3262122 0.5245917 -0.3262122 0.3262122 0.5245917 -0.3544566 0.3262122 0.5245917 -0.3767383 0.3262122 0.5245917 -0.3951413 0.3262122 0.5245917 -0.4108177 0.3262122 0.5245917 -0.4244723 0.3262122 0.5245917 -0.4365675 0.3262122 0.5245917 -0.4474232 0.3262122 0.5245917 -0.45727 0.3262122 0.5245917 -0.4662797 0.3262122 0.5245917 -0.4745834 0.3262122 0.5245917 -0.4822838 0.3262122 0.5245917 -0.4894626 0.3262122 0.5245917 -0.4961862 0.3262122 0.5245917 -0.5025087 0.3262122 0.5245917 -0.5084753 0.3262122 0.5245917 -0.514124 0.3262122 0.5245917 -0.519487 0.3262122 0.5245917 -0.5245917 0.3262122 0.5245917 -0.529462 0.3262122 0.5245917 -0.5341183 0.3262122 0.5245917 -0.5385787 0.3262122 0.5245917 -0.5428591 0.3262122 0.5245917 -0.5469733 0.3262122 0.5245917 -0.5509339 0.3262122 0.5245917 -0.5547519 0.3262122 0.5245917 -0.5584371 0.3262122 0.5245917 -0.5619986 0.3262122 0.5245917 -0.5654443 0.3262122 0.5245917 -0.5687816 0.3262122 0.5245917 -0.092819 0.3544566 0.5245917 -0.2262531 0.3544566 0.5245917 -0.2875993 0.3544566 0.5245917 -0.3262122 0.3544566 0.5245917 -0.3544566 0.3544566 0.5245917 -0.3767383 0.3544566 0.5245917 -0.3951413 0.3544566 0.5245917 -0.4108177 0.3544566 0.5245917 -0.4244723 0.3544566 0.5245917 -0.4365675 0.3544566 0.5245917 -0.4474232 0.3544566 0.5245917 -0.45727 0.3544566 0.5245917 -0.4662797 0.3544566 0.5245917 -0.4745834 0.3544566 0.5245917 -0.4822838 0.3544566 0.5245917 -0.4894626 0.3544566 0.5245917 -0.4961862 0.3544566 0.5245917 -0.5025087 0.3544566 0.5245917 -0.5084753 0.3544566 0.5245917 -0.514124 0.3544566 0.5245917 -0.519487 0.3544566 0.5245917 -0.5245917 0.3544566 0.5245917 -0.529462 0.3544566 0.5245917 -0.5341183 0.3544566 0.5245917 -0.5385787 0.3544566 0.5245917 -0.5428591 0.3544566 0.5245917 -0.5469733 0.3544566 0.5245917 -0.5509339 0.3544566 0.5245917 -0.5547519 0.3544566 0.5245917 -0.5584371 0.3544566 0.5245917 -0.5619986 0.3544566 0.5245917 -0.5654443 0.3544566 0.5245917 -0.5687816 0.3544566 0.5245917 -0.092819 0.3767383 0.5245917 -0.2262531 0.3767383 0.5245917 -0.2875993 0.3767383 0.5245917 -0.3262122 0.3767383 0.5245917 -0.3544566 0.3767383 0.5245917 -0.3767383 0.3767383 0.5245917 -0.3951413 0.3767383 0.5245917 -0.4108177 0.3767383 0.5245917 -0.4244723 0.3767383 0.5245917 -0.4365675 0.3767383 0.5245917 -0.4474232 0.3767383 0.5245917 -0.45727 0.3767383 0.5245917 -0.4662797 0.3767383 0.5245917 -0.4745834 0.3767383 0.5245917 -0.4822838 0.3767383 0.5245917 -0.4894626 0.3767383 0.5245917 -0.4961862 0.3767383 0.5245917 -0.5025087 0.3767383 0.5245917 -0.5084753 0.3767383 0.5245917 -0.514124 0.3767383 0.5245917 -0.519487 0.3767383 0.5245917 -0.5245917 0.3767383 0.5245917 -0.529462 0.3767383 0.5245917 -0.5341183 0.3767383 0.5245917 -0.5385787 0.3767383 0.5245917 -0.5428591 0.3767383 0.5245917 -0.5469733 0.3767383 0.5245917 -0.5509339 0.3767383 0.5245917 -0.5547519 0.3767383 0.5245917 -0.5584371 0.3767383 0.5245917 -0.5619986 0.3767383 0.5245917 -0.5654443 0.3767383 0.5245917 -0.5687816 0.3767383 0.5245917 -0.092819 0.3951413 0.5245917 -0.2262531 0.3951413 0.5245917 -0.2875993 0.3951413 0.5245917 -0.3262122 0.3951413 0.5245917 -0.3544566 0.3951413 0.5245917 -0.3767383 0.3951413 0.5245917 -0.3951413 0.3951413 0.5245917 -0.4108177 0.3951413 0.5245917 -0.4244723 0.3951413 0.5245917 -0.4365675 0.3951413 0.5245917 -0.4474232 0.3951413 0.5245917 -0.45727 0.3951413 0.5245917 -0.4662797 0.3951413 0.5245917 -0.4745834 0.3951413 0.5245917 -0.4822838 0.3951413 0.5245917 -0.4894626 0.3951413 0.5245917 -0.4961862 0.3951413 0.5245917 -0.5025087 0.3951413 0.5245917 -0.5084753 0.3951413 0.5245917 -0.514124 0.3951413 0.5245917 -0.519487 0.3951413 0.5245917 -0.5245917 0.3951413 0.5245917 -0.529462 0.3951413 0.5245917 -0.5341183 0.3951413 0.5245917 -0.5385787 0.3951413 0.5245917 -0.5428591 0.3951413 0.5245917 -0.5469733 0.3951413 0.5245917 -0.5509339 0.3951413 0.5245917 -0.5547519 0.3951413 0.5245917 -0.5584371 0.3951413 0.5245917 -0.5619986 0.3951413 0.5245917 -0.5654443 0.3951413 0.5245917 -0.5687816 0.3951413 0.5245917 -0.092819 0.4108177 0.5245917 -0.2262531 0.4108177 0.5245917 -0.2875993 0.4108177 0.5245917 -0.3262122 0.4108177 0.5245917 -0.3544566 0.4108177 0.5245917 -0.3767383 0.4108177 0.5245917 -0.3951413 0.4108177 0.5245917 -0.4108177 0.4108177 0.5245917 -0.4244723 0.4108177 0.5245917 -0.4365675 0.4108177 0.5245917 -0.4474232 0.4108177 0.5245917 -0.45727 0.4108177 0.5245917 -0.4662797 0.4108177 0.5245917 -0.4745834 0.4108177 0.5245917 -0.4822838 0.4108177 0.5245917 -0.4894626 0.4108177 0.5245917 -0.4961862 0.4108177 0.5245917 -0.5025087 0.4108177 0.5245917 -0.5084753 0.4108177 0.5245917 -0.514124 0.4108177 0.5245917 -0.519487 0.4108177 0.5245917 -0.5245917 0.4108177 0.5245917 -0.529462 0.4108177 0.5245917 -0.5341183 0.4108177 0.5245917 -0.5385787 0.4108177 0.5245917 -0.5428591 0.4108177 0.5245917 -0.5469733 0.4108177 0.5245917 -0.5509339 0.4108177 0.5245917 -0.5547519 0.4108177 0.5245917 -0.5584371 0.4108177 0.5245917 -0.5619986 0.4108177 0.5245917 -0.5654443 0.4108177 0.5245917 -0.5687816 0.4108177 0.5245917 -0.092819 0.4244723 0.5245917 -0.2262531 0.4244723 0.5245917 -0.2875993 0.4244723 0.5245917 -0.3262122 0.4244723 0.5245917 -0.3544566 0.4244723 0.5245917 -0.3767383 0.4244723 0.5245917 -0.3951413 0.4244723 0.5245917 -0.4108177 0.4244723 0.5245917 -0.4244723 0.4244723 0.5245917 -0.4365675 0.4244723 0.5245917 -0.4474232 0.4244723 0.5245917 -0.45727 0.4244723 0.5245917 -0.4662797 0.4244723 0.5245917 -0.4745834 0.4244723 0.5245917 -0.4822838 0.4244723 0.5245917 -0.4894626 0.4244723 0.5245917 -0.4961862 0.4244723 0.5245917 -0.5025087 0.4244723 0.5245917 -0.5084753 0.4244723 0.5245917 -0.514124 0.4244723 0.5245917 -0.519487 0.4244723 0.5245917 -0.5245917 0.4244723 0.5245917 -0.529462 0.4244723 0.5245917 -0.5341183 0.4244723 0.5245917 -0.5385787 0.4244723 0.5245917 -0.5428591 0.4244723 0.5245917 -0.5469733 0.4244723 0.5245917 -0.5509339 0.4244723 0.5245917 -0.5547519 0.4244723 0.5245917 -0.5584371 0.4244723 0.5245917 -0.5619986 0.4244723 0.5245917 -0.5654443 0.4244723 0.5245917 -0.5687816 0.4244723 0.5245917 -0.092819 0.4365675 0.5245917 -0.2262531 0.4365675 0.5245917 -0.2875993 0.4365675 0.5245917 -0.3262122 0.4365675 0.5245917 -0.3544566 0.4365675 0.5245917 -0.3767383 0.4365675 0.5245917 -0.3951413 0.4365675 0.5245917 -0.4108177 0.4365675 0.5245917 -0.4244723 0.4365675 0.5245917 -0.4365675 0.4365675 0.5245917 -0.4474232 0.4365675 0.5245917 -0.45727 0.4365675 0.5245917 -0.4662797 0.4365675 0.5245917 -0.4745834 0.4365675 0.5245917 -0.4822838 0.4365675 0.5245917 -0.4894626 0.4365675 0.5245917 -0.4961862 0.4365675 0.5245917 -0.5025087 0.4365675 0.5245917 -0.5084753 0.4365675 0.5245917 -0.514124 0.4365675 0.5245917 -0.519487 0.4365675 0.5245917 -0.5245917 0.4365675 0.5245917 -0.529462 0.4365675 0.5245917 -0.5341183 0.4365675 0.5245917 -0.5385787 0.4365675 0.5245917 -0.5428591 0.4365675 0.5245917 -0.5469733 0.4365675 0.5245917 -0.5509339 0.4365675 0.5245917 -0.5547519 0.4365675 0.5245917 -0.5584371 0.4365675 0.5245917 -0.5619986 0.4365675 0.5245917 -0.5654443 0.4365675 0.5245917 -0.5687816 0.4365675 0.5245917 -0.092819 0.4474232 0.5245917 -0.2262531 0.4474232 0.5245917 -0.2875993 0.4474232 0.5245917 -0.3262122 0.4474232 0.5245917 -0.3544566 0.4474232 0.5245917 -0.3767383 0.4474232 0.5245917 -0.3951413 0.4474232 0.5245917 -0.4108177 0.4474232 0.5245917 -0.4244723 0.4474232 0.5245917 -0.4365675 0.4474232 0.5245917 -0.4474232 0.4474232 0.5245917 -0.45727 0.4474232 0.5245917 -0.4662797 0.4474232 0.5245917 -0.4745834 0.4474232 0.5245917 -0.4822838 0.4474232 0.5245917 -0.4894626 0.4474232 0.5245917 -0.4961862 0.4474232 0.5245917 -0.5025087 0.4474232 0.5245917 -0.5084753 0.4474232 0.5245917 -0.514124 0.4474232 0.5245917 -0.519487 0.4474232 0.5245917 -0.5245917 0.4474232 0.5245917 -0.529462 0.4474232 0.5245917 -0.5341183 0.4474232 0.5245917 -0.5385787 0.4474232 0.5245917 -0.5428591 0.4474232 0.5245917 -0.5469733 0.4474232 0.5245917 -0.5509339 0.4474232 0.5245917 -0.5547519 0.4474232 0.5245917 -0.5584371 0.4474232 0.5245917 -0.5619986 0.4474232 0.5245917 -0.5654443 0.4474232 0.5245917 -0.5687816 0.4474232 0.5245917 -0.092819 0.45727 0.5245917 -0.2262531 0.45727 0.5245917 -0.2875993 0.45727 0.5245917 -0.3262122 0.45727 0.5245917 -0.3544566 0.45727 0.5245917 -0.3767383 0.45727 0.5245917 -0.3951413 0.45727 0.5245917 -0.4108177 0.45727 0.5245917 -0.4244723 0.45727 0.5245917 -0.4365675 0.45727 0.5245917 -0.4474232 0.45727 0.5245917 -0.45727 0.45727 0.5245917 -0.4662797 0.45727 0.5245917 -0.4745834 0.45727 0.5245917 -0.4822838 0.45727 0.5245917 -0.4894626 0.45727 0.5245917 -0.4961862 0.45727 0.5245917 -0.5025087 0.45727 0.5245917 -0.5084753 0.45727 0.5245917 -0.514124 0.45727 0.5245917 -0.519487 0.45727 0.5245917 -0.5245917 0.45727 0.5245917 -0.529462 0.45727 0.5245917 -0.5341183 0.45727 0.5245917 -0.5385787 0.45727 0.5245917 -0.5428591 0.45727 0.5245917 -0.5469733 0.45727 0.5245917 -0.5509339 0.45727 0.5245917 -0.5547519 0.45727 0.5245917 -0.5584371 0.45727 0.5245917 -0.5619986 0.45727 0.5245917 -0.5654443 0.45727 0.5245917 -0.5687816 0.45727 0.5245917 -0.092819 0.4662797 0.5245917 -0.2262531 0.4662797 0.5245917 -0.2875993 0.4662797 0.5245917 -0.3262122 0.4662797 0.5245917 -0.3544566 0.4662797 0.5245917 -0.3767383 0.4662797 0.5245917 -0.3951413 0.4662797 0.5245917 -0.4108177 0.4662797 0.5245917 -0.4244723 0.4662797 0.5245917 -0.4365675 0.4662797 0.5245917 -0.4474232 0.4662797 0.5245917 -0.45727 0.4662797 0.5245917 -0.4662797 0.4662797 0.5245917 -0.4745834 0.4662797 0.5245917 -0.4822838 0.4662797 0.5245917 -0.4894626 0.4662797 0.5245917 -0.4961862 0.4662797 0.5245917 -0.5025087 0.4662797 0.5245917 -0.5084753 0.4662797 0.5245917 -0.514124 0.4662797 0.5245917 -0.519487 0.4662797 0.5245917 -0.5245917 0.4662797 0.5245917 -0.529462 0.4662797 0.5245917 -0.5341183 0.4662797 0.5245917 -0.5385787 0.4662797 0.5245917 -0.5428591 0.4662797 0.5245917 -0.5469733 0.4662797 0.5245917 -0.5509339 0.4662797 0.5245917 -0.5547519 0.4662797 0.5245917 -0.5584371 0.4662797 0.5245917 -0.5619986 0.4662797 0.5245917 -0.5654443 0.4662797 0.5245917 -0.5687816 0.4662797 0.5245917 -0.092819 0.4745834 0.5245917 -0.2262531 0.4745834 0.5245917 -0.2875993 0.4745834 0.5245917 -0.3262122 0.4745834 0.5245917 -0.3544566 0.4745834 0.5245917 -0.3767383 0.4745834 0.5245917 -0.3951413 0.4745834 0.5245917 -0.4108177 0.4745834 0.5245917 -0.4244723 0.4745834 0.5245917 -0.4365675 0.4745834 0.5245917 -0.4474232 0.4745834 0.5245917 -0.45727 0.4745834 0.5245917 -0.4662797 0.4745834 0.5245917 -0.4745834 0.4745834 0.5245917 -0.4822838 0.4745834 0.5245917 -0.4894626 0.4745834 0.5245917 -0.4961862 0.4745834 0.5245917 -0.5025087 0.4745834 0.5245917 -0.5084753 0.4745834 0.5245917 -0.514124 0.4745834 0.5245917 -0.519487 0.4745834 0.5245917 -0.5245917 0.4745834 0.5245917 -0.529462 0.4745834 0.5245917 -0.5341183 0.4745834 0.5245917 -0.5385787 0.4745834 0.5245917 -0.5428591 0.4745834 0.5245917 -0.5469733 0.4745834 0.5245917 -0.5509339 0.4745834 0.5245917 -0.5547519 0.4745834 0.5245917 -0.5584371 0.4745834 0.5245917 -0.5619986 0.4745834 0.5245917 -0.5654443 0.4745834 0.5245917 -0.5687816 0.4745834 0.5245917 -0.092819 0.4822838 0.5245917 -0.2262531 0.4822838 0.5245917 -0.2875993 0.4822838 0.5245917 -0.3262122 0.4822838 0.5245917 -0.3544566 0.4822838 0.5245917 -0.3767383 0.4822838 0.5245917 -0.3951413 0.4822838 0.5245917 -0.4108177 0.4822838 0.5245917 -0.4244723 0.4822838 0.5245917 -0.4365675 0.4822838 0.5245917 -0.4474232 0.4822838 0.5245917 -0.45727 0.4822838 0.5245917 -0.4662797 0.4822838 0.5245917 -0.4745834 0.4822838 0.5245917 -0.4822838 0.4822838 0.5245917 -0.4894626 0.4822838 0.5245917 -0.4961862 0.4822838 0.5245917 -0.5025087 0.4822838 0.5245917 -0.5084753 0.4822838 0.5245917 -0.514124 0.4822838 0.5245917 -0.519487 0.4822838 0.5245917 -0.5245917 0.4822838 0.5245917 -0.529462 0.4822838 0.5245917 -0.5341183 0.4822838 0.5245917 -0.5385787 0.4822838 0.5245917 -0.5428591 0.4822838 0.5245917 -0.5469733 0.4822838 0.5245917 -0.5509339 0.4822838 0.5245917 -0.5547519 0.4822838 0.5245917 -0.5584371 0.4822838 0.5245917 -0.5619986 0.4822838 0.5245917 -0.5654443 0.4822838 0.5245917 -0.5687816 0.4822838 0.5245917 -0.092819 0.4894626 0.5245917 -0.2262531 0.4894626 0.5245917 -0.2875993 0.4894626 0.5245917 -0.3262122 0.4894626 0.5245917 -0.3544566 0.4894626 0.5245917 -0.3767383 0.4894626 0.5245917 -0.3951413 0.4894626 0.5245917 -0.4108177 0.4894626 0.5245917 -0.4244723 0.4894626 0.5245917 -0.4365675 0.4894626 0.5245917 -0.4474232 0.4894626 0.5245917 -0.45727 0.4894626 0.5245917 -0.4662797 0.4894626 0.5245917 -0.4745834 0.4894626 0.5245917 -0.4822838 0.4894626 0.5245917 -0.4894626 0.4894626 0.5245917 -0.4961862 0.4894626 0.5245917 -0.5025087 0.4894626 0.5245917 -0.5084753 0.4894626 0.5245917 -0.514124 0.4894626 0.5245917 -0.519487 0.4894626 0.5245917 -0.5245917 0.4894626 0.5245917 -0.529462 0.4894626 0.5245917 -0.5341183 0.4894626 0.5245917 -0.5385787 0.4894626 0.5245917 -0.5428591 0.4894626 0.5245917 -0.5469733 0.4894626 0.5245917 -0.5509339 0.4894626 0.5245917 -0.5547519 0.4894626 0.5245917 -0.5584371 0.4894626 0.5245917 -0.5619986 0.4894626 0.5245917 -0.5654443 0.4894626 0.5245917 -0.5687816 0.4894626 0.5245917 -0.092819 0.4961862 0.5245917 -0.2262531 0.4961862 0.5245917 -0.2875993 0.4961862 0.5245917 -0.3262122 0.4961862 0.5245917 -0.3544566 0.4961862 0.5245917 -0.3767383 0.4961862 0.5245917 -0.3951413 0.4961862 0.5245917 -0.4108177 0.4961862 0.5245917 -0.4244723 0.4961862 0.5245917 -0.4365675 0.4961862 0.5245917 -0.4474232 0.4961862 0.5245917 -0.45727 0.4961862 0.5245917 -0.4662797 0.4961862 0.5245917 -0.4745834 0.4961862 0.5245917 -0.4822838 0.4961862 0.5245917 -0.4894626 0.4961862 0.5245917 -0.4961862 0.4961862 0.5245917 -0.5025087 0.4961862 0.5245917 -0.5084753 0.4961862 0.5245917 -0.514124 0.4961862 0.5245917 -0.519487 0.4961862 0.5245917 -0.5245917 0.4961862 0.5245917 -0.529462 0.4961862 0.5245917 -0.5341183 0.4961862 0.5245917 -0.5385787 0.4961862 0.5245917 -0.5428591 0.4961862 0.5245917 -0.5469733 0.4961862 0.5245917 -0.5509339 0.4961862 0.5245917 -0.5547519 0.4961862 0.5245917 -0.5584371 0.4961862 0.5245917 -0.5619986 0.4961862 0.5245917 -0.5654443 0.4961862 0.5245917 -0.5687816 0.4961862 0.5245917 -0.092819 0.5025087 0.5245917 -0.2262531 0.5025087 0.5245917 -0.2875993 0.5025087 0.5245917 -0.3262122 0.5025087 0.5245917 -0.3544566 0.5025087 0.5245917 -0.3767383 0.5025087 0.5245917 -0.3951413 0.5025087 0.5245917 -0.4108177 0.5025087 0.5245917 -0.4244723 0.5025087 0.5245917 -0.4365675 0.5025087 0.5245917 -0.4474232 0.5025087 0.5245917 -0.45727 0.5025087 0.5245917 -0.4662797 0.5025087 0.5245917 -0.4745834 0.5025087 0.5245917 -0.4822838 0.5025087 0.5245917 -0.4894626 0.5025087 0.5245917 -0.4961862 0.5025087 0.5245917 -0.5025087 0.5025087 0.5245917 -0.5084753 0.5025087 0.5245917 -0.514124 0.5025087 0.5245917 -0.519487 0.5025087 0.5245917 -0.5245917 0.5025087 0.5245917 -0.529462 0.5025087 0.5245917 -0.5341183 0.5025087 0.5245917 -0.5385787 0.5025087 0.5245917 -0.5428591 0.5025087 0.5245917 -0.5469733 0.5025087 0.5245917 -0.5509339 0.5025087 0.5245917 -0.5547519 0.5025087 0.5245917 -0.5584371 0.5025087 0.5245917 -0.5619986 0.5025087 0.5245917 -0.5654443 0.5025087 0.5245917 -0.5687816 0.5025087 0.5245917 -0.092819 0.5084753 0.5245917 -0.2262531 0.5084753 0.5245917 -0.2875993 0.5084753 0.5245917 -0.3262122 0.5084753 0.5245917 -0.3544566 0.5084753 0.5245917 -0.3767383 0.5084753 0.5245917 -0.3951413 0.5084753 0.5245917 -0.4108177 0.5084753 0.5245917 -0.4244723 0.5084753 0.5245917 -0.4365675 0.5084753 0.5245917 -0.4474232 0.5084753 0.5245917 -0.45727 0.5084753 0.5245917 -0.4662797 0.5084753 0.5245917 -0.4745834 0.5084753 0.5245917 -0.4822838 0.5084753 0.5245917 -0.4894626 0.5084753 0.5245917 -0.4961862 0.5084753 0.5245917 -0.5025087 0.5084753 0.5245917 -0.5084753 0.5084753 0.5245917 -0.514124 0.5084753 0.5245917 -0.519487 0.5084753 0.5245917 -0.5245917 0.5084753 0.5245917 -0.529462 0.5084753 0.5245917 -0.5341183 0.5084753 0.5245917 -0.5385787 0.5084753 0.5245917 -0.5428591 0.5084753 0.5245917 -0.5469733 0.5084753 0.5245917 -0.5509339 0.5084753 0.5245917 -0.5547519 0.5084753 0.5245917 -0.5584371 0.5084753 0.5245917 -0.5619986 0.5084753 0.5245917 -0.5654443 0.5084753 0.5245917 -0.5687816 0.5084753 0.5245917 -0.092819 0.514124 0.5245917 -0.2262531 0.514124 0.5245917 -0.2875993 0.514124 0.5245917 -0.3262122 0.514124 0.5245917 -0.3544566 0.514124 0.5245917 -0.3767383 0.514124 0.5245917 -0.3951413 0.514124 0.5245917 -0.4108177 0.514124 0.5245917 -0.4244723 0.514124 0.5245917 -0.4365675 0.514124 0.5245917 -0.4474232 0.514124 0.5245917 -0.45727 0.514124 0.5245917 -0.4662797 0.514124 0.5245917 -0.4745834 0.514124 0.5245917 -0.4822838 0.514124 0.5245917 -0.4894626 0.514124 0.5245917 -0.4961862 0.514124 0.5245917 -0.5025087 0.514124 0.5245917 -0.5084753 0.514124 0.5245917 -0.514124 0.514124 0.5245917 -0.519487 0.514124 0.5245917 -0.5245917 0.514124 0.5245917 -0.529462 0.514124 0.5245917 -0.5341183 0.514124 0.5245917 -0.5385787 0.514124 0.5245917 -0.5428591 0.514124 0.5245917 -0.5469733 0.514124 0.5245917 -0.5509339 0.514124 0.5245917 -0.5547519 0.514124 0.5245917 -0.5584371 0.514124 0.5245917 -0.5619986 0.514124 0.5245917 -0.5654443 0.514124 0.5245917 -0.5687816 0.514124 0.5245917 -0.092819 0.519487 0.5245917 -0.2262531 0.519487 0.5245917 -0.2875993 0.519487 0.5245917 -0.3262122 0.519487 0.5245917 -0.3544566 0.519487 0.5245917 -0.3767383 0.519487 0.5245917 -0.3951413 0.519487 0.5245917 -0.4108177 0.519487 0.5245917 -0.4244723 0.519487 0.5245917 -0.4365675 0.519487 0.5245917 -0.4474232 0.519487 0.5245917 -0.45727 0.519487 0.5245917 -0.4662797 0.519487 0.5245917 -0.4745834 0.519487 0.5245917 -0.4822838 0.519487 0.5245917 -0.4894626 0.519487 0.5245917 -0.4961862 0.519487 0.5245917 -0.5025087 0.519487 0.5245917 -0.5084753 0.519487 0.5245917 -0.514124 0.519487 0.5245917 -0.519487 0.519487 0.5245917 -0.5245917 0.519487 0.5245917 -0.529462 0.519487 0.5245917 -0.5341183 0.519487 0.5245917 -0.5385787 0.519487 0.5245917 -0.5428591 0.519487 0.5245917 -0.5469733 0.519487 0.5245917 -0.5509339 0.519487 0.5245917 -0.5547519 0.519487 0.5245917 -0.5584371 0.519487 0.5245917 -0.5619986 0.519487 0.5245917 -0.5654443 0.519487 0.5245917 -0.5687816 0.519487 0.5245917 -0.092819 0.5245917 0.5245917 -0.2262531 0.5245917 0.5245917 -0.2875993 0.5245917 0.5245917 -0.3262122 0.5245917 0.5245917 -0.3544566 0.5245917 0.5245917 -0.3767383 0.5245917 0.5245917 -0.3951413 0.5245917 0.5245917 -0.4108177 0.5245917 0.5245917 -0.4244723 0.5245917 0.5245917 -0.4365675 0.5245917 0.5245917 -0.4474232 0.5245917 0.5245917 -0.45727 0.5245917 0.5245917 -0.4662797 0.5245917 0.5245917 -0.4745834 0.5245917 0.5245917 -0.4822838 0.5245917 0.5245917 -0.4894626 0.5245917 0.5245917 -0.4961862 0.5245917 0.5245917 -0.5025087 0.5245917 0.5245917 -0.5084753 0.5245917 0.5245917 -0.514124 0.5245917 0.5245917 -0.519487 0.5245917 0.5245917 -0.5245917 0.5245917 0.5245917 -0.529462 0.5245917 0.5245917 -0.5341183 0.5245917 0.5245917 -0.5385787 0.5245917 0.5245917 -0.5428591 0.5245917 0.5245917 -0.5469733 0.5245917 0.5245917 -0.5509339 0.5245917 0.5245917 -0.5547519 0.5245917 0.5245917 -0.5584371 0.5245917 0.5245917 -0.5619986 0.5245917 0.5245917 -0.5654443 0.5245917 0.5245917 -0.5687816 0.5245917 0.5245917 -0.092819 0.529462 0.5245917 -0.2262531 0.529462 0.5245917 -0.2875993 0.529462 0.5245917 -0.3262122 0.529462 0.5245917 -0.3544566 0.529462 0.5245917 -0.3767383 0.529462 0.5245917 -0.3951413 0.529462 0.5245917 -0.4108177 0.529462 0.5245917 -0.4244723 0.529462 0.5245917 -0.4365675 0.529462 0.5245917 -0.4474232 0.529462 0.5245917 -0.45727 0.529462 0.5245917 -0.4662797 0.529462 0.5245917 -0.4745834 0.529462 0.5245917 -0.4822838 0.529462 0.5245917 -0.4894626 0.529462 0.5245917 -0.4961862 0.529462 0.5245917 -0.5025087 0.529462 0.5245917 -0.5084753 0.529462 0.5245917 -0.514124 0.529462 0.5245917 -0.519487 0.529462 0.5245917 -0.5245917 0.529462 0.5245917 -0.529462 0.529462 0.5245917 -0.5341183 0.529462 0.5245917 -0.5385787 0.529462 0.5245917 -0.5428591 0.529462 0.5245917 -0.5469733 0.529462 0.5245917 -0.5509339 0.529462 0.5245917 -0.5547519 0.529462 0.5245917 -0.5584371 0.529462 0.5245917 -0.5619986 0.529462 0.5245917 -0.5654443 0.529462 0.5245917 -0.5687816 0.529462 0.5245917 -0.092819 0.5341183 0.5245917 -0.2262531 0.5341183 0.5245917 -0.2875993 0.5341183 0.5245917 -0.3262122 0.5341183 0.5245917 -0.3544566 0.5341183 0.5245917 -0.3767383 0.5341183 0.5245917 -0.3951413 0.5341183 0.5245917 -0.4108177 0.5341183 0.5245917 -0.4244723 0.5341183 0.5245917 -0.4365675 0.5341183 0.5245917 -0.4474232 0.5341183 0.5245917 -0.45727 0.5341183 0.5245917 -0.4662797 0.5341183 0.5245917 -0.4745834 0.5341183 0.5245917 -0.4822838 0.5341183 0.5245917 -0.4894626 0.5341183 0.5245917 -0.4961862 0.5341183 0.5245917 -0.5025087 0.5341183 0.5245917 -0.5084753 0.5341183 0.5245917 -0.514124 0.5341183 0.5245917 -0.519487 0.5341183 0.5245917 -0.5245917 0.5341183 0.5245917 -0.529462 0.5341183 0.5245917 -0.5341183 0.5341183 0.5245917 -0.5385787 0.5341183 0.5245917 -0.5428591 0.5341183 0.5245917 -0.5469733 0.5341183 0.5245917 -0.5509339 0.5341183 0.5245917 -0.5547519 0.5341183 0.5245917 -0.5584371 0.5341183 0.5245917 -0.5619986 0.5341183 0.5245917 -0.5654443 0.5341183 0.5245917 -0.5687816 0.5341183 0.5245917 -0.092819 0.5385787 0.5245917 -0.2262531 0.5385787 0.5245917 -0.2875993 0.5385787 0.5245917 -0.3262122 0.5385787 0.5245917 -0.3544566 0.5385787 0.5245917 -0.3767383 0.5385787 0.5245917 -0.3951413 0.5385787 0.5245917 -0.4108177 0.5385787 0.5245917 -0.4244723 0.5385787 0.5245917 -0.4365675 0.5385787 0.5245917 -0.4474232 0.5385787 0.5245917 -0.45727 0.5385787 0.5245917 -0.4662797 0.5385787 0.5245917 -0.4745834 0.5385787 0.5245917 -0.4822838 0.5385787 0.5245917 -0.4894626 0.5385787 0.5245917 -0.4961862 0.5385787 0.5245917 -0.5025087 0.5385787 0.5245917 -0.5084753 0.5385787 0.5245917 -0.514124 0.5385787 0.5245917 -0.519487 0.5385787 0.5245917 -0.5245917 0.5385787 0.5245917 -0.529462 0.5385787 0.5245917 -0.5341183 0.5385787 0.5245917 -0.5385787 0.5385787 0.5245917 -0.5428591 0.5385787 0.5245917 -0.5469733 0.5385787 0.5245917 -0.5509339 0.5385787 0.5245917 -0.5547519 0.5385787 0.5245917 -0.5584371 0.5385787 0.5245917 -0.5619986 0.5385787 0.5245917 -0.5654443 0.5385787 0.5245917 -0.5687816 0.5385787 0.5245917 -0.092819 0.5428591 0.5245917 -0.2262531 0.5428591 0.5245917 -0.2875993 0.5428591 0.5245917 -0.3262122 0.5428591 0.5245917 -0.3544566 0.5428591 0.5245917 -0.3767383 0.5428591 0.5245917 -0.3951413 0.5428591 0.5245917 -0.4108177 0.5428591 0.5245917 -0.4244723 0.5428591 0.5245917 -0.4365675 0.5428591 0.5245917 -0.4474232 0.5428591 0.5245917 -0.45727 0.5428591 0.5245917 -0.4662797 0.5428591 0.5245917 -0.4745834 0.5428591 0.5245917 -0.4822838 0.5428591 0.5245917 -0.4894626 0.5428591 0.5245917 -0.4961862 0.5428591 0.5245917 -0.5025087 0.5428591 0.5245917 -0.5084753 0.5428591 0.5245917 -0.514124 0.5428591 0.5245917 -0.519487 0.5428591 0.5245917 -0.5245917 0.5428591 0.5245917 -0.529462 0.5428591 0.5245917 -0.5341183 0.5428591 0.5245917 -0.5385787 0.5428591 0.5245917 -0.5428591 0.5428591 0.5245917 -0.5469733 0.5428591 0.5245917 -0.5509339 0.5428591 0.5245917 -0.5547519 0.5428591 0.5245917 -0.5584371 0.5428591 0.5245917 -0.5619986 0.5428591 0.5245917 -0.5654443 0.5428591 0.5245917 -0.5687816 0.5428591 0.5245917 -0.092819 0.5469733 0.5245917 -0.2262531 0.5469733 0.5245917 -0.2875993 0.5469733 0.5245917 -0.3262122 0.5469733 0.5245917 -0.3544566 0.5469733 0.5245917 -0.3767383 0.5469733 0.5245917 -0.3951413 0.5469733 0.5245917 -0.4108177 0.5469733 0.5245917 -0.4244723 0.5469733 0.5245917 -0.4365675 0.5469733 0.5245917 -0.4474232 0.5469733 0.5245917 -0.45727 0.5469733 0.5245917 -0.4662797 0.5469733 0.5245917 -0.4745834 0.5469733 0.5245917 -0.4822838 0.5469733 0.5245917 -0.4894626 0.5469733 0.5245917 -0.4961862 0.5469733 0.5245917 -0.5025087 0.5469733 0.5245917 -0.5084753 0.5469733 0.5245917 -0.514124 0.5469733 0.5245917 -0.519487 0.5469733 0.5245917 -0.5245917 0.5469733 0.5245917 -0.529462 0.5469733 0.5245917 -0.5341183 0.5469733 0.5245917 -0.5385787 0.5469733 0.5245917 -0.5428591 0.5469733 0.5245917 -0.5469733 0.5469733 0.5245917 -0.5509339 0.5469733 0.5245917 -0.5547519 0.5469733 0.5245917 -0.5584371 0.5469733 0.5245917 -0.5619986 0.5469733 0.5245917 -0.5654443 0.5469733 0.5245917 -0.5687816 0.5469733 0.5245917 -0.092819 0.5509339 0.5245917 -0.2262531 0.5509339 0.5245917 -0.2875993 0.5509339 0.5245917 -0.3262122 0.5509339 0.5245917 -0.3544566 0.5509339 0.5245917 -0.3767383 0.5509339 0.5245917 -0.3951413 0.5509339 0.5245917 -0.4108177 0.5509339 0.5245917 -0.4244723 0.5509339 0.5245917 -0.4365675 0.5509339 0.5245917 -0.4474232 0.5509339 0.5245917 -0.45727 0.5509339 0.5245917 -0.4662797 0.5509339 0.5245917 -0.4745834 0.5509339 0.5245917 -0.4822838 0.5509339 0.5245917 -0.4894626 0.5509339 0.5245917 -0.4961862 0.5509339 0.5245917 -0.5025087 0.5509339 0.5245917 -0.5084753 0.5509339 0.5245917 -0.514124 0.5509339 0.5245917 -0.519487 0.5509339 0.5245917 -0.5245917 0.5509339 0.5245917 -0.529462 0.5509339 0.5245917 -0.5341183 0.5509339 0.5245917 -0.5385787 0.5509339 0.5245917 -0.5428591 0.5509339 0.5245917 -0.5469733 0.5509339 0.5245917 -0.5509339 0.5509339 0.5245917 -0.5547519 0.5509339 0.5245917 -0.5584371 0.5509339 0.5245917 -0.5619986 0.5509339 0.5245917 -0.5654443 0.5509339 0.5245917 -0.5687816 0.5509339 0.5245917 -0.092819 0.5547519 0.5245917 -0.2262531 0.5547519 0.5245917 -0.2875993 0.5547519 0.5245917 -0.3262122 0.5547519 0.5245917 -0.3544566 0.5547519 0.5245917 -0.3767383 0.5547519 0.5245917 -0.3951413 0.5547519 0.5245917 -0.4108177 0.5547519 0.5245917 -0.4244723 0.5547519 0.5245917 -0.4365675 0.5547519 0.5245917 -0.4474232 0.5547519 0.5245917 -0.45727 0.5547519 0.5245917 -0.4662797 0.5547519 0.5245917 -0.4745834 0.5547519 0.5245917 -0.4822838 0.5547519 0.5245917 -0.4894626 0.5547519 0.5245917 -0.4961862 0.5547519 0.5245917 -0.5025087 0.5547519 0.5245917 -0.5084753 0.5547519 0.5245917 -0.514124 0.5547519 0.5245917 -0.519487 0.5547519 0.5245917 -0.5245917 0.5547519 0.5245917 -0.529462 0.5547519 0.5245917 -0.5341183 0.5547519 0.5245917 -0.5385787 0.5547519 0.5245917 -0.5428591 0.5547519 0.5245917 -0.5469733 0.5547519 0.5245917 -0.5509339 0.5547519 0.5245917 -0.5547519 0.5547519 0.5245917 -0.5584371 0.5547519 0.5245917 -0.5619986 0.5547519 0.5245917 -0.5654443 0.5547519 0.5245917 -0.5687816 0.5547519 0.5245917 -0.092819 0.5584371 0.5245917 -0.2262531 0.5584371 0.5245917 -0.2875993 0.5584371 0.5245917 -0.3262122 0.5584371 0.5245917 -0.3544566 0.5584371 0.5245917 -0.3767383 0.5584371 0.5245917 -0.3951413 0.5584371 0.5245917 -0.4108177 0.5584371 0.5245917 -0.4244723 0.5584371 0.5245917 -0.4365675 0.5584371 0.5245917 -0.4474232 0.5584371 0.5245917 -0.45727 0.5584371 0.5245917 -0.4662797 0.5584371 0.5245917 -0.4745834 0.5584371 0.5245917 -0.4822838 0.5584371 0.5245917 -0.4894626 0.5584371 0.5245917 -0.4961862 0.5584371 0.5245917 -0.5025087 0.5584371 0.5245917 -0.5084753 0.5584371 0.5245917 -0.514124 0.5584371 0.5245917 -0.519487 0.5584371 0.5245917 -0.5245917 0.5584371 0.5245917 -0.529462 0.5584371 0.5245917 -0.5341183 0.5584371 0.5245917 -0.5385787 0.5584371 0.5245917 -0.5428591 0.5584371 0.5245917 -0.5469733 0.5584371 0.5245917 -0.5509339 0.5584371 0.5245917 -0.5547519 0.5584371 0.5245917 -0.5584371 0.5584371 0.5245917 -0.5619986 0.5584371 0.5245917 -0.5654443 0.5584371 0.5245917 -0.5687816 0.5584371 0.5245917 -0.092819 0.5619986 0.5245917 -0.2262531 0.5619986 0.5245917 -0.2875993 0.5619986 0.5245917 -0.3262122 0.5619986 0.5245917 -0.3544566 0.5619986 0.5245917 -0.3767383 0.5619986 0.5245917 -0.3951413 0.5619986 0.5245917 -0.4108177 0.5619986 0.5245917 -0.4244723 0.5619986 0.5245917 -0.4365675 0.5619986 0.5245917 -0.4474232 0.5619986 0.5245917 -0.45727 0.5619986 0.5245917 -0.4662797 0.5619986 0.5245917 -0.4745834 0.5619986 0.5245917 -0.4822838 0.5619986 0.5245917 -0.4894626 0.5619986 0.5245917 -0.4961862 0.5619986 0.5245917 -0.5025087 0.5619986 0.5245917 -0.5084753 0.5619986 0.5245917 -0.514124 0.5619986 0.5245917 -0.519487 0.5619986 0.5245917 -0.5245917 0.5619986 0.5245917 -0.529462 0.5619986 0.5245917 -0.5341183 0.5619986 0.5245917 -0.5385787 0.5619986 0.5245917 -0.5428591 0.5619986 0.5245917 -0.5469733 0.5619986 0.5245917 -0.5509339 0.5619986 0.5245917 -0.5547519 0.5619986 0.5245917 -0.5584371 0.5619986 0.5245917 -0.5619986 0.5619986 0.5245917 -0.5654443 0.5619986 0.5245917 -0.5687816 0.5619986 0.5245917 -0.092819 0.5654443 0.5245917 -0.2262531 0.5654443 0.5245917 -0.2875993 0.5654443 0.5245917 -0.3262122 0.5654443 0.5245917 -0.3544566 0.5654443 0.5245917 -0.3767383 0.5654443 0.5245917 -0.3951413 0.5654443 0.5245917 -0.4108177 0.5654443 0.5245917 -0.4244723 0.5654443 0.5245917 -0.4365675 0.5654443 0.5245917 -0.4474232 0.5654443 0.5245917 -0.45727 0.5654443 0.5245917 -0.4662797 0.5654443 0.5245917 -0.4745834 0.5654443 0.5245917 -0.4822838 0.5654443 0.5245917 -0.4894626 0.5654443 0.5245917 -0.4961862 0.5654443 0.5245917 -0.5025087 0.5654443 0.5245917 -0.5084753 0.5654443 0.5245917 -0.514124 0.5654443 0.5245917 -0.519487 0.5654443 0.5245917 -0.5245917 0.5654443 0.5245917 -0.529462 0.5654443 0.5245917 -0.5341183 0.5654443 0.5245917 -0.5385787 0.5654443 0.5245917 -0.5428591 0.5654443 0.5245917 -0.5469733 0.5654443 0.5245917 -0.5509339 0.5654443 0.5245917 -0.5547519 0.5654443 0.5245917 -0.5584371 0.5654443 0.5245917 -0.5619986 0.5654443 0.5245917 -0.5654443 0.5654443 0.5245917 -0.5687816 0.5654443 0.5245917 -0.092819 0.5687816 0.5245917 -0.2262531 0.5687816 0.5245917 -0.2875993 0.5687816 0.5245917 -0.3262122 0.5687816 0.5245917 -0.3544566 0.5687816 0.5245917 -0.3767383 0.5687816 0.5245917 -0.3951413 0.5687816 0.5245917 -0.4108177 0.5687816 0.5245917 -0.4244723 0.5687816 0.5245917 -0.4365675 0.5687816 0.5245917 -0.4474232 0.5687816 0.5245917 -0.45727 0.5687816 0.5245917 -0.4662797 0.5687816 0.5245917 -0.4745834 0.5687816 0.5245917 -0.4822838 0.5687816 0.5245917 -0.4894626 0.5687816 0.5245917 -0.4961862 0.5687816 0.5245917 -0.5025087 0.5687816 0.5245917 -0.5084753 0.5687816 0.5245917 -0.514124 0.5687816 0.5245917 -0.519487 0.5687816 0.5245917 -0.5245917 0.5687816 0.5245917 -0.529462 0.5687816 0.5245917 -0.5341183 0.5687816 0.5245917 -0.5385787 0.5687816 0.5245917 -0.5428591 0.5687816 0.5245917 -0.5469733 0.5687816 0.5245917 -0.5509339 0.5687816 0.5245917 -0.5547519 0.5687816 0.5245917 -0.5584371 0.5687816 0.5245917 -0.5619986 0.5687816 0.5245917 -0.5654443 0.5687816 0.5245917 -0.5687816 0.5687816 0.5245917 -0.092819 0.092819 0.529462 -0.2262531 0.092819 0.529462 -0.2875993 0.092819 0.529462 -0.3262122 0.092819 0.529462 -0.3544566 0.092819 0.529462 -0.3767383 0.092819 0.529462 -0.3951413 0.092819 0.529462 -0.4108177 0.092819 0.529462 -0.4244723 0.092819 0.529462 -0.4365675 0.092819 0.529462 -0.4474232 0.092819 0.529462 -0.45727 0.092819 0.529462 -0.4662797 0.092819 0.529462 -0.4745834 0.092819 0.529462 -0.4822838 0.092819 0.529462 -0.4894626 0.092819 0.529462 -0.4961862 0.092819 0.529462 -0.5025087 0.092819 0.529462 -0.5084753 0.092819 0.529462 -0.514124 0.092819 0.529462 -0.519487 0.092819 0.529462 -0.5245917 0.092819 0.529462 -0.529462 0.092819 0.529462 -0.5341183 0.092819 0.529462 -0.5385787 0.092819 0.529462 -0.5428591 0.092819 0.529462 -0.5469733 0.092819 0.529462 -0.5509339 0.092819 0.529462 -0.5547519 0.092819 0.529462 -0.5584371 0.092819 0.529462 -0.5619986 0.092819 0.529462 -0.5654443 0.092819 0.529462 -0.5687816 0.092819 0.529462 -0.092819 0.2262531 0.529462 -0.2262531 0.2262531 0.529462 -0.2875993 0.2262531 0.529462 -0.3262122 0.2262531 0.529462 -0.3544566 0.2262531 0.529462 -0.3767383 0.2262531 0.529462 -0.3951413 0.2262531 0.529462 -0.4108177 0.2262531 0.529462 -0.4244723 0.2262531 0.529462 -0.4365675 0.2262531 0.529462 -0.4474232 0.2262531 0.529462 -0.45727 0.2262531 0.529462 -0.4662797 0.2262531 0.529462 -0.4745834 0.2262531 0.529462 -0.4822838 0.2262531 0.529462 -0.4894626 0.2262531 0.529462 -0.4961862 0.2262531 0.529462 -0.5025087 0.2262531 0.529462 -0.5084753 0.2262531 0.529462 -0.514124 0.2262531 0.529462 -0.519487 0.2262531 0.529462 -0.5245917 0.2262531 0.529462 -0.529462 0.2262531 0.529462 -0.5341183 0.2262531 0.529462 -0.5385787 0.2262531 0.529462 -0.5428591 0.2262531 0.529462 -0.5469733 0.2262531 0.529462 -0.5509339 0.2262531 0.529462 -0.5547519 0.2262531 0.529462 -0.5584371 0.2262531 0.529462 -0.5619986 0.2262531 0.529462 -0.5654443 0.2262531 0.529462 -0.5687816 0.2262531 0.529462 -0.092819 0.2875993 0.529462 -0.2262531 0.2875993 0.529462 -0.2875993 0.2875993 0.529462 -0.3262122 0.2875993 0.529462 -0.3544566 0.2875993 0.529462 -0.3767383 0.2875993 0.529462 -0.3951413 0.2875993 0.529462 -0.4108177 0.2875993 0.529462 -0.4244723 0.2875993 0.529462 -0.4365675 0.2875993 0.529462 -0.4474232 0.2875993 0.529462 -0.45727 0.2875993 0.529462 -0.4662797 0.2875993 0.529462 -0.4745834 0.2875993 0.529462 -0.4822838 0.2875993 0.529462 -0.4894626 0.2875993 0.529462 -0.4961862 0.2875993 0.529462 -0.5025087 0.2875993 0.529462 -0.5084753 0.2875993 0.529462 -0.514124 0.2875993 0.529462 -0.519487 0.2875993 0.529462 -0.5245917 0.2875993 0.529462 -0.529462 0.2875993 0.529462 -0.5341183 0.2875993 0.529462 -0.5385787 0.2875993 0.529462 -0.5428591 0.2875993 0.529462 -0.5469733 0.2875993 0.529462 -0.5509339 0.2875993 0.529462 -0.5547519 0.2875993 0.529462 -0.5584371 0.2875993 0.529462 -0.5619986 0.2875993 0.529462 -0.5654443 0.2875993 0.529462 -0.5687816 0.2875993 0.529462 -0.092819 0.3262122 0.529462 -0.2262531 0.3262122 0.529462 -0.2875993 0.3262122 0.529462 -0.3262122 0.3262122 0.529462 -0.3544566 0.3262122 0.529462 -0.3767383 0.3262122 0.529462 -0.3951413 0.3262122 0.529462 -0.4108177 0.3262122 0.529462 -0.4244723 0.3262122 0.529462 -0.4365675 0.3262122 0.529462 -0.4474232 0.3262122 0.529462 -0.45727 0.3262122 0.529462 -0.4662797 0.3262122 0.529462 -0.4745834 0.3262122 0.529462 -0.4822838 0.3262122 0.529462 -0.4894626 0.3262122 0.529462 -0.4961862 0.3262122 0.529462 -0.5025087 0.3262122 0.529462 -0.5084753 0.3262122 0.529462 -0.514124 0.3262122 0.529462 -0.519487 0.3262122 0.529462 -0.5245917 0.3262122 0.529462 -0.529462 0.3262122 0.529462 -0.5341183 0.3262122 0.529462 -0.5385787 0.3262122 0.529462 -0.5428591 0.3262122 0.529462 -0.5469733 0.3262122 0.529462 -0.5509339 0.3262122 0.529462 -0.5547519 0.3262122 0.529462 -0.5584371 0.3262122 0.529462 -0.5619986 0.3262122 0.529462 -0.5654443 0.3262122 0.529462 -0.5687816 0.3262122 0.529462 -0.092819 0.3544566 0.529462 -0.2262531 0.3544566 0.529462 -0.2875993 0.3544566 0.529462 -0.3262122 0.3544566 0.529462 -0.3544566 0.3544566 0.529462 -0.3767383 0.3544566 0.529462 -0.3951413 0.3544566 0.529462 -0.4108177 0.3544566 0.529462 -0.4244723 0.3544566 0.529462 -0.4365675 0.3544566 0.529462 -0.4474232 0.3544566 0.529462 -0.45727 0.3544566 0.529462 -0.4662797 0.3544566 0.529462 -0.4745834 0.3544566 0.529462 -0.4822838 0.3544566 0.529462 -0.4894626 0.3544566 0.529462 -0.4961862 0.3544566 0.529462 -0.5025087 0.3544566 0.529462 -0.5084753 0.3544566 0.529462 -0.514124 0.3544566 0.529462 -0.519487 0.3544566 0.529462 -0.5245917 0.3544566 0.529462 -0.529462 0.3544566 0.529462 -0.5341183 0.3544566 0.529462 -0.5385787 0.3544566 0.529462 -0.5428591 0.3544566 0.529462 -0.5469733 0.3544566 0.529462 -0.5509339 0.3544566 0.529462 -0.5547519 0.3544566 0.529462 -0.5584371 0.3544566 0.529462 -0.5619986 0.3544566 0.529462 -0.5654443 0.3544566 0.529462 -0.5687816 0.3544566 0.529462 -0.092819 0.3767383 0.529462 -0.2262531 0.3767383 0.529462 -0.2875993 0.3767383 0.529462 -0.3262122 0.3767383 0.529462 -0.3544566 0.3767383 0.529462 -0.3767383 0.3767383 0.529462 -0.3951413 0.3767383 0.529462 -0.4108177 0.3767383 0.529462 -0.4244723 0.3767383 0.529462 -0.4365675 0.3767383 0.529462 -0.4474232 0.3767383 0.529462 -0.45727 0.3767383 0.529462 -0.4662797 0.3767383 0.529462 -0.4745834 0.3767383 0.529462 -0.4822838 0.3767383 0.529462 -0.4894626 0.3767383 0.529462 -0.4961862 0.3767383 0.529462 -0.5025087 0.3767383 0.529462 -0.5084753 0.3767383 0.529462 -0.514124 0.3767383 0.529462 -0.519487 0.3767383 0.529462 -0.5245917 0.3767383 0.529462 -0.529462 0.3767383 0.529462 -0.5341183 0.3767383 0.529462 -0.5385787 0.3767383 0.529462 -0.5428591 0.3767383 0.529462 -0.5469733 0.3767383 0.529462 -0.5509339 0.3767383 0.529462 -0.5547519 0.3767383 0.529462 -0.5584371 0.3767383 0.529462 -0.5619986 0.3767383 0.529462 -0.5654443 0.3767383 0.529462 -0.5687816 0.3767383 0.529462 -0.092819 0.3951413 0.529462 -0.2262531 0.3951413 0.529462 -0.2875993 0.3951413 0.529462 -0.3262122 0.3951413 0.529462 -0.3544566 0.3951413 0.529462 -0.3767383 0.3951413 0.529462 -0.3951413 0.3951413 0.529462 -0.4108177 0.3951413 0.529462 -0.4244723 0.3951413 0.529462 -0.4365675 0.3951413 0.529462 -0.4474232 0.3951413 0.529462 -0.45727 0.3951413 0.529462 -0.4662797 0.3951413 0.529462 -0.4745834 0.3951413 0.529462 -0.4822838 0.3951413 0.529462 -0.4894626 0.3951413 0.529462 -0.4961862 0.3951413 0.529462 -0.5025087 0.3951413 0.529462 -0.5084753 0.3951413 0.529462 -0.514124 0.3951413 0.529462 -0.519487 0.3951413 0.529462 -0.5245917 0.3951413 0.529462 -0.529462 0.3951413 0.529462 -0.5341183 0.3951413 0.529462 -0.5385787 0.3951413 0.529462 -0.5428591 0.3951413 0.529462 -0.5469733 0.3951413 0.529462 -0.5509339 0.3951413 0.529462 -0.5547519 0.3951413 0.529462 -0.5584371 0.3951413 0.529462 -0.5619986 0.3951413 0.529462 -0.5654443 0.3951413 0.529462 -0.5687816 0.3951413 0.529462 -0.092819 0.4108177 0.529462 -0.2262531 0.4108177 0.529462 -0.2875993 0.4108177 0.529462 -0.3262122 0.4108177 0.529462 -0.3544566 0.4108177 0.529462 -0.3767383 0.4108177 0.529462 -0.3951413 0.4108177 0.529462 -0.4108177 0.4108177 0.529462 -0.4244723 0.4108177 0.529462 -0.4365675 0.4108177 0.529462 -0.4474232 0.4108177 0.529462 -0.45727 0.4108177 0.529462 -0.4662797 0.4108177 0.529462 -0.4745834 0.4108177 0.529462 -0.4822838 0.4108177 0.529462 -0.4894626 0.4108177 0.529462 -0.4961862 0.4108177 0.529462 -0.5025087 0.4108177 0.529462 -0.5084753 0.4108177 0.529462 -0.514124 0.4108177 0.529462 -0.519487 0.4108177 0.529462 -0.5245917 0.4108177 0.529462 -0.529462 0.4108177 0.529462 -0.5341183 0.4108177 0.529462 -0.5385787 0.4108177 0.529462 -0.5428591 0.4108177 0.529462 -0.5469733 0.4108177 0.529462 -0.5509339 0.4108177 0.529462 -0.5547519 0.4108177 0.529462 -0.5584371 0.4108177 0.529462 -0.5619986 0.4108177 0.529462 -0.5654443 0.4108177 0.529462 -0.5687816 0.4108177 0.529462 -0.092819 0.4244723 0.529462 -0.2262531 0.4244723 0.529462 -0.2875993 0.4244723 0.529462 -0.3262122 0.4244723 0.529462 -0.3544566 0.4244723 0.529462 -0.3767383 0.4244723 0.529462 -0.3951413 0.4244723 0.529462 -0.4108177 0.4244723 0.529462 -0.4244723 0.4244723 0.529462 -0.4365675 0.4244723 0.529462 -0.4474232 0.4244723 0.529462 -0.45727 0.4244723 0.529462 -0.4662797 0.4244723 0.529462 -0.4745834 0.4244723 0.529462 -0.4822838 0.4244723 0.529462 -0.4894626 0.4244723 0.529462 -0.4961862 0.4244723 0.529462 -0.5025087 0.4244723 0.529462 -0.5084753 0.4244723 0.529462 -0.514124 0.4244723 0.529462 -0.519487 0.4244723 0.529462 -0.5245917 0.4244723 0.529462 -0.529462 0.4244723 0.529462 -0.5341183 0.4244723 0.529462 -0.5385787 0.4244723 0.529462 -0.5428591 0.4244723 0.529462 -0.5469733 0.4244723 0.529462 -0.5509339 0.4244723 0.529462 -0.5547519 0.4244723 0.529462 -0.5584371 0.4244723 0.529462 -0.5619986 0.4244723 0.529462 -0.5654443 0.4244723 0.529462 -0.5687816 0.4244723 0.529462 -0.092819 0.4365675 0.529462 -0.2262531 0.4365675 0.529462 -0.2875993 0.4365675 0.529462 -0.3262122 0.4365675 0.529462 -0.3544566 0.4365675 0.529462 -0.3767383 0.4365675 0.529462 -0.3951413 0.4365675 0.529462 -0.4108177 0.4365675 0.529462 -0.4244723 0.4365675 0.529462 -0.4365675 0.4365675 0.529462 -0.4474232 0.4365675 0.529462 -0.45727 0.4365675 0.529462 -0.4662797 0.4365675 0.529462 -0.4745834 0.4365675 0.529462 -0.4822838 0.4365675 0.529462 -0.4894626 0.4365675 0.529462 -0.4961862 0.4365675 0.529462 -0.5025087 0.4365675 0.529462 -0.5084753 0.4365675 0.529462 -0.514124 0.4365675 0.529462 -0.519487 0.4365675 0.529462 -0.5245917 0.4365675 0.529462 -0.529462 0.4365675 0.529462 -0.5341183 0.4365675 0.529462 -0.5385787 0.4365675 0.529462 -0.5428591 0.4365675 0.529462 -0.5469733 0.4365675 0.529462 -0.5509339 0.4365675 0.529462 -0.5547519 0.4365675 0.529462 -0.5584371 0.4365675 0.529462 -0.5619986 0.4365675 0.529462 -0.5654443 0.4365675 0.529462 -0.5687816 0.4365675 0.529462 -0.092819 0.4474232 0.529462 -0.2262531 0.4474232 0.529462 -0.2875993 0.4474232 0.529462 -0.3262122 0.4474232 0.529462 -0.3544566 0.4474232 0.529462 -0.3767383 0.4474232 0.529462 -0.3951413 0.4474232 0.529462 -0.4108177 0.4474232 0.529462 -0.4244723 0.4474232 0.529462 -0.4365675 0.4474232 0.529462 -0.4474232 0.4474232 0.529462 -0.45727 0.4474232 0.529462 -0.4662797 0.4474232 0.529462 -0.4745834 0.4474232 0.529462 -0.4822838 0.4474232 0.529462 -0.4894626 0.4474232 0.529462 -0.4961862 0.4474232 0.529462 -0.5025087 0.4474232 0.529462 -0.5084753 0.4474232 0.529462 -0.514124 0.4474232 0.529462 -0.519487 0.4474232 0.529462 -0.5245917 0.4474232 0.529462 -0.529462 0.4474232 0.529462 -0.5341183 0.4474232 0.529462 -0.5385787 0.4474232 0.529462 -0.5428591 0.4474232 0.529462 -0.5469733 0.4474232 0.529462 -0.5509339 0.4474232 0.529462 -0.5547519 0.4474232 0.529462 -0.5584371 0.4474232 0.529462 -0.5619986 0.4474232 0.529462 -0.5654443 0.4474232 0.529462 -0.5687816 0.4474232 0.529462 -0.092819 0.45727 0.529462 -0.2262531 0.45727 0.529462 -0.2875993 0.45727 0.529462 -0.3262122 0.45727 0.529462 -0.3544566 0.45727 0.529462 -0.3767383 0.45727 0.529462 -0.3951413 0.45727 0.529462 -0.4108177 0.45727 0.529462 -0.4244723 0.45727 0.529462 -0.4365675 0.45727 0.529462 -0.4474232 0.45727 0.529462 -0.45727 0.45727 0.529462 -0.4662797 0.45727 0.529462 -0.4745834 0.45727 0.529462 -0.4822838 0.45727 0.529462 -0.4894626 0.45727 0.529462 -0.4961862 0.45727 0.529462 -0.5025087 0.45727 0.529462 -0.5084753 0.45727 0.529462 -0.514124 0.45727 0.529462 -0.519487 0.45727 0.529462 -0.5245917 0.45727 0.529462 -0.529462 0.45727 0.529462 -0.5341183 0.45727 0.529462 -0.5385787 0.45727 0.529462 -0.5428591 0.45727 0.529462 -0.5469733 0.45727 0.529462 -0.5509339 0.45727 0.529462 -0.5547519 0.45727 0.529462 -0.5584371 0.45727 0.529462 -0.5619986 0.45727 0.529462 -0.5654443 0.45727 0.529462 -0.5687816 0.45727 0.529462 -0.092819 0.4662797 0.529462 -0.2262531 0.4662797 0.529462 -0.2875993 0.4662797 0.529462 -0.3262122 0.4662797 0.529462 -0.3544566 0.4662797 0.529462 -0.3767383 0.4662797 0.529462 -0.3951413 0.4662797 0.529462 -0.4108177 0.4662797 0.529462 -0.4244723 0.4662797 0.529462 -0.4365675 0.4662797 0.529462 -0.4474232 0.4662797 0.529462 -0.45727 0.4662797 0.529462 -0.4662797 0.4662797 0.529462 -0.4745834 0.4662797 0.529462 -0.4822838 0.4662797 0.529462 -0.4894626 0.4662797 0.529462 -0.4961862 0.4662797 0.529462 -0.5025087 0.4662797 0.529462 -0.5084753 0.4662797 0.529462 -0.514124 0.4662797 0.529462 -0.519487 0.4662797 0.529462 -0.5245917 0.4662797 0.529462 -0.529462 0.4662797 0.529462 -0.5341183 0.4662797 0.529462 -0.5385787 0.4662797 0.529462 -0.5428591 0.4662797 0.529462 -0.5469733 0.4662797 0.529462 -0.5509339 0.4662797 0.529462 -0.5547519 0.4662797 0.529462 -0.5584371 0.4662797 0.529462 -0.5619986 0.4662797 0.529462 -0.5654443 0.4662797 0.529462 -0.5687816 0.4662797 0.529462 -0.092819 0.4745834 0.529462 -0.2262531 0.4745834 0.529462 -0.2875993 0.4745834 0.529462 -0.3262122 0.4745834 0.529462 -0.3544566 0.4745834 0.529462 -0.3767383 0.4745834 0.529462 -0.3951413 0.4745834 0.529462 -0.4108177 0.4745834 0.529462 -0.4244723 0.4745834 0.529462 -0.4365675 0.4745834 0.529462 -0.4474232 0.4745834 0.529462 -0.45727 0.4745834 0.529462 -0.4662797 0.4745834 0.529462 -0.4745834 0.4745834 0.529462 -0.4822838 0.4745834 0.529462 -0.4894626 0.4745834 0.529462 -0.4961862 0.4745834 0.529462 -0.5025087 0.4745834 0.529462 -0.5084753 0.4745834 0.529462 -0.514124 0.4745834 0.529462 -0.519487 0.4745834 0.529462 -0.5245917 0.4745834 0.529462 -0.529462 0.4745834 0.529462 -0.5341183 0.4745834 0.529462 -0.5385787 0.4745834 0.529462 -0.5428591 0.4745834 0.529462 -0.5469733 0.4745834 0.529462 -0.5509339 0.4745834 0.529462 -0.5547519 0.4745834 0.529462 -0.5584371 0.4745834 0.529462 -0.5619986 0.4745834 0.529462 -0.5654443 0.4745834 0.529462 -0.5687816 0.4745834 0.529462 -0.092819 0.4822838 0.529462 -0.2262531 0.4822838 0.529462 -0.2875993 0.4822838 0.529462 -0.3262122 0.4822838 0.529462 -0.3544566 0.4822838 0.529462 -0.3767383 0.4822838 0.529462 -0.3951413 0.4822838 0.529462 -0.4108177 0.4822838 0.529462 -0.4244723 0.4822838 0.529462 -0.4365675 0.4822838 0.529462 -0.4474232 0.4822838 0.529462 -0.45727 0.4822838 0.529462 -0.4662797 0.4822838 0.529462 -0.4745834 0.4822838 0.529462 -0.4822838 0.4822838 0.529462 -0.4894626 0.4822838 0.529462 -0.4961862 0.4822838 0.529462 -0.5025087 0.4822838 0.529462 -0.5084753 0.4822838 0.529462 -0.514124 0.4822838 0.529462 -0.519487 0.4822838 0.529462 -0.5245917 0.4822838 0.529462 -0.529462 0.4822838 0.529462 -0.5341183 0.4822838 0.529462 -0.5385787 0.4822838 0.529462 -0.5428591 0.4822838 0.529462 -0.5469733 0.4822838 0.529462 -0.5509339 0.4822838 0.529462 -0.5547519 0.4822838 0.529462 -0.5584371 0.4822838 0.529462 -0.5619986 0.4822838 0.529462 -0.5654443 0.4822838 0.529462 -0.5687816 0.4822838 0.529462 -0.092819 0.4894626 0.529462 -0.2262531 0.4894626 0.529462 -0.2875993 0.4894626 0.529462 -0.3262122 0.4894626 0.529462 -0.3544566 0.4894626 0.529462 -0.3767383 0.4894626 0.529462 -0.3951413 0.4894626 0.529462 -0.4108177 0.4894626 0.529462 -0.4244723 0.4894626 0.529462 -0.4365675 0.4894626 0.529462 -0.4474232 0.4894626 0.529462 -0.45727 0.4894626 0.529462 -0.4662797 0.4894626 0.529462 -0.4745834 0.4894626 0.529462 -0.4822838 0.4894626 0.529462 -0.4894626 0.4894626 0.529462 -0.4961862 0.4894626 0.529462 -0.5025087 0.4894626 0.529462 -0.5084753 0.4894626 0.529462 -0.514124 0.4894626 0.529462 -0.519487 0.4894626 0.529462 -0.5245917 0.4894626 0.529462 -0.529462 0.4894626 0.529462 -0.5341183 0.4894626 0.529462 -0.5385787 0.4894626 0.529462 -0.5428591 0.4894626 0.529462 -0.5469733 0.4894626 0.529462 -0.5509339 0.4894626 0.529462 -0.5547519 0.4894626 0.529462 -0.5584371 0.4894626 0.529462 -0.5619986 0.4894626 0.529462 -0.5654443 0.4894626 0.529462 -0.5687816 0.4894626 0.529462 -0.092819 0.4961862 0.529462 -0.2262531 0.4961862 0.529462 -0.2875993 0.4961862 0.529462 -0.3262122 0.4961862 0.529462 -0.3544566 0.4961862 0.529462 -0.3767383 0.4961862 0.529462 -0.3951413 0.4961862 0.529462 -0.4108177 0.4961862 0.529462 -0.4244723 0.4961862 0.529462 -0.4365675 0.4961862 0.529462 -0.4474232 0.4961862 0.529462 -0.45727 0.4961862 0.529462 -0.4662797 0.4961862 0.529462 -0.4745834 0.4961862 0.529462 -0.4822838 0.4961862 0.529462 -0.4894626 0.4961862 0.529462 -0.4961862 0.4961862 0.529462 -0.5025087 0.4961862 0.529462 -0.5084753 0.4961862 0.529462 -0.514124 0.4961862 0.529462 -0.519487 0.4961862 0.529462 -0.5245917 0.4961862 0.529462 -0.529462 0.4961862 0.529462 -0.5341183 0.4961862 0.529462 -0.5385787 0.4961862 0.529462 -0.5428591 0.4961862 0.529462 -0.5469733 0.4961862 0.529462 -0.5509339 0.4961862 0.529462 -0.5547519 0.4961862 0.529462 -0.5584371 0.4961862 0.529462 -0.5619986 0.4961862 0.529462 -0.5654443 0.4961862 0.529462 -0.5687816 0.4961862 0.529462 -0.092819 0.5025087 0.529462 -0.2262531 0.5025087 0.529462 -0.2875993 0.5025087 0.529462 -0.3262122 0.5025087 0.529462 -0.3544566 0.5025087 0.529462 -0.3767383 0.5025087 0.529462 -0.3951413 0.5025087 0.529462 -0.4108177 0.5025087 0.529462 -0.4244723 0.5025087 0.529462 -0.4365675 0.5025087 0.529462 -0.4474232 0.5025087 0.529462 -0.45727 0.5025087 0.529462 -0.4662797 0.5025087 0.529462 -0.4745834 0.5025087 0.529462 -0.4822838 0.5025087 0.529462 -0.4894626 0.5025087 0.529462 -0.4961862 0.5025087 0.529462 -0.5025087 0.5025087 0.529462 -0.5084753 0.5025087 0.529462 -0.514124 0.5025087 0.529462 -0.519487 0.5025087 0.529462 -0.5245917 0.5025087 0.529462 -0.529462 0.5025087 0.529462 -0.5341183 0.5025087 0.529462 -0.5385787 0.5025087 0.529462 -0.5428591 0.5025087 0.529462 -0.5469733 0.5025087 0.529462 -0.5509339 0.5025087 0.529462 -0.5547519 0.5025087 0.529462 -0.5584371 0.5025087 0.529462 -0.5619986 0.5025087 0.529462 -0.5654443 0.5025087 0.529462 -0.5687816 0.5025087 0.529462 -0.092819 0.5084753 0.529462 -0.2262531 0.5084753 0.529462 -0.2875993 0.5084753 0.529462 -0.3262122 0.5084753 0.529462 -0.3544566 0.5084753 0.529462 -0.3767383 0.5084753 0.529462 -0.3951413 0.5084753 0.529462 -0.4108177 0.5084753 0.529462 -0.4244723 0.5084753 0.529462 -0.4365675 0.5084753 0.529462 -0.4474232 0.5084753 0.529462 -0.45727 0.5084753 0.529462 -0.4662797 0.5084753 0.529462 -0.4745834 0.5084753 0.529462 -0.4822838 0.5084753 0.529462 -0.4894626 0.5084753 0.529462 -0.4961862 0.5084753 0.529462 -0.5025087 0.5084753 0.529462 -0.5084753 0.5084753 0.529462 -0.514124 0.5084753 0.529462 -0.519487 0.5084753 0.529462 -0.5245917 0.5084753 0.529462 -0.529462 0.5084753 0.529462 -0.5341183 0.5084753 0.529462 -0.5385787 0.5084753 0.529462 -0.5428591 0.5084753 0.529462 -0.5469733 0.5084753 0.529462 -0.5509339 0.5084753 0.529462 -0.5547519 0.5084753 0.529462 -0.5584371 0.5084753 0.529462 -0.5619986 0.5084753 0.529462 -0.5654443 0.5084753 0.529462 -0.5687816 0.5084753 0.529462 -0.092819 0.514124 0.529462 -0.2262531 0.514124 0.529462 -0.2875993 0.514124 0.529462 -0.3262122 0.514124 0.529462 -0.3544566 0.514124 0.529462 -0.3767383 0.514124 0.529462 -0.3951413 0.514124 0.529462 -0.4108177 0.514124 0.529462 -0.4244723 0.514124 0.529462 -0.4365675 0.514124 0.529462 -0.4474232 0.514124 0.529462 -0.45727 0.514124 0.529462 -0.4662797 0.514124 0.529462 -0.4745834 0.514124 0.529462 -0.4822838 0.514124 0.529462 -0.4894626 0.514124 0.529462 -0.4961862 0.514124 0.529462 -0.5025087 0.514124 0.529462 -0.5084753 0.514124 0.529462 -0.514124 0.514124 0.529462 -0.519487 0.514124 0.529462 -0.5245917 0.514124 0.529462 -0.529462 0.514124 0.529462 -0.5341183 0.514124 0.529462 -0.5385787 0.514124 0.529462 -0.5428591 0.514124 0.529462 -0.5469733 0.514124 0.529462 -0.5509339 0.514124 0.529462 -0.5547519 0.514124 0.529462 -0.5584371 0.514124 0.529462 -0.5619986 0.514124 0.529462 -0.5654443 0.514124 0.529462 -0.5687816 0.514124 0.529462 -0.092819 0.519487 0.529462 -0.2262531 0.519487 0.529462 -0.2875993 0.519487 0.529462 -0.3262122 0.519487 0.529462 -0.3544566 0.519487 0.529462 -0.3767383 0.519487 0.529462 -0.3951413 0.519487 0.529462 -0.4108177 0.519487 0.529462 -0.4244723 0.519487 0.529462 -0.4365675 0.519487 0.529462 -0.4474232 0.519487 0.529462 -0.45727 0.519487 0.529462 -0.4662797 0.519487 0.529462 -0.4745834 0.519487 0.529462 -0.4822838 0.519487 0.529462 -0.4894626 0.519487 0.529462 -0.4961862 0.519487 0.529462 -0.5025087 0.519487 0.529462 -0.5084753 0.519487 0.529462 -0.514124 0.519487 0.529462 -0.519487 0.519487 0.529462 -0.5245917 0.519487 0.529462 -0.529462 0.519487 0.529462 -0.5341183 0.519487 0.529462 -0.5385787 0.519487 0.529462 -0.5428591 0.519487 0.529462 -0.5469733 0.519487 0.529462 -0.5509339 0.519487 0.529462 -0.5547519 0.519487 0.529462 -0.5584371 0.519487 0.529462 -0.5619986 0.519487 0.529462 -0.5654443 0.519487 0.529462 -0.5687816 0.519487 0.529462 -0.092819 0.5245917 0.529462 -0.2262531 0.5245917 0.529462 -0.2875993 0.5245917 0.529462 -0.3262122 0.5245917 0.529462 -0.3544566 0.5245917 0.529462 -0.3767383 0.5245917 0.529462 -0.3951413 0.5245917 0.529462 -0.4108177 0.5245917 0.529462 -0.4244723 0.5245917 0.529462 -0.4365675 0.5245917 0.529462 -0.4474232 0.5245917 0.529462 -0.45727 0.5245917 0.529462 -0.4662797 0.5245917 0.529462 -0.4745834 0.5245917 0.529462 -0.4822838 0.5245917 0.529462 -0.4894626 0.5245917 0.529462 -0.4961862 0.5245917 0.529462 -0.5025087 0.5245917 0.529462 -0.5084753 0.5245917 0.529462 -0.514124 0.5245917 0.529462 -0.519487 0.5245917 0.529462 -0.5245917 0.5245917 0.529462 -0.529462 0.5245917 0.529462 -0.5341183 0.5245917 0.529462 -0.5385787 0.5245917 0.529462 -0.5428591 0.5245917 0.529462 -0.5469733 0.5245917 0.529462 -0.5509339 0.5245917 0.529462 -0.5547519 0.5245917 0.529462 -0.5584371 0.5245917 0.529462 -0.5619986 0.5245917 0.529462 -0.5654443 0.5245917 0.529462 -0.5687816 0.5245917 0.529462 -0.092819 0.529462 0.529462 -0.2262531 0.529462 0.529462 -0.2875993 0.529462 0.529462 -0.3262122 0.529462 0.529462 -0.3544566 0.529462 0.529462 -0.3767383 0.529462 0.529462 -0.3951413 0.529462 0.529462 -0.4108177 0.529462 0.529462 -0.4244723 0.529462 0.529462 -0.4365675 0.529462 0.529462 -0.4474232 0.529462 0.529462 -0.45727 0.529462 0.529462 -0.4662797 0.529462 0.529462 -0.4745834 0.529462 0.529462 -0.4822838 0.529462 0.529462 -0.4894626 0.529462 0.529462 -0.4961862 0.529462 0.529462 -0.5025087 0.529462 0.529462 -0.5084753 0.529462 0.529462 -0.514124 0.529462 0.529462 -0.519487 0.529462 0.529462 -0.5245917 0.529462 0.529462 -0.529462 0.529462 0.529462 -0.5341183 0.529462 0.529462 -0.5385787 0.529462 0.529462 -0.5428591 0.529462 0.529462 -0.5469733 0.529462 0.529462 -0.5509339 0.529462 0.529462 -0.5547519 0.529462 0.529462 -0.5584371 0.529462 0.529462 -0.5619986 0.529462 0.529462 -0.5654443 0.529462 0.529462 -0.5687816 0.529462 0.529462 -0.092819 0.5341183 0.529462 -0.2262531 0.5341183 0.529462 -0.2875993 0.5341183 0.529462 -0.3262122 0.5341183 0.529462 -0.3544566 0.5341183 0.529462 -0.3767383 0.5341183 0.529462 -0.3951413 0.5341183 0.529462 -0.4108177 0.5341183 0.529462 -0.4244723 0.5341183 0.529462 -0.4365675 0.5341183 0.529462 -0.4474232 0.5341183 0.529462 -0.45727 0.5341183 0.529462 -0.4662797 0.5341183 0.529462 -0.4745834 0.5341183 0.529462 -0.4822838 0.5341183 0.529462 -0.4894626 0.5341183 0.529462 -0.4961862 0.5341183 0.529462 -0.5025087 0.5341183 0.529462 -0.5084753 0.5341183 0.529462 -0.514124 0.5341183 0.529462 -0.519487 0.5341183 0.529462 -0.5245917 0.5341183 0.529462 -0.529462 0.5341183 0.529462 -0.5341183 0.5341183 0.529462 -0.5385787 0.5341183 0.529462 -0.5428591 0.5341183 0.529462 -0.5469733 0.5341183 0.529462 -0.5509339 0.5341183 0.529462 -0.5547519 0.5341183 0.529462 -0.5584371 0.5341183 0.529462 -0.5619986 0.5341183 0.529462 -0.5654443 0.5341183 0.529462 -0.5687816 0.5341183 0.529462 -0.092819 0.5385787 0.529462 -0.2262531 0.5385787 0.529462 -0.2875993 0.5385787 0.529462 -0.3262122 0.5385787 0.529462 -0.3544566 0.5385787 0.529462 -0.3767383 0.5385787 0.529462 -0.3951413 0.5385787 0.529462 -0.4108177 0.5385787 0.529462 -0.4244723 0.5385787 0.529462 -0.4365675 0.5385787 0.529462 -0.4474232 0.5385787 0.529462 -0.45727 0.5385787 0.529462 -0.4662797 0.5385787 0.529462 -0.4745834 0.5385787 0.529462 -0.4822838 0.5385787 0.529462 -0.4894626 0.5385787 0.529462 -0.4961862 0.5385787 0.529462 -0.5025087 0.5385787 0.529462 -0.5084753 0.5385787 0.529462 -0.514124 0.5385787 0.529462 -0.519487 0.5385787 0.529462 -0.5245917 0.5385787 0.529462 -0.529462 0.5385787 0.529462 -0.5341183 0.5385787 0.529462 -0.5385787 0.5385787 0.529462 -0.5428591 0.5385787 0.529462 -0.5469733 0.5385787 0.529462 -0.5509339 0.5385787 0.529462 -0.5547519 0.5385787 0.529462 -0.5584371 0.5385787 0.529462 -0.5619986 0.5385787 0.529462 -0.5654443 0.5385787 0.529462 -0.5687816 0.5385787 0.529462 -0.092819 0.5428591 0.529462 -0.2262531 0.5428591 0.529462 -0.2875993 0.5428591 0.529462 -0.3262122 0.5428591 0.529462 -0.3544566 0.5428591 0.529462 -0.3767383 0.5428591 0.529462 -0.3951413 0.5428591 0.529462 -0.4108177 0.5428591 0.529462 -0.4244723 0.5428591 0.529462 -0.4365675 0.5428591 0.529462 -0.4474232 0.5428591 0.529462 -0.45727 0.5428591 0.529462 -0.4662797 0.5428591 0.529462 -0.4745834 0.5428591 0.529462 -0.4822838 0.5428591 0.529462 -0.4894626 0.5428591 0.529462 -0.4961862 0.5428591 0.529462 -0.5025087 0.5428591 0.529462 -0.5084753 0.5428591 0.529462 -0.514124 0.5428591 0.529462 -0.519487 0.5428591 0.529462 -0.5245917 0.5428591 0.529462 -0.529462 0.5428591 0.529462 -0.5341183 0.5428591 0.529462 -0.5385787 0.5428591 0.529462 -0.5428591 0.5428591 0.529462 -0.5469733 0.5428591 0.529462 -0.5509339 0.5428591 0.529462 -0.5547519 0.5428591 0.529462 -0.5584371 0.5428591 0.529462 -0.5619986 0.5428591 0.529462 -0.5654443 0.5428591 0.529462 -0.5687816 0.5428591 0.529462 -0.092819 0.5469733 0.529462 -0.2262531 0.5469733 0.529462 -0.2875993 0.5469733 0.529462 -0.3262122 0.5469733 0.529462 -0.3544566 0.5469733 0.529462 -0.3767383 0.5469733 0.529462 -0.3951413 0.5469733 0.529462 -0.4108177 0.5469733 0.529462 -0.4244723 0.5469733 0.529462 -0.4365675 0.5469733 0.529462 -0.4474232 0.5469733 0.529462 -0.45727 0.5469733 0.529462 -0.4662797 0.5469733 0.529462 -0.4745834 0.5469733 0.529462 -0.4822838 0.5469733 0.529462 -0.4894626 0.5469733 0.529462 -0.4961862 0.5469733 0.529462 -0.5025087 0.5469733 0.529462 -0.5084753 0.5469733 0.529462 -0.514124 0.5469733 0.529462 -0.519487 0.5469733 0.529462 -0.5245917 0.5469733 0.529462 -0.529462 0.5469733 0.529462 -0.5341183 0.5469733 0.529462 -0.5385787 0.5469733 0.529462 -0.5428591 0.5469733 0.529462 -0.5469733 0.5469733 0.529462 -0.5509339 0.5469733 0.529462 -0.5547519 0.5469733 0.529462 -0.5584371 0.5469733 0.529462 -0.5619986 0.5469733 0.529462 -0.5654443 0.5469733 0.529462 -0.5687816 0.5469733 0.529462 -0.092819 0.5509339 0.529462 -0.2262531 0.5509339 0.529462 -0.2875993 0.5509339 0.529462 -0.3262122 0.5509339 0.529462 -0.3544566 0.5509339 0.529462 -0.3767383 0.5509339 0.529462 -0.3951413 0.5509339 0.529462 -0.4108177 0.5509339 0.529462 -0.4244723 0.5509339 0.529462 -0.4365675 0.5509339 0.529462 -0.4474232 0.5509339 0.529462 -0.45727 0.5509339 0.529462 -0.4662797 0.5509339 0.529462 -0.4745834 0.5509339 0.529462 -0.4822838 0.5509339 0.529462 -0.4894626 0.5509339 0.529462 -0.4961862 0.5509339 0.529462 -0.5025087 0.5509339 0.529462 -0.5084753 0.5509339 0.529462 -0.514124 0.5509339 0.529462 -0.519487 0.5509339 0.529462 -0.5245917 0.5509339 0.529462 -0.529462 0.5509339 0.529462 -0.5341183 0.5509339 0.529462 -0.5385787 0.5509339 0.529462 -0.5428591 0.5509339 0.529462 -0.5469733 0.5509339 0.529462 -0.5509339 0.5509339 0.529462 -0.5547519 0.5509339 0.529462 -0.5584371 0.5509339 0.529462 -0.5619986 0.5509339 0.529462 -0.5654443 0.5509339 0.529462 -0.5687816 0.5509339 0.529462 -0.092819 0.5547519 0.529462 -0.2262531 0.5547519 0.529462 -0.2875993 0.5547519 0.529462 -0.3262122 0.5547519 0.529462 -0.3544566 0.5547519 0.529462 -0.3767383 0.5547519 0.529462 -0.3951413 0.5547519 0.529462 -0.4108177 0.5547519 0.529462 -0.4244723 0.5547519 0.529462 -0.4365675 0.5547519 0.529462 -0.4474232 0.5547519 0.529462 -0.45727 0.5547519 0.529462 -0.4662797 0.5547519 0.529462 -0.4745834 0.5547519 0.529462 -0.4822838 0.5547519 0.529462 -0.4894626 0.5547519 0.529462 -0.4961862 0.5547519 0.529462 -0.5025087 0.5547519 0.529462 -0.5084753 0.5547519 0.529462 -0.514124 0.5547519 0.529462 -0.519487 0.5547519 0.529462 -0.5245917 0.5547519 0.529462 -0.529462 0.5547519 0.529462 -0.5341183 0.5547519 0.529462 -0.5385787 0.5547519 0.529462 -0.5428591 0.5547519 0.529462 -0.5469733 0.5547519 0.529462 -0.5509339 0.5547519 0.529462 -0.5547519 0.5547519 0.529462 -0.5584371 0.5547519 0.529462 -0.5619986 0.5547519 0.529462 -0.5654443 0.5547519 0.529462 -0.5687816 0.5547519 0.529462 -0.092819 0.5584371 0.529462 -0.2262531 0.5584371 0.529462 -0.2875993 0.5584371 0.529462 -0.3262122 0.5584371 0.529462 -0.3544566 0.5584371 0.529462 -0.3767383 0.5584371 0.529462 -0.3951413 0.5584371 0.529462 -0.4108177 0.5584371 0.529462 -0.4244723 0.5584371 0.529462 -0.4365675 0.5584371 0.529462 -0.4474232 0.5584371 0.529462 -0.45727 0.5584371 0.529462 -0.4662797 0.5584371 0.529462 -0.4745834 0.5584371 0.529462 -0.4822838 0.5584371 0.529462 -0.4894626 0.5584371 0.529462 -0.4961862 0.5584371 0.529462 -0.5025087 0.5584371 0.529462 -0.5084753 0.5584371 0.529462 -0.514124 0.5584371 0.529462 -0.519487 0.5584371 0.529462 -0.5245917 0.5584371 0.529462 -0.529462 0.5584371 0.529462 -0.5341183 0.5584371 0.529462 -0.5385787 0.5584371 0.529462 -0.5428591 0.5584371 0.529462 -0.5469733 0.5584371 0.529462 -0.5509339 0.5584371 0.529462 -0.5547519 0.5584371 0.529462 -0.5584371 0.5584371 0.529462 -0.5619986 0.5584371 0.529462 -0.5654443 0.5584371 0.529462 -0.5687816 0.5584371 0.529462 -0.092819 0.5619986 0.529462 -0.2262531 0.5619986 0.529462 -0.2875993 0.5619986 0.529462 -0.3262122 0.5619986 0.529462 -0.3544566 0.5619986 0.529462 -0.3767383 0.5619986 0.529462 -0.3951413 0.5619986 0.529462 -0.4108177 0.5619986 0.529462 -0.4244723 0.5619986 0.529462 -0.4365675 0.5619986 0.529462 -0.4474232 0.5619986 0.529462 -0.45727 0.5619986 0.529462 -0.4662797 0.5619986 0.529462 -0.4745834 0.5619986 0.529462 -0.4822838 0.5619986 0.529462 -0.4894626 0.5619986 0.529462 -0.4961862 0.5619986 0.529462 -0.5025087 0.5619986 0.529462 -0.5084753 0.5619986 0.529462 -0.514124 0.5619986 0.529462 -0.519487 0.5619986 0.529462 -0.5245917 0.5619986 0.529462 -0.529462 0.5619986 0.529462 -0.5341183 0.5619986 0.529462 -0.5385787 0.5619986 0.529462 -0.5428591 0.5619986 0.529462 -0.5469733 0.5619986 0.529462 -0.5509339 0.5619986 0.529462 -0.5547519 0.5619986 0.529462 -0.5584371 0.5619986 0.529462 -0.5619986 0.5619986 0.529462 -0.5654443 0.5619986 0.529462 -0.5687816 0.5619986 0.529462 -0.092819 0.5654443 0.529462 -0.2262531 0.5654443 0.529462 -0.2875993 0.5654443 0.529462 -0.3262122 0.5654443 0.529462 -0.3544566 0.5654443 0.529462 -0.3767383 0.5654443 0.529462 -0.3951413 0.5654443 0.529462 -0.4108177 0.5654443 0.529462 -0.4244723 0.5654443 0.529462 -0.4365675 0.5654443 0.529462 -0.4474232 0.5654443 0.529462 -0.45727 0.5654443 0.529462 -0.4662797 0.5654443 0.529462 -0.4745834 0.5654443 0.529462 -0.4822838 0.5654443 0.529462 -0.4894626 0.5654443 0.529462 -0.4961862 0.5654443 0.529462 -0.5025087 0.5654443 0.529462 -0.5084753 0.5654443 0.529462 -0.514124 0.5654443 0.529462 -0.519487 0.5654443 0.529462 -0.5245917 0.5654443 0.529462 -0.529462 0.5654443 0.529462 -0.5341183 0.5654443 0.529462 -0.5385787 0.5654443 0.529462 -0.5428591 0.5654443 0.529462 -0.5469733 0.5654443 0.529462 -0.5509339 0.5654443 0.529462 -0.5547519 0.5654443 0.529462 -0.5584371 0.5654443 0.529462 -0.5619986 0.5654443 0.529462 -0.5654443 0.5654443 0.529462 -0.5687816 0.5654443 0.529462 -0.092819 0.5687816 0.529462 -0.2262531 0.5687816 0.529462 -0.2875993 0.5687816 0.529462 -0.3262122 0.5687816 0.529462 -0.3544566 0.5687816 0.529462 -0.3767383 0.5687816 0.529462 -0.3951413 0.5687816 0.529462 -0.4108177 0.5687816 0.529462 -0.4244723 0.5687816 0.529462 -0.4365675 0.5687816 0.529462 -0.4474232 0.5687816 0.529462 -0.45727 0.5687816 0.529462 -0.4662797 0.5687816 0.529462 -0.4745834 0.5687816 0.529462 -0.4822838 0.5687816 0.529462 -0.4894626 0.5687816 0.529462 -0.4961862 0.5687816 0.529462 -0.5025087 0.5687816 0.529462 -0.5084753 0.5687816 0.529462 -0.514124 0.5687816 0.529462 -0.519487 0.5687816 0.529462 -0.5245917 0.5687816 0.529462 -0.529462 0.5687816 0.529462 -0.5341183 0.5687816 0.529462 -0.5385787 0.5687816 0.529462 -0.5428591 0.5687816 0.529462 -0.5469733 0.5687816 0.529462 -0.5509339 0.5687816 0.529462 -0.5547519 0.5687816 0.529462 -0.5584371 0.5687816 0.529462 -0.5619986 0.5687816 0.529462 -0.5654443 0.5687816 0.529462 -0.5687816 0.5687816 0.529462 -0.092819 0.092819 0.5341183 -0.2262531 0.092819 0.5341183 -0.2875993 0.092819 0.5341183 -0.3262122 0.092819 0.5341183 -0.3544566 0.092819 0.5341183 -0.3767383 0.092819 0.5341183 -0.3951413 0.092819 0.5341183 -0.4108177 0.092819 0.5341183 -0.4244723 0.092819 0.5341183 -0.4365675 0.092819 0.5341183 -0.4474232 0.092819 0.5341183 -0.45727 0.092819 0.5341183 -0.4662797 0.092819 0.5341183 -0.4745834 0.092819 0.5341183 -0.4822838 0.092819 0.5341183 -0.4894626 0.092819 0.5341183 -0.4961862 0.092819 0.5341183 -0.5025087 0.092819 0.5341183 -0.5084753 0.092819 0.5341183 -0.514124 0.092819 0.5341183 -0.519487 0.092819 0.5341183 -0.5245917 0.092819 0.5341183 -0.529462 0.092819 0.5341183 -0.5341183 0.092819 0.5341183 -0.5385787 0.092819 0.5341183 -0.5428591 0.092819 0.5341183 -0.5469733 0.092819 0.5341183 -0.5509339 0.092819 0.5341183 -0.5547519 0.092819 0.5341183 -0.5584371 0.092819 0.5341183 -0.5619986 0.092819 0.5341183 -0.5654443 0.092819 0.5341183 -0.5687816 0.092819 0.5341183 -0.092819 0.2262531 0.5341183 -0.2262531 0.2262531 0.5341183 -0.2875993 0.2262531 0.5341183 -0.3262122 0.2262531 0.5341183 -0.3544566 0.2262531 0.5341183 -0.3767383 0.2262531 0.5341183 -0.3951413 0.2262531 0.5341183 -0.4108177 0.2262531 0.5341183 -0.4244723 0.2262531 0.5341183 -0.4365675 0.2262531 0.5341183 -0.4474232 0.2262531 0.5341183 -0.45727 0.2262531 0.5341183 -0.4662797 0.2262531 0.5341183 -0.4745834 0.2262531 0.5341183 -0.4822838 0.2262531 0.5341183 -0.4894626 0.2262531 0.5341183 -0.4961862 0.2262531 0.5341183 -0.5025087 0.2262531 0.5341183 -0.5084753 0.2262531 0.5341183 -0.514124 0.2262531 0.5341183 -0.519487 0.2262531 0.5341183 -0.5245917 0.2262531 0.5341183 -0.529462 0.2262531 0.5341183 -0.5341183 0.2262531 0.5341183 -0.5385787 0.2262531 0.5341183 -0.5428591 0.2262531 0.5341183 -0.5469733 0.2262531 0.5341183 -0.5509339 0.2262531 0.5341183 -0.5547519 0.2262531 0.5341183 -0.5584371 0.2262531 0.5341183 -0.5619986 0.2262531 0.5341183 -0.5654443 0.2262531 0.5341183 -0.5687816 0.2262531 0.5341183 -0.092819 0.2875993 0.5341183 -0.2262531 0.2875993 0.5341183 -0.2875993 0.2875993 0.5341183 -0.3262122 0.2875993 0.5341183 -0.3544566 0.2875993 0.5341183 -0.3767383 0.2875993 0.5341183 -0.3951413 0.2875993 0.5341183 -0.4108177 0.2875993 0.5341183 -0.4244723 0.2875993 0.5341183 -0.4365675 0.2875993 0.5341183 -0.4474232 0.2875993 0.5341183 -0.45727 0.2875993 0.5341183 -0.4662797 0.2875993 0.5341183 -0.4745834 0.2875993 0.5341183 -0.4822838 0.2875993 0.5341183 -0.4894626 0.2875993 0.5341183 -0.4961862 0.2875993 0.5341183 -0.5025087 0.2875993 0.5341183 -0.5084753 0.2875993 0.5341183 -0.514124 0.2875993 0.5341183 -0.519487 0.2875993 0.5341183 -0.5245917 0.2875993 0.5341183 -0.529462 0.2875993 0.5341183 -0.5341183 0.2875993 0.5341183 -0.5385787 0.2875993 0.5341183 -0.5428591 0.2875993 0.5341183 -0.5469733 0.2875993 0.5341183 -0.5509339 0.2875993 0.5341183 -0.5547519 0.2875993 0.5341183 -0.5584371 0.2875993 0.5341183 -0.5619986 0.2875993 0.5341183 -0.5654443 0.2875993 0.5341183 -0.5687816 0.2875993 0.5341183 -0.092819 0.3262122 0.5341183 -0.2262531 0.3262122 0.5341183 -0.2875993 0.3262122 0.5341183 -0.3262122 0.3262122 0.5341183 -0.3544566 0.3262122 0.5341183 -0.3767383 0.3262122 0.5341183 -0.3951413 0.3262122 0.5341183 -0.4108177 0.3262122 0.5341183 -0.4244723 0.3262122 0.5341183 -0.4365675 0.3262122 0.5341183 -0.4474232 0.3262122 0.5341183 -0.45727 0.3262122 0.5341183 -0.4662797 0.3262122 0.5341183 -0.4745834 0.3262122 0.5341183 -0.4822838 0.3262122 0.5341183 -0.4894626 0.3262122 0.5341183 -0.4961862 0.3262122 0.5341183 -0.5025087 0.3262122 0.5341183 -0.5084753 0.3262122 0.5341183 -0.514124 0.3262122 0.5341183 -0.519487 0.3262122 0.5341183 -0.5245917 0.3262122 0.5341183 -0.529462 0.3262122 0.5341183 -0.5341183 0.3262122 0.5341183 -0.5385787 0.3262122 0.5341183 -0.5428591 0.3262122 0.5341183 -0.5469733 0.3262122 0.5341183 -0.5509339 0.3262122 0.5341183 -0.5547519 0.3262122 0.5341183 -0.5584371 0.3262122 0.5341183 -0.5619986 0.3262122 0.5341183 -0.5654443 0.3262122 0.5341183 -0.5687816 0.3262122 0.5341183 -0.092819 0.3544566 0.5341183 -0.2262531 0.3544566 0.5341183 -0.2875993 0.3544566 0.5341183 -0.3262122 0.3544566 0.5341183 -0.3544566 0.3544566 0.5341183 -0.3767383 0.3544566 0.5341183 -0.3951413 0.3544566 0.5341183 -0.4108177 0.3544566 0.5341183 -0.4244723 0.3544566 0.5341183 -0.4365675 0.3544566 0.5341183 -0.4474232 0.3544566 0.5341183 -0.45727 0.3544566 0.5341183 -0.4662797 0.3544566 0.5341183 -0.4745834 0.3544566 0.5341183 -0.4822838 0.3544566 0.5341183 -0.4894626 0.3544566 0.5341183 -0.4961862 0.3544566 0.5341183 -0.5025087 0.3544566 0.5341183 -0.5084753 0.3544566 0.5341183 -0.514124 0.3544566 0.5341183 -0.519487 0.3544566 0.5341183 -0.5245917 0.3544566 0.5341183 -0.529462 0.3544566 0.5341183 -0.5341183 0.3544566 0.5341183 -0.5385787 0.3544566 0.5341183 -0.5428591 0.3544566 0.5341183 -0.5469733 0.3544566 0.5341183 -0.5509339 0.3544566 0.5341183 -0.5547519 0.3544566 0.5341183 -0.5584371 0.3544566 0.5341183 -0.5619986 0.3544566 0.5341183 -0.5654443 0.3544566 0.5341183 -0.5687816 0.3544566 0.5341183 -0.092819 0.3767383 0.5341183 -0.2262531 0.3767383 0.5341183 -0.2875993 0.3767383 0.5341183 -0.3262122 0.3767383 0.5341183 -0.3544566 0.3767383 0.5341183 -0.3767383 0.3767383 0.5341183 -0.3951413 0.3767383 0.5341183 -0.4108177 0.3767383 0.5341183 -0.4244723 0.3767383 0.5341183 -0.4365675 0.3767383 0.5341183 -0.4474232 0.3767383 0.5341183 -0.45727 0.3767383 0.5341183 -0.4662797 0.3767383 0.5341183 -0.4745834 0.3767383 0.5341183 -0.4822838 0.3767383 0.5341183 -0.4894626 0.3767383 0.5341183 -0.4961862 0.3767383 0.5341183 -0.5025087 0.3767383 0.5341183 -0.5084753 0.3767383 0.5341183 -0.514124 0.3767383 0.5341183 -0.519487 0.3767383 0.5341183 -0.5245917 0.3767383 0.5341183 -0.529462 0.3767383 0.5341183 -0.5341183 0.3767383 0.5341183 -0.5385787 0.3767383 0.5341183 -0.5428591 0.3767383 0.5341183 -0.5469733 0.3767383 0.5341183 -0.5509339 0.3767383 0.5341183 -0.5547519 0.3767383 0.5341183 -0.5584371 0.3767383 0.5341183 -0.5619986 0.3767383 0.5341183 -0.5654443 0.3767383 0.5341183 -0.5687816 0.3767383 0.5341183 -0.092819 0.3951413 0.5341183 -0.2262531 0.3951413 0.5341183 -0.2875993 0.3951413 0.5341183 -0.3262122 0.3951413 0.5341183 -0.3544566 0.3951413 0.5341183 -0.3767383 0.3951413 0.5341183 -0.3951413 0.3951413 0.5341183 -0.4108177 0.3951413 0.5341183 -0.4244723 0.3951413 0.5341183 -0.4365675 0.3951413 0.5341183 -0.4474232 0.3951413 0.5341183 -0.45727 0.3951413 0.5341183 -0.4662797 0.3951413 0.5341183 -0.4745834 0.3951413 0.5341183 -0.4822838 0.3951413 0.5341183 -0.4894626 0.3951413 0.5341183 -0.4961862 0.3951413 0.5341183 -0.5025087 0.3951413 0.5341183 -0.5084753 0.3951413 0.5341183 -0.514124 0.3951413 0.5341183 -0.519487 0.3951413 0.5341183 -0.5245917 0.3951413 0.5341183 -0.529462 0.3951413 0.5341183 -0.5341183 0.3951413 0.5341183 -0.5385787 0.3951413 0.5341183 -0.5428591 0.3951413 0.5341183 -0.5469733 0.3951413 0.5341183 -0.5509339 0.3951413 0.5341183 -0.5547519 0.3951413 0.5341183 -0.5584371 0.3951413 0.5341183 -0.5619986 0.3951413 0.5341183 -0.5654443 0.3951413 0.5341183 -0.5687816 0.3951413 0.5341183 -0.092819 0.4108177 0.5341183 -0.2262531 0.4108177 0.5341183 -0.2875993 0.4108177 0.5341183 -0.3262122 0.4108177 0.5341183 -0.3544566 0.4108177 0.5341183 -0.3767383 0.4108177 0.5341183 -0.3951413 0.4108177 0.5341183 -0.4108177 0.4108177 0.5341183 -0.4244723 0.4108177 0.5341183 -0.4365675 0.4108177 0.5341183 -0.4474232 0.4108177 0.5341183 -0.45727 0.4108177 0.5341183 -0.4662797 0.4108177 0.5341183 -0.4745834 0.4108177 0.5341183 -0.4822838 0.4108177 0.5341183 -0.4894626 0.4108177 0.5341183 -0.4961862 0.4108177 0.5341183 -0.5025087 0.4108177 0.5341183 -0.5084753 0.4108177 0.5341183 -0.514124 0.4108177 0.5341183 -0.519487 0.4108177 0.5341183 -0.5245917 0.4108177 0.5341183 -0.529462 0.4108177 0.5341183 -0.5341183 0.4108177 0.5341183 -0.5385787 0.4108177 0.5341183 -0.5428591 0.4108177 0.5341183 -0.5469733 0.4108177 0.5341183 -0.5509339 0.4108177 0.5341183 -0.5547519 0.4108177 0.5341183 -0.5584371 0.4108177 0.5341183 -0.5619986 0.4108177 0.5341183 -0.5654443 0.4108177 0.5341183 -0.5687816 0.4108177 0.5341183 -0.092819 0.4244723 0.5341183 -0.2262531 0.4244723 0.5341183 -0.2875993 0.4244723 0.5341183 -0.3262122 0.4244723 0.5341183 -0.3544566 0.4244723 0.5341183 -0.3767383 0.4244723 0.5341183 -0.3951413 0.4244723 0.5341183 -0.4108177 0.4244723 0.5341183 -0.4244723 0.4244723 0.5341183 -0.4365675 0.4244723 0.5341183 -0.4474232 0.4244723 0.5341183 -0.45727 0.4244723 0.5341183 -0.4662797 0.4244723 0.5341183 -0.4745834 0.4244723 0.5341183 -0.4822838 0.4244723 0.5341183 -0.4894626 0.4244723 0.5341183 -0.4961862 0.4244723 0.5341183 -0.5025087 0.4244723 0.5341183 -0.5084753 0.4244723 0.5341183 -0.514124 0.4244723 0.5341183 -0.519487 0.4244723 0.5341183 -0.5245917 0.4244723 0.5341183 -0.529462 0.4244723 0.5341183 -0.5341183 0.4244723 0.5341183 -0.5385787 0.4244723 0.5341183 -0.5428591 0.4244723 0.5341183 -0.5469733 0.4244723 0.5341183 -0.5509339 0.4244723 0.5341183 -0.5547519 0.4244723 0.5341183 -0.5584371 0.4244723 0.5341183 -0.5619986 0.4244723 0.5341183 -0.5654443 0.4244723 0.5341183 -0.5687816 0.4244723 0.5341183 -0.092819 0.4365675 0.5341183 -0.2262531 0.4365675 0.5341183 -0.2875993 0.4365675 0.5341183 -0.3262122 0.4365675 0.5341183 -0.3544566 0.4365675 0.5341183 -0.3767383 0.4365675 0.5341183 -0.3951413 0.4365675 0.5341183 -0.4108177 0.4365675 0.5341183 -0.4244723 0.4365675 0.5341183 -0.4365675 0.4365675 0.5341183 -0.4474232 0.4365675 0.5341183 -0.45727 0.4365675 0.5341183 -0.4662797 0.4365675 0.5341183 -0.4745834 0.4365675 0.5341183 -0.4822838 0.4365675 0.5341183 -0.4894626 0.4365675 0.5341183 -0.4961862 0.4365675 0.5341183 -0.5025087 0.4365675 0.5341183 -0.5084753 0.4365675 0.5341183 -0.514124 0.4365675 0.5341183 -0.519487 0.4365675 0.5341183 -0.5245917 0.4365675 0.5341183 -0.529462 0.4365675 0.5341183 -0.5341183 0.4365675 0.5341183 -0.5385787 0.4365675 0.5341183 -0.5428591 0.4365675 0.5341183 -0.5469733 0.4365675 0.5341183 -0.5509339 0.4365675 0.5341183 -0.5547519 0.4365675 0.5341183 -0.5584371 0.4365675 0.5341183 -0.5619986 0.4365675 0.5341183 -0.5654443 0.4365675 0.5341183 -0.5687816 0.4365675 0.5341183 -0.092819 0.4474232 0.5341183 -0.2262531 0.4474232 0.5341183 -0.2875993 0.4474232 0.5341183 -0.3262122 0.4474232 0.5341183 -0.3544566 0.4474232 0.5341183 -0.3767383 0.4474232 0.5341183 -0.3951413 0.4474232 0.5341183 -0.4108177 0.4474232 0.5341183 -0.4244723 0.4474232 0.5341183 -0.4365675 0.4474232 0.5341183 -0.4474232 0.4474232 0.5341183 -0.45727 0.4474232 0.5341183 -0.4662797 0.4474232 0.5341183 -0.4745834 0.4474232 0.5341183 -0.4822838 0.4474232 0.5341183 -0.4894626 0.4474232 0.5341183 -0.4961862 0.4474232 0.5341183 -0.5025087 0.4474232 0.5341183 -0.5084753 0.4474232 0.5341183 -0.514124 0.4474232 0.5341183 -0.519487 0.4474232 0.5341183 -0.5245917 0.4474232 0.5341183 -0.529462 0.4474232 0.5341183 -0.5341183 0.4474232 0.5341183 -0.5385787 0.4474232 0.5341183 -0.5428591 0.4474232 0.5341183 -0.5469733 0.4474232 0.5341183 -0.5509339 0.4474232 0.5341183 -0.5547519 0.4474232 0.5341183 -0.5584371 0.4474232 0.5341183 -0.5619986 0.4474232 0.5341183 -0.5654443 0.4474232 0.5341183 -0.5687816 0.4474232 0.5341183 -0.092819 0.45727 0.5341183 -0.2262531 0.45727 0.5341183 -0.2875993 0.45727 0.5341183 -0.3262122 0.45727 0.5341183 -0.3544566 0.45727 0.5341183 -0.3767383 0.45727 0.5341183 -0.3951413 0.45727 0.5341183 -0.4108177 0.45727 0.5341183 -0.4244723 0.45727 0.5341183 -0.4365675 0.45727 0.5341183 -0.4474232 0.45727 0.5341183 -0.45727 0.45727 0.5341183 -0.4662797 0.45727 0.5341183 -0.4745834 0.45727 0.5341183 -0.4822838 0.45727 0.5341183 -0.4894626 0.45727 0.5341183 -0.4961862 0.45727 0.5341183 -0.5025087 0.45727 0.5341183 -0.5084753 0.45727 0.5341183 -0.514124 0.45727 0.5341183 -0.519487 0.45727 0.5341183 -0.5245917 0.45727 0.5341183 -0.529462 0.45727 0.5341183 -0.5341183 0.45727 0.5341183 -0.5385787 0.45727 0.5341183 -0.5428591 0.45727 0.5341183 -0.5469733 0.45727 0.5341183 -0.5509339 0.45727 0.5341183 -0.5547519 0.45727 0.5341183 -0.5584371 0.45727 0.5341183 -0.5619986 0.45727 0.5341183 -0.5654443 0.45727 0.5341183 -0.5687816 0.45727 0.5341183 -0.092819 0.4662797 0.5341183 -0.2262531 0.4662797 0.5341183 -0.2875993 0.4662797 0.5341183 -0.3262122 0.4662797 0.5341183 -0.3544566 0.4662797 0.5341183 -0.3767383 0.4662797 0.5341183 -0.3951413 0.4662797 0.5341183 -0.4108177 0.4662797 0.5341183 -0.4244723 0.4662797 0.5341183 -0.4365675 0.4662797 0.5341183 -0.4474232 0.4662797 0.5341183 -0.45727 0.4662797 0.5341183 -0.4662797 0.4662797 0.5341183 -0.4745834 0.4662797 0.5341183 -0.4822838 0.4662797 0.5341183 -0.4894626 0.4662797 0.5341183 -0.4961862 0.4662797 0.5341183 -0.5025087 0.4662797 0.5341183 -0.5084753 0.4662797 0.5341183 -0.514124 0.4662797 0.5341183 -0.519487 0.4662797 0.5341183 -0.5245917 0.4662797 0.5341183 -0.529462 0.4662797 0.5341183 -0.5341183 0.4662797 0.5341183 -0.5385787 0.4662797 0.5341183 -0.5428591 0.4662797 0.5341183 -0.5469733 0.4662797 0.5341183 -0.5509339 0.4662797 0.5341183 -0.5547519 0.4662797 0.5341183 -0.5584371 0.4662797 0.5341183 -0.5619986 0.4662797 0.5341183 -0.5654443 0.4662797 0.5341183 -0.5687816 0.4662797 0.5341183 -0.092819 0.4745834 0.5341183 -0.2262531 0.4745834 0.5341183 -0.2875993 0.4745834 0.5341183 -0.3262122 0.4745834 0.5341183 -0.3544566 0.4745834 0.5341183 -0.3767383 0.4745834 0.5341183 -0.3951413 0.4745834 0.5341183 -0.4108177 0.4745834 0.5341183 -0.4244723 0.4745834 0.5341183 -0.4365675 0.4745834 0.5341183 -0.4474232 0.4745834 0.5341183 -0.45727 0.4745834 0.5341183 -0.4662797 0.4745834 0.5341183 -0.4745834 0.4745834 0.5341183 -0.4822838 0.4745834 0.5341183 -0.4894626 0.4745834 0.5341183 -0.4961862 0.4745834 0.5341183 -0.5025087 0.4745834 0.5341183 -0.5084753 0.4745834 0.5341183 -0.514124 0.4745834 0.5341183 -0.519487 0.4745834 0.5341183 -0.5245917 0.4745834 0.5341183 -0.529462 0.4745834 0.5341183 -0.5341183 0.4745834 0.5341183 -0.5385787 0.4745834 0.5341183 -0.5428591 0.4745834 0.5341183 -0.5469733 0.4745834 0.5341183 -0.5509339 0.4745834 0.5341183 -0.5547519 0.4745834 0.5341183 -0.5584371 0.4745834 0.5341183 -0.5619986 0.4745834 0.5341183 -0.5654443 0.4745834 0.5341183 -0.5687816 0.4745834 0.5341183 -0.092819 0.4822838 0.5341183 -0.2262531 0.4822838 0.5341183 -0.2875993 0.4822838 0.5341183 -0.3262122 0.4822838 0.5341183 -0.3544566 0.4822838 0.5341183 -0.3767383 0.4822838 0.5341183 -0.3951413 0.4822838 0.5341183 -0.4108177 0.4822838 0.5341183 -0.4244723 0.4822838 0.5341183 -0.4365675 0.4822838 0.5341183 -0.4474232 0.4822838 0.5341183 -0.45727 0.4822838 0.5341183 -0.4662797 0.4822838 0.5341183 -0.4745834 0.4822838 0.5341183 -0.4822838 0.4822838 0.5341183 -0.4894626 0.4822838 0.5341183 -0.4961862 0.4822838 0.5341183 -0.5025087 0.4822838 0.5341183 -0.5084753 0.4822838 0.5341183 -0.514124 0.4822838 0.5341183 -0.519487 0.4822838 0.5341183 -0.5245917 0.4822838 0.5341183 -0.529462 0.4822838 0.5341183 -0.5341183 0.4822838 0.5341183 -0.5385787 0.4822838 0.5341183 -0.5428591 0.4822838 0.5341183 -0.5469733 0.4822838 0.5341183 -0.5509339 0.4822838 0.5341183 -0.5547519 0.4822838 0.5341183 -0.5584371 0.4822838 0.5341183 -0.5619986 0.4822838 0.5341183 -0.5654443 0.4822838 0.5341183 -0.5687816 0.4822838 0.5341183 -0.092819 0.4894626 0.5341183 -0.2262531 0.4894626 0.5341183 -0.2875993 0.4894626 0.5341183 -0.3262122 0.4894626 0.5341183 -0.3544566 0.4894626 0.5341183 -0.3767383 0.4894626 0.5341183 -0.3951413 0.4894626 0.5341183 -0.4108177 0.4894626 0.5341183 -0.4244723 0.4894626 0.5341183 -0.4365675 0.4894626 0.5341183 -0.4474232 0.4894626 0.5341183 -0.45727 0.4894626 0.5341183 -0.4662797 0.4894626 0.5341183 -0.4745834 0.4894626 0.5341183 -0.4822838 0.4894626 0.5341183 -0.4894626 0.4894626 0.5341183 -0.4961862 0.4894626 0.5341183 -0.5025087 0.4894626 0.5341183 -0.5084753 0.4894626 0.5341183 -0.514124 0.4894626 0.5341183 -0.519487 0.4894626 0.5341183 -0.5245917 0.4894626 0.5341183 -0.529462 0.4894626 0.5341183 -0.5341183 0.4894626 0.5341183 -0.5385787 0.4894626 0.5341183 -0.5428591 0.4894626 0.5341183 -0.5469733 0.4894626 0.5341183 -0.5509339 0.4894626 0.5341183 -0.5547519 0.4894626 0.5341183 -0.5584371 0.4894626 0.5341183 -0.5619986 0.4894626 0.5341183 -0.5654443 0.4894626 0.5341183 -0.5687816 0.4894626 0.5341183 -0.092819 0.4961862 0.5341183 -0.2262531 0.4961862 0.5341183 -0.2875993 0.4961862 0.5341183 -0.3262122 0.4961862 0.5341183 -0.3544566 0.4961862 0.5341183 -0.3767383 0.4961862 0.5341183 -0.3951413 0.4961862 0.5341183 -0.4108177 0.4961862 0.5341183 -0.4244723 0.4961862 0.5341183 -0.4365675 0.4961862 0.5341183 -0.4474232 0.4961862 0.5341183 -0.45727 0.4961862 0.5341183 -0.4662797 0.4961862 0.5341183 -0.4745834 0.4961862 0.5341183 -0.4822838 0.4961862 0.5341183 -0.4894626 0.4961862 0.5341183 -0.4961862 0.4961862 0.5341183 -0.5025087 0.4961862 0.5341183 -0.5084753 0.4961862 0.5341183 -0.514124 0.4961862 0.5341183 -0.519487 0.4961862 0.5341183 -0.5245917 0.4961862 0.5341183 -0.529462 0.4961862 0.5341183 -0.5341183 0.4961862 0.5341183 -0.5385787 0.4961862 0.5341183 -0.5428591 0.4961862 0.5341183 -0.5469733 0.4961862 0.5341183 -0.5509339 0.4961862 0.5341183 -0.5547519 0.4961862 0.5341183 -0.5584371 0.4961862 0.5341183 -0.5619986 0.4961862 0.5341183 -0.5654443 0.4961862 0.5341183 -0.5687816 0.4961862 0.5341183 -0.092819 0.5025087 0.5341183 -0.2262531 0.5025087 0.5341183 -0.2875993 0.5025087 0.5341183 -0.3262122 0.5025087 0.5341183 -0.3544566 0.5025087 0.5341183 -0.3767383 0.5025087 0.5341183 -0.3951413 0.5025087 0.5341183 -0.4108177 0.5025087 0.5341183 -0.4244723 0.5025087 0.5341183 -0.4365675 0.5025087 0.5341183 -0.4474232 0.5025087 0.5341183 -0.45727 0.5025087 0.5341183 -0.4662797 0.5025087 0.5341183 -0.4745834 0.5025087 0.5341183 -0.4822838 0.5025087 0.5341183 -0.4894626 0.5025087 0.5341183 -0.4961862 0.5025087 0.5341183 -0.5025087 0.5025087 0.5341183 -0.5084753 0.5025087 0.5341183 -0.514124 0.5025087 0.5341183 -0.519487 0.5025087 0.5341183 -0.5245917 0.5025087 0.5341183 -0.529462 0.5025087 0.5341183 -0.5341183 0.5025087 0.5341183 -0.5385787 0.5025087 0.5341183 -0.5428591 0.5025087 0.5341183 -0.5469733 0.5025087 0.5341183 -0.5509339 0.5025087 0.5341183 -0.5547519 0.5025087 0.5341183 -0.5584371 0.5025087 0.5341183 -0.5619986 0.5025087 0.5341183 -0.5654443 0.5025087 0.5341183 -0.5687816 0.5025087 0.5341183 -0.092819 0.5084753 0.5341183 -0.2262531 0.5084753 0.5341183 -0.2875993 0.5084753 0.5341183 -0.3262122 0.5084753 0.5341183 -0.3544566 0.5084753 0.5341183 -0.3767383 0.5084753 0.5341183 -0.3951413 0.5084753 0.5341183 -0.4108177 0.5084753 0.5341183 -0.4244723 0.5084753 0.5341183 -0.4365675 0.5084753 0.5341183 -0.4474232 0.5084753 0.5341183 -0.45727 0.5084753 0.5341183 -0.4662797 0.5084753 0.5341183 -0.4745834 0.5084753 0.5341183 -0.4822838 0.5084753 0.5341183 -0.4894626 0.5084753 0.5341183 -0.4961862 0.5084753 0.5341183 -0.5025087 0.5084753 0.5341183 -0.5084753 0.5084753 0.5341183 -0.514124 0.5084753 0.5341183 -0.519487 0.5084753 0.5341183 -0.5245917 0.5084753 0.5341183 -0.529462 0.5084753 0.5341183 -0.5341183 0.5084753 0.5341183 -0.5385787 0.5084753 0.5341183 -0.5428591 0.5084753 0.5341183 -0.5469733 0.5084753 0.5341183 -0.5509339 0.5084753 0.5341183 -0.5547519 0.5084753 0.5341183 -0.5584371 0.5084753 0.5341183 -0.5619986 0.5084753 0.5341183 -0.5654443 0.5084753 0.5341183 -0.5687816 0.5084753 0.5341183 -0.092819 0.514124 0.5341183 -0.2262531 0.514124 0.5341183 -0.2875993 0.514124 0.5341183 -0.3262122 0.514124 0.5341183 -0.3544566 0.514124 0.5341183 -0.3767383 0.514124 0.5341183 -0.3951413 0.514124 0.5341183 -0.4108177 0.514124 0.5341183 -0.4244723 0.514124 0.5341183 -0.4365675 0.514124 0.5341183 -0.4474232 0.514124 0.5341183 -0.45727 0.514124 0.5341183 -0.4662797 0.514124 0.5341183 -0.4745834 0.514124 0.5341183 -0.4822838 0.514124 0.5341183 -0.4894626 0.514124 0.5341183 -0.4961862 0.514124 0.5341183 -0.5025087 0.514124 0.5341183 -0.5084753 0.514124 0.5341183 -0.514124 0.514124 0.5341183 -0.519487 0.514124 0.5341183 -0.5245917 0.514124 0.5341183 -0.529462 0.514124 0.5341183 -0.5341183 0.514124 0.5341183 -0.5385787 0.514124 0.5341183 -0.5428591 0.514124 0.5341183 -0.5469733 0.514124 0.5341183 -0.5509339 0.514124 0.5341183 -0.5547519 0.514124 0.5341183 -0.5584371 0.514124 0.5341183 -0.5619986 0.514124 0.5341183 -0.5654443 0.514124 0.5341183 -0.5687816 0.514124 0.5341183 -0.092819 0.519487 0.5341183 -0.2262531 0.519487 0.5341183 -0.2875993 0.519487 0.5341183 -0.3262122 0.519487 0.5341183 -0.3544566 0.519487 0.5341183 -0.3767383 0.519487 0.5341183 -0.3951413 0.519487 0.5341183 -0.4108177 0.519487 0.5341183 -0.4244723 0.519487 0.5341183 -0.4365675 0.519487 0.5341183 -0.4474232 0.519487 0.5341183 -0.45727 0.519487 0.5341183 -0.4662797 0.519487 0.5341183 -0.4745834 0.519487 0.5341183 -0.4822838 0.519487 0.5341183 -0.4894626 0.519487 0.5341183 -0.4961862 0.519487 0.5341183 -0.5025087 0.519487 0.5341183 -0.5084753 0.519487 0.5341183 -0.514124 0.519487 0.5341183 -0.519487 0.519487 0.5341183 -0.5245917 0.519487 0.5341183 -0.529462 0.519487 0.5341183 -0.5341183 0.519487 0.5341183 -0.5385787 0.519487 0.5341183 -0.5428591 0.519487 0.5341183 -0.5469733 0.519487 0.5341183 -0.5509339 0.519487 0.5341183 -0.5547519 0.519487 0.5341183 -0.5584371 0.519487 0.5341183 -0.5619986 0.519487 0.5341183 -0.5654443 0.519487 0.5341183 -0.5687816 0.519487 0.5341183 -0.092819 0.5245917 0.5341183 -0.2262531 0.5245917 0.5341183 -0.2875993 0.5245917 0.5341183 -0.3262122 0.5245917 0.5341183 -0.3544566 0.5245917 0.5341183 -0.3767383 0.5245917 0.5341183 -0.3951413 0.5245917 0.5341183 -0.4108177 0.5245917 0.5341183 -0.4244723 0.5245917 0.5341183 -0.4365675 0.5245917 0.5341183 -0.4474232 0.5245917 0.5341183 -0.45727 0.5245917 0.5341183 -0.4662797 0.5245917 0.5341183 -0.4745834 0.5245917 0.5341183 -0.4822838 0.5245917 0.5341183 -0.4894626 0.5245917 0.5341183 -0.4961862 0.5245917 0.5341183 -0.5025087 0.5245917 0.5341183 -0.5084753 0.5245917 0.5341183 -0.514124 0.5245917 0.5341183 -0.519487 0.5245917 0.5341183 -0.5245917 0.5245917 0.5341183 -0.529462 0.5245917 0.5341183 -0.5341183 0.5245917 0.5341183 -0.5385787 0.5245917 0.5341183 -0.5428591 0.5245917 0.5341183 -0.5469733 0.5245917 0.5341183 -0.5509339 0.5245917 0.5341183 -0.5547519 0.5245917 0.5341183 -0.5584371 0.5245917 0.5341183 -0.5619986 0.5245917 0.5341183 -0.5654443 0.5245917 0.5341183 -0.5687816 0.5245917 0.5341183 -0.092819 0.529462 0.5341183 -0.2262531 0.529462 0.5341183 -0.2875993 0.529462 0.5341183 -0.3262122 0.529462 0.5341183 -0.3544566 0.529462 0.5341183 -0.3767383 0.529462 0.5341183 -0.3951413 0.529462 0.5341183 -0.4108177 0.529462 0.5341183 -0.4244723 0.529462 0.5341183 -0.4365675 0.529462 0.5341183 -0.4474232 0.529462 0.5341183 -0.45727 0.529462 0.5341183 -0.4662797 0.529462 0.5341183 -0.4745834 0.529462 0.5341183 -0.4822838 0.529462 0.5341183 -0.4894626 0.529462 0.5341183 -0.4961862 0.529462 0.5341183 -0.5025087 0.529462 0.5341183 -0.5084753 0.529462 0.5341183 -0.514124 0.529462 0.5341183 -0.519487 0.529462 0.5341183 -0.5245917 0.529462 0.5341183 -0.529462 0.529462 0.5341183 -0.5341183 0.529462 0.5341183 -0.5385787 0.529462 0.5341183 -0.5428591 0.529462 0.5341183 -0.5469733 0.529462 0.5341183 -0.5509339 0.529462 0.5341183 -0.5547519 0.529462 0.5341183 -0.5584371 0.529462 0.5341183 -0.5619986 0.529462 0.5341183 -0.5654443 0.529462 0.5341183 -0.5687816 0.529462 0.5341183 -0.092819 0.5341183 0.5341183 -0.2262531 0.5341183 0.5341183 -0.2875993 0.5341183 0.5341183 -0.3262122 0.5341183 0.5341183 -0.3544566 0.5341183 0.5341183 -0.3767383 0.5341183 0.5341183 -0.3951413 0.5341183 0.5341183 -0.4108177 0.5341183 0.5341183 -0.4244723 0.5341183 0.5341183 -0.4365675 0.5341183 0.5341183 -0.4474232 0.5341183 0.5341183 -0.45727 0.5341183 0.5341183 -0.4662797 0.5341183 0.5341183 -0.4745834 0.5341183 0.5341183 -0.4822838 0.5341183 0.5341183 -0.4894626 0.5341183 0.5341183 -0.4961862 0.5341183 0.5341183 -0.5025087 0.5341183 0.5341183 -0.5084753 0.5341183 0.5341183 -0.514124 0.5341183 0.5341183 -0.519487 0.5341183 0.5341183 -0.5245917 0.5341183 0.5341183 -0.529462 0.5341183 0.5341183 -0.5341183 0.5341183 0.5341183 -0.5385787 0.5341183 0.5341183 -0.5428591 0.5341183 0.5341183 -0.5469733 0.5341183 0.5341183 -0.5509339 0.5341183 0.5341183 -0.5547519 0.5341183 0.5341183 -0.5584371 0.5341183 0.5341183 -0.5619986 0.5341183 0.5341183 -0.5654443 0.5341183 0.5341183 -0.5687816 0.5341183 0.5341183 -0.092819 0.5385787 0.5341183 -0.2262531 0.5385787 0.5341183 -0.2875993 0.5385787 0.5341183 -0.3262122 0.5385787 0.5341183 -0.3544566 0.5385787 0.5341183 -0.3767383 0.5385787 0.5341183 -0.3951413 0.5385787 0.5341183 -0.4108177 0.5385787 0.5341183 -0.4244723 0.5385787 0.5341183 -0.4365675 0.5385787 0.5341183 -0.4474232 0.5385787 0.5341183 -0.45727 0.5385787 0.5341183 -0.4662797 0.5385787 0.5341183 -0.4745834 0.5385787 0.5341183 -0.4822838 0.5385787 0.5341183 -0.4894626 0.5385787 0.5341183 -0.4961862 0.5385787 0.5341183 -0.5025087 0.5385787 0.5341183 -0.5084753 0.5385787 0.5341183 -0.514124 0.5385787 0.5341183 -0.519487 0.5385787 0.5341183 -0.5245917 0.5385787 0.5341183 -0.529462 0.5385787 0.5341183 -0.5341183 0.5385787 0.5341183 -0.5385787 0.5385787 0.5341183 -0.5428591 0.5385787 0.5341183 -0.5469733 0.5385787 0.5341183 -0.5509339 0.5385787 0.5341183 -0.5547519 0.5385787 0.5341183 -0.5584371 0.5385787 0.5341183 -0.5619986 0.5385787 0.5341183 -0.5654443 0.5385787 0.5341183 -0.5687816 0.5385787 0.5341183 -0.092819 0.5428591 0.5341183 -0.2262531 0.5428591 0.5341183 -0.2875993 0.5428591 0.5341183 -0.3262122 0.5428591 0.5341183 -0.3544566 0.5428591 0.5341183 -0.3767383 0.5428591 0.5341183 -0.3951413 0.5428591 0.5341183 -0.4108177 0.5428591 0.5341183 -0.4244723 0.5428591 0.5341183 -0.4365675 0.5428591 0.5341183 -0.4474232 0.5428591 0.5341183 -0.45727 0.5428591 0.5341183 -0.4662797 0.5428591 0.5341183 -0.4745834 0.5428591 0.5341183 -0.4822838 0.5428591 0.5341183 -0.4894626 0.5428591 0.5341183 -0.4961862 0.5428591 0.5341183 -0.5025087 0.5428591 0.5341183 -0.5084753 0.5428591 0.5341183 -0.514124 0.5428591 0.5341183 -0.519487 0.5428591 0.5341183 -0.5245917 0.5428591 0.5341183 -0.529462 0.5428591 0.5341183 -0.5341183 0.5428591 0.5341183 -0.5385787 0.5428591 0.5341183 -0.5428591 0.5428591 0.5341183 -0.5469733 0.5428591 0.5341183 -0.5509339 0.5428591 0.5341183 -0.5547519 0.5428591 0.5341183 -0.5584371 0.5428591 0.5341183 -0.5619986 0.5428591 0.5341183 -0.5654443 0.5428591 0.5341183 -0.5687816 0.5428591 0.5341183 -0.092819 0.5469733 0.5341183 -0.2262531 0.5469733 0.5341183 -0.2875993 0.5469733 0.5341183 -0.3262122 0.5469733 0.5341183 -0.3544566 0.5469733 0.5341183 -0.3767383 0.5469733 0.5341183 -0.3951413 0.5469733 0.5341183 -0.4108177 0.5469733 0.5341183 -0.4244723 0.5469733 0.5341183 -0.4365675 0.5469733 0.5341183 -0.4474232 0.5469733 0.5341183 -0.45727 0.5469733 0.5341183 -0.4662797 0.5469733 0.5341183 -0.4745834 0.5469733 0.5341183 -0.4822838 0.5469733 0.5341183 -0.4894626 0.5469733 0.5341183 -0.4961862 0.5469733 0.5341183 -0.5025087 0.5469733 0.5341183 -0.5084753 0.5469733 0.5341183 -0.514124 0.5469733 0.5341183 -0.519487 0.5469733 0.5341183 -0.5245917 0.5469733 0.5341183 -0.529462 0.5469733 0.5341183 -0.5341183 0.5469733 0.5341183 -0.5385787 0.5469733 0.5341183 -0.5428591 0.5469733 0.5341183 -0.5469733 0.5469733 0.5341183 -0.5509339 0.5469733 0.5341183 -0.5547519 0.5469733 0.5341183 -0.5584371 0.5469733 0.5341183 -0.5619986 0.5469733 0.5341183 -0.5654443 0.5469733 0.5341183 -0.5687816 0.5469733 0.5341183 -0.092819 0.5509339 0.5341183 -0.2262531 0.5509339 0.5341183 -0.2875993 0.5509339 0.5341183 -0.3262122 0.5509339 0.5341183 -0.3544566 0.5509339 0.5341183 -0.3767383 0.5509339 0.5341183 -0.3951413 0.5509339 0.5341183 -0.4108177 0.5509339 0.5341183 -0.4244723 0.5509339 0.5341183 -0.4365675 0.5509339 0.5341183 -0.4474232 0.5509339 0.5341183 -0.45727 0.5509339 0.5341183 -0.4662797 0.5509339 0.5341183 -0.4745834 0.5509339 0.5341183 -0.4822838 0.5509339 0.5341183 -0.4894626 0.5509339 0.5341183 -0.4961862 0.5509339 0.5341183 -0.5025087 0.5509339 0.5341183 -0.5084753 0.5509339 0.5341183 -0.514124 0.5509339 0.5341183 -0.519487 0.5509339 0.5341183 -0.5245917 0.5509339 0.5341183 -0.529462 0.5509339 0.5341183 -0.5341183 0.5509339 0.5341183 -0.5385787 0.5509339 0.5341183 -0.5428591 0.5509339 0.5341183 -0.5469733 0.5509339 0.5341183 -0.5509339 0.5509339 0.5341183 -0.5547519 0.5509339 0.5341183 -0.5584371 0.5509339 0.5341183 -0.5619986 0.5509339 0.5341183 -0.5654443 0.5509339 0.5341183 -0.5687816 0.5509339 0.5341183 -0.092819 0.5547519 0.5341183 -0.2262531 0.5547519 0.5341183 -0.2875993 0.5547519 0.5341183 -0.3262122 0.5547519 0.5341183 -0.3544566 0.5547519 0.5341183 -0.3767383 0.5547519 0.5341183 -0.3951413 0.5547519 0.5341183 -0.4108177 0.5547519 0.5341183 -0.4244723 0.5547519 0.5341183 -0.4365675 0.5547519 0.5341183 -0.4474232 0.5547519 0.5341183 -0.45727 0.5547519 0.5341183 -0.4662797 0.5547519 0.5341183 -0.4745834 0.5547519 0.5341183 -0.4822838 0.5547519 0.5341183 -0.4894626 0.5547519 0.5341183 -0.4961862 0.5547519 0.5341183 -0.5025087 0.5547519 0.5341183 -0.5084753 0.5547519 0.5341183 -0.514124 0.5547519 0.5341183 -0.519487 0.5547519 0.5341183 -0.5245917 0.5547519 0.5341183 -0.529462 0.5547519 0.5341183 -0.5341183 0.5547519 0.5341183 -0.5385787 0.5547519 0.5341183 -0.5428591 0.5547519 0.5341183 -0.5469733 0.5547519 0.5341183 -0.5509339 0.5547519 0.5341183 -0.5547519 0.5547519 0.5341183 -0.5584371 0.5547519 0.5341183 -0.5619986 0.5547519 0.5341183 -0.5654443 0.5547519 0.5341183 -0.5687816 0.5547519 0.5341183 -0.092819 0.5584371 0.5341183 -0.2262531 0.5584371 0.5341183 -0.2875993 0.5584371 0.5341183 -0.3262122 0.5584371 0.5341183 -0.3544566 0.5584371 0.5341183 -0.3767383 0.5584371 0.5341183 -0.3951413 0.5584371 0.5341183 -0.4108177 0.5584371 0.5341183 -0.4244723 0.5584371 0.5341183 -0.4365675 0.5584371 0.5341183 -0.4474232 0.5584371 0.5341183 -0.45727 0.5584371 0.5341183 -0.4662797 0.5584371 0.5341183 -0.4745834 0.5584371 0.5341183 -0.4822838 0.5584371 0.5341183 -0.4894626 0.5584371 0.5341183 -0.4961862 0.5584371 0.5341183 -0.5025087 0.5584371 0.5341183 -0.5084753 0.5584371 0.5341183 -0.514124 0.5584371 0.5341183 -0.519487 0.5584371 0.5341183 -0.5245917 0.5584371 0.5341183 -0.529462 0.5584371 0.5341183 -0.5341183 0.5584371 0.5341183 -0.5385787 0.5584371 0.5341183 -0.5428591 0.5584371 0.5341183 -0.5469733 0.5584371 0.5341183 -0.5509339 0.5584371 0.5341183 -0.5547519 0.5584371 0.5341183 -0.5584371 0.5584371 0.5341183 -0.5619986 0.5584371 0.5341183 -0.5654443 0.5584371 0.5341183 -0.5687816 0.5584371 0.5341183 -0.092819 0.5619986 0.5341183 -0.2262531 0.5619986 0.5341183 -0.2875993 0.5619986 0.5341183 -0.3262122 0.5619986 0.5341183 -0.3544566 0.5619986 0.5341183 -0.3767383 0.5619986 0.5341183 -0.3951413 0.5619986 0.5341183 -0.4108177 0.5619986 0.5341183 -0.4244723 0.5619986 0.5341183 -0.4365675 0.5619986 0.5341183 -0.4474232 0.5619986 0.5341183 -0.45727 0.5619986 0.5341183 -0.4662797 0.5619986 0.5341183 -0.4745834 0.5619986 0.5341183 -0.4822838 0.5619986 0.5341183 -0.4894626 0.5619986 0.5341183 -0.4961862 0.5619986 0.5341183 -0.5025087 0.5619986 0.5341183 -0.5084753 0.5619986 0.5341183 -0.514124 0.5619986 0.5341183 -0.519487 0.5619986 0.5341183 -0.5245917 0.5619986 0.5341183 -0.529462 0.5619986 0.5341183 -0.5341183 0.5619986 0.5341183 -0.5385787 0.5619986 0.5341183 -0.5428591 0.5619986 0.5341183 -0.5469733 0.5619986 0.5341183 -0.5509339 0.5619986 0.5341183 -0.5547519 0.5619986 0.5341183 -0.5584371 0.5619986 0.5341183 -0.5619986 0.5619986 0.5341183 -0.5654443 0.5619986 0.5341183 -0.5687816 0.5619986 0.5341183 -0.092819 0.5654443 0.5341183 -0.2262531 0.5654443 0.5341183 -0.2875993 0.5654443 0.5341183 -0.3262122 0.5654443 0.5341183 -0.3544566 0.5654443 0.5341183 -0.3767383 0.5654443 0.5341183 -0.3951413 0.5654443 0.5341183 -0.4108177 0.5654443 0.5341183 -0.4244723 0.5654443 0.5341183 -0.4365675 0.5654443 0.5341183 -0.4474232 0.5654443 0.5341183 -0.45727 0.5654443 0.5341183 -0.4662797 0.5654443 0.5341183 -0.4745834 0.5654443 0.5341183 -0.4822838 0.5654443 0.5341183 -0.4894626 0.5654443 0.5341183 -0.4961862 0.5654443 0.5341183 -0.5025087 0.5654443 0.5341183 -0.5084753 0.5654443 0.5341183 -0.514124 0.5654443 0.5341183 -0.519487 0.5654443 0.5341183 -0.5245917 0.5654443 0.5341183 -0.529462 0.5654443 0.5341183 -0.5341183 0.5654443 0.5341183 -0.5385787 0.5654443 0.5341183 -0.5428591 0.5654443 0.5341183 -0.5469733 0.5654443 0.5341183 -0.5509339 0.5654443 0.5341183 -0.5547519 0.5654443 0.5341183 -0.5584371 0.5654443 0.5341183 -0.5619986 0.5654443 0.5341183 -0.5654443 0.5654443 0.5341183 -0.5687816 0.5654443 0.5341183 -0.092819 0.5687816 0.5341183 -0.2262531 0.5687816 0.5341183 -0.2875993 0.5687816 0.5341183 -0.3262122 0.5687816 0.5341183 -0.3544566 0.5687816 0.5341183 -0.3767383 0.5687816 0.5341183 -0.3951413 0.5687816 0.5341183 -0.4108177 0.5687816 0.5341183 -0.4244723 0.5687816 0.5341183 -0.4365675 0.5687816 0.5341183 -0.4474232 0.5687816 0.5341183 -0.45727 0.5687816 0.5341183 -0.4662797 0.5687816 0.5341183 -0.4745834 0.5687816 0.5341183 -0.4822838 0.5687816 0.5341183 -0.4894626 0.5687816 0.5341183 -0.4961862 0.5687816 0.5341183 -0.5025087 0.5687816 0.5341183 -0.5084753 0.5687816 0.5341183 -0.514124 0.5687816 0.5341183 -0.519487 0.5687816 0.5341183 -0.5245917 0.5687816 0.5341183 -0.529462 0.5687816 0.5341183 -0.5341183 0.5687816 0.5341183 -0.5385787 0.5687816 0.5341183 -0.5428591 0.5687816 0.5341183 -0.5469733 0.5687816 0.5341183 -0.5509339 0.5687816 0.5341183 -0.5547519 0.5687816 0.5341183 -0.5584371 0.5687816 0.5341183 -0.5619986 0.5687816 0.5341183 -0.5654443 0.5687816 0.5341183 -0.5687816 0.5687816 0.5341183 -0.092819 0.092819 0.5385787 -0.2262531 0.092819 0.5385787 -0.2875993 0.092819 0.5385787 -0.3262122 0.092819 0.5385787 -0.3544566 0.092819 0.5385787 -0.3767383 0.092819 0.5385787 -0.3951413 0.092819 0.5385787 -0.4108177 0.092819 0.5385787 -0.4244723 0.092819 0.5385787 -0.4365675 0.092819 0.5385787 -0.4474232 0.092819 0.5385787 -0.45727 0.092819 0.5385787 -0.4662797 0.092819 0.5385787 -0.4745834 0.092819 0.5385787 -0.4822838 0.092819 0.5385787 -0.4894626 0.092819 0.5385787 -0.4961862 0.092819 0.5385787 -0.5025087 0.092819 0.5385787 -0.5084753 0.092819 0.5385787 -0.514124 0.092819 0.5385787 -0.519487 0.092819 0.5385787 -0.5245917 0.092819 0.5385787 -0.529462 0.092819 0.5385787 -0.5341183 0.092819 0.5385787 -0.5385787 0.092819 0.5385787 -0.5428591 0.092819 0.5385787 -0.5469733 0.092819 0.5385787 -0.5509339 0.092819 0.5385787 -0.5547519 0.092819 0.5385787 -0.5584371 0.092819 0.5385787 -0.5619986 0.092819 0.5385787 -0.5654443 0.092819 0.5385787 -0.5687816 0.092819 0.5385787 -0.092819 0.2262531 0.5385787 -0.2262531 0.2262531 0.5385787 -0.2875993 0.2262531 0.5385787 -0.3262122 0.2262531 0.5385787 -0.3544566 0.2262531 0.5385787 -0.3767383 0.2262531 0.5385787 -0.3951413 0.2262531 0.5385787 -0.4108177 0.2262531 0.5385787 -0.4244723 0.2262531 0.5385787 -0.4365675 0.2262531 0.5385787 -0.4474232 0.2262531 0.5385787 -0.45727 0.2262531 0.5385787 -0.4662797 0.2262531 0.5385787 -0.4745834 0.2262531 0.5385787 -0.4822838 0.2262531 0.5385787 -0.4894626 0.2262531 0.5385787 -0.4961862 0.2262531 0.5385787 -0.5025087 0.2262531 0.5385787 -0.5084753 0.2262531 0.5385787 -0.514124 0.2262531 0.5385787 -0.519487 0.2262531 0.5385787 -0.5245917 0.2262531 0.5385787 -0.529462 0.2262531 0.5385787 -0.5341183 0.2262531 0.5385787 -0.5385787 0.2262531 0.5385787 -0.5428591 0.2262531 0.5385787 -0.5469733 0.2262531 0.5385787 -0.5509339 0.2262531 0.5385787 -0.5547519 0.2262531 0.5385787 -0.5584371 0.2262531 0.5385787 -0.5619986 0.2262531 0.5385787 -0.5654443 0.2262531 0.5385787 -0.5687816 0.2262531 0.5385787 -0.092819 0.2875993 0.5385787 -0.2262531 0.2875993 0.5385787 -0.2875993 0.2875993 0.5385787 -0.3262122 0.2875993 0.5385787 -0.3544566 0.2875993 0.5385787 -0.3767383 0.2875993 0.5385787 -0.3951413 0.2875993 0.5385787 -0.4108177 0.2875993 0.5385787 -0.4244723 0.2875993 0.5385787 -0.4365675 0.2875993 0.5385787 -0.4474232 0.2875993 0.5385787 -0.45727 0.2875993 0.5385787 -0.4662797 0.2875993 0.5385787 -0.4745834 0.2875993 0.5385787 -0.4822838 0.2875993 0.5385787 -0.4894626 0.2875993 0.5385787 -0.4961862 0.2875993 0.5385787 -0.5025087 0.2875993 0.5385787 -0.5084753 0.2875993 0.5385787 -0.514124 0.2875993 0.5385787 -0.519487 0.2875993 0.5385787 -0.5245917 0.2875993 0.5385787 -0.529462 0.2875993 0.5385787 -0.5341183 0.2875993 0.5385787 -0.5385787 0.2875993 0.5385787 -0.5428591 0.2875993 0.5385787 -0.5469733 0.2875993 0.5385787 -0.5509339 0.2875993 0.5385787 -0.5547519 0.2875993 0.5385787 -0.5584371 0.2875993 0.5385787 -0.5619986 0.2875993 0.5385787 -0.5654443 0.2875993 0.5385787 -0.5687816 0.2875993 0.5385787 -0.092819 0.3262122 0.5385787 -0.2262531 0.3262122 0.5385787 -0.2875993 0.3262122 0.5385787 -0.3262122 0.3262122 0.5385787 -0.3544566 0.3262122 0.5385787 -0.3767383 0.3262122 0.5385787 -0.3951413 0.3262122 0.5385787 -0.4108177 0.3262122 0.5385787 -0.4244723 0.3262122 0.5385787 -0.4365675 0.3262122 0.5385787 -0.4474232 0.3262122 0.5385787 -0.45727 0.3262122 0.5385787 -0.4662797 0.3262122 0.5385787 -0.4745834 0.3262122 0.5385787 -0.4822838 0.3262122 0.5385787 -0.4894626 0.3262122 0.5385787 -0.4961862 0.3262122 0.5385787 -0.5025087 0.3262122 0.5385787 -0.5084753 0.3262122 0.5385787 -0.514124 0.3262122 0.5385787 -0.519487 0.3262122 0.5385787 -0.5245917 0.3262122 0.5385787 -0.529462 0.3262122 0.5385787 -0.5341183 0.3262122 0.5385787 -0.5385787 0.3262122 0.5385787 -0.5428591 0.3262122 0.5385787 -0.5469733 0.3262122 0.5385787 -0.5509339 0.3262122 0.5385787 -0.5547519 0.3262122 0.5385787 -0.5584371 0.3262122 0.5385787 -0.5619986 0.3262122 0.5385787 -0.5654443 0.3262122 0.5385787 -0.5687816 0.3262122 0.5385787 -0.092819 0.3544566 0.5385787 -0.2262531 0.3544566 0.5385787 -0.2875993 0.3544566 0.5385787 -0.3262122 0.3544566 0.5385787 -0.3544566 0.3544566 0.5385787 -0.3767383 0.3544566 0.5385787 -0.3951413 0.3544566 0.5385787 -0.4108177 0.3544566 0.5385787 -0.4244723 0.3544566 0.5385787 -0.4365675 0.3544566 0.5385787 -0.4474232 0.3544566 0.5385787 -0.45727 0.3544566 0.5385787 -0.4662797 0.3544566 0.5385787 -0.4745834 0.3544566 0.5385787 -0.4822838 0.3544566 0.5385787 -0.4894626 0.3544566 0.5385787 -0.4961862 0.3544566 0.5385787 -0.5025087 0.3544566 0.5385787 -0.5084753 0.3544566 0.5385787 -0.514124 0.3544566 0.5385787 -0.519487 0.3544566 0.5385787 -0.5245917 0.3544566 0.5385787 -0.529462 0.3544566 0.5385787 -0.5341183 0.3544566 0.5385787 -0.5385787 0.3544566 0.5385787 -0.5428591 0.3544566 0.5385787 -0.5469733 0.3544566 0.5385787 -0.5509339 0.3544566 0.5385787 -0.5547519 0.3544566 0.5385787 -0.5584371 0.3544566 0.5385787 -0.5619986 0.3544566 0.5385787 -0.5654443 0.3544566 0.5385787 -0.5687816 0.3544566 0.5385787 -0.092819 0.3767383 0.5385787 -0.2262531 0.3767383 0.5385787 -0.2875993 0.3767383 0.5385787 -0.3262122 0.3767383 0.5385787 -0.3544566 0.3767383 0.5385787 -0.3767383 0.3767383 0.5385787 -0.3951413 0.3767383 0.5385787 -0.4108177 0.3767383 0.5385787 -0.4244723 0.3767383 0.5385787 -0.4365675 0.3767383 0.5385787 -0.4474232 0.3767383 0.5385787 -0.45727 0.3767383 0.5385787 -0.4662797 0.3767383 0.5385787 -0.4745834 0.3767383 0.5385787 -0.4822838 0.3767383 0.5385787 -0.4894626 0.3767383 0.5385787 -0.4961862 0.3767383 0.5385787 -0.5025087 0.3767383 0.5385787 -0.5084753 0.3767383 0.5385787 -0.514124 0.3767383 0.5385787 -0.519487 0.3767383 0.5385787 -0.5245917 0.3767383 0.5385787 -0.529462 0.3767383 0.5385787 -0.5341183 0.3767383 0.5385787 -0.5385787 0.3767383 0.5385787 -0.5428591 0.3767383 0.5385787 -0.5469733 0.3767383 0.5385787 -0.5509339 0.3767383 0.5385787 -0.5547519 0.3767383 0.5385787 -0.5584371 0.3767383 0.5385787 -0.5619986 0.3767383 0.5385787 -0.5654443 0.3767383 0.5385787 -0.5687816 0.3767383 0.5385787 -0.092819 0.3951413 0.5385787 -0.2262531 0.3951413 0.5385787 -0.2875993 0.3951413 0.5385787 -0.3262122 0.3951413 0.5385787 -0.3544566 0.3951413 0.5385787 -0.3767383 0.3951413 0.5385787 -0.3951413 0.3951413 0.5385787 -0.4108177 0.3951413 0.5385787 -0.4244723 0.3951413 0.5385787 -0.4365675 0.3951413 0.5385787 -0.4474232 0.3951413 0.5385787 -0.45727 0.3951413 0.5385787 -0.4662797 0.3951413 0.5385787 -0.4745834 0.3951413 0.5385787 -0.4822838 0.3951413 0.5385787 -0.4894626 0.3951413 0.5385787 -0.4961862 0.3951413 0.5385787 -0.5025087 0.3951413 0.5385787 -0.5084753 0.3951413 0.5385787 -0.514124 0.3951413 0.5385787 -0.519487 0.3951413 0.5385787 -0.5245917 0.3951413 0.5385787 -0.529462 0.3951413 0.5385787 -0.5341183 0.3951413 0.5385787 -0.5385787 0.3951413 0.5385787 -0.5428591 0.3951413 0.5385787 -0.5469733 0.3951413 0.5385787 -0.5509339 0.3951413 0.5385787 -0.5547519 0.3951413 0.5385787 -0.5584371 0.3951413 0.5385787 -0.5619986 0.3951413 0.5385787 -0.5654443 0.3951413 0.5385787 -0.5687816 0.3951413 0.5385787 -0.092819 0.4108177 0.5385787 -0.2262531 0.4108177 0.5385787 -0.2875993 0.4108177 0.5385787 -0.3262122 0.4108177 0.5385787 -0.3544566 0.4108177 0.5385787 -0.3767383 0.4108177 0.5385787 -0.3951413 0.4108177 0.5385787 -0.4108177 0.4108177 0.5385787 -0.4244723 0.4108177 0.5385787 -0.4365675 0.4108177 0.5385787 -0.4474232 0.4108177 0.5385787 -0.45727 0.4108177 0.5385787 -0.4662797 0.4108177 0.5385787 -0.4745834 0.4108177 0.5385787 -0.4822838 0.4108177 0.5385787 -0.4894626 0.4108177 0.5385787 -0.4961862 0.4108177 0.5385787 -0.5025087 0.4108177 0.5385787 -0.5084753 0.4108177 0.5385787 -0.514124 0.4108177 0.5385787 -0.519487 0.4108177 0.5385787 -0.5245917 0.4108177 0.5385787 -0.529462 0.4108177 0.5385787 -0.5341183 0.4108177 0.5385787 -0.5385787 0.4108177 0.5385787 -0.5428591 0.4108177 0.5385787 -0.5469733 0.4108177 0.5385787 -0.5509339 0.4108177 0.5385787 -0.5547519 0.4108177 0.5385787 -0.5584371 0.4108177 0.5385787 -0.5619986 0.4108177 0.5385787 -0.5654443 0.4108177 0.5385787 -0.5687816 0.4108177 0.5385787 -0.092819 0.4244723 0.5385787 -0.2262531 0.4244723 0.5385787 -0.2875993 0.4244723 0.5385787 -0.3262122 0.4244723 0.5385787 -0.3544566 0.4244723 0.5385787 -0.3767383 0.4244723 0.5385787 -0.3951413 0.4244723 0.5385787 -0.4108177 0.4244723 0.5385787 -0.4244723 0.4244723 0.5385787 -0.4365675 0.4244723 0.5385787 -0.4474232 0.4244723 0.5385787 -0.45727 0.4244723 0.5385787 -0.4662797 0.4244723 0.5385787 -0.4745834 0.4244723 0.5385787 -0.4822838 0.4244723 0.5385787 -0.4894626 0.4244723 0.5385787 -0.4961862 0.4244723 0.5385787 -0.5025087 0.4244723 0.5385787 -0.5084753 0.4244723 0.5385787 -0.514124 0.4244723 0.5385787 -0.519487 0.4244723 0.5385787 -0.5245917 0.4244723 0.5385787 -0.529462 0.4244723 0.5385787 -0.5341183 0.4244723 0.5385787 -0.5385787 0.4244723 0.5385787 -0.5428591 0.4244723 0.5385787 -0.5469733 0.4244723 0.5385787 -0.5509339 0.4244723 0.5385787 -0.5547519 0.4244723 0.5385787 -0.5584371 0.4244723 0.5385787 -0.5619986 0.4244723 0.5385787 -0.5654443 0.4244723 0.5385787 -0.5687816 0.4244723 0.5385787 -0.092819 0.4365675 0.5385787 -0.2262531 0.4365675 0.5385787 -0.2875993 0.4365675 0.5385787 -0.3262122 0.4365675 0.5385787 -0.3544566 0.4365675 0.5385787 -0.3767383 0.4365675 0.5385787 -0.3951413 0.4365675 0.5385787 -0.4108177 0.4365675 0.5385787 -0.4244723 0.4365675 0.5385787 -0.4365675 0.4365675 0.5385787 -0.4474232 0.4365675 0.5385787 -0.45727 0.4365675 0.5385787 -0.4662797 0.4365675 0.5385787 -0.4745834 0.4365675 0.5385787 -0.4822838 0.4365675 0.5385787 -0.4894626 0.4365675 0.5385787 -0.4961862 0.4365675 0.5385787 -0.5025087 0.4365675 0.5385787 -0.5084753 0.4365675 0.5385787 -0.514124 0.4365675 0.5385787 -0.519487 0.4365675 0.5385787 -0.5245917 0.4365675 0.5385787 -0.529462 0.4365675 0.5385787 -0.5341183 0.4365675 0.5385787 -0.5385787 0.4365675 0.5385787 -0.5428591 0.4365675 0.5385787 -0.5469733 0.4365675 0.5385787 -0.5509339 0.4365675 0.5385787 -0.5547519 0.4365675 0.5385787 -0.5584371 0.4365675 0.5385787 -0.5619986 0.4365675 0.5385787 -0.5654443 0.4365675 0.5385787 -0.5687816 0.4365675 0.5385787 -0.092819 0.4474232 0.5385787 -0.2262531 0.4474232 0.5385787 -0.2875993 0.4474232 0.5385787 -0.3262122 0.4474232 0.5385787 -0.3544566 0.4474232 0.5385787 -0.3767383 0.4474232 0.5385787 -0.3951413 0.4474232 0.5385787 -0.4108177 0.4474232 0.5385787 -0.4244723 0.4474232 0.5385787 -0.4365675 0.4474232 0.5385787 -0.4474232 0.4474232 0.5385787 -0.45727 0.4474232 0.5385787 -0.4662797 0.4474232 0.5385787 -0.4745834 0.4474232 0.5385787 -0.4822838 0.4474232 0.5385787 -0.4894626 0.4474232 0.5385787 -0.4961862 0.4474232 0.5385787 -0.5025087 0.4474232 0.5385787 -0.5084753 0.4474232 0.5385787 -0.514124 0.4474232 0.5385787 -0.519487 0.4474232 0.5385787 -0.5245917 0.4474232 0.5385787 -0.529462 0.4474232 0.5385787 -0.5341183 0.4474232 0.5385787 -0.5385787 0.4474232 0.5385787 -0.5428591 0.4474232 0.5385787 -0.5469733 0.4474232 0.5385787 -0.5509339 0.4474232 0.5385787 -0.5547519 0.4474232 0.5385787 -0.5584371 0.4474232 0.5385787 -0.5619986 0.4474232 0.5385787 -0.5654443 0.4474232 0.5385787 -0.5687816 0.4474232 0.5385787 -0.092819 0.45727 0.5385787 -0.2262531 0.45727 0.5385787 -0.2875993 0.45727 0.5385787 -0.3262122 0.45727 0.5385787 -0.3544566 0.45727 0.5385787 -0.3767383 0.45727 0.5385787 -0.3951413 0.45727 0.5385787 -0.4108177 0.45727 0.5385787 -0.4244723 0.45727 0.5385787 -0.4365675 0.45727 0.5385787 -0.4474232 0.45727 0.5385787 -0.45727 0.45727 0.5385787 -0.4662797 0.45727 0.5385787 -0.4745834 0.45727 0.5385787 -0.4822838 0.45727 0.5385787 -0.4894626 0.45727 0.5385787 -0.4961862 0.45727 0.5385787 -0.5025087 0.45727 0.5385787 -0.5084753 0.45727 0.5385787 -0.514124 0.45727 0.5385787 -0.519487 0.45727 0.5385787 -0.5245917 0.45727 0.5385787 -0.529462 0.45727 0.5385787 -0.5341183 0.45727 0.5385787 -0.5385787 0.45727 0.5385787 -0.5428591 0.45727 0.5385787 -0.5469733 0.45727 0.5385787 -0.5509339 0.45727 0.5385787 -0.5547519 0.45727 0.5385787 -0.5584371 0.45727 0.5385787 -0.5619986 0.45727 0.5385787 -0.5654443 0.45727 0.5385787 -0.5687816 0.45727 0.5385787 -0.092819 0.4662797 0.5385787 -0.2262531 0.4662797 0.5385787 -0.2875993 0.4662797 0.5385787 -0.3262122 0.4662797 0.5385787 -0.3544566 0.4662797 0.5385787 -0.3767383 0.4662797 0.5385787 -0.3951413 0.4662797 0.5385787 -0.4108177 0.4662797 0.5385787 -0.4244723 0.4662797 0.5385787 -0.4365675 0.4662797 0.5385787 -0.4474232 0.4662797 0.5385787 -0.45727 0.4662797 0.5385787 -0.4662797 0.4662797 0.5385787 -0.4745834 0.4662797 0.5385787 -0.4822838 0.4662797 0.5385787 -0.4894626 0.4662797 0.5385787 -0.4961862 0.4662797 0.5385787 -0.5025087 0.4662797 0.5385787 -0.5084753 0.4662797 0.5385787 -0.514124 0.4662797 0.5385787 -0.519487 0.4662797 0.5385787 -0.5245917 0.4662797 0.5385787 -0.529462 0.4662797 0.5385787 -0.5341183 0.4662797 0.5385787 -0.5385787 0.4662797 0.5385787 -0.5428591 0.4662797 0.5385787 -0.5469733 0.4662797 0.5385787 -0.5509339 0.4662797 0.5385787 -0.5547519 0.4662797 0.5385787 -0.5584371 0.4662797 0.5385787 -0.5619986 0.4662797 0.5385787 -0.5654443 0.4662797 0.5385787 -0.5687816 0.4662797 0.5385787 -0.092819 0.4745834 0.5385787 -0.2262531 0.4745834 0.5385787 -0.2875993 0.4745834 0.5385787 -0.3262122 0.4745834 0.5385787 -0.3544566 0.4745834 0.5385787 -0.3767383 0.4745834 0.5385787 -0.3951413 0.4745834 0.5385787 -0.4108177 0.4745834 0.5385787 -0.4244723 0.4745834 0.5385787 -0.4365675 0.4745834 0.5385787 -0.4474232 0.4745834 0.5385787 -0.45727 0.4745834 0.5385787 -0.4662797 0.4745834 0.5385787 -0.4745834 0.4745834 0.5385787 -0.4822838 0.4745834 0.5385787 -0.4894626 0.4745834 0.5385787 -0.4961862 0.4745834 0.5385787 -0.5025087 0.4745834 0.5385787 -0.5084753 0.4745834 0.5385787 -0.514124 0.4745834 0.5385787 -0.519487 0.4745834 0.5385787 -0.5245917 0.4745834 0.5385787 -0.529462 0.4745834 0.5385787 -0.5341183 0.4745834 0.5385787 -0.5385787 0.4745834 0.5385787 -0.5428591 0.4745834 0.5385787 -0.5469733 0.4745834 0.5385787 -0.5509339 0.4745834 0.5385787 -0.5547519 0.4745834 0.5385787 -0.5584371 0.4745834 0.5385787 -0.5619986 0.4745834 0.5385787 -0.5654443 0.4745834 0.5385787 -0.5687816 0.4745834 0.5385787 -0.092819 0.4822838 0.5385787 -0.2262531 0.4822838 0.5385787 -0.2875993 0.4822838 0.5385787 -0.3262122 0.4822838 0.5385787 -0.3544566 0.4822838 0.5385787 -0.3767383 0.4822838 0.5385787 -0.3951413 0.4822838 0.5385787 -0.4108177 0.4822838 0.5385787 -0.4244723 0.4822838 0.5385787 -0.4365675 0.4822838 0.5385787 -0.4474232 0.4822838 0.5385787 -0.45727 0.4822838 0.5385787 -0.4662797 0.4822838 0.5385787 -0.4745834 0.4822838 0.5385787 -0.4822838 0.4822838 0.5385787 -0.4894626 0.4822838 0.5385787 -0.4961862 0.4822838 0.5385787 -0.5025087 0.4822838 0.5385787 -0.5084753 0.4822838 0.5385787 -0.514124 0.4822838 0.5385787 -0.519487 0.4822838 0.5385787 -0.5245917 0.4822838 0.5385787 -0.529462 0.4822838 0.5385787 -0.5341183 0.4822838 0.5385787 -0.5385787 0.4822838 0.5385787 -0.5428591 0.4822838 0.5385787 -0.5469733 0.4822838 0.5385787 -0.5509339 0.4822838 0.5385787 -0.5547519 0.4822838 0.5385787 -0.5584371 0.4822838 0.5385787 -0.5619986 0.4822838 0.5385787 -0.5654443 0.4822838 0.5385787 -0.5687816 0.4822838 0.5385787 -0.092819 0.4894626 0.5385787 -0.2262531 0.4894626 0.5385787 -0.2875993 0.4894626 0.5385787 -0.3262122 0.4894626 0.5385787 -0.3544566 0.4894626 0.5385787 -0.3767383 0.4894626 0.5385787 -0.3951413 0.4894626 0.5385787 -0.4108177 0.4894626 0.5385787 -0.4244723 0.4894626 0.5385787 -0.4365675 0.4894626 0.5385787 -0.4474232 0.4894626 0.5385787 -0.45727 0.4894626 0.5385787 -0.4662797 0.4894626 0.5385787 -0.4745834 0.4894626 0.5385787 -0.4822838 0.4894626 0.5385787 -0.4894626 0.4894626 0.5385787 -0.4961862 0.4894626 0.5385787 -0.5025087 0.4894626 0.5385787 -0.5084753 0.4894626 0.5385787 -0.514124 0.4894626 0.5385787 -0.519487 0.4894626 0.5385787 -0.5245917 0.4894626 0.5385787 -0.529462 0.4894626 0.5385787 -0.5341183 0.4894626 0.5385787 -0.5385787 0.4894626 0.5385787 -0.5428591 0.4894626 0.5385787 -0.5469733 0.4894626 0.5385787 -0.5509339 0.4894626 0.5385787 -0.5547519 0.4894626 0.5385787 -0.5584371 0.4894626 0.5385787 -0.5619986 0.4894626 0.5385787 -0.5654443 0.4894626 0.5385787 -0.5687816 0.4894626 0.5385787 -0.092819 0.4961862 0.5385787 -0.2262531 0.4961862 0.5385787 -0.2875993 0.4961862 0.5385787 -0.3262122 0.4961862 0.5385787 -0.3544566 0.4961862 0.5385787 -0.3767383 0.4961862 0.5385787 -0.3951413 0.4961862 0.5385787 -0.4108177 0.4961862 0.5385787 -0.4244723 0.4961862 0.5385787 -0.4365675 0.4961862 0.5385787 -0.4474232 0.4961862 0.5385787 -0.45727 0.4961862 0.5385787 -0.4662797 0.4961862 0.5385787 -0.4745834 0.4961862 0.5385787 -0.4822838 0.4961862 0.5385787 -0.4894626 0.4961862 0.5385787 -0.4961862 0.4961862 0.5385787 -0.5025087 0.4961862 0.5385787 -0.5084753 0.4961862 0.5385787 -0.514124 0.4961862 0.5385787 -0.519487 0.4961862 0.5385787 -0.5245917 0.4961862 0.5385787 -0.529462 0.4961862 0.5385787 -0.5341183 0.4961862 0.5385787 -0.5385787 0.4961862 0.5385787 -0.5428591 0.4961862 0.5385787 -0.5469733 0.4961862 0.5385787 -0.5509339 0.4961862 0.5385787 -0.5547519 0.4961862 0.5385787 -0.5584371 0.4961862 0.5385787 -0.5619986 0.4961862 0.5385787 -0.5654443 0.4961862 0.5385787 -0.5687816 0.4961862 0.5385787 -0.092819 0.5025087 0.5385787 -0.2262531 0.5025087 0.5385787 -0.2875993 0.5025087 0.5385787 -0.3262122 0.5025087 0.5385787 -0.3544566 0.5025087 0.5385787 -0.3767383 0.5025087 0.5385787 -0.3951413 0.5025087 0.5385787 -0.4108177 0.5025087 0.5385787 -0.4244723 0.5025087 0.5385787 -0.4365675 0.5025087 0.5385787 -0.4474232 0.5025087 0.5385787 -0.45727 0.5025087 0.5385787 -0.4662797 0.5025087 0.5385787 -0.4745834 0.5025087 0.5385787 -0.4822838 0.5025087 0.5385787 -0.4894626 0.5025087 0.5385787 -0.4961862 0.5025087 0.5385787 -0.5025087 0.5025087 0.5385787 -0.5084753 0.5025087 0.5385787 -0.514124 0.5025087 0.5385787 -0.519487 0.5025087 0.5385787 -0.5245917 0.5025087 0.5385787 -0.529462 0.5025087 0.5385787 -0.5341183 0.5025087 0.5385787 -0.5385787 0.5025087 0.5385787 -0.5428591 0.5025087 0.5385787 -0.5469733 0.5025087 0.5385787 -0.5509339 0.5025087 0.5385787 -0.5547519 0.5025087 0.5385787 -0.5584371 0.5025087 0.5385787 -0.5619986 0.5025087 0.5385787 -0.5654443 0.5025087 0.5385787 -0.5687816 0.5025087 0.5385787 -0.092819 0.5084753 0.5385787 -0.2262531 0.5084753 0.5385787 -0.2875993 0.5084753 0.5385787 -0.3262122 0.5084753 0.5385787 -0.3544566 0.5084753 0.5385787 -0.3767383 0.5084753 0.5385787 -0.3951413 0.5084753 0.5385787 -0.4108177 0.5084753 0.5385787 -0.4244723 0.5084753 0.5385787 -0.4365675 0.5084753 0.5385787 -0.4474232 0.5084753 0.5385787 -0.45727 0.5084753 0.5385787 -0.4662797 0.5084753 0.5385787 -0.4745834 0.5084753 0.5385787 -0.4822838 0.5084753 0.5385787 -0.4894626 0.5084753 0.5385787 -0.4961862 0.5084753 0.5385787 -0.5025087 0.5084753 0.5385787 -0.5084753 0.5084753 0.5385787 -0.514124 0.5084753 0.5385787 -0.519487 0.5084753 0.5385787 -0.5245917 0.5084753 0.5385787 -0.529462 0.5084753 0.5385787 -0.5341183 0.5084753 0.5385787 -0.5385787 0.5084753 0.5385787 -0.5428591 0.5084753 0.5385787 -0.5469733 0.5084753 0.5385787 -0.5509339 0.5084753 0.5385787 -0.5547519 0.5084753 0.5385787 -0.5584371 0.5084753 0.5385787 -0.5619986 0.5084753 0.5385787 -0.5654443 0.5084753 0.5385787 -0.5687816 0.5084753 0.5385787 -0.092819 0.514124 0.5385787 -0.2262531 0.514124 0.5385787 -0.2875993 0.514124 0.5385787 -0.3262122 0.514124 0.5385787 -0.3544566 0.514124 0.5385787 -0.3767383 0.514124 0.5385787 -0.3951413 0.514124 0.5385787 -0.4108177 0.514124 0.5385787 -0.4244723 0.514124 0.5385787 -0.4365675 0.514124 0.5385787 -0.4474232 0.514124 0.5385787 -0.45727 0.514124 0.5385787 -0.4662797 0.514124 0.5385787 -0.4745834 0.514124 0.5385787 -0.4822838 0.514124 0.5385787 -0.4894626 0.514124 0.5385787 -0.4961862 0.514124 0.5385787 -0.5025087 0.514124 0.5385787 -0.5084753 0.514124 0.5385787 -0.514124 0.514124 0.5385787 -0.519487 0.514124 0.5385787 -0.5245917 0.514124 0.5385787 -0.529462 0.514124 0.5385787 -0.5341183 0.514124 0.5385787 -0.5385787 0.514124 0.5385787 -0.5428591 0.514124 0.5385787 -0.5469733 0.514124 0.5385787 -0.5509339 0.514124 0.5385787 -0.5547519 0.514124 0.5385787 -0.5584371 0.514124 0.5385787 -0.5619986 0.514124 0.5385787 -0.5654443 0.514124 0.5385787 -0.5687816 0.514124 0.5385787 -0.092819 0.519487 0.5385787 -0.2262531 0.519487 0.5385787 -0.2875993 0.519487 0.5385787 -0.3262122 0.519487 0.5385787 -0.3544566 0.519487 0.5385787 -0.3767383 0.519487 0.5385787 -0.3951413 0.519487 0.5385787 -0.4108177 0.519487 0.5385787 -0.4244723 0.519487 0.5385787 -0.4365675 0.519487 0.5385787 -0.4474232 0.519487 0.5385787 -0.45727 0.519487 0.5385787 -0.4662797 0.519487 0.5385787 -0.4745834 0.519487 0.5385787 -0.4822838 0.519487 0.5385787 -0.4894626 0.519487 0.5385787 -0.4961862 0.519487 0.5385787 -0.5025087 0.519487 0.5385787 -0.5084753 0.519487 0.5385787 -0.514124 0.519487 0.5385787 -0.519487 0.519487 0.5385787 -0.5245917 0.519487 0.5385787 -0.529462 0.519487 0.5385787 -0.5341183 0.519487 0.5385787 -0.5385787 0.519487 0.5385787 -0.5428591 0.519487 0.5385787 -0.5469733 0.519487 0.5385787 -0.5509339 0.519487 0.5385787 -0.5547519 0.519487 0.5385787 -0.5584371 0.519487 0.5385787 -0.5619986 0.519487 0.5385787 -0.5654443 0.519487 0.5385787 -0.5687816 0.519487 0.5385787 -0.092819 0.5245917 0.5385787 -0.2262531 0.5245917 0.5385787 -0.2875993 0.5245917 0.5385787 -0.3262122 0.5245917 0.5385787 -0.3544566 0.5245917 0.5385787 -0.3767383 0.5245917 0.5385787 -0.3951413 0.5245917 0.5385787 -0.4108177 0.5245917 0.5385787 -0.4244723 0.5245917 0.5385787 -0.4365675 0.5245917 0.5385787 -0.4474232 0.5245917 0.5385787 -0.45727 0.5245917 0.5385787 -0.4662797 0.5245917 0.5385787 -0.4745834 0.5245917 0.5385787 -0.4822838 0.5245917 0.5385787 -0.4894626 0.5245917 0.5385787 -0.4961862 0.5245917 0.5385787 -0.5025087 0.5245917 0.5385787 -0.5084753 0.5245917 0.5385787 -0.514124 0.5245917 0.5385787 -0.519487 0.5245917 0.5385787 -0.5245917 0.5245917 0.5385787 -0.529462 0.5245917 0.5385787 -0.5341183 0.5245917 0.5385787 -0.5385787 0.5245917 0.5385787 -0.5428591 0.5245917 0.5385787 -0.5469733 0.5245917 0.5385787 -0.5509339 0.5245917 0.5385787 -0.5547519 0.5245917 0.5385787 -0.5584371 0.5245917 0.5385787 -0.5619986 0.5245917 0.5385787 -0.5654443 0.5245917 0.5385787 -0.5687816 0.5245917 0.5385787 -0.092819 0.529462 0.5385787 -0.2262531 0.529462 0.5385787 -0.2875993 0.529462 0.5385787 -0.3262122 0.529462 0.5385787 -0.3544566 0.529462 0.5385787 -0.3767383 0.529462 0.5385787 -0.3951413 0.529462 0.5385787 -0.4108177 0.529462 0.5385787 -0.4244723 0.529462 0.5385787 -0.4365675 0.529462 0.5385787 -0.4474232 0.529462 0.5385787 -0.45727 0.529462 0.5385787 -0.4662797 0.529462 0.5385787 -0.4745834 0.529462 0.5385787 -0.4822838 0.529462 0.5385787 -0.4894626 0.529462 0.5385787 -0.4961862 0.529462 0.5385787 -0.5025087 0.529462 0.5385787 -0.5084753 0.529462 0.5385787 -0.514124 0.529462 0.5385787 -0.519487 0.529462 0.5385787 -0.5245917 0.529462 0.5385787 -0.529462 0.529462 0.5385787 -0.5341183 0.529462 0.5385787 -0.5385787 0.529462 0.5385787 -0.5428591 0.529462 0.5385787 -0.5469733 0.529462 0.5385787 -0.5509339 0.529462 0.5385787 -0.5547519 0.529462 0.5385787 -0.5584371 0.529462 0.5385787 -0.5619986 0.529462 0.5385787 -0.5654443 0.529462 0.5385787 -0.5687816 0.529462 0.5385787 -0.092819 0.5341183 0.5385787 -0.2262531 0.5341183 0.5385787 -0.2875993 0.5341183 0.5385787 -0.3262122 0.5341183 0.5385787 -0.3544566 0.5341183 0.5385787 -0.3767383 0.5341183 0.5385787 -0.3951413 0.5341183 0.5385787 -0.4108177 0.5341183 0.5385787 -0.4244723 0.5341183 0.5385787 -0.4365675 0.5341183 0.5385787 -0.4474232 0.5341183 0.5385787 -0.45727 0.5341183 0.5385787 -0.4662797 0.5341183 0.5385787 -0.4745834 0.5341183 0.5385787 -0.4822838 0.5341183 0.5385787 -0.4894626 0.5341183 0.5385787 -0.4961862 0.5341183 0.5385787 -0.5025087 0.5341183 0.5385787 -0.5084753 0.5341183 0.5385787 -0.514124 0.5341183 0.5385787 -0.519487 0.5341183 0.5385787 -0.5245917 0.5341183 0.5385787 -0.529462 0.5341183 0.5385787 -0.5341183 0.5341183 0.5385787 -0.5385787 0.5341183 0.5385787 -0.5428591 0.5341183 0.5385787 -0.5469733 0.5341183 0.5385787 -0.5509339 0.5341183 0.5385787 -0.5547519 0.5341183 0.5385787 -0.5584371 0.5341183 0.5385787 -0.5619986 0.5341183 0.5385787 -0.5654443 0.5341183 0.5385787 -0.5687816 0.5341183 0.5385787 -0.092819 0.5385787 0.5385787 -0.2262531 0.5385787 0.5385787 -0.2875993 0.5385787 0.5385787 -0.3262122 0.5385787 0.5385787 -0.3544566 0.5385787 0.5385787 -0.3767383 0.5385787 0.5385787 -0.3951413 0.5385787 0.5385787 -0.4108177 0.5385787 0.5385787 -0.4244723 0.5385787 0.5385787 -0.4365675 0.5385787 0.5385787 -0.4474232 0.5385787 0.5385787 -0.45727 0.5385787 0.5385787 -0.4662797 0.5385787 0.5385787 -0.4745834 0.5385787 0.5385787 -0.4822838 0.5385787 0.5385787 -0.4894626 0.5385787 0.5385787 -0.4961862 0.5385787 0.5385787 -0.5025087 0.5385787 0.5385787 -0.5084753 0.5385787 0.5385787 -0.514124 0.5385787 0.5385787 -0.519487 0.5385787 0.5385787 -0.5245917 0.5385787 0.5385787 -0.529462 0.5385787 0.5385787 -0.5341183 0.5385787 0.5385787 -0.5385787 0.5385787 0.5385787 -0.5428591 0.5385787 0.5385787 -0.5469733 0.5385787 0.5385787 -0.5509339 0.5385787 0.5385787 -0.5547519 0.5385787 0.5385787 -0.5584371 0.5385787 0.5385787 -0.5619986 0.5385787 0.5385787 -0.5654443 0.5385787 0.5385787 -0.5687816 0.5385787 0.5385787 -0.092819 0.5428591 0.5385787 -0.2262531 0.5428591 0.5385787 -0.2875993 0.5428591 0.5385787 -0.3262122 0.5428591 0.5385787 -0.3544566 0.5428591 0.5385787 -0.3767383 0.5428591 0.5385787 -0.3951413 0.5428591 0.5385787 -0.4108177 0.5428591 0.5385787 -0.4244723 0.5428591 0.5385787 -0.4365675 0.5428591 0.5385787 -0.4474232 0.5428591 0.5385787 -0.45727 0.5428591 0.5385787 -0.4662797 0.5428591 0.5385787 -0.4745834 0.5428591 0.5385787 -0.4822838 0.5428591 0.5385787 -0.4894626 0.5428591 0.5385787 -0.4961862 0.5428591 0.5385787 -0.5025087 0.5428591 0.5385787 -0.5084753 0.5428591 0.5385787 -0.514124 0.5428591 0.5385787 -0.519487 0.5428591 0.5385787 -0.5245917 0.5428591 0.5385787 -0.529462 0.5428591 0.5385787 -0.5341183 0.5428591 0.5385787 -0.5385787 0.5428591 0.5385787 -0.5428591 0.5428591 0.5385787 -0.5469733 0.5428591 0.5385787 -0.5509339 0.5428591 0.5385787 -0.5547519 0.5428591 0.5385787 -0.5584371 0.5428591 0.5385787 -0.5619986 0.5428591 0.5385787 -0.5654443 0.5428591 0.5385787 -0.5687816 0.5428591 0.5385787 -0.092819 0.5469733 0.5385787 -0.2262531 0.5469733 0.5385787 -0.2875993 0.5469733 0.5385787 -0.3262122 0.5469733 0.5385787 -0.3544566 0.5469733 0.5385787 -0.3767383 0.5469733 0.5385787 -0.3951413 0.5469733 0.5385787 -0.4108177 0.5469733 0.5385787 -0.4244723 0.5469733 0.5385787 -0.4365675 0.5469733 0.5385787 -0.4474232 0.5469733 0.5385787 -0.45727 0.5469733 0.5385787 -0.4662797 0.5469733 0.5385787 -0.4745834 0.5469733 0.5385787 -0.4822838 0.5469733 0.5385787 -0.4894626 0.5469733 0.5385787 -0.4961862 0.5469733 0.5385787 -0.5025087 0.5469733 0.5385787 -0.5084753 0.5469733 0.5385787 -0.514124 0.5469733 0.5385787 -0.519487 0.5469733 0.5385787 -0.5245917 0.5469733 0.5385787 -0.529462 0.5469733 0.5385787 -0.5341183 0.5469733 0.5385787 -0.5385787 0.5469733 0.5385787 -0.5428591 0.5469733 0.5385787 -0.5469733 0.5469733 0.5385787 -0.5509339 0.5469733 0.5385787 -0.5547519 0.5469733 0.5385787 -0.5584371 0.5469733 0.5385787 -0.5619986 0.5469733 0.5385787 -0.5654443 0.5469733 0.5385787 -0.5687816 0.5469733 0.5385787 -0.092819 0.5509339 0.5385787 -0.2262531 0.5509339 0.5385787 -0.2875993 0.5509339 0.5385787 -0.3262122 0.5509339 0.5385787 -0.3544566 0.5509339 0.5385787 -0.3767383 0.5509339 0.5385787 -0.3951413 0.5509339 0.5385787 -0.4108177 0.5509339 0.5385787 -0.4244723 0.5509339 0.5385787 -0.4365675 0.5509339 0.5385787 -0.4474232 0.5509339 0.5385787 -0.45727 0.5509339 0.5385787 -0.4662797 0.5509339 0.5385787 -0.4745834 0.5509339 0.5385787 -0.4822838 0.5509339 0.5385787 -0.4894626 0.5509339 0.5385787 -0.4961862 0.5509339 0.5385787 -0.5025087 0.5509339 0.5385787 -0.5084753 0.5509339 0.5385787 -0.514124 0.5509339 0.5385787 -0.519487 0.5509339 0.5385787 -0.5245917 0.5509339 0.5385787 -0.529462 0.5509339 0.5385787 -0.5341183 0.5509339 0.5385787 -0.5385787 0.5509339 0.5385787 -0.5428591 0.5509339 0.5385787 -0.5469733 0.5509339 0.5385787 -0.5509339 0.5509339 0.5385787 -0.5547519 0.5509339 0.5385787 -0.5584371 0.5509339 0.5385787 -0.5619986 0.5509339 0.5385787 -0.5654443 0.5509339 0.5385787 -0.5687816 0.5509339 0.5385787 -0.092819 0.5547519 0.5385787 -0.2262531 0.5547519 0.5385787 -0.2875993 0.5547519 0.5385787 -0.3262122 0.5547519 0.5385787 -0.3544566 0.5547519 0.5385787 -0.3767383 0.5547519 0.5385787 -0.3951413 0.5547519 0.5385787 -0.4108177 0.5547519 0.5385787 -0.4244723 0.5547519 0.5385787 -0.4365675 0.5547519 0.5385787 -0.4474232 0.5547519 0.5385787 -0.45727 0.5547519 0.5385787 -0.4662797 0.5547519 0.5385787 -0.4745834 0.5547519 0.5385787 -0.4822838 0.5547519 0.5385787 -0.4894626 0.5547519 0.5385787 -0.4961862 0.5547519 0.5385787 -0.5025087 0.5547519 0.5385787 -0.5084753 0.5547519 0.5385787 -0.514124 0.5547519 0.5385787 -0.519487 0.5547519 0.5385787 -0.5245917 0.5547519 0.5385787 -0.529462 0.5547519 0.5385787 -0.5341183 0.5547519 0.5385787 -0.5385787 0.5547519 0.5385787 -0.5428591 0.5547519 0.5385787 -0.5469733 0.5547519 0.5385787 -0.5509339 0.5547519 0.5385787 -0.5547519 0.5547519 0.5385787 -0.5584371 0.5547519 0.5385787 -0.5619986 0.5547519 0.5385787 -0.5654443 0.5547519 0.5385787 -0.5687816 0.5547519 0.5385787 -0.092819 0.5584371 0.5385787 -0.2262531 0.5584371 0.5385787 -0.2875993 0.5584371 0.5385787 -0.3262122 0.5584371 0.5385787 -0.3544566 0.5584371 0.5385787 -0.3767383 0.5584371 0.5385787 -0.3951413 0.5584371 0.5385787 -0.4108177 0.5584371 0.5385787 -0.4244723 0.5584371 0.5385787 -0.4365675 0.5584371 0.5385787 -0.4474232 0.5584371 0.5385787 -0.45727 0.5584371 0.5385787 -0.4662797 0.5584371 0.5385787 -0.4745834 0.5584371 0.5385787 -0.4822838 0.5584371 0.5385787 -0.4894626 0.5584371 0.5385787 -0.4961862 0.5584371 0.5385787 -0.5025087 0.5584371 0.5385787 -0.5084753 0.5584371 0.5385787 -0.514124 0.5584371 0.5385787 -0.519487 0.5584371 0.5385787 -0.5245917 0.5584371 0.5385787 -0.529462 0.5584371 0.5385787 -0.5341183 0.5584371 0.5385787 -0.5385787 0.5584371 0.5385787 -0.5428591 0.5584371 0.5385787 -0.5469733 0.5584371 0.5385787 -0.5509339 0.5584371 0.5385787 -0.5547519 0.5584371 0.5385787 -0.5584371 0.5584371 0.5385787 -0.5619986 0.5584371 0.5385787 -0.5654443 0.5584371 0.5385787 -0.5687816 0.5584371 0.5385787 -0.092819 0.5619986 0.5385787 -0.2262531 0.5619986 0.5385787 -0.2875993 0.5619986 0.5385787 -0.3262122 0.5619986 0.5385787 -0.3544566 0.5619986 0.5385787 -0.3767383 0.5619986 0.5385787 -0.3951413 0.5619986 0.5385787 -0.4108177 0.5619986 0.5385787 -0.4244723 0.5619986 0.5385787 -0.4365675 0.5619986 0.5385787 -0.4474232 0.5619986 0.5385787 -0.45727 0.5619986 0.5385787 -0.4662797 0.5619986 0.5385787 -0.4745834 0.5619986 0.5385787 -0.4822838 0.5619986 0.5385787 -0.4894626 0.5619986 0.5385787 -0.4961862 0.5619986 0.5385787 -0.5025087 0.5619986 0.5385787 -0.5084753 0.5619986 0.5385787 -0.514124 0.5619986 0.5385787 -0.519487 0.5619986 0.5385787 -0.5245917 0.5619986 0.5385787 -0.529462 0.5619986 0.5385787 -0.5341183 0.5619986 0.5385787 -0.5385787 0.5619986 0.5385787 -0.5428591 0.5619986 0.5385787 -0.5469733 0.5619986 0.5385787 -0.5509339 0.5619986 0.5385787 -0.5547519 0.5619986 0.5385787 -0.5584371 0.5619986 0.5385787 -0.5619986 0.5619986 0.5385787 -0.5654443 0.5619986 0.5385787 -0.5687816 0.5619986 0.5385787 -0.092819 0.5654443 0.5385787 -0.2262531 0.5654443 0.5385787 -0.2875993 0.5654443 0.5385787 -0.3262122 0.5654443 0.5385787 -0.3544566 0.5654443 0.5385787 -0.3767383 0.5654443 0.5385787 -0.3951413 0.5654443 0.5385787 -0.4108177 0.5654443 0.5385787 -0.4244723 0.5654443 0.5385787 -0.4365675 0.5654443 0.5385787 -0.4474232 0.5654443 0.5385787 -0.45727 0.5654443 0.5385787 -0.4662797 0.5654443 0.5385787 -0.4745834 0.5654443 0.5385787 -0.4822838 0.5654443 0.5385787 -0.4894626 0.5654443 0.5385787 -0.4961862 0.5654443 0.5385787 -0.5025087 0.5654443 0.5385787 -0.5084753 0.5654443 0.5385787 -0.514124 0.5654443 0.5385787 -0.519487 0.5654443 0.5385787 -0.5245917 0.5654443 0.5385787 -0.529462 0.5654443 0.5385787 -0.5341183 0.5654443 0.5385787 -0.5385787 0.5654443 0.5385787 -0.5428591 0.5654443 0.5385787 -0.5469733 0.5654443 0.5385787 -0.5509339 0.5654443 0.5385787 -0.5547519 0.5654443 0.5385787 -0.5584371 0.5654443 0.5385787 -0.5619986 0.5654443 0.5385787 -0.5654443 0.5654443 0.5385787 -0.5687816 0.5654443 0.5385787 -0.092819 0.5687816 0.5385787 -0.2262531 0.5687816 0.5385787 -0.2875993 0.5687816 0.5385787 -0.3262122 0.5687816 0.5385787 -0.3544566 0.5687816 0.5385787 -0.3767383 0.5687816 0.5385787 -0.3951413 0.5687816 0.5385787 -0.4108177 0.5687816 0.5385787 -0.4244723 0.5687816 0.5385787 -0.4365675 0.5687816 0.5385787 -0.4474232 0.5687816 0.5385787 -0.45727 0.5687816 0.5385787 -0.4662797 0.5687816 0.5385787 -0.4745834 0.5687816 0.5385787 -0.4822838 0.5687816 0.5385787 -0.4894626 0.5687816 0.5385787 -0.4961862 0.5687816 0.5385787 -0.5025087 0.5687816 0.5385787 -0.5084753 0.5687816 0.5385787 -0.514124 0.5687816 0.5385787 -0.519487 0.5687816 0.5385787 -0.5245917 0.5687816 0.5385787 -0.529462 0.5687816 0.5385787 -0.5341183 0.5687816 0.5385787 -0.5385787 0.5687816 0.5385787 -0.5428591 0.5687816 0.5385787 -0.5469733 0.5687816 0.5385787 -0.5509339 0.5687816 0.5385787 -0.5547519 0.5687816 0.5385787 -0.5584371 0.5687816 0.5385787 -0.5619986 0.5687816 0.5385787 -0.5654443 0.5687816 0.5385787 -0.5687816 0.5687816 0.5385787 -0.092819 0.092819 0.5428591 -0.2262531 0.092819 0.5428591 -0.2875993 0.092819 0.5428591 -0.3262122 0.092819 0.5428591 -0.3544566 0.092819 0.5428591 -0.3767383 0.092819 0.5428591 -0.3951413 0.092819 0.5428591 -0.4108177 0.092819 0.5428591 -0.4244723 0.092819 0.5428591 -0.4365675 0.092819 0.5428591 -0.4474232 0.092819 0.5428591 -0.45727 0.092819 0.5428591 -0.4662797 0.092819 0.5428591 -0.4745834 0.092819 0.5428591 -0.4822838 0.092819 0.5428591 -0.4894626 0.092819 0.5428591 -0.4961862 0.092819 0.5428591 -0.5025087 0.092819 0.5428591 -0.5084753 0.092819 0.5428591 -0.514124 0.092819 0.5428591 -0.519487 0.092819 0.5428591 -0.5245917 0.092819 0.5428591 -0.529462 0.092819 0.5428591 -0.5341183 0.092819 0.5428591 -0.5385787 0.092819 0.5428591 -0.5428591 0.092819 0.5428591 -0.5469733 0.092819 0.5428591 -0.5509339 0.092819 0.5428591 -0.5547519 0.092819 0.5428591 -0.5584371 0.092819 0.5428591 -0.5619986 0.092819 0.5428591 -0.5654443 0.092819 0.5428591 -0.5687816 0.092819 0.5428591 -0.092819 0.2262531 0.5428591 -0.2262531 0.2262531 0.5428591 -0.2875993 0.2262531 0.5428591 -0.3262122 0.2262531 0.5428591 -0.3544566 0.2262531 0.5428591 -0.3767383 0.2262531 0.5428591 -0.3951413 0.2262531 0.5428591 -0.4108177 0.2262531 0.5428591 -0.4244723 0.2262531 0.5428591 -0.4365675 0.2262531 0.5428591 -0.4474232 0.2262531 0.5428591 -0.45727 0.2262531 0.5428591 -0.4662797 0.2262531 0.5428591 -0.4745834 0.2262531 0.5428591 -0.4822838 0.2262531 0.5428591 -0.4894626 0.2262531 0.5428591 -0.4961862 0.2262531 0.5428591 -0.5025087 0.2262531 0.5428591 -0.5084753 0.2262531 0.5428591 -0.514124 0.2262531 0.5428591 -0.519487 0.2262531 0.5428591 -0.5245917 0.2262531 0.5428591 -0.529462 0.2262531 0.5428591 -0.5341183 0.2262531 0.5428591 -0.5385787 0.2262531 0.5428591 -0.5428591 0.2262531 0.5428591 -0.5469733 0.2262531 0.5428591 -0.5509339 0.2262531 0.5428591 -0.5547519 0.2262531 0.5428591 -0.5584371 0.2262531 0.5428591 -0.5619986 0.2262531 0.5428591 -0.5654443 0.2262531 0.5428591 -0.5687816 0.2262531 0.5428591 -0.092819 0.2875993 0.5428591 -0.2262531 0.2875993 0.5428591 -0.2875993 0.2875993 0.5428591 -0.3262122 0.2875993 0.5428591 -0.3544566 0.2875993 0.5428591 -0.3767383 0.2875993 0.5428591 -0.3951413 0.2875993 0.5428591 -0.4108177 0.2875993 0.5428591 -0.4244723 0.2875993 0.5428591 -0.4365675 0.2875993 0.5428591 -0.4474232 0.2875993 0.5428591 -0.45727 0.2875993 0.5428591 -0.4662797 0.2875993 0.5428591 -0.4745834 0.2875993 0.5428591 -0.4822838 0.2875993 0.5428591 -0.4894626 0.2875993 0.5428591 -0.4961862 0.2875993 0.5428591 -0.5025087 0.2875993 0.5428591 -0.5084753 0.2875993 0.5428591 -0.514124 0.2875993 0.5428591 -0.519487 0.2875993 0.5428591 -0.5245917 0.2875993 0.5428591 -0.529462 0.2875993 0.5428591 -0.5341183 0.2875993 0.5428591 -0.5385787 0.2875993 0.5428591 -0.5428591 0.2875993 0.5428591 -0.5469733 0.2875993 0.5428591 -0.5509339 0.2875993 0.5428591 -0.5547519 0.2875993 0.5428591 -0.5584371 0.2875993 0.5428591 -0.5619986 0.2875993 0.5428591 -0.5654443 0.2875993 0.5428591 -0.5687816 0.2875993 0.5428591 -0.092819 0.3262122 0.5428591 -0.2262531 0.3262122 0.5428591 -0.2875993 0.3262122 0.5428591 -0.3262122 0.3262122 0.5428591 -0.3544566 0.3262122 0.5428591 -0.3767383 0.3262122 0.5428591 -0.3951413 0.3262122 0.5428591 -0.4108177 0.3262122 0.5428591 -0.4244723 0.3262122 0.5428591 -0.4365675 0.3262122 0.5428591 -0.4474232 0.3262122 0.5428591 -0.45727 0.3262122 0.5428591 -0.4662797 0.3262122 0.5428591 -0.4745834 0.3262122 0.5428591 -0.4822838 0.3262122 0.5428591 -0.4894626 0.3262122 0.5428591 -0.4961862 0.3262122 0.5428591 -0.5025087 0.3262122 0.5428591 -0.5084753 0.3262122 0.5428591 -0.514124 0.3262122 0.5428591 -0.519487 0.3262122 0.5428591 -0.5245917 0.3262122 0.5428591 -0.529462 0.3262122 0.5428591 -0.5341183 0.3262122 0.5428591 -0.5385787 0.3262122 0.5428591 -0.5428591 0.3262122 0.5428591 -0.5469733 0.3262122 0.5428591 -0.5509339 0.3262122 0.5428591 -0.5547519 0.3262122 0.5428591 -0.5584371 0.3262122 0.5428591 -0.5619986 0.3262122 0.5428591 -0.5654443 0.3262122 0.5428591 -0.5687816 0.3262122 0.5428591 -0.092819 0.3544566 0.5428591 -0.2262531 0.3544566 0.5428591 -0.2875993 0.3544566 0.5428591 -0.3262122 0.3544566 0.5428591 -0.3544566 0.3544566 0.5428591 -0.3767383 0.3544566 0.5428591 -0.3951413 0.3544566 0.5428591 -0.4108177 0.3544566 0.5428591 -0.4244723 0.3544566 0.5428591 -0.4365675 0.3544566 0.5428591 -0.4474232 0.3544566 0.5428591 -0.45727 0.3544566 0.5428591 -0.4662797 0.3544566 0.5428591 -0.4745834 0.3544566 0.5428591 -0.4822838 0.3544566 0.5428591 -0.4894626 0.3544566 0.5428591 -0.4961862 0.3544566 0.5428591 -0.5025087 0.3544566 0.5428591 -0.5084753 0.3544566 0.5428591 -0.514124 0.3544566 0.5428591 -0.519487 0.3544566 0.5428591 -0.5245917 0.3544566 0.5428591 -0.529462 0.3544566 0.5428591 -0.5341183 0.3544566 0.5428591 -0.5385787 0.3544566 0.5428591 -0.5428591 0.3544566 0.5428591 -0.5469733 0.3544566 0.5428591 -0.5509339 0.3544566 0.5428591 -0.5547519 0.3544566 0.5428591 -0.5584371 0.3544566 0.5428591 -0.5619986 0.3544566 0.5428591 -0.5654443 0.3544566 0.5428591 -0.5687816 0.3544566 0.5428591 -0.092819 0.3767383 0.5428591 -0.2262531 0.3767383 0.5428591 -0.2875993 0.3767383 0.5428591 -0.3262122 0.3767383 0.5428591 -0.3544566 0.3767383 0.5428591 -0.3767383 0.3767383 0.5428591 -0.3951413 0.3767383 0.5428591 -0.4108177 0.3767383 0.5428591 -0.4244723 0.3767383 0.5428591 -0.4365675 0.3767383 0.5428591 -0.4474232 0.3767383 0.5428591 -0.45727 0.3767383 0.5428591 -0.4662797 0.3767383 0.5428591 -0.4745834 0.3767383 0.5428591 -0.4822838 0.3767383 0.5428591 -0.4894626 0.3767383 0.5428591 -0.4961862 0.3767383 0.5428591 -0.5025087 0.3767383 0.5428591 -0.5084753 0.3767383 0.5428591 -0.514124 0.3767383 0.5428591 -0.519487 0.3767383 0.5428591 -0.5245917 0.3767383 0.5428591 -0.529462 0.3767383 0.5428591 -0.5341183 0.3767383 0.5428591 -0.5385787 0.3767383 0.5428591 -0.5428591 0.3767383 0.5428591 -0.5469733 0.3767383 0.5428591 -0.5509339 0.3767383 0.5428591 -0.5547519 0.3767383 0.5428591 -0.5584371 0.3767383 0.5428591 -0.5619986 0.3767383 0.5428591 -0.5654443 0.3767383 0.5428591 -0.5687816 0.3767383 0.5428591 -0.092819 0.3951413 0.5428591 -0.2262531 0.3951413 0.5428591 -0.2875993 0.3951413 0.5428591 -0.3262122 0.3951413 0.5428591 -0.3544566 0.3951413 0.5428591 -0.3767383 0.3951413 0.5428591 -0.3951413 0.3951413 0.5428591 -0.4108177 0.3951413 0.5428591 -0.4244723 0.3951413 0.5428591 -0.4365675 0.3951413 0.5428591 -0.4474232 0.3951413 0.5428591 -0.45727 0.3951413 0.5428591 -0.4662797 0.3951413 0.5428591 -0.4745834 0.3951413 0.5428591 -0.4822838 0.3951413 0.5428591 -0.4894626 0.3951413 0.5428591 -0.4961862 0.3951413 0.5428591 -0.5025087 0.3951413 0.5428591 -0.5084753 0.3951413 0.5428591 -0.514124 0.3951413 0.5428591 -0.519487 0.3951413 0.5428591 -0.5245917 0.3951413 0.5428591 -0.529462 0.3951413 0.5428591 -0.5341183 0.3951413 0.5428591 -0.5385787 0.3951413 0.5428591 -0.5428591 0.3951413 0.5428591 -0.5469733 0.3951413 0.5428591 -0.5509339 0.3951413 0.5428591 -0.5547519 0.3951413 0.5428591 -0.5584371 0.3951413 0.5428591 -0.5619986 0.3951413 0.5428591 -0.5654443 0.3951413 0.5428591 -0.5687816 0.3951413 0.5428591 -0.092819 0.4108177 0.5428591 -0.2262531 0.4108177 0.5428591 -0.2875993 0.4108177 0.5428591 -0.3262122 0.4108177 0.5428591 -0.3544566 0.4108177 0.5428591 -0.3767383 0.4108177 0.5428591 -0.3951413 0.4108177 0.5428591 -0.4108177 0.4108177 0.5428591 -0.4244723 0.4108177 0.5428591 -0.4365675 0.4108177 0.5428591 -0.4474232 0.4108177 0.5428591 -0.45727 0.4108177 0.5428591 -0.4662797 0.4108177 0.5428591 -0.4745834 0.4108177 0.5428591 -0.4822838 0.4108177 0.5428591 -0.4894626 0.4108177 0.5428591 -0.4961862 0.4108177 0.5428591 -0.5025087 0.4108177 0.5428591 -0.5084753 0.4108177 0.5428591 -0.514124 0.4108177 0.5428591 -0.519487 0.4108177 0.5428591 -0.5245917 0.4108177 0.5428591 -0.529462 0.4108177 0.5428591 -0.5341183 0.4108177 0.5428591 -0.5385787 0.4108177 0.5428591 -0.5428591 0.4108177 0.5428591 -0.5469733 0.4108177 0.5428591 -0.5509339 0.4108177 0.5428591 -0.5547519 0.4108177 0.5428591 -0.5584371 0.4108177 0.5428591 -0.5619986 0.4108177 0.5428591 -0.5654443 0.4108177 0.5428591 -0.5687816 0.4108177 0.5428591 -0.092819 0.4244723 0.5428591 -0.2262531 0.4244723 0.5428591 -0.2875993 0.4244723 0.5428591 -0.3262122 0.4244723 0.5428591 -0.3544566 0.4244723 0.5428591 -0.3767383 0.4244723 0.5428591 -0.3951413 0.4244723 0.5428591 -0.4108177 0.4244723 0.5428591 -0.4244723 0.4244723 0.5428591 -0.4365675 0.4244723 0.5428591 -0.4474232 0.4244723 0.5428591 -0.45727 0.4244723 0.5428591 -0.4662797 0.4244723 0.5428591 -0.4745834 0.4244723 0.5428591 -0.4822838 0.4244723 0.5428591 -0.4894626 0.4244723 0.5428591 -0.4961862 0.4244723 0.5428591 -0.5025087 0.4244723 0.5428591 -0.5084753 0.4244723 0.5428591 -0.514124 0.4244723 0.5428591 -0.519487 0.4244723 0.5428591 -0.5245917 0.4244723 0.5428591 -0.529462 0.4244723 0.5428591 -0.5341183 0.4244723 0.5428591 -0.5385787 0.4244723 0.5428591 -0.5428591 0.4244723 0.5428591 -0.5469733 0.4244723 0.5428591 -0.5509339 0.4244723 0.5428591 -0.5547519 0.4244723 0.5428591 -0.5584371 0.4244723 0.5428591 -0.5619986 0.4244723 0.5428591 -0.5654443 0.4244723 0.5428591 -0.5687816 0.4244723 0.5428591 -0.092819 0.4365675 0.5428591 -0.2262531 0.4365675 0.5428591 -0.2875993 0.4365675 0.5428591 -0.3262122 0.4365675 0.5428591 -0.3544566 0.4365675 0.5428591 -0.3767383 0.4365675 0.5428591 -0.3951413 0.4365675 0.5428591 -0.4108177 0.4365675 0.5428591 -0.4244723 0.4365675 0.5428591 -0.4365675 0.4365675 0.5428591 -0.4474232 0.4365675 0.5428591 -0.45727 0.4365675 0.5428591 -0.4662797 0.4365675 0.5428591 -0.4745834 0.4365675 0.5428591 -0.4822838 0.4365675 0.5428591 -0.4894626 0.4365675 0.5428591 -0.4961862 0.4365675 0.5428591 -0.5025087 0.4365675 0.5428591 -0.5084753 0.4365675 0.5428591 -0.514124 0.4365675 0.5428591 -0.519487 0.4365675 0.5428591 -0.5245917 0.4365675 0.5428591 -0.529462 0.4365675 0.5428591 -0.5341183 0.4365675 0.5428591 -0.5385787 0.4365675 0.5428591 -0.5428591 0.4365675 0.5428591 -0.5469733 0.4365675 0.5428591 -0.5509339 0.4365675 0.5428591 -0.5547519 0.4365675 0.5428591 -0.5584371 0.4365675 0.5428591 -0.5619986 0.4365675 0.5428591 -0.5654443 0.4365675 0.5428591 -0.5687816 0.4365675 0.5428591 -0.092819 0.4474232 0.5428591 -0.2262531 0.4474232 0.5428591 -0.2875993 0.4474232 0.5428591 -0.3262122 0.4474232 0.5428591 -0.3544566 0.4474232 0.5428591 -0.3767383 0.4474232 0.5428591 -0.3951413 0.4474232 0.5428591 -0.4108177 0.4474232 0.5428591 -0.4244723 0.4474232 0.5428591 -0.4365675 0.4474232 0.5428591 -0.4474232 0.4474232 0.5428591 -0.45727 0.4474232 0.5428591 -0.4662797 0.4474232 0.5428591 -0.4745834 0.4474232 0.5428591 -0.4822838 0.4474232 0.5428591 -0.4894626 0.4474232 0.5428591 -0.4961862 0.4474232 0.5428591 -0.5025087 0.4474232 0.5428591 -0.5084753 0.4474232 0.5428591 -0.514124 0.4474232 0.5428591 -0.519487 0.4474232 0.5428591 -0.5245917 0.4474232 0.5428591 -0.529462 0.4474232 0.5428591 -0.5341183 0.4474232 0.5428591 -0.5385787 0.4474232 0.5428591 -0.5428591 0.4474232 0.5428591 -0.5469733 0.4474232 0.5428591 -0.5509339 0.4474232 0.5428591 -0.5547519 0.4474232 0.5428591 -0.5584371 0.4474232 0.5428591 -0.5619986 0.4474232 0.5428591 -0.5654443 0.4474232 0.5428591 -0.5687816 0.4474232 0.5428591 -0.092819 0.45727 0.5428591 -0.2262531 0.45727 0.5428591 -0.2875993 0.45727 0.5428591 -0.3262122 0.45727 0.5428591 -0.3544566 0.45727 0.5428591 -0.3767383 0.45727 0.5428591 -0.3951413 0.45727 0.5428591 -0.4108177 0.45727 0.5428591 -0.4244723 0.45727 0.5428591 -0.4365675 0.45727 0.5428591 -0.4474232 0.45727 0.5428591 -0.45727 0.45727 0.5428591 -0.4662797 0.45727 0.5428591 -0.4745834 0.45727 0.5428591 -0.4822838 0.45727 0.5428591 -0.4894626 0.45727 0.5428591 -0.4961862 0.45727 0.5428591 -0.5025087 0.45727 0.5428591 -0.5084753 0.45727 0.5428591 -0.514124 0.45727 0.5428591 -0.519487 0.45727 0.5428591 -0.5245917 0.45727 0.5428591 -0.529462 0.45727 0.5428591 -0.5341183 0.45727 0.5428591 -0.5385787 0.45727 0.5428591 -0.5428591 0.45727 0.5428591 -0.5469733 0.45727 0.5428591 -0.5509339 0.45727 0.5428591 -0.5547519 0.45727 0.5428591 -0.5584371 0.45727 0.5428591 -0.5619986 0.45727 0.5428591 -0.5654443 0.45727 0.5428591 -0.5687816 0.45727 0.5428591 -0.092819 0.4662797 0.5428591 -0.2262531 0.4662797 0.5428591 -0.2875993 0.4662797 0.5428591 -0.3262122 0.4662797 0.5428591 -0.3544566 0.4662797 0.5428591 -0.3767383 0.4662797 0.5428591 -0.3951413 0.4662797 0.5428591 -0.4108177 0.4662797 0.5428591 -0.4244723 0.4662797 0.5428591 -0.4365675 0.4662797 0.5428591 -0.4474232 0.4662797 0.5428591 -0.45727 0.4662797 0.5428591 -0.4662797 0.4662797 0.5428591 -0.4745834 0.4662797 0.5428591 -0.4822838 0.4662797 0.5428591 -0.4894626 0.4662797 0.5428591 -0.4961862 0.4662797 0.5428591 -0.5025087 0.4662797 0.5428591 -0.5084753 0.4662797 0.5428591 -0.514124 0.4662797 0.5428591 -0.519487 0.4662797 0.5428591 -0.5245917 0.4662797 0.5428591 -0.529462 0.4662797 0.5428591 -0.5341183 0.4662797 0.5428591 -0.5385787 0.4662797 0.5428591 -0.5428591 0.4662797 0.5428591 -0.5469733 0.4662797 0.5428591 -0.5509339 0.4662797 0.5428591 -0.5547519 0.4662797 0.5428591 -0.5584371 0.4662797 0.5428591 -0.5619986 0.4662797 0.5428591 -0.5654443 0.4662797 0.5428591 -0.5687816 0.4662797 0.5428591 -0.092819 0.4745834 0.5428591 -0.2262531 0.4745834 0.5428591 -0.2875993 0.4745834 0.5428591 -0.3262122 0.4745834 0.5428591 -0.3544566 0.4745834 0.5428591 -0.3767383 0.4745834 0.5428591 -0.3951413 0.4745834 0.5428591 -0.4108177 0.4745834 0.5428591 -0.4244723 0.4745834 0.5428591 -0.4365675 0.4745834 0.5428591 -0.4474232 0.4745834 0.5428591 -0.45727 0.4745834 0.5428591 -0.4662797 0.4745834 0.5428591 -0.4745834 0.4745834 0.5428591 -0.4822838 0.4745834 0.5428591 -0.4894626 0.4745834 0.5428591 -0.4961862 0.4745834 0.5428591 -0.5025087 0.4745834 0.5428591 -0.5084753 0.4745834 0.5428591 -0.514124 0.4745834 0.5428591 -0.519487 0.4745834 0.5428591 -0.5245917 0.4745834 0.5428591 -0.529462 0.4745834 0.5428591 -0.5341183 0.4745834 0.5428591 -0.5385787 0.4745834 0.5428591 -0.5428591 0.4745834 0.5428591 -0.5469733 0.4745834 0.5428591 -0.5509339 0.4745834 0.5428591 -0.5547519 0.4745834 0.5428591 -0.5584371 0.4745834 0.5428591 -0.5619986 0.4745834 0.5428591 -0.5654443 0.4745834 0.5428591 -0.5687816 0.4745834 0.5428591 -0.092819 0.4822838 0.5428591 -0.2262531 0.4822838 0.5428591 -0.2875993 0.4822838 0.5428591 -0.3262122 0.4822838 0.5428591 -0.3544566 0.4822838 0.5428591 -0.3767383 0.4822838 0.5428591 -0.3951413 0.4822838 0.5428591 -0.4108177 0.4822838 0.5428591 -0.4244723 0.4822838 0.5428591 -0.4365675 0.4822838 0.5428591 -0.4474232 0.4822838 0.5428591 -0.45727 0.4822838 0.5428591 -0.4662797 0.4822838 0.5428591 -0.4745834 0.4822838 0.5428591 -0.4822838 0.4822838 0.5428591 -0.4894626 0.4822838 0.5428591 -0.4961862 0.4822838 0.5428591 -0.5025087 0.4822838 0.5428591 -0.5084753 0.4822838 0.5428591 -0.514124 0.4822838 0.5428591 -0.519487 0.4822838 0.5428591 -0.5245917 0.4822838 0.5428591 -0.529462 0.4822838 0.5428591 -0.5341183 0.4822838 0.5428591 -0.5385787 0.4822838 0.5428591 -0.5428591 0.4822838 0.5428591 -0.5469733 0.4822838 0.5428591 -0.5509339 0.4822838 0.5428591 -0.5547519 0.4822838 0.5428591 -0.5584371 0.4822838 0.5428591 -0.5619986 0.4822838 0.5428591 -0.5654443 0.4822838 0.5428591 -0.5687816 0.4822838 0.5428591 -0.092819 0.4894626 0.5428591 -0.2262531 0.4894626 0.5428591 -0.2875993 0.4894626 0.5428591 -0.3262122 0.4894626 0.5428591 -0.3544566 0.4894626 0.5428591 -0.3767383 0.4894626 0.5428591 -0.3951413 0.4894626 0.5428591 -0.4108177 0.4894626 0.5428591 -0.4244723 0.4894626 0.5428591 -0.4365675 0.4894626 0.5428591 -0.4474232 0.4894626 0.5428591 -0.45727 0.4894626 0.5428591 -0.4662797 0.4894626 0.5428591 -0.4745834 0.4894626 0.5428591 -0.4822838 0.4894626 0.5428591 -0.4894626 0.4894626 0.5428591 -0.4961862 0.4894626 0.5428591 -0.5025087 0.4894626 0.5428591 -0.5084753 0.4894626 0.5428591 -0.514124 0.4894626 0.5428591 -0.519487 0.4894626 0.5428591 -0.5245917 0.4894626 0.5428591 -0.529462 0.4894626 0.5428591 -0.5341183 0.4894626 0.5428591 -0.5385787 0.4894626 0.5428591 -0.5428591 0.4894626 0.5428591 -0.5469733 0.4894626 0.5428591 -0.5509339 0.4894626 0.5428591 -0.5547519 0.4894626 0.5428591 -0.5584371 0.4894626 0.5428591 -0.5619986 0.4894626 0.5428591 -0.5654443 0.4894626 0.5428591 -0.5687816 0.4894626 0.5428591 -0.092819 0.4961862 0.5428591 -0.2262531 0.4961862 0.5428591 -0.2875993 0.4961862 0.5428591 -0.3262122 0.4961862 0.5428591 -0.3544566 0.4961862 0.5428591 -0.3767383 0.4961862 0.5428591 -0.3951413 0.4961862 0.5428591 -0.4108177 0.4961862 0.5428591 -0.4244723 0.4961862 0.5428591 -0.4365675 0.4961862 0.5428591 -0.4474232 0.4961862 0.5428591 -0.45727 0.4961862 0.5428591 -0.4662797 0.4961862 0.5428591 -0.4745834 0.4961862 0.5428591 -0.4822838 0.4961862 0.5428591 -0.4894626 0.4961862 0.5428591 -0.4961862 0.4961862 0.5428591 -0.5025087 0.4961862 0.5428591 -0.5084753 0.4961862 0.5428591 -0.514124 0.4961862 0.5428591 -0.519487 0.4961862 0.5428591 -0.5245917 0.4961862 0.5428591 -0.529462 0.4961862 0.5428591 -0.5341183 0.4961862 0.5428591 -0.5385787 0.4961862 0.5428591 -0.5428591 0.4961862 0.5428591 -0.5469733 0.4961862 0.5428591 -0.5509339 0.4961862 0.5428591 -0.5547519 0.4961862 0.5428591 -0.5584371 0.4961862 0.5428591 -0.5619986 0.4961862 0.5428591 -0.5654443 0.4961862 0.5428591 -0.5687816 0.4961862 0.5428591 -0.092819 0.5025087 0.5428591 -0.2262531 0.5025087 0.5428591 -0.2875993 0.5025087 0.5428591 -0.3262122 0.5025087 0.5428591 -0.3544566 0.5025087 0.5428591 -0.3767383 0.5025087 0.5428591 -0.3951413 0.5025087 0.5428591 -0.4108177 0.5025087 0.5428591 -0.4244723 0.5025087 0.5428591 -0.4365675 0.5025087 0.5428591 -0.4474232 0.5025087 0.5428591 -0.45727 0.5025087 0.5428591 -0.4662797 0.5025087 0.5428591 -0.4745834 0.5025087 0.5428591 -0.4822838 0.5025087 0.5428591 -0.4894626 0.5025087 0.5428591 -0.4961862 0.5025087 0.5428591 -0.5025087 0.5025087 0.5428591 -0.5084753 0.5025087 0.5428591 -0.514124 0.5025087 0.5428591 -0.519487 0.5025087 0.5428591 -0.5245917 0.5025087 0.5428591 -0.529462 0.5025087 0.5428591 -0.5341183 0.5025087 0.5428591 -0.5385787 0.5025087 0.5428591 -0.5428591 0.5025087 0.5428591 -0.5469733 0.5025087 0.5428591 -0.5509339 0.5025087 0.5428591 -0.5547519 0.5025087 0.5428591 -0.5584371 0.5025087 0.5428591 -0.5619986 0.5025087 0.5428591 -0.5654443 0.5025087 0.5428591 -0.5687816 0.5025087 0.5428591 -0.092819 0.5084753 0.5428591 -0.2262531 0.5084753 0.5428591 -0.2875993 0.5084753 0.5428591 -0.3262122 0.5084753 0.5428591 -0.3544566 0.5084753 0.5428591 -0.3767383 0.5084753 0.5428591 -0.3951413 0.5084753 0.5428591 -0.4108177 0.5084753 0.5428591 -0.4244723 0.5084753 0.5428591 -0.4365675 0.5084753 0.5428591 -0.4474232 0.5084753 0.5428591 -0.45727 0.5084753 0.5428591 -0.4662797 0.5084753 0.5428591 -0.4745834 0.5084753 0.5428591 -0.4822838 0.5084753 0.5428591 -0.4894626 0.5084753 0.5428591 -0.4961862 0.5084753 0.5428591 -0.5025087 0.5084753 0.5428591 -0.5084753 0.5084753 0.5428591 -0.514124 0.5084753 0.5428591 -0.519487 0.5084753 0.5428591 -0.5245917 0.5084753 0.5428591 -0.529462 0.5084753 0.5428591 -0.5341183 0.5084753 0.5428591 -0.5385787 0.5084753 0.5428591 -0.5428591 0.5084753 0.5428591 -0.5469733 0.5084753 0.5428591 -0.5509339 0.5084753 0.5428591 -0.5547519 0.5084753 0.5428591 -0.5584371 0.5084753 0.5428591 -0.5619986 0.5084753 0.5428591 -0.5654443 0.5084753 0.5428591 -0.5687816 0.5084753 0.5428591 -0.092819 0.514124 0.5428591 -0.2262531 0.514124 0.5428591 -0.2875993 0.514124 0.5428591 -0.3262122 0.514124 0.5428591 -0.3544566 0.514124 0.5428591 -0.3767383 0.514124 0.5428591 -0.3951413 0.514124 0.5428591 -0.4108177 0.514124 0.5428591 -0.4244723 0.514124 0.5428591 -0.4365675 0.514124 0.5428591 -0.4474232 0.514124 0.5428591 -0.45727 0.514124 0.5428591 -0.4662797 0.514124 0.5428591 -0.4745834 0.514124 0.5428591 -0.4822838 0.514124 0.5428591 -0.4894626 0.514124 0.5428591 -0.4961862 0.514124 0.5428591 -0.5025087 0.514124 0.5428591 -0.5084753 0.514124 0.5428591 -0.514124 0.514124 0.5428591 -0.519487 0.514124 0.5428591 -0.5245917 0.514124 0.5428591 -0.529462 0.514124 0.5428591 -0.5341183 0.514124 0.5428591 -0.5385787 0.514124 0.5428591 -0.5428591 0.514124 0.5428591 -0.5469733 0.514124 0.5428591 -0.5509339 0.514124 0.5428591 -0.5547519 0.514124 0.5428591 -0.5584371 0.514124 0.5428591 -0.5619986 0.514124 0.5428591 -0.5654443 0.514124 0.5428591 -0.5687816 0.514124 0.5428591 -0.092819 0.519487 0.5428591 -0.2262531 0.519487 0.5428591 -0.2875993 0.519487 0.5428591 -0.3262122 0.519487 0.5428591 -0.3544566 0.519487 0.5428591 -0.3767383 0.519487 0.5428591 -0.3951413 0.519487 0.5428591 -0.4108177 0.519487 0.5428591 -0.4244723 0.519487 0.5428591 -0.4365675 0.519487 0.5428591 -0.4474232 0.519487 0.5428591 -0.45727 0.519487 0.5428591 -0.4662797 0.519487 0.5428591 -0.4745834 0.519487 0.5428591 -0.4822838 0.519487 0.5428591 -0.4894626 0.519487 0.5428591 -0.4961862 0.519487 0.5428591 -0.5025087 0.519487 0.5428591 -0.5084753 0.519487 0.5428591 -0.514124 0.519487 0.5428591 -0.519487 0.519487 0.5428591 -0.5245917 0.519487 0.5428591 -0.529462 0.519487 0.5428591 -0.5341183 0.519487 0.5428591 -0.5385787 0.519487 0.5428591 -0.5428591 0.519487 0.5428591 -0.5469733 0.519487 0.5428591 -0.5509339 0.519487 0.5428591 -0.5547519 0.519487 0.5428591 -0.5584371 0.519487 0.5428591 -0.5619986 0.519487 0.5428591 -0.5654443 0.519487 0.5428591 -0.5687816 0.519487 0.5428591 -0.092819 0.5245917 0.5428591 -0.2262531 0.5245917 0.5428591 -0.2875993 0.5245917 0.5428591 -0.3262122 0.5245917 0.5428591 -0.3544566 0.5245917 0.5428591 -0.3767383 0.5245917 0.5428591 -0.3951413 0.5245917 0.5428591 -0.4108177 0.5245917 0.5428591 -0.4244723 0.5245917 0.5428591 -0.4365675 0.5245917 0.5428591 -0.4474232 0.5245917 0.5428591 -0.45727 0.5245917 0.5428591 -0.4662797 0.5245917 0.5428591 -0.4745834 0.5245917 0.5428591 -0.4822838 0.5245917 0.5428591 -0.4894626 0.5245917 0.5428591 -0.4961862 0.5245917 0.5428591 -0.5025087 0.5245917 0.5428591 -0.5084753 0.5245917 0.5428591 -0.514124 0.5245917 0.5428591 -0.519487 0.5245917 0.5428591 -0.5245917 0.5245917 0.5428591 -0.529462 0.5245917 0.5428591 -0.5341183 0.5245917 0.5428591 -0.5385787 0.5245917 0.5428591 -0.5428591 0.5245917 0.5428591 -0.5469733 0.5245917 0.5428591 -0.5509339 0.5245917 0.5428591 -0.5547519 0.5245917 0.5428591 -0.5584371 0.5245917 0.5428591 -0.5619986 0.5245917 0.5428591 -0.5654443 0.5245917 0.5428591 -0.5687816 0.5245917 0.5428591 -0.092819 0.529462 0.5428591 -0.2262531 0.529462 0.5428591 -0.2875993 0.529462 0.5428591 -0.3262122 0.529462 0.5428591 -0.3544566 0.529462 0.5428591 -0.3767383 0.529462 0.5428591 -0.3951413 0.529462 0.5428591 -0.4108177 0.529462 0.5428591 -0.4244723 0.529462 0.5428591 -0.4365675 0.529462 0.5428591 -0.4474232 0.529462 0.5428591 -0.45727 0.529462 0.5428591 -0.4662797 0.529462 0.5428591 -0.4745834 0.529462 0.5428591 -0.4822838 0.529462 0.5428591 -0.4894626 0.529462 0.5428591 -0.4961862 0.529462 0.5428591 -0.5025087 0.529462 0.5428591 -0.5084753 0.529462 0.5428591 -0.514124 0.529462 0.5428591 -0.519487 0.529462 0.5428591 -0.5245917 0.529462 0.5428591 -0.529462 0.529462 0.5428591 -0.5341183 0.529462 0.5428591 -0.5385787 0.529462 0.5428591 -0.5428591 0.529462 0.5428591 -0.5469733 0.529462 0.5428591 -0.5509339 0.529462 0.5428591 -0.5547519 0.529462 0.5428591 -0.5584371 0.529462 0.5428591 -0.5619986 0.529462 0.5428591 -0.5654443 0.529462 0.5428591 -0.5687816 0.529462 0.5428591 -0.092819 0.5341183 0.5428591 -0.2262531 0.5341183 0.5428591 -0.2875993 0.5341183 0.5428591 -0.3262122 0.5341183 0.5428591 -0.3544566 0.5341183 0.5428591 -0.3767383 0.5341183 0.5428591 -0.3951413 0.5341183 0.5428591 -0.4108177 0.5341183 0.5428591 -0.4244723 0.5341183 0.5428591 -0.4365675 0.5341183 0.5428591 -0.4474232 0.5341183 0.5428591 -0.45727 0.5341183 0.5428591 -0.4662797 0.5341183 0.5428591 -0.4745834 0.5341183 0.5428591 -0.4822838 0.5341183 0.5428591 -0.4894626 0.5341183 0.5428591 -0.4961862 0.5341183 0.5428591 -0.5025087 0.5341183 0.5428591 -0.5084753 0.5341183 0.5428591 -0.514124 0.5341183 0.5428591 -0.519487 0.5341183 0.5428591 -0.5245917 0.5341183 0.5428591 -0.529462 0.5341183 0.5428591 -0.5341183 0.5341183 0.5428591 -0.5385787 0.5341183 0.5428591 -0.5428591 0.5341183 0.5428591 -0.5469733 0.5341183 0.5428591 -0.5509339 0.5341183 0.5428591 -0.5547519 0.5341183 0.5428591 -0.5584371 0.5341183 0.5428591 -0.5619986 0.5341183 0.5428591 -0.5654443 0.5341183 0.5428591 -0.5687816 0.5341183 0.5428591 -0.092819 0.5385787 0.5428591 -0.2262531 0.5385787 0.5428591 -0.2875993 0.5385787 0.5428591 -0.3262122 0.5385787 0.5428591 -0.3544566 0.5385787 0.5428591 -0.3767383 0.5385787 0.5428591 -0.3951413 0.5385787 0.5428591 -0.4108177 0.5385787 0.5428591 -0.4244723 0.5385787 0.5428591 -0.4365675 0.5385787 0.5428591 -0.4474232 0.5385787 0.5428591 -0.45727 0.5385787 0.5428591 -0.4662797 0.5385787 0.5428591 -0.4745834 0.5385787 0.5428591 -0.4822838 0.5385787 0.5428591 -0.4894626 0.5385787 0.5428591 -0.4961862 0.5385787 0.5428591 -0.5025087 0.5385787 0.5428591 -0.5084753 0.5385787 0.5428591 -0.514124 0.5385787 0.5428591 -0.519487 0.5385787 0.5428591 -0.5245917 0.5385787 0.5428591 -0.529462 0.5385787 0.5428591 -0.5341183 0.5385787 0.5428591 -0.5385787 0.5385787 0.5428591 -0.5428591 0.5385787 0.5428591 -0.5469733 0.5385787 0.5428591 -0.5509339 0.5385787 0.5428591 -0.5547519 0.5385787 0.5428591 -0.5584371 0.5385787 0.5428591 -0.5619986 0.5385787 0.5428591 -0.5654443 0.5385787 0.5428591 -0.5687816 0.5385787 0.5428591 -0.092819 0.5428591 0.5428591 -0.2262531 0.5428591 0.5428591 -0.2875993 0.5428591 0.5428591 -0.3262122 0.5428591 0.5428591 -0.3544566 0.5428591 0.5428591 -0.3767383 0.5428591 0.5428591 -0.3951413 0.5428591 0.5428591 -0.4108177 0.5428591 0.5428591 -0.4244723 0.5428591 0.5428591 -0.4365675 0.5428591 0.5428591 -0.4474232 0.5428591 0.5428591 -0.45727 0.5428591 0.5428591 -0.4662797 0.5428591 0.5428591 -0.4745834 0.5428591 0.5428591 -0.4822838 0.5428591 0.5428591 -0.4894626 0.5428591 0.5428591 -0.4961862 0.5428591 0.5428591 -0.5025087 0.5428591 0.5428591 -0.5084753 0.5428591 0.5428591 -0.514124 0.5428591 0.5428591 -0.519487 0.5428591 0.5428591 -0.5245917 0.5428591 0.5428591 -0.529462 0.5428591 0.5428591 -0.5341183 0.5428591 0.5428591 -0.5385787 0.5428591 0.5428591 -0.5428591 0.5428591 0.5428591 -0.5469733 0.5428591 0.5428591 -0.5509339 0.5428591 0.5428591 -0.5547519 0.5428591 0.5428591 -0.5584371 0.5428591 0.5428591 -0.5619986 0.5428591 0.5428591 -0.5654443 0.5428591 0.5428591 -0.5687816 0.5428591 0.5428591 -0.092819 0.5469733 0.5428591 -0.2262531 0.5469733 0.5428591 -0.2875993 0.5469733 0.5428591 -0.3262122 0.5469733 0.5428591 -0.3544566 0.5469733 0.5428591 -0.3767383 0.5469733 0.5428591 -0.3951413 0.5469733 0.5428591 -0.4108177 0.5469733 0.5428591 -0.4244723 0.5469733 0.5428591 -0.4365675 0.5469733 0.5428591 -0.4474232 0.5469733 0.5428591 -0.45727 0.5469733 0.5428591 -0.4662797 0.5469733 0.5428591 -0.4745834 0.5469733 0.5428591 -0.4822838 0.5469733 0.5428591 -0.4894626 0.5469733 0.5428591 -0.4961862 0.5469733 0.5428591 -0.5025087 0.5469733 0.5428591 -0.5084753 0.5469733 0.5428591 -0.514124 0.5469733 0.5428591 -0.519487 0.5469733 0.5428591 -0.5245917 0.5469733 0.5428591 -0.529462 0.5469733 0.5428591 -0.5341183 0.5469733 0.5428591 -0.5385787 0.5469733 0.5428591 -0.5428591 0.5469733 0.5428591 -0.5469733 0.5469733 0.5428591 -0.5509339 0.5469733 0.5428591 -0.5547519 0.5469733 0.5428591 -0.5584371 0.5469733 0.5428591 -0.5619986 0.5469733 0.5428591 -0.5654443 0.5469733 0.5428591 -0.5687816 0.5469733 0.5428591 -0.092819 0.5509339 0.5428591 -0.2262531 0.5509339 0.5428591 -0.2875993 0.5509339 0.5428591 -0.3262122 0.5509339 0.5428591 -0.3544566 0.5509339 0.5428591 -0.3767383 0.5509339 0.5428591 -0.3951413 0.5509339 0.5428591 -0.4108177 0.5509339 0.5428591 -0.4244723 0.5509339 0.5428591 -0.4365675 0.5509339 0.5428591 -0.4474232 0.5509339 0.5428591 -0.45727 0.5509339 0.5428591 -0.4662797 0.5509339 0.5428591 -0.4745834 0.5509339 0.5428591 -0.4822838 0.5509339 0.5428591 -0.4894626 0.5509339 0.5428591 -0.4961862 0.5509339 0.5428591 -0.5025087 0.5509339 0.5428591 -0.5084753 0.5509339 0.5428591 -0.514124 0.5509339 0.5428591 -0.519487 0.5509339 0.5428591 -0.5245917 0.5509339 0.5428591 -0.529462 0.5509339 0.5428591 -0.5341183 0.5509339 0.5428591 -0.5385787 0.5509339 0.5428591 -0.5428591 0.5509339 0.5428591 -0.5469733 0.5509339 0.5428591 -0.5509339 0.5509339 0.5428591 -0.5547519 0.5509339 0.5428591 -0.5584371 0.5509339 0.5428591 -0.5619986 0.5509339 0.5428591 -0.5654443 0.5509339 0.5428591 -0.5687816 0.5509339 0.5428591 -0.092819 0.5547519 0.5428591 -0.2262531 0.5547519 0.5428591 -0.2875993 0.5547519 0.5428591 -0.3262122 0.5547519 0.5428591 -0.3544566 0.5547519 0.5428591 -0.3767383 0.5547519 0.5428591 -0.3951413 0.5547519 0.5428591 -0.4108177 0.5547519 0.5428591 -0.4244723 0.5547519 0.5428591 -0.4365675 0.5547519 0.5428591 -0.4474232 0.5547519 0.5428591 -0.45727 0.5547519 0.5428591 -0.4662797 0.5547519 0.5428591 -0.4745834 0.5547519 0.5428591 -0.4822838 0.5547519 0.5428591 -0.4894626 0.5547519 0.5428591 -0.4961862 0.5547519 0.5428591 -0.5025087 0.5547519 0.5428591 -0.5084753 0.5547519 0.5428591 -0.514124 0.5547519 0.5428591 -0.519487 0.5547519 0.5428591 -0.5245917 0.5547519 0.5428591 -0.529462 0.5547519 0.5428591 -0.5341183 0.5547519 0.5428591 -0.5385787 0.5547519 0.5428591 -0.5428591 0.5547519 0.5428591 -0.5469733 0.5547519 0.5428591 -0.5509339 0.5547519 0.5428591 -0.5547519 0.5547519 0.5428591 -0.5584371 0.5547519 0.5428591 -0.5619986 0.5547519 0.5428591 -0.5654443 0.5547519 0.5428591 -0.5687816 0.5547519 0.5428591 -0.092819 0.5584371 0.5428591 -0.2262531 0.5584371 0.5428591 -0.2875993 0.5584371 0.5428591 -0.3262122 0.5584371 0.5428591 -0.3544566 0.5584371 0.5428591 -0.3767383 0.5584371 0.5428591 -0.3951413 0.5584371 0.5428591 -0.4108177 0.5584371 0.5428591 -0.4244723 0.5584371 0.5428591 -0.4365675 0.5584371 0.5428591 -0.4474232 0.5584371 0.5428591 -0.45727 0.5584371 0.5428591 -0.4662797 0.5584371 0.5428591 -0.4745834 0.5584371 0.5428591 -0.4822838 0.5584371 0.5428591 -0.4894626 0.5584371 0.5428591 -0.4961862 0.5584371 0.5428591 -0.5025087 0.5584371 0.5428591 -0.5084753 0.5584371 0.5428591 -0.514124 0.5584371 0.5428591 -0.519487 0.5584371 0.5428591 -0.5245917 0.5584371 0.5428591 -0.529462 0.5584371 0.5428591 -0.5341183 0.5584371 0.5428591 -0.5385787 0.5584371 0.5428591 -0.5428591 0.5584371 0.5428591 -0.5469733 0.5584371 0.5428591 -0.5509339 0.5584371 0.5428591 -0.5547519 0.5584371 0.5428591 -0.5584371 0.5584371 0.5428591 -0.5619986 0.5584371 0.5428591 -0.5654443 0.5584371 0.5428591 -0.5687816 0.5584371 0.5428591 -0.092819 0.5619986 0.5428591 -0.2262531 0.5619986 0.5428591 -0.2875993 0.5619986 0.5428591 -0.3262122 0.5619986 0.5428591 -0.3544566 0.5619986 0.5428591 -0.3767383 0.5619986 0.5428591 -0.3951413 0.5619986 0.5428591 -0.4108177 0.5619986 0.5428591 -0.4244723 0.5619986 0.5428591 -0.4365675 0.5619986 0.5428591 -0.4474232 0.5619986 0.5428591 -0.45727 0.5619986 0.5428591 -0.4662797 0.5619986 0.5428591 -0.4745834 0.5619986 0.5428591 -0.4822838 0.5619986 0.5428591 -0.4894626 0.5619986 0.5428591 -0.4961862 0.5619986 0.5428591 -0.5025087 0.5619986 0.5428591 -0.5084753 0.5619986 0.5428591 -0.514124 0.5619986 0.5428591 -0.519487 0.5619986 0.5428591 -0.5245917 0.5619986 0.5428591 -0.529462 0.5619986 0.5428591 -0.5341183 0.5619986 0.5428591 -0.5385787 0.5619986 0.5428591 -0.5428591 0.5619986 0.5428591 -0.5469733 0.5619986 0.5428591 -0.5509339 0.5619986 0.5428591 -0.5547519 0.5619986 0.5428591 -0.5584371 0.5619986 0.5428591 -0.5619986 0.5619986 0.5428591 -0.5654443 0.5619986 0.5428591 -0.5687816 0.5619986 0.5428591 -0.092819 0.5654443 0.5428591 -0.2262531 0.5654443 0.5428591 -0.2875993 0.5654443 0.5428591 -0.3262122 0.5654443 0.5428591 -0.3544566 0.5654443 0.5428591 -0.3767383 0.5654443 0.5428591 -0.3951413 0.5654443 0.5428591 -0.4108177 0.5654443 0.5428591 -0.4244723 0.5654443 0.5428591 -0.4365675 0.5654443 0.5428591 -0.4474232 0.5654443 0.5428591 -0.45727 0.5654443 0.5428591 -0.4662797 0.5654443 0.5428591 -0.4745834 0.5654443 0.5428591 -0.4822838 0.5654443 0.5428591 -0.4894626 0.5654443 0.5428591 -0.4961862 0.5654443 0.5428591 -0.5025087 0.5654443 0.5428591 -0.5084753 0.5654443 0.5428591 -0.514124 0.5654443 0.5428591 -0.519487 0.5654443 0.5428591 -0.5245917 0.5654443 0.5428591 -0.529462 0.5654443 0.5428591 -0.5341183 0.5654443 0.5428591 -0.5385787 0.5654443 0.5428591 -0.5428591 0.5654443 0.5428591 -0.5469733 0.5654443 0.5428591 -0.5509339 0.5654443 0.5428591 -0.5547519 0.5654443 0.5428591 -0.5584371 0.5654443 0.5428591 -0.5619986 0.5654443 0.5428591 -0.5654443 0.5654443 0.5428591 -0.5687816 0.5654443 0.5428591 -0.092819 0.5687816 0.5428591 -0.2262531 0.5687816 0.5428591 -0.2875993 0.5687816 0.5428591 -0.3262122 0.5687816 0.5428591 -0.3544566 0.5687816 0.5428591 -0.3767383 0.5687816 0.5428591 -0.3951413 0.5687816 0.5428591 -0.4108177 0.5687816 0.5428591 -0.4244723 0.5687816 0.5428591 -0.4365675 0.5687816 0.5428591 -0.4474232 0.5687816 0.5428591 -0.45727 0.5687816 0.5428591 -0.4662797 0.5687816 0.5428591 -0.4745834 0.5687816 0.5428591 -0.4822838 0.5687816 0.5428591 -0.4894626 0.5687816 0.5428591 -0.4961862 0.5687816 0.5428591 -0.5025087 0.5687816 0.5428591 -0.5084753 0.5687816 0.5428591 -0.514124 0.5687816 0.5428591 -0.519487 0.5687816 0.5428591 -0.5245917 0.5687816 0.5428591 -0.529462 0.5687816 0.5428591 -0.5341183 0.5687816 0.5428591 -0.5385787 0.5687816 0.5428591 -0.5428591 0.5687816 0.5428591 -0.5469733 0.5687816 0.5428591 -0.5509339 0.5687816 0.5428591 -0.5547519 0.5687816 0.5428591 -0.5584371 0.5687816 0.5428591 -0.5619986 0.5687816 0.5428591 -0.5654443 0.5687816 0.5428591 -0.5687816 0.5687816 0.5428591 -0.092819 0.092819 0.5469733 -0.2262531 0.092819 0.5469733 -0.2875993 0.092819 0.5469733 -0.3262122 0.092819 0.5469733 -0.3544566 0.092819 0.5469733 -0.3767383 0.092819 0.5469733 -0.3951413 0.092819 0.5469733 -0.4108177 0.092819 0.5469733 -0.4244723 0.092819 0.5469733 -0.4365675 0.092819 0.5469733 -0.4474232 0.092819 0.5469733 -0.45727 0.092819 0.5469733 -0.4662797 0.092819 0.5469733 -0.4745834 0.092819 0.5469733 -0.4822838 0.092819 0.5469733 -0.4894626 0.092819 0.5469733 -0.4961862 0.092819 0.5469733 -0.5025087 0.092819 0.5469733 -0.5084753 0.092819 0.5469733 -0.514124 0.092819 0.5469733 -0.519487 0.092819 0.5469733 -0.5245917 0.092819 0.5469733 -0.529462 0.092819 0.5469733 -0.5341183 0.092819 0.5469733 -0.5385787 0.092819 0.5469733 -0.5428591 0.092819 0.5469733 -0.5469733 0.092819 0.5469733 -0.5509339 0.092819 0.5469733 -0.5547519 0.092819 0.5469733 -0.5584371 0.092819 0.5469733 -0.5619986 0.092819 0.5469733 -0.5654443 0.092819 0.5469733 -0.5687816 0.092819 0.5469733 -0.092819 0.2262531 0.5469733 -0.2262531 0.2262531 0.5469733 -0.2875993 0.2262531 0.5469733 -0.3262122 0.2262531 0.5469733 -0.3544566 0.2262531 0.5469733 -0.3767383 0.2262531 0.5469733 -0.3951413 0.2262531 0.5469733 -0.4108177 0.2262531 0.5469733 -0.4244723 0.2262531 0.5469733 -0.4365675 0.2262531 0.5469733 -0.4474232 0.2262531 0.5469733 -0.45727 0.2262531 0.5469733 -0.4662797 0.2262531 0.5469733 -0.4745834 0.2262531 0.5469733 -0.4822838 0.2262531 0.5469733 -0.4894626 0.2262531 0.5469733 -0.4961862 0.2262531 0.5469733 -0.5025087 0.2262531 0.5469733 -0.5084753 0.2262531 0.5469733 -0.514124 0.2262531 0.5469733 -0.519487 0.2262531 0.5469733 -0.5245917 0.2262531 0.5469733 -0.529462 0.2262531 0.5469733 -0.5341183 0.2262531 0.5469733 -0.5385787 0.2262531 0.5469733 -0.5428591 0.2262531 0.5469733 -0.5469733 0.2262531 0.5469733 -0.5509339 0.2262531 0.5469733 -0.5547519 0.2262531 0.5469733 -0.5584371 0.2262531 0.5469733 -0.5619986 0.2262531 0.5469733 -0.5654443 0.2262531 0.5469733 -0.5687816 0.2262531 0.5469733 -0.092819 0.2875993 0.5469733 -0.2262531 0.2875993 0.5469733 -0.2875993 0.2875993 0.5469733 -0.3262122 0.2875993 0.5469733 -0.3544566 0.2875993 0.5469733 -0.3767383 0.2875993 0.5469733 -0.3951413 0.2875993 0.5469733 -0.4108177 0.2875993 0.5469733 -0.4244723 0.2875993 0.5469733 -0.4365675 0.2875993 0.5469733 -0.4474232 0.2875993 0.5469733 -0.45727 0.2875993 0.5469733 -0.4662797 0.2875993 0.5469733 -0.4745834 0.2875993 0.5469733 -0.4822838 0.2875993 0.5469733 -0.4894626 0.2875993 0.5469733 -0.4961862 0.2875993 0.5469733 -0.5025087 0.2875993 0.5469733 -0.5084753 0.2875993 0.5469733 -0.514124 0.2875993 0.5469733 -0.519487 0.2875993 0.5469733 -0.5245917 0.2875993 0.5469733 -0.529462 0.2875993 0.5469733 -0.5341183 0.2875993 0.5469733 -0.5385787 0.2875993 0.5469733 -0.5428591 0.2875993 0.5469733 -0.5469733 0.2875993 0.5469733 -0.5509339 0.2875993 0.5469733 -0.5547519 0.2875993 0.5469733 -0.5584371 0.2875993 0.5469733 -0.5619986 0.2875993 0.5469733 -0.5654443 0.2875993 0.5469733 -0.5687816 0.2875993 0.5469733 -0.092819 0.3262122 0.5469733 -0.2262531 0.3262122 0.5469733 -0.2875993 0.3262122 0.5469733 -0.3262122 0.3262122 0.5469733 -0.3544566 0.3262122 0.5469733 -0.3767383 0.3262122 0.5469733 -0.3951413 0.3262122 0.5469733 -0.4108177 0.3262122 0.5469733 -0.4244723 0.3262122 0.5469733 -0.4365675 0.3262122 0.5469733 -0.4474232 0.3262122 0.5469733 -0.45727 0.3262122 0.5469733 -0.4662797 0.3262122 0.5469733 -0.4745834 0.3262122 0.5469733 -0.4822838 0.3262122 0.5469733 -0.4894626 0.3262122 0.5469733 -0.4961862 0.3262122 0.5469733 -0.5025087 0.3262122 0.5469733 -0.5084753 0.3262122 0.5469733 -0.514124 0.3262122 0.5469733 -0.519487 0.3262122 0.5469733 -0.5245917 0.3262122 0.5469733 -0.529462 0.3262122 0.5469733 -0.5341183 0.3262122 0.5469733 -0.5385787 0.3262122 0.5469733 -0.5428591 0.3262122 0.5469733 -0.5469733 0.3262122 0.5469733 -0.5509339 0.3262122 0.5469733 -0.5547519 0.3262122 0.5469733 -0.5584371 0.3262122 0.5469733 -0.5619986 0.3262122 0.5469733 -0.5654443 0.3262122 0.5469733 -0.5687816 0.3262122 0.5469733 -0.092819 0.3544566 0.5469733 -0.2262531 0.3544566 0.5469733 -0.2875993 0.3544566 0.5469733 -0.3262122 0.3544566 0.5469733 -0.3544566 0.3544566 0.5469733 -0.3767383 0.3544566 0.5469733 -0.3951413 0.3544566 0.5469733 -0.4108177 0.3544566 0.5469733 -0.4244723 0.3544566 0.5469733 -0.4365675 0.3544566 0.5469733 -0.4474232 0.3544566 0.5469733 -0.45727 0.3544566 0.5469733 -0.4662797 0.3544566 0.5469733 -0.4745834 0.3544566 0.5469733 -0.4822838 0.3544566 0.5469733 -0.4894626 0.3544566 0.5469733 -0.4961862 0.3544566 0.5469733 -0.5025087 0.3544566 0.5469733 -0.5084753 0.3544566 0.5469733 -0.514124 0.3544566 0.5469733 -0.519487 0.3544566 0.5469733 -0.5245917 0.3544566 0.5469733 -0.529462 0.3544566 0.5469733 -0.5341183 0.3544566 0.5469733 -0.5385787 0.3544566 0.5469733 -0.5428591 0.3544566 0.5469733 -0.5469733 0.3544566 0.5469733 -0.5509339 0.3544566 0.5469733 -0.5547519 0.3544566 0.5469733 -0.5584371 0.3544566 0.5469733 -0.5619986 0.3544566 0.5469733 -0.5654443 0.3544566 0.5469733 -0.5687816 0.3544566 0.5469733 -0.092819 0.3767383 0.5469733 -0.2262531 0.3767383 0.5469733 -0.2875993 0.3767383 0.5469733 -0.3262122 0.3767383 0.5469733 -0.3544566 0.3767383 0.5469733 -0.3767383 0.3767383 0.5469733 -0.3951413 0.3767383 0.5469733 -0.4108177 0.3767383 0.5469733 -0.4244723 0.3767383 0.5469733 -0.4365675 0.3767383 0.5469733 -0.4474232 0.3767383 0.5469733 -0.45727 0.3767383 0.5469733 -0.4662797 0.3767383 0.5469733 -0.4745834 0.3767383 0.5469733 -0.4822838 0.3767383 0.5469733 -0.4894626 0.3767383 0.5469733 -0.4961862 0.3767383 0.5469733 -0.5025087 0.3767383 0.5469733 -0.5084753 0.3767383 0.5469733 -0.514124 0.3767383 0.5469733 -0.519487 0.3767383 0.5469733 -0.5245917 0.3767383 0.5469733 -0.529462 0.3767383 0.5469733 -0.5341183 0.3767383 0.5469733 -0.5385787 0.3767383 0.5469733 -0.5428591 0.3767383 0.5469733 -0.5469733 0.3767383 0.5469733 -0.5509339 0.3767383 0.5469733 -0.5547519 0.3767383 0.5469733 -0.5584371 0.3767383 0.5469733 -0.5619986 0.3767383 0.5469733 -0.5654443 0.3767383 0.5469733 -0.5687816 0.3767383 0.5469733 -0.092819 0.3951413 0.5469733 -0.2262531 0.3951413 0.5469733 -0.2875993 0.3951413 0.5469733 -0.3262122 0.3951413 0.5469733 -0.3544566 0.3951413 0.5469733 -0.3767383 0.3951413 0.5469733 -0.3951413 0.3951413 0.5469733 -0.4108177 0.3951413 0.5469733 -0.4244723 0.3951413 0.5469733 -0.4365675 0.3951413 0.5469733 -0.4474232 0.3951413 0.5469733 -0.45727 0.3951413 0.5469733 -0.4662797 0.3951413 0.5469733 -0.4745834 0.3951413 0.5469733 -0.4822838 0.3951413 0.5469733 -0.4894626 0.3951413 0.5469733 -0.4961862 0.3951413 0.5469733 -0.5025087 0.3951413 0.5469733 -0.5084753 0.3951413 0.5469733 -0.514124 0.3951413 0.5469733 -0.519487 0.3951413 0.5469733 -0.5245917 0.3951413 0.5469733 -0.529462 0.3951413 0.5469733 -0.5341183 0.3951413 0.5469733 -0.5385787 0.3951413 0.5469733 -0.5428591 0.3951413 0.5469733 -0.5469733 0.3951413 0.5469733 -0.5509339 0.3951413 0.5469733 -0.5547519 0.3951413 0.5469733 -0.5584371 0.3951413 0.5469733 -0.5619986 0.3951413 0.5469733 -0.5654443 0.3951413 0.5469733 -0.5687816 0.3951413 0.5469733 -0.092819 0.4108177 0.5469733 -0.2262531 0.4108177 0.5469733 -0.2875993 0.4108177 0.5469733 -0.3262122 0.4108177 0.5469733 -0.3544566 0.4108177 0.5469733 -0.3767383 0.4108177 0.5469733 -0.3951413 0.4108177 0.5469733 -0.4108177 0.4108177 0.5469733 -0.4244723 0.4108177 0.5469733 -0.4365675 0.4108177 0.5469733 -0.4474232 0.4108177 0.5469733 -0.45727 0.4108177 0.5469733 -0.4662797 0.4108177 0.5469733 -0.4745834 0.4108177 0.5469733 -0.4822838 0.4108177 0.5469733 -0.4894626 0.4108177 0.5469733 -0.4961862 0.4108177 0.5469733 -0.5025087 0.4108177 0.5469733 -0.5084753 0.4108177 0.5469733 -0.514124 0.4108177 0.5469733 -0.519487 0.4108177 0.5469733 -0.5245917 0.4108177 0.5469733 -0.529462 0.4108177 0.5469733 -0.5341183 0.4108177 0.5469733 -0.5385787 0.4108177 0.5469733 -0.5428591 0.4108177 0.5469733 -0.5469733 0.4108177 0.5469733 -0.5509339 0.4108177 0.5469733 -0.5547519 0.4108177 0.5469733 -0.5584371 0.4108177 0.5469733 -0.5619986 0.4108177 0.5469733 -0.5654443 0.4108177 0.5469733 -0.5687816 0.4108177 0.5469733 -0.092819 0.4244723 0.5469733 -0.2262531 0.4244723 0.5469733 -0.2875993 0.4244723 0.5469733 -0.3262122 0.4244723 0.5469733 -0.3544566 0.4244723 0.5469733 -0.3767383 0.4244723 0.5469733 -0.3951413 0.4244723 0.5469733 -0.4108177 0.4244723 0.5469733 -0.4244723 0.4244723 0.5469733 -0.4365675 0.4244723 0.5469733 -0.4474232 0.4244723 0.5469733 -0.45727 0.4244723 0.5469733 -0.4662797 0.4244723 0.5469733 -0.4745834 0.4244723 0.5469733 -0.4822838 0.4244723 0.5469733 -0.4894626 0.4244723 0.5469733 -0.4961862 0.4244723 0.5469733 -0.5025087 0.4244723 0.5469733 -0.5084753 0.4244723 0.5469733 -0.514124 0.4244723 0.5469733 -0.519487 0.4244723 0.5469733 -0.5245917 0.4244723 0.5469733 -0.529462 0.4244723 0.5469733 -0.5341183 0.4244723 0.5469733 -0.5385787 0.4244723 0.5469733 -0.5428591 0.4244723 0.5469733 -0.5469733 0.4244723 0.5469733 -0.5509339 0.4244723 0.5469733 -0.5547519 0.4244723 0.5469733 -0.5584371 0.4244723 0.5469733 -0.5619986 0.4244723 0.5469733 -0.5654443 0.4244723 0.5469733 -0.5687816 0.4244723 0.5469733 -0.092819 0.4365675 0.5469733 -0.2262531 0.4365675 0.5469733 -0.2875993 0.4365675 0.5469733 -0.3262122 0.4365675 0.5469733 -0.3544566 0.4365675 0.5469733 -0.3767383 0.4365675 0.5469733 -0.3951413 0.4365675 0.5469733 -0.4108177 0.4365675 0.5469733 -0.4244723 0.4365675 0.5469733 -0.4365675 0.4365675 0.5469733 -0.4474232 0.4365675 0.5469733 -0.45727 0.4365675 0.5469733 -0.4662797 0.4365675 0.5469733 -0.4745834 0.4365675 0.5469733 -0.4822838 0.4365675 0.5469733 -0.4894626 0.4365675 0.5469733 -0.4961862 0.4365675 0.5469733 -0.5025087 0.4365675 0.5469733 -0.5084753 0.4365675 0.5469733 -0.514124 0.4365675 0.5469733 -0.519487 0.4365675 0.5469733 -0.5245917 0.4365675 0.5469733 -0.529462 0.4365675 0.5469733 -0.5341183 0.4365675 0.5469733 -0.5385787 0.4365675 0.5469733 -0.5428591 0.4365675 0.5469733 -0.5469733 0.4365675 0.5469733 -0.5509339 0.4365675 0.5469733 -0.5547519 0.4365675 0.5469733 -0.5584371 0.4365675 0.5469733 -0.5619986 0.4365675 0.5469733 -0.5654443 0.4365675 0.5469733 -0.5687816 0.4365675 0.5469733 -0.092819 0.4474232 0.5469733 -0.2262531 0.4474232 0.5469733 -0.2875993 0.4474232 0.5469733 -0.3262122 0.4474232 0.5469733 -0.3544566 0.4474232 0.5469733 -0.3767383 0.4474232 0.5469733 -0.3951413 0.4474232 0.5469733 -0.4108177 0.4474232 0.5469733 -0.4244723 0.4474232 0.5469733 -0.4365675 0.4474232 0.5469733 -0.4474232 0.4474232 0.5469733 -0.45727 0.4474232 0.5469733 -0.4662797 0.4474232 0.5469733 -0.4745834 0.4474232 0.5469733 -0.4822838 0.4474232 0.5469733 -0.4894626 0.4474232 0.5469733 -0.4961862 0.4474232 0.5469733 -0.5025087 0.4474232 0.5469733 -0.5084753 0.4474232 0.5469733 -0.514124 0.4474232 0.5469733 -0.519487 0.4474232 0.5469733 -0.5245917 0.4474232 0.5469733 -0.529462 0.4474232 0.5469733 -0.5341183 0.4474232 0.5469733 -0.5385787 0.4474232 0.5469733 -0.5428591 0.4474232 0.5469733 -0.5469733 0.4474232 0.5469733 -0.5509339 0.4474232 0.5469733 -0.5547519 0.4474232 0.5469733 -0.5584371 0.4474232 0.5469733 -0.5619986 0.4474232 0.5469733 -0.5654443 0.4474232 0.5469733 -0.5687816 0.4474232 0.5469733 -0.092819 0.45727 0.5469733 -0.2262531 0.45727 0.5469733 -0.2875993 0.45727 0.5469733 -0.3262122 0.45727 0.5469733 -0.3544566 0.45727 0.5469733 -0.3767383 0.45727 0.5469733 -0.3951413 0.45727 0.5469733 -0.4108177 0.45727 0.5469733 -0.4244723 0.45727 0.5469733 -0.4365675 0.45727 0.5469733 -0.4474232 0.45727 0.5469733 -0.45727 0.45727 0.5469733 -0.4662797 0.45727 0.5469733 -0.4745834 0.45727 0.5469733 -0.4822838 0.45727 0.5469733 -0.4894626 0.45727 0.5469733 -0.4961862 0.45727 0.5469733 -0.5025087 0.45727 0.5469733 -0.5084753 0.45727 0.5469733 -0.514124 0.45727 0.5469733 -0.519487 0.45727 0.5469733 -0.5245917 0.45727 0.5469733 -0.529462 0.45727 0.5469733 -0.5341183 0.45727 0.5469733 -0.5385787 0.45727 0.5469733 -0.5428591 0.45727 0.5469733 -0.5469733 0.45727 0.5469733 -0.5509339 0.45727 0.5469733 -0.5547519 0.45727 0.5469733 -0.5584371 0.45727 0.5469733 -0.5619986 0.45727 0.5469733 -0.5654443 0.45727 0.5469733 -0.5687816 0.45727 0.5469733 -0.092819 0.4662797 0.5469733 -0.2262531 0.4662797 0.5469733 -0.2875993 0.4662797 0.5469733 -0.3262122 0.4662797 0.5469733 -0.3544566 0.4662797 0.5469733 -0.3767383 0.4662797 0.5469733 -0.3951413 0.4662797 0.5469733 -0.4108177 0.4662797 0.5469733 -0.4244723 0.4662797 0.5469733 -0.4365675 0.4662797 0.5469733 -0.4474232 0.4662797 0.5469733 -0.45727 0.4662797 0.5469733 -0.4662797 0.4662797 0.5469733 -0.4745834 0.4662797 0.5469733 -0.4822838 0.4662797 0.5469733 -0.4894626 0.4662797 0.5469733 -0.4961862 0.4662797 0.5469733 -0.5025087 0.4662797 0.5469733 -0.5084753 0.4662797 0.5469733 -0.514124 0.4662797 0.5469733 -0.519487 0.4662797 0.5469733 -0.5245917 0.4662797 0.5469733 -0.529462 0.4662797 0.5469733 -0.5341183 0.4662797 0.5469733 -0.5385787 0.4662797 0.5469733 -0.5428591 0.4662797 0.5469733 -0.5469733 0.4662797 0.5469733 -0.5509339 0.4662797 0.5469733 -0.5547519 0.4662797 0.5469733 -0.5584371 0.4662797 0.5469733 -0.5619986 0.4662797 0.5469733 -0.5654443 0.4662797 0.5469733 -0.5687816 0.4662797 0.5469733 -0.092819 0.4745834 0.5469733 -0.2262531 0.4745834 0.5469733 -0.2875993 0.4745834 0.5469733 -0.3262122 0.4745834 0.5469733 -0.3544566 0.4745834 0.5469733 -0.3767383 0.4745834 0.5469733 -0.3951413 0.4745834 0.5469733 -0.4108177 0.4745834 0.5469733 -0.4244723 0.4745834 0.5469733 -0.4365675 0.4745834 0.5469733 -0.4474232 0.4745834 0.5469733 -0.45727 0.4745834 0.5469733 -0.4662797 0.4745834 0.5469733 -0.4745834 0.4745834 0.5469733 -0.4822838 0.4745834 0.5469733 -0.4894626 0.4745834 0.5469733 -0.4961862 0.4745834 0.5469733 -0.5025087 0.4745834 0.5469733 -0.5084753 0.4745834 0.5469733 -0.514124 0.4745834 0.5469733 -0.519487 0.4745834 0.5469733 -0.5245917 0.4745834 0.5469733 -0.529462 0.4745834 0.5469733 -0.5341183 0.4745834 0.5469733 -0.5385787 0.4745834 0.5469733 -0.5428591 0.4745834 0.5469733 -0.5469733 0.4745834 0.5469733 -0.5509339 0.4745834 0.5469733 -0.5547519 0.4745834 0.5469733 -0.5584371 0.4745834 0.5469733 -0.5619986 0.4745834 0.5469733 -0.5654443 0.4745834 0.5469733 -0.5687816 0.4745834 0.5469733 -0.092819 0.4822838 0.5469733 -0.2262531 0.4822838 0.5469733 -0.2875993 0.4822838 0.5469733 -0.3262122 0.4822838 0.5469733 -0.3544566 0.4822838 0.5469733 -0.3767383 0.4822838 0.5469733 -0.3951413 0.4822838 0.5469733 -0.4108177 0.4822838 0.5469733 -0.4244723 0.4822838 0.5469733 -0.4365675 0.4822838 0.5469733 -0.4474232 0.4822838 0.5469733 -0.45727 0.4822838 0.5469733 -0.4662797 0.4822838 0.5469733 -0.4745834 0.4822838 0.5469733 -0.4822838 0.4822838 0.5469733 -0.4894626 0.4822838 0.5469733 -0.4961862 0.4822838 0.5469733 -0.5025087 0.4822838 0.5469733 -0.5084753 0.4822838 0.5469733 -0.514124 0.4822838 0.5469733 -0.519487 0.4822838 0.5469733 -0.5245917 0.4822838 0.5469733 -0.529462 0.4822838 0.5469733 -0.5341183 0.4822838 0.5469733 -0.5385787 0.4822838 0.5469733 -0.5428591 0.4822838 0.5469733 -0.5469733 0.4822838 0.5469733 -0.5509339 0.4822838 0.5469733 -0.5547519 0.4822838 0.5469733 -0.5584371 0.4822838 0.5469733 -0.5619986 0.4822838 0.5469733 -0.5654443 0.4822838 0.5469733 -0.5687816 0.4822838 0.5469733 -0.092819 0.4894626 0.5469733 -0.2262531 0.4894626 0.5469733 -0.2875993 0.4894626 0.5469733 -0.3262122 0.4894626 0.5469733 -0.3544566 0.4894626 0.5469733 -0.3767383 0.4894626 0.5469733 -0.3951413 0.4894626 0.5469733 -0.4108177 0.4894626 0.5469733 -0.4244723 0.4894626 0.5469733 -0.4365675 0.4894626 0.5469733 -0.4474232 0.4894626 0.5469733 -0.45727 0.4894626 0.5469733 -0.4662797 0.4894626 0.5469733 -0.4745834 0.4894626 0.5469733 -0.4822838 0.4894626 0.5469733 -0.4894626 0.4894626 0.5469733 -0.4961862 0.4894626 0.5469733 -0.5025087 0.4894626 0.5469733 -0.5084753 0.4894626 0.5469733 -0.514124 0.4894626 0.5469733 -0.519487 0.4894626 0.5469733 -0.5245917 0.4894626 0.5469733 -0.529462 0.4894626 0.5469733 -0.5341183 0.4894626 0.5469733 -0.5385787 0.4894626 0.5469733 -0.5428591 0.4894626 0.5469733 -0.5469733 0.4894626 0.5469733 -0.5509339 0.4894626 0.5469733 -0.5547519 0.4894626 0.5469733 -0.5584371 0.4894626 0.5469733 -0.5619986 0.4894626 0.5469733 -0.5654443 0.4894626 0.5469733 -0.5687816 0.4894626 0.5469733 -0.092819 0.4961862 0.5469733 -0.2262531 0.4961862 0.5469733 -0.2875993 0.4961862 0.5469733 -0.3262122 0.4961862 0.5469733 -0.3544566 0.4961862 0.5469733 -0.3767383 0.4961862 0.5469733 -0.3951413 0.4961862 0.5469733 -0.4108177 0.4961862 0.5469733 -0.4244723 0.4961862 0.5469733 -0.4365675 0.4961862 0.5469733 -0.4474232 0.4961862 0.5469733 -0.45727 0.4961862 0.5469733 -0.4662797 0.4961862 0.5469733 -0.4745834 0.4961862 0.5469733 -0.4822838 0.4961862 0.5469733 -0.4894626 0.4961862 0.5469733 -0.4961862 0.4961862 0.5469733 -0.5025087 0.4961862 0.5469733 -0.5084753 0.4961862 0.5469733 -0.514124 0.4961862 0.5469733 -0.519487 0.4961862 0.5469733 -0.5245917 0.4961862 0.5469733 -0.529462 0.4961862 0.5469733 -0.5341183 0.4961862 0.5469733 -0.5385787 0.4961862 0.5469733 -0.5428591 0.4961862 0.5469733 -0.5469733 0.4961862 0.5469733 -0.5509339 0.4961862 0.5469733 -0.5547519 0.4961862 0.5469733 -0.5584371 0.4961862 0.5469733 -0.5619986 0.4961862 0.5469733 -0.5654443 0.4961862 0.5469733 -0.5687816 0.4961862 0.5469733 -0.092819 0.5025087 0.5469733 -0.2262531 0.5025087 0.5469733 -0.2875993 0.5025087 0.5469733 -0.3262122 0.5025087 0.5469733 -0.3544566 0.5025087 0.5469733 -0.3767383 0.5025087 0.5469733 -0.3951413 0.5025087 0.5469733 -0.4108177 0.5025087 0.5469733 -0.4244723 0.5025087 0.5469733 -0.4365675 0.5025087 0.5469733 -0.4474232 0.5025087 0.5469733 -0.45727 0.5025087 0.5469733 -0.4662797 0.5025087 0.5469733 -0.4745834 0.5025087 0.5469733 -0.4822838 0.5025087 0.5469733 -0.4894626 0.5025087 0.5469733 -0.4961862 0.5025087 0.5469733 -0.5025087 0.5025087 0.5469733 -0.5084753 0.5025087 0.5469733 -0.514124 0.5025087 0.5469733 -0.519487 0.5025087 0.5469733 -0.5245917 0.5025087 0.5469733 -0.529462 0.5025087 0.5469733 -0.5341183 0.5025087 0.5469733 -0.5385787 0.5025087 0.5469733 -0.5428591 0.5025087 0.5469733 -0.5469733 0.5025087 0.5469733 -0.5509339 0.5025087 0.5469733 -0.5547519 0.5025087 0.5469733 -0.5584371 0.5025087 0.5469733 -0.5619986 0.5025087 0.5469733 -0.5654443 0.5025087 0.5469733 -0.5687816 0.5025087 0.5469733 -0.092819 0.5084753 0.5469733 -0.2262531 0.5084753 0.5469733 -0.2875993 0.5084753 0.5469733 -0.3262122 0.5084753 0.5469733 -0.3544566 0.5084753 0.5469733 -0.3767383 0.5084753 0.5469733 -0.3951413 0.5084753 0.5469733 -0.4108177 0.5084753 0.5469733 -0.4244723 0.5084753 0.5469733 -0.4365675 0.5084753 0.5469733 -0.4474232 0.5084753 0.5469733 -0.45727 0.5084753 0.5469733 -0.4662797 0.5084753 0.5469733 -0.4745834 0.5084753 0.5469733 -0.4822838 0.5084753 0.5469733 -0.4894626 0.5084753 0.5469733 -0.4961862 0.5084753 0.5469733 -0.5025087 0.5084753 0.5469733 -0.5084753 0.5084753 0.5469733 -0.514124 0.5084753 0.5469733 -0.519487 0.5084753 0.5469733 -0.5245917 0.5084753 0.5469733 -0.529462 0.5084753 0.5469733 -0.5341183 0.5084753 0.5469733 -0.5385787 0.5084753 0.5469733 -0.5428591 0.5084753 0.5469733 -0.5469733 0.5084753 0.5469733 -0.5509339 0.5084753 0.5469733 -0.5547519 0.5084753 0.5469733 -0.5584371 0.5084753 0.5469733 -0.5619986 0.5084753 0.5469733 -0.5654443 0.5084753 0.5469733 -0.5687816 0.5084753 0.5469733 -0.092819 0.514124 0.5469733 -0.2262531 0.514124 0.5469733 -0.2875993 0.514124 0.5469733 -0.3262122 0.514124 0.5469733 -0.3544566 0.514124 0.5469733 -0.3767383 0.514124 0.5469733 -0.3951413 0.514124 0.5469733 -0.4108177 0.514124 0.5469733 -0.4244723 0.514124 0.5469733 -0.4365675 0.514124 0.5469733 -0.4474232 0.514124 0.5469733 -0.45727 0.514124 0.5469733 -0.4662797 0.514124 0.5469733 -0.4745834 0.514124 0.5469733 -0.4822838 0.514124 0.5469733 -0.4894626 0.514124 0.5469733 -0.4961862 0.514124 0.5469733 -0.5025087 0.514124 0.5469733 -0.5084753 0.514124 0.5469733 -0.514124 0.514124 0.5469733 -0.519487 0.514124 0.5469733 -0.5245917 0.514124 0.5469733 -0.529462 0.514124 0.5469733 -0.5341183 0.514124 0.5469733 -0.5385787 0.514124 0.5469733 -0.5428591 0.514124 0.5469733 -0.5469733 0.514124 0.5469733 -0.5509339 0.514124 0.5469733 -0.5547519 0.514124 0.5469733 -0.5584371 0.514124 0.5469733 -0.5619986 0.514124 0.5469733 -0.5654443 0.514124 0.5469733 -0.5687816 0.514124 0.5469733 -0.092819 0.519487 0.5469733 -0.2262531 0.519487 0.5469733 -0.2875993 0.519487 0.5469733 -0.3262122 0.519487 0.5469733 -0.3544566 0.519487 0.5469733 -0.3767383 0.519487 0.5469733 -0.3951413 0.519487 0.5469733 -0.4108177 0.519487 0.5469733 -0.4244723 0.519487 0.5469733 -0.4365675 0.519487 0.5469733 -0.4474232 0.519487 0.5469733 -0.45727 0.519487 0.5469733 -0.4662797 0.519487 0.5469733 -0.4745834 0.519487 0.5469733 -0.4822838 0.519487 0.5469733 -0.4894626 0.519487 0.5469733 -0.4961862 0.519487 0.5469733 -0.5025087 0.519487 0.5469733 -0.5084753 0.519487 0.5469733 -0.514124 0.519487 0.5469733 -0.519487 0.519487 0.5469733 -0.5245917 0.519487 0.5469733 -0.529462 0.519487 0.5469733 -0.5341183 0.519487 0.5469733 -0.5385787 0.519487 0.5469733 -0.5428591 0.519487 0.5469733 -0.5469733 0.519487 0.5469733 -0.5509339 0.519487 0.5469733 -0.5547519 0.519487 0.5469733 -0.5584371 0.519487 0.5469733 -0.5619986 0.519487 0.5469733 -0.5654443 0.519487 0.5469733 -0.5687816 0.519487 0.5469733 -0.092819 0.5245917 0.5469733 -0.2262531 0.5245917 0.5469733 -0.2875993 0.5245917 0.5469733 -0.3262122 0.5245917 0.5469733 -0.3544566 0.5245917 0.5469733 -0.3767383 0.5245917 0.5469733 -0.3951413 0.5245917 0.5469733 -0.4108177 0.5245917 0.5469733 -0.4244723 0.5245917 0.5469733 -0.4365675 0.5245917 0.5469733 -0.4474232 0.5245917 0.5469733 -0.45727 0.5245917 0.5469733 -0.4662797 0.5245917 0.5469733 -0.4745834 0.5245917 0.5469733 -0.4822838 0.5245917 0.5469733 -0.4894626 0.5245917 0.5469733 -0.4961862 0.5245917 0.5469733 -0.5025087 0.5245917 0.5469733 -0.5084753 0.5245917 0.5469733 -0.514124 0.5245917 0.5469733 -0.519487 0.5245917 0.5469733 -0.5245917 0.5245917 0.5469733 -0.529462 0.5245917 0.5469733 -0.5341183 0.5245917 0.5469733 -0.5385787 0.5245917 0.5469733 -0.5428591 0.5245917 0.5469733 -0.5469733 0.5245917 0.5469733 -0.5509339 0.5245917 0.5469733 -0.5547519 0.5245917 0.5469733 -0.5584371 0.5245917 0.5469733 -0.5619986 0.5245917 0.5469733 -0.5654443 0.5245917 0.5469733 -0.5687816 0.5245917 0.5469733 -0.092819 0.529462 0.5469733 -0.2262531 0.529462 0.5469733 -0.2875993 0.529462 0.5469733 -0.3262122 0.529462 0.5469733 -0.3544566 0.529462 0.5469733 -0.3767383 0.529462 0.5469733 -0.3951413 0.529462 0.5469733 -0.4108177 0.529462 0.5469733 -0.4244723 0.529462 0.5469733 -0.4365675 0.529462 0.5469733 -0.4474232 0.529462 0.5469733 -0.45727 0.529462 0.5469733 -0.4662797 0.529462 0.5469733 -0.4745834 0.529462 0.5469733 -0.4822838 0.529462 0.5469733 -0.4894626 0.529462 0.5469733 -0.4961862 0.529462 0.5469733 -0.5025087 0.529462 0.5469733 -0.5084753 0.529462 0.5469733 -0.514124 0.529462 0.5469733 -0.519487 0.529462 0.5469733 -0.5245917 0.529462 0.5469733 -0.529462 0.529462 0.5469733 -0.5341183 0.529462 0.5469733 -0.5385787 0.529462 0.5469733 -0.5428591 0.529462 0.5469733 -0.5469733 0.529462 0.5469733 -0.5509339 0.529462 0.5469733 -0.5547519 0.529462 0.5469733 -0.5584371 0.529462 0.5469733 -0.5619986 0.529462 0.5469733 -0.5654443 0.529462 0.5469733 -0.5687816 0.529462 0.5469733 -0.092819 0.5341183 0.5469733 -0.2262531 0.5341183 0.5469733 -0.2875993 0.5341183 0.5469733 -0.3262122 0.5341183 0.5469733 -0.3544566 0.5341183 0.5469733 -0.3767383 0.5341183 0.5469733 -0.3951413 0.5341183 0.5469733 -0.4108177 0.5341183 0.5469733 -0.4244723 0.5341183 0.5469733 -0.4365675 0.5341183 0.5469733 -0.4474232 0.5341183 0.5469733 -0.45727 0.5341183 0.5469733 -0.4662797 0.5341183 0.5469733 -0.4745834 0.5341183 0.5469733 -0.4822838 0.5341183 0.5469733 -0.4894626 0.5341183 0.5469733 -0.4961862 0.5341183 0.5469733 -0.5025087 0.5341183 0.5469733 -0.5084753 0.5341183 0.5469733 -0.514124 0.5341183 0.5469733 -0.519487 0.5341183 0.5469733 -0.5245917 0.5341183 0.5469733 -0.529462 0.5341183 0.5469733 -0.5341183 0.5341183 0.5469733 -0.5385787 0.5341183 0.5469733 -0.5428591 0.5341183 0.5469733 -0.5469733 0.5341183 0.5469733 -0.5509339 0.5341183 0.5469733 -0.5547519 0.5341183 0.5469733 -0.5584371 0.5341183 0.5469733 -0.5619986 0.5341183 0.5469733 -0.5654443 0.5341183 0.5469733 -0.5687816 0.5341183 0.5469733 -0.092819 0.5385787 0.5469733 -0.2262531 0.5385787 0.5469733 -0.2875993 0.5385787 0.5469733 -0.3262122 0.5385787 0.5469733 -0.3544566 0.5385787 0.5469733 -0.3767383 0.5385787 0.5469733 -0.3951413 0.5385787 0.5469733 -0.4108177 0.5385787 0.5469733 -0.4244723 0.5385787 0.5469733 -0.4365675 0.5385787 0.5469733 -0.4474232 0.5385787 0.5469733 -0.45727 0.5385787 0.5469733 -0.4662797 0.5385787 0.5469733 -0.4745834 0.5385787 0.5469733 -0.4822838 0.5385787 0.5469733 -0.4894626 0.5385787 0.5469733 -0.4961862 0.5385787 0.5469733 -0.5025087 0.5385787 0.5469733 -0.5084753 0.5385787 0.5469733 -0.514124 0.5385787 0.5469733 -0.519487 0.5385787 0.5469733 -0.5245917 0.5385787 0.5469733 -0.529462 0.5385787 0.5469733 -0.5341183 0.5385787 0.5469733 -0.5385787 0.5385787 0.5469733 -0.5428591 0.5385787 0.5469733 -0.5469733 0.5385787 0.5469733 -0.5509339 0.5385787 0.5469733 -0.5547519 0.5385787 0.5469733 -0.5584371 0.5385787 0.5469733 -0.5619986 0.5385787 0.5469733 -0.5654443 0.5385787 0.5469733 -0.5687816 0.5385787 0.5469733 -0.092819 0.5428591 0.5469733 -0.2262531 0.5428591 0.5469733 -0.2875993 0.5428591 0.5469733 -0.3262122 0.5428591 0.5469733 -0.3544566 0.5428591 0.5469733 -0.3767383 0.5428591 0.5469733 -0.3951413 0.5428591 0.5469733 -0.4108177 0.5428591 0.5469733 -0.4244723 0.5428591 0.5469733 -0.4365675 0.5428591 0.5469733 -0.4474232 0.5428591 0.5469733 -0.45727 0.5428591 0.5469733 -0.4662797 0.5428591 0.5469733 -0.4745834 0.5428591 0.5469733 -0.4822838 0.5428591 0.5469733 -0.4894626 0.5428591 0.5469733 -0.4961862 0.5428591 0.5469733 -0.5025087 0.5428591 0.5469733 -0.5084753 0.5428591 0.5469733 -0.514124 0.5428591 0.5469733 -0.519487 0.5428591 0.5469733 -0.5245917 0.5428591 0.5469733 -0.529462 0.5428591 0.5469733 -0.5341183 0.5428591 0.5469733 -0.5385787 0.5428591 0.5469733 -0.5428591 0.5428591 0.5469733 -0.5469733 0.5428591 0.5469733 -0.5509339 0.5428591 0.5469733 -0.5547519 0.5428591 0.5469733 -0.5584371 0.5428591 0.5469733 -0.5619986 0.5428591 0.5469733 -0.5654443 0.5428591 0.5469733 -0.5687816 0.5428591 0.5469733 -0.092819 0.5469733 0.5469733 -0.2262531 0.5469733 0.5469733 -0.2875993 0.5469733 0.5469733 -0.3262122 0.5469733 0.5469733 -0.3544566 0.5469733 0.5469733 -0.3767383 0.5469733 0.5469733 -0.3951413 0.5469733 0.5469733 -0.4108177 0.5469733 0.5469733 -0.4244723 0.5469733 0.5469733 -0.4365675 0.5469733 0.5469733 -0.4474232 0.5469733 0.5469733 -0.45727 0.5469733 0.5469733 -0.4662797 0.5469733 0.5469733 -0.4745834 0.5469733 0.5469733 -0.4822838 0.5469733 0.5469733 -0.4894626 0.5469733 0.5469733 -0.4961862 0.5469733 0.5469733 -0.5025087 0.5469733 0.5469733 -0.5084753 0.5469733 0.5469733 -0.514124 0.5469733 0.5469733 -0.519487 0.5469733 0.5469733 -0.5245917 0.5469733 0.5469733 -0.529462 0.5469733 0.5469733 -0.5341183 0.5469733 0.5469733 -0.5385787 0.5469733 0.5469733 -0.5428591 0.5469733 0.5469733 -0.5469733 0.5469733 0.5469733 -0.5509339 0.5469733 0.5469733 -0.5547519 0.5469733 0.5469733 -0.5584371 0.5469733 0.5469733 -0.5619986 0.5469733 0.5469733 -0.5654443 0.5469733 0.5469733 -0.5687816 0.5469733 0.5469733 -0.092819 0.5509339 0.5469733 -0.2262531 0.5509339 0.5469733 -0.2875993 0.5509339 0.5469733 -0.3262122 0.5509339 0.5469733 -0.3544566 0.5509339 0.5469733 -0.3767383 0.5509339 0.5469733 -0.3951413 0.5509339 0.5469733 -0.4108177 0.5509339 0.5469733 -0.4244723 0.5509339 0.5469733 -0.4365675 0.5509339 0.5469733 -0.4474232 0.5509339 0.5469733 -0.45727 0.5509339 0.5469733 -0.4662797 0.5509339 0.5469733 -0.4745834 0.5509339 0.5469733 -0.4822838 0.5509339 0.5469733 -0.4894626 0.5509339 0.5469733 -0.4961862 0.5509339 0.5469733 -0.5025087 0.5509339 0.5469733 -0.5084753 0.5509339 0.5469733 -0.514124 0.5509339 0.5469733 -0.519487 0.5509339 0.5469733 -0.5245917 0.5509339 0.5469733 -0.529462 0.5509339 0.5469733 -0.5341183 0.5509339 0.5469733 -0.5385787 0.5509339 0.5469733 -0.5428591 0.5509339 0.5469733 -0.5469733 0.5509339 0.5469733 -0.5509339 0.5509339 0.5469733 -0.5547519 0.5509339 0.5469733 -0.5584371 0.5509339 0.5469733 -0.5619986 0.5509339 0.5469733 -0.5654443 0.5509339 0.5469733 -0.5687816 0.5509339 0.5469733 -0.092819 0.5547519 0.5469733 -0.2262531 0.5547519 0.5469733 -0.2875993 0.5547519 0.5469733 -0.3262122 0.5547519 0.5469733 -0.3544566 0.5547519 0.5469733 -0.3767383 0.5547519 0.5469733 -0.3951413 0.5547519 0.5469733 -0.4108177 0.5547519 0.5469733 -0.4244723 0.5547519 0.5469733 -0.4365675 0.5547519 0.5469733 -0.4474232 0.5547519 0.5469733 -0.45727 0.5547519 0.5469733 -0.4662797 0.5547519 0.5469733 -0.4745834 0.5547519 0.5469733 -0.4822838 0.5547519 0.5469733 -0.4894626 0.5547519 0.5469733 -0.4961862 0.5547519 0.5469733 -0.5025087 0.5547519 0.5469733 -0.5084753 0.5547519 0.5469733 -0.514124 0.5547519 0.5469733 -0.519487 0.5547519 0.5469733 -0.5245917 0.5547519 0.5469733 -0.529462 0.5547519 0.5469733 -0.5341183 0.5547519 0.5469733 -0.5385787 0.5547519 0.5469733 -0.5428591 0.5547519 0.5469733 -0.5469733 0.5547519 0.5469733 -0.5509339 0.5547519 0.5469733 -0.5547519 0.5547519 0.5469733 -0.5584371 0.5547519 0.5469733 -0.5619986 0.5547519 0.5469733 -0.5654443 0.5547519 0.5469733 -0.5687816 0.5547519 0.5469733 -0.092819 0.5584371 0.5469733 -0.2262531 0.5584371 0.5469733 -0.2875993 0.5584371 0.5469733 -0.3262122 0.5584371 0.5469733 -0.3544566 0.5584371 0.5469733 -0.3767383 0.5584371 0.5469733 -0.3951413 0.5584371 0.5469733 -0.4108177 0.5584371 0.5469733 -0.4244723 0.5584371 0.5469733 -0.4365675 0.5584371 0.5469733 -0.4474232 0.5584371 0.5469733 -0.45727 0.5584371 0.5469733 -0.4662797 0.5584371 0.5469733 -0.4745834 0.5584371 0.5469733 -0.4822838 0.5584371 0.5469733 -0.4894626 0.5584371 0.5469733 -0.4961862 0.5584371 0.5469733 -0.5025087 0.5584371 0.5469733 -0.5084753 0.5584371 0.5469733 -0.514124 0.5584371 0.5469733 -0.519487 0.5584371 0.5469733 -0.5245917 0.5584371 0.5469733 -0.529462 0.5584371 0.5469733 -0.5341183 0.5584371 0.5469733 -0.5385787 0.5584371 0.5469733 -0.5428591 0.5584371 0.5469733 -0.5469733 0.5584371 0.5469733 -0.5509339 0.5584371 0.5469733 -0.5547519 0.5584371 0.5469733 -0.5584371 0.5584371 0.5469733 -0.5619986 0.5584371 0.5469733 -0.5654443 0.5584371 0.5469733 -0.5687816 0.5584371 0.5469733 -0.092819 0.5619986 0.5469733 -0.2262531 0.5619986 0.5469733 -0.2875993 0.5619986 0.5469733 -0.3262122 0.5619986 0.5469733 -0.3544566 0.5619986 0.5469733 -0.3767383 0.5619986 0.5469733 -0.3951413 0.5619986 0.5469733 -0.4108177 0.5619986 0.5469733 -0.4244723 0.5619986 0.5469733 -0.4365675 0.5619986 0.5469733 -0.4474232 0.5619986 0.5469733 -0.45727 0.5619986 0.5469733 -0.4662797 0.5619986 0.5469733 -0.4745834 0.5619986 0.5469733 -0.4822838 0.5619986 0.5469733 -0.4894626 0.5619986 0.5469733 -0.4961862 0.5619986 0.5469733 -0.5025087 0.5619986 0.5469733 -0.5084753 0.5619986 0.5469733 -0.514124 0.5619986 0.5469733 -0.519487 0.5619986 0.5469733 -0.5245917 0.5619986 0.5469733 -0.529462 0.5619986 0.5469733 -0.5341183 0.5619986 0.5469733 -0.5385787 0.5619986 0.5469733 -0.5428591 0.5619986 0.5469733 -0.5469733 0.5619986 0.5469733 -0.5509339 0.5619986 0.5469733 -0.5547519 0.5619986 0.5469733 -0.5584371 0.5619986 0.5469733 -0.5619986 0.5619986 0.5469733 -0.5654443 0.5619986 0.5469733 -0.5687816 0.5619986 0.5469733 -0.092819 0.5654443 0.5469733 -0.2262531 0.5654443 0.5469733 -0.2875993 0.5654443 0.5469733 -0.3262122 0.5654443 0.5469733 -0.3544566 0.5654443 0.5469733 -0.3767383 0.5654443 0.5469733 -0.3951413 0.5654443 0.5469733 -0.4108177 0.5654443 0.5469733 -0.4244723 0.5654443 0.5469733 -0.4365675 0.5654443 0.5469733 -0.4474232 0.5654443 0.5469733 -0.45727 0.5654443 0.5469733 -0.4662797 0.5654443 0.5469733 -0.4745834 0.5654443 0.5469733 -0.4822838 0.5654443 0.5469733 -0.4894626 0.5654443 0.5469733 -0.4961862 0.5654443 0.5469733 -0.5025087 0.5654443 0.5469733 -0.5084753 0.5654443 0.5469733 -0.514124 0.5654443 0.5469733 -0.519487 0.5654443 0.5469733 -0.5245917 0.5654443 0.5469733 -0.529462 0.5654443 0.5469733 -0.5341183 0.5654443 0.5469733 -0.5385787 0.5654443 0.5469733 -0.5428591 0.5654443 0.5469733 -0.5469733 0.5654443 0.5469733 -0.5509339 0.5654443 0.5469733 -0.5547519 0.5654443 0.5469733 -0.5584371 0.5654443 0.5469733 -0.5619986 0.5654443 0.5469733 -0.5654443 0.5654443 0.5469733 -0.5687816 0.5654443 0.5469733 -0.092819 0.5687816 0.5469733 -0.2262531 0.5687816 0.5469733 -0.2875993 0.5687816 0.5469733 -0.3262122 0.5687816 0.5469733 -0.3544566 0.5687816 0.5469733 -0.3767383 0.5687816 0.5469733 -0.3951413 0.5687816 0.5469733 -0.4108177 0.5687816 0.5469733 -0.4244723 0.5687816 0.5469733 -0.4365675 0.5687816 0.5469733 -0.4474232 0.5687816 0.5469733 -0.45727 0.5687816 0.5469733 -0.4662797 0.5687816 0.5469733 -0.4745834 0.5687816 0.5469733 -0.4822838 0.5687816 0.5469733 -0.4894626 0.5687816 0.5469733 -0.4961862 0.5687816 0.5469733 -0.5025087 0.5687816 0.5469733 -0.5084753 0.5687816 0.5469733 -0.514124 0.5687816 0.5469733 -0.519487 0.5687816 0.5469733 -0.5245917 0.5687816 0.5469733 -0.529462 0.5687816 0.5469733 -0.5341183 0.5687816 0.5469733 -0.5385787 0.5687816 0.5469733 -0.5428591 0.5687816 0.5469733 -0.5469733 0.5687816 0.5469733 -0.5509339 0.5687816 0.5469733 -0.5547519 0.5687816 0.5469733 -0.5584371 0.5687816 0.5469733 -0.5619986 0.5687816 0.5469733 -0.5654443 0.5687816 0.5469733 -0.5687816 0.5687816 0.5469733 -0.092819 0.092819 0.5509339 -0.2262531 0.092819 0.5509339 -0.2875993 0.092819 0.5509339 -0.3262122 0.092819 0.5509339 -0.3544566 0.092819 0.5509339 -0.3767383 0.092819 0.5509339 -0.3951413 0.092819 0.5509339 -0.4108177 0.092819 0.5509339 -0.4244723 0.092819 0.5509339 -0.4365675 0.092819 0.5509339 -0.4474232 0.092819 0.5509339 -0.45727 0.092819 0.5509339 -0.4662797 0.092819 0.5509339 -0.4745834 0.092819 0.5509339 -0.4822838 0.092819 0.5509339 -0.4894626 0.092819 0.5509339 -0.4961862 0.092819 0.5509339 -0.5025087 0.092819 0.5509339 -0.5084753 0.092819 0.5509339 -0.514124 0.092819 0.5509339 -0.519487 0.092819 0.5509339 -0.5245917 0.092819 0.5509339 -0.529462 0.092819 0.5509339 -0.5341183 0.092819 0.5509339 -0.5385787 0.092819 0.5509339 -0.5428591 0.092819 0.5509339 -0.5469733 0.092819 0.5509339 -0.5509339 0.092819 0.5509339 -0.5547519 0.092819 0.5509339 -0.5584371 0.092819 0.5509339 -0.5619986 0.092819 0.5509339 -0.5654443 0.092819 0.5509339 -0.5687816 0.092819 0.5509339 -0.092819 0.2262531 0.5509339 -0.2262531 0.2262531 0.5509339 -0.2875993 0.2262531 0.5509339 -0.3262122 0.2262531 0.5509339 -0.3544566 0.2262531 0.5509339 -0.3767383 0.2262531 0.5509339 -0.3951413 0.2262531 0.5509339 -0.4108177 0.2262531 0.5509339 -0.4244723 0.2262531 0.5509339 -0.4365675 0.2262531 0.5509339 -0.4474232 0.2262531 0.5509339 -0.45727 0.2262531 0.5509339 -0.4662797 0.2262531 0.5509339 -0.4745834 0.2262531 0.5509339 -0.4822838 0.2262531 0.5509339 -0.4894626 0.2262531 0.5509339 -0.4961862 0.2262531 0.5509339 -0.5025087 0.2262531 0.5509339 -0.5084753 0.2262531 0.5509339 -0.514124 0.2262531 0.5509339 -0.519487 0.2262531 0.5509339 -0.5245917 0.2262531 0.5509339 -0.529462 0.2262531 0.5509339 -0.5341183 0.2262531 0.5509339 -0.5385787 0.2262531 0.5509339 -0.5428591 0.2262531 0.5509339 -0.5469733 0.2262531 0.5509339 -0.5509339 0.2262531 0.5509339 -0.5547519 0.2262531 0.5509339 -0.5584371 0.2262531 0.5509339 -0.5619986 0.2262531 0.5509339 -0.5654443 0.2262531 0.5509339 -0.5687816 0.2262531 0.5509339 -0.092819 0.2875993 0.5509339 -0.2262531 0.2875993 0.5509339 -0.2875993 0.2875993 0.5509339 -0.3262122 0.2875993 0.5509339 -0.3544566 0.2875993 0.5509339 -0.3767383 0.2875993 0.5509339 -0.3951413 0.2875993 0.5509339 -0.4108177 0.2875993 0.5509339 -0.4244723 0.2875993 0.5509339 -0.4365675 0.2875993 0.5509339 -0.4474232 0.2875993 0.5509339 -0.45727 0.2875993 0.5509339 -0.4662797 0.2875993 0.5509339 -0.4745834 0.2875993 0.5509339 -0.4822838 0.2875993 0.5509339 -0.4894626 0.2875993 0.5509339 -0.4961862 0.2875993 0.5509339 -0.5025087 0.2875993 0.5509339 -0.5084753 0.2875993 0.5509339 -0.514124 0.2875993 0.5509339 -0.519487 0.2875993 0.5509339 -0.5245917 0.2875993 0.5509339 -0.529462 0.2875993 0.5509339 -0.5341183 0.2875993 0.5509339 -0.5385787 0.2875993 0.5509339 -0.5428591 0.2875993 0.5509339 -0.5469733 0.2875993 0.5509339 -0.5509339 0.2875993 0.5509339 -0.5547519 0.2875993 0.5509339 -0.5584371 0.2875993 0.5509339 -0.5619986 0.2875993 0.5509339 -0.5654443 0.2875993 0.5509339 -0.5687816 0.2875993 0.5509339 -0.092819 0.3262122 0.5509339 -0.2262531 0.3262122 0.5509339 -0.2875993 0.3262122 0.5509339 -0.3262122 0.3262122 0.5509339 -0.3544566 0.3262122 0.5509339 -0.3767383 0.3262122 0.5509339 -0.3951413 0.3262122 0.5509339 -0.4108177 0.3262122 0.5509339 -0.4244723 0.3262122 0.5509339 -0.4365675 0.3262122 0.5509339 -0.4474232 0.3262122 0.5509339 -0.45727 0.3262122 0.5509339 -0.4662797 0.3262122 0.5509339 -0.4745834 0.3262122 0.5509339 -0.4822838 0.3262122 0.5509339 -0.4894626 0.3262122 0.5509339 -0.4961862 0.3262122 0.5509339 -0.5025087 0.3262122 0.5509339 -0.5084753 0.3262122 0.5509339 -0.514124 0.3262122 0.5509339 -0.519487 0.3262122 0.5509339 -0.5245917 0.3262122 0.5509339 -0.529462 0.3262122 0.5509339 -0.5341183 0.3262122 0.5509339 -0.5385787 0.3262122 0.5509339 -0.5428591 0.3262122 0.5509339 -0.5469733 0.3262122 0.5509339 -0.5509339 0.3262122 0.5509339 -0.5547519 0.3262122 0.5509339 -0.5584371 0.3262122 0.5509339 -0.5619986 0.3262122 0.5509339 -0.5654443 0.3262122 0.5509339 -0.5687816 0.3262122 0.5509339 -0.092819 0.3544566 0.5509339 -0.2262531 0.3544566 0.5509339 -0.2875993 0.3544566 0.5509339 -0.3262122 0.3544566 0.5509339 -0.3544566 0.3544566 0.5509339 -0.3767383 0.3544566 0.5509339 -0.3951413 0.3544566 0.5509339 -0.4108177 0.3544566 0.5509339 -0.4244723 0.3544566 0.5509339 -0.4365675 0.3544566 0.5509339 -0.4474232 0.3544566 0.5509339 -0.45727 0.3544566 0.5509339 -0.4662797 0.3544566 0.5509339 -0.4745834 0.3544566 0.5509339 -0.4822838 0.3544566 0.5509339 -0.4894626 0.3544566 0.5509339 -0.4961862 0.3544566 0.5509339 -0.5025087 0.3544566 0.5509339 -0.5084753 0.3544566 0.5509339 -0.514124 0.3544566 0.5509339 -0.519487 0.3544566 0.5509339 -0.5245917 0.3544566 0.5509339 -0.529462 0.3544566 0.5509339 -0.5341183 0.3544566 0.5509339 -0.5385787 0.3544566 0.5509339 -0.5428591 0.3544566 0.5509339 -0.5469733 0.3544566 0.5509339 -0.5509339 0.3544566 0.5509339 -0.5547519 0.3544566 0.5509339 -0.5584371 0.3544566 0.5509339 -0.5619986 0.3544566 0.5509339 -0.5654443 0.3544566 0.5509339 -0.5687816 0.3544566 0.5509339 -0.092819 0.3767383 0.5509339 -0.2262531 0.3767383 0.5509339 -0.2875993 0.3767383 0.5509339 -0.3262122 0.3767383 0.5509339 -0.3544566 0.3767383 0.5509339 -0.3767383 0.3767383 0.5509339 -0.3951413 0.3767383 0.5509339 -0.4108177 0.3767383 0.5509339 -0.4244723 0.3767383 0.5509339 -0.4365675 0.3767383 0.5509339 -0.4474232 0.3767383 0.5509339 -0.45727 0.3767383 0.5509339 -0.4662797 0.3767383 0.5509339 -0.4745834 0.3767383 0.5509339 -0.4822838 0.3767383 0.5509339 -0.4894626 0.3767383 0.5509339 -0.4961862 0.3767383 0.5509339 -0.5025087 0.3767383 0.5509339 -0.5084753 0.3767383 0.5509339 -0.514124 0.3767383 0.5509339 -0.519487 0.3767383 0.5509339 -0.5245917 0.3767383 0.5509339 -0.529462 0.3767383 0.5509339 -0.5341183 0.3767383 0.5509339 -0.5385787 0.3767383 0.5509339 -0.5428591 0.3767383 0.5509339 -0.5469733 0.3767383 0.5509339 -0.5509339 0.3767383 0.5509339 -0.5547519 0.3767383 0.5509339 -0.5584371 0.3767383 0.5509339 -0.5619986 0.3767383 0.5509339 -0.5654443 0.3767383 0.5509339 -0.5687816 0.3767383 0.5509339 -0.092819 0.3951413 0.5509339 -0.2262531 0.3951413 0.5509339 -0.2875993 0.3951413 0.5509339 -0.3262122 0.3951413 0.5509339 -0.3544566 0.3951413 0.5509339 -0.3767383 0.3951413 0.5509339 -0.3951413 0.3951413 0.5509339 -0.4108177 0.3951413 0.5509339 -0.4244723 0.3951413 0.5509339 -0.4365675 0.3951413 0.5509339 -0.4474232 0.3951413 0.5509339 -0.45727 0.3951413 0.5509339 -0.4662797 0.3951413 0.5509339 -0.4745834 0.3951413 0.5509339 -0.4822838 0.3951413 0.5509339 -0.4894626 0.3951413 0.5509339 -0.4961862 0.3951413 0.5509339 -0.5025087 0.3951413 0.5509339 -0.5084753 0.3951413 0.5509339 -0.514124 0.3951413 0.5509339 -0.519487 0.3951413 0.5509339 -0.5245917 0.3951413 0.5509339 -0.529462 0.3951413 0.5509339 -0.5341183 0.3951413 0.5509339 -0.5385787 0.3951413 0.5509339 -0.5428591 0.3951413 0.5509339 -0.5469733 0.3951413 0.5509339 -0.5509339 0.3951413 0.5509339 -0.5547519 0.3951413 0.5509339 -0.5584371 0.3951413 0.5509339 -0.5619986 0.3951413 0.5509339 -0.5654443 0.3951413 0.5509339 -0.5687816 0.3951413 0.5509339 -0.092819 0.4108177 0.5509339 -0.2262531 0.4108177 0.5509339 -0.2875993 0.4108177 0.5509339 -0.3262122 0.4108177 0.5509339 -0.3544566 0.4108177 0.5509339 -0.3767383 0.4108177 0.5509339 -0.3951413 0.4108177 0.5509339 -0.4108177 0.4108177 0.5509339 -0.4244723 0.4108177 0.5509339 -0.4365675 0.4108177 0.5509339 -0.4474232 0.4108177 0.5509339 -0.45727 0.4108177 0.5509339 -0.4662797 0.4108177 0.5509339 -0.4745834 0.4108177 0.5509339 -0.4822838 0.4108177 0.5509339 -0.4894626 0.4108177 0.5509339 -0.4961862 0.4108177 0.5509339 -0.5025087 0.4108177 0.5509339 -0.5084753 0.4108177 0.5509339 -0.514124 0.4108177 0.5509339 -0.519487 0.4108177 0.5509339 -0.5245917 0.4108177 0.5509339 -0.529462 0.4108177 0.5509339 -0.5341183 0.4108177 0.5509339 -0.5385787 0.4108177 0.5509339 -0.5428591 0.4108177 0.5509339 -0.5469733 0.4108177 0.5509339 -0.5509339 0.4108177 0.5509339 -0.5547519 0.4108177 0.5509339 -0.5584371 0.4108177 0.5509339 -0.5619986 0.4108177 0.5509339 -0.5654443 0.4108177 0.5509339 -0.5687816 0.4108177 0.5509339 -0.092819 0.4244723 0.5509339 -0.2262531 0.4244723 0.5509339 -0.2875993 0.4244723 0.5509339 -0.3262122 0.4244723 0.5509339 -0.3544566 0.4244723 0.5509339 -0.3767383 0.4244723 0.5509339 -0.3951413 0.4244723 0.5509339 -0.4108177 0.4244723 0.5509339 -0.4244723 0.4244723 0.5509339 -0.4365675 0.4244723 0.5509339 -0.4474232 0.4244723 0.5509339 -0.45727 0.4244723 0.5509339 -0.4662797 0.4244723 0.5509339 -0.4745834 0.4244723 0.5509339 -0.4822838 0.4244723 0.5509339 -0.4894626 0.4244723 0.5509339 -0.4961862 0.4244723 0.5509339 -0.5025087 0.4244723 0.5509339 -0.5084753 0.4244723 0.5509339 -0.514124 0.4244723 0.5509339 -0.519487 0.4244723 0.5509339 -0.5245917 0.4244723 0.5509339 -0.529462 0.4244723 0.5509339 -0.5341183 0.4244723 0.5509339 -0.5385787 0.4244723 0.5509339 -0.5428591 0.4244723 0.5509339 -0.5469733 0.4244723 0.5509339 -0.5509339 0.4244723 0.5509339 -0.5547519 0.4244723 0.5509339 -0.5584371 0.4244723 0.5509339 -0.5619986 0.4244723 0.5509339 -0.5654443 0.4244723 0.5509339 -0.5687816 0.4244723 0.5509339 -0.092819 0.4365675 0.5509339 -0.2262531 0.4365675 0.5509339 -0.2875993 0.4365675 0.5509339 -0.3262122 0.4365675 0.5509339 -0.3544566 0.4365675 0.5509339 -0.3767383 0.4365675 0.5509339 -0.3951413 0.4365675 0.5509339 -0.4108177 0.4365675 0.5509339 -0.4244723 0.4365675 0.5509339 -0.4365675 0.4365675 0.5509339 -0.4474232 0.4365675 0.5509339 -0.45727 0.4365675 0.5509339 -0.4662797 0.4365675 0.5509339 -0.4745834 0.4365675 0.5509339 -0.4822838 0.4365675 0.5509339 -0.4894626 0.4365675 0.5509339 -0.4961862 0.4365675 0.5509339 -0.5025087 0.4365675 0.5509339 -0.5084753 0.4365675 0.5509339 -0.514124 0.4365675 0.5509339 -0.519487 0.4365675 0.5509339 -0.5245917 0.4365675 0.5509339 -0.529462 0.4365675 0.5509339 -0.5341183 0.4365675 0.5509339 -0.5385787 0.4365675 0.5509339 -0.5428591 0.4365675 0.5509339 -0.5469733 0.4365675 0.5509339 -0.5509339 0.4365675 0.5509339 -0.5547519 0.4365675 0.5509339 -0.5584371 0.4365675 0.5509339 -0.5619986 0.4365675 0.5509339 -0.5654443 0.4365675 0.5509339 -0.5687816 0.4365675 0.5509339 -0.092819 0.4474232 0.5509339 -0.2262531 0.4474232 0.5509339 -0.2875993 0.4474232 0.5509339 -0.3262122 0.4474232 0.5509339 -0.3544566 0.4474232 0.5509339 -0.3767383 0.4474232 0.5509339 -0.3951413 0.4474232 0.5509339 -0.4108177 0.4474232 0.5509339 -0.4244723 0.4474232 0.5509339 -0.4365675 0.4474232 0.5509339 -0.4474232 0.4474232 0.5509339 -0.45727 0.4474232 0.5509339 -0.4662797 0.4474232 0.5509339 -0.4745834 0.4474232 0.5509339 -0.4822838 0.4474232 0.5509339 -0.4894626 0.4474232 0.5509339 -0.4961862 0.4474232 0.5509339 -0.5025087 0.4474232 0.5509339 -0.5084753 0.4474232 0.5509339 -0.514124 0.4474232 0.5509339 -0.519487 0.4474232 0.5509339 -0.5245917 0.4474232 0.5509339 -0.529462 0.4474232 0.5509339 -0.5341183 0.4474232 0.5509339 -0.5385787 0.4474232 0.5509339 -0.5428591 0.4474232 0.5509339 -0.5469733 0.4474232 0.5509339 -0.5509339 0.4474232 0.5509339 -0.5547519 0.4474232 0.5509339 -0.5584371 0.4474232 0.5509339 -0.5619986 0.4474232 0.5509339 -0.5654443 0.4474232 0.5509339 -0.5687816 0.4474232 0.5509339 -0.092819 0.45727 0.5509339 -0.2262531 0.45727 0.5509339 -0.2875993 0.45727 0.5509339 -0.3262122 0.45727 0.5509339 -0.3544566 0.45727 0.5509339 -0.3767383 0.45727 0.5509339 -0.3951413 0.45727 0.5509339 -0.4108177 0.45727 0.5509339 -0.4244723 0.45727 0.5509339 -0.4365675 0.45727 0.5509339 -0.4474232 0.45727 0.5509339 -0.45727 0.45727 0.5509339 -0.4662797 0.45727 0.5509339 -0.4745834 0.45727 0.5509339 -0.4822838 0.45727 0.5509339 -0.4894626 0.45727 0.5509339 -0.4961862 0.45727 0.5509339 -0.5025087 0.45727 0.5509339 -0.5084753 0.45727 0.5509339 -0.514124 0.45727 0.5509339 -0.519487 0.45727 0.5509339 -0.5245917 0.45727 0.5509339 -0.529462 0.45727 0.5509339 -0.5341183 0.45727 0.5509339 -0.5385787 0.45727 0.5509339 -0.5428591 0.45727 0.5509339 -0.5469733 0.45727 0.5509339 -0.5509339 0.45727 0.5509339 -0.5547519 0.45727 0.5509339 -0.5584371 0.45727 0.5509339 -0.5619986 0.45727 0.5509339 -0.5654443 0.45727 0.5509339 -0.5687816 0.45727 0.5509339 -0.092819 0.4662797 0.5509339 -0.2262531 0.4662797 0.5509339 -0.2875993 0.4662797 0.5509339 -0.3262122 0.4662797 0.5509339 -0.3544566 0.4662797 0.5509339 -0.3767383 0.4662797 0.5509339 -0.3951413 0.4662797 0.5509339 -0.4108177 0.4662797 0.5509339 -0.4244723 0.4662797 0.5509339 -0.4365675 0.4662797 0.5509339 -0.4474232 0.4662797 0.5509339 -0.45727 0.4662797 0.5509339 -0.4662797 0.4662797 0.5509339 -0.4745834 0.4662797 0.5509339 -0.4822838 0.4662797 0.5509339 -0.4894626 0.4662797 0.5509339 -0.4961862 0.4662797 0.5509339 -0.5025087 0.4662797 0.5509339 -0.5084753 0.4662797 0.5509339 -0.514124 0.4662797 0.5509339 -0.519487 0.4662797 0.5509339 -0.5245917 0.4662797 0.5509339 -0.529462 0.4662797 0.5509339 -0.5341183 0.4662797 0.5509339 -0.5385787 0.4662797 0.5509339 -0.5428591 0.4662797 0.5509339 -0.5469733 0.4662797 0.5509339 -0.5509339 0.4662797 0.5509339 -0.5547519 0.4662797 0.5509339 -0.5584371 0.4662797 0.5509339 -0.5619986 0.4662797 0.5509339 -0.5654443 0.4662797 0.5509339 -0.5687816 0.4662797 0.5509339 -0.092819 0.4745834 0.5509339 -0.2262531 0.4745834 0.5509339 -0.2875993 0.4745834 0.5509339 -0.3262122 0.4745834 0.5509339 -0.3544566 0.4745834 0.5509339 -0.3767383 0.4745834 0.5509339 -0.3951413 0.4745834 0.5509339 -0.4108177 0.4745834 0.5509339 -0.4244723 0.4745834 0.5509339 -0.4365675 0.4745834 0.5509339 -0.4474232 0.4745834 0.5509339 -0.45727 0.4745834 0.5509339 -0.4662797 0.4745834 0.5509339 -0.4745834 0.4745834 0.5509339 -0.4822838 0.4745834 0.5509339 -0.4894626 0.4745834 0.5509339 -0.4961862 0.4745834 0.5509339 -0.5025087 0.4745834 0.5509339 -0.5084753 0.4745834 0.5509339 -0.514124 0.4745834 0.5509339 -0.519487 0.4745834 0.5509339 -0.5245917 0.4745834 0.5509339 -0.529462 0.4745834 0.5509339 -0.5341183 0.4745834 0.5509339 -0.5385787 0.4745834 0.5509339 -0.5428591 0.4745834 0.5509339 -0.5469733 0.4745834 0.5509339 -0.5509339 0.4745834 0.5509339 -0.5547519 0.4745834 0.5509339 -0.5584371 0.4745834 0.5509339 -0.5619986 0.4745834 0.5509339 -0.5654443 0.4745834 0.5509339 -0.5687816 0.4745834 0.5509339 -0.092819 0.4822838 0.5509339 -0.2262531 0.4822838 0.5509339 -0.2875993 0.4822838 0.5509339 -0.3262122 0.4822838 0.5509339 -0.3544566 0.4822838 0.5509339 -0.3767383 0.4822838 0.5509339 -0.3951413 0.4822838 0.5509339 -0.4108177 0.4822838 0.5509339 -0.4244723 0.4822838 0.5509339 -0.4365675 0.4822838 0.5509339 -0.4474232 0.4822838 0.5509339 -0.45727 0.4822838 0.5509339 -0.4662797 0.4822838 0.5509339 -0.4745834 0.4822838 0.5509339 -0.4822838 0.4822838 0.5509339 -0.4894626 0.4822838 0.5509339 -0.4961862 0.4822838 0.5509339 -0.5025087 0.4822838 0.5509339 -0.5084753 0.4822838 0.5509339 -0.514124 0.4822838 0.5509339 -0.519487 0.4822838 0.5509339 -0.5245917 0.4822838 0.5509339 -0.529462 0.4822838 0.5509339 -0.5341183 0.4822838 0.5509339 -0.5385787 0.4822838 0.5509339 -0.5428591 0.4822838 0.5509339 -0.5469733 0.4822838 0.5509339 -0.5509339 0.4822838 0.5509339 -0.5547519 0.4822838 0.5509339 -0.5584371 0.4822838 0.5509339 -0.5619986 0.4822838 0.5509339 -0.5654443 0.4822838 0.5509339 -0.5687816 0.4822838 0.5509339 -0.092819 0.4894626 0.5509339 -0.2262531 0.4894626 0.5509339 -0.2875993 0.4894626 0.5509339 -0.3262122 0.4894626 0.5509339 -0.3544566 0.4894626 0.5509339 -0.3767383 0.4894626 0.5509339 -0.3951413 0.4894626 0.5509339 -0.4108177 0.4894626 0.5509339 -0.4244723 0.4894626 0.5509339 -0.4365675 0.4894626 0.5509339 -0.4474232 0.4894626 0.5509339 -0.45727 0.4894626 0.5509339 -0.4662797 0.4894626 0.5509339 -0.4745834 0.4894626 0.5509339 -0.4822838 0.4894626 0.5509339 -0.4894626 0.4894626 0.5509339 -0.4961862 0.4894626 0.5509339 -0.5025087 0.4894626 0.5509339 -0.5084753 0.4894626 0.5509339 -0.514124 0.4894626 0.5509339 -0.519487 0.4894626 0.5509339 -0.5245917 0.4894626 0.5509339 -0.529462 0.4894626 0.5509339 -0.5341183 0.4894626 0.5509339 -0.5385787 0.4894626 0.5509339 -0.5428591 0.4894626 0.5509339 -0.5469733 0.4894626 0.5509339 -0.5509339 0.4894626 0.5509339 -0.5547519 0.4894626 0.5509339 -0.5584371 0.4894626 0.5509339 -0.5619986 0.4894626 0.5509339 -0.5654443 0.4894626 0.5509339 -0.5687816 0.4894626 0.5509339 -0.092819 0.4961862 0.5509339 -0.2262531 0.4961862 0.5509339 -0.2875993 0.4961862 0.5509339 -0.3262122 0.4961862 0.5509339 -0.3544566 0.4961862 0.5509339 -0.3767383 0.4961862 0.5509339 -0.3951413 0.4961862 0.5509339 -0.4108177 0.4961862 0.5509339 -0.4244723 0.4961862 0.5509339 -0.4365675 0.4961862 0.5509339 -0.4474232 0.4961862 0.5509339 -0.45727 0.4961862 0.5509339 -0.4662797 0.4961862 0.5509339 -0.4745834 0.4961862 0.5509339 -0.4822838 0.4961862 0.5509339 -0.4894626 0.4961862 0.5509339 -0.4961862 0.4961862 0.5509339 -0.5025087 0.4961862 0.5509339 -0.5084753 0.4961862 0.5509339 -0.514124 0.4961862 0.5509339 -0.519487 0.4961862 0.5509339 -0.5245917 0.4961862 0.5509339 -0.529462 0.4961862 0.5509339 -0.5341183 0.4961862 0.5509339 -0.5385787 0.4961862 0.5509339 -0.5428591 0.4961862 0.5509339 -0.5469733 0.4961862 0.5509339 -0.5509339 0.4961862 0.5509339 -0.5547519 0.4961862 0.5509339 -0.5584371 0.4961862 0.5509339 -0.5619986 0.4961862 0.5509339 -0.5654443 0.4961862 0.5509339 -0.5687816 0.4961862 0.5509339 -0.092819 0.5025087 0.5509339 -0.2262531 0.5025087 0.5509339 -0.2875993 0.5025087 0.5509339 -0.3262122 0.5025087 0.5509339 -0.3544566 0.5025087 0.5509339 -0.3767383 0.5025087 0.5509339 -0.3951413 0.5025087 0.5509339 -0.4108177 0.5025087 0.5509339 -0.4244723 0.5025087 0.5509339 -0.4365675 0.5025087 0.5509339 -0.4474232 0.5025087 0.5509339 -0.45727 0.5025087 0.5509339 -0.4662797 0.5025087 0.5509339 -0.4745834 0.5025087 0.5509339 -0.4822838 0.5025087 0.5509339 -0.4894626 0.5025087 0.5509339 -0.4961862 0.5025087 0.5509339 -0.5025087 0.5025087 0.5509339 -0.5084753 0.5025087 0.5509339 -0.514124 0.5025087 0.5509339 -0.519487 0.5025087 0.5509339 -0.5245917 0.5025087 0.5509339 -0.529462 0.5025087 0.5509339 -0.5341183 0.5025087 0.5509339 -0.5385787 0.5025087 0.5509339 -0.5428591 0.5025087 0.5509339 -0.5469733 0.5025087 0.5509339 -0.5509339 0.5025087 0.5509339 -0.5547519 0.5025087 0.5509339 -0.5584371 0.5025087 0.5509339 -0.5619986 0.5025087 0.5509339 -0.5654443 0.5025087 0.5509339 -0.5687816 0.5025087 0.5509339 -0.092819 0.5084753 0.5509339 -0.2262531 0.5084753 0.5509339 -0.2875993 0.5084753 0.5509339 -0.3262122 0.5084753 0.5509339 -0.3544566 0.5084753 0.5509339 -0.3767383 0.5084753 0.5509339 -0.3951413 0.5084753 0.5509339 -0.4108177 0.5084753 0.5509339 -0.4244723 0.5084753 0.5509339 -0.4365675 0.5084753 0.5509339 -0.4474232 0.5084753 0.5509339 -0.45727 0.5084753 0.5509339 -0.4662797 0.5084753 0.5509339 -0.4745834 0.5084753 0.5509339 -0.4822838 0.5084753 0.5509339 -0.4894626 0.5084753 0.5509339 -0.4961862 0.5084753 0.5509339 -0.5025087 0.5084753 0.5509339 -0.5084753 0.5084753 0.5509339 -0.514124 0.5084753 0.5509339 -0.519487 0.5084753 0.5509339 -0.5245917 0.5084753 0.5509339 -0.529462 0.5084753 0.5509339 -0.5341183 0.5084753 0.5509339 -0.5385787 0.5084753 0.5509339 -0.5428591 0.5084753 0.5509339 -0.5469733 0.5084753 0.5509339 -0.5509339 0.5084753 0.5509339 -0.5547519 0.5084753 0.5509339 -0.5584371 0.5084753 0.5509339 -0.5619986 0.5084753 0.5509339 -0.5654443 0.5084753 0.5509339 -0.5687816 0.5084753 0.5509339 -0.092819 0.514124 0.5509339 -0.2262531 0.514124 0.5509339 -0.2875993 0.514124 0.5509339 -0.3262122 0.514124 0.5509339 -0.3544566 0.514124 0.5509339 -0.3767383 0.514124 0.5509339 -0.3951413 0.514124 0.5509339 -0.4108177 0.514124 0.5509339 -0.4244723 0.514124 0.5509339 -0.4365675 0.514124 0.5509339 -0.4474232 0.514124 0.5509339 -0.45727 0.514124 0.5509339 -0.4662797 0.514124 0.5509339 -0.4745834 0.514124 0.5509339 -0.4822838 0.514124 0.5509339 -0.4894626 0.514124 0.5509339 -0.4961862 0.514124 0.5509339 -0.5025087 0.514124 0.5509339 -0.5084753 0.514124 0.5509339 -0.514124 0.514124 0.5509339 -0.519487 0.514124 0.5509339 -0.5245917 0.514124 0.5509339 -0.529462 0.514124 0.5509339 -0.5341183 0.514124 0.5509339 -0.5385787 0.514124 0.5509339 -0.5428591 0.514124 0.5509339 -0.5469733 0.514124 0.5509339 -0.5509339 0.514124 0.5509339 -0.5547519 0.514124 0.5509339 -0.5584371 0.514124 0.5509339 -0.5619986 0.514124 0.5509339 -0.5654443 0.514124 0.5509339 -0.5687816 0.514124 0.5509339 -0.092819 0.519487 0.5509339 -0.2262531 0.519487 0.5509339 -0.2875993 0.519487 0.5509339 -0.3262122 0.519487 0.5509339 -0.3544566 0.519487 0.5509339 -0.3767383 0.519487 0.5509339 -0.3951413 0.519487 0.5509339 -0.4108177 0.519487 0.5509339 -0.4244723 0.519487 0.5509339 -0.4365675 0.519487 0.5509339 -0.4474232 0.519487 0.5509339 -0.45727 0.519487 0.5509339 -0.4662797 0.519487 0.5509339 -0.4745834 0.519487 0.5509339 -0.4822838 0.519487 0.5509339 -0.4894626 0.519487 0.5509339 -0.4961862 0.519487 0.5509339 -0.5025087 0.519487 0.5509339 -0.5084753 0.519487 0.5509339 -0.514124 0.519487 0.5509339 -0.519487 0.519487 0.5509339 -0.5245917 0.519487 0.5509339 -0.529462 0.519487 0.5509339 -0.5341183 0.519487 0.5509339 -0.5385787 0.519487 0.5509339 -0.5428591 0.519487 0.5509339 -0.5469733 0.519487 0.5509339 -0.5509339 0.519487 0.5509339 -0.5547519 0.519487 0.5509339 -0.5584371 0.519487 0.5509339 -0.5619986 0.519487 0.5509339 -0.5654443 0.519487 0.5509339 -0.5687816 0.519487 0.5509339 -0.092819 0.5245917 0.5509339 -0.2262531 0.5245917 0.5509339 -0.2875993 0.5245917 0.5509339 -0.3262122 0.5245917 0.5509339 -0.3544566 0.5245917 0.5509339 -0.3767383 0.5245917 0.5509339 -0.3951413 0.5245917 0.5509339 -0.4108177 0.5245917 0.5509339 -0.4244723 0.5245917 0.5509339 -0.4365675 0.5245917 0.5509339 -0.4474232 0.5245917 0.5509339 -0.45727 0.5245917 0.5509339 -0.4662797 0.5245917 0.5509339 -0.4745834 0.5245917 0.5509339 -0.4822838 0.5245917 0.5509339 -0.4894626 0.5245917 0.5509339 -0.4961862 0.5245917 0.5509339 -0.5025087 0.5245917 0.5509339 -0.5084753 0.5245917 0.5509339 -0.514124 0.5245917 0.5509339 -0.519487 0.5245917 0.5509339 -0.5245917 0.5245917 0.5509339 -0.529462 0.5245917 0.5509339 -0.5341183 0.5245917 0.5509339 -0.5385787 0.5245917 0.5509339 -0.5428591 0.5245917 0.5509339 -0.5469733 0.5245917 0.5509339 -0.5509339 0.5245917 0.5509339 -0.5547519 0.5245917 0.5509339 -0.5584371 0.5245917 0.5509339 -0.5619986 0.5245917 0.5509339 -0.5654443 0.5245917 0.5509339 -0.5687816 0.5245917 0.5509339 -0.092819 0.529462 0.5509339 -0.2262531 0.529462 0.5509339 -0.2875993 0.529462 0.5509339 -0.3262122 0.529462 0.5509339 -0.3544566 0.529462 0.5509339 -0.3767383 0.529462 0.5509339 -0.3951413 0.529462 0.5509339 -0.4108177 0.529462 0.5509339 -0.4244723 0.529462 0.5509339 -0.4365675 0.529462 0.5509339 -0.4474232 0.529462 0.5509339 -0.45727 0.529462 0.5509339 -0.4662797 0.529462 0.5509339 -0.4745834 0.529462 0.5509339 -0.4822838 0.529462 0.5509339 -0.4894626 0.529462 0.5509339 -0.4961862 0.529462 0.5509339 -0.5025087 0.529462 0.5509339 -0.5084753 0.529462 0.5509339 -0.514124 0.529462 0.5509339 -0.519487 0.529462 0.5509339 -0.5245917 0.529462 0.5509339 -0.529462 0.529462 0.5509339 -0.5341183 0.529462 0.5509339 -0.5385787 0.529462 0.5509339 -0.5428591 0.529462 0.5509339 -0.5469733 0.529462 0.5509339 -0.5509339 0.529462 0.5509339 -0.5547519 0.529462 0.5509339 -0.5584371 0.529462 0.5509339 -0.5619986 0.529462 0.5509339 -0.5654443 0.529462 0.5509339 -0.5687816 0.529462 0.5509339 -0.092819 0.5341183 0.5509339 -0.2262531 0.5341183 0.5509339 -0.2875993 0.5341183 0.5509339 -0.3262122 0.5341183 0.5509339 -0.3544566 0.5341183 0.5509339 -0.3767383 0.5341183 0.5509339 -0.3951413 0.5341183 0.5509339 -0.4108177 0.5341183 0.5509339 -0.4244723 0.5341183 0.5509339 -0.4365675 0.5341183 0.5509339 -0.4474232 0.5341183 0.5509339 -0.45727 0.5341183 0.5509339 -0.4662797 0.5341183 0.5509339 -0.4745834 0.5341183 0.5509339 -0.4822838 0.5341183 0.5509339 -0.4894626 0.5341183 0.5509339 -0.4961862 0.5341183 0.5509339 -0.5025087 0.5341183 0.5509339 -0.5084753 0.5341183 0.5509339 -0.514124 0.5341183 0.5509339 -0.519487 0.5341183 0.5509339 -0.5245917 0.5341183 0.5509339 -0.529462 0.5341183 0.5509339 -0.5341183 0.5341183 0.5509339 -0.5385787 0.5341183 0.5509339 -0.5428591 0.5341183 0.5509339 -0.5469733 0.5341183 0.5509339 -0.5509339 0.5341183 0.5509339 -0.5547519 0.5341183 0.5509339 -0.5584371 0.5341183 0.5509339 -0.5619986 0.5341183 0.5509339 -0.5654443 0.5341183 0.5509339 -0.5687816 0.5341183 0.5509339 -0.092819 0.5385787 0.5509339 -0.2262531 0.5385787 0.5509339 -0.2875993 0.5385787 0.5509339 -0.3262122 0.5385787 0.5509339 -0.3544566 0.5385787 0.5509339 -0.3767383 0.5385787 0.5509339 -0.3951413 0.5385787 0.5509339 -0.4108177 0.5385787 0.5509339 -0.4244723 0.5385787 0.5509339 -0.4365675 0.5385787 0.5509339 -0.4474232 0.5385787 0.5509339 -0.45727 0.5385787 0.5509339 -0.4662797 0.5385787 0.5509339 -0.4745834 0.5385787 0.5509339 -0.4822838 0.5385787 0.5509339 -0.4894626 0.5385787 0.5509339 -0.4961862 0.5385787 0.5509339 -0.5025087 0.5385787 0.5509339 -0.5084753 0.5385787 0.5509339 -0.514124 0.5385787 0.5509339 -0.519487 0.5385787 0.5509339 -0.5245917 0.5385787 0.5509339 -0.529462 0.5385787 0.5509339 -0.5341183 0.5385787 0.5509339 -0.5385787 0.5385787 0.5509339 -0.5428591 0.5385787 0.5509339 -0.5469733 0.5385787 0.5509339 -0.5509339 0.5385787 0.5509339 -0.5547519 0.5385787 0.5509339 -0.5584371 0.5385787 0.5509339 -0.5619986 0.5385787 0.5509339 -0.5654443 0.5385787 0.5509339 -0.5687816 0.5385787 0.5509339 -0.092819 0.5428591 0.5509339 -0.2262531 0.5428591 0.5509339 -0.2875993 0.5428591 0.5509339 -0.3262122 0.5428591 0.5509339 -0.3544566 0.5428591 0.5509339 -0.3767383 0.5428591 0.5509339 -0.3951413 0.5428591 0.5509339 -0.4108177 0.5428591 0.5509339 -0.4244723 0.5428591 0.5509339 -0.4365675 0.5428591 0.5509339 -0.4474232 0.5428591 0.5509339 -0.45727 0.5428591 0.5509339 -0.4662797 0.5428591 0.5509339 -0.4745834 0.5428591 0.5509339 -0.4822838 0.5428591 0.5509339 -0.4894626 0.5428591 0.5509339 -0.4961862 0.5428591 0.5509339 -0.5025087 0.5428591 0.5509339 -0.5084753 0.5428591 0.5509339 -0.514124 0.5428591 0.5509339 -0.519487 0.5428591 0.5509339 -0.5245917 0.5428591 0.5509339 -0.529462 0.5428591 0.5509339 -0.5341183 0.5428591 0.5509339 -0.5385787 0.5428591 0.5509339 -0.5428591 0.5428591 0.5509339 -0.5469733 0.5428591 0.5509339 -0.5509339 0.5428591 0.5509339 -0.5547519 0.5428591 0.5509339 -0.5584371 0.5428591 0.5509339 -0.5619986 0.5428591 0.5509339 -0.5654443 0.5428591 0.5509339 -0.5687816 0.5428591 0.5509339 -0.092819 0.5469733 0.5509339 -0.2262531 0.5469733 0.5509339 -0.2875993 0.5469733 0.5509339 -0.3262122 0.5469733 0.5509339 -0.3544566 0.5469733 0.5509339 -0.3767383 0.5469733 0.5509339 -0.3951413 0.5469733 0.5509339 -0.4108177 0.5469733 0.5509339 -0.4244723 0.5469733 0.5509339 -0.4365675 0.5469733 0.5509339 -0.4474232 0.5469733 0.5509339 -0.45727 0.5469733 0.5509339 -0.4662797 0.5469733 0.5509339 -0.4745834 0.5469733 0.5509339 -0.4822838 0.5469733 0.5509339 -0.4894626 0.5469733 0.5509339 -0.4961862 0.5469733 0.5509339 -0.5025087 0.5469733 0.5509339 -0.5084753 0.5469733 0.5509339 -0.514124 0.5469733 0.5509339 -0.519487 0.5469733 0.5509339 -0.5245917 0.5469733 0.5509339 -0.529462 0.5469733 0.5509339 -0.5341183 0.5469733 0.5509339 -0.5385787 0.5469733 0.5509339 -0.5428591 0.5469733 0.5509339 -0.5469733 0.5469733 0.5509339 -0.5509339 0.5469733 0.5509339 -0.5547519 0.5469733 0.5509339 -0.5584371 0.5469733 0.5509339 -0.5619986 0.5469733 0.5509339 -0.5654443 0.5469733 0.5509339 -0.5687816 0.5469733 0.5509339 -0.092819 0.5509339 0.5509339 -0.2262531 0.5509339 0.5509339 -0.2875993 0.5509339 0.5509339 -0.3262122 0.5509339 0.5509339 -0.3544566 0.5509339 0.5509339 -0.3767383 0.5509339 0.5509339 -0.3951413 0.5509339 0.5509339 -0.4108177 0.5509339 0.5509339 -0.4244723 0.5509339 0.5509339 -0.4365675 0.5509339 0.5509339 -0.4474232 0.5509339 0.5509339 -0.45727 0.5509339 0.5509339 -0.4662797 0.5509339 0.5509339 -0.4745834 0.5509339 0.5509339 -0.4822838 0.5509339 0.5509339 -0.4894626 0.5509339 0.5509339 -0.4961862 0.5509339 0.5509339 -0.5025087 0.5509339 0.5509339 -0.5084753 0.5509339 0.5509339 -0.514124 0.5509339 0.5509339 -0.519487 0.5509339 0.5509339 -0.5245917 0.5509339 0.5509339 -0.529462 0.5509339 0.5509339 -0.5341183 0.5509339 0.5509339 -0.5385787 0.5509339 0.5509339 -0.5428591 0.5509339 0.5509339 -0.5469733 0.5509339 0.5509339 -0.5509339 0.5509339 0.5509339 -0.5547519 0.5509339 0.5509339 -0.5584371 0.5509339 0.5509339 -0.5619986 0.5509339 0.5509339 -0.5654443 0.5509339 0.5509339 -0.5687816 0.5509339 0.5509339 -0.092819 0.5547519 0.5509339 -0.2262531 0.5547519 0.5509339 -0.2875993 0.5547519 0.5509339 -0.3262122 0.5547519 0.5509339 -0.3544566 0.5547519 0.5509339 -0.3767383 0.5547519 0.5509339 -0.3951413 0.5547519 0.5509339 -0.4108177 0.5547519 0.5509339 -0.4244723 0.5547519 0.5509339 -0.4365675 0.5547519 0.5509339 -0.4474232 0.5547519 0.5509339 -0.45727 0.5547519 0.5509339 -0.4662797 0.5547519 0.5509339 -0.4745834 0.5547519 0.5509339 -0.4822838 0.5547519 0.5509339 -0.4894626 0.5547519 0.5509339 -0.4961862 0.5547519 0.5509339 -0.5025087 0.5547519 0.5509339 -0.5084753 0.5547519 0.5509339 -0.514124 0.5547519 0.5509339 -0.519487 0.5547519 0.5509339 -0.5245917 0.5547519 0.5509339 -0.529462 0.5547519 0.5509339 -0.5341183 0.5547519 0.5509339 -0.5385787 0.5547519 0.5509339 -0.5428591 0.5547519 0.5509339 -0.5469733 0.5547519 0.5509339 -0.5509339 0.5547519 0.5509339 -0.5547519 0.5547519 0.5509339 -0.5584371 0.5547519 0.5509339 -0.5619986 0.5547519 0.5509339 -0.5654443 0.5547519 0.5509339 -0.5687816 0.5547519 0.5509339 -0.092819 0.5584371 0.5509339 -0.2262531 0.5584371 0.5509339 -0.2875993 0.5584371 0.5509339 -0.3262122 0.5584371 0.5509339 -0.3544566 0.5584371 0.5509339 -0.3767383 0.5584371 0.5509339 -0.3951413 0.5584371 0.5509339 -0.4108177 0.5584371 0.5509339 -0.4244723 0.5584371 0.5509339 -0.4365675 0.5584371 0.5509339 -0.4474232 0.5584371 0.5509339 -0.45727 0.5584371 0.5509339 -0.4662797 0.5584371 0.5509339 -0.4745834 0.5584371 0.5509339 -0.4822838 0.5584371 0.5509339 -0.4894626 0.5584371 0.5509339 -0.4961862 0.5584371 0.5509339 -0.5025087 0.5584371 0.5509339 -0.5084753 0.5584371 0.5509339 -0.514124 0.5584371 0.5509339 -0.519487 0.5584371 0.5509339 -0.5245917 0.5584371 0.5509339 -0.529462 0.5584371 0.5509339 -0.5341183 0.5584371 0.5509339 -0.5385787 0.5584371 0.5509339 -0.5428591 0.5584371 0.5509339 -0.5469733 0.5584371 0.5509339 -0.5509339 0.5584371 0.5509339 -0.5547519 0.5584371 0.5509339 -0.5584371 0.5584371 0.5509339 -0.5619986 0.5584371 0.5509339 -0.5654443 0.5584371 0.5509339 -0.5687816 0.5584371 0.5509339 -0.092819 0.5619986 0.5509339 -0.2262531 0.5619986 0.5509339 -0.2875993 0.5619986 0.5509339 -0.3262122 0.5619986 0.5509339 -0.3544566 0.5619986 0.5509339 -0.3767383 0.5619986 0.5509339 -0.3951413 0.5619986 0.5509339 -0.4108177 0.5619986 0.5509339 -0.4244723 0.5619986 0.5509339 -0.4365675 0.5619986 0.5509339 -0.4474232 0.5619986 0.5509339 -0.45727 0.5619986 0.5509339 -0.4662797 0.5619986 0.5509339 -0.4745834 0.5619986 0.5509339 -0.4822838 0.5619986 0.5509339 -0.4894626 0.5619986 0.5509339 -0.4961862 0.5619986 0.5509339 -0.5025087 0.5619986 0.5509339 -0.5084753 0.5619986 0.5509339 -0.514124 0.5619986 0.5509339 -0.519487 0.5619986 0.5509339 -0.5245917 0.5619986 0.5509339 -0.529462 0.5619986 0.5509339 -0.5341183 0.5619986 0.5509339 -0.5385787 0.5619986 0.5509339 -0.5428591 0.5619986 0.5509339 -0.5469733 0.5619986 0.5509339 -0.5509339 0.5619986 0.5509339 -0.5547519 0.5619986 0.5509339 -0.5584371 0.5619986 0.5509339 -0.5619986 0.5619986 0.5509339 -0.5654443 0.5619986 0.5509339 -0.5687816 0.5619986 0.5509339 -0.092819 0.5654443 0.5509339 -0.2262531 0.5654443 0.5509339 -0.2875993 0.5654443 0.5509339 -0.3262122 0.5654443 0.5509339 -0.3544566 0.5654443 0.5509339 -0.3767383 0.5654443 0.5509339 -0.3951413 0.5654443 0.5509339 -0.4108177 0.5654443 0.5509339 -0.4244723 0.5654443 0.5509339 -0.4365675 0.5654443 0.5509339 -0.4474232 0.5654443 0.5509339 -0.45727 0.5654443 0.5509339 -0.4662797 0.5654443 0.5509339 -0.4745834 0.5654443 0.5509339 -0.4822838 0.5654443 0.5509339 -0.4894626 0.5654443 0.5509339 -0.4961862 0.5654443 0.5509339 -0.5025087 0.5654443 0.5509339 -0.5084753 0.5654443 0.5509339 -0.514124 0.5654443 0.5509339 -0.519487 0.5654443 0.5509339 -0.5245917 0.5654443 0.5509339 -0.529462 0.5654443 0.5509339 -0.5341183 0.5654443 0.5509339 -0.5385787 0.5654443 0.5509339 -0.5428591 0.5654443 0.5509339 -0.5469733 0.5654443 0.5509339 -0.5509339 0.5654443 0.5509339 -0.5547519 0.5654443 0.5509339 -0.5584371 0.5654443 0.5509339 -0.5619986 0.5654443 0.5509339 -0.5654443 0.5654443 0.5509339 -0.5687816 0.5654443 0.5509339 -0.092819 0.5687816 0.5509339 -0.2262531 0.5687816 0.5509339 -0.2875993 0.5687816 0.5509339 -0.3262122 0.5687816 0.5509339 -0.3544566 0.5687816 0.5509339 -0.3767383 0.5687816 0.5509339 -0.3951413 0.5687816 0.5509339 -0.4108177 0.5687816 0.5509339 -0.4244723 0.5687816 0.5509339 -0.4365675 0.5687816 0.5509339 -0.4474232 0.5687816 0.5509339 -0.45727 0.5687816 0.5509339 -0.4662797 0.5687816 0.5509339 -0.4745834 0.5687816 0.5509339 -0.4822838 0.5687816 0.5509339 -0.4894626 0.5687816 0.5509339 -0.4961862 0.5687816 0.5509339 -0.5025087 0.5687816 0.5509339 -0.5084753 0.5687816 0.5509339 -0.514124 0.5687816 0.5509339 -0.519487 0.5687816 0.5509339 -0.5245917 0.5687816 0.5509339 -0.529462 0.5687816 0.5509339 -0.5341183 0.5687816 0.5509339 -0.5385787 0.5687816 0.5509339 -0.5428591 0.5687816 0.5509339 -0.5469733 0.5687816 0.5509339 -0.5509339 0.5687816 0.5509339 -0.5547519 0.5687816 0.5509339 -0.5584371 0.5687816 0.5509339 -0.5619986 0.5687816 0.5509339 -0.5654443 0.5687816 0.5509339 -0.5687816 0.5687816 0.5509339 -0.092819 0.092819 0.5547519 -0.2262531 0.092819 0.5547519 -0.2875993 0.092819 0.5547519 -0.3262122 0.092819 0.5547519 -0.3544566 0.092819 0.5547519 -0.3767383 0.092819 0.5547519 -0.3951413 0.092819 0.5547519 -0.4108177 0.092819 0.5547519 -0.4244723 0.092819 0.5547519 -0.4365675 0.092819 0.5547519 -0.4474232 0.092819 0.5547519 -0.45727 0.092819 0.5547519 -0.4662797 0.092819 0.5547519 -0.4745834 0.092819 0.5547519 -0.4822838 0.092819 0.5547519 -0.4894626 0.092819 0.5547519 -0.4961862 0.092819 0.5547519 -0.5025087 0.092819 0.5547519 -0.5084753 0.092819 0.5547519 -0.514124 0.092819 0.5547519 -0.519487 0.092819 0.5547519 -0.5245917 0.092819 0.5547519 -0.529462 0.092819 0.5547519 -0.5341183 0.092819 0.5547519 -0.5385787 0.092819 0.5547519 -0.5428591 0.092819 0.5547519 -0.5469733 0.092819 0.5547519 -0.5509339 0.092819 0.5547519 -0.5547519 0.092819 0.5547519 -0.5584371 0.092819 0.5547519 -0.5619986 0.092819 0.5547519 -0.5654443 0.092819 0.5547519 -0.5687816 0.092819 0.5547519 -0.092819 0.2262531 0.5547519 -0.2262531 0.2262531 0.5547519 -0.2875993 0.2262531 0.5547519 -0.3262122 0.2262531 0.5547519 -0.3544566 0.2262531 0.5547519 -0.3767383 0.2262531 0.5547519 -0.3951413 0.2262531 0.5547519 -0.4108177 0.2262531 0.5547519 -0.4244723 0.2262531 0.5547519 -0.4365675 0.2262531 0.5547519 -0.4474232 0.2262531 0.5547519 -0.45727 0.2262531 0.5547519 -0.4662797 0.2262531 0.5547519 -0.4745834 0.2262531 0.5547519 -0.4822838 0.2262531 0.5547519 -0.4894626 0.2262531 0.5547519 -0.4961862 0.2262531 0.5547519 -0.5025087 0.2262531 0.5547519 -0.5084753 0.2262531 0.5547519 -0.514124 0.2262531 0.5547519 -0.519487 0.2262531 0.5547519 -0.5245917 0.2262531 0.5547519 -0.529462 0.2262531 0.5547519 -0.5341183 0.2262531 0.5547519 -0.5385787 0.2262531 0.5547519 -0.5428591 0.2262531 0.5547519 -0.5469733 0.2262531 0.5547519 -0.5509339 0.2262531 0.5547519 -0.5547519 0.2262531 0.5547519 -0.5584371 0.2262531 0.5547519 -0.5619986 0.2262531 0.5547519 -0.5654443 0.2262531 0.5547519 -0.5687816 0.2262531 0.5547519 -0.092819 0.2875993 0.5547519 -0.2262531 0.2875993 0.5547519 -0.2875993 0.2875993 0.5547519 -0.3262122 0.2875993 0.5547519 -0.3544566 0.2875993 0.5547519 -0.3767383 0.2875993 0.5547519 -0.3951413 0.2875993 0.5547519 -0.4108177 0.2875993 0.5547519 -0.4244723 0.2875993 0.5547519 -0.4365675 0.2875993 0.5547519 -0.4474232 0.2875993 0.5547519 -0.45727 0.2875993 0.5547519 -0.4662797 0.2875993 0.5547519 -0.4745834 0.2875993 0.5547519 -0.4822838 0.2875993 0.5547519 -0.4894626 0.2875993 0.5547519 -0.4961862 0.2875993 0.5547519 -0.5025087 0.2875993 0.5547519 -0.5084753 0.2875993 0.5547519 -0.514124 0.2875993 0.5547519 -0.519487 0.2875993 0.5547519 -0.5245917 0.2875993 0.5547519 -0.529462 0.2875993 0.5547519 -0.5341183 0.2875993 0.5547519 -0.5385787 0.2875993 0.5547519 -0.5428591 0.2875993 0.5547519 -0.5469733 0.2875993 0.5547519 -0.5509339 0.2875993 0.5547519 -0.5547519 0.2875993 0.5547519 -0.5584371 0.2875993 0.5547519 -0.5619986 0.2875993 0.5547519 -0.5654443 0.2875993 0.5547519 -0.5687816 0.2875993 0.5547519 -0.092819 0.3262122 0.5547519 -0.2262531 0.3262122 0.5547519 -0.2875993 0.3262122 0.5547519 -0.3262122 0.3262122 0.5547519 -0.3544566 0.3262122 0.5547519 -0.3767383 0.3262122 0.5547519 -0.3951413 0.3262122 0.5547519 -0.4108177 0.3262122 0.5547519 -0.4244723 0.3262122 0.5547519 -0.4365675 0.3262122 0.5547519 -0.4474232 0.3262122 0.5547519 -0.45727 0.3262122 0.5547519 -0.4662797 0.3262122 0.5547519 -0.4745834 0.3262122 0.5547519 -0.4822838 0.3262122 0.5547519 -0.4894626 0.3262122 0.5547519 -0.4961862 0.3262122 0.5547519 -0.5025087 0.3262122 0.5547519 -0.5084753 0.3262122 0.5547519 -0.514124 0.3262122 0.5547519 -0.519487 0.3262122 0.5547519 -0.5245917 0.3262122 0.5547519 -0.529462 0.3262122 0.5547519 -0.5341183 0.3262122 0.5547519 -0.5385787 0.3262122 0.5547519 -0.5428591 0.3262122 0.5547519 -0.5469733 0.3262122 0.5547519 -0.5509339 0.3262122 0.5547519 -0.5547519 0.3262122 0.5547519 -0.5584371 0.3262122 0.5547519 -0.5619986 0.3262122 0.5547519 -0.5654443 0.3262122 0.5547519 -0.5687816 0.3262122 0.5547519 -0.092819 0.3544566 0.5547519 -0.2262531 0.3544566 0.5547519 -0.2875993 0.3544566 0.5547519 -0.3262122 0.3544566 0.5547519 -0.3544566 0.3544566 0.5547519 -0.3767383 0.3544566 0.5547519 -0.3951413 0.3544566 0.5547519 -0.4108177 0.3544566 0.5547519 -0.4244723 0.3544566 0.5547519 -0.4365675 0.3544566 0.5547519 -0.4474232 0.3544566 0.5547519 -0.45727 0.3544566 0.5547519 -0.4662797 0.3544566 0.5547519 -0.4745834 0.3544566 0.5547519 -0.4822838 0.3544566 0.5547519 -0.4894626 0.3544566 0.5547519 -0.4961862 0.3544566 0.5547519 -0.5025087 0.3544566 0.5547519 -0.5084753 0.3544566 0.5547519 -0.514124 0.3544566 0.5547519 -0.519487 0.3544566 0.5547519 -0.5245917 0.3544566 0.5547519 -0.529462 0.3544566 0.5547519 -0.5341183 0.3544566 0.5547519 -0.5385787 0.3544566 0.5547519 -0.5428591 0.3544566 0.5547519 -0.5469733 0.3544566 0.5547519 -0.5509339 0.3544566 0.5547519 -0.5547519 0.3544566 0.5547519 -0.5584371 0.3544566 0.5547519 -0.5619986 0.3544566 0.5547519 -0.5654443 0.3544566 0.5547519 -0.5687816 0.3544566 0.5547519 -0.092819 0.3767383 0.5547519 -0.2262531 0.3767383 0.5547519 -0.2875993 0.3767383 0.5547519 -0.3262122 0.3767383 0.5547519 -0.3544566 0.3767383 0.5547519 -0.3767383 0.3767383 0.5547519 -0.3951413 0.3767383 0.5547519 -0.4108177 0.3767383 0.5547519 -0.4244723 0.3767383 0.5547519 -0.4365675 0.3767383 0.5547519 -0.4474232 0.3767383 0.5547519 -0.45727 0.3767383 0.5547519 -0.4662797 0.3767383 0.5547519 -0.4745834 0.3767383 0.5547519 -0.4822838 0.3767383 0.5547519 -0.4894626 0.3767383 0.5547519 -0.4961862 0.3767383 0.5547519 -0.5025087 0.3767383 0.5547519 -0.5084753 0.3767383 0.5547519 -0.514124 0.3767383 0.5547519 -0.519487 0.3767383 0.5547519 -0.5245917 0.3767383 0.5547519 -0.529462 0.3767383 0.5547519 -0.5341183 0.3767383 0.5547519 -0.5385787 0.3767383 0.5547519 -0.5428591 0.3767383 0.5547519 -0.5469733 0.3767383 0.5547519 -0.5509339 0.3767383 0.5547519 -0.5547519 0.3767383 0.5547519 -0.5584371 0.3767383 0.5547519 -0.5619986 0.3767383 0.5547519 -0.5654443 0.3767383 0.5547519 -0.5687816 0.3767383 0.5547519 -0.092819 0.3951413 0.5547519 -0.2262531 0.3951413 0.5547519 -0.2875993 0.3951413 0.5547519 -0.3262122 0.3951413 0.5547519 -0.3544566 0.3951413 0.5547519 -0.3767383 0.3951413 0.5547519 -0.3951413 0.3951413 0.5547519 -0.4108177 0.3951413 0.5547519 -0.4244723 0.3951413 0.5547519 -0.4365675 0.3951413 0.5547519 -0.4474232 0.3951413 0.5547519 -0.45727 0.3951413 0.5547519 -0.4662797 0.3951413 0.5547519 -0.4745834 0.3951413 0.5547519 -0.4822838 0.3951413 0.5547519 -0.4894626 0.3951413 0.5547519 -0.4961862 0.3951413 0.5547519 -0.5025087 0.3951413 0.5547519 -0.5084753 0.3951413 0.5547519 -0.514124 0.3951413 0.5547519 -0.519487 0.3951413 0.5547519 -0.5245917 0.3951413 0.5547519 -0.529462 0.3951413 0.5547519 -0.5341183 0.3951413 0.5547519 -0.5385787 0.3951413 0.5547519 -0.5428591 0.3951413 0.5547519 -0.5469733 0.3951413 0.5547519 -0.5509339 0.3951413 0.5547519 -0.5547519 0.3951413 0.5547519 -0.5584371 0.3951413 0.5547519 -0.5619986 0.3951413 0.5547519 -0.5654443 0.3951413 0.5547519 -0.5687816 0.3951413 0.5547519 -0.092819 0.4108177 0.5547519 -0.2262531 0.4108177 0.5547519 -0.2875993 0.4108177 0.5547519 -0.3262122 0.4108177 0.5547519 -0.3544566 0.4108177 0.5547519 -0.3767383 0.4108177 0.5547519 -0.3951413 0.4108177 0.5547519 -0.4108177 0.4108177 0.5547519 -0.4244723 0.4108177 0.5547519 -0.4365675 0.4108177 0.5547519 -0.4474232 0.4108177 0.5547519 -0.45727 0.4108177 0.5547519 -0.4662797 0.4108177 0.5547519 -0.4745834 0.4108177 0.5547519 -0.4822838 0.4108177 0.5547519 -0.4894626 0.4108177 0.5547519 -0.4961862 0.4108177 0.5547519 -0.5025087 0.4108177 0.5547519 -0.5084753 0.4108177 0.5547519 -0.514124 0.4108177 0.5547519 -0.519487 0.4108177 0.5547519 -0.5245917 0.4108177 0.5547519 -0.529462 0.4108177 0.5547519 -0.5341183 0.4108177 0.5547519 -0.5385787 0.4108177 0.5547519 -0.5428591 0.4108177 0.5547519 -0.5469733 0.4108177 0.5547519 -0.5509339 0.4108177 0.5547519 -0.5547519 0.4108177 0.5547519 -0.5584371 0.4108177 0.5547519 -0.5619986 0.4108177 0.5547519 -0.5654443 0.4108177 0.5547519 -0.5687816 0.4108177 0.5547519 -0.092819 0.4244723 0.5547519 -0.2262531 0.4244723 0.5547519 -0.2875993 0.4244723 0.5547519 -0.3262122 0.4244723 0.5547519 -0.3544566 0.4244723 0.5547519 -0.3767383 0.4244723 0.5547519 -0.3951413 0.4244723 0.5547519 -0.4108177 0.4244723 0.5547519 -0.4244723 0.4244723 0.5547519 -0.4365675 0.4244723 0.5547519 -0.4474232 0.4244723 0.5547519 -0.45727 0.4244723 0.5547519 -0.4662797 0.4244723 0.5547519 -0.4745834 0.4244723 0.5547519 -0.4822838 0.4244723 0.5547519 -0.4894626 0.4244723 0.5547519 -0.4961862 0.4244723 0.5547519 -0.5025087 0.4244723 0.5547519 -0.5084753 0.4244723 0.5547519 -0.514124 0.4244723 0.5547519 -0.519487 0.4244723 0.5547519 -0.5245917 0.4244723 0.5547519 -0.529462 0.4244723 0.5547519 -0.5341183 0.4244723 0.5547519 -0.5385787 0.4244723 0.5547519 -0.5428591 0.4244723 0.5547519 -0.5469733 0.4244723 0.5547519 -0.5509339 0.4244723 0.5547519 -0.5547519 0.4244723 0.5547519 -0.5584371 0.4244723 0.5547519 -0.5619986 0.4244723 0.5547519 -0.5654443 0.4244723 0.5547519 -0.5687816 0.4244723 0.5547519 -0.092819 0.4365675 0.5547519 -0.2262531 0.4365675 0.5547519 -0.2875993 0.4365675 0.5547519 -0.3262122 0.4365675 0.5547519 -0.3544566 0.4365675 0.5547519 -0.3767383 0.4365675 0.5547519 -0.3951413 0.4365675 0.5547519 -0.4108177 0.4365675 0.5547519 -0.4244723 0.4365675 0.5547519 -0.4365675 0.4365675 0.5547519 -0.4474232 0.4365675 0.5547519 -0.45727 0.4365675 0.5547519 -0.4662797 0.4365675 0.5547519 -0.4745834 0.4365675 0.5547519 -0.4822838 0.4365675 0.5547519 -0.4894626 0.4365675 0.5547519 -0.4961862 0.4365675 0.5547519 -0.5025087 0.4365675 0.5547519 -0.5084753 0.4365675 0.5547519 -0.514124 0.4365675 0.5547519 -0.519487 0.4365675 0.5547519 -0.5245917 0.4365675 0.5547519 -0.529462 0.4365675 0.5547519 -0.5341183 0.4365675 0.5547519 -0.5385787 0.4365675 0.5547519 -0.5428591 0.4365675 0.5547519 -0.5469733 0.4365675 0.5547519 -0.5509339 0.4365675 0.5547519 -0.5547519 0.4365675 0.5547519 -0.5584371 0.4365675 0.5547519 -0.5619986 0.4365675 0.5547519 -0.5654443 0.4365675 0.5547519 -0.5687816 0.4365675 0.5547519 -0.092819 0.4474232 0.5547519 -0.2262531 0.4474232 0.5547519 -0.2875993 0.4474232 0.5547519 -0.3262122 0.4474232 0.5547519 -0.3544566 0.4474232 0.5547519 -0.3767383 0.4474232 0.5547519 -0.3951413 0.4474232 0.5547519 -0.4108177 0.4474232 0.5547519 -0.4244723 0.4474232 0.5547519 -0.4365675 0.4474232 0.5547519 -0.4474232 0.4474232 0.5547519 -0.45727 0.4474232 0.5547519 -0.4662797 0.4474232 0.5547519 -0.4745834 0.4474232 0.5547519 -0.4822838 0.4474232 0.5547519 -0.4894626 0.4474232 0.5547519 -0.4961862 0.4474232 0.5547519 -0.5025087 0.4474232 0.5547519 -0.5084753 0.4474232 0.5547519 -0.514124 0.4474232 0.5547519 -0.519487 0.4474232 0.5547519 -0.5245917 0.4474232 0.5547519 -0.529462 0.4474232 0.5547519 -0.5341183 0.4474232 0.5547519 -0.5385787 0.4474232 0.5547519 -0.5428591 0.4474232 0.5547519 -0.5469733 0.4474232 0.5547519 -0.5509339 0.4474232 0.5547519 -0.5547519 0.4474232 0.5547519 -0.5584371 0.4474232 0.5547519 -0.5619986 0.4474232 0.5547519 -0.5654443 0.4474232 0.5547519 -0.5687816 0.4474232 0.5547519 -0.092819 0.45727 0.5547519 -0.2262531 0.45727 0.5547519 -0.2875993 0.45727 0.5547519 -0.3262122 0.45727 0.5547519 -0.3544566 0.45727 0.5547519 -0.3767383 0.45727 0.5547519 -0.3951413 0.45727 0.5547519 -0.4108177 0.45727 0.5547519 -0.4244723 0.45727 0.5547519 -0.4365675 0.45727 0.5547519 -0.4474232 0.45727 0.5547519 -0.45727 0.45727 0.5547519 -0.4662797 0.45727 0.5547519 -0.4745834 0.45727 0.5547519 -0.4822838 0.45727 0.5547519 -0.4894626 0.45727 0.5547519 -0.4961862 0.45727 0.5547519 -0.5025087 0.45727 0.5547519 -0.5084753 0.45727 0.5547519 -0.514124 0.45727 0.5547519 -0.519487 0.45727 0.5547519 -0.5245917 0.45727 0.5547519 -0.529462 0.45727 0.5547519 -0.5341183 0.45727 0.5547519 -0.5385787 0.45727 0.5547519 -0.5428591 0.45727 0.5547519 -0.5469733 0.45727 0.5547519 -0.5509339 0.45727 0.5547519 -0.5547519 0.45727 0.5547519 -0.5584371 0.45727 0.5547519 -0.5619986 0.45727 0.5547519 -0.5654443 0.45727 0.5547519 -0.5687816 0.45727 0.5547519 -0.092819 0.4662797 0.5547519 -0.2262531 0.4662797 0.5547519 -0.2875993 0.4662797 0.5547519 -0.3262122 0.4662797 0.5547519 -0.3544566 0.4662797 0.5547519 -0.3767383 0.4662797 0.5547519 -0.3951413 0.4662797 0.5547519 -0.4108177 0.4662797 0.5547519 -0.4244723 0.4662797 0.5547519 -0.4365675 0.4662797 0.5547519 -0.4474232 0.4662797 0.5547519 -0.45727 0.4662797 0.5547519 -0.4662797 0.4662797 0.5547519 -0.4745834 0.4662797 0.5547519 -0.4822838 0.4662797 0.5547519 -0.4894626 0.4662797 0.5547519 -0.4961862 0.4662797 0.5547519 -0.5025087 0.4662797 0.5547519 -0.5084753 0.4662797 0.5547519 -0.514124 0.4662797 0.5547519 -0.519487 0.4662797 0.5547519 -0.5245917 0.4662797 0.5547519 -0.529462 0.4662797 0.5547519 -0.5341183 0.4662797 0.5547519 -0.5385787 0.4662797 0.5547519 -0.5428591 0.4662797 0.5547519 -0.5469733 0.4662797 0.5547519 -0.5509339 0.4662797 0.5547519 -0.5547519 0.4662797 0.5547519 -0.5584371 0.4662797 0.5547519 -0.5619986 0.4662797 0.5547519 -0.5654443 0.4662797 0.5547519 -0.5687816 0.4662797 0.5547519 -0.092819 0.4745834 0.5547519 -0.2262531 0.4745834 0.5547519 -0.2875993 0.4745834 0.5547519 -0.3262122 0.4745834 0.5547519 -0.3544566 0.4745834 0.5547519 -0.3767383 0.4745834 0.5547519 -0.3951413 0.4745834 0.5547519 -0.4108177 0.4745834 0.5547519 -0.4244723 0.4745834 0.5547519 -0.4365675 0.4745834 0.5547519 -0.4474232 0.4745834 0.5547519 -0.45727 0.4745834 0.5547519 -0.4662797 0.4745834 0.5547519 -0.4745834 0.4745834 0.5547519 -0.4822838 0.4745834 0.5547519 -0.4894626 0.4745834 0.5547519 -0.4961862 0.4745834 0.5547519 -0.5025087 0.4745834 0.5547519 -0.5084753 0.4745834 0.5547519 -0.514124 0.4745834 0.5547519 -0.519487 0.4745834 0.5547519 -0.5245917 0.4745834 0.5547519 -0.529462 0.4745834 0.5547519 -0.5341183 0.4745834 0.5547519 -0.5385787 0.4745834 0.5547519 -0.5428591 0.4745834 0.5547519 -0.5469733 0.4745834 0.5547519 -0.5509339 0.4745834 0.5547519 -0.5547519 0.4745834 0.5547519 -0.5584371 0.4745834 0.5547519 -0.5619986 0.4745834 0.5547519 -0.5654443 0.4745834 0.5547519 -0.5687816 0.4745834 0.5547519 -0.092819 0.4822838 0.5547519 -0.2262531 0.4822838 0.5547519 -0.2875993 0.4822838 0.5547519 -0.3262122 0.4822838 0.5547519 -0.3544566 0.4822838 0.5547519 -0.3767383 0.4822838 0.5547519 -0.3951413 0.4822838 0.5547519 -0.4108177 0.4822838 0.5547519 -0.4244723 0.4822838 0.5547519 -0.4365675 0.4822838 0.5547519 -0.4474232 0.4822838 0.5547519 -0.45727 0.4822838 0.5547519 -0.4662797 0.4822838 0.5547519 -0.4745834 0.4822838 0.5547519 -0.4822838 0.4822838 0.5547519 -0.4894626 0.4822838 0.5547519 -0.4961862 0.4822838 0.5547519 -0.5025087 0.4822838 0.5547519 -0.5084753 0.4822838 0.5547519 -0.514124 0.4822838 0.5547519 -0.519487 0.4822838 0.5547519 -0.5245917 0.4822838 0.5547519 -0.529462 0.4822838 0.5547519 -0.5341183 0.4822838 0.5547519 -0.5385787 0.4822838 0.5547519 -0.5428591 0.4822838 0.5547519 -0.5469733 0.4822838 0.5547519 -0.5509339 0.4822838 0.5547519 -0.5547519 0.4822838 0.5547519 -0.5584371 0.4822838 0.5547519 -0.5619986 0.4822838 0.5547519 -0.5654443 0.4822838 0.5547519 -0.5687816 0.4822838 0.5547519 -0.092819 0.4894626 0.5547519 -0.2262531 0.4894626 0.5547519 -0.2875993 0.4894626 0.5547519 -0.3262122 0.4894626 0.5547519 -0.3544566 0.4894626 0.5547519 -0.3767383 0.4894626 0.5547519 -0.3951413 0.4894626 0.5547519 -0.4108177 0.4894626 0.5547519 -0.4244723 0.4894626 0.5547519 -0.4365675 0.4894626 0.5547519 -0.4474232 0.4894626 0.5547519 -0.45727 0.4894626 0.5547519 -0.4662797 0.4894626 0.5547519 -0.4745834 0.4894626 0.5547519 -0.4822838 0.4894626 0.5547519 -0.4894626 0.4894626 0.5547519 -0.4961862 0.4894626 0.5547519 -0.5025087 0.4894626 0.5547519 -0.5084753 0.4894626 0.5547519 -0.514124 0.4894626 0.5547519 -0.519487 0.4894626 0.5547519 -0.5245917 0.4894626 0.5547519 -0.529462 0.4894626 0.5547519 -0.5341183 0.4894626 0.5547519 -0.5385787 0.4894626 0.5547519 -0.5428591 0.4894626 0.5547519 -0.5469733 0.4894626 0.5547519 -0.5509339 0.4894626 0.5547519 -0.5547519 0.4894626 0.5547519 -0.5584371 0.4894626 0.5547519 -0.5619986 0.4894626 0.5547519 -0.5654443 0.4894626 0.5547519 -0.5687816 0.4894626 0.5547519 -0.092819 0.4961862 0.5547519 -0.2262531 0.4961862 0.5547519 -0.2875993 0.4961862 0.5547519 -0.3262122 0.4961862 0.5547519 -0.3544566 0.4961862 0.5547519 -0.3767383 0.4961862 0.5547519 -0.3951413 0.4961862 0.5547519 -0.4108177 0.4961862 0.5547519 -0.4244723 0.4961862 0.5547519 -0.4365675 0.4961862 0.5547519 -0.4474232 0.4961862 0.5547519 -0.45727 0.4961862 0.5547519 -0.4662797 0.4961862 0.5547519 -0.4745834 0.4961862 0.5547519 -0.4822838 0.4961862 0.5547519 -0.4894626 0.4961862 0.5547519 -0.4961862 0.4961862 0.5547519 -0.5025087 0.4961862 0.5547519 -0.5084753 0.4961862 0.5547519 -0.514124 0.4961862 0.5547519 -0.519487 0.4961862 0.5547519 -0.5245917 0.4961862 0.5547519 -0.529462 0.4961862 0.5547519 -0.5341183 0.4961862 0.5547519 -0.5385787 0.4961862 0.5547519 -0.5428591 0.4961862 0.5547519 -0.5469733 0.4961862 0.5547519 -0.5509339 0.4961862 0.5547519 -0.5547519 0.4961862 0.5547519 -0.5584371 0.4961862 0.5547519 -0.5619986 0.4961862 0.5547519 -0.5654443 0.4961862 0.5547519 -0.5687816 0.4961862 0.5547519 -0.092819 0.5025087 0.5547519 -0.2262531 0.5025087 0.5547519 -0.2875993 0.5025087 0.5547519 -0.3262122 0.5025087 0.5547519 -0.3544566 0.5025087 0.5547519 -0.3767383 0.5025087 0.5547519 -0.3951413 0.5025087 0.5547519 -0.4108177 0.5025087 0.5547519 -0.4244723 0.5025087 0.5547519 -0.4365675 0.5025087 0.5547519 -0.4474232 0.5025087 0.5547519 -0.45727 0.5025087 0.5547519 -0.4662797 0.5025087 0.5547519 -0.4745834 0.5025087 0.5547519 -0.4822838 0.5025087 0.5547519 -0.4894626 0.5025087 0.5547519 -0.4961862 0.5025087 0.5547519 -0.5025087 0.5025087 0.5547519 -0.5084753 0.5025087 0.5547519 -0.514124 0.5025087 0.5547519 -0.519487 0.5025087 0.5547519 -0.5245917 0.5025087 0.5547519 -0.529462 0.5025087 0.5547519 -0.5341183 0.5025087 0.5547519 -0.5385787 0.5025087 0.5547519 -0.5428591 0.5025087 0.5547519 -0.5469733 0.5025087 0.5547519 -0.5509339 0.5025087 0.5547519 -0.5547519 0.5025087 0.5547519 -0.5584371 0.5025087 0.5547519 -0.5619986 0.5025087 0.5547519 -0.5654443 0.5025087 0.5547519 -0.5687816 0.5025087 0.5547519 -0.092819 0.5084753 0.5547519 -0.2262531 0.5084753 0.5547519 -0.2875993 0.5084753 0.5547519 -0.3262122 0.5084753 0.5547519 -0.3544566 0.5084753 0.5547519 -0.3767383 0.5084753 0.5547519 -0.3951413 0.5084753 0.5547519 -0.4108177 0.5084753 0.5547519 -0.4244723 0.5084753 0.5547519 -0.4365675 0.5084753 0.5547519 -0.4474232 0.5084753 0.5547519 -0.45727 0.5084753 0.5547519 -0.4662797 0.5084753 0.5547519 -0.4745834 0.5084753 0.5547519 -0.4822838 0.5084753 0.5547519 -0.4894626 0.5084753 0.5547519 -0.4961862 0.5084753 0.5547519 -0.5025087 0.5084753 0.5547519 -0.5084753 0.5084753 0.5547519 -0.514124 0.5084753 0.5547519 -0.519487 0.5084753 0.5547519 -0.5245917 0.5084753 0.5547519 -0.529462 0.5084753 0.5547519 -0.5341183 0.5084753 0.5547519 -0.5385787 0.5084753 0.5547519 -0.5428591 0.5084753 0.5547519 -0.5469733 0.5084753 0.5547519 -0.5509339 0.5084753 0.5547519 -0.5547519 0.5084753 0.5547519 -0.5584371 0.5084753 0.5547519 -0.5619986 0.5084753 0.5547519 -0.5654443 0.5084753 0.5547519 -0.5687816 0.5084753 0.5547519 -0.092819 0.514124 0.5547519 -0.2262531 0.514124 0.5547519 -0.2875993 0.514124 0.5547519 -0.3262122 0.514124 0.5547519 -0.3544566 0.514124 0.5547519 -0.3767383 0.514124 0.5547519 -0.3951413 0.514124 0.5547519 -0.4108177 0.514124 0.5547519 -0.4244723 0.514124 0.5547519 -0.4365675 0.514124 0.5547519 -0.4474232 0.514124 0.5547519 -0.45727 0.514124 0.5547519 -0.4662797 0.514124 0.5547519 -0.4745834 0.514124 0.5547519 -0.4822838 0.514124 0.5547519 -0.4894626 0.514124 0.5547519 -0.4961862 0.514124 0.5547519 -0.5025087 0.514124 0.5547519 -0.5084753 0.514124 0.5547519 -0.514124 0.514124 0.5547519 -0.519487 0.514124 0.5547519 -0.5245917 0.514124 0.5547519 -0.529462 0.514124 0.5547519 -0.5341183 0.514124 0.5547519 -0.5385787 0.514124 0.5547519 -0.5428591 0.514124 0.5547519 -0.5469733 0.514124 0.5547519 -0.5509339 0.514124 0.5547519 -0.5547519 0.514124 0.5547519 -0.5584371 0.514124 0.5547519 -0.5619986 0.514124 0.5547519 -0.5654443 0.514124 0.5547519 -0.5687816 0.514124 0.5547519 -0.092819 0.519487 0.5547519 -0.2262531 0.519487 0.5547519 -0.2875993 0.519487 0.5547519 -0.3262122 0.519487 0.5547519 -0.3544566 0.519487 0.5547519 -0.3767383 0.519487 0.5547519 -0.3951413 0.519487 0.5547519 -0.4108177 0.519487 0.5547519 -0.4244723 0.519487 0.5547519 -0.4365675 0.519487 0.5547519 -0.4474232 0.519487 0.5547519 -0.45727 0.519487 0.5547519 -0.4662797 0.519487 0.5547519 -0.4745834 0.519487 0.5547519 -0.4822838 0.519487 0.5547519 -0.4894626 0.519487 0.5547519 -0.4961862 0.519487 0.5547519 -0.5025087 0.519487 0.5547519 -0.5084753 0.519487 0.5547519 -0.514124 0.519487 0.5547519 -0.519487 0.519487 0.5547519 -0.5245917 0.519487 0.5547519 -0.529462 0.519487 0.5547519 -0.5341183 0.519487 0.5547519 -0.5385787 0.519487 0.5547519 -0.5428591 0.519487 0.5547519 -0.5469733 0.519487 0.5547519 -0.5509339 0.519487 0.5547519 -0.5547519 0.519487 0.5547519 -0.5584371 0.519487 0.5547519 -0.5619986 0.519487 0.5547519 -0.5654443 0.519487 0.5547519 -0.5687816 0.519487 0.5547519 -0.092819 0.5245917 0.5547519 -0.2262531 0.5245917 0.5547519 -0.2875993 0.5245917 0.5547519 -0.3262122 0.5245917 0.5547519 -0.3544566 0.5245917 0.5547519 -0.3767383 0.5245917 0.5547519 -0.3951413 0.5245917 0.5547519 -0.4108177 0.5245917 0.5547519 -0.4244723 0.5245917 0.5547519 -0.4365675 0.5245917 0.5547519 -0.4474232 0.5245917 0.5547519 -0.45727 0.5245917 0.5547519 -0.4662797 0.5245917 0.5547519 -0.4745834 0.5245917 0.5547519 -0.4822838 0.5245917 0.5547519 -0.4894626 0.5245917 0.5547519 -0.4961862 0.5245917 0.5547519 -0.5025087 0.5245917 0.5547519 -0.5084753 0.5245917 0.5547519 -0.514124 0.5245917 0.5547519 -0.519487 0.5245917 0.5547519 -0.5245917 0.5245917 0.5547519 -0.529462 0.5245917 0.5547519 -0.5341183 0.5245917 0.5547519 -0.5385787 0.5245917 0.5547519 -0.5428591 0.5245917 0.5547519 -0.5469733 0.5245917 0.5547519 -0.5509339 0.5245917 0.5547519 -0.5547519 0.5245917 0.5547519 -0.5584371 0.5245917 0.5547519 -0.5619986 0.5245917 0.5547519 -0.5654443 0.5245917 0.5547519 -0.5687816 0.5245917 0.5547519 -0.092819 0.529462 0.5547519 -0.2262531 0.529462 0.5547519 -0.2875993 0.529462 0.5547519 -0.3262122 0.529462 0.5547519 -0.3544566 0.529462 0.5547519 -0.3767383 0.529462 0.5547519 -0.3951413 0.529462 0.5547519 -0.4108177 0.529462 0.5547519 -0.4244723 0.529462 0.5547519 -0.4365675 0.529462 0.5547519 -0.4474232 0.529462 0.5547519 -0.45727 0.529462 0.5547519 -0.4662797 0.529462 0.5547519 -0.4745834 0.529462 0.5547519 -0.4822838 0.529462 0.5547519 -0.4894626 0.529462 0.5547519 -0.4961862 0.529462 0.5547519 -0.5025087 0.529462 0.5547519 -0.5084753 0.529462 0.5547519 -0.514124 0.529462 0.5547519 -0.519487 0.529462 0.5547519 -0.5245917 0.529462 0.5547519 -0.529462 0.529462 0.5547519 -0.5341183 0.529462 0.5547519 -0.5385787 0.529462 0.5547519 -0.5428591 0.529462 0.5547519 -0.5469733 0.529462 0.5547519 -0.5509339 0.529462 0.5547519 -0.5547519 0.529462 0.5547519 -0.5584371 0.529462 0.5547519 -0.5619986 0.529462 0.5547519 -0.5654443 0.529462 0.5547519 -0.5687816 0.529462 0.5547519 -0.092819 0.5341183 0.5547519 -0.2262531 0.5341183 0.5547519 -0.2875993 0.5341183 0.5547519 -0.3262122 0.5341183 0.5547519 -0.3544566 0.5341183 0.5547519 -0.3767383 0.5341183 0.5547519 -0.3951413 0.5341183 0.5547519 -0.4108177 0.5341183 0.5547519 -0.4244723 0.5341183 0.5547519 -0.4365675 0.5341183 0.5547519 -0.4474232 0.5341183 0.5547519 -0.45727 0.5341183 0.5547519 -0.4662797 0.5341183 0.5547519 -0.4745834 0.5341183 0.5547519 -0.4822838 0.5341183 0.5547519 -0.4894626 0.5341183 0.5547519 -0.4961862 0.5341183 0.5547519 -0.5025087 0.5341183 0.5547519 -0.5084753 0.5341183 0.5547519 -0.514124 0.5341183 0.5547519 -0.519487 0.5341183 0.5547519 -0.5245917 0.5341183 0.5547519 -0.529462 0.5341183 0.5547519 -0.5341183 0.5341183 0.5547519 -0.5385787 0.5341183 0.5547519 -0.5428591 0.5341183 0.5547519 -0.5469733 0.5341183 0.5547519 -0.5509339 0.5341183 0.5547519 -0.5547519 0.5341183 0.5547519 -0.5584371 0.5341183 0.5547519 -0.5619986 0.5341183 0.5547519 -0.5654443 0.5341183 0.5547519 -0.5687816 0.5341183 0.5547519 -0.092819 0.5385787 0.5547519 -0.2262531 0.5385787 0.5547519 -0.2875993 0.5385787 0.5547519 -0.3262122 0.5385787 0.5547519 -0.3544566 0.5385787 0.5547519 -0.3767383 0.5385787 0.5547519 -0.3951413 0.5385787 0.5547519 -0.4108177 0.5385787 0.5547519 -0.4244723 0.5385787 0.5547519 -0.4365675 0.5385787 0.5547519 -0.4474232 0.5385787 0.5547519 -0.45727 0.5385787 0.5547519 -0.4662797 0.5385787 0.5547519 -0.4745834 0.5385787 0.5547519 -0.4822838 0.5385787 0.5547519 -0.4894626 0.5385787 0.5547519 -0.4961862 0.5385787 0.5547519 -0.5025087 0.5385787 0.5547519 -0.5084753 0.5385787 0.5547519 -0.514124 0.5385787 0.5547519 -0.519487 0.5385787 0.5547519 -0.5245917 0.5385787 0.5547519 -0.529462 0.5385787 0.5547519 -0.5341183 0.5385787 0.5547519 -0.5385787 0.5385787 0.5547519 -0.5428591 0.5385787 0.5547519 -0.5469733 0.5385787 0.5547519 -0.5509339 0.5385787 0.5547519 -0.5547519 0.5385787 0.5547519 -0.5584371 0.5385787 0.5547519 -0.5619986 0.5385787 0.5547519 -0.5654443 0.5385787 0.5547519 -0.5687816 0.5385787 0.5547519 -0.092819 0.5428591 0.5547519 -0.2262531 0.5428591 0.5547519 -0.2875993 0.5428591 0.5547519 -0.3262122 0.5428591 0.5547519 -0.3544566 0.5428591 0.5547519 -0.3767383 0.5428591 0.5547519 -0.3951413 0.5428591 0.5547519 -0.4108177 0.5428591 0.5547519 -0.4244723 0.5428591 0.5547519 -0.4365675 0.5428591 0.5547519 -0.4474232 0.5428591 0.5547519 -0.45727 0.5428591 0.5547519 -0.4662797 0.5428591 0.5547519 -0.4745834 0.5428591 0.5547519 -0.4822838 0.5428591 0.5547519 -0.4894626 0.5428591 0.5547519 -0.4961862 0.5428591 0.5547519 -0.5025087 0.5428591 0.5547519 -0.5084753 0.5428591 0.5547519 -0.514124 0.5428591 0.5547519 -0.519487 0.5428591 0.5547519 -0.5245917 0.5428591 0.5547519 -0.529462 0.5428591 0.5547519 -0.5341183 0.5428591 0.5547519 -0.5385787 0.5428591 0.5547519 -0.5428591 0.5428591 0.5547519 -0.5469733 0.5428591 0.5547519 -0.5509339 0.5428591 0.5547519 -0.5547519 0.5428591 0.5547519 -0.5584371 0.5428591 0.5547519 -0.5619986 0.5428591 0.5547519 -0.5654443 0.5428591 0.5547519 -0.5687816 0.5428591 0.5547519 -0.092819 0.5469733 0.5547519 -0.2262531 0.5469733 0.5547519 -0.2875993 0.5469733 0.5547519 -0.3262122 0.5469733 0.5547519 -0.3544566 0.5469733 0.5547519 -0.3767383 0.5469733 0.5547519 -0.3951413 0.5469733 0.5547519 -0.4108177 0.5469733 0.5547519 -0.4244723 0.5469733 0.5547519 -0.4365675 0.5469733 0.5547519 -0.4474232 0.5469733 0.5547519 -0.45727 0.5469733 0.5547519 -0.4662797 0.5469733 0.5547519 -0.4745834 0.5469733 0.5547519 -0.4822838 0.5469733 0.5547519 -0.4894626 0.5469733 0.5547519 -0.4961862 0.5469733 0.5547519 -0.5025087 0.5469733 0.5547519 -0.5084753 0.5469733 0.5547519 -0.514124 0.5469733 0.5547519 -0.519487 0.5469733 0.5547519 -0.5245917 0.5469733 0.5547519 -0.529462 0.5469733 0.5547519 -0.5341183 0.5469733 0.5547519 -0.5385787 0.5469733 0.5547519 -0.5428591 0.5469733 0.5547519 -0.5469733 0.5469733 0.5547519 -0.5509339 0.5469733 0.5547519 -0.5547519 0.5469733 0.5547519 -0.5584371 0.5469733 0.5547519 -0.5619986 0.5469733 0.5547519 -0.5654443 0.5469733 0.5547519 -0.5687816 0.5469733 0.5547519 -0.092819 0.5509339 0.5547519 -0.2262531 0.5509339 0.5547519 -0.2875993 0.5509339 0.5547519 -0.3262122 0.5509339 0.5547519 -0.3544566 0.5509339 0.5547519 -0.3767383 0.5509339 0.5547519 -0.3951413 0.5509339 0.5547519 -0.4108177 0.5509339 0.5547519 -0.4244723 0.5509339 0.5547519 -0.4365675 0.5509339 0.5547519 -0.4474232 0.5509339 0.5547519 -0.45727 0.5509339 0.5547519 -0.4662797 0.5509339 0.5547519 -0.4745834 0.5509339 0.5547519 -0.4822838 0.5509339 0.5547519 -0.4894626 0.5509339 0.5547519 -0.4961862 0.5509339 0.5547519 -0.5025087 0.5509339 0.5547519 -0.5084753 0.5509339 0.5547519 -0.514124 0.5509339 0.5547519 -0.519487 0.5509339 0.5547519 -0.5245917 0.5509339 0.5547519 -0.529462 0.5509339 0.5547519 -0.5341183 0.5509339 0.5547519 -0.5385787 0.5509339 0.5547519 -0.5428591 0.5509339 0.5547519 -0.5469733 0.5509339 0.5547519 -0.5509339 0.5509339 0.5547519 -0.5547519 0.5509339 0.5547519 -0.5584371 0.5509339 0.5547519 -0.5619986 0.5509339 0.5547519 -0.5654443 0.5509339 0.5547519 -0.5687816 0.5509339 0.5547519 -0.092819 0.5547519 0.5547519 -0.2262531 0.5547519 0.5547519 -0.2875993 0.5547519 0.5547519 -0.3262122 0.5547519 0.5547519 -0.3544566 0.5547519 0.5547519 -0.3767383 0.5547519 0.5547519 -0.3951413 0.5547519 0.5547519 -0.4108177 0.5547519 0.5547519 -0.4244723 0.5547519 0.5547519 -0.4365675 0.5547519 0.5547519 -0.4474232 0.5547519 0.5547519 -0.45727 0.5547519 0.5547519 -0.4662797 0.5547519 0.5547519 -0.4745834 0.5547519 0.5547519 -0.4822838 0.5547519 0.5547519 -0.4894626 0.5547519 0.5547519 -0.4961862 0.5547519 0.5547519 -0.5025087 0.5547519 0.5547519 -0.5084753 0.5547519 0.5547519 -0.514124 0.5547519 0.5547519 -0.519487 0.5547519 0.5547519 -0.5245917 0.5547519 0.5547519 -0.529462 0.5547519 0.5547519 -0.5341183 0.5547519 0.5547519 -0.5385787 0.5547519 0.5547519 -0.5428591 0.5547519 0.5547519 -0.5469733 0.5547519 0.5547519 -0.5509339 0.5547519 0.5547519 -0.5547519 0.5547519 0.5547519 -0.5584371 0.5547519 0.5547519 -0.5619986 0.5547519 0.5547519 -0.5654443 0.5547519 0.5547519 -0.5687816 0.5547519 0.5547519 -0.092819 0.5584371 0.5547519 -0.2262531 0.5584371 0.5547519 -0.2875993 0.5584371 0.5547519 -0.3262122 0.5584371 0.5547519 -0.3544566 0.5584371 0.5547519 -0.3767383 0.5584371 0.5547519 -0.3951413 0.5584371 0.5547519 -0.4108177 0.5584371 0.5547519 -0.4244723 0.5584371 0.5547519 -0.4365675 0.5584371 0.5547519 -0.4474232 0.5584371 0.5547519 -0.45727 0.5584371 0.5547519 -0.4662797 0.5584371 0.5547519 -0.4745834 0.5584371 0.5547519 -0.4822838 0.5584371 0.5547519 -0.4894626 0.5584371 0.5547519 -0.4961862 0.5584371 0.5547519 -0.5025087 0.5584371 0.5547519 -0.5084753 0.5584371 0.5547519 -0.514124 0.5584371 0.5547519 -0.519487 0.5584371 0.5547519 -0.5245917 0.5584371 0.5547519 -0.529462 0.5584371 0.5547519 -0.5341183 0.5584371 0.5547519 -0.5385787 0.5584371 0.5547519 -0.5428591 0.5584371 0.5547519 -0.5469733 0.5584371 0.5547519 -0.5509339 0.5584371 0.5547519 -0.5547519 0.5584371 0.5547519 -0.5584371 0.5584371 0.5547519 -0.5619986 0.5584371 0.5547519 -0.5654443 0.5584371 0.5547519 -0.5687816 0.5584371 0.5547519 -0.092819 0.5619986 0.5547519 -0.2262531 0.5619986 0.5547519 -0.2875993 0.5619986 0.5547519 -0.3262122 0.5619986 0.5547519 -0.3544566 0.5619986 0.5547519 -0.3767383 0.5619986 0.5547519 -0.3951413 0.5619986 0.5547519 -0.4108177 0.5619986 0.5547519 -0.4244723 0.5619986 0.5547519 -0.4365675 0.5619986 0.5547519 -0.4474232 0.5619986 0.5547519 -0.45727 0.5619986 0.5547519 -0.4662797 0.5619986 0.5547519 -0.4745834 0.5619986 0.5547519 -0.4822838 0.5619986 0.5547519 -0.4894626 0.5619986 0.5547519 -0.4961862 0.5619986 0.5547519 -0.5025087 0.5619986 0.5547519 -0.5084753 0.5619986 0.5547519 -0.514124 0.5619986 0.5547519 -0.519487 0.5619986 0.5547519 -0.5245917 0.5619986 0.5547519 -0.529462 0.5619986 0.5547519 -0.5341183 0.5619986 0.5547519 -0.5385787 0.5619986 0.5547519 -0.5428591 0.5619986 0.5547519 -0.5469733 0.5619986 0.5547519 -0.5509339 0.5619986 0.5547519 -0.5547519 0.5619986 0.5547519 -0.5584371 0.5619986 0.5547519 -0.5619986 0.5619986 0.5547519 -0.5654443 0.5619986 0.5547519 -0.5687816 0.5619986 0.5547519 -0.092819 0.5654443 0.5547519 -0.2262531 0.5654443 0.5547519 -0.2875993 0.5654443 0.5547519 -0.3262122 0.5654443 0.5547519 -0.3544566 0.5654443 0.5547519 -0.3767383 0.5654443 0.5547519 -0.3951413 0.5654443 0.5547519 -0.4108177 0.5654443 0.5547519 -0.4244723 0.5654443 0.5547519 -0.4365675 0.5654443 0.5547519 -0.4474232 0.5654443 0.5547519 -0.45727 0.5654443 0.5547519 -0.4662797 0.5654443 0.5547519 -0.4745834 0.5654443 0.5547519 -0.4822838 0.5654443 0.5547519 -0.4894626 0.5654443 0.5547519 -0.4961862 0.5654443 0.5547519 -0.5025087 0.5654443 0.5547519 -0.5084753 0.5654443 0.5547519 -0.514124 0.5654443 0.5547519 -0.519487 0.5654443 0.5547519 -0.5245917 0.5654443 0.5547519 -0.529462 0.5654443 0.5547519 -0.5341183 0.5654443 0.5547519 -0.5385787 0.5654443 0.5547519 -0.5428591 0.5654443 0.5547519 -0.5469733 0.5654443 0.5547519 -0.5509339 0.5654443 0.5547519 -0.5547519 0.5654443 0.5547519 -0.5584371 0.5654443 0.5547519 -0.5619986 0.5654443 0.5547519 -0.5654443 0.5654443 0.5547519 -0.5687816 0.5654443 0.5547519 -0.092819 0.5687816 0.5547519 -0.2262531 0.5687816 0.5547519 -0.2875993 0.5687816 0.5547519 -0.3262122 0.5687816 0.5547519 -0.3544566 0.5687816 0.5547519 -0.3767383 0.5687816 0.5547519 -0.3951413 0.5687816 0.5547519 -0.4108177 0.5687816 0.5547519 -0.4244723 0.5687816 0.5547519 -0.4365675 0.5687816 0.5547519 -0.4474232 0.5687816 0.5547519 -0.45727 0.5687816 0.5547519 -0.4662797 0.5687816 0.5547519 -0.4745834 0.5687816 0.5547519 -0.4822838 0.5687816 0.5547519 -0.4894626 0.5687816 0.5547519 -0.4961862 0.5687816 0.5547519 -0.5025087 0.5687816 0.5547519 -0.5084753 0.5687816 0.5547519 -0.514124 0.5687816 0.5547519 -0.519487 0.5687816 0.5547519 -0.5245917 0.5687816 0.5547519 -0.529462 0.5687816 0.5547519 -0.5341183 0.5687816 0.5547519 -0.5385787 0.5687816 0.5547519 -0.5428591 0.5687816 0.5547519 -0.5469733 0.5687816 0.5547519 -0.5509339 0.5687816 0.5547519 -0.5547519 0.5687816 0.5547519 -0.5584371 0.5687816 0.5547519 -0.5619986 0.5687816 0.5547519 -0.5654443 0.5687816 0.5547519 -0.5687816 0.5687816 0.5547519 -0.092819 0.092819 0.5584371 -0.2262531 0.092819 0.5584371 -0.2875993 0.092819 0.5584371 -0.3262122 0.092819 0.5584371 -0.3544566 0.092819 0.5584371 -0.3767383 0.092819 0.5584371 -0.3951413 0.092819 0.5584371 -0.4108177 0.092819 0.5584371 -0.4244723 0.092819 0.5584371 -0.4365675 0.092819 0.5584371 -0.4474232 0.092819 0.5584371 -0.45727 0.092819 0.5584371 -0.4662797 0.092819 0.5584371 -0.4745834 0.092819 0.5584371 -0.4822838 0.092819 0.5584371 -0.4894626 0.092819 0.5584371 -0.4961862 0.092819 0.5584371 -0.5025087 0.092819 0.5584371 -0.5084753 0.092819 0.5584371 -0.514124 0.092819 0.5584371 -0.519487 0.092819 0.5584371 -0.5245917 0.092819 0.5584371 -0.529462 0.092819 0.5584371 -0.5341183 0.092819 0.5584371 -0.5385787 0.092819 0.5584371 -0.5428591 0.092819 0.5584371 -0.5469733 0.092819 0.5584371 -0.5509339 0.092819 0.5584371 -0.5547519 0.092819 0.5584371 -0.5584371 0.092819 0.5584371 -0.5619986 0.092819 0.5584371 -0.5654443 0.092819 0.5584371 -0.5687816 0.092819 0.5584371 -0.092819 0.2262531 0.5584371 -0.2262531 0.2262531 0.5584371 -0.2875993 0.2262531 0.5584371 -0.3262122 0.2262531 0.5584371 -0.3544566 0.2262531 0.5584371 -0.3767383 0.2262531 0.5584371 -0.3951413 0.2262531 0.5584371 -0.4108177 0.2262531 0.5584371 -0.4244723 0.2262531 0.5584371 -0.4365675 0.2262531 0.5584371 -0.4474232 0.2262531 0.5584371 -0.45727 0.2262531 0.5584371 -0.4662797 0.2262531 0.5584371 -0.4745834 0.2262531 0.5584371 -0.4822838 0.2262531 0.5584371 -0.4894626 0.2262531 0.5584371 -0.4961862 0.2262531 0.5584371 -0.5025087 0.2262531 0.5584371 -0.5084753 0.2262531 0.5584371 -0.514124 0.2262531 0.5584371 -0.519487 0.2262531 0.5584371 -0.5245917 0.2262531 0.5584371 -0.529462 0.2262531 0.5584371 -0.5341183 0.2262531 0.5584371 -0.5385787 0.2262531 0.5584371 -0.5428591 0.2262531 0.5584371 -0.5469733 0.2262531 0.5584371 -0.5509339 0.2262531 0.5584371 -0.5547519 0.2262531 0.5584371 -0.5584371 0.2262531 0.5584371 -0.5619986 0.2262531 0.5584371 -0.5654443 0.2262531 0.5584371 -0.5687816 0.2262531 0.5584371 -0.092819 0.2875993 0.5584371 -0.2262531 0.2875993 0.5584371 -0.2875993 0.2875993 0.5584371 -0.3262122 0.2875993 0.5584371 -0.3544566 0.2875993 0.5584371 -0.3767383 0.2875993 0.5584371 -0.3951413 0.2875993 0.5584371 -0.4108177 0.2875993 0.5584371 -0.4244723 0.2875993 0.5584371 -0.4365675 0.2875993 0.5584371 -0.4474232 0.2875993 0.5584371 -0.45727 0.2875993 0.5584371 -0.4662797 0.2875993 0.5584371 -0.4745834 0.2875993 0.5584371 -0.4822838 0.2875993 0.5584371 -0.4894626 0.2875993 0.5584371 -0.4961862 0.2875993 0.5584371 -0.5025087 0.2875993 0.5584371 -0.5084753 0.2875993 0.5584371 -0.514124 0.2875993 0.5584371 -0.519487 0.2875993 0.5584371 -0.5245917 0.2875993 0.5584371 -0.529462 0.2875993 0.5584371 -0.5341183 0.2875993 0.5584371 -0.5385787 0.2875993 0.5584371 -0.5428591 0.2875993 0.5584371 -0.5469733 0.2875993 0.5584371 -0.5509339 0.2875993 0.5584371 -0.5547519 0.2875993 0.5584371 -0.5584371 0.2875993 0.5584371 -0.5619986 0.2875993 0.5584371 -0.5654443 0.2875993 0.5584371 -0.5687816 0.2875993 0.5584371 -0.092819 0.3262122 0.5584371 -0.2262531 0.3262122 0.5584371 -0.2875993 0.3262122 0.5584371 -0.3262122 0.3262122 0.5584371 -0.3544566 0.3262122 0.5584371 -0.3767383 0.3262122 0.5584371 -0.3951413 0.3262122 0.5584371 -0.4108177 0.3262122 0.5584371 -0.4244723 0.3262122 0.5584371 -0.4365675 0.3262122 0.5584371 -0.4474232 0.3262122 0.5584371 -0.45727 0.3262122 0.5584371 -0.4662797 0.3262122 0.5584371 -0.4745834 0.3262122 0.5584371 -0.4822838 0.3262122 0.5584371 -0.4894626 0.3262122 0.5584371 -0.4961862 0.3262122 0.5584371 -0.5025087 0.3262122 0.5584371 -0.5084753 0.3262122 0.5584371 -0.514124 0.3262122 0.5584371 -0.519487 0.3262122 0.5584371 -0.5245917 0.3262122 0.5584371 -0.529462 0.3262122 0.5584371 -0.5341183 0.3262122 0.5584371 -0.5385787 0.3262122 0.5584371 -0.5428591 0.3262122 0.5584371 -0.5469733 0.3262122 0.5584371 -0.5509339 0.3262122 0.5584371 -0.5547519 0.3262122 0.5584371 -0.5584371 0.3262122 0.5584371 -0.5619986 0.3262122 0.5584371 -0.5654443 0.3262122 0.5584371 -0.5687816 0.3262122 0.5584371 -0.092819 0.3544566 0.5584371 -0.2262531 0.3544566 0.5584371 -0.2875993 0.3544566 0.5584371 -0.3262122 0.3544566 0.5584371 -0.3544566 0.3544566 0.5584371 -0.3767383 0.3544566 0.5584371 -0.3951413 0.3544566 0.5584371 -0.4108177 0.3544566 0.5584371 -0.4244723 0.3544566 0.5584371 -0.4365675 0.3544566 0.5584371 -0.4474232 0.3544566 0.5584371 -0.45727 0.3544566 0.5584371 -0.4662797 0.3544566 0.5584371 -0.4745834 0.3544566 0.5584371 -0.4822838 0.3544566 0.5584371 -0.4894626 0.3544566 0.5584371 -0.4961862 0.3544566 0.5584371 -0.5025087 0.3544566 0.5584371 -0.5084753 0.3544566 0.5584371 -0.514124 0.3544566 0.5584371 -0.519487 0.3544566 0.5584371 -0.5245917 0.3544566 0.5584371 -0.529462 0.3544566 0.5584371 -0.5341183 0.3544566 0.5584371 -0.5385787 0.3544566 0.5584371 -0.5428591 0.3544566 0.5584371 -0.5469733 0.3544566 0.5584371 -0.5509339 0.3544566 0.5584371 -0.5547519 0.3544566 0.5584371 -0.5584371 0.3544566 0.5584371 -0.5619986 0.3544566 0.5584371 -0.5654443 0.3544566 0.5584371 -0.5687816 0.3544566 0.5584371 -0.092819 0.3767383 0.5584371 -0.2262531 0.3767383 0.5584371 -0.2875993 0.3767383 0.5584371 -0.3262122 0.3767383 0.5584371 -0.3544566 0.3767383 0.5584371 -0.3767383 0.3767383 0.5584371 -0.3951413 0.3767383 0.5584371 -0.4108177 0.3767383 0.5584371 -0.4244723 0.3767383 0.5584371 -0.4365675 0.3767383 0.5584371 -0.4474232 0.3767383 0.5584371 -0.45727 0.3767383 0.5584371 -0.4662797 0.3767383 0.5584371 -0.4745834 0.3767383 0.5584371 -0.4822838 0.3767383 0.5584371 -0.4894626 0.3767383 0.5584371 -0.4961862 0.3767383 0.5584371 -0.5025087 0.3767383 0.5584371 -0.5084753 0.3767383 0.5584371 -0.514124 0.3767383 0.5584371 -0.519487 0.3767383 0.5584371 -0.5245917 0.3767383 0.5584371 -0.529462 0.3767383 0.5584371 -0.5341183 0.3767383 0.5584371 -0.5385787 0.3767383 0.5584371 -0.5428591 0.3767383 0.5584371 -0.5469733 0.3767383 0.5584371 -0.5509339 0.3767383 0.5584371 -0.5547519 0.3767383 0.5584371 -0.5584371 0.3767383 0.5584371 -0.5619986 0.3767383 0.5584371 -0.5654443 0.3767383 0.5584371 -0.5687816 0.3767383 0.5584371 -0.092819 0.3951413 0.5584371 -0.2262531 0.3951413 0.5584371 -0.2875993 0.3951413 0.5584371 -0.3262122 0.3951413 0.5584371 -0.3544566 0.3951413 0.5584371 -0.3767383 0.3951413 0.5584371 -0.3951413 0.3951413 0.5584371 -0.4108177 0.3951413 0.5584371 -0.4244723 0.3951413 0.5584371 -0.4365675 0.3951413 0.5584371 -0.4474232 0.3951413 0.5584371 -0.45727 0.3951413 0.5584371 -0.4662797 0.3951413 0.5584371 -0.4745834 0.3951413 0.5584371 -0.4822838 0.3951413 0.5584371 -0.4894626 0.3951413 0.5584371 -0.4961862 0.3951413 0.5584371 -0.5025087 0.3951413 0.5584371 -0.5084753 0.3951413 0.5584371 -0.514124 0.3951413 0.5584371 -0.519487 0.3951413 0.5584371 -0.5245917 0.3951413 0.5584371 -0.529462 0.3951413 0.5584371 -0.5341183 0.3951413 0.5584371 -0.5385787 0.3951413 0.5584371 -0.5428591 0.3951413 0.5584371 -0.5469733 0.3951413 0.5584371 -0.5509339 0.3951413 0.5584371 -0.5547519 0.3951413 0.5584371 -0.5584371 0.3951413 0.5584371 -0.5619986 0.3951413 0.5584371 -0.5654443 0.3951413 0.5584371 -0.5687816 0.3951413 0.5584371 -0.092819 0.4108177 0.5584371 -0.2262531 0.4108177 0.5584371 -0.2875993 0.4108177 0.5584371 -0.3262122 0.4108177 0.5584371 -0.3544566 0.4108177 0.5584371 -0.3767383 0.4108177 0.5584371 -0.3951413 0.4108177 0.5584371 -0.4108177 0.4108177 0.5584371 -0.4244723 0.4108177 0.5584371 -0.4365675 0.4108177 0.5584371 -0.4474232 0.4108177 0.5584371 -0.45727 0.4108177 0.5584371 -0.4662797 0.4108177 0.5584371 -0.4745834 0.4108177 0.5584371 -0.4822838 0.4108177 0.5584371 -0.4894626 0.4108177 0.5584371 -0.4961862 0.4108177 0.5584371 -0.5025087 0.4108177 0.5584371 -0.5084753 0.4108177 0.5584371 -0.514124 0.4108177 0.5584371 -0.519487 0.4108177 0.5584371 -0.5245917 0.4108177 0.5584371 -0.529462 0.4108177 0.5584371 -0.5341183 0.4108177 0.5584371 -0.5385787 0.4108177 0.5584371 -0.5428591 0.4108177 0.5584371 -0.5469733 0.4108177 0.5584371 -0.5509339 0.4108177 0.5584371 -0.5547519 0.4108177 0.5584371 -0.5584371 0.4108177 0.5584371 -0.5619986 0.4108177 0.5584371 -0.5654443 0.4108177 0.5584371 -0.5687816 0.4108177 0.5584371 -0.092819 0.4244723 0.5584371 -0.2262531 0.4244723 0.5584371 -0.2875993 0.4244723 0.5584371 -0.3262122 0.4244723 0.5584371 -0.3544566 0.4244723 0.5584371 -0.3767383 0.4244723 0.5584371 -0.3951413 0.4244723 0.5584371 -0.4108177 0.4244723 0.5584371 -0.4244723 0.4244723 0.5584371 -0.4365675 0.4244723 0.5584371 -0.4474232 0.4244723 0.5584371 -0.45727 0.4244723 0.5584371 -0.4662797 0.4244723 0.5584371 -0.4745834 0.4244723 0.5584371 -0.4822838 0.4244723 0.5584371 -0.4894626 0.4244723 0.5584371 -0.4961862 0.4244723 0.5584371 -0.5025087 0.4244723 0.5584371 -0.5084753 0.4244723 0.5584371 -0.514124 0.4244723 0.5584371 -0.519487 0.4244723 0.5584371 -0.5245917 0.4244723 0.5584371 -0.529462 0.4244723 0.5584371 -0.5341183 0.4244723 0.5584371 -0.5385787 0.4244723 0.5584371 -0.5428591 0.4244723 0.5584371 -0.5469733 0.4244723 0.5584371 -0.5509339 0.4244723 0.5584371 -0.5547519 0.4244723 0.5584371 -0.5584371 0.4244723 0.5584371 -0.5619986 0.4244723 0.5584371 -0.5654443 0.4244723 0.5584371 -0.5687816 0.4244723 0.5584371 -0.092819 0.4365675 0.5584371 -0.2262531 0.4365675 0.5584371 -0.2875993 0.4365675 0.5584371 -0.3262122 0.4365675 0.5584371 -0.3544566 0.4365675 0.5584371 -0.3767383 0.4365675 0.5584371 -0.3951413 0.4365675 0.5584371 -0.4108177 0.4365675 0.5584371 -0.4244723 0.4365675 0.5584371 -0.4365675 0.4365675 0.5584371 -0.4474232 0.4365675 0.5584371 -0.45727 0.4365675 0.5584371 -0.4662797 0.4365675 0.5584371 -0.4745834 0.4365675 0.5584371 -0.4822838 0.4365675 0.5584371 -0.4894626 0.4365675 0.5584371 -0.4961862 0.4365675 0.5584371 -0.5025087 0.4365675 0.5584371 -0.5084753 0.4365675 0.5584371 -0.514124 0.4365675 0.5584371 -0.519487 0.4365675 0.5584371 -0.5245917 0.4365675 0.5584371 -0.529462 0.4365675 0.5584371 -0.5341183 0.4365675 0.5584371 -0.5385787 0.4365675 0.5584371 -0.5428591 0.4365675 0.5584371 -0.5469733 0.4365675 0.5584371 -0.5509339 0.4365675 0.5584371 -0.5547519 0.4365675 0.5584371 -0.5584371 0.4365675 0.5584371 -0.5619986 0.4365675 0.5584371 -0.5654443 0.4365675 0.5584371 -0.5687816 0.4365675 0.5584371 -0.092819 0.4474232 0.5584371 -0.2262531 0.4474232 0.5584371 -0.2875993 0.4474232 0.5584371 -0.3262122 0.4474232 0.5584371 -0.3544566 0.4474232 0.5584371 -0.3767383 0.4474232 0.5584371 -0.3951413 0.4474232 0.5584371 -0.4108177 0.4474232 0.5584371 -0.4244723 0.4474232 0.5584371 -0.4365675 0.4474232 0.5584371 -0.4474232 0.4474232 0.5584371 -0.45727 0.4474232 0.5584371 -0.4662797 0.4474232 0.5584371 -0.4745834 0.4474232 0.5584371 -0.4822838 0.4474232 0.5584371 -0.4894626 0.4474232 0.5584371 -0.4961862 0.4474232 0.5584371 -0.5025087 0.4474232 0.5584371 -0.5084753 0.4474232 0.5584371 -0.514124 0.4474232 0.5584371 -0.519487 0.4474232 0.5584371 -0.5245917 0.4474232 0.5584371 -0.529462 0.4474232 0.5584371 -0.5341183 0.4474232 0.5584371 -0.5385787 0.4474232 0.5584371 -0.5428591 0.4474232 0.5584371 -0.5469733 0.4474232 0.5584371 -0.5509339 0.4474232 0.5584371 -0.5547519 0.4474232 0.5584371 -0.5584371 0.4474232 0.5584371 -0.5619986 0.4474232 0.5584371 -0.5654443 0.4474232 0.5584371 -0.5687816 0.4474232 0.5584371 -0.092819 0.45727 0.5584371 -0.2262531 0.45727 0.5584371 -0.2875993 0.45727 0.5584371 -0.3262122 0.45727 0.5584371 -0.3544566 0.45727 0.5584371 -0.3767383 0.45727 0.5584371 -0.3951413 0.45727 0.5584371 -0.4108177 0.45727 0.5584371 -0.4244723 0.45727 0.5584371 -0.4365675 0.45727 0.5584371 -0.4474232 0.45727 0.5584371 -0.45727 0.45727 0.5584371 -0.4662797 0.45727 0.5584371 -0.4745834 0.45727 0.5584371 -0.4822838 0.45727 0.5584371 -0.4894626 0.45727 0.5584371 -0.4961862 0.45727 0.5584371 -0.5025087 0.45727 0.5584371 -0.5084753 0.45727 0.5584371 -0.514124 0.45727 0.5584371 -0.519487 0.45727 0.5584371 -0.5245917 0.45727 0.5584371 -0.529462 0.45727 0.5584371 -0.5341183 0.45727 0.5584371 -0.5385787 0.45727 0.5584371 -0.5428591 0.45727 0.5584371 -0.5469733 0.45727 0.5584371 -0.5509339 0.45727 0.5584371 -0.5547519 0.45727 0.5584371 -0.5584371 0.45727 0.5584371 -0.5619986 0.45727 0.5584371 -0.5654443 0.45727 0.5584371 -0.5687816 0.45727 0.5584371 -0.092819 0.4662797 0.5584371 -0.2262531 0.4662797 0.5584371 -0.2875993 0.4662797 0.5584371 -0.3262122 0.4662797 0.5584371 -0.3544566 0.4662797 0.5584371 -0.3767383 0.4662797 0.5584371 -0.3951413 0.4662797 0.5584371 -0.4108177 0.4662797 0.5584371 -0.4244723 0.4662797 0.5584371 -0.4365675 0.4662797 0.5584371 -0.4474232 0.4662797 0.5584371 -0.45727 0.4662797 0.5584371 -0.4662797 0.4662797 0.5584371 -0.4745834 0.4662797 0.5584371 -0.4822838 0.4662797 0.5584371 -0.4894626 0.4662797 0.5584371 -0.4961862 0.4662797 0.5584371 -0.5025087 0.4662797 0.5584371 -0.5084753 0.4662797 0.5584371 -0.514124 0.4662797 0.5584371 -0.519487 0.4662797 0.5584371 -0.5245917 0.4662797 0.5584371 -0.529462 0.4662797 0.5584371 -0.5341183 0.4662797 0.5584371 -0.5385787 0.4662797 0.5584371 -0.5428591 0.4662797 0.5584371 -0.5469733 0.4662797 0.5584371 -0.5509339 0.4662797 0.5584371 -0.5547519 0.4662797 0.5584371 -0.5584371 0.4662797 0.5584371 -0.5619986 0.4662797 0.5584371 -0.5654443 0.4662797 0.5584371 -0.5687816 0.4662797 0.5584371 -0.092819 0.4745834 0.5584371 -0.2262531 0.4745834 0.5584371 -0.2875993 0.4745834 0.5584371 -0.3262122 0.4745834 0.5584371 -0.3544566 0.4745834 0.5584371 -0.3767383 0.4745834 0.5584371 -0.3951413 0.4745834 0.5584371 -0.4108177 0.4745834 0.5584371 -0.4244723 0.4745834 0.5584371 -0.4365675 0.4745834 0.5584371 -0.4474232 0.4745834 0.5584371 -0.45727 0.4745834 0.5584371 -0.4662797 0.4745834 0.5584371 -0.4745834 0.4745834 0.5584371 -0.4822838 0.4745834 0.5584371 -0.4894626 0.4745834 0.5584371 -0.4961862 0.4745834 0.5584371 -0.5025087 0.4745834 0.5584371 -0.5084753 0.4745834 0.5584371 -0.514124 0.4745834 0.5584371 -0.519487 0.4745834 0.5584371 -0.5245917 0.4745834 0.5584371 -0.529462 0.4745834 0.5584371 -0.5341183 0.4745834 0.5584371 -0.5385787 0.4745834 0.5584371 -0.5428591 0.4745834 0.5584371 -0.5469733 0.4745834 0.5584371 -0.5509339 0.4745834 0.5584371 -0.5547519 0.4745834 0.5584371 -0.5584371 0.4745834 0.5584371 -0.5619986 0.4745834 0.5584371 -0.5654443 0.4745834 0.5584371 -0.5687816 0.4745834 0.5584371 -0.092819 0.4822838 0.5584371 -0.2262531 0.4822838 0.5584371 -0.2875993 0.4822838 0.5584371 -0.3262122 0.4822838 0.5584371 -0.3544566 0.4822838 0.5584371 -0.3767383 0.4822838 0.5584371 -0.3951413 0.4822838 0.5584371 -0.4108177 0.4822838 0.5584371 -0.4244723 0.4822838 0.5584371 -0.4365675 0.4822838 0.5584371 -0.4474232 0.4822838 0.5584371 -0.45727 0.4822838 0.5584371 -0.4662797 0.4822838 0.5584371 -0.4745834 0.4822838 0.5584371 -0.4822838 0.4822838 0.5584371 -0.4894626 0.4822838 0.5584371 -0.4961862 0.4822838 0.5584371 -0.5025087 0.4822838 0.5584371 -0.5084753 0.4822838 0.5584371 -0.514124 0.4822838 0.5584371 -0.519487 0.4822838 0.5584371 -0.5245917 0.4822838 0.5584371 -0.529462 0.4822838 0.5584371 -0.5341183 0.4822838 0.5584371 -0.5385787 0.4822838 0.5584371 -0.5428591 0.4822838 0.5584371 -0.5469733 0.4822838 0.5584371 -0.5509339 0.4822838 0.5584371 -0.5547519 0.4822838 0.5584371 -0.5584371 0.4822838 0.5584371 -0.5619986 0.4822838 0.5584371 -0.5654443 0.4822838 0.5584371 -0.5687816 0.4822838 0.5584371 -0.092819 0.4894626 0.5584371 -0.2262531 0.4894626 0.5584371 -0.2875993 0.4894626 0.5584371 -0.3262122 0.4894626 0.5584371 -0.3544566 0.4894626 0.5584371 -0.3767383 0.4894626 0.5584371 -0.3951413 0.4894626 0.5584371 -0.4108177 0.4894626 0.5584371 -0.4244723 0.4894626 0.5584371 -0.4365675 0.4894626 0.5584371 -0.4474232 0.4894626 0.5584371 -0.45727 0.4894626 0.5584371 -0.4662797 0.4894626 0.5584371 -0.4745834 0.4894626 0.5584371 -0.4822838 0.4894626 0.5584371 -0.4894626 0.4894626 0.5584371 -0.4961862 0.4894626 0.5584371 -0.5025087 0.4894626 0.5584371 -0.5084753 0.4894626 0.5584371 -0.514124 0.4894626 0.5584371 -0.519487 0.4894626 0.5584371 -0.5245917 0.4894626 0.5584371 -0.529462 0.4894626 0.5584371 -0.5341183 0.4894626 0.5584371 -0.5385787 0.4894626 0.5584371 -0.5428591 0.4894626 0.5584371 -0.5469733 0.4894626 0.5584371 -0.5509339 0.4894626 0.5584371 -0.5547519 0.4894626 0.5584371 -0.5584371 0.4894626 0.5584371 -0.5619986 0.4894626 0.5584371 -0.5654443 0.4894626 0.5584371 -0.5687816 0.4894626 0.5584371 -0.092819 0.4961862 0.5584371 -0.2262531 0.4961862 0.5584371 -0.2875993 0.4961862 0.5584371 -0.3262122 0.4961862 0.5584371 -0.3544566 0.4961862 0.5584371 -0.3767383 0.4961862 0.5584371 -0.3951413 0.4961862 0.5584371 -0.4108177 0.4961862 0.5584371 -0.4244723 0.4961862 0.5584371 -0.4365675 0.4961862 0.5584371 -0.4474232 0.4961862 0.5584371 -0.45727 0.4961862 0.5584371 -0.4662797 0.4961862 0.5584371 -0.4745834 0.4961862 0.5584371 -0.4822838 0.4961862 0.5584371 -0.4894626 0.4961862 0.5584371 -0.4961862 0.4961862 0.5584371 -0.5025087 0.4961862 0.5584371 -0.5084753 0.4961862 0.5584371 -0.514124 0.4961862 0.5584371 -0.519487 0.4961862 0.5584371 -0.5245917 0.4961862 0.5584371 -0.529462 0.4961862 0.5584371 -0.5341183 0.4961862 0.5584371 -0.5385787 0.4961862 0.5584371 -0.5428591 0.4961862 0.5584371 -0.5469733 0.4961862 0.5584371 -0.5509339 0.4961862 0.5584371 -0.5547519 0.4961862 0.5584371 -0.5584371 0.4961862 0.5584371 -0.5619986 0.4961862 0.5584371 -0.5654443 0.4961862 0.5584371 -0.5687816 0.4961862 0.5584371 -0.092819 0.5025087 0.5584371 -0.2262531 0.5025087 0.5584371 -0.2875993 0.5025087 0.5584371 -0.3262122 0.5025087 0.5584371 -0.3544566 0.5025087 0.5584371 -0.3767383 0.5025087 0.5584371 -0.3951413 0.5025087 0.5584371 -0.4108177 0.5025087 0.5584371 -0.4244723 0.5025087 0.5584371 -0.4365675 0.5025087 0.5584371 -0.4474232 0.5025087 0.5584371 -0.45727 0.5025087 0.5584371 -0.4662797 0.5025087 0.5584371 -0.4745834 0.5025087 0.5584371 -0.4822838 0.5025087 0.5584371 -0.4894626 0.5025087 0.5584371 -0.4961862 0.5025087 0.5584371 -0.5025087 0.5025087 0.5584371 -0.5084753 0.5025087 0.5584371 -0.514124 0.5025087 0.5584371 -0.519487 0.5025087 0.5584371 -0.5245917 0.5025087 0.5584371 -0.529462 0.5025087 0.5584371 -0.5341183 0.5025087 0.5584371 -0.5385787 0.5025087 0.5584371 -0.5428591 0.5025087 0.5584371 -0.5469733 0.5025087 0.5584371 -0.5509339 0.5025087 0.5584371 -0.5547519 0.5025087 0.5584371 -0.5584371 0.5025087 0.5584371 -0.5619986 0.5025087 0.5584371 -0.5654443 0.5025087 0.5584371 -0.5687816 0.5025087 0.5584371 -0.092819 0.5084753 0.5584371 -0.2262531 0.5084753 0.5584371 -0.2875993 0.5084753 0.5584371 -0.3262122 0.5084753 0.5584371 -0.3544566 0.5084753 0.5584371 -0.3767383 0.5084753 0.5584371 -0.3951413 0.5084753 0.5584371 -0.4108177 0.5084753 0.5584371 -0.4244723 0.5084753 0.5584371 -0.4365675 0.5084753 0.5584371 -0.4474232 0.5084753 0.5584371 -0.45727 0.5084753 0.5584371 -0.4662797 0.5084753 0.5584371 -0.4745834 0.5084753 0.5584371 -0.4822838 0.5084753 0.5584371 -0.4894626 0.5084753 0.5584371 -0.4961862 0.5084753 0.5584371 -0.5025087 0.5084753 0.5584371 -0.5084753 0.5084753 0.5584371 -0.514124 0.5084753 0.5584371 -0.519487 0.5084753 0.5584371 -0.5245917 0.5084753 0.5584371 -0.529462 0.5084753 0.5584371 -0.5341183 0.5084753 0.5584371 -0.5385787 0.5084753 0.5584371 -0.5428591 0.5084753 0.5584371 -0.5469733 0.5084753 0.5584371 -0.5509339 0.5084753 0.5584371 -0.5547519 0.5084753 0.5584371 -0.5584371 0.5084753 0.5584371 -0.5619986 0.5084753 0.5584371 -0.5654443 0.5084753 0.5584371 -0.5687816 0.5084753 0.5584371 -0.092819 0.514124 0.5584371 -0.2262531 0.514124 0.5584371 -0.2875993 0.514124 0.5584371 -0.3262122 0.514124 0.5584371 -0.3544566 0.514124 0.5584371 -0.3767383 0.514124 0.5584371 -0.3951413 0.514124 0.5584371 -0.4108177 0.514124 0.5584371 -0.4244723 0.514124 0.5584371 -0.4365675 0.514124 0.5584371 -0.4474232 0.514124 0.5584371 -0.45727 0.514124 0.5584371 -0.4662797 0.514124 0.5584371 -0.4745834 0.514124 0.5584371 -0.4822838 0.514124 0.5584371 -0.4894626 0.514124 0.5584371 -0.4961862 0.514124 0.5584371 -0.5025087 0.514124 0.5584371 -0.5084753 0.514124 0.5584371 -0.514124 0.514124 0.5584371 -0.519487 0.514124 0.5584371 -0.5245917 0.514124 0.5584371 -0.529462 0.514124 0.5584371 -0.5341183 0.514124 0.5584371 -0.5385787 0.514124 0.5584371 -0.5428591 0.514124 0.5584371 -0.5469733 0.514124 0.5584371 -0.5509339 0.514124 0.5584371 -0.5547519 0.514124 0.5584371 -0.5584371 0.514124 0.5584371 -0.5619986 0.514124 0.5584371 -0.5654443 0.514124 0.5584371 -0.5687816 0.514124 0.5584371 -0.092819 0.519487 0.5584371 -0.2262531 0.519487 0.5584371 -0.2875993 0.519487 0.5584371 -0.3262122 0.519487 0.5584371 -0.3544566 0.519487 0.5584371 -0.3767383 0.519487 0.5584371 -0.3951413 0.519487 0.5584371 -0.4108177 0.519487 0.5584371 -0.4244723 0.519487 0.5584371 -0.4365675 0.519487 0.5584371 -0.4474232 0.519487 0.5584371 -0.45727 0.519487 0.5584371 -0.4662797 0.519487 0.5584371 -0.4745834 0.519487 0.5584371 -0.4822838 0.519487 0.5584371 -0.4894626 0.519487 0.5584371 -0.4961862 0.519487 0.5584371 -0.5025087 0.519487 0.5584371 -0.5084753 0.519487 0.5584371 -0.514124 0.519487 0.5584371 -0.519487 0.519487 0.5584371 -0.5245917 0.519487 0.5584371 -0.529462 0.519487 0.5584371 -0.5341183 0.519487 0.5584371 -0.5385787 0.519487 0.5584371 -0.5428591 0.519487 0.5584371 -0.5469733 0.519487 0.5584371 -0.5509339 0.519487 0.5584371 -0.5547519 0.519487 0.5584371 -0.5584371 0.519487 0.5584371 -0.5619986 0.519487 0.5584371 -0.5654443 0.519487 0.5584371 -0.5687816 0.519487 0.5584371 -0.092819 0.5245917 0.5584371 -0.2262531 0.5245917 0.5584371 -0.2875993 0.5245917 0.5584371 -0.3262122 0.5245917 0.5584371 -0.3544566 0.5245917 0.5584371 -0.3767383 0.5245917 0.5584371 -0.3951413 0.5245917 0.5584371 -0.4108177 0.5245917 0.5584371 -0.4244723 0.5245917 0.5584371 -0.4365675 0.5245917 0.5584371 -0.4474232 0.5245917 0.5584371 -0.45727 0.5245917 0.5584371 -0.4662797 0.5245917 0.5584371 -0.4745834 0.5245917 0.5584371 -0.4822838 0.5245917 0.5584371 -0.4894626 0.5245917 0.5584371 -0.4961862 0.5245917 0.5584371 -0.5025087 0.5245917 0.5584371 -0.5084753 0.5245917 0.5584371 -0.514124 0.5245917 0.5584371 -0.519487 0.5245917 0.5584371 -0.5245917 0.5245917 0.5584371 -0.529462 0.5245917 0.5584371 -0.5341183 0.5245917 0.5584371 -0.5385787 0.5245917 0.5584371 -0.5428591 0.5245917 0.5584371 -0.5469733 0.5245917 0.5584371 -0.5509339 0.5245917 0.5584371 -0.5547519 0.5245917 0.5584371 -0.5584371 0.5245917 0.5584371 -0.5619986 0.5245917 0.5584371 -0.5654443 0.5245917 0.5584371 -0.5687816 0.5245917 0.5584371 -0.092819 0.529462 0.5584371 -0.2262531 0.529462 0.5584371 -0.2875993 0.529462 0.5584371 -0.3262122 0.529462 0.5584371 -0.3544566 0.529462 0.5584371 -0.3767383 0.529462 0.5584371 -0.3951413 0.529462 0.5584371 -0.4108177 0.529462 0.5584371 -0.4244723 0.529462 0.5584371 -0.4365675 0.529462 0.5584371 -0.4474232 0.529462 0.5584371 -0.45727 0.529462 0.5584371 -0.4662797 0.529462 0.5584371 -0.4745834 0.529462 0.5584371 -0.4822838 0.529462 0.5584371 -0.4894626 0.529462 0.5584371 -0.4961862 0.529462 0.5584371 -0.5025087 0.529462 0.5584371 -0.5084753 0.529462 0.5584371 -0.514124 0.529462 0.5584371 -0.519487 0.529462 0.5584371 -0.5245917 0.529462 0.5584371 -0.529462 0.529462 0.5584371 -0.5341183 0.529462 0.5584371 -0.5385787 0.529462 0.5584371 -0.5428591 0.529462 0.5584371 -0.5469733 0.529462 0.5584371 -0.5509339 0.529462 0.5584371 -0.5547519 0.529462 0.5584371 -0.5584371 0.529462 0.5584371 -0.5619986 0.529462 0.5584371 -0.5654443 0.529462 0.5584371 -0.5687816 0.529462 0.5584371 -0.092819 0.5341183 0.5584371 -0.2262531 0.5341183 0.5584371 -0.2875993 0.5341183 0.5584371 -0.3262122 0.5341183 0.5584371 -0.3544566 0.5341183 0.5584371 -0.3767383 0.5341183 0.5584371 -0.3951413 0.5341183 0.5584371 -0.4108177 0.5341183 0.5584371 -0.4244723 0.5341183 0.5584371 -0.4365675 0.5341183 0.5584371 -0.4474232 0.5341183 0.5584371 -0.45727 0.5341183 0.5584371 -0.4662797 0.5341183 0.5584371 -0.4745834 0.5341183 0.5584371 -0.4822838 0.5341183 0.5584371 -0.4894626 0.5341183 0.5584371 -0.4961862 0.5341183 0.5584371 -0.5025087 0.5341183 0.5584371 -0.5084753 0.5341183 0.5584371 -0.514124 0.5341183 0.5584371 -0.519487 0.5341183 0.5584371 -0.5245917 0.5341183 0.5584371 -0.529462 0.5341183 0.5584371 -0.5341183 0.5341183 0.5584371 -0.5385787 0.5341183 0.5584371 -0.5428591 0.5341183 0.5584371 -0.5469733 0.5341183 0.5584371 -0.5509339 0.5341183 0.5584371 -0.5547519 0.5341183 0.5584371 -0.5584371 0.5341183 0.5584371 -0.5619986 0.5341183 0.5584371 -0.5654443 0.5341183 0.5584371 -0.5687816 0.5341183 0.5584371 -0.092819 0.5385787 0.5584371 -0.2262531 0.5385787 0.5584371 -0.2875993 0.5385787 0.5584371 -0.3262122 0.5385787 0.5584371 -0.3544566 0.5385787 0.5584371 -0.3767383 0.5385787 0.5584371 -0.3951413 0.5385787 0.5584371 -0.4108177 0.5385787 0.5584371 -0.4244723 0.5385787 0.5584371 -0.4365675 0.5385787 0.5584371 -0.4474232 0.5385787 0.5584371 -0.45727 0.5385787 0.5584371 -0.4662797 0.5385787 0.5584371 -0.4745834 0.5385787 0.5584371 -0.4822838 0.5385787 0.5584371 -0.4894626 0.5385787 0.5584371 -0.4961862 0.5385787 0.5584371 -0.5025087 0.5385787 0.5584371 -0.5084753 0.5385787 0.5584371 -0.514124 0.5385787 0.5584371 -0.519487 0.5385787 0.5584371 -0.5245917 0.5385787 0.5584371 -0.529462 0.5385787 0.5584371 -0.5341183 0.5385787 0.5584371 -0.5385787 0.5385787 0.5584371 -0.5428591 0.5385787 0.5584371 -0.5469733 0.5385787 0.5584371 -0.5509339 0.5385787 0.5584371 -0.5547519 0.5385787 0.5584371 -0.5584371 0.5385787 0.5584371 -0.5619986 0.5385787 0.5584371 -0.5654443 0.5385787 0.5584371 -0.5687816 0.5385787 0.5584371 -0.092819 0.5428591 0.5584371 -0.2262531 0.5428591 0.5584371 -0.2875993 0.5428591 0.5584371 -0.3262122 0.5428591 0.5584371 -0.3544566 0.5428591 0.5584371 -0.3767383 0.5428591 0.5584371 -0.3951413 0.5428591 0.5584371 -0.4108177 0.5428591 0.5584371 -0.4244723 0.5428591 0.5584371 -0.4365675 0.5428591 0.5584371 -0.4474232 0.5428591 0.5584371 -0.45727 0.5428591 0.5584371 -0.4662797 0.5428591 0.5584371 -0.4745834 0.5428591 0.5584371 -0.4822838 0.5428591 0.5584371 -0.4894626 0.5428591 0.5584371 -0.4961862 0.5428591 0.5584371 -0.5025087 0.5428591 0.5584371 -0.5084753 0.5428591 0.5584371 -0.514124 0.5428591 0.5584371 -0.519487 0.5428591 0.5584371 -0.5245917 0.5428591 0.5584371 -0.529462 0.5428591 0.5584371 -0.5341183 0.5428591 0.5584371 -0.5385787 0.5428591 0.5584371 -0.5428591 0.5428591 0.5584371 -0.5469733 0.5428591 0.5584371 -0.5509339 0.5428591 0.5584371 -0.5547519 0.5428591 0.5584371 -0.5584371 0.5428591 0.5584371 -0.5619986 0.5428591 0.5584371 -0.5654443 0.5428591 0.5584371 -0.5687816 0.5428591 0.5584371 -0.092819 0.5469733 0.5584371 -0.2262531 0.5469733 0.5584371 -0.2875993 0.5469733 0.5584371 -0.3262122 0.5469733 0.5584371 -0.3544566 0.5469733 0.5584371 -0.3767383 0.5469733 0.5584371 -0.3951413 0.5469733 0.5584371 -0.4108177 0.5469733 0.5584371 -0.4244723 0.5469733 0.5584371 -0.4365675 0.5469733 0.5584371 -0.4474232 0.5469733 0.5584371 -0.45727 0.5469733 0.5584371 -0.4662797 0.5469733 0.5584371 -0.4745834 0.5469733 0.5584371 -0.4822838 0.5469733 0.5584371 -0.4894626 0.5469733 0.5584371 -0.4961862 0.5469733 0.5584371 -0.5025087 0.5469733 0.5584371 -0.5084753 0.5469733 0.5584371 -0.514124 0.5469733 0.5584371 -0.519487 0.5469733 0.5584371 -0.5245917 0.5469733 0.5584371 -0.529462 0.5469733 0.5584371 -0.5341183 0.5469733 0.5584371 -0.5385787 0.5469733 0.5584371 -0.5428591 0.5469733 0.5584371 -0.5469733 0.5469733 0.5584371 -0.5509339 0.5469733 0.5584371 -0.5547519 0.5469733 0.5584371 -0.5584371 0.5469733 0.5584371 -0.5619986 0.5469733 0.5584371 -0.5654443 0.5469733 0.5584371 -0.5687816 0.5469733 0.5584371 -0.092819 0.5509339 0.5584371 -0.2262531 0.5509339 0.5584371 -0.2875993 0.5509339 0.5584371 -0.3262122 0.5509339 0.5584371 -0.3544566 0.5509339 0.5584371 -0.3767383 0.5509339 0.5584371 -0.3951413 0.5509339 0.5584371 -0.4108177 0.5509339 0.5584371 -0.4244723 0.5509339 0.5584371 -0.4365675 0.5509339 0.5584371 -0.4474232 0.5509339 0.5584371 -0.45727 0.5509339 0.5584371 -0.4662797 0.5509339 0.5584371 -0.4745834 0.5509339 0.5584371 -0.4822838 0.5509339 0.5584371 -0.4894626 0.5509339 0.5584371 -0.4961862 0.5509339 0.5584371 -0.5025087 0.5509339 0.5584371 -0.5084753 0.5509339 0.5584371 -0.514124 0.5509339 0.5584371 -0.519487 0.5509339 0.5584371 -0.5245917 0.5509339 0.5584371 -0.529462 0.5509339 0.5584371 -0.5341183 0.5509339 0.5584371 -0.5385787 0.5509339 0.5584371 -0.5428591 0.5509339 0.5584371 -0.5469733 0.5509339 0.5584371 -0.5509339 0.5509339 0.5584371 -0.5547519 0.5509339 0.5584371 -0.5584371 0.5509339 0.5584371 -0.5619986 0.5509339 0.5584371 -0.5654443 0.5509339 0.5584371 -0.5687816 0.5509339 0.5584371 -0.092819 0.5547519 0.5584371 -0.2262531 0.5547519 0.5584371 -0.2875993 0.5547519 0.5584371 -0.3262122 0.5547519 0.5584371 -0.3544566 0.5547519 0.5584371 -0.3767383 0.5547519 0.5584371 -0.3951413 0.5547519 0.5584371 -0.4108177 0.5547519 0.5584371 -0.4244723 0.5547519 0.5584371 -0.4365675 0.5547519 0.5584371 -0.4474232 0.5547519 0.5584371 -0.45727 0.5547519 0.5584371 -0.4662797 0.5547519 0.5584371 -0.4745834 0.5547519 0.5584371 -0.4822838 0.5547519 0.5584371 -0.4894626 0.5547519 0.5584371 -0.4961862 0.5547519 0.5584371 -0.5025087 0.5547519 0.5584371 -0.5084753 0.5547519 0.5584371 -0.514124 0.5547519 0.5584371 -0.519487 0.5547519 0.5584371 -0.5245917 0.5547519 0.5584371 -0.529462 0.5547519 0.5584371 -0.5341183 0.5547519 0.5584371 -0.5385787 0.5547519 0.5584371 -0.5428591 0.5547519 0.5584371 -0.5469733 0.5547519 0.5584371 -0.5509339 0.5547519 0.5584371 -0.5547519 0.5547519 0.5584371 -0.5584371 0.5547519 0.5584371 -0.5619986 0.5547519 0.5584371 -0.5654443 0.5547519 0.5584371 -0.5687816 0.5547519 0.5584371 -0.092819 0.5584371 0.5584371 -0.2262531 0.5584371 0.5584371 -0.2875993 0.5584371 0.5584371 -0.3262122 0.5584371 0.5584371 -0.3544566 0.5584371 0.5584371 -0.3767383 0.5584371 0.5584371 -0.3951413 0.5584371 0.5584371 -0.4108177 0.5584371 0.5584371 -0.4244723 0.5584371 0.5584371 -0.4365675 0.5584371 0.5584371 -0.4474232 0.5584371 0.5584371 -0.45727 0.5584371 0.5584371 -0.4662797 0.5584371 0.5584371 -0.4745834 0.5584371 0.5584371 -0.4822838 0.5584371 0.5584371 -0.4894626 0.5584371 0.5584371 -0.4961862 0.5584371 0.5584371 -0.5025087 0.5584371 0.5584371 -0.5084753 0.5584371 0.5584371 -0.514124 0.5584371 0.5584371 -0.519487 0.5584371 0.5584371 -0.5245917 0.5584371 0.5584371 -0.529462 0.5584371 0.5584371 -0.5341183 0.5584371 0.5584371 -0.5385787 0.5584371 0.5584371 -0.5428591 0.5584371 0.5584371 -0.5469733 0.5584371 0.5584371 -0.5509339 0.5584371 0.5584371 -0.5547519 0.5584371 0.5584371 -0.5584371 0.5584371 0.5584371 -0.5619986 0.5584371 0.5584371 -0.5654443 0.5584371 0.5584371 -0.5687816 0.5584371 0.5584371 -0.092819 0.5619986 0.5584371 -0.2262531 0.5619986 0.5584371 -0.2875993 0.5619986 0.5584371 -0.3262122 0.5619986 0.5584371 -0.3544566 0.5619986 0.5584371 -0.3767383 0.5619986 0.5584371 -0.3951413 0.5619986 0.5584371 -0.4108177 0.5619986 0.5584371 -0.4244723 0.5619986 0.5584371 -0.4365675 0.5619986 0.5584371 -0.4474232 0.5619986 0.5584371 -0.45727 0.5619986 0.5584371 -0.4662797 0.5619986 0.5584371 -0.4745834 0.5619986 0.5584371 -0.4822838 0.5619986 0.5584371 -0.4894626 0.5619986 0.5584371 -0.4961862 0.5619986 0.5584371 -0.5025087 0.5619986 0.5584371 -0.5084753 0.5619986 0.5584371 -0.514124 0.5619986 0.5584371 -0.519487 0.5619986 0.5584371 -0.5245917 0.5619986 0.5584371 -0.529462 0.5619986 0.5584371 -0.5341183 0.5619986 0.5584371 -0.5385787 0.5619986 0.5584371 -0.5428591 0.5619986 0.5584371 -0.5469733 0.5619986 0.5584371 -0.5509339 0.5619986 0.5584371 -0.5547519 0.5619986 0.5584371 -0.5584371 0.5619986 0.5584371 -0.5619986 0.5619986 0.5584371 -0.5654443 0.5619986 0.5584371 -0.5687816 0.5619986 0.5584371 -0.092819 0.5654443 0.5584371 -0.2262531 0.5654443 0.5584371 -0.2875993 0.5654443 0.5584371 -0.3262122 0.5654443 0.5584371 -0.3544566 0.5654443 0.5584371 -0.3767383 0.5654443 0.5584371 -0.3951413 0.5654443 0.5584371 -0.4108177 0.5654443 0.5584371 -0.4244723 0.5654443 0.5584371 -0.4365675 0.5654443 0.5584371 -0.4474232 0.5654443 0.5584371 -0.45727 0.5654443 0.5584371 -0.4662797 0.5654443 0.5584371 -0.4745834 0.5654443 0.5584371 -0.4822838 0.5654443 0.5584371 -0.4894626 0.5654443 0.5584371 -0.4961862 0.5654443 0.5584371 -0.5025087 0.5654443 0.5584371 -0.5084753 0.5654443 0.5584371 -0.514124 0.5654443 0.5584371 -0.519487 0.5654443 0.5584371 -0.5245917 0.5654443 0.5584371 -0.529462 0.5654443 0.5584371 -0.5341183 0.5654443 0.5584371 -0.5385787 0.5654443 0.5584371 -0.5428591 0.5654443 0.5584371 -0.5469733 0.5654443 0.5584371 -0.5509339 0.5654443 0.5584371 -0.5547519 0.5654443 0.5584371 -0.5584371 0.5654443 0.5584371 -0.5619986 0.5654443 0.5584371 -0.5654443 0.5654443 0.5584371 -0.5687816 0.5654443 0.5584371 -0.092819 0.5687816 0.5584371 -0.2262531 0.5687816 0.5584371 -0.2875993 0.5687816 0.5584371 -0.3262122 0.5687816 0.5584371 -0.3544566 0.5687816 0.5584371 -0.3767383 0.5687816 0.5584371 -0.3951413 0.5687816 0.5584371 -0.4108177 0.5687816 0.5584371 -0.4244723 0.5687816 0.5584371 -0.4365675 0.5687816 0.5584371 -0.4474232 0.5687816 0.5584371 -0.45727 0.5687816 0.5584371 -0.4662797 0.5687816 0.5584371 -0.4745834 0.5687816 0.5584371 -0.4822838 0.5687816 0.5584371 -0.4894626 0.5687816 0.5584371 -0.4961862 0.5687816 0.5584371 -0.5025087 0.5687816 0.5584371 -0.5084753 0.5687816 0.5584371 -0.514124 0.5687816 0.5584371 -0.519487 0.5687816 0.5584371 -0.5245917 0.5687816 0.5584371 -0.529462 0.5687816 0.5584371 -0.5341183 0.5687816 0.5584371 -0.5385787 0.5687816 0.5584371 -0.5428591 0.5687816 0.5584371 -0.5469733 0.5687816 0.5584371 -0.5509339 0.5687816 0.5584371 -0.5547519 0.5687816 0.5584371 -0.5584371 0.5687816 0.5584371 -0.5619986 0.5687816 0.5584371 -0.5654443 0.5687816 0.5584371 -0.5687816 0.5687816 0.5584371 -0.092819 0.092819 0.5619986 -0.2262531 0.092819 0.5619986 -0.2875993 0.092819 0.5619986 -0.3262122 0.092819 0.5619986 -0.3544566 0.092819 0.5619986 -0.3767383 0.092819 0.5619986 -0.3951413 0.092819 0.5619986 -0.4108177 0.092819 0.5619986 -0.4244723 0.092819 0.5619986 -0.4365675 0.092819 0.5619986 -0.4474232 0.092819 0.5619986 -0.45727 0.092819 0.5619986 -0.4662797 0.092819 0.5619986 -0.4745834 0.092819 0.5619986 -0.4822838 0.092819 0.5619986 -0.4894626 0.092819 0.5619986 -0.4961862 0.092819 0.5619986 -0.5025087 0.092819 0.5619986 -0.5084753 0.092819 0.5619986 -0.514124 0.092819 0.5619986 -0.519487 0.092819 0.5619986 -0.5245917 0.092819 0.5619986 -0.529462 0.092819 0.5619986 -0.5341183 0.092819 0.5619986 -0.5385787 0.092819 0.5619986 -0.5428591 0.092819 0.5619986 -0.5469733 0.092819 0.5619986 -0.5509339 0.092819 0.5619986 -0.5547519 0.092819 0.5619986 -0.5584371 0.092819 0.5619986 -0.5619986 0.092819 0.5619986 -0.5654443 0.092819 0.5619986 -0.5687816 0.092819 0.5619986 -0.092819 0.2262531 0.5619986 -0.2262531 0.2262531 0.5619986 -0.2875993 0.2262531 0.5619986 -0.3262122 0.2262531 0.5619986 -0.3544566 0.2262531 0.5619986 -0.3767383 0.2262531 0.5619986 -0.3951413 0.2262531 0.5619986 -0.4108177 0.2262531 0.5619986 -0.4244723 0.2262531 0.5619986 -0.4365675 0.2262531 0.5619986 -0.4474232 0.2262531 0.5619986 -0.45727 0.2262531 0.5619986 -0.4662797 0.2262531 0.5619986 -0.4745834 0.2262531 0.5619986 -0.4822838 0.2262531 0.5619986 -0.4894626 0.2262531 0.5619986 -0.4961862 0.2262531 0.5619986 -0.5025087 0.2262531 0.5619986 -0.5084753 0.2262531 0.5619986 -0.514124 0.2262531 0.5619986 -0.519487 0.2262531 0.5619986 -0.5245917 0.2262531 0.5619986 -0.529462 0.2262531 0.5619986 -0.5341183 0.2262531 0.5619986 -0.5385787 0.2262531 0.5619986 -0.5428591 0.2262531 0.5619986 -0.5469733 0.2262531 0.5619986 -0.5509339 0.2262531 0.5619986 -0.5547519 0.2262531 0.5619986 -0.5584371 0.2262531 0.5619986 -0.5619986 0.2262531 0.5619986 -0.5654443 0.2262531 0.5619986 -0.5687816 0.2262531 0.5619986 -0.092819 0.2875993 0.5619986 -0.2262531 0.2875993 0.5619986 -0.2875993 0.2875993 0.5619986 -0.3262122 0.2875993 0.5619986 -0.3544566 0.2875993 0.5619986 -0.3767383 0.2875993 0.5619986 -0.3951413 0.2875993 0.5619986 -0.4108177 0.2875993 0.5619986 -0.4244723 0.2875993 0.5619986 -0.4365675 0.2875993 0.5619986 -0.4474232 0.2875993 0.5619986 -0.45727 0.2875993 0.5619986 -0.4662797 0.2875993 0.5619986 -0.4745834 0.2875993 0.5619986 -0.4822838 0.2875993 0.5619986 -0.4894626 0.2875993 0.5619986 -0.4961862 0.2875993 0.5619986 -0.5025087 0.2875993 0.5619986 -0.5084753 0.2875993 0.5619986 -0.514124 0.2875993 0.5619986 -0.519487 0.2875993 0.5619986 -0.5245917 0.2875993 0.5619986 -0.529462 0.2875993 0.5619986 -0.5341183 0.2875993 0.5619986 -0.5385787 0.2875993 0.5619986 -0.5428591 0.2875993 0.5619986 -0.5469733 0.2875993 0.5619986 -0.5509339 0.2875993 0.5619986 -0.5547519 0.2875993 0.5619986 -0.5584371 0.2875993 0.5619986 -0.5619986 0.2875993 0.5619986 -0.5654443 0.2875993 0.5619986 -0.5687816 0.2875993 0.5619986 -0.092819 0.3262122 0.5619986 -0.2262531 0.3262122 0.5619986 -0.2875993 0.3262122 0.5619986 -0.3262122 0.3262122 0.5619986 -0.3544566 0.3262122 0.5619986 -0.3767383 0.3262122 0.5619986 -0.3951413 0.3262122 0.5619986 -0.4108177 0.3262122 0.5619986 -0.4244723 0.3262122 0.5619986 -0.4365675 0.3262122 0.5619986 -0.4474232 0.3262122 0.5619986 -0.45727 0.3262122 0.5619986 -0.4662797 0.3262122 0.5619986 -0.4745834 0.3262122 0.5619986 -0.4822838 0.3262122 0.5619986 -0.4894626 0.3262122 0.5619986 -0.4961862 0.3262122 0.5619986 -0.5025087 0.3262122 0.5619986 -0.5084753 0.3262122 0.5619986 -0.514124 0.3262122 0.5619986 -0.519487 0.3262122 0.5619986 -0.5245917 0.3262122 0.5619986 -0.529462 0.3262122 0.5619986 -0.5341183 0.3262122 0.5619986 -0.5385787 0.3262122 0.5619986 -0.5428591 0.3262122 0.5619986 -0.5469733 0.3262122 0.5619986 -0.5509339 0.3262122 0.5619986 -0.5547519 0.3262122 0.5619986 -0.5584371 0.3262122 0.5619986 -0.5619986 0.3262122 0.5619986 -0.5654443 0.3262122 0.5619986 -0.5687816 0.3262122 0.5619986 -0.092819 0.3544566 0.5619986 -0.2262531 0.3544566 0.5619986 -0.2875993 0.3544566 0.5619986 -0.3262122 0.3544566 0.5619986 -0.3544566 0.3544566 0.5619986 -0.3767383 0.3544566 0.5619986 -0.3951413 0.3544566 0.5619986 -0.4108177 0.3544566 0.5619986 -0.4244723 0.3544566 0.5619986 -0.4365675 0.3544566 0.5619986 -0.4474232 0.3544566 0.5619986 -0.45727 0.3544566 0.5619986 -0.4662797 0.3544566 0.5619986 -0.4745834 0.3544566 0.5619986 -0.4822838 0.3544566 0.5619986 -0.4894626 0.3544566 0.5619986 -0.4961862 0.3544566 0.5619986 -0.5025087 0.3544566 0.5619986 -0.5084753 0.3544566 0.5619986 -0.514124 0.3544566 0.5619986 -0.519487 0.3544566 0.5619986 -0.5245917 0.3544566 0.5619986 -0.529462 0.3544566 0.5619986 -0.5341183 0.3544566 0.5619986 -0.5385787 0.3544566 0.5619986 -0.5428591 0.3544566 0.5619986 -0.5469733 0.3544566 0.5619986 -0.5509339 0.3544566 0.5619986 -0.5547519 0.3544566 0.5619986 -0.5584371 0.3544566 0.5619986 -0.5619986 0.3544566 0.5619986 -0.5654443 0.3544566 0.5619986 -0.5687816 0.3544566 0.5619986 -0.092819 0.3767383 0.5619986 -0.2262531 0.3767383 0.5619986 -0.2875993 0.3767383 0.5619986 -0.3262122 0.3767383 0.5619986 -0.3544566 0.3767383 0.5619986 -0.3767383 0.3767383 0.5619986 -0.3951413 0.3767383 0.5619986 -0.4108177 0.3767383 0.5619986 -0.4244723 0.3767383 0.5619986 -0.4365675 0.3767383 0.5619986 -0.4474232 0.3767383 0.5619986 -0.45727 0.3767383 0.5619986 -0.4662797 0.3767383 0.5619986 -0.4745834 0.3767383 0.5619986 -0.4822838 0.3767383 0.5619986 -0.4894626 0.3767383 0.5619986 -0.4961862 0.3767383 0.5619986 -0.5025087 0.3767383 0.5619986 -0.5084753 0.3767383 0.5619986 -0.514124 0.3767383 0.5619986 -0.519487 0.3767383 0.5619986 -0.5245917 0.3767383 0.5619986 -0.529462 0.3767383 0.5619986 -0.5341183 0.3767383 0.5619986 -0.5385787 0.3767383 0.5619986 -0.5428591 0.3767383 0.5619986 -0.5469733 0.3767383 0.5619986 -0.5509339 0.3767383 0.5619986 -0.5547519 0.3767383 0.5619986 -0.5584371 0.3767383 0.5619986 -0.5619986 0.3767383 0.5619986 -0.5654443 0.3767383 0.5619986 -0.5687816 0.3767383 0.5619986 -0.092819 0.3951413 0.5619986 -0.2262531 0.3951413 0.5619986 -0.2875993 0.3951413 0.5619986 -0.3262122 0.3951413 0.5619986 -0.3544566 0.3951413 0.5619986 -0.3767383 0.3951413 0.5619986 -0.3951413 0.3951413 0.5619986 -0.4108177 0.3951413 0.5619986 -0.4244723 0.3951413 0.5619986 -0.4365675 0.3951413 0.5619986 -0.4474232 0.3951413 0.5619986 -0.45727 0.3951413 0.5619986 -0.4662797 0.3951413 0.5619986 -0.4745834 0.3951413 0.5619986 -0.4822838 0.3951413 0.5619986 -0.4894626 0.3951413 0.5619986 -0.4961862 0.3951413 0.5619986 -0.5025087 0.3951413 0.5619986 -0.5084753 0.3951413 0.5619986 -0.514124 0.3951413 0.5619986 -0.519487 0.3951413 0.5619986 -0.5245917 0.3951413 0.5619986 -0.529462 0.3951413 0.5619986 -0.5341183 0.3951413 0.5619986 -0.5385787 0.3951413 0.5619986 -0.5428591 0.3951413 0.5619986 -0.5469733 0.3951413 0.5619986 -0.5509339 0.3951413 0.5619986 -0.5547519 0.3951413 0.5619986 -0.5584371 0.3951413 0.5619986 -0.5619986 0.3951413 0.5619986 -0.5654443 0.3951413 0.5619986 -0.5687816 0.3951413 0.5619986 -0.092819 0.4108177 0.5619986 -0.2262531 0.4108177 0.5619986 -0.2875993 0.4108177 0.5619986 -0.3262122 0.4108177 0.5619986 -0.3544566 0.4108177 0.5619986 -0.3767383 0.4108177 0.5619986 -0.3951413 0.4108177 0.5619986 -0.4108177 0.4108177 0.5619986 -0.4244723 0.4108177 0.5619986 -0.4365675 0.4108177 0.5619986 -0.4474232 0.4108177 0.5619986 -0.45727 0.4108177 0.5619986 -0.4662797 0.4108177 0.5619986 -0.4745834 0.4108177 0.5619986 -0.4822838 0.4108177 0.5619986 -0.4894626 0.4108177 0.5619986 -0.4961862 0.4108177 0.5619986 -0.5025087 0.4108177 0.5619986 -0.5084753 0.4108177 0.5619986 -0.514124 0.4108177 0.5619986 -0.519487 0.4108177 0.5619986 -0.5245917 0.4108177 0.5619986 -0.529462 0.4108177 0.5619986 -0.5341183 0.4108177 0.5619986 -0.5385787 0.4108177 0.5619986 -0.5428591 0.4108177 0.5619986 -0.5469733 0.4108177 0.5619986 -0.5509339 0.4108177 0.5619986 -0.5547519 0.4108177 0.5619986 -0.5584371 0.4108177 0.5619986 -0.5619986 0.4108177 0.5619986 -0.5654443 0.4108177 0.5619986 -0.5687816 0.4108177 0.5619986 -0.092819 0.4244723 0.5619986 -0.2262531 0.4244723 0.5619986 -0.2875993 0.4244723 0.5619986 -0.3262122 0.4244723 0.5619986 -0.3544566 0.4244723 0.5619986 -0.3767383 0.4244723 0.5619986 -0.3951413 0.4244723 0.5619986 -0.4108177 0.4244723 0.5619986 -0.4244723 0.4244723 0.5619986 -0.4365675 0.4244723 0.5619986 -0.4474232 0.4244723 0.5619986 -0.45727 0.4244723 0.5619986 -0.4662797 0.4244723 0.5619986 -0.4745834 0.4244723 0.5619986 -0.4822838 0.4244723 0.5619986 -0.4894626 0.4244723 0.5619986 -0.4961862 0.4244723 0.5619986 -0.5025087 0.4244723 0.5619986 -0.5084753 0.4244723 0.5619986 -0.514124 0.4244723 0.5619986 -0.519487 0.4244723 0.5619986 -0.5245917 0.4244723 0.5619986 -0.529462 0.4244723 0.5619986 -0.5341183 0.4244723 0.5619986 -0.5385787 0.4244723 0.5619986 -0.5428591 0.4244723 0.5619986 -0.5469733 0.4244723 0.5619986 -0.5509339 0.4244723 0.5619986 -0.5547519 0.4244723 0.5619986 -0.5584371 0.4244723 0.5619986 -0.5619986 0.4244723 0.5619986 -0.5654443 0.4244723 0.5619986 -0.5687816 0.4244723 0.5619986 -0.092819 0.4365675 0.5619986 -0.2262531 0.4365675 0.5619986 -0.2875993 0.4365675 0.5619986 -0.3262122 0.4365675 0.5619986 -0.3544566 0.4365675 0.5619986 -0.3767383 0.4365675 0.5619986 -0.3951413 0.4365675 0.5619986 -0.4108177 0.4365675 0.5619986 -0.4244723 0.4365675 0.5619986 -0.4365675 0.4365675 0.5619986 -0.4474232 0.4365675 0.5619986 -0.45727 0.4365675 0.5619986 -0.4662797 0.4365675 0.5619986 -0.4745834 0.4365675 0.5619986 -0.4822838 0.4365675 0.5619986 -0.4894626 0.4365675 0.5619986 -0.4961862 0.4365675 0.5619986 -0.5025087 0.4365675 0.5619986 -0.5084753 0.4365675 0.5619986 -0.514124 0.4365675 0.5619986 -0.519487 0.4365675 0.5619986 -0.5245917 0.4365675 0.5619986 -0.529462 0.4365675 0.5619986 -0.5341183 0.4365675 0.5619986 -0.5385787 0.4365675 0.5619986 -0.5428591 0.4365675 0.5619986 -0.5469733 0.4365675 0.5619986 -0.5509339 0.4365675 0.5619986 -0.5547519 0.4365675 0.5619986 -0.5584371 0.4365675 0.5619986 -0.5619986 0.4365675 0.5619986 -0.5654443 0.4365675 0.5619986 -0.5687816 0.4365675 0.5619986 -0.092819 0.4474232 0.5619986 -0.2262531 0.4474232 0.5619986 -0.2875993 0.4474232 0.5619986 -0.3262122 0.4474232 0.5619986 -0.3544566 0.4474232 0.5619986 -0.3767383 0.4474232 0.5619986 -0.3951413 0.4474232 0.5619986 -0.4108177 0.4474232 0.5619986 -0.4244723 0.4474232 0.5619986 -0.4365675 0.4474232 0.5619986 -0.4474232 0.4474232 0.5619986 -0.45727 0.4474232 0.5619986 -0.4662797 0.4474232 0.5619986 -0.4745834 0.4474232 0.5619986 -0.4822838 0.4474232 0.5619986 -0.4894626 0.4474232 0.5619986 -0.4961862 0.4474232 0.5619986 -0.5025087 0.4474232 0.5619986 -0.5084753 0.4474232 0.5619986 -0.514124 0.4474232 0.5619986 -0.519487 0.4474232 0.5619986 -0.5245917 0.4474232 0.5619986 -0.529462 0.4474232 0.5619986 -0.5341183 0.4474232 0.5619986 -0.5385787 0.4474232 0.5619986 -0.5428591 0.4474232 0.5619986 -0.5469733 0.4474232 0.5619986 -0.5509339 0.4474232 0.5619986 -0.5547519 0.4474232 0.5619986 -0.5584371 0.4474232 0.5619986 -0.5619986 0.4474232 0.5619986 -0.5654443 0.4474232 0.5619986 -0.5687816 0.4474232 0.5619986 -0.092819 0.45727 0.5619986 -0.2262531 0.45727 0.5619986 -0.2875993 0.45727 0.5619986 -0.3262122 0.45727 0.5619986 -0.3544566 0.45727 0.5619986 -0.3767383 0.45727 0.5619986 -0.3951413 0.45727 0.5619986 -0.4108177 0.45727 0.5619986 -0.4244723 0.45727 0.5619986 -0.4365675 0.45727 0.5619986 -0.4474232 0.45727 0.5619986 -0.45727 0.45727 0.5619986 -0.4662797 0.45727 0.5619986 -0.4745834 0.45727 0.5619986 -0.4822838 0.45727 0.5619986 -0.4894626 0.45727 0.5619986 -0.4961862 0.45727 0.5619986 -0.5025087 0.45727 0.5619986 -0.5084753 0.45727 0.5619986 -0.514124 0.45727 0.5619986 -0.519487 0.45727 0.5619986 -0.5245917 0.45727 0.5619986 -0.529462 0.45727 0.5619986 -0.5341183 0.45727 0.5619986 -0.5385787 0.45727 0.5619986 -0.5428591 0.45727 0.5619986 -0.5469733 0.45727 0.5619986 -0.5509339 0.45727 0.5619986 -0.5547519 0.45727 0.5619986 -0.5584371 0.45727 0.5619986 -0.5619986 0.45727 0.5619986 -0.5654443 0.45727 0.5619986 -0.5687816 0.45727 0.5619986 -0.092819 0.4662797 0.5619986 -0.2262531 0.4662797 0.5619986 -0.2875993 0.4662797 0.5619986 -0.3262122 0.4662797 0.5619986 -0.3544566 0.4662797 0.5619986 -0.3767383 0.4662797 0.5619986 -0.3951413 0.4662797 0.5619986 -0.4108177 0.4662797 0.5619986 -0.4244723 0.4662797 0.5619986 -0.4365675 0.4662797 0.5619986 -0.4474232 0.4662797 0.5619986 -0.45727 0.4662797 0.5619986 -0.4662797 0.4662797 0.5619986 -0.4745834 0.4662797 0.5619986 -0.4822838 0.4662797 0.5619986 -0.4894626 0.4662797 0.5619986 -0.4961862 0.4662797 0.5619986 -0.5025087 0.4662797 0.5619986 -0.5084753 0.4662797 0.5619986 -0.514124 0.4662797 0.5619986 -0.519487 0.4662797 0.5619986 -0.5245917 0.4662797 0.5619986 -0.529462 0.4662797 0.5619986 -0.5341183 0.4662797 0.5619986 -0.5385787 0.4662797 0.5619986 -0.5428591 0.4662797 0.5619986 -0.5469733 0.4662797 0.5619986 -0.5509339 0.4662797 0.5619986 -0.5547519 0.4662797 0.5619986 -0.5584371 0.4662797 0.5619986 -0.5619986 0.4662797 0.5619986 -0.5654443 0.4662797 0.5619986 -0.5687816 0.4662797 0.5619986 -0.092819 0.4745834 0.5619986 -0.2262531 0.4745834 0.5619986 -0.2875993 0.4745834 0.5619986 -0.3262122 0.4745834 0.5619986 -0.3544566 0.4745834 0.5619986 -0.3767383 0.4745834 0.5619986 -0.3951413 0.4745834 0.5619986 -0.4108177 0.4745834 0.5619986 -0.4244723 0.4745834 0.5619986 -0.4365675 0.4745834 0.5619986 -0.4474232 0.4745834 0.5619986 -0.45727 0.4745834 0.5619986 -0.4662797 0.4745834 0.5619986 -0.4745834 0.4745834 0.5619986 -0.4822838 0.4745834 0.5619986 -0.4894626 0.4745834 0.5619986 -0.4961862 0.4745834 0.5619986 -0.5025087 0.4745834 0.5619986 -0.5084753 0.4745834 0.5619986 -0.514124 0.4745834 0.5619986 -0.519487 0.4745834 0.5619986 -0.5245917 0.4745834 0.5619986 -0.529462 0.4745834 0.5619986 -0.5341183 0.4745834 0.5619986 -0.5385787 0.4745834 0.5619986 -0.5428591 0.4745834 0.5619986 -0.5469733 0.4745834 0.5619986 -0.5509339 0.4745834 0.5619986 -0.5547519 0.4745834 0.5619986 -0.5584371 0.4745834 0.5619986 -0.5619986 0.4745834 0.5619986 -0.5654443 0.4745834 0.5619986 -0.5687816 0.4745834 0.5619986 -0.092819 0.4822838 0.5619986 -0.2262531 0.4822838 0.5619986 -0.2875993 0.4822838 0.5619986 -0.3262122 0.4822838 0.5619986 -0.3544566 0.4822838 0.5619986 -0.3767383 0.4822838 0.5619986 -0.3951413 0.4822838 0.5619986 -0.4108177 0.4822838 0.5619986 -0.4244723 0.4822838 0.5619986 -0.4365675 0.4822838 0.5619986 -0.4474232 0.4822838 0.5619986 -0.45727 0.4822838 0.5619986 -0.4662797 0.4822838 0.5619986 -0.4745834 0.4822838 0.5619986 -0.4822838 0.4822838 0.5619986 -0.4894626 0.4822838 0.5619986 -0.4961862 0.4822838 0.5619986 -0.5025087 0.4822838 0.5619986 -0.5084753 0.4822838 0.5619986 -0.514124 0.4822838 0.5619986 -0.519487 0.4822838 0.5619986 -0.5245917 0.4822838 0.5619986 -0.529462 0.4822838 0.5619986 -0.5341183 0.4822838 0.5619986 -0.5385787 0.4822838 0.5619986 -0.5428591 0.4822838 0.5619986 -0.5469733 0.4822838 0.5619986 -0.5509339 0.4822838 0.5619986 -0.5547519 0.4822838 0.5619986 -0.5584371 0.4822838 0.5619986 -0.5619986 0.4822838 0.5619986 -0.5654443 0.4822838 0.5619986 -0.5687816 0.4822838 0.5619986 -0.092819 0.4894626 0.5619986 -0.2262531 0.4894626 0.5619986 -0.2875993 0.4894626 0.5619986 -0.3262122 0.4894626 0.5619986 -0.3544566 0.4894626 0.5619986 -0.3767383 0.4894626 0.5619986 -0.3951413 0.4894626 0.5619986 -0.4108177 0.4894626 0.5619986 -0.4244723 0.4894626 0.5619986 -0.4365675 0.4894626 0.5619986 -0.4474232 0.4894626 0.5619986 -0.45727 0.4894626 0.5619986 -0.4662797 0.4894626 0.5619986 -0.4745834 0.4894626 0.5619986 -0.4822838 0.4894626 0.5619986 -0.4894626 0.4894626 0.5619986 -0.4961862 0.4894626 0.5619986 -0.5025087 0.4894626 0.5619986 -0.5084753 0.4894626 0.5619986 -0.514124 0.4894626 0.5619986 -0.519487 0.4894626 0.5619986 -0.5245917 0.4894626 0.5619986 -0.529462 0.4894626 0.5619986 -0.5341183 0.4894626 0.5619986 -0.5385787 0.4894626 0.5619986 -0.5428591 0.4894626 0.5619986 -0.5469733 0.4894626 0.5619986 -0.5509339 0.4894626 0.5619986 -0.5547519 0.4894626 0.5619986 -0.5584371 0.4894626 0.5619986 -0.5619986 0.4894626 0.5619986 -0.5654443 0.4894626 0.5619986 -0.5687816 0.4894626 0.5619986 -0.092819 0.4961862 0.5619986 -0.2262531 0.4961862 0.5619986 -0.2875993 0.4961862 0.5619986 -0.3262122 0.4961862 0.5619986 -0.3544566 0.4961862 0.5619986 -0.3767383 0.4961862 0.5619986 -0.3951413 0.4961862 0.5619986 -0.4108177 0.4961862 0.5619986 -0.4244723 0.4961862 0.5619986 -0.4365675 0.4961862 0.5619986 -0.4474232 0.4961862 0.5619986 -0.45727 0.4961862 0.5619986 -0.4662797 0.4961862 0.5619986 -0.4745834 0.4961862 0.5619986 -0.4822838 0.4961862 0.5619986 -0.4894626 0.4961862 0.5619986 -0.4961862 0.4961862 0.5619986 -0.5025087 0.4961862 0.5619986 -0.5084753 0.4961862 0.5619986 -0.514124 0.4961862 0.5619986 -0.519487 0.4961862 0.5619986 -0.5245917 0.4961862 0.5619986 -0.529462 0.4961862 0.5619986 -0.5341183 0.4961862 0.5619986 -0.5385787 0.4961862 0.5619986 -0.5428591 0.4961862 0.5619986 -0.5469733 0.4961862 0.5619986 -0.5509339 0.4961862 0.5619986 -0.5547519 0.4961862 0.5619986 -0.5584371 0.4961862 0.5619986 -0.5619986 0.4961862 0.5619986 -0.5654443 0.4961862 0.5619986 -0.5687816 0.4961862 0.5619986 -0.092819 0.5025087 0.5619986 -0.2262531 0.5025087 0.5619986 -0.2875993 0.5025087 0.5619986 -0.3262122 0.5025087 0.5619986 -0.3544566 0.5025087 0.5619986 -0.3767383 0.5025087 0.5619986 -0.3951413 0.5025087 0.5619986 -0.4108177 0.5025087 0.5619986 -0.4244723 0.5025087 0.5619986 -0.4365675 0.5025087 0.5619986 -0.4474232 0.5025087 0.5619986 -0.45727 0.5025087 0.5619986 -0.4662797 0.5025087 0.5619986 -0.4745834 0.5025087 0.5619986 -0.4822838 0.5025087 0.5619986 -0.4894626 0.5025087 0.5619986 -0.4961862 0.5025087 0.5619986 -0.5025087 0.5025087 0.5619986 -0.5084753 0.5025087 0.5619986 -0.514124 0.5025087 0.5619986 -0.519487 0.5025087 0.5619986 -0.5245917 0.5025087 0.5619986 -0.529462 0.5025087 0.5619986 -0.5341183 0.5025087 0.5619986 -0.5385787 0.5025087 0.5619986 -0.5428591 0.5025087 0.5619986 -0.5469733 0.5025087 0.5619986 -0.5509339 0.5025087 0.5619986 -0.5547519 0.5025087 0.5619986 -0.5584371 0.5025087 0.5619986 -0.5619986 0.5025087 0.5619986 -0.5654443 0.5025087 0.5619986 -0.5687816 0.5025087 0.5619986 -0.092819 0.5084753 0.5619986 -0.2262531 0.5084753 0.5619986 -0.2875993 0.5084753 0.5619986 -0.3262122 0.5084753 0.5619986 -0.3544566 0.5084753 0.5619986 -0.3767383 0.5084753 0.5619986 -0.3951413 0.5084753 0.5619986 -0.4108177 0.5084753 0.5619986 -0.4244723 0.5084753 0.5619986 -0.4365675 0.5084753 0.5619986 -0.4474232 0.5084753 0.5619986 -0.45727 0.5084753 0.5619986 -0.4662797 0.5084753 0.5619986 -0.4745834 0.5084753 0.5619986 -0.4822838 0.5084753 0.5619986 -0.4894626 0.5084753 0.5619986 -0.4961862 0.5084753 0.5619986 -0.5025087 0.5084753 0.5619986 -0.5084753 0.5084753 0.5619986 -0.514124 0.5084753 0.5619986 -0.519487 0.5084753 0.5619986 -0.5245917 0.5084753 0.5619986 -0.529462 0.5084753 0.5619986 -0.5341183 0.5084753 0.5619986 -0.5385787 0.5084753 0.5619986 -0.5428591 0.5084753 0.5619986 -0.5469733 0.5084753 0.5619986 -0.5509339 0.5084753 0.5619986 -0.5547519 0.5084753 0.5619986 -0.5584371 0.5084753 0.5619986 -0.5619986 0.5084753 0.5619986 -0.5654443 0.5084753 0.5619986 -0.5687816 0.5084753 0.5619986 -0.092819 0.514124 0.5619986 -0.2262531 0.514124 0.5619986 -0.2875993 0.514124 0.5619986 -0.3262122 0.514124 0.5619986 -0.3544566 0.514124 0.5619986 -0.3767383 0.514124 0.5619986 -0.3951413 0.514124 0.5619986 -0.4108177 0.514124 0.5619986 -0.4244723 0.514124 0.5619986 -0.4365675 0.514124 0.5619986 -0.4474232 0.514124 0.5619986 -0.45727 0.514124 0.5619986 -0.4662797 0.514124 0.5619986 -0.4745834 0.514124 0.5619986 -0.4822838 0.514124 0.5619986 -0.4894626 0.514124 0.5619986 -0.4961862 0.514124 0.5619986 -0.5025087 0.514124 0.5619986 -0.5084753 0.514124 0.5619986 -0.514124 0.514124 0.5619986 -0.519487 0.514124 0.5619986 -0.5245917 0.514124 0.5619986 -0.529462 0.514124 0.5619986 -0.5341183 0.514124 0.5619986 -0.5385787 0.514124 0.5619986 -0.5428591 0.514124 0.5619986 -0.5469733 0.514124 0.5619986 -0.5509339 0.514124 0.5619986 -0.5547519 0.514124 0.5619986 -0.5584371 0.514124 0.5619986 -0.5619986 0.514124 0.5619986 -0.5654443 0.514124 0.5619986 -0.5687816 0.514124 0.5619986 -0.092819 0.519487 0.5619986 -0.2262531 0.519487 0.5619986 -0.2875993 0.519487 0.5619986 -0.3262122 0.519487 0.5619986 -0.3544566 0.519487 0.5619986 -0.3767383 0.519487 0.5619986 -0.3951413 0.519487 0.5619986 -0.4108177 0.519487 0.5619986 -0.4244723 0.519487 0.5619986 -0.4365675 0.519487 0.5619986 -0.4474232 0.519487 0.5619986 -0.45727 0.519487 0.5619986 -0.4662797 0.519487 0.5619986 -0.4745834 0.519487 0.5619986 -0.4822838 0.519487 0.5619986 -0.4894626 0.519487 0.5619986 -0.4961862 0.519487 0.5619986 -0.5025087 0.519487 0.5619986 -0.5084753 0.519487 0.5619986 -0.514124 0.519487 0.5619986 -0.519487 0.519487 0.5619986 -0.5245917 0.519487 0.5619986 -0.529462 0.519487 0.5619986 -0.5341183 0.519487 0.5619986 -0.5385787 0.519487 0.5619986 -0.5428591 0.519487 0.5619986 -0.5469733 0.519487 0.5619986 -0.5509339 0.519487 0.5619986 -0.5547519 0.519487 0.5619986 -0.5584371 0.519487 0.5619986 -0.5619986 0.519487 0.5619986 -0.5654443 0.519487 0.5619986 -0.5687816 0.519487 0.5619986 -0.092819 0.5245917 0.5619986 -0.2262531 0.5245917 0.5619986 -0.2875993 0.5245917 0.5619986 -0.3262122 0.5245917 0.5619986 -0.3544566 0.5245917 0.5619986 -0.3767383 0.5245917 0.5619986 -0.3951413 0.5245917 0.5619986 -0.4108177 0.5245917 0.5619986 -0.4244723 0.5245917 0.5619986 -0.4365675 0.5245917 0.5619986 -0.4474232 0.5245917 0.5619986 -0.45727 0.5245917 0.5619986 -0.4662797 0.5245917 0.5619986 -0.4745834 0.5245917 0.5619986 -0.4822838 0.5245917 0.5619986 -0.4894626 0.5245917 0.5619986 -0.4961862 0.5245917 0.5619986 -0.5025087 0.5245917 0.5619986 -0.5084753 0.5245917 0.5619986 -0.514124 0.5245917 0.5619986 -0.519487 0.5245917 0.5619986 -0.5245917 0.5245917 0.5619986 -0.529462 0.5245917 0.5619986 -0.5341183 0.5245917 0.5619986 -0.5385787 0.5245917 0.5619986 -0.5428591 0.5245917 0.5619986 -0.5469733 0.5245917 0.5619986 -0.5509339 0.5245917 0.5619986 -0.5547519 0.5245917 0.5619986 -0.5584371 0.5245917 0.5619986 -0.5619986 0.5245917 0.5619986 -0.5654443 0.5245917 0.5619986 -0.5687816 0.5245917 0.5619986 -0.092819 0.529462 0.5619986 -0.2262531 0.529462 0.5619986 -0.2875993 0.529462 0.5619986 -0.3262122 0.529462 0.5619986 -0.3544566 0.529462 0.5619986 -0.3767383 0.529462 0.5619986 -0.3951413 0.529462 0.5619986 -0.4108177 0.529462 0.5619986 -0.4244723 0.529462 0.5619986 -0.4365675 0.529462 0.5619986 -0.4474232 0.529462 0.5619986 -0.45727 0.529462 0.5619986 -0.4662797 0.529462 0.5619986 -0.4745834 0.529462 0.5619986 -0.4822838 0.529462 0.5619986 -0.4894626 0.529462 0.5619986 -0.4961862 0.529462 0.5619986 -0.5025087 0.529462 0.5619986 -0.5084753 0.529462 0.5619986 -0.514124 0.529462 0.5619986 -0.519487 0.529462 0.5619986 -0.5245917 0.529462 0.5619986 -0.529462 0.529462 0.5619986 -0.5341183 0.529462 0.5619986 -0.5385787 0.529462 0.5619986 -0.5428591 0.529462 0.5619986 -0.5469733 0.529462 0.5619986 -0.5509339 0.529462 0.5619986 -0.5547519 0.529462 0.5619986 -0.5584371 0.529462 0.5619986 -0.5619986 0.529462 0.5619986 -0.5654443 0.529462 0.5619986 -0.5687816 0.529462 0.5619986 -0.092819 0.5341183 0.5619986 -0.2262531 0.5341183 0.5619986 -0.2875993 0.5341183 0.5619986 -0.3262122 0.5341183 0.5619986 -0.3544566 0.5341183 0.5619986 -0.3767383 0.5341183 0.5619986 -0.3951413 0.5341183 0.5619986 -0.4108177 0.5341183 0.5619986 -0.4244723 0.5341183 0.5619986 -0.4365675 0.5341183 0.5619986 -0.4474232 0.5341183 0.5619986 -0.45727 0.5341183 0.5619986 -0.4662797 0.5341183 0.5619986 -0.4745834 0.5341183 0.5619986 -0.4822838 0.5341183 0.5619986 -0.4894626 0.5341183 0.5619986 -0.4961862 0.5341183 0.5619986 -0.5025087 0.5341183 0.5619986 -0.5084753 0.5341183 0.5619986 -0.514124 0.5341183 0.5619986 -0.519487 0.5341183 0.5619986 -0.5245917 0.5341183 0.5619986 -0.529462 0.5341183 0.5619986 -0.5341183 0.5341183 0.5619986 -0.5385787 0.5341183 0.5619986 -0.5428591 0.5341183 0.5619986 -0.5469733 0.5341183 0.5619986 -0.5509339 0.5341183 0.5619986 -0.5547519 0.5341183 0.5619986 -0.5584371 0.5341183 0.5619986 -0.5619986 0.5341183 0.5619986 -0.5654443 0.5341183 0.5619986 -0.5687816 0.5341183 0.5619986 -0.092819 0.5385787 0.5619986 -0.2262531 0.5385787 0.5619986 -0.2875993 0.5385787 0.5619986 -0.3262122 0.5385787 0.5619986 -0.3544566 0.5385787 0.5619986 -0.3767383 0.5385787 0.5619986 -0.3951413 0.5385787 0.5619986 -0.4108177 0.5385787 0.5619986 -0.4244723 0.5385787 0.5619986 -0.4365675 0.5385787 0.5619986 -0.4474232 0.5385787 0.5619986 -0.45727 0.5385787 0.5619986 -0.4662797 0.5385787 0.5619986 -0.4745834 0.5385787 0.5619986 -0.4822838 0.5385787 0.5619986 -0.4894626 0.5385787 0.5619986 -0.4961862 0.5385787 0.5619986 -0.5025087 0.5385787 0.5619986 -0.5084753 0.5385787 0.5619986 -0.514124 0.5385787 0.5619986 -0.519487 0.5385787 0.5619986 -0.5245917 0.5385787 0.5619986 -0.529462 0.5385787 0.5619986 -0.5341183 0.5385787 0.5619986 -0.5385787 0.5385787 0.5619986 -0.5428591 0.5385787 0.5619986 -0.5469733 0.5385787 0.5619986 -0.5509339 0.5385787 0.5619986 -0.5547519 0.5385787 0.5619986 -0.5584371 0.5385787 0.5619986 -0.5619986 0.5385787 0.5619986 -0.5654443 0.5385787 0.5619986 -0.5687816 0.5385787 0.5619986 -0.092819 0.5428591 0.5619986 -0.2262531 0.5428591 0.5619986 -0.2875993 0.5428591 0.5619986 -0.3262122 0.5428591 0.5619986 -0.3544566 0.5428591 0.5619986 -0.3767383 0.5428591 0.5619986 -0.3951413 0.5428591 0.5619986 -0.4108177 0.5428591 0.5619986 -0.4244723 0.5428591 0.5619986 -0.4365675 0.5428591 0.5619986 -0.4474232 0.5428591 0.5619986 -0.45727 0.5428591 0.5619986 -0.4662797 0.5428591 0.5619986 -0.4745834 0.5428591 0.5619986 -0.4822838 0.5428591 0.5619986 -0.4894626 0.5428591 0.5619986 -0.4961862 0.5428591 0.5619986 -0.5025087 0.5428591 0.5619986 -0.5084753 0.5428591 0.5619986 -0.514124 0.5428591 0.5619986 -0.519487 0.5428591 0.5619986 -0.5245917 0.5428591 0.5619986 -0.529462 0.5428591 0.5619986 -0.5341183 0.5428591 0.5619986 -0.5385787 0.5428591 0.5619986 -0.5428591 0.5428591 0.5619986 -0.5469733 0.5428591 0.5619986 -0.5509339 0.5428591 0.5619986 -0.5547519 0.5428591 0.5619986 -0.5584371 0.5428591 0.5619986 -0.5619986 0.5428591 0.5619986 -0.5654443 0.5428591 0.5619986 -0.5687816 0.5428591 0.5619986 -0.092819 0.5469733 0.5619986 -0.2262531 0.5469733 0.5619986 -0.2875993 0.5469733 0.5619986 -0.3262122 0.5469733 0.5619986 -0.3544566 0.5469733 0.5619986 -0.3767383 0.5469733 0.5619986 -0.3951413 0.5469733 0.5619986 -0.4108177 0.5469733 0.5619986 -0.4244723 0.5469733 0.5619986 -0.4365675 0.5469733 0.5619986 -0.4474232 0.5469733 0.5619986 -0.45727 0.5469733 0.5619986 -0.4662797 0.5469733 0.5619986 -0.4745834 0.5469733 0.5619986 -0.4822838 0.5469733 0.5619986 -0.4894626 0.5469733 0.5619986 -0.4961862 0.5469733 0.5619986 -0.5025087 0.5469733 0.5619986 -0.5084753 0.5469733 0.5619986 -0.514124 0.5469733 0.5619986 -0.519487 0.5469733 0.5619986 -0.5245917 0.5469733 0.5619986 -0.529462 0.5469733 0.5619986 -0.5341183 0.5469733 0.5619986 -0.5385787 0.5469733 0.5619986 -0.5428591 0.5469733 0.5619986 -0.5469733 0.5469733 0.5619986 -0.5509339 0.5469733 0.5619986 -0.5547519 0.5469733 0.5619986 -0.5584371 0.5469733 0.5619986 -0.5619986 0.5469733 0.5619986 -0.5654443 0.5469733 0.5619986 -0.5687816 0.5469733 0.5619986 -0.092819 0.5509339 0.5619986 -0.2262531 0.5509339 0.5619986 -0.2875993 0.5509339 0.5619986 -0.3262122 0.5509339 0.5619986 -0.3544566 0.5509339 0.5619986 -0.3767383 0.5509339 0.5619986 -0.3951413 0.5509339 0.5619986 -0.4108177 0.5509339 0.5619986 -0.4244723 0.5509339 0.5619986 -0.4365675 0.5509339 0.5619986 -0.4474232 0.5509339 0.5619986 -0.45727 0.5509339 0.5619986 -0.4662797 0.5509339 0.5619986 -0.4745834 0.5509339 0.5619986 -0.4822838 0.5509339 0.5619986 -0.4894626 0.5509339 0.5619986 -0.4961862 0.5509339 0.5619986 -0.5025087 0.5509339 0.5619986 -0.5084753 0.5509339 0.5619986 -0.514124 0.5509339 0.5619986 -0.519487 0.5509339 0.5619986 -0.5245917 0.5509339 0.5619986 -0.529462 0.5509339 0.5619986 -0.5341183 0.5509339 0.5619986 -0.5385787 0.5509339 0.5619986 -0.5428591 0.5509339 0.5619986 -0.5469733 0.5509339 0.5619986 -0.5509339 0.5509339 0.5619986 -0.5547519 0.5509339 0.5619986 -0.5584371 0.5509339 0.5619986 -0.5619986 0.5509339 0.5619986 -0.5654443 0.5509339 0.5619986 -0.5687816 0.5509339 0.5619986 -0.092819 0.5547519 0.5619986 -0.2262531 0.5547519 0.5619986 -0.2875993 0.5547519 0.5619986 -0.3262122 0.5547519 0.5619986 -0.3544566 0.5547519 0.5619986 -0.3767383 0.5547519 0.5619986 -0.3951413 0.5547519 0.5619986 -0.4108177 0.5547519 0.5619986 -0.4244723 0.5547519 0.5619986 -0.4365675 0.5547519 0.5619986 -0.4474232 0.5547519 0.5619986 -0.45727 0.5547519 0.5619986 -0.4662797 0.5547519 0.5619986 -0.4745834 0.5547519 0.5619986 -0.4822838 0.5547519 0.5619986 -0.4894626 0.5547519 0.5619986 -0.4961862 0.5547519 0.5619986 -0.5025087 0.5547519 0.5619986 -0.5084753 0.5547519 0.5619986 -0.514124 0.5547519 0.5619986 -0.519487 0.5547519 0.5619986 -0.5245917 0.5547519 0.5619986 -0.529462 0.5547519 0.5619986 -0.5341183 0.5547519 0.5619986 -0.5385787 0.5547519 0.5619986 -0.5428591 0.5547519 0.5619986 -0.5469733 0.5547519 0.5619986 -0.5509339 0.5547519 0.5619986 -0.5547519 0.5547519 0.5619986 -0.5584371 0.5547519 0.5619986 -0.5619986 0.5547519 0.5619986 -0.5654443 0.5547519 0.5619986 -0.5687816 0.5547519 0.5619986 -0.092819 0.5584371 0.5619986 -0.2262531 0.5584371 0.5619986 -0.2875993 0.5584371 0.5619986 -0.3262122 0.5584371 0.5619986 -0.3544566 0.5584371 0.5619986 -0.3767383 0.5584371 0.5619986 -0.3951413 0.5584371 0.5619986 -0.4108177 0.5584371 0.5619986 -0.4244723 0.5584371 0.5619986 -0.4365675 0.5584371 0.5619986 -0.4474232 0.5584371 0.5619986 -0.45727 0.5584371 0.5619986 -0.4662797 0.5584371 0.5619986 -0.4745834 0.5584371 0.5619986 -0.4822838 0.5584371 0.5619986 -0.4894626 0.5584371 0.5619986 -0.4961862 0.5584371 0.5619986 -0.5025087 0.5584371 0.5619986 -0.5084753 0.5584371 0.5619986 -0.514124 0.5584371 0.5619986 -0.519487 0.5584371 0.5619986 -0.5245917 0.5584371 0.5619986 -0.529462 0.5584371 0.5619986 -0.5341183 0.5584371 0.5619986 -0.5385787 0.5584371 0.5619986 -0.5428591 0.5584371 0.5619986 -0.5469733 0.5584371 0.5619986 -0.5509339 0.5584371 0.5619986 -0.5547519 0.5584371 0.5619986 -0.5584371 0.5584371 0.5619986 -0.5619986 0.5584371 0.5619986 -0.5654443 0.5584371 0.5619986 -0.5687816 0.5584371 0.5619986 -0.092819 0.5619986 0.5619986 -0.2262531 0.5619986 0.5619986 -0.2875993 0.5619986 0.5619986 -0.3262122 0.5619986 0.5619986 -0.3544566 0.5619986 0.5619986 -0.3767383 0.5619986 0.5619986 -0.3951413 0.5619986 0.5619986 -0.4108177 0.5619986 0.5619986 -0.4244723 0.5619986 0.5619986 -0.4365675 0.5619986 0.5619986 -0.4474232 0.5619986 0.5619986 -0.45727 0.5619986 0.5619986 -0.4662797 0.5619986 0.5619986 -0.4745834 0.5619986 0.5619986 -0.4822838 0.5619986 0.5619986 -0.4894626 0.5619986 0.5619986 -0.4961862 0.5619986 0.5619986 -0.5025087 0.5619986 0.5619986 -0.5084753 0.5619986 0.5619986 -0.514124 0.5619986 0.5619986 -0.519487 0.5619986 0.5619986 -0.5245917 0.5619986 0.5619986 -0.529462 0.5619986 0.5619986 -0.5341183 0.5619986 0.5619986 -0.5385787 0.5619986 0.5619986 -0.5428591 0.5619986 0.5619986 -0.5469733 0.5619986 0.5619986 -0.5509339 0.5619986 0.5619986 -0.5547519 0.5619986 0.5619986 -0.5584371 0.5619986 0.5619986 -0.5619986 0.5619986 0.5619986 -0.5654443 0.5619986 0.5619986 -0.5687816 0.5619986 0.5619986 -0.092819 0.5654443 0.5619986 -0.2262531 0.5654443 0.5619986 -0.2875993 0.5654443 0.5619986 -0.3262122 0.5654443 0.5619986 -0.3544566 0.5654443 0.5619986 -0.3767383 0.5654443 0.5619986 -0.3951413 0.5654443 0.5619986 -0.4108177 0.5654443 0.5619986 -0.4244723 0.5654443 0.5619986 -0.4365675 0.5654443 0.5619986 -0.4474232 0.5654443 0.5619986 -0.45727 0.5654443 0.5619986 -0.4662797 0.5654443 0.5619986 -0.4745834 0.5654443 0.5619986 -0.4822838 0.5654443 0.5619986 -0.4894626 0.5654443 0.5619986 -0.4961862 0.5654443 0.5619986 -0.5025087 0.5654443 0.5619986 -0.5084753 0.5654443 0.5619986 -0.514124 0.5654443 0.5619986 -0.519487 0.5654443 0.5619986 -0.5245917 0.5654443 0.5619986 -0.529462 0.5654443 0.5619986 -0.5341183 0.5654443 0.5619986 -0.5385787 0.5654443 0.5619986 -0.5428591 0.5654443 0.5619986 -0.5469733 0.5654443 0.5619986 -0.5509339 0.5654443 0.5619986 -0.5547519 0.5654443 0.5619986 -0.5584371 0.5654443 0.5619986 -0.5619986 0.5654443 0.5619986 -0.5654443 0.5654443 0.5619986 -0.5687816 0.5654443 0.5619986 -0.092819 0.5687816 0.5619986 -0.2262531 0.5687816 0.5619986 -0.2875993 0.5687816 0.5619986 -0.3262122 0.5687816 0.5619986 -0.3544566 0.5687816 0.5619986 -0.3767383 0.5687816 0.5619986 -0.3951413 0.5687816 0.5619986 -0.4108177 0.5687816 0.5619986 -0.4244723 0.5687816 0.5619986 -0.4365675 0.5687816 0.5619986 -0.4474232 0.5687816 0.5619986 -0.45727 0.5687816 0.5619986 -0.4662797 0.5687816 0.5619986 -0.4745834 0.5687816 0.5619986 -0.4822838 0.5687816 0.5619986 -0.4894626 0.5687816 0.5619986 -0.4961862 0.5687816 0.5619986 -0.5025087 0.5687816 0.5619986 -0.5084753 0.5687816 0.5619986 -0.514124 0.5687816 0.5619986 -0.519487 0.5687816 0.5619986 -0.5245917 0.5687816 0.5619986 -0.529462 0.5687816 0.5619986 -0.5341183 0.5687816 0.5619986 -0.5385787 0.5687816 0.5619986 -0.5428591 0.5687816 0.5619986 -0.5469733 0.5687816 0.5619986 -0.5509339 0.5687816 0.5619986 -0.5547519 0.5687816 0.5619986 -0.5584371 0.5687816 0.5619986 -0.5619986 0.5687816 0.5619986 -0.5654443 0.5687816 0.5619986 -0.5687816 0.5687816 0.5619986 -0.092819 0.092819 0.5654443 -0.2262531 0.092819 0.5654443 -0.2875993 0.092819 0.5654443 -0.3262122 0.092819 0.5654443 -0.3544566 0.092819 0.5654443 -0.3767383 0.092819 0.5654443 -0.3951413 0.092819 0.5654443 -0.4108177 0.092819 0.5654443 -0.4244723 0.092819 0.5654443 -0.4365675 0.092819 0.5654443 -0.4474232 0.092819 0.5654443 -0.45727 0.092819 0.5654443 -0.4662797 0.092819 0.5654443 -0.4745834 0.092819 0.5654443 -0.4822838 0.092819 0.5654443 -0.4894626 0.092819 0.5654443 -0.4961862 0.092819 0.5654443 -0.5025087 0.092819 0.5654443 -0.5084753 0.092819 0.5654443 -0.514124 0.092819 0.5654443 -0.519487 0.092819 0.5654443 -0.5245917 0.092819 0.5654443 -0.529462 0.092819 0.5654443 -0.5341183 0.092819 0.5654443 -0.5385787 0.092819 0.5654443 -0.5428591 0.092819 0.5654443 -0.5469733 0.092819 0.5654443 -0.5509339 0.092819 0.5654443 -0.5547519 0.092819 0.5654443 -0.5584371 0.092819 0.5654443 -0.5619986 0.092819 0.5654443 -0.5654443 0.092819 0.5654443 -0.5687816 0.092819 0.5654443 -0.092819 0.2262531 0.5654443 -0.2262531 0.2262531 0.5654443 -0.2875993 0.2262531 0.5654443 -0.3262122 0.2262531 0.5654443 -0.3544566 0.2262531 0.5654443 -0.3767383 0.2262531 0.5654443 -0.3951413 0.2262531 0.5654443 -0.4108177 0.2262531 0.5654443 -0.4244723 0.2262531 0.5654443 -0.4365675 0.2262531 0.5654443 -0.4474232 0.2262531 0.5654443 -0.45727 0.2262531 0.5654443 -0.4662797 0.2262531 0.5654443 -0.4745834 0.2262531 0.5654443 -0.4822838 0.2262531 0.5654443 -0.4894626 0.2262531 0.5654443 -0.4961862 0.2262531 0.5654443 -0.5025087 0.2262531 0.5654443 -0.5084753 0.2262531 0.5654443 -0.514124 0.2262531 0.5654443 -0.519487 0.2262531 0.5654443 -0.5245917 0.2262531 0.5654443 -0.529462 0.2262531 0.5654443 -0.5341183 0.2262531 0.5654443 -0.5385787 0.2262531 0.5654443 -0.5428591 0.2262531 0.5654443 -0.5469733 0.2262531 0.5654443 -0.5509339 0.2262531 0.5654443 -0.5547519 0.2262531 0.5654443 -0.5584371 0.2262531 0.5654443 -0.5619986 0.2262531 0.5654443 -0.5654443 0.2262531 0.5654443 -0.5687816 0.2262531 0.5654443 -0.092819 0.2875993 0.5654443 -0.2262531 0.2875993 0.5654443 -0.2875993 0.2875993 0.5654443 -0.3262122 0.2875993 0.5654443 -0.3544566 0.2875993 0.5654443 -0.3767383 0.2875993 0.5654443 -0.3951413 0.2875993 0.5654443 -0.4108177 0.2875993 0.5654443 -0.4244723 0.2875993 0.5654443 -0.4365675 0.2875993 0.5654443 -0.4474232 0.2875993 0.5654443 -0.45727 0.2875993 0.5654443 -0.4662797 0.2875993 0.5654443 -0.4745834 0.2875993 0.5654443 -0.4822838 0.2875993 0.5654443 -0.4894626 0.2875993 0.5654443 -0.4961862 0.2875993 0.5654443 -0.5025087 0.2875993 0.5654443 -0.5084753 0.2875993 0.5654443 -0.514124 0.2875993 0.5654443 -0.519487 0.2875993 0.5654443 -0.5245917 0.2875993 0.5654443 -0.529462 0.2875993 0.5654443 -0.5341183 0.2875993 0.5654443 -0.5385787 0.2875993 0.5654443 -0.5428591 0.2875993 0.5654443 -0.5469733 0.2875993 0.5654443 -0.5509339 0.2875993 0.5654443 -0.5547519 0.2875993 0.5654443 -0.5584371 0.2875993 0.5654443 -0.5619986 0.2875993 0.5654443 -0.5654443 0.2875993 0.5654443 -0.5687816 0.2875993 0.5654443 -0.092819 0.3262122 0.5654443 -0.2262531 0.3262122 0.5654443 -0.2875993 0.3262122 0.5654443 -0.3262122 0.3262122 0.5654443 -0.3544566 0.3262122 0.5654443 -0.3767383 0.3262122 0.5654443 -0.3951413 0.3262122 0.5654443 -0.4108177 0.3262122 0.5654443 -0.4244723 0.3262122 0.5654443 -0.4365675 0.3262122 0.5654443 -0.4474232 0.3262122 0.5654443 -0.45727 0.3262122 0.5654443 -0.4662797 0.3262122 0.5654443 -0.4745834 0.3262122 0.5654443 -0.4822838 0.3262122 0.5654443 -0.4894626 0.3262122 0.5654443 -0.4961862 0.3262122 0.5654443 -0.5025087 0.3262122 0.5654443 -0.5084753 0.3262122 0.5654443 -0.514124 0.3262122 0.5654443 -0.519487 0.3262122 0.5654443 -0.5245917 0.3262122 0.5654443 -0.529462 0.3262122 0.5654443 -0.5341183 0.3262122 0.5654443 -0.5385787 0.3262122 0.5654443 -0.5428591 0.3262122 0.5654443 -0.5469733 0.3262122 0.5654443 -0.5509339 0.3262122 0.5654443 -0.5547519 0.3262122 0.5654443 -0.5584371 0.3262122 0.5654443 -0.5619986 0.3262122 0.5654443 -0.5654443 0.3262122 0.5654443 -0.5687816 0.3262122 0.5654443 -0.092819 0.3544566 0.5654443 -0.2262531 0.3544566 0.5654443 -0.2875993 0.3544566 0.5654443 -0.3262122 0.3544566 0.5654443 -0.3544566 0.3544566 0.5654443 -0.3767383 0.3544566 0.5654443 -0.3951413 0.3544566 0.5654443 -0.4108177 0.3544566 0.5654443 -0.4244723 0.3544566 0.5654443 -0.4365675 0.3544566 0.5654443 -0.4474232 0.3544566 0.5654443 -0.45727 0.3544566 0.5654443 -0.4662797 0.3544566 0.5654443 -0.4745834 0.3544566 0.5654443 -0.4822838 0.3544566 0.5654443 -0.4894626 0.3544566 0.5654443 -0.4961862 0.3544566 0.5654443 -0.5025087 0.3544566 0.5654443 -0.5084753 0.3544566 0.5654443 -0.514124 0.3544566 0.5654443 -0.519487 0.3544566 0.5654443 -0.5245917 0.3544566 0.5654443 -0.529462 0.3544566 0.5654443 -0.5341183 0.3544566 0.5654443 -0.5385787 0.3544566 0.5654443 -0.5428591 0.3544566 0.5654443 -0.5469733 0.3544566 0.5654443 -0.5509339 0.3544566 0.5654443 -0.5547519 0.3544566 0.5654443 -0.5584371 0.3544566 0.5654443 -0.5619986 0.3544566 0.5654443 -0.5654443 0.3544566 0.5654443 -0.5687816 0.3544566 0.5654443 -0.092819 0.3767383 0.5654443 -0.2262531 0.3767383 0.5654443 -0.2875993 0.3767383 0.5654443 -0.3262122 0.3767383 0.5654443 -0.3544566 0.3767383 0.5654443 -0.3767383 0.3767383 0.5654443 -0.3951413 0.3767383 0.5654443 -0.4108177 0.3767383 0.5654443 -0.4244723 0.3767383 0.5654443 -0.4365675 0.3767383 0.5654443 -0.4474232 0.3767383 0.5654443 -0.45727 0.3767383 0.5654443 -0.4662797 0.3767383 0.5654443 -0.4745834 0.3767383 0.5654443 -0.4822838 0.3767383 0.5654443 -0.4894626 0.3767383 0.5654443 -0.4961862 0.3767383 0.5654443 -0.5025087 0.3767383 0.5654443 -0.5084753 0.3767383 0.5654443 -0.514124 0.3767383 0.5654443 -0.519487 0.3767383 0.5654443 -0.5245917 0.3767383 0.5654443 -0.529462 0.3767383 0.5654443 -0.5341183 0.3767383 0.5654443 -0.5385787 0.3767383 0.5654443 -0.5428591 0.3767383 0.5654443 -0.5469733 0.3767383 0.5654443 -0.5509339 0.3767383 0.5654443 -0.5547519 0.3767383 0.5654443 -0.5584371 0.3767383 0.5654443 -0.5619986 0.3767383 0.5654443 -0.5654443 0.3767383 0.5654443 -0.5687816 0.3767383 0.5654443 -0.092819 0.3951413 0.5654443 -0.2262531 0.3951413 0.5654443 -0.2875993 0.3951413 0.5654443 -0.3262122 0.3951413 0.5654443 -0.3544566 0.3951413 0.5654443 -0.3767383 0.3951413 0.5654443 -0.3951413 0.3951413 0.5654443 -0.4108177 0.3951413 0.5654443 -0.4244723 0.3951413 0.5654443 -0.4365675 0.3951413 0.5654443 -0.4474232 0.3951413 0.5654443 -0.45727 0.3951413 0.5654443 -0.4662797 0.3951413 0.5654443 -0.4745834 0.3951413 0.5654443 -0.4822838 0.3951413 0.5654443 -0.4894626 0.3951413 0.5654443 -0.4961862 0.3951413 0.5654443 -0.5025087 0.3951413 0.5654443 -0.5084753 0.3951413 0.5654443 -0.514124 0.3951413 0.5654443 -0.519487 0.3951413 0.5654443 -0.5245917 0.3951413 0.5654443 -0.529462 0.3951413 0.5654443 -0.5341183 0.3951413 0.5654443 -0.5385787 0.3951413 0.5654443 -0.5428591 0.3951413 0.5654443 -0.5469733 0.3951413 0.5654443 -0.5509339 0.3951413 0.5654443 -0.5547519 0.3951413 0.5654443 -0.5584371 0.3951413 0.5654443 -0.5619986 0.3951413 0.5654443 -0.5654443 0.3951413 0.5654443 -0.5687816 0.3951413 0.5654443 -0.092819 0.4108177 0.5654443 -0.2262531 0.4108177 0.5654443 -0.2875993 0.4108177 0.5654443 -0.3262122 0.4108177 0.5654443 -0.3544566 0.4108177 0.5654443 -0.3767383 0.4108177 0.5654443 -0.3951413 0.4108177 0.5654443 -0.4108177 0.4108177 0.5654443 -0.4244723 0.4108177 0.5654443 -0.4365675 0.4108177 0.5654443 -0.4474232 0.4108177 0.5654443 -0.45727 0.4108177 0.5654443 -0.4662797 0.4108177 0.5654443 -0.4745834 0.4108177 0.5654443 -0.4822838 0.4108177 0.5654443 -0.4894626 0.4108177 0.5654443 -0.4961862 0.4108177 0.5654443 -0.5025087 0.4108177 0.5654443 -0.5084753 0.4108177 0.5654443 -0.514124 0.4108177 0.5654443 -0.519487 0.4108177 0.5654443 -0.5245917 0.4108177 0.5654443 -0.529462 0.4108177 0.5654443 -0.5341183 0.4108177 0.5654443 -0.5385787 0.4108177 0.5654443 -0.5428591 0.4108177 0.5654443 -0.5469733 0.4108177 0.5654443 -0.5509339 0.4108177 0.5654443 -0.5547519 0.4108177 0.5654443 -0.5584371 0.4108177 0.5654443 -0.5619986 0.4108177 0.5654443 -0.5654443 0.4108177 0.5654443 -0.5687816 0.4108177 0.5654443 -0.092819 0.4244723 0.5654443 -0.2262531 0.4244723 0.5654443 -0.2875993 0.4244723 0.5654443 -0.3262122 0.4244723 0.5654443 -0.3544566 0.4244723 0.5654443 -0.3767383 0.4244723 0.5654443 -0.3951413 0.4244723 0.5654443 -0.4108177 0.4244723 0.5654443 -0.4244723 0.4244723 0.5654443 -0.4365675 0.4244723 0.5654443 -0.4474232 0.4244723 0.5654443 -0.45727 0.4244723 0.5654443 -0.4662797 0.4244723 0.5654443 -0.4745834 0.4244723 0.5654443 -0.4822838 0.4244723 0.5654443 -0.4894626 0.4244723 0.5654443 -0.4961862 0.4244723 0.5654443 -0.5025087 0.4244723 0.5654443 -0.5084753 0.4244723 0.5654443 -0.514124 0.4244723 0.5654443 -0.519487 0.4244723 0.5654443 -0.5245917 0.4244723 0.5654443 -0.529462 0.4244723 0.5654443 -0.5341183 0.4244723 0.5654443 -0.5385787 0.4244723 0.5654443 -0.5428591 0.4244723 0.5654443 -0.5469733 0.4244723 0.5654443 -0.5509339 0.4244723 0.5654443 -0.5547519 0.4244723 0.5654443 -0.5584371 0.4244723 0.5654443 -0.5619986 0.4244723 0.5654443 -0.5654443 0.4244723 0.5654443 -0.5687816 0.4244723 0.5654443 -0.092819 0.4365675 0.5654443 -0.2262531 0.4365675 0.5654443 -0.2875993 0.4365675 0.5654443 -0.3262122 0.4365675 0.5654443 -0.3544566 0.4365675 0.5654443 -0.3767383 0.4365675 0.5654443 -0.3951413 0.4365675 0.5654443 -0.4108177 0.4365675 0.5654443 -0.4244723 0.4365675 0.5654443 -0.4365675 0.4365675 0.5654443 -0.4474232 0.4365675 0.5654443 -0.45727 0.4365675 0.5654443 -0.4662797 0.4365675 0.5654443 -0.4745834 0.4365675 0.5654443 -0.4822838 0.4365675 0.5654443 -0.4894626 0.4365675 0.5654443 -0.4961862 0.4365675 0.5654443 -0.5025087 0.4365675 0.5654443 -0.5084753 0.4365675 0.5654443 -0.514124 0.4365675 0.5654443 -0.519487 0.4365675 0.5654443 -0.5245917 0.4365675 0.5654443 -0.529462 0.4365675 0.5654443 -0.5341183 0.4365675 0.5654443 -0.5385787 0.4365675 0.5654443 -0.5428591 0.4365675 0.5654443 -0.5469733 0.4365675 0.5654443 -0.5509339 0.4365675 0.5654443 -0.5547519 0.4365675 0.5654443 -0.5584371 0.4365675 0.5654443 -0.5619986 0.4365675 0.5654443 -0.5654443 0.4365675 0.5654443 -0.5687816 0.4365675 0.5654443 -0.092819 0.4474232 0.5654443 -0.2262531 0.4474232 0.5654443 -0.2875993 0.4474232 0.5654443 -0.3262122 0.4474232 0.5654443 -0.3544566 0.4474232 0.5654443 -0.3767383 0.4474232 0.5654443 -0.3951413 0.4474232 0.5654443 -0.4108177 0.4474232 0.5654443 -0.4244723 0.4474232 0.5654443 -0.4365675 0.4474232 0.5654443 -0.4474232 0.4474232 0.5654443 -0.45727 0.4474232 0.5654443 -0.4662797 0.4474232 0.5654443 -0.4745834 0.4474232 0.5654443 -0.4822838 0.4474232 0.5654443 -0.4894626 0.4474232 0.5654443 -0.4961862 0.4474232 0.5654443 -0.5025087 0.4474232 0.5654443 -0.5084753 0.4474232 0.5654443 -0.514124 0.4474232 0.5654443 -0.519487 0.4474232 0.5654443 -0.5245917 0.4474232 0.5654443 -0.529462 0.4474232 0.5654443 -0.5341183 0.4474232 0.5654443 -0.5385787 0.4474232 0.5654443 -0.5428591 0.4474232 0.5654443 -0.5469733 0.4474232 0.5654443 -0.5509339 0.4474232 0.5654443 -0.5547519 0.4474232 0.5654443 -0.5584371 0.4474232 0.5654443 -0.5619986 0.4474232 0.5654443 -0.5654443 0.4474232 0.5654443 -0.5687816 0.4474232 0.5654443 -0.092819 0.45727 0.5654443 -0.2262531 0.45727 0.5654443 -0.2875993 0.45727 0.5654443 -0.3262122 0.45727 0.5654443 -0.3544566 0.45727 0.5654443 -0.3767383 0.45727 0.5654443 -0.3951413 0.45727 0.5654443 -0.4108177 0.45727 0.5654443 -0.4244723 0.45727 0.5654443 -0.4365675 0.45727 0.5654443 -0.4474232 0.45727 0.5654443 -0.45727 0.45727 0.5654443 -0.4662797 0.45727 0.5654443 -0.4745834 0.45727 0.5654443 -0.4822838 0.45727 0.5654443 -0.4894626 0.45727 0.5654443 -0.4961862 0.45727 0.5654443 -0.5025087 0.45727 0.5654443 -0.5084753 0.45727 0.5654443 -0.514124 0.45727 0.5654443 -0.519487 0.45727 0.5654443 -0.5245917 0.45727 0.5654443 -0.529462 0.45727 0.5654443 -0.5341183 0.45727 0.5654443 -0.5385787 0.45727 0.5654443 -0.5428591 0.45727 0.5654443 -0.5469733 0.45727 0.5654443 -0.5509339 0.45727 0.5654443 -0.5547519 0.45727 0.5654443 -0.5584371 0.45727 0.5654443 -0.5619986 0.45727 0.5654443 -0.5654443 0.45727 0.5654443 -0.5687816 0.45727 0.5654443 -0.092819 0.4662797 0.5654443 -0.2262531 0.4662797 0.5654443 -0.2875993 0.4662797 0.5654443 -0.3262122 0.4662797 0.5654443 -0.3544566 0.4662797 0.5654443 -0.3767383 0.4662797 0.5654443 -0.3951413 0.4662797 0.5654443 -0.4108177 0.4662797 0.5654443 -0.4244723 0.4662797 0.5654443 -0.4365675 0.4662797 0.5654443 -0.4474232 0.4662797 0.5654443 -0.45727 0.4662797 0.5654443 -0.4662797 0.4662797 0.5654443 -0.4745834 0.4662797 0.5654443 -0.4822838 0.4662797 0.5654443 -0.4894626 0.4662797 0.5654443 -0.4961862 0.4662797 0.5654443 -0.5025087 0.4662797 0.5654443 -0.5084753 0.4662797 0.5654443 -0.514124 0.4662797 0.5654443 -0.519487 0.4662797 0.5654443 -0.5245917 0.4662797 0.5654443 -0.529462 0.4662797 0.5654443 -0.5341183 0.4662797 0.5654443 -0.5385787 0.4662797 0.5654443 -0.5428591 0.4662797 0.5654443 -0.5469733 0.4662797 0.5654443 -0.5509339 0.4662797 0.5654443 -0.5547519 0.4662797 0.5654443 -0.5584371 0.4662797 0.5654443 -0.5619986 0.4662797 0.5654443 -0.5654443 0.4662797 0.5654443 -0.5687816 0.4662797 0.5654443 -0.092819 0.4745834 0.5654443 -0.2262531 0.4745834 0.5654443 -0.2875993 0.4745834 0.5654443 -0.3262122 0.4745834 0.5654443 -0.3544566 0.4745834 0.5654443 -0.3767383 0.4745834 0.5654443 -0.3951413 0.4745834 0.5654443 -0.4108177 0.4745834 0.5654443 -0.4244723 0.4745834 0.5654443 -0.4365675 0.4745834 0.5654443 -0.4474232 0.4745834 0.5654443 -0.45727 0.4745834 0.5654443 -0.4662797 0.4745834 0.5654443 -0.4745834 0.4745834 0.5654443 -0.4822838 0.4745834 0.5654443 -0.4894626 0.4745834 0.5654443 -0.4961862 0.4745834 0.5654443 -0.5025087 0.4745834 0.5654443 -0.5084753 0.4745834 0.5654443 -0.514124 0.4745834 0.5654443 -0.519487 0.4745834 0.5654443 -0.5245917 0.4745834 0.5654443 -0.529462 0.4745834 0.5654443 -0.5341183 0.4745834 0.5654443 -0.5385787 0.4745834 0.5654443 -0.5428591 0.4745834 0.5654443 -0.5469733 0.4745834 0.5654443 -0.5509339 0.4745834 0.5654443 -0.5547519 0.4745834 0.5654443 -0.5584371 0.4745834 0.5654443 -0.5619986 0.4745834 0.5654443 -0.5654443 0.4745834 0.5654443 -0.5687816 0.4745834 0.5654443 -0.092819 0.4822838 0.5654443 -0.2262531 0.4822838 0.5654443 -0.2875993 0.4822838 0.5654443 -0.3262122 0.4822838 0.5654443 -0.3544566 0.4822838 0.5654443 -0.3767383 0.4822838 0.5654443 -0.3951413 0.4822838 0.5654443 -0.4108177 0.4822838 0.5654443 -0.4244723 0.4822838 0.5654443 -0.4365675 0.4822838 0.5654443 -0.4474232 0.4822838 0.5654443 -0.45727 0.4822838 0.5654443 -0.4662797 0.4822838 0.5654443 -0.4745834 0.4822838 0.5654443 -0.4822838 0.4822838 0.5654443 -0.4894626 0.4822838 0.5654443 -0.4961862 0.4822838 0.5654443 -0.5025087 0.4822838 0.5654443 -0.5084753 0.4822838 0.5654443 -0.514124 0.4822838 0.5654443 -0.519487 0.4822838 0.5654443 -0.5245917 0.4822838 0.5654443 -0.529462 0.4822838 0.5654443 -0.5341183 0.4822838 0.5654443 -0.5385787 0.4822838 0.5654443 -0.5428591 0.4822838 0.5654443 -0.5469733 0.4822838 0.5654443 -0.5509339 0.4822838 0.5654443 -0.5547519 0.4822838 0.5654443 -0.5584371 0.4822838 0.5654443 -0.5619986 0.4822838 0.5654443 -0.5654443 0.4822838 0.5654443 -0.5687816 0.4822838 0.5654443 -0.092819 0.4894626 0.5654443 -0.2262531 0.4894626 0.5654443 -0.2875993 0.4894626 0.5654443 -0.3262122 0.4894626 0.5654443 -0.3544566 0.4894626 0.5654443 -0.3767383 0.4894626 0.5654443 -0.3951413 0.4894626 0.5654443 -0.4108177 0.4894626 0.5654443 -0.4244723 0.4894626 0.5654443 -0.4365675 0.4894626 0.5654443 -0.4474232 0.4894626 0.5654443 -0.45727 0.4894626 0.5654443 -0.4662797 0.4894626 0.5654443 -0.4745834 0.4894626 0.5654443 -0.4822838 0.4894626 0.5654443 -0.4894626 0.4894626 0.5654443 -0.4961862 0.4894626 0.5654443 -0.5025087 0.4894626 0.5654443 -0.5084753 0.4894626 0.5654443 -0.514124 0.4894626 0.5654443 -0.519487 0.4894626 0.5654443 -0.5245917 0.4894626 0.5654443 -0.529462 0.4894626 0.5654443 -0.5341183 0.4894626 0.5654443 -0.5385787 0.4894626 0.5654443 -0.5428591 0.4894626 0.5654443 -0.5469733 0.4894626 0.5654443 -0.5509339 0.4894626 0.5654443 -0.5547519 0.4894626 0.5654443 -0.5584371 0.4894626 0.5654443 -0.5619986 0.4894626 0.5654443 -0.5654443 0.4894626 0.5654443 -0.5687816 0.4894626 0.5654443 -0.092819 0.4961862 0.5654443 -0.2262531 0.4961862 0.5654443 -0.2875993 0.4961862 0.5654443 -0.3262122 0.4961862 0.5654443 -0.3544566 0.4961862 0.5654443 -0.3767383 0.4961862 0.5654443 -0.3951413 0.4961862 0.5654443 -0.4108177 0.4961862 0.5654443 -0.4244723 0.4961862 0.5654443 -0.4365675 0.4961862 0.5654443 -0.4474232 0.4961862 0.5654443 -0.45727 0.4961862 0.5654443 -0.4662797 0.4961862 0.5654443 -0.4745834 0.4961862 0.5654443 -0.4822838 0.4961862 0.5654443 -0.4894626 0.4961862 0.5654443 -0.4961862 0.4961862 0.5654443 -0.5025087 0.4961862 0.5654443 -0.5084753 0.4961862 0.5654443 -0.514124 0.4961862 0.5654443 -0.519487 0.4961862 0.5654443 -0.5245917 0.4961862 0.5654443 -0.529462 0.4961862 0.5654443 -0.5341183 0.4961862 0.5654443 -0.5385787 0.4961862 0.5654443 -0.5428591 0.4961862 0.5654443 -0.5469733 0.4961862 0.5654443 -0.5509339 0.4961862 0.5654443 -0.5547519 0.4961862 0.5654443 -0.5584371 0.4961862 0.5654443 -0.5619986 0.4961862 0.5654443 -0.5654443 0.4961862 0.5654443 -0.5687816 0.4961862 0.5654443 -0.092819 0.5025087 0.5654443 -0.2262531 0.5025087 0.5654443 -0.2875993 0.5025087 0.5654443 -0.3262122 0.5025087 0.5654443 -0.3544566 0.5025087 0.5654443 -0.3767383 0.5025087 0.5654443 -0.3951413 0.5025087 0.5654443 -0.4108177 0.5025087 0.5654443 -0.4244723 0.5025087 0.5654443 -0.4365675 0.5025087 0.5654443 -0.4474232 0.5025087 0.5654443 -0.45727 0.5025087 0.5654443 -0.4662797 0.5025087 0.5654443 -0.4745834 0.5025087 0.5654443 -0.4822838 0.5025087 0.5654443 -0.4894626 0.5025087 0.5654443 -0.4961862 0.5025087 0.5654443 -0.5025087 0.5025087 0.5654443 -0.5084753 0.5025087 0.5654443 -0.514124 0.5025087 0.5654443 -0.519487 0.5025087 0.5654443 -0.5245917 0.5025087 0.5654443 -0.529462 0.5025087 0.5654443 -0.5341183 0.5025087 0.5654443 -0.5385787 0.5025087 0.5654443 -0.5428591 0.5025087 0.5654443 -0.5469733 0.5025087 0.5654443 -0.5509339 0.5025087 0.5654443 -0.5547519 0.5025087 0.5654443 -0.5584371 0.5025087 0.5654443 -0.5619986 0.5025087 0.5654443 -0.5654443 0.5025087 0.5654443 -0.5687816 0.5025087 0.5654443 -0.092819 0.5084753 0.5654443 -0.2262531 0.5084753 0.5654443 -0.2875993 0.5084753 0.5654443 -0.3262122 0.5084753 0.5654443 -0.3544566 0.5084753 0.5654443 -0.3767383 0.5084753 0.5654443 -0.3951413 0.5084753 0.5654443 -0.4108177 0.5084753 0.5654443 -0.4244723 0.5084753 0.5654443 -0.4365675 0.5084753 0.5654443 -0.4474232 0.5084753 0.5654443 -0.45727 0.5084753 0.5654443 -0.4662797 0.5084753 0.5654443 -0.4745834 0.5084753 0.5654443 -0.4822838 0.5084753 0.5654443 -0.4894626 0.5084753 0.5654443 -0.4961862 0.5084753 0.5654443 -0.5025087 0.5084753 0.5654443 -0.5084753 0.5084753 0.5654443 -0.514124 0.5084753 0.5654443 -0.519487 0.5084753 0.5654443 -0.5245917 0.5084753 0.5654443 -0.529462 0.5084753 0.5654443 -0.5341183 0.5084753 0.5654443 -0.5385787 0.5084753 0.5654443 -0.5428591 0.5084753 0.5654443 -0.5469733 0.5084753 0.5654443 -0.5509339 0.5084753 0.5654443 -0.5547519 0.5084753 0.5654443 -0.5584371 0.5084753 0.5654443 -0.5619986 0.5084753 0.5654443 -0.5654443 0.5084753 0.5654443 -0.5687816 0.5084753 0.5654443 -0.092819 0.514124 0.5654443 -0.2262531 0.514124 0.5654443 -0.2875993 0.514124 0.5654443 -0.3262122 0.514124 0.5654443 -0.3544566 0.514124 0.5654443 -0.3767383 0.514124 0.5654443 -0.3951413 0.514124 0.5654443 -0.4108177 0.514124 0.5654443 -0.4244723 0.514124 0.5654443 -0.4365675 0.514124 0.5654443 -0.4474232 0.514124 0.5654443 -0.45727 0.514124 0.5654443 -0.4662797 0.514124 0.5654443 -0.4745834 0.514124 0.5654443 -0.4822838 0.514124 0.5654443 -0.4894626 0.514124 0.5654443 -0.4961862 0.514124 0.5654443 -0.5025087 0.514124 0.5654443 -0.5084753 0.514124 0.5654443 -0.514124 0.514124 0.5654443 -0.519487 0.514124 0.5654443 -0.5245917 0.514124 0.5654443 -0.529462 0.514124 0.5654443 -0.5341183 0.514124 0.5654443 -0.5385787 0.514124 0.5654443 -0.5428591 0.514124 0.5654443 -0.5469733 0.514124 0.5654443 -0.5509339 0.514124 0.5654443 -0.5547519 0.514124 0.5654443 -0.5584371 0.514124 0.5654443 -0.5619986 0.514124 0.5654443 -0.5654443 0.514124 0.5654443 -0.5687816 0.514124 0.5654443 -0.092819 0.519487 0.5654443 -0.2262531 0.519487 0.5654443 -0.2875993 0.519487 0.5654443 -0.3262122 0.519487 0.5654443 -0.3544566 0.519487 0.5654443 -0.3767383 0.519487 0.5654443 -0.3951413 0.519487 0.5654443 -0.4108177 0.519487 0.5654443 -0.4244723 0.519487 0.5654443 -0.4365675 0.519487 0.5654443 -0.4474232 0.519487 0.5654443 -0.45727 0.519487 0.5654443 -0.4662797 0.519487 0.5654443 -0.4745834 0.519487 0.5654443 -0.4822838 0.519487 0.5654443 -0.4894626 0.519487 0.5654443 -0.4961862 0.519487 0.5654443 -0.5025087 0.519487 0.5654443 -0.5084753 0.519487 0.5654443 -0.514124 0.519487 0.5654443 -0.519487 0.519487 0.5654443 -0.5245917 0.519487 0.5654443 -0.529462 0.519487 0.5654443 -0.5341183 0.519487 0.5654443 -0.5385787 0.519487 0.5654443 -0.5428591 0.519487 0.5654443 -0.5469733 0.519487 0.5654443 -0.5509339 0.519487 0.5654443 -0.5547519 0.519487 0.5654443 -0.5584371 0.519487 0.5654443 -0.5619986 0.519487 0.5654443 -0.5654443 0.519487 0.5654443 -0.5687816 0.519487 0.5654443 -0.092819 0.5245917 0.5654443 -0.2262531 0.5245917 0.5654443 -0.2875993 0.5245917 0.5654443 -0.3262122 0.5245917 0.5654443 -0.3544566 0.5245917 0.5654443 -0.3767383 0.5245917 0.5654443 -0.3951413 0.5245917 0.5654443 -0.4108177 0.5245917 0.5654443 -0.4244723 0.5245917 0.5654443 -0.4365675 0.5245917 0.5654443 -0.4474232 0.5245917 0.5654443 -0.45727 0.5245917 0.5654443 -0.4662797 0.5245917 0.5654443 -0.4745834 0.5245917 0.5654443 -0.4822838 0.5245917 0.5654443 -0.4894626 0.5245917 0.5654443 -0.4961862 0.5245917 0.5654443 -0.5025087 0.5245917 0.5654443 -0.5084753 0.5245917 0.5654443 -0.514124 0.5245917 0.5654443 -0.519487 0.5245917 0.5654443 -0.5245917 0.5245917 0.5654443 -0.529462 0.5245917 0.5654443 -0.5341183 0.5245917 0.5654443 -0.5385787 0.5245917 0.5654443 -0.5428591 0.5245917 0.5654443 -0.5469733 0.5245917 0.5654443 -0.5509339 0.5245917 0.5654443 -0.5547519 0.5245917 0.5654443 -0.5584371 0.5245917 0.5654443 -0.5619986 0.5245917 0.5654443 -0.5654443 0.5245917 0.5654443 -0.5687816 0.5245917 0.5654443 -0.092819 0.529462 0.5654443 -0.2262531 0.529462 0.5654443 -0.2875993 0.529462 0.5654443 -0.3262122 0.529462 0.5654443 -0.3544566 0.529462 0.5654443 -0.3767383 0.529462 0.5654443 -0.3951413 0.529462 0.5654443 -0.4108177 0.529462 0.5654443 -0.4244723 0.529462 0.5654443 -0.4365675 0.529462 0.5654443 -0.4474232 0.529462 0.5654443 -0.45727 0.529462 0.5654443 -0.4662797 0.529462 0.5654443 -0.4745834 0.529462 0.5654443 -0.4822838 0.529462 0.5654443 -0.4894626 0.529462 0.5654443 -0.4961862 0.529462 0.5654443 -0.5025087 0.529462 0.5654443 -0.5084753 0.529462 0.5654443 -0.514124 0.529462 0.5654443 -0.519487 0.529462 0.5654443 -0.5245917 0.529462 0.5654443 -0.529462 0.529462 0.5654443 -0.5341183 0.529462 0.5654443 -0.5385787 0.529462 0.5654443 -0.5428591 0.529462 0.5654443 -0.5469733 0.529462 0.5654443 -0.5509339 0.529462 0.5654443 -0.5547519 0.529462 0.5654443 -0.5584371 0.529462 0.5654443 -0.5619986 0.529462 0.5654443 -0.5654443 0.529462 0.5654443 -0.5687816 0.529462 0.5654443 -0.092819 0.5341183 0.5654443 -0.2262531 0.5341183 0.5654443 -0.2875993 0.5341183 0.5654443 -0.3262122 0.5341183 0.5654443 -0.3544566 0.5341183 0.5654443 -0.3767383 0.5341183 0.5654443 -0.3951413 0.5341183 0.5654443 -0.4108177 0.5341183 0.5654443 -0.4244723 0.5341183 0.5654443 -0.4365675 0.5341183 0.5654443 -0.4474232 0.5341183 0.5654443 -0.45727 0.5341183 0.5654443 -0.4662797 0.5341183 0.5654443 -0.4745834 0.5341183 0.5654443 -0.4822838 0.5341183 0.5654443 -0.4894626 0.5341183 0.5654443 -0.4961862 0.5341183 0.5654443 -0.5025087 0.5341183 0.5654443 -0.5084753 0.5341183 0.5654443 -0.514124 0.5341183 0.5654443 -0.519487 0.5341183 0.5654443 -0.5245917 0.5341183 0.5654443 -0.529462 0.5341183 0.5654443 -0.5341183 0.5341183 0.5654443 -0.5385787 0.5341183 0.5654443 -0.5428591 0.5341183 0.5654443 -0.5469733 0.5341183 0.5654443 -0.5509339 0.5341183 0.5654443 -0.5547519 0.5341183 0.5654443 -0.5584371 0.5341183 0.5654443 -0.5619986 0.5341183 0.5654443 -0.5654443 0.5341183 0.5654443 -0.5687816 0.5341183 0.5654443 -0.092819 0.5385787 0.5654443 -0.2262531 0.5385787 0.5654443 -0.2875993 0.5385787 0.5654443 -0.3262122 0.5385787 0.5654443 -0.3544566 0.5385787 0.5654443 -0.3767383 0.5385787 0.5654443 -0.3951413 0.5385787 0.5654443 -0.4108177 0.5385787 0.5654443 -0.4244723 0.5385787 0.5654443 -0.4365675 0.5385787 0.5654443 -0.4474232 0.5385787 0.5654443 -0.45727 0.5385787 0.5654443 -0.4662797 0.5385787 0.5654443 -0.4745834 0.5385787 0.5654443 -0.4822838 0.5385787 0.5654443 -0.4894626 0.5385787 0.5654443 -0.4961862 0.5385787 0.5654443 -0.5025087 0.5385787 0.5654443 -0.5084753 0.5385787 0.5654443 -0.514124 0.5385787 0.5654443 -0.519487 0.5385787 0.5654443 -0.5245917 0.5385787 0.5654443 -0.529462 0.5385787 0.5654443 -0.5341183 0.5385787 0.5654443 -0.5385787 0.5385787 0.5654443 -0.5428591 0.5385787 0.5654443 -0.5469733 0.5385787 0.5654443 -0.5509339 0.5385787 0.5654443 -0.5547519 0.5385787 0.5654443 -0.5584371 0.5385787 0.5654443 -0.5619986 0.5385787 0.5654443 -0.5654443 0.5385787 0.5654443 -0.5687816 0.5385787 0.5654443 -0.092819 0.5428591 0.5654443 -0.2262531 0.5428591 0.5654443 -0.2875993 0.5428591 0.5654443 -0.3262122 0.5428591 0.5654443 -0.3544566 0.5428591 0.5654443 -0.3767383 0.5428591 0.5654443 -0.3951413 0.5428591 0.5654443 -0.4108177 0.5428591 0.5654443 -0.4244723 0.5428591 0.5654443 -0.4365675 0.5428591 0.5654443 -0.4474232 0.5428591 0.5654443 -0.45727 0.5428591 0.5654443 -0.4662797 0.5428591 0.5654443 -0.4745834 0.5428591 0.5654443 -0.4822838 0.5428591 0.5654443 -0.4894626 0.5428591 0.5654443 -0.4961862 0.5428591 0.5654443 -0.5025087 0.5428591 0.5654443 -0.5084753 0.5428591 0.5654443 -0.514124 0.5428591 0.5654443 -0.519487 0.5428591 0.5654443 -0.5245917 0.5428591 0.5654443 -0.529462 0.5428591 0.5654443 -0.5341183 0.5428591 0.5654443 -0.5385787 0.5428591 0.5654443 -0.5428591 0.5428591 0.5654443 -0.5469733 0.5428591 0.5654443 -0.5509339 0.5428591 0.5654443 -0.5547519 0.5428591 0.5654443 -0.5584371 0.5428591 0.5654443 -0.5619986 0.5428591 0.5654443 -0.5654443 0.5428591 0.5654443 -0.5687816 0.5428591 0.5654443 -0.092819 0.5469733 0.5654443 -0.2262531 0.5469733 0.5654443 -0.2875993 0.5469733 0.5654443 -0.3262122 0.5469733 0.5654443 -0.3544566 0.5469733 0.5654443 -0.3767383 0.5469733 0.5654443 -0.3951413 0.5469733 0.5654443 -0.4108177 0.5469733 0.5654443 -0.4244723 0.5469733 0.5654443 -0.4365675 0.5469733 0.5654443 -0.4474232 0.5469733 0.5654443 -0.45727 0.5469733 0.5654443 -0.4662797 0.5469733 0.5654443 -0.4745834 0.5469733 0.5654443 -0.4822838 0.5469733 0.5654443 -0.4894626 0.5469733 0.5654443 -0.4961862 0.5469733 0.5654443 -0.5025087 0.5469733 0.5654443 -0.5084753 0.5469733 0.5654443 -0.514124 0.5469733 0.5654443 -0.519487 0.5469733 0.5654443 -0.5245917 0.5469733 0.5654443 -0.529462 0.5469733 0.5654443 -0.5341183 0.5469733 0.5654443 -0.5385787 0.5469733 0.5654443 -0.5428591 0.5469733 0.5654443 -0.5469733 0.5469733 0.5654443 -0.5509339 0.5469733 0.5654443 -0.5547519 0.5469733 0.5654443 -0.5584371 0.5469733 0.5654443 -0.5619986 0.5469733 0.5654443 -0.5654443 0.5469733 0.5654443 -0.5687816 0.5469733 0.5654443 -0.092819 0.5509339 0.5654443 -0.2262531 0.5509339 0.5654443 -0.2875993 0.5509339 0.5654443 -0.3262122 0.5509339 0.5654443 -0.3544566 0.5509339 0.5654443 -0.3767383 0.5509339 0.5654443 -0.3951413 0.5509339 0.5654443 -0.4108177 0.5509339 0.5654443 -0.4244723 0.5509339 0.5654443 -0.4365675 0.5509339 0.5654443 -0.4474232 0.5509339 0.5654443 -0.45727 0.5509339 0.5654443 -0.4662797 0.5509339 0.5654443 -0.4745834 0.5509339 0.5654443 -0.4822838 0.5509339 0.5654443 -0.4894626 0.5509339 0.5654443 -0.4961862 0.5509339 0.5654443 -0.5025087 0.5509339 0.5654443 -0.5084753 0.5509339 0.5654443 -0.514124 0.5509339 0.5654443 -0.519487 0.5509339 0.5654443 -0.5245917 0.5509339 0.5654443 -0.529462 0.5509339 0.5654443 -0.5341183 0.5509339 0.5654443 -0.5385787 0.5509339 0.5654443 -0.5428591 0.5509339 0.5654443 -0.5469733 0.5509339 0.5654443 -0.5509339 0.5509339 0.5654443 -0.5547519 0.5509339 0.5654443 -0.5584371 0.5509339 0.5654443 -0.5619986 0.5509339 0.5654443 -0.5654443 0.5509339 0.5654443 -0.5687816 0.5509339 0.5654443 -0.092819 0.5547519 0.5654443 -0.2262531 0.5547519 0.5654443 -0.2875993 0.5547519 0.5654443 -0.3262122 0.5547519 0.5654443 -0.3544566 0.5547519 0.5654443 -0.3767383 0.5547519 0.5654443 -0.3951413 0.5547519 0.5654443 -0.4108177 0.5547519 0.5654443 -0.4244723 0.5547519 0.5654443 -0.4365675 0.5547519 0.5654443 -0.4474232 0.5547519 0.5654443 -0.45727 0.5547519 0.5654443 -0.4662797 0.5547519 0.5654443 -0.4745834 0.5547519 0.5654443 -0.4822838 0.5547519 0.5654443 -0.4894626 0.5547519 0.5654443 -0.4961862 0.5547519 0.5654443 -0.5025087 0.5547519 0.5654443 -0.5084753 0.5547519 0.5654443 -0.514124 0.5547519 0.5654443 -0.519487 0.5547519 0.5654443 -0.5245917 0.5547519 0.5654443 -0.529462 0.5547519 0.5654443 -0.5341183 0.5547519 0.5654443 -0.5385787 0.5547519 0.5654443 -0.5428591 0.5547519 0.5654443 -0.5469733 0.5547519 0.5654443 -0.5509339 0.5547519 0.5654443 -0.5547519 0.5547519 0.5654443 -0.5584371 0.5547519 0.5654443 -0.5619986 0.5547519 0.5654443 -0.5654443 0.5547519 0.5654443 -0.5687816 0.5547519 0.5654443 -0.092819 0.5584371 0.5654443 -0.2262531 0.5584371 0.5654443 -0.2875993 0.5584371 0.5654443 -0.3262122 0.5584371 0.5654443 -0.3544566 0.5584371 0.5654443 -0.3767383 0.5584371 0.5654443 -0.3951413 0.5584371 0.5654443 -0.4108177 0.5584371 0.5654443 -0.4244723 0.5584371 0.5654443 -0.4365675 0.5584371 0.5654443 -0.4474232 0.5584371 0.5654443 -0.45727 0.5584371 0.5654443 -0.4662797 0.5584371 0.5654443 -0.4745834 0.5584371 0.5654443 -0.4822838 0.5584371 0.5654443 -0.4894626 0.5584371 0.5654443 -0.4961862 0.5584371 0.5654443 -0.5025087 0.5584371 0.5654443 -0.5084753 0.5584371 0.5654443 -0.514124 0.5584371 0.5654443 -0.519487 0.5584371 0.5654443 -0.5245917 0.5584371 0.5654443 -0.529462 0.5584371 0.5654443 -0.5341183 0.5584371 0.5654443 -0.5385787 0.5584371 0.5654443 -0.5428591 0.5584371 0.5654443 -0.5469733 0.5584371 0.5654443 -0.5509339 0.5584371 0.5654443 -0.5547519 0.5584371 0.5654443 -0.5584371 0.5584371 0.5654443 -0.5619986 0.5584371 0.5654443 -0.5654443 0.5584371 0.5654443 -0.5687816 0.5584371 0.5654443 -0.092819 0.5619986 0.5654443 -0.2262531 0.5619986 0.5654443 -0.2875993 0.5619986 0.5654443 -0.3262122 0.5619986 0.5654443 -0.3544566 0.5619986 0.5654443 -0.3767383 0.5619986 0.5654443 -0.3951413 0.5619986 0.5654443 -0.4108177 0.5619986 0.5654443 -0.4244723 0.5619986 0.5654443 -0.4365675 0.5619986 0.5654443 -0.4474232 0.5619986 0.5654443 -0.45727 0.5619986 0.5654443 -0.4662797 0.5619986 0.5654443 -0.4745834 0.5619986 0.5654443 -0.4822838 0.5619986 0.5654443 -0.4894626 0.5619986 0.5654443 -0.4961862 0.5619986 0.5654443 -0.5025087 0.5619986 0.5654443 -0.5084753 0.5619986 0.5654443 -0.514124 0.5619986 0.5654443 -0.519487 0.5619986 0.5654443 -0.5245917 0.5619986 0.5654443 -0.529462 0.5619986 0.5654443 -0.5341183 0.5619986 0.5654443 -0.5385787 0.5619986 0.5654443 -0.5428591 0.5619986 0.5654443 -0.5469733 0.5619986 0.5654443 -0.5509339 0.5619986 0.5654443 -0.5547519 0.5619986 0.5654443 -0.5584371 0.5619986 0.5654443 -0.5619986 0.5619986 0.5654443 -0.5654443 0.5619986 0.5654443 -0.5687816 0.5619986 0.5654443 -0.092819 0.5654443 0.5654443 -0.2262531 0.5654443 0.5654443 -0.2875993 0.5654443 0.5654443 -0.3262122 0.5654443 0.5654443 -0.3544566 0.5654443 0.5654443 -0.3767383 0.5654443 0.5654443 -0.3951413 0.5654443 0.5654443 -0.4108177 0.5654443 0.5654443 -0.4244723 0.5654443 0.5654443 -0.4365675 0.5654443 0.5654443 -0.4474232 0.5654443 0.5654443 -0.45727 0.5654443 0.5654443 -0.4662797 0.5654443 0.5654443 -0.4745834 0.5654443 0.5654443 -0.4822838 0.5654443 0.5654443 -0.4894626 0.5654443 0.5654443 -0.4961862 0.5654443 0.5654443 -0.5025087 0.5654443 0.5654443 -0.5084753 0.5654443 0.5654443 -0.514124 0.5654443 0.5654443 -0.519487 0.5654443 0.5654443 -0.5245917 0.5654443 0.5654443 -0.529462 0.5654443 0.5654443 -0.5341183 0.5654443 0.5654443 -0.5385787 0.5654443 0.5654443 -0.5428591 0.5654443 0.5654443 -0.5469733 0.5654443 0.5654443 -0.5509339 0.5654443 0.5654443 -0.5547519 0.5654443 0.5654443 -0.5584371 0.5654443 0.5654443 -0.5619986 0.5654443 0.5654443 -0.5654443 0.5654443 0.5654443 -0.5687816 0.5654443 0.5654443 -0.092819 0.5687816 0.5654443 -0.2262531 0.5687816 0.5654443 -0.2875993 0.5687816 0.5654443 -0.3262122 0.5687816 0.5654443 -0.3544566 0.5687816 0.5654443 -0.3767383 0.5687816 0.5654443 -0.3951413 0.5687816 0.5654443 -0.4108177 0.5687816 0.5654443 -0.4244723 0.5687816 0.5654443 -0.4365675 0.5687816 0.5654443 -0.4474232 0.5687816 0.5654443 -0.45727 0.5687816 0.5654443 -0.4662797 0.5687816 0.5654443 -0.4745834 0.5687816 0.5654443 -0.4822838 0.5687816 0.5654443 -0.4894626 0.5687816 0.5654443 -0.4961862 0.5687816 0.5654443 -0.5025087 0.5687816 0.5654443 -0.5084753 0.5687816 0.5654443 -0.514124 0.5687816 0.5654443 -0.519487 0.5687816 0.5654443 -0.5245917 0.5687816 0.5654443 -0.529462 0.5687816 0.5654443 -0.5341183 0.5687816 0.5654443 -0.5385787 0.5687816 0.5654443 -0.5428591 0.5687816 0.5654443 -0.5469733 0.5687816 0.5654443 -0.5509339 0.5687816 0.5654443 -0.5547519 0.5687816 0.5654443 -0.5584371 0.5687816 0.5654443 -0.5619986 0.5687816 0.5654443 -0.5654443 0.5687816 0.5654443 -0.5687816 0.5687816 0.5654443 -0.092819 0.092819 0.5687816 -0.2262531 0.092819 0.5687816 -0.2875993 0.092819 0.5687816 -0.3262122 0.092819 0.5687816 -0.3544566 0.092819 0.5687816 -0.3767383 0.092819 0.5687816 -0.3951413 0.092819 0.5687816 -0.4108177 0.092819 0.5687816 -0.4244723 0.092819 0.5687816 -0.4365675 0.092819 0.5687816 -0.4474232 0.092819 0.5687816 -0.45727 0.092819 0.5687816 -0.4662797 0.092819 0.5687816 -0.4745834 0.092819 0.5687816 -0.4822838 0.092819 0.5687816 -0.4894626 0.092819 0.5687816 -0.4961862 0.092819 0.5687816 -0.5025087 0.092819 0.5687816 -0.5084753 0.092819 0.5687816 -0.514124 0.092819 0.5687816 -0.519487 0.092819 0.5687816 -0.5245917 0.092819 0.5687816 -0.529462 0.092819 0.5687816 -0.5341183 0.092819 0.5687816 -0.5385787 0.092819 0.5687816 -0.5428591 0.092819 0.5687816 -0.5469733 0.092819 0.5687816 -0.5509339 0.092819 0.5687816 -0.5547519 0.092819 0.5687816 -0.5584371 0.092819 0.5687816 -0.5619986 0.092819 0.5687816 -0.5654443 0.092819 0.5687816 -0.5687816 0.092819 0.5687816 -0.092819 0.2262531 0.5687816 -0.2262531 0.2262531 0.5687816 -0.2875993 0.2262531 0.5687816 -0.3262122 0.2262531 0.5687816 -0.3544566 0.2262531 0.5687816 -0.3767383 0.2262531 0.5687816 -0.3951413 0.2262531 0.5687816 -0.4108177 0.2262531 0.5687816 -0.4244723 0.2262531 0.5687816 -0.4365675 0.2262531 0.5687816 -0.4474232 0.2262531 0.5687816 -0.45727 0.2262531 0.5687816 -0.4662797 0.2262531 0.5687816 -0.4745834 0.2262531 0.5687816 -0.4822838 0.2262531 0.5687816 -0.4894626 0.2262531 0.5687816 -0.4961862 0.2262531 0.5687816 -0.5025087 0.2262531 0.5687816 -0.5084753 0.2262531 0.5687816 -0.514124 0.2262531 0.5687816 -0.519487 0.2262531 0.5687816 -0.5245917 0.2262531 0.5687816 -0.529462 0.2262531 0.5687816 -0.5341183 0.2262531 0.5687816 -0.5385787 0.2262531 0.5687816 -0.5428591 0.2262531 0.5687816 -0.5469733 0.2262531 0.5687816 -0.5509339 0.2262531 0.5687816 -0.5547519 0.2262531 0.5687816 -0.5584371 0.2262531 0.5687816 -0.5619986 0.2262531 0.5687816 -0.5654443 0.2262531 0.5687816 -0.5687816 0.2262531 0.5687816 -0.092819 0.2875993 0.5687816 -0.2262531 0.2875993 0.5687816 -0.2875993 0.2875993 0.5687816 -0.3262122 0.2875993 0.5687816 -0.3544566 0.2875993 0.5687816 -0.3767383 0.2875993 0.5687816 -0.3951413 0.2875993 0.5687816 -0.4108177 0.2875993 0.5687816 -0.4244723 0.2875993 0.5687816 -0.4365675 0.2875993 0.5687816 -0.4474232 0.2875993 0.5687816 -0.45727 0.2875993 0.5687816 -0.4662797 0.2875993 0.5687816 -0.4745834 0.2875993 0.5687816 -0.4822838 0.2875993 0.5687816 -0.4894626 0.2875993 0.5687816 -0.4961862 0.2875993 0.5687816 -0.5025087 0.2875993 0.5687816 -0.5084753 0.2875993 0.5687816 -0.514124 0.2875993 0.5687816 -0.519487 0.2875993 0.5687816 -0.5245917 0.2875993 0.5687816 -0.529462 0.2875993 0.5687816 -0.5341183 0.2875993 0.5687816 -0.5385787 0.2875993 0.5687816 -0.5428591 0.2875993 0.5687816 -0.5469733 0.2875993 0.5687816 -0.5509339 0.2875993 0.5687816 -0.5547519 0.2875993 0.5687816 -0.5584371 0.2875993 0.5687816 -0.5619986 0.2875993 0.5687816 -0.5654443 0.2875993 0.5687816 -0.5687816 0.2875993 0.5687816 -0.092819 0.3262122 0.5687816 -0.2262531 0.3262122 0.5687816 -0.2875993 0.3262122 0.5687816 -0.3262122 0.3262122 0.5687816 -0.3544566 0.3262122 0.5687816 -0.3767383 0.3262122 0.5687816 -0.3951413 0.3262122 0.5687816 -0.4108177 0.3262122 0.5687816 -0.4244723 0.3262122 0.5687816 -0.4365675 0.3262122 0.5687816 -0.4474232 0.3262122 0.5687816 -0.45727 0.3262122 0.5687816 -0.4662797 0.3262122 0.5687816 -0.4745834 0.3262122 0.5687816 -0.4822838 0.3262122 0.5687816 -0.4894626 0.3262122 0.5687816 -0.4961862 0.3262122 0.5687816 -0.5025087 0.3262122 0.5687816 -0.5084753 0.3262122 0.5687816 -0.514124 0.3262122 0.5687816 -0.519487 0.3262122 0.5687816 -0.5245917 0.3262122 0.5687816 -0.529462 0.3262122 0.5687816 -0.5341183 0.3262122 0.5687816 -0.5385787 0.3262122 0.5687816 -0.5428591 0.3262122 0.5687816 -0.5469733 0.3262122 0.5687816 -0.5509339 0.3262122 0.5687816 -0.5547519 0.3262122 0.5687816 -0.5584371 0.3262122 0.5687816 -0.5619986 0.3262122 0.5687816 -0.5654443 0.3262122 0.5687816 -0.5687816 0.3262122 0.5687816 -0.092819 0.3544566 0.5687816 -0.2262531 0.3544566 0.5687816 -0.2875993 0.3544566 0.5687816 -0.3262122 0.3544566 0.5687816 -0.3544566 0.3544566 0.5687816 -0.3767383 0.3544566 0.5687816 -0.3951413 0.3544566 0.5687816 -0.4108177 0.3544566 0.5687816 -0.4244723 0.3544566 0.5687816 -0.4365675 0.3544566 0.5687816 -0.4474232 0.3544566 0.5687816 -0.45727 0.3544566 0.5687816 -0.4662797 0.3544566 0.5687816 -0.4745834 0.3544566 0.5687816 -0.4822838 0.3544566 0.5687816 -0.4894626 0.3544566 0.5687816 -0.4961862 0.3544566 0.5687816 -0.5025087 0.3544566 0.5687816 -0.5084753 0.3544566 0.5687816 -0.514124 0.3544566 0.5687816 -0.519487 0.3544566 0.5687816 -0.5245917 0.3544566 0.5687816 -0.529462 0.3544566 0.5687816 -0.5341183 0.3544566 0.5687816 -0.5385787 0.3544566 0.5687816 -0.5428591 0.3544566 0.5687816 -0.5469733 0.3544566 0.5687816 -0.5509339 0.3544566 0.5687816 -0.5547519 0.3544566 0.5687816 -0.5584371 0.3544566 0.5687816 -0.5619986 0.3544566 0.5687816 -0.5654443 0.3544566 0.5687816 -0.5687816 0.3544566 0.5687816 -0.092819 0.3767383 0.5687816 -0.2262531 0.3767383 0.5687816 -0.2875993 0.3767383 0.5687816 -0.3262122 0.3767383 0.5687816 -0.3544566 0.3767383 0.5687816 -0.3767383 0.3767383 0.5687816 -0.3951413 0.3767383 0.5687816 -0.4108177 0.3767383 0.5687816 -0.4244723 0.3767383 0.5687816 -0.4365675 0.3767383 0.5687816 -0.4474232 0.3767383 0.5687816 -0.45727 0.3767383 0.5687816 -0.4662797 0.3767383 0.5687816 -0.4745834 0.3767383 0.5687816 -0.4822838 0.3767383 0.5687816 -0.4894626 0.3767383 0.5687816 -0.4961862 0.3767383 0.5687816 -0.5025087 0.3767383 0.5687816 -0.5084753 0.3767383 0.5687816 -0.514124 0.3767383 0.5687816 -0.519487 0.3767383 0.5687816 -0.5245917 0.3767383 0.5687816 -0.529462 0.3767383 0.5687816 -0.5341183 0.3767383 0.5687816 -0.5385787 0.3767383 0.5687816 -0.5428591 0.3767383 0.5687816 -0.5469733 0.3767383 0.5687816 -0.5509339 0.3767383 0.5687816 -0.5547519 0.3767383 0.5687816 -0.5584371 0.3767383 0.5687816 -0.5619986 0.3767383 0.5687816 -0.5654443 0.3767383 0.5687816 -0.5687816 0.3767383 0.5687816 -0.092819 0.3951413 0.5687816 -0.2262531 0.3951413 0.5687816 -0.2875993 0.3951413 0.5687816 -0.3262122 0.3951413 0.5687816 -0.3544566 0.3951413 0.5687816 -0.3767383 0.3951413 0.5687816 -0.3951413 0.3951413 0.5687816 -0.4108177 0.3951413 0.5687816 -0.4244723 0.3951413 0.5687816 -0.4365675 0.3951413 0.5687816 -0.4474232 0.3951413 0.5687816 -0.45727 0.3951413 0.5687816 -0.4662797 0.3951413 0.5687816 -0.4745834 0.3951413 0.5687816 -0.4822838 0.3951413 0.5687816 -0.4894626 0.3951413 0.5687816 -0.4961862 0.3951413 0.5687816 -0.5025087 0.3951413 0.5687816 -0.5084753 0.3951413 0.5687816 -0.514124 0.3951413 0.5687816 -0.519487 0.3951413 0.5687816 -0.5245917 0.3951413 0.5687816 -0.529462 0.3951413 0.5687816 -0.5341183 0.3951413 0.5687816 -0.5385787 0.3951413 0.5687816 -0.5428591 0.3951413 0.5687816 -0.5469733 0.3951413 0.5687816 -0.5509339 0.3951413 0.5687816 -0.5547519 0.3951413 0.5687816 -0.5584371 0.3951413 0.5687816 -0.5619986 0.3951413 0.5687816 -0.5654443 0.3951413 0.5687816 -0.5687816 0.3951413 0.5687816 -0.092819 0.4108177 0.5687816 -0.2262531 0.4108177 0.5687816 -0.2875993 0.4108177 0.5687816 -0.3262122 0.4108177 0.5687816 -0.3544566 0.4108177 0.5687816 -0.3767383 0.4108177 0.5687816 -0.3951413 0.4108177 0.5687816 -0.4108177 0.4108177 0.5687816 -0.4244723 0.4108177 0.5687816 -0.4365675 0.4108177 0.5687816 -0.4474232 0.4108177 0.5687816 -0.45727 0.4108177 0.5687816 -0.4662797 0.4108177 0.5687816 -0.4745834 0.4108177 0.5687816 -0.4822838 0.4108177 0.5687816 -0.4894626 0.4108177 0.5687816 -0.4961862 0.4108177 0.5687816 -0.5025087 0.4108177 0.5687816 -0.5084753 0.4108177 0.5687816 -0.514124 0.4108177 0.5687816 -0.519487 0.4108177 0.5687816 -0.5245917 0.4108177 0.5687816 -0.529462 0.4108177 0.5687816 -0.5341183 0.4108177 0.5687816 -0.5385787 0.4108177 0.5687816 -0.5428591 0.4108177 0.5687816 -0.5469733 0.4108177 0.5687816 -0.5509339 0.4108177 0.5687816 -0.5547519 0.4108177 0.5687816 -0.5584371 0.4108177 0.5687816 -0.5619986 0.4108177 0.5687816 -0.5654443 0.4108177 0.5687816 -0.5687816 0.4108177 0.5687816 -0.092819 0.4244723 0.5687816 -0.2262531 0.4244723 0.5687816 -0.2875993 0.4244723 0.5687816 -0.3262122 0.4244723 0.5687816 -0.3544566 0.4244723 0.5687816 -0.3767383 0.4244723 0.5687816 -0.3951413 0.4244723 0.5687816 -0.4108177 0.4244723 0.5687816 -0.4244723 0.4244723 0.5687816 -0.4365675 0.4244723 0.5687816 -0.4474232 0.4244723 0.5687816 -0.45727 0.4244723 0.5687816 -0.4662797 0.4244723 0.5687816 -0.4745834 0.4244723 0.5687816 -0.4822838 0.4244723 0.5687816 -0.4894626 0.4244723 0.5687816 -0.4961862 0.4244723 0.5687816 -0.5025087 0.4244723 0.5687816 -0.5084753 0.4244723 0.5687816 -0.514124 0.4244723 0.5687816 -0.519487 0.4244723 0.5687816 -0.5245917 0.4244723 0.5687816 -0.529462 0.4244723 0.5687816 -0.5341183 0.4244723 0.5687816 -0.5385787 0.4244723 0.5687816 -0.5428591 0.4244723 0.5687816 -0.5469733 0.4244723 0.5687816 -0.5509339 0.4244723 0.5687816 -0.5547519 0.4244723 0.5687816 -0.5584371 0.4244723 0.5687816 -0.5619986 0.4244723 0.5687816 -0.5654443 0.4244723 0.5687816 -0.5687816 0.4244723 0.5687816 -0.092819 0.4365675 0.5687816 -0.2262531 0.4365675 0.5687816 -0.2875993 0.4365675 0.5687816 -0.3262122 0.4365675 0.5687816 -0.3544566 0.4365675 0.5687816 -0.3767383 0.4365675 0.5687816 -0.3951413 0.4365675 0.5687816 -0.4108177 0.4365675 0.5687816 -0.4244723 0.4365675 0.5687816 -0.4365675 0.4365675 0.5687816 -0.4474232 0.4365675 0.5687816 -0.45727 0.4365675 0.5687816 -0.4662797 0.4365675 0.5687816 -0.4745834 0.4365675 0.5687816 -0.4822838 0.4365675 0.5687816 -0.4894626 0.4365675 0.5687816 -0.4961862 0.4365675 0.5687816 -0.5025087 0.4365675 0.5687816 -0.5084753 0.4365675 0.5687816 -0.514124 0.4365675 0.5687816 -0.519487 0.4365675 0.5687816 -0.5245917 0.4365675 0.5687816 -0.529462 0.4365675 0.5687816 -0.5341183 0.4365675 0.5687816 -0.5385787 0.4365675 0.5687816 -0.5428591 0.4365675 0.5687816 -0.5469733 0.4365675 0.5687816 -0.5509339 0.4365675 0.5687816 -0.5547519 0.4365675 0.5687816 -0.5584371 0.4365675 0.5687816 -0.5619986 0.4365675 0.5687816 -0.5654443 0.4365675 0.5687816 -0.5687816 0.4365675 0.5687816 -0.092819 0.4474232 0.5687816 -0.2262531 0.4474232 0.5687816 -0.2875993 0.4474232 0.5687816 -0.3262122 0.4474232 0.5687816 -0.3544566 0.4474232 0.5687816 -0.3767383 0.4474232 0.5687816 -0.3951413 0.4474232 0.5687816 -0.4108177 0.4474232 0.5687816 -0.4244723 0.4474232 0.5687816 -0.4365675 0.4474232 0.5687816 -0.4474232 0.4474232 0.5687816 -0.45727 0.4474232 0.5687816 -0.4662797 0.4474232 0.5687816 -0.4745834 0.4474232 0.5687816 -0.4822838 0.4474232 0.5687816 -0.4894626 0.4474232 0.5687816 -0.4961862 0.4474232 0.5687816 -0.5025087 0.4474232 0.5687816 -0.5084753 0.4474232 0.5687816 -0.514124 0.4474232 0.5687816 -0.519487 0.4474232 0.5687816 -0.5245917 0.4474232 0.5687816 -0.529462 0.4474232 0.5687816 -0.5341183 0.4474232 0.5687816 -0.5385787 0.4474232 0.5687816 -0.5428591 0.4474232 0.5687816 -0.5469733 0.4474232 0.5687816 -0.5509339 0.4474232 0.5687816 -0.5547519 0.4474232 0.5687816 -0.5584371 0.4474232 0.5687816 -0.5619986 0.4474232 0.5687816 -0.5654443 0.4474232 0.5687816 -0.5687816 0.4474232 0.5687816 -0.092819 0.45727 0.5687816 -0.2262531 0.45727 0.5687816 -0.2875993 0.45727 0.5687816 -0.3262122 0.45727 0.5687816 -0.3544566 0.45727 0.5687816 -0.3767383 0.45727 0.5687816 -0.3951413 0.45727 0.5687816 -0.4108177 0.45727 0.5687816 -0.4244723 0.45727 0.5687816 -0.4365675 0.45727 0.5687816 -0.4474232 0.45727 0.5687816 -0.45727 0.45727 0.5687816 -0.4662797 0.45727 0.5687816 -0.4745834 0.45727 0.5687816 -0.4822838 0.45727 0.5687816 -0.4894626 0.45727 0.5687816 -0.4961862 0.45727 0.5687816 -0.5025087 0.45727 0.5687816 -0.5084753 0.45727 0.5687816 -0.514124 0.45727 0.5687816 -0.519487 0.45727 0.5687816 -0.5245917 0.45727 0.5687816 -0.529462 0.45727 0.5687816 -0.5341183 0.45727 0.5687816 -0.5385787 0.45727 0.5687816 -0.5428591 0.45727 0.5687816 -0.5469733 0.45727 0.5687816 -0.5509339 0.45727 0.5687816 -0.5547519 0.45727 0.5687816 -0.5584371 0.45727 0.5687816 -0.5619986 0.45727 0.5687816 -0.5654443 0.45727 0.5687816 -0.5687816 0.45727 0.5687816 -0.092819 0.4662797 0.5687816 -0.2262531 0.4662797 0.5687816 -0.2875993 0.4662797 0.5687816 -0.3262122 0.4662797 0.5687816 -0.3544566 0.4662797 0.5687816 -0.3767383 0.4662797 0.5687816 -0.3951413 0.4662797 0.5687816 -0.4108177 0.4662797 0.5687816 -0.4244723 0.4662797 0.5687816 -0.4365675 0.4662797 0.5687816 -0.4474232 0.4662797 0.5687816 -0.45727 0.4662797 0.5687816 -0.4662797 0.4662797 0.5687816 -0.4745834 0.4662797 0.5687816 -0.4822838 0.4662797 0.5687816 -0.4894626 0.4662797 0.5687816 -0.4961862 0.4662797 0.5687816 -0.5025087 0.4662797 0.5687816 -0.5084753 0.4662797 0.5687816 -0.514124 0.4662797 0.5687816 -0.519487 0.4662797 0.5687816 -0.5245917 0.4662797 0.5687816 -0.529462 0.4662797 0.5687816 -0.5341183 0.4662797 0.5687816 -0.5385787 0.4662797 0.5687816 -0.5428591 0.4662797 0.5687816 -0.5469733 0.4662797 0.5687816 -0.5509339 0.4662797 0.5687816 -0.5547519 0.4662797 0.5687816 -0.5584371 0.4662797 0.5687816 -0.5619986 0.4662797 0.5687816 -0.5654443 0.4662797 0.5687816 -0.5687816 0.4662797 0.5687816 -0.092819 0.4745834 0.5687816 -0.2262531 0.4745834 0.5687816 -0.2875993 0.4745834 0.5687816 -0.3262122 0.4745834 0.5687816 -0.3544566 0.4745834 0.5687816 -0.3767383 0.4745834 0.5687816 -0.3951413 0.4745834 0.5687816 -0.4108177 0.4745834 0.5687816 -0.4244723 0.4745834 0.5687816 -0.4365675 0.4745834 0.5687816 -0.4474232 0.4745834 0.5687816 -0.45727 0.4745834 0.5687816 -0.4662797 0.4745834 0.5687816 -0.4745834 0.4745834 0.5687816 -0.4822838 0.4745834 0.5687816 -0.4894626 0.4745834 0.5687816 -0.4961862 0.4745834 0.5687816 -0.5025087 0.4745834 0.5687816 -0.5084753 0.4745834 0.5687816 -0.514124 0.4745834 0.5687816 -0.519487 0.4745834 0.5687816 -0.5245917 0.4745834 0.5687816 -0.529462 0.4745834 0.5687816 -0.5341183 0.4745834 0.5687816 -0.5385787 0.4745834 0.5687816 -0.5428591 0.4745834 0.5687816 -0.5469733 0.4745834 0.5687816 -0.5509339 0.4745834 0.5687816 -0.5547519 0.4745834 0.5687816 -0.5584371 0.4745834 0.5687816 -0.5619986 0.4745834 0.5687816 -0.5654443 0.4745834 0.5687816 -0.5687816 0.4745834 0.5687816 -0.092819 0.4822838 0.5687816 -0.2262531 0.4822838 0.5687816 -0.2875993 0.4822838 0.5687816 -0.3262122 0.4822838 0.5687816 -0.3544566 0.4822838 0.5687816 -0.3767383 0.4822838 0.5687816 -0.3951413 0.4822838 0.5687816 -0.4108177 0.4822838 0.5687816 -0.4244723 0.4822838 0.5687816 -0.4365675 0.4822838 0.5687816 -0.4474232 0.4822838 0.5687816 -0.45727 0.4822838 0.5687816 -0.4662797 0.4822838 0.5687816 -0.4745834 0.4822838 0.5687816 -0.4822838 0.4822838 0.5687816 -0.4894626 0.4822838 0.5687816 -0.4961862 0.4822838 0.5687816 -0.5025087 0.4822838 0.5687816 -0.5084753 0.4822838 0.5687816 -0.514124 0.4822838 0.5687816 -0.519487 0.4822838 0.5687816 -0.5245917 0.4822838 0.5687816 -0.529462 0.4822838 0.5687816 -0.5341183 0.4822838 0.5687816 -0.5385787 0.4822838 0.5687816 -0.5428591 0.4822838 0.5687816 -0.5469733 0.4822838 0.5687816 -0.5509339 0.4822838 0.5687816 -0.5547519 0.4822838 0.5687816 -0.5584371 0.4822838 0.5687816 -0.5619986 0.4822838 0.5687816 -0.5654443 0.4822838 0.5687816 -0.5687816 0.4822838 0.5687816 -0.092819 0.4894626 0.5687816 -0.2262531 0.4894626 0.5687816 -0.2875993 0.4894626 0.5687816 -0.3262122 0.4894626 0.5687816 -0.3544566 0.4894626 0.5687816 -0.3767383 0.4894626 0.5687816 -0.3951413 0.4894626 0.5687816 -0.4108177 0.4894626 0.5687816 -0.4244723 0.4894626 0.5687816 -0.4365675 0.4894626 0.5687816 -0.4474232 0.4894626 0.5687816 -0.45727 0.4894626 0.5687816 -0.4662797 0.4894626 0.5687816 -0.4745834 0.4894626 0.5687816 -0.4822838 0.4894626 0.5687816 -0.4894626 0.4894626 0.5687816 -0.4961862 0.4894626 0.5687816 -0.5025087 0.4894626 0.5687816 -0.5084753 0.4894626 0.5687816 -0.514124 0.4894626 0.5687816 -0.519487 0.4894626 0.5687816 -0.5245917 0.4894626 0.5687816 -0.529462 0.4894626 0.5687816 -0.5341183 0.4894626 0.5687816 -0.5385787 0.4894626 0.5687816 -0.5428591 0.4894626 0.5687816 -0.5469733 0.4894626 0.5687816 -0.5509339 0.4894626 0.5687816 -0.5547519 0.4894626 0.5687816 -0.5584371 0.4894626 0.5687816 -0.5619986 0.4894626 0.5687816 -0.5654443 0.4894626 0.5687816 -0.5687816 0.4894626 0.5687816 -0.092819 0.4961862 0.5687816 -0.2262531 0.4961862 0.5687816 -0.2875993 0.4961862 0.5687816 -0.3262122 0.4961862 0.5687816 -0.3544566 0.4961862 0.5687816 -0.3767383 0.4961862 0.5687816 -0.3951413 0.4961862 0.5687816 -0.4108177 0.4961862 0.5687816 -0.4244723 0.4961862 0.5687816 -0.4365675 0.4961862 0.5687816 -0.4474232 0.4961862 0.5687816 -0.45727 0.4961862 0.5687816 -0.4662797 0.4961862 0.5687816 -0.4745834 0.4961862 0.5687816 -0.4822838 0.4961862 0.5687816 -0.4894626 0.4961862 0.5687816 -0.4961862 0.4961862 0.5687816 -0.5025087 0.4961862 0.5687816 -0.5084753 0.4961862 0.5687816 -0.514124 0.4961862 0.5687816 -0.519487 0.4961862 0.5687816 -0.5245917 0.4961862 0.5687816 -0.529462 0.4961862 0.5687816 -0.5341183 0.4961862 0.5687816 -0.5385787 0.4961862 0.5687816 -0.5428591 0.4961862 0.5687816 -0.5469733 0.4961862 0.5687816 -0.5509339 0.4961862 0.5687816 -0.5547519 0.4961862 0.5687816 -0.5584371 0.4961862 0.5687816 -0.5619986 0.4961862 0.5687816 -0.5654443 0.4961862 0.5687816 -0.5687816 0.4961862 0.5687816 -0.092819 0.5025087 0.5687816 -0.2262531 0.5025087 0.5687816 -0.2875993 0.5025087 0.5687816 -0.3262122 0.5025087 0.5687816 -0.3544566 0.5025087 0.5687816 -0.3767383 0.5025087 0.5687816 -0.3951413 0.5025087 0.5687816 -0.4108177 0.5025087 0.5687816 -0.4244723 0.5025087 0.5687816 -0.4365675 0.5025087 0.5687816 -0.4474232 0.5025087 0.5687816 -0.45727 0.5025087 0.5687816 -0.4662797 0.5025087 0.5687816 -0.4745834 0.5025087 0.5687816 -0.4822838 0.5025087 0.5687816 -0.4894626 0.5025087 0.5687816 -0.4961862 0.5025087 0.5687816 -0.5025087 0.5025087 0.5687816 -0.5084753 0.5025087 0.5687816 -0.514124 0.5025087 0.5687816 -0.519487 0.5025087 0.5687816 -0.5245917 0.5025087 0.5687816 -0.529462 0.5025087 0.5687816 -0.5341183 0.5025087 0.5687816 -0.5385787 0.5025087 0.5687816 -0.5428591 0.5025087 0.5687816 -0.5469733 0.5025087 0.5687816 -0.5509339 0.5025087 0.5687816 -0.5547519 0.5025087 0.5687816 -0.5584371 0.5025087 0.5687816 -0.5619986 0.5025087 0.5687816 -0.5654443 0.5025087 0.5687816 -0.5687816 0.5025087 0.5687816 -0.092819 0.5084753 0.5687816 -0.2262531 0.5084753 0.5687816 -0.2875993 0.5084753 0.5687816 -0.3262122 0.5084753 0.5687816 -0.3544566 0.5084753 0.5687816 -0.3767383 0.5084753 0.5687816 -0.3951413 0.5084753 0.5687816 -0.4108177 0.5084753 0.5687816 -0.4244723 0.5084753 0.5687816 -0.4365675 0.5084753 0.5687816 -0.4474232 0.5084753 0.5687816 -0.45727 0.5084753 0.5687816 -0.4662797 0.5084753 0.5687816 -0.4745834 0.5084753 0.5687816 -0.4822838 0.5084753 0.5687816 -0.4894626 0.5084753 0.5687816 -0.4961862 0.5084753 0.5687816 -0.5025087 0.5084753 0.5687816 -0.5084753 0.5084753 0.5687816 -0.514124 0.5084753 0.5687816 -0.519487 0.5084753 0.5687816 -0.5245917 0.5084753 0.5687816 -0.529462 0.5084753 0.5687816 -0.5341183 0.5084753 0.5687816 -0.5385787 0.5084753 0.5687816 -0.5428591 0.5084753 0.5687816 -0.5469733 0.5084753 0.5687816 -0.5509339 0.5084753 0.5687816 -0.5547519 0.5084753 0.5687816 -0.5584371 0.5084753 0.5687816 -0.5619986 0.5084753 0.5687816 -0.5654443 0.5084753 0.5687816 -0.5687816 0.5084753 0.5687816 -0.092819 0.514124 0.5687816 -0.2262531 0.514124 0.5687816 -0.2875993 0.514124 0.5687816 -0.3262122 0.514124 0.5687816 -0.3544566 0.514124 0.5687816 -0.3767383 0.514124 0.5687816 -0.3951413 0.514124 0.5687816 -0.4108177 0.514124 0.5687816 -0.4244723 0.514124 0.5687816 -0.4365675 0.514124 0.5687816 -0.4474232 0.514124 0.5687816 -0.45727 0.514124 0.5687816 -0.4662797 0.514124 0.5687816 -0.4745834 0.514124 0.5687816 -0.4822838 0.514124 0.5687816 -0.4894626 0.514124 0.5687816 -0.4961862 0.514124 0.5687816 -0.5025087 0.514124 0.5687816 -0.5084753 0.514124 0.5687816 -0.514124 0.514124 0.5687816 -0.519487 0.514124 0.5687816 -0.5245917 0.514124 0.5687816 -0.529462 0.514124 0.5687816 -0.5341183 0.514124 0.5687816 -0.5385787 0.514124 0.5687816 -0.5428591 0.514124 0.5687816 -0.5469733 0.514124 0.5687816 -0.5509339 0.514124 0.5687816 -0.5547519 0.514124 0.5687816 -0.5584371 0.514124 0.5687816 -0.5619986 0.514124 0.5687816 -0.5654443 0.514124 0.5687816 -0.5687816 0.514124 0.5687816 -0.092819 0.519487 0.5687816 -0.2262531 0.519487 0.5687816 -0.2875993 0.519487 0.5687816 -0.3262122 0.519487 0.5687816 -0.3544566 0.519487 0.5687816 -0.3767383 0.519487 0.5687816 -0.3951413 0.519487 0.5687816 -0.4108177 0.519487 0.5687816 -0.4244723 0.519487 0.5687816 -0.4365675 0.519487 0.5687816 -0.4474232 0.519487 0.5687816 -0.45727 0.519487 0.5687816 -0.4662797 0.519487 0.5687816 -0.4745834 0.519487 0.5687816 -0.4822838 0.519487 0.5687816 -0.4894626 0.519487 0.5687816 -0.4961862 0.519487 0.5687816 -0.5025087 0.519487 0.5687816 -0.5084753 0.519487 0.5687816 -0.514124 0.519487 0.5687816 -0.519487 0.519487 0.5687816 -0.5245917 0.519487 0.5687816 -0.529462 0.519487 0.5687816 -0.5341183 0.519487 0.5687816 -0.5385787 0.519487 0.5687816 -0.5428591 0.519487 0.5687816 -0.5469733 0.519487 0.5687816 -0.5509339 0.519487 0.5687816 -0.5547519 0.519487 0.5687816 -0.5584371 0.519487 0.5687816 -0.5619986 0.519487 0.5687816 -0.5654443 0.519487 0.5687816 -0.5687816 0.519487 0.5687816 -0.092819 0.5245917 0.5687816 -0.2262531 0.5245917 0.5687816 -0.2875993 0.5245917 0.5687816 -0.3262122 0.5245917 0.5687816 -0.3544566 0.5245917 0.5687816 -0.3767383 0.5245917 0.5687816 -0.3951413 0.5245917 0.5687816 -0.4108177 0.5245917 0.5687816 -0.4244723 0.5245917 0.5687816 -0.4365675 0.5245917 0.5687816 -0.4474232 0.5245917 0.5687816 -0.45727 0.5245917 0.5687816 -0.4662797 0.5245917 0.5687816 -0.4745834 0.5245917 0.5687816 -0.4822838 0.5245917 0.5687816 -0.4894626 0.5245917 0.5687816 -0.4961862 0.5245917 0.5687816 -0.5025087 0.5245917 0.5687816 -0.5084753 0.5245917 0.5687816 -0.514124 0.5245917 0.5687816 -0.519487 0.5245917 0.5687816 -0.5245917 0.5245917 0.5687816 -0.529462 0.5245917 0.5687816 -0.5341183 0.5245917 0.5687816 -0.5385787 0.5245917 0.5687816 -0.5428591 0.5245917 0.5687816 -0.5469733 0.5245917 0.5687816 -0.5509339 0.5245917 0.5687816 -0.5547519 0.5245917 0.5687816 -0.5584371 0.5245917 0.5687816 -0.5619986 0.5245917 0.5687816 -0.5654443 0.5245917 0.5687816 -0.5687816 0.5245917 0.5687816 -0.092819 0.529462 0.5687816 -0.2262531 0.529462 0.5687816 -0.2875993 0.529462 0.5687816 -0.3262122 0.529462 0.5687816 -0.3544566 0.529462 0.5687816 -0.3767383 0.529462 0.5687816 -0.3951413 0.529462 0.5687816 -0.4108177 0.529462 0.5687816 -0.4244723 0.529462 0.5687816 -0.4365675 0.529462 0.5687816 -0.4474232 0.529462 0.5687816 -0.45727 0.529462 0.5687816 -0.4662797 0.529462 0.5687816 -0.4745834 0.529462 0.5687816 -0.4822838 0.529462 0.5687816 -0.4894626 0.529462 0.5687816 -0.4961862 0.529462 0.5687816 -0.5025087 0.529462 0.5687816 -0.5084753 0.529462 0.5687816 -0.514124 0.529462 0.5687816 -0.519487 0.529462 0.5687816 -0.5245917 0.529462 0.5687816 -0.529462 0.529462 0.5687816 -0.5341183 0.529462 0.5687816 -0.5385787 0.529462 0.5687816 -0.5428591 0.529462 0.5687816 -0.5469733 0.529462 0.5687816 -0.5509339 0.529462 0.5687816 -0.5547519 0.529462 0.5687816 -0.5584371 0.529462 0.5687816 -0.5619986 0.529462 0.5687816 -0.5654443 0.529462 0.5687816 -0.5687816 0.529462 0.5687816 -0.092819 0.5341183 0.5687816 -0.2262531 0.5341183 0.5687816 -0.2875993 0.5341183 0.5687816 -0.3262122 0.5341183 0.5687816 -0.3544566 0.5341183 0.5687816 -0.3767383 0.5341183 0.5687816 -0.3951413 0.5341183 0.5687816 -0.4108177 0.5341183 0.5687816 -0.4244723 0.5341183 0.5687816 -0.4365675 0.5341183 0.5687816 -0.4474232 0.5341183 0.5687816 -0.45727 0.5341183 0.5687816 -0.4662797 0.5341183 0.5687816 -0.4745834 0.5341183 0.5687816 -0.4822838 0.5341183 0.5687816 -0.4894626 0.5341183 0.5687816 -0.4961862 0.5341183 0.5687816 -0.5025087 0.5341183 0.5687816 -0.5084753 0.5341183 0.5687816 -0.514124 0.5341183 0.5687816 -0.519487 0.5341183 0.5687816 -0.5245917 0.5341183 0.5687816 -0.529462 0.5341183 0.5687816 -0.5341183 0.5341183 0.5687816 -0.5385787 0.5341183 0.5687816 -0.5428591 0.5341183 0.5687816 -0.5469733 0.5341183 0.5687816 -0.5509339 0.5341183 0.5687816 -0.5547519 0.5341183 0.5687816 -0.5584371 0.5341183 0.5687816 -0.5619986 0.5341183 0.5687816 -0.5654443 0.5341183 0.5687816 -0.5687816 0.5341183 0.5687816 -0.092819 0.5385787 0.5687816 -0.2262531 0.5385787 0.5687816 -0.2875993 0.5385787 0.5687816 -0.3262122 0.5385787 0.5687816 -0.3544566 0.5385787 0.5687816 -0.3767383 0.5385787 0.5687816 -0.3951413 0.5385787 0.5687816 -0.4108177 0.5385787 0.5687816 -0.4244723 0.5385787 0.5687816 -0.4365675 0.5385787 0.5687816 -0.4474232 0.5385787 0.5687816 -0.45727 0.5385787 0.5687816 -0.4662797 0.5385787 0.5687816 -0.4745834 0.5385787 0.5687816 -0.4822838 0.5385787 0.5687816 -0.4894626 0.5385787 0.5687816 -0.4961862 0.5385787 0.5687816 -0.5025087 0.5385787 0.5687816 -0.5084753 0.5385787 0.5687816 -0.514124 0.5385787 0.5687816 -0.519487 0.5385787 0.5687816 -0.5245917 0.5385787 0.5687816 -0.529462 0.5385787 0.5687816 -0.5341183 0.5385787 0.5687816 -0.5385787 0.5385787 0.5687816 -0.5428591 0.5385787 0.5687816 -0.5469733 0.5385787 0.5687816 -0.5509339 0.5385787 0.5687816 -0.5547519 0.5385787 0.5687816 -0.5584371 0.5385787 0.5687816 -0.5619986 0.5385787 0.5687816 -0.5654443 0.5385787 0.5687816 -0.5687816 0.5385787 0.5687816 -0.092819 0.5428591 0.5687816 -0.2262531 0.5428591 0.5687816 -0.2875993 0.5428591 0.5687816 -0.3262122 0.5428591 0.5687816 -0.3544566 0.5428591 0.5687816 -0.3767383 0.5428591 0.5687816 -0.3951413 0.5428591 0.5687816 -0.4108177 0.5428591 0.5687816 -0.4244723 0.5428591 0.5687816 -0.4365675 0.5428591 0.5687816 -0.4474232 0.5428591 0.5687816 -0.45727 0.5428591 0.5687816 -0.4662797 0.5428591 0.5687816 -0.4745834 0.5428591 0.5687816 -0.4822838 0.5428591 0.5687816 -0.4894626 0.5428591 0.5687816 -0.4961862 0.5428591 0.5687816 -0.5025087 0.5428591 0.5687816 -0.5084753 0.5428591 0.5687816 -0.514124 0.5428591 0.5687816 -0.519487 0.5428591 0.5687816 -0.5245917 0.5428591 0.5687816 -0.529462 0.5428591 0.5687816 -0.5341183 0.5428591 0.5687816 -0.5385787 0.5428591 0.5687816 -0.5428591 0.5428591 0.5687816 -0.5469733 0.5428591 0.5687816 -0.5509339 0.5428591 0.5687816 -0.5547519 0.5428591 0.5687816 -0.5584371 0.5428591 0.5687816 -0.5619986 0.5428591 0.5687816 -0.5654443 0.5428591 0.5687816 -0.5687816 0.5428591 0.5687816 -0.092819 0.5469733 0.5687816 -0.2262531 0.5469733 0.5687816 -0.2875993 0.5469733 0.5687816 -0.3262122 0.5469733 0.5687816 -0.3544566 0.5469733 0.5687816 -0.3767383 0.5469733 0.5687816 -0.3951413 0.5469733 0.5687816 -0.4108177 0.5469733 0.5687816 -0.4244723 0.5469733 0.5687816 -0.4365675 0.5469733 0.5687816 -0.4474232 0.5469733 0.5687816 -0.45727 0.5469733 0.5687816 -0.4662797 0.5469733 0.5687816 -0.4745834 0.5469733 0.5687816 -0.4822838 0.5469733 0.5687816 -0.4894626 0.5469733 0.5687816 -0.4961862 0.5469733 0.5687816 -0.5025087 0.5469733 0.5687816 -0.5084753 0.5469733 0.5687816 -0.514124 0.5469733 0.5687816 -0.519487 0.5469733 0.5687816 -0.5245917 0.5469733 0.5687816 -0.529462 0.5469733 0.5687816 -0.5341183 0.5469733 0.5687816 -0.5385787 0.5469733 0.5687816 -0.5428591 0.5469733 0.5687816 -0.5469733 0.5469733 0.5687816 -0.5509339 0.5469733 0.5687816 -0.5547519 0.5469733 0.5687816 -0.5584371 0.5469733 0.5687816 -0.5619986 0.5469733 0.5687816 -0.5654443 0.5469733 0.5687816 -0.5687816 0.5469733 0.5687816 -0.092819 0.5509339 0.5687816 -0.2262531 0.5509339 0.5687816 -0.2875993 0.5509339 0.5687816 -0.3262122 0.5509339 0.5687816 -0.3544566 0.5509339 0.5687816 -0.3767383 0.5509339 0.5687816 -0.3951413 0.5509339 0.5687816 -0.4108177 0.5509339 0.5687816 -0.4244723 0.5509339 0.5687816 -0.4365675 0.5509339 0.5687816 -0.4474232 0.5509339 0.5687816 -0.45727 0.5509339 0.5687816 -0.4662797 0.5509339 0.5687816 -0.4745834 0.5509339 0.5687816 -0.4822838 0.5509339 0.5687816 -0.4894626 0.5509339 0.5687816 -0.4961862 0.5509339 0.5687816 -0.5025087 0.5509339 0.5687816 -0.5084753 0.5509339 0.5687816 -0.514124 0.5509339 0.5687816 -0.519487 0.5509339 0.5687816 -0.5245917 0.5509339 0.5687816 -0.529462 0.5509339 0.5687816 -0.5341183 0.5509339 0.5687816 -0.5385787 0.5509339 0.5687816 -0.5428591 0.5509339 0.5687816 -0.5469733 0.5509339 0.5687816 -0.5509339 0.5509339 0.5687816 -0.5547519 0.5509339 0.5687816 -0.5584371 0.5509339 0.5687816 -0.5619986 0.5509339 0.5687816 -0.5654443 0.5509339 0.5687816 -0.5687816 0.5509339 0.5687816 -0.092819 0.5547519 0.5687816 -0.2262531 0.5547519 0.5687816 -0.2875993 0.5547519 0.5687816 -0.3262122 0.5547519 0.5687816 -0.3544566 0.5547519 0.5687816 -0.3767383 0.5547519 0.5687816 -0.3951413 0.5547519 0.5687816 -0.4108177 0.5547519 0.5687816 -0.4244723 0.5547519 0.5687816 -0.4365675 0.5547519 0.5687816 -0.4474232 0.5547519 0.5687816 -0.45727 0.5547519 0.5687816 -0.4662797 0.5547519 0.5687816 -0.4745834 0.5547519 0.5687816 -0.4822838 0.5547519 0.5687816 -0.4894626 0.5547519 0.5687816 -0.4961862 0.5547519 0.5687816 -0.5025087 0.5547519 0.5687816 -0.5084753 0.5547519 0.5687816 -0.514124 0.5547519 0.5687816 -0.519487 0.5547519 0.5687816 -0.5245917 0.5547519 0.5687816 -0.529462 0.5547519 0.5687816 -0.5341183 0.5547519 0.5687816 -0.5385787 0.5547519 0.5687816 -0.5428591 0.5547519 0.5687816 -0.5469733 0.5547519 0.5687816 -0.5509339 0.5547519 0.5687816 -0.5547519 0.5547519 0.5687816 -0.5584371 0.5547519 0.5687816 -0.5619986 0.5547519 0.5687816 -0.5654443 0.5547519 0.5687816 -0.5687816 0.5547519 0.5687816 -0.092819 0.5584371 0.5687816 -0.2262531 0.5584371 0.5687816 -0.2875993 0.5584371 0.5687816 -0.3262122 0.5584371 0.5687816 -0.3544566 0.5584371 0.5687816 -0.3767383 0.5584371 0.5687816 -0.3951413 0.5584371 0.5687816 -0.4108177 0.5584371 0.5687816 -0.4244723 0.5584371 0.5687816 -0.4365675 0.5584371 0.5687816 -0.4474232 0.5584371 0.5687816 -0.45727 0.5584371 0.5687816 -0.4662797 0.5584371 0.5687816 -0.4745834 0.5584371 0.5687816 -0.4822838 0.5584371 0.5687816 -0.4894626 0.5584371 0.5687816 -0.4961862 0.5584371 0.5687816 -0.5025087 0.5584371 0.5687816 -0.5084753 0.5584371 0.5687816 -0.514124 0.5584371 0.5687816 -0.519487 0.5584371 0.5687816 -0.5245917 0.5584371 0.5687816 -0.529462 0.5584371 0.5687816 -0.5341183 0.5584371 0.5687816 -0.5385787 0.5584371 0.5687816 -0.5428591 0.5584371 0.5687816 -0.5469733 0.5584371 0.5687816 -0.5509339 0.5584371 0.5687816 -0.5547519 0.5584371 0.5687816 -0.5584371 0.5584371 0.5687816 -0.5619986 0.5584371 0.5687816 -0.5654443 0.5584371 0.5687816 -0.5687816 0.5584371 0.5687816 -0.092819 0.5619986 0.5687816 -0.2262531 0.5619986 0.5687816 -0.2875993 0.5619986 0.5687816 -0.3262122 0.5619986 0.5687816 -0.3544566 0.5619986 0.5687816 -0.3767383 0.5619986 0.5687816 -0.3951413 0.5619986 0.5687816 -0.4108177 0.5619986 0.5687816 -0.4244723 0.5619986 0.5687816 -0.4365675 0.5619986 0.5687816 -0.4474232 0.5619986 0.5687816 -0.45727 0.5619986 0.5687816 -0.4662797 0.5619986 0.5687816 -0.4745834 0.5619986 0.5687816 -0.4822838 0.5619986 0.5687816 -0.4894626 0.5619986 0.5687816 -0.4961862 0.5619986 0.5687816 -0.5025087 0.5619986 0.5687816 -0.5084753 0.5619986 0.5687816 -0.514124 0.5619986 0.5687816 -0.519487 0.5619986 0.5687816 -0.5245917 0.5619986 0.5687816 -0.529462 0.5619986 0.5687816 -0.5341183 0.5619986 0.5687816 -0.5385787 0.5619986 0.5687816 -0.5428591 0.5619986 0.5687816 -0.5469733 0.5619986 0.5687816 -0.5509339 0.5619986 0.5687816 -0.5547519 0.5619986 0.5687816 -0.5584371 0.5619986 0.5687816 -0.5619986 0.5619986 0.5687816 -0.5654443 0.5619986 0.5687816 -0.5687816 0.5619986 0.5687816 -0.092819 0.5654443 0.5687816 -0.2262531 0.5654443 0.5687816 -0.2875993 0.5654443 0.5687816 -0.3262122 0.5654443 0.5687816 -0.3544566 0.5654443 0.5687816 -0.3767383 0.5654443 0.5687816 -0.3951413 0.5654443 0.5687816 -0.4108177 0.5654443 0.5687816 -0.4244723 0.5654443 0.5687816 -0.4365675 0.5654443 0.5687816 -0.4474232 0.5654443 0.5687816 -0.45727 0.5654443 0.5687816 -0.4662797 0.5654443 0.5687816 -0.4745834 0.5654443 0.5687816 -0.4822838 0.5654443 0.5687816 -0.4894626 0.5654443 0.5687816 -0.4961862 0.5654443 0.5687816 -0.5025087 0.5654443 0.5687816 -0.5084753 0.5654443 0.5687816 -0.514124 0.5654443 0.5687816 -0.519487 0.5654443 0.5687816 -0.5245917 0.5654443 0.5687816 -0.529462 0.5654443 0.5687816 -0.5341183 0.5654443 0.5687816 -0.5385787 0.5654443 0.5687816 -0.5428591 0.5654443 0.5687816 -0.5469733 0.5654443 0.5687816 -0.5509339 0.5654443 0.5687816 -0.5547519 0.5654443 0.5687816 -0.5584371 0.5654443 0.5687816 -0.5619986 0.5654443 0.5687816 -0.5654443 0.5654443 0.5687816 -0.5687816 0.5654443 0.5687816 -0.092819 0.5687816 0.5687816 -0.2262531 0.5687816 0.5687816 -0.2875993 0.5687816 0.5687816 -0.3262122 0.5687816 0.5687816 -0.3544566 0.5687816 0.5687816 -0.3767383 0.5687816 0.5687816 -0.3951413 0.5687816 0.5687816 -0.4108177 0.5687816 0.5687816 -0.4244723 0.5687816 0.5687816 -0.4365675 0.5687816 0.5687816 -0.4474232 0.5687816 0.5687816 -0.45727 0.5687816 0.5687816 -0.4662797 0.5687816 0.5687816 -0.4745834 0.5687816 0.5687816 -0.4822838 0.5687816 0.5687816 -0.4894626 0.5687816 0.5687816 -0.4961862 0.5687816 0.5687816 -0.5025087 0.5687816 0.5687816 -0.5084753 0.5687816 0.5687816 -0.514124 0.5687816 0.5687816 -0.519487 0.5687816 0.5687816 -0.5245917 0.5687816 0.5687816 -0.529462 0.5687816 0.5687816 -0.5341183 0.5687816 0.5687816 -0.5385787 0.5687816 0.5687816 -0.5428591 0.5687816 0.5687816 -0.5469733 0.5687816 0.5687816 -0.5509339 0.5687816 0.5687816 -0.5547519 0.5687816 0.5687816 -0.5584371 0.5687816 0.5687816 -0.5619986 0.5687816 0.5687816 -0.5654443 0.5687816 0.5687816 -0.5687816 0.5687816 0.5687816 diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/Linear to Unity Log r1.cube.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/Linear to Unity Log r1.cube.meta deleted file mode 100644 index 34a48fb9c..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/Linear to Unity Log r1.cube.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: aaf1ed25614e1134daed0822f948ebb8 -timeCreated: 1496826837 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/Linear to sRGB r1.cube b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/Linear to sRGB r1.cube deleted file mode 100644 index 57c17dbd6..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/Linear to sRGB r1.cube +++ /dev/null @@ -1,35941 +0,0 @@ -TITLE "Linear to sRGB r1" -LUT_3D_SIZE 33 -DOMAIN_MIN 0 0 0 -DOMAIN_MAX 1 1 1 -0 0 0 -0.1939468 0 0 -0.2773041 0 0 -0.3384659 0 0 -0.3885728 0 0 -0.4317928 0 0 -0.470214 0 0 -0.5050551 0 0 -0.5370987 0 0 -0.5668815 0 0 -0.5947903 0 0 -0.6211144 0 0 -0.6460766 0 0 -0.6698526 0 0 -0.6925839 0 0 -0.7143866 0 0 -0.7353569 0 0 -0.7555758 0 0 -0.7751122 0 0 -0.7940252 0 0 -0.8123661 0 0 -0.8301795 0 0 -0.8475045 0 0 -0.8643761 0 0 -0.880825 0 0 -0.8968787 0 0 -0.9125621 0 0 -0.9278974 0 0 -0.9429048 0 0 -0.9576028 0 0 -0.9720079 0 0 -0.9861357 0 0 -1 0 0 -0 0.1939468 0 -0.1939468 0.1939468 0 -0.2773041 0.1939468 0 -0.3384659 0.1939468 0 -0.3885728 0.1939468 0 -0.4317928 0.1939468 0 -0.470214 0.1939468 0 -0.5050551 0.1939468 0 -0.5370987 0.1939468 0 -0.5668815 0.1939468 0 -0.5947903 0.1939468 0 -0.6211144 0.1939468 0 -0.6460766 0.1939468 0 -0.6698526 0.1939468 0 -0.6925839 0.1939468 0 -0.7143866 0.1939468 0 -0.7353569 0.1939468 0 -0.7555758 0.1939468 0 -0.7751122 0.1939468 0 -0.7940252 0.1939468 0 -0.8123661 0.1939468 0 -0.8301795 0.1939468 0 -0.8475045 0.1939468 0 -0.8643761 0.1939468 0 -0.880825 0.1939468 0 -0.8968787 0.1939468 0 -0.9125621 0.1939468 0 -0.9278974 0.1939468 0 -0.9429048 0.1939468 0 -0.9576028 0.1939468 0 -0.9720079 0.1939468 0 -0.9861357 0.1939468 0 -1 0.1939468 0 -0 0.2773041 0 -0.1939468 0.2773041 0 -0.2773041 0.2773041 0 -0.3384659 0.2773041 0 -0.3885728 0.2773041 0 -0.4317928 0.2773041 0 -0.470214 0.2773041 0 -0.5050551 0.2773041 0 -0.5370987 0.2773041 0 -0.5668815 0.2773041 0 -0.5947903 0.2773041 0 -0.6211144 0.2773041 0 -0.6460766 0.2773041 0 -0.6698526 0.2773041 0 -0.6925839 0.2773041 0 -0.7143866 0.2773041 0 -0.7353569 0.2773041 0 -0.7555758 0.2773041 0 -0.7751122 0.2773041 0 -0.7940252 0.2773041 0 -0.8123661 0.2773041 0 -0.8301795 0.2773041 0 -0.8475045 0.2773041 0 -0.8643761 0.2773041 0 -0.880825 0.2773041 0 -0.8968787 0.2773041 0 -0.9125621 0.2773041 0 -0.9278974 0.2773041 0 -0.9429048 0.2773041 0 -0.9576028 0.2773041 0 -0.9720079 0.2773041 0 -0.9861357 0.2773041 0 -1 0.2773041 0 -0 0.3384659 0 -0.1939468 0.3384659 0 -0.2773041 0.3384659 0 -0.3384659 0.3384659 0 -0.3885728 0.3384659 0 -0.4317928 0.3384659 0 -0.470214 0.3384659 0 -0.5050551 0.3384659 0 -0.5370987 0.3384659 0 -0.5668815 0.3384659 0 -0.5947903 0.3384659 0 -0.6211144 0.3384659 0 -0.6460766 0.3384659 0 -0.6698526 0.3384659 0 -0.6925839 0.3384659 0 -0.7143866 0.3384659 0 -0.7353569 0.3384659 0 -0.7555758 0.3384659 0 -0.7751122 0.3384659 0 -0.7940252 0.3384659 0 -0.8123661 0.3384659 0 -0.8301795 0.3384659 0 -0.8475045 0.3384659 0 -0.8643761 0.3384659 0 -0.880825 0.3384659 0 -0.8968787 0.3384659 0 -0.9125621 0.3384659 0 -0.9278974 0.3384659 0 -0.9429048 0.3384659 0 -0.9576028 0.3384659 0 -0.9720079 0.3384659 0 -0.9861357 0.3384659 0 -1 0.3384659 0 -0 0.3885728 0 -0.1939468 0.3885728 0 -0.2773041 0.3885728 0 -0.3384659 0.3885728 0 -0.3885728 0.3885728 0 -0.4317928 0.3885728 0 -0.470214 0.3885728 0 -0.5050551 0.3885728 0 -0.5370987 0.3885728 0 -0.5668815 0.3885728 0 -0.5947903 0.3885728 0 -0.6211144 0.3885728 0 -0.6460766 0.3885728 0 -0.6698526 0.3885728 0 -0.6925839 0.3885728 0 -0.7143866 0.3885728 0 -0.7353569 0.3885728 0 -0.7555758 0.3885728 0 -0.7751122 0.3885728 0 -0.7940252 0.3885728 0 -0.8123661 0.3885728 0 -0.8301795 0.3885728 0 -0.8475045 0.3885728 0 -0.8643761 0.3885728 0 -0.880825 0.3885728 0 -0.8968787 0.3885728 0 -0.9125621 0.3885728 0 -0.9278974 0.3885728 0 -0.9429048 0.3885728 0 -0.9576028 0.3885728 0 -0.9720079 0.3885728 0 -0.9861357 0.3885728 0 -1 0.3885728 0 -0 0.4317928 0 -0.1939468 0.4317928 0 -0.2773041 0.4317928 0 -0.3384659 0.4317928 0 -0.3885728 0.4317928 0 -0.4317928 0.4317928 0 -0.470214 0.4317928 0 -0.5050551 0.4317928 0 -0.5370987 0.4317928 0 -0.5668815 0.4317928 0 -0.5947903 0.4317928 0 -0.6211144 0.4317928 0 -0.6460766 0.4317928 0 -0.6698526 0.4317928 0 -0.6925839 0.4317928 0 -0.7143866 0.4317928 0 -0.7353569 0.4317928 0 -0.7555758 0.4317928 0 -0.7751122 0.4317928 0 -0.7940252 0.4317928 0 -0.8123661 0.4317928 0 -0.8301795 0.4317928 0 -0.8475045 0.4317928 0 -0.8643761 0.4317928 0 -0.880825 0.4317928 0 -0.8968787 0.4317928 0 -0.9125621 0.4317928 0 -0.9278974 0.4317928 0 -0.9429048 0.4317928 0 -0.9576028 0.4317928 0 -0.9720079 0.4317928 0 -0.9861357 0.4317928 0 -1 0.4317928 0 -0 0.470214 0 -0.1939468 0.470214 0 -0.2773041 0.470214 0 -0.3384659 0.470214 0 -0.3885728 0.470214 0 -0.4317928 0.470214 0 -0.470214 0.470214 0 -0.5050551 0.470214 0 -0.5370987 0.470214 0 -0.5668815 0.470214 0 -0.5947903 0.470214 0 -0.6211144 0.470214 0 -0.6460766 0.470214 0 -0.6698526 0.470214 0 -0.6925839 0.470214 0 -0.7143866 0.470214 0 -0.7353569 0.470214 0 -0.7555758 0.470214 0 -0.7751122 0.470214 0 -0.7940252 0.470214 0 -0.8123661 0.470214 0 -0.8301795 0.470214 0 -0.8475045 0.470214 0 -0.8643761 0.470214 0 -0.880825 0.470214 0 -0.8968787 0.470214 0 -0.9125621 0.470214 0 -0.9278974 0.470214 0 -0.9429048 0.470214 0 -0.9576028 0.470214 0 -0.9720079 0.470214 0 -0.9861357 0.470214 0 -1 0.470214 0 -0 0.5050551 0 -0.1939468 0.5050551 0 -0.2773041 0.5050551 0 -0.3384659 0.5050551 0 -0.3885728 0.5050551 0 -0.4317928 0.5050551 0 -0.470214 0.5050551 0 -0.5050551 0.5050551 0 -0.5370987 0.5050551 0 -0.5668815 0.5050551 0 -0.5947903 0.5050551 0 -0.6211144 0.5050551 0 -0.6460766 0.5050551 0 -0.6698526 0.5050551 0 -0.6925839 0.5050551 0 -0.7143866 0.5050551 0 -0.7353569 0.5050551 0 -0.7555758 0.5050551 0 -0.7751122 0.5050551 0 -0.7940252 0.5050551 0 -0.8123661 0.5050551 0 -0.8301795 0.5050551 0 -0.8475045 0.5050551 0 -0.8643761 0.5050551 0 -0.880825 0.5050551 0 -0.8968787 0.5050551 0 -0.9125621 0.5050551 0 -0.9278974 0.5050551 0 -0.9429048 0.5050551 0 -0.9576028 0.5050551 0 -0.9720079 0.5050551 0 -0.9861357 0.5050551 0 -1 0.5050551 0 -0 0.5370987 0 -0.1939468 0.5370987 0 -0.2773041 0.5370987 0 -0.3384659 0.5370987 0 -0.3885728 0.5370987 0 -0.4317928 0.5370987 0 -0.470214 0.5370987 0 -0.5050551 0.5370987 0 -0.5370987 0.5370987 0 -0.5668815 0.5370987 0 -0.5947903 0.5370987 0 -0.6211144 0.5370987 0 -0.6460766 0.5370987 0 -0.6698526 0.5370987 0 -0.6925839 0.5370987 0 -0.7143866 0.5370987 0 -0.7353569 0.5370987 0 -0.7555758 0.5370987 0 -0.7751122 0.5370987 0 -0.7940252 0.5370987 0 -0.8123661 0.5370987 0 -0.8301795 0.5370987 0 -0.8475045 0.5370987 0 -0.8643761 0.5370987 0 -0.880825 0.5370987 0 -0.8968787 0.5370987 0 -0.9125621 0.5370987 0 -0.9278974 0.5370987 0 -0.9429048 0.5370987 0 -0.9576028 0.5370987 0 -0.9720079 0.5370987 0 -0.9861357 0.5370987 0 -1 0.5370987 0 -0 0.5668815 0 -0.1939468 0.5668815 0 -0.2773041 0.5668815 0 -0.3384659 0.5668815 0 -0.3885728 0.5668815 0 -0.4317928 0.5668815 0 -0.470214 0.5668815 0 -0.5050551 0.5668815 0 -0.5370987 0.5668815 0 -0.5668815 0.5668815 0 -0.5947903 0.5668815 0 -0.6211144 0.5668815 0 -0.6460766 0.5668815 0 -0.6698526 0.5668815 0 -0.6925839 0.5668815 0 -0.7143866 0.5668815 0 -0.7353569 0.5668815 0 -0.7555758 0.5668815 0 -0.7751122 0.5668815 0 -0.7940252 0.5668815 0 -0.8123661 0.5668815 0 -0.8301795 0.5668815 0 -0.8475045 0.5668815 0 -0.8643761 0.5668815 0 -0.880825 0.5668815 0 -0.8968787 0.5668815 0 -0.9125621 0.5668815 0 -0.9278974 0.5668815 0 -0.9429048 0.5668815 0 -0.9576028 0.5668815 0 -0.9720079 0.5668815 0 -0.9861357 0.5668815 0 -1 0.5668815 0 -0 0.5947903 0 -0.1939468 0.5947903 0 -0.2773041 0.5947903 0 -0.3384659 0.5947903 0 -0.3885728 0.5947903 0 -0.4317928 0.5947903 0 -0.470214 0.5947903 0 -0.5050551 0.5947903 0 -0.5370987 0.5947903 0 -0.5668815 0.5947903 0 -0.5947903 0.5947903 0 -0.6211144 0.5947903 0 -0.6460766 0.5947903 0 -0.6698526 0.5947903 0 -0.6925839 0.5947903 0 -0.7143866 0.5947903 0 -0.7353569 0.5947903 0 -0.7555758 0.5947903 0 -0.7751122 0.5947903 0 -0.7940252 0.5947903 0 -0.8123661 0.5947903 0 -0.8301795 0.5947903 0 -0.8475045 0.5947903 0 -0.8643761 0.5947903 0 -0.880825 0.5947903 0 -0.8968787 0.5947903 0 -0.9125621 0.5947903 0 -0.9278974 0.5947903 0 -0.9429048 0.5947903 0 -0.9576028 0.5947903 0 -0.9720079 0.5947903 0 -0.9861357 0.5947903 0 -1 0.5947903 0 -0 0.6211144 0 -0.1939468 0.6211144 0 -0.2773041 0.6211144 0 -0.3384659 0.6211144 0 -0.3885728 0.6211144 0 -0.4317928 0.6211144 0 -0.470214 0.6211144 0 -0.5050551 0.6211144 0 -0.5370987 0.6211144 0 -0.5668815 0.6211144 0 -0.5947903 0.6211144 0 -0.6211144 0.6211144 0 -0.6460766 0.6211144 0 -0.6698526 0.6211144 0 -0.6925839 0.6211144 0 -0.7143866 0.6211144 0 -0.7353569 0.6211144 0 -0.7555758 0.6211144 0 -0.7751122 0.6211144 0 -0.7940252 0.6211144 0 -0.8123661 0.6211144 0 -0.8301795 0.6211144 0 -0.8475045 0.6211144 0 -0.8643761 0.6211144 0 -0.880825 0.6211144 0 -0.8968787 0.6211144 0 -0.9125621 0.6211144 0 -0.9278974 0.6211144 0 -0.9429048 0.6211144 0 -0.9576028 0.6211144 0 -0.9720079 0.6211144 0 -0.9861357 0.6211144 0 -1 0.6211144 0 -0 0.6460766 0 -0.1939468 0.6460766 0 -0.2773041 0.6460766 0 -0.3384659 0.6460766 0 -0.3885728 0.6460766 0 -0.4317928 0.6460766 0 -0.470214 0.6460766 0 -0.5050551 0.6460766 0 -0.5370987 0.6460766 0 -0.5668815 0.6460766 0 -0.5947903 0.6460766 0 -0.6211144 0.6460766 0 -0.6460766 0.6460766 0 -0.6698526 0.6460766 0 -0.6925839 0.6460766 0 -0.7143866 0.6460766 0 -0.7353569 0.6460766 0 -0.7555758 0.6460766 0 -0.7751122 0.6460766 0 -0.7940252 0.6460766 0 -0.8123661 0.6460766 0 -0.8301795 0.6460766 0 -0.8475045 0.6460766 0 -0.8643761 0.6460766 0 -0.880825 0.6460766 0 -0.8968787 0.6460766 0 -0.9125621 0.6460766 0 -0.9278974 0.6460766 0 -0.9429048 0.6460766 0 -0.9576028 0.6460766 0 -0.9720079 0.6460766 0 -0.9861357 0.6460766 0 -1 0.6460766 0 -0 0.6698526 0 -0.1939468 0.6698526 0 -0.2773041 0.6698526 0 -0.3384659 0.6698526 0 -0.3885728 0.6698526 0 -0.4317928 0.6698526 0 -0.470214 0.6698526 0 -0.5050551 0.6698526 0 -0.5370987 0.6698526 0 -0.5668815 0.6698526 0 -0.5947903 0.6698526 0 -0.6211144 0.6698526 0 -0.6460766 0.6698526 0 -0.6698526 0.6698526 0 -0.6925839 0.6698526 0 -0.7143866 0.6698526 0 -0.7353569 0.6698526 0 -0.7555758 0.6698526 0 -0.7751122 0.6698526 0 -0.7940252 0.6698526 0 -0.8123661 0.6698526 0 -0.8301795 0.6698526 0 -0.8475045 0.6698526 0 -0.8643761 0.6698526 0 -0.880825 0.6698526 0 -0.8968787 0.6698526 0 -0.9125621 0.6698526 0 -0.9278974 0.6698526 0 -0.9429048 0.6698526 0 -0.9576028 0.6698526 0 -0.9720079 0.6698526 0 -0.9861357 0.6698526 0 -1 0.6698526 0 -0 0.6925839 0 -0.1939468 0.6925839 0 -0.2773041 0.6925839 0 -0.3384659 0.6925839 0 -0.3885728 0.6925839 0 -0.4317928 0.6925839 0 -0.470214 0.6925839 0 -0.5050551 0.6925839 0 -0.5370987 0.6925839 0 -0.5668815 0.6925839 0 -0.5947903 0.6925839 0 -0.6211144 0.6925839 0 -0.6460766 0.6925839 0 -0.6698526 0.6925839 0 -0.6925839 0.6925839 0 -0.7143866 0.6925839 0 -0.7353569 0.6925839 0 -0.7555758 0.6925839 0 -0.7751122 0.6925839 0 -0.7940252 0.6925839 0 -0.8123661 0.6925839 0 -0.8301795 0.6925839 0 -0.8475045 0.6925839 0 -0.8643761 0.6925839 0 -0.880825 0.6925839 0 -0.8968787 0.6925839 0 -0.9125621 0.6925839 0 -0.9278974 0.6925839 0 -0.9429048 0.6925839 0 -0.9576028 0.6925839 0 -0.9720079 0.6925839 0 -0.9861357 0.6925839 0 -1 0.6925839 0 -0 0.7143866 0 -0.1939468 0.7143866 0 -0.2773041 0.7143866 0 -0.3384659 0.7143866 0 -0.3885728 0.7143866 0 -0.4317928 0.7143866 0 -0.470214 0.7143866 0 -0.5050551 0.7143866 0 -0.5370987 0.7143866 0 -0.5668815 0.7143866 0 -0.5947903 0.7143866 0 -0.6211144 0.7143866 0 -0.6460766 0.7143866 0 -0.6698526 0.7143866 0 -0.6925839 0.7143866 0 -0.7143866 0.7143866 0 -0.7353569 0.7143866 0 -0.7555758 0.7143866 0 -0.7751122 0.7143866 0 -0.7940252 0.7143866 0 -0.8123661 0.7143866 0 -0.8301795 0.7143866 0 -0.8475045 0.7143866 0 -0.8643761 0.7143866 0 -0.880825 0.7143866 0 -0.8968787 0.7143866 0 -0.9125621 0.7143866 0 -0.9278974 0.7143866 0 -0.9429048 0.7143866 0 -0.9576028 0.7143866 0 -0.9720079 0.7143866 0 -0.9861357 0.7143866 0 -1 0.7143866 0 -0 0.7353569 0 -0.1939468 0.7353569 0 -0.2773041 0.7353569 0 -0.3384659 0.7353569 0 -0.3885728 0.7353569 0 -0.4317928 0.7353569 0 -0.470214 0.7353569 0 -0.5050551 0.7353569 0 -0.5370987 0.7353569 0 -0.5668815 0.7353569 0 -0.5947903 0.7353569 0 -0.6211144 0.7353569 0 -0.6460766 0.7353569 0 -0.6698526 0.7353569 0 -0.6925839 0.7353569 0 -0.7143866 0.7353569 0 -0.7353569 0.7353569 0 -0.7555758 0.7353569 0 -0.7751122 0.7353569 0 -0.7940252 0.7353569 0 -0.8123661 0.7353569 0 -0.8301795 0.7353569 0 -0.8475045 0.7353569 0 -0.8643761 0.7353569 0 -0.880825 0.7353569 0 -0.8968787 0.7353569 0 -0.9125621 0.7353569 0 -0.9278974 0.7353569 0 -0.9429048 0.7353569 0 -0.9576028 0.7353569 0 -0.9720079 0.7353569 0 -0.9861357 0.7353569 0 -1 0.7353569 0 -0 0.7555758 0 -0.1939468 0.7555758 0 -0.2773041 0.7555758 0 -0.3384659 0.7555758 0 -0.3885728 0.7555758 0 -0.4317928 0.7555758 0 -0.470214 0.7555758 0 -0.5050551 0.7555758 0 -0.5370987 0.7555758 0 -0.5668815 0.7555758 0 -0.5947903 0.7555758 0 -0.6211144 0.7555758 0 -0.6460766 0.7555758 0 -0.6698526 0.7555758 0 -0.6925839 0.7555758 0 -0.7143866 0.7555758 0 -0.7353569 0.7555758 0 -0.7555758 0.7555758 0 -0.7751122 0.7555758 0 -0.7940252 0.7555758 0 -0.8123661 0.7555758 0 -0.8301795 0.7555758 0 -0.8475045 0.7555758 0 -0.8643761 0.7555758 0 -0.880825 0.7555758 0 -0.8968787 0.7555758 0 -0.9125621 0.7555758 0 -0.9278974 0.7555758 0 -0.9429048 0.7555758 0 -0.9576028 0.7555758 0 -0.9720079 0.7555758 0 -0.9861357 0.7555758 0 -1 0.7555758 0 -0 0.7751122 0 -0.1939468 0.7751122 0 -0.2773041 0.7751122 0 -0.3384659 0.7751122 0 -0.3885728 0.7751122 0 -0.4317928 0.7751122 0 -0.470214 0.7751122 0 -0.5050551 0.7751122 0 -0.5370987 0.7751122 0 -0.5668815 0.7751122 0 -0.5947903 0.7751122 0 -0.6211144 0.7751122 0 -0.6460766 0.7751122 0 -0.6698526 0.7751122 0 -0.6925839 0.7751122 0 -0.7143866 0.7751122 0 -0.7353569 0.7751122 0 -0.7555758 0.7751122 0 -0.7751122 0.7751122 0 -0.7940252 0.7751122 0 -0.8123661 0.7751122 0 -0.8301795 0.7751122 0 -0.8475045 0.7751122 0 -0.8643761 0.7751122 0 -0.880825 0.7751122 0 -0.8968787 0.7751122 0 -0.9125621 0.7751122 0 -0.9278974 0.7751122 0 -0.9429048 0.7751122 0 -0.9576028 0.7751122 0 -0.9720079 0.7751122 0 -0.9861357 0.7751122 0 -1 0.7751122 0 -0 0.7940252 0 -0.1939468 0.7940252 0 -0.2773041 0.7940252 0 -0.3384659 0.7940252 0 -0.3885728 0.7940252 0 -0.4317928 0.7940252 0 -0.470214 0.7940252 0 -0.5050551 0.7940252 0 -0.5370987 0.7940252 0 -0.5668815 0.7940252 0 -0.5947903 0.7940252 0 -0.6211144 0.7940252 0 -0.6460766 0.7940252 0 -0.6698526 0.7940252 0 -0.6925839 0.7940252 0 -0.7143866 0.7940252 0 -0.7353569 0.7940252 0 -0.7555758 0.7940252 0 -0.7751122 0.7940252 0 -0.7940252 0.7940252 0 -0.8123661 0.7940252 0 -0.8301795 0.7940252 0 -0.8475045 0.7940252 0 -0.8643761 0.7940252 0 -0.880825 0.7940252 0 -0.8968787 0.7940252 0 -0.9125621 0.7940252 0 -0.9278974 0.7940252 0 -0.9429048 0.7940252 0 -0.9576028 0.7940252 0 -0.9720079 0.7940252 0 -0.9861357 0.7940252 0 -1 0.7940252 0 -0 0.8123661 0 -0.1939468 0.8123661 0 -0.2773041 0.8123661 0 -0.3384659 0.8123661 0 -0.3885728 0.8123661 0 -0.4317928 0.8123661 0 -0.470214 0.8123661 0 -0.5050551 0.8123661 0 -0.5370987 0.8123661 0 -0.5668815 0.8123661 0 -0.5947903 0.8123661 0 -0.6211144 0.8123661 0 -0.6460766 0.8123661 0 -0.6698526 0.8123661 0 -0.6925839 0.8123661 0 -0.7143866 0.8123661 0 -0.7353569 0.8123661 0 -0.7555758 0.8123661 0 -0.7751122 0.8123661 0 -0.7940252 0.8123661 0 -0.8123661 0.8123661 0 -0.8301795 0.8123661 0 -0.8475045 0.8123661 0 -0.8643761 0.8123661 0 -0.880825 0.8123661 0 -0.8968787 0.8123661 0 -0.9125621 0.8123661 0 -0.9278974 0.8123661 0 -0.9429048 0.8123661 0 -0.9576028 0.8123661 0 -0.9720079 0.8123661 0 -0.9861357 0.8123661 0 -1 0.8123661 0 -0 0.8301795 0 -0.1939468 0.8301795 0 -0.2773041 0.8301795 0 -0.3384659 0.8301795 0 -0.3885728 0.8301795 0 -0.4317928 0.8301795 0 -0.470214 0.8301795 0 -0.5050551 0.8301795 0 -0.5370987 0.8301795 0 -0.5668815 0.8301795 0 -0.5947903 0.8301795 0 -0.6211144 0.8301795 0 -0.6460766 0.8301795 0 -0.6698526 0.8301795 0 -0.6925839 0.8301795 0 -0.7143866 0.8301795 0 -0.7353569 0.8301795 0 -0.7555758 0.8301795 0 -0.7751122 0.8301795 0 -0.7940252 0.8301795 0 -0.8123661 0.8301795 0 -0.8301795 0.8301795 0 -0.8475045 0.8301795 0 -0.8643761 0.8301795 0 -0.880825 0.8301795 0 -0.8968787 0.8301795 0 -0.9125621 0.8301795 0 -0.9278974 0.8301795 0 -0.9429048 0.8301795 0 -0.9576028 0.8301795 0 -0.9720079 0.8301795 0 -0.9861357 0.8301795 0 -1 0.8301795 0 -0 0.8475045 0 -0.1939468 0.8475045 0 -0.2773041 0.8475045 0 -0.3384659 0.8475045 0 -0.3885728 0.8475045 0 -0.4317928 0.8475045 0 -0.470214 0.8475045 0 -0.5050551 0.8475045 0 -0.5370987 0.8475045 0 -0.5668815 0.8475045 0 -0.5947903 0.8475045 0 -0.6211144 0.8475045 0 -0.6460766 0.8475045 0 -0.6698526 0.8475045 0 -0.6925839 0.8475045 0 -0.7143866 0.8475045 0 -0.7353569 0.8475045 0 -0.7555758 0.8475045 0 -0.7751122 0.8475045 0 -0.7940252 0.8475045 0 -0.8123661 0.8475045 0 -0.8301795 0.8475045 0 -0.8475045 0.8475045 0 -0.8643761 0.8475045 0 -0.880825 0.8475045 0 -0.8968787 0.8475045 0 -0.9125621 0.8475045 0 -0.9278974 0.8475045 0 -0.9429048 0.8475045 0 -0.9576028 0.8475045 0 -0.9720079 0.8475045 0 -0.9861357 0.8475045 0 -1 0.8475045 0 -0 0.8643761 0 -0.1939468 0.8643761 0 -0.2773041 0.8643761 0 -0.3384659 0.8643761 0 -0.3885728 0.8643761 0 -0.4317928 0.8643761 0 -0.470214 0.8643761 0 -0.5050551 0.8643761 0 -0.5370987 0.8643761 0 -0.5668815 0.8643761 0 -0.5947903 0.8643761 0 -0.6211144 0.8643761 0 -0.6460766 0.8643761 0 -0.6698526 0.8643761 0 -0.6925839 0.8643761 0 -0.7143866 0.8643761 0 -0.7353569 0.8643761 0 -0.7555758 0.8643761 0 -0.7751122 0.8643761 0 -0.7940252 0.8643761 0 -0.8123661 0.8643761 0 -0.8301795 0.8643761 0 -0.8475045 0.8643761 0 -0.8643761 0.8643761 0 -0.880825 0.8643761 0 -0.8968787 0.8643761 0 -0.9125621 0.8643761 0 -0.9278974 0.8643761 0 -0.9429048 0.8643761 0 -0.9576028 0.8643761 0 -0.9720079 0.8643761 0 -0.9861357 0.8643761 0 -1 0.8643761 0 -0 0.880825 0 -0.1939468 0.880825 0 -0.2773041 0.880825 0 -0.3384659 0.880825 0 -0.3885728 0.880825 0 -0.4317928 0.880825 0 -0.470214 0.880825 0 -0.5050551 0.880825 0 -0.5370987 0.880825 0 -0.5668815 0.880825 0 -0.5947903 0.880825 0 -0.6211144 0.880825 0 -0.6460766 0.880825 0 -0.6698526 0.880825 0 -0.6925839 0.880825 0 -0.7143866 0.880825 0 -0.7353569 0.880825 0 -0.7555758 0.880825 0 -0.7751122 0.880825 0 -0.7940252 0.880825 0 -0.8123661 0.880825 0 -0.8301795 0.880825 0 -0.8475045 0.880825 0 -0.8643761 0.880825 0 -0.880825 0.880825 0 -0.8968787 0.880825 0 -0.9125621 0.880825 0 -0.9278974 0.880825 0 -0.9429048 0.880825 0 -0.9576028 0.880825 0 -0.9720079 0.880825 0 -0.9861357 0.880825 0 -1 0.880825 0 -0 0.8968787 0 -0.1939468 0.8968787 0 -0.2773041 0.8968787 0 -0.3384659 0.8968787 0 -0.3885728 0.8968787 0 -0.4317928 0.8968787 0 -0.470214 0.8968787 0 -0.5050551 0.8968787 0 -0.5370987 0.8968787 0 -0.5668815 0.8968787 0 -0.5947903 0.8968787 0 -0.6211144 0.8968787 0 -0.6460766 0.8968787 0 -0.6698526 0.8968787 0 -0.6925839 0.8968787 0 -0.7143866 0.8968787 0 -0.7353569 0.8968787 0 -0.7555758 0.8968787 0 -0.7751122 0.8968787 0 -0.7940252 0.8968787 0 -0.8123661 0.8968787 0 -0.8301795 0.8968787 0 -0.8475045 0.8968787 0 -0.8643761 0.8968787 0 -0.880825 0.8968787 0 -0.8968787 0.8968787 0 -0.9125621 0.8968787 0 -0.9278974 0.8968787 0 -0.9429048 0.8968787 0 -0.9576028 0.8968787 0 -0.9720079 0.8968787 0 -0.9861357 0.8968787 0 -1 0.8968787 0 -0 0.9125621 0 -0.1939468 0.9125621 0 -0.2773041 0.9125621 0 -0.3384659 0.9125621 0 -0.3885728 0.9125621 0 -0.4317928 0.9125621 0 -0.470214 0.9125621 0 -0.5050551 0.9125621 0 -0.5370987 0.9125621 0 -0.5668815 0.9125621 0 -0.5947903 0.9125621 0 -0.6211144 0.9125621 0 -0.6460766 0.9125621 0 -0.6698526 0.9125621 0 -0.6925839 0.9125621 0 -0.7143866 0.9125621 0 -0.7353569 0.9125621 0 -0.7555758 0.9125621 0 -0.7751122 0.9125621 0 -0.7940252 0.9125621 0 -0.8123661 0.9125621 0 -0.8301795 0.9125621 0 -0.8475045 0.9125621 0 -0.8643761 0.9125621 0 -0.880825 0.9125621 0 -0.8968787 0.9125621 0 -0.9125621 0.9125621 0 -0.9278974 0.9125621 0 -0.9429048 0.9125621 0 -0.9576028 0.9125621 0 -0.9720079 0.9125621 0 -0.9861357 0.9125621 0 -1 0.9125621 0 -0 0.9278974 0 -0.1939468 0.9278974 0 -0.2773041 0.9278974 0 -0.3384659 0.9278974 0 -0.3885728 0.9278974 0 -0.4317928 0.9278974 0 -0.470214 0.9278974 0 -0.5050551 0.9278974 0 -0.5370987 0.9278974 0 -0.5668815 0.9278974 0 -0.5947903 0.9278974 0 -0.6211144 0.9278974 0 -0.6460766 0.9278974 0 -0.6698526 0.9278974 0 -0.6925839 0.9278974 0 -0.7143866 0.9278974 0 -0.7353569 0.9278974 0 -0.7555758 0.9278974 0 -0.7751122 0.9278974 0 -0.7940252 0.9278974 0 -0.8123661 0.9278974 0 -0.8301795 0.9278974 0 -0.8475045 0.9278974 0 -0.8643761 0.9278974 0 -0.880825 0.9278974 0 -0.8968787 0.9278974 0 -0.9125621 0.9278974 0 -0.9278974 0.9278974 0 -0.9429048 0.9278974 0 -0.9576028 0.9278974 0 -0.9720079 0.9278974 0 -0.9861357 0.9278974 0 -1 0.9278974 0 -0 0.9429048 0 -0.1939468 0.9429048 0 -0.2773041 0.9429048 0 -0.3384659 0.9429048 0 -0.3885728 0.9429048 0 -0.4317928 0.9429048 0 -0.470214 0.9429048 0 -0.5050551 0.9429048 0 -0.5370987 0.9429048 0 -0.5668815 0.9429048 0 -0.5947903 0.9429048 0 -0.6211144 0.9429048 0 -0.6460766 0.9429048 0 -0.6698526 0.9429048 0 -0.6925839 0.9429048 0 -0.7143866 0.9429048 0 -0.7353569 0.9429048 0 -0.7555758 0.9429048 0 -0.7751122 0.9429048 0 -0.7940252 0.9429048 0 -0.8123661 0.9429048 0 -0.8301795 0.9429048 0 -0.8475045 0.9429048 0 -0.8643761 0.9429048 0 -0.880825 0.9429048 0 -0.8968787 0.9429048 0 -0.9125621 0.9429048 0 -0.9278974 0.9429048 0 -0.9429048 0.9429048 0 -0.9576028 0.9429048 0 -0.9720079 0.9429048 0 -0.9861357 0.9429048 0 -1 0.9429048 0 -0 0.9576028 0 -0.1939468 0.9576028 0 -0.2773041 0.9576028 0 -0.3384659 0.9576028 0 -0.3885728 0.9576028 0 -0.4317928 0.9576028 0 -0.470214 0.9576028 0 -0.5050551 0.9576028 0 -0.5370987 0.9576028 0 -0.5668815 0.9576028 0 -0.5947903 0.9576028 0 -0.6211144 0.9576028 0 -0.6460766 0.9576028 0 -0.6698526 0.9576028 0 -0.6925839 0.9576028 0 -0.7143866 0.9576028 0 -0.7353569 0.9576028 0 -0.7555758 0.9576028 0 -0.7751122 0.9576028 0 -0.7940252 0.9576028 0 -0.8123661 0.9576028 0 -0.8301795 0.9576028 0 -0.8475045 0.9576028 0 -0.8643761 0.9576028 0 -0.880825 0.9576028 0 -0.8968787 0.9576028 0 -0.9125621 0.9576028 0 -0.9278974 0.9576028 0 -0.9429048 0.9576028 0 -0.9576028 0.9576028 0 -0.9720079 0.9576028 0 -0.9861357 0.9576028 0 -1 0.9576028 0 -0 0.9720079 0 -0.1939468 0.9720079 0 -0.2773041 0.9720079 0 -0.3384659 0.9720079 0 -0.3885728 0.9720079 0 -0.4317928 0.9720079 0 -0.470214 0.9720079 0 -0.5050551 0.9720079 0 -0.5370987 0.9720079 0 -0.5668815 0.9720079 0 -0.5947903 0.9720079 0 -0.6211144 0.9720079 0 -0.6460766 0.9720079 0 -0.6698526 0.9720079 0 -0.6925839 0.9720079 0 -0.7143866 0.9720079 0 -0.7353569 0.9720079 0 -0.7555758 0.9720079 0 -0.7751122 0.9720079 0 -0.7940252 0.9720079 0 -0.8123661 0.9720079 0 -0.8301795 0.9720079 0 -0.8475045 0.9720079 0 -0.8643761 0.9720079 0 -0.880825 0.9720079 0 -0.8968787 0.9720079 0 -0.9125621 0.9720079 0 -0.9278974 0.9720079 0 -0.9429048 0.9720079 0 -0.9576028 0.9720079 0 -0.9720079 0.9720079 0 -0.9861357 0.9720079 0 -1 0.9720079 0 -0 0.9861357 0 -0.1939468 0.9861357 0 -0.2773041 0.9861357 0 -0.3384659 0.9861357 0 -0.3885728 0.9861357 0 -0.4317928 0.9861357 0 -0.470214 0.9861357 0 -0.5050551 0.9861357 0 -0.5370987 0.9861357 0 -0.5668815 0.9861357 0 -0.5947903 0.9861357 0 -0.6211144 0.9861357 0 -0.6460766 0.9861357 0 -0.6698526 0.9861357 0 -0.6925839 0.9861357 0 -0.7143866 0.9861357 0 -0.7353569 0.9861357 0 -0.7555758 0.9861357 0 -0.7751122 0.9861357 0 -0.7940252 0.9861357 0 -0.8123661 0.9861357 0 -0.8301795 0.9861357 0 -0.8475045 0.9861357 0 -0.8643761 0.9861357 0 -0.880825 0.9861357 0 -0.8968787 0.9861357 0 -0.9125621 0.9861357 0 -0.9278974 0.9861357 0 -0.9429048 0.9861357 0 -0.9576028 0.9861357 0 -0.9720079 0.9861357 0 -0.9861357 0.9861357 0 -1 0.9861357 0 -0 1 0 -0.1939468 1 0 -0.2773041 1 0 -0.3384659 1 0 -0.3885728 1 0 -0.4317928 1 0 -0.470214 1 0 -0.5050551 1 0 -0.5370987 1 0 -0.5668815 1 0 -0.5947903 1 0 -0.6211144 1 0 -0.6460766 1 0 -0.6698526 1 0 -0.6925839 1 0 -0.7143866 1 0 -0.7353569 1 0 -0.7555758 1 0 -0.7751122 1 0 -0.7940252 1 0 -0.8123661 1 0 -0.8301795 1 0 -0.8475045 1 0 -0.8643761 1 0 -0.880825 1 0 -0.8968787 1 0 -0.9125621 1 0 -0.9278974 1 0 -0.9429048 1 0 -0.9576028 1 0 -0.9720079 1 0 -0.9861357 1 0 -1 1 0 -0 0 0.1939468 -0.1939468 0 0.1939468 -0.2773041 0 0.1939468 -0.3384659 0 0.1939468 -0.3885728 0 0.1939468 -0.4317928 0 0.1939468 -0.470214 0 0.1939468 -0.5050551 0 0.1939468 -0.5370987 0 0.1939468 -0.5668815 0 0.1939468 -0.5947903 0 0.1939468 -0.6211144 0 0.1939468 -0.6460766 0 0.1939468 -0.6698526 0 0.1939468 -0.6925839 0 0.1939468 -0.7143866 0 0.1939468 -0.7353569 0 0.1939468 -0.7555758 0 0.1939468 -0.7751122 0 0.1939468 -0.7940252 0 0.1939468 -0.8123661 0 0.1939468 -0.8301795 0 0.1939468 -0.8475045 0 0.1939468 -0.8643761 0 0.1939468 -0.880825 0 0.1939468 -0.8968787 0 0.1939468 -0.9125621 0 0.1939468 -0.9278974 0 0.1939468 -0.9429048 0 0.1939468 -0.9576028 0 0.1939468 -0.9720079 0 0.1939468 -0.9861357 0 0.1939468 -1 0 0.1939468 -0 0.1939468 0.1939468 -0.1939468 0.1939468 0.1939468 -0.2773041 0.1939468 0.1939468 -0.3384659 0.1939468 0.1939468 -0.3885728 0.1939468 0.1939468 -0.4317928 0.1939468 0.1939468 -0.470214 0.1939468 0.1939468 -0.5050551 0.1939468 0.1939468 -0.5370987 0.1939468 0.1939468 -0.5668815 0.1939468 0.1939468 -0.5947903 0.1939468 0.1939468 -0.6211144 0.1939468 0.1939468 -0.6460766 0.1939468 0.1939468 -0.6698526 0.1939468 0.1939468 -0.6925839 0.1939468 0.1939468 -0.7143866 0.1939468 0.1939468 -0.7353569 0.1939468 0.1939468 -0.7555758 0.1939468 0.1939468 -0.7751122 0.1939468 0.1939468 -0.7940252 0.1939468 0.1939468 -0.8123661 0.1939468 0.1939468 -0.8301795 0.1939468 0.1939468 -0.8475045 0.1939468 0.1939468 -0.8643761 0.1939468 0.1939468 -0.880825 0.1939468 0.1939468 -0.8968787 0.1939468 0.1939468 -0.9125621 0.1939468 0.1939468 -0.9278974 0.1939468 0.1939468 -0.9429048 0.1939468 0.1939468 -0.9576028 0.1939468 0.1939468 -0.9720079 0.1939468 0.1939468 -0.9861357 0.1939468 0.1939468 -1 0.1939468 0.1939468 -0 0.2773041 0.1939468 -0.1939468 0.2773041 0.1939468 -0.2773041 0.2773041 0.1939468 -0.3384659 0.2773041 0.1939468 -0.3885728 0.2773041 0.1939468 -0.4317928 0.2773041 0.1939468 -0.470214 0.2773041 0.1939468 -0.5050551 0.2773041 0.1939468 -0.5370987 0.2773041 0.1939468 -0.5668815 0.2773041 0.1939468 -0.5947903 0.2773041 0.1939468 -0.6211144 0.2773041 0.1939468 -0.6460766 0.2773041 0.1939468 -0.6698526 0.2773041 0.1939468 -0.6925839 0.2773041 0.1939468 -0.7143866 0.2773041 0.1939468 -0.7353569 0.2773041 0.1939468 -0.7555758 0.2773041 0.1939468 -0.7751122 0.2773041 0.1939468 -0.7940252 0.2773041 0.1939468 -0.8123661 0.2773041 0.1939468 -0.8301795 0.2773041 0.1939468 -0.8475045 0.2773041 0.1939468 -0.8643761 0.2773041 0.1939468 -0.880825 0.2773041 0.1939468 -0.8968787 0.2773041 0.1939468 -0.9125621 0.2773041 0.1939468 -0.9278974 0.2773041 0.1939468 -0.9429048 0.2773041 0.1939468 -0.9576028 0.2773041 0.1939468 -0.9720079 0.2773041 0.1939468 -0.9861357 0.2773041 0.1939468 -1 0.2773041 0.1939468 -0 0.3384659 0.1939468 -0.1939468 0.3384659 0.1939468 -0.2773041 0.3384659 0.1939468 -0.3384659 0.3384659 0.1939468 -0.3885728 0.3384659 0.1939468 -0.4317928 0.3384659 0.1939468 -0.470214 0.3384659 0.1939468 -0.5050551 0.3384659 0.1939468 -0.5370987 0.3384659 0.1939468 -0.5668815 0.3384659 0.1939468 -0.5947903 0.3384659 0.1939468 -0.6211144 0.3384659 0.1939468 -0.6460766 0.3384659 0.1939468 -0.6698526 0.3384659 0.1939468 -0.6925839 0.3384659 0.1939468 -0.7143866 0.3384659 0.1939468 -0.7353569 0.3384659 0.1939468 -0.7555758 0.3384659 0.1939468 -0.7751122 0.3384659 0.1939468 -0.7940252 0.3384659 0.1939468 -0.8123661 0.3384659 0.1939468 -0.8301795 0.3384659 0.1939468 -0.8475045 0.3384659 0.1939468 -0.8643761 0.3384659 0.1939468 -0.880825 0.3384659 0.1939468 -0.8968787 0.3384659 0.1939468 -0.9125621 0.3384659 0.1939468 -0.9278974 0.3384659 0.1939468 -0.9429048 0.3384659 0.1939468 -0.9576028 0.3384659 0.1939468 -0.9720079 0.3384659 0.1939468 -0.9861357 0.3384659 0.1939468 -1 0.3384659 0.1939468 -0 0.3885728 0.1939468 -0.1939468 0.3885728 0.1939468 -0.2773041 0.3885728 0.1939468 -0.3384659 0.3885728 0.1939468 -0.3885728 0.3885728 0.1939468 -0.4317928 0.3885728 0.1939468 -0.470214 0.3885728 0.1939468 -0.5050551 0.3885728 0.1939468 -0.5370987 0.3885728 0.1939468 -0.5668815 0.3885728 0.1939468 -0.5947903 0.3885728 0.1939468 -0.6211144 0.3885728 0.1939468 -0.6460766 0.3885728 0.1939468 -0.6698526 0.3885728 0.1939468 -0.6925839 0.3885728 0.1939468 -0.7143866 0.3885728 0.1939468 -0.7353569 0.3885728 0.1939468 -0.7555758 0.3885728 0.1939468 -0.7751122 0.3885728 0.1939468 -0.7940252 0.3885728 0.1939468 -0.8123661 0.3885728 0.1939468 -0.8301795 0.3885728 0.1939468 -0.8475045 0.3885728 0.1939468 -0.8643761 0.3885728 0.1939468 -0.880825 0.3885728 0.1939468 -0.8968787 0.3885728 0.1939468 -0.9125621 0.3885728 0.1939468 -0.9278974 0.3885728 0.1939468 -0.9429048 0.3885728 0.1939468 -0.9576028 0.3885728 0.1939468 -0.9720079 0.3885728 0.1939468 -0.9861357 0.3885728 0.1939468 -1 0.3885728 0.1939468 -0 0.4317928 0.1939468 -0.1939468 0.4317928 0.1939468 -0.2773041 0.4317928 0.1939468 -0.3384659 0.4317928 0.1939468 -0.3885728 0.4317928 0.1939468 -0.4317928 0.4317928 0.1939468 -0.470214 0.4317928 0.1939468 -0.5050551 0.4317928 0.1939468 -0.5370987 0.4317928 0.1939468 -0.5668815 0.4317928 0.1939468 -0.5947903 0.4317928 0.1939468 -0.6211144 0.4317928 0.1939468 -0.6460766 0.4317928 0.1939468 -0.6698526 0.4317928 0.1939468 -0.6925839 0.4317928 0.1939468 -0.7143866 0.4317928 0.1939468 -0.7353569 0.4317928 0.1939468 -0.7555758 0.4317928 0.1939468 -0.7751122 0.4317928 0.1939468 -0.7940252 0.4317928 0.1939468 -0.8123661 0.4317928 0.1939468 -0.8301795 0.4317928 0.1939468 -0.8475045 0.4317928 0.1939468 -0.8643761 0.4317928 0.1939468 -0.880825 0.4317928 0.1939468 -0.8968787 0.4317928 0.1939468 -0.9125621 0.4317928 0.1939468 -0.9278974 0.4317928 0.1939468 -0.9429048 0.4317928 0.1939468 -0.9576028 0.4317928 0.1939468 -0.9720079 0.4317928 0.1939468 -0.9861357 0.4317928 0.1939468 -1 0.4317928 0.1939468 -0 0.470214 0.1939468 -0.1939468 0.470214 0.1939468 -0.2773041 0.470214 0.1939468 -0.3384659 0.470214 0.1939468 -0.3885728 0.470214 0.1939468 -0.4317928 0.470214 0.1939468 -0.470214 0.470214 0.1939468 -0.5050551 0.470214 0.1939468 -0.5370987 0.470214 0.1939468 -0.5668815 0.470214 0.1939468 -0.5947903 0.470214 0.1939468 -0.6211144 0.470214 0.1939468 -0.6460766 0.470214 0.1939468 -0.6698526 0.470214 0.1939468 -0.6925839 0.470214 0.1939468 -0.7143866 0.470214 0.1939468 -0.7353569 0.470214 0.1939468 -0.7555758 0.470214 0.1939468 -0.7751122 0.470214 0.1939468 -0.7940252 0.470214 0.1939468 -0.8123661 0.470214 0.1939468 -0.8301795 0.470214 0.1939468 -0.8475045 0.470214 0.1939468 -0.8643761 0.470214 0.1939468 -0.880825 0.470214 0.1939468 -0.8968787 0.470214 0.1939468 -0.9125621 0.470214 0.1939468 -0.9278974 0.470214 0.1939468 -0.9429048 0.470214 0.1939468 -0.9576028 0.470214 0.1939468 -0.9720079 0.470214 0.1939468 -0.9861357 0.470214 0.1939468 -1 0.470214 0.1939468 -0 0.5050551 0.1939468 -0.1939468 0.5050551 0.1939468 -0.2773041 0.5050551 0.1939468 -0.3384659 0.5050551 0.1939468 -0.3885728 0.5050551 0.1939468 -0.4317928 0.5050551 0.1939468 -0.470214 0.5050551 0.1939468 -0.5050551 0.5050551 0.1939468 -0.5370987 0.5050551 0.1939468 -0.5668815 0.5050551 0.1939468 -0.5947903 0.5050551 0.1939468 -0.6211144 0.5050551 0.1939468 -0.6460766 0.5050551 0.1939468 -0.6698526 0.5050551 0.1939468 -0.6925839 0.5050551 0.1939468 -0.7143866 0.5050551 0.1939468 -0.7353569 0.5050551 0.1939468 -0.7555758 0.5050551 0.1939468 -0.7751122 0.5050551 0.1939468 -0.7940252 0.5050551 0.1939468 -0.8123661 0.5050551 0.1939468 -0.8301795 0.5050551 0.1939468 -0.8475045 0.5050551 0.1939468 -0.8643761 0.5050551 0.1939468 -0.880825 0.5050551 0.1939468 -0.8968787 0.5050551 0.1939468 -0.9125621 0.5050551 0.1939468 -0.9278974 0.5050551 0.1939468 -0.9429048 0.5050551 0.1939468 -0.9576028 0.5050551 0.1939468 -0.9720079 0.5050551 0.1939468 -0.9861357 0.5050551 0.1939468 -1 0.5050551 0.1939468 -0 0.5370987 0.1939468 -0.1939468 0.5370987 0.1939468 -0.2773041 0.5370987 0.1939468 -0.3384659 0.5370987 0.1939468 -0.3885728 0.5370987 0.1939468 -0.4317928 0.5370987 0.1939468 -0.470214 0.5370987 0.1939468 -0.5050551 0.5370987 0.1939468 -0.5370987 0.5370987 0.1939468 -0.5668815 0.5370987 0.1939468 -0.5947903 0.5370987 0.1939468 -0.6211144 0.5370987 0.1939468 -0.6460766 0.5370987 0.1939468 -0.6698526 0.5370987 0.1939468 -0.6925839 0.5370987 0.1939468 -0.7143866 0.5370987 0.1939468 -0.7353569 0.5370987 0.1939468 -0.7555758 0.5370987 0.1939468 -0.7751122 0.5370987 0.1939468 -0.7940252 0.5370987 0.1939468 -0.8123661 0.5370987 0.1939468 -0.8301795 0.5370987 0.1939468 -0.8475045 0.5370987 0.1939468 -0.8643761 0.5370987 0.1939468 -0.880825 0.5370987 0.1939468 -0.8968787 0.5370987 0.1939468 -0.9125621 0.5370987 0.1939468 -0.9278974 0.5370987 0.1939468 -0.9429048 0.5370987 0.1939468 -0.9576028 0.5370987 0.1939468 -0.9720079 0.5370987 0.1939468 -0.9861357 0.5370987 0.1939468 -1 0.5370987 0.1939468 -0 0.5668815 0.1939468 -0.1939468 0.5668815 0.1939468 -0.2773041 0.5668815 0.1939468 -0.3384659 0.5668815 0.1939468 -0.3885728 0.5668815 0.1939468 -0.4317928 0.5668815 0.1939468 -0.470214 0.5668815 0.1939468 -0.5050551 0.5668815 0.1939468 -0.5370987 0.5668815 0.1939468 -0.5668815 0.5668815 0.1939468 -0.5947903 0.5668815 0.1939468 -0.6211144 0.5668815 0.1939468 -0.6460766 0.5668815 0.1939468 -0.6698526 0.5668815 0.1939468 -0.6925839 0.5668815 0.1939468 -0.7143866 0.5668815 0.1939468 -0.7353569 0.5668815 0.1939468 -0.7555758 0.5668815 0.1939468 -0.7751122 0.5668815 0.1939468 -0.7940252 0.5668815 0.1939468 -0.8123661 0.5668815 0.1939468 -0.8301795 0.5668815 0.1939468 -0.8475045 0.5668815 0.1939468 -0.8643761 0.5668815 0.1939468 -0.880825 0.5668815 0.1939468 -0.8968787 0.5668815 0.1939468 -0.9125621 0.5668815 0.1939468 -0.9278974 0.5668815 0.1939468 -0.9429048 0.5668815 0.1939468 -0.9576028 0.5668815 0.1939468 -0.9720079 0.5668815 0.1939468 -0.9861357 0.5668815 0.1939468 -1 0.5668815 0.1939468 -0 0.5947903 0.1939468 -0.1939468 0.5947903 0.1939468 -0.2773041 0.5947903 0.1939468 -0.3384659 0.5947903 0.1939468 -0.3885728 0.5947903 0.1939468 -0.4317928 0.5947903 0.1939468 -0.470214 0.5947903 0.1939468 -0.5050551 0.5947903 0.1939468 -0.5370987 0.5947903 0.1939468 -0.5668815 0.5947903 0.1939468 -0.5947903 0.5947903 0.1939468 -0.6211144 0.5947903 0.1939468 -0.6460766 0.5947903 0.1939468 -0.6698526 0.5947903 0.1939468 -0.6925839 0.5947903 0.1939468 -0.7143866 0.5947903 0.1939468 -0.7353569 0.5947903 0.1939468 -0.7555758 0.5947903 0.1939468 -0.7751122 0.5947903 0.1939468 -0.7940252 0.5947903 0.1939468 -0.8123661 0.5947903 0.1939468 -0.8301795 0.5947903 0.1939468 -0.8475045 0.5947903 0.1939468 -0.8643761 0.5947903 0.1939468 -0.880825 0.5947903 0.1939468 -0.8968787 0.5947903 0.1939468 -0.9125621 0.5947903 0.1939468 -0.9278974 0.5947903 0.1939468 -0.9429048 0.5947903 0.1939468 -0.9576028 0.5947903 0.1939468 -0.9720079 0.5947903 0.1939468 -0.9861357 0.5947903 0.1939468 -1 0.5947903 0.1939468 -0 0.6211144 0.1939468 -0.1939468 0.6211144 0.1939468 -0.2773041 0.6211144 0.1939468 -0.3384659 0.6211144 0.1939468 -0.3885728 0.6211144 0.1939468 -0.4317928 0.6211144 0.1939468 -0.470214 0.6211144 0.1939468 -0.5050551 0.6211144 0.1939468 -0.5370987 0.6211144 0.1939468 -0.5668815 0.6211144 0.1939468 -0.5947903 0.6211144 0.1939468 -0.6211144 0.6211144 0.1939468 -0.6460766 0.6211144 0.1939468 -0.6698526 0.6211144 0.1939468 -0.6925839 0.6211144 0.1939468 -0.7143866 0.6211144 0.1939468 -0.7353569 0.6211144 0.1939468 -0.7555758 0.6211144 0.1939468 -0.7751122 0.6211144 0.1939468 -0.7940252 0.6211144 0.1939468 -0.8123661 0.6211144 0.1939468 -0.8301795 0.6211144 0.1939468 -0.8475045 0.6211144 0.1939468 -0.8643761 0.6211144 0.1939468 -0.880825 0.6211144 0.1939468 -0.8968787 0.6211144 0.1939468 -0.9125621 0.6211144 0.1939468 -0.9278974 0.6211144 0.1939468 -0.9429048 0.6211144 0.1939468 -0.9576028 0.6211144 0.1939468 -0.9720079 0.6211144 0.1939468 -0.9861357 0.6211144 0.1939468 -1 0.6211144 0.1939468 -0 0.6460766 0.1939468 -0.1939468 0.6460766 0.1939468 -0.2773041 0.6460766 0.1939468 -0.3384659 0.6460766 0.1939468 -0.3885728 0.6460766 0.1939468 -0.4317928 0.6460766 0.1939468 -0.470214 0.6460766 0.1939468 -0.5050551 0.6460766 0.1939468 -0.5370987 0.6460766 0.1939468 -0.5668815 0.6460766 0.1939468 -0.5947903 0.6460766 0.1939468 -0.6211144 0.6460766 0.1939468 -0.6460766 0.6460766 0.1939468 -0.6698526 0.6460766 0.1939468 -0.6925839 0.6460766 0.1939468 -0.7143866 0.6460766 0.1939468 -0.7353569 0.6460766 0.1939468 -0.7555758 0.6460766 0.1939468 -0.7751122 0.6460766 0.1939468 -0.7940252 0.6460766 0.1939468 -0.8123661 0.6460766 0.1939468 -0.8301795 0.6460766 0.1939468 -0.8475045 0.6460766 0.1939468 -0.8643761 0.6460766 0.1939468 -0.880825 0.6460766 0.1939468 -0.8968787 0.6460766 0.1939468 -0.9125621 0.6460766 0.1939468 -0.9278974 0.6460766 0.1939468 -0.9429048 0.6460766 0.1939468 -0.9576028 0.6460766 0.1939468 -0.9720079 0.6460766 0.1939468 -0.9861357 0.6460766 0.1939468 -1 0.6460766 0.1939468 -0 0.6698526 0.1939468 -0.1939468 0.6698526 0.1939468 -0.2773041 0.6698526 0.1939468 -0.3384659 0.6698526 0.1939468 -0.3885728 0.6698526 0.1939468 -0.4317928 0.6698526 0.1939468 -0.470214 0.6698526 0.1939468 -0.5050551 0.6698526 0.1939468 -0.5370987 0.6698526 0.1939468 -0.5668815 0.6698526 0.1939468 -0.5947903 0.6698526 0.1939468 -0.6211144 0.6698526 0.1939468 -0.6460766 0.6698526 0.1939468 -0.6698526 0.6698526 0.1939468 -0.6925839 0.6698526 0.1939468 -0.7143866 0.6698526 0.1939468 -0.7353569 0.6698526 0.1939468 -0.7555758 0.6698526 0.1939468 -0.7751122 0.6698526 0.1939468 -0.7940252 0.6698526 0.1939468 -0.8123661 0.6698526 0.1939468 -0.8301795 0.6698526 0.1939468 -0.8475045 0.6698526 0.1939468 -0.8643761 0.6698526 0.1939468 -0.880825 0.6698526 0.1939468 -0.8968787 0.6698526 0.1939468 -0.9125621 0.6698526 0.1939468 -0.9278974 0.6698526 0.1939468 -0.9429048 0.6698526 0.1939468 -0.9576028 0.6698526 0.1939468 -0.9720079 0.6698526 0.1939468 -0.9861357 0.6698526 0.1939468 -1 0.6698526 0.1939468 -0 0.6925839 0.1939468 -0.1939468 0.6925839 0.1939468 -0.2773041 0.6925839 0.1939468 -0.3384659 0.6925839 0.1939468 -0.3885728 0.6925839 0.1939468 -0.4317928 0.6925839 0.1939468 -0.470214 0.6925839 0.1939468 -0.5050551 0.6925839 0.1939468 -0.5370987 0.6925839 0.1939468 -0.5668815 0.6925839 0.1939468 -0.5947903 0.6925839 0.1939468 -0.6211144 0.6925839 0.1939468 -0.6460766 0.6925839 0.1939468 -0.6698526 0.6925839 0.1939468 -0.6925839 0.6925839 0.1939468 -0.7143866 0.6925839 0.1939468 -0.7353569 0.6925839 0.1939468 -0.7555758 0.6925839 0.1939468 -0.7751122 0.6925839 0.1939468 -0.7940252 0.6925839 0.1939468 -0.8123661 0.6925839 0.1939468 -0.8301795 0.6925839 0.1939468 -0.8475045 0.6925839 0.1939468 -0.8643761 0.6925839 0.1939468 -0.880825 0.6925839 0.1939468 -0.8968787 0.6925839 0.1939468 -0.9125621 0.6925839 0.1939468 -0.9278974 0.6925839 0.1939468 -0.9429048 0.6925839 0.1939468 -0.9576028 0.6925839 0.1939468 -0.9720079 0.6925839 0.1939468 -0.9861357 0.6925839 0.1939468 -1 0.6925839 0.1939468 -0 0.7143866 0.1939468 -0.1939468 0.7143866 0.1939468 -0.2773041 0.7143866 0.1939468 -0.3384659 0.7143866 0.1939468 -0.3885728 0.7143866 0.1939468 -0.4317928 0.7143866 0.1939468 -0.470214 0.7143866 0.1939468 -0.5050551 0.7143866 0.1939468 -0.5370987 0.7143866 0.1939468 -0.5668815 0.7143866 0.1939468 -0.5947903 0.7143866 0.1939468 -0.6211144 0.7143866 0.1939468 -0.6460766 0.7143866 0.1939468 -0.6698526 0.7143866 0.1939468 -0.6925839 0.7143866 0.1939468 -0.7143866 0.7143866 0.1939468 -0.7353569 0.7143866 0.1939468 -0.7555758 0.7143866 0.1939468 -0.7751122 0.7143866 0.1939468 -0.7940252 0.7143866 0.1939468 -0.8123661 0.7143866 0.1939468 -0.8301795 0.7143866 0.1939468 -0.8475045 0.7143866 0.1939468 -0.8643761 0.7143866 0.1939468 -0.880825 0.7143866 0.1939468 -0.8968787 0.7143866 0.1939468 -0.9125621 0.7143866 0.1939468 -0.9278974 0.7143866 0.1939468 -0.9429048 0.7143866 0.1939468 -0.9576028 0.7143866 0.1939468 -0.9720079 0.7143866 0.1939468 -0.9861357 0.7143866 0.1939468 -1 0.7143866 0.1939468 -0 0.7353569 0.1939468 -0.1939468 0.7353569 0.1939468 -0.2773041 0.7353569 0.1939468 -0.3384659 0.7353569 0.1939468 -0.3885728 0.7353569 0.1939468 -0.4317928 0.7353569 0.1939468 -0.470214 0.7353569 0.1939468 -0.5050551 0.7353569 0.1939468 -0.5370987 0.7353569 0.1939468 -0.5668815 0.7353569 0.1939468 -0.5947903 0.7353569 0.1939468 -0.6211144 0.7353569 0.1939468 -0.6460766 0.7353569 0.1939468 -0.6698526 0.7353569 0.1939468 -0.6925839 0.7353569 0.1939468 -0.7143866 0.7353569 0.1939468 -0.7353569 0.7353569 0.1939468 -0.7555758 0.7353569 0.1939468 -0.7751122 0.7353569 0.1939468 -0.7940252 0.7353569 0.1939468 -0.8123661 0.7353569 0.1939468 -0.8301795 0.7353569 0.1939468 -0.8475045 0.7353569 0.1939468 -0.8643761 0.7353569 0.1939468 -0.880825 0.7353569 0.1939468 -0.8968787 0.7353569 0.1939468 -0.9125621 0.7353569 0.1939468 -0.9278974 0.7353569 0.1939468 -0.9429048 0.7353569 0.1939468 -0.9576028 0.7353569 0.1939468 -0.9720079 0.7353569 0.1939468 -0.9861357 0.7353569 0.1939468 -1 0.7353569 0.1939468 -0 0.7555758 0.1939468 -0.1939468 0.7555758 0.1939468 -0.2773041 0.7555758 0.1939468 -0.3384659 0.7555758 0.1939468 -0.3885728 0.7555758 0.1939468 -0.4317928 0.7555758 0.1939468 -0.470214 0.7555758 0.1939468 -0.5050551 0.7555758 0.1939468 -0.5370987 0.7555758 0.1939468 -0.5668815 0.7555758 0.1939468 -0.5947903 0.7555758 0.1939468 -0.6211144 0.7555758 0.1939468 -0.6460766 0.7555758 0.1939468 -0.6698526 0.7555758 0.1939468 -0.6925839 0.7555758 0.1939468 -0.7143866 0.7555758 0.1939468 -0.7353569 0.7555758 0.1939468 -0.7555758 0.7555758 0.1939468 -0.7751122 0.7555758 0.1939468 -0.7940252 0.7555758 0.1939468 -0.8123661 0.7555758 0.1939468 -0.8301795 0.7555758 0.1939468 -0.8475045 0.7555758 0.1939468 -0.8643761 0.7555758 0.1939468 -0.880825 0.7555758 0.1939468 -0.8968787 0.7555758 0.1939468 -0.9125621 0.7555758 0.1939468 -0.9278974 0.7555758 0.1939468 -0.9429048 0.7555758 0.1939468 -0.9576028 0.7555758 0.1939468 -0.9720079 0.7555758 0.1939468 -0.9861357 0.7555758 0.1939468 -1 0.7555758 0.1939468 -0 0.7751122 0.1939468 -0.1939468 0.7751122 0.1939468 -0.2773041 0.7751122 0.1939468 -0.3384659 0.7751122 0.1939468 -0.3885728 0.7751122 0.1939468 -0.4317928 0.7751122 0.1939468 -0.470214 0.7751122 0.1939468 -0.5050551 0.7751122 0.1939468 -0.5370987 0.7751122 0.1939468 -0.5668815 0.7751122 0.1939468 -0.5947903 0.7751122 0.1939468 -0.6211144 0.7751122 0.1939468 -0.6460766 0.7751122 0.1939468 -0.6698526 0.7751122 0.1939468 -0.6925839 0.7751122 0.1939468 -0.7143866 0.7751122 0.1939468 -0.7353569 0.7751122 0.1939468 -0.7555758 0.7751122 0.1939468 -0.7751122 0.7751122 0.1939468 -0.7940252 0.7751122 0.1939468 -0.8123661 0.7751122 0.1939468 -0.8301795 0.7751122 0.1939468 -0.8475045 0.7751122 0.1939468 -0.8643761 0.7751122 0.1939468 -0.880825 0.7751122 0.1939468 -0.8968787 0.7751122 0.1939468 -0.9125621 0.7751122 0.1939468 -0.9278974 0.7751122 0.1939468 -0.9429048 0.7751122 0.1939468 -0.9576028 0.7751122 0.1939468 -0.9720079 0.7751122 0.1939468 -0.9861357 0.7751122 0.1939468 -1 0.7751122 0.1939468 -0 0.7940252 0.1939468 -0.1939468 0.7940252 0.1939468 -0.2773041 0.7940252 0.1939468 -0.3384659 0.7940252 0.1939468 -0.3885728 0.7940252 0.1939468 -0.4317928 0.7940252 0.1939468 -0.470214 0.7940252 0.1939468 -0.5050551 0.7940252 0.1939468 -0.5370987 0.7940252 0.1939468 -0.5668815 0.7940252 0.1939468 -0.5947903 0.7940252 0.1939468 -0.6211144 0.7940252 0.1939468 -0.6460766 0.7940252 0.1939468 -0.6698526 0.7940252 0.1939468 -0.6925839 0.7940252 0.1939468 -0.7143866 0.7940252 0.1939468 -0.7353569 0.7940252 0.1939468 -0.7555758 0.7940252 0.1939468 -0.7751122 0.7940252 0.1939468 -0.7940252 0.7940252 0.1939468 -0.8123661 0.7940252 0.1939468 -0.8301795 0.7940252 0.1939468 -0.8475045 0.7940252 0.1939468 -0.8643761 0.7940252 0.1939468 -0.880825 0.7940252 0.1939468 -0.8968787 0.7940252 0.1939468 -0.9125621 0.7940252 0.1939468 -0.9278974 0.7940252 0.1939468 -0.9429048 0.7940252 0.1939468 -0.9576028 0.7940252 0.1939468 -0.9720079 0.7940252 0.1939468 -0.9861357 0.7940252 0.1939468 -1 0.7940252 0.1939468 -0 0.8123661 0.1939468 -0.1939468 0.8123661 0.1939468 -0.2773041 0.8123661 0.1939468 -0.3384659 0.8123661 0.1939468 -0.3885728 0.8123661 0.1939468 -0.4317928 0.8123661 0.1939468 -0.470214 0.8123661 0.1939468 -0.5050551 0.8123661 0.1939468 -0.5370987 0.8123661 0.1939468 -0.5668815 0.8123661 0.1939468 -0.5947903 0.8123661 0.1939468 -0.6211144 0.8123661 0.1939468 -0.6460766 0.8123661 0.1939468 -0.6698526 0.8123661 0.1939468 -0.6925839 0.8123661 0.1939468 -0.7143866 0.8123661 0.1939468 -0.7353569 0.8123661 0.1939468 -0.7555758 0.8123661 0.1939468 -0.7751122 0.8123661 0.1939468 -0.7940252 0.8123661 0.1939468 -0.8123661 0.8123661 0.1939468 -0.8301795 0.8123661 0.1939468 -0.8475045 0.8123661 0.1939468 -0.8643761 0.8123661 0.1939468 -0.880825 0.8123661 0.1939468 -0.8968787 0.8123661 0.1939468 -0.9125621 0.8123661 0.1939468 -0.9278974 0.8123661 0.1939468 -0.9429048 0.8123661 0.1939468 -0.9576028 0.8123661 0.1939468 -0.9720079 0.8123661 0.1939468 -0.9861357 0.8123661 0.1939468 -1 0.8123661 0.1939468 -0 0.8301795 0.1939468 -0.1939468 0.8301795 0.1939468 -0.2773041 0.8301795 0.1939468 -0.3384659 0.8301795 0.1939468 -0.3885728 0.8301795 0.1939468 -0.4317928 0.8301795 0.1939468 -0.470214 0.8301795 0.1939468 -0.5050551 0.8301795 0.1939468 -0.5370987 0.8301795 0.1939468 -0.5668815 0.8301795 0.1939468 -0.5947903 0.8301795 0.1939468 -0.6211144 0.8301795 0.1939468 -0.6460766 0.8301795 0.1939468 -0.6698526 0.8301795 0.1939468 -0.6925839 0.8301795 0.1939468 -0.7143866 0.8301795 0.1939468 -0.7353569 0.8301795 0.1939468 -0.7555758 0.8301795 0.1939468 -0.7751122 0.8301795 0.1939468 -0.7940252 0.8301795 0.1939468 -0.8123661 0.8301795 0.1939468 -0.8301795 0.8301795 0.1939468 -0.8475045 0.8301795 0.1939468 -0.8643761 0.8301795 0.1939468 -0.880825 0.8301795 0.1939468 -0.8968787 0.8301795 0.1939468 -0.9125621 0.8301795 0.1939468 -0.9278974 0.8301795 0.1939468 -0.9429048 0.8301795 0.1939468 -0.9576028 0.8301795 0.1939468 -0.9720079 0.8301795 0.1939468 -0.9861357 0.8301795 0.1939468 -1 0.8301795 0.1939468 -0 0.8475045 0.1939468 -0.1939468 0.8475045 0.1939468 -0.2773041 0.8475045 0.1939468 -0.3384659 0.8475045 0.1939468 -0.3885728 0.8475045 0.1939468 -0.4317928 0.8475045 0.1939468 -0.470214 0.8475045 0.1939468 -0.5050551 0.8475045 0.1939468 -0.5370987 0.8475045 0.1939468 -0.5668815 0.8475045 0.1939468 -0.5947903 0.8475045 0.1939468 -0.6211144 0.8475045 0.1939468 -0.6460766 0.8475045 0.1939468 -0.6698526 0.8475045 0.1939468 -0.6925839 0.8475045 0.1939468 -0.7143866 0.8475045 0.1939468 -0.7353569 0.8475045 0.1939468 -0.7555758 0.8475045 0.1939468 -0.7751122 0.8475045 0.1939468 -0.7940252 0.8475045 0.1939468 -0.8123661 0.8475045 0.1939468 -0.8301795 0.8475045 0.1939468 -0.8475045 0.8475045 0.1939468 -0.8643761 0.8475045 0.1939468 -0.880825 0.8475045 0.1939468 -0.8968787 0.8475045 0.1939468 -0.9125621 0.8475045 0.1939468 -0.9278974 0.8475045 0.1939468 -0.9429048 0.8475045 0.1939468 -0.9576028 0.8475045 0.1939468 -0.9720079 0.8475045 0.1939468 -0.9861357 0.8475045 0.1939468 -1 0.8475045 0.1939468 -0 0.8643761 0.1939468 -0.1939468 0.8643761 0.1939468 -0.2773041 0.8643761 0.1939468 -0.3384659 0.8643761 0.1939468 -0.3885728 0.8643761 0.1939468 -0.4317928 0.8643761 0.1939468 -0.470214 0.8643761 0.1939468 -0.5050551 0.8643761 0.1939468 -0.5370987 0.8643761 0.1939468 -0.5668815 0.8643761 0.1939468 -0.5947903 0.8643761 0.1939468 -0.6211144 0.8643761 0.1939468 -0.6460766 0.8643761 0.1939468 -0.6698526 0.8643761 0.1939468 -0.6925839 0.8643761 0.1939468 -0.7143866 0.8643761 0.1939468 -0.7353569 0.8643761 0.1939468 -0.7555758 0.8643761 0.1939468 -0.7751122 0.8643761 0.1939468 -0.7940252 0.8643761 0.1939468 -0.8123661 0.8643761 0.1939468 -0.8301795 0.8643761 0.1939468 -0.8475045 0.8643761 0.1939468 -0.8643761 0.8643761 0.1939468 -0.880825 0.8643761 0.1939468 -0.8968787 0.8643761 0.1939468 -0.9125621 0.8643761 0.1939468 -0.9278974 0.8643761 0.1939468 -0.9429048 0.8643761 0.1939468 -0.9576028 0.8643761 0.1939468 -0.9720079 0.8643761 0.1939468 -0.9861357 0.8643761 0.1939468 -1 0.8643761 0.1939468 -0 0.880825 0.1939468 -0.1939468 0.880825 0.1939468 -0.2773041 0.880825 0.1939468 -0.3384659 0.880825 0.1939468 -0.3885728 0.880825 0.1939468 -0.4317928 0.880825 0.1939468 -0.470214 0.880825 0.1939468 -0.5050551 0.880825 0.1939468 -0.5370987 0.880825 0.1939468 -0.5668815 0.880825 0.1939468 -0.5947903 0.880825 0.1939468 -0.6211144 0.880825 0.1939468 -0.6460766 0.880825 0.1939468 -0.6698526 0.880825 0.1939468 -0.6925839 0.880825 0.1939468 -0.7143866 0.880825 0.1939468 -0.7353569 0.880825 0.1939468 -0.7555758 0.880825 0.1939468 -0.7751122 0.880825 0.1939468 -0.7940252 0.880825 0.1939468 -0.8123661 0.880825 0.1939468 -0.8301795 0.880825 0.1939468 -0.8475045 0.880825 0.1939468 -0.8643761 0.880825 0.1939468 -0.880825 0.880825 0.1939468 -0.8968787 0.880825 0.1939468 -0.9125621 0.880825 0.1939468 -0.9278974 0.880825 0.1939468 -0.9429048 0.880825 0.1939468 -0.9576028 0.880825 0.1939468 -0.9720079 0.880825 0.1939468 -0.9861357 0.880825 0.1939468 -1 0.880825 0.1939468 -0 0.8968787 0.1939468 -0.1939468 0.8968787 0.1939468 -0.2773041 0.8968787 0.1939468 -0.3384659 0.8968787 0.1939468 -0.3885728 0.8968787 0.1939468 -0.4317928 0.8968787 0.1939468 -0.470214 0.8968787 0.1939468 -0.5050551 0.8968787 0.1939468 -0.5370987 0.8968787 0.1939468 -0.5668815 0.8968787 0.1939468 -0.5947903 0.8968787 0.1939468 -0.6211144 0.8968787 0.1939468 -0.6460766 0.8968787 0.1939468 -0.6698526 0.8968787 0.1939468 -0.6925839 0.8968787 0.1939468 -0.7143866 0.8968787 0.1939468 -0.7353569 0.8968787 0.1939468 -0.7555758 0.8968787 0.1939468 -0.7751122 0.8968787 0.1939468 -0.7940252 0.8968787 0.1939468 -0.8123661 0.8968787 0.1939468 -0.8301795 0.8968787 0.1939468 -0.8475045 0.8968787 0.1939468 -0.8643761 0.8968787 0.1939468 -0.880825 0.8968787 0.1939468 -0.8968787 0.8968787 0.1939468 -0.9125621 0.8968787 0.1939468 -0.9278974 0.8968787 0.1939468 -0.9429048 0.8968787 0.1939468 -0.9576028 0.8968787 0.1939468 -0.9720079 0.8968787 0.1939468 -0.9861357 0.8968787 0.1939468 -1 0.8968787 0.1939468 -0 0.9125621 0.1939468 -0.1939468 0.9125621 0.1939468 -0.2773041 0.9125621 0.1939468 -0.3384659 0.9125621 0.1939468 -0.3885728 0.9125621 0.1939468 -0.4317928 0.9125621 0.1939468 -0.470214 0.9125621 0.1939468 -0.5050551 0.9125621 0.1939468 -0.5370987 0.9125621 0.1939468 -0.5668815 0.9125621 0.1939468 -0.5947903 0.9125621 0.1939468 -0.6211144 0.9125621 0.1939468 -0.6460766 0.9125621 0.1939468 -0.6698526 0.9125621 0.1939468 -0.6925839 0.9125621 0.1939468 -0.7143866 0.9125621 0.1939468 -0.7353569 0.9125621 0.1939468 -0.7555758 0.9125621 0.1939468 -0.7751122 0.9125621 0.1939468 -0.7940252 0.9125621 0.1939468 -0.8123661 0.9125621 0.1939468 -0.8301795 0.9125621 0.1939468 -0.8475045 0.9125621 0.1939468 -0.8643761 0.9125621 0.1939468 -0.880825 0.9125621 0.1939468 -0.8968787 0.9125621 0.1939468 -0.9125621 0.9125621 0.1939468 -0.9278974 0.9125621 0.1939468 -0.9429048 0.9125621 0.1939468 -0.9576028 0.9125621 0.1939468 -0.9720079 0.9125621 0.1939468 -0.9861357 0.9125621 0.1939468 -1 0.9125621 0.1939468 -0 0.9278974 0.1939468 -0.1939468 0.9278974 0.1939468 -0.2773041 0.9278974 0.1939468 -0.3384659 0.9278974 0.1939468 -0.3885728 0.9278974 0.1939468 -0.4317928 0.9278974 0.1939468 -0.470214 0.9278974 0.1939468 -0.5050551 0.9278974 0.1939468 -0.5370987 0.9278974 0.1939468 -0.5668815 0.9278974 0.1939468 -0.5947903 0.9278974 0.1939468 -0.6211144 0.9278974 0.1939468 -0.6460766 0.9278974 0.1939468 -0.6698526 0.9278974 0.1939468 -0.6925839 0.9278974 0.1939468 -0.7143866 0.9278974 0.1939468 -0.7353569 0.9278974 0.1939468 -0.7555758 0.9278974 0.1939468 -0.7751122 0.9278974 0.1939468 -0.7940252 0.9278974 0.1939468 -0.8123661 0.9278974 0.1939468 -0.8301795 0.9278974 0.1939468 -0.8475045 0.9278974 0.1939468 -0.8643761 0.9278974 0.1939468 -0.880825 0.9278974 0.1939468 -0.8968787 0.9278974 0.1939468 -0.9125621 0.9278974 0.1939468 -0.9278974 0.9278974 0.1939468 -0.9429048 0.9278974 0.1939468 -0.9576028 0.9278974 0.1939468 -0.9720079 0.9278974 0.1939468 -0.9861357 0.9278974 0.1939468 -1 0.9278974 0.1939468 -0 0.9429048 0.1939468 -0.1939468 0.9429048 0.1939468 -0.2773041 0.9429048 0.1939468 -0.3384659 0.9429048 0.1939468 -0.3885728 0.9429048 0.1939468 -0.4317928 0.9429048 0.1939468 -0.470214 0.9429048 0.1939468 -0.5050551 0.9429048 0.1939468 -0.5370987 0.9429048 0.1939468 -0.5668815 0.9429048 0.1939468 -0.5947903 0.9429048 0.1939468 -0.6211144 0.9429048 0.1939468 -0.6460766 0.9429048 0.1939468 -0.6698526 0.9429048 0.1939468 -0.6925839 0.9429048 0.1939468 -0.7143866 0.9429048 0.1939468 -0.7353569 0.9429048 0.1939468 -0.7555758 0.9429048 0.1939468 -0.7751122 0.9429048 0.1939468 -0.7940252 0.9429048 0.1939468 -0.8123661 0.9429048 0.1939468 -0.8301795 0.9429048 0.1939468 -0.8475045 0.9429048 0.1939468 -0.8643761 0.9429048 0.1939468 -0.880825 0.9429048 0.1939468 -0.8968787 0.9429048 0.1939468 -0.9125621 0.9429048 0.1939468 -0.9278974 0.9429048 0.1939468 -0.9429048 0.9429048 0.1939468 -0.9576028 0.9429048 0.1939468 -0.9720079 0.9429048 0.1939468 -0.9861357 0.9429048 0.1939468 -1 0.9429048 0.1939468 -0 0.9576028 0.1939468 -0.1939468 0.9576028 0.1939468 -0.2773041 0.9576028 0.1939468 -0.3384659 0.9576028 0.1939468 -0.3885728 0.9576028 0.1939468 -0.4317928 0.9576028 0.1939468 -0.470214 0.9576028 0.1939468 -0.5050551 0.9576028 0.1939468 -0.5370987 0.9576028 0.1939468 -0.5668815 0.9576028 0.1939468 -0.5947903 0.9576028 0.1939468 -0.6211144 0.9576028 0.1939468 -0.6460766 0.9576028 0.1939468 -0.6698526 0.9576028 0.1939468 -0.6925839 0.9576028 0.1939468 -0.7143866 0.9576028 0.1939468 -0.7353569 0.9576028 0.1939468 -0.7555758 0.9576028 0.1939468 -0.7751122 0.9576028 0.1939468 -0.7940252 0.9576028 0.1939468 -0.8123661 0.9576028 0.1939468 -0.8301795 0.9576028 0.1939468 -0.8475045 0.9576028 0.1939468 -0.8643761 0.9576028 0.1939468 -0.880825 0.9576028 0.1939468 -0.8968787 0.9576028 0.1939468 -0.9125621 0.9576028 0.1939468 -0.9278974 0.9576028 0.1939468 -0.9429048 0.9576028 0.1939468 -0.9576028 0.9576028 0.1939468 -0.9720079 0.9576028 0.1939468 -0.9861357 0.9576028 0.1939468 -1 0.9576028 0.1939468 -0 0.9720079 0.1939468 -0.1939468 0.9720079 0.1939468 -0.2773041 0.9720079 0.1939468 -0.3384659 0.9720079 0.1939468 -0.3885728 0.9720079 0.1939468 -0.4317928 0.9720079 0.1939468 -0.470214 0.9720079 0.1939468 -0.5050551 0.9720079 0.1939468 -0.5370987 0.9720079 0.1939468 -0.5668815 0.9720079 0.1939468 -0.5947903 0.9720079 0.1939468 -0.6211144 0.9720079 0.1939468 -0.6460766 0.9720079 0.1939468 -0.6698526 0.9720079 0.1939468 -0.6925839 0.9720079 0.1939468 -0.7143866 0.9720079 0.1939468 -0.7353569 0.9720079 0.1939468 -0.7555758 0.9720079 0.1939468 -0.7751122 0.9720079 0.1939468 -0.7940252 0.9720079 0.1939468 -0.8123661 0.9720079 0.1939468 -0.8301795 0.9720079 0.1939468 -0.8475045 0.9720079 0.1939468 -0.8643761 0.9720079 0.1939468 -0.880825 0.9720079 0.1939468 -0.8968787 0.9720079 0.1939468 -0.9125621 0.9720079 0.1939468 -0.9278974 0.9720079 0.1939468 -0.9429048 0.9720079 0.1939468 -0.9576028 0.9720079 0.1939468 -0.9720079 0.9720079 0.1939468 -0.9861357 0.9720079 0.1939468 -1 0.9720079 0.1939468 -0 0.9861357 0.1939468 -0.1939468 0.9861357 0.1939468 -0.2773041 0.9861357 0.1939468 -0.3384659 0.9861357 0.1939468 -0.3885728 0.9861357 0.1939468 -0.4317928 0.9861357 0.1939468 -0.470214 0.9861357 0.1939468 -0.5050551 0.9861357 0.1939468 -0.5370987 0.9861357 0.1939468 -0.5668815 0.9861357 0.1939468 -0.5947903 0.9861357 0.1939468 -0.6211144 0.9861357 0.1939468 -0.6460766 0.9861357 0.1939468 -0.6698526 0.9861357 0.1939468 -0.6925839 0.9861357 0.1939468 -0.7143866 0.9861357 0.1939468 -0.7353569 0.9861357 0.1939468 -0.7555758 0.9861357 0.1939468 -0.7751122 0.9861357 0.1939468 -0.7940252 0.9861357 0.1939468 -0.8123661 0.9861357 0.1939468 -0.8301795 0.9861357 0.1939468 -0.8475045 0.9861357 0.1939468 -0.8643761 0.9861357 0.1939468 -0.880825 0.9861357 0.1939468 -0.8968787 0.9861357 0.1939468 -0.9125621 0.9861357 0.1939468 -0.9278974 0.9861357 0.1939468 -0.9429048 0.9861357 0.1939468 -0.9576028 0.9861357 0.1939468 -0.9720079 0.9861357 0.1939468 -0.9861357 0.9861357 0.1939468 -1 0.9861357 0.1939468 -0 1 0.1939468 -0.1939468 1 0.1939468 -0.2773041 1 0.1939468 -0.3384659 1 0.1939468 -0.3885728 1 0.1939468 -0.4317928 1 0.1939468 -0.470214 1 0.1939468 -0.5050551 1 0.1939468 -0.5370987 1 0.1939468 -0.5668815 1 0.1939468 -0.5947903 1 0.1939468 -0.6211144 1 0.1939468 -0.6460766 1 0.1939468 -0.6698526 1 0.1939468 -0.6925839 1 0.1939468 -0.7143866 1 0.1939468 -0.7353569 1 0.1939468 -0.7555758 1 0.1939468 -0.7751122 1 0.1939468 -0.7940252 1 0.1939468 -0.8123661 1 0.1939468 -0.8301795 1 0.1939468 -0.8475045 1 0.1939468 -0.8643761 1 0.1939468 -0.880825 1 0.1939468 -0.8968787 1 0.1939468 -0.9125621 1 0.1939468 -0.9278974 1 0.1939468 -0.9429048 1 0.1939468 -0.9576028 1 0.1939468 -0.9720079 1 0.1939468 -0.9861357 1 0.1939468 -1 1 0.1939468 -0 0 0.2773041 -0.1939468 0 0.2773041 -0.2773041 0 0.2773041 -0.3384659 0 0.2773041 -0.3885728 0 0.2773041 -0.4317928 0 0.2773041 -0.470214 0 0.2773041 -0.5050551 0 0.2773041 -0.5370987 0 0.2773041 -0.5668815 0 0.2773041 -0.5947903 0 0.2773041 -0.6211144 0 0.2773041 -0.6460766 0 0.2773041 -0.6698526 0 0.2773041 -0.6925839 0 0.2773041 -0.7143866 0 0.2773041 -0.7353569 0 0.2773041 -0.7555758 0 0.2773041 -0.7751122 0 0.2773041 -0.7940252 0 0.2773041 -0.8123661 0 0.2773041 -0.8301795 0 0.2773041 -0.8475045 0 0.2773041 -0.8643761 0 0.2773041 -0.880825 0 0.2773041 -0.8968787 0 0.2773041 -0.9125621 0 0.2773041 -0.9278974 0 0.2773041 -0.9429048 0 0.2773041 -0.9576028 0 0.2773041 -0.9720079 0 0.2773041 -0.9861357 0 0.2773041 -1 0 0.2773041 -0 0.1939468 0.2773041 -0.1939468 0.1939468 0.2773041 -0.2773041 0.1939468 0.2773041 -0.3384659 0.1939468 0.2773041 -0.3885728 0.1939468 0.2773041 -0.4317928 0.1939468 0.2773041 -0.470214 0.1939468 0.2773041 -0.5050551 0.1939468 0.2773041 -0.5370987 0.1939468 0.2773041 -0.5668815 0.1939468 0.2773041 -0.5947903 0.1939468 0.2773041 -0.6211144 0.1939468 0.2773041 -0.6460766 0.1939468 0.2773041 -0.6698526 0.1939468 0.2773041 -0.6925839 0.1939468 0.2773041 -0.7143866 0.1939468 0.2773041 -0.7353569 0.1939468 0.2773041 -0.7555758 0.1939468 0.2773041 -0.7751122 0.1939468 0.2773041 -0.7940252 0.1939468 0.2773041 -0.8123661 0.1939468 0.2773041 -0.8301795 0.1939468 0.2773041 -0.8475045 0.1939468 0.2773041 -0.8643761 0.1939468 0.2773041 -0.880825 0.1939468 0.2773041 -0.8968787 0.1939468 0.2773041 -0.9125621 0.1939468 0.2773041 -0.9278974 0.1939468 0.2773041 -0.9429048 0.1939468 0.2773041 -0.9576028 0.1939468 0.2773041 -0.9720079 0.1939468 0.2773041 -0.9861357 0.1939468 0.2773041 -1 0.1939468 0.2773041 -0 0.2773041 0.2773041 -0.1939468 0.2773041 0.2773041 -0.2773041 0.2773041 0.2773041 -0.3384659 0.2773041 0.2773041 -0.3885728 0.2773041 0.2773041 -0.4317928 0.2773041 0.2773041 -0.470214 0.2773041 0.2773041 -0.5050551 0.2773041 0.2773041 -0.5370987 0.2773041 0.2773041 -0.5668815 0.2773041 0.2773041 -0.5947903 0.2773041 0.2773041 -0.6211144 0.2773041 0.2773041 -0.6460766 0.2773041 0.2773041 -0.6698526 0.2773041 0.2773041 -0.6925839 0.2773041 0.2773041 -0.7143866 0.2773041 0.2773041 -0.7353569 0.2773041 0.2773041 -0.7555758 0.2773041 0.2773041 -0.7751122 0.2773041 0.2773041 -0.7940252 0.2773041 0.2773041 -0.8123661 0.2773041 0.2773041 -0.8301795 0.2773041 0.2773041 -0.8475045 0.2773041 0.2773041 -0.8643761 0.2773041 0.2773041 -0.880825 0.2773041 0.2773041 -0.8968787 0.2773041 0.2773041 -0.9125621 0.2773041 0.2773041 -0.9278974 0.2773041 0.2773041 -0.9429048 0.2773041 0.2773041 -0.9576028 0.2773041 0.2773041 -0.9720079 0.2773041 0.2773041 -0.9861357 0.2773041 0.2773041 -1 0.2773041 0.2773041 -0 0.3384659 0.2773041 -0.1939468 0.3384659 0.2773041 -0.2773041 0.3384659 0.2773041 -0.3384659 0.3384659 0.2773041 -0.3885728 0.3384659 0.2773041 -0.4317928 0.3384659 0.2773041 -0.470214 0.3384659 0.2773041 -0.5050551 0.3384659 0.2773041 -0.5370987 0.3384659 0.2773041 -0.5668815 0.3384659 0.2773041 -0.5947903 0.3384659 0.2773041 -0.6211144 0.3384659 0.2773041 -0.6460766 0.3384659 0.2773041 -0.6698526 0.3384659 0.2773041 -0.6925839 0.3384659 0.2773041 -0.7143866 0.3384659 0.2773041 -0.7353569 0.3384659 0.2773041 -0.7555758 0.3384659 0.2773041 -0.7751122 0.3384659 0.2773041 -0.7940252 0.3384659 0.2773041 -0.8123661 0.3384659 0.2773041 -0.8301795 0.3384659 0.2773041 -0.8475045 0.3384659 0.2773041 -0.8643761 0.3384659 0.2773041 -0.880825 0.3384659 0.2773041 -0.8968787 0.3384659 0.2773041 -0.9125621 0.3384659 0.2773041 -0.9278974 0.3384659 0.2773041 -0.9429048 0.3384659 0.2773041 -0.9576028 0.3384659 0.2773041 -0.9720079 0.3384659 0.2773041 -0.9861357 0.3384659 0.2773041 -1 0.3384659 0.2773041 -0 0.3885728 0.2773041 -0.1939468 0.3885728 0.2773041 -0.2773041 0.3885728 0.2773041 -0.3384659 0.3885728 0.2773041 -0.3885728 0.3885728 0.2773041 -0.4317928 0.3885728 0.2773041 -0.470214 0.3885728 0.2773041 -0.5050551 0.3885728 0.2773041 -0.5370987 0.3885728 0.2773041 -0.5668815 0.3885728 0.2773041 -0.5947903 0.3885728 0.2773041 -0.6211144 0.3885728 0.2773041 -0.6460766 0.3885728 0.2773041 -0.6698526 0.3885728 0.2773041 -0.6925839 0.3885728 0.2773041 -0.7143866 0.3885728 0.2773041 -0.7353569 0.3885728 0.2773041 -0.7555758 0.3885728 0.2773041 -0.7751122 0.3885728 0.2773041 -0.7940252 0.3885728 0.2773041 -0.8123661 0.3885728 0.2773041 -0.8301795 0.3885728 0.2773041 -0.8475045 0.3885728 0.2773041 -0.8643761 0.3885728 0.2773041 -0.880825 0.3885728 0.2773041 -0.8968787 0.3885728 0.2773041 -0.9125621 0.3885728 0.2773041 -0.9278974 0.3885728 0.2773041 -0.9429048 0.3885728 0.2773041 -0.9576028 0.3885728 0.2773041 -0.9720079 0.3885728 0.2773041 -0.9861357 0.3885728 0.2773041 -1 0.3885728 0.2773041 -0 0.4317928 0.2773041 -0.1939468 0.4317928 0.2773041 -0.2773041 0.4317928 0.2773041 -0.3384659 0.4317928 0.2773041 -0.3885728 0.4317928 0.2773041 -0.4317928 0.4317928 0.2773041 -0.470214 0.4317928 0.2773041 -0.5050551 0.4317928 0.2773041 -0.5370987 0.4317928 0.2773041 -0.5668815 0.4317928 0.2773041 -0.5947903 0.4317928 0.2773041 -0.6211144 0.4317928 0.2773041 -0.6460766 0.4317928 0.2773041 -0.6698526 0.4317928 0.2773041 -0.6925839 0.4317928 0.2773041 -0.7143866 0.4317928 0.2773041 -0.7353569 0.4317928 0.2773041 -0.7555758 0.4317928 0.2773041 -0.7751122 0.4317928 0.2773041 -0.7940252 0.4317928 0.2773041 -0.8123661 0.4317928 0.2773041 -0.8301795 0.4317928 0.2773041 -0.8475045 0.4317928 0.2773041 -0.8643761 0.4317928 0.2773041 -0.880825 0.4317928 0.2773041 -0.8968787 0.4317928 0.2773041 -0.9125621 0.4317928 0.2773041 -0.9278974 0.4317928 0.2773041 -0.9429048 0.4317928 0.2773041 -0.9576028 0.4317928 0.2773041 -0.9720079 0.4317928 0.2773041 -0.9861357 0.4317928 0.2773041 -1 0.4317928 0.2773041 -0 0.470214 0.2773041 -0.1939468 0.470214 0.2773041 -0.2773041 0.470214 0.2773041 -0.3384659 0.470214 0.2773041 -0.3885728 0.470214 0.2773041 -0.4317928 0.470214 0.2773041 -0.470214 0.470214 0.2773041 -0.5050551 0.470214 0.2773041 -0.5370987 0.470214 0.2773041 -0.5668815 0.470214 0.2773041 -0.5947903 0.470214 0.2773041 -0.6211144 0.470214 0.2773041 -0.6460766 0.470214 0.2773041 -0.6698526 0.470214 0.2773041 -0.6925839 0.470214 0.2773041 -0.7143866 0.470214 0.2773041 -0.7353569 0.470214 0.2773041 -0.7555758 0.470214 0.2773041 -0.7751122 0.470214 0.2773041 -0.7940252 0.470214 0.2773041 -0.8123661 0.470214 0.2773041 -0.8301795 0.470214 0.2773041 -0.8475045 0.470214 0.2773041 -0.8643761 0.470214 0.2773041 -0.880825 0.470214 0.2773041 -0.8968787 0.470214 0.2773041 -0.9125621 0.470214 0.2773041 -0.9278974 0.470214 0.2773041 -0.9429048 0.470214 0.2773041 -0.9576028 0.470214 0.2773041 -0.9720079 0.470214 0.2773041 -0.9861357 0.470214 0.2773041 -1 0.470214 0.2773041 -0 0.5050551 0.2773041 -0.1939468 0.5050551 0.2773041 -0.2773041 0.5050551 0.2773041 -0.3384659 0.5050551 0.2773041 -0.3885728 0.5050551 0.2773041 -0.4317928 0.5050551 0.2773041 -0.470214 0.5050551 0.2773041 -0.5050551 0.5050551 0.2773041 -0.5370987 0.5050551 0.2773041 -0.5668815 0.5050551 0.2773041 -0.5947903 0.5050551 0.2773041 -0.6211144 0.5050551 0.2773041 -0.6460766 0.5050551 0.2773041 -0.6698526 0.5050551 0.2773041 -0.6925839 0.5050551 0.2773041 -0.7143866 0.5050551 0.2773041 -0.7353569 0.5050551 0.2773041 -0.7555758 0.5050551 0.2773041 -0.7751122 0.5050551 0.2773041 -0.7940252 0.5050551 0.2773041 -0.8123661 0.5050551 0.2773041 -0.8301795 0.5050551 0.2773041 -0.8475045 0.5050551 0.2773041 -0.8643761 0.5050551 0.2773041 -0.880825 0.5050551 0.2773041 -0.8968787 0.5050551 0.2773041 -0.9125621 0.5050551 0.2773041 -0.9278974 0.5050551 0.2773041 -0.9429048 0.5050551 0.2773041 -0.9576028 0.5050551 0.2773041 -0.9720079 0.5050551 0.2773041 -0.9861357 0.5050551 0.2773041 -1 0.5050551 0.2773041 -0 0.5370987 0.2773041 -0.1939468 0.5370987 0.2773041 -0.2773041 0.5370987 0.2773041 -0.3384659 0.5370987 0.2773041 -0.3885728 0.5370987 0.2773041 -0.4317928 0.5370987 0.2773041 -0.470214 0.5370987 0.2773041 -0.5050551 0.5370987 0.2773041 -0.5370987 0.5370987 0.2773041 -0.5668815 0.5370987 0.2773041 -0.5947903 0.5370987 0.2773041 -0.6211144 0.5370987 0.2773041 -0.6460766 0.5370987 0.2773041 -0.6698526 0.5370987 0.2773041 -0.6925839 0.5370987 0.2773041 -0.7143866 0.5370987 0.2773041 -0.7353569 0.5370987 0.2773041 -0.7555758 0.5370987 0.2773041 -0.7751122 0.5370987 0.2773041 -0.7940252 0.5370987 0.2773041 -0.8123661 0.5370987 0.2773041 -0.8301795 0.5370987 0.2773041 -0.8475045 0.5370987 0.2773041 -0.8643761 0.5370987 0.2773041 -0.880825 0.5370987 0.2773041 -0.8968787 0.5370987 0.2773041 -0.9125621 0.5370987 0.2773041 -0.9278974 0.5370987 0.2773041 -0.9429048 0.5370987 0.2773041 -0.9576028 0.5370987 0.2773041 -0.9720079 0.5370987 0.2773041 -0.9861357 0.5370987 0.2773041 -1 0.5370987 0.2773041 -0 0.5668815 0.2773041 -0.1939468 0.5668815 0.2773041 -0.2773041 0.5668815 0.2773041 -0.3384659 0.5668815 0.2773041 -0.3885728 0.5668815 0.2773041 -0.4317928 0.5668815 0.2773041 -0.470214 0.5668815 0.2773041 -0.5050551 0.5668815 0.2773041 -0.5370987 0.5668815 0.2773041 -0.5668815 0.5668815 0.2773041 -0.5947903 0.5668815 0.2773041 -0.6211144 0.5668815 0.2773041 -0.6460766 0.5668815 0.2773041 -0.6698526 0.5668815 0.2773041 -0.6925839 0.5668815 0.2773041 -0.7143866 0.5668815 0.2773041 -0.7353569 0.5668815 0.2773041 -0.7555758 0.5668815 0.2773041 -0.7751122 0.5668815 0.2773041 -0.7940252 0.5668815 0.2773041 -0.8123661 0.5668815 0.2773041 -0.8301795 0.5668815 0.2773041 -0.8475045 0.5668815 0.2773041 -0.8643761 0.5668815 0.2773041 -0.880825 0.5668815 0.2773041 -0.8968787 0.5668815 0.2773041 -0.9125621 0.5668815 0.2773041 -0.9278974 0.5668815 0.2773041 -0.9429048 0.5668815 0.2773041 -0.9576028 0.5668815 0.2773041 -0.9720079 0.5668815 0.2773041 -0.9861357 0.5668815 0.2773041 -1 0.5668815 0.2773041 -0 0.5947903 0.2773041 -0.1939468 0.5947903 0.2773041 -0.2773041 0.5947903 0.2773041 -0.3384659 0.5947903 0.2773041 -0.3885728 0.5947903 0.2773041 -0.4317928 0.5947903 0.2773041 -0.470214 0.5947903 0.2773041 -0.5050551 0.5947903 0.2773041 -0.5370987 0.5947903 0.2773041 -0.5668815 0.5947903 0.2773041 -0.5947903 0.5947903 0.2773041 -0.6211144 0.5947903 0.2773041 -0.6460766 0.5947903 0.2773041 -0.6698526 0.5947903 0.2773041 -0.6925839 0.5947903 0.2773041 -0.7143866 0.5947903 0.2773041 -0.7353569 0.5947903 0.2773041 -0.7555758 0.5947903 0.2773041 -0.7751122 0.5947903 0.2773041 -0.7940252 0.5947903 0.2773041 -0.8123661 0.5947903 0.2773041 -0.8301795 0.5947903 0.2773041 -0.8475045 0.5947903 0.2773041 -0.8643761 0.5947903 0.2773041 -0.880825 0.5947903 0.2773041 -0.8968787 0.5947903 0.2773041 -0.9125621 0.5947903 0.2773041 -0.9278974 0.5947903 0.2773041 -0.9429048 0.5947903 0.2773041 -0.9576028 0.5947903 0.2773041 -0.9720079 0.5947903 0.2773041 -0.9861357 0.5947903 0.2773041 -1 0.5947903 0.2773041 -0 0.6211144 0.2773041 -0.1939468 0.6211144 0.2773041 -0.2773041 0.6211144 0.2773041 -0.3384659 0.6211144 0.2773041 -0.3885728 0.6211144 0.2773041 -0.4317928 0.6211144 0.2773041 -0.470214 0.6211144 0.2773041 -0.5050551 0.6211144 0.2773041 -0.5370987 0.6211144 0.2773041 -0.5668815 0.6211144 0.2773041 -0.5947903 0.6211144 0.2773041 -0.6211144 0.6211144 0.2773041 -0.6460766 0.6211144 0.2773041 -0.6698526 0.6211144 0.2773041 -0.6925839 0.6211144 0.2773041 -0.7143866 0.6211144 0.2773041 -0.7353569 0.6211144 0.2773041 -0.7555758 0.6211144 0.2773041 -0.7751122 0.6211144 0.2773041 -0.7940252 0.6211144 0.2773041 -0.8123661 0.6211144 0.2773041 -0.8301795 0.6211144 0.2773041 -0.8475045 0.6211144 0.2773041 -0.8643761 0.6211144 0.2773041 -0.880825 0.6211144 0.2773041 -0.8968787 0.6211144 0.2773041 -0.9125621 0.6211144 0.2773041 -0.9278974 0.6211144 0.2773041 -0.9429048 0.6211144 0.2773041 -0.9576028 0.6211144 0.2773041 -0.9720079 0.6211144 0.2773041 -0.9861357 0.6211144 0.2773041 -1 0.6211144 0.2773041 -0 0.6460766 0.2773041 -0.1939468 0.6460766 0.2773041 -0.2773041 0.6460766 0.2773041 -0.3384659 0.6460766 0.2773041 -0.3885728 0.6460766 0.2773041 -0.4317928 0.6460766 0.2773041 -0.470214 0.6460766 0.2773041 -0.5050551 0.6460766 0.2773041 -0.5370987 0.6460766 0.2773041 -0.5668815 0.6460766 0.2773041 -0.5947903 0.6460766 0.2773041 -0.6211144 0.6460766 0.2773041 -0.6460766 0.6460766 0.2773041 -0.6698526 0.6460766 0.2773041 -0.6925839 0.6460766 0.2773041 -0.7143866 0.6460766 0.2773041 -0.7353569 0.6460766 0.2773041 -0.7555758 0.6460766 0.2773041 -0.7751122 0.6460766 0.2773041 -0.7940252 0.6460766 0.2773041 -0.8123661 0.6460766 0.2773041 -0.8301795 0.6460766 0.2773041 -0.8475045 0.6460766 0.2773041 -0.8643761 0.6460766 0.2773041 -0.880825 0.6460766 0.2773041 -0.8968787 0.6460766 0.2773041 -0.9125621 0.6460766 0.2773041 -0.9278974 0.6460766 0.2773041 -0.9429048 0.6460766 0.2773041 -0.9576028 0.6460766 0.2773041 -0.9720079 0.6460766 0.2773041 -0.9861357 0.6460766 0.2773041 -1 0.6460766 0.2773041 -0 0.6698526 0.2773041 -0.1939468 0.6698526 0.2773041 -0.2773041 0.6698526 0.2773041 -0.3384659 0.6698526 0.2773041 -0.3885728 0.6698526 0.2773041 -0.4317928 0.6698526 0.2773041 -0.470214 0.6698526 0.2773041 -0.5050551 0.6698526 0.2773041 -0.5370987 0.6698526 0.2773041 -0.5668815 0.6698526 0.2773041 -0.5947903 0.6698526 0.2773041 -0.6211144 0.6698526 0.2773041 -0.6460766 0.6698526 0.2773041 -0.6698526 0.6698526 0.2773041 -0.6925839 0.6698526 0.2773041 -0.7143866 0.6698526 0.2773041 -0.7353569 0.6698526 0.2773041 -0.7555758 0.6698526 0.2773041 -0.7751122 0.6698526 0.2773041 -0.7940252 0.6698526 0.2773041 -0.8123661 0.6698526 0.2773041 -0.8301795 0.6698526 0.2773041 -0.8475045 0.6698526 0.2773041 -0.8643761 0.6698526 0.2773041 -0.880825 0.6698526 0.2773041 -0.8968787 0.6698526 0.2773041 -0.9125621 0.6698526 0.2773041 -0.9278974 0.6698526 0.2773041 -0.9429048 0.6698526 0.2773041 -0.9576028 0.6698526 0.2773041 -0.9720079 0.6698526 0.2773041 -0.9861357 0.6698526 0.2773041 -1 0.6698526 0.2773041 -0 0.6925839 0.2773041 -0.1939468 0.6925839 0.2773041 -0.2773041 0.6925839 0.2773041 -0.3384659 0.6925839 0.2773041 -0.3885728 0.6925839 0.2773041 -0.4317928 0.6925839 0.2773041 -0.470214 0.6925839 0.2773041 -0.5050551 0.6925839 0.2773041 -0.5370987 0.6925839 0.2773041 -0.5668815 0.6925839 0.2773041 -0.5947903 0.6925839 0.2773041 -0.6211144 0.6925839 0.2773041 -0.6460766 0.6925839 0.2773041 -0.6698526 0.6925839 0.2773041 -0.6925839 0.6925839 0.2773041 -0.7143866 0.6925839 0.2773041 -0.7353569 0.6925839 0.2773041 -0.7555758 0.6925839 0.2773041 -0.7751122 0.6925839 0.2773041 -0.7940252 0.6925839 0.2773041 -0.8123661 0.6925839 0.2773041 -0.8301795 0.6925839 0.2773041 -0.8475045 0.6925839 0.2773041 -0.8643761 0.6925839 0.2773041 -0.880825 0.6925839 0.2773041 -0.8968787 0.6925839 0.2773041 -0.9125621 0.6925839 0.2773041 -0.9278974 0.6925839 0.2773041 -0.9429048 0.6925839 0.2773041 -0.9576028 0.6925839 0.2773041 -0.9720079 0.6925839 0.2773041 -0.9861357 0.6925839 0.2773041 -1 0.6925839 0.2773041 -0 0.7143866 0.2773041 -0.1939468 0.7143866 0.2773041 -0.2773041 0.7143866 0.2773041 -0.3384659 0.7143866 0.2773041 -0.3885728 0.7143866 0.2773041 -0.4317928 0.7143866 0.2773041 -0.470214 0.7143866 0.2773041 -0.5050551 0.7143866 0.2773041 -0.5370987 0.7143866 0.2773041 -0.5668815 0.7143866 0.2773041 -0.5947903 0.7143866 0.2773041 -0.6211144 0.7143866 0.2773041 -0.6460766 0.7143866 0.2773041 -0.6698526 0.7143866 0.2773041 -0.6925839 0.7143866 0.2773041 -0.7143866 0.7143866 0.2773041 -0.7353569 0.7143866 0.2773041 -0.7555758 0.7143866 0.2773041 -0.7751122 0.7143866 0.2773041 -0.7940252 0.7143866 0.2773041 -0.8123661 0.7143866 0.2773041 -0.8301795 0.7143866 0.2773041 -0.8475045 0.7143866 0.2773041 -0.8643761 0.7143866 0.2773041 -0.880825 0.7143866 0.2773041 -0.8968787 0.7143866 0.2773041 -0.9125621 0.7143866 0.2773041 -0.9278974 0.7143866 0.2773041 -0.9429048 0.7143866 0.2773041 -0.9576028 0.7143866 0.2773041 -0.9720079 0.7143866 0.2773041 -0.9861357 0.7143866 0.2773041 -1 0.7143866 0.2773041 -0 0.7353569 0.2773041 -0.1939468 0.7353569 0.2773041 -0.2773041 0.7353569 0.2773041 -0.3384659 0.7353569 0.2773041 -0.3885728 0.7353569 0.2773041 -0.4317928 0.7353569 0.2773041 -0.470214 0.7353569 0.2773041 -0.5050551 0.7353569 0.2773041 -0.5370987 0.7353569 0.2773041 -0.5668815 0.7353569 0.2773041 -0.5947903 0.7353569 0.2773041 -0.6211144 0.7353569 0.2773041 -0.6460766 0.7353569 0.2773041 -0.6698526 0.7353569 0.2773041 -0.6925839 0.7353569 0.2773041 -0.7143866 0.7353569 0.2773041 -0.7353569 0.7353569 0.2773041 -0.7555758 0.7353569 0.2773041 -0.7751122 0.7353569 0.2773041 -0.7940252 0.7353569 0.2773041 -0.8123661 0.7353569 0.2773041 -0.8301795 0.7353569 0.2773041 -0.8475045 0.7353569 0.2773041 -0.8643761 0.7353569 0.2773041 -0.880825 0.7353569 0.2773041 -0.8968787 0.7353569 0.2773041 -0.9125621 0.7353569 0.2773041 -0.9278974 0.7353569 0.2773041 -0.9429048 0.7353569 0.2773041 -0.9576028 0.7353569 0.2773041 -0.9720079 0.7353569 0.2773041 -0.9861357 0.7353569 0.2773041 -1 0.7353569 0.2773041 -0 0.7555758 0.2773041 -0.1939468 0.7555758 0.2773041 -0.2773041 0.7555758 0.2773041 -0.3384659 0.7555758 0.2773041 -0.3885728 0.7555758 0.2773041 -0.4317928 0.7555758 0.2773041 -0.470214 0.7555758 0.2773041 -0.5050551 0.7555758 0.2773041 -0.5370987 0.7555758 0.2773041 -0.5668815 0.7555758 0.2773041 -0.5947903 0.7555758 0.2773041 -0.6211144 0.7555758 0.2773041 -0.6460766 0.7555758 0.2773041 -0.6698526 0.7555758 0.2773041 -0.6925839 0.7555758 0.2773041 -0.7143866 0.7555758 0.2773041 -0.7353569 0.7555758 0.2773041 -0.7555758 0.7555758 0.2773041 -0.7751122 0.7555758 0.2773041 -0.7940252 0.7555758 0.2773041 -0.8123661 0.7555758 0.2773041 -0.8301795 0.7555758 0.2773041 -0.8475045 0.7555758 0.2773041 -0.8643761 0.7555758 0.2773041 -0.880825 0.7555758 0.2773041 -0.8968787 0.7555758 0.2773041 -0.9125621 0.7555758 0.2773041 -0.9278974 0.7555758 0.2773041 -0.9429048 0.7555758 0.2773041 -0.9576028 0.7555758 0.2773041 -0.9720079 0.7555758 0.2773041 -0.9861357 0.7555758 0.2773041 -1 0.7555758 0.2773041 -0 0.7751122 0.2773041 -0.1939468 0.7751122 0.2773041 -0.2773041 0.7751122 0.2773041 -0.3384659 0.7751122 0.2773041 -0.3885728 0.7751122 0.2773041 -0.4317928 0.7751122 0.2773041 -0.470214 0.7751122 0.2773041 -0.5050551 0.7751122 0.2773041 -0.5370987 0.7751122 0.2773041 -0.5668815 0.7751122 0.2773041 -0.5947903 0.7751122 0.2773041 -0.6211144 0.7751122 0.2773041 -0.6460766 0.7751122 0.2773041 -0.6698526 0.7751122 0.2773041 -0.6925839 0.7751122 0.2773041 -0.7143866 0.7751122 0.2773041 -0.7353569 0.7751122 0.2773041 -0.7555758 0.7751122 0.2773041 -0.7751122 0.7751122 0.2773041 -0.7940252 0.7751122 0.2773041 -0.8123661 0.7751122 0.2773041 -0.8301795 0.7751122 0.2773041 -0.8475045 0.7751122 0.2773041 -0.8643761 0.7751122 0.2773041 -0.880825 0.7751122 0.2773041 -0.8968787 0.7751122 0.2773041 -0.9125621 0.7751122 0.2773041 -0.9278974 0.7751122 0.2773041 -0.9429048 0.7751122 0.2773041 -0.9576028 0.7751122 0.2773041 -0.9720079 0.7751122 0.2773041 -0.9861357 0.7751122 0.2773041 -1 0.7751122 0.2773041 -0 0.7940252 0.2773041 -0.1939468 0.7940252 0.2773041 -0.2773041 0.7940252 0.2773041 -0.3384659 0.7940252 0.2773041 -0.3885728 0.7940252 0.2773041 -0.4317928 0.7940252 0.2773041 -0.470214 0.7940252 0.2773041 -0.5050551 0.7940252 0.2773041 -0.5370987 0.7940252 0.2773041 -0.5668815 0.7940252 0.2773041 -0.5947903 0.7940252 0.2773041 -0.6211144 0.7940252 0.2773041 -0.6460766 0.7940252 0.2773041 -0.6698526 0.7940252 0.2773041 -0.6925839 0.7940252 0.2773041 -0.7143866 0.7940252 0.2773041 -0.7353569 0.7940252 0.2773041 -0.7555758 0.7940252 0.2773041 -0.7751122 0.7940252 0.2773041 -0.7940252 0.7940252 0.2773041 -0.8123661 0.7940252 0.2773041 -0.8301795 0.7940252 0.2773041 -0.8475045 0.7940252 0.2773041 -0.8643761 0.7940252 0.2773041 -0.880825 0.7940252 0.2773041 -0.8968787 0.7940252 0.2773041 -0.9125621 0.7940252 0.2773041 -0.9278974 0.7940252 0.2773041 -0.9429048 0.7940252 0.2773041 -0.9576028 0.7940252 0.2773041 -0.9720079 0.7940252 0.2773041 -0.9861357 0.7940252 0.2773041 -1 0.7940252 0.2773041 -0 0.8123661 0.2773041 -0.1939468 0.8123661 0.2773041 -0.2773041 0.8123661 0.2773041 -0.3384659 0.8123661 0.2773041 -0.3885728 0.8123661 0.2773041 -0.4317928 0.8123661 0.2773041 -0.470214 0.8123661 0.2773041 -0.5050551 0.8123661 0.2773041 -0.5370987 0.8123661 0.2773041 -0.5668815 0.8123661 0.2773041 -0.5947903 0.8123661 0.2773041 -0.6211144 0.8123661 0.2773041 -0.6460766 0.8123661 0.2773041 -0.6698526 0.8123661 0.2773041 -0.6925839 0.8123661 0.2773041 -0.7143866 0.8123661 0.2773041 -0.7353569 0.8123661 0.2773041 -0.7555758 0.8123661 0.2773041 -0.7751122 0.8123661 0.2773041 -0.7940252 0.8123661 0.2773041 -0.8123661 0.8123661 0.2773041 -0.8301795 0.8123661 0.2773041 -0.8475045 0.8123661 0.2773041 -0.8643761 0.8123661 0.2773041 -0.880825 0.8123661 0.2773041 -0.8968787 0.8123661 0.2773041 -0.9125621 0.8123661 0.2773041 -0.9278974 0.8123661 0.2773041 -0.9429048 0.8123661 0.2773041 -0.9576028 0.8123661 0.2773041 -0.9720079 0.8123661 0.2773041 -0.9861357 0.8123661 0.2773041 -1 0.8123661 0.2773041 -0 0.8301795 0.2773041 -0.1939468 0.8301795 0.2773041 -0.2773041 0.8301795 0.2773041 -0.3384659 0.8301795 0.2773041 -0.3885728 0.8301795 0.2773041 -0.4317928 0.8301795 0.2773041 -0.470214 0.8301795 0.2773041 -0.5050551 0.8301795 0.2773041 -0.5370987 0.8301795 0.2773041 -0.5668815 0.8301795 0.2773041 -0.5947903 0.8301795 0.2773041 -0.6211144 0.8301795 0.2773041 -0.6460766 0.8301795 0.2773041 -0.6698526 0.8301795 0.2773041 -0.6925839 0.8301795 0.2773041 -0.7143866 0.8301795 0.2773041 -0.7353569 0.8301795 0.2773041 -0.7555758 0.8301795 0.2773041 -0.7751122 0.8301795 0.2773041 -0.7940252 0.8301795 0.2773041 -0.8123661 0.8301795 0.2773041 -0.8301795 0.8301795 0.2773041 -0.8475045 0.8301795 0.2773041 -0.8643761 0.8301795 0.2773041 -0.880825 0.8301795 0.2773041 -0.8968787 0.8301795 0.2773041 -0.9125621 0.8301795 0.2773041 -0.9278974 0.8301795 0.2773041 -0.9429048 0.8301795 0.2773041 -0.9576028 0.8301795 0.2773041 -0.9720079 0.8301795 0.2773041 -0.9861357 0.8301795 0.2773041 -1 0.8301795 0.2773041 -0 0.8475045 0.2773041 -0.1939468 0.8475045 0.2773041 -0.2773041 0.8475045 0.2773041 -0.3384659 0.8475045 0.2773041 -0.3885728 0.8475045 0.2773041 -0.4317928 0.8475045 0.2773041 -0.470214 0.8475045 0.2773041 -0.5050551 0.8475045 0.2773041 -0.5370987 0.8475045 0.2773041 -0.5668815 0.8475045 0.2773041 -0.5947903 0.8475045 0.2773041 -0.6211144 0.8475045 0.2773041 -0.6460766 0.8475045 0.2773041 -0.6698526 0.8475045 0.2773041 -0.6925839 0.8475045 0.2773041 -0.7143866 0.8475045 0.2773041 -0.7353569 0.8475045 0.2773041 -0.7555758 0.8475045 0.2773041 -0.7751122 0.8475045 0.2773041 -0.7940252 0.8475045 0.2773041 -0.8123661 0.8475045 0.2773041 -0.8301795 0.8475045 0.2773041 -0.8475045 0.8475045 0.2773041 -0.8643761 0.8475045 0.2773041 -0.880825 0.8475045 0.2773041 -0.8968787 0.8475045 0.2773041 -0.9125621 0.8475045 0.2773041 -0.9278974 0.8475045 0.2773041 -0.9429048 0.8475045 0.2773041 -0.9576028 0.8475045 0.2773041 -0.9720079 0.8475045 0.2773041 -0.9861357 0.8475045 0.2773041 -1 0.8475045 0.2773041 -0 0.8643761 0.2773041 -0.1939468 0.8643761 0.2773041 -0.2773041 0.8643761 0.2773041 -0.3384659 0.8643761 0.2773041 -0.3885728 0.8643761 0.2773041 -0.4317928 0.8643761 0.2773041 -0.470214 0.8643761 0.2773041 -0.5050551 0.8643761 0.2773041 -0.5370987 0.8643761 0.2773041 -0.5668815 0.8643761 0.2773041 -0.5947903 0.8643761 0.2773041 -0.6211144 0.8643761 0.2773041 -0.6460766 0.8643761 0.2773041 -0.6698526 0.8643761 0.2773041 -0.6925839 0.8643761 0.2773041 -0.7143866 0.8643761 0.2773041 -0.7353569 0.8643761 0.2773041 -0.7555758 0.8643761 0.2773041 -0.7751122 0.8643761 0.2773041 -0.7940252 0.8643761 0.2773041 -0.8123661 0.8643761 0.2773041 -0.8301795 0.8643761 0.2773041 -0.8475045 0.8643761 0.2773041 -0.8643761 0.8643761 0.2773041 -0.880825 0.8643761 0.2773041 -0.8968787 0.8643761 0.2773041 -0.9125621 0.8643761 0.2773041 -0.9278974 0.8643761 0.2773041 -0.9429048 0.8643761 0.2773041 -0.9576028 0.8643761 0.2773041 -0.9720079 0.8643761 0.2773041 -0.9861357 0.8643761 0.2773041 -1 0.8643761 0.2773041 -0 0.880825 0.2773041 -0.1939468 0.880825 0.2773041 -0.2773041 0.880825 0.2773041 -0.3384659 0.880825 0.2773041 -0.3885728 0.880825 0.2773041 -0.4317928 0.880825 0.2773041 -0.470214 0.880825 0.2773041 -0.5050551 0.880825 0.2773041 -0.5370987 0.880825 0.2773041 -0.5668815 0.880825 0.2773041 -0.5947903 0.880825 0.2773041 -0.6211144 0.880825 0.2773041 -0.6460766 0.880825 0.2773041 -0.6698526 0.880825 0.2773041 -0.6925839 0.880825 0.2773041 -0.7143866 0.880825 0.2773041 -0.7353569 0.880825 0.2773041 -0.7555758 0.880825 0.2773041 -0.7751122 0.880825 0.2773041 -0.7940252 0.880825 0.2773041 -0.8123661 0.880825 0.2773041 -0.8301795 0.880825 0.2773041 -0.8475045 0.880825 0.2773041 -0.8643761 0.880825 0.2773041 -0.880825 0.880825 0.2773041 -0.8968787 0.880825 0.2773041 -0.9125621 0.880825 0.2773041 -0.9278974 0.880825 0.2773041 -0.9429048 0.880825 0.2773041 -0.9576028 0.880825 0.2773041 -0.9720079 0.880825 0.2773041 -0.9861357 0.880825 0.2773041 -1 0.880825 0.2773041 -0 0.8968787 0.2773041 -0.1939468 0.8968787 0.2773041 -0.2773041 0.8968787 0.2773041 -0.3384659 0.8968787 0.2773041 -0.3885728 0.8968787 0.2773041 -0.4317928 0.8968787 0.2773041 -0.470214 0.8968787 0.2773041 -0.5050551 0.8968787 0.2773041 -0.5370987 0.8968787 0.2773041 -0.5668815 0.8968787 0.2773041 -0.5947903 0.8968787 0.2773041 -0.6211144 0.8968787 0.2773041 -0.6460766 0.8968787 0.2773041 -0.6698526 0.8968787 0.2773041 -0.6925839 0.8968787 0.2773041 -0.7143866 0.8968787 0.2773041 -0.7353569 0.8968787 0.2773041 -0.7555758 0.8968787 0.2773041 -0.7751122 0.8968787 0.2773041 -0.7940252 0.8968787 0.2773041 -0.8123661 0.8968787 0.2773041 -0.8301795 0.8968787 0.2773041 -0.8475045 0.8968787 0.2773041 -0.8643761 0.8968787 0.2773041 -0.880825 0.8968787 0.2773041 -0.8968787 0.8968787 0.2773041 -0.9125621 0.8968787 0.2773041 -0.9278974 0.8968787 0.2773041 -0.9429048 0.8968787 0.2773041 -0.9576028 0.8968787 0.2773041 -0.9720079 0.8968787 0.2773041 -0.9861357 0.8968787 0.2773041 -1 0.8968787 0.2773041 -0 0.9125621 0.2773041 -0.1939468 0.9125621 0.2773041 -0.2773041 0.9125621 0.2773041 -0.3384659 0.9125621 0.2773041 -0.3885728 0.9125621 0.2773041 -0.4317928 0.9125621 0.2773041 -0.470214 0.9125621 0.2773041 -0.5050551 0.9125621 0.2773041 -0.5370987 0.9125621 0.2773041 -0.5668815 0.9125621 0.2773041 -0.5947903 0.9125621 0.2773041 -0.6211144 0.9125621 0.2773041 -0.6460766 0.9125621 0.2773041 -0.6698526 0.9125621 0.2773041 -0.6925839 0.9125621 0.2773041 -0.7143866 0.9125621 0.2773041 -0.7353569 0.9125621 0.2773041 -0.7555758 0.9125621 0.2773041 -0.7751122 0.9125621 0.2773041 -0.7940252 0.9125621 0.2773041 -0.8123661 0.9125621 0.2773041 -0.8301795 0.9125621 0.2773041 -0.8475045 0.9125621 0.2773041 -0.8643761 0.9125621 0.2773041 -0.880825 0.9125621 0.2773041 -0.8968787 0.9125621 0.2773041 -0.9125621 0.9125621 0.2773041 -0.9278974 0.9125621 0.2773041 -0.9429048 0.9125621 0.2773041 -0.9576028 0.9125621 0.2773041 -0.9720079 0.9125621 0.2773041 -0.9861357 0.9125621 0.2773041 -1 0.9125621 0.2773041 -0 0.9278974 0.2773041 -0.1939468 0.9278974 0.2773041 -0.2773041 0.9278974 0.2773041 -0.3384659 0.9278974 0.2773041 -0.3885728 0.9278974 0.2773041 -0.4317928 0.9278974 0.2773041 -0.470214 0.9278974 0.2773041 -0.5050551 0.9278974 0.2773041 -0.5370987 0.9278974 0.2773041 -0.5668815 0.9278974 0.2773041 -0.5947903 0.9278974 0.2773041 -0.6211144 0.9278974 0.2773041 -0.6460766 0.9278974 0.2773041 -0.6698526 0.9278974 0.2773041 -0.6925839 0.9278974 0.2773041 -0.7143866 0.9278974 0.2773041 -0.7353569 0.9278974 0.2773041 -0.7555758 0.9278974 0.2773041 -0.7751122 0.9278974 0.2773041 -0.7940252 0.9278974 0.2773041 -0.8123661 0.9278974 0.2773041 -0.8301795 0.9278974 0.2773041 -0.8475045 0.9278974 0.2773041 -0.8643761 0.9278974 0.2773041 -0.880825 0.9278974 0.2773041 -0.8968787 0.9278974 0.2773041 -0.9125621 0.9278974 0.2773041 -0.9278974 0.9278974 0.2773041 -0.9429048 0.9278974 0.2773041 -0.9576028 0.9278974 0.2773041 -0.9720079 0.9278974 0.2773041 -0.9861357 0.9278974 0.2773041 -1 0.9278974 0.2773041 -0 0.9429048 0.2773041 -0.1939468 0.9429048 0.2773041 -0.2773041 0.9429048 0.2773041 -0.3384659 0.9429048 0.2773041 -0.3885728 0.9429048 0.2773041 -0.4317928 0.9429048 0.2773041 -0.470214 0.9429048 0.2773041 -0.5050551 0.9429048 0.2773041 -0.5370987 0.9429048 0.2773041 -0.5668815 0.9429048 0.2773041 -0.5947903 0.9429048 0.2773041 -0.6211144 0.9429048 0.2773041 -0.6460766 0.9429048 0.2773041 -0.6698526 0.9429048 0.2773041 -0.6925839 0.9429048 0.2773041 -0.7143866 0.9429048 0.2773041 -0.7353569 0.9429048 0.2773041 -0.7555758 0.9429048 0.2773041 -0.7751122 0.9429048 0.2773041 -0.7940252 0.9429048 0.2773041 -0.8123661 0.9429048 0.2773041 -0.8301795 0.9429048 0.2773041 -0.8475045 0.9429048 0.2773041 -0.8643761 0.9429048 0.2773041 -0.880825 0.9429048 0.2773041 -0.8968787 0.9429048 0.2773041 -0.9125621 0.9429048 0.2773041 -0.9278974 0.9429048 0.2773041 -0.9429048 0.9429048 0.2773041 -0.9576028 0.9429048 0.2773041 -0.9720079 0.9429048 0.2773041 -0.9861357 0.9429048 0.2773041 -1 0.9429048 0.2773041 -0 0.9576028 0.2773041 -0.1939468 0.9576028 0.2773041 -0.2773041 0.9576028 0.2773041 -0.3384659 0.9576028 0.2773041 -0.3885728 0.9576028 0.2773041 -0.4317928 0.9576028 0.2773041 -0.470214 0.9576028 0.2773041 -0.5050551 0.9576028 0.2773041 -0.5370987 0.9576028 0.2773041 -0.5668815 0.9576028 0.2773041 -0.5947903 0.9576028 0.2773041 -0.6211144 0.9576028 0.2773041 -0.6460766 0.9576028 0.2773041 -0.6698526 0.9576028 0.2773041 -0.6925839 0.9576028 0.2773041 -0.7143866 0.9576028 0.2773041 -0.7353569 0.9576028 0.2773041 -0.7555758 0.9576028 0.2773041 -0.7751122 0.9576028 0.2773041 -0.7940252 0.9576028 0.2773041 -0.8123661 0.9576028 0.2773041 -0.8301795 0.9576028 0.2773041 -0.8475045 0.9576028 0.2773041 -0.8643761 0.9576028 0.2773041 -0.880825 0.9576028 0.2773041 -0.8968787 0.9576028 0.2773041 -0.9125621 0.9576028 0.2773041 -0.9278974 0.9576028 0.2773041 -0.9429048 0.9576028 0.2773041 -0.9576028 0.9576028 0.2773041 -0.9720079 0.9576028 0.2773041 -0.9861357 0.9576028 0.2773041 -1 0.9576028 0.2773041 -0 0.9720079 0.2773041 -0.1939468 0.9720079 0.2773041 -0.2773041 0.9720079 0.2773041 -0.3384659 0.9720079 0.2773041 -0.3885728 0.9720079 0.2773041 -0.4317928 0.9720079 0.2773041 -0.470214 0.9720079 0.2773041 -0.5050551 0.9720079 0.2773041 -0.5370987 0.9720079 0.2773041 -0.5668815 0.9720079 0.2773041 -0.5947903 0.9720079 0.2773041 -0.6211144 0.9720079 0.2773041 -0.6460766 0.9720079 0.2773041 -0.6698526 0.9720079 0.2773041 -0.6925839 0.9720079 0.2773041 -0.7143866 0.9720079 0.2773041 -0.7353569 0.9720079 0.2773041 -0.7555758 0.9720079 0.2773041 -0.7751122 0.9720079 0.2773041 -0.7940252 0.9720079 0.2773041 -0.8123661 0.9720079 0.2773041 -0.8301795 0.9720079 0.2773041 -0.8475045 0.9720079 0.2773041 -0.8643761 0.9720079 0.2773041 -0.880825 0.9720079 0.2773041 -0.8968787 0.9720079 0.2773041 -0.9125621 0.9720079 0.2773041 -0.9278974 0.9720079 0.2773041 -0.9429048 0.9720079 0.2773041 -0.9576028 0.9720079 0.2773041 -0.9720079 0.9720079 0.2773041 -0.9861357 0.9720079 0.2773041 -1 0.9720079 0.2773041 -0 0.9861357 0.2773041 -0.1939468 0.9861357 0.2773041 -0.2773041 0.9861357 0.2773041 -0.3384659 0.9861357 0.2773041 -0.3885728 0.9861357 0.2773041 -0.4317928 0.9861357 0.2773041 -0.470214 0.9861357 0.2773041 -0.5050551 0.9861357 0.2773041 -0.5370987 0.9861357 0.2773041 -0.5668815 0.9861357 0.2773041 -0.5947903 0.9861357 0.2773041 -0.6211144 0.9861357 0.2773041 -0.6460766 0.9861357 0.2773041 -0.6698526 0.9861357 0.2773041 -0.6925839 0.9861357 0.2773041 -0.7143866 0.9861357 0.2773041 -0.7353569 0.9861357 0.2773041 -0.7555758 0.9861357 0.2773041 -0.7751122 0.9861357 0.2773041 -0.7940252 0.9861357 0.2773041 -0.8123661 0.9861357 0.2773041 -0.8301795 0.9861357 0.2773041 -0.8475045 0.9861357 0.2773041 -0.8643761 0.9861357 0.2773041 -0.880825 0.9861357 0.2773041 -0.8968787 0.9861357 0.2773041 -0.9125621 0.9861357 0.2773041 -0.9278974 0.9861357 0.2773041 -0.9429048 0.9861357 0.2773041 -0.9576028 0.9861357 0.2773041 -0.9720079 0.9861357 0.2773041 -0.9861357 0.9861357 0.2773041 -1 0.9861357 0.2773041 -0 1 0.2773041 -0.1939468 1 0.2773041 -0.2773041 1 0.2773041 -0.3384659 1 0.2773041 -0.3885728 1 0.2773041 -0.4317928 1 0.2773041 -0.470214 1 0.2773041 -0.5050551 1 0.2773041 -0.5370987 1 0.2773041 -0.5668815 1 0.2773041 -0.5947903 1 0.2773041 -0.6211144 1 0.2773041 -0.6460766 1 0.2773041 -0.6698526 1 0.2773041 -0.6925839 1 0.2773041 -0.7143866 1 0.2773041 -0.7353569 1 0.2773041 -0.7555758 1 0.2773041 -0.7751122 1 0.2773041 -0.7940252 1 0.2773041 -0.8123661 1 0.2773041 -0.8301795 1 0.2773041 -0.8475045 1 0.2773041 -0.8643761 1 0.2773041 -0.880825 1 0.2773041 -0.8968787 1 0.2773041 -0.9125621 1 0.2773041 -0.9278974 1 0.2773041 -0.9429048 1 0.2773041 -0.9576028 1 0.2773041 -0.9720079 1 0.2773041 -0.9861357 1 0.2773041 -1 1 0.2773041 -0 0 0.3384659 -0.1939468 0 0.3384659 -0.2773041 0 0.3384659 -0.3384659 0 0.3384659 -0.3885728 0 0.3384659 -0.4317928 0 0.3384659 -0.470214 0 0.3384659 -0.5050551 0 0.3384659 -0.5370987 0 0.3384659 -0.5668815 0 0.3384659 -0.5947903 0 0.3384659 -0.6211144 0 0.3384659 -0.6460766 0 0.3384659 -0.6698526 0 0.3384659 -0.6925839 0 0.3384659 -0.7143866 0 0.3384659 -0.7353569 0 0.3384659 -0.7555758 0 0.3384659 -0.7751122 0 0.3384659 -0.7940252 0 0.3384659 -0.8123661 0 0.3384659 -0.8301795 0 0.3384659 -0.8475045 0 0.3384659 -0.8643761 0 0.3384659 -0.880825 0 0.3384659 -0.8968787 0 0.3384659 -0.9125621 0 0.3384659 -0.9278974 0 0.3384659 -0.9429048 0 0.3384659 -0.9576028 0 0.3384659 -0.9720079 0 0.3384659 -0.9861357 0 0.3384659 -1 0 0.3384659 -0 0.1939468 0.3384659 -0.1939468 0.1939468 0.3384659 -0.2773041 0.1939468 0.3384659 -0.3384659 0.1939468 0.3384659 -0.3885728 0.1939468 0.3384659 -0.4317928 0.1939468 0.3384659 -0.470214 0.1939468 0.3384659 -0.5050551 0.1939468 0.3384659 -0.5370987 0.1939468 0.3384659 -0.5668815 0.1939468 0.3384659 -0.5947903 0.1939468 0.3384659 -0.6211144 0.1939468 0.3384659 -0.6460766 0.1939468 0.3384659 -0.6698526 0.1939468 0.3384659 -0.6925839 0.1939468 0.3384659 -0.7143866 0.1939468 0.3384659 -0.7353569 0.1939468 0.3384659 -0.7555758 0.1939468 0.3384659 -0.7751122 0.1939468 0.3384659 -0.7940252 0.1939468 0.3384659 -0.8123661 0.1939468 0.3384659 -0.8301795 0.1939468 0.3384659 -0.8475045 0.1939468 0.3384659 -0.8643761 0.1939468 0.3384659 -0.880825 0.1939468 0.3384659 -0.8968787 0.1939468 0.3384659 -0.9125621 0.1939468 0.3384659 -0.9278974 0.1939468 0.3384659 -0.9429048 0.1939468 0.3384659 -0.9576028 0.1939468 0.3384659 -0.9720079 0.1939468 0.3384659 -0.9861357 0.1939468 0.3384659 -1 0.1939468 0.3384659 -0 0.2773041 0.3384659 -0.1939468 0.2773041 0.3384659 -0.2773041 0.2773041 0.3384659 -0.3384659 0.2773041 0.3384659 -0.3885728 0.2773041 0.3384659 -0.4317928 0.2773041 0.3384659 -0.470214 0.2773041 0.3384659 -0.5050551 0.2773041 0.3384659 -0.5370987 0.2773041 0.3384659 -0.5668815 0.2773041 0.3384659 -0.5947903 0.2773041 0.3384659 -0.6211144 0.2773041 0.3384659 -0.6460766 0.2773041 0.3384659 -0.6698526 0.2773041 0.3384659 -0.6925839 0.2773041 0.3384659 -0.7143866 0.2773041 0.3384659 -0.7353569 0.2773041 0.3384659 -0.7555758 0.2773041 0.3384659 -0.7751122 0.2773041 0.3384659 -0.7940252 0.2773041 0.3384659 -0.8123661 0.2773041 0.3384659 -0.8301795 0.2773041 0.3384659 -0.8475045 0.2773041 0.3384659 -0.8643761 0.2773041 0.3384659 -0.880825 0.2773041 0.3384659 -0.8968787 0.2773041 0.3384659 -0.9125621 0.2773041 0.3384659 -0.9278974 0.2773041 0.3384659 -0.9429048 0.2773041 0.3384659 -0.9576028 0.2773041 0.3384659 -0.9720079 0.2773041 0.3384659 -0.9861357 0.2773041 0.3384659 -1 0.2773041 0.3384659 -0 0.3384659 0.3384659 -0.1939468 0.3384659 0.3384659 -0.2773041 0.3384659 0.3384659 -0.3384659 0.3384659 0.3384659 -0.3885728 0.3384659 0.3384659 -0.4317928 0.3384659 0.3384659 -0.470214 0.3384659 0.3384659 -0.5050551 0.3384659 0.3384659 -0.5370987 0.3384659 0.3384659 -0.5668815 0.3384659 0.3384659 -0.5947903 0.3384659 0.3384659 -0.6211144 0.3384659 0.3384659 -0.6460766 0.3384659 0.3384659 -0.6698526 0.3384659 0.3384659 -0.6925839 0.3384659 0.3384659 -0.7143866 0.3384659 0.3384659 -0.7353569 0.3384659 0.3384659 -0.7555758 0.3384659 0.3384659 -0.7751122 0.3384659 0.3384659 -0.7940252 0.3384659 0.3384659 -0.8123661 0.3384659 0.3384659 -0.8301795 0.3384659 0.3384659 -0.8475045 0.3384659 0.3384659 -0.8643761 0.3384659 0.3384659 -0.880825 0.3384659 0.3384659 -0.8968787 0.3384659 0.3384659 -0.9125621 0.3384659 0.3384659 -0.9278974 0.3384659 0.3384659 -0.9429048 0.3384659 0.3384659 -0.9576028 0.3384659 0.3384659 -0.9720079 0.3384659 0.3384659 -0.9861357 0.3384659 0.3384659 -1 0.3384659 0.3384659 -0 0.3885728 0.3384659 -0.1939468 0.3885728 0.3384659 -0.2773041 0.3885728 0.3384659 -0.3384659 0.3885728 0.3384659 -0.3885728 0.3885728 0.3384659 -0.4317928 0.3885728 0.3384659 -0.470214 0.3885728 0.3384659 -0.5050551 0.3885728 0.3384659 -0.5370987 0.3885728 0.3384659 -0.5668815 0.3885728 0.3384659 -0.5947903 0.3885728 0.3384659 -0.6211144 0.3885728 0.3384659 -0.6460766 0.3885728 0.3384659 -0.6698526 0.3885728 0.3384659 -0.6925839 0.3885728 0.3384659 -0.7143866 0.3885728 0.3384659 -0.7353569 0.3885728 0.3384659 -0.7555758 0.3885728 0.3384659 -0.7751122 0.3885728 0.3384659 -0.7940252 0.3885728 0.3384659 -0.8123661 0.3885728 0.3384659 -0.8301795 0.3885728 0.3384659 -0.8475045 0.3885728 0.3384659 -0.8643761 0.3885728 0.3384659 -0.880825 0.3885728 0.3384659 -0.8968787 0.3885728 0.3384659 -0.9125621 0.3885728 0.3384659 -0.9278974 0.3885728 0.3384659 -0.9429048 0.3885728 0.3384659 -0.9576028 0.3885728 0.3384659 -0.9720079 0.3885728 0.3384659 -0.9861357 0.3885728 0.3384659 -1 0.3885728 0.3384659 -0 0.4317928 0.3384659 -0.1939468 0.4317928 0.3384659 -0.2773041 0.4317928 0.3384659 -0.3384659 0.4317928 0.3384659 -0.3885728 0.4317928 0.3384659 -0.4317928 0.4317928 0.3384659 -0.470214 0.4317928 0.3384659 -0.5050551 0.4317928 0.3384659 -0.5370987 0.4317928 0.3384659 -0.5668815 0.4317928 0.3384659 -0.5947903 0.4317928 0.3384659 -0.6211144 0.4317928 0.3384659 -0.6460766 0.4317928 0.3384659 -0.6698526 0.4317928 0.3384659 -0.6925839 0.4317928 0.3384659 -0.7143866 0.4317928 0.3384659 -0.7353569 0.4317928 0.3384659 -0.7555758 0.4317928 0.3384659 -0.7751122 0.4317928 0.3384659 -0.7940252 0.4317928 0.3384659 -0.8123661 0.4317928 0.3384659 -0.8301795 0.4317928 0.3384659 -0.8475045 0.4317928 0.3384659 -0.8643761 0.4317928 0.3384659 -0.880825 0.4317928 0.3384659 -0.8968787 0.4317928 0.3384659 -0.9125621 0.4317928 0.3384659 -0.9278974 0.4317928 0.3384659 -0.9429048 0.4317928 0.3384659 -0.9576028 0.4317928 0.3384659 -0.9720079 0.4317928 0.3384659 -0.9861357 0.4317928 0.3384659 -1 0.4317928 0.3384659 -0 0.470214 0.3384659 -0.1939468 0.470214 0.3384659 -0.2773041 0.470214 0.3384659 -0.3384659 0.470214 0.3384659 -0.3885728 0.470214 0.3384659 -0.4317928 0.470214 0.3384659 -0.470214 0.470214 0.3384659 -0.5050551 0.470214 0.3384659 -0.5370987 0.470214 0.3384659 -0.5668815 0.470214 0.3384659 -0.5947903 0.470214 0.3384659 -0.6211144 0.470214 0.3384659 -0.6460766 0.470214 0.3384659 -0.6698526 0.470214 0.3384659 -0.6925839 0.470214 0.3384659 -0.7143866 0.470214 0.3384659 -0.7353569 0.470214 0.3384659 -0.7555758 0.470214 0.3384659 -0.7751122 0.470214 0.3384659 -0.7940252 0.470214 0.3384659 -0.8123661 0.470214 0.3384659 -0.8301795 0.470214 0.3384659 -0.8475045 0.470214 0.3384659 -0.8643761 0.470214 0.3384659 -0.880825 0.470214 0.3384659 -0.8968787 0.470214 0.3384659 -0.9125621 0.470214 0.3384659 -0.9278974 0.470214 0.3384659 -0.9429048 0.470214 0.3384659 -0.9576028 0.470214 0.3384659 -0.9720079 0.470214 0.3384659 -0.9861357 0.470214 0.3384659 -1 0.470214 0.3384659 -0 0.5050551 0.3384659 -0.1939468 0.5050551 0.3384659 -0.2773041 0.5050551 0.3384659 -0.3384659 0.5050551 0.3384659 -0.3885728 0.5050551 0.3384659 -0.4317928 0.5050551 0.3384659 -0.470214 0.5050551 0.3384659 -0.5050551 0.5050551 0.3384659 -0.5370987 0.5050551 0.3384659 -0.5668815 0.5050551 0.3384659 -0.5947903 0.5050551 0.3384659 -0.6211144 0.5050551 0.3384659 -0.6460766 0.5050551 0.3384659 -0.6698526 0.5050551 0.3384659 -0.6925839 0.5050551 0.3384659 -0.7143866 0.5050551 0.3384659 -0.7353569 0.5050551 0.3384659 -0.7555758 0.5050551 0.3384659 -0.7751122 0.5050551 0.3384659 -0.7940252 0.5050551 0.3384659 -0.8123661 0.5050551 0.3384659 -0.8301795 0.5050551 0.3384659 -0.8475045 0.5050551 0.3384659 -0.8643761 0.5050551 0.3384659 -0.880825 0.5050551 0.3384659 -0.8968787 0.5050551 0.3384659 -0.9125621 0.5050551 0.3384659 -0.9278974 0.5050551 0.3384659 -0.9429048 0.5050551 0.3384659 -0.9576028 0.5050551 0.3384659 -0.9720079 0.5050551 0.3384659 -0.9861357 0.5050551 0.3384659 -1 0.5050551 0.3384659 -0 0.5370987 0.3384659 -0.1939468 0.5370987 0.3384659 -0.2773041 0.5370987 0.3384659 -0.3384659 0.5370987 0.3384659 -0.3885728 0.5370987 0.3384659 -0.4317928 0.5370987 0.3384659 -0.470214 0.5370987 0.3384659 -0.5050551 0.5370987 0.3384659 -0.5370987 0.5370987 0.3384659 -0.5668815 0.5370987 0.3384659 -0.5947903 0.5370987 0.3384659 -0.6211144 0.5370987 0.3384659 -0.6460766 0.5370987 0.3384659 -0.6698526 0.5370987 0.3384659 -0.6925839 0.5370987 0.3384659 -0.7143866 0.5370987 0.3384659 -0.7353569 0.5370987 0.3384659 -0.7555758 0.5370987 0.3384659 -0.7751122 0.5370987 0.3384659 -0.7940252 0.5370987 0.3384659 -0.8123661 0.5370987 0.3384659 -0.8301795 0.5370987 0.3384659 -0.8475045 0.5370987 0.3384659 -0.8643761 0.5370987 0.3384659 -0.880825 0.5370987 0.3384659 -0.8968787 0.5370987 0.3384659 -0.9125621 0.5370987 0.3384659 -0.9278974 0.5370987 0.3384659 -0.9429048 0.5370987 0.3384659 -0.9576028 0.5370987 0.3384659 -0.9720079 0.5370987 0.3384659 -0.9861357 0.5370987 0.3384659 -1 0.5370987 0.3384659 -0 0.5668815 0.3384659 -0.1939468 0.5668815 0.3384659 -0.2773041 0.5668815 0.3384659 -0.3384659 0.5668815 0.3384659 -0.3885728 0.5668815 0.3384659 -0.4317928 0.5668815 0.3384659 -0.470214 0.5668815 0.3384659 -0.5050551 0.5668815 0.3384659 -0.5370987 0.5668815 0.3384659 -0.5668815 0.5668815 0.3384659 -0.5947903 0.5668815 0.3384659 -0.6211144 0.5668815 0.3384659 -0.6460766 0.5668815 0.3384659 -0.6698526 0.5668815 0.3384659 -0.6925839 0.5668815 0.3384659 -0.7143866 0.5668815 0.3384659 -0.7353569 0.5668815 0.3384659 -0.7555758 0.5668815 0.3384659 -0.7751122 0.5668815 0.3384659 -0.7940252 0.5668815 0.3384659 -0.8123661 0.5668815 0.3384659 -0.8301795 0.5668815 0.3384659 -0.8475045 0.5668815 0.3384659 -0.8643761 0.5668815 0.3384659 -0.880825 0.5668815 0.3384659 -0.8968787 0.5668815 0.3384659 -0.9125621 0.5668815 0.3384659 -0.9278974 0.5668815 0.3384659 -0.9429048 0.5668815 0.3384659 -0.9576028 0.5668815 0.3384659 -0.9720079 0.5668815 0.3384659 -0.9861357 0.5668815 0.3384659 -1 0.5668815 0.3384659 -0 0.5947903 0.3384659 -0.1939468 0.5947903 0.3384659 -0.2773041 0.5947903 0.3384659 -0.3384659 0.5947903 0.3384659 -0.3885728 0.5947903 0.3384659 -0.4317928 0.5947903 0.3384659 -0.470214 0.5947903 0.3384659 -0.5050551 0.5947903 0.3384659 -0.5370987 0.5947903 0.3384659 -0.5668815 0.5947903 0.3384659 -0.5947903 0.5947903 0.3384659 -0.6211144 0.5947903 0.3384659 -0.6460766 0.5947903 0.3384659 -0.6698526 0.5947903 0.3384659 -0.6925839 0.5947903 0.3384659 -0.7143866 0.5947903 0.3384659 -0.7353569 0.5947903 0.3384659 -0.7555758 0.5947903 0.3384659 -0.7751122 0.5947903 0.3384659 -0.7940252 0.5947903 0.3384659 -0.8123661 0.5947903 0.3384659 -0.8301795 0.5947903 0.3384659 -0.8475045 0.5947903 0.3384659 -0.8643761 0.5947903 0.3384659 -0.880825 0.5947903 0.3384659 -0.8968787 0.5947903 0.3384659 -0.9125621 0.5947903 0.3384659 -0.9278974 0.5947903 0.3384659 -0.9429048 0.5947903 0.3384659 -0.9576028 0.5947903 0.3384659 -0.9720079 0.5947903 0.3384659 -0.9861357 0.5947903 0.3384659 -1 0.5947903 0.3384659 -0 0.6211144 0.3384659 -0.1939468 0.6211144 0.3384659 -0.2773041 0.6211144 0.3384659 -0.3384659 0.6211144 0.3384659 -0.3885728 0.6211144 0.3384659 -0.4317928 0.6211144 0.3384659 -0.470214 0.6211144 0.3384659 -0.5050551 0.6211144 0.3384659 -0.5370987 0.6211144 0.3384659 -0.5668815 0.6211144 0.3384659 -0.5947903 0.6211144 0.3384659 -0.6211144 0.6211144 0.3384659 -0.6460766 0.6211144 0.3384659 -0.6698526 0.6211144 0.3384659 -0.6925839 0.6211144 0.3384659 -0.7143866 0.6211144 0.3384659 -0.7353569 0.6211144 0.3384659 -0.7555758 0.6211144 0.3384659 -0.7751122 0.6211144 0.3384659 -0.7940252 0.6211144 0.3384659 -0.8123661 0.6211144 0.3384659 -0.8301795 0.6211144 0.3384659 -0.8475045 0.6211144 0.3384659 -0.8643761 0.6211144 0.3384659 -0.880825 0.6211144 0.3384659 -0.8968787 0.6211144 0.3384659 -0.9125621 0.6211144 0.3384659 -0.9278974 0.6211144 0.3384659 -0.9429048 0.6211144 0.3384659 -0.9576028 0.6211144 0.3384659 -0.9720079 0.6211144 0.3384659 -0.9861357 0.6211144 0.3384659 -1 0.6211144 0.3384659 -0 0.6460766 0.3384659 -0.1939468 0.6460766 0.3384659 -0.2773041 0.6460766 0.3384659 -0.3384659 0.6460766 0.3384659 -0.3885728 0.6460766 0.3384659 -0.4317928 0.6460766 0.3384659 -0.470214 0.6460766 0.3384659 -0.5050551 0.6460766 0.3384659 -0.5370987 0.6460766 0.3384659 -0.5668815 0.6460766 0.3384659 -0.5947903 0.6460766 0.3384659 -0.6211144 0.6460766 0.3384659 -0.6460766 0.6460766 0.3384659 -0.6698526 0.6460766 0.3384659 -0.6925839 0.6460766 0.3384659 -0.7143866 0.6460766 0.3384659 -0.7353569 0.6460766 0.3384659 -0.7555758 0.6460766 0.3384659 -0.7751122 0.6460766 0.3384659 -0.7940252 0.6460766 0.3384659 -0.8123661 0.6460766 0.3384659 -0.8301795 0.6460766 0.3384659 -0.8475045 0.6460766 0.3384659 -0.8643761 0.6460766 0.3384659 -0.880825 0.6460766 0.3384659 -0.8968787 0.6460766 0.3384659 -0.9125621 0.6460766 0.3384659 -0.9278974 0.6460766 0.3384659 -0.9429048 0.6460766 0.3384659 -0.9576028 0.6460766 0.3384659 -0.9720079 0.6460766 0.3384659 -0.9861357 0.6460766 0.3384659 -1 0.6460766 0.3384659 -0 0.6698526 0.3384659 -0.1939468 0.6698526 0.3384659 -0.2773041 0.6698526 0.3384659 -0.3384659 0.6698526 0.3384659 -0.3885728 0.6698526 0.3384659 -0.4317928 0.6698526 0.3384659 -0.470214 0.6698526 0.3384659 -0.5050551 0.6698526 0.3384659 -0.5370987 0.6698526 0.3384659 -0.5668815 0.6698526 0.3384659 -0.5947903 0.6698526 0.3384659 -0.6211144 0.6698526 0.3384659 -0.6460766 0.6698526 0.3384659 -0.6698526 0.6698526 0.3384659 -0.6925839 0.6698526 0.3384659 -0.7143866 0.6698526 0.3384659 -0.7353569 0.6698526 0.3384659 -0.7555758 0.6698526 0.3384659 -0.7751122 0.6698526 0.3384659 -0.7940252 0.6698526 0.3384659 -0.8123661 0.6698526 0.3384659 -0.8301795 0.6698526 0.3384659 -0.8475045 0.6698526 0.3384659 -0.8643761 0.6698526 0.3384659 -0.880825 0.6698526 0.3384659 -0.8968787 0.6698526 0.3384659 -0.9125621 0.6698526 0.3384659 -0.9278974 0.6698526 0.3384659 -0.9429048 0.6698526 0.3384659 -0.9576028 0.6698526 0.3384659 -0.9720079 0.6698526 0.3384659 -0.9861357 0.6698526 0.3384659 -1 0.6698526 0.3384659 -0 0.6925839 0.3384659 -0.1939468 0.6925839 0.3384659 -0.2773041 0.6925839 0.3384659 -0.3384659 0.6925839 0.3384659 -0.3885728 0.6925839 0.3384659 -0.4317928 0.6925839 0.3384659 -0.470214 0.6925839 0.3384659 -0.5050551 0.6925839 0.3384659 -0.5370987 0.6925839 0.3384659 -0.5668815 0.6925839 0.3384659 -0.5947903 0.6925839 0.3384659 -0.6211144 0.6925839 0.3384659 -0.6460766 0.6925839 0.3384659 -0.6698526 0.6925839 0.3384659 -0.6925839 0.6925839 0.3384659 -0.7143866 0.6925839 0.3384659 -0.7353569 0.6925839 0.3384659 -0.7555758 0.6925839 0.3384659 -0.7751122 0.6925839 0.3384659 -0.7940252 0.6925839 0.3384659 -0.8123661 0.6925839 0.3384659 -0.8301795 0.6925839 0.3384659 -0.8475045 0.6925839 0.3384659 -0.8643761 0.6925839 0.3384659 -0.880825 0.6925839 0.3384659 -0.8968787 0.6925839 0.3384659 -0.9125621 0.6925839 0.3384659 -0.9278974 0.6925839 0.3384659 -0.9429048 0.6925839 0.3384659 -0.9576028 0.6925839 0.3384659 -0.9720079 0.6925839 0.3384659 -0.9861357 0.6925839 0.3384659 -1 0.6925839 0.3384659 -0 0.7143866 0.3384659 -0.1939468 0.7143866 0.3384659 -0.2773041 0.7143866 0.3384659 -0.3384659 0.7143866 0.3384659 -0.3885728 0.7143866 0.3384659 -0.4317928 0.7143866 0.3384659 -0.470214 0.7143866 0.3384659 -0.5050551 0.7143866 0.3384659 -0.5370987 0.7143866 0.3384659 -0.5668815 0.7143866 0.3384659 -0.5947903 0.7143866 0.3384659 -0.6211144 0.7143866 0.3384659 -0.6460766 0.7143866 0.3384659 -0.6698526 0.7143866 0.3384659 -0.6925839 0.7143866 0.3384659 -0.7143866 0.7143866 0.3384659 -0.7353569 0.7143866 0.3384659 -0.7555758 0.7143866 0.3384659 -0.7751122 0.7143866 0.3384659 -0.7940252 0.7143866 0.3384659 -0.8123661 0.7143866 0.3384659 -0.8301795 0.7143866 0.3384659 -0.8475045 0.7143866 0.3384659 -0.8643761 0.7143866 0.3384659 -0.880825 0.7143866 0.3384659 -0.8968787 0.7143866 0.3384659 -0.9125621 0.7143866 0.3384659 -0.9278974 0.7143866 0.3384659 -0.9429048 0.7143866 0.3384659 -0.9576028 0.7143866 0.3384659 -0.9720079 0.7143866 0.3384659 -0.9861357 0.7143866 0.3384659 -1 0.7143866 0.3384659 -0 0.7353569 0.3384659 -0.1939468 0.7353569 0.3384659 -0.2773041 0.7353569 0.3384659 -0.3384659 0.7353569 0.3384659 -0.3885728 0.7353569 0.3384659 -0.4317928 0.7353569 0.3384659 -0.470214 0.7353569 0.3384659 -0.5050551 0.7353569 0.3384659 -0.5370987 0.7353569 0.3384659 -0.5668815 0.7353569 0.3384659 -0.5947903 0.7353569 0.3384659 -0.6211144 0.7353569 0.3384659 -0.6460766 0.7353569 0.3384659 -0.6698526 0.7353569 0.3384659 -0.6925839 0.7353569 0.3384659 -0.7143866 0.7353569 0.3384659 -0.7353569 0.7353569 0.3384659 -0.7555758 0.7353569 0.3384659 -0.7751122 0.7353569 0.3384659 -0.7940252 0.7353569 0.3384659 -0.8123661 0.7353569 0.3384659 -0.8301795 0.7353569 0.3384659 -0.8475045 0.7353569 0.3384659 -0.8643761 0.7353569 0.3384659 -0.880825 0.7353569 0.3384659 -0.8968787 0.7353569 0.3384659 -0.9125621 0.7353569 0.3384659 -0.9278974 0.7353569 0.3384659 -0.9429048 0.7353569 0.3384659 -0.9576028 0.7353569 0.3384659 -0.9720079 0.7353569 0.3384659 -0.9861357 0.7353569 0.3384659 -1 0.7353569 0.3384659 -0 0.7555758 0.3384659 -0.1939468 0.7555758 0.3384659 -0.2773041 0.7555758 0.3384659 -0.3384659 0.7555758 0.3384659 -0.3885728 0.7555758 0.3384659 -0.4317928 0.7555758 0.3384659 -0.470214 0.7555758 0.3384659 -0.5050551 0.7555758 0.3384659 -0.5370987 0.7555758 0.3384659 -0.5668815 0.7555758 0.3384659 -0.5947903 0.7555758 0.3384659 -0.6211144 0.7555758 0.3384659 -0.6460766 0.7555758 0.3384659 -0.6698526 0.7555758 0.3384659 -0.6925839 0.7555758 0.3384659 -0.7143866 0.7555758 0.3384659 -0.7353569 0.7555758 0.3384659 -0.7555758 0.7555758 0.3384659 -0.7751122 0.7555758 0.3384659 -0.7940252 0.7555758 0.3384659 -0.8123661 0.7555758 0.3384659 -0.8301795 0.7555758 0.3384659 -0.8475045 0.7555758 0.3384659 -0.8643761 0.7555758 0.3384659 -0.880825 0.7555758 0.3384659 -0.8968787 0.7555758 0.3384659 -0.9125621 0.7555758 0.3384659 -0.9278974 0.7555758 0.3384659 -0.9429048 0.7555758 0.3384659 -0.9576028 0.7555758 0.3384659 -0.9720079 0.7555758 0.3384659 -0.9861357 0.7555758 0.3384659 -1 0.7555758 0.3384659 -0 0.7751122 0.3384659 -0.1939468 0.7751122 0.3384659 -0.2773041 0.7751122 0.3384659 -0.3384659 0.7751122 0.3384659 -0.3885728 0.7751122 0.3384659 -0.4317928 0.7751122 0.3384659 -0.470214 0.7751122 0.3384659 -0.5050551 0.7751122 0.3384659 -0.5370987 0.7751122 0.3384659 -0.5668815 0.7751122 0.3384659 -0.5947903 0.7751122 0.3384659 -0.6211144 0.7751122 0.3384659 -0.6460766 0.7751122 0.3384659 -0.6698526 0.7751122 0.3384659 -0.6925839 0.7751122 0.3384659 -0.7143866 0.7751122 0.3384659 -0.7353569 0.7751122 0.3384659 -0.7555758 0.7751122 0.3384659 -0.7751122 0.7751122 0.3384659 -0.7940252 0.7751122 0.3384659 -0.8123661 0.7751122 0.3384659 -0.8301795 0.7751122 0.3384659 -0.8475045 0.7751122 0.3384659 -0.8643761 0.7751122 0.3384659 -0.880825 0.7751122 0.3384659 -0.8968787 0.7751122 0.3384659 -0.9125621 0.7751122 0.3384659 -0.9278974 0.7751122 0.3384659 -0.9429048 0.7751122 0.3384659 -0.9576028 0.7751122 0.3384659 -0.9720079 0.7751122 0.3384659 -0.9861357 0.7751122 0.3384659 -1 0.7751122 0.3384659 -0 0.7940252 0.3384659 -0.1939468 0.7940252 0.3384659 -0.2773041 0.7940252 0.3384659 -0.3384659 0.7940252 0.3384659 -0.3885728 0.7940252 0.3384659 -0.4317928 0.7940252 0.3384659 -0.470214 0.7940252 0.3384659 -0.5050551 0.7940252 0.3384659 -0.5370987 0.7940252 0.3384659 -0.5668815 0.7940252 0.3384659 -0.5947903 0.7940252 0.3384659 -0.6211144 0.7940252 0.3384659 -0.6460766 0.7940252 0.3384659 -0.6698526 0.7940252 0.3384659 -0.6925839 0.7940252 0.3384659 -0.7143866 0.7940252 0.3384659 -0.7353569 0.7940252 0.3384659 -0.7555758 0.7940252 0.3384659 -0.7751122 0.7940252 0.3384659 -0.7940252 0.7940252 0.3384659 -0.8123661 0.7940252 0.3384659 -0.8301795 0.7940252 0.3384659 -0.8475045 0.7940252 0.3384659 -0.8643761 0.7940252 0.3384659 -0.880825 0.7940252 0.3384659 -0.8968787 0.7940252 0.3384659 -0.9125621 0.7940252 0.3384659 -0.9278974 0.7940252 0.3384659 -0.9429048 0.7940252 0.3384659 -0.9576028 0.7940252 0.3384659 -0.9720079 0.7940252 0.3384659 -0.9861357 0.7940252 0.3384659 -1 0.7940252 0.3384659 -0 0.8123661 0.3384659 -0.1939468 0.8123661 0.3384659 -0.2773041 0.8123661 0.3384659 -0.3384659 0.8123661 0.3384659 -0.3885728 0.8123661 0.3384659 -0.4317928 0.8123661 0.3384659 -0.470214 0.8123661 0.3384659 -0.5050551 0.8123661 0.3384659 -0.5370987 0.8123661 0.3384659 -0.5668815 0.8123661 0.3384659 -0.5947903 0.8123661 0.3384659 -0.6211144 0.8123661 0.3384659 -0.6460766 0.8123661 0.3384659 -0.6698526 0.8123661 0.3384659 -0.6925839 0.8123661 0.3384659 -0.7143866 0.8123661 0.3384659 -0.7353569 0.8123661 0.3384659 -0.7555758 0.8123661 0.3384659 -0.7751122 0.8123661 0.3384659 -0.7940252 0.8123661 0.3384659 -0.8123661 0.8123661 0.3384659 -0.8301795 0.8123661 0.3384659 -0.8475045 0.8123661 0.3384659 -0.8643761 0.8123661 0.3384659 -0.880825 0.8123661 0.3384659 -0.8968787 0.8123661 0.3384659 -0.9125621 0.8123661 0.3384659 -0.9278974 0.8123661 0.3384659 -0.9429048 0.8123661 0.3384659 -0.9576028 0.8123661 0.3384659 -0.9720079 0.8123661 0.3384659 -0.9861357 0.8123661 0.3384659 -1 0.8123661 0.3384659 -0 0.8301795 0.3384659 -0.1939468 0.8301795 0.3384659 -0.2773041 0.8301795 0.3384659 -0.3384659 0.8301795 0.3384659 -0.3885728 0.8301795 0.3384659 -0.4317928 0.8301795 0.3384659 -0.470214 0.8301795 0.3384659 -0.5050551 0.8301795 0.3384659 -0.5370987 0.8301795 0.3384659 -0.5668815 0.8301795 0.3384659 -0.5947903 0.8301795 0.3384659 -0.6211144 0.8301795 0.3384659 -0.6460766 0.8301795 0.3384659 -0.6698526 0.8301795 0.3384659 -0.6925839 0.8301795 0.3384659 -0.7143866 0.8301795 0.3384659 -0.7353569 0.8301795 0.3384659 -0.7555758 0.8301795 0.3384659 -0.7751122 0.8301795 0.3384659 -0.7940252 0.8301795 0.3384659 -0.8123661 0.8301795 0.3384659 -0.8301795 0.8301795 0.3384659 -0.8475045 0.8301795 0.3384659 -0.8643761 0.8301795 0.3384659 -0.880825 0.8301795 0.3384659 -0.8968787 0.8301795 0.3384659 -0.9125621 0.8301795 0.3384659 -0.9278974 0.8301795 0.3384659 -0.9429048 0.8301795 0.3384659 -0.9576028 0.8301795 0.3384659 -0.9720079 0.8301795 0.3384659 -0.9861357 0.8301795 0.3384659 -1 0.8301795 0.3384659 -0 0.8475045 0.3384659 -0.1939468 0.8475045 0.3384659 -0.2773041 0.8475045 0.3384659 -0.3384659 0.8475045 0.3384659 -0.3885728 0.8475045 0.3384659 -0.4317928 0.8475045 0.3384659 -0.470214 0.8475045 0.3384659 -0.5050551 0.8475045 0.3384659 -0.5370987 0.8475045 0.3384659 -0.5668815 0.8475045 0.3384659 -0.5947903 0.8475045 0.3384659 -0.6211144 0.8475045 0.3384659 -0.6460766 0.8475045 0.3384659 -0.6698526 0.8475045 0.3384659 -0.6925839 0.8475045 0.3384659 -0.7143866 0.8475045 0.3384659 -0.7353569 0.8475045 0.3384659 -0.7555758 0.8475045 0.3384659 -0.7751122 0.8475045 0.3384659 -0.7940252 0.8475045 0.3384659 -0.8123661 0.8475045 0.3384659 -0.8301795 0.8475045 0.3384659 -0.8475045 0.8475045 0.3384659 -0.8643761 0.8475045 0.3384659 -0.880825 0.8475045 0.3384659 -0.8968787 0.8475045 0.3384659 -0.9125621 0.8475045 0.3384659 -0.9278974 0.8475045 0.3384659 -0.9429048 0.8475045 0.3384659 -0.9576028 0.8475045 0.3384659 -0.9720079 0.8475045 0.3384659 -0.9861357 0.8475045 0.3384659 -1 0.8475045 0.3384659 -0 0.8643761 0.3384659 -0.1939468 0.8643761 0.3384659 -0.2773041 0.8643761 0.3384659 -0.3384659 0.8643761 0.3384659 -0.3885728 0.8643761 0.3384659 -0.4317928 0.8643761 0.3384659 -0.470214 0.8643761 0.3384659 -0.5050551 0.8643761 0.3384659 -0.5370987 0.8643761 0.3384659 -0.5668815 0.8643761 0.3384659 -0.5947903 0.8643761 0.3384659 -0.6211144 0.8643761 0.3384659 -0.6460766 0.8643761 0.3384659 -0.6698526 0.8643761 0.3384659 -0.6925839 0.8643761 0.3384659 -0.7143866 0.8643761 0.3384659 -0.7353569 0.8643761 0.3384659 -0.7555758 0.8643761 0.3384659 -0.7751122 0.8643761 0.3384659 -0.7940252 0.8643761 0.3384659 -0.8123661 0.8643761 0.3384659 -0.8301795 0.8643761 0.3384659 -0.8475045 0.8643761 0.3384659 -0.8643761 0.8643761 0.3384659 -0.880825 0.8643761 0.3384659 -0.8968787 0.8643761 0.3384659 -0.9125621 0.8643761 0.3384659 -0.9278974 0.8643761 0.3384659 -0.9429048 0.8643761 0.3384659 -0.9576028 0.8643761 0.3384659 -0.9720079 0.8643761 0.3384659 -0.9861357 0.8643761 0.3384659 -1 0.8643761 0.3384659 -0 0.880825 0.3384659 -0.1939468 0.880825 0.3384659 -0.2773041 0.880825 0.3384659 -0.3384659 0.880825 0.3384659 -0.3885728 0.880825 0.3384659 -0.4317928 0.880825 0.3384659 -0.470214 0.880825 0.3384659 -0.5050551 0.880825 0.3384659 -0.5370987 0.880825 0.3384659 -0.5668815 0.880825 0.3384659 -0.5947903 0.880825 0.3384659 -0.6211144 0.880825 0.3384659 -0.6460766 0.880825 0.3384659 -0.6698526 0.880825 0.3384659 -0.6925839 0.880825 0.3384659 -0.7143866 0.880825 0.3384659 -0.7353569 0.880825 0.3384659 -0.7555758 0.880825 0.3384659 -0.7751122 0.880825 0.3384659 -0.7940252 0.880825 0.3384659 -0.8123661 0.880825 0.3384659 -0.8301795 0.880825 0.3384659 -0.8475045 0.880825 0.3384659 -0.8643761 0.880825 0.3384659 -0.880825 0.880825 0.3384659 -0.8968787 0.880825 0.3384659 -0.9125621 0.880825 0.3384659 -0.9278974 0.880825 0.3384659 -0.9429048 0.880825 0.3384659 -0.9576028 0.880825 0.3384659 -0.9720079 0.880825 0.3384659 -0.9861357 0.880825 0.3384659 -1 0.880825 0.3384659 -0 0.8968787 0.3384659 -0.1939468 0.8968787 0.3384659 -0.2773041 0.8968787 0.3384659 -0.3384659 0.8968787 0.3384659 -0.3885728 0.8968787 0.3384659 -0.4317928 0.8968787 0.3384659 -0.470214 0.8968787 0.3384659 -0.5050551 0.8968787 0.3384659 -0.5370987 0.8968787 0.3384659 -0.5668815 0.8968787 0.3384659 -0.5947903 0.8968787 0.3384659 -0.6211144 0.8968787 0.3384659 -0.6460766 0.8968787 0.3384659 -0.6698526 0.8968787 0.3384659 -0.6925839 0.8968787 0.3384659 -0.7143866 0.8968787 0.3384659 -0.7353569 0.8968787 0.3384659 -0.7555758 0.8968787 0.3384659 -0.7751122 0.8968787 0.3384659 -0.7940252 0.8968787 0.3384659 -0.8123661 0.8968787 0.3384659 -0.8301795 0.8968787 0.3384659 -0.8475045 0.8968787 0.3384659 -0.8643761 0.8968787 0.3384659 -0.880825 0.8968787 0.3384659 -0.8968787 0.8968787 0.3384659 -0.9125621 0.8968787 0.3384659 -0.9278974 0.8968787 0.3384659 -0.9429048 0.8968787 0.3384659 -0.9576028 0.8968787 0.3384659 -0.9720079 0.8968787 0.3384659 -0.9861357 0.8968787 0.3384659 -1 0.8968787 0.3384659 -0 0.9125621 0.3384659 -0.1939468 0.9125621 0.3384659 -0.2773041 0.9125621 0.3384659 -0.3384659 0.9125621 0.3384659 -0.3885728 0.9125621 0.3384659 -0.4317928 0.9125621 0.3384659 -0.470214 0.9125621 0.3384659 -0.5050551 0.9125621 0.3384659 -0.5370987 0.9125621 0.3384659 -0.5668815 0.9125621 0.3384659 -0.5947903 0.9125621 0.3384659 -0.6211144 0.9125621 0.3384659 -0.6460766 0.9125621 0.3384659 -0.6698526 0.9125621 0.3384659 -0.6925839 0.9125621 0.3384659 -0.7143866 0.9125621 0.3384659 -0.7353569 0.9125621 0.3384659 -0.7555758 0.9125621 0.3384659 -0.7751122 0.9125621 0.3384659 -0.7940252 0.9125621 0.3384659 -0.8123661 0.9125621 0.3384659 -0.8301795 0.9125621 0.3384659 -0.8475045 0.9125621 0.3384659 -0.8643761 0.9125621 0.3384659 -0.880825 0.9125621 0.3384659 -0.8968787 0.9125621 0.3384659 -0.9125621 0.9125621 0.3384659 -0.9278974 0.9125621 0.3384659 -0.9429048 0.9125621 0.3384659 -0.9576028 0.9125621 0.3384659 -0.9720079 0.9125621 0.3384659 -0.9861357 0.9125621 0.3384659 -1 0.9125621 0.3384659 -0 0.9278974 0.3384659 -0.1939468 0.9278974 0.3384659 -0.2773041 0.9278974 0.3384659 -0.3384659 0.9278974 0.3384659 -0.3885728 0.9278974 0.3384659 -0.4317928 0.9278974 0.3384659 -0.470214 0.9278974 0.3384659 -0.5050551 0.9278974 0.3384659 -0.5370987 0.9278974 0.3384659 -0.5668815 0.9278974 0.3384659 -0.5947903 0.9278974 0.3384659 -0.6211144 0.9278974 0.3384659 -0.6460766 0.9278974 0.3384659 -0.6698526 0.9278974 0.3384659 -0.6925839 0.9278974 0.3384659 -0.7143866 0.9278974 0.3384659 -0.7353569 0.9278974 0.3384659 -0.7555758 0.9278974 0.3384659 -0.7751122 0.9278974 0.3384659 -0.7940252 0.9278974 0.3384659 -0.8123661 0.9278974 0.3384659 -0.8301795 0.9278974 0.3384659 -0.8475045 0.9278974 0.3384659 -0.8643761 0.9278974 0.3384659 -0.880825 0.9278974 0.3384659 -0.8968787 0.9278974 0.3384659 -0.9125621 0.9278974 0.3384659 -0.9278974 0.9278974 0.3384659 -0.9429048 0.9278974 0.3384659 -0.9576028 0.9278974 0.3384659 -0.9720079 0.9278974 0.3384659 -0.9861357 0.9278974 0.3384659 -1 0.9278974 0.3384659 -0 0.9429048 0.3384659 -0.1939468 0.9429048 0.3384659 -0.2773041 0.9429048 0.3384659 -0.3384659 0.9429048 0.3384659 -0.3885728 0.9429048 0.3384659 -0.4317928 0.9429048 0.3384659 -0.470214 0.9429048 0.3384659 -0.5050551 0.9429048 0.3384659 -0.5370987 0.9429048 0.3384659 -0.5668815 0.9429048 0.3384659 -0.5947903 0.9429048 0.3384659 -0.6211144 0.9429048 0.3384659 -0.6460766 0.9429048 0.3384659 -0.6698526 0.9429048 0.3384659 -0.6925839 0.9429048 0.3384659 -0.7143866 0.9429048 0.3384659 -0.7353569 0.9429048 0.3384659 -0.7555758 0.9429048 0.3384659 -0.7751122 0.9429048 0.3384659 -0.7940252 0.9429048 0.3384659 -0.8123661 0.9429048 0.3384659 -0.8301795 0.9429048 0.3384659 -0.8475045 0.9429048 0.3384659 -0.8643761 0.9429048 0.3384659 -0.880825 0.9429048 0.3384659 -0.8968787 0.9429048 0.3384659 -0.9125621 0.9429048 0.3384659 -0.9278974 0.9429048 0.3384659 -0.9429048 0.9429048 0.3384659 -0.9576028 0.9429048 0.3384659 -0.9720079 0.9429048 0.3384659 -0.9861357 0.9429048 0.3384659 -1 0.9429048 0.3384659 -0 0.9576028 0.3384659 -0.1939468 0.9576028 0.3384659 -0.2773041 0.9576028 0.3384659 -0.3384659 0.9576028 0.3384659 -0.3885728 0.9576028 0.3384659 -0.4317928 0.9576028 0.3384659 -0.470214 0.9576028 0.3384659 -0.5050551 0.9576028 0.3384659 -0.5370987 0.9576028 0.3384659 -0.5668815 0.9576028 0.3384659 -0.5947903 0.9576028 0.3384659 -0.6211144 0.9576028 0.3384659 -0.6460766 0.9576028 0.3384659 -0.6698526 0.9576028 0.3384659 -0.6925839 0.9576028 0.3384659 -0.7143866 0.9576028 0.3384659 -0.7353569 0.9576028 0.3384659 -0.7555758 0.9576028 0.3384659 -0.7751122 0.9576028 0.3384659 -0.7940252 0.9576028 0.3384659 -0.8123661 0.9576028 0.3384659 -0.8301795 0.9576028 0.3384659 -0.8475045 0.9576028 0.3384659 -0.8643761 0.9576028 0.3384659 -0.880825 0.9576028 0.3384659 -0.8968787 0.9576028 0.3384659 -0.9125621 0.9576028 0.3384659 -0.9278974 0.9576028 0.3384659 -0.9429048 0.9576028 0.3384659 -0.9576028 0.9576028 0.3384659 -0.9720079 0.9576028 0.3384659 -0.9861357 0.9576028 0.3384659 -1 0.9576028 0.3384659 -0 0.9720079 0.3384659 -0.1939468 0.9720079 0.3384659 -0.2773041 0.9720079 0.3384659 -0.3384659 0.9720079 0.3384659 -0.3885728 0.9720079 0.3384659 -0.4317928 0.9720079 0.3384659 -0.470214 0.9720079 0.3384659 -0.5050551 0.9720079 0.3384659 -0.5370987 0.9720079 0.3384659 -0.5668815 0.9720079 0.3384659 -0.5947903 0.9720079 0.3384659 -0.6211144 0.9720079 0.3384659 -0.6460766 0.9720079 0.3384659 -0.6698526 0.9720079 0.3384659 -0.6925839 0.9720079 0.3384659 -0.7143866 0.9720079 0.3384659 -0.7353569 0.9720079 0.3384659 -0.7555758 0.9720079 0.3384659 -0.7751122 0.9720079 0.3384659 -0.7940252 0.9720079 0.3384659 -0.8123661 0.9720079 0.3384659 -0.8301795 0.9720079 0.3384659 -0.8475045 0.9720079 0.3384659 -0.8643761 0.9720079 0.3384659 -0.880825 0.9720079 0.3384659 -0.8968787 0.9720079 0.3384659 -0.9125621 0.9720079 0.3384659 -0.9278974 0.9720079 0.3384659 -0.9429048 0.9720079 0.3384659 -0.9576028 0.9720079 0.3384659 -0.9720079 0.9720079 0.3384659 -0.9861357 0.9720079 0.3384659 -1 0.9720079 0.3384659 -0 0.9861357 0.3384659 -0.1939468 0.9861357 0.3384659 -0.2773041 0.9861357 0.3384659 -0.3384659 0.9861357 0.3384659 -0.3885728 0.9861357 0.3384659 -0.4317928 0.9861357 0.3384659 -0.470214 0.9861357 0.3384659 -0.5050551 0.9861357 0.3384659 -0.5370987 0.9861357 0.3384659 -0.5668815 0.9861357 0.3384659 -0.5947903 0.9861357 0.3384659 -0.6211144 0.9861357 0.3384659 -0.6460766 0.9861357 0.3384659 -0.6698526 0.9861357 0.3384659 -0.6925839 0.9861357 0.3384659 -0.7143866 0.9861357 0.3384659 -0.7353569 0.9861357 0.3384659 -0.7555758 0.9861357 0.3384659 -0.7751122 0.9861357 0.3384659 -0.7940252 0.9861357 0.3384659 -0.8123661 0.9861357 0.3384659 -0.8301795 0.9861357 0.3384659 -0.8475045 0.9861357 0.3384659 -0.8643761 0.9861357 0.3384659 -0.880825 0.9861357 0.3384659 -0.8968787 0.9861357 0.3384659 -0.9125621 0.9861357 0.3384659 -0.9278974 0.9861357 0.3384659 -0.9429048 0.9861357 0.3384659 -0.9576028 0.9861357 0.3384659 -0.9720079 0.9861357 0.3384659 -0.9861357 0.9861357 0.3384659 -1 0.9861357 0.3384659 -0 1 0.3384659 -0.1939468 1 0.3384659 -0.2773041 1 0.3384659 -0.3384659 1 0.3384659 -0.3885728 1 0.3384659 -0.4317928 1 0.3384659 -0.470214 1 0.3384659 -0.5050551 1 0.3384659 -0.5370987 1 0.3384659 -0.5668815 1 0.3384659 -0.5947903 1 0.3384659 -0.6211144 1 0.3384659 -0.6460766 1 0.3384659 -0.6698526 1 0.3384659 -0.6925839 1 0.3384659 -0.7143866 1 0.3384659 -0.7353569 1 0.3384659 -0.7555758 1 0.3384659 -0.7751122 1 0.3384659 -0.7940252 1 0.3384659 -0.8123661 1 0.3384659 -0.8301795 1 0.3384659 -0.8475045 1 0.3384659 -0.8643761 1 0.3384659 -0.880825 1 0.3384659 -0.8968787 1 0.3384659 -0.9125621 1 0.3384659 -0.9278974 1 0.3384659 -0.9429048 1 0.3384659 -0.9576028 1 0.3384659 -0.9720079 1 0.3384659 -0.9861357 1 0.3384659 -1 1 0.3384659 -0 0 0.3885728 -0.1939468 0 0.3885728 -0.2773041 0 0.3885728 -0.3384659 0 0.3885728 -0.3885728 0 0.3885728 -0.4317928 0 0.3885728 -0.470214 0 0.3885728 -0.5050551 0 0.3885728 -0.5370987 0 0.3885728 -0.5668815 0 0.3885728 -0.5947903 0 0.3885728 -0.6211144 0 0.3885728 -0.6460766 0 0.3885728 -0.6698526 0 0.3885728 -0.6925839 0 0.3885728 -0.7143866 0 0.3885728 -0.7353569 0 0.3885728 -0.7555758 0 0.3885728 -0.7751122 0 0.3885728 -0.7940252 0 0.3885728 -0.8123661 0 0.3885728 -0.8301795 0 0.3885728 -0.8475045 0 0.3885728 -0.8643761 0 0.3885728 -0.880825 0 0.3885728 -0.8968787 0 0.3885728 -0.9125621 0 0.3885728 -0.9278974 0 0.3885728 -0.9429048 0 0.3885728 -0.9576028 0 0.3885728 -0.9720079 0 0.3885728 -0.9861357 0 0.3885728 -1 0 0.3885728 -0 0.1939468 0.3885728 -0.1939468 0.1939468 0.3885728 -0.2773041 0.1939468 0.3885728 -0.3384659 0.1939468 0.3885728 -0.3885728 0.1939468 0.3885728 -0.4317928 0.1939468 0.3885728 -0.470214 0.1939468 0.3885728 -0.5050551 0.1939468 0.3885728 -0.5370987 0.1939468 0.3885728 -0.5668815 0.1939468 0.3885728 -0.5947903 0.1939468 0.3885728 -0.6211144 0.1939468 0.3885728 -0.6460766 0.1939468 0.3885728 -0.6698526 0.1939468 0.3885728 -0.6925839 0.1939468 0.3885728 -0.7143866 0.1939468 0.3885728 -0.7353569 0.1939468 0.3885728 -0.7555758 0.1939468 0.3885728 -0.7751122 0.1939468 0.3885728 -0.7940252 0.1939468 0.3885728 -0.8123661 0.1939468 0.3885728 -0.8301795 0.1939468 0.3885728 -0.8475045 0.1939468 0.3885728 -0.8643761 0.1939468 0.3885728 -0.880825 0.1939468 0.3885728 -0.8968787 0.1939468 0.3885728 -0.9125621 0.1939468 0.3885728 -0.9278974 0.1939468 0.3885728 -0.9429048 0.1939468 0.3885728 -0.9576028 0.1939468 0.3885728 -0.9720079 0.1939468 0.3885728 -0.9861357 0.1939468 0.3885728 -1 0.1939468 0.3885728 -0 0.2773041 0.3885728 -0.1939468 0.2773041 0.3885728 -0.2773041 0.2773041 0.3885728 -0.3384659 0.2773041 0.3885728 -0.3885728 0.2773041 0.3885728 -0.4317928 0.2773041 0.3885728 -0.470214 0.2773041 0.3885728 -0.5050551 0.2773041 0.3885728 -0.5370987 0.2773041 0.3885728 -0.5668815 0.2773041 0.3885728 -0.5947903 0.2773041 0.3885728 -0.6211144 0.2773041 0.3885728 -0.6460766 0.2773041 0.3885728 -0.6698526 0.2773041 0.3885728 -0.6925839 0.2773041 0.3885728 -0.7143866 0.2773041 0.3885728 -0.7353569 0.2773041 0.3885728 -0.7555758 0.2773041 0.3885728 -0.7751122 0.2773041 0.3885728 -0.7940252 0.2773041 0.3885728 -0.8123661 0.2773041 0.3885728 -0.8301795 0.2773041 0.3885728 -0.8475045 0.2773041 0.3885728 -0.8643761 0.2773041 0.3885728 -0.880825 0.2773041 0.3885728 -0.8968787 0.2773041 0.3885728 -0.9125621 0.2773041 0.3885728 -0.9278974 0.2773041 0.3885728 -0.9429048 0.2773041 0.3885728 -0.9576028 0.2773041 0.3885728 -0.9720079 0.2773041 0.3885728 -0.9861357 0.2773041 0.3885728 -1 0.2773041 0.3885728 -0 0.3384659 0.3885728 -0.1939468 0.3384659 0.3885728 -0.2773041 0.3384659 0.3885728 -0.3384659 0.3384659 0.3885728 -0.3885728 0.3384659 0.3885728 -0.4317928 0.3384659 0.3885728 -0.470214 0.3384659 0.3885728 -0.5050551 0.3384659 0.3885728 -0.5370987 0.3384659 0.3885728 -0.5668815 0.3384659 0.3885728 -0.5947903 0.3384659 0.3885728 -0.6211144 0.3384659 0.3885728 -0.6460766 0.3384659 0.3885728 -0.6698526 0.3384659 0.3885728 -0.6925839 0.3384659 0.3885728 -0.7143866 0.3384659 0.3885728 -0.7353569 0.3384659 0.3885728 -0.7555758 0.3384659 0.3885728 -0.7751122 0.3384659 0.3885728 -0.7940252 0.3384659 0.3885728 -0.8123661 0.3384659 0.3885728 -0.8301795 0.3384659 0.3885728 -0.8475045 0.3384659 0.3885728 -0.8643761 0.3384659 0.3885728 -0.880825 0.3384659 0.3885728 -0.8968787 0.3384659 0.3885728 -0.9125621 0.3384659 0.3885728 -0.9278974 0.3384659 0.3885728 -0.9429048 0.3384659 0.3885728 -0.9576028 0.3384659 0.3885728 -0.9720079 0.3384659 0.3885728 -0.9861357 0.3384659 0.3885728 -1 0.3384659 0.3885728 -0 0.3885728 0.3885728 -0.1939468 0.3885728 0.3885728 -0.2773041 0.3885728 0.3885728 -0.3384659 0.3885728 0.3885728 -0.3885728 0.3885728 0.3885728 -0.4317928 0.3885728 0.3885728 -0.470214 0.3885728 0.3885728 -0.5050551 0.3885728 0.3885728 -0.5370987 0.3885728 0.3885728 -0.5668815 0.3885728 0.3885728 -0.5947903 0.3885728 0.3885728 -0.6211144 0.3885728 0.3885728 -0.6460766 0.3885728 0.3885728 -0.6698526 0.3885728 0.3885728 -0.6925839 0.3885728 0.3885728 -0.7143866 0.3885728 0.3885728 -0.7353569 0.3885728 0.3885728 -0.7555758 0.3885728 0.3885728 -0.7751122 0.3885728 0.3885728 -0.7940252 0.3885728 0.3885728 -0.8123661 0.3885728 0.3885728 -0.8301795 0.3885728 0.3885728 -0.8475045 0.3885728 0.3885728 -0.8643761 0.3885728 0.3885728 -0.880825 0.3885728 0.3885728 -0.8968787 0.3885728 0.3885728 -0.9125621 0.3885728 0.3885728 -0.9278974 0.3885728 0.3885728 -0.9429048 0.3885728 0.3885728 -0.9576028 0.3885728 0.3885728 -0.9720079 0.3885728 0.3885728 -0.9861357 0.3885728 0.3885728 -1 0.3885728 0.3885728 -0 0.4317928 0.3885728 -0.1939468 0.4317928 0.3885728 -0.2773041 0.4317928 0.3885728 -0.3384659 0.4317928 0.3885728 -0.3885728 0.4317928 0.3885728 -0.4317928 0.4317928 0.3885728 -0.470214 0.4317928 0.3885728 -0.5050551 0.4317928 0.3885728 -0.5370987 0.4317928 0.3885728 -0.5668815 0.4317928 0.3885728 -0.5947903 0.4317928 0.3885728 -0.6211144 0.4317928 0.3885728 -0.6460766 0.4317928 0.3885728 -0.6698526 0.4317928 0.3885728 -0.6925839 0.4317928 0.3885728 -0.7143866 0.4317928 0.3885728 -0.7353569 0.4317928 0.3885728 -0.7555758 0.4317928 0.3885728 -0.7751122 0.4317928 0.3885728 -0.7940252 0.4317928 0.3885728 -0.8123661 0.4317928 0.3885728 -0.8301795 0.4317928 0.3885728 -0.8475045 0.4317928 0.3885728 -0.8643761 0.4317928 0.3885728 -0.880825 0.4317928 0.3885728 -0.8968787 0.4317928 0.3885728 -0.9125621 0.4317928 0.3885728 -0.9278974 0.4317928 0.3885728 -0.9429048 0.4317928 0.3885728 -0.9576028 0.4317928 0.3885728 -0.9720079 0.4317928 0.3885728 -0.9861357 0.4317928 0.3885728 -1 0.4317928 0.3885728 -0 0.470214 0.3885728 -0.1939468 0.470214 0.3885728 -0.2773041 0.470214 0.3885728 -0.3384659 0.470214 0.3885728 -0.3885728 0.470214 0.3885728 -0.4317928 0.470214 0.3885728 -0.470214 0.470214 0.3885728 -0.5050551 0.470214 0.3885728 -0.5370987 0.470214 0.3885728 -0.5668815 0.470214 0.3885728 -0.5947903 0.470214 0.3885728 -0.6211144 0.470214 0.3885728 -0.6460766 0.470214 0.3885728 -0.6698526 0.470214 0.3885728 -0.6925839 0.470214 0.3885728 -0.7143866 0.470214 0.3885728 -0.7353569 0.470214 0.3885728 -0.7555758 0.470214 0.3885728 -0.7751122 0.470214 0.3885728 -0.7940252 0.470214 0.3885728 -0.8123661 0.470214 0.3885728 -0.8301795 0.470214 0.3885728 -0.8475045 0.470214 0.3885728 -0.8643761 0.470214 0.3885728 -0.880825 0.470214 0.3885728 -0.8968787 0.470214 0.3885728 -0.9125621 0.470214 0.3885728 -0.9278974 0.470214 0.3885728 -0.9429048 0.470214 0.3885728 -0.9576028 0.470214 0.3885728 -0.9720079 0.470214 0.3885728 -0.9861357 0.470214 0.3885728 -1 0.470214 0.3885728 -0 0.5050551 0.3885728 -0.1939468 0.5050551 0.3885728 -0.2773041 0.5050551 0.3885728 -0.3384659 0.5050551 0.3885728 -0.3885728 0.5050551 0.3885728 -0.4317928 0.5050551 0.3885728 -0.470214 0.5050551 0.3885728 -0.5050551 0.5050551 0.3885728 -0.5370987 0.5050551 0.3885728 -0.5668815 0.5050551 0.3885728 -0.5947903 0.5050551 0.3885728 -0.6211144 0.5050551 0.3885728 -0.6460766 0.5050551 0.3885728 -0.6698526 0.5050551 0.3885728 -0.6925839 0.5050551 0.3885728 -0.7143866 0.5050551 0.3885728 -0.7353569 0.5050551 0.3885728 -0.7555758 0.5050551 0.3885728 -0.7751122 0.5050551 0.3885728 -0.7940252 0.5050551 0.3885728 -0.8123661 0.5050551 0.3885728 -0.8301795 0.5050551 0.3885728 -0.8475045 0.5050551 0.3885728 -0.8643761 0.5050551 0.3885728 -0.880825 0.5050551 0.3885728 -0.8968787 0.5050551 0.3885728 -0.9125621 0.5050551 0.3885728 -0.9278974 0.5050551 0.3885728 -0.9429048 0.5050551 0.3885728 -0.9576028 0.5050551 0.3885728 -0.9720079 0.5050551 0.3885728 -0.9861357 0.5050551 0.3885728 -1 0.5050551 0.3885728 -0 0.5370987 0.3885728 -0.1939468 0.5370987 0.3885728 -0.2773041 0.5370987 0.3885728 -0.3384659 0.5370987 0.3885728 -0.3885728 0.5370987 0.3885728 -0.4317928 0.5370987 0.3885728 -0.470214 0.5370987 0.3885728 -0.5050551 0.5370987 0.3885728 -0.5370987 0.5370987 0.3885728 -0.5668815 0.5370987 0.3885728 -0.5947903 0.5370987 0.3885728 -0.6211144 0.5370987 0.3885728 -0.6460766 0.5370987 0.3885728 -0.6698526 0.5370987 0.3885728 -0.6925839 0.5370987 0.3885728 -0.7143866 0.5370987 0.3885728 -0.7353569 0.5370987 0.3885728 -0.7555758 0.5370987 0.3885728 -0.7751122 0.5370987 0.3885728 -0.7940252 0.5370987 0.3885728 -0.8123661 0.5370987 0.3885728 -0.8301795 0.5370987 0.3885728 -0.8475045 0.5370987 0.3885728 -0.8643761 0.5370987 0.3885728 -0.880825 0.5370987 0.3885728 -0.8968787 0.5370987 0.3885728 -0.9125621 0.5370987 0.3885728 -0.9278974 0.5370987 0.3885728 -0.9429048 0.5370987 0.3885728 -0.9576028 0.5370987 0.3885728 -0.9720079 0.5370987 0.3885728 -0.9861357 0.5370987 0.3885728 -1 0.5370987 0.3885728 -0 0.5668815 0.3885728 -0.1939468 0.5668815 0.3885728 -0.2773041 0.5668815 0.3885728 -0.3384659 0.5668815 0.3885728 -0.3885728 0.5668815 0.3885728 -0.4317928 0.5668815 0.3885728 -0.470214 0.5668815 0.3885728 -0.5050551 0.5668815 0.3885728 -0.5370987 0.5668815 0.3885728 -0.5668815 0.5668815 0.3885728 -0.5947903 0.5668815 0.3885728 -0.6211144 0.5668815 0.3885728 -0.6460766 0.5668815 0.3885728 -0.6698526 0.5668815 0.3885728 -0.6925839 0.5668815 0.3885728 -0.7143866 0.5668815 0.3885728 -0.7353569 0.5668815 0.3885728 -0.7555758 0.5668815 0.3885728 -0.7751122 0.5668815 0.3885728 -0.7940252 0.5668815 0.3885728 -0.8123661 0.5668815 0.3885728 -0.8301795 0.5668815 0.3885728 -0.8475045 0.5668815 0.3885728 -0.8643761 0.5668815 0.3885728 -0.880825 0.5668815 0.3885728 -0.8968787 0.5668815 0.3885728 -0.9125621 0.5668815 0.3885728 -0.9278974 0.5668815 0.3885728 -0.9429048 0.5668815 0.3885728 -0.9576028 0.5668815 0.3885728 -0.9720079 0.5668815 0.3885728 -0.9861357 0.5668815 0.3885728 -1 0.5668815 0.3885728 -0 0.5947903 0.3885728 -0.1939468 0.5947903 0.3885728 -0.2773041 0.5947903 0.3885728 -0.3384659 0.5947903 0.3885728 -0.3885728 0.5947903 0.3885728 -0.4317928 0.5947903 0.3885728 -0.470214 0.5947903 0.3885728 -0.5050551 0.5947903 0.3885728 -0.5370987 0.5947903 0.3885728 -0.5668815 0.5947903 0.3885728 -0.5947903 0.5947903 0.3885728 -0.6211144 0.5947903 0.3885728 -0.6460766 0.5947903 0.3885728 -0.6698526 0.5947903 0.3885728 -0.6925839 0.5947903 0.3885728 -0.7143866 0.5947903 0.3885728 -0.7353569 0.5947903 0.3885728 -0.7555758 0.5947903 0.3885728 -0.7751122 0.5947903 0.3885728 -0.7940252 0.5947903 0.3885728 -0.8123661 0.5947903 0.3885728 -0.8301795 0.5947903 0.3885728 -0.8475045 0.5947903 0.3885728 -0.8643761 0.5947903 0.3885728 -0.880825 0.5947903 0.3885728 -0.8968787 0.5947903 0.3885728 -0.9125621 0.5947903 0.3885728 -0.9278974 0.5947903 0.3885728 -0.9429048 0.5947903 0.3885728 -0.9576028 0.5947903 0.3885728 -0.9720079 0.5947903 0.3885728 -0.9861357 0.5947903 0.3885728 -1 0.5947903 0.3885728 -0 0.6211144 0.3885728 -0.1939468 0.6211144 0.3885728 -0.2773041 0.6211144 0.3885728 -0.3384659 0.6211144 0.3885728 -0.3885728 0.6211144 0.3885728 -0.4317928 0.6211144 0.3885728 -0.470214 0.6211144 0.3885728 -0.5050551 0.6211144 0.3885728 -0.5370987 0.6211144 0.3885728 -0.5668815 0.6211144 0.3885728 -0.5947903 0.6211144 0.3885728 -0.6211144 0.6211144 0.3885728 -0.6460766 0.6211144 0.3885728 -0.6698526 0.6211144 0.3885728 -0.6925839 0.6211144 0.3885728 -0.7143866 0.6211144 0.3885728 -0.7353569 0.6211144 0.3885728 -0.7555758 0.6211144 0.3885728 -0.7751122 0.6211144 0.3885728 -0.7940252 0.6211144 0.3885728 -0.8123661 0.6211144 0.3885728 -0.8301795 0.6211144 0.3885728 -0.8475045 0.6211144 0.3885728 -0.8643761 0.6211144 0.3885728 -0.880825 0.6211144 0.3885728 -0.8968787 0.6211144 0.3885728 -0.9125621 0.6211144 0.3885728 -0.9278974 0.6211144 0.3885728 -0.9429048 0.6211144 0.3885728 -0.9576028 0.6211144 0.3885728 -0.9720079 0.6211144 0.3885728 -0.9861357 0.6211144 0.3885728 -1 0.6211144 0.3885728 -0 0.6460766 0.3885728 -0.1939468 0.6460766 0.3885728 -0.2773041 0.6460766 0.3885728 -0.3384659 0.6460766 0.3885728 -0.3885728 0.6460766 0.3885728 -0.4317928 0.6460766 0.3885728 -0.470214 0.6460766 0.3885728 -0.5050551 0.6460766 0.3885728 -0.5370987 0.6460766 0.3885728 -0.5668815 0.6460766 0.3885728 -0.5947903 0.6460766 0.3885728 -0.6211144 0.6460766 0.3885728 -0.6460766 0.6460766 0.3885728 -0.6698526 0.6460766 0.3885728 -0.6925839 0.6460766 0.3885728 -0.7143866 0.6460766 0.3885728 -0.7353569 0.6460766 0.3885728 -0.7555758 0.6460766 0.3885728 -0.7751122 0.6460766 0.3885728 -0.7940252 0.6460766 0.3885728 -0.8123661 0.6460766 0.3885728 -0.8301795 0.6460766 0.3885728 -0.8475045 0.6460766 0.3885728 -0.8643761 0.6460766 0.3885728 -0.880825 0.6460766 0.3885728 -0.8968787 0.6460766 0.3885728 -0.9125621 0.6460766 0.3885728 -0.9278974 0.6460766 0.3885728 -0.9429048 0.6460766 0.3885728 -0.9576028 0.6460766 0.3885728 -0.9720079 0.6460766 0.3885728 -0.9861357 0.6460766 0.3885728 -1 0.6460766 0.3885728 -0 0.6698526 0.3885728 -0.1939468 0.6698526 0.3885728 -0.2773041 0.6698526 0.3885728 -0.3384659 0.6698526 0.3885728 -0.3885728 0.6698526 0.3885728 -0.4317928 0.6698526 0.3885728 -0.470214 0.6698526 0.3885728 -0.5050551 0.6698526 0.3885728 -0.5370987 0.6698526 0.3885728 -0.5668815 0.6698526 0.3885728 -0.5947903 0.6698526 0.3885728 -0.6211144 0.6698526 0.3885728 -0.6460766 0.6698526 0.3885728 -0.6698526 0.6698526 0.3885728 -0.6925839 0.6698526 0.3885728 -0.7143866 0.6698526 0.3885728 -0.7353569 0.6698526 0.3885728 -0.7555758 0.6698526 0.3885728 -0.7751122 0.6698526 0.3885728 -0.7940252 0.6698526 0.3885728 -0.8123661 0.6698526 0.3885728 -0.8301795 0.6698526 0.3885728 -0.8475045 0.6698526 0.3885728 -0.8643761 0.6698526 0.3885728 -0.880825 0.6698526 0.3885728 -0.8968787 0.6698526 0.3885728 -0.9125621 0.6698526 0.3885728 -0.9278974 0.6698526 0.3885728 -0.9429048 0.6698526 0.3885728 -0.9576028 0.6698526 0.3885728 -0.9720079 0.6698526 0.3885728 -0.9861357 0.6698526 0.3885728 -1 0.6698526 0.3885728 -0 0.6925839 0.3885728 -0.1939468 0.6925839 0.3885728 -0.2773041 0.6925839 0.3885728 -0.3384659 0.6925839 0.3885728 -0.3885728 0.6925839 0.3885728 -0.4317928 0.6925839 0.3885728 -0.470214 0.6925839 0.3885728 -0.5050551 0.6925839 0.3885728 -0.5370987 0.6925839 0.3885728 -0.5668815 0.6925839 0.3885728 -0.5947903 0.6925839 0.3885728 -0.6211144 0.6925839 0.3885728 -0.6460766 0.6925839 0.3885728 -0.6698526 0.6925839 0.3885728 -0.6925839 0.6925839 0.3885728 -0.7143866 0.6925839 0.3885728 -0.7353569 0.6925839 0.3885728 -0.7555758 0.6925839 0.3885728 -0.7751122 0.6925839 0.3885728 -0.7940252 0.6925839 0.3885728 -0.8123661 0.6925839 0.3885728 -0.8301795 0.6925839 0.3885728 -0.8475045 0.6925839 0.3885728 -0.8643761 0.6925839 0.3885728 -0.880825 0.6925839 0.3885728 -0.8968787 0.6925839 0.3885728 -0.9125621 0.6925839 0.3885728 -0.9278974 0.6925839 0.3885728 -0.9429048 0.6925839 0.3885728 -0.9576028 0.6925839 0.3885728 -0.9720079 0.6925839 0.3885728 -0.9861357 0.6925839 0.3885728 -1 0.6925839 0.3885728 -0 0.7143866 0.3885728 -0.1939468 0.7143866 0.3885728 -0.2773041 0.7143866 0.3885728 -0.3384659 0.7143866 0.3885728 -0.3885728 0.7143866 0.3885728 -0.4317928 0.7143866 0.3885728 -0.470214 0.7143866 0.3885728 -0.5050551 0.7143866 0.3885728 -0.5370987 0.7143866 0.3885728 -0.5668815 0.7143866 0.3885728 -0.5947903 0.7143866 0.3885728 -0.6211144 0.7143866 0.3885728 -0.6460766 0.7143866 0.3885728 -0.6698526 0.7143866 0.3885728 -0.6925839 0.7143866 0.3885728 -0.7143866 0.7143866 0.3885728 -0.7353569 0.7143866 0.3885728 -0.7555758 0.7143866 0.3885728 -0.7751122 0.7143866 0.3885728 -0.7940252 0.7143866 0.3885728 -0.8123661 0.7143866 0.3885728 -0.8301795 0.7143866 0.3885728 -0.8475045 0.7143866 0.3885728 -0.8643761 0.7143866 0.3885728 -0.880825 0.7143866 0.3885728 -0.8968787 0.7143866 0.3885728 -0.9125621 0.7143866 0.3885728 -0.9278974 0.7143866 0.3885728 -0.9429048 0.7143866 0.3885728 -0.9576028 0.7143866 0.3885728 -0.9720079 0.7143866 0.3885728 -0.9861357 0.7143866 0.3885728 -1 0.7143866 0.3885728 -0 0.7353569 0.3885728 -0.1939468 0.7353569 0.3885728 -0.2773041 0.7353569 0.3885728 -0.3384659 0.7353569 0.3885728 -0.3885728 0.7353569 0.3885728 -0.4317928 0.7353569 0.3885728 -0.470214 0.7353569 0.3885728 -0.5050551 0.7353569 0.3885728 -0.5370987 0.7353569 0.3885728 -0.5668815 0.7353569 0.3885728 -0.5947903 0.7353569 0.3885728 -0.6211144 0.7353569 0.3885728 -0.6460766 0.7353569 0.3885728 -0.6698526 0.7353569 0.3885728 -0.6925839 0.7353569 0.3885728 -0.7143866 0.7353569 0.3885728 -0.7353569 0.7353569 0.3885728 -0.7555758 0.7353569 0.3885728 -0.7751122 0.7353569 0.3885728 -0.7940252 0.7353569 0.3885728 -0.8123661 0.7353569 0.3885728 -0.8301795 0.7353569 0.3885728 -0.8475045 0.7353569 0.3885728 -0.8643761 0.7353569 0.3885728 -0.880825 0.7353569 0.3885728 -0.8968787 0.7353569 0.3885728 -0.9125621 0.7353569 0.3885728 -0.9278974 0.7353569 0.3885728 -0.9429048 0.7353569 0.3885728 -0.9576028 0.7353569 0.3885728 -0.9720079 0.7353569 0.3885728 -0.9861357 0.7353569 0.3885728 -1 0.7353569 0.3885728 -0 0.7555758 0.3885728 -0.1939468 0.7555758 0.3885728 -0.2773041 0.7555758 0.3885728 -0.3384659 0.7555758 0.3885728 -0.3885728 0.7555758 0.3885728 -0.4317928 0.7555758 0.3885728 -0.470214 0.7555758 0.3885728 -0.5050551 0.7555758 0.3885728 -0.5370987 0.7555758 0.3885728 -0.5668815 0.7555758 0.3885728 -0.5947903 0.7555758 0.3885728 -0.6211144 0.7555758 0.3885728 -0.6460766 0.7555758 0.3885728 -0.6698526 0.7555758 0.3885728 -0.6925839 0.7555758 0.3885728 -0.7143866 0.7555758 0.3885728 -0.7353569 0.7555758 0.3885728 -0.7555758 0.7555758 0.3885728 -0.7751122 0.7555758 0.3885728 -0.7940252 0.7555758 0.3885728 -0.8123661 0.7555758 0.3885728 -0.8301795 0.7555758 0.3885728 -0.8475045 0.7555758 0.3885728 -0.8643761 0.7555758 0.3885728 -0.880825 0.7555758 0.3885728 -0.8968787 0.7555758 0.3885728 -0.9125621 0.7555758 0.3885728 -0.9278974 0.7555758 0.3885728 -0.9429048 0.7555758 0.3885728 -0.9576028 0.7555758 0.3885728 -0.9720079 0.7555758 0.3885728 -0.9861357 0.7555758 0.3885728 -1 0.7555758 0.3885728 -0 0.7751122 0.3885728 -0.1939468 0.7751122 0.3885728 -0.2773041 0.7751122 0.3885728 -0.3384659 0.7751122 0.3885728 -0.3885728 0.7751122 0.3885728 -0.4317928 0.7751122 0.3885728 -0.470214 0.7751122 0.3885728 -0.5050551 0.7751122 0.3885728 -0.5370987 0.7751122 0.3885728 -0.5668815 0.7751122 0.3885728 -0.5947903 0.7751122 0.3885728 -0.6211144 0.7751122 0.3885728 -0.6460766 0.7751122 0.3885728 -0.6698526 0.7751122 0.3885728 -0.6925839 0.7751122 0.3885728 -0.7143866 0.7751122 0.3885728 -0.7353569 0.7751122 0.3885728 -0.7555758 0.7751122 0.3885728 -0.7751122 0.7751122 0.3885728 -0.7940252 0.7751122 0.3885728 -0.8123661 0.7751122 0.3885728 -0.8301795 0.7751122 0.3885728 -0.8475045 0.7751122 0.3885728 -0.8643761 0.7751122 0.3885728 -0.880825 0.7751122 0.3885728 -0.8968787 0.7751122 0.3885728 -0.9125621 0.7751122 0.3885728 -0.9278974 0.7751122 0.3885728 -0.9429048 0.7751122 0.3885728 -0.9576028 0.7751122 0.3885728 -0.9720079 0.7751122 0.3885728 -0.9861357 0.7751122 0.3885728 -1 0.7751122 0.3885728 -0 0.7940252 0.3885728 -0.1939468 0.7940252 0.3885728 -0.2773041 0.7940252 0.3885728 -0.3384659 0.7940252 0.3885728 -0.3885728 0.7940252 0.3885728 -0.4317928 0.7940252 0.3885728 -0.470214 0.7940252 0.3885728 -0.5050551 0.7940252 0.3885728 -0.5370987 0.7940252 0.3885728 -0.5668815 0.7940252 0.3885728 -0.5947903 0.7940252 0.3885728 -0.6211144 0.7940252 0.3885728 -0.6460766 0.7940252 0.3885728 -0.6698526 0.7940252 0.3885728 -0.6925839 0.7940252 0.3885728 -0.7143866 0.7940252 0.3885728 -0.7353569 0.7940252 0.3885728 -0.7555758 0.7940252 0.3885728 -0.7751122 0.7940252 0.3885728 -0.7940252 0.7940252 0.3885728 -0.8123661 0.7940252 0.3885728 -0.8301795 0.7940252 0.3885728 -0.8475045 0.7940252 0.3885728 -0.8643761 0.7940252 0.3885728 -0.880825 0.7940252 0.3885728 -0.8968787 0.7940252 0.3885728 -0.9125621 0.7940252 0.3885728 -0.9278974 0.7940252 0.3885728 -0.9429048 0.7940252 0.3885728 -0.9576028 0.7940252 0.3885728 -0.9720079 0.7940252 0.3885728 -0.9861357 0.7940252 0.3885728 -1 0.7940252 0.3885728 -0 0.8123661 0.3885728 -0.1939468 0.8123661 0.3885728 -0.2773041 0.8123661 0.3885728 -0.3384659 0.8123661 0.3885728 -0.3885728 0.8123661 0.3885728 -0.4317928 0.8123661 0.3885728 -0.470214 0.8123661 0.3885728 -0.5050551 0.8123661 0.3885728 -0.5370987 0.8123661 0.3885728 -0.5668815 0.8123661 0.3885728 -0.5947903 0.8123661 0.3885728 -0.6211144 0.8123661 0.3885728 -0.6460766 0.8123661 0.3885728 -0.6698526 0.8123661 0.3885728 -0.6925839 0.8123661 0.3885728 -0.7143866 0.8123661 0.3885728 -0.7353569 0.8123661 0.3885728 -0.7555758 0.8123661 0.3885728 -0.7751122 0.8123661 0.3885728 -0.7940252 0.8123661 0.3885728 -0.8123661 0.8123661 0.3885728 -0.8301795 0.8123661 0.3885728 -0.8475045 0.8123661 0.3885728 -0.8643761 0.8123661 0.3885728 -0.880825 0.8123661 0.3885728 -0.8968787 0.8123661 0.3885728 -0.9125621 0.8123661 0.3885728 -0.9278974 0.8123661 0.3885728 -0.9429048 0.8123661 0.3885728 -0.9576028 0.8123661 0.3885728 -0.9720079 0.8123661 0.3885728 -0.9861357 0.8123661 0.3885728 -1 0.8123661 0.3885728 -0 0.8301795 0.3885728 -0.1939468 0.8301795 0.3885728 -0.2773041 0.8301795 0.3885728 -0.3384659 0.8301795 0.3885728 -0.3885728 0.8301795 0.3885728 -0.4317928 0.8301795 0.3885728 -0.470214 0.8301795 0.3885728 -0.5050551 0.8301795 0.3885728 -0.5370987 0.8301795 0.3885728 -0.5668815 0.8301795 0.3885728 -0.5947903 0.8301795 0.3885728 -0.6211144 0.8301795 0.3885728 -0.6460766 0.8301795 0.3885728 -0.6698526 0.8301795 0.3885728 -0.6925839 0.8301795 0.3885728 -0.7143866 0.8301795 0.3885728 -0.7353569 0.8301795 0.3885728 -0.7555758 0.8301795 0.3885728 -0.7751122 0.8301795 0.3885728 -0.7940252 0.8301795 0.3885728 -0.8123661 0.8301795 0.3885728 -0.8301795 0.8301795 0.3885728 -0.8475045 0.8301795 0.3885728 -0.8643761 0.8301795 0.3885728 -0.880825 0.8301795 0.3885728 -0.8968787 0.8301795 0.3885728 -0.9125621 0.8301795 0.3885728 -0.9278974 0.8301795 0.3885728 -0.9429048 0.8301795 0.3885728 -0.9576028 0.8301795 0.3885728 -0.9720079 0.8301795 0.3885728 -0.9861357 0.8301795 0.3885728 -1 0.8301795 0.3885728 -0 0.8475045 0.3885728 -0.1939468 0.8475045 0.3885728 -0.2773041 0.8475045 0.3885728 -0.3384659 0.8475045 0.3885728 -0.3885728 0.8475045 0.3885728 -0.4317928 0.8475045 0.3885728 -0.470214 0.8475045 0.3885728 -0.5050551 0.8475045 0.3885728 -0.5370987 0.8475045 0.3885728 -0.5668815 0.8475045 0.3885728 -0.5947903 0.8475045 0.3885728 -0.6211144 0.8475045 0.3885728 -0.6460766 0.8475045 0.3885728 -0.6698526 0.8475045 0.3885728 -0.6925839 0.8475045 0.3885728 -0.7143866 0.8475045 0.3885728 -0.7353569 0.8475045 0.3885728 -0.7555758 0.8475045 0.3885728 -0.7751122 0.8475045 0.3885728 -0.7940252 0.8475045 0.3885728 -0.8123661 0.8475045 0.3885728 -0.8301795 0.8475045 0.3885728 -0.8475045 0.8475045 0.3885728 -0.8643761 0.8475045 0.3885728 -0.880825 0.8475045 0.3885728 -0.8968787 0.8475045 0.3885728 -0.9125621 0.8475045 0.3885728 -0.9278974 0.8475045 0.3885728 -0.9429048 0.8475045 0.3885728 -0.9576028 0.8475045 0.3885728 -0.9720079 0.8475045 0.3885728 -0.9861357 0.8475045 0.3885728 -1 0.8475045 0.3885728 -0 0.8643761 0.3885728 -0.1939468 0.8643761 0.3885728 -0.2773041 0.8643761 0.3885728 -0.3384659 0.8643761 0.3885728 -0.3885728 0.8643761 0.3885728 -0.4317928 0.8643761 0.3885728 -0.470214 0.8643761 0.3885728 -0.5050551 0.8643761 0.3885728 -0.5370987 0.8643761 0.3885728 -0.5668815 0.8643761 0.3885728 -0.5947903 0.8643761 0.3885728 -0.6211144 0.8643761 0.3885728 -0.6460766 0.8643761 0.3885728 -0.6698526 0.8643761 0.3885728 -0.6925839 0.8643761 0.3885728 -0.7143866 0.8643761 0.3885728 -0.7353569 0.8643761 0.3885728 -0.7555758 0.8643761 0.3885728 -0.7751122 0.8643761 0.3885728 -0.7940252 0.8643761 0.3885728 -0.8123661 0.8643761 0.3885728 -0.8301795 0.8643761 0.3885728 -0.8475045 0.8643761 0.3885728 -0.8643761 0.8643761 0.3885728 -0.880825 0.8643761 0.3885728 -0.8968787 0.8643761 0.3885728 -0.9125621 0.8643761 0.3885728 -0.9278974 0.8643761 0.3885728 -0.9429048 0.8643761 0.3885728 -0.9576028 0.8643761 0.3885728 -0.9720079 0.8643761 0.3885728 -0.9861357 0.8643761 0.3885728 -1 0.8643761 0.3885728 -0 0.880825 0.3885728 -0.1939468 0.880825 0.3885728 -0.2773041 0.880825 0.3885728 -0.3384659 0.880825 0.3885728 -0.3885728 0.880825 0.3885728 -0.4317928 0.880825 0.3885728 -0.470214 0.880825 0.3885728 -0.5050551 0.880825 0.3885728 -0.5370987 0.880825 0.3885728 -0.5668815 0.880825 0.3885728 -0.5947903 0.880825 0.3885728 -0.6211144 0.880825 0.3885728 -0.6460766 0.880825 0.3885728 -0.6698526 0.880825 0.3885728 -0.6925839 0.880825 0.3885728 -0.7143866 0.880825 0.3885728 -0.7353569 0.880825 0.3885728 -0.7555758 0.880825 0.3885728 -0.7751122 0.880825 0.3885728 -0.7940252 0.880825 0.3885728 -0.8123661 0.880825 0.3885728 -0.8301795 0.880825 0.3885728 -0.8475045 0.880825 0.3885728 -0.8643761 0.880825 0.3885728 -0.880825 0.880825 0.3885728 -0.8968787 0.880825 0.3885728 -0.9125621 0.880825 0.3885728 -0.9278974 0.880825 0.3885728 -0.9429048 0.880825 0.3885728 -0.9576028 0.880825 0.3885728 -0.9720079 0.880825 0.3885728 -0.9861357 0.880825 0.3885728 -1 0.880825 0.3885728 -0 0.8968787 0.3885728 -0.1939468 0.8968787 0.3885728 -0.2773041 0.8968787 0.3885728 -0.3384659 0.8968787 0.3885728 -0.3885728 0.8968787 0.3885728 -0.4317928 0.8968787 0.3885728 -0.470214 0.8968787 0.3885728 -0.5050551 0.8968787 0.3885728 -0.5370987 0.8968787 0.3885728 -0.5668815 0.8968787 0.3885728 -0.5947903 0.8968787 0.3885728 -0.6211144 0.8968787 0.3885728 -0.6460766 0.8968787 0.3885728 -0.6698526 0.8968787 0.3885728 -0.6925839 0.8968787 0.3885728 -0.7143866 0.8968787 0.3885728 -0.7353569 0.8968787 0.3885728 -0.7555758 0.8968787 0.3885728 -0.7751122 0.8968787 0.3885728 -0.7940252 0.8968787 0.3885728 -0.8123661 0.8968787 0.3885728 -0.8301795 0.8968787 0.3885728 -0.8475045 0.8968787 0.3885728 -0.8643761 0.8968787 0.3885728 -0.880825 0.8968787 0.3885728 -0.8968787 0.8968787 0.3885728 -0.9125621 0.8968787 0.3885728 -0.9278974 0.8968787 0.3885728 -0.9429048 0.8968787 0.3885728 -0.9576028 0.8968787 0.3885728 -0.9720079 0.8968787 0.3885728 -0.9861357 0.8968787 0.3885728 -1 0.8968787 0.3885728 -0 0.9125621 0.3885728 -0.1939468 0.9125621 0.3885728 -0.2773041 0.9125621 0.3885728 -0.3384659 0.9125621 0.3885728 -0.3885728 0.9125621 0.3885728 -0.4317928 0.9125621 0.3885728 -0.470214 0.9125621 0.3885728 -0.5050551 0.9125621 0.3885728 -0.5370987 0.9125621 0.3885728 -0.5668815 0.9125621 0.3885728 -0.5947903 0.9125621 0.3885728 -0.6211144 0.9125621 0.3885728 -0.6460766 0.9125621 0.3885728 -0.6698526 0.9125621 0.3885728 -0.6925839 0.9125621 0.3885728 -0.7143866 0.9125621 0.3885728 -0.7353569 0.9125621 0.3885728 -0.7555758 0.9125621 0.3885728 -0.7751122 0.9125621 0.3885728 -0.7940252 0.9125621 0.3885728 -0.8123661 0.9125621 0.3885728 -0.8301795 0.9125621 0.3885728 -0.8475045 0.9125621 0.3885728 -0.8643761 0.9125621 0.3885728 -0.880825 0.9125621 0.3885728 -0.8968787 0.9125621 0.3885728 -0.9125621 0.9125621 0.3885728 -0.9278974 0.9125621 0.3885728 -0.9429048 0.9125621 0.3885728 -0.9576028 0.9125621 0.3885728 -0.9720079 0.9125621 0.3885728 -0.9861357 0.9125621 0.3885728 -1 0.9125621 0.3885728 -0 0.9278974 0.3885728 -0.1939468 0.9278974 0.3885728 -0.2773041 0.9278974 0.3885728 -0.3384659 0.9278974 0.3885728 -0.3885728 0.9278974 0.3885728 -0.4317928 0.9278974 0.3885728 -0.470214 0.9278974 0.3885728 -0.5050551 0.9278974 0.3885728 -0.5370987 0.9278974 0.3885728 -0.5668815 0.9278974 0.3885728 -0.5947903 0.9278974 0.3885728 -0.6211144 0.9278974 0.3885728 -0.6460766 0.9278974 0.3885728 -0.6698526 0.9278974 0.3885728 -0.6925839 0.9278974 0.3885728 -0.7143866 0.9278974 0.3885728 -0.7353569 0.9278974 0.3885728 -0.7555758 0.9278974 0.3885728 -0.7751122 0.9278974 0.3885728 -0.7940252 0.9278974 0.3885728 -0.8123661 0.9278974 0.3885728 -0.8301795 0.9278974 0.3885728 -0.8475045 0.9278974 0.3885728 -0.8643761 0.9278974 0.3885728 -0.880825 0.9278974 0.3885728 -0.8968787 0.9278974 0.3885728 -0.9125621 0.9278974 0.3885728 -0.9278974 0.9278974 0.3885728 -0.9429048 0.9278974 0.3885728 -0.9576028 0.9278974 0.3885728 -0.9720079 0.9278974 0.3885728 -0.9861357 0.9278974 0.3885728 -1 0.9278974 0.3885728 -0 0.9429048 0.3885728 -0.1939468 0.9429048 0.3885728 -0.2773041 0.9429048 0.3885728 -0.3384659 0.9429048 0.3885728 -0.3885728 0.9429048 0.3885728 -0.4317928 0.9429048 0.3885728 -0.470214 0.9429048 0.3885728 -0.5050551 0.9429048 0.3885728 -0.5370987 0.9429048 0.3885728 -0.5668815 0.9429048 0.3885728 -0.5947903 0.9429048 0.3885728 -0.6211144 0.9429048 0.3885728 -0.6460766 0.9429048 0.3885728 -0.6698526 0.9429048 0.3885728 -0.6925839 0.9429048 0.3885728 -0.7143866 0.9429048 0.3885728 -0.7353569 0.9429048 0.3885728 -0.7555758 0.9429048 0.3885728 -0.7751122 0.9429048 0.3885728 -0.7940252 0.9429048 0.3885728 -0.8123661 0.9429048 0.3885728 -0.8301795 0.9429048 0.3885728 -0.8475045 0.9429048 0.3885728 -0.8643761 0.9429048 0.3885728 -0.880825 0.9429048 0.3885728 -0.8968787 0.9429048 0.3885728 -0.9125621 0.9429048 0.3885728 -0.9278974 0.9429048 0.3885728 -0.9429048 0.9429048 0.3885728 -0.9576028 0.9429048 0.3885728 -0.9720079 0.9429048 0.3885728 -0.9861357 0.9429048 0.3885728 -1 0.9429048 0.3885728 -0 0.9576028 0.3885728 -0.1939468 0.9576028 0.3885728 -0.2773041 0.9576028 0.3885728 -0.3384659 0.9576028 0.3885728 -0.3885728 0.9576028 0.3885728 -0.4317928 0.9576028 0.3885728 -0.470214 0.9576028 0.3885728 -0.5050551 0.9576028 0.3885728 -0.5370987 0.9576028 0.3885728 -0.5668815 0.9576028 0.3885728 -0.5947903 0.9576028 0.3885728 -0.6211144 0.9576028 0.3885728 -0.6460766 0.9576028 0.3885728 -0.6698526 0.9576028 0.3885728 -0.6925839 0.9576028 0.3885728 -0.7143866 0.9576028 0.3885728 -0.7353569 0.9576028 0.3885728 -0.7555758 0.9576028 0.3885728 -0.7751122 0.9576028 0.3885728 -0.7940252 0.9576028 0.3885728 -0.8123661 0.9576028 0.3885728 -0.8301795 0.9576028 0.3885728 -0.8475045 0.9576028 0.3885728 -0.8643761 0.9576028 0.3885728 -0.880825 0.9576028 0.3885728 -0.8968787 0.9576028 0.3885728 -0.9125621 0.9576028 0.3885728 -0.9278974 0.9576028 0.3885728 -0.9429048 0.9576028 0.3885728 -0.9576028 0.9576028 0.3885728 -0.9720079 0.9576028 0.3885728 -0.9861357 0.9576028 0.3885728 -1 0.9576028 0.3885728 -0 0.9720079 0.3885728 -0.1939468 0.9720079 0.3885728 -0.2773041 0.9720079 0.3885728 -0.3384659 0.9720079 0.3885728 -0.3885728 0.9720079 0.3885728 -0.4317928 0.9720079 0.3885728 -0.470214 0.9720079 0.3885728 -0.5050551 0.9720079 0.3885728 -0.5370987 0.9720079 0.3885728 -0.5668815 0.9720079 0.3885728 -0.5947903 0.9720079 0.3885728 -0.6211144 0.9720079 0.3885728 -0.6460766 0.9720079 0.3885728 -0.6698526 0.9720079 0.3885728 -0.6925839 0.9720079 0.3885728 -0.7143866 0.9720079 0.3885728 -0.7353569 0.9720079 0.3885728 -0.7555758 0.9720079 0.3885728 -0.7751122 0.9720079 0.3885728 -0.7940252 0.9720079 0.3885728 -0.8123661 0.9720079 0.3885728 -0.8301795 0.9720079 0.3885728 -0.8475045 0.9720079 0.3885728 -0.8643761 0.9720079 0.3885728 -0.880825 0.9720079 0.3885728 -0.8968787 0.9720079 0.3885728 -0.9125621 0.9720079 0.3885728 -0.9278974 0.9720079 0.3885728 -0.9429048 0.9720079 0.3885728 -0.9576028 0.9720079 0.3885728 -0.9720079 0.9720079 0.3885728 -0.9861357 0.9720079 0.3885728 -1 0.9720079 0.3885728 -0 0.9861357 0.3885728 -0.1939468 0.9861357 0.3885728 -0.2773041 0.9861357 0.3885728 -0.3384659 0.9861357 0.3885728 -0.3885728 0.9861357 0.3885728 -0.4317928 0.9861357 0.3885728 -0.470214 0.9861357 0.3885728 -0.5050551 0.9861357 0.3885728 -0.5370987 0.9861357 0.3885728 -0.5668815 0.9861357 0.3885728 -0.5947903 0.9861357 0.3885728 -0.6211144 0.9861357 0.3885728 -0.6460766 0.9861357 0.3885728 -0.6698526 0.9861357 0.3885728 -0.6925839 0.9861357 0.3885728 -0.7143866 0.9861357 0.3885728 -0.7353569 0.9861357 0.3885728 -0.7555758 0.9861357 0.3885728 -0.7751122 0.9861357 0.3885728 -0.7940252 0.9861357 0.3885728 -0.8123661 0.9861357 0.3885728 -0.8301795 0.9861357 0.3885728 -0.8475045 0.9861357 0.3885728 -0.8643761 0.9861357 0.3885728 -0.880825 0.9861357 0.3885728 -0.8968787 0.9861357 0.3885728 -0.9125621 0.9861357 0.3885728 -0.9278974 0.9861357 0.3885728 -0.9429048 0.9861357 0.3885728 -0.9576028 0.9861357 0.3885728 -0.9720079 0.9861357 0.3885728 -0.9861357 0.9861357 0.3885728 -1 0.9861357 0.3885728 -0 1 0.3885728 -0.1939468 1 0.3885728 -0.2773041 1 0.3885728 -0.3384659 1 0.3885728 -0.3885728 1 0.3885728 -0.4317928 1 0.3885728 -0.470214 1 0.3885728 -0.5050551 1 0.3885728 -0.5370987 1 0.3885728 -0.5668815 1 0.3885728 -0.5947903 1 0.3885728 -0.6211144 1 0.3885728 -0.6460766 1 0.3885728 -0.6698526 1 0.3885728 -0.6925839 1 0.3885728 -0.7143866 1 0.3885728 -0.7353569 1 0.3885728 -0.7555758 1 0.3885728 -0.7751122 1 0.3885728 -0.7940252 1 0.3885728 -0.8123661 1 0.3885728 -0.8301795 1 0.3885728 -0.8475045 1 0.3885728 -0.8643761 1 0.3885728 -0.880825 1 0.3885728 -0.8968787 1 0.3885728 -0.9125621 1 0.3885728 -0.9278974 1 0.3885728 -0.9429048 1 0.3885728 -0.9576028 1 0.3885728 -0.9720079 1 0.3885728 -0.9861357 1 0.3885728 -1 1 0.3885728 -0 0 0.4317928 -0.1939468 0 0.4317928 -0.2773041 0 0.4317928 -0.3384659 0 0.4317928 -0.3885728 0 0.4317928 -0.4317928 0 0.4317928 -0.470214 0 0.4317928 -0.5050551 0 0.4317928 -0.5370987 0 0.4317928 -0.5668815 0 0.4317928 -0.5947903 0 0.4317928 -0.6211144 0 0.4317928 -0.6460766 0 0.4317928 -0.6698526 0 0.4317928 -0.6925839 0 0.4317928 -0.7143866 0 0.4317928 -0.7353569 0 0.4317928 -0.7555758 0 0.4317928 -0.7751122 0 0.4317928 -0.7940252 0 0.4317928 -0.8123661 0 0.4317928 -0.8301795 0 0.4317928 -0.8475045 0 0.4317928 -0.8643761 0 0.4317928 -0.880825 0 0.4317928 -0.8968787 0 0.4317928 -0.9125621 0 0.4317928 -0.9278974 0 0.4317928 -0.9429048 0 0.4317928 -0.9576028 0 0.4317928 -0.9720079 0 0.4317928 -0.9861357 0 0.4317928 -1 0 0.4317928 -0 0.1939468 0.4317928 -0.1939468 0.1939468 0.4317928 -0.2773041 0.1939468 0.4317928 -0.3384659 0.1939468 0.4317928 -0.3885728 0.1939468 0.4317928 -0.4317928 0.1939468 0.4317928 -0.470214 0.1939468 0.4317928 -0.5050551 0.1939468 0.4317928 -0.5370987 0.1939468 0.4317928 -0.5668815 0.1939468 0.4317928 -0.5947903 0.1939468 0.4317928 -0.6211144 0.1939468 0.4317928 -0.6460766 0.1939468 0.4317928 -0.6698526 0.1939468 0.4317928 -0.6925839 0.1939468 0.4317928 -0.7143866 0.1939468 0.4317928 -0.7353569 0.1939468 0.4317928 -0.7555758 0.1939468 0.4317928 -0.7751122 0.1939468 0.4317928 -0.7940252 0.1939468 0.4317928 -0.8123661 0.1939468 0.4317928 -0.8301795 0.1939468 0.4317928 -0.8475045 0.1939468 0.4317928 -0.8643761 0.1939468 0.4317928 -0.880825 0.1939468 0.4317928 -0.8968787 0.1939468 0.4317928 -0.9125621 0.1939468 0.4317928 -0.9278974 0.1939468 0.4317928 -0.9429048 0.1939468 0.4317928 -0.9576028 0.1939468 0.4317928 -0.9720079 0.1939468 0.4317928 -0.9861357 0.1939468 0.4317928 -1 0.1939468 0.4317928 -0 0.2773041 0.4317928 -0.1939468 0.2773041 0.4317928 -0.2773041 0.2773041 0.4317928 -0.3384659 0.2773041 0.4317928 -0.3885728 0.2773041 0.4317928 -0.4317928 0.2773041 0.4317928 -0.470214 0.2773041 0.4317928 -0.5050551 0.2773041 0.4317928 -0.5370987 0.2773041 0.4317928 -0.5668815 0.2773041 0.4317928 -0.5947903 0.2773041 0.4317928 -0.6211144 0.2773041 0.4317928 -0.6460766 0.2773041 0.4317928 -0.6698526 0.2773041 0.4317928 -0.6925839 0.2773041 0.4317928 -0.7143866 0.2773041 0.4317928 -0.7353569 0.2773041 0.4317928 -0.7555758 0.2773041 0.4317928 -0.7751122 0.2773041 0.4317928 -0.7940252 0.2773041 0.4317928 -0.8123661 0.2773041 0.4317928 -0.8301795 0.2773041 0.4317928 -0.8475045 0.2773041 0.4317928 -0.8643761 0.2773041 0.4317928 -0.880825 0.2773041 0.4317928 -0.8968787 0.2773041 0.4317928 -0.9125621 0.2773041 0.4317928 -0.9278974 0.2773041 0.4317928 -0.9429048 0.2773041 0.4317928 -0.9576028 0.2773041 0.4317928 -0.9720079 0.2773041 0.4317928 -0.9861357 0.2773041 0.4317928 -1 0.2773041 0.4317928 -0 0.3384659 0.4317928 -0.1939468 0.3384659 0.4317928 -0.2773041 0.3384659 0.4317928 -0.3384659 0.3384659 0.4317928 -0.3885728 0.3384659 0.4317928 -0.4317928 0.3384659 0.4317928 -0.470214 0.3384659 0.4317928 -0.5050551 0.3384659 0.4317928 -0.5370987 0.3384659 0.4317928 -0.5668815 0.3384659 0.4317928 -0.5947903 0.3384659 0.4317928 -0.6211144 0.3384659 0.4317928 -0.6460766 0.3384659 0.4317928 -0.6698526 0.3384659 0.4317928 -0.6925839 0.3384659 0.4317928 -0.7143866 0.3384659 0.4317928 -0.7353569 0.3384659 0.4317928 -0.7555758 0.3384659 0.4317928 -0.7751122 0.3384659 0.4317928 -0.7940252 0.3384659 0.4317928 -0.8123661 0.3384659 0.4317928 -0.8301795 0.3384659 0.4317928 -0.8475045 0.3384659 0.4317928 -0.8643761 0.3384659 0.4317928 -0.880825 0.3384659 0.4317928 -0.8968787 0.3384659 0.4317928 -0.9125621 0.3384659 0.4317928 -0.9278974 0.3384659 0.4317928 -0.9429048 0.3384659 0.4317928 -0.9576028 0.3384659 0.4317928 -0.9720079 0.3384659 0.4317928 -0.9861357 0.3384659 0.4317928 -1 0.3384659 0.4317928 -0 0.3885728 0.4317928 -0.1939468 0.3885728 0.4317928 -0.2773041 0.3885728 0.4317928 -0.3384659 0.3885728 0.4317928 -0.3885728 0.3885728 0.4317928 -0.4317928 0.3885728 0.4317928 -0.470214 0.3885728 0.4317928 -0.5050551 0.3885728 0.4317928 -0.5370987 0.3885728 0.4317928 -0.5668815 0.3885728 0.4317928 -0.5947903 0.3885728 0.4317928 -0.6211144 0.3885728 0.4317928 -0.6460766 0.3885728 0.4317928 -0.6698526 0.3885728 0.4317928 -0.6925839 0.3885728 0.4317928 -0.7143866 0.3885728 0.4317928 -0.7353569 0.3885728 0.4317928 -0.7555758 0.3885728 0.4317928 -0.7751122 0.3885728 0.4317928 -0.7940252 0.3885728 0.4317928 -0.8123661 0.3885728 0.4317928 -0.8301795 0.3885728 0.4317928 -0.8475045 0.3885728 0.4317928 -0.8643761 0.3885728 0.4317928 -0.880825 0.3885728 0.4317928 -0.8968787 0.3885728 0.4317928 -0.9125621 0.3885728 0.4317928 -0.9278974 0.3885728 0.4317928 -0.9429048 0.3885728 0.4317928 -0.9576028 0.3885728 0.4317928 -0.9720079 0.3885728 0.4317928 -0.9861357 0.3885728 0.4317928 -1 0.3885728 0.4317928 -0 0.4317928 0.4317928 -0.1939468 0.4317928 0.4317928 -0.2773041 0.4317928 0.4317928 -0.3384659 0.4317928 0.4317928 -0.3885728 0.4317928 0.4317928 -0.4317928 0.4317928 0.4317928 -0.470214 0.4317928 0.4317928 -0.5050551 0.4317928 0.4317928 -0.5370987 0.4317928 0.4317928 -0.5668815 0.4317928 0.4317928 -0.5947903 0.4317928 0.4317928 -0.6211144 0.4317928 0.4317928 -0.6460766 0.4317928 0.4317928 -0.6698526 0.4317928 0.4317928 -0.6925839 0.4317928 0.4317928 -0.7143866 0.4317928 0.4317928 -0.7353569 0.4317928 0.4317928 -0.7555758 0.4317928 0.4317928 -0.7751122 0.4317928 0.4317928 -0.7940252 0.4317928 0.4317928 -0.8123661 0.4317928 0.4317928 -0.8301795 0.4317928 0.4317928 -0.8475045 0.4317928 0.4317928 -0.8643761 0.4317928 0.4317928 -0.880825 0.4317928 0.4317928 -0.8968787 0.4317928 0.4317928 -0.9125621 0.4317928 0.4317928 -0.9278974 0.4317928 0.4317928 -0.9429048 0.4317928 0.4317928 -0.9576028 0.4317928 0.4317928 -0.9720079 0.4317928 0.4317928 -0.9861357 0.4317928 0.4317928 -1 0.4317928 0.4317928 -0 0.470214 0.4317928 -0.1939468 0.470214 0.4317928 -0.2773041 0.470214 0.4317928 -0.3384659 0.470214 0.4317928 -0.3885728 0.470214 0.4317928 -0.4317928 0.470214 0.4317928 -0.470214 0.470214 0.4317928 -0.5050551 0.470214 0.4317928 -0.5370987 0.470214 0.4317928 -0.5668815 0.470214 0.4317928 -0.5947903 0.470214 0.4317928 -0.6211144 0.470214 0.4317928 -0.6460766 0.470214 0.4317928 -0.6698526 0.470214 0.4317928 -0.6925839 0.470214 0.4317928 -0.7143866 0.470214 0.4317928 -0.7353569 0.470214 0.4317928 -0.7555758 0.470214 0.4317928 -0.7751122 0.470214 0.4317928 -0.7940252 0.470214 0.4317928 -0.8123661 0.470214 0.4317928 -0.8301795 0.470214 0.4317928 -0.8475045 0.470214 0.4317928 -0.8643761 0.470214 0.4317928 -0.880825 0.470214 0.4317928 -0.8968787 0.470214 0.4317928 -0.9125621 0.470214 0.4317928 -0.9278974 0.470214 0.4317928 -0.9429048 0.470214 0.4317928 -0.9576028 0.470214 0.4317928 -0.9720079 0.470214 0.4317928 -0.9861357 0.470214 0.4317928 -1 0.470214 0.4317928 -0 0.5050551 0.4317928 -0.1939468 0.5050551 0.4317928 -0.2773041 0.5050551 0.4317928 -0.3384659 0.5050551 0.4317928 -0.3885728 0.5050551 0.4317928 -0.4317928 0.5050551 0.4317928 -0.470214 0.5050551 0.4317928 -0.5050551 0.5050551 0.4317928 -0.5370987 0.5050551 0.4317928 -0.5668815 0.5050551 0.4317928 -0.5947903 0.5050551 0.4317928 -0.6211144 0.5050551 0.4317928 -0.6460766 0.5050551 0.4317928 -0.6698526 0.5050551 0.4317928 -0.6925839 0.5050551 0.4317928 -0.7143866 0.5050551 0.4317928 -0.7353569 0.5050551 0.4317928 -0.7555758 0.5050551 0.4317928 -0.7751122 0.5050551 0.4317928 -0.7940252 0.5050551 0.4317928 -0.8123661 0.5050551 0.4317928 -0.8301795 0.5050551 0.4317928 -0.8475045 0.5050551 0.4317928 -0.8643761 0.5050551 0.4317928 -0.880825 0.5050551 0.4317928 -0.8968787 0.5050551 0.4317928 -0.9125621 0.5050551 0.4317928 -0.9278974 0.5050551 0.4317928 -0.9429048 0.5050551 0.4317928 -0.9576028 0.5050551 0.4317928 -0.9720079 0.5050551 0.4317928 -0.9861357 0.5050551 0.4317928 -1 0.5050551 0.4317928 -0 0.5370987 0.4317928 -0.1939468 0.5370987 0.4317928 -0.2773041 0.5370987 0.4317928 -0.3384659 0.5370987 0.4317928 -0.3885728 0.5370987 0.4317928 -0.4317928 0.5370987 0.4317928 -0.470214 0.5370987 0.4317928 -0.5050551 0.5370987 0.4317928 -0.5370987 0.5370987 0.4317928 -0.5668815 0.5370987 0.4317928 -0.5947903 0.5370987 0.4317928 -0.6211144 0.5370987 0.4317928 -0.6460766 0.5370987 0.4317928 -0.6698526 0.5370987 0.4317928 -0.6925839 0.5370987 0.4317928 -0.7143866 0.5370987 0.4317928 -0.7353569 0.5370987 0.4317928 -0.7555758 0.5370987 0.4317928 -0.7751122 0.5370987 0.4317928 -0.7940252 0.5370987 0.4317928 -0.8123661 0.5370987 0.4317928 -0.8301795 0.5370987 0.4317928 -0.8475045 0.5370987 0.4317928 -0.8643761 0.5370987 0.4317928 -0.880825 0.5370987 0.4317928 -0.8968787 0.5370987 0.4317928 -0.9125621 0.5370987 0.4317928 -0.9278974 0.5370987 0.4317928 -0.9429048 0.5370987 0.4317928 -0.9576028 0.5370987 0.4317928 -0.9720079 0.5370987 0.4317928 -0.9861357 0.5370987 0.4317928 -1 0.5370987 0.4317928 -0 0.5668815 0.4317928 -0.1939468 0.5668815 0.4317928 -0.2773041 0.5668815 0.4317928 -0.3384659 0.5668815 0.4317928 -0.3885728 0.5668815 0.4317928 -0.4317928 0.5668815 0.4317928 -0.470214 0.5668815 0.4317928 -0.5050551 0.5668815 0.4317928 -0.5370987 0.5668815 0.4317928 -0.5668815 0.5668815 0.4317928 -0.5947903 0.5668815 0.4317928 -0.6211144 0.5668815 0.4317928 -0.6460766 0.5668815 0.4317928 -0.6698526 0.5668815 0.4317928 -0.6925839 0.5668815 0.4317928 -0.7143866 0.5668815 0.4317928 -0.7353569 0.5668815 0.4317928 -0.7555758 0.5668815 0.4317928 -0.7751122 0.5668815 0.4317928 -0.7940252 0.5668815 0.4317928 -0.8123661 0.5668815 0.4317928 -0.8301795 0.5668815 0.4317928 -0.8475045 0.5668815 0.4317928 -0.8643761 0.5668815 0.4317928 -0.880825 0.5668815 0.4317928 -0.8968787 0.5668815 0.4317928 -0.9125621 0.5668815 0.4317928 -0.9278974 0.5668815 0.4317928 -0.9429048 0.5668815 0.4317928 -0.9576028 0.5668815 0.4317928 -0.9720079 0.5668815 0.4317928 -0.9861357 0.5668815 0.4317928 -1 0.5668815 0.4317928 -0 0.5947903 0.4317928 -0.1939468 0.5947903 0.4317928 -0.2773041 0.5947903 0.4317928 -0.3384659 0.5947903 0.4317928 -0.3885728 0.5947903 0.4317928 -0.4317928 0.5947903 0.4317928 -0.470214 0.5947903 0.4317928 -0.5050551 0.5947903 0.4317928 -0.5370987 0.5947903 0.4317928 -0.5668815 0.5947903 0.4317928 -0.5947903 0.5947903 0.4317928 -0.6211144 0.5947903 0.4317928 -0.6460766 0.5947903 0.4317928 -0.6698526 0.5947903 0.4317928 -0.6925839 0.5947903 0.4317928 -0.7143866 0.5947903 0.4317928 -0.7353569 0.5947903 0.4317928 -0.7555758 0.5947903 0.4317928 -0.7751122 0.5947903 0.4317928 -0.7940252 0.5947903 0.4317928 -0.8123661 0.5947903 0.4317928 -0.8301795 0.5947903 0.4317928 -0.8475045 0.5947903 0.4317928 -0.8643761 0.5947903 0.4317928 -0.880825 0.5947903 0.4317928 -0.8968787 0.5947903 0.4317928 -0.9125621 0.5947903 0.4317928 -0.9278974 0.5947903 0.4317928 -0.9429048 0.5947903 0.4317928 -0.9576028 0.5947903 0.4317928 -0.9720079 0.5947903 0.4317928 -0.9861357 0.5947903 0.4317928 -1 0.5947903 0.4317928 -0 0.6211144 0.4317928 -0.1939468 0.6211144 0.4317928 -0.2773041 0.6211144 0.4317928 -0.3384659 0.6211144 0.4317928 -0.3885728 0.6211144 0.4317928 -0.4317928 0.6211144 0.4317928 -0.470214 0.6211144 0.4317928 -0.5050551 0.6211144 0.4317928 -0.5370987 0.6211144 0.4317928 -0.5668815 0.6211144 0.4317928 -0.5947903 0.6211144 0.4317928 -0.6211144 0.6211144 0.4317928 -0.6460766 0.6211144 0.4317928 -0.6698526 0.6211144 0.4317928 -0.6925839 0.6211144 0.4317928 -0.7143866 0.6211144 0.4317928 -0.7353569 0.6211144 0.4317928 -0.7555758 0.6211144 0.4317928 -0.7751122 0.6211144 0.4317928 -0.7940252 0.6211144 0.4317928 -0.8123661 0.6211144 0.4317928 -0.8301795 0.6211144 0.4317928 -0.8475045 0.6211144 0.4317928 -0.8643761 0.6211144 0.4317928 -0.880825 0.6211144 0.4317928 -0.8968787 0.6211144 0.4317928 -0.9125621 0.6211144 0.4317928 -0.9278974 0.6211144 0.4317928 -0.9429048 0.6211144 0.4317928 -0.9576028 0.6211144 0.4317928 -0.9720079 0.6211144 0.4317928 -0.9861357 0.6211144 0.4317928 -1 0.6211144 0.4317928 -0 0.6460766 0.4317928 -0.1939468 0.6460766 0.4317928 -0.2773041 0.6460766 0.4317928 -0.3384659 0.6460766 0.4317928 -0.3885728 0.6460766 0.4317928 -0.4317928 0.6460766 0.4317928 -0.470214 0.6460766 0.4317928 -0.5050551 0.6460766 0.4317928 -0.5370987 0.6460766 0.4317928 -0.5668815 0.6460766 0.4317928 -0.5947903 0.6460766 0.4317928 -0.6211144 0.6460766 0.4317928 -0.6460766 0.6460766 0.4317928 -0.6698526 0.6460766 0.4317928 -0.6925839 0.6460766 0.4317928 -0.7143866 0.6460766 0.4317928 -0.7353569 0.6460766 0.4317928 -0.7555758 0.6460766 0.4317928 -0.7751122 0.6460766 0.4317928 -0.7940252 0.6460766 0.4317928 -0.8123661 0.6460766 0.4317928 -0.8301795 0.6460766 0.4317928 -0.8475045 0.6460766 0.4317928 -0.8643761 0.6460766 0.4317928 -0.880825 0.6460766 0.4317928 -0.8968787 0.6460766 0.4317928 -0.9125621 0.6460766 0.4317928 -0.9278974 0.6460766 0.4317928 -0.9429048 0.6460766 0.4317928 -0.9576028 0.6460766 0.4317928 -0.9720079 0.6460766 0.4317928 -0.9861357 0.6460766 0.4317928 -1 0.6460766 0.4317928 -0 0.6698526 0.4317928 -0.1939468 0.6698526 0.4317928 -0.2773041 0.6698526 0.4317928 -0.3384659 0.6698526 0.4317928 -0.3885728 0.6698526 0.4317928 -0.4317928 0.6698526 0.4317928 -0.470214 0.6698526 0.4317928 -0.5050551 0.6698526 0.4317928 -0.5370987 0.6698526 0.4317928 -0.5668815 0.6698526 0.4317928 -0.5947903 0.6698526 0.4317928 -0.6211144 0.6698526 0.4317928 -0.6460766 0.6698526 0.4317928 -0.6698526 0.6698526 0.4317928 -0.6925839 0.6698526 0.4317928 -0.7143866 0.6698526 0.4317928 -0.7353569 0.6698526 0.4317928 -0.7555758 0.6698526 0.4317928 -0.7751122 0.6698526 0.4317928 -0.7940252 0.6698526 0.4317928 -0.8123661 0.6698526 0.4317928 -0.8301795 0.6698526 0.4317928 -0.8475045 0.6698526 0.4317928 -0.8643761 0.6698526 0.4317928 -0.880825 0.6698526 0.4317928 -0.8968787 0.6698526 0.4317928 -0.9125621 0.6698526 0.4317928 -0.9278974 0.6698526 0.4317928 -0.9429048 0.6698526 0.4317928 -0.9576028 0.6698526 0.4317928 -0.9720079 0.6698526 0.4317928 -0.9861357 0.6698526 0.4317928 -1 0.6698526 0.4317928 -0 0.6925839 0.4317928 -0.1939468 0.6925839 0.4317928 -0.2773041 0.6925839 0.4317928 -0.3384659 0.6925839 0.4317928 -0.3885728 0.6925839 0.4317928 -0.4317928 0.6925839 0.4317928 -0.470214 0.6925839 0.4317928 -0.5050551 0.6925839 0.4317928 -0.5370987 0.6925839 0.4317928 -0.5668815 0.6925839 0.4317928 -0.5947903 0.6925839 0.4317928 -0.6211144 0.6925839 0.4317928 -0.6460766 0.6925839 0.4317928 -0.6698526 0.6925839 0.4317928 -0.6925839 0.6925839 0.4317928 -0.7143866 0.6925839 0.4317928 -0.7353569 0.6925839 0.4317928 -0.7555758 0.6925839 0.4317928 -0.7751122 0.6925839 0.4317928 -0.7940252 0.6925839 0.4317928 -0.8123661 0.6925839 0.4317928 -0.8301795 0.6925839 0.4317928 -0.8475045 0.6925839 0.4317928 -0.8643761 0.6925839 0.4317928 -0.880825 0.6925839 0.4317928 -0.8968787 0.6925839 0.4317928 -0.9125621 0.6925839 0.4317928 -0.9278974 0.6925839 0.4317928 -0.9429048 0.6925839 0.4317928 -0.9576028 0.6925839 0.4317928 -0.9720079 0.6925839 0.4317928 -0.9861357 0.6925839 0.4317928 -1 0.6925839 0.4317928 -0 0.7143866 0.4317928 -0.1939468 0.7143866 0.4317928 -0.2773041 0.7143866 0.4317928 -0.3384659 0.7143866 0.4317928 -0.3885728 0.7143866 0.4317928 -0.4317928 0.7143866 0.4317928 -0.470214 0.7143866 0.4317928 -0.5050551 0.7143866 0.4317928 -0.5370987 0.7143866 0.4317928 -0.5668815 0.7143866 0.4317928 -0.5947903 0.7143866 0.4317928 -0.6211144 0.7143866 0.4317928 -0.6460766 0.7143866 0.4317928 -0.6698526 0.7143866 0.4317928 -0.6925839 0.7143866 0.4317928 -0.7143866 0.7143866 0.4317928 -0.7353569 0.7143866 0.4317928 -0.7555758 0.7143866 0.4317928 -0.7751122 0.7143866 0.4317928 -0.7940252 0.7143866 0.4317928 -0.8123661 0.7143866 0.4317928 -0.8301795 0.7143866 0.4317928 -0.8475045 0.7143866 0.4317928 -0.8643761 0.7143866 0.4317928 -0.880825 0.7143866 0.4317928 -0.8968787 0.7143866 0.4317928 -0.9125621 0.7143866 0.4317928 -0.9278974 0.7143866 0.4317928 -0.9429048 0.7143866 0.4317928 -0.9576028 0.7143866 0.4317928 -0.9720079 0.7143866 0.4317928 -0.9861357 0.7143866 0.4317928 -1 0.7143866 0.4317928 -0 0.7353569 0.4317928 -0.1939468 0.7353569 0.4317928 -0.2773041 0.7353569 0.4317928 -0.3384659 0.7353569 0.4317928 -0.3885728 0.7353569 0.4317928 -0.4317928 0.7353569 0.4317928 -0.470214 0.7353569 0.4317928 -0.5050551 0.7353569 0.4317928 -0.5370987 0.7353569 0.4317928 -0.5668815 0.7353569 0.4317928 -0.5947903 0.7353569 0.4317928 -0.6211144 0.7353569 0.4317928 -0.6460766 0.7353569 0.4317928 -0.6698526 0.7353569 0.4317928 -0.6925839 0.7353569 0.4317928 -0.7143866 0.7353569 0.4317928 -0.7353569 0.7353569 0.4317928 -0.7555758 0.7353569 0.4317928 -0.7751122 0.7353569 0.4317928 -0.7940252 0.7353569 0.4317928 -0.8123661 0.7353569 0.4317928 -0.8301795 0.7353569 0.4317928 -0.8475045 0.7353569 0.4317928 -0.8643761 0.7353569 0.4317928 -0.880825 0.7353569 0.4317928 -0.8968787 0.7353569 0.4317928 -0.9125621 0.7353569 0.4317928 -0.9278974 0.7353569 0.4317928 -0.9429048 0.7353569 0.4317928 -0.9576028 0.7353569 0.4317928 -0.9720079 0.7353569 0.4317928 -0.9861357 0.7353569 0.4317928 -1 0.7353569 0.4317928 -0 0.7555758 0.4317928 -0.1939468 0.7555758 0.4317928 -0.2773041 0.7555758 0.4317928 -0.3384659 0.7555758 0.4317928 -0.3885728 0.7555758 0.4317928 -0.4317928 0.7555758 0.4317928 -0.470214 0.7555758 0.4317928 -0.5050551 0.7555758 0.4317928 -0.5370987 0.7555758 0.4317928 -0.5668815 0.7555758 0.4317928 -0.5947903 0.7555758 0.4317928 -0.6211144 0.7555758 0.4317928 -0.6460766 0.7555758 0.4317928 -0.6698526 0.7555758 0.4317928 -0.6925839 0.7555758 0.4317928 -0.7143866 0.7555758 0.4317928 -0.7353569 0.7555758 0.4317928 -0.7555758 0.7555758 0.4317928 -0.7751122 0.7555758 0.4317928 -0.7940252 0.7555758 0.4317928 -0.8123661 0.7555758 0.4317928 -0.8301795 0.7555758 0.4317928 -0.8475045 0.7555758 0.4317928 -0.8643761 0.7555758 0.4317928 -0.880825 0.7555758 0.4317928 -0.8968787 0.7555758 0.4317928 -0.9125621 0.7555758 0.4317928 -0.9278974 0.7555758 0.4317928 -0.9429048 0.7555758 0.4317928 -0.9576028 0.7555758 0.4317928 -0.9720079 0.7555758 0.4317928 -0.9861357 0.7555758 0.4317928 -1 0.7555758 0.4317928 -0 0.7751122 0.4317928 -0.1939468 0.7751122 0.4317928 -0.2773041 0.7751122 0.4317928 -0.3384659 0.7751122 0.4317928 -0.3885728 0.7751122 0.4317928 -0.4317928 0.7751122 0.4317928 -0.470214 0.7751122 0.4317928 -0.5050551 0.7751122 0.4317928 -0.5370987 0.7751122 0.4317928 -0.5668815 0.7751122 0.4317928 -0.5947903 0.7751122 0.4317928 -0.6211144 0.7751122 0.4317928 -0.6460766 0.7751122 0.4317928 -0.6698526 0.7751122 0.4317928 -0.6925839 0.7751122 0.4317928 -0.7143866 0.7751122 0.4317928 -0.7353569 0.7751122 0.4317928 -0.7555758 0.7751122 0.4317928 -0.7751122 0.7751122 0.4317928 -0.7940252 0.7751122 0.4317928 -0.8123661 0.7751122 0.4317928 -0.8301795 0.7751122 0.4317928 -0.8475045 0.7751122 0.4317928 -0.8643761 0.7751122 0.4317928 -0.880825 0.7751122 0.4317928 -0.8968787 0.7751122 0.4317928 -0.9125621 0.7751122 0.4317928 -0.9278974 0.7751122 0.4317928 -0.9429048 0.7751122 0.4317928 -0.9576028 0.7751122 0.4317928 -0.9720079 0.7751122 0.4317928 -0.9861357 0.7751122 0.4317928 -1 0.7751122 0.4317928 -0 0.7940252 0.4317928 -0.1939468 0.7940252 0.4317928 -0.2773041 0.7940252 0.4317928 -0.3384659 0.7940252 0.4317928 -0.3885728 0.7940252 0.4317928 -0.4317928 0.7940252 0.4317928 -0.470214 0.7940252 0.4317928 -0.5050551 0.7940252 0.4317928 -0.5370987 0.7940252 0.4317928 -0.5668815 0.7940252 0.4317928 -0.5947903 0.7940252 0.4317928 -0.6211144 0.7940252 0.4317928 -0.6460766 0.7940252 0.4317928 -0.6698526 0.7940252 0.4317928 -0.6925839 0.7940252 0.4317928 -0.7143866 0.7940252 0.4317928 -0.7353569 0.7940252 0.4317928 -0.7555758 0.7940252 0.4317928 -0.7751122 0.7940252 0.4317928 -0.7940252 0.7940252 0.4317928 -0.8123661 0.7940252 0.4317928 -0.8301795 0.7940252 0.4317928 -0.8475045 0.7940252 0.4317928 -0.8643761 0.7940252 0.4317928 -0.880825 0.7940252 0.4317928 -0.8968787 0.7940252 0.4317928 -0.9125621 0.7940252 0.4317928 -0.9278974 0.7940252 0.4317928 -0.9429048 0.7940252 0.4317928 -0.9576028 0.7940252 0.4317928 -0.9720079 0.7940252 0.4317928 -0.9861357 0.7940252 0.4317928 -1 0.7940252 0.4317928 -0 0.8123661 0.4317928 -0.1939468 0.8123661 0.4317928 -0.2773041 0.8123661 0.4317928 -0.3384659 0.8123661 0.4317928 -0.3885728 0.8123661 0.4317928 -0.4317928 0.8123661 0.4317928 -0.470214 0.8123661 0.4317928 -0.5050551 0.8123661 0.4317928 -0.5370987 0.8123661 0.4317928 -0.5668815 0.8123661 0.4317928 -0.5947903 0.8123661 0.4317928 -0.6211144 0.8123661 0.4317928 -0.6460766 0.8123661 0.4317928 -0.6698526 0.8123661 0.4317928 -0.6925839 0.8123661 0.4317928 -0.7143866 0.8123661 0.4317928 -0.7353569 0.8123661 0.4317928 -0.7555758 0.8123661 0.4317928 -0.7751122 0.8123661 0.4317928 -0.7940252 0.8123661 0.4317928 -0.8123661 0.8123661 0.4317928 -0.8301795 0.8123661 0.4317928 -0.8475045 0.8123661 0.4317928 -0.8643761 0.8123661 0.4317928 -0.880825 0.8123661 0.4317928 -0.8968787 0.8123661 0.4317928 -0.9125621 0.8123661 0.4317928 -0.9278974 0.8123661 0.4317928 -0.9429048 0.8123661 0.4317928 -0.9576028 0.8123661 0.4317928 -0.9720079 0.8123661 0.4317928 -0.9861357 0.8123661 0.4317928 -1 0.8123661 0.4317928 -0 0.8301795 0.4317928 -0.1939468 0.8301795 0.4317928 -0.2773041 0.8301795 0.4317928 -0.3384659 0.8301795 0.4317928 -0.3885728 0.8301795 0.4317928 -0.4317928 0.8301795 0.4317928 -0.470214 0.8301795 0.4317928 -0.5050551 0.8301795 0.4317928 -0.5370987 0.8301795 0.4317928 -0.5668815 0.8301795 0.4317928 -0.5947903 0.8301795 0.4317928 -0.6211144 0.8301795 0.4317928 -0.6460766 0.8301795 0.4317928 -0.6698526 0.8301795 0.4317928 -0.6925839 0.8301795 0.4317928 -0.7143866 0.8301795 0.4317928 -0.7353569 0.8301795 0.4317928 -0.7555758 0.8301795 0.4317928 -0.7751122 0.8301795 0.4317928 -0.7940252 0.8301795 0.4317928 -0.8123661 0.8301795 0.4317928 -0.8301795 0.8301795 0.4317928 -0.8475045 0.8301795 0.4317928 -0.8643761 0.8301795 0.4317928 -0.880825 0.8301795 0.4317928 -0.8968787 0.8301795 0.4317928 -0.9125621 0.8301795 0.4317928 -0.9278974 0.8301795 0.4317928 -0.9429048 0.8301795 0.4317928 -0.9576028 0.8301795 0.4317928 -0.9720079 0.8301795 0.4317928 -0.9861357 0.8301795 0.4317928 -1 0.8301795 0.4317928 -0 0.8475045 0.4317928 -0.1939468 0.8475045 0.4317928 -0.2773041 0.8475045 0.4317928 -0.3384659 0.8475045 0.4317928 -0.3885728 0.8475045 0.4317928 -0.4317928 0.8475045 0.4317928 -0.470214 0.8475045 0.4317928 -0.5050551 0.8475045 0.4317928 -0.5370987 0.8475045 0.4317928 -0.5668815 0.8475045 0.4317928 -0.5947903 0.8475045 0.4317928 -0.6211144 0.8475045 0.4317928 -0.6460766 0.8475045 0.4317928 -0.6698526 0.8475045 0.4317928 -0.6925839 0.8475045 0.4317928 -0.7143866 0.8475045 0.4317928 -0.7353569 0.8475045 0.4317928 -0.7555758 0.8475045 0.4317928 -0.7751122 0.8475045 0.4317928 -0.7940252 0.8475045 0.4317928 -0.8123661 0.8475045 0.4317928 -0.8301795 0.8475045 0.4317928 -0.8475045 0.8475045 0.4317928 -0.8643761 0.8475045 0.4317928 -0.880825 0.8475045 0.4317928 -0.8968787 0.8475045 0.4317928 -0.9125621 0.8475045 0.4317928 -0.9278974 0.8475045 0.4317928 -0.9429048 0.8475045 0.4317928 -0.9576028 0.8475045 0.4317928 -0.9720079 0.8475045 0.4317928 -0.9861357 0.8475045 0.4317928 -1 0.8475045 0.4317928 -0 0.8643761 0.4317928 -0.1939468 0.8643761 0.4317928 -0.2773041 0.8643761 0.4317928 -0.3384659 0.8643761 0.4317928 -0.3885728 0.8643761 0.4317928 -0.4317928 0.8643761 0.4317928 -0.470214 0.8643761 0.4317928 -0.5050551 0.8643761 0.4317928 -0.5370987 0.8643761 0.4317928 -0.5668815 0.8643761 0.4317928 -0.5947903 0.8643761 0.4317928 -0.6211144 0.8643761 0.4317928 -0.6460766 0.8643761 0.4317928 -0.6698526 0.8643761 0.4317928 -0.6925839 0.8643761 0.4317928 -0.7143866 0.8643761 0.4317928 -0.7353569 0.8643761 0.4317928 -0.7555758 0.8643761 0.4317928 -0.7751122 0.8643761 0.4317928 -0.7940252 0.8643761 0.4317928 -0.8123661 0.8643761 0.4317928 -0.8301795 0.8643761 0.4317928 -0.8475045 0.8643761 0.4317928 -0.8643761 0.8643761 0.4317928 -0.880825 0.8643761 0.4317928 -0.8968787 0.8643761 0.4317928 -0.9125621 0.8643761 0.4317928 -0.9278974 0.8643761 0.4317928 -0.9429048 0.8643761 0.4317928 -0.9576028 0.8643761 0.4317928 -0.9720079 0.8643761 0.4317928 -0.9861357 0.8643761 0.4317928 -1 0.8643761 0.4317928 -0 0.880825 0.4317928 -0.1939468 0.880825 0.4317928 -0.2773041 0.880825 0.4317928 -0.3384659 0.880825 0.4317928 -0.3885728 0.880825 0.4317928 -0.4317928 0.880825 0.4317928 -0.470214 0.880825 0.4317928 -0.5050551 0.880825 0.4317928 -0.5370987 0.880825 0.4317928 -0.5668815 0.880825 0.4317928 -0.5947903 0.880825 0.4317928 -0.6211144 0.880825 0.4317928 -0.6460766 0.880825 0.4317928 -0.6698526 0.880825 0.4317928 -0.6925839 0.880825 0.4317928 -0.7143866 0.880825 0.4317928 -0.7353569 0.880825 0.4317928 -0.7555758 0.880825 0.4317928 -0.7751122 0.880825 0.4317928 -0.7940252 0.880825 0.4317928 -0.8123661 0.880825 0.4317928 -0.8301795 0.880825 0.4317928 -0.8475045 0.880825 0.4317928 -0.8643761 0.880825 0.4317928 -0.880825 0.880825 0.4317928 -0.8968787 0.880825 0.4317928 -0.9125621 0.880825 0.4317928 -0.9278974 0.880825 0.4317928 -0.9429048 0.880825 0.4317928 -0.9576028 0.880825 0.4317928 -0.9720079 0.880825 0.4317928 -0.9861357 0.880825 0.4317928 -1 0.880825 0.4317928 -0 0.8968787 0.4317928 -0.1939468 0.8968787 0.4317928 -0.2773041 0.8968787 0.4317928 -0.3384659 0.8968787 0.4317928 -0.3885728 0.8968787 0.4317928 -0.4317928 0.8968787 0.4317928 -0.470214 0.8968787 0.4317928 -0.5050551 0.8968787 0.4317928 -0.5370987 0.8968787 0.4317928 -0.5668815 0.8968787 0.4317928 -0.5947903 0.8968787 0.4317928 -0.6211144 0.8968787 0.4317928 -0.6460766 0.8968787 0.4317928 -0.6698526 0.8968787 0.4317928 -0.6925839 0.8968787 0.4317928 -0.7143866 0.8968787 0.4317928 -0.7353569 0.8968787 0.4317928 -0.7555758 0.8968787 0.4317928 -0.7751122 0.8968787 0.4317928 -0.7940252 0.8968787 0.4317928 -0.8123661 0.8968787 0.4317928 -0.8301795 0.8968787 0.4317928 -0.8475045 0.8968787 0.4317928 -0.8643761 0.8968787 0.4317928 -0.880825 0.8968787 0.4317928 -0.8968787 0.8968787 0.4317928 -0.9125621 0.8968787 0.4317928 -0.9278974 0.8968787 0.4317928 -0.9429048 0.8968787 0.4317928 -0.9576028 0.8968787 0.4317928 -0.9720079 0.8968787 0.4317928 -0.9861357 0.8968787 0.4317928 -1 0.8968787 0.4317928 -0 0.9125621 0.4317928 -0.1939468 0.9125621 0.4317928 -0.2773041 0.9125621 0.4317928 -0.3384659 0.9125621 0.4317928 -0.3885728 0.9125621 0.4317928 -0.4317928 0.9125621 0.4317928 -0.470214 0.9125621 0.4317928 -0.5050551 0.9125621 0.4317928 -0.5370987 0.9125621 0.4317928 -0.5668815 0.9125621 0.4317928 -0.5947903 0.9125621 0.4317928 -0.6211144 0.9125621 0.4317928 -0.6460766 0.9125621 0.4317928 -0.6698526 0.9125621 0.4317928 -0.6925839 0.9125621 0.4317928 -0.7143866 0.9125621 0.4317928 -0.7353569 0.9125621 0.4317928 -0.7555758 0.9125621 0.4317928 -0.7751122 0.9125621 0.4317928 -0.7940252 0.9125621 0.4317928 -0.8123661 0.9125621 0.4317928 -0.8301795 0.9125621 0.4317928 -0.8475045 0.9125621 0.4317928 -0.8643761 0.9125621 0.4317928 -0.880825 0.9125621 0.4317928 -0.8968787 0.9125621 0.4317928 -0.9125621 0.9125621 0.4317928 -0.9278974 0.9125621 0.4317928 -0.9429048 0.9125621 0.4317928 -0.9576028 0.9125621 0.4317928 -0.9720079 0.9125621 0.4317928 -0.9861357 0.9125621 0.4317928 -1 0.9125621 0.4317928 -0 0.9278974 0.4317928 -0.1939468 0.9278974 0.4317928 -0.2773041 0.9278974 0.4317928 -0.3384659 0.9278974 0.4317928 -0.3885728 0.9278974 0.4317928 -0.4317928 0.9278974 0.4317928 -0.470214 0.9278974 0.4317928 -0.5050551 0.9278974 0.4317928 -0.5370987 0.9278974 0.4317928 -0.5668815 0.9278974 0.4317928 -0.5947903 0.9278974 0.4317928 -0.6211144 0.9278974 0.4317928 -0.6460766 0.9278974 0.4317928 -0.6698526 0.9278974 0.4317928 -0.6925839 0.9278974 0.4317928 -0.7143866 0.9278974 0.4317928 -0.7353569 0.9278974 0.4317928 -0.7555758 0.9278974 0.4317928 -0.7751122 0.9278974 0.4317928 -0.7940252 0.9278974 0.4317928 -0.8123661 0.9278974 0.4317928 -0.8301795 0.9278974 0.4317928 -0.8475045 0.9278974 0.4317928 -0.8643761 0.9278974 0.4317928 -0.880825 0.9278974 0.4317928 -0.8968787 0.9278974 0.4317928 -0.9125621 0.9278974 0.4317928 -0.9278974 0.9278974 0.4317928 -0.9429048 0.9278974 0.4317928 -0.9576028 0.9278974 0.4317928 -0.9720079 0.9278974 0.4317928 -0.9861357 0.9278974 0.4317928 -1 0.9278974 0.4317928 -0 0.9429048 0.4317928 -0.1939468 0.9429048 0.4317928 -0.2773041 0.9429048 0.4317928 -0.3384659 0.9429048 0.4317928 -0.3885728 0.9429048 0.4317928 -0.4317928 0.9429048 0.4317928 -0.470214 0.9429048 0.4317928 -0.5050551 0.9429048 0.4317928 -0.5370987 0.9429048 0.4317928 -0.5668815 0.9429048 0.4317928 -0.5947903 0.9429048 0.4317928 -0.6211144 0.9429048 0.4317928 -0.6460766 0.9429048 0.4317928 -0.6698526 0.9429048 0.4317928 -0.6925839 0.9429048 0.4317928 -0.7143866 0.9429048 0.4317928 -0.7353569 0.9429048 0.4317928 -0.7555758 0.9429048 0.4317928 -0.7751122 0.9429048 0.4317928 -0.7940252 0.9429048 0.4317928 -0.8123661 0.9429048 0.4317928 -0.8301795 0.9429048 0.4317928 -0.8475045 0.9429048 0.4317928 -0.8643761 0.9429048 0.4317928 -0.880825 0.9429048 0.4317928 -0.8968787 0.9429048 0.4317928 -0.9125621 0.9429048 0.4317928 -0.9278974 0.9429048 0.4317928 -0.9429048 0.9429048 0.4317928 -0.9576028 0.9429048 0.4317928 -0.9720079 0.9429048 0.4317928 -0.9861357 0.9429048 0.4317928 -1 0.9429048 0.4317928 -0 0.9576028 0.4317928 -0.1939468 0.9576028 0.4317928 -0.2773041 0.9576028 0.4317928 -0.3384659 0.9576028 0.4317928 -0.3885728 0.9576028 0.4317928 -0.4317928 0.9576028 0.4317928 -0.470214 0.9576028 0.4317928 -0.5050551 0.9576028 0.4317928 -0.5370987 0.9576028 0.4317928 -0.5668815 0.9576028 0.4317928 -0.5947903 0.9576028 0.4317928 -0.6211144 0.9576028 0.4317928 -0.6460766 0.9576028 0.4317928 -0.6698526 0.9576028 0.4317928 -0.6925839 0.9576028 0.4317928 -0.7143866 0.9576028 0.4317928 -0.7353569 0.9576028 0.4317928 -0.7555758 0.9576028 0.4317928 -0.7751122 0.9576028 0.4317928 -0.7940252 0.9576028 0.4317928 -0.8123661 0.9576028 0.4317928 -0.8301795 0.9576028 0.4317928 -0.8475045 0.9576028 0.4317928 -0.8643761 0.9576028 0.4317928 -0.880825 0.9576028 0.4317928 -0.8968787 0.9576028 0.4317928 -0.9125621 0.9576028 0.4317928 -0.9278974 0.9576028 0.4317928 -0.9429048 0.9576028 0.4317928 -0.9576028 0.9576028 0.4317928 -0.9720079 0.9576028 0.4317928 -0.9861357 0.9576028 0.4317928 -1 0.9576028 0.4317928 -0 0.9720079 0.4317928 -0.1939468 0.9720079 0.4317928 -0.2773041 0.9720079 0.4317928 -0.3384659 0.9720079 0.4317928 -0.3885728 0.9720079 0.4317928 -0.4317928 0.9720079 0.4317928 -0.470214 0.9720079 0.4317928 -0.5050551 0.9720079 0.4317928 -0.5370987 0.9720079 0.4317928 -0.5668815 0.9720079 0.4317928 -0.5947903 0.9720079 0.4317928 -0.6211144 0.9720079 0.4317928 -0.6460766 0.9720079 0.4317928 -0.6698526 0.9720079 0.4317928 -0.6925839 0.9720079 0.4317928 -0.7143866 0.9720079 0.4317928 -0.7353569 0.9720079 0.4317928 -0.7555758 0.9720079 0.4317928 -0.7751122 0.9720079 0.4317928 -0.7940252 0.9720079 0.4317928 -0.8123661 0.9720079 0.4317928 -0.8301795 0.9720079 0.4317928 -0.8475045 0.9720079 0.4317928 -0.8643761 0.9720079 0.4317928 -0.880825 0.9720079 0.4317928 -0.8968787 0.9720079 0.4317928 -0.9125621 0.9720079 0.4317928 -0.9278974 0.9720079 0.4317928 -0.9429048 0.9720079 0.4317928 -0.9576028 0.9720079 0.4317928 -0.9720079 0.9720079 0.4317928 -0.9861357 0.9720079 0.4317928 -1 0.9720079 0.4317928 -0 0.9861357 0.4317928 -0.1939468 0.9861357 0.4317928 -0.2773041 0.9861357 0.4317928 -0.3384659 0.9861357 0.4317928 -0.3885728 0.9861357 0.4317928 -0.4317928 0.9861357 0.4317928 -0.470214 0.9861357 0.4317928 -0.5050551 0.9861357 0.4317928 -0.5370987 0.9861357 0.4317928 -0.5668815 0.9861357 0.4317928 -0.5947903 0.9861357 0.4317928 -0.6211144 0.9861357 0.4317928 -0.6460766 0.9861357 0.4317928 -0.6698526 0.9861357 0.4317928 -0.6925839 0.9861357 0.4317928 -0.7143866 0.9861357 0.4317928 -0.7353569 0.9861357 0.4317928 -0.7555758 0.9861357 0.4317928 -0.7751122 0.9861357 0.4317928 -0.7940252 0.9861357 0.4317928 -0.8123661 0.9861357 0.4317928 -0.8301795 0.9861357 0.4317928 -0.8475045 0.9861357 0.4317928 -0.8643761 0.9861357 0.4317928 -0.880825 0.9861357 0.4317928 -0.8968787 0.9861357 0.4317928 -0.9125621 0.9861357 0.4317928 -0.9278974 0.9861357 0.4317928 -0.9429048 0.9861357 0.4317928 -0.9576028 0.9861357 0.4317928 -0.9720079 0.9861357 0.4317928 -0.9861357 0.9861357 0.4317928 -1 0.9861357 0.4317928 -0 1 0.4317928 -0.1939468 1 0.4317928 -0.2773041 1 0.4317928 -0.3384659 1 0.4317928 -0.3885728 1 0.4317928 -0.4317928 1 0.4317928 -0.470214 1 0.4317928 -0.5050551 1 0.4317928 -0.5370987 1 0.4317928 -0.5668815 1 0.4317928 -0.5947903 1 0.4317928 -0.6211144 1 0.4317928 -0.6460766 1 0.4317928 -0.6698526 1 0.4317928 -0.6925839 1 0.4317928 -0.7143866 1 0.4317928 -0.7353569 1 0.4317928 -0.7555758 1 0.4317928 -0.7751122 1 0.4317928 -0.7940252 1 0.4317928 -0.8123661 1 0.4317928 -0.8301795 1 0.4317928 -0.8475045 1 0.4317928 -0.8643761 1 0.4317928 -0.880825 1 0.4317928 -0.8968787 1 0.4317928 -0.9125621 1 0.4317928 -0.9278974 1 0.4317928 -0.9429048 1 0.4317928 -0.9576028 1 0.4317928 -0.9720079 1 0.4317928 -0.9861357 1 0.4317928 -1 1 0.4317928 -0 0 0.470214 -0.1939468 0 0.470214 -0.2773041 0 0.470214 -0.3384659 0 0.470214 -0.3885728 0 0.470214 -0.4317928 0 0.470214 -0.470214 0 0.470214 -0.5050551 0 0.470214 -0.5370987 0 0.470214 -0.5668815 0 0.470214 -0.5947903 0 0.470214 -0.6211144 0 0.470214 -0.6460766 0 0.470214 -0.6698526 0 0.470214 -0.6925839 0 0.470214 -0.7143866 0 0.470214 -0.7353569 0 0.470214 -0.7555758 0 0.470214 -0.7751122 0 0.470214 -0.7940252 0 0.470214 -0.8123661 0 0.470214 -0.8301795 0 0.470214 -0.8475045 0 0.470214 -0.8643761 0 0.470214 -0.880825 0 0.470214 -0.8968787 0 0.470214 -0.9125621 0 0.470214 -0.9278974 0 0.470214 -0.9429048 0 0.470214 -0.9576028 0 0.470214 -0.9720079 0 0.470214 -0.9861357 0 0.470214 -1 0 0.470214 -0 0.1939468 0.470214 -0.1939468 0.1939468 0.470214 -0.2773041 0.1939468 0.470214 -0.3384659 0.1939468 0.470214 -0.3885728 0.1939468 0.470214 -0.4317928 0.1939468 0.470214 -0.470214 0.1939468 0.470214 -0.5050551 0.1939468 0.470214 -0.5370987 0.1939468 0.470214 -0.5668815 0.1939468 0.470214 -0.5947903 0.1939468 0.470214 -0.6211144 0.1939468 0.470214 -0.6460766 0.1939468 0.470214 -0.6698526 0.1939468 0.470214 -0.6925839 0.1939468 0.470214 -0.7143866 0.1939468 0.470214 -0.7353569 0.1939468 0.470214 -0.7555758 0.1939468 0.470214 -0.7751122 0.1939468 0.470214 -0.7940252 0.1939468 0.470214 -0.8123661 0.1939468 0.470214 -0.8301795 0.1939468 0.470214 -0.8475045 0.1939468 0.470214 -0.8643761 0.1939468 0.470214 -0.880825 0.1939468 0.470214 -0.8968787 0.1939468 0.470214 -0.9125621 0.1939468 0.470214 -0.9278974 0.1939468 0.470214 -0.9429048 0.1939468 0.470214 -0.9576028 0.1939468 0.470214 -0.9720079 0.1939468 0.470214 -0.9861357 0.1939468 0.470214 -1 0.1939468 0.470214 -0 0.2773041 0.470214 -0.1939468 0.2773041 0.470214 -0.2773041 0.2773041 0.470214 -0.3384659 0.2773041 0.470214 -0.3885728 0.2773041 0.470214 -0.4317928 0.2773041 0.470214 -0.470214 0.2773041 0.470214 -0.5050551 0.2773041 0.470214 -0.5370987 0.2773041 0.470214 -0.5668815 0.2773041 0.470214 -0.5947903 0.2773041 0.470214 -0.6211144 0.2773041 0.470214 -0.6460766 0.2773041 0.470214 -0.6698526 0.2773041 0.470214 -0.6925839 0.2773041 0.470214 -0.7143866 0.2773041 0.470214 -0.7353569 0.2773041 0.470214 -0.7555758 0.2773041 0.470214 -0.7751122 0.2773041 0.470214 -0.7940252 0.2773041 0.470214 -0.8123661 0.2773041 0.470214 -0.8301795 0.2773041 0.470214 -0.8475045 0.2773041 0.470214 -0.8643761 0.2773041 0.470214 -0.880825 0.2773041 0.470214 -0.8968787 0.2773041 0.470214 -0.9125621 0.2773041 0.470214 -0.9278974 0.2773041 0.470214 -0.9429048 0.2773041 0.470214 -0.9576028 0.2773041 0.470214 -0.9720079 0.2773041 0.470214 -0.9861357 0.2773041 0.470214 -1 0.2773041 0.470214 -0 0.3384659 0.470214 -0.1939468 0.3384659 0.470214 -0.2773041 0.3384659 0.470214 -0.3384659 0.3384659 0.470214 -0.3885728 0.3384659 0.470214 -0.4317928 0.3384659 0.470214 -0.470214 0.3384659 0.470214 -0.5050551 0.3384659 0.470214 -0.5370987 0.3384659 0.470214 -0.5668815 0.3384659 0.470214 -0.5947903 0.3384659 0.470214 -0.6211144 0.3384659 0.470214 -0.6460766 0.3384659 0.470214 -0.6698526 0.3384659 0.470214 -0.6925839 0.3384659 0.470214 -0.7143866 0.3384659 0.470214 -0.7353569 0.3384659 0.470214 -0.7555758 0.3384659 0.470214 -0.7751122 0.3384659 0.470214 -0.7940252 0.3384659 0.470214 -0.8123661 0.3384659 0.470214 -0.8301795 0.3384659 0.470214 -0.8475045 0.3384659 0.470214 -0.8643761 0.3384659 0.470214 -0.880825 0.3384659 0.470214 -0.8968787 0.3384659 0.470214 -0.9125621 0.3384659 0.470214 -0.9278974 0.3384659 0.470214 -0.9429048 0.3384659 0.470214 -0.9576028 0.3384659 0.470214 -0.9720079 0.3384659 0.470214 -0.9861357 0.3384659 0.470214 -1 0.3384659 0.470214 -0 0.3885728 0.470214 -0.1939468 0.3885728 0.470214 -0.2773041 0.3885728 0.470214 -0.3384659 0.3885728 0.470214 -0.3885728 0.3885728 0.470214 -0.4317928 0.3885728 0.470214 -0.470214 0.3885728 0.470214 -0.5050551 0.3885728 0.470214 -0.5370987 0.3885728 0.470214 -0.5668815 0.3885728 0.470214 -0.5947903 0.3885728 0.470214 -0.6211144 0.3885728 0.470214 -0.6460766 0.3885728 0.470214 -0.6698526 0.3885728 0.470214 -0.6925839 0.3885728 0.470214 -0.7143866 0.3885728 0.470214 -0.7353569 0.3885728 0.470214 -0.7555758 0.3885728 0.470214 -0.7751122 0.3885728 0.470214 -0.7940252 0.3885728 0.470214 -0.8123661 0.3885728 0.470214 -0.8301795 0.3885728 0.470214 -0.8475045 0.3885728 0.470214 -0.8643761 0.3885728 0.470214 -0.880825 0.3885728 0.470214 -0.8968787 0.3885728 0.470214 -0.9125621 0.3885728 0.470214 -0.9278974 0.3885728 0.470214 -0.9429048 0.3885728 0.470214 -0.9576028 0.3885728 0.470214 -0.9720079 0.3885728 0.470214 -0.9861357 0.3885728 0.470214 -1 0.3885728 0.470214 -0 0.4317928 0.470214 -0.1939468 0.4317928 0.470214 -0.2773041 0.4317928 0.470214 -0.3384659 0.4317928 0.470214 -0.3885728 0.4317928 0.470214 -0.4317928 0.4317928 0.470214 -0.470214 0.4317928 0.470214 -0.5050551 0.4317928 0.470214 -0.5370987 0.4317928 0.470214 -0.5668815 0.4317928 0.470214 -0.5947903 0.4317928 0.470214 -0.6211144 0.4317928 0.470214 -0.6460766 0.4317928 0.470214 -0.6698526 0.4317928 0.470214 -0.6925839 0.4317928 0.470214 -0.7143866 0.4317928 0.470214 -0.7353569 0.4317928 0.470214 -0.7555758 0.4317928 0.470214 -0.7751122 0.4317928 0.470214 -0.7940252 0.4317928 0.470214 -0.8123661 0.4317928 0.470214 -0.8301795 0.4317928 0.470214 -0.8475045 0.4317928 0.470214 -0.8643761 0.4317928 0.470214 -0.880825 0.4317928 0.470214 -0.8968787 0.4317928 0.470214 -0.9125621 0.4317928 0.470214 -0.9278974 0.4317928 0.470214 -0.9429048 0.4317928 0.470214 -0.9576028 0.4317928 0.470214 -0.9720079 0.4317928 0.470214 -0.9861357 0.4317928 0.470214 -1 0.4317928 0.470214 -0 0.470214 0.470214 -0.1939468 0.470214 0.470214 -0.2773041 0.470214 0.470214 -0.3384659 0.470214 0.470214 -0.3885728 0.470214 0.470214 -0.4317928 0.470214 0.470214 -0.470214 0.470214 0.470214 -0.5050551 0.470214 0.470214 -0.5370987 0.470214 0.470214 -0.5668815 0.470214 0.470214 -0.5947903 0.470214 0.470214 -0.6211144 0.470214 0.470214 -0.6460766 0.470214 0.470214 -0.6698526 0.470214 0.470214 -0.6925839 0.470214 0.470214 -0.7143866 0.470214 0.470214 -0.7353569 0.470214 0.470214 -0.7555758 0.470214 0.470214 -0.7751122 0.470214 0.470214 -0.7940252 0.470214 0.470214 -0.8123661 0.470214 0.470214 -0.8301795 0.470214 0.470214 -0.8475045 0.470214 0.470214 -0.8643761 0.470214 0.470214 -0.880825 0.470214 0.470214 -0.8968787 0.470214 0.470214 -0.9125621 0.470214 0.470214 -0.9278974 0.470214 0.470214 -0.9429048 0.470214 0.470214 -0.9576028 0.470214 0.470214 -0.9720079 0.470214 0.470214 -0.9861357 0.470214 0.470214 -1 0.470214 0.470214 -0 0.5050551 0.470214 -0.1939468 0.5050551 0.470214 -0.2773041 0.5050551 0.470214 -0.3384659 0.5050551 0.470214 -0.3885728 0.5050551 0.470214 -0.4317928 0.5050551 0.470214 -0.470214 0.5050551 0.470214 -0.5050551 0.5050551 0.470214 -0.5370987 0.5050551 0.470214 -0.5668815 0.5050551 0.470214 -0.5947903 0.5050551 0.470214 -0.6211144 0.5050551 0.470214 -0.6460766 0.5050551 0.470214 -0.6698526 0.5050551 0.470214 -0.6925839 0.5050551 0.470214 -0.7143866 0.5050551 0.470214 -0.7353569 0.5050551 0.470214 -0.7555758 0.5050551 0.470214 -0.7751122 0.5050551 0.470214 -0.7940252 0.5050551 0.470214 -0.8123661 0.5050551 0.470214 -0.8301795 0.5050551 0.470214 -0.8475045 0.5050551 0.470214 -0.8643761 0.5050551 0.470214 -0.880825 0.5050551 0.470214 -0.8968787 0.5050551 0.470214 -0.9125621 0.5050551 0.470214 -0.9278974 0.5050551 0.470214 -0.9429048 0.5050551 0.470214 -0.9576028 0.5050551 0.470214 -0.9720079 0.5050551 0.470214 -0.9861357 0.5050551 0.470214 -1 0.5050551 0.470214 -0 0.5370987 0.470214 -0.1939468 0.5370987 0.470214 -0.2773041 0.5370987 0.470214 -0.3384659 0.5370987 0.470214 -0.3885728 0.5370987 0.470214 -0.4317928 0.5370987 0.470214 -0.470214 0.5370987 0.470214 -0.5050551 0.5370987 0.470214 -0.5370987 0.5370987 0.470214 -0.5668815 0.5370987 0.470214 -0.5947903 0.5370987 0.470214 -0.6211144 0.5370987 0.470214 -0.6460766 0.5370987 0.470214 -0.6698526 0.5370987 0.470214 -0.6925839 0.5370987 0.470214 -0.7143866 0.5370987 0.470214 -0.7353569 0.5370987 0.470214 -0.7555758 0.5370987 0.470214 -0.7751122 0.5370987 0.470214 -0.7940252 0.5370987 0.470214 -0.8123661 0.5370987 0.470214 -0.8301795 0.5370987 0.470214 -0.8475045 0.5370987 0.470214 -0.8643761 0.5370987 0.470214 -0.880825 0.5370987 0.470214 -0.8968787 0.5370987 0.470214 -0.9125621 0.5370987 0.470214 -0.9278974 0.5370987 0.470214 -0.9429048 0.5370987 0.470214 -0.9576028 0.5370987 0.470214 -0.9720079 0.5370987 0.470214 -0.9861357 0.5370987 0.470214 -1 0.5370987 0.470214 -0 0.5668815 0.470214 -0.1939468 0.5668815 0.470214 -0.2773041 0.5668815 0.470214 -0.3384659 0.5668815 0.470214 -0.3885728 0.5668815 0.470214 -0.4317928 0.5668815 0.470214 -0.470214 0.5668815 0.470214 -0.5050551 0.5668815 0.470214 -0.5370987 0.5668815 0.470214 -0.5668815 0.5668815 0.470214 -0.5947903 0.5668815 0.470214 -0.6211144 0.5668815 0.470214 -0.6460766 0.5668815 0.470214 -0.6698526 0.5668815 0.470214 -0.6925839 0.5668815 0.470214 -0.7143866 0.5668815 0.470214 -0.7353569 0.5668815 0.470214 -0.7555758 0.5668815 0.470214 -0.7751122 0.5668815 0.470214 -0.7940252 0.5668815 0.470214 -0.8123661 0.5668815 0.470214 -0.8301795 0.5668815 0.470214 -0.8475045 0.5668815 0.470214 -0.8643761 0.5668815 0.470214 -0.880825 0.5668815 0.470214 -0.8968787 0.5668815 0.470214 -0.9125621 0.5668815 0.470214 -0.9278974 0.5668815 0.470214 -0.9429048 0.5668815 0.470214 -0.9576028 0.5668815 0.470214 -0.9720079 0.5668815 0.470214 -0.9861357 0.5668815 0.470214 -1 0.5668815 0.470214 -0 0.5947903 0.470214 -0.1939468 0.5947903 0.470214 -0.2773041 0.5947903 0.470214 -0.3384659 0.5947903 0.470214 -0.3885728 0.5947903 0.470214 -0.4317928 0.5947903 0.470214 -0.470214 0.5947903 0.470214 -0.5050551 0.5947903 0.470214 -0.5370987 0.5947903 0.470214 -0.5668815 0.5947903 0.470214 -0.5947903 0.5947903 0.470214 -0.6211144 0.5947903 0.470214 -0.6460766 0.5947903 0.470214 -0.6698526 0.5947903 0.470214 -0.6925839 0.5947903 0.470214 -0.7143866 0.5947903 0.470214 -0.7353569 0.5947903 0.470214 -0.7555758 0.5947903 0.470214 -0.7751122 0.5947903 0.470214 -0.7940252 0.5947903 0.470214 -0.8123661 0.5947903 0.470214 -0.8301795 0.5947903 0.470214 -0.8475045 0.5947903 0.470214 -0.8643761 0.5947903 0.470214 -0.880825 0.5947903 0.470214 -0.8968787 0.5947903 0.470214 -0.9125621 0.5947903 0.470214 -0.9278974 0.5947903 0.470214 -0.9429048 0.5947903 0.470214 -0.9576028 0.5947903 0.470214 -0.9720079 0.5947903 0.470214 -0.9861357 0.5947903 0.470214 -1 0.5947903 0.470214 -0 0.6211144 0.470214 -0.1939468 0.6211144 0.470214 -0.2773041 0.6211144 0.470214 -0.3384659 0.6211144 0.470214 -0.3885728 0.6211144 0.470214 -0.4317928 0.6211144 0.470214 -0.470214 0.6211144 0.470214 -0.5050551 0.6211144 0.470214 -0.5370987 0.6211144 0.470214 -0.5668815 0.6211144 0.470214 -0.5947903 0.6211144 0.470214 -0.6211144 0.6211144 0.470214 -0.6460766 0.6211144 0.470214 -0.6698526 0.6211144 0.470214 -0.6925839 0.6211144 0.470214 -0.7143866 0.6211144 0.470214 -0.7353569 0.6211144 0.470214 -0.7555758 0.6211144 0.470214 -0.7751122 0.6211144 0.470214 -0.7940252 0.6211144 0.470214 -0.8123661 0.6211144 0.470214 -0.8301795 0.6211144 0.470214 -0.8475045 0.6211144 0.470214 -0.8643761 0.6211144 0.470214 -0.880825 0.6211144 0.470214 -0.8968787 0.6211144 0.470214 -0.9125621 0.6211144 0.470214 -0.9278974 0.6211144 0.470214 -0.9429048 0.6211144 0.470214 -0.9576028 0.6211144 0.470214 -0.9720079 0.6211144 0.470214 -0.9861357 0.6211144 0.470214 -1 0.6211144 0.470214 -0 0.6460766 0.470214 -0.1939468 0.6460766 0.470214 -0.2773041 0.6460766 0.470214 -0.3384659 0.6460766 0.470214 -0.3885728 0.6460766 0.470214 -0.4317928 0.6460766 0.470214 -0.470214 0.6460766 0.470214 -0.5050551 0.6460766 0.470214 -0.5370987 0.6460766 0.470214 -0.5668815 0.6460766 0.470214 -0.5947903 0.6460766 0.470214 -0.6211144 0.6460766 0.470214 -0.6460766 0.6460766 0.470214 -0.6698526 0.6460766 0.470214 -0.6925839 0.6460766 0.470214 -0.7143866 0.6460766 0.470214 -0.7353569 0.6460766 0.470214 -0.7555758 0.6460766 0.470214 -0.7751122 0.6460766 0.470214 -0.7940252 0.6460766 0.470214 -0.8123661 0.6460766 0.470214 -0.8301795 0.6460766 0.470214 -0.8475045 0.6460766 0.470214 -0.8643761 0.6460766 0.470214 -0.880825 0.6460766 0.470214 -0.8968787 0.6460766 0.470214 -0.9125621 0.6460766 0.470214 -0.9278974 0.6460766 0.470214 -0.9429048 0.6460766 0.470214 -0.9576028 0.6460766 0.470214 -0.9720079 0.6460766 0.470214 -0.9861357 0.6460766 0.470214 -1 0.6460766 0.470214 -0 0.6698526 0.470214 -0.1939468 0.6698526 0.470214 -0.2773041 0.6698526 0.470214 -0.3384659 0.6698526 0.470214 -0.3885728 0.6698526 0.470214 -0.4317928 0.6698526 0.470214 -0.470214 0.6698526 0.470214 -0.5050551 0.6698526 0.470214 -0.5370987 0.6698526 0.470214 -0.5668815 0.6698526 0.470214 -0.5947903 0.6698526 0.470214 -0.6211144 0.6698526 0.470214 -0.6460766 0.6698526 0.470214 -0.6698526 0.6698526 0.470214 -0.6925839 0.6698526 0.470214 -0.7143866 0.6698526 0.470214 -0.7353569 0.6698526 0.470214 -0.7555758 0.6698526 0.470214 -0.7751122 0.6698526 0.470214 -0.7940252 0.6698526 0.470214 -0.8123661 0.6698526 0.470214 -0.8301795 0.6698526 0.470214 -0.8475045 0.6698526 0.470214 -0.8643761 0.6698526 0.470214 -0.880825 0.6698526 0.470214 -0.8968787 0.6698526 0.470214 -0.9125621 0.6698526 0.470214 -0.9278974 0.6698526 0.470214 -0.9429048 0.6698526 0.470214 -0.9576028 0.6698526 0.470214 -0.9720079 0.6698526 0.470214 -0.9861357 0.6698526 0.470214 -1 0.6698526 0.470214 -0 0.6925839 0.470214 -0.1939468 0.6925839 0.470214 -0.2773041 0.6925839 0.470214 -0.3384659 0.6925839 0.470214 -0.3885728 0.6925839 0.470214 -0.4317928 0.6925839 0.470214 -0.470214 0.6925839 0.470214 -0.5050551 0.6925839 0.470214 -0.5370987 0.6925839 0.470214 -0.5668815 0.6925839 0.470214 -0.5947903 0.6925839 0.470214 -0.6211144 0.6925839 0.470214 -0.6460766 0.6925839 0.470214 -0.6698526 0.6925839 0.470214 -0.6925839 0.6925839 0.470214 -0.7143866 0.6925839 0.470214 -0.7353569 0.6925839 0.470214 -0.7555758 0.6925839 0.470214 -0.7751122 0.6925839 0.470214 -0.7940252 0.6925839 0.470214 -0.8123661 0.6925839 0.470214 -0.8301795 0.6925839 0.470214 -0.8475045 0.6925839 0.470214 -0.8643761 0.6925839 0.470214 -0.880825 0.6925839 0.470214 -0.8968787 0.6925839 0.470214 -0.9125621 0.6925839 0.470214 -0.9278974 0.6925839 0.470214 -0.9429048 0.6925839 0.470214 -0.9576028 0.6925839 0.470214 -0.9720079 0.6925839 0.470214 -0.9861357 0.6925839 0.470214 -1 0.6925839 0.470214 -0 0.7143866 0.470214 -0.1939468 0.7143866 0.470214 -0.2773041 0.7143866 0.470214 -0.3384659 0.7143866 0.470214 -0.3885728 0.7143866 0.470214 -0.4317928 0.7143866 0.470214 -0.470214 0.7143866 0.470214 -0.5050551 0.7143866 0.470214 -0.5370987 0.7143866 0.470214 -0.5668815 0.7143866 0.470214 -0.5947903 0.7143866 0.470214 -0.6211144 0.7143866 0.470214 -0.6460766 0.7143866 0.470214 -0.6698526 0.7143866 0.470214 -0.6925839 0.7143866 0.470214 -0.7143866 0.7143866 0.470214 -0.7353569 0.7143866 0.470214 -0.7555758 0.7143866 0.470214 -0.7751122 0.7143866 0.470214 -0.7940252 0.7143866 0.470214 -0.8123661 0.7143866 0.470214 -0.8301795 0.7143866 0.470214 -0.8475045 0.7143866 0.470214 -0.8643761 0.7143866 0.470214 -0.880825 0.7143866 0.470214 -0.8968787 0.7143866 0.470214 -0.9125621 0.7143866 0.470214 -0.9278974 0.7143866 0.470214 -0.9429048 0.7143866 0.470214 -0.9576028 0.7143866 0.470214 -0.9720079 0.7143866 0.470214 -0.9861357 0.7143866 0.470214 -1 0.7143866 0.470214 -0 0.7353569 0.470214 -0.1939468 0.7353569 0.470214 -0.2773041 0.7353569 0.470214 -0.3384659 0.7353569 0.470214 -0.3885728 0.7353569 0.470214 -0.4317928 0.7353569 0.470214 -0.470214 0.7353569 0.470214 -0.5050551 0.7353569 0.470214 -0.5370987 0.7353569 0.470214 -0.5668815 0.7353569 0.470214 -0.5947903 0.7353569 0.470214 -0.6211144 0.7353569 0.470214 -0.6460766 0.7353569 0.470214 -0.6698526 0.7353569 0.470214 -0.6925839 0.7353569 0.470214 -0.7143866 0.7353569 0.470214 -0.7353569 0.7353569 0.470214 -0.7555758 0.7353569 0.470214 -0.7751122 0.7353569 0.470214 -0.7940252 0.7353569 0.470214 -0.8123661 0.7353569 0.470214 -0.8301795 0.7353569 0.470214 -0.8475045 0.7353569 0.470214 -0.8643761 0.7353569 0.470214 -0.880825 0.7353569 0.470214 -0.8968787 0.7353569 0.470214 -0.9125621 0.7353569 0.470214 -0.9278974 0.7353569 0.470214 -0.9429048 0.7353569 0.470214 -0.9576028 0.7353569 0.470214 -0.9720079 0.7353569 0.470214 -0.9861357 0.7353569 0.470214 -1 0.7353569 0.470214 -0 0.7555758 0.470214 -0.1939468 0.7555758 0.470214 -0.2773041 0.7555758 0.470214 -0.3384659 0.7555758 0.470214 -0.3885728 0.7555758 0.470214 -0.4317928 0.7555758 0.470214 -0.470214 0.7555758 0.470214 -0.5050551 0.7555758 0.470214 -0.5370987 0.7555758 0.470214 -0.5668815 0.7555758 0.470214 -0.5947903 0.7555758 0.470214 -0.6211144 0.7555758 0.470214 -0.6460766 0.7555758 0.470214 -0.6698526 0.7555758 0.470214 -0.6925839 0.7555758 0.470214 -0.7143866 0.7555758 0.470214 -0.7353569 0.7555758 0.470214 -0.7555758 0.7555758 0.470214 -0.7751122 0.7555758 0.470214 -0.7940252 0.7555758 0.470214 -0.8123661 0.7555758 0.470214 -0.8301795 0.7555758 0.470214 -0.8475045 0.7555758 0.470214 -0.8643761 0.7555758 0.470214 -0.880825 0.7555758 0.470214 -0.8968787 0.7555758 0.470214 -0.9125621 0.7555758 0.470214 -0.9278974 0.7555758 0.470214 -0.9429048 0.7555758 0.470214 -0.9576028 0.7555758 0.470214 -0.9720079 0.7555758 0.470214 -0.9861357 0.7555758 0.470214 -1 0.7555758 0.470214 -0 0.7751122 0.470214 -0.1939468 0.7751122 0.470214 -0.2773041 0.7751122 0.470214 -0.3384659 0.7751122 0.470214 -0.3885728 0.7751122 0.470214 -0.4317928 0.7751122 0.470214 -0.470214 0.7751122 0.470214 -0.5050551 0.7751122 0.470214 -0.5370987 0.7751122 0.470214 -0.5668815 0.7751122 0.470214 -0.5947903 0.7751122 0.470214 -0.6211144 0.7751122 0.470214 -0.6460766 0.7751122 0.470214 -0.6698526 0.7751122 0.470214 -0.6925839 0.7751122 0.470214 -0.7143866 0.7751122 0.470214 -0.7353569 0.7751122 0.470214 -0.7555758 0.7751122 0.470214 -0.7751122 0.7751122 0.470214 -0.7940252 0.7751122 0.470214 -0.8123661 0.7751122 0.470214 -0.8301795 0.7751122 0.470214 -0.8475045 0.7751122 0.470214 -0.8643761 0.7751122 0.470214 -0.880825 0.7751122 0.470214 -0.8968787 0.7751122 0.470214 -0.9125621 0.7751122 0.470214 -0.9278974 0.7751122 0.470214 -0.9429048 0.7751122 0.470214 -0.9576028 0.7751122 0.470214 -0.9720079 0.7751122 0.470214 -0.9861357 0.7751122 0.470214 -1 0.7751122 0.470214 -0 0.7940252 0.470214 -0.1939468 0.7940252 0.470214 -0.2773041 0.7940252 0.470214 -0.3384659 0.7940252 0.470214 -0.3885728 0.7940252 0.470214 -0.4317928 0.7940252 0.470214 -0.470214 0.7940252 0.470214 -0.5050551 0.7940252 0.470214 -0.5370987 0.7940252 0.470214 -0.5668815 0.7940252 0.470214 -0.5947903 0.7940252 0.470214 -0.6211144 0.7940252 0.470214 -0.6460766 0.7940252 0.470214 -0.6698526 0.7940252 0.470214 -0.6925839 0.7940252 0.470214 -0.7143866 0.7940252 0.470214 -0.7353569 0.7940252 0.470214 -0.7555758 0.7940252 0.470214 -0.7751122 0.7940252 0.470214 -0.7940252 0.7940252 0.470214 -0.8123661 0.7940252 0.470214 -0.8301795 0.7940252 0.470214 -0.8475045 0.7940252 0.470214 -0.8643761 0.7940252 0.470214 -0.880825 0.7940252 0.470214 -0.8968787 0.7940252 0.470214 -0.9125621 0.7940252 0.470214 -0.9278974 0.7940252 0.470214 -0.9429048 0.7940252 0.470214 -0.9576028 0.7940252 0.470214 -0.9720079 0.7940252 0.470214 -0.9861357 0.7940252 0.470214 -1 0.7940252 0.470214 -0 0.8123661 0.470214 -0.1939468 0.8123661 0.470214 -0.2773041 0.8123661 0.470214 -0.3384659 0.8123661 0.470214 -0.3885728 0.8123661 0.470214 -0.4317928 0.8123661 0.470214 -0.470214 0.8123661 0.470214 -0.5050551 0.8123661 0.470214 -0.5370987 0.8123661 0.470214 -0.5668815 0.8123661 0.470214 -0.5947903 0.8123661 0.470214 -0.6211144 0.8123661 0.470214 -0.6460766 0.8123661 0.470214 -0.6698526 0.8123661 0.470214 -0.6925839 0.8123661 0.470214 -0.7143866 0.8123661 0.470214 -0.7353569 0.8123661 0.470214 -0.7555758 0.8123661 0.470214 -0.7751122 0.8123661 0.470214 -0.7940252 0.8123661 0.470214 -0.8123661 0.8123661 0.470214 -0.8301795 0.8123661 0.470214 -0.8475045 0.8123661 0.470214 -0.8643761 0.8123661 0.470214 -0.880825 0.8123661 0.470214 -0.8968787 0.8123661 0.470214 -0.9125621 0.8123661 0.470214 -0.9278974 0.8123661 0.470214 -0.9429048 0.8123661 0.470214 -0.9576028 0.8123661 0.470214 -0.9720079 0.8123661 0.470214 -0.9861357 0.8123661 0.470214 -1 0.8123661 0.470214 -0 0.8301795 0.470214 -0.1939468 0.8301795 0.470214 -0.2773041 0.8301795 0.470214 -0.3384659 0.8301795 0.470214 -0.3885728 0.8301795 0.470214 -0.4317928 0.8301795 0.470214 -0.470214 0.8301795 0.470214 -0.5050551 0.8301795 0.470214 -0.5370987 0.8301795 0.470214 -0.5668815 0.8301795 0.470214 -0.5947903 0.8301795 0.470214 -0.6211144 0.8301795 0.470214 -0.6460766 0.8301795 0.470214 -0.6698526 0.8301795 0.470214 -0.6925839 0.8301795 0.470214 -0.7143866 0.8301795 0.470214 -0.7353569 0.8301795 0.470214 -0.7555758 0.8301795 0.470214 -0.7751122 0.8301795 0.470214 -0.7940252 0.8301795 0.470214 -0.8123661 0.8301795 0.470214 -0.8301795 0.8301795 0.470214 -0.8475045 0.8301795 0.470214 -0.8643761 0.8301795 0.470214 -0.880825 0.8301795 0.470214 -0.8968787 0.8301795 0.470214 -0.9125621 0.8301795 0.470214 -0.9278974 0.8301795 0.470214 -0.9429048 0.8301795 0.470214 -0.9576028 0.8301795 0.470214 -0.9720079 0.8301795 0.470214 -0.9861357 0.8301795 0.470214 -1 0.8301795 0.470214 -0 0.8475045 0.470214 -0.1939468 0.8475045 0.470214 -0.2773041 0.8475045 0.470214 -0.3384659 0.8475045 0.470214 -0.3885728 0.8475045 0.470214 -0.4317928 0.8475045 0.470214 -0.470214 0.8475045 0.470214 -0.5050551 0.8475045 0.470214 -0.5370987 0.8475045 0.470214 -0.5668815 0.8475045 0.470214 -0.5947903 0.8475045 0.470214 -0.6211144 0.8475045 0.470214 -0.6460766 0.8475045 0.470214 -0.6698526 0.8475045 0.470214 -0.6925839 0.8475045 0.470214 -0.7143866 0.8475045 0.470214 -0.7353569 0.8475045 0.470214 -0.7555758 0.8475045 0.470214 -0.7751122 0.8475045 0.470214 -0.7940252 0.8475045 0.470214 -0.8123661 0.8475045 0.470214 -0.8301795 0.8475045 0.470214 -0.8475045 0.8475045 0.470214 -0.8643761 0.8475045 0.470214 -0.880825 0.8475045 0.470214 -0.8968787 0.8475045 0.470214 -0.9125621 0.8475045 0.470214 -0.9278974 0.8475045 0.470214 -0.9429048 0.8475045 0.470214 -0.9576028 0.8475045 0.470214 -0.9720079 0.8475045 0.470214 -0.9861357 0.8475045 0.470214 -1 0.8475045 0.470214 -0 0.8643761 0.470214 -0.1939468 0.8643761 0.470214 -0.2773041 0.8643761 0.470214 -0.3384659 0.8643761 0.470214 -0.3885728 0.8643761 0.470214 -0.4317928 0.8643761 0.470214 -0.470214 0.8643761 0.470214 -0.5050551 0.8643761 0.470214 -0.5370987 0.8643761 0.470214 -0.5668815 0.8643761 0.470214 -0.5947903 0.8643761 0.470214 -0.6211144 0.8643761 0.470214 -0.6460766 0.8643761 0.470214 -0.6698526 0.8643761 0.470214 -0.6925839 0.8643761 0.470214 -0.7143866 0.8643761 0.470214 -0.7353569 0.8643761 0.470214 -0.7555758 0.8643761 0.470214 -0.7751122 0.8643761 0.470214 -0.7940252 0.8643761 0.470214 -0.8123661 0.8643761 0.470214 -0.8301795 0.8643761 0.470214 -0.8475045 0.8643761 0.470214 -0.8643761 0.8643761 0.470214 -0.880825 0.8643761 0.470214 -0.8968787 0.8643761 0.470214 -0.9125621 0.8643761 0.470214 -0.9278974 0.8643761 0.470214 -0.9429048 0.8643761 0.470214 -0.9576028 0.8643761 0.470214 -0.9720079 0.8643761 0.470214 -0.9861357 0.8643761 0.470214 -1 0.8643761 0.470214 -0 0.880825 0.470214 -0.1939468 0.880825 0.470214 -0.2773041 0.880825 0.470214 -0.3384659 0.880825 0.470214 -0.3885728 0.880825 0.470214 -0.4317928 0.880825 0.470214 -0.470214 0.880825 0.470214 -0.5050551 0.880825 0.470214 -0.5370987 0.880825 0.470214 -0.5668815 0.880825 0.470214 -0.5947903 0.880825 0.470214 -0.6211144 0.880825 0.470214 -0.6460766 0.880825 0.470214 -0.6698526 0.880825 0.470214 -0.6925839 0.880825 0.470214 -0.7143866 0.880825 0.470214 -0.7353569 0.880825 0.470214 -0.7555758 0.880825 0.470214 -0.7751122 0.880825 0.470214 -0.7940252 0.880825 0.470214 -0.8123661 0.880825 0.470214 -0.8301795 0.880825 0.470214 -0.8475045 0.880825 0.470214 -0.8643761 0.880825 0.470214 -0.880825 0.880825 0.470214 -0.8968787 0.880825 0.470214 -0.9125621 0.880825 0.470214 -0.9278974 0.880825 0.470214 -0.9429048 0.880825 0.470214 -0.9576028 0.880825 0.470214 -0.9720079 0.880825 0.470214 -0.9861357 0.880825 0.470214 -1 0.880825 0.470214 -0 0.8968787 0.470214 -0.1939468 0.8968787 0.470214 -0.2773041 0.8968787 0.470214 -0.3384659 0.8968787 0.470214 -0.3885728 0.8968787 0.470214 -0.4317928 0.8968787 0.470214 -0.470214 0.8968787 0.470214 -0.5050551 0.8968787 0.470214 -0.5370987 0.8968787 0.470214 -0.5668815 0.8968787 0.470214 -0.5947903 0.8968787 0.470214 -0.6211144 0.8968787 0.470214 -0.6460766 0.8968787 0.470214 -0.6698526 0.8968787 0.470214 -0.6925839 0.8968787 0.470214 -0.7143866 0.8968787 0.470214 -0.7353569 0.8968787 0.470214 -0.7555758 0.8968787 0.470214 -0.7751122 0.8968787 0.470214 -0.7940252 0.8968787 0.470214 -0.8123661 0.8968787 0.470214 -0.8301795 0.8968787 0.470214 -0.8475045 0.8968787 0.470214 -0.8643761 0.8968787 0.470214 -0.880825 0.8968787 0.470214 -0.8968787 0.8968787 0.470214 -0.9125621 0.8968787 0.470214 -0.9278974 0.8968787 0.470214 -0.9429048 0.8968787 0.470214 -0.9576028 0.8968787 0.470214 -0.9720079 0.8968787 0.470214 -0.9861357 0.8968787 0.470214 -1 0.8968787 0.470214 -0 0.9125621 0.470214 -0.1939468 0.9125621 0.470214 -0.2773041 0.9125621 0.470214 -0.3384659 0.9125621 0.470214 -0.3885728 0.9125621 0.470214 -0.4317928 0.9125621 0.470214 -0.470214 0.9125621 0.470214 -0.5050551 0.9125621 0.470214 -0.5370987 0.9125621 0.470214 -0.5668815 0.9125621 0.470214 -0.5947903 0.9125621 0.470214 -0.6211144 0.9125621 0.470214 -0.6460766 0.9125621 0.470214 -0.6698526 0.9125621 0.470214 -0.6925839 0.9125621 0.470214 -0.7143866 0.9125621 0.470214 -0.7353569 0.9125621 0.470214 -0.7555758 0.9125621 0.470214 -0.7751122 0.9125621 0.470214 -0.7940252 0.9125621 0.470214 -0.8123661 0.9125621 0.470214 -0.8301795 0.9125621 0.470214 -0.8475045 0.9125621 0.470214 -0.8643761 0.9125621 0.470214 -0.880825 0.9125621 0.470214 -0.8968787 0.9125621 0.470214 -0.9125621 0.9125621 0.470214 -0.9278974 0.9125621 0.470214 -0.9429048 0.9125621 0.470214 -0.9576028 0.9125621 0.470214 -0.9720079 0.9125621 0.470214 -0.9861357 0.9125621 0.470214 -1 0.9125621 0.470214 -0 0.9278974 0.470214 -0.1939468 0.9278974 0.470214 -0.2773041 0.9278974 0.470214 -0.3384659 0.9278974 0.470214 -0.3885728 0.9278974 0.470214 -0.4317928 0.9278974 0.470214 -0.470214 0.9278974 0.470214 -0.5050551 0.9278974 0.470214 -0.5370987 0.9278974 0.470214 -0.5668815 0.9278974 0.470214 -0.5947903 0.9278974 0.470214 -0.6211144 0.9278974 0.470214 -0.6460766 0.9278974 0.470214 -0.6698526 0.9278974 0.470214 -0.6925839 0.9278974 0.470214 -0.7143866 0.9278974 0.470214 -0.7353569 0.9278974 0.470214 -0.7555758 0.9278974 0.470214 -0.7751122 0.9278974 0.470214 -0.7940252 0.9278974 0.470214 -0.8123661 0.9278974 0.470214 -0.8301795 0.9278974 0.470214 -0.8475045 0.9278974 0.470214 -0.8643761 0.9278974 0.470214 -0.880825 0.9278974 0.470214 -0.8968787 0.9278974 0.470214 -0.9125621 0.9278974 0.470214 -0.9278974 0.9278974 0.470214 -0.9429048 0.9278974 0.470214 -0.9576028 0.9278974 0.470214 -0.9720079 0.9278974 0.470214 -0.9861357 0.9278974 0.470214 -1 0.9278974 0.470214 -0 0.9429048 0.470214 -0.1939468 0.9429048 0.470214 -0.2773041 0.9429048 0.470214 -0.3384659 0.9429048 0.470214 -0.3885728 0.9429048 0.470214 -0.4317928 0.9429048 0.470214 -0.470214 0.9429048 0.470214 -0.5050551 0.9429048 0.470214 -0.5370987 0.9429048 0.470214 -0.5668815 0.9429048 0.470214 -0.5947903 0.9429048 0.470214 -0.6211144 0.9429048 0.470214 -0.6460766 0.9429048 0.470214 -0.6698526 0.9429048 0.470214 -0.6925839 0.9429048 0.470214 -0.7143866 0.9429048 0.470214 -0.7353569 0.9429048 0.470214 -0.7555758 0.9429048 0.470214 -0.7751122 0.9429048 0.470214 -0.7940252 0.9429048 0.470214 -0.8123661 0.9429048 0.470214 -0.8301795 0.9429048 0.470214 -0.8475045 0.9429048 0.470214 -0.8643761 0.9429048 0.470214 -0.880825 0.9429048 0.470214 -0.8968787 0.9429048 0.470214 -0.9125621 0.9429048 0.470214 -0.9278974 0.9429048 0.470214 -0.9429048 0.9429048 0.470214 -0.9576028 0.9429048 0.470214 -0.9720079 0.9429048 0.470214 -0.9861357 0.9429048 0.470214 -1 0.9429048 0.470214 -0 0.9576028 0.470214 -0.1939468 0.9576028 0.470214 -0.2773041 0.9576028 0.470214 -0.3384659 0.9576028 0.470214 -0.3885728 0.9576028 0.470214 -0.4317928 0.9576028 0.470214 -0.470214 0.9576028 0.470214 -0.5050551 0.9576028 0.470214 -0.5370987 0.9576028 0.470214 -0.5668815 0.9576028 0.470214 -0.5947903 0.9576028 0.470214 -0.6211144 0.9576028 0.470214 -0.6460766 0.9576028 0.470214 -0.6698526 0.9576028 0.470214 -0.6925839 0.9576028 0.470214 -0.7143866 0.9576028 0.470214 -0.7353569 0.9576028 0.470214 -0.7555758 0.9576028 0.470214 -0.7751122 0.9576028 0.470214 -0.7940252 0.9576028 0.470214 -0.8123661 0.9576028 0.470214 -0.8301795 0.9576028 0.470214 -0.8475045 0.9576028 0.470214 -0.8643761 0.9576028 0.470214 -0.880825 0.9576028 0.470214 -0.8968787 0.9576028 0.470214 -0.9125621 0.9576028 0.470214 -0.9278974 0.9576028 0.470214 -0.9429048 0.9576028 0.470214 -0.9576028 0.9576028 0.470214 -0.9720079 0.9576028 0.470214 -0.9861357 0.9576028 0.470214 -1 0.9576028 0.470214 -0 0.9720079 0.470214 -0.1939468 0.9720079 0.470214 -0.2773041 0.9720079 0.470214 -0.3384659 0.9720079 0.470214 -0.3885728 0.9720079 0.470214 -0.4317928 0.9720079 0.470214 -0.470214 0.9720079 0.470214 -0.5050551 0.9720079 0.470214 -0.5370987 0.9720079 0.470214 -0.5668815 0.9720079 0.470214 -0.5947903 0.9720079 0.470214 -0.6211144 0.9720079 0.470214 -0.6460766 0.9720079 0.470214 -0.6698526 0.9720079 0.470214 -0.6925839 0.9720079 0.470214 -0.7143866 0.9720079 0.470214 -0.7353569 0.9720079 0.470214 -0.7555758 0.9720079 0.470214 -0.7751122 0.9720079 0.470214 -0.7940252 0.9720079 0.470214 -0.8123661 0.9720079 0.470214 -0.8301795 0.9720079 0.470214 -0.8475045 0.9720079 0.470214 -0.8643761 0.9720079 0.470214 -0.880825 0.9720079 0.470214 -0.8968787 0.9720079 0.470214 -0.9125621 0.9720079 0.470214 -0.9278974 0.9720079 0.470214 -0.9429048 0.9720079 0.470214 -0.9576028 0.9720079 0.470214 -0.9720079 0.9720079 0.470214 -0.9861357 0.9720079 0.470214 -1 0.9720079 0.470214 -0 0.9861357 0.470214 -0.1939468 0.9861357 0.470214 -0.2773041 0.9861357 0.470214 -0.3384659 0.9861357 0.470214 -0.3885728 0.9861357 0.470214 -0.4317928 0.9861357 0.470214 -0.470214 0.9861357 0.470214 -0.5050551 0.9861357 0.470214 -0.5370987 0.9861357 0.470214 -0.5668815 0.9861357 0.470214 -0.5947903 0.9861357 0.470214 -0.6211144 0.9861357 0.470214 -0.6460766 0.9861357 0.470214 -0.6698526 0.9861357 0.470214 -0.6925839 0.9861357 0.470214 -0.7143866 0.9861357 0.470214 -0.7353569 0.9861357 0.470214 -0.7555758 0.9861357 0.470214 -0.7751122 0.9861357 0.470214 -0.7940252 0.9861357 0.470214 -0.8123661 0.9861357 0.470214 -0.8301795 0.9861357 0.470214 -0.8475045 0.9861357 0.470214 -0.8643761 0.9861357 0.470214 -0.880825 0.9861357 0.470214 -0.8968787 0.9861357 0.470214 -0.9125621 0.9861357 0.470214 -0.9278974 0.9861357 0.470214 -0.9429048 0.9861357 0.470214 -0.9576028 0.9861357 0.470214 -0.9720079 0.9861357 0.470214 -0.9861357 0.9861357 0.470214 -1 0.9861357 0.470214 -0 1 0.470214 -0.1939468 1 0.470214 -0.2773041 1 0.470214 -0.3384659 1 0.470214 -0.3885728 1 0.470214 -0.4317928 1 0.470214 -0.470214 1 0.470214 -0.5050551 1 0.470214 -0.5370987 1 0.470214 -0.5668815 1 0.470214 -0.5947903 1 0.470214 -0.6211144 1 0.470214 -0.6460766 1 0.470214 -0.6698526 1 0.470214 -0.6925839 1 0.470214 -0.7143866 1 0.470214 -0.7353569 1 0.470214 -0.7555758 1 0.470214 -0.7751122 1 0.470214 -0.7940252 1 0.470214 -0.8123661 1 0.470214 -0.8301795 1 0.470214 -0.8475045 1 0.470214 -0.8643761 1 0.470214 -0.880825 1 0.470214 -0.8968787 1 0.470214 -0.9125621 1 0.470214 -0.9278974 1 0.470214 -0.9429048 1 0.470214 -0.9576028 1 0.470214 -0.9720079 1 0.470214 -0.9861357 1 0.470214 -1 1 0.470214 -0 0 0.5050551 -0.1939468 0 0.5050551 -0.2773041 0 0.5050551 -0.3384659 0 0.5050551 -0.3885728 0 0.5050551 -0.4317928 0 0.5050551 -0.470214 0 0.5050551 -0.5050551 0 0.5050551 -0.5370987 0 0.5050551 -0.5668815 0 0.5050551 -0.5947903 0 0.5050551 -0.6211144 0 0.5050551 -0.6460766 0 0.5050551 -0.6698526 0 0.5050551 -0.6925839 0 0.5050551 -0.7143866 0 0.5050551 -0.7353569 0 0.5050551 -0.7555758 0 0.5050551 -0.7751122 0 0.5050551 -0.7940252 0 0.5050551 -0.8123661 0 0.5050551 -0.8301795 0 0.5050551 -0.8475045 0 0.5050551 -0.8643761 0 0.5050551 -0.880825 0 0.5050551 -0.8968787 0 0.5050551 -0.9125621 0 0.5050551 -0.9278974 0 0.5050551 -0.9429048 0 0.5050551 -0.9576028 0 0.5050551 -0.9720079 0 0.5050551 -0.9861357 0 0.5050551 -1 0 0.5050551 -0 0.1939468 0.5050551 -0.1939468 0.1939468 0.5050551 -0.2773041 0.1939468 0.5050551 -0.3384659 0.1939468 0.5050551 -0.3885728 0.1939468 0.5050551 -0.4317928 0.1939468 0.5050551 -0.470214 0.1939468 0.5050551 -0.5050551 0.1939468 0.5050551 -0.5370987 0.1939468 0.5050551 -0.5668815 0.1939468 0.5050551 -0.5947903 0.1939468 0.5050551 -0.6211144 0.1939468 0.5050551 -0.6460766 0.1939468 0.5050551 -0.6698526 0.1939468 0.5050551 -0.6925839 0.1939468 0.5050551 -0.7143866 0.1939468 0.5050551 -0.7353569 0.1939468 0.5050551 -0.7555758 0.1939468 0.5050551 -0.7751122 0.1939468 0.5050551 -0.7940252 0.1939468 0.5050551 -0.8123661 0.1939468 0.5050551 -0.8301795 0.1939468 0.5050551 -0.8475045 0.1939468 0.5050551 -0.8643761 0.1939468 0.5050551 -0.880825 0.1939468 0.5050551 -0.8968787 0.1939468 0.5050551 -0.9125621 0.1939468 0.5050551 -0.9278974 0.1939468 0.5050551 -0.9429048 0.1939468 0.5050551 -0.9576028 0.1939468 0.5050551 -0.9720079 0.1939468 0.5050551 -0.9861357 0.1939468 0.5050551 -1 0.1939468 0.5050551 -0 0.2773041 0.5050551 -0.1939468 0.2773041 0.5050551 -0.2773041 0.2773041 0.5050551 -0.3384659 0.2773041 0.5050551 -0.3885728 0.2773041 0.5050551 -0.4317928 0.2773041 0.5050551 -0.470214 0.2773041 0.5050551 -0.5050551 0.2773041 0.5050551 -0.5370987 0.2773041 0.5050551 -0.5668815 0.2773041 0.5050551 -0.5947903 0.2773041 0.5050551 -0.6211144 0.2773041 0.5050551 -0.6460766 0.2773041 0.5050551 -0.6698526 0.2773041 0.5050551 -0.6925839 0.2773041 0.5050551 -0.7143866 0.2773041 0.5050551 -0.7353569 0.2773041 0.5050551 -0.7555758 0.2773041 0.5050551 -0.7751122 0.2773041 0.5050551 -0.7940252 0.2773041 0.5050551 -0.8123661 0.2773041 0.5050551 -0.8301795 0.2773041 0.5050551 -0.8475045 0.2773041 0.5050551 -0.8643761 0.2773041 0.5050551 -0.880825 0.2773041 0.5050551 -0.8968787 0.2773041 0.5050551 -0.9125621 0.2773041 0.5050551 -0.9278974 0.2773041 0.5050551 -0.9429048 0.2773041 0.5050551 -0.9576028 0.2773041 0.5050551 -0.9720079 0.2773041 0.5050551 -0.9861357 0.2773041 0.5050551 -1 0.2773041 0.5050551 -0 0.3384659 0.5050551 -0.1939468 0.3384659 0.5050551 -0.2773041 0.3384659 0.5050551 -0.3384659 0.3384659 0.5050551 -0.3885728 0.3384659 0.5050551 -0.4317928 0.3384659 0.5050551 -0.470214 0.3384659 0.5050551 -0.5050551 0.3384659 0.5050551 -0.5370987 0.3384659 0.5050551 -0.5668815 0.3384659 0.5050551 -0.5947903 0.3384659 0.5050551 -0.6211144 0.3384659 0.5050551 -0.6460766 0.3384659 0.5050551 -0.6698526 0.3384659 0.5050551 -0.6925839 0.3384659 0.5050551 -0.7143866 0.3384659 0.5050551 -0.7353569 0.3384659 0.5050551 -0.7555758 0.3384659 0.5050551 -0.7751122 0.3384659 0.5050551 -0.7940252 0.3384659 0.5050551 -0.8123661 0.3384659 0.5050551 -0.8301795 0.3384659 0.5050551 -0.8475045 0.3384659 0.5050551 -0.8643761 0.3384659 0.5050551 -0.880825 0.3384659 0.5050551 -0.8968787 0.3384659 0.5050551 -0.9125621 0.3384659 0.5050551 -0.9278974 0.3384659 0.5050551 -0.9429048 0.3384659 0.5050551 -0.9576028 0.3384659 0.5050551 -0.9720079 0.3384659 0.5050551 -0.9861357 0.3384659 0.5050551 -1 0.3384659 0.5050551 -0 0.3885728 0.5050551 -0.1939468 0.3885728 0.5050551 -0.2773041 0.3885728 0.5050551 -0.3384659 0.3885728 0.5050551 -0.3885728 0.3885728 0.5050551 -0.4317928 0.3885728 0.5050551 -0.470214 0.3885728 0.5050551 -0.5050551 0.3885728 0.5050551 -0.5370987 0.3885728 0.5050551 -0.5668815 0.3885728 0.5050551 -0.5947903 0.3885728 0.5050551 -0.6211144 0.3885728 0.5050551 -0.6460766 0.3885728 0.5050551 -0.6698526 0.3885728 0.5050551 -0.6925839 0.3885728 0.5050551 -0.7143866 0.3885728 0.5050551 -0.7353569 0.3885728 0.5050551 -0.7555758 0.3885728 0.5050551 -0.7751122 0.3885728 0.5050551 -0.7940252 0.3885728 0.5050551 -0.8123661 0.3885728 0.5050551 -0.8301795 0.3885728 0.5050551 -0.8475045 0.3885728 0.5050551 -0.8643761 0.3885728 0.5050551 -0.880825 0.3885728 0.5050551 -0.8968787 0.3885728 0.5050551 -0.9125621 0.3885728 0.5050551 -0.9278974 0.3885728 0.5050551 -0.9429048 0.3885728 0.5050551 -0.9576028 0.3885728 0.5050551 -0.9720079 0.3885728 0.5050551 -0.9861357 0.3885728 0.5050551 -1 0.3885728 0.5050551 -0 0.4317928 0.5050551 -0.1939468 0.4317928 0.5050551 -0.2773041 0.4317928 0.5050551 -0.3384659 0.4317928 0.5050551 -0.3885728 0.4317928 0.5050551 -0.4317928 0.4317928 0.5050551 -0.470214 0.4317928 0.5050551 -0.5050551 0.4317928 0.5050551 -0.5370987 0.4317928 0.5050551 -0.5668815 0.4317928 0.5050551 -0.5947903 0.4317928 0.5050551 -0.6211144 0.4317928 0.5050551 -0.6460766 0.4317928 0.5050551 -0.6698526 0.4317928 0.5050551 -0.6925839 0.4317928 0.5050551 -0.7143866 0.4317928 0.5050551 -0.7353569 0.4317928 0.5050551 -0.7555758 0.4317928 0.5050551 -0.7751122 0.4317928 0.5050551 -0.7940252 0.4317928 0.5050551 -0.8123661 0.4317928 0.5050551 -0.8301795 0.4317928 0.5050551 -0.8475045 0.4317928 0.5050551 -0.8643761 0.4317928 0.5050551 -0.880825 0.4317928 0.5050551 -0.8968787 0.4317928 0.5050551 -0.9125621 0.4317928 0.5050551 -0.9278974 0.4317928 0.5050551 -0.9429048 0.4317928 0.5050551 -0.9576028 0.4317928 0.5050551 -0.9720079 0.4317928 0.5050551 -0.9861357 0.4317928 0.5050551 -1 0.4317928 0.5050551 -0 0.470214 0.5050551 -0.1939468 0.470214 0.5050551 -0.2773041 0.470214 0.5050551 -0.3384659 0.470214 0.5050551 -0.3885728 0.470214 0.5050551 -0.4317928 0.470214 0.5050551 -0.470214 0.470214 0.5050551 -0.5050551 0.470214 0.5050551 -0.5370987 0.470214 0.5050551 -0.5668815 0.470214 0.5050551 -0.5947903 0.470214 0.5050551 -0.6211144 0.470214 0.5050551 -0.6460766 0.470214 0.5050551 -0.6698526 0.470214 0.5050551 -0.6925839 0.470214 0.5050551 -0.7143866 0.470214 0.5050551 -0.7353569 0.470214 0.5050551 -0.7555758 0.470214 0.5050551 -0.7751122 0.470214 0.5050551 -0.7940252 0.470214 0.5050551 -0.8123661 0.470214 0.5050551 -0.8301795 0.470214 0.5050551 -0.8475045 0.470214 0.5050551 -0.8643761 0.470214 0.5050551 -0.880825 0.470214 0.5050551 -0.8968787 0.470214 0.5050551 -0.9125621 0.470214 0.5050551 -0.9278974 0.470214 0.5050551 -0.9429048 0.470214 0.5050551 -0.9576028 0.470214 0.5050551 -0.9720079 0.470214 0.5050551 -0.9861357 0.470214 0.5050551 -1 0.470214 0.5050551 -0 0.5050551 0.5050551 -0.1939468 0.5050551 0.5050551 -0.2773041 0.5050551 0.5050551 -0.3384659 0.5050551 0.5050551 -0.3885728 0.5050551 0.5050551 -0.4317928 0.5050551 0.5050551 -0.470214 0.5050551 0.5050551 -0.5050551 0.5050551 0.5050551 -0.5370987 0.5050551 0.5050551 -0.5668815 0.5050551 0.5050551 -0.5947903 0.5050551 0.5050551 -0.6211144 0.5050551 0.5050551 -0.6460766 0.5050551 0.5050551 -0.6698526 0.5050551 0.5050551 -0.6925839 0.5050551 0.5050551 -0.7143866 0.5050551 0.5050551 -0.7353569 0.5050551 0.5050551 -0.7555758 0.5050551 0.5050551 -0.7751122 0.5050551 0.5050551 -0.7940252 0.5050551 0.5050551 -0.8123661 0.5050551 0.5050551 -0.8301795 0.5050551 0.5050551 -0.8475045 0.5050551 0.5050551 -0.8643761 0.5050551 0.5050551 -0.880825 0.5050551 0.5050551 -0.8968787 0.5050551 0.5050551 -0.9125621 0.5050551 0.5050551 -0.9278974 0.5050551 0.5050551 -0.9429048 0.5050551 0.5050551 -0.9576028 0.5050551 0.5050551 -0.9720079 0.5050551 0.5050551 -0.9861357 0.5050551 0.5050551 -1 0.5050551 0.5050551 -0 0.5370987 0.5050551 -0.1939468 0.5370987 0.5050551 -0.2773041 0.5370987 0.5050551 -0.3384659 0.5370987 0.5050551 -0.3885728 0.5370987 0.5050551 -0.4317928 0.5370987 0.5050551 -0.470214 0.5370987 0.5050551 -0.5050551 0.5370987 0.5050551 -0.5370987 0.5370987 0.5050551 -0.5668815 0.5370987 0.5050551 -0.5947903 0.5370987 0.5050551 -0.6211144 0.5370987 0.5050551 -0.6460766 0.5370987 0.5050551 -0.6698526 0.5370987 0.5050551 -0.6925839 0.5370987 0.5050551 -0.7143866 0.5370987 0.5050551 -0.7353569 0.5370987 0.5050551 -0.7555758 0.5370987 0.5050551 -0.7751122 0.5370987 0.5050551 -0.7940252 0.5370987 0.5050551 -0.8123661 0.5370987 0.5050551 -0.8301795 0.5370987 0.5050551 -0.8475045 0.5370987 0.5050551 -0.8643761 0.5370987 0.5050551 -0.880825 0.5370987 0.5050551 -0.8968787 0.5370987 0.5050551 -0.9125621 0.5370987 0.5050551 -0.9278974 0.5370987 0.5050551 -0.9429048 0.5370987 0.5050551 -0.9576028 0.5370987 0.5050551 -0.9720079 0.5370987 0.5050551 -0.9861357 0.5370987 0.5050551 -1 0.5370987 0.5050551 -0 0.5668815 0.5050551 -0.1939468 0.5668815 0.5050551 -0.2773041 0.5668815 0.5050551 -0.3384659 0.5668815 0.5050551 -0.3885728 0.5668815 0.5050551 -0.4317928 0.5668815 0.5050551 -0.470214 0.5668815 0.5050551 -0.5050551 0.5668815 0.5050551 -0.5370987 0.5668815 0.5050551 -0.5668815 0.5668815 0.5050551 -0.5947903 0.5668815 0.5050551 -0.6211144 0.5668815 0.5050551 -0.6460766 0.5668815 0.5050551 -0.6698526 0.5668815 0.5050551 -0.6925839 0.5668815 0.5050551 -0.7143866 0.5668815 0.5050551 -0.7353569 0.5668815 0.5050551 -0.7555758 0.5668815 0.5050551 -0.7751122 0.5668815 0.5050551 -0.7940252 0.5668815 0.5050551 -0.8123661 0.5668815 0.5050551 -0.8301795 0.5668815 0.5050551 -0.8475045 0.5668815 0.5050551 -0.8643761 0.5668815 0.5050551 -0.880825 0.5668815 0.5050551 -0.8968787 0.5668815 0.5050551 -0.9125621 0.5668815 0.5050551 -0.9278974 0.5668815 0.5050551 -0.9429048 0.5668815 0.5050551 -0.9576028 0.5668815 0.5050551 -0.9720079 0.5668815 0.5050551 -0.9861357 0.5668815 0.5050551 -1 0.5668815 0.5050551 -0 0.5947903 0.5050551 -0.1939468 0.5947903 0.5050551 -0.2773041 0.5947903 0.5050551 -0.3384659 0.5947903 0.5050551 -0.3885728 0.5947903 0.5050551 -0.4317928 0.5947903 0.5050551 -0.470214 0.5947903 0.5050551 -0.5050551 0.5947903 0.5050551 -0.5370987 0.5947903 0.5050551 -0.5668815 0.5947903 0.5050551 -0.5947903 0.5947903 0.5050551 -0.6211144 0.5947903 0.5050551 -0.6460766 0.5947903 0.5050551 -0.6698526 0.5947903 0.5050551 -0.6925839 0.5947903 0.5050551 -0.7143866 0.5947903 0.5050551 -0.7353569 0.5947903 0.5050551 -0.7555758 0.5947903 0.5050551 -0.7751122 0.5947903 0.5050551 -0.7940252 0.5947903 0.5050551 -0.8123661 0.5947903 0.5050551 -0.8301795 0.5947903 0.5050551 -0.8475045 0.5947903 0.5050551 -0.8643761 0.5947903 0.5050551 -0.880825 0.5947903 0.5050551 -0.8968787 0.5947903 0.5050551 -0.9125621 0.5947903 0.5050551 -0.9278974 0.5947903 0.5050551 -0.9429048 0.5947903 0.5050551 -0.9576028 0.5947903 0.5050551 -0.9720079 0.5947903 0.5050551 -0.9861357 0.5947903 0.5050551 -1 0.5947903 0.5050551 -0 0.6211144 0.5050551 -0.1939468 0.6211144 0.5050551 -0.2773041 0.6211144 0.5050551 -0.3384659 0.6211144 0.5050551 -0.3885728 0.6211144 0.5050551 -0.4317928 0.6211144 0.5050551 -0.470214 0.6211144 0.5050551 -0.5050551 0.6211144 0.5050551 -0.5370987 0.6211144 0.5050551 -0.5668815 0.6211144 0.5050551 -0.5947903 0.6211144 0.5050551 -0.6211144 0.6211144 0.5050551 -0.6460766 0.6211144 0.5050551 -0.6698526 0.6211144 0.5050551 -0.6925839 0.6211144 0.5050551 -0.7143866 0.6211144 0.5050551 -0.7353569 0.6211144 0.5050551 -0.7555758 0.6211144 0.5050551 -0.7751122 0.6211144 0.5050551 -0.7940252 0.6211144 0.5050551 -0.8123661 0.6211144 0.5050551 -0.8301795 0.6211144 0.5050551 -0.8475045 0.6211144 0.5050551 -0.8643761 0.6211144 0.5050551 -0.880825 0.6211144 0.5050551 -0.8968787 0.6211144 0.5050551 -0.9125621 0.6211144 0.5050551 -0.9278974 0.6211144 0.5050551 -0.9429048 0.6211144 0.5050551 -0.9576028 0.6211144 0.5050551 -0.9720079 0.6211144 0.5050551 -0.9861357 0.6211144 0.5050551 -1 0.6211144 0.5050551 -0 0.6460766 0.5050551 -0.1939468 0.6460766 0.5050551 -0.2773041 0.6460766 0.5050551 -0.3384659 0.6460766 0.5050551 -0.3885728 0.6460766 0.5050551 -0.4317928 0.6460766 0.5050551 -0.470214 0.6460766 0.5050551 -0.5050551 0.6460766 0.5050551 -0.5370987 0.6460766 0.5050551 -0.5668815 0.6460766 0.5050551 -0.5947903 0.6460766 0.5050551 -0.6211144 0.6460766 0.5050551 -0.6460766 0.6460766 0.5050551 -0.6698526 0.6460766 0.5050551 -0.6925839 0.6460766 0.5050551 -0.7143866 0.6460766 0.5050551 -0.7353569 0.6460766 0.5050551 -0.7555758 0.6460766 0.5050551 -0.7751122 0.6460766 0.5050551 -0.7940252 0.6460766 0.5050551 -0.8123661 0.6460766 0.5050551 -0.8301795 0.6460766 0.5050551 -0.8475045 0.6460766 0.5050551 -0.8643761 0.6460766 0.5050551 -0.880825 0.6460766 0.5050551 -0.8968787 0.6460766 0.5050551 -0.9125621 0.6460766 0.5050551 -0.9278974 0.6460766 0.5050551 -0.9429048 0.6460766 0.5050551 -0.9576028 0.6460766 0.5050551 -0.9720079 0.6460766 0.5050551 -0.9861357 0.6460766 0.5050551 -1 0.6460766 0.5050551 -0 0.6698526 0.5050551 -0.1939468 0.6698526 0.5050551 -0.2773041 0.6698526 0.5050551 -0.3384659 0.6698526 0.5050551 -0.3885728 0.6698526 0.5050551 -0.4317928 0.6698526 0.5050551 -0.470214 0.6698526 0.5050551 -0.5050551 0.6698526 0.5050551 -0.5370987 0.6698526 0.5050551 -0.5668815 0.6698526 0.5050551 -0.5947903 0.6698526 0.5050551 -0.6211144 0.6698526 0.5050551 -0.6460766 0.6698526 0.5050551 -0.6698526 0.6698526 0.5050551 -0.6925839 0.6698526 0.5050551 -0.7143866 0.6698526 0.5050551 -0.7353569 0.6698526 0.5050551 -0.7555758 0.6698526 0.5050551 -0.7751122 0.6698526 0.5050551 -0.7940252 0.6698526 0.5050551 -0.8123661 0.6698526 0.5050551 -0.8301795 0.6698526 0.5050551 -0.8475045 0.6698526 0.5050551 -0.8643761 0.6698526 0.5050551 -0.880825 0.6698526 0.5050551 -0.8968787 0.6698526 0.5050551 -0.9125621 0.6698526 0.5050551 -0.9278974 0.6698526 0.5050551 -0.9429048 0.6698526 0.5050551 -0.9576028 0.6698526 0.5050551 -0.9720079 0.6698526 0.5050551 -0.9861357 0.6698526 0.5050551 -1 0.6698526 0.5050551 -0 0.6925839 0.5050551 -0.1939468 0.6925839 0.5050551 -0.2773041 0.6925839 0.5050551 -0.3384659 0.6925839 0.5050551 -0.3885728 0.6925839 0.5050551 -0.4317928 0.6925839 0.5050551 -0.470214 0.6925839 0.5050551 -0.5050551 0.6925839 0.5050551 -0.5370987 0.6925839 0.5050551 -0.5668815 0.6925839 0.5050551 -0.5947903 0.6925839 0.5050551 -0.6211144 0.6925839 0.5050551 -0.6460766 0.6925839 0.5050551 -0.6698526 0.6925839 0.5050551 -0.6925839 0.6925839 0.5050551 -0.7143866 0.6925839 0.5050551 -0.7353569 0.6925839 0.5050551 -0.7555758 0.6925839 0.5050551 -0.7751122 0.6925839 0.5050551 -0.7940252 0.6925839 0.5050551 -0.8123661 0.6925839 0.5050551 -0.8301795 0.6925839 0.5050551 -0.8475045 0.6925839 0.5050551 -0.8643761 0.6925839 0.5050551 -0.880825 0.6925839 0.5050551 -0.8968787 0.6925839 0.5050551 -0.9125621 0.6925839 0.5050551 -0.9278974 0.6925839 0.5050551 -0.9429048 0.6925839 0.5050551 -0.9576028 0.6925839 0.5050551 -0.9720079 0.6925839 0.5050551 -0.9861357 0.6925839 0.5050551 -1 0.6925839 0.5050551 -0 0.7143866 0.5050551 -0.1939468 0.7143866 0.5050551 -0.2773041 0.7143866 0.5050551 -0.3384659 0.7143866 0.5050551 -0.3885728 0.7143866 0.5050551 -0.4317928 0.7143866 0.5050551 -0.470214 0.7143866 0.5050551 -0.5050551 0.7143866 0.5050551 -0.5370987 0.7143866 0.5050551 -0.5668815 0.7143866 0.5050551 -0.5947903 0.7143866 0.5050551 -0.6211144 0.7143866 0.5050551 -0.6460766 0.7143866 0.5050551 -0.6698526 0.7143866 0.5050551 -0.6925839 0.7143866 0.5050551 -0.7143866 0.7143866 0.5050551 -0.7353569 0.7143866 0.5050551 -0.7555758 0.7143866 0.5050551 -0.7751122 0.7143866 0.5050551 -0.7940252 0.7143866 0.5050551 -0.8123661 0.7143866 0.5050551 -0.8301795 0.7143866 0.5050551 -0.8475045 0.7143866 0.5050551 -0.8643761 0.7143866 0.5050551 -0.880825 0.7143866 0.5050551 -0.8968787 0.7143866 0.5050551 -0.9125621 0.7143866 0.5050551 -0.9278974 0.7143866 0.5050551 -0.9429048 0.7143866 0.5050551 -0.9576028 0.7143866 0.5050551 -0.9720079 0.7143866 0.5050551 -0.9861357 0.7143866 0.5050551 -1 0.7143866 0.5050551 -0 0.7353569 0.5050551 -0.1939468 0.7353569 0.5050551 -0.2773041 0.7353569 0.5050551 -0.3384659 0.7353569 0.5050551 -0.3885728 0.7353569 0.5050551 -0.4317928 0.7353569 0.5050551 -0.470214 0.7353569 0.5050551 -0.5050551 0.7353569 0.5050551 -0.5370987 0.7353569 0.5050551 -0.5668815 0.7353569 0.5050551 -0.5947903 0.7353569 0.5050551 -0.6211144 0.7353569 0.5050551 -0.6460766 0.7353569 0.5050551 -0.6698526 0.7353569 0.5050551 -0.6925839 0.7353569 0.5050551 -0.7143866 0.7353569 0.5050551 -0.7353569 0.7353569 0.5050551 -0.7555758 0.7353569 0.5050551 -0.7751122 0.7353569 0.5050551 -0.7940252 0.7353569 0.5050551 -0.8123661 0.7353569 0.5050551 -0.8301795 0.7353569 0.5050551 -0.8475045 0.7353569 0.5050551 -0.8643761 0.7353569 0.5050551 -0.880825 0.7353569 0.5050551 -0.8968787 0.7353569 0.5050551 -0.9125621 0.7353569 0.5050551 -0.9278974 0.7353569 0.5050551 -0.9429048 0.7353569 0.5050551 -0.9576028 0.7353569 0.5050551 -0.9720079 0.7353569 0.5050551 -0.9861357 0.7353569 0.5050551 -1 0.7353569 0.5050551 -0 0.7555758 0.5050551 -0.1939468 0.7555758 0.5050551 -0.2773041 0.7555758 0.5050551 -0.3384659 0.7555758 0.5050551 -0.3885728 0.7555758 0.5050551 -0.4317928 0.7555758 0.5050551 -0.470214 0.7555758 0.5050551 -0.5050551 0.7555758 0.5050551 -0.5370987 0.7555758 0.5050551 -0.5668815 0.7555758 0.5050551 -0.5947903 0.7555758 0.5050551 -0.6211144 0.7555758 0.5050551 -0.6460766 0.7555758 0.5050551 -0.6698526 0.7555758 0.5050551 -0.6925839 0.7555758 0.5050551 -0.7143866 0.7555758 0.5050551 -0.7353569 0.7555758 0.5050551 -0.7555758 0.7555758 0.5050551 -0.7751122 0.7555758 0.5050551 -0.7940252 0.7555758 0.5050551 -0.8123661 0.7555758 0.5050551 -0.8301795 0.7555758 0.5050551 -0.8475045 0.7555758 0.5050551 -0.8643761 0.7555758 0.5050551 -0.880825 0.7555758 0.5050551 -0.8968787 0.7555758 0.5050551 -0.9125621 0.7555758 0.5050551 -0.9278974 0.7555758 0.5050551 -0.9429048 0.7555758 0.5050551 -0.9576028 0.7555758 0.5050551 -0.9720079 0.7555758 0.5050551 -0.9861357 0.7555758 0.5050551 -1 0.7555758 0.5050551 -0 0.7751122 0.5050551 -0.1939468 0.7751122 0.5050551 -0.2773041 0.7751122 0.5050551 -0.3384659 0.7751122 0.5050551 -0.3885728 0.7751122 0.5050551 -0.4317928 0.7751122 0.5050551 -0.470214 0.7751122 0.5050551 -0.5050551 0.7751122 0.5050551 -0.5370987 0.7751122 0.5050551 -0.5668815 0.7751122 0.5050551 -0.5947903 0.7751122 0.5050551 -0.6211144 0.7751122 0.5050551 -0.6460766 0.7751122 0.5050551 -0.6698526 0.7751122 0.5050551 -0.6925839 0.7751122 0.5050551 -0.7143866 0.7751122 0.5050551 -0.7353569 0.7751122 0.5050551 -0.7555758 0.7751122 0.5050551 -0.7751122 0.7751122 0.5050551 -0.7940252 0.7751122 0.5050551 -0.8123661 0.7751122 0.5050551 -0.8301795 0.7751122 0.5050551 -0.8475045 0.7751122 0.5050551 -0.8643761 0.7751122 0.5050551 -0.880825 0.7751122 0.5050551 -0.8968787 0.7751122 0.5050551 -0.9125621 0.7751122 0.5050551 -0.9278974 0.7751122 0.5050551 -0.9429048 0.7751122 0.5050551 -0.9576028 0.7751122 0.5050551 -0.9720079 0.7751122 0.5050551 -0.9861357 0.7751122 0.5050551 -1 0.7751122 0.5050551 -0 0.7940252 0.5050551 -0.1939468 0.7940252 0.5050551 -0.2773041 0.7940252 0.5050551 -0.3384659 0.7940252 0.5050551 -0.3885728 0.7940252 0.5050551 -0.4317928 0.7940252 0.5050551 -0.470214 0.7940252 0.5050551 -0.5050551 0.7940252 0.5050551 -0.5370987 0.7940252 0.5050551 -0.5668815 0.7940252 0.5050551 -0.5947903 0.7940252 0.5050551 -0.6211144 0.7940252 0.5050551 -0.6460766 0.7940252 0.5050551 -0.6698526 0.7940252 0.5050551 -0.6925839 0.7940252 0.5050551 -0.7143866 0.7940252 0.5050551 -0.7353569 0.7940252 0.5050551 -0.7555758 0.7940252 0.5050551 -0.7751122 0.7940252 0.5050551 -0.7940252 0.7940252 0.5050551 -0.8123661 0.7940252 0.5050551 -0.8301795 0.7940252 0.5050551 -0.8475045 0.7940252 0.5050551 -0.8643761 0.7940252 0.5050551 -0.880825 0.7940252 0.5050551 -0.8968787 0.7940252 0.5050551 -0.9125621 0.7940252 0.5050551 -0.9278974 0.7940252 0.5050551 -0.9429048 0.7940252 0.5050551 -0.9576028 0.7940252 0.5050551 -0.9720079 0.7940252 0.5050551 -0.9861357 0.7940252 0.5050551 -1 0.7940252 0.5050551 -0 0.8123661 0.5050551 -0.1939468 0.8123661 0.5050551 -0.2773041 0.8123661 0.5050551 -0.3384659 0.8123661 0.5050551 -0.3885728 0.8123661 0.5050551 -0.4317928 0.8123661 0.5050551 -0.470214 0.8123661 0.5050551 -0.5050551 0.8123661 0.5050551 -0.5370987 0.8123661 0.5050551 -0.5668815 0.8123661 0.5050551 -0.5947903 0.8123661 0.5050551 -0.6211144 0.8123661 0.5050551 -0.6460766 0.8123661 0.5050551 -0.6698526 0.8123661 0.5050551 -0.6925839 0.8123661 0.5050551 -0.7143866 0.8123661 0.5050551 -0.7353569 0.8123661 0.5050551 -0.7555758 0.8123661 0.5050551 -0.7751122 0.8123661 0.5050551 -0.7940252 0.8123661 0.5050551 -0.8123661 0.8123661 0.5050551 -0.8301795 0.8123661 0.5050551 -0.8475045 0.8123661 0.5050551 -0.8643761 0.8123661 0.5050551 -0.880825 0.8123661 0.5050551 -0.8968787 0.8123661 0.5050551 -0.9125621 0.8123661 0.5050551 -0.9278974 0.8123661 0.5050551 -0.9429048 0.8123661 0.5050551 -0.9576028 0.8123661 0.5050551 -0.9720079 0.8123661 0.5050551 -0.9861357 0.8123661 0.5050551 -1 0.8123661 0.5050551 -0 0.8301795 0.5050551 -0.1939468 0.8301795 0.5050551 -0.2773041 0.8301795 0.5050551 -0.3384659 0.8301795 0.5050551 -0.3885728 0.8301795 0.5050551 -0.4317928 0.8301795 0.5050551 -0.470214 0.8301795 0.5050551 -0.5050551 0.8301795 0.5050551 -0.5370987 0.8301795 0.5050551 -0.5668815 0.8301795 0.5050551 -0.5947903 0.8301795 0.5050551 -0.6211144 0.8301795 0.5050551 -0.6460766 0.8301795 0.5050551 -0.6698526 0.8301795 0.5050551 -0.6925839 0.8301795 0.5050551 -0.7143866 0.8301795 0.5050551 -0.7353569 0.8301795 0.5050551 -0.7555758 0.8301795 0.5050551 -0.7751122 0.8301795 0.5050551 -0.7940252 0.8301795 0.5050551 -0.8123661 0.8301795 0.5050551 -0.8301795 0.8301795 0.5050551 -0.8475045 0.8301795 0.5050551 -0.8643761 0.8301795 0.5050551 -0.880825 0.8301795 0.5050551 -0.8968787 0.8301795 0.5050551 -0.9125621 0.8301795 0.5050551 -0.9278974 0.8301795 0.5050551 -0.9429048 0.8301795 0.5050551 -0.9576028 0.8301795 0.5050551 -0.9720079 0.8301795 0.5050551 -0.9861357 0.8301795 0.5050551 -1 0.8301795 0.5050551 -0 0.8475045 0.5050551 -0.1939468 0.8475045 0.5050551 -0.2773041 0.8475045 0.5050551 -0.3384659 0.8475045 0.5050551 -0.3885728 0.8475045 0.5050551 -0.4317928 0.8475045 0.5050551 -0.470214 0.8475045 0.5050551 -0.5050551 0.8475045 0.5050551 -0.5370987 0.8475045 0.5050551 -0.5668815 0.8475045 0.5050551 -0.5947903 0.8475045 0.5050551 -0.6211144 0.8475045 0.5050551 -0.6460766 0.8475045 0.5050551 -0.6698526 0.8475045 0.5050551 -0.6925839 0.8475045 0.5050551 -0.7143866 0.8475045 0.5050551 -0.7353569 0.8475045 0.5050551 -0.7555758 0.8475045 0.5050551 -0.7751122 0.8475045 0.5050551 -0.7940252 0.8475045 0.5050551 -0.8123661 0.8475045 0.5050551 -0.8301795 0.8475045 0.5050551 -0.8475045 0.8475045 0.5050551 -0.8643761 0.8475045 0.5050551 -0.880825 0.8475045 0.5050551 -0.8968787 0.8475045 0.5050551 -0.9125621 0.8475045 0.5050551 -0.9278974 0.8475045 0.5050551 -0.9429048 0.8475045 0.5050551 -0.9576028 0.8475045 0.5050551 -0.9720079 0.8475045 0.5050551 -0.9861357 0.8475045 0.5050551 -1 0.8475045 0.5050551 -0 0.8643761 0.5050551 -0.1939468 0.8643761 0.5050551 -0.2773041 0.8643761 0.5050551 -0.3384659 0.8643761 0.5050551 -0.3885728 0.8643761 0.5050551 -0.4317928 0.8643761 0.5050551 -0.470214 0.8643761 0.5050551 -0.5050551 0.8643761 0.5050551 -0.5370987 0.8643761 0.5050551 -0.5668815 0.8643761 0.5050551 -0.5947903 0.8643761 0.5050551 -0.6211144 0.8643761 0.5050551 -0.6460766 0.8643761 0.5050551 -0.6698526 0.8643761 0.5050551 -0.6925839 0.8643761 0.5050551 -0.7143866 0.8643761 0.5050551 -0.7353569 0.8643761 0.5050551 -0.7555758 0.8643761 0.5050551 -0.7751122 0.8643761 0.5050551 -0.7940252 0.8643761 0.5050551 -0.8123661 0.8643761 0.5050551 -0.8301795 0.8643761 0.5050551 -0.8475045 0.8643761 0.5050551 -0.8643761 0.8643761 0.5050551 -0.880825 0.8643761 0.5050551 -0.8968787 0.8643761 0.5050551 -0.9125621 0.8643761 0.5050551 -0.9278974 0.8643761 0.5050551 -0.9429048 0.8643761 0.5050551 -0.9576028 0.8643761 0.5050551 -0.9720079 0.8643761 0.5050551 -0.9861357 0.8643761 0.5050551 -1 0.8643761 0.5050551 -0 0.880825 0.5050551 -0.1939468 0.880825 0.5050551 -0.2773041 0.880825 0.5050551 -0.3384659 0.880825 0.5050551 -0.3885728 0.880825 0.5050551 -0.4317928 0.880825 0.5050551 -0.470214 0.880825 0.5050551 -0.5050551 0.880825 0.5050551 -0.5370987 0.880825 0.5050551 -0.5668815 0.880825 0.5050551 -0.5947903 0.880825 0.5050551 -0.6211144 0.880825 0.5050551 -0.6460766 0.880825 0.5050551 -0.6698526 0.880825 0.5050551 -0.6925839 0.880825 0.5050551 -0.7143866 0.880825 0.5050551 -0.7353569 0.880825 0.5050551 -0.7555758 0.880825 0.5050551 -0.7751122 0.880825 0.5050551 -0.7940252 0.880825 0.5050551 -0.8123661 0.880825 0.5050551 -0.8301795 0.880825 0.5050551 -0.8475045 0.880825 0.5050551 -0.8643761 0.880825 0.5050551 -0.880825 0.880825 0.5050551 -0.8968787 0.880825 0.5050551 -0.9125621 0.880825 0.5050551 -0.9278974 0.880825 0.5050551 -0.9429048 0.880825 0.5050551 -0.9576028 0.880825 0.5050551 -0.9720079 0.880825 0.5050551 -0.9861357 0.880825 0.5050551 -1 0.880825 0.5050551 -0 0.8968787 0.5050551 -0.1939468 0.8968787 0.5050551 -0.2773041 0.8968787 0.5050551 -0.3384659 0.8968787 0.5050551 -0.3885728 0.8968787 0.5050551 -0.4317928 0.8968787 0.5050551 -0.470214 0.8968787 0.5050551 -0.5050551 0.8968787 0.5050551 -0.5370987 0.8968787 0.5050551 -0.5668815 0.8968787 0.5050551 -0.5947903 0.8968787 0.5050551 -0.6211144 0.8968787 0.5050551 -0.6460766 0.8968787 0.5050551 -0.6698526 0.8968787 0.5050551 -0.6925839 0.8968787 0.5050551 -0.7143866 0.8968787 0.5050551 -0.7353569 0.8968787 0.5050551 -0.7555758 0.8968787 0.5050551 -0.7751122 0.8968787 0.5050551 -0.7940252 0.8968787 0.5050551 -0.8123661 0.8968787 0.5050551 -0.8301795 0.8968787 0.5050551 -0.8475045 0.8968787 0.5050551 -0.8643761 0.8968787 0.5050551 -0.880825 0.8968787 0.5050551 -0.8968787 0.8968787 0.5050551 -0.9125621 0.8968787 0.5050551 -0.9278974 0.8968787 0.5050551 -0.9429048 0.8968787 0.5050551 -0.9576028 0.8968787 0.5050551 -0.9720079 0.8968787 0.5050551 -0.9861357 0.8968787 0.5050551 -1 0.8968787 0.5050551 -0 0.9125621 0.5050551 -0.1939468 0.9125621 0.5050551 -0.2773041 0.9125621 0.5050551 -0.3384659 0.9125621 0.5050551 -0.3885728 0.9125621 0.5050551 -0.4317928 0.9125621 0.5050551 -0.470214 0.9125621 0.5050551 -0.5050551 0.9125621 0.5050551 -0.5370987 0.9125621 0.5050551 -0.5668815 0.9125621 0.5050551 -0.5947903 0.9125621 0.5050551 -0.6211144 0.9125621 0.5050551 -0.6460766 0.9125621 0.5050551 -0.6698526 0.9125621 0.5050551 -0.6925839 0.9125621 0.5050551 -0.7143866 0.9125621 0.5050551 -0.7353569 0.9125621 0.5050551 -0.7555758 0.9125621 0.5050551 -0.7751122 0.9125621 0.5050551 -0.7940252 0.9125621 0.5050551 -0.8123661 0.9125621 0.5050551 -0.8301795 0.9125621 0.5050551 -0.8475045 0.9125621 0.5050551 -0.8643761 0.9125621 0.5050551 -0.880825 0.9125621 0.5050551 -0.8968787 0.9125621 0.5050551 -0.9125621 0.9125621 0.5050551 -0.9278974 0.9125621 0.5050551 -0.9429048 0.9125621 0.5050551 -0.9576028 0.9125621 0.5050551 -0.9720079 0.9125621 0.5050551 -0.9861357 0.9125621 0.5050551 -1 0.9125621 0.5050551 -0 0.9278974 0.5050551 -0.1939468 0.9278974 0.5050551 -0.2773041 0.9278974 0.5050551 -0.3384659 0.9278974 0.5050551 -0.3885728 0.9278974 0.5050551 -0.4317928 0.9278974 0.5050551 -0.470214 0.9278974 0.5050551 -0.5050551 0.9278974 0.5050551 -0.5370987 0.9278974 0.5050551 -0.5668815 0.9278974 0.5050551 -0.5947903 0.9278974 0.5050551 -0.6211144 0.9278974 0.5050551 -0.6460766 0.9278974 0.5050551 -0.6698526 0.9278974 0.5050551 -0.6925839 0.9278974 0.5050551 -0.7143866 0.9278974 0.5050551 -0.7353569 0.9278974 0.5050551 -0.7555758 0.9278974 0.5050551 -0.7751122 0.9278974 0.5050551 -0.7940252 0.9278974 0.5050551 -0.8123661 0.9278974 0.5050551 -0.8301795 0.9278974 0.5050551 -0.8475045 0.9278974 0.5050551 -0.8643761 0.9278974 0.5050551 -0.880825 0.9278974 0.5050551 -0.8968787 0.9278974 0.5050551 -0.9125621 0.9278974 0.5050551 -0.9278974 0.9278974 0.5050551 -0.9429048 0.9278974 0.5050551 -0.9576028 0.9278974 0.5050551 -0.9720079 0.9278974 0.5050551 -0.9861357 0.9278974 0.5050551 -1 0.9278974 0.5050551 -0 0.9429048 0.5050551 -0.1939468 0.9429048 0.5050551 -0.2773041 0.9429048 0.5050551 -0.3384659 0.9429048 0.5050551 -0.3885728 0.9429048 0.5050551 -0.4317928 0.9429048 0.5050551 -0.470214 0.9429048 0.5050551 -0.5050551 0.9429048 0.5050551 -0.5370987 0.9429048 0.5050551 -0.5668815 0.9429048 0.5050551 -0.5947903 0.9429048 0.5050551 -0.6211144 0.9429048 0.5050551 -0.6460766 0.9429048 0.5050551 -0.6698526 0.9429048 0.5050551 -0.6925839 0.9429048 0.5050551 -0.7143866 0.9429048 0.5050551 -0.7353569 0.9429048 0.5050551 -0.7555758 0.9429048 0.5050551 -0.7751122 0.9429048 0.5050551 -0.7940252 0.9429048 0.5050551 -0.8123661 0.9429048 0.5050551 -0.8301795 0.9429048 0.5050551 -0.8475045 0.9429048 0.5050551 -0.8643761 0.9429048 0.5050551 -0.880825 0.9429048 0.5050551 -0.8968787 0.9429048 0.5050551 -0.9125621 0.9429048 0.5050551 -0.9278974 0.9429048 0.5050551 -0.9429048 0.9429048 0.5050551 -0.9576028 0.9429048 0.5050551 -0.9720079 0.9429048 0.5050551 -0.9861357 0.9429048 0.5050551 -1 0.9429048 0.5050551 -0 0.9576028 0.5050551 -0.1939468 0.9576028 0.5050551 -0.2773041 0.9576028 0.5050551 -0.3384659 0.9576028 0.5050551 -0.3885728 0.9576028 0.5050551 -0.4317928 0.9576028 0.5050551 -0.470214 0.9576028 0.5050551 -0.5050551 0.9576028 0.5050551 -0.5370987 0.9576028 0.5050551 -0.5668815 0.9576028 0.5050551 -0.5947903 0.9576028 0.5050551 -0.6211144 0.9576028 0.5050551 -0.6460766 0.9576028 0.5050551 -0.6698526 0.9576028 0.5050551 -0.6925839 0.9576028 0.5050551 -0.7143866 0.9576028 0.5050551 -0.7353569 0.9576028 0.5050551 -0.7555758 0.9576028 0.5050551 -0.7751122 0.9576028 0.5050551 -0.7940252 0.9576028 0.5050551 -0.8123661 0.9576028 0.5050551 -0.8301795 0.9576028 0.5050551 -0.8475045 0.9576028 0.5050551 -0.8643761 0.9576028 0.5050551 -0.880825 0.9576028 0.5050551 -0.8968787 0.9576028 0.5050551 -0.9125621 0.9576028 0.5050551 -0.9278974 0.9576028 0.5050551 -0.9429048 0.9576028 0.5050551 -0.9576028 0.9576028 0.5050551 -0.9720079 0.9576028 0.5050551 -0.9861357 0.9576028 0.5050551 -1 0.9576028 0.5050551 -0 0.9720079 0.5050551 -0.1939468 0.9720079 0.5050551 -0.2773041 0.9720079 0.5050551 -0.3384659 0.9720079 0.5050551 -0.3885728 0.9720079 0.5050551 -0.4317928 0.9720079 0.5050551 -0.470214 0.9720079 0.5050551 -0.5050551 0.9720079 0.5050551 -0.5370987 0.9720079 0.5050551 -0.5668815 0.9720079 0.5050551 -0.5947903 0.9720079 0.5050551 -0.6211144 0.9720079 0.5050551 -0.6460766 0.9720079 0.5050551 -0.6698526 0.9720079 0.5050551 -0.6925839 0.9720079 0.5050551 -0.7143866 0.9720079 0.5050551 -0.7353569 0.9720079 0.5050551 -0.7555758 0.9720079 0.5050551 -0.7751122 0.9720079 0.5050551 -0.7940252 0.9720079 0.5050551 -0.8123661 0.9720079 0.5050551 -0.8301795 0.9720079 0.5050551 -0.8475045 0.9720079 0.5050551 -0.8643761 0.9720079 0.5050551 -0.880825 0.9720079 0.5050551 -0.8968787 0.9720079 0.5050551 -0.9125621 0.9720079 0.5050551 -0.9278974 0.9720079 0.5050551 -0.9429048 0.9720079 0.5050551 -0.9576028 0.9720079 0.5050551 -0.9720079 0.9720079 0.5050551 -0.9861357 0.9720079 0.5050551 -1 0.9720079 0.5050551 -0 0.9861357 0.5050551 -0.1939468 0.9861357 0.5050551 -0.2773041 0.9861357 0.5050551 -0.3384659 0.9861357 0.5050551 -0.3885728 0.9861357 0.5050551 -0.4317928 0.9861357 0.5050551 -0.470214 0.9861357 0.5050551 -0.5050551 0.9861357 0.5050551 -0.5370987 0.9861357 0.5050551 -0.5668815 0.9861357 0.5050551 -0.5947903 0.9861357 0.5050551 -0.6211144 0.9861357 0.5050551 -0.6460766 0.9861357 0.5050551 -0.6698526 0.9861357 0.5050551 -0.6925839 0.9861357 0.5050551 -0.7143866 0.9861357 0.5050551 -0.7353569 0.9861357 0.5050551 -0.7555758 0.9861357 0.5050551 -0.7751122 0.9861357 0.5050551 -0.7940252 0.9861357 0.5050551 -0.8123661 0.9861357 0.5050551 -0.8301795 0.9861357 0.5050551 -0.8475045 0.9861357 0.5050551 -0.8643761 0.9861357 0.5050551 -0.880825 0.9861357 0.5050551 -0.8968787 0.9861357 0.5050551 -0.9125621 0.9861357 0.5050551 -0.9278974 0.9861357 0.5050551 -0.9429048 0.9861357 0.5050551 -0.9576028 0.9861357 0.5050551 -0.9720079 0.9861357 0.5050551 -0.9861357 0.9861357 0.5050551 -1 0.9861357 0.5050551 -0 1 0.5050551 -0.1939468 1 0.5050551 -0.2773041 1 0.5050551 -0.3384659 1 0.5050551 -0.3885728 1 0.5050551 -0.4317928 1 0.5050551 -0.470214 1 0.5050551 -0.5050551 1 0.5050551 -0.5370987 1 0.5050551 -0.5668815 1 0.5050551 -0.5947903 1 0.5050551 -0.6211144 1 0.5050551 -0.6460766 1 0.5050551 -0.6698526 1 0.5050551 -0.6925839 1 0.5050551 -0.7143866 1 0.5050551 -0.7353569 1 0.5050551 -0.7555758 1 0.5050551 -0.7751122 1 0.5050551 -0.7940252 1 0.5050551 -0.8123661 1 0.5050551 -0.8301795 1 0.5050551 -0.8475045 1 0.5050551 -0.8643761 1 0.5050551 -0.880825 1 0.5050551 -0.8968787 1 0.5050551 -0.9125621 1 0.5050551 -0.9278974 1 0.5050551 -0.9429048 1 0.5050551 -0.9576028 1 0.5050551 -0.9720079 1 0.5050551 -0.9861357 1 0.5050551 -1 1 0.5050551 -0 0 0.5370987 -0.1939468 0 0.5370987 -0.2773041 0 0.5370987 -0.3384659 0 0.5370987 -0.3885728 0 0.5370987 -0.4317928 0 0.5370987 -0.470214 0 0.5370987 -0.5050551 0 0.5370987 -0.5370987 0 0.5370987 -0.5668815 0 0.5370987 -0.5947903 0 0.5370987 -0.6211144 0 0.5370987 -0.6460766 0 0.5370987 -0.6698526 0 0.5370987 -0.6925839 0 0.5370987 -0.7143866 0 0.5370987 -0.7353569 0 0.5370987 -0.7555758 0 0.5370987 -0.7751122 0 0.5370987 -0.7940252 0 0.5370987 -0.8123661 0 0.5370987 -0.8301795 0 0.5370987 -0.8475045 0 0.5370987 -0.8643761 0 0.5370987 -0.880825 0 0.5370987 -0.8968787 0 0.5370987 -0.9125621 0 0.5370987 -0.9278974 0 0.5370987 -0.9429048 0 0.5370987 -0.9576028 0 0.5370987 -0.9720079 0 0.5370987 -0.9861357 0 0.5370987 -1 0 0.5370987 -0 0.1939468 0.5370987 -0.1939468 0.1939468 0.5370987 -0.2773041 0.1939468 0.5370987 -0.3384659 0.1939468 0.5370987 -0.3885728 0.1939468 0.5370987 -0.4317928 0.1939468 0.5370987 -0.470214 0.1939468 0.5370987 -0.5050551 0.1939468 0.5370987 -0.5370987 0.1939468 0.5370987 -0.5668815 0.1939468 0.5370987 -0.5947903 0.1939468 0.5370987 -0.6211144 0.1939468 0.5370987 -0.6460766 0.1939468 0.5370987 -0.6698526 0.1939468 0.5370987 -0.6925839 0.1939468 0.5370987 -0.7143866 0.1939468 0.5370987 -0.7353569 0.1939468 0.5370987 -0.7555758 0.1939468 0.5370987 -0.7751122 0.1939468 0.5370987 -0.7940252 0.1939468 0.5370987 -0.8123661 0.1939468 0.5370987 -0.8301795 0.1939468 0.5370987 -0.8475045 0.1939468 0.5370987 -0.8643761 0.1939468 0.5370987 -0.880825 0.1939468 0.5370987 -0.8968787 0.1939468 0.5370987 -0.9125621 0.1939468 0.5370987 -0.9278974 0.1939468 0.5370987 -0.9429048 0.1939468 0.5370987 -0.9576028 0.1939468 0.5370987 -0.9720079 0.1939468 0.5370987 -0.9861357 0.1939468 0.5370987 -1 0.1939468 0.5370987 -0 0.2773041 0.5370987 -0.1939468 0.2773041 0.5370987 -0.2773041 0.2773041 0.5370987 -0.3384659 0.2773041 0.5370987 -0.3885728 0.2773041 0.5370987 -0.4317928 0.2773041 0.5370987 -0.470214 0.2773041 0.5370987 -0.5050551 0.2773041 0.5370987 -0.5370987 0.2773041 0.5370987 -0.5668815 0.2773041 0.5370987 -0.5947903 0.2773041 0.5370987 -0.6211144 0.2773041 0.5370987 -0.6460766 0.2773041 0.5370987 -0.6698526 0.2773041 0.5370987 -0.6925839 0.2773041 0.5370987 -0.7143866 0.2773041 0.5370987 -0.7353569 0.2773041 0.5370987 -0.7555758 0.2773041 0.5370987 -0.7751122 0.2773041 0.5370987 -0.7940252 0.2773041 0.5370987 -0.8123661 0.2773041 0.5370987 -0.8301795 0.2773041 0.5370987 -0.8475045 0.2773041 0.5370987 -0.8643761 0.2773041 0.5370987 -0.880825 0.2773041 0.5370987 -0.8968787 0.2773041 0.5370987 -0.9125621 0.2773041 0.5370987 -0.9278974 0.2773041 0.5370987 -0.9429048 0.2773041 0.5370987 -0.9576028 0.2773041 0.5370987 -0.9720079 0.2773041 0.5370987 -0.9861357 0.2773041 0.5370987 -1 0.2773041 0.5370987 -0 0.3384659 0.5370987 -0.1939468 0.3384659 0.5370987 -0.2773041 0.3384659 0.5370987 -0.3384659 0.3384659 0.5370987 -0.3885728 0.3384659 0.5370987 -0.4317928 0.3384659 0.5370987 -0.470214 0.3384659 0.5370987 -0.5050551 0.3384659 0.5370987 -0.5370987 0.3384659 0.5370987 -0.5668815 0.3384659 0.5370987 -0.5947903 0.3384659 0.5370987 -0.6211144 0.3384659 0.5370987 -0.6460766 0.3384659 0.5370987 -0.6698526 0.3384659 0.5370987 -0.6925839 0.3384659 0.5370987 -0.7143866 0.3384659 0.5370987 -0.7353569 0.3384659 0.5370987 -0.7555758 0.3384659 0.5370987 -0.7751122 0.3384659 0.5370987 -0.7940252 0.3384659 0.5370987 -0.8123661 0.3384659 0.5370987 -0.8301795 0.3384659 0.5370987 -0.8475045 0.3384659 0.5370987 -0.8643761 0.3384659 0.5370987 -0.880825 0.3384659 0.5370987 -0.8968787 0.3384659 0.5370987 -0.9125621 0.3384659 0.5370987 -0.9278974 0.3384659 0.5370987 -0.9429048 0.3384659 0.5370987 -0.9576028 0.3384659 0.5370987 -0.9720079 0.3384659 0.5370987 -0.9861357 0.3384659 0.5370987 -1 0.3384659 0.5370987 -0 0.3885728 0.5370987 -0.1939468 0.3885728 0.5370987 -0.2773041 0.3885728 0.5370987 -0.3384659 0.3885728 0.5370987 -0.3885728 0.3885728 0.5370987 -0.4317928 0.3885728 0.5370987 -0.470214 0.3885728 0.5370987 -0.5050551 0.3885728 0.5370987 -0.5370987 0.3885728 0.5370987 -0.5668815 0.3885728 0.5370987 -0.5947903 0.3885728 0.5370987 -0.6211144 0.3885728 0.5370987 -0.6460766 0.3885728 0.5370987 -0.6698526 0.3885728 0.5370987 -0.6925839 0.3885728 0.5370987 -0.7143866 0.3885728 0.5370987 -0.7353569 0.3885728 0.5370987 -0.7555758 0.3885728 0.5370987 -0.7751122 0.3885728 0.5370987 -0.7940252 0.3885728 0.5370987 -0.8123661 0.3885728 0.5370987 -0.8301795 0.3885728 0.5370987 -0.8475045 0.3885728 0.5370987 -0.8643761 0.3885728 0.5370987 -0.880825 0.3885728 0.5370987 -0.8968787 0.3885728 0.5370987 -0.9125621 0.3885728 0.5370987 -0.9278974 0.3885728 0.5370987 -0.9429048 0.3885728 0.5370987 -0.9576028 0.3885728 0.5370987 -0.9720079 0.3885728 0.5370987 -0.9861357 0.3885728 0.5370987 -1 0.3885728 0.5370987 -0 0.4317928 0.5370987 -0.1939468 0.4317928 0.5370987 -0.2773041 0.4317928 0.5370987 -0.3384659 0.4317928 0.5370987 -0.3885728 0.4317928 0.5370987 -0.4317928 0.4317928 0.5370987 -0.470214 0.4317928 0.5370987 -0.5050551 0.4317928 0.5370987 -0.5370987 0.4317928 0.5370987 -0.5668815 0.4317928 0.5370987 -0.5947903 0.4317928 0.5370987 -0.6211144 0.4317928 0.5370987 -0.6460766 0.4317928 0.5370987 -0.6698526 0.4317928 0.5370987 -0.6925839 0.4317928 0.5370987 -0.7143866 0.4317928 0.5370987 -0.7353569 0.4317928 0.5370987 -0.7555758 0.4317928 0.5370987 -0.7751122 0.4317928 0.5370987 -0.7940252 0.4317928 0.5370987 -0.8123661 0.4317928 0.5370987 -0.8301795 0.4317928 0.5370987 -0.8475045 0.4317928 0.5370987 -0.8643761 0.4317928 0.5370987 -0.880825 0.4317928 0.5370987 -0.8968787 0.4317928 0.5370987 -0.9125621 0.4317928 0.5370987 -0.9278974 0.4317928 0.5370987 -0.9429048 0.4317928 0.5370987 -0.9576028 0.4317928 0.5370987 -0.9720079 0.4317928 0.5370987 -0.9861357 0.4317928 0.5370987 -1 0.4317928 0.5370987 -0 0.470214 0.5370987 -0.1939468 0.470214 0.5370987 -0.2773041 0.470214 0.5370987 -0.3384659 0.470214 0.5370987 -0.3885728 0.470214 0.5370987 -0.4317928 0.470214 0.5370987 -0.470214 0.470214 0.5370987 -0.5050551 0.470214 0.5370987 -0.5370987 0.470214 0.5370987 -0.5668815 0.470214 0.5370987 -0.5947903 0.470214 0.5370987 -0.6211144 0.470214 0.5370987 -0.6460766 0.470214 0.5370987 -0.6698526 0.470214 0.5370987 -0.6925839 0.470214 0.5370987 -0.7143866 0.470214 0.5370987 -0.7353569 0.470214 0.5370987 -0.7555758 0.470214 0.5370987 -0.7751122 0.470214 0.5370987 -0.7940252 0.470214 0.5370987 -0.8123661 0.470214 0.5370987 -0.8301795 0.470214 0.5370987 -0.8475045 0.470214 0.5370987 -0.8643761 0.470214 0.5370987 -0.880825 0.470214 0.5370987 -0.8968787 0.470214 0.5370987 -0.9125621 0.470214 0.5370987 -0.9278974 0.470214 0.5370987 -0.9429048 0.470214 0.5370987 -0.9576028 0.470214 0.5370987 -0.9720079 0.470214 0.5370987 -0.9861357 0.470214 0.5370987 -1 0.470214 0.5370987 -0 0.5050551 0.5370987 -0.1939468 0.5050551 0.5370987 -0.2773041 0.5050551 0.5370987 -0.3384659 0.5050551 0.5370987 -0.3885728 0.5050551 0.5370987 -0.4317928 0.5050551 0.5370987 -0.470214 0.5050551 0.5370987 -0.5050551 0.5050551 0.5370987 -0.5370987 0.5050551 0.5370987 -0.5668815 0.5050551 0.5370987 -0.5947903 0.5050551 0.5370987 -0.6211144 0.5050551 0.5370987 -0.6460766 0.5050551 0.5370987 -0.6698526 0.5050551 0.5370987 -0.6925839 0.5050551 0.5370987 -0.7143866 0.5050551 0.5370987 -0.7353569 0.5050551 0.5370987 -0.7555758 0.5050551 0.5370987 -0.7751122 0.5050551 0.5370987 -0.7940252 0.5050551 0.5370987 -0.8123661 0.5050551 0.5370987 -0.8301795 0.5050551 0.5370987 -0.8475045 0.5050551 0.5370987 -0.8643761 0.5050551 0.5370987 -0.880825 0.5050551 0.5370987 -0.8968787 0.5050551 0.5370987 -0.9125621 0.5050551 0.5370987 -0.9278974 0.5050551 0.5370987 -0.9429048 0.5050551 0.5370987 -0.9576028 0.5050551 0.5370987 -0.9720079 0.5050551 0.5370987 -0.9861357 0.5050551 0.5370987 -1 0.5050551 0.5370987 -0 0.5370987 0.5370987 -0.1939468 0.5370987 0.5370987 -0.2773041 0.5370987 0.5370987 -0.3384659 0.5370987 0.5370987 -0.3885728 0.5370987 0.5370987 -0.4317928 0.5370987 0.5370987 -0.470214 0.5370987 0.5370987 -0.5050551 0.5370987 0.5370987 -0.5370987 0.5370987 0.5370987 -0.5668815 0.5370987 0.5370987 -0.5947903 0.5370987 0.5370987 -0.6211144 0.5370987 0.5370987 -0.6460766 0.5370987 0.5370987 -0.6698526 0.5370987 0.5370987 -0.6925839 0.5370987 0.5370987 -0.7143866 0.5370987 0.5370987 -0.7353569 0.5370987 0.5370987 -0.7555758 0.5370987 0.5370987 -0.7751122 0.5370987 0.5370987 -0.7940252 0.5370987 0.5370987 -0.8123661 0.5370987 0.5370987 -0.8301795 0.5370987 0.5370987 -0.8475045 0.5370987 0.5370987 -0.8643761 0.5370987 0.5370987 -0.880825 0.5370987 0.5370987 -0.8968787 0.5370987 0.5370987 -0.9125621 0.5370987 0.5370987 -0.9278974 0.5370987 0.5370987 -0.9429048 0.5370987 0.5370987 -0.9576028 0.5370987 0.5370987 -0.9720079 0.5370987 0.5370987 -0.9861357 0.5370987 0.5370987 -1 0.5370987 0.5370987 -0 0.5668815 0.5370987 -0.1939468 0.5668815 0.5370987 -0.2773041 0.5668815 0.5370987 -0.3384659 0.5668815 0.5370987 -0.3885728 0.5668815 0.5370987 -0.4317928 0.5668815 0.5370987 -0.470214 0.5668815 0.5370987 -0.5050551 0.5668815 0.5370987 -0.5370987 0.5668815 0.5370987 -0.5668815 0.5668815 0.5370987 -0.5947903 0.5668815 0.5370987 -0.6211144 0.5668815 0.5370987 -0.6460766 0.5668815 0.5370987 -0.6698526 0.5668815 0.5370987 -0.6925839 0.5668815 0.5370987 -0.7143866 0.5668815 0.5370987 -0.7353569 0.5668815 0.5370987 -0.7555758 0.5668815 0.5370987 -0.7751122 0.5668815 0.5370987 -0.7940252 0.5668815 0.5370987 -0.8123661 0.5668815 0.5370987 -0.8301795 0.5668815 0.5370987 -0.8475045 0.5668815 0.5370987 -0.8643761 0.5668815 0.5370987 -0.880825 0.5668815 0.5370987 -0.8968787 0.5668815 0.5370987 -0.9125621 0.5668815 0.5370987 -0.9278974 0.5668815 0.5370987 -0.9429048 0.5668815 0.5370987 -0.9576028 0.5668815 0.5370987 -0.9720079 0.5668815 0.5370987 -0.9861357 0.5668815 0.5370987 -1 0.5668815 0.5370987 -0 0.5947903 0.5370987 -0.1939468 0.5947903 0.5370987 -0.2773041 0.5947903 0.5370987 -0.3384659 0.5947903 0.5370987 -0.3885728 0.5947903 0.5370987 -0.4317928 0.5947903 0.5370987 -0.470214 0.5947903 0.5370987 -0.5050551 0.5947903 0.5370987 -0.5370987 0.5947903 0.5370987 -0.5668815 0.5947903 0.5370987 -0.5947903 0.5947903 0.5370987 -0.6211144 0.5947903 0.5370987 -0.6460766 0.5947903 0.5370987 -0.6698526 0.5947903 0.5370987 -0.6925839 0.5947903 0.5370987 -0.7143866 0.5947903 0.5370987 -0.7353569 0.5947903 0.5370987 -0.7555758 0.5947903 0.5370987 -0.7751122 0.5947903 0.5370987 -0.7940252 0.5947903 0.5370987 -0.8123661 0.5947903 0.5370987 -0.8301795 0.5947903 0.5370987 -0.8475045 0.5947903 0.5370987 -0.8643761 0.5947903 0.5370987 -0.880825 0.5947903 0.5370987 -0.8968787 0.5947903 0.5370987 -0.9125621 0.5947903 0.5370987 -0.9278974 0.5947903 0.5370987 -0.9429048 0.5947903 0.5370987 -0.9576028 0.5947903 0.5370987 -0.9720079 0.5947903 0.5370987 -0.9861357 0.5947903 0.5370987 -1 0.5947903 0.5370987 -0 0.6211144 0.5370987 -0.1939468 0.6211144 0.5370987 -0.2773041 0.6211144 0.5370987 -0.3384659 0.6211144 0.5370987 -0.3885728 0.6211144 0.5370987 -0.4317928 0.6211144 0.5370987 -0.470214 0.6211144 0.5370987 -0.5050551 0.6211144 0.5370987 -0.5370987 0.6211144 0.5370987 -0.5668815 0.6211144 0.5370987 -0.5947903 0.6211144 0.5370987 -0.6211144 0.6211144 0.5370987 -0.6460766 0.6211144 0.5370987 -0.6698526 0.6211144 0.5370987 -0.6925839 0.6211144 0.5370987 -0.7143866 0.6211144 0.5370987 -0.7353569 0.6211144 0.5370987 -0.7555758 0.6211144 0.5370987 -0.7751122 0.6211144 0.5370987 -0.7940252 0.6211144 0.5370987 -0.8123661 0.6211144 0.5370987 -0.8301795 0.6211144 0.5370987 -0.8475045 0.6211144 0.5370987 -0.8643761 0.6211144 0.5370987 -0.880825 0.6211144 0.5370987 -0.8968787 0.6211144 0.5370987 -0.9125621 0.6211144 0.5370987 -0.9278974 0.6211144 0.5370987 -0.9429048 0.6211144 0.5370987 -0.9576028 0.6211144 0.5370987 -0.9720079 0.6211144 0.5370987 -0.9861357 0.6211144 0.5370987 -1 0.6211144 0.5370987 -0 0.6460766 0.5370987 -0.1939468 0.6460766 0.5370987 -0.2773041 0.6460766 0.5370987 -0.3384659 0.6460766 0.5370987 -0.3885728 0.6460766 0.5370987 -0.4317928 0.6460766 0.5370987 -0.470214 0.6460766 0.5370987 -0.5050551 0.6460766 0.5370987 -0.5370987 0.6460766 0.5370987 -0.5668815 0.6460766 0.5370987 -0.5947903 0.6460766 0.5370987 -0.6211144 0.6460766 0.5370987 -0.6460766 0.6460766 0.5370987 -0.6698526 0.6460766 0.5370987 -0.6925839 0.6460766 0.5370987 -0.7143866 0.6460766 0.5370987 -0.7353569 0.6460766 0.5370987 -0.7555758 0.6460766 0.5370987 -0.7751122 0.6460766 0.5370987 -0.7940252 0.6460766 0.5370987 -0.8123661 0.6460766 0.5370987 -0.8301795 0.6460766 0.5370987 -0.8475045 0.6460766 0.5370987 -0.8643761 0.6460766 0.5370987 -0.880825 0.6460766 0.5370987 -0.8968787 0.6460766 0.5370987 -0.9125621 0.6460766 0.5370987 -0.9278974 0.6460766 0.5370987 -0.9429048 0.6460766 0.5370987 -0.9576028 0.6460766 0.5370987 -0.9720079 0.6460766 0.5370987 -0.9861357 0.6460766 0.5370987 -1 0.6460766 0.5370987 -0 0.6698526 0.5370987 -0.1939468 0.6698526 0.5370987 -0.2773041 0.6698526 0.5370987 -0.3384659 0.6698526 0.5370987 -0.3885728 0.6698526 0.5370987 -0.4317928 0.6698526 0.5370987 -0.470214 0.6698526 0.5370987 -0.5050551 0.6698526 0.5370987 -0.5370987 0.6698526 0.5370987 -0.5668815 0.6698526 0.5370987 -0.5947903 0.6698526 0.5370987 -0.6211144 0.6698526 0.5370987 -0.6460766 0.6698526 0.5370987 -0.6698526 0.6698526 0.5370987 -0.6925839 0.6698526 0.5370987 -0.7143866 0.6698526 0.5370987 -0.7353569 0.6698526 0.5370987 -0.7555758 0.6698526 0.5370987 -0.7751122 0.6698526 0.5370987 -0.7940252 0.6698526 0.5370987 -0.8123661 0.6698526 0.5370987 -0.8301795 0.6698526 0.5370987 -0.8475045 0.6698526 0.5370987 -0.8643761 0.6698526 0.5370987 -0.880825 0.6698526 0.5370987 -0.8968787 0.6698526 0.5370987 -0.9125621 0.6698526 0.5370987 -0.9278974 0.6698526 0.5370987 -0.9429048 0.6698526 0.5370987 -0.9576028 0.6698526 0.5370987 -0.9720079 0.6698526 0.5370987 -0.9861357 0.6698526 0.5370987 -1 0.6698526 0.5370987 -0 0.6925839 0.5370987 -0.1939468 0.6925839 0.5370987 -0.2773041 0.6925839 0.5370987 -0.3384659 0.6925839 0.5370987 -0.3885728 0.6925839 0.5370987 -0.4317928 0.6925839 0.5370987 -0.470214 0.6925839 0.5370987 -0.5050551 0.6925839 0.5370987 -0.5370987 0.6925839 0.5370987 -0.5668815 0.6925839 0.5370987 -0.5947903 0.6925839 0.5370987 -0.6211144 0.6925839 0.5370987 -0.6460766 0.6925839 0.5370987 -0.6698526 0.6925839 0.5370987 -0.6925839 0.6925839 0.5370987 -0.7143866 0.6925839 0.5370987 -0.7353569 0.6925839 0.5370987 -0.7555758 0.6925839 0.5370987 -0.7751122 0.6925839 0.5370987 -0.7940252 0.6925839 0.5370987 -0.8123661 0.6925839 0.5370987 -0.8301795 0.6925839 0.5370987 -0.8475045 0.6925839 0.5370987 -0.8643761 0.6925839 0.5370987 -0.880825 0.6925839 0.5370987 -0.8968787 0.6925839 0.5370987 -0.9125621 0.6925839 0.5370987 -0.9278974 0.6925839 0.5370987 -0.9429048 0.6925839 0.5370987 -0.9576028 0.6925839 0.5370987 -0.9720079 0.6925839 0.5370987 -0.9861357 0.6925839 0.5370987 -1 0.6925839 0.5370987 -0 0.7143866 0.5370987 -0.1939468 0.7143866 0.5370987 -0.2773041 0.7143866 0.5370987 -0.3384659 0.7143866 0.5370987 -0.3885728 0.7143866 0.5370987 -0.4317928 0.7143866 0.5370987 -0.470214 0.7143866 0.5370987 -0.5050551 0.7143866 0.5370987 -0.5370987 0.7143866 0.5370987 -0.5668815 0.7143866 0.5370987 -0.5947903 0.7143866 0.5370987 -0.6211144 0.7143866 0.5370987 -0.6460766 0.7143866 0.5370987 -0.6698526 0.7143866 0.5370987 -0.6925839 0.7143866 0.5370987 -0.7143866 0.7143866 0.5370987 -0.7353569 0.7143866 0.5370987 -0.7555758 0.7143866 0.5370987 -0.7751122 0.7143866 0.5370987 -0.7940252 0.7143866 0.5370987 -0.8123661 0.7143866 0.5370987 -0.8301795 0.7143866 0.5370987 -0.8475045 0.7143866 0.5370987 -0.8643761 0.7143866 0.5370987 -0.880825 0.7143866 0.5370987 -0.8968787 0.7143866 0.5370987 -0.9125621 0.7143866 0.5370987 -0.9278974 0.7143866 0.5370987 -0.9429048 0.7143866 0.5370987 -0.9576028 0.7143866 0.5370987 -0.9720079 0.7143866 0.5370987 -0.9861357 0.7143866 0.5370987 -1 0.7143866 0.5370987 -0 0.7353569 0.5370987 -0.1939468 0.7353569 0.5370987 -0.2773041 0.7353569 0.5370987 -0.3384659 0.7353569 0.5370987 -0.3885728 0.7353569 0.5370987 -0.4317928 0.7353569 0.5370987 -0.470214 0.7353569 0.5370987 -0.5050551 0.7353569 0.5370987 -0.5370987 0.7353569 0.5370987 -0.5668815 0.7353569 0.5370987 -0.5947903 0.7353569 0.5370987 -0.6211144 0.7353569 0.5370987 -0.6460766 0.7353569 0.5370987 -0.6698526 0.7353569 0.5370987 -0.6925839 0.7353569 0.5370987 -0.7143866 0.7353569 0.5370987 -0.7353569 0.7353569 0.5370987 -0.7555758 0.7353569 0.5370987 -0.7751122 0.7353569 0.5370987 -0.7940252 0.7353569 0.5370987 -0.8123661 0.7353569 0.5370987 -0.8301795 0.7353569 0.5370987 -0.8475045 0.7353569 0.5370987 -0.8643761 0.7353569 0.5370987 -0.880825 0.7353569 0.5370987 -0.8968787 0.7353569 0.5370987 -0.9125621 0.7353569 0.5370987 -0.9278974 0.7353569 0.5370987 -0.9429048 0.7353569 0.5370987 -0.9576028 0.7353569 0.5370987 -0.9720079 0.7353569 0.5370987 -0.9861357 0.7353569 0.5370987 -1 0.7353569 0.5370987 -0 0.7555758 0.5370987 -0.1939468 0.7555758 0.5370987 -0.2773041 0.7555758 0.5370987 -0.3384659 0.7555758 0.5370987 -0.3885728 0.7555758 0.5370987 -0.4317928 0.7555758 0.5370987 -0.470214 0.7555758 0.5370987 -0.5050551 0.7555758 0.5370987 -0.5370987 0.7555758 0.5370987 -0.5668815 0.7555758 0.5370987 -0.5947903 0.7555758 0.5370987 -0.6211144 0.7555758 0.5370987 -0.6460766 0.7555758 0.5370987 -0.6698526 0.7555758 0.5370987 -0.6925839 0.7555758 0.5370987 -0.7143866 0.7555758 0.5370987 -0.7353569 0.7555758 0.5370987 -0.7555758 0.7555758 0.5370987 -0.7751122 0.7555758 0.5370987 -0.7940252 0.7555758 0.5370987 -0.8123661 0.7555758 0.5370987 -0.8301795 0.7555758 0.5370987 -0.8475045 0.7555758 0.5370987 -0.8643761 0.7555758 0.5370987 -0.880825 0.7555758 0.5370987 -0.8968787 0.7555758 0.5370987 -0.9125621 0.7555758 0.5370987 -0.9278974 0.7555758 0.5370987 -0.9429048 0.7555758 0.5370987 -0.9576028 0.7555758 0.5370987 -0.9720079 0.7555758 0.5370987 -0.9861357 0.7555758 0.5370987 -1 0.7555758 0.5370987 -0 0.7751122 0.5370987 -0.1939468 0.7751122 0.5370987 -0.2773041 0.7751122 0.5370987 -0.3384659 0.7751122 0.5370987 -0.3885728 0.7751122 0.5370987 -0.4317928 0.7751122 0.5370987 -0.470214 0.7751122 0.5370987 -0.5050551 0.7751122 0.5370987 -0.5370987 0.7751122 0.5370987 -0.5668815 0.7751122 0.5370987 -0.5947903 0.7751122 0.5370987 -0.6211144 0.7751122 0.5370987 -0.6460766 0.7751122 0.5370987 -0.6698526 0.7751122 0.5370987 -0.6925839 0.7751122 0.5370987 -0.7143866 0.7751122 0.5370987 -0.7353569 0.7751122 0.5370987 -0.7555758 0.7751122 0.5370987 -0.7751122 0.7751122 0.5370987 -0.7940252 0.7751122 0.5370987 -0.8123661 0.7751122 0.5370987 -0.8301795 0.7751122 0.5370987 -0.8475045 0.7751122 0.5370987 -0.8643761 0.7751122 0.5370987 -0.880825 0.7751122 0.5370987 -0.8968787 0.7751122 0.5370987 -0.9125621 0.7751122 0.5370987 -0.9278974 0.7751122 0.5370987 -0.9429048 0.7751122 0.5370987 -0.9576028 0.7751122 0.5370987 -0.9720079 0.7751122 0.5370987 -0.9861357 0.7751122 0.5370987 -1 0.7751122 0.5370987 -0 0.7940252 0.5370987 -0.1939468 0.7940252 0.5370987 -0.2773041 0.7940252 0.5370987 -0.3384659 0.7940252 0.5370987 -0.3885728 0.7940252 0.5370987 -0.4317928 0.7940252 0.5370987 -0.470214 0.7940252 0.5370987 -0.5050551 0.7940252 0.5370987 -0.5370987 0.7940252 0.5370987 -0.5668815 0.7940252 0.5370987 -0.5947903 0.7940252 0.5370987 -0.6211144 0.7940252 0.5370987 -0.6460766 0.7940252 0.5370987 -0.6698526 0.7940252 0.5370987 -0.6925839 0.7940252 0.5370987 -0.7143866 0.7940252 0.5370987 -0.7353569 0.7940252 0.5370987 -0.7555758 0.7940252 0.5370987 -0.7751122 0.7940252 0.5370987 -0.7940252 0.7940252 0.5370987 -0.8123661 0.7940252 0.5370987 -0.8301795 0.7940252 0.5370987 -0.8475045 0.7940252 0.5370987 -0.8643761 0.7940252 0.5370987 -0.880825 0.7940252 0.5370987 -0.8968787 0.7940252 0.5370987 -0.9125621 0.7940252 0.5370987 -0.9278974 0.7940252 0.5370987 -0.9429048 0.7940252 0.5370987 -0.9576028 0.7940252 0.5370987 -0.9720079 0.7940252 0.5370987 -0.9861357 0.7940252 0.5370987 -1 0.7940252 0.5370987 -0 0.8123661 0.5370987 -0.1939468 0.8123661 0.5370987 -0.2773041 0.8123661 0.5370987 -0.3384659 0.8123661 0.5370987 -0.3885728 0.8123661 0.5370987 -0.4317928 0.8123661 0.5370987 -0.470214 0.8123661 0.5370987 -0.5050551 0.8123661 0.5370987 -0.5370987 0.8123661 0.5370987 -0.5668815 0.8123661 0.5370987 -0.5947903 0.8123661 0.5370987 -0.6211144 0.8123661 0.5370987 -0.6460766 0.8123661 0.5370987 -0.6698526 0.8123661 0.5370987 -0.6925839 0.8123661 0.5370987 -0.7143866 0.8123661 0.5370987 -0.7353569 0.8123661 0.5370987 -0.7555758 0.8123661 0.5370987 -0.7751122 0.8123661 0.5370987 -0.7940252 0.8123661 0.5370987 -0.8123661 0.8123661 0.5370987 -0.8301795 0.8123661 0.5370987 -0.8475045 0.8123661 0.5370987 -0.8643761 0.8123661 0.5370987 -0.880825 0.8123661 0.5370987 -0.8968787 0.8123661 0.5370987 -0.9125621 0.8123661 0.5370987 -0.9278974 0.8123661 0.5370987 -0.9429048 0.8123661 0.5370987 -0.9576028 0.8123661 0.5370987 -0.9720079 0.8123661 0.5370987 -0.9861357 0.8123661 0.5370987 -1 0.8123661 0.5370987 -0 0.8301795 0.5370987 -0.1939468 0.8301795 0.5370987 -0.2773041 0.8301795 0.5370987 -0.3384659 0.8301795 0.5370987 -0.3885728 0.8301795 0.5370987 -0.4317928 0.8301795 0.5370987 -0.470214 0.8301795 0.5370987 -0.5050551 0.8301795 0.5370987 -0.5370987 0.8301795 0.5370987 -0.5668815 0.8301795 0.5370987 -0.5947903 0.8301795 0.5370987 -0.6211144 0.8301795 0.5370987 -0.6460766 0.8301795 0.5370987 -0.6698526 0.8301795 0.5370987 -0.6925839 0.8301795 0.5370987 -0.7143866 0.8301795 0.5370987 -0.7353569 0.8301795 0.5370987 -0.7555758 0.8301795 0.5370987 -0.7751122 0.8301795 0.5370987 -0.7940252 0.8301795 0.5370987 -0.8123661 0.8301795 0.5370987 -0.8301795 0.8301795 0.5370987 -0.8475045 0.8301795 0.5370987 -0.8643761 0.8301795 0.5370987 -0.880825 0.8301795 0.5370987 -0.8968787 0.8301795 0.5370987 -0.9125621 0.8301795 0.5370987 -0.9278974 0.8301795 0.5370987 -0.9429048 0.8301795 0.5370987 -0.9576028 0.8301795 0.5370987 -0.9720079 0.8301795 0.5370987 -0.9861357 0.8301795 0.5370987 -1 0.8301795 0.5370987 -0 0.8475045 0.5370987 -0.1939468 0.8475045 0.5370987 -0.2773041 0.8475045 0.5370987 -0.3384659 0.8475045 0.5370987 -0.3885728 0.8475045 0.5370987 -0.4317928 0.8475045 0.5370987 -0.470214 0.8475045 0.5370987 -0.5050551 0.8475045 0.5370987 -0.5370987 0.8475045 0.5370987 -0.5668815 0.8475045 0.5370987 -0.5947903 0.8475045 0.5370987 -0.6211144 0.8475045 0.5370987 -0.6460766 0.8475045 0.5370987 -0.6698526 0.8475045 0.5370987 -0.6925839 0.8475045 0.5370987 -0.7143866 0.8475045 0.5370987 -0.7353569 0.8475045 0.5370987 -0.7555758 0.8475045 0.5370987 -0.7751122 0.8475045 0.5370987 -0.7940252 0.8475045 0.5370987 -0.8123661 0.8475045 0.5370987 -0.8301795 0.8475045 0.5370987 -0.8475045 0.8475045 0.5370987 -0.8643761 0.8475045 0.5370987 -0.880825 0.8475045 0.5370987 -0.8968787 0.8475045 0.5370987 -0.9125621 0.8475045 0.5370987 -0.9278974 0.8475045 0.5370987 -0.9429048 0.8475045 0.5370987 -0.9576028 0.8475045 0.5370987 -0.9720079 0.8475045 0.5370987 -0.9861357 0.8475045 0.5370987 -1 0.8475045 0.5370987 -0 0.8643761 0.5370987 -0.1939468 0.8643761 0.5370987 -0.2773041 0.8643761 0.5370987 -0.3384659 0.8643761 0.5370987 -0.3885728 0.8643761 0.5370987 -0.4317928 0.8643761 0.5370987 -0.470214 0.8643761 0.5370987 -0.5050551 0.8643761 0.5370987 -0.5370987 0.8643761 0.5370987 -0.5668815 0.8643761 0.5370987 -0.5947903 0.8643761 0.5370987 -0.6211144 0.8643761 0.5370987 -0.6460766 0.8643761 0.5370987 -0.6698526 0.8643761 0.5370987 -0.6925839 0.8643761 0.5370987 -0.7143866 0.8643761 0.5370987 -0.7353569 0.8643761 0.5370987 -0.7555758 0.8643761 0.5370987 -0.7751122 0.8643761 0.5370987 -0.7940252 0.8643761 0.5370987 -0.8123661 0.8643761 0.5370987 -0.8301795 0.8643761 0.5370987 -0.8475045 0.8643761 0.5370987 -0.8643761 0.8643761 0.5370987 -0.880825 0.8643761 0.5370987 -0.8968787 0.8643761 0.5370987 -0.9125621 0.8643761 0.5370987 -0.9278974 0.8643761 0.5370987 -0.9429048 0.8643761 0.5370987 -0.9576028 0.8643761 0.5370987 -0.9720079 0.8643761 0.5370987 -0.9861357 0.8643761 0.5370987 -1 0.8643761 0.5370987 -0 0.880825 0.5370987 -0.1939468 0.880825 0.5370987 -0.2773041 0.880825 0.5370987 -0.3384659 0.880825 0.5370987 -0.3885728 0.880825 0.5370987 -0.4317928 0.880825 0.5370987 -0.470214 0.880825 0.5370987 -0.5050551 0.880825 0.5370987 -0.5370987 0.880825 0.5370987 -0.5668815 0.880825 0.5370987 -0.5947903 0.880825 0.5370987 -0.6211144 0.880825 0.5370987 -0.6460766 0.880825 0.5370987 -0.6698526 0.880825 0.5370987 -0.6925839 0.880825 0.5370987 -0.7143866 0.880825 0.5370987 -0.7353569 0.880825 0.5370987 -0.7555758 0.880825 0.5370987 -0.7751122 0.880825 0.5370987 -0.7940252 0.880825 0.5370987 -0.8123661 0.880825 0.5370987 -0.8301795 0.880825 0.5370987 -0.8475045 0.880825 0.5370987 -0.8643761 0.880825 0.5370987 -0.880825 0.880825 0.5370987 -0.8968787 0.880825 0.5370987 -0.9125621 0.880825 0.5370987 -0.9278974 0.880825 0.5370987 -0.9429048 0.880825 0.5370987 -0.9576028 0.880825 0.5370987 -0.9720079 0.880825 0.5370987 -0.9861357 0.880825 0.5370987 -1 0.880825 0.5370987 -0 0.8968787 0.5370987 -0.1939468 0.8968787 0.5370987 -0.2773041 0.8968787 0.5370987 -0.3384659 0.8968787 0.5370987 -0.3885728 0.8968787 0.5370987 -0.4317928 0.8968787 0.5370987 -0.470214 0.8968787 0.5370987 -0.5050551 0.8968787 0.5370987 -0.5370987 0.8968787 0.5370987 -0.5668815 0.8968787 0.5370987 -0.5947903 0.8968787 0.5370987 -0.6211144 0.8968787 0.5370987 -0.6460766 0.8968787 0.5370987 -0.6698526 0.8968787 0.5370987 -0.6925839 0.8968787 0.5370987 -0.7143866 0.8968787 0.5370987 -0.7353569 0.8968787 0.5370987 -0.7555758 0.8968787 0.5370987 -0.7751122 0.8968787 0.5370987 -0.7940252 0.8968787 0.5370987 -0.8123661 0.8968787 0.5370987 -0.8301795 0.8968787 0.5370987 -0.8475045 0.8968787 0.5370987 -0.8643761 0.8968787 0.5370987 -0.880825 0.8968787 0.5370987 -0.8968787 0.8968787 0.5370987 -0.9125621 0.8968787 0.5370987 -0.9278974 0.8968787 0.5370987 -0.9429048 0.8968787 0.5370987 -0.9576028 0.8968787 0.5370987 -0.9720079 0.8968787 0.5370987 -0.9861357 0.8968787 0.5370987 -1 0.8968787 0.5370987 -0 0.9125621 0.5370987 -0.1939468 0.9125621 0.5370987 -0.2773041 0.9125621 0.5370987 -0.3384659 0.9125621 0.5370987 -0.3885728 0.9125621 0.5370987 -0.4317928 0.9125621 0.5370987 -0.470214 0.9125621 0.5370987 -0.5050551 0.9125621 0.5370987 -0.5370987 0.9125621 0.5370987 -0.5668815 0.9125621 0.5370987 -0.5947903 0.9125621 0.5370987 -0.6211144 0.9125621 0.5370987 -0.6460766 0.9125621 0.5370987 -0.6698526 0.9125621 0.5370987 -0.6925839 0.9125621 0.5370987 -0.7143866 0.9125621 0.5370987 -0.7353569 0.9125621 0.5370987 -0.7555758 0.9125621 0.5370987 -0.7751122 0.9125621 0.5370987 -0.7940252 0.9125621 0.5370987 -0.8123661 0.9125621 0.5370987 -0.8301795 0.9125621 0.5370987 -0.8475045 0.9125621 0.5370987 -0.8643761 0.9125621 0.5370987 -0.880825 0.9125621 0.5370987 -0.8968787 0.9125621 0.5370987 -0.9125621 0.9125621 0.5370987 -0.9278974 0.9125621 0.5370987 -0.9429048 0.9125621 0.5370987 -0.9576028 0.9125621 0.5370987 -0.9720079 0.9125621 0.5370987 -0.9861357 0.9125621 0.5370987 -1 0.9125621 0.5370987 -0 0.9278974 0.5370987 -0.1939468 0.9278974 0.5370987 -0.2773041 0.9278974 0.5370987 -0.3384659 0.9278974 0.5370987 -0.3885728 0.9278974 0.5370987 -0.4317928 0.9278974 0.5370987 -0.470214 0.9278974 0.5370987 -0.5050551 0.9278974 0.5370987 -0.5370987 0.9278974 0.5370987 -0.5668815 0.9278974 0.5370987 -0.5947903 0.9278974 0.5370987 -0.6211144 0.9278974 0.5370987 -0.6460766 0.9278974 0.5370987 -0.6698526 0.9278974 0.5370987 -0.6925839 0.9278974 0.5370987 -0.7143866 0.9278974 0.5370987 -0.7353569 0.9278974 0.5370987 -0.7555758 0.9278974 0.5370987 -0.7751122 0.9278974 0.5370987 -0.7940252 0.9278974 0.5370987 -0.8123661 0.9278974 0.5370987 -0.8301795 0.9278974 0.5370987 -0.8475045 0.9278974 0.5370987 -0.8643761 0.9278974 0.5370987 -0.880825 0.9278974 0.5370987 -0.8968787 0.9278974 0.5370987 -0.9125621 0.9278974 0.5370987 -0.9278974 0.9278974 0.5370987 -0.9429048 0.9278974 0.5370987 -0.9576028 0.9278974 0.5370987 -0.9720079 0.9278974 0.5370987 -0.9861357 0.9278974 0.5370987 -1 0.9278974 0.5370987 -0 0.9429048 0.5370987 -0.1939468 0.9429048 0.5370987 -0.2773041 0.9429048 0.5370987 -0.3384659 0.9429048 0.5370987 -0.3885728 0.9429048 0.5370987 -0.4317928 0.9429048 0.5370987 -0.470214 0.9429048 0.5370987 -0.5050551 0.9429048 0.5370987 -0.5370987 0.9429048 0.5370987 -0.5668815 0.9429048 0.5370987 -0.5947903 0.9429048 0.5370987 -0.6211144 0.9429048 0.5370987 -0.6460766 0.9429048 0.5370987 -0.6698526 0.9429048 0.5370987 -0.6925839 0.9429048 0.5370987 -0.7143866 0.9429048 0.5370987 -0.7353569 0.9429048 0.5370987 -0.7555758 0.9429048 0.5370987 -0.7751122 0.9429048 0.5370987 -0.7940252 0.9429048 0.5370987 -0.8123661 0.9429048 0.5370987 -0.8301795 0.9429048 0.5370987 -0.8475045 0.9429048 0.5370987 -0.8643761 0.9429048 0.5370987 -0.880825 0.9429048 0.5370987 -0.8968787 0.9429048 0.5370987 -0.9125621 0.9429048 0.5370987 -0.9278974 0.9429048 0.5370987 -0.9429048 0.9429048 0.5370987 -0.9576028 0.9429048 0.5370987 -0.9720079 0.9429048 0.5370987 -0.9861357 0.9429048 0.5370987 -1 0.9429048 0.5370987 -0 0.9576028 0.5370987 -0.1939468 0.9576028 0.5370987 -0.2773041 0.9576028 0.5370987 -0.3384659 0.9576028 0.5370987 -0.3885728 0.9576028 0.5370987 -0.4317928 0.9576028 0.5370987 -0.470214 0.9576028 0.5370987 -0.5050551 0.9576028 0.5370987 -0.5370987 0.9576028 0.5370987 -0.5668815 0.9576028 0.5370987 -0.5947903 0.9576028 0.5370987 -0.6211144 0.9576028 0.5370987 -0.6460766 0.9576028 0.5370987 -0.6698526 0.9576028 0.5370987 -0.6925839 0.9576028 0.5370987 -0.7143866 0.9576028 0.5370987 -0.7353569 0.9576028 0.5370987 -0.7555758 0.9576028 0.5370987 -0.7751122 0.9576028 0.5370987 -0.7940252 0.9576028 0.5370987 -0.8123661 0.9576028 0.5370987 -0.8301795 0.9576028 0.5370987 -0.8475045 0.9576028 0.5370987 -0.8643761 0.9576028 0.5370987 -0.880825 0.9576028 0.5370987 -0.8968787 0.9576028 0.5370987 -0.9125621 0.9576028 0.5370987 -0.9278974 0.9576028 0.5370987 -0.9429048 0.9576028 0.5370987 -0.9576028 0.9576028 0.5370987 -0.9720079 0.9576028 0.5370987 -0.9861357 0.9576028 0.5370987 -1 0.9576028 0.5370987 -0 0.9720079 0.5370987 -0.1939468 0.9720079 0.5370987 -0.2773041 0.9720079 0.5370987 -0.3384659 0.9720079 0.5370987 -0.3885728 0.9720079 0.5370987 -0.4317928 0.9720079 0.5370987 -0.470214 0.9720079 0.5370987 -0.5050551 0.9720079 0.5370987 -0.5370987 0.9720079 0.5370987 -0.5668815 0.9720079 0.5370987 -0.5947903 0.9720079 0.5370987 -0.6211144 0.9720079 0.5370987 -0.6460766 0.9720079 0.5370987 -0.6698526 0.9720079 0.5370987 -0.6925839 0.9720079 0.5370987 -0.7143866 0.9720079 0.5370987 -0.7353569 0.9720079 0.5370987 -0.7555758 0.9720079 0.5370987 -0.7751122 0.9720079 0.5370987 -0.7940252 0.9720079 0.5370987 -0.8123661 0.9720079 0.5370987 -0.8301795 0.9720079 0.5370987 -0.8475045 0.9720079 0.5370987 -0.8643761 0.9720079 0.5370987 -0.880825 0.9720079 0.5370987 -0.8968787 0.9720079 0.5370987 -0.9125621 0.9720079 0.5370987 -0.9278974 0.9720079 0.5370987 -0.9429048 0.9720079 0.5370987 -0.9576028 0.9720079 0.5370987 -0.9720079 0.9720079 0.5370987 -0.9861357 0.9720079 0.5370987 -1 0.9720079 0.5370987 -0 0.9861357 0.5370987 -0.1939468 0.9861357 0.5370987 -0.2773041 0.9861357 0.5370987 -0.3384659 0.9861357 0.5370987 -0.3885728 0.9861357 0.5370987 -0.4317928 0.9861357 0.5370987 -0.470214 0.9861357 0.5370987 -0.5050551 0.9861357 0.5370987 -0.5370987 0.9861357 0.5370987 -0.5668815 0.9861357 0.5370987 -0.5947903 0.9861357 0.5370987 -0.6211144 0.9861357 0.5370987 -0.6460766 0.9861357 0.5370987 -0.6698526 0.9861357 0.5370987 -0.6925839 0.9861357 0.5370987 -0.7143866 0.9861357 0.5370987 -0.7353569 0.9861357 0.5370987 -0.7555758 0.9861357 0.5370987 -0.7751122 0.9861357 0.5370987 -0.7940252 0.9861357 0.5370987 -0.8123661 0.9861357 0.5370987 -0.8301795 0.9861357 0.5370987 -0.8475045 0.9861357 0.5370987 -0.8643761 0.9861357 0.5370987 -0.880825 0.9861357 0.5370987 -0.8968787 0.9861357 0.5370987 -0.9125621 0.9861357 0.5370987 -0.9278974 0.9861357 0.5370987 -0.9429048 0.9861357 0.5370987 -0.9576028 0.9861357 0.5370987 -0.9720079 0.9861357 0.5370987 -0.9861357 0.9861357 0.5370987 -1 0.9861357 0.5370987 -0 1 0.5370987 -0.1939468 1 0.5370987 -0.2773041 1 0.5370987 -0.3384659 1 0.5370987 -0.3885728 1 0.5370987 -0.4317928 1 0.5370987 -0.470214 1 0.5370987 -0.5050551 1 0.5370987 -0.5370987 1 0.5370987 -0.5668815 1 0.5370987 -0.5947903 1 0.5370987 -0.6211144 1 0.5370987 -0.6460766 1 0.5370987 -0.6698526 1 0.5370987 -0.6925839 1 0.5370987 -0.7143866 1 0.5370987 -0.7353569 1 0.5370987 -0.7555758 1 0.5370987 -0.7751122 1 0.5370987 -0.7940252 1 0.5370987 -0.8123661 1 0.5370987 -0.8301795 1 0.5370987 -0.8475045 1 0.5370987 -0.8643761 1 0.5370987 -0.880825 1 0.5370987 -0.8968787 1 0.5370987 -0.9125621 1 0.5370987 -0.9278974 1 0.5370987 -0.9429048 1 0.5370987 -0.9576028 1 0.5370987 -0.9720079 1 0.5370987 -0.9861357 1 0.5370987 -1 1 0.5370987 -0 0 0.5668815 -0.1939468 0 0.5668815 -0.2773041 0 0.5668815 -0.3384659 0 0.5668815 -0.3885728 0 0.5668815 -0.4317928 0 0.5668815 -0.470214 0 0.5668815 -0.5050551 0 0.5668815 -0.5370987 0 0.5668815 -0.5668815 0 0.5668815 -0.5947903 0 0.5668815 -0.6211144 0 0.5668815 -0.6460766 0 0.5668815 -0.6698526 0 0.5668815 -0.6925839 0 0.5668815 -0.7143866 0 0.5668815 -0.7353569 0 0.5668815 -0.7555758 0 0.5668815 -0.7751122 0 0.5668815 -0.7940252 0 0.5668815 -0.8123661 0 0.5668815 -0.8301795 0 0.5668815 -0.8475045 0 0.5668815 -0.8643761 0 0.5668815 -0.880825 0 0.5668815 -0.8968787 0 0.5668815 -0.9125621 0 0.5668815 -0.9278974 0 0.5668815 -0.9429048 0 0.5668815 -0.9576028 0 0.5668815 -0.9720079 0 0.5668815 -0.9861357 0 0.5668815 -1 0 0.5668815 -0 0.1939468 0.5668815 -0.1939468 0.1939468 0.5668815 -0.2773041 0.1939468 0.5668815 -0.3384659 0.1939468 0.5668815 -0.3885728 0.1939468 0.5668815 -0.4317928 0.1939468 0.5668815 -0.470214 0.1939468 0.5668815 -0.5050551 0.1939468 0.5668815 -0.5370987 0.1939468 0.5668815 -0.5668815 0.1939468 0.5668815 -0.5947903 0.1939468 0.5668815 -0.6211144 0.1939468 0.5668815 -0.6460766 0.1939468 0.5668815 -0.6698526 0.1939468 0.5668815 -0.6925839 0.1939468 0.5668815 -0.7143866 0.1939468 0.5668815 -0.7353569 0.1939468 0.5668815 -0.7555758 0.1939468 0.5668815 -0.7751122 0.1939468 0.5668815 -0.7940252 0.1939468 0.5668815 -0.8123661 0.1939468 0.5668815 -0.8301795 0.1939468 0.5668815 -0.8475045 0.1939468 0.5668815 -0.8643761 0.1939468 0.5668815 -0.880825 0.1939468 0.5668815 -0.8968787 0.1939468 0.5668815 -0.9125621 0.1939468 0.5668815 -0.9278974 0.1939468 0.5668815 -0.9429048 0.1939468 0.5668815 -0.9576028 0.1939468 0.5668815 -0.9720079 0.1939468 0.5668815 -0.9861357 0.1939468 0.5668815 -1 0.1939468 0.5668815 -0 0.2773041 0.5668815 -0.1939468 0.2773041 0.5668815 -0.2773041 0.2773041 0.5668815 -0.3384659 0.2773041 0.5668815 -0.3885728 0.2773041 0.5668815 -0.4317928 0.2773041 0.5668815 -0.470214 0.2773041 0.5668815 -0.5050551 0.2773041 0.5668815 -0.5370987 0.2773041 0.5668815 -0.5668815 0.2773041 0.5668815 -0.5947903 0.2773041 0.5668815 -0.6211144 0.2773041 0.5668815 -0.6460766 0.2773041 0.5668815 -0.6698526 0.2773041 0.5668815 -0.6925839 0.2773041 0.5668815 -0.7143866 0.2773041 0.5668815 -0.7353569 0.2773041 0.5668815 -0.7555758 0.2773041 0.5668815 -0.7751122 0.2773041 0.5668815 -0.7940252 0.2773041 0.5668815 -0.8123661 0.2773041 0.5668815 -0.8301795 0.2773041 0.5668815 -0.8475045 0.2773041 0.5668815 -0.8643761 0.2773041 0.5668815 -0.880825 0.2773041 0.5668815 -0.8968787 0.2773041 0.5668815 -0.9125621 0.2773041 0.5668815 -0.9278974 0.2773041 0.5668815 -0.9429048 0.2773041 0.5668815 -0.9576028 0.2773041 0.5668815 -0.9720079 0.2773041 0.5668815 -0.9861357 0.2773041 0.5668815 -1 0.2773041 0.5668815 -0 0.3384659 0.5668815 -0.1939468 0.3384659 0.5668815 -0.2773041 0.3384659 0.5668815 -0.3384659 0.3384659 0.5668815 -0.3885728 0.3384659 0.5668815 -0.4317928 0.3384659 0.5668815 -0.470214 0.3384659 0.5668815 -0.5050551 0.3384659 0.5668815 -0.5370987 0.3384659 0.5668815 -0.5668815 0.3384659 0.5668815 -0.5947903 0.3384659 0.5668815 -0.6211144 0.3384659 0.5668815 -0.6460766 0.3384659 0.5668815 -0.6698526 0.3384659 0.5668815 -0.6925839 0.3384659 0.5668815 -0.7143866 0.3384659 0.5668815 -0.7353569 0.3384659 0.5668815 -0.7555758 0.3384659 0.5668815 -0.7751122 0.3384659 0.5668815 -0.7940252 0.3384659 0.5668815 -0.8123661 0.3384659 0.5668815 -0.8301795 0.3384659 0.5668815 -0.8475045 0.3384659 0.5668815 -0.8643761 0.3384659 0.5668815 -0.880825 0.3384659 0.5668815 -0.8968787 0.3384659 0.5668815 -0.9125621 0.3384659 0.5668815 -0.9278974 0.3384659 0.5668815 -0.9429048 0.3384659 0.5668815 -0.9576028 0.3384659 0.5668815 -0.9720079 0.3384659 0.5668815 -0.9861357 0.3384659 0.5668815 -1 0.3384659 0.5668815 -0 0.3885728 0.5668815 -0.1939468 0.3885728 0.5668815 -0.2773041 0.3885728 0.5668815 -0.3384659 0.3885728 0.5668815 -0.3885728 0.3885728 0.5668815 -0.4317928 0.3885728 0.5668815 -0.470214 0.3885728 0.5668815 -0.5050551 0.3885728 0.5668815 -0.5370987 0.3885728 0.5668815 -0.5668815 0.3885728 0.5668815 -0.5947903 0.3885728 0.5668815 -0.6211144 0.3885728 0.5668815 -0.6460766 0.3885728 0.5668815 -0.6698526 0.3885728 0.5668815 -0.6925839 0.3885728 0.5668815 -0.7143866 0.3885728 0.5668815 -0.7353569 0.3885728 0.5668815 -0.7555758 0.3885728 0.5668815 -0.7751122 0.3885728 0.5668815 -0.7940252 0.3885728 0.5668815 -0.8123661 0.3885728 0.5668815 -0.8301795 0.3885728 0.5668815 -0.8475045 0.3885728 0.5668815 -0.8643761 0.3885728 0.5668815 -0.880825 0.3885728 0.5668815 -0.8968787 0.3885728 0.5668815 -0.9125621 0.3885728 0.5668815 -0.9278974 0.3885728 0.5668815 -0.9429048 0.3885728 0.5668815 -0.9576028 0.3885728 0.5668815 -0.9720079 0.3885728 0.5668815 -0.9861357 0.3885728 0.5668815 -1 0.3885728 0.5668815 -0 0.4317928 0.5668815 -0.1939468 0.4317928 0.5668815 -0.2773041 0.4317928 0.5668815 -0.3384659 0.4317928 0.5668815 -0.3885728 0.4317928 0.5668815 -0.4317928 0.4317928 0.5668815 -0.470214 0.4317928 0.5668815 -0.5050551 0.4317928 0.5668815 -0.5370987 0.4317928 0.5668815 -0.5668815 0.4317928 0.5668815 -0.5947903 0.4317928 0.5668815 -0.6211144 0.4317928 0.5668815 -0.6460766 0.4317928 0.5668815 -0.6698526 0.4317928 0.5668815 -0.6925839 0.4317928 0.5668815 -0.7143866 0.4317928 0.5668815 -0.7353569 0.4317928 0.5668815 -0.7555758 0.4317928 0.5668815 -0.7751122 0.4317928 0.5668815 -0.7940252 0.4317928 0.5668815 -0.8123661 0.4317928 0.5668815 -0.8301795 0.4317928 0.5668815 -0.8475045 0.4317928 0.5668815 -0.8643761 0.4317928 0.5668815 -0.880825 0.4317928 0.5668815 -0.8968787 0.4317928 0.5668815 -0.9125621 0.4317928 0.5668815 -0.9278974 0.4317928 0.5668815 -0.9429048 0.4317928 0.5668815 -0.9576028 0.4317928 0.5668815 -0.9720079 0.4317928 0.5668815 -0.9861357 0.4317928 0.5668815 -1 0.4317928 0.5668815 -0 0.470214 0.5668815 -0.1939468 0.470214 0.5668815 -0.2773041 0.470214 0.5668815 -0.3384659 0.470214 0.5668815 -0.3885728 0.470214 0.5668815 -0.4317928 0.470214 0.5668815 -0.470214 0.470214 0.5668815 -0.5050551 0.470214 0.5668815 -0.5370987 0.470214 0.5668815 -0.5668815 0.470214 0.5668815 -0.5947903 0.470214 0.5668815 -0.6211144 0.470214 0.5668815 -0.6460766 0.470214 0.5668815 -0.6698526 0.470214 0.5668815 -0.6925839 0.470214 0.5668815 -0.7143866 0.470214 0.5668815 -0.7353569 0.470214 0.5668815 -0.7555758 0.470214 0.5668815 -0.7751122 0.470214 0.5668815 -0.7940252 0.470214 0.5668815 -0.8123661 0.470214 0.5668815 -0.8301795 0.470214 0.5668815 -0.8475045 0.470214 0.5668815 -0.8643761 0.470214 0.5668815 -0.880825 0.470214 0.5668815 -0.8968787 0.470214 0.5668815 -0.9125621 0.470214 0.5668815 -0.9278974 0.470214 0.5668815 -0.9429048 0.470214 0.5668815 -0.9576028 0.470214 0.5668815 -0.9720079 0.470214 0.5668815 -0.9861357 0.470214 0.5668815 -1 0.470214 0.5668815 -0 0.5050551 0.5668815 -0.1939468 0.5050551 0.5668815 -0.2773041 0.5050551 0.5668815 -0.3384659 0.5050551 0.5668815 -0.3885728 0.5050551 0.5668815 -0.4317928 0.5050551 0.5668815 -0.470214 0.5050551 0.5668815 -0.5050551 0.5050551 0.5668815 -0.5370987 0.5050551 0.5668815 -0.5668815 0.5050551 0.5668815 -0.5947903 0.5050551 0.5668815 -0.6211144 0.5050551 0.5668815 -0.6460766 0.5050551 0.5668815 -0.6698526 0.5050551 0.5668815 -0.6925839 0.5050551 0.5668815 -0.7143866 0.5050551 0.5668815 -0.7353569 0.5050551 0.5668815 -0.7555758 0.5050551 0.5668815 -0.7751122 0.5050551 0.5668815 -0.7940252 0.5050551 0.5668815 -0.8123661 0.5050551 0.5668815 -0.8301795 0.5050551 0.5668815 -0.8475045 0.5050551 0.5668815 -0.8643761 0.5050551 0.5668815 -0.880825 0.5050551 0.5668815 -0.8968787 0.5050551 0.5668815 -0.9125621 0.5050551 0.5668815 -0.9278974 0.5050551 0.5668815 -0.9429048 0.5050551 0.5668815 -0.9576028 0.5050551 0.5668815 -0.9720079 0.5050551 0.5668815 -0.9861357 0.5050551 0.5668815 -1 0.5050551 0.5668815 -0 0.5370987 0.5668815 -0.1939468 0.5370987 0.5668815 -0.2773041 0.5370987 0.5668815 -0.3384659 0.5370987 0.5668815 -0.3885728 0.5370987 0.5668815 -0.4317928 0.5370987 0.5668815 -0.470214 0.5370987 0.5668815 -0.5050551 0.5370987 0.5668815 -0.5370987 0.5370987 0.5668815 -0.5668815 0.5370987 0.5668815 -0.5947903 0.5370987 0.5668815 -0.6211144 0.5370987 0.5668815 -0.6460766 0.5370987 0.5668815 -0.6698526 0.5370987 0.5668815 -0.6925839 0.5370987 0.5668815 -0.7143866 0.5370987 0.5668815 -0.7353569 0.5370987 0.5668815 -0.7555758 0.5370987 0.5668815 -0.7751122 0.5370987 0.5668815 -0.7940252 0.5370987 0.5668815 -0.8123661 0.5370987 0.5668815 -0.8301795 0.5370987 0.5668815 -0.8475045 0.5370987 0.5668815 -0.8643761 0.5370987 0.5668815 -0.880825 0.5370987 0.5668815 -0.8968787 0.5370987 0.5668815 -0.9125621 0.5370987 0.5668815 -0.9278974 0.5370987 0.5668815 -0.9429048 0.5370987 0.5668815 -0.9576028 0.5370987 0.5668815 -0.9720079 0.5370987 0.5668815 -0.9861357 0.5370987 0.5668815 -1 0.5370987 0.5668815 -0 0.5668815 0.5668815 -0.1939468 0.5668815 0.5668815 -0.2773041 0.5668815 0.5668815 -0.3384659 0.5668815 0.5668815 -0.3885728 0.5668815 0.5668815 -0.4317928 0.5668815 0.5668815 -0.470214 0.5668815 0.5668815 -0.5050551 0.5668815 0.5668815 -0.5370987 0.5668815 0.5668815 -0.5668815 0.5668815 0.5668815 -0.5947903 0.5668815 0.5668815 -0.6211144 0.5668815 0.5668815 -0.6460766 0.5668815 0.5668815 -0.6698526 0.5668815 0.5668815 -0.6925839 0.5668815 0.5668815 -0.7143866 0.5668815 0.5668815 -0.7353569 0.5668815 0.5668815 -0.7555758 0.5668815 0.5668815 -0.7751122 0.5668815 0.5668815 -0.7940252 0.5668815 0.5668815 -0.8123661 0.5668815 0.5668815 -0.8301795 0.5668815 0.5668815 -0.8475045 0.5668815 0.5668815 -0.8643761 0.5668815 0.5668815 -0.880825 0.5668815 0.5668815 -0.8968787 0.5668815 0.5668815 -0.9125621 0.5668815 0.5668815 -0.9278974 0.5668815 0.5668815 -0.9429048 0.5668815 0.5668815 -0.9576028 0.5668815 0.5668815 -0.9720079 0.5668815 0.5668815 -0.9861357 0.5668815 0.5668815 -1 0.5668815 0.5668815 -0 0.5947903 0.5668815 -0.1939468 0.5947903 0.5668815 -0.2773041 0.5947903 0.5668815 -0.3384659 0.5947903 0.5668815 -0.3885728 0.5947903 0.5668815 -0.4317928 0.5947903 0.5668815 -0.470214 0.5947903 0.5668815 -0.5050551 0.5947903 0.5668815 -0.5370987 0.5947903 0.5668815 -0.5668815 0.5947903 0.5668815 -0.5947903 0.5947903 0.5668815 -0.6211144 0.5947903 0.5668815 -0.6460766 0.5947903 0.5668815 -0.6698526 0.5947903 0.5668815 -0.6925839 0.5947903 0.5668815 -0.7143866 0.5947903 0.5668815 -0.7353569 0.5947903 0.5668815 -0.7555758 0.5947903 0.5668815 -0.7751122 0.5947903 0.5668815 -0.7940252 0.5947903 0.5668815 -0.8123661 0.5947903 0.5668815 -0.8301795 0.5947903 0.5668815 -0.8475045 0.5947903 0.5668815 -0.8643761 0.5947903 0.5668815 -0.880825 0.5947903 0.5668815 -0.8968787 0.5947903 0.5668815 -0.9125621 0.5947903 0.5668815 -0.9278974 0.5947903 0.5668815 -0.9429048 0.5947903 0.5668815 -0.9576028 0.5947903 0.5668815 -0.9720079 0.5947903 0.5668815 -0.9861357 0.5947903 0.5668815 -1 0.5947903 0.5668815 -0 0.6211144 0.5668815 -0.1939468 0.6211144 0.5668815 -0.2773041 0.6211144 0.5668815 -0.3384659 0.6211144 0.5668815 -0.3885728 0.6211144 0.5668815 -0.4317928 0.6211144 0.5668815 -0.470214 0.6211144 0.5668815 -0.5050551 0.6211144 0.5668815 -0.5370987 0.6211144 0.5668815 -0.5668815 0.6211144 0.5668815 -0.5947903 0.6211144 0.5668815 -0.6211144 0.6211144 0.5668815 -0.6460766 0.6211144 0.5668815 -0.6698526 0.6211144 0.5668815 -0.6925839 0.6211144 0.5668815 -0.7143866 0.6211144 0.5668815 -0.7353569 0.6211144 0.5668815 -0.7555758 0.6211144 0.5668815 -0.7751122 0.6211144 0.5668815 -0.7940252 0.6211144 0.5668815 -0.8123661 0.6211144 0.5668815 -0.8301795 0.6211144 0.5668815 -0.8475045 0.6211144 0.5668815 -0.8643761 0.6211144 0.5668815 -0.880825 0.6211144 0.5668815 -0.8968787 0.6211144 0.5668815 -0.9125621 0.6211144 0.5668815 -0.9278974 0.6211144 0.5668815 -0.9429048 0.6211144 0.5668815 -0.9576028 0.6211144 0.5668815 -0.9720079 0.6211144 0.5668815 -0.9861357 0.6211144 0.5668815 -1 0.6211144 0.5668815 -0 0.6460766 0.5668815 -0.1939468 0.6460766 0.5668815 -0.2773041 0.6460766 0.5668815 -0.3384659 0.6460766 0.5668815 -0.3885728 0.6460766 0.5668815 -0.4317928 0.6460766 0.5668815 -0.470214 0.6460766 0.5668815 -0.5050551 0.6460766 0.5668815 -0.5370987 0.6460766 0.5668815 -0.5668815 0.6460766 0.5668815 -0.5947903 0.6460766 0.5668815 -0.6211144 0.6460766 0.5668815 -0.6460766 0.6460766 0.5668815 -0.6698526 0.6460766 0.5668815 -0.6925839 0.6460766 0.5668815 -0.7143866 0.6460766 0.5668815 -0.7353569 0.6460766 0.5668815 -0.7555758 0.6460766 0.5668815 -0.7751122 0.6460766 0.5668815 -0.7940252 0.6460766 0.5668815 -0.8123661 0.6460766 0.5668815 -0.8301795 0.6460766 0.5668815 -0.8475045 0.6460766 0.5668815 -0.8643761 0.6460766 0.5668815 -0.880825 0.6460766 0.5668815 -0.8968787 0.6460766 0.5668815 -0.9125621 0.6460766 0.5668815 -0.9278974 0.6460766 0.5668815 -0.9429048 0.6460766 0.5668815 -0.9576028 0.6460766 0.5668815 -0.9720079 0.6460766 0.5668815 -0.9861357 0.6460766 0.5668815 -1 0.6460766 0.5668815 -0 0.6698526 0.5668815 -0.1939468 0.6698526 0.5668815 -0.2773041 0.6698526 0.5668815 -0.3384659 0.6698526 0.5668815 -0.3885728 0.6698526 0.5668815 -0.4317928 0.6698526 0.5668815 -0.470214 0.6698526 0.5668815 -0.5050551 0.6698526 0.5668815 -0.5370987 0.6698526 0.5668815 -0.5668815 0.6698526 0.5668815 -0.5947903 0.6698526 0.5668815 -0.6211144 0.6698526 0.5668815 -0.6460766 0.6698526 0.5668815 -0.6698526 0.6698526 0.5668815 -0.6925839 0.6698526 0.5668815 -0.7143866 0.6698526 0.5668815 -0.7353569 0.6698526 0.5668815 -0.7555758 0.6698526 0.5668815 -0.7751122 0.6698526 0.5668815 -0.7940252 0.6698526 0.5668815 -0.8123661 0.6698526 0.5668815 -0.8301795 0.6698526 0.5668815 -0.8475045 0.6698526 0.5668815 -0.8643761 0.6698526 0.5668815 -0.880825 0.6698526 0.5668815 -0.8968787 0.6698526 0.5668815 -0.9125621 0.6698526 0.5668815 -0.9278974 0.6698526 0.5668815 -0.9429048 0.6698526 0.5668815 -0.9576028 0.6698526 0.5668815 -0.9720079 0.6698526 0.5668815 -0.9861357 0.6698526 0.5668815 -1 0.6698526 0.5668815 -0 0.6925839 0.5668815 -0.1939468 0.6925839 0.5668815 -0.2773041 0.6925839 0.5668815 -0.3384659 0.6925839 0.5668815 -0.3885728 0.6925839 0.5668815 -0.4317928 0.6925839 0.5668815 -0.470214 0.6925839 0.5668815 -0.5050551 0.6925839 0.5668815 -0.5370987 0.6925839 0.5668815 -0.5668815 0.6925839 0.5668815 -0.5947903 0.6925839 0.5668815 -0.6211144 0.6925839 0.5668815 -0.6460766 0.6925839 0.5668815 -0.6698526 0.6925839 0.5668815 -0.6925839 0.6925839 0.5668815 -0.7143866 0.6925839 0.5668815 -0.7353569 0.6925839 0.5668815 -0.7555758 0.6925839 0.5668815 -0.7751122 0.6925839 0.5668815 -0.7940252 0.6925839 0.5668815 -0.8123661 0.6925839 0.5668815 -0.8301795 0.6925839 0.5668815 -0.8475045 0.6925839 0.5668815 -0.8643761 0.6925839 0.5668815 -0.880825 0.6925839 0.5668815 -0.8968787 0.6925839 0.5668815 -0.9125621 0.6925839 0.5668815 -0.9278974 0.6925839 0.5668815 -0.9429048 0.6925839 0.5668815 -0.9576028 0.6925839 0.5668815 -0.9720079 0.6925839 0.5668815 -0.9861357 0.6925839 0.5668815 -1 0.6925839 0.5668815 -0 0.7143866 0.5668815 -0.1939468 0.7143866 0.5668815 -0.2773041 0.7143866 0.5668815 -0.3384659 0.7143866 0.5668815 -0.3885728 0.7143866 0.5668815 -0.4317928 0.7143866 0.5668815 -0.470214 0.7143866 0.5668815 -0.5050551 0.7143866 0.5668815 -0.5370987 0.7143866 0.5668815 -0.5668815 0.7143866 0.5668815 -0.5947903 0.7143866 0.5668815 -0.6211144 0.7143866 0.5668815 -0.6460766 0.7143866 0.5668815 -0.6698526 0.7143866 0.5668815 -0.6925839 0.7143866 0.5668815 -0.7143866 0.7143866 0.5668815 -0.7353569 0.7143866 0.5668815 -0.7555758 0.7143866 0.5668815 -0.7751122 0.7143866 0.5668815 -0.7940252 0.7143866 0.5668815 -0.8123661 0.7143866 0.5668815 -0.8301795 0.7143866 0.5668815 -0.8475045 0.7143866 0.5668815 -0.8643761 0.7143866 0.5668815 -0.880825 0.7143866 0.5668815 -0.8968787 0.7143866 0.5668815 -0.9125621 0.7143866 0.5668815 -0.9278974 0.7143866 0.5668815 -0.9429048 0.7143866 0.5668815 -0.9576028 0.7143866 0.5668815 -0.9720079 0.7143866 0.5668815 -0.9861357 0.7143866 0.5668815 -1 0.7143866 0.5668815 -0 0.7353569 0.5668815 -0.1939468 0.7353569 0.5668815 -0.2773041 0.7353569 0.5668815 -0.3384659 0.7353569 0.5668815 -0.3885728 0.7353569 0.5668815 -0.4317928 0.7353569 0.5668815 -0.470214 0.7353569 0.5668815 -0.5050551 0.7353569 0.5668815 -0.5370987 0.7353569 0.5668815 -0.5668815 0.7353569 0.5668815 -0.5947903 0.7353569 0.5668815 -0.6211144 0.7353569 0.5668815 -0.6460766 0.7353569 0.5668815 -0.6698526 0.7353569 0.5668815 -0.6925839 0.7353569 0.5668815 -0.7143866 0.7353569 0.5668815 -0.7353569 0.7353569 0.5668815 -0.7555758 0.7353569 0.5668815 -0.7751122 0.7353569 0.5668815 -0.7940252 0.7353569 0.5668815 -0.8123661 0.7353569 0.5668815 -0.8301795 0.7353569 0.5668815 -0.8475045 0.7353569 0.5668815 -0.8643761 0.7353569 0.5668815 -0.880825 0.7353569 0.5668815 -0.8968787 0.7353569 0.5668815 -0.9125621 0.7353569 0.5668815 -0.9278974 0.7353569 0.5668815 -0.9429048 0.7353569 0.5668815 -0.9576028 0.7353569 0.5668815 -0.9720079 0.7353569 0.5668815 -0.9861357 0.7353569 0.5668815 -1 0.7353569 0.5668815 -0 0.7555758 0.5668815 -0.1939468 0.7555758 0.5668815 -0.2773041 0.7555758 0.5668815 -0.3384659 0.7555758 0.5668815 -0.3885728 0.7555758 0.5668815 -0.4317928 0.7555758 0.5668815 -0.470214 0.7555758 0.5668815 -0.5050551 0.7555758 0.5668815 -0.5370987 0.7555758 0.5668815 -0.5668815 0.7555758 0.5668815 -0.5947903 0.7555758 0.5668815 -0.6211144 0.7555758 0.5668815 -0.6460766 0.7555758 0.5668815 -0.6698526 0.7555758 0.5668815 -0.6925839 0.7555758 0.5668815 -0.7143866 0.7555758 0.5668815 -0.7353569 0.7555758 0.5668815 -0.7555758 0.7555758 0.5668815 -0.7751122 0.7555758 0.5668815 -0.7940252 0.7555758 0.5668815 -0.8123661 0.7555758 0.5668815 -0.8301795 0.7555758 0.5668815 -0.8475045 0.7555758 0.5668815 -0.8643761 0.7555758 0.5668815 -0.880825 0.7555758 0.5668815 -0.8968787 0.7555758 0.5668815 -0.9125621 0.7555758 0.5668815 -0.9278974 0.7555758 0.5668815 -0.9429048 0.7555758 0.5668815 -0.9576028 0.7555758 0.5668815 -0.9720079 0.7555758 0.5668815 -0.9861357 0.7555758 0.5668815 -1 0.7555758 0.5668815 -0 0.7751122 0.5668815 -0.1939468 0.7751122 0.5668815 -0.2773041 0.7751122 0.5668815 -0.3384659 0.7751122 0.5668815 -0.3885728 0.7751122 0.5668815 -0.4317928 0.7751122 0.5668815 -0.470214 0.7751122 0.5668815 -0.5050551 0.7751122 0.5668815 -0.5370987 0.7751122 0.5668815 -0.5668815 0.7751122 0.5668815 -0.5947903 0.7751122 0.5668815 -0.6211144 0.7751122 0.5668815 -0.6460766 0.7751122 0.5668815 -0.6698526 0.7751122 0.5668815 -0.6925839 0.7751122 0.5668815 -0.7143866 0.7751122 0.5668815 -0.7353569 0.7751122 0.5668815 -0.7555758 0.7751122 0.5668815 -0.7751122 0.7751122 0.5668815 -0.7940252 0.7751122 0.5668815 -0.8123661 0.7751122 0.5668815 -0.8301795 0.7751122 0.5668815 -0.8475045 0.7751122 0.5668815 -0.8643761 0.7751122 0.5668815 -0.880825 0.7751122 0.5668815 -0.8968787 0.7751122 0.5668815 -0.9125621 0.7751122 0.5668815 -0.9278974 0.7751122 0.5668815 -0.9429048 0.7751122 0.5668815 -0.9576028 0.7751122 0.5668815 -0.9720079 0.7751122 0.5668815 -0.9861357 0.7751122 0.5668815 -1 0.7751122 0.5668815 -0 0.7940252 0.5668815 -0.1939468 0.7940252 0.5668815 -0.2773041 0.7940252 0.5668815 -0.3384659 0.7940252 0.5668815 -0.3885728 0.7940252 0.5668815 -0.4317928 0.7940252 0.5668815 -0.470214 0.7940252 0.5668815 -0.5050551 0.7940252 0.5668815 -0.5370987 0.7940252 0.5668815 -0.5668815 0.7940252 0.5668815 -0.5947903 0.7940252 0.5668815 -0.6211144 0.7940252 0.5668815 -0.6460766 0.7940252 0.5668815 -0.6698526 0.7940252 0.5668815 -0.6925839 0.7940252 0.5668815 -0.7143866 0.7940252 0.5668815 -0.7353569 0.7940252 0.5668815 -0.7555758 0.7940252 0.5668815 -0.7751122 0.7940252 0.5668815 -0.7940252 0.7940252 0.5668815 -0.8123661 0.7940252 0.5668815 -0.8301795 0.7940252 0.5668815 -0.8475045 0.7940252 0.5668815 -0.8643761 0.7940252 0.5668815 -0.880825 0.7940252 0.5668815 -0.8968787 0.7940252 0.5668815 -0.9125621 0.7940252 0.5668815 -0.9278974 0.7940252 0.5668815 -0.9429048 0.7940252 0.5668815 -0.9576028 0.7940252 0.5668815 -0.9720079 0.7940252 0.5668815 -0.9861357 0.7940252 0.5668815 -1 0.7940252 0.5668815 -0 0.8123661 0.5668815 -0.1939468 0.8123661 0.5668815 -0.2773041 0.8123661 0.5668815 -0.3384659 0.8123661 0.5668815 -0.3885728 0.8123661 0.5668815 -0.4317928 0.8123661 0.5668815 -0.470214 0.8123661 0.5668815 -0.5050551 0.8123661 0.5668815 -0.5370987 0.8123661 0.5668815 -0.5668815 0.8123661 0.5668815 -0.5947903 0.8123661 0.5668815 -0.6211144 0.8123661 0.5668815 -0.6460766 0.8123661 0.5668815 -0.6698526 0.8123661 0.5668815 -0.6925839 0.8123661 0.5668815 -0.7143866 0.8123661 0.5668815 -0.7353569 0.8123661 0.5668815 -0.7555758 0.8123661 0.5668815 -0.7751122 0.8123661 0.5668815 -0.7940252 0.8123661 0.5668815 -0.8123661 0.8123661 0.5668815 -0.8301795 0.8123661 0.5668815 -0.8475045 0.8123661 0.5668815 -0.8643761 0.8123661 0.5668815 -0.880825 0.8123661 0.5668815 -0.8968787 0.8123661 0.5668815 -0.9125621 0.8123661 0.5668815 -0.9278974 0.8123661 0.5668815 -0.9429048 0.8123661 0.5668815 -0.9576028 0.8123661 0.5668815 -0.9720079 0.8123661 0.5668815 -0.9861357 0.8123661 0.5668815 -1 0.8123661 0.5668815 -0 0.8301795 0.5668815 -0.1939468 0.8301795 0.5668815 -0.2773041 0.8301795 0.5668815 -0.3384659 0.8301795 0.5668815 -0.3885728 0.8301795 0.5668815 -0.4317928 0.8301795 0.5668815 -0.470214 0.8301795 0.5668815 -0.5050551 0.8301795 0.5668815 -0.5370987 0.8301795 0.5668815 -0.5668815 0.8301795 0.5668815 -0.5947903 0.8301795 0.5668815 -0.6211144 0.8301795 0.5668815 -0.6460766 0.8301795 0.5668815 -0.6698526 0.8301795 0.5668815 -0.6925839 0.8301795 0.5668815 -0.7143866 0.8301795 0.5668815 -0.7353569 0.8301795 0.5668815 -0.7555758 0.8301795 0.5668815 -0.7751122 0.8301795 0.5668815 -0.7940252 0.8301795 0.5668815 -0.8123661 0.8301795 0.5668815 -0.8301795 0.8301795 0.5668815 -0.8475045 0.8301795 0.5668815 -0.8643761 0.8301795 0.5668815 -0.880825 0.8301795 0.5668815 -0.8968787 0.8301795 0.5668815 -0.9125621 0.8301795 0.5668815 -0.9278974 0.8301795 0.5668815 -0.9429048 0.8301795 0.5668815 -0.9576028 0.8301795 0.5668815 -0.9720079 0.8301795 0.5668815 -0.9861357 0.8301795 0.5668815 -1 0.8301795 0.5668815 -0 0.8475045 0.5668815 -0.1939468 0.8475045 0.5668815 -0.2773041 0.8475045 0.5668815 -0.3384659 0.8475045 0.5668815 -0.3885728 0.8475045 0.5668815 -0.4317928 0.8475045 0.5668815 -0.470214 0.8475045 0.5668815 -0.5050551 0.8475045 0.5668815 -0.5370987 0.8475045 0.5668815 -0.5668815 0.8475045 0.5668815 -0.5947903 0.8475045 0.5668815 -0.6211144 0.8475045 0.5668815 -0.6460766 0.8475045 0.5668815 -0.6698526 0.8475045 0.5668815 -0.6925839 0.8475045 0.5668815 -0.7143866 0.8475045 0.5668815 -0.7353569 0.8475045 0.5668815 -0.7555758 0.8475045 0.5668815 -0.7751122 0.8475045 0.5668815 -0.7940252 0.8475045 0.5668815 -0.8123661 0.8475045 0.5668815 -0.8301795 0.8475045 0.5668815 -0.8475045 0.8475045 0.5668815 -0.8643761 0.8475045 0.5668815 -0.880825 0.8475045 0.5668815 -0.8968787 0.8475045 0.5668815 -0.9125621 0.8475045 0.5668815 -0.9278974 0.8475045 0.5668815 -0.9429048 0.8475045 0.5668815 -0.9576028 0.8475045 0.5668815 -0.9720079 0.8475045 0.5668815 -0.9861357 0.8475045 0.5668815 -1 0.8475045 0.5668815 -0 0.8643761 0.5668815 -0.1939468 0.8643761 0.5668815 -0.2773041 0.8643761 0.5668815 -0.3384659 0.8643761 0.5668815 -0.3885728 0.8643761 0.5668815 -0.4317928 0.8643761 0.5668815 -0.470214 0.8643761 0.5668815 -0.5050551 0.8643761 0.5668815 -0.5370987 0.8643761 0.5668815 -0.5668815 0.8643761 0.5668815 -0.5947903 0.8643761 0.5668815 -0.6211144 0.8643761 0.5668815 -0.6460766 0.8643761 0.5668815 -0.6698526 0.8643761 0.5668815 -0.6925839 0.8643761 0.5668815 -0.7143866 0.8643761 0.5668815 -0.7353569 0.8643761 0.5668815 -0.7555758 0.8643761 0.5668815 -0.7751122 0.8643761 0.5668815 -0.7940252 0.8643761 0.5668815 -0.8123661 0.8643761 0.5668815 -0.8301795 0.8643761 0.5668815 -0.8475045 0.8643761 0.5668815 -0.8643761 0.8643761 0.5668815 -0.880825 0.8643761 0.5668815 -0.8968787 0.8643761 0.5668815 -0.9125621 0.8643761 0.5668815 -0.9278974 0.8643761 0.5668815 -0.9429048 0.8643761 0.5668815 -0.9576028 0.8643761 0.5668815 -0.9720079 0.8643761 0.5668815 -0.9861357 0.8643761 0.5668815 -1 0.8643761 0.5668815 -0 0.880825 0.5668815 -0.1939468 0.880825 0.5668815 -0.2773041 0.880825 0.5668815 -0.3384659 0.880825 0.5668815 -0.3885728 0.880825 0.5668815 -0.4317928 0.880825 0.5668815 -0.470214 0.880825 0.5668815 -0.5050551 0.880825 0.5668815 -0.5370987 0.880825 0.5668815 -0.5668815 0.880825 0.5668815 -0.5947903 0.880825 0.5668815 -0.6211144 0.880825 0.5668815 -0.6460766 0.880825 0.5668815 -0.6698526 0.880825 0.5668815 -0.6925839 0.880825 0.5668815 -0.7143866 0.880825 0.5668815 -0.7353569 0.880825 0.5668815 -0.7555758 0.880825 0.5668815 -0.7751122 0.880825 0.5668815 -0.7940252 0.880825 0.5668815 -0.8123661 0.880825 0.5668815 -0.8301795 0.880825 0.5668815 -0.8475045 0.880825 0.5668815 -0.8643761 0.880825 0.5668815 -0.880825 0.880825 0.5668815 -0.8968787 0.880825 0.5668815 -0.9125621 0.880825 0.5668815 -0.9278974 0.880825 0.5668815 -0.9429048 0.880825 0.5668815 -0.9576028 0.880825 0.5668815 -0.9720079 0.880825 0.5668815 -0.9861357 0.880825 0.5668815 -1 0.880825 0.5668815 -0 0.8968787 0.5668815 -0.1939468 0.8968787 0.5668815 -0.2773041 0.8968787 0.5668815 -0.3384659 0.8968787 0.5668815 -0.3885728 0.8968787 0.5668815 -0.4317928 0.8968787 0.5668815 -0.470214 0.8968787 0.5668815 -0.5050551 0.8968787 0.5668815 -0.5370987 0.8968787 0.5668815 -0.5668815 0.8968787 0.5668815 -0.5947903 0.8968787 0.5668815 -0.6211144 0.8968787 0.5668815 -0.6460766 0.8968787 0.5668815 -0.6698526 0.8968787 0.5668815 -0.6925839 0.8968787 0.5668815 -0.7143866 0.8968787 0.5668815 -0.7353569 0.8968787 0.5668815 -0.7555758 0.8968787 0.5668815 -0.7751122 0.8968787 0.5668815 -0.7940252 0.8968787 0.5668815 -0.8123661 0.8968787 0.5668815 -0.8301795 0.8968787 0.5668815 -0.8475045 0.8968787 0.5668815 -0.8643761 0.8968787 0.5668815 -0.880825 0.8968787 0.5668815 -0.8968787 0.8968787 0.5668815 -0.9125621 0.8968787 0.5668815 -0.9278974 0.8968787 0.5668815 -0.9429048 0.8968787 0.5668815 -0.9576028 0.8968787 0.5668815 -0.9720079 0.8968787 0.5668815 -0.9861357 0.8968787 0.5668815 -1 0.8968787 0.5668815 -0 0.9125621 0.5668815 -0.1939468 0.9125621 0.5668815 -0.2773041 0.9125621 0.5668815 -0.3384659 0.9125621 0.5668815 -0.3885728 0.9125621 0.5668815 -0.4317928 0.9125621 0.5668815 -0.470214 0.9125621 0.5668815 -0.5050551 0.9125621 0.5668815 -0.5370987 0.9125621 0.5668815 -0.5668815 0.9125621 0.5668815 -0.5947903 0.9125621 0.5668815 -0.6211144 0.9125621 0.5668815 -0.6460766 0.9125621 0.5668815 -0.6698526 0.9125621 0.5668815 -0.6925839 0.9125621 0.5668815 -0.7143866 0.9125621 0.5668815 -0.7353569 0.9125621 0.5668815 -0.7555758 0.9125621 0.5668815 -0.7751122 0.9125621 0.5668815 -0.7940252 0.9125621 0.5668815 -0.8123661 0.9125621 0.5668815 -0.8301795 0.9125621 0.5668815 -0.8475045 0.9125621 0.5668815 -0.8643761 0.9125621 0.5668815 -0.880825 0.9125621 0.5668815 -0.8968787 0.9125621 0.5668815 -0.9125621 0.9125621 0.5668815 -0.9278974 0.9125621 0.5668815 -0.9429048 0.9125621 0.5668815 -0.9576028 0.9125621 0.5668815 -0.9720079 0.9125621 0.5668815 -0.9861357 0.9125621 0.5668815 -1 0.9125621 0.5668815 -0 0.9278974 0.5668815 -0.1939468 0.9278974 0.5668815 -0.2773041 0.9278974 0.5668815 -0.3384659 0.9278974 0.5668815 -0.3885728 0.9278974 0.5668815 -0.4317928 0.9278974 0.5668815 -0.470214 0.9278974 0.5668815 -0.5050551 0.9278974 0.5668815 -0.5370987 0.9278974 0.5668815 -0.5668815 0.9278974 0.5668815 -0.5947903 0.9278974 0.5668815 -0.6211144 0.9278974 0.5668815 -0.6460766 0.9278974 0.5668815 -0.6698526 0.9278974 0.5668815 -0.6925839 0.9278974 0.5668815 -0.7143866 0.9278974 0.5668815 -0.7353569 0.9278974 0.5668815 -0.7555758 0.9278974 0.5668815 -0.7751122 0.9278974 0.5668815 -0.7940252 0.9278974 0.5668815 -0.8123661 0.9278974 0.5668815 -0.8301795 0.9278974 0.5668815 -0.8475045 0.9278974 0.5668815 -0.8643761 0.9278974 0.5668815 -0.880825 0.9278974 0.5668815 -0.8968787 0.9278974 0.5668815 -0.9125621 0.9278974 0.5668815 -0.9278974 0.9278974 0.5668815 -0.9429048 0.9278974 0.5668815 -0.9576028 0.9278974 0.5668815 -0.9720079 0.9278974 0.5668815 -0.9861357 0.9278974 0.5668815 -1 0.9278974 0.5668815 -0 0.9429048 0.5668815 -0.1939468 0.9429048 0.5668815 -0.2773041 0.9429048 0.5668815 -0.3384659 0.9429048 0.5668815 -0.3885728 0.9429048 0.5668815 -0.4317928 0.9429048 0.5668815 -0.470214 0.9429048 0.5668815 -0.5050551 0.9429048 0.5668815 -0.5370987 0.9429048 0.5668815 -0.5668815 0.9429048 0.5668815 -0.5947903 0.9429048 0.5668815 -0.6211144 0.9429048 0.5668815 -0.6460766 0.9429048 0.5668815 -0.6698526 0.9429048 0.5668815 -0.6925839 0.9429048 0.5668815 -0.7143866 0.9429048 0.5668815 -0.7353569 0.9429048 0.5668815 -0.7555758 0.9429048 0.5668815 -0.7751122 0.9429048 0.5668815 -0.7940252 0.9429048 0.5668815 -0.8123661 0.9429048 0.5668815 -0.8301795 0.9429048 0.5668815 -0.8475045 0.9429048 0.5668815 -0.8643761 0.9429048 0.5668815 -0.880825 0.9429048 0.5668815 -0.8968787 0.9429048 0.5668815 -0.9125621 0.9429048 0.5668815 -0.9278974 0.9429048 0.5668815 -0.9429048 0.9429048 0.5668815 -0.9576028 0.9429048 0.5668815 -0.9720079 0.9429048 0.5668815 -0.9861357 0.9429048 0.5668815 -1 0.9429048 0.5668815 -0 0.9576028 0.5668815 -0.1939468 0.9576028 0.5668815 -0.2773041 0.9576028 0.5668815 -0.3384659 0.9576028 0.5668815 -0.3885728 0.9576028 0.5668815 -0.4317928 0.9576028 0.5668815 -0.470214 0.9576028 0.5668815 -0.5050551 0.9576028 0.5668815 -0.5370987 0.9576028 0.5668815 -0.5668815 0.9576028 0.5668815 -0.5947903 0.9576028 0.5668815 -0.6211144 0.9576028 0.5668815 -0.6460766 0.9576028 0.5668815 -0.6698526 0.9576028 0.5668815 -0.6925839 0.9576028 0.5668815 -0.7143866 0.9576028 0.5668815 -0.7353569 0.9576028 0.5668815 -0.7555758 0.9576028 0.5668815 -0.7751122 0.9576028 0.5668815 -0.7940252 0.9576028 0.5668815 -0.8123661 0.9576028 0.5668815 -0.8301795 0.9576028 0.5668815 -0.8475045 0.9576028 0.5668815 -0.8643761 0.9576028 0.5668815 -0.880825 0.9576028 0.5668815 -0.8968787 0.9576028 0.5668815 -0.9125621 0.9576028 0.5668815 -0.9278974 0.9576028 0.5668815 -0.9429048 0.9576028 0.5668815 -0.9576028 0.9576028 0.5668815 -0.9720079 0.9576028 0.5668815 -0.9861357 0.9576028 0.5668815 -1 0.9576028 0.5668815 -0 0.9720079 0.5668815 -0.1939468 0.9720079 0.5668815 -0.2773041 0.9720079 0.5668815 -0.3384659 0.9720079 0.5668815 -0.3885728 0.9720079 0.5668815 -0.4317928 0.9720079 0.5668815 -0.470214 0.9720079 0.5668815 -0.5050551 0.9720079 0.5668815 -0.5370987 0.9720079 0.5668815 -0.5668815 0.9720079 0.5668815 -0.5947903 0.9720079 0.5668815 -0.6211144 0.9720079 0.5668815 -0.6460766 0.9720079 0.5668815 -0.6698526 0.9720079 0.5668815 -0.6925839 0.9720079 0.5668815 -0.7143866 0.9720079 0.5668815 -0.7353569 0.9720079 0.5668815 -0.7555758 0.9720079 0.5668815 -0.7751122 0.9720079 0.5668815 -0.7940252 0.9720079 0.5668815 -0.8123661 0.9720079 0.5668815 -0.8301795 0.9720079 0.5668815 -0.8475045 0.9720079 0.5668815 -0.8643761 0.9720079 0.5668815 -0.880825 0.9720079 0.5668815 -0.8968787 0.9720079 0.5668815 -0.9125621 0.9720079 0.5668815 -0.9278974 0.9720079 0.5668815 -0.9429048 0.9720079 0.5668815 -0.9576028 0.9720079 0.5668815 -0.9720079 0.9720079 0.5668815 -0.9861357 0.9720079 0.5668815 -1 0.9720079 0.5668815 -0 0.9861357 0.5668815 -0.1939468 0.9861357 0.5668815 -0.2773041 0.9861357 0.5668815 -0.3384659 0.9861357 0.5668815 -0.3885728 0.9861357 0.5668815 -0.4317928 0.9861357 0.5668815 -0.470214 0.9861357 0.5668815 -0.5050551 0.9861357 0.5668815 -0.5370987 0.9861357 0.5668815 -0.5668815 0.9861357 0.5668815 -0.5947903 0.9861357 0.5668815 -0.6211144 0.9861357 0.5668815 -0.6460766 0.9861357 0.5668815 -0.6698526 0.9861357 0.5668815 -0.6925839 0.9861357 0.5668815 -0.7143866 0.9861357 0.5668815 -0.7353569 0.9861357 0.5668815 -0.7555758 0.9861357 0.5668815 -0.7751122 0.9861357 0.5668815 -0.7940252 0.9861357 0.5668815 -0.8123661 0.9861357 0.5668815 -0.8301795 0.9861357 0.5668815 -0.8475045 0.9861357 0.5668815 -0.8643761 0.9861357 0.5668815 -0.880825 0.9861357 0.5668815 -0.8968787 0.9861357 0.5668815 -0.9125621 0.9861357 0.5668815 -0.9278974 0.9861357 0.5668815 -0.9429048 0.9861357 0.5668815 -0.9576028 0.9861357 0.5668815 -0.9720079 0.9861357 0.5668815 -0.9861357 0.9861357 0.5668815 -1 0.9861357 0.5668815 -0 1 0.5668815 -0.1939468 1 0.5668815 -0.2773041 1 0.5668815 -0.3384659 1 0.5668815 -0.3885728 1 0.5668815 -0.4317928 1 0.5668815 -0.470214 1 0.5668815 -0.5050551 1 0.5668815 -0.5370987 1 0.5668815 -0.5668815 1 0.5668815 -0.5947903 1 0.5668815 -0.6211144 1 0.5668815 -0.6460766 1 0.5668815 -0.6698526 1 0.5668815 -0.6925839 1 0.5668815 -0.7143866 1 0.5668815 -0.7353569 1 0.5668815 -0.7555758 1 0.5668815 -0.7751122 1 0.5668815 -0.7940252 1 0.5668815 -0.8123661 1 0.5668815 -0.8301795 1 0.5668815 -0.8475045 1 0.5668815 -0.8643761 1 0.5668815 -0.880825 1 0.5668815 -0.8968787 1 0.5668815 -0.9125621 1 0.5668815 -0.9278974 1 0.5668815 -0.9429048 1 0.5668815 -0.9576028 1 0.5668815 -0.9720079 1 0.5668815 -0.9861357 1 0.5668815 -1 1 0.5668815 -0 0 0.5947903 -0.1939468 0 0.5947903 -0.2773041 0 0.5947903 -0.3384659 0 0.5947903 -0.3885728 0 0.5947903 -0.4317928 0 0.5947903 -0.470214 0 0.5947903 -0.5050551 0 0.5947903 -0.5370987 0 0.5947903 -0.5668815 0 0.5947903 -0.5947903 0 0.5947903 -0.6211144 0 0.5947903 -0.6460766 0 0.5947903 -0.6698526 0 0.5947903 -0.6925839 0 0.5947903 -0.7143866 0 0.5947903 -0.7353569 0 0.5947903 -0.7555758 0 0.5947903 -0.7751122 0 0.5947903 -0.7940252 0 0.5947903 -0.8123661 0 0.5947903 -0.8301795 0 0.5947903 -0.8475045 0 0.5947903 -0.8643761 0 0.5947903 -0.880825 0 0.5947903 -0.8968787 0 0.5947903 -0.9125621 0 0.5947903 -0.9278974 0 0.5947903 -0.9429048 0 0.5947903 -0.9576028 0 0.5947903 -0.9720079 0 0.5947903 -0.9861357 0 0.5947903 -1 0 0.5947903 -0 0.1939468 0.5947903 -0.1939468 0.1939468 0.5947903 -0.2773041 0.1939468 0.5947903 -0.3384659 0.1939468 0.5947903 -0.3885728 0.1939468 0.5947903 -0.4317928 0.1939468 0.5947903 -0.470214 0.1939468 0.5947903 -0.5050551 0.1939468 0.5947903 -0.5370987 0.1939468 0.5947903 -0.5668815 0.1939468 0.5947903 -0.5947903 0.1939468 0.5947903 -0.6211144 0.1939468 0.5947903 -0.6460766 0.1939468 0.5947903 -0.6698526 0.1939468 0.5947903 -0.6925839 0.1939468 0.5947903 -0.7143866 0.1939468 0.5947903 -0.7353569 0.1939468 0.5947903 -0.7555758 0.1939468 0.5947903 -0.7751122 0.1939468 0.5947903 -0.7940252 0.1939468 0.5947903 -0.8123661 0.1939468 0.5947903 -0.8301795 0.1939468 0.5947903 -0.8475045 0.1939468 0.5947903 -0.8643761 0.1939468 0.5947903 -0.880825 0.1939468 0.5947903 -0.8968787 0.1939468 0.5947903 -0.9125621 0.1939468 0.5947903 -0.9278974 0.1939468 0.5947903 -0.9429048 0.1939468 0.5947903 -0.9576028 0.1939468 0.5947903 -0.9720079 0.1939468 0.5947903 -0.9861357 0.1939468 0.5947903 -1 0.1939468 0.5947903 -0 0.2773041 0.5947903 -0.1939468 0.2773041 0.5947903 -0.2773041 0.2773041 0.5947903 -0.3384659 0.2773041 0.5947903 -0.3885728 0.2773041 0.5947903 -0.4317928 0.2773041 0.5947903 -0.470214 0.2773041 0.5947903 -0.5050551 0.2773041 0.5947903 -0.5370987 0.2773041 0.5947903 -0.5668815 0.2773041 0.5947903 -0.5947903 0.2773041 0.5947903 -0.6211144 0.2773041 0.5947903 -0.6460766 0.2773041 0.5947903 -0.6698526 0.2773041 0.5947903 -0.6925839 0.2773041 0.5947903 -0.7143866 0.2773041 0.5947903 -0.7353569 0.2773041 0.5947903 -0.7555758 0.2773041 0.5947903 -0.7751122 0.2773041 0.5947903 -0.7940252 0.2773041 0.5947903 -0.8123661 0.2773041 0.5947903 -0.8301795 0.2773041 0.5947903 -0.8475045 0.2773041 0.5947903 -0.8643761 0.2773041 0.5947903 -0.880825 0.2773041 0.5947903 -0.8968787 0.2773041 0.5947903 -0.9125621 0.2773041 0.5947903 -0.9278974 0.2773041 0.5947903 -0.9429048 0.2773041 0.5947903 -0.9576028 0.2773041 0.5947903 -0.9720079 0.2773041 0.5947903 -0.9861357 0.2773041 0.5947903 -1 0.2773041 0.5947903 -0 0.3384659 0.5947903 -0.1939468 0.3384659 0.5947903 -0.2773041 0.3384659 0.5947903 -0.3384659 0.3384659 0.5947903 -0.3885728 0.3384659 0.5947903 -0.4317928 0.3384659 0.5947903 -0.470214 0.3384659 0.5947903 -0.5050551 0.3384659 0.5947903 -0.5370987 0.3384659 0.5947903 -0.5668815 0.3384659 0.5947903 -0.5947903 0.3384659 0.5947903 -0.6211144 0.3384659 0.5947903 -0.6460766 0.3384659 0.5947903 -0.6698526 0.3384659 0.5947903 -0.6925839 0.3384659 0.5947903 -0.7143866 0.3384659 0.5947903 -0.7353569 0.3384659 0.5947903 -0.7555758 0.3384659 0.5947903 -0.7751122 0.3384659 0.5947903 -0.7940252 0.3384659 0.5947903 -0.8123661 0.3384659 0.5947903 -0.8301795 0.3384659 0.5947903 -0.8475045 0.3384659 0.5947903 -0.8643761 0.3384659 0.5947903 -0.880825 0.3384659 0.5947903 -0.8968787 0.3384659 0.5947903 -0.9125621 0.3384659 0.5947903 -0.9278974 0.3384659 0.5947903 -0.9429048 0.3384659 0.5947903 -0.9576028 0.3384659 0.5947903 -0.9720079 0.3384659 0.5947903 -0.9861357 0.3384659 0.5947903 -1 0.3384659 0.5947903 -0 0.3885728 0.5947903 -0.1939468 0.3885728 0.5947903 -0.2773041 0.3885728 0.5947903 -0.3384659 0.3885728 0.5947903 -0.3885728 0.3885728 0.5947903 -0.4317928 0.3885728 0.5947903 -0.470214 0.3885728 0.5947903 -0.5050551 0.3885728 0.5947903 -0.5370987 0.3885728 0.5947903 -0.5668815 0.3885728 0.5947903 -0.5947903 0.3885728 0.5947903 -0.6211144 0.3885728 0.5947903 -0.6460766 0.3885728 0.5947903 -0.6698526 0.3885728 0.5947903 -0.6925839 0.3885728 0.5947903 -0.7143866 0.3885728 0.5947903 -0.7353569 0.3885728 0.5947903 -0.7555758 0.3885728 0.5947903 -0.7751122 0.3885728 0.5947903 -0.7940252 0.3885728 0.5947903 -0.8123661 0.3885728 0.5947903 -0.8301795 0.3885728 0.5947903 -0.8475045 0.3885728 0.5947903 -0.8643761 0.3885728 0.5947903 -0.880825 0.3885728 0.5947903 -0.8968787 0.3885728 0.5947903 -0.9125621 0.3885728 0.5947903 -0.9278974 0.3885728 0.5947903 -0.9429048 0.3885728 0.5947903 -0.9576028 0.3885728 0.5947903 -0.9720079 0.3885728 0.5947903 -0.9861357 0.3885728 0.5947903 -1 0.3885728 0.5947903 -0 0.4317928 0.5947903 -0.1939468 0.4317928 0.5947903 -0.2773041 0.4317928 0.5947903 -0.3384659 0.4317928 0.5947903 -0.3885728 0.4317928 0.5947903 -0.4317928 0.4317928 0.5947903 -0.470214 0.4317928 0.5947903 -0.5050551 0.4317928 0.5947903 -0.5370987 0.4317928 0.5947903 -0.5668815 0.4317928 0.5947903 -0.5947903 0.4317928 0.5947903 -0.6211144 0.4317928 0.5947903 -0.6460766 0.4317928 0.5947903 -0.6698526 0.4317928 0.5947903 -0.6925839 0.4317928 0.5947903 -0.7143866 0.4317928 0.5947903 -0.7353569 0.4317928 0.5947903 -0.7555758 0.4317928 0.5947903 -0.7751122 0.4317928 0.5947903 -0.7940252 0.4317928 0.5947903 -0.8123661 0.4317928 0.5947903 -0.8301795 0.4317928 0.5947903 -0.8475045 0.4317928 0.5947903 -0.8643761 0.4317928 0.5947903 -0.880825 0.4317928 0.5947903 -0.8968787 0.4317928 0.5947903 -0.9125621 0.4317928 0.5947903 -0.9278974 0.4317928 0.5947903 -0.9429048 0.4317928 0.5947903 -0.9576028 0.4317928 0.5947903 -0.9720079 0.4317928 0.5947903 -0.9861357 0.4317928 0.5947903 -1 0.4317928 0.5947903 -0 0.470214 0.5947903 -0.1939468 0.470214 0.5947903 -0.2773041 0.470214 0.5947903 -0.3384659 0.470214 0.5947903 -0.3885728 0.470214 0.5947903 -0.4317928 0.470214 0.5947903 -0.470214 0.470214 0.5947903 -0.5050551 0.470214 0.5947903 -0.5370987 0.470214 0.5947903 -0.5668815 0.470214 0.5947903 -0.5947903 0.470214 0.5947903 -0.6211144 0.470214 0.5947903 -0.6460766 0.470214 0.5947903 -0.6698526 0.470214 0.5947903 -0.6925839 0.470214 0.5947903 -0.7143866 0.470214 0.5947903 -0.7353569 0.470214 0.5947903 -0.7555758 0.470214 0.5947903 -0.7751122 0.470214 0.5947903 -0.7940252 0.470214 0.5947903 -0.8123661 0.470214 0.5947903 -0.8301795 0.470214 0.5947903 -0.8475045 0.470214 0.5947903 -0.8643761 0.470214 0.5947903 -0.880825 0.470214 0.5947903 -0.8968787 0.470214 0.5947903 -0.9125621 0.470214 0.5947903 -0.9278974 0.470214 0.5947903 -0.9429048 0.470214 0.5947903 -0.9576028 0.470214 0.5947903 -0.9720079 0.470214 0.5947903 -0.9861357 0.470214 0.5947903 -1 0.470214 0.5947903 -0 0.5050551 0.5947903 -0.1939468 0.5050551 0.5947903 -0.2773041 0.5050551 0.5947903 -0.3384659 0.5050551 0.5947903 -0.3885728 0.5050551 0.5947903 -0.4317928 0.5050551 0.5947903 -0.470214 0.5050551 0.5947903 -0.5050551 0.5050551 0.5947903 -0.5370987 0.5050551 0.5947903 -0.5668815 0.5050551 0.5947903 -0.5947903 0.5050551 0.5947903 -0.6211144 0.5050551 0.5947903 -0.6460766 0.5050551 0.5947903 -0.6698526 0.5050551 0.5947903 -0.6925839 0.5050551 0.5947903 -0.7143866 0.5050551 0.5947903 -0.7353569 0.5050551 0.5947903 -0.7555758 0.5050551 0.5947903 -0.7751122 0.5050551 0.5947903 -0.7940252 0.5050551 0.5947903 -0.8123661 0.5050551 0.5947903 -0.8301795 0.5050551 0.5947903 -0.8475045 0.5050551 0.5947903 -0.8643761 0.5050551 0.5947903 -0.880825 0.5050551 0.5947903 -0.8968787 0.5050551 0.5947903 -0.9125621 0.5050551 0.5947903 -0.9278974 0.5050551 0.5947903 -0.9429048 0.5050551 0.5947903 -0.9576028 0.5050551 0.5947903 -0.9720079 0.5050551 0.5947903 -0.9861357 0.5050551 0.5947903 -1 0.5050551 0.5947903 -0 0.5370987 0.5947903 -0.1939468 0.5370987 0.5947903 -0.2773041 0.5370987 0.5947903 -0.3384659 0.5370987 0.5947903 -0.3885728 0.5370987 0.5947903 -0.4317928 0.5370987 0.5947903 -0.470214 0.5370987 0.5947903 -0.5050551 0.5370987 0.5947903 -0.5370987 0.5370987 0.5947903 -0.5668815 0.5370987 0.5947903 -0.5947903 0.5370987 0.5947903 -0.6211144 0.5370987 0.5947903 -0.6460766 0.5370987 0.5947903 -0.6698526 0.5370987 0.5947903 -0.6925839 0.5370987 0.5947903 -0.7143866 0.5370987 0.5947903 -0.7353569 0.5370987 0.5947903 -0.7555758 0.5370987 0.5947903 -0.7751122 0.5370987 0.5947903 -0.7940252 0.5370987 0.5947903 -0.8123661 0.5370987 0.5947903 -0.8301795 0.5370987 0.5947903 -0.8475045 0.5370987 0.5947903 -0.8643761 0.5370987 0.5947903 -0.880825 0.5370987 0.5947903 -0.8968787 0.5370987 0.5947903 -0.9125621 0.5370987 0.5947903 -0.9278974 0.5370987 0.5947903 -0.9429048 0.5370987 0.5947903 -0.9576028 0.5370987 0.5947903 -0.9720079 0.5370987 0.5947903 -0.9861357 0.5370987 0.5947903 -1 0.5370987 0.5947903 -0 0.5668815 0.5947903 -0.1939468 0.5668815 0.5947903 -0.2773041 0.5668815 0.5947903 -0.3384659 0.5668815 0.5947903 -0.3885728 0.5668815 0.5947903 -0.4317928 0.5668815 0.5947903 -0.470214 0.5668815 0.5947903 -0.5050551 0.5668815 0.5947903 -0.5370987 0.5668815 0.5947903 -0.5668815 0.5668815 0.5947903 -0.5947903 0.5668815 0.5947903 -0.6211144 0.5668815 0.5947903 -0.6460766 0.5668815 0.5947903 -0.6698526 0.5668815 0.5947903 -0.6925839 0.5668815 0.5947903 -0.7143866 0.5668815 0.5947903 -0.7353569 0.5668815 0.5947903 -0.7555758 0.5668815 0.5947903 -0.7751122 0.5668815 0.5947903 -0.7940252 0.5668815 0.5947903 -0.8123661 0.5668815 0.5947903 -0.8301795 0.5668815 0.5947903 -0.8475045 0.5668815 0.5947903 -0.8643761 0.5668815 0.5947903 -0.880825 0.5668815 0.5947903 -0.8968787 0.5668815 0.5947903 -0.9125621 0.5668815 0.5947903 -0.9278974 0.5668815 0.5947903 -0.9429048 0.5668815 0.5947903 -0.9576028 0.5668815 0.5947903 -0.9720079 0.5668815 0.5947903 -0.9861357 0.5668815 0.5947903 -1 0.5668815 0.5947903 -0 0.5947903 0.5947903 -0.1939468 0.5947903 0.5947903 -0.2773041 0.5947903 0.5947903 -0.3384659 0.5947903 0.5947903 -0.3885728 0.5947903 0.5947903 -0.4317928 0.5947903 0.5947903 -0.470214 0.5947903 0.5947903 -0.5050551 0.5947903 0.5947903 -0.5370987 0.5947903 0.5947903 -0.5668815 0.5947903 0.5947903 -0.5947903 0.5947903 0.5947903 -0.6211144 0.5947903 0.5947903 -0.6460766 0.5947903 0.5947903 -0.6698526 0.5947903 0.5947903 -0.6925839 0.5947903 0.5947903 -0.7143866 0.5947903 0.5947903 -0.7353569 0.5947903 0.5947903 -0.7555758 0.5947903 0.5947903 -0.7751122 0.5947903 0.5947903 -0.7940252 0.5947903 0.5947903 -0.8123661 0.5947903 0.5947903 -0.8301795 0.5947903 0.5947903 -0.8475045 0.5947903 0.5947903 -0.8643761 0.5947903 0.5947903 -0.880825 0.5947903 0.5947903 -0.8968787 0.5947903 0.5947903 -0.9125621 0.5947903 0.5947903 -0.9278974 0.5947903 0.5947903 -0.9429048 0.5947903 0.5947903 -0.9576028 0.5947903 0.5947903 -0.9720079 0.5947903 0.5947903 -0.9861357 0.5947903 0.5947903 -1 0.5947903 0.5947903 -0 0.6211144 0.5947903 -0.1939468 0.6211144 0.5947903 -0.2773041 0.6211144 0.5947903 -0.3384659 0.6211144 0.5947903 -0.3885728 0.6211144 0.5947903 -0.4317928 0.6211144 0.5947903 -0.470214 0.6211144 0.5947903 -0.5050551 0.6211144 0.5947903 -0.5370987 0.6211144 0.5947903 -0.5668815 0.6211144 0.5947903 -0.5947903 0.6211144 0.5947903 -0.6211144 0.6211144 0.5947903 -0.6460766 0.6211144 0.5947903 -0.6698526 0.6211144 0.5947903 -0.6925839 0.6211144 0.5947903 -0.7143866 0.6211144 0.5947903 -0.7353569 0.6211144 0.5947903 -0.7555758 0.6211144 0.5947903 -0.7751122 0.6211144 0.5947903 -0.7940252 0.6211144 0.5947903 -0.8123661 0.6211144 0.5947903 -0.8301795 0.6211144 0.5947903 -0.8475045 0.6211144 0.5947903 -0.8643761 0.6211144 0.5947903 -0.880825 0.6211144 0.5947903 -0.8968787 0.6211144 0.5947903 -0.9125621 0.6211144 0.5947903 -0.9278974 0.6211144 0.5947903 -0.9429048 0.6211144 0.5947903 -0.9576028 0.6211144 0.5947903 -0.9720079 0.6211144 0.5947903 -0.9861357 0.6211144 0.5947903 -1 0.6211144 0.5947903 -0 0.6460766 0.5947903 -0.1939468 0.6460766 0.5947903 -0.2773041 0.6460766 0.5947903 -0.3384659 0.6460766 0.5947903 -0.3885728 0.6460766 0.5947903 -0.4317928 0.6460766 0.5947903 -0.470214 0.6460766 0.5947903 -0.5050551 0.6460766 0.5947903 -0.5370987 0.6460766 0.5947903 -0.5668815 0.6460766 0.5947903 -0.5947903 0.6460766 0.5947903 -0.6211144 0.6460766 0.5947903 -0.6460766 0.6460766 0.5947903 -0.6698526 0.6460766 0.5947903 -0.6925839 0.6460766 0.5947903 -0.7143866 0.6460766 0.5947903 -0.7353569 0.6460766 0.5947903 -0.7555758 0.6460766 0.5947903 -0.7751122 0.6460766 0.5947903 -0.7940252 0.6460766 0.5947903 -0.8123661 0.6460766 0.5947903 -0.8301795 0.6460766 0.5947903 -0.8475045 0.6460766 0.5947903 -0.8643761 0.6460766 0.5947903 -0.880825 0.6460766 0.5947903 -0.8968787 0.6460766 0.5947903 -0.9125621 0.6460766 0.5947903 -0.9278974 0.6460766 0.5947903 -0.9429048 0.6460766 0.5947903 -0.9576028 0.6460766 0.5947903 -0.9720079 0.6460766 0.5947903 -0.9861357 0.6460766 0.5947903 -1 0.6460766 0.5947903 -0 0.6698526 0.5947903 -0.1939468 0.6698526 0.5947903 -0.2773041 0.6698526 0.5947903 -0.3384659 0.6698526 0.5947903 -0.3885728 0.6698526 0.5947903 -0.4317928 0.6698526 0.5947903 -0.470214 0.6698526 0.5947903 -0.5050551 0.6698526 0.5947903 -0.5370987 0.6698526 0.5947903 -0.5668815 0.6698526 0.5947903 -0.5947903 0.6698526 0.5947903 -0.6211144 0.6698526 0.5947903 -0.6460766 0.6698526 0.5947903 -0.6698526 0.6698526 0.5947903 -0.6925839 0.6698526 0.5947903 -0.7143866 0.6698526 0.5947903 -0.7353569 0.6698526 0.5947903 -0.7555758 0.6698526 0.5947903 -0.7751122 0.6698526 0.5947903 -0.7940252 0.6698526 0.5947903 -0.8123661 0.6698526 0.5947903 -0.8301795 0.6698526 0.5947903 -0.8475045 0.6698526 0.5947903 -0.8643761 0.6698526 0.5947903 -0.880825 0.6698526 0.5947903 -0.8968787 0.6698526 0.5947903 -0.9125621 0.6698526 0.5947903 -0.9278974 0.6698526 0.5947903 -0.9429048 0.6698526 0.5947903 -0.9576028 0.6698526 0.5947903 -0.9720079 0.6698526 0.5947903 -0.9861357 0.6698526 0.5947903 -1 0.6698526 0.5947903 -0 0.6925839 0.5947903 -0.1939468 0.6925839 0.5947903 -0.2773041 0.6925839 0.5947903 -0.3384659 0.6925839 0.5947903 -0.3885728 0.6925839 0.5947903 -0.4317928 0.6925839 0.5947903 -0.470214 0.6925839 0.5947903 -0.5050551 0.6925839 0.5947903 -0.5370987 0.6925839 0.5947903 -0.5668815 0.6925839 0.5947903 -0.5947903 0.6925839 0.5947903 -0.6211144 0.6925839 0.5947903 -0.6460766 0.6925839 0.5947903 -0.6698526 0.6925839 0.5947903 -0.6925839 0.6925839 0.5947903 -0.7143866 0.6925839 0.5947903 -0.7353569 0.6925839 0.5947903 -0.7555758 0.6925839 0.5947903 -0.7751122 0.6925839 0.5947903 -0.7940252 0.6925839 0.5947903 -0.8123661 0.6925839 0.5947903 -0.8301795 0.6925839 0.5947903 -0.8475045 0.6925839 0.5947903 -0.8643761 0.6925839 0.5947903 -0.880825 0.6925839 0.5947903 -0.8968787 0.6925839 0.5947903 -0.9125621 0.6925839 0.5947903 -0.9278974 0.6925839 0.5947903 -0.9429048 0.6925839 0.5947903 -0.9576028 0.6925839 0.5947903 -0.9720079 0.6925839 0.5947903 -0.9861357 0.6925839 0.5947903 -1 0.6925839 0.5947903 -0 0.7143866 0.5947903 -0.1939468 0.7143866 0.5947903 -0.2773041 0.7143866 0.5947903 -0.3384659 0.7143866 0.5947903 -0.3885728 0.7143866 0.5947903 -0.4317928 0.7143866 0.5947903 -0.470214 0.7143866 0.5947903 -0.5050551 0.7143866 0.5947903 -0.5370987 0.7143866 0.5947903 -0.5668815 0.7143866 0.5947903 -0.5947903 0.7143866 0.5947903 -0.6211144 0.7143866 0.5947903 -0.6460766 0.7143866 0.5947903 -0.6698526 0.7143866 0.5947903 -0.6925839 0.7143866 0.5947903 -0.7143866 0.7143866 0.5947903 -0.7353569 0.7143866 0.5947903 -0.7555758 0.7143866 0.5947903 -0.7751122 0.7143866 0.5947903 -0.7940252 0.7143866 0.5947903 -0.8123661 0.7143866 0.5947903 -0.8301795 0.7143866 0.5947903 -0.8475045 0.7143866 0.5947903 -0.8643761 0.7143866 0.5947903 -0.880825 0.7143866 0.5947903 -0.8968787 0.7143866 0.5947903 -0.9125621 0.7143866 0.5947903 -0.9278974 0.7143866 0.5947903 -0.9429048 0.7143866 0.5947903 -0.9576028 0.7143866 0.5947903 -0.9720079 0.7143866 0.5947903 -0.9861357 0.7143866 0.5947903 -1 0.7143866 0.5947903 -0 0.7353569 0.5947903 -0.1939468 0.7353569 0.5947903 -0.2773041 0.7353569 0.5947903 -0.3384659 0.7353569 0.5947903 -0.3885728 0.7353569 0.5947903 -0.4317928 0.7353569 0.5947903 -0.470214 0.7353569 0.5947903 -0.5050551 0.7353569 0.5947903 -0.5370987 0.7353569 0.5947903 -0.5668815 0.7353569 0.5947903 -0.5947903 0.7353569 0.5947903 -0.6211144 0.7353569 0.5947903 -0.6460766 0.7353569 0.5947903 -0.6698526 0.7353569 0.5947903 -0.6925839 0.7353569 0.5947903 -0.7143866 0.7353569 0.5947903 -0.7353569 0.7353569 0.5947903 -0.7555758 0.7353569 0.5947903 -0.7751122 0.7353569 0.5947903 -0.7940252 0.7353569 0.5947903 -0.8123661 0.7353569 0.5947903 -0.8301795 0.7353569 0.5947903 -0.8475045 0.7353569 0.5947903 -0.8643761 0.7353569 0.5947903 -0.880825 0.7353569 0.5947903 -0.8968787 0.7353569 0.5947903 -0.9125621 0.7353569 0.5947903 -0.9278974 0.7353569 0.5947903 -0.9429048 0.7353569 0.5947903 -0.9576028 0.7353569 0.5947903 -0.9720079 0.7353569 0.5947903 -0.9861357 0.7353569 0.5947903 -1 0.7353569 0.5947903 -0 0.7555758 0.5947903 -0.1939468 0.7555758 0.5947903 -0.2773041 0.7555758 0.5947903 -0.3384659 0.7555758 0.5947903 -0.3885728 0.7555758 0.5947903 -0.4317928 0.7555758 0.5947903 -0.470214 0.7555758 0.5947903 -0.5050551 0.7555758 0.5947903 -0.5370987 0.7555758 0.5947903 -0.5668815 0.7555758 0.5947903 -0.5947903 0.7555758 0.5947903 -0.6211144 0.7555758 0.5947903 -0.6460766 0.7555758 0.5947903 -0.6698526 0.7555758 0.5947903 -0.6925839 0.7555758 0.5947903 -0.7143866 0.7555758 0.5947903 -0.7353569 0.7555758 0.5947903 -0.7555758 0.7555758 0.5947903 -0.7751122 0.7555758 0.5947903 -0.7940252 0.7555758 0.5947903 -0.8123661 0.7555758 0.5947903 -0.8301795 0.7555758 0.5947903 -0.8475045 0.7555758 0.5947903 -0.8643761 0.7555758 0.5947903 -0.880825 0.7555758 0.5947903 -0.8968787 0.7555758 0.5947903 -0.9125621 0.7555758 0.5947903 -0.9278974 0.7555758 0.5947903 -0.9429048 0.7555758 0.5947903 -0.9576028 0.7555758 0.5947903 -0.9720079 0.7555758 0.5947903 -0.9861357 0.7555758 0.5947903 -1 0.7555758 0.5947903 -0 0.7751122 0.5947903 -0.1939468 0.7751122 0.5947903 -0.2773041 0.7751122 0.5947903 -0.3384659 0.7751122 0.5947903 -0.3885728 0.7751122 0.5947903 -0.4317928 0.7751122 0.5947903 -0.470214 0.7751122 0.5947903 -0.5050551 0.7751122 0.5947903 -0.5370987 0.7751122 0.5947903 -0.5668815 0.7751122 0.5947903 -0.5947903 0.7751122 0.5947903 -0.6211144 0.7751122 0.5947903 -0.6460766 0.7751122 0.5947903 -0.6698526 0.7751122 0.5947903 -0.6925839 0.7751122 0.5947903 -0.7143866 0.7751122 0.5947903 -0.7353569 0.7751122 0.5947903 -0.7555758 0.7751122 0.5947903 -0.7751122 0.7751122 0.5947903 -0.7940252 0.7751122 0.5947903 -0.8123661 0.7751122 0.5947903 -0.8301795 0.7751122 0.5947903 -0.8475045 0.7751122 0.5947903 -0.8643761 0.7751122 0.5947903 -0.880825 0.7751122 0.5947903 -0.8968787 0.7751122 0.5947903 -0.9125621 0.7751122 0.5947903 -0.9278974 0.7751122 0.5947903 -0.9429048 0.7751122 0.5947903 -0.9576028 0.7751122 0.5947903 -0.9720079 0.7751122 0.5947903 -0.9861357 0.7751122 0.5947903 -1 0.7751122 0.5947903 -0 0.7940252 0.5947903 -0.1939468 0.7940252 0.5947903 -0.2773041 0.7940252 0.5947903 -0.3384659 0.7940252 0.5947903 -0.3885728 0.7940252 0.5947903 -0.4317928 0.7940252 0.5947903 -0.470214 0.7940252 0.5947903 -0.5050551 0.7940252 0.5947903 -0.5370987 0.7940252 0.5947903 -0.5668815 0.7940252 0.5947903 -0.5947903 0.7940252 0.5947903 -0.6211144 0.7940252 0.5947903 -0.6460766 0.7940252 0.5947903 -0.6698526 0.7940252 0.5947903 -0.6925839 0.7940252 0.5947903 -0.7143866 0.7940252 0.5947903 -0.7353569 0.7940252 0.5947903 -0.7555758 0.7940252 0.5947903 -0.7751122 0.7940252 0.5947903 -0.7940252 0.7940252 0.5947903 -0.8123661 0.7940252 0.5947903 -0.8301795 0.7940252 0.5947903 -0.8475045 0.7940252 0.5947903 -0.8643761 0.7940252 0.5947903 -0.880825 0.7940252 0.5947903 -0.8968787 0.7940252 0.5947903 -0.9125621 0.7940252 0.5947903 -0.9278974 0.7940252 0.5947903 -0.9429048 0.7940252 0.5947903 -0.9576028 0.7940252 0.5947903 -0.9720079 0.7940252 0.5947903 -0.9861357 0.7940252 0.5947903 -1 0.7940252 0.5947903 -0 0.8123661 0.5947903 -0.1939468 0.8123661 0.5947903 -0.2773041 0.8123661 0.5947903 -0.3384659 0.8123661 0.5947903 -0.3885728 0.8123661 0.5947903 -0.4317928 0.8123661 0.5947903 -0.470214 0.8123661 0.5947903 -0.5050551 0.8123661 0.5947903 -0.5370987 0.8123661 0.5947903 -0.5668815 0.8123661 0.5947903 -0.5947903 0.8123661 0.5947903 -0.6211144 0.8123661 0.5947903 -0.6460766 0.8123661 0.5947903 -0.6698526 0.8123661 0.5947903 -0.6925839 0.8123661 0.5947903 -0.7143866 0.8123661 0.5947903 -0.7353569 0.8123661 0.5947903 -0.7555758 0.8123661 0.5947903 -0.7751122 0.8123661 0.5947903 -0.7940252 0.8123661 0.5947903 -0.8123661 0.8123661 0.5947903 -0.8301795 0.8123661 0.5947903 -0.8475045 0.8123661 0.5947903 -0.8643761 0.8123661 0.5947903 -0.880825 0.8123661 0.5947903 -0.8968787 0.8123661 0.5947903 -0.9125621 0.8123661 0.5947903 -0.9278974 0.8123661 0.5947903 -0.9429048 0.8123661 0.5947903 -0.9576028 0.8123661 0.5947903 -0.9720079 0.8123661 0.5947903 -0.9861357 0.8123661 0.5947903 -1 0.8123661 0.5947903 -0 0.8301795 0.5947903 -0.1939468 0.8301795 0.5947903 -0.2773041 0.8301795 0.5947903 -0.3384659 0.8301795 0.5947903 -0.3885728 0.8301795 0.5947903 -0.4317928 0.8301795 0.5947903 -0.470214 0.8301795 0.5947903 -0.5050551 0.8301795 0.5947903 -0.5370987 0.8301795 0.5947903 -0.5668815 0.8301795 0.5947903 -0.5947903 0.8301795 0.5947903 -0.6211144 0.8301795 0.5947903 -0.6460766 0.8301795 0.5947903 -0.6698526 0.8301795 0.5947903 -0.6925839 0.8301795 0.5947903 -0.7143866 0.8301795 0.5947903 -0.7353569 0.8301795 0.5947903 -0.7555758 0.8301795 0.5947903 -0.7751122 0.8301795 0.5947903 -0.7940252 0.8301795 0.5947903 -0.8123661 0.8301795 0.5947903 -0.8301795 0.8301795 0.5947903 -0.8475045 0.8301795 0.5947903 -0.8643761 0.8301795 0.5947903 -0.880825 0.8301795 0.5947903 -0.8968787 0.8301795 0.5947903 -0.9125621 0.8301795 0.5947903 -0.9278974 0.8301795 0.5947903 -0.9429048 0.8301795 0.5947903 -0.9576028 0.8301795 0.5947903 -0.9720079 0.8301795 0.5947903 -0.9861357 0.8301795 0.5947903 -1 0.8301795 0.5947903 -0 0.8475045 0.5947903 -0.1939468 0.8475045 0.5947903 -0.2773041 0.8475045 0.5947903 -0.3384659 0.8475045 0.5947903 -0.3885728 0.8475045 0.5947903 -0.4317928 0.8475045 0.5947903 -0.470214 0.8475045 0.5947903 -0.5050551 0.8475045 0.5947903 -0.5370987 0.8475045 0.5947903 -0.5668815 0.8475045 0.5947903 -0.5947903 0.8475045 0.5947903 -0.6211144 0.8475045 0.5947903 -0.6460766 0.8475045 0.5947903 -0.6698526 0.8475045 0.5947903 -0.6925839 0.8475045 0.5947903 -0.7143866 0.8475045 0.5947903 -0.7353569 0.8475045 0.5947903 -0.7555758 0.8475045 0.5947903 -0.7751122 0.8475045 0.5947903 -0.7940252 0.8475045 0.5947903 -0.8123661 0.8475045 0.5947903 -0.8301795 0.8475045 0.5947903 -0.8475045 0.8475045 0.5947903 -0.8643761 0.8475045 0.5947903 -0.880825 0.8475045 0.5947903 -0.8968787 0.8475045 0.5947903 -0.9125621 0.8475045 0.5947903 -0.9278974 0.8475045 0.5947903 -0.9429048 0.8475045 0.5947903 -0.9576028 0.8475045 0.5947903 -0.9720079 0.8475045 0.5947903 -0.9861357 0.8475045 0.5947903 -1 0.8475045 0.5947903 -0 0.8643761 0.5947903 -0.1939468 0.8643761 0.5947903 -0.2773041 0.8643761 0.5947903 -0.3384659 0.8643761 0.5947903 -0.3885728 0.8643761 0.5947903 -0.4317928 0.8643761 0.5947903 -0.470214 0.8643761 0.5947903 -0.5050551 0.8643761 0.5947903 -0.5370987 0.8643761 0.5947903 -0.5668815 0.8643761 0.5947903 -0.5947903 0.8643761 0.5947903 -0.6211144 0.8643761 0.5947903 -0.6460766 0.8643761 0.5947903 -0.6698526 0.8643761 0.5947903 -0.6925839 0.8643761 0.5947903 -0.7143866 0.8643761 0.5947903 -0.7353569 0.8643761 0.5947903 -0.7555758 0.8643761 0.5947903 -0.7751122 0.8643761 0.5947903 -0.7940252 0.8643761 0.5947903 -0.8123661 0.8643761 0.5947903 -0.8301795 0.8643761 0.5947903 -0.8475045 0.8643761 0.5947903 -0.8643761 0.8643761 0.5947903 -0.880825 0.8643761 0.5947903 -0.8968787 0.8643761 0.5947903 -0.9125621 0.8643761 0.5947903 -0.9278974 0.8643761 0.5947903 -0.9429048 0.8643761 0.5947903 -0.9576028 0.8643761 0.5947903 -0.9720079 0.8643761 0.5947903 -0.9861357 0.8643761 0.5947903 -1 0.8643761 0.5947903 -0 0.880825 0.5947903 -0.1939468 0.880825 0.5947903 -0.2773041 0.880825 0.5947903 -0.3384659 0.880825 0.5947903 -0.3885728 0.880825 0.5947903 -0.4317928 0.880825 0.5947903 -0.470214 0.880825 0.5947903 -0.5050551 0.880825 0.5947903 -0.5370987 0.880825 0.5947903 -0.5668815 0.880825 0.5947903 -0.5947903 0.880825 0.5947903 -0.6211144 0.880825 0.5947903 -0.6460766 0.880825 0.5947903 -0.6698526 0.880825 0.5947903 -0.6925839 0.880825 0.5947903 -0.7143866 0.880825 0.5947903 -0.7353569 0.880825 0.5947903 -0.7555758 0.880825 0.5947903 -0.7751122 0.880825 0.5947903 -0.7940252 0.880825 0.5947903 -0.8123661 0.880825 0.5947903 -0.8301795 0.880825 0.5947903 -0.8475045 0.880825 0.5947903 -0.8643761 0.880825 0.5947903 -0.880825 0.880825 0.5947903 -0.8968787 0.880825 0.5947903 -0.9125621 0.880825 0.5947903 -0.9278974 0.880825 0.5947903 -0.9429048 0.880825 0.5947903 -0.9576028 0.880825 0.5947903 -0.9720079 0.880825 0.5947903 -0.9861357 0.880825 0.5947903 -1 0.880825 0.5947903 -0 0.8968787 0.5947903 -0.1939468 0.8968787 0.5947903 -0.2773041 0.8968787 0.5947903 -0.3384659 0.8968787 0.5947903 -0.3885728 0.8968787 0.5947903 -0.4317928 0.8968787 0.5947903 -0.470214 0.8968787 0.5947903 -0.5050551 0.8968787 0.5947903 -0.5370987 0.8968787 0.5947903 -0.5668815 0.8968787 0.5947903 -0.5947903 0.8968787 0.5947903 -0.6211144 0.8968787 0.5947903 -0.6460766 0.8968787 0.5947903 -0.6698526 0.8968787 0.5947903 -0.6925839 0.8968787 0.5947903 -0.7143866 0.8968787 0.5947903 -0.7353569 0.8968787 0.5947903 -0.7555758 0.8968787 0.5947903 -0.7751122 0.8968787 0.5947903 -0.7940252 0.8968787 0.5947903 -0.8123661 0.8968787 0.5947903 -0.8301795 0.8968787 0.5947903 -0.8475045 0.8968787 0.5947903 -0.8643761 0.8968787 0.5947903 -0.880825 0.8968787 0.5947903 -0.8968787 0.8968787 0.5947903 -0.9125621 0.8968787 0.5947903 -0.9278974 0.8968787 0.5947903 -0.9429048 0.8968787 0.5947903 -0.9576028 0.8968787 0.5947903 -0.9720079 0.8968787 0.5947903 -0.9861357 0.8968787 0.5947903 -1 0.8968787 0.5947903 -0 0.9125621 0.5947903 -0.1939468 0.9125621 0.5947903 -0.2773041 0.9125621 0.5947903 -0.3384659 0.9125621 0.5947903 -0.3885728 0.9125621 0.5947903 -0.4317928 0.9125621 0.5947903 -0.470214 0.9125621 0.5947903 -0.5050551 0.9125621 0.5947903 -0.5370987 0.9125621 0.5947903 -0.5668815 0.9125621 0.5947903 -0.5947903 0.9125621 0.5947903 -0.6211144 0.9125621 0.5947903 -0.6460766 0.9125621 0.5947903 -0.6698526 0.9125621 0.5947903 -0.6925839 0.9125621 0.5947903 -0.7143866 0.9125621 0.5947903 -0.7353569 0.9125621 0.5947903 -0.7555758 0.9125621 0.5947903 -0.7751122 0.9125621 0.5947903 -0.7940252 0.9125621 0.5947903 -0.8123661 0.9125621 0.5947903 -0.8301795 0.9125621 0.5947903 -0.8475045 0.9125621 0.5947903 -0.8643761 0.9125621 0.5947903 -0.880825 0.9125621 0.5947903 -0.8968787 0.9125621 0.5947903 -0.9125621 0.9125621 0.5947903 -0.9278974 0.9125621 0.5947903 -0.9429048 0.9125621 0.5947903 -0.9576028 0.9125621 0.5947903 -0.9720079 0.9125621 0.5947903 -0.9861357 0.9125621 0.5947903 -1 0.9125621 0.5947903 -0 0.9278974 0.5947903 -0.1939468 0.9278974 0.5947903 -0.2773041 0.9278974 0.5947903 -0.3384659 0.9278974 0.5947903 -0.3885728 0.9278974 0.5947903 -0.4317928 0.9278974 0.5947903 -0.470214 0.9278974 0.5947903 -0.5050551 0.9278974 0.5947903 -0.5370987 0.9278974 0.5947903 -0.5668815 0.9278974 0.5947903 -0.5947903 0.9278974 0.5947903 -0.6211144 0.9278974 0.5947903 -0.6460766 0.9278974 0.5947903 -0.6698526 0.9278974 0.5947903 -0.6925839 0.9278974 0.5947903 -0.7143866 0.9278974 0.5947903 -0.7353569 0.9278974 0.5947903 -0.7555758 0.9278974 0.5947903 -0.7751122 0.9278974 0.5947903 -0.7940252 0.9278974 0.5947903 -0.8123661 0.9278974 0.5947903 -0.8301795 0.9278974 0.5947903 -0.8475045 0.9278974 0.5947903 -0.8643761 0.9278974 0.5947903 -0.880825 0.9278974 0.5947903 -0.8968787 0.9278974 0.5947903 -0.9125621 0.9278974 0.5947903 -0.9278974 0.9278974 0.5947903 -0.9429048 0.9278974 0.5947903 -0.9576028 0.9278974 0.5947903 -0.9720079 0.9278974 0.5947903 -0.9861357 0.9278974 0.5947903 -1 0.9278974 0.5947903 -0 0.9429048 0.5947903 -0.1939468 0.9429048 0.5947903 -0.2773041 0.9429048 0.5947903 -0.3384659 0.9429048 0.5947903 -0.3885728 0.9429048 0.5947903 -0.4317928 0.9429048 0.5947903 -0.470214 0.9429048 0.5947903 -0.5050551 0.9429048 0.5947903 -0.5370987 0.9429048 0.5947903 -0.5668815 0.9429048 0.5947903 -0.5947903 0.9429048 0.5947903 -0.6211144 0.9429048 0.5947903 -0.6460766 0.9429048 0.5947903 -0.6698526 0.9429048 0.5947903 -0.6925839 0.9429048 0.5947903 -0.7143866 0.9429048 0.5947903 -0.7353569 0.9429048 0.5947903 -0.7555758 0.9429048 0.5947903 -0.7751122 0.9429048 0.5947903 -0.7940252 0.9429048 0.5947903 -0.8123661 0.9429048 0.5947903 -0.8301795 0.9429048 0.5947903 -0.8475045 0.9429048 0.5947903 -0.8643761 0.9429048 0.5947903 -0.880825 0.9429048 0.5947903 -0.8968787 0.9429048 0.5947903 -0.9125621 0.9429048 0.5947903 -0.9278974 0.9429048 0.5947903 -0.9429048 0.9429048 0.5947903 -0.9576028 0.9429048 0.5947903 -0.9720079 0.9429048 0.5947903 -0.9861357 0.9429048 0.5947903 -1 0.9429048 0.5947903 -0 0.9576028 0.5947903 -0.1939468 0.9576028 0.5947903 -0.2773041 0.9576028 0.5947903 -0.3384659 0.9576028 0.5947903 -0.3885728 0.9576028 0.5947903 -0.4317928 0.9576028 0.5947903 -0.470214 0.9576028 0.5947903 -0.5050551 0.9576028 0.5947903 -0.5370987 0.9576028 0.5947903 -0.5668815 0.9576028 0.5947903 -0.5947903 0.9576028 0.5947903 -0.6211144 0.9576028 0.5947903 -0.6460766 0.9576028 0.5947903 -0.6698526 0.9576028 0.5947903 -0.6925839 0.9576028 0.5947903 -0.7143866 0.9576028 0.5947903 -0.7353569 0.9576028 0.5947903 -0.7555758 0.9576028 0.5947903 -0.7751122 0.9576028 0.5947903 -0.7940252 0.9576028 0.5947903 -0.8123661 0.9576028 0.5947903 -0.8301795 0.9576028 0.5947903 -0.8475045 0.9576028 0.5947903 -0.8643761 0.9576028 0.5947903 -0.880825 0.9576028 0.5947903 -0.8968787 0.9576028 0.5947903 -0.9125621 0.9576028 0.5947903 -0.9278974 0.9576028 0.5947903 -0.9429048 0.9576028 0.5947903 -0.9576028 0.9576028 0.5947903 -0.9720079 0.9576028 0.5947903 -0.9861357 0.9576028 0.5947903 -1 0.9576028 0.5947903 -0 0.9720079 0.5947903 -0.1939468 0.9720079 0.5947903 -0.2773041 0.9720079 0.5947903 -0.3384659 0.9720079 0.5947903 -0.3885728 0.9720079 0.5947903 -0.4317928 0.9720079 0.5947903 -0.470214 0.9720079 0.5947903 -0.5050551 0.9720079 0.5947903 -0.5370987 0.9720079 0.5947903 -0.5668815 0.9720079 0.5947903 -0.5947903 0.9720079 0.5947903 -0.6211144 0.9720079 0.5947903 -0.6460766 0.9720079 0.5947903 -0.6698526 0.9720079 0.5947903 -0.6925839 0.9720079 0.5947903 -0.7143866 0.9720079 0.5947903 -0.7353569 0.9720079 0.5947903 -0.7555758 0.9720079 0.5947903 -0.7751122 0.9720079 0.5947903 -0.7940252 0.9720079 0.5947903 -0.8123661 0.9720079 0.5947903 -0.8301795 0.9720079 0.5947903 -0.8475045 0.9720079 0.5947903 -0.8643761 0.9720079 0.5947903 -0.880825 0.9720079 0.5947903 -0.8968787 0.9720079 0.5947903 -0.9125621 0.9720079 0.5947903 -0.9278974 0.9720079 0.5947903 -0.9429048 0.9720079 0.5947903 -0.9576028 0.9720079 0.5947903 -0.9720079 0.9720079 0.5947903 -0.9861357 0.9720079 0.5947903 -1 0.9720079 0.5947903 -0 0.9861357 0.5947903 -0.1939468 0.9861357 0.5947903 -0.2773041 0.9861357 0.5947903 -0.3384659 0.9861357 0.5947903 -0.3885728 0.9861357 0.5947903 -0.4317928 0.9861357 0.5947903 -0.470214 0.9861357 0.5947903 -0.5050551 0.9861357 0.5947903 -0.5370987 0.9861357 0.5947903 -0.5668815 0.9861357 0.5947903 -0.5947903 0.9861357 0.5947903 -0.6211144 0.9861357 0.5947903 -0.6460766 0.9861357 0.5947903 -0.6698526 0.9861357 0.5947903 -0.6925839 0.9861357 0.5947903 -0.7143866 0.9861357 0.5947903 -0.7353569 0.9861357 0.5947903 -0.7555758 0.9861357 0.5947903 -0.7751122 0.9861357 0.5947903 -0.7940252 0.9861357 0.5947903 -0.8123661 0.9861357 0.5947903 -0.8301795 0.9861357 0.5947903 -0.8475045 0.9861357 0.5947903 -0.8643761 0.9861357 0.5947903 -0.880825 0.9861357 0.5947903 -0.8968787 0.9861357 0.5947903 -0.9125621 0.9861357 0.5947903 -0.9278974 0.9861357 0.5947903 -0.9429048 0.9861357 0.5947903 -0.9576028 0.9861357 0.5947903 -0.9720079 0.9861357 0.5947903 -0.9861357 0.9861357 0.5947903 -1 0.9861357 0.5947903 -0 1 0.5947903 -0.1939468 1 0.5947903 -0.2773041 1 0.5947903 -0.3384659 1 0.5947903 -0.3885728 1 0.5947903 -0.4317928 1 0.5947903 -0.470214 1 0.5947903 -0.5050551 1 0.5947903 -0.5370987 1 0.5947903 -0.5668815 1 0.5947903 -0.5947903 1 0.5947903 -0.6211144 1 0.5947903 -0.6460766 1 0.5947903 -0.6698526 1 0.5947903 -0.6925839 1 0.5947903 -0.7143866 1 0.5947903 -0.7353569 1 0.5947903 -0.7555758 1 0.5947903 -0.7751122 1 0.5947903 -0.7940252 1 0.5947903 -0.8123661 1 0.5947903 -0.8301795 1 0.5947903 -0.8475045 1 0.5947903 -0.8643761 1 0.5947903 -0.880825 1 0.5947903 -0.8968787 1 0.5947903 -0.9125621 1 0.5947903 -0.9278974 1 0.5947903 -0.9429048 1 0.5947903 -0.9576028 1 0.5947903 -0.9720079 1 0.5947903 -0.9861357 1 0.5947903 -1 1 0.5947903 -0 0 0.6211144 -0.1939468 0 0.6211144 -0.2773041 0 0.6211144 -0.3384659 0 0.6211144 -0.3885728 0 0.6211144 -0.4317928 0 0.6211144 -0.470214 0 0.6211144 -0.5050551 0 0.6211144 -0.5370987 0 0.6211144 -0.5668815 0 0.6211144 -0.5947903 0 0.6211144 -0.6211144 0 0.6211144 -0.6460766 0 0.6211144 -0.6698526 0 0.6211144 -0.6925839 0 0.6211144 -0.7143866 0 0.6211144 -0.7353569 0 0.6211144 -0.7555758 0 0.6211144 -0.7751122 0 0.6211144 -0.7940252 0 0.6211144 -0.8123661 0 0.6211144 -0.8301795 0 0.6211144 -0.8475045 0 0.6211144 -0.8643761 0 0.6211144 -0.880825 0 0.6211144 -0.8968787 0 0.6211144 -0.9125621 0 0.6211144 -0.9278974 0 0.6211144 -0.9429048 0 0.6211144 -0.9576028 0 0.6211144 -0.9720079 0 0.6211144 -0.9861357 0 0.6211144 -1 0 0.6211144 -0 0.1939468 0.6211144 -0.1939468 0.1939468 0.6211144 -0.2773041 0.1939468 0.6211144 -0.3384659 0.1939468 0.6211144 -0.3885728 0.1939468 0.6211144 -0.4317928 0.1939468 0.6211144 -0.470214 0.1939468 0.6211144 -0.5050551 0.1939468 0.6211144 -0.5370987 0.1939468 0.6211144 -0.5668815 0.1939468 0.6211144 -0.5947903 0.1939468 0.6211144 -0.6211144 0.1939468 0.6211144 -0.6460766 0.1939468 0.6211144 -0.6698526 0.1939468 0.6211144 -0.6925839 0.1939468 0.6211144 -0.7143866 0.1939468 0.6211144 -0.7353569 0.1939468 0.6211144 -0.7555758 0.1939468 0.6211144 -0.7751122 0.1939468 0.6211144 -0.7940252 0.1939468 0.6211144 -0.8123661 0.1939468 0.6211144 -0.8301795 0.1939468 0.6211144 -0.8475045 0.1939468 0.6211144 -0.8643761 0.1939468 0.6211144 -0.880825 0.1939468 0.6211144 -0.8968787 0.1939468 0.6211144 -0.9125621 0.1939468 0.6211144 -0.9278974 0.1939468 0.6211144 -0.9429048 0.1939468 0.6211144 -0.9576028 0.1939468 0.6211144 -0.9720079 0.1939468 0.6211144 -0.9861357 0.1939468 0.6211144 -1 0.1939468 0.6211144 -0 0.2773041 0.6211144 -0.1939468 0.2773041 0.6211144 -0.2773041 0.2773041 0.6211144 -0.3384659 0.2773041 0.6211144 -0.3885728 0.2773041 0.6211144 -0.4317928 0.2773041 0.6211144 -0.470214 0.2773041 0.6211144 -0.5050551 0.2773041 0.6211144 -0.5370987 0.2773041 0.6211144 -0.5668815 0.2773041 0.6211144 -0.5947903 0.2773041 0.6211144 -0.6211144 0.2773041 0.6211144 -0.6460766 0.2773041 0.6211144 -0.6698526 0.2773041 0.6211144 -0.6925839 0.2773041 0.6211144 -0.7143866 0.2773041 0.6211144 -0.7353569 0.2773041 0.6211144 -0.7555758 0.2773041 0.6211144 -0.7751122 0.2773041 0.6211144 -0.7940252 0.2773041 0.6211144 -0.8123661 0.2773041 0.6211144 -0.8301795 0.2773041 0.6211144 -0.8475045 0.2773041 0.6211144 -0.8643761 0.2773041 0.6211144 -0.880825 0.2773041 0.6211144 -0.8968787 0.2773041 0.6211144 -0.9125621 0.2773041 0.6211144 -0.9278974 0.2773041 0.6211144 -0.9429048 0.2773041 0.6211144 -0.9576028 0.2773041 0.6211144 -0.9720079 0.2773041 0.6211144 -0.9861357 0.2773041 0.6211144 -1 0.2773041 0.6211144 -0 0.3384659 0.6211144 -0.1939468 0.3384659 0.6211144 -0.2773041 0.3384659 0.6211144 -0.3384659 0.3384659 0.6211144 -0.3885728 0.3384659 0.6211144 -0.4317928 0.3384659 0.6211144 -0.470214 0.3384659 0.6211144 -0.5050551 0.3384659 0.6211144 -0.5370987 0.3384659 0.6211144 -0.5668815 0.3384659 0.6211144 -0.5947903 0.3384659 0.6211144 -0.6211144 0.3384659 0.6211144 -0.6460766 0.3384659 0.6211144 -0.6698526 0.3384659 0.6211144 -0.6925839 0.3384659 0.6211144 -0.7143866 0.3384659 0.6211144 -0.7353569 0.3384659 0.6211144 -0.7555758 0.3384659 0.6211144 -0.7751122 0.3384659 0.6211144 -0.7940252 0.3384659 0.6211144 -0.8123661 0.3384659 0.6211144 -0.8301795 0.3384659 0.6211144 -0.8475045 0.3384659 0.6211144 -0.8643761 0.3384659 0.6211144 -0.880825 0.3384659 0.6211144 -0.8968787 0.3384659 0.6211144 -0.9125621 0.3384659 0.6211144 -0.9278974 0.3384659 0.6211144 -0.9429048 0.3384659 0.6211144 -0.9576028 0.3384659 0.6211144 -0.9720079 0.3384659 0.6211144 -0.9861357 0.3384659 0.6211144 -1 0.3384659 0.6211144 -0 0.3885728 0.6211144 -0.1939468 0.3885728 0.6211144 -0.2773041 0.3885728 0.6211144 -0.3384659 0.3885728 0.6211144 -0.3885728 0.3885728 0.6211144 -0.4317928 0.3885728 0.6211144 -0.470214 0.3885728 0.6211144 -0.5050551 0.3885728 0.6211144 -0.5370987 0.3885728 0.6211144 -0.5668815 0.3885728 0.6211144 -0.5947903 0.3885728 0.6211144 -0.6211144 0.3885728 0.6211144 -0.6460766 0.3885728 0.6211144 -0.6698526 0.3885728 0.6211144 -0.6925839 0.3885728 0.6211144 -0.7143866 0.3885728 0.6211144 -0.7353569 0.3885728 0.6211144 -0.7555758 0.3885728 0.6211144 -0.7751122 0.3885728 0.6211144 -0.7940252 0.3885728 0.6211144 -0.8123661 0.3885728 0.6211144 -0.8301795 0.3885728 0.6211144 -0.8475045 0.3885728 0.6211144 -0.8643761 0.3885728 0.6211144 -0.880825 0.3885728 0.6211144 -0.8968787 0.3885728 0.6211144 -0.9125621 0.3885728 0.6211144 -0.9278974 0.3885728 0.6211144 -0.9429048 0.3885728 0.6211144 -0.9576028 0.3885728 0.6211144 -0.9720079 0.3885728 0.6211144 -0.9861357 0.3885728 0.6211144 -1 0.3885728 0.6211144 -0 0.4317928 0.6211144 -0.1939468 0.4317928 0.6211144 -0.2773041 0.4317928 0.6211144 -0.3384659 0.4317928 0.6211144 -0.3885728 0.4317928 0.6211144 -0.4317928 0.4317928 0.6211144 -0.470214 0.4317928 0.6211144 -0.5050551 0.4317928 0.6211144 -0.5370987 0.4317928 0.6211144 -0.5668815 0.4317928 0.6211144 -0.5947903 0.4317928 0.6211144 -0.6211144 0.4317928 0.6211144 -0.6460766 0.4317928 0.6211144 -0.6698526 0.4317928 0.6211144 -0.6925839 0.4317928 0.6211144 -0.7143866 0.4317928 0.6211144 -0.7353569 0.4317928 0.6211144 -0.7555758 0.4317928 0.6211144 -0.7751122 0.4317928 0.6211144 -0.7940252 0.4317928 0.6211144 -0.8123661 0.4317928 0.6211144 -0.8301795 0.4317928 0.6211144 -0.8475045 0.4317928 0.6211144 -0.8643761 0.4317928 0.6211144 -0.880825 0.4317928 0.6211144 -0.8968787 0.4317928 0.6211144 -0.9125621 0.4317928 0.6211144 -0.9278974 0.4317928 0.6211144 -0.9429048 0.4317928 0.6211144 -0.9576028 0.4317928 0.6211144 -0.9720079 0.4317928 0.6211144 -0.9861357 0.4317928 0.6211144 -1 0.4317928 0.6211144 -0 0.470214 0.6211144 -0.1939468 0.470214 0.6211144 -0.2773041 0.470214 0.6211144 -0.3384659 0.470214 0.6211144 -0.3885728 0.470214 0.6211144 -0.4317928 0.470214 0.6211144 -0.470214 0.470214 0.6211144 -0.5050551 0.470214 0.6211144 -0.5370987 0.470214 0.6211144 -0.5668815 0.470214 0.6211144 -0.5947903 0.470214 0.6211144 -0.6211144 0.470214 0.6211144 -0.6460766 0.470214 0.6211144 -0.6698526 0.470214 0.6211144 -0.6925839 0.470214 0.6211144 -0.7143866 0.470214 0.6211144 -0.7353569 0.470214 0.6211144 -0.7555758 0.470214 0.6211144 -0.7751122 0.470214 0.6211144 -0.7940252 0.470214 0.6211144 -0.8123661 0.470214 0.6211144 -0.8301795 0.470214 0.6211144 -0.8475045 0.470214 0.6211144 -0.8643761 0.470214 0.6211144 -0.880825 0.470214 0.6211144 -0.8968787 0.470214 0.6211144 -0.9125621 0.470214 0.6211144 -0.9278974 0.470214 0.6211144 -0.9429048 0.470214 0.6211144 -0.9576028 0.470214 0.6211144 -0.9720079 0.470214 0.6211144 -0.9861357 0.470214 0.6211144 -1 0.470214 0.6211144 -0 0.5050551 0.6211144 -0.1939468 0.5050551 0.6211144 -0.2773041 0.5050551 0.6211144 -0.3384659 0.5050551 0.6211144 -0.3885728 0.5050551 0.6211144 -0.4317928 0.5050551 0.6211144 -0.470214 0.5050551 0.6211144 -0.5050551 0.5050551 0.6211144 -0.5370987 0.5050551 0.6211144 -0.5668815 0.5050551 0.6211144 -0.5947903 0.5050551 0.6211144 -0.6211144 0.5050551 0.6211144 -0.6460766 0.5050551 0.6211144 -0.6698526 0.5050551 0.6211144 -0.6925839 0.5050551 0.6211144 -0.7143866 0.5050551 0.6211144 -0.7353569 0.5050551 0.6211144 -0.7555758 0.5050551 0.6211144 -0.7751122 0.5050551 0.6211144 -0.7940252 0.5050551 0.6211144 -0.8123661 0.5050551 0.6211144 -0.8301795 0.5050551 0.6211144 -0.8475045 0.5050551 0.6211144 -0.8643761 0.5050551 0.6211144 -0.880825 0.5050551 0.6211144 -0.8968787 0.5050551 0.6211144 -0.9125621 0.5050551 0.6211144 -0.9278974 0.5050551 0.6211144 -0.9429048 0.5050551 0.6211144 -0.9576028 0.5050551 0.6211144 -0.9720079 0.5050551 0.6211144 -0.9861357 0.5050551 0.6211144 -1 0.5050551 0.6211144 -0 0.5370987 0.6211144 -0.1939468 0.5370987 0.6211144 -0.2773041 0.5370987 0.6211144 -0.3384659 0.5370987 0.6211144 -0.3885728 0.5370987 0.6211144 -0.4317928 0.5370987 0.6211144 -0.470214 0.5370987 0.6211144 -0.5050551 0.5370987 0.6211144 -0.5370987 0.5370987 0.6211144 -0.5668815 0.5370987 0.6211144 -0.5947903 0.5370987 0.6211144 -0.6211144 0.5370987 0.6211144 -0.6460766 0.5370987 0.6211144 -0.6698526 0.5370987 0.6211144 -0.6925839 0.5370987 0.6211144 -0.7143866 0.5370987 0.6211144 -0.7353569 0.5370987 0.6211144 -0.7555758 0.5370987 0.6211144 -0.7751122 0.5370987 0.6211144 -0.7940252 0.5370987 0.6211144 -0.8123661 0.5370987 0.6211144 -0.8301795 0.5370987 0.6211144 -0.8475045 0.5370987 0.6211144 -0.8643761 0.5370987 0.6211144 -0.880825 0.5370987 0.6211144 -0.8968787 0.5370987 0.6211144 -0.9125621 0.5370987 0.6211144 -0.9278974 0.5370987 0.6211144 -0.9429048 0.5370987 0.6211144 -0.9576028 0.5370987 0.6211144 -0.9720079 0.5370987 0.6211144 -0.9861357 0.5370987 0.6211144 -1 0.5370987 0.6211144 -0 0.5668815 0.6211144 -0.1939468 0.5668815 0.6211144 -0.2773041 0.5668815 0.6211144 -0.3384659 0.5668815 0.6211144 -0.3885728 0.5668815 0.6211144 -0.4317928 0.5668815 0.6211144 -0.470214 0.5668815 0.6211144 -0.5050551 0.5668815 0.6211144 -0.5370987 0.5668815 0.6211144 -0.5668815 0.5668815 0.6211144 -0.5947903 0.5668815 0.6211144 -0.6211144 0.5668815 0.6211144 -0.6460766 0.5668815 0.6211144 -0.6698526 0.5668815 0.6211144 -0.6925839 0.5668815 0.6211144 -0.7143866 0.5668815 0.6211144 -0.7353569 0.5668815 0.6211144 -0.7555758 0.5668815 0.6211144 -0.7751122 0.5668815 0.6211144 -0.7940252 0.5668815 0.6211144 -0.8123661 0.5668815 0.6211144 -0.8301795 0.5668815 0.6211144 -0.8475045 0.5668815 0.6211144 -0.8643761 0.5668815 0.6211144 -0.880825 0.5668815 0.6211144 -0.8968787 0.5668815 0.6211144 -0.9125621 0.5668815 0.6211144 -0.9278974 0.5668815 0.6211144 -0.9429048 0.5668815 0.6211144 -0.9576028 0.5668815 0.6211144 -0.9720079 0.5668815 0.6211144 -0.9861357 0.5668815 0.6211144 -1 0.5668815 0.6211144 -0 0.5947903 0.6211144 -0.1939468 0.5947903 0.6211144 -0.2773041 0.5947903 0.6211144 -0.3384659 0.5947903 0.6211144 -0.3885728 0.5947903 0.6211144 -0.4317928 0.5947903 0.6211144 -0.470214 0.5947903 0.6211144 -0.5050551 0.5947903 0.6211144 -0.5370987 0.5947903 0.6211144 -0.5668815 0.5947903 0.6211144 -0.5947903 0.5947903 0.6211144 -0.6211144 0.5947903 0.6211144 -0.6460766 0.5947903 0.6211144 -0.6698526 0.5947903 0.6211144 -0.6925839 0.5947903 0.6211144 -0.7143866 0.5947903 0.6211144 -0.7353569 0.5947903 0.6211144 -0.7555758 0.5947903 0.6211144 -0.7751122 0.5947903 0.6211144 -0.7940252 0.5947903 0.6211144 -0.8123661 0.5947903 0.6211144 -0.8301795 0.5947903 0.6211144 -0.8475045 0.5947903 0.6211144 -0.8643761 0.5947903 0.6211144 -0.880825 0.5947903 0.6211144 -0.8968787 0.5947903 0.6211144 -0.9125621 0.5947903 0.6211144 -0.9278974 0.5947903 0.6211144 -0.9429048 0.5947903 0.6211144 -0.9576028 0.5947903 0.6211144 -0.9720079 0.5947903 0.6211144 -0.9861357 0.5947903 0.6211144 -1 0.5947903 0.6211144 -0 0.6211144 0.6211144 -0.1939468 0.6211144 0.6211144 -0.2773041 0.6211144 0.6211144 -0.3384659 0.6211144 0.6211144 -0.3885728 0.6211144 0.6211144 -0.4317928 0.6211144 0.6211144 -0.470214 0.6211144 0.6211144 -0.5050551 0.6211144 0.6211144 -0.5370987 0.6211144 0.6211144 -0.5668815 0.6211144 0.6211144 -0.5947903 0.6211144 0.6211144 -0.6211144 0.6211144 0.6211144 -0.6460766 0.6211144 0.6211144 -0.6698526 0.6211144 0.6211144 -0.6925839 0.6211144 0.6211144 -0.7143866 0.6211144 0.6211144 -0.7353569 0.6211144 0.6211144 -0.7555758 0.6211144 0.6211144 -0.7751122 0.6211144 0.6211144 -0.7940252 0.6211144 0.6211144 -0.8123661 0.6211144 0.6211144 -0.8301795 0.6211144 0.6211144 -0.8475045 0.6211144 0.6211144 -0.8643761 0.6211144 0.6211144 -0.880825 0.6211144 0.6211144 -0.8968787 0.6211144 0.6211144 -0.9125621 0.6211144 0.6211144 -0.9278974 0.6211144 0.6211144 -0.9429048 0.6211144 0.6211144 -0.9576028 0.6211144 0.6211144 -0.9720079 0.6211144 0.6211144 -0.9861357 0.6211144 0.6211144 -1 0.6211144 0.6211144 -0 0.6460766 0.6211144 -0.1939468 0.6460766 0.6211144 -0.2773041 0.6460766 0.6211144 -0.3384659 0.6460766 0.6211144 -0.3885728 0.6460766 0.6211144 -0.4317928 0.6460766 0.6211144 -0.470214 0.6460766 0.6211144 -0.5050551 0.6460766 0.6211144 -0.5370987 0.6460766 0.6211144 -0.5668815 0.6460766 0.6211144 -0.5947903 0.6460766 0.6211144 -0.6211144 0.6460766 0.6211144 -0.6460766 0.6460766 0.6211144 -0.6698526 0.6460766 0.6211144 -0.6925839 0.6460766 0.6211144 -0.7143866 0.6460766 0.6211144 -0.7353569 0.6460766 0.6211144 -0.7555758 0.6460766 0.6211144 -0.7751122 0.6460766 0.6211144 -0.7940252 0.6460766 0.6211144 -0.8123661 0.6460766 0.6211144 -0.8301795 0.6460766 0.6211144 -0.8475045 0.6460766 0.6211144 -0.8643761 0.6460766 0.6211144 -0.880825 0.6460766 0.6211144 -0.8968787 0.6460766 0.6211144 -0.9125621 0.6460766 0.6211144 -0.9278974 0.6460766 0.6211144 -0.9429048 0.6460766 0.6211144 -0.9576028 0.6460766 0.6211144 -0.9720079 0.6460766 0.6211144 -0.9861357 0.6460766 0.6211144 -1 0.6460766 0.6211144 -0 0.6698526 0.6211144 -0.1939468 0.6698526 0.6211144 -0.2773041 0.6698526 0.6211144 -0.3384659 0.6698526 0.6211144 -0.3885728 0.6698526 0.6211144 -0.4317928 0.6698526 0.6211144 -0.470214 0.6698526 0.6211144 -0.5050551 0.6698526 0.6211144 -0.5370987 0.6698526 0.6211144 -0.5668815 0.6698526 0.6211144 -0.5947903 0.6698526 0.6211144 -0.6211144 0.6698526 0.6211144 -0.6460766 0.6698526 0.6211144 -0.6698526 0.6698526 0.6211144 -0.6925839 0.6698526 0.6211144 -0.7143866 0.6698526 0.6211144 -0.7353569 0.6698526 0.6211144 -0.7555758 0.6698526 0.6211144 -0.7751122 0.6698526 0.6211144 -0.7940252 0.6698526 0.6211144 -0.8123661 0.6698526 0.6211144 -0.8301795 0.6698526 0.6211144 -0.8475045 0.6698526 0.6211144 -0.8643761 0.6698526 0.6211144 -0.880825 0.6698526 0.6211144 -0.8968787 0.6698526 0.6211144 -0.9125621 0.6698526 0.6211144 -0.9278974 0.6698526 0.6211144 -0.9429048 0.6698526 0.6211144 -0.9576028 0.6698526 0.6211144 -0.9720079 0.6698526 0.6211144 -0.9861357 0.6698526 0.6211144 -1 0.6698526 0.6211144 -0 0.6925839 0.6211144 -0.1939468 0.6925839 0.6211144 -0.2773041 0.6925839 0.6211144 -0.3384659 0.6925839 0.6211144 -0.3885728 0.6925839 0.6211144 -0.4317928 0.6925839 0.6211144 -0.470214 0.6925839 0.6211144 -0.5050551 0.6925839 0.6211144 -0.5370987 0.6925839 0.6211144 -0.5668815 0.6925839 0.6211144 -0.5947903 0.6925839 0.6211144 -0.6211144 0.6925839 0.6211144 -0.6460766 0.6925839 0.6211144 -0.6698526 0.6925839 0.6211144 -0.6925839 0.6925839 0.6211144 -0.7143866 0.6925839 0.6211144 -0.7353569 0.6925839 0.6211144 -0.7555758 0.6925839 0.6211144 -0.7751122 0.6925839 0.6211144 -0.7940252 0.6925839 0.6211144 -0.8123661 0.6925839 0.6211144 -0.8301795 0.6925839 0.6211144 -0.8475045 0.6925839 0.6211144 -0.8643761 0.6925839 0.6211144 -0.880825 0.6925839 0.6211144 -0.8968787 0.6925839 0.6211144 -0.9125621 0.6925839 0.6211144 -0.9278974 0.6925839 0.6211144 -0.9429048 0.6925839 0.6211144 -0.9576028 0.6925839 0.6211144 -0.9720079 0.6925839 0.6211144 -0.9861357 0.6925839 0.6211144 -1 0.6925839 0.6211144 -0 0.7143866 0.6211144 -0.1939468 0.7143866 0.6211144 -0.2773041 0.7143866 0.6211144 -0.3384659 0.7143866 0.6211144 -0.3885728 0.7143866 0.6211144 -0.4317928 0.7143866 0.6211144 -0.470214 0.7143866 0.6211144 -0.5050551 0.7143866 0.6211144 -0.5370987 0.7143866 0.6211144 -0.5668815 0.7143866 0.6211144 -0.5947903 0.7143866 0.6211144 -0.6211144 0.7143866 0.6211144 -0.6460766 0.7143866 0.6211144 -0.6698526 0.7143866 0.6211144 -0.6925839 0.7143866 0.6211144 -0.7143866 0.7143866 0.6211144 -0.7353569 0.7143866 0.6211144 -0.7555758 0.7143866 0.6211144 -0.7751122 0.7143866 0.6211144 -0.7940252 0.7143866 0.6211144 -0.8123661 0.7143866 0.6211144 -0.8301795 0.7143866 0.6211144 -0.8475045 0.7143866 0.6211144 -0.8643761 0.7143866 0.6211144 -0.880825 0.7143866 0.6211144 -0.8968787 0.7143866 0.6211144 -0.9125621 0.7143866 0.6211144 -0.9278974 0.7143866 0.6211144 -0.9429048 0.7143866 0.6211144 -0.9576028 0.7143866 0.6211144 -0.9720079 0.7143866 0.6211144 -0.9861357 0.7143866 0.6211144 -1 0.7143866 0.6211144 -0 0.7353569 0.6211144 -0.1939468 0.7353569 0.6211144 -0.2773041 0.7353569 0.6211144 -0.3384659 0.7353569 0.6211144 -0.3885728 0.7353569 0.6211144 -0.4317928 0.7353569 0.6211144 -0.470214 0.7353569 0.6211144 -0.5050551 0.7353569 0.6211144 -0.5370987 0.7353569 0.6211144 -0.5668815 0.7353569 0.6211144 -0.5947903 0.7353569 0.6211144 -0.6211144 0.7353569 0.6211144 -0.6460766 0.7353569 0.6211144 -0.6698526 0.7353569 0.6211144 -0.6925839 0.7353569 0.6211144 -0.7143866 0.7353569 0.6211144 -0.7353569 0.7353569 0.6211144 -0.7555758 0.7353569 0.6211144 -0.7751122 0.7353569 0.6211144 -0.7940252 0.7353569 0.6211144 -0.8123661 0.7353569 0.6211144 -0.8301795 0.7353569 0.6211144 -0.8475045 0.7353569 0.6211144 -0.8643761 0.7353569 0.6211144 -0.880825 0.7353569 0.6211144 -0.8968787 0.7353569 0.6211144 -0.9125621 0.7353569 0.6211144 -0.9278974 0.7353569 0.6211144 -0.9429048 0.7353569 0.6211144 -0.9576028 0.7353569 0.6211144 -0.9720079 0.7353569 0.6211144 -0.9861357 0.7353569 0.6211144 -1 0.7353569 0.6211144 -0 0.7555758 0.6211144 -0.1939468 0.7555758 0.6211144 -0.2773041 0.7555758 0.6211144 -0.3384659 0.7555758 0.6211144 -0.3885728 0.7555758 0.6211144 -0.4317928 0.7555758 0.6211144 -0.470214 0.7555758 0.6211144 -0.5050551 0.7555758 0.6211144 -0.5370987 0.7555758 0.6211144 -0.5668815 0.7555758 0.6211144 -0.5947903 0.7555758 0.6211144 -0.6211144 0.7555758 0.6211144 -0.6460766 0.7555758 0.6211144 -0.6698526 0.7555758 0.6211144 -0.6925839 0.7555758 0.6211144 -0.7143866 0.7555758 0.6211144 -0.7353569 0.7555758 0.6211144 -0.7555758 0.7555758 0.6211144 -0.7751122 0.7555758 0.6211144 -0.7940252 0.7555758 0.6211144 -0.8123661 0.7555758 0.6211144 -0.8301795 0.7555758 0.6211144 -0.8475045 0.7555758 0.6211144 -0.8643761 0.7555758 0.6211144 -0.880825 0.7555758 0.6211144 -0.8968787 0.7555758 0.6211144 -0.9125621 0.7555758 0.6211144 -0.9278974 0.7555758 0.6211144 -0.9429048 0.7555758 0.6211144 -0.9576028 0.7555758 0.6211144 -0.9720079 0.7555758 0.6211144 -0.9861357 0.7555758 0.6211144 -1 0.7555758 0.6211144 -0 0.7751122 0.6211144 -0.1939468 0.7751122 0.6211144 -0.2773041 0.7751122 0.6211144 -0.3384659 0.7751122 0.6211144 -0.3885728 0.7751122 0.6211144 -0.4317928 0.7751122 0.6211144 -0.470214 0.7751122 0.6211144 -0.5050551 0.7751122 0.6211144 -0.5370987 0.7751122 0.6211144 -0.5668815 0.7751122 0.6211144 -0.5947903 0.7751122 0.6211144 -0.6211144 0.7751122 0.6211144 -0.6460766 0.7751122 0.6211144 -0.6698526 0.7751122 0.6211144 -0.6925839 0.7751122 0.6211144 -0.7143866 0.7751122 0.6211144 -0.7353569 0.7751122 0.6211144 -0.7555758 0.7751122 0.6211144 -0.7751122 0.7751122 0.6211144 -0.7940252 0.7751122 0.6211144 -0.8123661 0.7751122 0.6211144 -0.8301795 0.7751122 0.6211144 -0.8475045 0.7751122 0.6211144 -0.8643761 0.7751122 0.6211144 -0.880825 0.7751122 0.6211144 -0.8968787 0.7751122 0.6211144 -0.9125621 0.7751122 0.6211144 -0.9278974 0.7751122 0.6211144 -0.9429048 0.7751122 0.6211144 -0.9576028 0.7751122 0.6211144 -0.9720079 0.7751122 0.6211144 -0.9861357 0.7751122 0.6211144 -1 0.7751122 0.6211144 -0 0.7940252 0.6211144 -0.1939468 0.7940252 0.6211144 -0.2773041 0.7940252 0.6211144 -0.3384659 0.7940252 0.6211144 -0.3885728 0.7940252 0.6211144 -0.4317928 0.7940252 0.6211144 -0.470214 0.7940252 0.6211144 -0.5050551 0.7940252 0.6211144 -0.5370987 0.7940252 0.6211144 -0.5668815 0.7940252 0.6211144 -0.5947903 0.7940252 0.6211144 -0.6211144 0.7940252 0.6211144 -0.6460766 0.7940252 0.6211144 -0.6698526 0.7940252 0.6211144 -0.6925839 0.7940252 0.6211144 -0.7143866 0.7940252 0.6211144 -0.7353569 0.7940252 0.6211144 -0.7555758 0.7940252 0.6211144 -0.7751122 0.7940252 0.6211144 -0.7940252 0.7940252 0.6211144 -0.8123661 0.7940252 0.6211144 -0.8301795 0.7940252 0.6211144 -0.8475045 0.7940252 0.6211144 -0.8643761 0.7940252 0.6211144 -0.880825 0.7940252 0.6211144 -0.8968787 0.7940252 0.6211144 -0.9125621 0.7940252 0.6211144 -0.9278974 0.7940252 0.6211144 -0.9429048 0.7940252 0.6211144 -0.9576028 0.7940252 0.6211144 -0.9720079 0.7940252 0.6211144 -0.9861357 0.7940252 0.6211144 -1 0.7940252 0.6211144 -0 0.8123661 0.6211144 -0.1939468 0.8123661 0.6211144 -0.2773041 0.8123661 0.6211144 -0.3384659 0.8123661 0.6211144 -0.3885728 0.8123661 0.6211144 -0.4317928 0.8123661 0.6211144 -0.470214 0.8123661 0.6211144 -0.5050551 0.8123661 0.6211144 -0.5370987 0.8123661 0.6211144 -0.5668815 0.8123661 0.6211144 -0.5947903 0.8123661 0.6211144 -0.6211144 0.8123661 0.6211144 -0.6460766 0.8123661 0.6211144 -0.6698526 0.8123661 0.6211144 -0.6925839 0.8123661 0.6211144 -0.7143866 0.8123661 0.6211144 -0.7353569 0.8123661 0.6211144 -0.7555758 0.8123661 0.6211144 -0.7751122 0.8123661 0.6211144 -0.7940252 0.8123661 0.6211144 -0.8123661 0.8123661 0.6211144 -0.8301795 0.8123661 0.6211144 -0.8475045 0.8123661 0.6211144 -0.8643761 0.8123661 0.6211144 -0.880825 0.8123661 0.6211144 -0.8968787 0.8123661 0.6211144 -0.9125621 0.8123661 0.6211144 -0.9278974 0.8123661 0.6211144 -0.9429048 0.8123661 0.6211144 -0.9576028 0.8123661 0.6211144 -0.9720079 0.8123661 0.6211144 -0.9861357 0.8123661 0.6211144 -1 0.8123661 0.6211144 -0 0.8301795 0.6211144 -0.1939468 0.8301795 0.6211144 -0.2773041 0.8301795 0.6211144 -0.3384659 0.8301795 0.6211144 -0.3885728 0.8301795 0.6211144 -0.4317928 0.8301795 0.6211144 -0.470214 0.8301795 0.6211144 -0.5050551 0.8301795 0.6211144 -0.5370987 0.8301795 0.6211144 -0.5668815 0.8301795 0.6211144 -0.5947903 0.8301795 0.6211144 -0.6211144 0.8301795 0.6211144 -0.6460766 0.8301795 0.6211144 -0.6698526 0.8301795 0.6211144 -0.6925839 0.8301795 0.6211144 -0.7143866 0.8301795 0.6211144 -0.7353569 0.8301795 0.6211144 -0.7555758 0.8301795 0.6211144 -0.7751122 0.8301795 0.6211144 -0.7940252 0.8301795 0.6211144 -0.8123661 0.8301795 0.6211144 -0.8301795 0.8301795 0.6211144 -0.8475045 0.8301795 0.6211144 -0.8643761 0.8301795 0.6211144 -0.880825 0.8301795 0.6211144 -0.8968787 0.8301795 0.6211144 -0.9125621 0.8301795 0.6211144 -0.9278974 0.8301795 0.6211144 -0.9429048 0.8301795 0.6211144 -0.9576028 0.8301795 0.6211144 -0.9720079 0.8301795 0.6211144 -0.9861357 0.8301795 0.6211144 -1 0.8301795 0.6211144 -0 0.8475045 0.6211144 -0.1939468 0.8475045 0.6211144 -0.2773041 0.8475045 0.6211144 -0.3384659 0.8475045 0.6211144 -0.3885728 0.8475045 0.6211144 -0.4317928 0.8475045 0.6211144 -0.470214 0.8475045 0.6211144 -0.5050551 0.8475045 0.6211144 -0.5370987 0.8475045 0.6211144 -0.5668815 0.8475045 0.6211144 -0.5947903 0.8475045 0.6211144 -0.6211144 0.8475045 0.6211144 -0.6460766 0.8475045 0.6211144 -0.6698526 0.8475045 0.6211144 -0.6925839 0.8475045 0.6211144 -0.7143866 0.8475045 0.6211144 -0.7353569 0.8475045 0.6211144 -0.7555758 0.8475045 0.6211144 -0.7751122 0.8475045 0.6211144 -0.7940252 0.8475045 0.6211144 -0.8123661 0.8475045 0.6211144 -0.8301795 0.8475045 0.6211144 -0.8475045 0.8475045 0.6211144 -0.8643761 0.8475045 0.6211144 -0.880825 0.8475045 0.6211144 -0.8968787 0.8475045 0.6211144 -0.9125621 0.8475045 0.6211144 -0.9278974 0.8475045 0.6211144 -0.9429048 0.8475045 0.6211144 -0.9576028 0.8475045 0.6211144 -0.9720079 0.8475045 0.6211144 -0.9861357 0.8475045 0.6211144 -1 0.8475045 0.6211144 -0 0.8643761 0.6211144 -0.1939468 0.8643761 0.6211144 -0.2773041 0.8643761 0.6211144 -0.3384659 0.8643761 0.6211144 -0.3885728 0.8643761 0.6211144 -0.4317928 0.8643761 0.6211144 -0.470214 0.8643761 0.6211144 -0.5050551 0.8643761 0.6211144 -0.5370987 0.8643761 0.6211144 -0.5668815 0.8643761 0.6211144 -0.5947903 0.8643761 0.6211144 -0.6211144 0.8643761 0.6211144 -0.6460766 0.8643761 0.6211144 -0.6698526 0.8643761 0.6211144 -0.6925839 0.8643761 0.6211144 -0.7143866 0.8643761 0.6211144 -0.7353569 0.8643761 0.6211144 -0.7555758 0.8643761 0.6211144 -0.7751122 0.8643761 0.6211144 -0.7940252 0.8643761 0.6211144 -0.8123661 0.8643761 0.6211144 -0.8301795 0.8643761 0.6211144 -0.8475045 0.8643761 0.6211144 -0.8643761 0.8643761 0.6211144 -0.880825 0.8643761 0.6211144 -0.8968787 0.8643761 0.6211144 -0.9125621 0.8643761 0.6211144 -0.9278974 0.8643761 0.6211144 -0.9429048 0.8643761 0.6211144 -0.9576028 0.8643761 0.6211144 -0.9720079 0.8643761 0.6211144 -0.9861357 0.8643761 0.6211144 -1 0.8643761 0.6211144 -0 0.880825 0.6211144 -0.1939468 0.880825 0.6211144 -0.2773041 0.880825 0.6211144 -0.3384659 0.880825 0.6211144 -0.3885728 0.880825 0.6211144 -0.4317928 0.880825 0.6211144 -0.470214 0.880825 0.6211144 -0.5050551 0.880825 0.6211144 -0.5370987 0.880825 0.6211144 -0.5668815 0.880825 0.6211144 -0.5947903 0.880825 0.6211144 -0.6211144 0.880825 0.6211144 -0.6460766 0.880825 0.6211144 -0.6698526 0.880825 0.6211144 -0.6925839 0.880825 0.6211144 -0.7143866 0.880825 0.6211144 -0.7353569 0.880825 0.6211144 -0.7555758 0.880825 0.6211144 -0.7751122 0.880825 0.6211144 -0.7940252 0.880825 0.6211144 -0.8123661 0.880825 0.6211144 -0.8301795 0.880825 0.6211144 -0.8475045 0.880825 0.6211144 -0.8643761 0.880825 0.6211144 -0.880825 0.880825 0.6211144 -0.8968787 0.880825 0.6211144 -0.9125621 0.880825 0.6211144 -0.9278974 0.880825 0.6211144 -0.9429048 0.880825 0.6211144 -0.9576028 0.880825 0.6211144 -0.9720079 0.880825 0.6211144 -0.9861357 0.880825 0.6211144 -1 0.880825 0.6211144 -0 0.8968787 0.6211144 -0.1939468 0.8968787 0.6211144 -0.2773041 0.8968787 0.6211144 -0.3384659 0.8968787 0.6211144 -0.3885728 0.8968787 0.6211144 -0.4317928 0.8968787 0.6211144 -0.470214 0.8968787 0.6211144 -0.5050551 0.8968787 0.6211144 -0.5370987 0.8968787 0.6211144 -0.5668815 0.8968787 0.6211144 -0.5947903 0.8968787 0.6211144 -0.6211144 0.8968787 0.6211144 -0.6460766 0.8968787 0.6211144 -0.6698526 0.8968787 0.6211144 -0.6925839 0.8968787 0.6211144 -0.7143866 0.8968787 0.6211144 -0.7353569 0.8968787 0.6211144 -0.7555758 0.8968787 0.6211144 -0.7751122 0.8968787 0.6211144 -0.7940252 0.8968787 0.6211144 -0.8123661 0.8968787 0.6211144 -0.8301795 0.8968787 0.6211144 -0.8475045 0.8968787 0.6211144 -0.8643761 0.8968787 0.6211144 -0.880825 0.8968787 0.6211144 -0.8968787 0.8968787 0.6211144 -0.9125621 0.8968787 0.6211144 -0.9278974 0.8968787 0.6211144 -0.9429048 0.8968787 0.6211144 -0.9576028 0.8968787 0.6211144 -0.9720079 0.8968787 0.6211144 -0.9861357 0.8968787 0.6211144 -1 0.8968787 0.6211144 -0 0.9125621 0.6211144 -0.1939468 0.9125621 0.6211144 -0.2773041 0.9125621 0.6211144 -0.3384659 0.9125621 0.6211144 -0.3885728 0.9125621 0.6211144 -0.4317928 0.9125621 0.6211144 -0.470214 0.9125621 0.6211144 -0.5050551 0.9125621 0.6211144 -0.5370987 0.9125621 0.6211144 -0.5668815 0.9125621 0.6211144 -0.5947903 0.9125621 0.6211144 -0.6211144 0.9125621 0.6211144 -0.6460766 0.9125621 0.6211144 -0.6698526 0.9125621 0.6211144 -0.6925839 0.9125621 0.6211144 -0.7143866 0.9125621 0.6211144 -0.7353569 0.9125621 0.6211144 -0.7555758 0.9125621 0.6211144 -0.7751122 0.9125621 0.6211144 -0.7940252 0.9125621 0.6211144 -0.8123661 0.9125621 0.6211144 -0.8301795 0.9125621 0.6211144 -0.8475045 0.9125621 0.6211144 -0.8643761 0.9125621 0.6211144 -0.880825 0.9125621 0.6211144 -0.8968787 0.9125621 0.6211144 -0.9125621 0.9125621 0.6211144 -0.9278974 0.9125621 0.6211144 -0.9429048 0.9125621 0.6211144 -0.9576028 0.9125621 0.6211144 -0.9720079 0.9125621 0.6211144 -0.9861357 0.9125621 0.6211144 -1 0.9125621 0.6211144 -0 0.9278974 0.6211144 -0.1939468 0.9278974 0.6211144 -0.2773041 0.9278974 0.6211144 -0.3384659 0.9278974 0.6211144 -0.3885728 0.9278974 0.6211144 -0.4317928 0.9278974 0.6211144 -0.470214 0.9278974 0.6211144 -0.5050551 0.9278974 0.6211144 -0.5370987 0.9278974 0.6211144 -0.5668815 0.9278974 0.6211144 -0.5947903 0.9278974 0.6211144 -0.6211144 0.9278974 0.6211144 -0.6460766 0.9278974 0.6211144 -0.6698526 0.9278974 0.6211144 -0.6925839 0.9278974 0.6211144 -0.7143866 0.9278974 0.6211144 -0.7353569 0.9278974 0.6211144 -0.7555758 0.9278974 0.6211144 -0.7751122 0.9278974 0.6211144 -0.7940252 0.9278974 0.6211144 -0.8123661 0.9278974 0.6211144 -0.8301795 0.9278974 0.6211144 -0.8475045 0.9278974 0.6211144 -0.8643761 0.9278974 0.6211144 -0.880825 0.9278974 0.6211144 -0.8968787 0.9278974 0.6211144 -0.9125621 0.9278974 0.6211144 -0.9278974 0.9278974 0.6211144 -0.9429048 0.9278974 0.6211144 -0.9576028 0.9278974 0.6211144 -0.9720079 0.9278974 0.6211144 -0.9861357 0.9278974 0.6211144 -1 0.9278974 0.6211144 -0 0.9429048 0.6211144 -0.1939468 0.9429048 0.6211144 -0.2773041 0.9429048 0.6211144 -0.3384659 0.9429048 0.6211144 -0.3885728 0.9429048 0.6211144 -0.4317928 0.9429048 0.6211144 -0.470214 0.9429048 0.6211144 -0.5050551 0.9429048 0.6211144 -0.5370987 0.9429048 0.6211144 -0.5668815 0.9429048 0.6211144 -0.5947903 0.9429048 0.6211144 -0.6211144 0.9429048 0.6211144 -0.6460766 0.9429048 0.6211144 -0.6698526 0.9429048 0.6211144 -0.6925839 0.9429048 0.6211144 -0.7143866 0.9429048 0.6211144 -0.7353569 0.9429048 0.6211144 -0.7555758 0.9429048 0.6211144 -0.7751122 0.9429048 0.6211144 -0.7940252 0.9429048 0.6211144 -0.8123661 0.9429048 0.6211144 -0.8301795 0.9429048 0.6211144 -0.8475045 0.9429048 0.6211144 -0.8643761 0.9429048 0.6211144 -0.880825 0.9429048 0.6211144 -0.8968787 0.9429048 0.6211144 -0.9125621 0.9429048 0.6211144 -0.9278974 0.9429048 0.6211144 -0.9429048 0.9429048 0.6211144 -0.9576028 0.9429048 0.6211144 -0.9720079 0.9429048 0.6211144 -0.9861357 0.9429048 0.6211144 -1 0.9429048 0.6211144 -0 0.9576028 0.6211144 -0.1939468 0.9576028 0.6211144 -0.2773041 0.9576028 0.6211144 -0.3384659 0.9576028 0.6211144 -0.3885728 0.9576028 0.6211144 -0.4317928 0.9576028 0.6211144 -0.470214 0.9576028 0.6211144 -0.5050551 0.9576028 0.6211144 -0.5370987 0.9576028 0.6211144 -0.5668815 0.9576028 0.6211144 -0.5947903 0.9576028 0.6211144 -0.6211144 0.9576028 0.6211144 -0.6460766 0.9576028 0.6211144 -0.6698526 0.9576028 0.6211144 -0.6925839 0.9576028 0.6211144 -0.7143866 0.9576028 0.6211144 -0.7353569 0.9576028 0.6211144 -0.7555758 0.9576028 0.6211144 -0.7751122 0.9576028 0.6211144 -0.7940252 0.9576028 0.6211144 -0.8123661 0.9576028 0.6211144 -0.8301795 0.9576028 0.6211144 -0.8475045 0.9576028 0.6211144 -0.8643761 0.9576028 0.6211144 -0.880825 0.9576028 0.6211144 -0.8968787 0.9576028 0.6211144 -0.9125621 0.9576028 0.6211144 -0.9278974 0.9576028 0.6211144 -0.9429048 0.9576028 0.6211144 -0.9576028 0.9576028 0.6211144 -0.9720079 0.9576028 0.6211144 -0.9861357 0.9576028 0.6211144 -1 0.9576028 0.6211144 -0 0.9720079 0.6211144 -0.1939468 0.9720079 0.6211144 -0.2773041 0.9720079 0.6211144 -0.3384659 0.9720079 0.6211144 -0.3885728 0.9720079 0.6211144 -0.4317928 0.9720079 0.6211144 -0.470214 0.9720079 0.6211144 -0.5050551 0.9720079 0.6211144 -0.5370987 0.9720079 0.6211144 -0.5668815 0.9720079 0.6211144 -0.5947903 0.9720079 0.6211144 -0.6211144 0.9720079 0.6211144 -0.6460766 0.9720079 0.6211144 -0.6698526 0.9720079 0.6211144 -0.6925839 0.9720079 0.6211144 -0.7143866 0.9720079 0.6211144 -0.7353569 0.9720079 0.6211144 -0.7555758 0.9720079 0.6211144 -0.7751122 0.9720079 0.6211144 -0.7940252 0.9720079 0.6211144 -0.8123661 0.9720079 0.6211144 -0.8301795 0.9720079 0.6211144 -0.8475045 0.9720079 0.6211144 -0.8643761 0.9720079 0.6211144 -0.880825 0.9720079 0.6211144 -0.8968787 0.9720079 0.6211144 -0.9125621 0.9720079 0.6211144 -0.9278974 0.9720079 0.6211144 -0.9429048 0.9720079 0.6211144 -0.9576028 0.9720079 0.6211144 -0.9720079 0.9720079 0.6211144 -0.9861357 0.9720079 0.6211144 -1 0.9720079 0.6211144 -0 0.9861357 0.6211144 -0.1939468 0.9861357 0.6211144 -0.2773041 0.9861357 0.6211144 -0.3384659 0.9861357 0.6211144 -0.3885728 0.9861357 0.6211144 -0.4317928 0.9861357 0.6211144 -0.470214 0.9861357 0.6211144 -0.5050551 0.9861357 0.6211144 -0.5370987 0.9861357 0.6211144 -0.5668815 0.9861357 0.6211144 -0.5947903 0.9861357 0.6211144 -0.6211144 0.9861357 0.6211144 -0.6460766 0.9861357 0.6211144 -0.6698526 0.9861357 0.6211144 -0.6925839 0.9861357 0.6211144 -0.7143866 0.9861357 0.6211144 -0.7353569 0.9861357 0.6211144 -0.7555758 0.9861357 0.6211144 -0.7751122 0.9861357 0.6211144 -0.7940252 0.9861357 0.6211144 -0.8123661 0.9861357 0.6211144 -0.8301795 0.9861357 0.6211144 -0.8475045 0.9861357 0.6211144 -0.8643761 0.9861357 0.6211144 -0.880825 0.9861357 0.6211144 -0.8968787 0.9861357 0.6211144 -0.9125621 0.9861357 0.6211144 -0.9278974 0.9861357 0.6211144 -0.9429048 0.9861357 0.6211144 -0.9576028 0.9861357 0.6211144 -0.9720079 0.9861357 0.6211144 -0.9861357 0.9861357 0.6211144 -1 0.9861357 0.6211144 -0 1 0.6211144 -0.1939468 1 0.6211144 -0.2773041 1 0.6211144 -0.3384659 1 0.6211144 -0.3885728 1 0.6211144 -0.4317928 1 0.6211144 -0.470214 1 0.6211144 -0.5050551 1 0.6211144 -0.5370987 1 0.6211144 -0.5668815 1 0.6211144 -0.5947903 1 0.6211144 -0.6211144 1 0.6211144 -0.6460766 1 0.6211144 -0.6698526 1 0.6211144 -0.6925839 1 0.6211144 -0.7143866 1 0.6211144 -0.7353569 1 0.6211144 -0.7555758 1 0.6211144 -0.7751122 1 0.6211144 -0.7940252 1 0.6211144 -0.8123661 1 0.6211144 -0.8301795 1 0.6211144 -0.8475045 1 0.6211144 -0.8643761 1 0.6211144 -0.880825 1 0.6211144 -0.8968787 1 0.6211144 -0.9125621 1 0.6211144 -0.9278974 1 0.6211144 -0.9429048 1 0.6211144 -0.9576028 1 0.6211144 -0.9720079 1 0.6211144 -0.9861357 1 0.6211144 -1 1 0.6211144 -0 0 0.6460766 -0.1939468 0 0.6460766 -0.2773041 0 0.6460766 -0.3384659 0 0.6460766 -0.3885728 0 0.6460766 -0.4317928 0 0.6460766 -0.470214 0 0.6460766 -0.5050551 0 0.6460766 -0.5370987 0 0.6460766 -0.5668815 0 0.6460766 -0.5947903 0 0.6460766 -0.6211144 0 0.6460766 -0.6460766 0 0.6460766 -0.6698526 0 0.6460766 -0.6925839 0 0.6460766 -0.7143866 0 0.6460766 -0.7353569 0 0.6460766 -0.7555758 0 0.6460766 -0.7751122 0 0.6460766 -0.7940252 0 0.6460766 -0.8123661 0 0.6460766 -0.8301795 0 0.6460766 -0.8475045 0 0.6460766 -0.8643761 0 0.6460766 -0.880825 0 0.6460766 -0.8968787 0 0.6460766 -0.9125621 0 0.6460766 -0.9278974 0 0.6460766 -0.9429048 0 0.6460766 -0.9576028 0 0.6460766 -0.9720079 0 0.6460766 -0.9861357 0 0.6460766 -1 0 0.6460766 -0 0.1939468 0.6460766 -0.1939468 0.1939468 0.6460766 -0.2773041 0.1939468 0.6460766 -0.3384659 0.1939468 0.6460766 -0.3885728 0.1939468 0.6460766 -0.4317928 0.1939468 0.6460766 -0.470214 0.1939468 0.6460766 -0.5050551 0.1939468 0.6460766 -0.5370987 0.1939468 0.6460766 -0.5668815 0.1939468 0.6460766 -0.5947903 0.1939468 0.6460766 -0.6211144 0.1939468 0.6460766 -0.6460766 0.1939468 0.6460766 -0.6698526 0.1939468 0.6460766 -0.6925839 0.1939468 0.6460766 -0.7143866 0.1939468 0.6460766 -0.7353569 0.1939468 0.6460766 -0.7555758 0.1939468 0.6460766 -0.7751122 0.1939468 0.6460766 -0.7940252 0.1939468 0.6460766 -0.8123661 0.1939468 0.6460766 -0.8301795 0.1939468 0.6460766 -0.8475045 0.1939468 0.6460766 -0.8643761 0.1939468 0.6460766 -0.880825 0.1939468 0.6460766 -0.8968787 0.1939468 0.6460766 -0.9125621 0.1939468 0.6460766 -0.9278974 0.1939468 0.6460766 -0.9429048 0.1939468 0.6460766 -0.9576028 0.1939468 0.6460766 -0.9720079 0.1939468 0.6460766 -0.9861357 0.1939468 0.6460766 -1 0.1939468 0.6460766 -0 0.2773041 0.6460766 -0.1939468 0.2773041 0.6460766 -0.2773041 0.2773041 0.6460766 -0.3384659 0.2773041 0.6460766 -0.3885728 0.2773041 0.6460766 -0.4317928 0.2773041 0.6460766 -0.470214 0.2773041 0.6460766 -0.5050551 0.2773041 0.6460766 -0.5370987 0.2773041 0.6460766 -0.5668815 0.2773041 0.6460766 -0.5947903 0.2773041 0.6460766 -0.6211144 0.2773041 0.6460766 -0.6460766 0.2773041 0.6460766 -0.6698526 0.2773041 0.6460766 -0.6925839 0.2773041 0.6460766 -0.7143866 0.2773041 0.6460766 -0.7353569 0.2773041 0.6460766 -0.7555758 0.2773041 0.6460766 -0.7751122 0.2773041 0.6460766 -0.7940252 0.2773041 0.6460766 -0.8123661 0.2773041 0.6460766 -0.8301795 0.2773041 0.6460766 -0.8475045 0.2773041 0.6460766 -0.8643761 0.2773041 0.6460766 -0.880825 0.2773041 0.6460766 -0.8968787 0.2773041 0.6460766 -0.9125621 0.2773041 0.6460766 -0.9278974 0.2773041 0.6460766 -0.9429048 0.2773041 0.6460766 -0.9576028 0.2773041 0.6460766 -0.9720079 0.2773041 0.6460766 -0.9861357 0.2773041 0.6460766 -1 0.2773041 0.6460766 -0 0.3384659 0.6460766 -0.1939468 0.3384659 0.6460766 -0.2773041 0.3384659 0.6460766 -0.3384659 0.3384659 0.6460766 -0.3885728 0.3384659 0.6460766 -0.4317928 0.3384659 0.6460766 -0.470214 0.3384659 0.6460766 -0.5050551 0.3384659 0.6460766 -0.5370987 0.3384659 0.6460766 -0.5668815 0.3384659 0.6460766 -0.5947903 0.3384659 0.6460766 -0.6211144 0.3384659 0.6460766 -0.6460766 0.3384659 0.6460766 -0.6698526 0.3384659 0.6460766 -0.6925839 0.3384659 0.6460766 -0.7143866 0.3384659 0.6460766 -0.7353569 0.3384659 0.6460766 -0.7555758 0.3384659 0.6460766 -0.7751122 0.3384659 0.6460766 -0.7940252 0.3384659 0.6460766 -0.8123661 0.3384659 0.6460766 -0.8301795 0.3384659 0.6460766 -0.8475045 0.3384659 0.6460766 -0.8643761 0.3384659 0.6460766 -0.880825 0.3384659 0.6460766 -0.8968787 0.3384659 0.6460766 -0.9125621 0.3384659 0.6460766 -0.9278974 0.3384659 0.6460766 -0.9429048 0.3384659 0.6460766 -0.9576028 0.3384659 0.6460766 -0.9720079 0.3384659 0.6460766 -0.9861357 0.3384659 0.6460766 -1 0.3384659 0.6460766 -0 0.3885728 0.6460766 -0.1939468 0.3885728 0.6460766 -0.2773041 0.3885728 0.6460766 -0.3384659 0.3885728 0.6460766 -0.3885728 0.3885728 0.6460766 -0.4317928 0.3885728 0.6460766 -0.470214 0.3885728 0.6460766 -0.5050551 0.3885728 0.6460766 -0.5370987 0.3885728 0.6460766 -0.5668815 0.3885728 0.6460766 -0.5947903 0.3885728 0.6460766 -0.6211144 0.3885728 0.6460766 -0.6460766 0.3885728 0.6460766 -0.6698526 0.3885728 0.6460766 -0.6925839 0.3885728 0.6460766 -0.7143866 0.3885728 0.6460766 -0.7353569 0.3885728 0.6460766 -0.7555758 0.3885728 0.6460766 -0.7751122 0.3885728 0.6460766 -0.7940252 0.3885728 0.6460766 -0.8123661 0.3885728 0.6460766 -0.8301795 0.3885728 0.6460766 -0.8475045 0.3885728 0.6460766 -0.8643761 0.3885728 0.6460766 -0.880825 0.3885728 0.6460766 -0.8968787 0.3885728 0.6460766 -0.9125621 0.3885728 0.6460766 -0.9278974 0.3885728 0.6460766 -0.9429048 0.3885728 0.6460766 -0.9576028 0.3885728 0.6460766 -0.9720079 0.3885728 0.6460766 -0.9861357 0.3885728 0.6460766 -1 0.3885728 0.6460766 -0 0.4317928 0.6460766 -0.1939468 0.4317928 0.6460766 -0.2773041 0.4317928 0.6460766 -0.3384659 0.4317928 0.6460766 -0.3885728 0.4317928 0.6460766 -0.4317928 0.4317928 0.6460766 -0.470214 0.4317928 0.6460766 -0.5050551 0.4317928 0.6460766 -0.5370987 0.4317928 0.6460766 -0.5668815 0.4317928 0.6460766 -0.5947903 0.4317928 0.6460766 -0.6211144 0.4317928 0.6460766 -0.6460766 0.4317928 0.6460766 -0.6698526 0.4317928 0.6460766 -0.6925839 0.4317928 0.6460766 -0.7143866 0.4317928 0.6460766 -0.7353569 0.4317928 0.6460766 -0.7555758 0.4317928 0.6460766 -0.7751122 0.4317928 0.6460766 -0.7940252 0.4317928 0.6460766 -0.8123661 0.4317928 0.6460766 -0.8301795 0.4317928 0.6460766 -0.8475045 0.4317928 0.6460766 -0.8643761 0.4317928 0.6460766 -0.880825 0.4317928 0.6460766 -0.8968787 0.4317928 0.6460766 -0.9125621 0.4317928 0.6460766 -0.9278974 0.4317928 0.6460766 -0.9429048 0.4317928 0.6460766 -0.9576028 0.4317928 0.6460766 -0.9720079 0.4317928 0.6460766 -0.9861357 0.4317928 0.6460766 -1 0.4317928 0.6460766 -0 0.470214 0.6460766 -0.1939468 0.470214 0.6460766 -0.2773041 0.470214 0.6460766 -0.3384659 0.470214 0.6460766 -0.3885728 0.470214 0.6460766 -0.4317928 0.470214 0.6460766 -0.470214 0.470214 0.6460766 -0.5050551 0.470214 0.6460766 -0.5370987 0.470214 0.6460766 -0.5668815 0.470214 0.6460766 -0.5947903 0.470214 0.6460766 -0.6211144 0.470214 0.6460766 -0.6460766 0.470214 0.6460766 -0.6698526 0.470214 0.6460766 -0.6925839 0.470214 0.6460766 -0.7143866 0.470214 0.6460766 -0.7353569 0.470214 0.6460766 -0.7555758 0.470214 0.6460766 -0.7751122 0.470214 0.6460766 -0.7940252 0.470214 0.6460766 -0.8123661 0.470214 0.6460766 -0.8301795 0.470214 0.6460766 -0.8475045 0.470214 0.6460766 -0.8643761 0.470214 0.6460766 -0.880825 0.470214 0.6460766 -0.8968787 0.470214 0.6460766 -0.9125621 0.470214 0.6460766 -0.9278974 0.470214 0.6460766 -0.9429048 0.470214 0.6460766 -0.9576028 0.470214 0.6460766 -0.9720079 0.470214 0.6460766 -0.9861357 0.470214 0.6460766 -1 0.470214 0.6460766 -0 0.5050551 0.6460766 -0.1939468 0.5050551 0.6460766 -0.2773041 0.5050551 0.6460766 -0.3384659 0.5050551 0.6460766 -0.3885728 0.5050551 0.6460766 -0.4317928 0.5050551 0.6460766 -0.470214 0.5050551 0.6460766 -0.5050551 0.5050551 0.6460766 -0.5370987 0.5050551 0.6460766 -0.5668815 0.5050551 0.6460766 -0.5947903 0.5050551 0.6460766 -0.6211144 0.5050551 0.6460766 -0.6460766 0.5050551 0.6460766 -0.6698526 0.5050551 0.6460766 -0.6925839 0.5050551 0.6460766 -0.7143866 0.5050551 0.6460766 -0.7353569 0.5050551 0.6460766 -0.7555758 0.5050551 0.6460766 -0.7751122 0.5050551 0.6460766 -0.7940252 0.5050551 0.6460766 -0.8123661 0.5050551 0.6460766 -0.8301795 0.5050551 0.6460766 -0.8475045 0.5050551 0.6460766 -0.8643761 0.5050551 0.6460766 -0.880825 0.5050551 0.6460766 -0.8968787 0.5050551 0.6460766 -0.9125621 0.5050551 0.6460766 -0.9278974 0.5050551 0.6460766 -0.9429048 0.5050551 0.6460766 -0.9576028 0.5050551 0.6460766 -0.9720079 0.5050551 0.6460766 -0.9861357 0.5050551 0.6460766 -1 0.5050551 0.6460766 -0 0.5370987 0.6460766 -0.1939468 0.5370987 0.6460766 -0.2773041 0.5370987 0.6460766 -0.3384659 0.5370987 0.6460766 -0.3885728 0.5370987 0.6460766 -0.4317928 0.5370987 0.6460766 -0.470214 0.5370987 0.6460766 -0.5050551 0.5370987 0.6460766 -0.5370987 0.5370987 0.6460766 -0.5668815 0.5370987 0.6460766 -0.5947903 0.5370987 0.6460766 -0.6211144 0.5370987 0.6460766 -0.6460766 0.5370987 0.6460766 -0.6698526 0.5370987 0.6460766 -0.6925839 0.5370987 0.6460766 -0.7143866 0.5370987 0.6460766 -0.7353569 0.5370987 0.6460766 -0.7555758 0.5370987 0.6460766 -0.7751122 0.5370987 0.6460766 -0.7940252 0.5370987 0.6460766 -0.8123661 0.5370987 0.6460766 -0.8301795 0.5370987 0.6460766 -0.8475045 0.5370987 0.6460766 -0.8643761 0.5370987 0.6460766 -0.880825 0.5370987 0.6460766 -0.8968787 0.5370987 0.6460766 -0.9125621 0.5370987 0.6460766 -0.9278974 0.5370987 0.6460766 -0.9429048 0.5370987 0.6460766 -0.9576028 0.5370987 0.6460766 -0.9720079 0.5370987 0.6460766 -0.9861357 0.5370987 0.6460766 -1 0.5370987 0.6460766 -0 0.5668815 0.6460766 -0.1939468 0.5668815 0.6460766 -0.2773041 0.5668815 0.6460766 -0.3384659 0.5668815 0.6460766 -0.3885728 0.5668815 0.6460766 -0.4317928 0.5668815 0.6460766 -0.470214 0.5668815 0.6460766 -0.5050551 0.5668815 0.6460766 -0.5370987 0.5668815 0.6460766 -0.5668815 0.5668815 0.6460766 -0.5947903 0.5668815 0.6460766 -0.6211144 0.5668815 0.6460766 -0.6460766 0.5668815 0.6460766 -0.6698526 0.5668815 0.6460766 -0.6925839 0.5668815 0.6460766 -0.7143866 0.5668815 0.6460766 -0.7353569 0.5668815 0.6460766 -0.7555758 0.5668815 0.6460766 -0.7751122 0.5668815 0.6460766 -0.7940252 0.5668815 0.6460766 -0.8123661 0.5668815 0.6460766 -0.8301795 0.5668815 0.6460766 -0.8475045 0.5668815 0.6460766 -0.8643761 0.5668815 0.6460766 -0.880825 0.5668815 0.6460766 -0.8968787 0.5668815 0.6460766 -0.9125621 0.5668815 0.6460766 -0.9278974 0.5668815 0.6460766 -0.9429048 0.5668815 0.6460766 -0.9576028 0.5668815 0.6460766 -0.9720079 0.5668815 0.6460766 -0.9861357 0.5668815 0.6460766 -1 0.5668815 0.6460766 -0 0.5947903 0.6460766 -0.1939468 0.5947903 0.6460766 -0.2773041 0.5947903 0.6460766 -0.3384659 0.5947903 0.6460766 -0.3885728 0.5947903 0.6460766 -0.4317928 0.5947903 0.6460766 -0.470214 0.5947903 0.6460766 -0.5050551 0.5947903 0.6460766 -0.5370987 0.5947903 0.6460766 -0.5668815 0.5947903 0.6460766 -0.5947903 0.5947903 0.6460766 -0.6211144 0.5947903 0.6460766 -0.6460766 0.5947903 0.6460766 -0.6698526 0.5947903 0.6460766 -0.6925839 0.5947903 0.6460766 -0.7143866 0.5947903 0.6460766 -0.7353569 0.5947903 0.6460766 -0.7555758 0.5947903 0.6460766 -0.7751122 0.5947903 0.6460766 -0.7940252 0.5947903 0.6460766 -0.8123661 0.5947903 0.6460766 -0.8301795 0.5947903 0.6460766 -0.8475045 0.5947903 0.6460766 -0.8643761 0.5947903 0.6460766 -0.880825 0.5947903 0.6460766 -0.8968787 0.5947903 0.6460766 -0.9125621 0.5947903 0.6460766 -0.9278974 0.5947903 0.6460766 -0.9429048 0.5947903 0.6460766 -0.9576028 0.5947903 0.6460766 -0.9720079 0.5947903 0.6460766 -0.9861357 0.5947903 0.6460766 -1 0.5947903 0.6460766 -0 0.6211144 0.6460766 -0.1939468 0.6211144 0.6460766 -0.2773041 0.6211144 0.6460766 -0.3384659 0.6211144 0.6460766 -0.3885728 0.6211144 0.6460766 -0.4317928 0.6211144 0.6460766 -0.470214 0.6211144 0.6460766 -0.5050551 0.6211144 0.6460766 -0.5370987 0.6211144 0.6460766 -0.5668815 0.6211144 0.6460766 -0.5947903 0.6211144 0.6460766 -0.6211144 0.6211144 0.6460766 -0.6460766 0.6211144 0.6460766 -0.6698526 0.6211144 0.6460766 -0.6925839 0.6211144 0.6460766 -0.7143866 0.6211144 0.6460766 -0.7353569 0.6211144 0.6460766 -0.7555758 0.6211144 0.6460766 -0.7751122 0.6211144 0.6460766 -0.7940252 0.6211144 0.6460766 -0.8123661 0.6211144 0.6460766 -0.8301795 0.6211144 0.6460766 -0.8475045 0.6211144 0.6460766 -0.8643761 0.6211144 0.6460766 -0.880825 0.6211144 0.6460766 -0.8968787 0.6211144 0.6460766 -0.9125621 0.6211144 0.6460766 -0.9278974 0.6211144 0.6460766 -0.9429048 0.6211144 0.6460766 -0.9576028 0.6211144 0.6460766 -0.9720079 0.6211144 0.6460766 -0.9861357 0.6211144 0.6460766 -1 0.6211144 0.6460766 -0 0.6460766 0.6460766 -0.1939468 0.6460766 0.6460766 -0.2773041 0.6460766 0.6460766 -0.3384659 0.6460766 0.6460766 -0.3885728 0.6460766 0.6460766 -0.4317928 0.6460766 0.6460766 -0.470214 0.6460766 0.6460766 -0.5050551 0.6460766 0.6460766 -0.5370987 0.6460766 0.6460766 -0.5668815 0.6460766 0.6460766 -0.5947903 0.6460766 0.6460766 -0.6211144 0.6460766 0.6460766 -0.6460766 0.6460766 0.6460766 -0.6698526 0.6460766 0.6460766 -0.6925839 0.6460766 0.6460766 -0.7143866 0.6460766 0.6460766 -0.7353569 0.6460766 0.6460766 -0.7555758 0.6460766 0.6460766 -0.7751122 0.6460766 0.6460766 -0.7940252 0.6460766 0.6460766 -0.8123661 0.6460766 0.6460766 -0.8301795 0.6460766 0.6460766 -0.8475045 0.6460766 0.6460766 -0.8643761 0.6460766 0.6460766 -0.880825 0.6460766 0.6460766 -0.8968787 0.6460766 0.6460766 -0.9125621 0.6460766 0.6460766 -0.9278974 0.6460766 0.6460766 -0.9429048 0.6460766 0.6460766 -0.9576028 0.6460766 0.6460766 -0.9720079 0.6460766 0.6460766 -0.9861357 0.6460766 0.6460766 -1 0.6460766 0.6460766 -0 0.6698526 0.6460766 -0.1939468 0.6698526 0.6460766 -0.2773041 0.6698526 0.6460766 -0.3384659 0.6698526 0.6460766 -0.3885728 0.6698526 0.6460766 -0.4317928 0.6698526 0.6460766 -0.470214 0.6698526 0.6460766 -0.5050551 0.6698526 0.6460766 -0.5370987 0.6698526 0.6460766 -0.5668815 0.6698526 0.6460766 -0.5947903 0.6698526 0.6460766 -0.6211144 0.6698526 0.6460766 -0.6460766 0.6698526 0.6460766 -0.6698526 0.6698526 0.6460766 -0.6925839 0.6698526 0.6460766 -0.7143866 0.6698526 0.6460766 -0.7353569 0.6698526 0.6460766 -0.7555758 0.6698526 0.6460766 -0.7751122 0.6698526 0.6460766 -0.7940252 0.6698526 0.6460766 -0.8123661 0.6698526 0.6460766 -0.8301795 0.6698526 0.6460766 -0.8475045 0.6698526 0.6460766 -0.8643761 0.6698526 0.6460766 -0.880825 0.6698526 0.6460766 -0.8968787 0.6698526 0.6460766 -0.9125621 0.6698526 0.6460766 -0.9278974 0.6698526 0.6460766 -0.9429048 0.6698526 0.6460766 -0.9576028 0.6698526 0.6460766 -0.9720079 0.6698526 0.6460766 -0.9861357 0.6698526 0.6460766 -1 0.6698526 0.6460766 -0 0.6925839 0.6460766 -0.1939468 0.6925839 0.6460766 -0.2773041 0.6925839 0.6460766 -0.3384659 0.6925839 0.6460766 -0.3885728 0.6925839 0.6460766 -0.4317928 0.6925839 0.6460766 -0.470214 0.6925839 0.6460766 -0.5050551 0.6925839 0.6460766 -0.5370987 0.6925839 0.6460766 -0.5668815 0.6925839 0.6460766 -0.5947903 0.6925839 0.6460766 -0.6211144 0.6925839 0.6460766 -0.6460766 0.6925839 0.6460766 -0.6698526 0.6925839 0.6460766 -0.6925839 0.6925839 0.6460766 -0.7143866 0.6925839 0.6460766 -0.7353569 0.6925839 0.6460766 -0.7555758 0.6925839 0.6460766 -0.7751122 0.6925839 0.6460766 -0.7940252 0.6925839 0.6460766 -0.8123661 0.6925839 0.6460766 -0.8301795 0.6925839 0.6460766 -0.8475045 0.6925839 0.6460766 -0.8643761 0.6925839 0.6460766 -0.880825 0.6925839 0.6460766 -0.8968787 0.6925839 0.6460766 -0.9125621 0.6925839 0.6460766 -0.9278974 0.6925839 0.6460766 -0.9429048 0.6925839 0.6460766 -0.9576028 0.6925839 0.6460766 -0.9720079 0.6925839 0.6460766 -0.9861357 0.6925839 0.6460766 -1 0.6925839 0.6460766 -0 0.7143866 0.6460766 -0.1939468 0.7143866 0.6460766 -0.2773041 0.7143866 0.6460766 -0.3384659 0.7143866 0.6460766 -0.3885728 0.7143866 0.6460766 -0.4317928 0.7143866 0.6460766 -0.470214 0.7143866 0.6460766 -0.5050551 0.7143866 0.6460766 -0.5370987 0.7143866 0.6460766 -0.5668815 0.7143866 0.6460766 -0.5947903 0.7143866 0.6460766 -0.6211144 0.7143866 0.6460766 -0.6460766 0.7143866 0.6460766 -0.6698526 0.7143866 0.6460766 -0.6925839 0.7143866 0.6460766 -0.7143866 0.7143866 0.6460766 -0.7353569 0.7143866 0.6460766 -0.7555758 0.7143866 0.6460766 -0.7751122 0.7143866 0.6460766 -0.7940252 0.7143866 0.6460766 -0.8123661 0.7143866 0.6460766 -0.8301795 0.7143866 0.6460766 -0.8475045 0.7143866 0.6460766 -0.8643761 0.7143866 0.6460766 -0.880825 0.7143866 0.6460766 -0.8968787 0.7143866 0.6460766 -0.9125621 0.7143866 0.6460766 -0.9278974 0.7143866 0.6460766 -0.9429048 0.7143866 0.6460766 -0.9576028 0.7143866 0.6460766 -0.9720079 0.7143866 0.6460766 -0.9861357 0.7143866 0.6460766 -1 0.7143866 0.6460766 -0 0.7353569 0.6460766 -0.1939468 0.7353569 0.6460766 -0.2773041 0.7353569 0.6460766 -0.3384659 0.7353569 0.6460766 -0.3885728 0.7353569 0.6460766 -0.4317928 0.7353569 0.6460766 -0.470214 0.7353569 0.6460766 -0.5050551 0.7353569 0.6460766 -0.5370987 0.7353569 0.6460766 -0.5668815 0.7353569 0.6460766 -0.5947903 0.7353569 0.6460766 -0.6211144 0.7353569 0.6460766 -0.6460766 0.7353569 0.6460766 -0.6698526 0.7353569 0.6460766 -0.6925839 0.7353569 0.6460766 -0.7143866 0.7353569 0.6460766 -0.7353569 0.7353569 0.6460766 -0.7555758 0.7353569 0.6460766 -0.7751122 0.7353569 0.6460766 -0.7940252 0.7353569 0.6460766 -0.8123661 0.7353569 0.6460766 -0.8301795 0.7353569 0.6460766 -0.8475045 0.7353569 0.6460766 -0.8643761 0.7353569 0.6460766 -0.880825 0.7353569 0.6460766 -0.8968787 0.7353569 0.6460766 -0.9125621 0.7353569 0.6460766 -0.9278974 0.7353569 0.6460766 -0.9429048 0.7353569 0.6460766 -0.9576028 0.7353569 0.6460766 -0.9720079 0.7353569 0.6460766 -0.9861357 0.7353569 0.6460766 -1 0.7353569 0.6460766 -0 0.7555758 0.6460766 -0.1939468 0.7555758 0.6460766 -0.2773041 0.7555758 0.6460766 -0.3384659 0.7555758 0.6460766 -0.3885728 0.7555758 0.6460766 -0.4317928 0.7555758 0.6460766 -0.470214 0.7555758 0.6460766 -0.5050551 0.7555758 0.6460766 -0.5370987 0.7555758 0.6460766 -0.5668815 0.7555758 0.6460766 -0.5947903 0.7555758 0.6460766 -0.6211144 0.7555758 0.6460766 -0.6460766 0.7555758 0.6460766 -0.6698526 0.7555758 0.6460766 -0.6925839 0.7555758 0.6460766 -0.7143866 0.7555758 0.6460766 -0.7353569 0.7555758 0.6460766 -0.7555758 0.7555758 0.6460766 -0.7751122 0.7555758 0.6460766 -0.7940252 0.7555758 0.6460766 -0.8123661 0.7555758 0.6460766 -0.8301795 0.7555758 0.6460766 -0.8475045 0.7555758 0.6460766 -0.8643761 0.7555758 0.6460766 -0.880825 0.7555758 0.6460766 -0.8968787 0.7555758 0.6460766 -0.9125621 0.7555758 0.6460766 -0.9278974 0.7555758 0.6460766 -0.9429048 0.7555758 0.6460766 -0.9576028 0.7555758 0.6460766 -0.9720079 0.7555758 0.6460766 -0.9861357 0.7555758 0.6460766 -1 0.7555758 0.6460766 -0 0.7751122 0.6460766 -0.1939468 0.7751122 0.6460766 -0.2773041 0.7751122 0.6460766 -0.3384659 0.7751122 0.6460766 -0.3885728 0.7751122 0.6460766 -0.4317928 0.7751122 0.6460766 -0.470214 0.7751122 0.6460766 -0.5050551 0.7751122 0.6460766 -0.5370987 0.7751122 0.6460766 -0.5668815 0.7751122 0.6460766 -0.5947903 0.7751122 0.6460766 -0.6211144 0.7751122 0.6460766 -0.6460766 0.7751122 0.6460766 -0.6698526 0.7751122 0.6460766 -0.6925839 0.7751122 0.6460766 -0.7143866 0.7751122 0.6460766 -0.7353569 0.7751122 0.6460766 -0.7555758 0.7751122 0.6460766 -0.7751122 0.7751122 0.6460766 -0.7940252 0.7751122 0.6460766 -0.8123661 0.7751122 0.6460766 -0.8301795 0.7751122 0.6460766 -0.8475045 0.7751122 0.6460766 -0.8643761 0.7751122 0.6460766 -0.880825 0.7751122 0.6460766 -0.8968787 0.7751122 0.6460766 -0.9125621 0.7751122 0.6460766 -0.9278974 0.7751122 0.6460766 -0.9429048 0.7751122 0.6460766 -0.9576028 0.7751122 0.6460766 -0.9720079 0.7751122 0.6460766 -0.9861357 0.7751122 0.6460766 -1 0.7751122 0.6460766 -0 0.7940252 0.6460766 -0.1939468 0.7940252 0.6460766 -0.2773041 0.7940252 0.6460766 -0.3384659 0.7940252 0.6460766 -0.3885728 0.7940252 0.6460766 -0.4317928 0.7940252 0.6460766 -0.470214 0.7940252 0.6460766 -0.5050551 0.7940252 0.6460766 -0.5370987 0.7940252 0.6460766 -0.5668815 0.7940252 0.6460766 -0.5947903 0.7940252 0.6460766 -0.6211144 0.7940252 0.6460766 -0.6460766 0.7940252 0.6460766 -0.6698526 0.7940252 0.6460766 -0.6925839 0.7940252 0.6460766 -0.7143866 0.7940252 0.6460766 -0.7353569 0.7940252 0.6460766 -0.7555758 0.7940252 0.6460766 -0.7751122 0.7940252 0.6460766 -0.7940252 0.7940252 0.6460766 -0.8123661 0.7940252 0.6460766 -0.8301795 0.7940252 0.6460766 -0.8475045 0.7940252 0.6460766 -0.8643761 0.7940252 0.6460766 -0.880825 0.7940252 0.6460766 -0.8968787 0.7940252 0.6460766 -0.9125621 0.7940252 0.6460766 -0.9278974 0.7940252 0.6460766 -0.9429048 0.7940252 0.6460766 -0.9576028 0.7940252 0.6460766 -0.9720079 0.7940252 0.6460766 -0.9861357 0.7940252 0.6460766 -1 0.7940252 0.6460766 -0 0.8123661 0.6460766 -0.1939468 0.8123661 0.6460766 -0.2773041 0.8123661 0.6460766 -0.3384659 0.8123661 0.6460766 -0.3885728 0.8123661 0.6460766 -0.4317928 0.8123661 0.6460766 -0.470214 0.8123661 0.6460766 -0.5050551 0.8123661 0.6460766 -0.5370987 0.8123661 0.6460766 -0.5668815 0.8123661 0.6460766 -0.5947903 0.8123661 0.6460766 -0.6211144 0.8123661 0.6460766 -0.6460766 0.8123661 0.6460766 -0.6698526 0.8123661 0.6460766 -0.6925839 0.8123661 0.6460766 -0.7143866 0.8123661 0.6460766 -0.7353569 0.8123661 0.6460766 -0.7555758 0.8123661 0.6460766 -0.7751122 0.8123661 0.6460766 -0.7940252 0.8123661 0.6460766 -0.8123661 0.8123661 0.6460766 -0.8301795 0.8123661 0.6460766 -0.8475045 0.8123661 0.6460766 -0.8643761 0.8123661 0.6460766 -0.880825 0.8123661 0.6460766 -0.8968787 0.8123661 0.6460766 -0.9125621 0.8123661 0.6460766 -0.9278974 0.8123661 0.6460766 -0.9429048 0.8123661 0.6460766 -0.9576028 0.8123661 0.6460766 -0.9720079 0.8123661 0.6460766 -0.9861357 0.8123661 0.6460766 -1 0.8123661 0.6460766 -0 0.8301795 0.6460766 -0.1939468 0.8301795 0.6460766 -0.2773041 0.8301795 0.6460766 -0.3384659 0.8301795 0.6460766 -0.3885728 0.8301795 0.6460766 -0.4317928 0.8301795 0.6460766 -0.470214 0.8301795 0.6460766 -0.5050551 0.8301795 0.6460766 -0.5370987 0.8301795 0.6460766 -0.5668815 0.8301795 0.6460766 -0.5947903 0.8301795 0.6460766 -0.6211144 0.8301795 0.6460766 -0.6460766 0.8301795 0.6460766 -0.6698526 0.8301795 0.6460766 -0.6925839 0.8301795 0.6460766 -0.7143866 0.8301795 0.6460766 -0.7353569 0.8301795 0.6460766 -0.7555758 0.8301795 0.6460766 -0.7751122 0.8301795 0.6460766 -0.7940252 0.8301795 0.6460766 -0.8123661 0.8301795 0.6460766 -0.8301795 0.8301795 0.6460766 -0.8475045 0.8301795 0.6460766 -0.8643761 0.8301795 0.6460766 -0.880825 0.8301795 0.6460766 -0.8968787 0.8301795 0.6460766 -0.9125621 0.8301795 0.6460766 -0.9278974 0.8301795 0.6460766 -0.9429048 0.8301795 0.6460766 -0.9576028 0.8301795 0.6460766 -0.9720079 0.8301795 0.6460766 -0.9861357 0.8301795 0.6460766 -1 0.8301795 0.6460766 -0 0.8475045 0.6460766 -0.1939468 0.8475045 0.6460766 -0.2773041 0.8475045 0.6460766 -0.3384659 0.8475045 0.6460766 -0.3885728 0.8475045 0.6460766 -0.4317928 0.8475045 0.6460766 -0.470214 0.8475045 0.6460766 -0.5050551 0.8475045 0.6460766 -0.5370987 0.8475045 0.6460766 -0.5668815 0.8475045 0.6460766 -0.5947903 0.8475045 0.6460766 -0.6211144 0.8475045 0.6460766 -0.6460766 0.8475045 0.6460766 -0.6698526 0.8475045 0.6460766 -0.6925839 0.8475045 0.6460766 -0.7143866 0.8475045 0.6460766 -0.7353569 0.8475045 0.6460766 -0.7555758 0.8475045 0.6460766 -0.7751122 0.8475045 0.6460766 -0.7940252 0.8475045 0.6460766 -0.8123661 0.8475045 0.6460766 -0.8301795 0.8475045 0.6460766 -0.8475045 0.8475045 0.6460766 -0.8643761 0.8475045 0.6460766 -0.880825 0.8475045 0.6460766 -0.8968787 0.8475045 0.6460766 -0.9125621 0.8475045 0.6460766 -0.9278974 0.8475045 0.6460766 -0.9429048 0.8475045 0.6460766 -0.9576028 0.8475045 0.6460766 -0.9720079 0.8475045 0.6460766 -0.9861357 0.8475045 0.6460766 -1 0.8475045 0.6460766 -0 0.8643761 0.6460766 -0.1939468 0.8643761 0.6460766 -0.2773041 0.8643761 0.6460766 -0.3384659 0.8643761 0.6460766 -0.3885728 0.8643761 0.6460766 -0.4317928 0.8643761 0.6460766 -0.470214 0.8643761 0.6460766 -0.5050551 0.8643761 0.6460766 -0.5370987 0.8643761 0.6460766 -0.5668815 0.8643761 0.6460766 -0.5947903 0.8643761 0.6460766 -0.6211144 0.8643761 0.6460766 -0.6460766 0.8643761 0.6460766 -0.6698526 0.8643761 0.6460766 -0.6925839 0.8643761 0.6460766 -0.7143866 0.8643761 0.6460766 -0.7353569 0.8643761 0.6460766 -0.7555758 0.8643761 0.6460766 -0.7751122 0.8643761 0.6460766 -0.7940252 0.8643761 0.6460766 -0.8123661 0.8643761 0.6460766 -0.8301795 0.8643761 0.6460766 -0.8475045 0.8643761 0.6460766 -0.8643761 0.8643761 0.6460766 -0.880825 0.8643761 0.6460766 -0.8968787 0.8643761 0.6460766 -0.9125621 0.8643761 0.6460766 -0.9278974 0.8643761 0.6460766 -0.9429048 0.8643761 0.6460766 -0.9576028 0.8643761 0.6460766 -0.9720079 0.8643761 0.6460766 -0.9861357 0.8643761 0.6460766 -1 0.8643761 0.6460766 -0 0.880825 0.6460766 -0.1939468 0.880825 0.6460766 -0.2773041 0.880825 0.6460766 -0.3384659 0.880825 0.6460766 -0.3885728 0.880825 0.6460766 -0.4317928 0.880825 0.6460766 -0.470214 0.880825 0.6460766 -0.5050551 0.880825 0.6460766 -0.5370987 0.880825 0.6460766 -0.5668815 0.880825 0.6460766 -0.5947903 0.880825 0.6460766 -0.6211144 0.880825 0.6460766 -0.6460766 0.880825 0.6460766 -0.6698526 0.880825 0.6460766 -0.6925839 0.880825 0.6460766 -0.7143866 0.880825 0.6460766 -0.7353569 0.880825 0.6460766 -0.7555758 0.880825 0.6460766 -0.7751122 0.880825 0.6460766 -0.7940252 0.880825 0.6460766 -0.8123661 0.880825 0.6460766 -0.8301795 0.880825 0.6460766 -0.8475045 0.880825 0.6460766 -0.8643761 0.880825 0.6460766 -0.880825 0.880825 0.6460766 -0.8968787 0.880825 0.6460766 -0.9125621 0.880825 0.6460766 -0.9278974 0.880825 0.6460766 -0.9429048 0.880825 0.6460766 -0.9576028 0.880825 0.6460766 -0.9720079 0.880825 0.6460766 -0.9861357 0.880825 0.6460766 -1 0.880825 0.6460766 -0 0.8968787 0.6460766 -0.1939468 0.8968787 0.6460766 -0.2773041 0.8968787 0.6460766 -0.3384659 0.8968787 0.6460766 -0.3885728 0.8968787 0.6460766 -0.4317928 0.8968787 0.6460766 -0.470214 0.8968787 0.6460766 -0.5050551 0.8968787 0.6460766 -0.5370987 0.8968787 0.6460766 -0.5668815 0.8968787 0.6460766 -0.5947903 0.8968787 0.6460766 -0.6211144 0.8968787 0.6460766 -0.6460766 0.8968787 0.6460766 -0.6698526 0.8968787 0.6460766 -0.6925839 0.8968787 0.6460766 -0.7143866 0.8968787 0.6460766 -0.7353569 0.8968787 0.6460766 -0.7555758 0.8968787 0.6460766 -0.7751122 0.8968787 0.6460766 -0.7940252 0.8968787 0.6460766 -0.8123661 0.8968787 0.6460766 -0.8301795 0.8968787 0.6460766 -0.8475045 0.8968787 0.6460766 -0.8643761 0.8968787 0.6460766 -0.880825 0.8968787 0.6460766 -0.8968787 0.8968787 0.6460766 -0.9125621 0.8968787 0.6460766 -0.9278974 0.8968787 0.6460766 -0.9429048 0.8968787 0.6460766 -0.9576028 0.8968787 0.6460766 -0.9720079 0.8968787 0.6460766 -0.9861357 0.8968787 0.6460766 -1 0.8968787 0.6460766 -0 0.9125621 0.6460766 -0.1939468 0.9125621 0.6460766 -0.2773041 0.9125621 0.6460766 -0.3384659 0.9125621 0.6460766 -0.3885728 0.9125621 0.6460766 -0.4317928 0.9125621 0.6460766 -0.470214 0.9125621 0.6460766 -0.5050551 0.9125621 0.6460766 -0.5370987 0.9125621 0.6460766 -0.5668815 0.9125621 0.6460766 -0.5947903 0.9125621 0.6460766 -0.6211144 0.9125621 0.6460766 -0.6460766 0.9125621 0.6460766 -0.6698526 0.9125621 0.6460766 -0.6925839 0.9125621 0.6460766 -0.7143866 0.9125621 0.6460766 -0.7353569 0.9125621 0.6460766 -0.7555758 0.9125621 0.6460766 -0.7751122 0.9125621 0.6460766 -0.7940252 0.9125621 0.6460766 -0.8123661 0.9125621 0.6460766 -0.8301795 0.9125621 0.6460766 -0.8475045 0.9125621 0.6460766 -0.8643761 0.9125621 0.6460766 -0.880825 0.9125621 0.6460766 -0.8968787 0.9125621 0.6460766 -0.9125621 0.9125621 0.6460766 -0.9278974 0.9125621 0.6460766 -0.9429048 0.9125621 0.6460766 -0.9576028 0.9125621 0.6460766 -0.9720079 0.9125621 0.6460766 -0.9861357 0.9125621 0.6460766 -1 0.9125621 0.6460766 -0 0.9278974 0.6460766 -0.1939468 0.9278974 0.6460766 -0.2773041 0.9278974 0.6460766 -0.3384659 0.9278974 0.6460766 -0.3885728 0.9278974 0.6460766 -0.4317928 0.9278974 0.6460766 -0.470214 0.9278974 0.6460766 -0.5050551 0.9278974 0.6460766 -0.5370987 0.9278974 0.6460766 -0.5668815 0.9278974 0.6460766 -0.5947903 0.9278974 0.6460766 -0.6211144 0.9278974 0.6460766 -0.6460766 0.9278974 0.6460766 -0.6698526 0.9278974 0.6460766 -0.6925839 0.9278974 0.6460766 -0.7143866 0.9278974 0.6460766 -0.7353569 0.9278974 0.6460766 -0.7555758 0.9278974 0.6460766 -0.7751122 0.9278974 0.6460766 -0.7940252 0.9278974 0.6460766 -0.8123661 0.9278974 0.6460766 -0.8301795 0.9278974 0.6460766 -0.8475045 0.9278974 0.6460766 -0.8643761 0.9278974 0.6460766 -0.880825 0.9278974 0.6460766 -0.8968787 0.9278974 0.6460766 -0.9125621 0.9278974 0.6460766 -0.9278974 0.9278974 0.6460766 -0.9429048 0.9278974 0.6460766 -0.9576028 0.9278974 0.6460766 -0.9720079 0.9278974 0.6460766 -0.9861357 0.9278974 0.6460766 -1 0.9278974 0.6460766 -0 0.9429048 0.6460766 -0.1939468 0.9429048 0.6460766 -0.2773041 0.9429048 0.6460766 -0.3384659 0.9429048 0.6460766 -0.3885728 0.9429048 0.6460766 -0.4317928 0.9429048 0.6460766 -0.470214 0.9429048 0.6460766 -0.5050551 0.9429048 0.6460766 -0.5370987 0.9429048 0.6460766 -0.5668815 0.9429048 0.6460766 -0.5947903 0.9429048 0.6460766 -0.6211144 0.9429048 0.6460766 -0.6460766 0.9429048 0.6460766 -0.6698526 0.9429048 0.6460766 -0.6925839 0.9429048 0.6460766 -0.7143866 0.9429048 0.6460766 -0.7353569 0.9429048 0.6460766 -0.7555758 0.9429048 0.6460766 -0.7751122 0.9429048 0.6460766 -0.7940252 0.9429048 0.6460766 -0.8123661 0.9429048 0.6460766 -0.8301795 0.9429048 0.6460766 -0.8475045 0.9429048 0.6460766 -0.8643761 0.9429048 0.6460766 -0.880825 0.9429048 0.6460766 -0.8968787 0.9429048 0.6460766 -0.9125621 0.9429048 0.6460766 -0.9278974 0.9429048 0.6460766 -0.9429048 0.9429048 0.6460766 -0.9576028 0.9429048 0.6460766 -0.9720079 0.9429048 0.6460766 -0.9861357 0.9429048 0.6460766 -1 0.9429048 0.6460766 -0 0.9576028 0.6460766 -0.1939468 0.9576028 0.6460766 -0.2773041 0.9576028 0.6460766 -0.3384659 0.9576028 0.6460766 -0.3885728 0.9576028 0.6460766 -0.4317928 0.9576028 0.6460766 -0.470214 0.9576028 0.6460766 -0.5050551 0.9576028 0.6460766 -0.5370987 0.9576028 0.6460766 -0.5668815 0.9576028 0.6460766 -0.5947903 0.9576028 0.6460766 -0.6211144 0.9576028 0.6460766 -0.6460766 0.9576028 0.6460766 -0.6698526 0.9576028 0.6460766 -0.6925839 0.9576028 0.6460766 -0.7143866 0.9576028 0.6460766 -0.7353569 0.9576028 0.6460766 -0.7555758 0.9576028 0.6460766 -0.7751122 0.9576028 0.6460766 -0.7940252 0.9576028 0.6460766 -0.8123661 0.9576028 0.6460766 -0.8301795 0.9576028 0.6460766 -0.8475045 0.9576028 0.6460766 -0.8643761 0.9576028 0.6460766 -0.880825 0.9576028 0.6460766 -0.8968787 0.9576028 0.6460766 -0.9125621 0.9576028 0.6460766 -0.9278974 0.9576028 0.6460766 -0.9429048 0.9576028 0.6460766 -0.9576028 0.9576028 0.6460766 -0.9720079 0.9576028 0.6460766 -0.9861357 0.9576028 0.6460766 -1 0.9576028 0.6460766 -0 0.9720079 0.6460766 -0.1939468 0.9720079 0.6460766 -0.2773041 0.9720079 0.6460766 -0.3384659 0.9720079 0.6460766 -0.3885728 0.9720079 0.6460766 -0.4317928 0.9720079 0.6460766 -0.470214 0.9720079 0.6460766 -0.5050551 0.9720079 0.6460766 -0.5370987 0.9720079 0.6460766 -0.5668815 0.9720079 0.6460766 -0.5947903 0.9720079 0.6460766 -0.6211144 0.9720079 0.6460766 -0.6460766 0.9720079 0.6460766 -0.6698526 0.9720079 0.6460766 -0.6925839 0.9720079 0.6460766 -0.7143866 0.9720079 0.6460766 -0.7353569 0.9720079 0.6460766 -0.7555758 0.9720079 0.6460766 -0.7751122 0.9720079 0.6460766 -0.7940252 0.9720079 0.6460766 -0.8123661 0.9720079 0.6460766 -0.8301795 0.9720079 0.6460766 -0.8475045 0.9720079 0.6460766 -0.8643761 0.9720079 0.6460766 -0.880825 0.9720079 0.6460766 -0.8968787 0.9720079 0.6460766 -0.9125621 0.9720079 0.6460766 -0.9278974 0.9720079 0.6460766 -0.9429048 0.9720079 0.6460766 -0.9576028 0.9720079 0.6460766 -0.9720079 0.9720079 0.6460766 -0.9861357 0.9720079 0.6460766 -1 0.9720079 0.6460766 -0 0.9861357 0.6460766 -0.1939468 0.9861357 0.6460766 -0.2773041 0.9861357 0.6460766 -0.3384659 0.9861357 0.6460766 -0.3885728 0.9861357 0.6460766 -0.4317928 0.9861357 0.6460766 -0.470214 0.9861357 0.6460766 -0.5050551 0.9861357 0.6460766 -0.5370987 0.9861357 0.6460766 -0.5668815 0.9861357 0.6460766 -0.5947903 0.9861357 0.6460766 -0.6211144 0.9861357 0.6460766 -0.6460766 0.9861357 0.6460766 -0.6698526 0.9861357 0.6460766 -0.6925839 0.9861357 0.6460766 -0.7143866 0.9861357 0.6460766 -0.7353569 0.9861357 0.6460766 -0.7555758 0.9861357 0.6460766 -0.7751122 0.9861357 0.6460766 -0.7940252 0.9861357 0.6460766 -0.8123661 0.9861357 0.6460766 -0.8301795 0.9861357 0.6460766 -0.8475045 0.9861357 0.6460766 -0.8643761 0.9861357 0.6460766 -0.880825 0.9861357 0.6460766 -0.8968787 0.9861357 0.6460766 -0.9125621 0.9861357 0.6460766 -0.9278974 0.9861357 0.6460766 -0.9429048 0.9861357 0.6460766 -0.9576028 0.9861357 0.6460766 -0.9720079 0.9861357 0.6460766 -0.9861357 0.9861357 0.6460766 -1 0.9861357 0.6460766 -0 1 0.6460766 -0.1939468 1 0.6460766 -0.2773041 1 0.6460766 -0.3384659 1 0.6460766 -0.3885728 1 0.6460766 -0.4317928 1 0.6460766 -0.470214 1 0.6460766 -0.5050551 1 0.6460766 -0.5370987 1 0.6460766 -0.5668815 1 0.6460766 -0.5947903 1 0.6460766 -0.6211144 1 0.6460766 -0.6460766 1 0.6460766 -0.6698526 1 0.6460766 -0.6925839 1 0.6460766 -0.7143866 1 0.6460766 -0.7353569 1 0.6460766 -0.7555758 1 0.6460766 -0.7751122 1 0.6460766 -0.7940252 1 0.6460766 -0.8123661 1 0.6460766 -0.8301795 1 0.6460766 -0.8475045 1 0.6460766 -0.8643761 1 0.6460766 -0.880825 1 0.6460766 -0.8968787 1 0.6460766 -0.9125621 1 0.6460766 -0.9278974 1 0.6460766 -0.9429048 1 0.6460766 -0.9576028 1 0.6460766 -0.9720079 1 0.6460766 -0.9861357 1 0.6460766 -1 1 0.6460766 -0 0 0.6698526 -0.1939468 0 0.6698526 -0.2773041 0 0.6698526 -0.3384659 0 0.6698526 -0.3885728 0 0.6698526 -0.4317928 0 0.6698526 -0.470214 0 0.6698526 -0.5050551 0 0.6698526 -0.5370987 0 0.6698526 -0.5668815 0 0.6698526 -0.5947903 0 0.6698526 -0.6211144 0 0.6698526 -0.6460766 0 0.6698526 -0.6698526 0 0.6698526 -0.6925839 0 0.6698526 -0.7143866 0 0.6698526 -0.7353569 0 0.6698526 -0.7555758 0 0.6698526 -0.7751122 0 0.6698526 -0.7940252 0 0.6698526 -0.8123661 0 0.6698526 -0.8301795 0 0.6698526 -0.8475045 0 0.6698526 -0.8643761 0 0.6698526 -0.880825 0 0.6698526 -0.8968787 0 0.6698526 -0.9125621 0 0.6698526 -0.9278974 0 0.6698526 -0.9429048 0 0.6698526 -0.9576028 0 0.6698526 -0.9720079 0 0.6698526 -0.9861357 0 0.6698526 -1 0 0.6698526 -0 0.1939468 0.6698526 -0.1939468 0.1939468 0.6698526 -0.2773041 0.1939468 0.6698526 -0.3384659 0.1939468 0.6698526 -0.3885728 0.1939468 0.6698526 -0.4317928 0.1939468 0.6698526 -0.470214 0.1939468 0.6698526 -0.5050551 0.1939468 0.6698526 -0.5370987 0.1939468 0.6698526 -0.5668815 0.1939468 0.6698526 -0.5947903 0.1939468 0.6698526 -0.6211144 0.1939468 0.6698526 -0.6460766 0.1939468 0.6698526 -0.6698526 0.1939468 0.6698526 -0.6925839 0.1939468 0.6698526 -0.7143866 0.1939468 0.6698526 -0.7353569 0.1939468 0.6698526 -0.7555758 0.1939468 0.6698526 -0.7751122 0.1939468 0.6698526 -0.7940252 0.1939468 0.6698526 -0.8123661 0.1939468 0.6698526 -0.8301795 0.1939468 0.6698526 -0.8475045 0.1939468 0.6698526 -0.8643761 0.1939468 0.6698526 -0.880825 0.1939468 0.6698526 -0.8968787 0.1939468 0.6698526 -0.9125621 0.1939468 0.6698526 -0.9278974 0.1939468 0.6698526 -0.9429048 0.1939468 0.6698526 -0.9576028 0.1939468 0.6698526 -0.9720079 0.1939468 0.6698526 -0.9861357 0.1939468 0.6698526 -1 0.1939468 0.6698526 -0 0.2773041 0.6698526 -0.1939468 0.2773041 0.6698526 -0.2773041 0.2773041 0.6698526 -0.3384659 0.2773041 0.6698526 -0.3885728 0.2773041 0.6698526 -0.4317928 0.2773041 0.6698526 -0.470214 0.2773041 0.6698526 -0.5050551 0.2773041 0.6698526 -0.5370987 0.2773041 0.6698526 -0.5668815 0.2773041 0.6698526 -0.5947903 0.2773041 0.6698526 -0.6211144 0.2773041 0.6698526 -0.6460766 0.2773041 0.6698526 -0.6698526 0.2773041 0.6698526 -0.6925839 0.2773041 0.6698526 -0.7143866 0.2773041 0.6698526 -0.7353569 0.2773041 0.6698526 -0.7555758 0.2773041 0.6698526 -0.7751122 0.2773041 0.6698526 -0.7940252 0.2773041 0.6698526 -0.8123661 0.2773041 0.6698526 -0.8301795 0.2773041 0.6698526 -0.8475045 0.2773041 0.6698526 -0.8643761 0.2773041 0.6698526 -0.880825 0.2773041 0.6698526 -0.8968787 0.2773041 0.6698526 -0.9125621 0.2773041 0.6698526 -0.9278974 0.2773041 0.6698526 -0.9429048 0.2773041 0.6698526 -0.9576028 0.2773041 0.6698526 -0.9720079 0.2773041 0.6698526 -0.9861357 0.2773041 0.6698526 -1 0.2773041 0.6698526 -0 0.3384659 0.6698526 -0.1939468 0.3384659 0.6698526 -0.2773041 0.3384659 0.6698526 -0.3384659 0.3384659 0.6698526 -0.3885728 0.3384659 0.6698526 -0.4317928 0.3384659 0.6698526 -0.470214 0.3384659 0.6698526 -0.5050551 0.3384659 0.6698526 -0.5370987 0.3384659 0.6698526 -0.5668815 0.3384659 0.6698526 -0.5947903 0.3384659 0.6698526 -0.6211144 0.3384659 0.6698526 -0.6460766 0.3384659 0.6698526 -0.6698526 0.3384659 0.6698526 -0.6925839 0.3384659 0.6698526 -0.7143866 0.3384659 0.6698526 -0.7353569 0.3384659 0.6698526 -0.7555758 0.3384659 0.6698526 -0.7751122 0.3384659 0.6698526 -0.7940252 0.3384659 0.6698526 -0.8123661 0.3384659 0.6698526 -0.8301795 0.3384659 0.6698526 -0.8475045 0.3384659 0.6698526 -0.8643761 0.3384659 0.6698526 -0.880825 0.3384659 0.6698526 -0.8968787 0.3384659 0.6698526 -0.9125621 0.3384659 0.6698526 -0.9278974 0.3384659 0.6698526 -0.9429048 0.3384659 0.6698526 -0.9576028 0.3384659 0.6698526 -0.9720079 0.3384659 0.6698526 -0.9861357 0.3384659 0.6698526 -1 0.3384659 0.6698526 -0 0.3885728 0.6698526 -0.1939468 0.3885728 0.6698526 -0.2773041 0.3885728 0.6698526 -0.3384659 0.3885728 0.6698526 -0.3885728 0.3885728 0.6698526 -0.4317928 0.3885728 0.6698526 -0.470214 0.3885728 0.6698526 -0.5050551 0.3885728 0.6698526 -0.5370987 0.3885728 0.6698526 -0.5668815 0.3885728 0.6698526 -0.5947903 0.3885728 0.6698526 -0.6211144 0.3885728 0.6698526 -0.6460766 0.3885728 0.6698526 -0.6698526 0.3885728 0.6698526 -0.6925839 0.3885728 0.6698526 -0.7143866 0.3885728 0.6698526 -0.7353569 0.3885728 0.6698526 -0.7555758 0.3885728 0.6698526 -0.7751122 0.3885728 0.6698526 -0.7940252 0.3885728 0.6698526 -0.8123661 0.3885728 0.6698526 -0.8301795 0.3885728 0.6698526 -0.8475045 0.3885728 0.6698526 -0.8643761 0.3885728 0.6698526 -0.880825 0.3885728 0.6698526 -0.8968787 0.3885728 0.6698526 -0.9125621 0.3885728 0.6698526 -0.9278974 0.3885728 0.6698526 -0.9429048 0.3885728 0.6698526 -0.9576028 0.3885728 0.6698526 -0.9720079 0.3885728 0.6698526 -0.9861357 0.3885728 0.6698526 -1 0.3885728 0.6698526 -0 0.4317928 0.6698526 -0.1939468 0.4317928 0.6698526 -0.2773041 0.4317928 0.6698526 -0.3384659 0.4317928 0.6698526 -0.3885728 0.4317928 0.6698526 -0.4317928 0.4317928 0.6698526 -0.470214 0.4317928 0.6698526 -0.5050551 0.4317928 0.6698526 -0.5370987 0.4317928 0.6698526 -0.5668815 0.4317928 0.6698526 -0.5947903 0.4317928 0.6698526 -0.6211144 0.4317928 0.6698526 -0.6460766 0.4317928 0.6698526 -0.6698526 0.4317928 0.6698526 -0.6925839 0.4317928 0.6698526 -0.7143866 0.4317928 0.6698526 -0.7353569 0.4317928 0.6698526 -0.7555758 0.4317928 0.6698526 -0.7751122 0.4317928 0.6698526 -0.7940252 0.4317928 0.6698526 -0.8123661 0.4317928 0.6698526 -0.8301795 0.4317928 0.6698526 -0.8475045 0.4317928 0.6698526 -0.8643761 0.4317928 0.6698526 -0.880825 0.4317928 0.6698526 -0.8968787 0.4317928 0.6698526 -0.9125621 0.4317928 0.6698526 -0.9278974 0.4317928 0.6698526 -0.9429048 0.4317928 0.6698526 -0.9576028 0.4317928 0.6698526 -0.9720079 0.4317928 0.6698526 -0.9861357 0.4317928 0.6698526 -1 0.4317928 0.6698526 -0 0.470214 0.6698526 -0.1939468 0.470214 0.6698526 -0.2773041 0.470214 0.6698526 -0.3384659 0.470214 0.6698526 -0.3885728 0.470214 0.6698526 -0.4317928 0.470214 0.6698526 -0.470214 0.470214 0.6698526 -0.5050551 0.470214 0.6698526 -0.5370987 0.470214 0.6698526 -0.5668815 0.470214 0.6698526 -0.5947903 0.470214 0.6698526 -0.6211144 0.470214 0.6698526 -0.6460766 0.470214 0.6698526 -0.6698526 0.470214 0.6698526 -0.6925839 0.470214 0.6698526 -0.7143866 0.470214 0.6698526 -0.7353569 0.470214 0.6698526 -0.7555758 0.470214 0.6698526 -0.7751122 0.470214 0.6698526 -0.7940252 0.470214 0.6698526 -0.8123661 0.470214 0.6698526 -0.8301795 0.470214 0.6698526 -0.8475045 0.470214 0.6698526 -0.8643761 0.470214 0.6698526 -0.880825 0.470214 0.6698526 -0.8968787 0.470214 0.6698526 -0.9125621 0.470214 0.6698526 -0.9278974 0.470214 0.6698526 -0.9429048 0.470214 0.6698526 -0.9576028 0.470214 0.6698526 -0.9720079 0.470214 0.6698526 -0.9861357 0.470214 0.6698526 -1 0.470214 0.6698526 -0 0.5050551 0.6698526 -0.1939468 0.5050551 0.6698526 -0.2773041 0.5050551 0.6698526 -0.3384659 0.5050551 0.6698526 -0.3885728 0.5050551 0.6698526 -0.4317928 0.5050551 0.6698526 -0.470214 0.5050551 0.6698526 -0.5050551 0.5050551 0.6698526 -0.5370987 0.5050551 0.6698526 -0.5668815 0.5050551 0.6698526 -0.5947903 0.5050551 0.6698526 -0.6211144 0.5050551 0.6698526 -0.6460766 0.5050551 0.6698526 -0.6698526 0.5050551 0.6698526 -0.6925839 0.5050551 0.6698526 -0.7143866 0.5050551 0.6698526 -0.7353569 0.5050551 0.6698526 -0.7555758 0.5050551 0.6698526 -0.7751122 0.5050551 0.6698526 -0.7940252 0.5050551 0.6698526 -0.8123661 0.5050551 0.6698526 -0.8301795 0.5050551 0.6698526 -0.8475045 0.5050551 0.6698526 -0.8643761 0.5050551 0.6698526 -0.880825 0.5050551 0.6698526 -0.8968787 0.5050551 0.6698526 -0.9125621 0.5050551 0.6698526 -0.9278974 0.5050551 0.6698526 -0.9429048 0.5050551 0.6698526 -0.9576028 0.5050551 0.6698526 -0.9720079 0.5050551 0.6698526 -0.9861357 0.5050551 0.6698526 -1 0.5050551 0.6698526 -0 0.5370987 0.6698526 -0.1939468 0.5370987 0.6698526 -0.2773041 0.5370987 0.6698526 -0.3384659 0.5370987 0.6698526 -0.3885728 0.5370987 0.6698526 -0.4317928 0.5370987 0.6698526 -0.470214 0.5370987 0.6698526 -0.5050551 0.5370987 0.6698526 -0.5370987 0.5370987 0.6698526 -0.5668815 0.5370987 0.6698526 -0.5947903 0.5370987 0.6698526 -0.6211144 0.5370987 0.6698526 -0.6460766 0.5370987 0.6698526 -0.6698526 0.5370987 0.6698526 -0.6925839 0.5370987 0.6698526 -0.7143866 0.5370987 0.6698526 -0.7353569 0.5370987 0.6698526 -0.7555758 0.5370987 0.6698526 -0.7751122 0.5370987 0.6698526 -0.7940252 0.5370987 0.6698526 -0.8123661 0.5370987 0.6698526 -0.8301795 0.5370987 0.6698526 -0.8475045 0.5370987 0.6698526 -0.8643761 0.5370987 0.6698526 -0.880825 0.5370987 0.6698526 -0.8968787 0.5370987 0.6698526 -0.9125621 0.5370987 0.6698526 -0.9278974 0.5370987 0.6698526 -0.9429048 0.5370987 0.6698526 -0.9576028 0.5370987 0.6698526 -0.9720079 0.5370987 0.6698526 -0.9861357 0.5370987 0.6698526 -1 0.5370987 0.6698526 -0 0.5668815 0.6698526 -0.1939468 0.5668815 0.6698526 -0.2773041 0.5668815 0.6698526 -0.3384659 0.5668815 0.6698526 -0.3885728 0.5668815 0.6698526 -0.4317928 0.5668815 0.6698526 -0.470214 0.5668815 0.6698526 -0.5050551 0.5668815 0.6698526 -0.5370987 0.5668815 0.6698526 -0.5668815 0.5668815 0.6698526 -0.5947903 0.5668815 0.6698526 -0.6211144 0.5668815 0.6698526 -0.6460766 0.5668815 0.6698526 -0.6698526 0.5668815 0.6698526 -0.6925839 0.5668815 0.6698526 -0.7143866 0.5668815 0.6698526 -0.7353569 0.5668815 0.6698526 -0.7555758 0.5668815 0.6698526 -0.7751122 0.5668815 0.6698526 -0.7940252 0.5668815 0.6698526 -0.8123661 0.5668815 0.6698526 -0.8301795 0.5668815 0.6698526 -0.8475045 0.5668815 0.6698526 -0.8643761 0.5668815 0.6698526 -0.880825 0.5668815 0.6698526 -0.8968787 0.5668815 0.6698526 -0.9125621 0.5668815 0.6698526 -0.9278974 0.5668815 0.6698526 -0.9429048 0.5668815 0.6698526 -0.9576028 0.5668815 0.6698526 -0.9720079 0.5668815 0.6698526 -0.9861357 0.5668815 0.6698526 -1 0.5668815 0.6698526 -0 0.5947903 0.6698526 -0.1939468 0.5947903 0.6698526 -0.2773041 0.5947903 0.6698526 -0.3384659 0.5947903 0.6698526 -0.3885728 0.5947903 0.6698526 -0.4317928 0.5947903 0.6698526 -0.470214 0.5947903 0.6698526 -0.5050551 0.5947903 0.6698526 -0.5370987 0.5947903 0.6698526 -0.5668815 0.5947903 0.6698526 -0.5947903 0.5947903 0.6698526 -0.6211144 0.5947903 0.6698526 -0.6460766 0.5947903 0.6698526 -0.6698526 0.5947903 0.6698526 -0.6925839 0.5947903 0.6698526 -0.7143866 0.5947903 0.6698526 -0.7353569 0.5947903 0.6698526 -0.7555758 0.5947903 0.6698526 -0.7751122 0.5947903 0.6698526 -0.7940252 0.5947903 0.6698526 -0.8123661 0.5947903 0.6698526 -0.8301795 0.5947903 0.6698526 -0.8475045 0.5947903 0.6698526 -0.8643761 0.5947903 0.6698526 -0.880825 0.5947903 0.6698526 -0.8968787 0.5947903 0.6698526 -0.9125621 0.5947903 0.6698526 -0.9278974 0.5947903 0.6698526 -0.9429048 0.5947903 0.6698526 -0.9576028 0.5947903 0.6698526 -0.9720079 0.5947903 0.6698526 -0.9861357 0.5947903 0.6698526 -1 0.5947903 0.6698526 -0 0.6211144 0.6698526 -0.1939468 0.6211144 0.6698526 -0.2773041 0.6211144 0.6698526 -0.3384659 0.6211144 0.6698526 -0.3885728 0.6211144 0.6698526 -0.4317928 0.6211144 0.6698526 -0.470214 0.6211144 0.6698526 -0.5050551 0.6211144 0.6698526 -0.5370987 0.6211144 0.6698526 -0.5668815 0.6211144 0.6698526 -0.5947903 0.6211144 0.6698526 -0.6211144 0.6211144 0.6698526 -0.6460766 0.6211144 0.6698526 -0.6698526 0.6211144 0.6698526 -0.6925839 0.6211144 0.6698526 -0.7143866 0.6211144 0.6698526 -0.7353569 0.6211144 0.6698526 -0.7555758 0.6211144 0.6698526 -0.7751122 0.6211144 0.6698526 -0.7940252 0.6211144 0.6698526 -0.8123661 0.6211144 0.6698526 -0.8301795 0.6211144 0.6698526 -0.8475045 0.6211144 0.6698526 -0.8643761 0.6211144 0.6698526 -0.880825 0.6211144 0.6698526 -0.8968787 0.6211144 0.6698526 -0.9125621 0.6211144 0.6698526 -0.9278974 0.6211144 0.6698526 -0.9429048 0.6211144 0.6698526 -0.9576028 0.6211144 0.6698526 -0.9720079 0.6211144 0.6698526 -0.9861357 0.6211144 0.6698526 -1 0.6211144 0.6698526 -0 0.6460766 0.6698526 -0.1939468 0.6460766 0.6698526 -0.2773041 0.6460766 0.6698526 -0.3384659 0.6460766 0.6698526 -0.3885728 0.6460766 0.6698526 -0.4317928 0.6460766 0.6698526 -0.470214 0.6460766 0.6698526 -0.5050551 0.6460766 0.6698526 -0.5370987 0.6460766 0.6698526 -0.5668815 0.6460766 0.6698526 -0.5947903 0.6460766 0.6698526 -0.6211144 0.6460766 0.6698526 -0.6460766 0.6460766 0.6698526 -0.6698526 0.6460766 0.6698526 -0.6925839 0.6460766 0.6698526 -0.7143866 0.6460766 0.6698526 -0.7353569 0.6460766 0.6698526 -0.7555758 0.6460766 0.6698526 -0.7751122 0.6460766 0.6698526 -0.7940252 0.6460766 0.6698526 -0.8123661 0.6460766 0.6698526 -0.8301795 0.6460766 0.6698526 -0.8475045 0.6460766 0.6698526 -0.8643761 0.6460766 0.6698526 -0.880825 0.6460766 0.6698526 -0.8968787 0.6460766 0.6698526 -0.9125621 0.6460766 0.6698526 -0.9278974 0.6460766 0.6698526 -0.9429048 0.6460766 0.6698526 -0.9576028 0.6460766 0.6698526 -0.9720079 0.6460766 0.6698526 -0.9861357 0.6460766 0.6698526 -1 0.6460766 0.6698526 -0 0.6698526 0.6698526 -0.1939468 0.6698526 0.6698526 -0.2773041 0.6698526 0.6698526 -0.3384659 0.6698526 0.6698526 -0.3885728 0.6698526 0.6698526 -0.4317928 0.6698526 0.6698526 -0.470214 0.6698526 0.6698526 -0.5050551 0.6698526 0.6698526 -0.5370987 0.6698526 0.6698526 -0.5668815 0.6698526 0.6698526 -0.5947903 0.6698526 0.6698526 -0.6211144 0.6698526 0.6698526 -0.6460766 0.6698526 0.6698526 -0.6698526 0.6698526 0.6698526 -0.6925839 0.6698526 0.6698526 -0.7143866 0.6698526 0.6698526 -0.7353569 0.6698526 0.6698526 -0.7555758 0.6698526 0.6698526 -0.7751122 0.6698526 0.6698526 -0.7940252 0.6698526 0.6698526 -0.8123661 0.6698526 0.6698526 -0.8301795 0.6698526 0.6698526 -0.8475045 0.6698526 0.6698526 -0.8643761 0.6698526 0.6698526 -0.880825 0.6698526 0.6698526 -0.8968787 0.6698526 0.6698526 -0.9125621 0.6698526 0.6698526 -0.9278974 0.6698526 0.6698526 -0.9429048 0.6698526 0.6698526 -0.9576028 0.6698526 0.6698526 -0.9720079 0.6698526 0.6698526 -0.9861357 0.6698526 0.6698526 -1 0.6698526 0.6698526 -0 0.6925839 0.6698526 -0.1939468 0.6925839 0.6698526 -0.2773041 0.6925839 0.6698526 -0.3384659 0.6925839 0.6698526 -0.3885728 0.6925839 0.6698526 -0.4317928 0.6925839 0.6698526 -0.470214 0.6925839 0.6698526 -0.5050551 0.6925839 0.6698526 -0.5370987 0.6925839 0.6698526 -0.5668815 0.6925839 0.6698526 -0.5947903 0.6925839 0.6698526 -0.6211144 0.6925839 0.6698526 -0.6460766 0.6925839 0.6698526 -0.6698526 0.6925839 0.6698526 -0.6925839 0.6925839 0.6698526 -0.7143866 0.6925839 0.6698526 -0.7353569 0.6925839 0.6698526 -0.7555758 0.6925839 0.6698526 -0.7751122 0.6925839 0.6698526 -0.7940252 0.6925839 0.6698526 -0.8123661 0.6925839 0.6698526 -0.8301795 0.6925839 0.6698526 -0.8475045 0.6925839 0.6698526 -0.8643761 0.6925839 0.6698526 -0.880825 0.6925839 0.6698526 -0.8968787 0.6925839 0.6698526 -0.9125621 0.6925839 0.6698526 -0.9278974 0.6925839 0.6698526 -0.9429048 0.6925839 0.6698526 -0.9576028 0.6925839 0.6698526 -0.9720079 0.6925839 0.6698526 -0.9861357 0.6925839 0.6698526 -1 0.6925839 0.6698526 -0 0.7143866 0.6698526 -0.1939468 0.7143866 0.6698526 -0.2773041 0.7143866 0.6698526 -0.3384659 0.7143866 0.6698526 -0.3885728 0.7143866 0.6698526 -0.4317928 0.7143866 0.6698526 -0.470214 0.7143866 0.6698526 -0.5050551 0.7143866 0.6698526 -0.5370987 0.7143866 0.6698526 -0.5668815 0.7143866 0.6698526 -0.5947903 0.7143866 0.6698526 -0.6211144 0.7143866 0.6698526 -0.6460766 0.7143866 0.6698526 -0.6698526 0.7143866 0.6698526 -0.6925839 0.7143866 0.6698526 -0.7143866 0.7143866 0.6698526 -0.7353569 0.7143866 0.6698526 -0.7555758 0.7143866 0.6698526 -0.7751122 0.7143866 0.6698526 -0.7940252 0.7143866 0.6698526 -0.8123661 0.7143866 0.6698526 -0.8301795 0.7143866 0.6698526 -0.8475045 0.7143866 0.6698526 -0.8643761 0.7143866 0.6698526 -0.880825 0.7143866 0.6698526 -0.8968787 0.7143866 0.6698526 -0.9125621 0.7143866 0.6698526 -0.9278974 0.7143866 0.6698526 -0.9429048 0.7143866 0.6698526 -0.9576028 0.7143866 0.6698526 -0.9720079 0.7143866 0.6698526 -0.9861357 0.7143866 0.6698526 -1 0.7143866 0.6698526 -0 0.7353569 0.6698526 -0.1939468 0.7353569 0.6698526 -0.2773041 0.7353569 0.6698526 -0.3384659 0.7353569 0.6698526 -0.3885728 0.7353569 0.6698526 -0.4317928 0.7353569 0.6698526 -0.470214 0.7353569 0.6698526 -0.5050551 0.7353569 0.6698526 -0.5370987 0.7353569 0.6698526 -0.5668815 0.7353569 0.6698526 -0.5947903 0.7353569 0.6698526 -0.6211144 0.7353569 0.6698526 -0.6460766 0.7353569 0.6698526 -0.6698526 0.7353569 0.6698526 -0.6925839 0.7353569 0.6698526 -0.7143866 0.7353569 0.6698526 -0.7353569 0.7353569 0.6698526 -0.7555758 0.7353569 0.6698526 -0.7751122 0.7353569 0.6698526 -0.7940252 0.7353569 0.6698526 -0.8123661 0.7353569 0.6698526 -0.8301795 0.7353569 0.6698526 -0.8475045 0.7353569 0.6698526 -0.8643761 0.7353569 0.6698526 -0.880825 0.7353569 0.6698526 -0.8968787 0.7353569 0.6698526 -0.9125621 0.7353569 0.6698526 -0.9278974 0.7353569 0.6698526 -0.9429048 0.7353569 0.6698526 -0.9576028 0.7353569 0.6698526 -0.9720079 0.7353569 0.6698526 -0.9861357 0.7353569 0.6698526 -1 0.7353569 0.6698526 -0 0.7555758 0.6698526 -0.1939468 0.7555758 0.6698526 -0.2773041 0.7555758 0.6698526 -0.3384659 0.7555758 0.6698526 -0.3885728 0.7555758 0.6698526 -0.4317928 0.7555758 0.6698526 -0.470214 0.7555758 0.6698526 -0.5050551 0.7555758 0.6698526 -0.5370987 0.7555758 0.6698526 -0.5668815 0.7555758 0.6698526 -0.5947903 0.7555758 0.6698526 -0.6211144 0.7555758 0.6698526 -0.6460766 0.7555758 0.6698526 -0.6698526 0.7555758 0.6698526 -0.6925839 0.7555758 0.6698526 -0.7143866 0.7555758 0.6698526 -0.7353569 0.7555758 0.6698526 -0.7555758 0.7555758 0.6698526 -0.7751122 0.7555758 0.6698526 -0.7940252 0.7555758 0.6698526 -0.8123661 0.7555758 0.6698526 -0.8301795 0.7555758 0.6698526 -0.8475045 0.7555758 0.6698526 -0.8643761 0.7555758 0.6698526 -0.880825 0.7555758 0.6698526 -0.8968787 0.7555758 0.6698526 -0.9125621 0.7555758 0.6698526 -0.9278974 0.7555758 0.6698526 -0.9429048 0.7555758 0.6698526 -0.9576028 0.7555758 0.6698526 -0.9720079 0.7555758 0.6698526 -0.9861357 0.7555758 0.6698526 -1 0.7555758 0.6698526 -0 0.7751122 0.6698526 -0.1939468 0.7751122 0.6698526 -0.2773041 0.7751122 0.6698526 -0.3384659 0.7751122 0.6698526 -0.3885728 0.7751122 0.6698526 -0.4317928 0.7751122 0.6698526 -0.470214 0.7751122 0.6698526 -0.5050551 0.7751122 0.6698526 -0.5370987 0.7751122 0.6698526 -0.5668815 0.7751122 0.6698526 -0.5947903 0.7751122 0.6698526 -0.6211144 0.7751122 0.6698526 -0.6460766 0.7751122 0.6698526 -0.6698526 0.7751122 0.6698526 -0.6925839 0.7751122 0.6698526 -0.7143866 0.7751122 0.6698526 -0.7353569 0.7751122 0.6698526 -0.7555758 0.7751122 0.6698526 -0.7751122 0.7751122 0.6698526 -0.7940252 0.7751122 0.6698526 -0.8123661 0.7751122 0.6698526 -0.8301795 0.7751122 0.6698526 -0.8475045 0.7751122 0.6698526 -0.8643761 0.7751122 0.6698526 -0.880825 0.7751122 0.6698526 -0.8968787 0.7751122 0.6698526 -0.9125621 0.7751122 0.6698526 -0.9278974 0.7751122 0.6698526 -0.9429048 0.7751122 0.6698526 -0.9576028 0.7751122 0.6698526 -0.9720079 0.7751122 0.6698526 -0.9861357 0.7751122 0.6698526 -1 0.7751122 0.6698526 -0 0.7940252 0.6698526 -0.1939468 0.7940252 0.6698526 -0.2773041 0.7940252 0.6698526 -0.3384659 0.7940252 0.6698526 -0.3885728 0.7940252 0.6698526 -0.4317928 0.7940252 0.6698526 -0.470214 0.7940252 0.6698526 -0.5050551 0.7940252 0.6698526 -0.5370987 0.7940252 0.6698526 -0.5668815 0.7940252 0.6698526 -0.5947903 0.7940252 0.6698526 -0.6211144 0.7940252 0.6698526 -0.6460766 0.7940252 0.6698526 -0.6698526 0.7940252 0.6698526 -0.6925839 0.7940252 0.6698526 -0.7143866 0.7940252 0.6698526 -0.7353569 0.7940252 0.6698526 -0.7555758 0.7940252 0.6698526 -0.7751122 0.7940252 0.6698526 -0.7940252 0.7940252 0.6698526 -0.8123661 0.7940252 0.6698526 -0.8301795 0.7940252 0.6698526 -0.8475045 0.7940252 0.6698526 -0.8643761 0.7940252 0.6698526 -0.880825 0.7940252 0.6698526 -0.8968787 0.7940252 0.6698526 -0.9125621 0.7940252 0.6698526 -0.9278974 0.7940252 0.6698526 -0.9429048 0.7940252 0.6698526 -0.9576028 0.7940252 0.6698526 -0.9720079 0.7940252 0.6698526 -0.9861357 0.7940252 0.6698526 -1 0.7940252 0.6698526 -0 0.8123661 0.6698526 -0.1939468 0.8123661 0.6698526 -0.2773041 0.8123661 0.6698526 -0.3384659 0.8123661 0.6698526 -0.3885728 0.8123661 0.6698526 -0.4317928 0.8123661 0.6698526 -0.470214 0.8123661 0.6698526 -0.5050551 0.8123661 0.6698526 -0.5370987 0.8123661 0.6698526 -0.5668815 0.8123661 0.6698526 -0.5947903 0.8123661 0.6698526 -0.6211144 0.8123661 0.6698526 -0.6460766 0.8123661 0.6698526 -0.6698526 0.8123661 0.6698526 -0.6925839 0.8123661 0.6698526 -0.7143866 0.8123661 0.6698526 -0.7353569 0.8123661 0.6698526 -0.7555758 0.8123661 0.6698526 -0.7751122 0.8123661 0.6698526 -0.7940252 0.8123661 0.6698526 -0.8123661 0.8123661 0.6698526 -0.8301795 0.8123661 0.6698526 -0.8475045 0.8123661 0.6698526 -0.8643761 0.8123661 0.6698526 -0.880825 0.8123661 0.6698526 -0.8968787 0.8123661 0.6698526 -0.9125621 0.8123661 0.6698526 -0.9278974 0.8123661 0.6698526 -0.9429048 0.8123661 0.6698526 -0.9576028 0.8123661 0.6698526 -0.9720079 0.8123661 0.6698526 -0.9861357 0.8123661 0.6698526 -1 0.8123661 0.6698526 -0 0.8301795 0.6698526 -0.1939468 0.8301795 0.6698526 -0.2773041 0.8301795 0.6698526 -0.3384659 0.8301795 0.6698526 -0.3885728 0.8301795 0.6698526 -0.4317928 0.8301795 0.6698526 -0.470214 0.8301795 0.6698526 -0.5050551 0.8301795 0.6698526 -0.5370987 0.8301795 0.6698526 -0.5668815 0.8301795 0.6698526 -0.5947903 0.8301795 0.6698526 -0.6211144 0.8301795 0.6698526 -0.6460766 0.8301795 0.6698526 -0.6698526 0.8301795 0.6698526 -0.6925839 0.8301795 0.6698526 -0.7143866 0.8301795 0.6698526 -0.7353569 0.8301795 0.6698526 -0.7555758 0.8301795 0.6698526 -0.7751122 0.8301795 0.6698526 -0.7940252 0.8301795 0.6698526 -0.8123661 0.8301795 0.6698526 -0.8301795 0.8301795 0.6698526 -0.8475045 0.8301795 0.6698526 -0.8643761 0.8301795 0.6698526 -0.880825 0.8301795 0.6698526 -0.8968787 0.8301795 0.6698526 -0.9125621 0.8301795 0.6698526 -0.9278974 0.8301795 0.6698526 -0.9429048 0.8301795 0.6698526 -0.9576028 0.8301795 0.6698526 -0.9720079 0.8301795 0.6698526 -0.9861357 0.8301795 0.6698526 -1 0.8301795 0.6698526 -0 0.8475045 0.6698526 -0.1939468 0.8475045 0.6698526 -0.2773041 0.8475045 0.6698526 -0.3384659 0.8475045 0.6698526 -0.3885728 0.8475045 0.6698526 -0.4317928 0.8475045 0.6698526 -0.470214 0.8475045 0.6698526 -0.5050551 0.8475045 0.6698526 -0.5370987 0.8475045 0.6698526 -0.5668815 0.8475045 0.6698526 -0.5947903 0.8475045 0.6698526 -0.6211144 0.8475045 0.6698526 -0.6460766 0.8475045 0.6698526 -0.6698526 0.8475045 0.6698526 -0.6925839 0.8475045 0.6698526 -0.7143866 0.8475045 0.6698526 -0.7353569 0.8475045 0.6698526 -0.7555758 0.8475045 0.6698526 -0.7751122 0.8475045 0.6698526 -0.7940252 0.8475045 0.6698526 -0.8123661 0.8475045 0.6698526 -0.8301795 0.8475045 0.6698526 -0.8475045 0.8475045 0.6698526 -0.8643761 0.8475045 0.6698526 -0.880825 0.8475045 0.6698526 -0.8968787 0.8475045 0.6698526 -0.9125621 0.8475045 0.6698526 -0.9278974 0.8475045 0.6698526 -0.9429048 0.8475045 0.6698526 -0.9576028 0.8475045 0.6698526 -0.9720079 0.8475045 0.6698526 -0.9861357 0.8475045 0.6698526 -1 0.8475045 0.6698526 -0 0.8643761 0.6698526 -0.1939468 0.8643761 0.6698526 -0.2773041 0.8643761 0.6698526 -0.3384659 0.8643761 0.6698526 -0.3885728 0.8643761 0.6698526 -0.4317928 0.8643761 0.6698526 -0.470214 0.8643761 0.6698526 -0.5050551 0.8643761 0.6698526 -0.5370987 0.8643761 0.6698526 -0.5668815 0.8643761 0.6698526 -0.5947903 0.8643761 0.6698526 -0.6211144 0.8643761 0.6698526 -0.6460766 0.8643761 0.6698526 -0.6698526 0.8643761 0.6698526 -0.6925839 0.8643761 0.6698526 -0.7143866 0.8643761 0.6698526 -0.7353569 0.8643761 0.6698526 -0.7555758 0.8643761 0.6698526 -0.7751122 0.8643761 0.6698526 -0.7940252 0.8643761 0.6698526 -0.8123661 0.8643761 0.6698526 -0.8301795 0.8643761 0.6698526 -0.8475045 0.8643761 0.6698526 -0.8643761 0.8643761 0.6698526 -0.880825 0.8643761 0.6698526 -0.8968787 0.8643761 0.6698526 -0.9125621 0.8643761 0.6698526 -0.9278974 0.8643761 0.6698526 -0.9429048 0.8643761 0.6698526 -0.9576028 0.8643761 0.6698526 -0.9720079 0.8643761 0.6698526 -0.9861357 0.8643761 0.6698526 -1 0.8643761 0.6698526 -0 0.880825 0.6698526 -0.1939468 0.880825 0.6698526 -0.2773041 0.880825 0.6698526 -0.3384659 0.880825 0.6698526 -0.3885728 0.880825 0.6698526 -0.4317928 0.880825 0.6698526 -0.470214 0.880825 0.6698526 -0.5050551 0.880825 0.6698526 -0.5370987 0.880825 0.6698526 -0.5668815 0.880825 0.6698526 -0.5947903 0.880825 0.6698526 -0.6211144 0.880825 0.6698526 -0.6460766 0.880825 0.6698526 -0.6698526 0.880825 0.6698526 -0.6925839 0.880825 0.6698526 -0.7143866 0.880825 0.6698526 -0.7353569 0.880825 0.6698526 -0.7555758 0.880825 0.6698526 -0.7751122 0.880825 0.6698526 -0.7940252 0.880825 0.6698526 -0.8123661 0.880825 0.6698526 -0.8301795 0.880825 0.6698526 -0.8475045 0.880825 0.6698526 -0.8643761 0.880825 0.6698526 -0.880825 0.880825 0.6698526 -0.8968787 0.880825 0.6698526 -0.9125621 0.880825 0.6698526 -0.9278974 0.880825 0.6698526 -0.9429048 0.880825 0.6698526 -0.9576028 0.880825 0.6698526 -0.9720079 0.880825 0.6698526 -0.9861357 0.880825 0.6698526 -1 0.880825 0.6698526 -0 0.8968787 0.6698526 -0.1939468 0.8968787 0.6698526 -0.2773041 0.8968787 0.6698526 -0.3384659 0.8968787 0.6698526 -0.3885728 0.8968787 0.6698526 -0.4317928 0.8968787 0.6698526 -0.470214 0.8968787 0.6698526 -0.5050551 0.8968787 0.6698526 -0.5370987 0.8968787 0.6698526 -0.5668815 0.8968787 0.6698526 -0.5947903 0.8968787 0.6698526 -0.6211144 0.8968787 0.6698526 -0.6460766 0.8968787 0.6698526 -0.6698526 0.8968787 0.6698526 -0.6925839 0.8968787 0.6698526 -0.7143866 0.8968787 0.6698526 -0.7353569 0.8968787 0.6698526 -0.7555758 0.8968787 0.6698526 -0.7751122 0.8968787 0.6698526 -0.7940252 0.8968787 0.6698526 -0.8123661 0.8968787 0.6698526 -0.8301795 0.8968787 0.6698526 -0.8475045 0.8968787 0.6698526 -0.8643761 0.8968787 0.6698526 -0.880825 0.8968787 0.6698526 -0.8968787 0.8968787 0.6698526 -0.9125621 0.8968787 0.6698526 -0.9278974 0.8968787 0.6698526 -0.9429048 0.8968787 0.6698526 -0.9576028 0.8968787 0.6698526 -0.9720079 0.8968787 0.6698526 -0.9861357 0.8968787 0.6698526 -1 0.8968787 0.6698526 -0 0.9125621 0.6698526 -0.1939468 0.9125621 0.6698526 -0.2773041 0.9125621 0.6698526 -0.3384659 0.9125621 0.6698526 -0.3885728 0.9125621 0.6698526 -0.4317928 0.9125621 0.6698526 -0.470214 0.9125621 0.6698526 -0.5050551 0.9125621 0.6698526 -0.5370987 0.9125621 0.6698526 -0.5668815 0.9125621 0.6698526 -0.5947903 0.9125621 0.6698526 -0.6211144 0.9125621 0.6698526 -0.6460766 0.9125621 0.6698526 -0.6698526 0.9125621 0.6698526 -0.6925839 0.9125621 0.6698526 -0.7143866 0.9125621 0.6698526 -0.7353569 0.9125621 0.6698526 -0.7555758 0.9125621 0.6698526 -0.7751122 0.9125621 0.6698526 -0.7940252 0.9125621 0.6698526 -0.8123661 0.9125621 0.6698526 -0.8301795 0.9125621 0.6698526 -0.8475045 0.9125621 0.6698526 -0.8643761 0.9125621 0.6698526 -0.880825 0.9125621 0.6698526 -0.8968787 0.9125621 0.6698526 -0.9125621 0.9125621 0.6698526 -0.9278974 0.9125621 0.6698526 -0.9429048 0.9125621 0.6698526 -0.9576028 0.9125621 0.6698526 -0.9720079 0.9125621 0.6698526 -0.9861357 0.9125621 0.6698526 -1 0.9125621 0.6698526 -0 0.9278974 0.6698526 -0.1939468 0.9278974 0.6698526 -0.2773041 0.9278974 0.6698526 -0.3384659 0.9278974 0.6698526 -0.3885728 0.9278974 0.6698526 -0.4317928 0.9278974 0.6698526 -0.470214 0.9278974 0.6698526 -0.5050551 0.9278974 0.6698526 -0.5370987 0.9278974 0.6698526 -0.5668815 0.9278974 0.6698526 -0.5947903 0.9278974 0.6698526 -0.6211144 0.9278974 0.6698526 -0.6460766 0.9278974 0.6698526 -0.6698526 0.9278974 0.6698526 -0.6925839 0.9278974 0.6698526 -0.7143866 0.9278974 0.6698526 -0.7353569 0.9278974 0.6698526 -0.7555758 0.9278974 0.6698526 -0.7751122 0.9278974 0.6698526 -0.7940252 0.9278974 0.6698526 -0.8123661 0.9278974 0.6698526 -0.8301795 0.9278974 0.6698526 -0.8475045 0.9278974 0.6698526 -0.8643761 0.9278974 0.6698526 -0.880825 0.9278974 0.6698526 -0.8968787 0.9278974 0.6698526 -0.9125621 0.9278974 0.6698526 -0.9278974 0.9278974 0.6698526 -0.9429048 0.9278974 0.6698526 -0.9576028 0.9278974 0.6698526 -0.9720079 0.9278974 0.6698526 -0.9861357 0.9278974 0.6698526 -1 0.9278974 0.6698526 -0 0.9429048 0.6698526 -0.1939468 0.9429048 0.6698526 -0.2773041 0.9429048 0.6698526 -0.3384659 0.9429048 0.6698526 -0.3885728 0.9429048 0.6698526 -0.4317928 0.9429048 0.6698526 -0.470214 0.9429048 0.6698526 -0.5050551 0.9429048 0.6698526 -0.5370987 0.9429048 0.6698526 -0.5668815 0.9429048 0.6698526 -0.5947903 0.9429048 0.6698526 -0.6211144 0.9429048 0.6698526 -0.6460766 0.9429048 0.6698526 -0.6698526 0.9429048 0.6698526 -0.6925839 0.9429048 0.6698526 -0.7143866 0.9429048 0.6698526 -0.7353569 0.9429048 0.6698526 -0.7555758 0.9429048 0.6698526 -0.7751122 0.9429048 0.6698526 -0.7940252 0.9429048 0.6698526 -0.8123661 0.9429048 0.6698526 -0.8301795 0.9429048 0.6698526 -0.8475045 0.9429048 0.6698526 -0.8643761 0.9429048 0.6698526 -0.880825 0.9429048 0.6698526 -0.8968787 0.9429048 0.6698526 -0.9125621 0.9429048 0.6698526 -0.9278974 0.9429048 0.6698526 -0.9429048 0.9429048 0.6698526 -0.9576028 0.9429048 0.6698526 -0.9720079 0.9429048 0.6698526 -0.9861357 0.9429048 0.6698526 -1 0.9429048 0.6698526 -0 0.9576028 0.6698526 -0.1939468 0.9576028 0.6698526 -0.2773041 0.9576028 0.6698526 -0.3384659 0.9576028 0.6698526 -0.3885728 0.9576028 0.6698526 -0.4317928 0.9576028 0.6698526 -0.470214 0.9576028 0.6698526 -0.5050551 0.9576028 0.6698526 -0.5370987 0.9576028 0.6698526 -0.5668815 0.9576028 0.6698526 -0.5947903 0.9576028 0.6698526 -0.6211144 0.9576028 0.6698526 -0.6460766 0.9576028 0.6698526 -0.6698526 0.9576028 0.6698526 -0.6925839 0.9576028 0.6698526 -0.7143866 0.9576028 0.6698526 -0.7353569 0.9576028 0.6698526 -0.7555758 0.9576028 0.6698526 -0.7751122 0.9576028 0.6698526 -0.7940252 0.9576028 0.6698526 -0.8123661 0.9576028 0.6698526 -0.8301795 0.9576028 0.6698526 -0.8475045 0.9576028 0.6698526 -0.8643761 0.9576028 0.6698526 -0.880825 0.9576028 0.6698526 -0.8968787 0.9576028 0.6698526 -0.9125621 0.9576028 0.6698526 -0.9278974 0.9576028 0.6698526 -0.9429048 0.9576028 0.6698526 -0.9576028 0.9576028 0.6698526 -0.9720079 0.9576028 0.6698526 -0.9861357 0.9576028 0.6698526 -1 0.9576028 0.6698526 -0 0.9720079 0.6698526 -0.1939468 0.9720079 0.6698526 -0.2773041 0.9720079 0.6698526 -0.3384659 0.9720079 0.6698526 -0.3885728 0.9720079 0.6698526 -0.4317928 0.9720079 0.6698526 -0.470214 0.9720079 0.6698526 -0.5050551 0.9720079 0.6698526 -0.5370987 0.9720079 0.6698526 -0.5668815 0.9720079 0.6698526 -0.5947903 0.9720079 0.6698526 -0.6211144 0.9720079 0.6698526 -0.6460766 0.9720079 0.6698526 -0.6698526 0.9720079 0.6698526 -0.6925839 0.9720079 0.6698526 -0.7143866 0.9720079 0.6698526 -0.7353569 0.9720079 0.6698526 -0.7555758 0.9720079 0.6698526 -0.7751122 0.9720079 0.6698526 -0.7940252 0.9720079 0.6698526 -0.8123661 0.9720079 0.6698526 -0.8301795 0.9720079 0.6698526 -0.8475045 0.9720079 0.6698526 -0.8643761 0.9720079 0.6698526 -0.880825 0.9720079 0.6698526 -0.8968787 0.9720079 0.6698526 -0.9125621 0.9720079 0.6698526 -0.9278974 0.9720079 0.6698526 -0.9429048 0.9720079 0.6698526 -0.9576028 0.9720079 0.6698526 -0.9720079 0.9720079 0.6698526 -0.9861357 0.9720079 0.6698526 -1 0.9720079 0.6698526 -0 0.9861357 0.6698526 -0.1939468 0.9861357 0.6698526 -0.2773041 0.9861357 0.6698526 -0.3384659 0.9861357 0.6698526 -0.3885728 0.9861357 0.6698526 -0.4317928 0.9861357 0.6698526 -0.470214 0.9861357 0.6698526 -0.5050551 0.9861357 0.6698526 -0.5370987 0.9861357 0.6698526 -0.5668815 0.9861357 0.6698526 -0.5947903 0.9861357 0.6698526 -0.6211144 0.9861357 0.6698526 -0.6460766 0.9861357 0.6698526 -0.6698526 0.9861357 0.6698526 -0.6925839 0.9861357 0.6698526 -0.7143866 0.9861357 0.6698526 -0.7353569 0.9861357 0.6698526 -0.7555758 0.9861357 0.6698526 -0.7751122 0.9861357 0.6698526 -0.7940252 0.9861357 0.6698526 -0.8123661 0.9861357 0.6698526 -0.8301795 0.9861357 0.6698526 -0.8475045 0.9861357 0.6698526 -0.8643761 0.9861357 0.6698526 -0.880825 0.9861357 0.6698526 -0.8968787 0.9861357 0.6698526 -0.9125621 0.9861357 0.6698526 -0.9278974 0.9861357 0.6698526 -0.9429048 0.9861357 0.6698526 -0.9576028 0.9861357 0.6698526 -0.9720079 0.9861357 0.6698526 -0.9861357 0.9861357 0.6698526 -1 0.9861357 0.6698526 -0 1 0.6698526 -0.1939468 1 0.6698526 -0.2773041 1 0.6698526 -0.3384659 1 0.6698526 -0.3885728 1 0.6698526 -0.4317928 1 0.6698526 -0.470214 1 0.6698526 -0.5050551 1 0.6698526 -0.5370987 1 0.6698526 -0.5668815 1 0.6698526 -0.5947903 1 0.6698526 -0.6211144 1 0.6698526 -0.6460766 1 0.6698526 -0.6698526 1 0.6698526 -0.6925839 1 0.6698526 -0.7143866 1 0.6698526 -0.7353569 1 0.6698526 -0.7555758 1 0.6698526 -0.7751122 1 0.6698526 -0.7940252 1 0.6698526 -0.8123661 1 0.6698526 -0.8301795 1 0.6698526 -0.8475045 1 0.6698526 -0.8643761 1 0.6698526 -0.880825 1 0.6698526 -0.8968787 1 0.6698526 -0.9125621 1 0.6698526 -0.9278974 1 0.6698526 -0.9429048 1 0.6698526 -0.9576028 1 0.6698526 -0.9720079 1 0.6698526 -0.9861357 1 0.6698526 -1 1 0.6698526 -0 0 0.6925839 -0.1939468 0 0.6925839 -0.2773041 0 0.6925839 -0.3384659 0 0.6925839 -0.3885728 0 0.6925839 -0.4317928 0 0.6925839 -0.470214 0 0.6925839 -0.5050551 0 0.6925839 -0.5370987 0 0.6925839 -0.5668815 0 0.6925839 -0.5947903 0 0.6925839 -0.6211144 0 0.6925839 -0.6460766 0 0.6925839 -0.6698526 0 0.6925839 -0.6925839 0 0.6925839 -0.7143866 0 0.6925839 -0.7353569 0 0.6925839 -0.7555758 0 0.6925839 -0.7751122 0 0.6925839 -0.7940252 0 0.6925839 -0.8123661 0 0.6925839 -0.8301795 0 0.6925839 -0.8475045 0 0.6925839 -0.8643761 0 0.6925839 -0.880825 0 0.6925839 -0.8968787 0 0.6925839 -0.9125621 0 0.6925839 -0.9278974 0 0.6925839 -0.9429048 0 0.6925839 -0.9576028 0 0.6925839 -0.9720079 0 0.6925839 -0.9861357 0 0.6925839 -1 0 0.6925839 -0 0.1939468 0.6925839 -0.1939468 0.1939468 0.6925839 -0.2773041 0.1939468 0.6925839 -0.3384659 0.1939468 0.6925839 -0.3885728 0.1939468 0.6925839 -0.4317928 0.1939468 0.6925839 -0.470214 0.1939468 0.6925839 -0.5050551 0.1939468 0.6925839 -0.5370987 0.1939468 0.6925839 -0.5668815 0.1939468 0.6925839 -0.5947903 0.1939468 0.6925839 -0.6211144 0.1939468 0.6925839 -0.6460766 0.1939468 0.6925839 -0.6698526 0.1939468 0.6925839 -0.6925839 0.1939468 0.6925839 -0.7143866 0.1939468 0.6925839 -0.7353569 0.1939468 0.6925839 -0.7555758 0.1939468 0.6925839 -0.7751122 0.1939468 0.6925839 -0.7940252 0.1939468 0.6925839 -0.8123661 0.1939468 0.6925839 -0.8301795 0.1939468 0.6925839 -0.8475045 0.1939468 0.6925839 -0.8643761 0.1939468 0.6925839 -0.880825 0.1939468 0.6925839 -0.8968787 0.1939468 0.6925839 -0.9125621 0.1939468 0.6925839 -0.9278974 0.1939468 0.6925839 -0.9429048 0.1939468 0.6925839 -0.9576028 0.1939468 0.6925839 -0.9720079 0.1939468 0.6925839 -0.9861357 0.1939468 0.6925839 -1 0.1939468 0.6925839 -0 0.2773041 0.6925839 -0.1939468 0.2773041 0.6925839 -0.2773041 0.2773041 0.6925839 -0.3384659 0.2773041 0.6925839 -0.3885728 0.2773041 0.6925839 -0.4317928 0.2773041 0.6925839 -0.470214 0.2773041 0.6925839 -0.5050551 0.2773041 0.6925839 -0.5370987 0.2773041 0.6925839 -0.5668815 0.2773041 0.6925839 -0.5947903 0.2773041 0.6925839 -0.6211144 0.2773041 0.6925839 -0.6460766 0.2773041 0.6925839 -0.6698526 0.2773041 0.6925839 -0.6925839 0.2773041 0.6925839 -0.7143866 0.2773041 0.6925839 -0.7353569 0.2773041 0.6925839 -0.7555758 0.2773041 0.6925839 -0.7751122 0.2773041 0.6925839 -0.7940252 0.2773041 0.6925839 -0.8123661 0.2773041 0.6925839 -0.8301795 0.2773041 0.6925839 -0.8475045 0.2773041 0.6925839 -0.8643761 0.2773041 0.6925839 -0.880825 0.2773041 0.6925839 -0.8968787 0.2773041 0.6925839 -0.9125621 0.2773041 0.6925839 -0.9278974 0.2773041 0.6925839 -0.9429048 0.2773041 0.6925839 -0.9576028 0.2773041 0.6925839 -0.9720079 0.2773041 0.6925839 -0.9861357 0.2773041 0.6925839 -1 0.2773041 0.6925839 -0 0.3384659 0.6925839 -0.1939468 0.3384659 0.6925839 -0.2773041 0.3384659 0.6925839 -0.3384659 0.3384659 0.6925839 -0.3885728 0.3384659 0.6925839 -0.4317928 0.3384659 0.6925839 -0.470214 0.3384659 0.6925839 -0.5050551 0.3384659 0.6925839 -0.5370987 0.3384659 0.6925839 -0.5668815 0.3384659 0.6925839 -0.5947903 0.3384659 0.6925839 -0.6211144 0.3384659 0.6925839 -0.6460766 0.3384659 0.6925839 -0.6698526 0.3384659 0.6925839 -0.6925839 0.3384659 0.6925839 -0.7143866 0.3384659 0.6925839 -0.7353569 0.3384659 0.6925839 -0.7555758 0.3384659 0.6925839 -0.7751122 0.3384659 0.6925839 -0.7940252 0.3384659 0.6925839 -0.8123661 0.3384659 0.6925839 -0.8301795 0.3384659 0.6925839 -0.8475045 0.3384659 0.6925839 -0.8643761 0.3384659 0.6925839 -0.880825 0.3384659 0.6925839 -0.8968787 0.3384659 0.6925839 -0.9125621 0.3384659 0.6925839 -0.9278974 0.3384659 0.6925839 -0.9429048 0.3384659 0.6925839 -0.9576028 0.3384659 0.6925839 -0.9720079 0.3384659 0.6925839 -0.9861357 0.3384659 0.6925839 -1 0.3384659 0.6925839 -0 0.3885728 0.6925839 -0.1939468 0.3885728 0.6925839 -0.2773041 0.3885728 0.6925839 -0.3384659 0.3885728 0.6925839 -0.3885728 0.3885728 0.6925839 -0.4317928 0.3885728 0.6925839 -0.470214 0.3885728 0.6925839 -0.5050551 0.3885728 0.6925839 -0.5370987 0.3885728 0.6925839 -0.5668815 0.3885728 0.6925839 -0.5947903 0.3885728 0.6925839 -0.6211144 0.3885728 0.6925839 -0.6460766 0.3885728 0.6925839 -0.6698526 0.3885728 0.6925839 -0.6925839 0.3885728 0.6925839 -0.7143866 0.3885728 0.6925839 -0.7353569 0.3885728 0.6925839 -0.7555758 0.3885728 0.6925839 -0.7751122 0.3885728 0.6925839 -0.7940252 0.3885728 0.6925839 -0.8123661 0.3885728 0.6925839 -0.8301795 0.3885728 0.6925839 -0.8475045 0.3885728 0.6925839 -0.8643761 0.3885728 0.6925839 -0.880825 0.3885728 0.6925839 -0.8968787 0.3885728 0.6925839 -0.9125621 0.3885728 0.6925839 -0.9278974 0.3885728 0.6925839 -0.9429048 0.3885728 0.6925839 -0.9576028 0.3885728 0.6925839 -0.9720079 0.3885728 0.6925839 -0.9861357 0.3885728 0.6925839 -1 0.3885728 0.6925839 -0 0.4317928 0.6925839 -0.1939468 0.4317928 0.6925839 -0.2773041 0.4317928 0.6925839 -0.3384659 0.4317928 0.6925839 -0.3885728 0.4317928 0.6925839 -0.4317928 0.4317928 0.6925839 -0.470214 0.4317928 0.6925839 -0.5050551 0.4317928 0.6925839 -0.5370987 0.4317928 0.6925839 -0.5668815 0.4317928 0.6925839 -0.5947903 0.4317928 0.6925839 -0.6211144 0.4317928 0.6925839 -0.6460766 0.4317928 0.6925839 -0.6698526 0.4317928 0.6925839 -0.6925839 0.4317928 0.6925839 -0.7143866 0.4317928 0.6925839 -0.7353569 0.4317928 0.6925839 -0.7555758 0.4317928 0.6925839 -0.7751122 0.4317928 0.6925839 -0.7940252 0.4317928 0.6925839 -0.8123661 0.4317928 0.6925839 -0.8301795 0.4317928 0.6925839 -0.8475045 0.4317928 0.6925839 -0.8643761 0.4317928 0.6925839 -0.880825 0.4317928 0.6925839 -0.8968787 0.4317928 0.6925839 -0.9125621 0.4317928 0.6925839 -0.9278974 0.4317928 0.6925839 -0.9429048 0.4317928 0.6925839 -0.9576028 0.4317928 0.6925839 -0.9720079 0.4317928 0.6925839 -0.9861357 0.4317928 0.6925839 -1 0.4317928 0.6925839 -0 0.470214 0.6925839 -0.1939468 0.470214 0.6925839 -0.2773041 0.470214 0.6925839 -0.3384659 0.470214 0.6925839 -0.3885728 0.470214 0.6925839 -0.4317928 0.470214 0.6925839 -0.470214 0.470214 0.6925839 -0.5050551 0.470214 0.6925839 -0.5370987 0.470214 0.6925839 -0.5668815 0.470214 0.6925839 -0.5947903 0.470214 0.6925839 -0.6211144 0.470214 0.6925839 -0.6460766 0.470214 0.6925839 -0.6698526 0.470214 0.6925839 -0.6925839 0.470214 0.6925839 -0.7143866 0.470214 0.6925839 -0.7353569 0.470214 0.6925839 -0.7555758 0.470214 0.6925839 -0.7751122 0.470214 0.6925839 -0.7940252 0.470214 0.6925839 -0.8123661 0.470214 0.6925839 -0.8301795 0.470214 0.6925839 -0.8475045 0.470214 0.6925839 -0.8643761 0.470214 0.6925839 -0.880825 0.470214 0.6925839 -0.8968787 0.470214 0.6925839 -0.9125621 0.470214 0.6925839 -0.9278974 0.470214 0.6925839 -0.9429048 0.470214 0.6925839 -0.9576028 0.470214 0.6925839 -0.9720079 0.470214 0.6925839 -0.9861357 0.470214 0.6925839 -1 0.470214 0.6925839 -0 0.5050551 0.6925839 -0.1939468 0.5050551 0.6925839 -0.2773041 0.5050551 0.6925839 -0.3384659 0.5050551 0.6925839 -0.3885728 0.5050551 0.6925839 -0.4317928 0.5050551 0.6925839 -0.470214 0.5050551 0.6925839 -0.5050551 0.5050551 0.6925839 -0.5370987 0.5050551 0.6925839 -0.5668815 0.5050551 0.6925839 -0.5947903 0.5050551 0.6925839 -0.6211144 0.5050551 0.6925839 -0.6460766 0.5050551 0.6925839 -0.6698526 0.5050551 0.6925839 -0.6925839 0.5050551 0.6925839 -0.7143866 0.5050551 0.6925839 -0.7353569 0.5050551 0.6925839 -0.7555758 0.5050551 0.6925839 -0.7751122 0.5050551 0.6925839 -0.7940252 0.5050551 0.6925839 -0.8123661 0.5050551 0.6925839 -0.8301795 0.5050551 0.6925839 -0.8475045 0.5050551 0.6925839 -0.8643761 0.5050551 0.6925839 -0.880825 0.5050551 0.6925839 -0.8968787 0.5050551 0.6925839 -0.9125621 0.5050551 0.6925839 -0.9278974 0.5050551 0.6925839 -0.9429048 0.5050551 0.6925839 -0.9576028 0.5050551 0.6925839 -0.9720079 0.5050551 0.6925839 -0.9861357 0.5050551 0.6925839 -1 0.5050551 0.6925839 -0 0.5370987 0.6925839 -0.1939468 0.5370987 0.6925839 -0.2773041 0.5370987 0.6925839 -0.3384659 0.5370987 0.6925839 -0.3885728 0.5370987 0.6925839 -0.4317928 0.5370987 0.6925839 -0.470214 0.5370987 0.6925839 -0.5050551 0.5370987 0.6925839 -0.5370987 0.5370987 0.6925839 -0.5668815 0.5370987 0.6925839 -0.5947903 0.5370987 0.6925839 -0.6211144 0.5370987 0.6925839 -0.6460766 0.5370987 0.6925839 -0.6698526 0.5370987 0.6925839 -0.6925839 0.5370987 0.6925839 -0.7143866 0.5370987 0.6925839 -0.7353569 0.5370987 0.6925839 -0.7555758 0.5370987 0.6925839 -0.7751122 0.5370987 0.6925839 -0.7940252 0.5370987 0.6925839 -0.8123661 0.5370987 0.6925839 -0.8301795 0.5370987 0.6925839 -0.8475045 0.5370987 0.6925839 -0.8643761 0.5370987 0.6925839 -0.880825 0.5370987 0.6925839 -0.8968787 0.5370987 0.6925839 -0.9125621 0.5370987 0.6925839 -0.9278974 0.5370987 0.6925839 -0.9429048 0.5370987 0.6925839 -0.9576028 0.5370987 0.6925839 -0.9720079 0.5370987 0.6925839 -0.9861357 0.5370987 0.6925839 -1 0.5370987 0.6925839 -0 0.5668815 0.6925839 -0.1939468 0.5668815 0.6925839 -0.2773041 0.5668815 0.6925839 -0.3384659 0.5668815 0.6925839 -0.3885728 0.5668815 0.6925839 -0.4317928 0.5668815 0.6925839 -0.470214 0.5668815 0.6925839 -0.5050551 0.5668815 0.6925839 -0.5370987 0.5668815 0.6925839 -0.5668815 0.5668815 0.6925839 -0.5947903 0.5668815 0.6925839 -0.6211144 0.5668815 0.6925839 -0.6460766 0.5668815 0.6925839 -0.6698526 0.5668815 0.6925839 -0.6925839 0.5668815 0.6925839 -0.7143866 0.5668815 0.6925839 -0.7353569 0.5668815 0.6925839 -0.7555758 0.5668815 0.6925839 -0.7751122 0.5668815 0.6925839 -0.7940252 0.5668815 0.6925839 -0.8123661 0.5668815 0.6925839 -0.8301795 0.5668815 0.6925839 -0.8475045 0.5668815 0.6925839 -0.8643761 0.5668815 0.6925839 -0.880825 0.5668815 0.6925839 -0.8968787 0.5668815 0.6925839 -0.9125621 0.5668815 0.6925839 -0.9278974 0.5668815 0.6925839 -0.9429048 0.5668815 0.6925839 -0.9576028 0.5668815 0.6925839 -0.9720079 0.5668815 0.6925839 -0.9861357 0.5668815 0.6925839 -1 0.5668815 0.6925839 -0 0.5947903 0.6925839 -0.1939468 0.5947903 0.6925839 -0.2773041 0.5947903 0.6925839 -0.3384659 0.5947903 0.6925839 -0.3885728 0.5947903 0.6925839 -0.4317928 0.5947903 0.6925839 -0.470214 0.5947903 0.6925839 -0.5050551 0.5947903 0.6925839 -0.5370987 0.5947903 0.6925839 -0.5668815 0.5947903 0.6925839 -0.5947903 0.5947903 0.6925839 -0.6211144 0.5947903 0.6925839 -0.6460766 0.5947903 0.6925839 -0.6698526 0.5947903 0.6925839 -0.6925839 0.5947903 0.6925839 -0.7143866 0.5947903 0.6925839 -0.7353569 0.5947903 0.6925839 -0.7555758 0.5947903 0.6925839 -0.7751122 0.5947903 0.6925839 -0.7940252 0.5947903 0.6925839 -0.8123661 0.5947903 0.6925839 -0.8301795 0.5947903 0.6925839 -0.8475045 0.5947903 0.6925839 -0.8643761 0.5947903 0.6925839 -0.880825 0.5947903 0.6925839 -0.8968787 0.5947903 0.6925839 -0.9125621 0.5947903 0.6925839 -0.9278974 0.5947903 0.6925839 -0.9429048 0.5947903 0.6925839 -0.9576028 0.5947903 0.6925839 -0.9720079 0.5947903 0.6925839 -0.9861357 0.5947903 0.6925839 -1 0.5947903 0.6925839 -0 0.6211144 0.6925839 -0.1939468 0.6211144 0.6925839 -0.2773041 0.6211144 0.6925839 -0.3384659 0.6211144 0.6925839 -0.3885728 0.6211144 0.6925839 -0.4317928 0.6211144 0.6925839 -0.470214 0.6211144 0.6925839 -0.5050551 0.6211144 0.6925839 -0.5370987 0.6211144 0.6925839 -0.5668815 0.6211144 0.6925839 -0.5947903 0.6211144 0.6925839 -0.6211144 0.6211144 0.6925839 -0.6460766 0.6211144 0.6925839 -0.6698526 0.6211144 0.6925839 -0.6925839 0.6211144 0.6925839 -0.7143866 0.6211144 0.6925839 -0.7353569 0.6211144 0.6925839 -0.7555758 0.6211144 0.6925839 -0.7751122 0.6211144 0.6925839 -0.7940252 0.6211144 0.6925839 -0.8123661 0.6211144 0.6925839 -0.8301795 0.6211144 0.6925839 -0.8475045 0.6211144 0.6925839 -0.8643761 0.6211144 0.6925839 -0.880825 0.6211144 0.6925839 -0.8968787 0.6211144 0.6925839 -0.9125621 0.6211144 0.6925839 -0.9278974 0.6211144 0.6925839 -0.9429048 0.6211144 0.6925839 -0.9576028 0.6211144 0.6925839 -0.9720079 0.6211144 0.6925839 -0.9861357 0.6211144 0.6925839 -1 0.6211144 0.6925839 -0 0.6460766 0.6925839 -0.1939468 0.6460766 0.6925839 -0.2773041 0.6460766 0.6925839 -0.3384659 0.6460766 0.6925839 -0.3885728 0.6460766 0.6925839 -0.4317928 0.6460766 0.6925839 -0.470214 0.6460766 0.6925839 -0.5050551 0.6460766 0.6925839 -0.5370987 0.6460766 0.6925839 -0.5668815 0.6460766 0.6925839 -0.5947903 0.6460766 0.6925839 -0.6211144 0.6460766 0.6925839 -0.6460766 0.6460766 0.6925839 -0.6698526 0.6460766 0.6925839 -0.6925839 0.6460766 0.6925839 -0.7143866 0.6460766 0.6925839 -0.7353569 0.6460766 0.6925839 -0.7555758 0.6460766 0.6925839 -0.7751122 0.6460766 0.6925839 -0.7940252 0.6460766 0.6925839 -0.8123661 0.6460766 0.6925839 -0.8301795 0.6460766 0.6925839 -0.8475045 0.6460766 0.6925839 -0.8643761 0.6460766 0.6925839 -0.880825 0.6460766 0.6925839 -0.8968787 0.6460766 0.6925839 -0.9125621 0.6460766 0.6925839 -0.9278974 0.6460766 0.6925839 -0.9429048 0.6460766 0.6925839 -0.9576028 0.6460766 0.6925839 -0.9720079 0.6460766 0.6925839 -0.9861357 0.6460766 0.6925839 -1 0.6460766 0.6925839 -0 0.6698526 0.6925839 -0.1939468 0.6698526 0.6925839 -0.2773041 0.6698526 0.6925839 -0.3384659 0.6698526 0.6925839 -0.3885728 0.6698526 0.6925839 -0.4317928 0.6698526 0.6925839 -0.470214 0.6698526 0.6925839 -0.5050551 0.6698526 0.6925839 -0.5370987 0.6698526 0.6925839 -0.5668815 0.6698526 0.6925839 -0.5947903 0.6698526 0.6925839 -0.6211144 0.6698526 0.6925839 -0.6460766 0.6698526 0.6925839 -0.6698526 0.6698526 0.6925839 -0.6925839 0.6698526 0.6925839 -0.7143866 0.6698526 0.6925839 -0.7353569 0.6698526 0.6925839 -0.7555758 0.6698526 0.6925839 -0.7751122 0.6698526 0.6925839 -0.7940252 0.6698526 0.6925839 -0.8123661 0.6698526 0.6925839 -0.8301795 0.6698526 0.6925839 -0.8475045 0.6698526 0.6925839 -0.8643761 0.6698526 0.6925839 -0.880825 0.6698526 0.6925839 -0.8968787 0.6698526 0.6925839 -0.9125621 0.6698526 0.6925839 -0.9278974 0.6698526 0.6925839 -0.9429048 0.6698526 0.6925839 -0.9576028 0.6698526 0.6925839 -0.9720079 0.6698526 0.6925839 -0.9861357 0.6698526 0.6925839 -1 0.6698526 0.6925839 -0 0.6925839 0.6925839 -0.1939468 0.6925839 0.6925839 -0.2773041 0.6925839 0.6925839 -0.3384659 0.6925839 0.6925839 -0.3885728 0.6925839 0.6925839 -0.4317928 0.6925839 0.6925839 -0.470214 0.6925839 0.6925839 -0.5050551 0.6925839 0.6925839 -0.5370987 0.6925839 0.6925839 -0.5668815 0.6925839 0.6925839 -0.5947903 0.6925839 0.6925839 -0.6211144 0.6925839 0.6925839 -0.6460766 0.6925839 0.6925839 -0.6698526 0.6925839 0.6925839 -0.6925839 0.6925839 0.6925839 -0.7143866 0.6925839 0.6925839 -0.7353569 0.6925839 0.6925839 -0.7555758 0.6925839 0.6925839 -0.7751122 0.6925839 0.6925839 -0.7940252 0.6925839 0.6925839 -0.8123661 0.6925839 0.6925839 -0.8301795 0.6925839 0.6925839 -0.8475045 0.6925839 0.6925839 -0.8643761 0.6925839 0.6925839 -0.880825 0.6925839 0.6925839 -0.8968787 0.6925839 0.6925839 -0.9125621 0.6925839 0.6925839 -0.9278974 0.6925839 0.6925839 -0.9429048 0.6925839 0.6925839 -0.9576028 0.6925839 0.6925839 -0.9720079 0.6925839 0.6925839 -0.9861357 0.6925839 0.6925839 -1 0.6925839 0.6925839 -0 0.7143866 0.6925839 -0.1939468 0.7143866 0.6925839 -0.2773041 0.7143866 0.6925839 -0.3384659 0.7143866 0.6925839 -0.3885728 0.7143866 0.6925839 -0.4317928 0.7143866 0.6925839 -0.470214 0.7143866 0.6925839 -0.5050551 0.7143866 0.6925839 -0.5370987 0.7143866 0.6925839 -0.5668815 0.7143866 0.6925839 -0.5947903 0.7143866 0.6925839 -0.6211144 0.7143866 0.6925839 -0.6460766 0.7143866 0.6925839 -0.6698526 0.7143866 0.6925839 -0.6925839 0.7143866 0.6925839 -0.7143866 0.7143866 0.6925839 -0.7353569 0.7143866 0.6925839 -0.7555758 0.7143866 0.6925839 -0.7751122 0.7143866 0.6925839 -0.7940252 0.7143866 0.6925839 -0.8123661 0.7143866 0.6925839 -0.8301795 0.7143866 0.6925839 -0.8475045 0.7143866 0.6925839 -0.8643761 0.7143866 0.6925839 -0.880825 0.7143866 0.6925839 -0.8968787 0.7143866 0.6925839 -0.9125621 0.7143866 0.6925839 -0.9278974 0.7143866 0.6925839 -0.9429048 0.7143866 0.6925839 -0.9576028 0.7143866 0.6925839 -0.9720079 0.7143866 0.6925839 -0.9861357 0.7143866 0.6925839 -1 0.7143866 0.6925839 -0 0.7353569 0.6925839 -0.1939468 0.7353569 0.6925839 -0.2773041 0.7353569 0.6925839 -0.3384659 0.7353569 0.6925839 -0.3885728 0.7353569 0.6925839 -0.4317928 0.7353569 0.6925839 -0.470214 0.7353569 0.6925839 -0.5050551 0.7353569 0.6925839 -0.5370987 0.7353569 0.6925839 -0.5668815 0.7353569 0.6925839 -0.5947903 0.7353569 0.6925839 -0.6211144 0.7353569 0.6925839 -0.6460766 0.7353569 0.6925839 -0.6698526 0.7353569 0.6925839 -0.6925839 0.7353569 0.6925839 -0.7143866 0.7353569 0.6925839 -0.7353569 0.7353569 0.6925839 -0.7555758 0.7353569 0.6925839 -0.7751122 0.7353569 0.6925839 -0.7940252 0.7353569 0.6925839 -0.8123661 0.7353569 0.6925839 -0.8301795 0.7353569 0.6925839 -0.8475045 0.7353569 0.6925839 -0.8643761 0.7353569 0.6925839 -0.880825 0.7353569 0.6925839 -0.8968787 0.7353569 0.6925839 -0.9125621 0.7353569 0.6925839 -0.9278974 0.7353569 0.6925839 -0.9429048 0.7353569 0.6925839 -0.9576028 0.7353569 0.6925839 -0.9720079 0.7353569 0.6925839 -0.9861357 0.7353569 0.6925839 -1 0.7353569 0.6925839 -0 0.7555758 0.6925839 -0.1939468 0.7555758 0.6925839 -0.2773041 0.7555758 0.6925839 -0.3384659 0.7555758 0.6925839 -0.3885728 0.7555758 0.6925839 -0.4317928 0.7555758 0.6925839 -0.470214 0.7555758 0.6925839 -0.5050551 0.7555758 0.6925839 -0.5370987 0.7555758 0.6925839 -0.5668815 0.7555758 0.6925839 -0.5947903 0.7555758 0.6925839 -0.6211144 0.7555758 0.6925839 -0.6460766 0.7555758 0.6925839 -0.6698526 0.7555758 0.6925839 -0.6925839 0.7555758 0.6925839 -0.7143866 0.7555758 0.6925839 -0.7353569 0.7555758 0.6925839 -0.7555758 0.7555758 0.6925839 -0.7751122 0.7555758 0.6925839 -0.7940252 0.7555758 0.6925839 -0.8123661 0.7555758 0.6925839 -0.8301795 0.7555758 0.6925839 -0.8475045 0.7555758 0.6925839 -0.8643761 0.7555758 0.6925839 -0.880825 0.7555758 0.6925839 -0.8968787 0.7555758 0.6925839 -0.9125621 0.7555758 0.6925839 -0.9278974 0.7555758 0.6925839 -0.9429048 0.7555758 0.6925839 -0.9576028 0.7555758 0.6925839 -0.9720079 0.7555758 0.6925839 -0.9861357 0.7555758 0.6925839 -1 0.7555758 0.6925839 -0 0.7751122 0.6925839 -0.1939468 0.7751122 0.6925839 -0.2773041 0.7751122 0.6925839 -0.3384659 0.7751122 0.6925839 -0.3885728 0.7751122 0.6925839 -0.4317928 0.7751122 0.6925839 -0.470214 0.7751122 0.6925839 -0.5050551 0.7751122 0.6925839 -0.5370987 0.7751122 0.6925839 -0.5668815 0.7751122 0.6925839 -0.5947903 0.7751122 0.6925839 -0.6211144 0.7751122 0.6925839 -0.6460766 0.7751122 0.6925839 -0.6698526 0.7751122 0.6925839 -0.6925839 0.7751122 0.6925839 -0.7143866 0.7751122 0.6925839 -0.7353569 0.7751122 0.6925839 -0.7555758 0.7751122 0.6925839 -0.7751122 0.7751122 0.6925839 -0.7940252 0.7751122 0.6925839 -0.8123661 0.7751122 0.6925839 -0.8301795 0.7751122 0.6925839 -0.8475045 0.7751122 0.6925839 -0.8643761 0.7751122 0.6925839 -0.880825 0.7751122 0.6925839 -0.8968787 0.7751122 0.6925839 -0.9125621 0.7751122 0.6925839 -0.9278974 0.7751122 0.6925839 -0.9429048 0.7751122 0.6925839 -0.9576028 0.7751122 0.6925839 -0.9720079 0.7751122 0.6925839 -0.9861357 0.7751122 0.6925839 -1 0.7751122 0.6925839 -0 0.7940252 0.6925839 -0.1939468 0.7940252 0.6925839 -0.2773041 0.7940252 0.6925839 -0.3384659 0.7940252 0.6925839 -0.3885728 0.7940252 0.6925839 -0.4317928 0.7940252 0.6925839 -0.470214 0.7940252 0.6925839 -0.5050551 0.7940252 0.6925839 -0.5370987 0.7940252 0.6925839 -0.5668815 0.7940252 0.6925839 -0.5947903 0.7940252 0.6925839 -0.6211144 0.7940252 0.6925839 -0.6460766 0.7940252 0.6925839 -0.6698526 0.7940252 0.6925839 -0.6925839 0.7940252 0.6925839 -0.7143866 0.7940252 0.6925839 -0.7353569 0.7940252 0.6925839 -0.7555758 0.7940252 0.6925839 -0.7751122 0.7940252 0.6925839 -0.7940252 0.7940252 0.6925839 -0.8123661 0.7940252 0.6925839 -0.8301795 0.7940252 0.6925839 -0.8475045 0.7940252 0.6925839 -0.8643761 0.7940252 0.6925839 -0.880825 0.7940252 0.6925839 -0.8968787 0.7940252 0.6925839 -0.9125621 0.7940252 0.6925839 -0.9278974 0.7940252 0.6925839 -0.9429048 0.7940252 0.6925839 -0.9576028 0.7940252 0.6925839 -0.9720079 0.7940252 0.6925839 -0.9861357 0.7940252 0.6925839 -1 0.7940252 0.6925839 -0 0.8123661 0.6925839 -0.1939468 0.8123661 0.6925839 -0.2773041 0.8123661 0.6925839 -0.3384659 0.8123661 0.6925839 -0.3885728 0.8123661 0.6925839 -0.4317928 0.8123661 0.6925839 -0.470214 0.8123661 0.6925839 -0.5050551 0.8123661 0.6925839 -0.5370987 0.8123661 0.6925839 -0.5668815 0.8123661 0.6925839 -0.5947903 0.8123661 0.6925839 -0.6211144 0.8123661 0.6925839 -0.6460766 0.8123661 0.6925839 -0.6698526 0.8123661 0.6925839 -0.6925839 0.8123661 0.6925839 -0.7143866 0.8123661 0.6925839 -0.7353569 0.8123661 0.6925839 -0.7555758 0.8123661 0.6925839 -0.7751122 0.8123661 0.6925839 -0.7940252 0.8123661 0.6925839 -0.8123661 0.8123661 0.6925839 -0.8301795 0.8123661 0.6925839 -0.8475045 0.8123661 0.6925839 -0.8643761 0.8123661 0.6925839 -0.880825 0.8123661 0.6925839 -0.8968787 0.8123661 0.6925839 -0.9125621 0.8123661 0.6925839 -0.9278974 0.8123661 0.6925839 -0.9429048 0.8123661 0.6925839 -0.9576028 0.8123661 0.6925839 -0.9720079 0.8123661 0.6925839 -0.9861357 0.8123661 0.6925839 -1 0.8123661 0.6925839 -0 0.8301795 0.6925839 -0.1939468 0.8301795 0.6925839 -0.2773041 0.8301795 0.6925839 -0.3384659 0.8301795 0.6925839 -0.3885728 0.8301795 0.6925839 -0.4317928 0.8301795 0.6925839 -0.470214 0.8301795 0.6925839 -0.5050551 0.8301795 0.6925839 -0.5370987 0.8301795 0.6925839 -0.5668815 0.8301795 0.6925839 -0.5947903 0.8301795 0.6925839 -0.6211144 0.8301795 0.6925839 -0.6460766 0.8301795 0.6925839 -0.6698526 0.8301795 0.6925839 -0.6925839 0.8301795 0.6925839 -0.7143866 0.8301795 0.6925839 -0.7353569 0.8301795 0.6925839 -0.7555758 0.8301795 0.6925839 -0.7751122 0.8301795 0.6925839 -0.7940252 0.8301795 0.6925839 -0.8123661 0.8301795 0.6925839 -0.8301795 0.8301795 0.6925839 -0.8475045 0.8301795 0.6925839 -0.8643761 0.8301795 0.6925839 -0.880825 0.8301795 0.6925839 -0.8968787 0.8301795 0.6925839 -0.9125621 0.8301795 0.6925839 -0.9278974 0.8301795 0.6925839 -0.9429048 0.8301795 0.6925839 -0.9576028 0.8301795 0.6925839 -0.9720079 0.8301795 0.6925839 -0.9861357 0.8301795 0.6925839 -1 0.8301795 0.6925839 -0 0.8475045 0.6925839 -0.1939468 0.8475045 0.6925839 -0.2773041 0.8475045 0.6925839 -0.3384659 0.8475045 0.6925839 -0.3885728 0.8475045 0.6925839 -0.4317928 0.8475045 0.6925839 -0.470214 0.8475045 0.6925839 -0.5050551 0.8475045 0.6925839 -0.5370987 0.8475045 0.6925839 -0.5668815 0.8475045 0.6925839 -0.5947903 0.8475045 0.6925839 -0.6211144 0.8475045 0.6925839 -0.6460766 0.8475045 0.6925839 -0.6698526 0.8475045 0.6925839 -0.6925839 0.8475045 0.6925839 -0.7143866 0.8475045 0.6925839 -0.7353569 0.8475045 0.6925839 -0.7555758 0.8475045 0.6925839 -0.7751122 0.8475045 0.6925839 -0.7940252 0.8475045 0.6925839 -0.8123661 0.8475045 0.6925839 -0.8301795 0.8475045 0.6925839 -0.8475045 0.8475045 0.6925839 -0.8643761 0.8475045 0.6925839 -0.880825 0.8475045 0.6925839 -0.8968787 0.8475045 0.6925839 -0.9125621 0.8475045 0.6925839 -0.9278974 0.8475045 0.6925839 -0.9429048 0.8475045 0.6925839 -0.9576028 0.8475045 0.6925839 -0.9720079 0.8475045 0.6925839 -0.9861357 0.8475045 0.6925839 -1 0.8475045 0.6925839 -0 0.8643761 0.6925839 -0.1939468 0.8643761 0.6925839 -0.2773041 0.8643761 0.6925839 -0.3384659 0.8643761 0.6925839 -0.3885728 0.8643761 0.6925839 -0.4317928 0.8643761 0.6925839 -0.470214 0.8643761 0.6925839 -0.5050551 0.8643761 0.6925839 -0.5370987 0.8643761 0.6925839 -0.5668815 0.8643761 0.6925839 -0.5947903 0.8643761 0.6925839 -0.6211144 0.8643761 0.6925839 -0.6460766 0.8643761 0.6925839 -0.6698526 0.8643761 0.6925839 -0.6925839 0.8643761 0.6925839 -0.7143866 0.8643761 0.6925839 -0.7353569 0.8643761 0.6925839 -0.7555758 0.8643761 0.6925839 -0.7751122 0.8643761 0.6925839 -0.7940252 0.8643761 0.6925839 -0.8123661 0.8643761 0.6925839 -0.8301795 0.8643761 0.6925839 -0.8475045 0.8643761 0.6925839 -0.8643761 0.8643761 0.6925839 -0.880825 0.8643761 0.6925839 -0.8968787 0.8643761 0.6925839 -0.9125621 0.8643761 0.6925839 -0.9278974 0.8643761 0.6925839 -0.9429048 0.8643761 0.6925839 -0.9576028 0.8643761 0.6925839 -0.9720079 0.8643761 0.6925839 -0.9861357 0.8643761 0.6925839 -1 0.8643761 0.6925839 -0 0.880825 0.6925839 -0.1939468 0.880825 0.6925839 -0.2773041 0.880825 0.6925839 -0.3384659 0.880825 0.6925839 -0.3885728 0.880825 0.6925839 -0.4317928 0.880825 0.6925839 -0.470214 0.880825 0.6925839 -0.5050551 0.880825 0.6925839 -0.5370987 0.880825 0.6925839 -0.5668815 0.880825 0.6925839 -0.5947903 0.880825 0.6925839 -0.6211144 0.880825 0.6925839 -0.6460766 0.880825 0.6925839 -0.6698526 0.880825 0.6925839 -0.6925839 0.880825 0.6925839 -0.7143866 0.880825 0.6925839 -0.7353569 0.880825 0.6925839 -0.7555758 0.880825 0.6925839 -0.7751122 0.880825 0.6925839 -0.7940252 0.880825 0.6925839 -0.8123661 0.880825 0.6925839 -0.8301795 0.880825 0.6925839 -0.8475045 0.880825 0.6925839 -0.8643761 0.880825 0.6925839 -0.880825 0.880825 0.6925839 -0.8968787 0.880825 0.6925839 -0.9125621 0.880825 0.6925839 -0.9278974 0.880825 0.6925839 -0.9429048 0.880825 0.6925839 -0.9576028 0.880825 0.6925839 -0.9720079 0.880825 0.6925839 -0.9861357 0.880825 0.6925839 -1 0.880825 0.6925839 -0 0.8968787 0.6925839 -0.1939468 0.8968787 0.6925839 -0.2773041 0.8968787 0.6925839 -0.3384659 0.8968787 0.6925839 -0.3885728 0.8968787 0.6925839 -0.4317928 0.8968787 0.6925839 -0.470214 0.8968787 0.6925839 -0.5050551 0.8968787 0.6925839 -0.5370987 0.8968787 0.6925839 -0.5668815 0.8968787 0.6925839 -0.5947903 0.8968787 0.6925839 -0.6211144 0.8968787 0.6925839 -0.6460766 0.8968787 0.6925839 -0.6698526 0.8968787 0.6925839 -0.6925839 0.8968787 0.6925839 -0.7143866 0.8968787 0.6925839 -0.7353569 0.8968787 0.6925839 -0.7555758 0.8968787 0.6925839 -0.7751122 0.8968787 0.6925839 -0.7940252 0.8968787 0.6925839 -0.8123661 0.8968787 0.6925839 -0.8301795 0.8968787 0.6925839 -0.8475045 0.8968787 0.6925839 -0.8643761 0.8968787 0.6925839 -0.880825 0.8968787 0.6925839 -0.8968787 0.8968787 0.6925839 -0.9125621 0.8968787 0.6925839 -0.9278974 0.8968787 0.6925839 -0.9429048 0.8968787 0.6925839 -0.9576028 0.8968787 0.6925839 -0.9720079 0.8968787 0.6925839 -0.9861357 0.8968787 0.6925839 -1 0.8968787 0.6925839 -0 0.9125621 0.6925839 -0.1939468 0.9125621 0.6925839 -0.2773041 0.9125621 0.6925839 -0.3384659 0.9125621 0.6925839 -0.3885728 0.9125621 0.6925839 -0.4317928 0.9125621 0.6925839 -0.470214 0.9125621 0.6925839 -0.5050551 0.9125621 0.6925839 -0.5370987 0.9125621 0.6925839 -0.5668815 0.9125621 0.6925839 -0.5947903 0.9125621 0.6925839 -0.6211144 0.9125621 0.6925839 -0.6460766 0.9125621 0.6925839 -0.6698526 0.9125621 0.6925839 -0.6925839 0.9125621 0.6925839 -0.7143866 0.9125621 0.6925839 -0.7353569 0.9125621 0.6925839 -0.7555758 0.9125621 0.6925839 -0.7751122 0.9125621 0.6925839 -0.7940252 0.9125621 0.6925839 -0.8123661 0.9125621 0.6925839 -0.8301795 0.9125621 0.6925839 -0.8475045 0.9125621 0.6925839 -0.8643761 0.9125621 0.6925839 -0.880825 0.9125621 0.6925839 -0.8968787 0.9125621 0.6925839 -0.9125621 0.9125621 0.6925839 -0.9278974 0.9125621 0.6925839 -0.9429048 0.9125621 0.6925839 -0.9576028 0.9125621 0.6925839 -0.9720079 0.9125621 0.6925839 -0.9861357 0.9125621 0.6925839 -1 0.9125621 0.6925839 -0 0.9278974 0.6925839 -0.1939468 0.9278974 0.6925839 -0.2773041 0.9278974 0.6925839 -0.3384659 0.9278974 0.6925839 -0.3885728 0.9278974 0.6925839 -0.4317928 0.9278974 0.6925839 -0.470214 0.9278974 0.6925839 -0.5050551 0.9278974 0.6925839 -0.5370987 0.9278974 0.6925839 -0.5668815 0.9278974 0.6925839 -0.5947903 0.9278974 0.6925839 -0.6211144 0.9278974 0.6925839 -0.6460766 0.9278974 0.6925839 -0.6698526 0.9278974 0.6925839 -0.6925839 0.9278974 0.6925839 -0.7143866 0.9278974 0.6925839 -0.7353569 0.9278974 0.6925839 -0.7555758 0.9278974 0.6925839 -0.7751122 0.9278974 0.6925839 -0.7940252 0.9278974 0.6925839 -0.8123661 0.9278974 0.6925839 -0.8301795 0.9278974 0.6925839 -0.8475045 0.9278974 0.6925839 -0.8643761 0.9278974 0.6925839 -0.880825 0.9278974 0.6925839 -0.8968787 0.9278974 0.6925839 -0.9125621 0.9278974 0.6925839 -0.9278974 0.9278974 0.6925839 -0.9429048 0.9278974 0.6925839 -0.9576028 0.9278974 0.6925839 -0.9720079 0.9278974 0.6925839 -0.9861357 0.9278974 0.6925839 -1 0.9278974 0.6925839 -0 0.9429048 0.6925839 -0.1939468 0.9429048 0.6925839 -0.2773041 0.9429048 0.6925839 -0.3384659 0.9429048 0.6925839 -0.3885728 0.9429048 0.6925839 -0.4317928 0.9429048 0.6925839 -0.470214 0.9429048 0.6925839 -0.5050551 0.9429048 0.6925839 -0.5370987 0.9429048 0.6925839 -0.5668815 0.9429048 0.6925839 -0.5947903 0.9429048 0.6925839 -0.6211144 0.9429048 0.6925839 -0.6460766 0.9429048 0.6925839 -0.6698526 0.9429048 0.6925839 -0.6925839 0.9429048 0.6925839 -0.7143866 0.9429048 0.6925839 -0.7353569 0.9429048 0.6925839 -0.7555758 0.9429048 0.6925839 -0.7751122 0.9429048 0.6925839 -0.7940252 0.9429048 0.6925839 -0.8123661 0.9429048 0.6925839 -0.8301795 0.9429048 0.6925839 -0.8475045 0.9429048 0.6925839 -0.8643761 0.9429048 0.6925839 -0.880825 0.9429048 0.6925839 -0.8968787 0.9429048 0.6925839 -0.9125621 0.9429048 0.6925839 -0.9278974 0.9429048 0.6925839 -0.9429048 0.9429048 0.6925839 -0.9576028 0.9429048 0.6925839 -0.9720079 0.9429048 0.6925839 -0.9861357 0.9429048 0.6925839 -1 0.9429048 0.6925839 -0 0.9576028 0.6925839 -0.1939468 0.9576028 0.6925839 -0.2773041 0.9576028 0.6925839 -0.3384659 0.9576028 0.6925839 -0.3885728 0.9576028 0.6925839 -0.4317928 0.9576028 0.6925839 -0.470214 0.9576028 0.6925839 -0.5050551 0.9576028 0.6925839 -0.5370987 0.9576028 0.6925839 -0.5668815 0.9576028 0.6925839 -0.5947903 0.9576028 0.6925839 -0.6211144 0.9576028 0.6925839 -0.6460766 0.9576028 0.6925839 -0.6698526 0.9576028 0.6925839 -0.6925839 0.9576028 0.6925839 -0.7143866 0.9576028 0.6925839 -0.7353569 0.9576028 0.6925839 -0.7555758 0.9576028 0.6925839 -0.7751122 0.9576028 0.6925839 -0.7940252 0.9576028 0.6925839 -0.8123661 0.9576028 0.6925839 -0.8301795 0.9576028 0.6925839 -0.8475045 0.9576028 0.6925839 -0.8643761 0.9576028 0.6925839 -0.880825 0.9576028 0.6925839 -0.8968787 0.9576028 0.6925839 -0.9125621 0.9576028 0.6925839 -0.9278974 0.9576028 0.6925839 -0.9429048 0.9576028 0.6925839 -0.9576028 0.9576028 0.6925839 -0.9720079 0.9576028 0.6925839 -0.9861357 0.9576028 0.6925839 -1 0.9576028 0.6925839 -0 0.9720079 0.6925839 -0.1939468 0.9720079 0.6925839 -0.2773041 0.9720079 0.6925839 -0.3384659 0.9720079 0.6925839 -0.3885728 0.9720079 0.6925839 -0.4317928 0.9720079 0.6925839 -0.470214 0.9720079 0.6925839 -0.5050551 0.9720079 0.6925839 -0.5370987 0.9720079 0.6925839 -0.5668815 0.9720079 0.6925839 -0.5947903 0.9720079 0.6925839 -0.6211144 0.9720079 0.6925839 -0.6460766 0.9720079 0.6925839 -0.6698526 0.9720079 0.6925839 -0.6925839 0.9720079 0.6925839 -0.7143866 0.9720079 0.6925839 -0.7353569 0.9720079 0.6925839 -0.7555758 0.9720079 0.6925839 -0.7751122 0.9720079 0.6925839 -0.7940252 0.9720079 0.6925839 -0.8123661 0.9720079 0.6925839 -0.8301795 0.9720079 0.6925839 -0.8475045 0.9720079 0.6925839 -0.8643761 0.9720079 0.6925839 -0.880825 0.9720079 0.6925839 -0.8968787 0.9720079 0.6925839 -0.9125621 0.9720079 0.6925839 -0.9278974 0.9720079 0.6925839 -0.9429048 0.9720079 0.6925839 -0.9576028 0.9720079 0.6925839 -0.9720079 0.9720079 0.6925839 -0.9861357 0.9720079 0.6925839 -1 0.9720079 0.6925839 -0 0.9861357 0.6925839 -0.1939468 0.9861357 0.6925839 -0.2773041 0.9861357 0.6925839 -0.3384659 0.9861357 0.6925839 -0.3885728 0.9861357 0.6925839 -0.4317928 0.9861357 0.6925839 -0.470214 0.9861357 0.6925839 -0.5050551 0.9861357 0.6925839 -0.5370987 0.9861357 0.6925839 -0.5668815 0.9861357 0.6925839 -0.5947903 0.9861357 0.6925839 -0.6211144 0.9861357 0.6925839 -0.6460766 0.9861357 0.6925839 -0.6698526 0.9861357 0.6925839 -0.6925839 0.9861357 0.6925839 -0.7143866 0.9861357 0.6925839 -0.7353569 0.9861357 0.6925839 -0.7555758 0.9861357 0.6925839 -0.7751122 0.9861357 0.6925839 -0.7940252 0.9861357 0.6925839 -0.8123661 0.9861357 0.6925839 -0.8301795 0.9861357 0.6925839 -0.8475045 0.9861357 0.6925839 -0.8643761 0.9861357 0.6925839 -0.880825 0.9861357 0.6925839 -0.8968787 0.9861357 0.6925839 -0.9125621 0.9861357 0.6925839 -0.9278974 0.9861357 0.6925839 -0.9429048 0.9861357 0.6925839 -0.9576028 0.9861357 0.6925839 -0.9720079 0.9861357 0.6925839 -0.9861357 0.9861357 0.6925839 -1 0.9861357 0.6925839 -0 1 0.6925839 -0.1939468 1 0.6925839 -0.2773041 1 0.6925839 -0.3384659 1 0.6925839 -0.3885728 1 0.6925839 -0.4317928 1 0.6925839 -0.470214 1 0.6925839 -0.5050551 1 0.6925839 -0.5370987 1 0.6925839 -0.5668815 1 0.6925839 -0.5947903 1 0.6925839 -0.6211144 1 0.6925839 -0.6460766 1 0.6925839 -0.6698526 1 0.6925839 -0.6925839 1 0.6925839 -0.7143866 1 0.6925839 -0.7353569 1 0.6925839 -0.7555758 1 0.6925839 -0.7751122 1 0.6925839 -0.7940252 1 0.6925839 -0.8123661 1 0.6925839 -0.8301795 1 0.6925839 -0.8475045 1 0.6925839 -0.8643761 1 0.6925839 -0.880825 1 0.6925839 -0.8968787 1 0.6925839 -0.9125621 1 0.6925839 -0.9278974 1 0.6925839 -0.9429048 1 0.6925839 -0.9576028 1 0.6925839 -0.9720079 1 0.6925839 -0.9861357 1 0.6925839 -1 1 0.6925839 -0 0 0.7143866 -0.1939468 0 0.7143866 -0.2773041 0 0.7143866 -0.3384659 0 0.7143866 -0.3885728 0 0.7143866 -0.4317928 0 0.7143866 -0.470214 0 0.7143866 -0.5050551 0 0.7143866 -0.5370987 0 0.7143866 -0.5668815 0 0.7143866 -0.5947903 0 0.7143866 -0.6211144 0 0.7143866 -0.6460766 0 0.7143866 -0.6698526 0 0.7143866 -0.6925839 0 0.7143866 -0.7143866 0 0.7143866 -0.7353569 0 0.7143866 -0.7555758 0 0.7143866 -0.7751122 0 0.7143866 -0.7940252 0 0.7143866 -0.8123661 0 0.7143866 -0.8301795 0 0.7143866 -0.8475045 0 0.7143866 -0.8643761 0 0.7143866 -0.880825 0 0.7143866 -0.8968787 0 0.7143866 -0.9125621 0 0.7143866 -0.9278974 0 0.7143866 -0.9429048 0 0.7143866 -0.9576028 0 0.7143866 -0.9720079 0 0.7143866 -0.9861357 0 0.7143866 -1 0 0.7143866 -0 0.1939468 0.7143866 -0.1939468 0.1939468 0.7143866 -0.2773041 0.1939468 0.7143866 -0.3384659 0.1939468 0.7143866 -0.3885728 0.1939468 0.7143866 -0.4317928 0.1939468 0.7143866 -0.470214 0.1939468 0.7143866 -0.5050551 0.1939468 0.7143866 -0.5370987 0.1939468 0.7143866 -0.5668815 0.1939468 0.7143866 -0.5947903 0.1939468 0.7143866 -0.6211144 0.1939468 0.7143866 -0.6460766 0.1939468 0.7143866 -0.6698526 0.1939468 0.7143866 -0.6925839 0.1939468 0.7143866 -0.7143866 0.1939468 0.7143866 -0.7353569 0.1939468 0.7143866 -0.7555758 0.1939468 0.7143866 -0.7751122 0.1939468 0.7143866 -0.7940252 0.1939468 0.7143866 -0.8123661 0.1939468 0.7143866 -0.8301795 0.1939468 0.7143866 -0.8475045 0.1939468 0.7143866 -0.8643761 0.1939468 0.7143866 -0.880825 0.1939468 0.7143866 -0.8968787 0.1939468 0.7143866 -0.9125621 0.1939468 0.7143866 -0.9278974 0.1939468 0.7143866 -0.9429048 0.1939468 0.7143866 -0.9576028 0.1939468 0.7143866 -0.9720079 0.1939468 0.7143866 -0.9861357 0.1939468 0.7143866 -1 0.1939468 0.7143866 -0 0.2773041 0.7143866 -0.1939468 0.2773041 0.7143866 -0.2773041 0.2773041 0.7143866 -0.3384659 0.2773041 0.7143866 -0.3885728 0.2773041 0.7143866 -0.4317928 0.2773041 0.7143866 -0.470214 0.2773041 0.7143866 -0.5050551 0.2773041 0.7143866 -0.5370987 0.2773041 0.7143866 -0.5668815 0.2773041 0.7143866 -0.5947903 0.2773041 0.7143866 -0.6211144 0.2773041 0.7143866 -0.6460766 0.2773041 0.7143866 -0.6698526 0.2773041 0.7143866 -0.6925839 0.2773041 0.7143866 -0.7143866 0.2773041 0.7143866 -0.7353569 0.2773041 0.7143866 -0.7555758 0.2773041 0.7143866 -0.7751122 0.2773041 0.7143866 -0.7940252 0.2773041 0.7143866 -0.8123661 0.2773041 0.7143866 -0.8301795 0.2773041 0.7143866 -0.8475045 0.2773041 0.7143866 -0.8643761 0.2773041 0.7143866 -0.880825 0.2773041 0.7143866 -0.8968787 0.2773041 0.7143866 -0.9125621 0.2773041 0.7143866 -0.9278974 0.2773041 0.7143866 -0.9429048 0.2773041 0.7143866 -0.9576028 0.2773041 0.7143866 -0.9720079 0.2773041 0.7143866 -0.9861357 0.2773041 0.7143866 -1 0.2773041 0.7143866 -0 0.3384659 0.7143866 -0.1939468 0.3384659 0.7143866 -0.2773041 0.3384659 0.7143866 -0.3384659 0.3384659 0.7143866 -0.3885728 0.3384659 0.7143866 -0.4317928 0.3384659 0.7143866 -0.470214 0.3384659 0.7143866 -0.5050551 0.3384659 0.7143866 -0.5370987 0.3384659 0.7143866 -0.5668815 0.3384659 0.7143866 -0.5947903 0.3384659 0.7143866 -0.6211144 0.3384659 0.7143866 -0.6460766 0.3384659 0.7143866 -0.6698526 0.3384659 0.7143866 -0.6925839 0.3384659 0.7143866 -0.7143866 0.3384659 0.7143866 -0.7353569 0.3384659 0.7143866 -0.7555758 0.3384659 0.7143866 -0.7751122 0.3384659 0.7143866 -0.7940252 0.3384659 0.7143866 -0.8123661 0.3384659 0.7143866 -0.8301795 0.3384659 0.7143866 -0.8475045 0.3384659 0.7143866 -0.8643761 0.3384659 0.7143866 -0.880825 0.3384659 0.7143866 -0.8968787 0.3384659 0.7143866 -0.9125621 0.3384659 0.7143866 -0.9278974 0.3384659 0.7143866 -0.9429048 0.3384659 0.7143866 -0.9576028 0.3384659 0.7143866 -0.9720079 0.3384659 0.7143866 -0.9861357 0.3384659 0.7143866 -1 0.3384659 0.7143866 -0 0.3885728 0.7143866 -0.1939468 0.3885728 0.7143866 -0.2773041 0.3885728 0.7143866 -0.3384659 0.3885728 0.7143866 -0.3885728 0.3885728 0.7143866 -0.4317928 0.3885728 0.7143866 -0.470214 0.3885728 0.7143866 -0.5050551 0.3885728 0.7143866 -0.5370987 0.3885728 0.7143866 -0.5668815 0.3885728 0.7143866 -0.5947903 0.3885728 0.7143866 -0.6211144 0.3885728 0.7143866 -0.6460766 0.3885728 0.7143866 -0.6698526 0.3885728 0.7143866 -0.6925839 0.3885728 0.7143866 -0.7143866 0.3885728 0.7143866 -0.7353569 0.3885728 0.7143866 -0.7555758 0.3885728 0.7143866 -0.7751122 0.3885728 0.7143866 -0.7940252 0.3885728 0.7143866 -0.8123661 0.3885728 0.7143866 -0.8301795 0.3885728 0.7143866 -0.8475045 0.3885728 0.7143866 -0.8643761 0.3885728 0.7143866 -0.880825 0.3885728 0.7143866 -0.8968787 0.3885728 0.7143866 -0.9125621 0.3885728 0.7143866 -0.9278974 0.3885728 0.7143866 -0.9429048 0.3885728 0.7143866 -0.9576028 0.3885728 0.7143866 -0.9720079 0.3885728 0.7143866 -0.9861357 0.3885728 0.7143866 -1 0.3885728 0.7143866 -0 0.4317928 0.7143866 -0.1939468 0.4317928 0.7143866 -0.2773041 0.4317928 0.7143866 -0.3384659 0.4317928 0.7143866 -0.3885728 0.4317928 0.7143866 -0.4317928 0.4317928 0.7143866 -0.470214 0.4317928 0.7143866 -0.5050551 0.4317928 0.7143866 -0.5370987 0.4317928 0.7143866 -0.5668815 0.4317928 0.7143866 -0.5947903 0.4317928 0.7143866 -0.6211144 0.4317928 0.7143866 -0.6460766 0.4317928 0.7143866 -0.6698526 0.4317928 0.7143866 -0.6925839 0.4317928 0.7143866 -0.7143866 0.4317928 0.7143866 -0.7353569 0.4317928 0.7143866 -0.7555758 0.4317928 0.7143866 -0.7751122 0.4317928 0.7143866 -0.7940252 0.4317928 0.7143866 -0.8123661 0.4317928 0.7143866 -0.8301795 0.4317928 0.7143866 -0.8475045 0.4317928 0.7143866 -0.8643761 0.4317928 0.7143866 -0.880825 0.4317928 0.7143866 -0.8968787 0.4317928 0.7143866 -0.9125621 0.4317928 0.7143866 -0.9278974 0.4317928 0.7143866 -0.9429048 0.4317928 0.7143866 -0.9576028 0.4317928 0.7143866 -0.9720079 0.4317928 0.7143866 -0.9861357 0.4317928 0.7143866 -1 0.4317928 0.7143866 -0 0.470214 0.7143866 -0.1939468 0.470214 0.7143866 -0.2773041 0.470214 0.7143866 -0.3384659 0.470214 0.7143866 -0.3885728 0.470214 0.7143866 -0.4317928 0.470214 0.7143866 -0.470214 0.470214 0.7143866 -0.5050551 0.470214 0.7143866 -0.5370987 0.470214 0.7143866 -0.5668815 0.470214 0.7143866 -0.5947903 0.470214 0.7143866 -0.6211144 0.470214 0.7143866 -0.6460766 0.470214 0.7143866 -0.6698526 0.470214 0.7143866 -0.6925839 0.470214 0.7143866 -0.7143866 0.470214 0.7143866 -0.7353569 0.470214 0.7143866 -0.7555758 0.470214 0.7143866 -0.7751122 0.470214 0.7143866 -0.7940252 0.470214 0.7143866 -0.8123661 0.470214 0.7143866 -0.8301795 0.470214 0.7143866 -0.8475045 0.470214 0.7143866 -0.8643761 0.470214 0.7143866 -0.880825 0.470214 0.7143866 -0.8968787 0.470214 0.7143866 -0.9125621 0.470214 0.7143866 -0.9278974 0.470214 0.7143866 -0.9429048 0.470214 0.7143866 -0.9576028 0.470214 0.7143866 -0.9720079 0.470214 0.7143866 -0.9861357 0.470214 0.7143866 -1 0.470214 0.7143866 -0 0.5050551 0.7143866 -0.1939468 0.5050551 0.7143866 -0.2773041 0.5050551 0.7143866 -0.3384659 0.5050551 0.7143866 -0.3885728 0.5050551 0.7143866 -0.4317928 0.5050551 0.7143866 -0.470214 0.5050551 0.7143866 -0.5050551 0.5050551 0.7143866 -0.5370987 0.5050551 0.7143866 -0.5668815 0.5050551 0.7143866 -0.5947903 0.5050551 0.7143866 -0.6211144 0.5050551 0.7143866 -0.6460766 0.5050551 0.7143866 -0.6698526 0.5050551 0.7143866 -0.6925839 0.5050551 0.7143866 -0.7143866 0.5050551 0.7143866 -0.7353569 0.5050551 0.7143866 -0.7555758 0.5050551 0.7143866 -0.7751122 0.5050551 0.7143866 -0.7940252 0.5050551 0.7143866 -0.8123661 0.5050551 0.7143866 -0.8301795 0.5050551 0.7143866 -0.8475045 0.5050551 0.7143866 -0.8643761 0.5050551 0.7143866 -0.880825 0.5050551 0.7143866 -0.8968787 0.5050551 0.7143866 -0.9125621 0.5050551 0.7143866 -0.9278974 0.5050551 0.7143866 -0.9429048 0.5050551 0.7143866 -0.9576028 0.5050551 0.7143866 -0.9720079 0.5050551 0.7143866 -0.9861357 0.5050551 0.7143866 -1 0.5050551 0.7143866 -0 0.5370987 0.7143866 -0.1939468 0.5370987 0.7143866 -0.2773041 0.5370987 0.7143866 -0.3384659 0.5370987 0.7143866 -0.3885728 0.5370987 0.7143866 -0.4317928 0.5370987 0.7143866 -0.470214 0.5370987 0.7143866 -0.5050551 0.5370987 0.7143866 -0.5370987 0.5370987 0.7143866 -0.5668815 0.5370987 0.7143866 -0.5947903 0.5370987 0.7143866 -0.6211144 0.5370987 0.7143866 -0.6460766 0.5370987 0.7143866 -0.6698526 0.5370987 0.7143866 -0.6925839 0.5370987 0.7143866 -0.7143866 0.5370987 0.7143866 -0.7353569 0.5370987 0.7143866 -0.7555758 0.5370987 0.7143866 -0.7751122 0.5370987 0.7143866 -0.7940252 0.5370987 0.7143866 -0.8123661 0.5370987 0.7143866 -0.8301795 0.5370987 0.7143866 -0.8475045 0.5370987 0.7143866 -0.8643761 0.5370987 0.7143866 -0.880825 0.5370987 0.7143866 -0.8968787 0.5370987 0.7143866 -0.9125621 0.5370987 0.7143866 -0.9278974 0.5370987 0.7143866 -0.9429048 0.5370987 0.7143866 -0.9576028 0.5370987 0.7143866 -0.9720079 0.5370987 0.7143866 -0.9861357 0.5370987 0.7143866 -1 0.5370987 0.7143866 -0 0.5668815 0.7143866 -0.1939468 0.5668815 0.7143866 -0.2773041 0.5668815 0.7143866 -0.3384659 0.5668815 0.7143866 -0.3885728 0.5668815 0.7143866 -0.4317928 0.5668815 0.7143866 -0.470214 0.5668815 0.7143866 -0.5050551 0.5668815 0.7143866 -0.5370987 0.5668815 0.7143866 -0.5668815 0.5668815 0.7143866 -0.5947903 0.5668815 0.7143866 -0.6211144 0.5668815 0.7143866 -0.6460766 0.5668815 0.7143866 -0.6698526 0.5668815 0.7143866 -0.6925839 0.5668815 0.7143866 -0.7143866 0.5668815 0.7143866 -0.7353569 0.5668815 0.7143866 -0.7555758 0.5668815 0.7143866 -0.7751122 0.5668815 0.7143866 -0.7940252 0.5668815 0.7143866 -0.8123661 0.5668815 0.7143866 -0.8301795 0.5668815 0.7143866 -0.8475045 0.5668815 0.7143866 -0.8643761 0.5668815 0.7143866 -0.880825 0.5668815 0.7143866 -0.8968787 0.5668815 0.7143866 -0.9125621 0.5668815 0.7143866 -0.9278974 0.5668815 0.7143866 -0.9429048 0.5668815 0.7143866 -0.9576028 0.5668815 0.7143866 -0.9720079 0.5668815 0.7143866 -0.9861357 0.5668815 0.7143866 -1 0.5668815 0.7143866 -0 0.5947903 0.7143866 -0.1939468 0.5947903 0.7143866 -0.2773041 0.5947903 0.7143866 -0.3384659 0.5947903 0.7143866 -0.3885728 0.5947903 0.7143866 -0.4317928 0.5947903 0.7143866 -0.470214 0.5947903 0.7143866 -0.5050551 0.5947903 0.7143866 -0.5370987 0.5947903 0.7143866 -0.5668815 0.5947903 0.7143866 -0.5947903 0.5947903 0.7143866 -0.6211144 0.5947903 0.7143866 -0.6460766 0.5947903 0.7143866 -0.6698526 0.5947903 0.7143866 -0.6925839 0.5947903 0.7143866 -0.7143866 0.5947903 0.7143866 -0.7353569 0.5947903 0.7143866 -0.7555758 0.5947903 0.7143866 -0.7751122 0.5947903 0.7143866 -0.7940252 0.5947903 0.7143866 -0.8123661 0.5947903 0.7143866 -0.8301795 0.5947903 0.7143866 -0.8475045 0.5947903 0.7143866 -0.8643761 0.5947903 0.7143866 -0.880825 0.5947903 0.7143866 -0.8968787 0.5947903 0.7143866 -0.9125621 0.5947903 0.7143866 -0.9278974 0.5947903 0.7143866 -0.9429048 0.5947903 0.7143866 -0.9576028 0.5947903 0.7143866 -0.9720079 0.5947903 0.7143866 -0.9861357 0.5947903 0.7143866 -1 0.5947903 0.7143866 -0 0.6211144 0.7143866 -0.1939468 0.6211144 0.7143866 -0.2773041 0.6211144 0.7143866 -0.3384659 0.6211144 0.7143866 -0.3885728 0.6211144 0.7143866 -0.4317928 0.6211144 0.7143866 -0.470214 0.6211144 0.7143866 -0.5050551 0.6211144 0.7143866 -0.5370987 0.6211144 0.7143866 -0.5668815 0.6211144 0.7143866 -0.5947903 0.6211144 0.7143866 -0.6211144 0.6211144 0.7143866 -0.6460766 0.6211144 0.7143866 -0.6698526 0.6211144 0.7143866 -0.6925839 0.6211144 0.7143866 -0.7143866 0.6211144 0.7143866 -0.7353569 0.6211144 0.7143866 -0.7555758 0.6211144 0.7143866 -0.7751122 0.6211144 0.7143866 -0.7940252 0.6211144 0.7143866 -0.8123661 0.6211144 0.7143866 -0.8301795 0.6211144 0.7143866 -0.8475045 0.6211144 0.7143866 -0.8643761 0.6211144 0.7143866 -0.880825 0.6211144 0.7143866 -0.8968787 0.6211144 0.7143866 -0.9125621 0.6211144 0.7143866 -0.9278974 0.6211144 0.7143866 -0.9429048 0.6211144 0.7143866 -0.9576028 0.6211144 0.7143866 -0.9720079 0.6211144 0.7143866 -0.9861357 0.6211144 0.7143866 -1 0.6211144 0.7143866 -0 0.6460766 0.7143866 -0.1939468 0.6460766 0.7143866 -0.2773041 0.6460766 0.7143866 -0.3384659 0.6460766 0.7143866 -0.3885728 0.6460766 0.7143866 -0.4317928 0.6460766 0.7143866 -0.470214 0.6460766 0.7143866 -0.5050551 0.6460766 0.7143866 -0.5370987 0.6460766 0.7143866 -0.5668815 0.6460766 0.7143866 -0.5947903 0.6460766 0.7143866 -0.6211144 0.6460766 0.7143866 -0.6460766 0.6460766 0.7143866 -0.6698526 0.6460766 0.7143866 -0.6925839 0.6460766 0.7143866 -0.7143866 0.6460766 0.7143866 -0.7353569 0.6460766 0.7143866 -0.7555758 0.6460766 0.7143866 -0.7751122 0.6460766 0.7143866 -0.7940252 0.6460766 0.7143866 -0.8123661 0.6460766 0.7143866 -0.8301795 0.6460766 0.7143866 -0.8475045 0.6460766 0.7143866 -0.8643761 0.6460766 0.7143866 -0.880825 0.6460766 0.7143866 -0.8968787 0.6460766 0.7143866 -0.9125621 0.6460766 0.7143866 -0.9278974 0.6460766 0.7143866 -0.9429048 0.6460766 0.7143866 -0.9576028 0.6460766 0.7143866 -0.9720079 0.6460766 0.7143866 -0.9861357 0.6460766 0.7143866 -1 0.6460766 0.7143866 -0 0.6698526 0.7143866 -0.1939468 0.6698526 0.7143866 -0.2773041 0.6698526 0.7143866 -0.3384659 0.6698526 0.7143866 -0.3885728 0.6698526 0.7143866 -0.4317928 0.6698526 0.7143866 -0.470214 0.6698526 0.7143866 -0.5050551 0.6698526 0.7143866 -0.5370987 0.6698526 0.7143866 -0.5668815 0.6698526 0.7143866 -0.5947903 0.6698526 0.7143866 -0.6211144 0.6698526 0.7143866 -0.6460766 0.6698526 0.7143866 -0.6698526 0.6698526 0.7143866 -0.6925839 0.6698526 0.7143866 -0.7143866 0.6698526 0.7143866 -0.7353569 0.6698526 0.7143866 -0.7555758 0.6698526 0.7143866 -0.7751122 0.6698526 0.7143866 -0.7940252 0.6698526 0.7143866 -0.8123661 0.6698526 0.7143866 -0.8301795 0.6698526 0.7143866 -0.8475045 0.6698526 0.7143866 -0.8643761 0.6698526 0.7143866 -0.880825 0.6698526 0.7143866 -0.8968787 0.6698526 0.7143866 -0.9125621 0.6698526 0.7143866 -0.9278974 0.6698526 0.7143866 -0.9429048 0.6698526 0.7143866 -0.9576028 0.6698526 0.7143866 -0.9720079 0.6698526 0.7143866 -0.9861357 0.6698526 0.7143866 -1 0.6698526 0.7143866 -0 0.6925839 0.7143866 -0.1939468 0.6925839 0.7143866 -0.2773041 0.6925839 0.7143866 -0.3384659 0.6925839 0.7143866 -0.3885728 0.6925839 0.7143866 -0.4317928 0.6925839 0.7143866 -0.470214 0.6925839 0.7143866 -0.5050551 0.6925839 0.7143866 -0.5370987 0.6925839 0.7143866 -0.5668815 0.6925839 0.7143866 -0.5947903 0.6925839 0.7143866 -0.6211144 0.6925839 0.7143866 -0.6460766 0.6925839 0.7143866 -0.6698526 0.6925839 0.7143866 -0.6925839 0.6925839 0.7143866 -0.7143866 0.6925839 0.7143866 -0.7353569 0.6925839 0.7143866 -0.7555758 0.6925839 0.7143866 -0.7751122 0.6925839 0.7143866 -0.7940252 0.6925839 0.7143866 -0.8123661 0.6925839 0.7143866 -0.8301795 0.6925839 0.7143866 -0.8475045 0.6925839 0.7143866 -0.8643761 0.6925839 0.7143866 -0.880825 0.6925839 0.7143866 -0.8968787 0.6925839 0.7143866 -0.9125621 0.6925839 0.7143866 -0.9278974 0.6925839 0.7143866 -0.9429048 0.6925839 0.7143866 -0.9576028 0.6925839 0.7143866 -0.9720079 0.6925839 0.7143866 -0.9861357 0.6925839 0.7143866 -1 0.6925839 0.7143866 -0 0.7143866 0.7143866 -0.1939468 0.7143866 0.7143866 -0.2773041 0.7143866 0.7143866 -0.3384659 0.7143866 0.7143866 -0.3885728 0.7143866 0.7143866 -0.4317928 0.7143866 0.7143866 -0.470214 0.7143866 0.7143866 -0.5050551 0.7143866 0.7143866 -0.5370987 0.7143866 0.7143866 -0.5668815 0.7143866 0.7143866 -0.5947903 0.7143866 0.7143866 -0.6211144 0.7143866 0.7143866 -0.6460766 0.7143866 0.7143866 -0.6698526 0.7143866 0.7143866 -0.6925839 0.7143866 0.7143866 -0.7143866 0.7143866 0.7143866 -0.7353569 0.7143866 0.7143866 -0.7555758 0.7143866 0.7143866 -0.7751122 0.7143866 0.7143866 -0.7940252 0.7143866 0.7143866 -0.8123661 0.7143866 0.7143866 -0.8301795 0.7143866 0.7143866 -0.8475045 0.7143866 0.7143866 -0.8643761 0.7143866 0.7143866 -0.880825 0.7143866 0.7143866 -0.8968787 0.7143866 0.7143866 -0.9125621 0.7143866 0.7143866 -0.9278974 0.7143866 0.7143866 -0.9429048 0.7143866 0.7143866 -0.9576028 0.7143866 0.7143866 -0.9720079 0.7143866 0.7143866 -0.9861357 0.7143866 0.7143866 -1 0.7143866 0.7143866 -0 0.7353569 0.7143866 -0.1939468 0.7353569 0.7143866 -0.2773041 0.7353569 0.7143866 -0.3384659 0.7353569 0.7143866 -0.3885728 0.7353569 0.7143866 -0.4317928 0.7353569 0.7143866 -0.470214 0.7353569 0.7143866 -0.5050551 0.7353569 0.7143866 -0.5370987 0.7353569 0.7143866 -0.5668815 0.7353569 0.7143866 -0.5947903 0.7353569 0.7143866 -0.6211144 0.7353569 0.7143866 -0.6460766 0.7353569 0.7143866 -0.6698526 0.7353569 0.7143866 -0.6925839 0.7353569 0.7143866 -0.7143866 0.7353569 0.7143866 -0.7353569 0.7353569 0.7143866 -0.7555758 0.7353569 0.7143866 -0.7751122 0.7353569 0.7143866 -0.7940252 0.7353569 0.7143866 -0.8123661 0.7353569 0.7143866 -0.8301795 0.7353569 0.7143866 -0.8475045 0.7353569 0.7143866 -0.8643761 0.7353569 0.7143866 -0.880825 0.7353569 0.7143866 -0.8968787 0.7353569 0.7143866 -0.9125621 0.7353569 0.7143866 -0.9278974 0.7353569 0.7143866 -0.9429048 0.7353569 0.7143866 -0.9576028 0.7353569 0.7143866 -0.9720079 0.7353569 0.7143866 -0.9861357 0.7353569 0.7143866 -1 0.7353569 0.7143866 -0 0.7555758 0.7143866 -0.1939468 0.7555758 0.7143866 -0.2773041 0.7555758 0.7143866 -0.3384659 0.7555758 0.7143866 -0.3885728 0.7555758 0.7143866 -0.4317928 0.7555758 0.7143866 -0.470214 0.7555758 0.7143866 -0.5050551 0.7555758 0.7143866 -0.5370987 0.7555758 0.7143866 -0.5668815 0.7555758 0.7143866 -0.5947903 0.7555758 0.7143866 -0.6211144 0.7555758 0.7143866 -0.6460766 0.7555758 0.7143866 -0.6698526 0.7555758 0.7143866 -0.6925839 0.7555758 0.7143866 -0.7143866 0.7555758 0.7143866 -0.7353569 0.7555758 0.7143866 -0.7555758 0.7555758 0.7143866 -0.7751122 0.7555758 0.7143866 -0.7940252 0.7555758 0.7143866 -0.8123661 0.7555758 0.7143866 -0.8301795 0.7555758 0.7143866 -0.8475045 0.7555758 0.7143866 -0.8643761 0.7555758 0.7143866 -0.880825 0.7555758 0.7143866 -0.8968787 0.7555758 0.7143866 -0.9125621 0.7555758 0.7143866 -0.9278974 0.7555758 0.7143866 -0.9429048 0.7555758 0.7143866 -0.9576028 0.7555758 0.7143866 -0.9720079 0.7555758 0.7143866 -0.9861357 0.7555758 0.7143866 -1 0.7555758 0.7143866 -0 0.7751122 0.7143866 -0.1939468 0.7751122 0.7143866 -0.2773041 0.7751122 0.7143866 -0.3384659 0.7751122 0.7143866 -0.3885728 0.7751122 0.7143866 -0.4317928 0.7751122 0.7143866 -0.470214 0.7751122 0.7143866 -0.5050551 0.7751122 0.7143866 -0.5370987 0.7751122 0.7143866 -0.5668815 0.7751122 0.7143866 -0.5947903 0.7751122 0.7143866 -0.6211144 0.7751122 0.7143866 -0.6460766 0.7751122 0.7143866 -0.6698526 0.7751122 0.7143866 -0.6925839 0.7751122 0.7143866 -0.7143866 0.7751122 0.7143866 -0.7353569 0.7751122 0.7143866 -0.7555758 0.7751122 0.7143866 -0.7751122 0.7751122 0.7143866 -0.7940252 0.7751122 0.7143866 -0.8123661 0.7751122 0.7143866 -0.8301795 0.7751122 0.7143866 -0.8475045 0.7751122 0.7143866 -0.8643761 0.7751122 0.7143866 -0.880825 0.7751122 0.7143866 -0.8968787 0.7751122 0.7143866 -0.9125621 0.7751122 0.7143866 -0.9278974 0.7751122 0.7143866 -0.9429048 0.7751122 0.7143866 -0.9576028 0.7751122 0.7143866 -0.9720079 0.7751122 0.7143866 -0.9861357 0.7751122 0.7143866 -1 0.7751122 0.7143866 -0 0.7940252 0.7143866 -0.1939468 0.7940252 0.7143866 -0.2773041 0.7940252 0.7143866 -0.3384659 0.7940252 0.7143866 -0.3885728 0.7940252 0.7143866 -0.4317928 0.7940252 0.7143866 -0.470214 0.7940252 0.7143866 -0.5050551 0.7940252 0.7143866 -0.5370987 0.7940252 0.7143866 -0.5668815 0.7940252 0.7143866 -0.5947903 0.7940252 0.7143866 -0.6211144 0.7940252 0.7143866 -0.6460766 0.7940252 0.7143866 -0.6698526 0.7940252 0.7143866 -0.6925839 0.7940252 0.7143866 -0.7143866 0.7940252 0.7143866 -0.7353569 0.7940252 0.7143866 -0.7555758 0.7940252 0.7143866 -0.7751122 0.7940252 0.7143866 -0.7940252 0.7940252 0.7143866 -0.8123661 0.7940252 0.7143866 -0.8301795 0.7940252 0.7143866 -0.8475045 0.7940252 0.7143866 -0.8643761 0.7940252 0.7143866 -0.880825 0.7940252 0.7143866 -0.8968787 0.7940252 0.7143866 -0.9125621 0.7940252 0.7143866 -0.9278974 0.7940252 0.7143866 -0.9429048 0.7940252 0.7143866 -0.9576028 0.7940252 0.7143866 -0.9720079 0.7940252 0.7143866 -0.9861357 0.7940252 0.7143866 -1 0.7940252 0.7143866 -0 0.8123661 0.7143866 -0.1939468 0.8123661 0.7143866 -0.2773041 0.8123661 0.7143866 -0.3384659 0.8123661 0.7143866 -0.3885728 0.8123661 0.7143866 -0.4317928 0.8123661 0.7143866 -0.470214 0.8123661 0.7143866 -0.5050551 0.8123661 0.7143866 -0.5370987 0.8123661 0.7143866 -0.5668815 0.8123661 0.7143866 -0.5947903 0.8123661 0.7143866 -0.6211144 0.8123661 0.7143866 -0.6460766 0.8123661 0.7143866 -0.6698526 0.8123661 0.7143866 -0.6925839 0.8123661 0.7143866 -0.7143866 0.8123661 0.7143866 -0.7353569 0.8123661 0.7143866 -0.7555758 0.8123661 0.7143866 -0.7751122 0.8123661 0.7143866 -0.7940252 0.8123661 0.7143866 -0.8123661 0.8123661 0.7143866 -0.8301795 0.8123661 0.7143866 -0.8475045 0.8123661 0.7143866 -0.8643761 0.8123661 0.7143866 -0.880825 0.8123661 0.7143866 -0.8968787 0.8123661 0.7143866 -0.9125621 0.8123661 0.7143866 -0.9278974 0.8123661 0.7143866 -0.9429048 0.8123661 0.7143866 -0.9576028 0.8123661 0.7143866 -0.9720079 0.8123661 0.7143866 -0.9861357 0.8123661 0.7143866 -1 0.8123661 0.7143866 -0 0.8301795 0.7143866 -0.1939468 0.8301795 0.7143866 -0.2773041 0.8301795 0.7143866 -0.3384659 0.8301795 0.7143866 -0.3885728 0.8301795 0.7143866 -0.4317928 0.8301795 0.7143866 -0.470214 0.8301795 0.7143866 -0.5050551 0.8301795 0.7143866 -0.5370987 0.8301795 0.7143866 -0.5668815 0.8301795 0.7143866 -0.5947903 0.8301795 0.7143866 -0.6211144 0.8301795 0.7143866 -0.6460766 0.8301795 0.7143866 -0.6698526 0.8301795 0.7143866 -0.6925839 0.8301795 0.7143866 -0.7143866 0.8301795 0.7143866 -0.7353569 0.8301795 0.7143866 -0.7555758 0.8301795 0.7143866 -0.7751122 0.8301795 0.7143866 -0.7940252 0.8301795 0.7143866 -0.8123661 0.8301795 0.7143866 -0.8301795 0.8301795 0.7143866 -0.8475045 0.8301795 0.7143866 -0.8643761 0.8301795 0.7143866 -0.880825 0.8301795 0.7143866 -0.8968787 0.8301795 0.7143866 -0.9125621 0.8301795 0.7143866 -0.9278974 0.8301795 0.7143866 -0.9429048 0.8301795 0.7143866 -0.9576028 0.8301795 0.7143866 -0.9720079 0.8301795 0.7143866 -0.9861357 0.8301795 0.7143866 -1 0.8301795 0.7143866 -0 0.8475045 0.7143866 -0.1939468 0.8475045 0.7143866 -0.2773041 0.8475045 0.7143866 -0.3384659 0.8475045 0.7143866 -0.3885728 0.8475045 0.7143866 -0.4317928 0.8475045 0.7143866 -0.470214 0.8475045 0.7143866 -0.5050551 0.8475045 0.7143866 -0.5370987 0.8475045 0.7143866 -0.5668815 0.8475045 0.7143866 -0.5947903 0.8475045 0.7143866 -0.6211144 0.8475045 0.7143866 -0.6460766 0.8475045 0.7143866 -0.6698526 0.8475045 0.7143866 -0.6925839 0.8475045 0.7143866 -0.7143866 0.8475045 0.7143866 -0.7353569 0.8475045 0.7143866 -0.7555758 0.8475045 0.7143866 -0.7751122 0.8475045 0.7143866 -0.7940252 0.8475045 0.7143866 -0.8123661 0.8475045 0.7143866 -0.8301795 0.8475045 0.7143866 -0.8475045 0.8475045 0.7143866 -0.8643761 0.8475045 0.7143866 -0.880825 0.8475045 0.7143866 -0.8968787 0.8475045 0.7143866 -0.9125621 0.8475045 0.7143866 -0.9278974 0.8475045 0.7143866 -0.9429048 0.8475045 0.7143866 -0.9576028 0.8475045 0.7143866 -0.9720079 0.8475045 0.7143866 -0.9861357 0.8475045 0.7143866 -1 0.8475045 0.7143866 -0 0.8643761 0.7143866 -0.1939468 0.8643761 0.7143866 -0.2773041 0.8643761 0.7143866 -0.3384659 0.8643761 0.7143866 -0.3885728 0.8643761 0.7143866 -0.4317928 0.8643761 0.7143866 -0.470214 0.8643761 0.7143866 -0.5050551 0.8643761 0.7143866 -0.5370987 0.8643761 0.7143866 -0.5668815 0.8643761 0.7143866 -0.5947903 0.8643761 0.7143866 -0.6211144 0.8643761 0.7143866 -0.6460766 0.8643761 0.7143866 -0.6698526 0.8643761 0.7143866 -0.6925839 0.8643761 0.7143866 -0.7143866 0.8643761 0.7143866 -0.7353569 0.8643761 0.7143866 -0.7555758 0.8643761 0.7143866 -0.7751122 0.8643761 0.7143866 -0.7940252 0.8643761 0.7143866 -0.8123661 0.8643761 0.7143866 -0.8301795 0.8643761 0.7143866 -0.8475045 0.8643761 0.7143866 -0.8643761 0.8643761 0.7143866 -0.880825 0.8643761 0.7143866 -0.8968787 0.8643761 0.7143866 -0.9125621 0.8643761 0.7143866 -0.9278974 0.8643761 0.7143866 -0.9429048 0.8643761 0.7143866 -0.9576028 0.8643761 0.7143866 -0.9720079 0.8643761 0.7143866 -0.9861357 0.8643761 0.7143866 -1 0.8643761 0.7143866 -0 0.880825 0.7143866 -0.1939468 0.880825 0.7143866 -0.2773041 0.880825 0.7143866 -0.3384659 0.880825 0.7143866 -0.3885728 0.880825 0.7143866 -0.4317928 0.880825 0.7143866 -0.470214 0.880825 0.7143866 -0.5050551 0.880825 0.7143866 -0.5370987 0.880825 0.7143866 -0.5668815 0.880825 0.7143866 -0.5947903 0.880825 0.7143866 -0.6211144 0.880825 0.7143866 -0.6460766 0.880825 0.7143866 -0.6698526 0.880825 0.7143866 -0.6925839 0.880825 0.7143866 -0.7143866 0.880825 0.7143866 -0.7353569 0.880825 0.7143866 -0.7555758 0.880825 0.7143866 -0.7751122 0.880825 0.7143866 -0.7940252 0.880825 0.7143866 -0.8123661 0.880825 0.7143866 -0.8301795 0.880825 0.7143866 -0.8475045 0.880825 0.7143866 -0.8643761 0.880825 0.7143866 -0.880825 0.880825 0.7143866 -0.8968787 0.880825 0.7143866 -0.9125621 0.880825 0.7143866 -0.9278974 0.880825 0.7143866 -0.9429048 0.880825 0.7143866 -0.9576028 0.880825 0.7143866 -0.9720079 0.880825 0.7143866 -0.9861357 0.880825 0.7143866 -1 0.880825 0.7143866 -0 0.8968787 0.7143866 -0.1939468 0.8968787 0.7143866 -0.2773041 0.8968787 0.7143866 -0.3384659 0.8968787 0.7143866 -0.3885728 0.8968787 0.7143866 -0.4317928 0.8968787 0.7143866 -0.470214 0.8968787 0.7143866 -0.5050551 0.8968787 0.7143866 -0.5370987 0.8968787 0.7143866 -0.5668815 0.8968787 0.7143866 -0.5947903 0.8968787 0.7143866 -0.6211144 0.8968787 0.7143866 -0.6460766 0.8968787 0.7143866 -0.6698526 0.8968787 0.7143866 -0.6925839 0.8968787 0.7143866 -0.7143866 0.8968787 0.7143866 -0.7353569 0.8968787 0.7143866 -0.7555758 0.8968787 0.7143866 -0.7751122 0.8968787 0.7143866 -0.7940252 0.8968787 0.7143866 -0.8123661 0.8968787 0.7143866 -0.8301795 0.8968787 0.7143866 -0.8475045 0.8968787 0.7143866 -0.8643761 0.8968787 0.7143866 -0.880825 0.8968787 0.7143866 -0.8968787 0.8968787 0.7143866 -0.9125621 0.8968787 0.7143866 -0.9278974 0.8968787 0.7143866 -0.9429048 0.8968787 0.7143866 -0.9576028 0.8968787 0.7143866 -0.9720079 0.8968787 0.7143866 -0.9861357 0.8968787 0.7143866 -1 0.8968787 0.7143866 -0 0.9125621 0.7143866 -0.1939468 0.9125621 0.7143866 -0.2773041 0.9125621 0.7143866 -0.3384659 0.9125621 0.7143866 -0.3885728 0.9125621 0.7143866 -0.4317928 0.9125621 0.7143866 -0.470214 0.9125621 0.7143866 -0.5050551 0.9125621 0.7143866 -0.5370987 0.9125621 0.7143866 -0.5668815 0.9125621 0.7143866 -0.5947903 0.9125621 0.7143866 -0.6211144 0.9125621 0.7143866 -0.6460766 0.9125621 0.7143866 -0.6698526 0.9125621 0.7143866 -0.6925839 0.9125621 0.7143866 -0.7143866 0.9125621 0.7143866 -0.7353569 0.9125621 0.7143866 -0.7555758 0.9125621 0.7143866 -0.7751122 0.9125621 0.7143866 -0.7940252 0.9125621 0.7143866 -0.8123661 0.9125621 0.7143866 -0.8301795 0.9125621 0.7143866 -0.8475045 0.9125621 0.7143866 -0.8643761 0.9125621 0.7143866 -0.880825 0.9125621 0.7143866 -0.8968787 0.9125621 0.7143866 -0.9125621 0.9125621 0.7143866 -0.9278974 0.9125621 0.7143866 -0.9429048 0.9125621 0.7143866 -0.9576028 0.9125621 0.7143866 -0.9720079 0.9125621 0.7143866 -0.9861357 0.9125621 0.7143866 -1 0.9125621 0.7143866 -0 0.9278974 0.7143866 -0.1939468 0.9278974 0.7143866 -0.2773041 0.9278974 0.7143866 -0.3384659 0.9278974 0.7143866 -0.3885728 0.9278974 0.7143866 -0.4317928 0.9278974 0.7143866 -0.470214 0.9278974 0.7143866 -0.5050551 0.9278974 0.7143866 -0.5370987 0.9278974 0.7143866 -0.5668815 0.9278974 0.7143866 -0.5947903 0.9278974 0.7143866 -0.6211144 0.9278974 0.7143866 -0.6460766 0.9278974 0.7143866 -0.6698526 0.9278974 0.7143866 -0.6925839 0.9278974 0.7143866 -0.7143866 0.9278974 0.7143866 -0.7353569 0.9278974 0.7143866 -0.7555758 0.9278974 0.7143866 -0.7751122 0.9278974 0.7143866 -0.7940252 0.9278974 0.7143866 -0.8123661 0.9278974 0.7143866 -0.8301795 0.9278974 0.7143866 -0.8475045 0.9278974 0.7143866 -0.8643761 0.9278974 0.7143866 -0.880825 0.9278974 0.7143866 -0.8968787 0.9278974 0.7143866 -0.9125621 0.9278974 0.7143866 -0.9278974 0.9278974 0.7143866 -0.9429048 0.9278974 0.7143866 -0.9576028 0.9278974 0.7143866 -0.9720079 0.9278974 0.7143866 -0.9861357 0.9278974 0.7143866 -1 0.9278974 0.7143866 -0 0.9429048 0.7143866 -0.1939468 0.9429048 0.7143866 -0.2773041 0.9429048 0.7143866 -0.3384659 0.9429048 0.7143866 -0.3885728 0.9429048 0.7143866 -0.4317928 0.9429048 0.7143866 -0.470214 0.9429048 0.7143866 -0.5050551 0.9429048 0.7143866 -0.5370987 0.9429048 0.7143866 -0.5668815 0.9429048 0.7143866 -0.5947903 0.9429048 0.7143866 -0.6211144 0.9429048 0.7143866 -0.6460766 0.9429048 0.7143866 -0.6698526 0.9429048 0.7143866 -0.6925839 0.9429048 0.7143866 -0.7143866 0.9429048 0.7143866 -0.7353569 0.9429048 0.7143866 -0.7555758 0.9429048 0.7143866 -0.7751122 0.9429048 0.7143866 -0.7940252 0.9429048 0.7143866 -0.8123661 0.9429048 0.7143866 -0.8301795 0.9429048 0.7143866 -0.8475045 0.9429048 0.7143866 -0.8643761 0.9429048 0.7143866 -0.880825 0.9429048 0.7143866 -0.8968787 0.9429048 0.7143866 -0.9125621 0.9429048 0.7143866 -0.9278974 0.9429048 0.7143866 -0.9429048 0.9429048 0.7143866 -0.9576028 0.9429048 0.7143866 -0.9720079 0.9429048 0.7143866 -0.9861357 0.9429048 0.7143866 -1 0.9429048 0.7143866 -0 0.9576028 0.7143866 -0.1939468 0.9576028 0.7143866 -0.2773041 0.9576028 0.7143866 -0.3384659 0.9576028 0.7143866 -0.3885728 0.9576028 0.7143866 -0.4317928 0.9576028 0.7143866 -0.470214 0.9576028 0.7143866 -0.5050551 0.9576028 0.7143866 -0.5370987 0.9576028 0.7143866 -0.5668815 0.9576028 0.7143866 -0.5947903 0.9576028 0.7143866 -0.6211144 0.9576028 0.7143866 -0.6460766 0.9576028 0.7143866 -0.6698526 0.9576028 0.7143866 -0.6925839 0.9576028 0.7143866 -0.7143866 0.9576028 0.7143866 -0.7353569 0.9576028 0.7143866 -0.7555758 0.9576028 0.7143866 -0.7751122 0.9576028 0.7143866 -0.7940252 0.9576028 0.7143866 -0.8123661 0.9576028 0.7143866 -0.8301795 0.9576028 0.7143866 -0.8475045 0.9576028 0.7143866 -0.8643761 0.9576028 0.7143866 -0.880825 0.9576028 0.7143866 -0.8968787 0.9576028 0.7143866 -0.9125621 0.9576028 0.7143866 -0.9278974 0.9576028 0.7143866 -0.9429048 0.9576028 0.7143866 -0.9576028 0.9576028 0.7143866 -0.9720079 0.9576028 0.7143866 -0.9861357 0.9576028 0.7143866 -1 0.9576028 0.7143866 -0 0.9720079 0.7143866 -0.1939468 0.9720079 0.7143866 -0.2773041 0.9720079 0.7143866 -0.3384659 0.9720079 0.7143866 -0.3885728 0.9720079 0.7143866 -0.4317928 0.9720079 0.7143866 -0.470214 0.9720079 0.7143866 -0.5050551 0.9720079 0.7143866 -0.5370987 0.9720079 0.7143866 -0.5668815 0.9720079 0.7143866 -0.5947903 0.9720079 0.7143866 -0.6211144 0.9720079 0.7143866 -0.6460766 0.9720079 0.7143866 -0.6698526 0.9720079 0.7143866 -0.6925839 0.9720079 0.7143866 -0.7143866 0.9720079 0.7143866 -0.7353569 0.9720079 0.7143866 -0.7555758 0.9720079 0.7143866 -0.7751122 0.9720079 0.7143866 -0.7940252 0.9720079 0.7143866 -0.8123661 0.9720079 0.7143866 -0.8301795 0.9720079 0.7143866 -0.8475045 0.9720079 0.7143866 -0.8643761 0.9720079 0.7143866 -0.880825 0.9720079 0.7143866 -0.8968787 0.9720079 0.7143866 -0.9125621 0.9720079 0.7143866 -0.9278974 0.9720079 0.7143866 -0.9429048 0.9720079 0.7143866 -0.9576028 0.9720079 0.7143866 -0.9720079 0.9720079 0.7143866 -0.9861357 0.9720079 0.7143866 -1 0.9720079 0.7143866 -0 0.9861357 0.7143866 -0.1939468 0.9861357 0.7143866 -0.2773041 0.9861357 0.7143866 -0.3384659 0.9861357 0.7143866 -0.3885728 0.9861357 0.7143866 -0.4317928 0.9861357 0.7143866 -0.470214 0.9861357 0.7143866 -0.5050551 0.9861357 0.7143866 -0.5370987 0.9861357 0.7143866 -0.5668815 0.9861357 0.7143866 -0.5947903 0.9861357 0.7143866 -0.6211144 0.9861357 0.7143866 -0.6460766 0.9861357 0.7143866 -0.6698526 0.9861357 0.7143866 -0.6925839 0.9861357 0.7143866 -0.7143866 0.9861357 0.7143866 -0.7353569 0.9861357 0.7143866 -0.7555758 0.9861357 0.7143866 -0.7751122 0.9861357 0.7143866 -0.7940252 0.9861357 0.7143866 -0.8123661 0.9861357 0.7143866 -0.8301795 0.9861357 0.7143866 -0.8475045 0.9861357 0.7143866 -0.8643761 0.9861357 0.7143866 -0.880825 0.9861357 0.7143866 -0.8968787 0.9861357 0.7143866 -0.9125621 0.9861357 0.7143866 -0.9278974 0.9861357 0.7143866 -0.9429048 0.9861357 0.7143866 -0.9576028 0.9861357 0.7143866 -0.9720079 0.9861357 0.7143866 -0.9861357 0.9861357 0.7143866 -1 0.9861357 0.7143866 -0 1 0.7143866 -0.1939468 1 0.7143866 -0.2773041 1 0.7143866 -0.3384659 1 0.7143866 -0.3885728 1 0.7143866 -0.4317928 1 0.7143866 -0.470214 1 0.7143866 -0.5050551 1 0.7143866 -0.5370987 1 0.7143866 -0.5668815 1 0.7143866 -0.5947903 1 0.7143866 -0.6211144 1 0.7143866 -0.6460766 1 0.7143866 -0.6698526 1 0.7143866 -0.6925839 1 0.7143866 -0.7143866 1 0.7143866 -0.7353569 1 0.7143866 -0.7555758 1 0.7143866 -0.7751122 1 0.7143866 -0.7940252 1 0.7143866 -0.8123661 1 0.7143866 -0.8301795 1 0.7143866 -0.8475045 1 0.7143866 -0.8643761 1 0.7143866 -0.880825 1 0.7143866 -0.8968787 1 0.7143866 -0.9125621 1 0.7143866 -0.9278974 1 0.7143866 -0.9429048 1 0.7143866 -0.9576028 1 0.7143866 -0.9720079 1 0.7143866 -0.9861357 1 0.7143866 -1 1 0.7143866 -0 0 0.7353569 -0.1939468 0 0.7353569 -0.2773041 0 0.7353569 -0.3384659 0 0.7353569 -0.3885728 0 0.7353569 -0.4317928 0 0.7353569 -0.470214 0 0.7353569 -0.5050551 0 0.7353569 -0.5370987 0 0.7353569 -0.5668815 0 0.7353569 -0.5947903 0 0.7353569 -0.6211144 0 0.7353569 -0.6460766 0 0.7353569 -0.6698526 0 0.7353569 -0.6925839 0 0.7353569 -0.7143866 0 0.7353569 -0.7353569 0 0.7353569 -0.7555758 0 0.7353569 -0.7751122 0 0.7353569 -0.7940252 0 0.7353569 -0.8123661 0 0.7353569 -0.8301795 0 0.7353569 -0.8475045 0 0.7353569 -0.8643761 0 0.7353569 -0.880825 0 0.7353569 -0.8968787 0 0.7353569 -0.9125621 0 0.7353569 -0.9278974 0 0.7353569 -0.9429048 0 0.7353569 -0.9576028 0 0.7353569 -0.9720079 0 0.7353569 -0.9861357 0 0.7353569 -1 0 0.7353569 -0 0.1939468 0.7353569 -0.1939468 0.1939468 0.7353569 -0.2773041 0.1939468 0.7353569 -0.3384659 0.1939468 0.7353569 -0.3885728 0.1939468 0.7353569 -0.4317928 0.1939468 0.7353569 -0.470214 0.1939468 0.7353569 -0.5050551 0.1939468 0.7353569 -0.5370987 0.1939468 0.7353569 -0.5668815 0.1939468 0.7353569 -0.5947903 0.1939468 0.7353569 -0.6211144 0.1939468 0.7353569 -0.6460766 0.1939468 0.7353569 -0.6698526 0.1939468 0.7353569 -0.6925839 0.1939468 0.7353569 -0.7143866 0.1939468 0.7353569 -0.7353569 0.1939468 0.7353569 -0.7555758 0.1939468 0.7353569 -0.7751122 0.1939468 0.7353569 -0.7940252 0.1939468 0.7353569 -0.8123661 0.1939468 0.7353569 -0.8301795 0.1939468 0.7353569 -0.8475045 0.1939468 0.7353569 -0.8643761 0.1939468 0.7353569 -0.880825 0.1939468 0.7353569 -0.8968787 0.1939468 0.7353569 -0.9125621 0.1939468 0.7353569 -0.9278974 0.1939468 0.7353569 -0.9429048 0.1939468 0.7353569 -0.9576028 0.1939468 0.7353569 -0.9720079 0.1939468 0.7353569 -0.9861357 0.1939468 0.7353569 -1 0.1939468 0.7353569 -0 0.2773041 0.7353569 -0.1939468 0.2773041 0.7353569 -0.2773041 0.2773041 0.7353569 -0.3384659 0.2773041 0.7353569 -0.3885728 0.2773041 0.7353569 -0.4317928 0.2773041 0.7353569 -0.470214 0.2773041 0.7353569 -0.5050551 0.2773041 0.7353569 -0.5370987 0.2773041 0.7353569 -0.5668815 0.2773041 0.7353569 -0.5947903 0.2773041 0.7353569 -0.6211144 0.2773041 0.7353569 -0.6460766 0.2773041 0.7353569 -0.6698526 0.2773041 0.7353569 -0.6925839 0.2773041 0.7353569 -0.7143866 0.2773041 0.7353569 -0.7353569 0.2773041 0.7353569 -0.7555758 0.2773041 0.7353569 -0.7751122 0.2773041 0.7353569 -0.7940252 0.2773041 0.7353569 -0.8123661 0.2773041 0.7353569 -0.8301795 0.2773041 0.7353569 -0.8475045 0.2773041 0.7353569 -0.8643761 0.2773041 0.7353569 -0.880825 0.2773041 0.7353569 -0.8968787 0.2773041 0.7353569 -0.9125621 0.2773041 0.7353569 -0.9278974 0.2773041 0.7353569 -0.9429048 0.2773041 0.7353569 -0.9576028 0.2773041 0.7353569 -0.9720079 0.2773041 0.7353569 -0.9861357 0.2773041 0.7353569 -1 0.2773041 0.7353569 -0 0.3384659 0.7353569 -0.1939468 0.3384659 0.7353569 -0.2773041 0.3384659 0.7353569 -0.3384659 0.3384659 0.7353569 -0.3885728 0.3384659 0.7353569 -0.4317928 0.3384659 0.7353569 -0.470214 0.3384659 0.7353569 -0.5050551 0.3384659 0.7353569 -0.5370987 0.3384659 0.7353569 -0.5668815 0.3384659 0.7353569 -0.5947903 0.3384659 0.7353569 -0.6211144 0.3384659 0.7353569 -0.6460766 0.3384659 0.7353569 -0.6698526 0.3384659 0.7353569 -0.6925839 0.3384659 0.7353569 -0.7143866 0.3384659 0.7353569 -0.7353569 0.3384659 0.7353569 -0.7555758 0.3384659 0.7353569 -0.7751122 0.3384659 0.7353569 -0.7940252 0.3384659 0.7353569 -0.8123661 0.3384659 0.7353569 -0.8301795 0.3384659 0.7353569 -0.8475045 0.3384659 0.7353569 -0.8643761 0.3384659 0.7353569 -0.880825 0.3384659 0.7353569 -0.8968787 0.3384659 0.7353569 -0.9125621 0.3384659 0.7353569 -0.9278974 0.3384659 0.7353569 -0.9429048 0.3384659 0.7353569 -0.9576028 0.3384659 0.7353569 -0.9720079 0.3384659 0.7353569 -0.9861357 0.3384659 0.7353569 -1 0.3384659 0.7353569 -0 0.3885728 0.7353569 -0.1939468 0.3885728 0.7353569 -0.2773041 0.3885728 0.7353569 -0.3384659 0.3885728 0.7353569 -0.3885728 0.3885728 0.7353569 -0.4317928 0.3885728 0.7353569 -0.470214 0.3885728 0.7353569 -0.5050551 0.3885728 0.7353569 -0.5370987 0.3885728 0.7353569 -0.5668815 0.3885728 0.7353569 -0.5947903 0.3885728 0.7353569 -0.6211144 0.3885728 0.7353569 -0.6460766 0.3885728 0.7353569 -0.6698526 0.3885728 0.7353569 -0.6925839 0.3885728 0.7353569 -0.7143866 0.3885728 0.7353569 -0.7353569 0.3885728 0.7353569 -0.7555758 0.3885728 0.7353569 -0.7751122 0.3885728 0.7353569 -0.7940252 0.3885728 0.7353569 -0.8123661 0.3885728 0.7353569 -0.8301795 0.3885728 0.7353569 -0.8475045 0.3885728 0.7353569 -0.8643761 0.3885728 0.7353569 -0.880825 0.3885728 0.7353569 -0.8968787 0.3885728 0.7353569 -0.9125621 0.3885728 0.7353569 -0.9278974 0.3885728 0.7353569 -0.9429048 0.3885728 0.7353569 -0.9576028 0.3885728 0.7353569 -0.9720079 0.3885728 0.7353569 -0.9861357 0.3885728 0.7353569 -1 0.3885728 0.7353569 -0 0.4317928 0.7353569 -0.1939468 0.4317928 0.7353569 -0.2773041 0.4317928 0.7353569 -0.3384659 0.4317928 0.7353569 -0.3885728 0.4317928 0.7353569 -0.4317928 0.4317928 0.7353569 -0.470214 0.4317928 0.7353569 -0.5050551 0.4317928 0.7353569 -0.5370987 0.4317928 0.7353569 -0.5668815 0.4317928 0.7353569 -0.5947903 0.4317928 0.7353569 -0.6211144 0.4317928 0.7353569 -0.6460766 0.4317928 0.7353569 -0.6698526 0.4317928 0.7353569 -0.6925839 0.4317928 0.7353569 -0.7143866 0.4317928 0.7353569 -0.7353569 0.4317928 0.7353569 -0.7555758 0.4317928 0.7353569 -0.7751122 0.4317928 0.7353569 -0.7940252 0.4317928 0.7353569 -0.8123661 0.4317928 0.7353569 -0.8301795 0.4317928 0.7353569 -0.8475045 0.4317928 0.7353569 -0.8643761 0.4317928 0.7353569 -0.880825 0.4317928 0.7353569 -0.8968787 0.4317928 0.7353569 -0.9125621 0.4317928 0.7353569 -0.9278974 0.4317928 0.7353569 -0.9429048 0.4317928 0.7353569 -0.9576028 0.4317928 0.7353569 -0.9720079 0.4317928 0.7353569 -0.9861357 0.4317928 0.7353569 -1 0.4317928 0.7353569 -0 0.470214 0.7353569 -0.1939468 0.470214 0.7353569 -0.2773041 0.470214 0.7353569 -0.3384659 0.470214 0.7353569 -0.3885728 0.470214 0.7353569 -0.4317928 0.470214 0.7353569 -0.470214 0.470214 0.7353569 -0.5050551 0.470214 0.7353569 -0.5370987 0.470214 0.7353569 -0.5668815 0.470214 0.7353569 -0.5947903 0.470214 0.7353569 -0.6211144 0.470214 0.7353569 -0.6460766 0.470214 0.7353569 -0.6698526 0.470214 0.7353569 -0.6925839 0.470214 0.7353569 -0.7143866 0.470214 0.7353569 -0.7353569 0.470214 0.7353569 -0.7555758 0.470214 0.7353569 -0.7751122 0.470214 0.7353569 -0.7940252 0.470214 0.7353569 -0.8123661 0.470214 0.7353569 -0.8301795 0.470214 0.7353569 -0.8475045 0.470214 0.7353569 -0.8643761 0.470214 0.7353569 -0.880825 0.470214 0.7353569 -0.8968787 0.470214 0.7353569 -0.9125621 0.470214 0.7353569 -0.9278974 0.470214 0.7353569 -0.9429048 0.470214 0.7353569 -0.9576028 0.470214 0.7353569 -0.9720079 0.470214 0.7353569 -0.9861357 0.470214 0.7353569 -1 0.470214 0.7353569 -0 0.5050551 0.7353569 -0.1939468 0.5050551 0.7353569 -0.2773041 0.5050551 0.7353569 -0.3384659 0.5050551 0.7353569 -0.3885728 0.5050551 0.7353569 -0.4317928 0.5050551 0.7353569 -0.470214 0.5050551 0.7353569 -0.5050551 0.5050551 0.7353569 -0.5370987 0.5050551 0.7353569 -0.5668815 0.5050551 0.7353569 -0.5947903 0.5050551 0.7353569 -0.6211144 0.5050551 0.7353569 -0.6460766 0.5050551 0.7353569 -0.6698526 0.5050551 0.7353569 -0.6925839 0.5050551 0.7353569 -0.7143866 0.5050551 0.7353569 -0.7353569 0.5050551 0.7353569 -0.7555758 0.5050551 0.7353569 -0.7751122 0.5050551 0.7353569 -0.7940252 0.5050551 0.7353569 -0.8123661 0.5050551 0.7353569 -0.8301795 0.5050551 0.7353569 -0.8475045 0.5050551 0.7353569 -0.8643761 0.5050551 0.7353569 -0.880825 0.5050551 0.7353569 -0.8968787 0.5050551 0.7353569 -0.9125621 0.5050551 0.7353569 -0.9278974 0.5050551 0.7353569 -0.9429048 0.5050551 0.7353569 -0.9576028 0.5050551 0.7353569 -0.9720079 0.5050551 0.7353569 -0.9861357 0.5050551 0.7353569 -1 0.5050551 0.7353569 -0 0.5370987 0.7353569 -0.1939468 0.5370987 0.7353569 -0.2773041 0.5370987 0.7353569 -0.3384659 0.5370987 0.7353569 -0.3885728 0.5370987 0.7353569 -0.4317928 0.5370987 0.7353569 -0.470214 0.5370987 0.7353569 -0.5050551 0.5370987 0.7353569 -0.5370987 0.5370987 0.7353569 -0.5668815 0.5370987 0.7353569 -0.5947903 0.5370987 0.7353569 -0.6211144 0.5370987 0.7353569 -0.6460766 0.5370987 0.7353569 -0.6698526 0.5370987 0.7353569 -0.6925839 0.5370987 0.7353569 -0.7143866 0.5370987 0.7353569 -0.7353569 0.5370987 0.7353569 -0.7555758 0.5370987 0.7353569 -0.7751122 0.5370987 0.7353569 -0.7940252 0.5370987 0.7353569 -0.8123661 0.5370987 0.7353569 -0.8301795 0.5370987 0.7353569 -0.8475045 0.5370987 0.7353569 -0.8643761 0.5370987 0.7353569 -0.880825 0.5370987 0.7353569 -0.8968787 0.5370987 0.7353569 -0.9125621 0.5370987 0.7353569 -0.9278974 0.5370987 0.7353569 -0.9429048 0.5370987 0.7353569 -0.9576028 0.5370987 0.7353569 -0.9720079 0.5370987 0.7353569 -0.9861357 0.5370987 0.7353569 -1 0.5370987 0.7353569 -0 0.5668815 0.7353569 -0.1939468 0.5668815 0.7353569 -0.2773041 0.5668815 0.7353569 -0.3384659 0.5668815 0.7353569 -0.3885728 0.5668815 0.7353569 -0.4317928 0.5668815 0.7353569 -0.470214 0.5668815 0.7353569 -0.5050551 0.5668815 0.7353569 -0.5370987 0.5668815 0.7353569 -0.5668815 0.5668815 0.7353569 -0.5947903 0.5668815 0.7353569 -0.6211144 0.5668815 0.7353569 -0.6460766 0.5668815 0.7353569 -0.6698526 0.5668815 0.7353569 -0.6925839 0.5668815 0.7353569 -0.7143866 0.5668815 0.7353569 -0.7353569 0.5668815 0.7353569 -0.7555758 0.5668815 0.7353569 -0.7751122 0.5668815 0.7353569 -0.7940252 0.5668815 0.7353569 -0.8123661 0.5668815 0.7353569 -0.8301795 0.5668815 0.7353569 -0.8475045 0.5668815 0.7353569 -0.8643761 0.5668815 0.7353569 -0.880825 0.5668815 0.7353569 -0.8968787 0.5668815 0.7353569 -0.9125621 0.5668815 0.7353569 -0.9278974 0.5668815 0.7353569 -0.9429048 0.5668815 0.7353569 -0.9576028 0.5668815 0.7353569 -0.9720079 0.5668815 0.7353569 -0.9861357 0.5668815 0.7353569 -1 0.5668815 0.7353569 -0 0.5947903 0.7353569 -0.1939468 0.5947903 0.7353569 -0.2773041 0.5947903 0.7353569 -0.3384659 0.5947903 0.7353569 -0.3885728 0.5947903 0.7353569 -0.4317928 0.5947903 0.7353569 -0.470214 0.5947903 0.7353569 -0.5050551 0.5947903 0.7353569 -0.5370987 0.5947903 0.7353569 -0.5668815 0.5947903 0.7353569 -0.5947903 0.5947903 0.7353569 -0.6211144 0.5947903 0.7353569 -0.6460766 0.5947903 0.7353569 -0.6698526 0.5947903 0.7353569 -0.6925839 0.5947903 0.7353569 -0.7143866 0.5947903 0.7353569 -0.7353569 0.5947903 0.7353569 -0.7555758 0.5947903 0.7353569 -0.7751122 0.5947903 0.7353569 -0.7940252 0.5947903 0.7353569 -0.8123661 0.5947903 0.7353569 -0.8301795 0.5947903 0.7353569 -0.8475045 0.5947903 0.7353569 -0.8643761 0.5947903 0.7353569 -0.880825 0.5947903 0.7353569 -0.8968787 0.5947903 0.7353569 -0.9125621 0.5947903 0.7353569 -0.9278974 0.5947903 0.7353569 -0.9429048 0.5947903 0.7353569 -0.9576028 0.5947903 0.7353569 -0.9720079 0.5947903 0.7353569 -0.9861357 0.5947903 0.7353569 -1 0.5947903 0.7353569 -0 0.6211144 0.7353569 -0.1939468 0.6211144 0.7353569 -0.2773041 0.6211144 0.7353569 -0.3384659 0.6211144 0.7353569 -0.3885728 0.6211144 0.7353569 -0.4317928 0.6211144 0.7353569 -0.470214 0.6211144 0.7353569 -0.5050551 0.6211144 0.7353569 -0.5370987 0.6211144 0.7353569 -0.5668815 0.6211144 0.7353569 -0.5947903 0.6211144 0.7353569 -0.6211144 0.6211144 0.7353569 -0.6460766 0.6211144 0.7353569 -0.6698526 0.6211144 0.7353569 -0.6925839 0.6211144 0.7353569 -0.7143866 0.6211144 0.7353569 -0.7353569 0.6211144 0.7353569 -0.7555758 0.6211144 0.7353569 -0.7751122 0.6211144 0.7353569 -0.7940252 0.6211144 0.7353569 -0.8123661 0.6211144 0.7353569 -0.8301795 0.6211144 0.7353569 -0.8475045 0.6211144 0.7353569 -0.8643761 0.6211144 0.7353569 -0.880825 0.6211144 0.7353569 -0.8968787 0.6211144 0.7353569 -0.9125621 0.6211144 0.7353569 -0.9278974 0.6211144 0.7353569 -0.9429048 0.6211144 0.7353569 -0.9576028 0.6211144 0.7353569 -0.9720079 0.6211144 0.7353569 -0.9861357 0.6211144 0.7353569 -1 0.6211144 0.7353569 -0 0.6460766 0.7353569 -0.1939468 0.6460766 0.7353569 -0.2773041 0.6460766 0.7353569 -0.3384659 0.6460766 0.7353569 -0.3885728 0.6460766 0.7353569 -0.4317928 0.6460766 0.7353569 -0.470214 0.6460766 0.7353569 -0.5050551 0.6460766 0.7353569 -0.5370987 0.6460766 0.7353569 -0.5668815 0.6460766 0.7353569 -0.5947903 0.6460766 0.7353569 -0.6211144 0.6460766 0.7353569 -0.6460766 0.6460766 0.7353569 -0.6698526 0.6460766 0.7353569 -0.6925839 0.6460766 0.7353569 -0.7143866 0.6460766 0.7353569 -0.7353569 0.6460766 0.7353569 -0.7555758 0.6460766 0.7353569 -0.7751122 0.6460766 0.7353569 -0.7940252 0.6460766 0.7353569 -0.8123661 0.6460766 0.7353569 -0.8301795 0.6460766 0.7353569 -0.8475045 0.6460766 0.7353569 -0.8643761 0.6460766 0.7353569 -0.880825 0.6460766 0.7353569 -0.8968787 0.6460766 0.7353569 -0.9125621 0.6460766 0.7353569 -0.9278974 0.6460766 0.7353569 -0.9429048 0.6460766 0.7353569 -0.9576028 0.6460766 0.7353569 -0.9720079 0.6460766 0.7353569 -0.9861357 0.6460766 0.7353569 -1 0.6460766 0.7353569 -0 0.6698526 0.7353569 -0.1939468 0.6698526 0.7353569 -0.2773041 0.6698526 0.7353569 -0.3384659 0.6698526 0.7353569 -0.3885728 0.6698526 0.7353569 -0.4317928 0.6698526 0.7353569 -0.470214 0.6698526 0.7353569 -0.5050551 0.6698526 0.7353569 -0.5370987 0.6698526 0.7353569 -0.5668815 0.6698526 0.7353569 -0.5947903 0.6698526 0.7353569 -0.6211144 0.6698526 0.7353569 -0.6460766 0.6698526 0.7353569 -0.6698526 0.6698526 0.7353569 -0.6925839 0.6698526 0.7353569 -0.7143866 0.6698526 0.7353569 -0.7353569 0.6698526 0.7353569 -0.7555758 0.6698526 0.7353569 -0.7751122 0.6698526 0.7353569 -0.7940252 0.6698526 0.7353569 -0.8123661 0.6698526 0.7353569 -0.8301795 0.6698526 0.7353569 -0.8475045 0.6698526 0.7353569 -0.8643761 0.6698526 0.7353569 -0.880825 0.6698526 0.7353569 -0.8968787 0.6698526 0.7353569 -0.9125621 0.6698526 0.7353569 -0.9278974 0.6698526 0.7353569 -0.9429048 0.6698526 0.7353569 -0.9576028 0.6698526 0.7353569 -0.9720079 0.6698526 0.7353569 -0.9861357 0.6698526 0.7353569 -1 0.6698526 0.7353569 -0 0.6925839 0.7353569 -0.1939468 0.6925839 0.7353569 -0.2773041 0.6925839 0.7353569 -0.3384659 0.6925839 0.7353569 -0.3885728 0.6925839 0.7353569 -0.4317928 0.6925839 0.7353569 -0.470214 0.6925839 0.7353569 -0.5050551 0.6925839 0.7353569 -0.5370987 0.6925839 0.7353569 -0.5668815 0.6925839 0.7353569 -0.5947903 0.6925839 0.7353569 -0.6211144 0.6925839 0.7353569 -0.6460766 0.6925839 0.7353569 -0.6698526 0.6925839 0.7353569 -0.6925839 0.6925839 0.7353569 -0.7143866 0.6925839 0.7353569 -0.7353569 0.6925839 0.7353569 -0.7555758 0.6925839 0.7353569 -0.7751122 0.6925839 0.7353569 -0.7940252 0.6925839 0.7353569 -0.8123661 0.6925839 0.7353569 -0.8301795 0.6925839 0.7353569 -0.8475045 0.6925839 0.7353569 -0.8643761 0.6925839 0.7353569 -0.880825 0.6925839 0.7353569 -0.8968787 0.6925839 0.7353569 -0.9125621 0.6925839 0.7353569 -0.9278974 0.6925839 0.7353569 -0.9429048 0.6925839 0.7353569 -0.9576028 0.6925839 0.7353569 -0.9720079 0.6925839 0.7353569 -0.9861357 0.6925839 0.7353569 -1 0.6925839 0.7353569 -0 0.7143866 0.7353569 -0.1939468 0.7143866 0.7353569 -0.2773041 0.7143866 0.7353569 -0.3384659 0.7143866 0.7353569 -0.3885728 0.7143866 0.7353569 -0.4317928 0.7143866 0.7353569 -0.470214 0.7143866 0.7353569 -0.5050551 0.7143866 0.7353569 -0.5370987 0.7143866 0.7353569 -0.5668815 0.7143866 0.7353569 -0.5947903 0.7143866 0.7353569 -0.6211144 0.7143866 0.7353569 -0.6460766 0.7143866 0.7353569 -0.6698526 0.7143866 0.7353569 -0.6925839 0.7143866 0.7353569 -0.7143866 0.7143866 0.7353569 -0.7353569 0.7143866 0.7353569 -0.7555758 0.7143866 0.7353569 -0.7751122 0.7143866 0.7353569 -0.7940252 0.7143866 0.7353569 -0.8123661 0.7143866 0.7353569 -0.8301795 0.7143866 0.7353569 -0.8475045 0.7143866 0.7353569 -0.8643761 0.7143866 0.7353569 -0.880825 0.7143866 0.7353569 -0.8968787 0.7143866 0.7353569 -0.9125621 0.7143866 0.7353569 -0.9278974 0.7143866 0.7353569 -0.9429048 0.7143866 0.7353569 -0.9576028 0.7143866 0.7353569 -0.9720079 0.7143866 0.7353569 -0.9861357 0.7143866 0.7353569 -1 0.7143866 0.7353569 -0 0.7353569 0.7353569 -0.1939468 0.7353569 0.7353569 -0.2773041 0.7353569 0.7353569 -0.3384659 0.7353569 0.7353569 -0.3885728 0.7353569 0.7353569 -0.4317928 0.7353569 0.7353569 -0.470214 0.7353569 0.7353569 -0.5050551 0.7353569 0.7353569 -0.5370987 0.7353569 0.7353569 -0.5668815 0.7353569 0.7353569 -0.5947903 0.7353569 0.7353569 -0.6211144 0.7353569 0.7353569 -0.6460766 0.7353569 0.7353569 -0.6698526 0.7353569 0.7353569 -0.6925839 0.7353569 0.7353569 -0.7143866 0.7353569 0.7353569 -0.7353569 0.7353569 0.7353569 -0.7555758 0.7353569 0.7353569 -0.7751122 0.7353569 0.7353569 -0.7940252 0.7353569 0.7353569 -0.8123661 0.7353569 0.7353569 -0.8301795 0.7353569 0.7353569 -0.8475045 0.7353569 0.7353569 -0.8643761 0.7353569 0.7353569 -0.880825 0.7353569 0.7353569 -0.8968787 0.7353569 0.7353569 -0.9125621 0.7353569 0.7353569 -0.9278974 0.7353569 0.7353569 -0.9429048 0.7353569 0.7353569 -0.9576028 0.7353569 0.7353569 -0.9720079 0.7353569 0.7353569 -0.9861357 0.7353569 0.7353569 -1 0.7353569 0.7353569 -0 0.7555758 0.7353569 -0.1939468 0.7555758 0.7353569 -0.2773041 0.7555758 0.7353569 -0.3384659 0.7555758 0.7353569 -0.3885728 0.7555758 0.7353569 -0.4317928 0.7555758 0.7353569 -0.470214 0.7555758 0.7353569 -0.5050551 0.7555758 0.7353569 -0.5370987 0.7555758 0.7353569 -0.5668815 0.7555758 0.7353569 -0.5947903 0.7555758 0.7353569 -0.6211144 0.7555758 0.7353569 -0.6460766 0.7555758 0.7353569 -0.6698526 0.7555758 0.7353569 -0.6925839 0.7555758 0.7353569 -0.7143866 0.7555758 0.7353569 -0.7353569 0.7555758 0.7353569 -0.7555758 0.7555758 0.7353569 -0.7751122 0.7555758 0.7353569 -0.7940252 0.7555758 0.7353569 -0.8123661 0.7555758 0.7353569 -0.8301795 0.7555758 0.7353569 -0.8475045 0.7555758 0.7353569 -0.8643761 0.7555758 0.7353569 -0.880825 0.7555758 0.7353569 -0.8968787 0.7555758 0.7353569 -0.9125621 0.7555758 0.7353569 -0.9278974 0.7555758 0.7353569 -0.9429048 0.7555758 0.7353569 -0.9576028 0.7555758 0.7353569 -0.9720079 0.7555758 0.7353569 -0.9861357 0.7555758 0.7353569 -1 0.7555758 0.7353569 -0 0.7751122 0.7353569 -0.1939468 0.7751122 0.7353569 -0.2773041 0.7751122 0.7353569 -0.3384659 0.7751122 0.7353569 -0.3885728 0.7751122 0.7353569 -0.4317928 0.7751122 0.7353569 -0.470214 0.7751122 0.7353569 -0.5050551 0.7751122 0.7353569 -0.5370987 0.7751122 0.7353569 -0.5668815 0.7751122 0.7353569 -0.5947903 0.7751122 0.7353569 -0.6211144 0.7751122 0.7353569 -0.6460766 0.7751122 0.7353569 -0.6698526 0.7751122 0.7353569 -0.6925839 0.7751122 0.7353569 -0.7143866 0.7751122 0.7353569 -0.7353569 0.7751122 0.7353569 -0.7555758 0.7751122 0.7353569 -0.7751122 0.7751122 0.7353569 -0.7940252 0.7751122 0.7353569 -0.8123661 0.7751122 0.7353569 -0.8301795 0.7751122 0.7353569 -0.8475045 0.7751122 0.7353569 -0.8643761 0.7751122 0.7353569 -0.880825 0.7751122 0.7353569 -0.8968787 0.7751122 0.7353569 -0.9125621 0.7751122 0.7353569 -0.9278974 0.7751122 0.7353569 -0.9429048 0.7751122 0.7353569 -0.9576028 0.7751122 0.7353569 -0.9720079 0.7751122 0.7353569 -0.9861357 0.7751122 0.7353569 -1 0.7751122 0.7353569 -0 0.7940252 0.7353569 -0.1939468 0.7940252 0.7353569 -0.2773041 0.7940252 0.7353569 -0.3384659 0.7940252 0.7353569 -0.3885728 0.7940252 0.7353569 -0.4317928 0.7940252 0.7353569 -0.470214 0.7940252 0.7353569 -0.5050551 0.7940252 0.7353569 -0.5370987 0.7940252 0.7353569 -0.5668815 0.7940252 0.7353569 -0.5947903 0.7940252 0.7353569 -0.6211144 0.7940252 0.7353569 -0.6460766 0.7940252 0.7353569 -0.6698526 0.7940252 0.7353569 -0.6925839 0.7940252 0.7353569 -0.7143866 0.7940252 0.7353569 -0.7353569 0.7940252 0.7353569 -0.7555758 0.7940252 0.7353569 -0.7751122 0.7940252 0.7353569 -0.7940252 0.7940252 0.7353569 -0.8123661 0.7940252 0.7353569 -0.8301795 0.7940252 0.7353569 -0.8475045 0.7940252 0.7353569 -0.8643761 0.7940252 0.7353569 -0.880825 0.7940252 0.7353569 -0.8968787 0.7940252 0.7353569 -0.9125621 0.7940252 0.7353569 -0.9278974 0.7940252 0.7353569 -0.9429048 0.7940252 0.7353569 -0.9576028 0.7940252 0.7353569 -0.9720079 0.7940252 0.7353569 -0.9861357 0.7940252 0.7353569 -1 0.7940252 0.7353569 -0 0.8123661 0.7353569 -0.1939468 0.8123661 0.7353569 -0.2773041 0.8123661 0.7353569 -0.3384659 0.8123661 0.7353569 -0.3885728 0.8123661 0.7353569 -0.4317928 0.8123661 0.7353569 -0.470214 0.8123661 0.7353569 -0.5050551 0.8123661 0.7353569 -0.5370987 0.8123661 0.7353569 -0.5668815 0.8123661 0.7353569 -0.5947903 0.8123661 0.7353569 -0.6211144 0.8123661 0.7353569 -0.6460766 0.8123661 0.7353569 -0.6698526 0.8123661 0.7353569 -0.6925839 0.8123661 0.7353569 -0.7143866 0.8123661 0.7353569 -0.7353569 0.8123661 0.7353569 -0.7555758 0.8123661 0.7353569 -0.7751122 0.8123661 0.7353569 -0.7940252 0.8123661 0.7353569 -0.8123661 0.8123661 0.7353569 -0.8301795 0.8123661 0.7353569 -0.8475045 0.8123661 0.7353569 -0.8643761 0.8123661 0.7353569 -0.880825 0.8123661 0.7353569 -0.8968787 0.8123661 0.7353569 -0.9125621 0.8123661 0.7353569 -0.9278974 0.8123661 0.7353569 -0.9429048 0.8123661 0.7353569 -0.9576028 0.8123661 0.7353569 -0.9720079 0.8123661 0.7353569 -0.9861357 0.8123661 0.7353569 -1 0.8123661 0.7353569 -0 0.8301795 0.7353569 -0.1939468 0.8301795 0.7353569 -0.2773041 0.8301795 0.7353569 -0.3384659 0.8301795 0.7353569 -0.3885728 0.8301795 0.7353569 -0.4317928 0.8301795 0.7353569 -0.470214 0.8301795 0.7353569 -0.5050551 0.8301795 0.7353569 -0.5370987 0.8301795 0.7353569 -0.5668815 0.8301795 0.7353569 -0.5947903 0.8301795 0.7353569 -0.6211144 0.8301795 0.7353569 -0.6460766 0.8301795 0.7353569 -0.6698526 0.8301795 0.7353569 -0.6925839 0.8301795 0.7353569 -0.7143866 0.8301795 0.7353569 -0.7353569 0.8301795 0.7353569 -0.7555758 0.8301795 0.7353569 -0.7751122 0.8301795 0.7353569 -0.7940252 0.8301795 0.7353569 -0.8123661 0.8301795 0.7353569 -0.8301795 0.8301795 0.7353569 -0.8475045 0.8301795 0.7353569 -0.8643761 0.8301795 0.7353569 -0.880825 0.8301795 0.7353569 -0.8968787 0.8301795 0.7353569 -0.9125621 0.8301795 0.7353569 -0.9278974 0.8301795 0.7353569 -0.9429048 0.8301795 0.7353569 -0.9576028 0.8301795 0.7353569 -0.9720079 0.8301795 0.7353569 -0.9861357 0.8301795 0.7353569 -1 0.8301795 0.7353569 -0 0.8475045 0.7353569 -0.1939468 0.8475045 0.7353569 -0.2773041 0.8475045 0.7353569 -0.3384659 0.8475045 0.7353569 -0.3885728 0.8475045 0.7353569 -0.4317928 0.8475045 0.7353569 -0.470214 0.8475045 0.7353569 -0.5050551 0.8475045 0.7353569 -0.5370987 0.8475045 0.7353569 -0.5668815 0.8475045 0.7353569 -0.5947903 0.8475045 0.7353569 -0.6211144 0.8475045 0.7353569 -0.6460766 0.8475045 0.7353569 -0.6698526 0.8475045 0.7353569 -0.6925839 0.8475045 0.7353569 -0.7143866 0.8475045 0.7353569 -0.7353569 0.8475045 0.7353569 -0.7555758 0.8475045 0.7353569 -0.7751122 0.8475045 0.7353569 -0.7940252 0.8475045 0.7353569 -0.8123661 0.8475045 0.7353569 -0.8301795 0.8475045 0.7353569 -0.8475045 0.8475045 0.7353569 -0.8643761 0.8475045 0.7353569 -0.880825 0.8475045 0.7353569 -0.8968787 0.8475045 0.7353569 -0.9125621 0.8475045 0.7353569 -0.9278974 0.8475045 0.7353569 -0.9429048 0.8475045 0.7353569 -0.9576028 0.8475045 0.7353569 -0.9720079 0.8475045 0.7353569 -0.9861357 0.8475045 0.7353569 -1 0.8475045 0.7353569 -0 0.8643761 0.7353569 -0.1939468 0.8643761 0.7353569 -0.2773041 0.8643761 0.7353569 -0.3384659 0.8643761 0.7353569 -0.3885728 0.8643761 0.7353569 -0.4317928 0.8643761 0.7353569 -0.470214 0.8643761 0.7353569 -0.5050551 0.8643761 0.7353569 -0.5370987 0.8643761 0.7353569 -0.5668815 0.8643761 0.7353569 -0.5947903 0.8643761 0.7353569 -0.6211144 0.8643761 0.7353569 -0.6460766 0.8643761 0.7353569 -0.6698526 0.8643761 0.7353569 -0.6925839 0.8643761 0.7353569 -0.7143866 0.8643761 0.7353569 -0.7353569 0.8643761 0.7353569 -0.7555758 0.8643761 0.7353569 -0.7751122 0.8643761 0.7353569 -0.7940252 0.8643761 0.7353569 -0.8123661 0.8643761 0.7353569 -0.8301795 0.8643761 0.7353569 -0.8475045 0.8643761 0.7353569 -0.8643761 0.8643761 0.7353569 -0.880825 0.8643761 0.7353569 -0.8968787 0.8643761 0.7353569 -0.9125621 0.8643761 0.7353569 -0.9278974 0.8643761 0.7353569 -0.9429048 0.8643761 0.7353569 -0.9576028 0.8643761 0.7353569 -0.9720079 0.8643761 0.7353569 -0.9861357 0.8643761 0.7353569 -1 0.8643761 0.7353569 -0 0.880825 0.7353569 -0.1939468 0.880825 0.7353569 -0.2773041 0.880825 0.7353569 -0.3384659 0.880825 0.7353569 -0.3885728 0.880825 0.7353569 -0.4317928 0.880825 0.7353569 -0.470214 0.880825 0.7353569 -0.5050551 0.880825 0.7353569 -0.5370987 0.880825 0.7353569 -0.5668815 0.880825 0.7353569 -0.5947903 0.880825 0.7353569 -0.6211144 0.880825 0.7353569 -0.6460766 0.880825 0.7353569 -0.6698526 0.880825 0.7353569 -0.6925839 0.880825 0.7353569 -0.7143866 0.880825 0.7353569 -0.7353569 0.880825 0.7353569 -0.7555758 0.880825 0.7353569 -0.7751122 0.880825 0.7353569 -0.7940252 0.880825 0.7353569 -0.8123661 0.880825 0.7353569 -0.8301795 0.880825 0.7353569 -0.8475045 0.880825 0.7353569 -0.8643761 0.880825 0.7353569 -0.880825 0.880825 0.7353569 -0.8968787 0.880825 0.7353569 -0.9125621 0.880825 0.7353569 -0.9278974 0.880825 0.7353569 -0.9429048 0.880825 0.7353569 -0.9576028 0.880825 0.7353569 -0.9720079 0.880825 0.7353569 -0.9861357 0.880825 0.7353569 -1 0.880825 0.7353569 -0 0.8968787 0.7353569 -0.1939468 0.8968787 0.7353569 -0.2773041 0.8968787 0.7353569 -0.3384659 0.8968787 0.7353569 -0.3885728 0.8968787 0.7353569 -0.4317928 0.8968787 0.7353569 -0.470214 0.8968787 0.7353569 -0.5050551 0.8968787 0.7353569 -0.5370987 0.8968787 0.7353569 -0.5668815 0.8968787 0.7353569 -0.5947903 0.8968787 0.7353569 -0.6211144 0.8968787 0.7353569 -0.6460766 0.8968787 0.7353569 -0.6698526 0.8968787 0.7353569 -0.6925839 0.8968787 0.7353569 -0.7143866 0.8968787 0.7353569 -0.7353569 0.8968787 0.7353569 -0.7555758 0.8968787 0.7353569 -0.7751122 0.8968787 0.7353569 -0.7940252 0.8968787 0.7353569 -0.8123661 0.8968787 0.7353569 -0.8301795 0.8968787 0.7353569 -0.8475045 0.8968787 0.7353569 -0.8643761 0.8968787 0.7353569 -0.880825 0.8968787 0.7353569 -0.8968787 0.8968787 0.7353569 -0.9125621 0.8968787 0.7353569 -0.9278974 0.8968787 0.7353569 -0.9429048 0.8968787 0.7353569 -0.9576028 0.8968787 0.7353569 -0.9720079 0.8968787 0.7353569 -0.9861357 0.8968787 0.7353569 -1 0.8968787 0.7353569 -0 0.9125621 0.7353569 -0.1939468 0.9125621 0.7353569 -0.2773041 0.9125621 0.7353569 -0.3384659 0.9125621 0.7353569 -0.3885728 0.9125621 0.7353569 -0.4317928 0.9125621 0.7353569 -0.470214 0.9125621 0.7353569 -0.5050551 0.9125621 0.7353569 -0.5370987 0.9125621 0.7353569 -0.5668815 0.9125621 0.7353569 -0.5947903 0.9125621 0.7353569 -0.6211144 0.9125621 0.7353569 -0.6460766 0.9125621 0.7353569 -0.6698526 0.9125621 0.7353569 -0.6925839 0.9125621 0.7353569 -0.7143866 0.9125621 0.7353569 -0.7353569 0.9125621 0.7353569 -0.7555758 0.9125621 0.7353569 -0.7751122 0.9125621 0.7353569 -0.7940252 0.9125621 0.7353569 -0.8123661 0.9125621 0.7353569 -0.8301795 0.9125621 0.7353569 -0.8475045 0.9125621 0.7353569 -0.8643761 0.9125621 0.7353569 -0.880825 0.9125621 0.7353569 -0.8968787 0.9125621 0.7353569 -0.9125621 0.9125621 0.7353569 -0.9278974 0.9125621 0.7353569 -0.9429048 0.9125621 0.7353569 -0.9576028 0.9125621 0.7353569 -0.9720079 0.9125621 0.7353569 -0.9861357 0.9125621 0.7353569 -1 0.9125621 0.7353569 -0 0.9278974 0.7353569 -0.1939468 0.9278974 0.7353569 -0.2773041 0.9278974 0.7353569 -0.3384659 0.9278974 0.7353569 -0.3885728 0.9278974 0.7353569 -0.4317928 0.9278974 0.7353569 -0.470214 0.9278974 0.7353569 -0.5050551 0.9278974 0.7353569 -0.5370987 0.9278974 0.7353569 -0.5668815 0.9278974 0.7353569 -0.5947903 0.9278974 0.7353569 -0.6211144 0.9278974 0.7353569 -0.6460766 0.9278974 0.7353569 -0.6698526 0.9278974 0.7353569 -0.6925839 0.9278974 0.7353569 -0.7143866 0.9278974 0.7353569 -0.7353569 0.9278974 0.7353569 -0.7555758 0.9278974 0.7353569 -0.7751122 0.9278974 0.7353569 -0.7940252 0.9278974 0.7353569 -0.8123661 0.9278974 0.7353569 -0.8301795 0.9278974 0.7353569 -0.8475045 0.9278974 0.7353569 -0.8643761 0.9278974 0.7353569 -0.880825 0.9278974 0.7353569 -0.8968787 0.9278974 0.7353569 -0.9125621 0.9278974 0.7353569 -0.9278974 0.9278974 0.7353569 -0.9429048 0.9278974 0.7353569 -0.9576028 0.9278974 0.7353569 -0.9720079 0.9278974 0.7353569 -0.9861357 0.9278974 0.7353569 -1 0.9278974 0.7353569 -0 0.9429048 0.7353569 -0.1939468 0.9429048 0.7353569 -0.2773041 0.9429048 0.7353569 -0.3384659 0.9429048 0.7353569 -0.3885728 0.9429048 0.7353569 -0.4317928 0.9429048 0.7353569 -0.470214 0.9429048 0.7353569 -0.5050551 0.9429048 0.7353569 -0.5370987 0.9429048 0.7353569 -0.5668815 0.9429048 0.7353569 -0.5947903 0.9429048 0.7353569 -0.6211144 0.9429048 0.7353569 -0.6460766 0.9429048 0.7353569 -0.6698526 0.9429048 0.7353569 -0.6925839 0.9429048 0.7353569 -0.7143866 0.9429048 0.7353569 -0.7353569 0.9429048 0.7353569 -0.7555758 0.9429048 0.7353569 -0.7751122 0.9429048 0.7353569 -0.7940252 0.9429048 0.7353569 -0.8123661 0.9429048 0.7353569 -0.8301795 0.9429048 0.7353569 -0.8475045 0.9429048 0.7353569 -0.8643761 0.9429048 0.7353569 -0.880825 0.9429048 0.7353569 -0.8968787 0.9429048 0.7353569 -0.9125621 0.9429048 0.7353569 -0.9278974 0.9429048 0.7353569 -0.9429048 0.9429048 0.7353569 -0.9576028 0.9429048 0.7353569 -0.9720079 0.9429048 0.7353569 -0.9861357 0.9429048 0.7353569 -1 0.9429048 0.7353569 -0 0.9576028 0.7353569 -0.1939468 0.9576028 0.7353569 -0.2773041 0.9576028 0.7353569 -0.3384659 0.9576028 0.7353569 -0.3885728 0.9576028 0.7353569 -0.4317928 0.9576028 0.7353569 -0.470214 0.9576028 0.7353569 -0.5050551 0.9576028 0.7353569 -0.5370987 0.9576028 0.7353569 -0.5668815 0.9576028 0.7353569 -0.5947903 0.9576028 0.7353569 -0.6211144 0.9576028 0.7353569 -0.6460766 0.9576028 0.7353569 -0.6698526 0.9576028 0.7353569 -0.6925839 0.9576028 0.7353569 -0.7143866 0.9576028 0.7353569 -0.7353569 0.9576028 0.7353569 -0.7555758 0.9576028 0.7353569 -0.7751122 0.9576028 0.7353569 -0.7940252 0.9576028 0.7353569 -0.8123661 0.9576028 0.7353569 -0.8301795 0.9576028 0.7353569 -0.8475045 0.9576028 0.7353569 -0.8643761 0.9576028 0.7353569 -0.880825 0.9576028 0.7353569 -0.8968787 0.9576028 0.7353569 -0.9125621 0.9576028 0.7353569 -0.9278974 0.9576028 0.7353569 -0.9429048 0.9576028 0.7353569 -0.9576028 0.9576028 0.7353569 -0.9720079 0.9576028 0.7353569 -0.9861357 0.9576028 0.7353569 -1 0.9576028 0.7353569 -0 0.9720079 0.7353569 -0.1939468 0.9720079 0.7353569 -0.2773041 0.9720079 0.7353569 -0.3384659 0.9720079 0.7353569 -0.3885728 0.9720079 0.7353569 -0.4317928 0.9720079 0.7353569 -0.470214 0.9720079 0.7353569 -0.5050551 0.9720079 0.7353569 -0.5370987 0.9720079 0.7353569 -0.5668815 0.9720079 0.7353569 -0.5947903 0.9720079 0.7353569 -0.6211144 0.9720079 0.7353569 -0.6460766 0.9720079 0.7353569 -0.6698526 0.9720079 0.7353569 -0.6925839 0.9720079 0.7353569 -0.7143866 0.9720079 0.7353569 -0.7353569 0.9720079 0.7353569 -0.7555758 0.9720079 0.7353569 -0.7751122 0.9720079 0.7353569 -0.7940252 0.9720079 0.7353569 -0.8123661 0.9720079 0.7353569 -0.8301795 0.9720079 0.7353569 -0.8475045 0.9720079 0.7353569 -0.8643761 0.9720079 0.7353569 -0.880825 0.9720079 0.7353569 -0.8968787 0.9720079 0.7353569 -0.9125621 0.9720079 0.7353569 -0.9278974 0.9720079 0.7353569 -0.9429048 0.9720079 0.7353569 -0.9576028 0.9720079 0.7353569 -0.9720079 0.9720079 0.7353569 -0.9861357 0.9720079 0.7353569 -1 0.9720079 0.7353569 -0 0.9861357 0.7353569 -0.1939468 0.9861357 0.7353569 -0.2773041 0.9861357 0.7353569 -0.3384659 0.9861357 0.7353569 -0.3885728 0.9861357 0.7353569 -0.4317928 0.9861357 0.7353569 -0.470214 0.9861357 0.7353569 -0.5050551 0.9861357 0.7353569 -0.5370987 0.9861357 0.7353569 -0.5668815 0.9861357 0.7353569 -0.5947903 0.9861357 0.7353569 -0.6211144 0.9861357 0.7353569 -0.6460766 0.9861357 0.7353569 -0.6698526 0.9861357 0.7353569 -0.6925839 0.9861357 0.7353569 -0.7143866 0.9861357 0.7353569 -0.7353569 0.9861357 0.7353569 -0.7555758 0.9861357 0.7353569 -0.7751122 0.9861357 0.7353569 -0.7940252 0.9861357 0.7353569 -0.8123661 0.9861357 0.7353569 -0.8301795 0.9861357 0.7353569 -0.8475045 0.9861357 0.7353569 -0.8643761 0.9861357 0.7353569 -0.880825 0.9861357 0.7353569 -0.8968787 0.9861357 0.7353569 -0.9125621 0.9861357 0.7353569 -0.9278974 0.9861357 0.7353569 -0.9429048 0.9861357 0.7353569 -0.9576028 0.9861357 0.7353569 -0.9720079 0.9861357 0.7353569 -0.9861357 0.9861357 0.7353569 -1 0.9861357 0.7353569 -0 1 0.7353569 -0.1939468 1 0.7353569 -0.2773041 1 0.7353569 -0.3384659 1 0.7353569 -0.3885728 1 0.7353569 -0.4317928 1 0.7353569 -0.470214 1 0.7353569 -0.5050551 1 0.7353569 -0.5370987 1 0.7353569 -0.5668815 1 0.7353569 -0.5947903 1 0.7353569 -0.6211144 1 0.7353569 -0.6460766 1 0.7353569 -0.6698526 1 0.7353569 -0.6925839 1 0.7353569 -0.7143866 1 0.7353569 -0.7353569 1 0.7353569 -0.7555758 1 0.7353569 -0.7751122 1 0.7353569 -0.7940252 1 0.7353569 -0.8123661 1 0.7353569 -0.8301795 1 0.7353569 -0.8475045 1 0.7353569 -0.8643761 1 0.7353569 -0.880825 1 0.7353569 -0.8968787 1 0.7353569 -0.9125621 1 0.7353569 -0.9278974 1 0.7353569 -0.9429048 1 0.7353569 -0.9576028 1 0.7353569 -0.9720079 1 0.7353569 -0.9861357 1 0.7353569 -1 1 0.7353569 -0 0 0.7555758 -0.1939468 0 0.7555758 -0.2773041 0 0.7555758 -0.3384659 0 0.7555758 -0.3885728 0 0.7555758 -0.4317928 0 0.7555758 -0.470214 0 0.7555758 -0.5050551 0 0.7555758 -0.5370987 0 0.7555758 -0.5668815 0 0.7555758 -0.5947903 0 0.7555758 -0.6211144 0 0.7555758 -0.6460766 0 0.7555758 -0.6698526 0 0.7555758 -0.6925839 0 0.7555758 -0.7143866 0 0.7555758 -0.7353569 0 0.7555758 -0.7555758 0 0.7555758 -0.7751122 0 0.7555758 -0.7940252 0 0.7555758 -0.8123661 0 0.7555758 -0.8301795 0 0.7555758 -0.8475045 0 0.7555758 -0.8643761 0 0.7555758 -0.880825 0 0.7555758 -0.8968787 0 0.7555758 -0.9125621 0 0.7555758 -0.9278974 0 0.7555758 -0.9429048 0 0.7555758 -0.9576028 0 0.7555758 -0.9720079 0 0.7555758 -0.9861357 0 0.7555758 -1 0 0.7555758 -0 0.1939468 0.7555758 -0.1939468 0.1939468 0.7555758 -0.2773041 0.1939468 0.7555758 -0.3384659 0.1939468 0.7555758 -0.3885728 0.1939468 0.7555758 -0.4317928 0.1939468 0.7555758 -0.470214 0.1939468 0.7555758 -0.5050551 0.1939468 0.7555758 -0.5370987 0.1939468 0.7555758 -0.5668815 0.1939468 0.7555758 -0.5947903 0.1939468 0.7555758 -0.6211144 0.1939468 0.7555758 -0.6460766 0.1939468 0.7555758 -0.6698526 0.1939468 0.7555758 -0.6925839 0.1939468 0.7555758 -0.7143866 0.1939468 0.7555758 -0.7353569 0.1939468 0.7555758 -0.7555758 0.1939468 0.7555758 -0.7751122 0.1939468 0.7555758 -0.7940252 0.1939468 0.7555758 -0.8123661 0.1939468 0.7555758 -0.8301795 0.1939468 0.7555758 -0.8475045 0.1939468 0.7555758 -0.8643761 0.1939468 0.7555758 -0.880825 0.1939468 0.7555758 -0.8968787 0.1939468 0.7555758 -0.9125621 0.1939468 0.7555758 -0.9278974 0.1939468 0.7555758 -0.9429048 0.1939468 0.7555758 -0.9576028 0.1939468 0.7555758 -0.9720079 0.1939468 0.7555758 -0.9861357 0.1939468 0.7555758 -1 0.1939468 0.7555758 -0 0.2773041 0.7555758 -0.1939468 0.2773041 0.7555758 -0.2773041 0.2773041 0.7555758 -0.3384659 0.2773041 0.7555758 -0.3885728 0.2773041 0.7555758 -0.4317928 0.2773041 0.7555758 -0.470214 0.2773041 0.7555758 -0.5050551 0.2773041 0.7555758 -0.5370987 0.2773041 0.7555758 -0.5668815 0.2773041 0.7555758 -0.5947903 0.2773041 0.7555758 -0.6211144 0.2773041 0.7555758 -0.6460766 0.2773041 0.7555758 -0.6698526 0.2773041 0.7555758 -0.6925839 0.2773041 0.7555758 -0.7143866 0.2773041 0.7555758 -0.7353569 0.2773041 0.7555758 -0.7555758 0.2773041 0.7555758 -0.7751122 0.2773041 0.7555758 -0.7940252 0.2773041 0.7555758 -0.8123661 0.2773041 0.7555758 -0.8301795 0.2773041 0.7555758 -0.8475045 0.2773041 0.7555758 -0.8643761 0.2773041 0.7555758 -0.880825 0.2773041 0.7555758 -0.8968787 0.2773041 0.7555758 -0.9125621 0.2773041 0.7555758 -0.9278974 0.2773041 0.7555758 -0.9429048 0.2773041 0.7555758 -0.9576028 0.2773041 0.7555758 -0.9720079 0.2773041 0.7555758 -0.9861357 0.2773041 0.7555758 -1 0.2773041 0.7555758 -0 0.3384659 0.7555758 -0.1939468 0.3384659 0.7555758 -0.2773041 0.3384659 0.7555758 -0.3384659 0.3384659 0.7555758 -0.3885728 0.3384659 0.7555758 -0.4317928 0.3384659 0.7555758 -0.470214 0.3384659 0.7555758 -0.5050551 0.3384659 0.7555758 -0.5370987 0.3384659 0.7555758 -0.5668815 0.3384659 0.7555758 -0.5947903 0.3384659 0.7555758 -0.6211144 0.3384659 0.7555758 -0.6460766 0.3384659 0.7555758 -0.6698526 0.3384659 0.7555758 -0.6925839 0.3384659 0.7555758 -0.7143866 0.3384659 0.7555758 -0.7353569 0.3384659 0.7555758 -0.7555758 0.3384659 0.7555758 -0.7751122 0.3384659 0.7555758 -0.7940252 0.3384659 0.7555758 -0.8123661 0.3384659 0.7555758 -0.8301795 0.3384659 0.7555758 -0.8475045 0.3384659 0.7555758 -0.8643761 0.3384659 0.7555758 -0.880825 0.3384659 0.7555758 -0.8968787 0.3384659 0.7555758 -0.9125621 0.3384659 0.7555758 -0.9278974 0.3384659 0.7555758 -0.9429048 0.3384659 0.7555758 -0.9576028 0.3384659 0.7555758 -0.9720079 0.3384659 0.7555758 -0.9861357 0.3384659 0.7555758 -1 0.3384659 0.7555758 -0 0.3885728 0.7555758 -0.1939468 0.3885728 0.7555758 -0.2773041 0.3885728 0.7555758 -0.3384659 0.3885728 0.7555758 -0.3885728 0.3885728 0.7555758 -0.4317928 0.3885728 0.7555758 -0.470214 0.3885728 0.7555758 -0.5050551 0.3885728 0.7555758 -0.5370987 0.3885728 0.7555758 -0.5668815 0.3885728 0.7555758 -0.5947903 0.3885728 0.7555758 -0.6211144 0.3885728 0.7555758 -0.6460766 0.3885728 0.7555758 -0.6698526 0.3885728 0.7555758 -0.6925839 0.3885728 0.7555758 -0.7143866 0.3885728 0.7555758 -0.7353569 0.3885728 0.7555758 -0.7555758 0.3885728 0.7555758 -0.7751122 0.3885728 0.7555758 -0.7940252 0.3885728 0.7555758 -0.8123661 0.3885728 0.7555758 -0.8301795 0.3885728 0.7555758 -0.8475045 0.3885728 0.7555758 -0.8643761 0.3885728 0.7555758 -0.880825 0.3885728 0.7555758 -0.8968787 0.3885728 0.7555758 -0.9125621 0.3885728 0.7555758 -0.9278974 0.3885728 0.7555758 -0.9429048 0.3885728 0.7555758 -0.9576028 0.3885728 0.7555758 -0.9720079 0.3885728 0.7555758 -0.9861357 0.3885728 0.7555758 -1 0.3885728 0.7555758 -0 0.4317928 0.7555758 -0.1939468 0.4317928 0.7555758 -0.2773041 0.4317928 0.7555758 -0.3384659 0.4317928 0.7555758 -0.3885728 0.4317928 0.7555758 -0.4317928 0.4317928 0.7555758 -0.470214 0.4317928 0.7555758 -0.5050551 0.4317928 0.7555758 -0.5370987 0.4317928 0.7555758 -0.5668815 0.4317928 0.7555758 -0.5947903 0.4317928 0.7555758 -0.6211144 0.4317928 0.7555758 -0.6460766 0.4317928 0.7555758 -0.6698526 0.4317928 0.7555758 -0.6925839 0.4317928 0.7555758 -0.7143866 0.4317928 0.7555758 -0.7353569 0.4317928 0.7555758 -0.7555758 0.4317928 0.7555758 -0.7751122 0.4317928 0.7555758 -0.7940252 0.4317928 0.7555758 -0.8123661 0.4317928 0.7555758 -0.8301795 0.4317928 0.7555758 -0.8475045 0.4317928 0.7555758 -0.8643761 0.4317928 0.7555758 -0.880825 0.4317928 0.7555758 -0.8968787 0.4317928 0.7555758 -0.9125621 0.4317928 0.7555758 -0.9278974 0.4317928 0.7555758 -0.9429048 0.4317928 0.7555758 -0.9576028 0.4317928 0.7555758 -0.9720079 0.4317928 0.7555758 -0.9861357 0.4317928 0.7555758 -1 0.4317928 0.7555758 -0 0.470214 0.7555758 -0.1939468 0.470214 0.7555758 -0.2773041 0.470214 0.7555758 -0.3384659 0.470214 0.7555758 -0.3885728 0.470214 0.7555758 -0.4317928 0.470214 0.7555758 -0.470214 0.470214 0.7555758 -0.5050551 0.470214 0.7555758 -0.5370987 0.470214 0.7555758 -0.5668815 0.470214 0.7555758 -0.5947903 0.470214 0.7555758 -0.6211144 0.470214 0.7555758 -0.6460766 0.470214 0.7555758 -0.6698526 0.470214 0.7555758 -0.6925839 0.470214 0.7555758 -0.7143866 0.470214 0.7555758 -0.7353569 0.470214 0.7555758 -0.7555758 0.470214 0.7555758 -0.7751122 0.470214 0.7555758 -0.7940252 0.470214 0.7555758 -0.8123661 0.470214 0.7555758 -0.8301795 0.470214 0.7555758 -0.8475045 0.470214 0.7555758 -0.8643761 0.470214 0.7555758 -0.880825 0.470214 0.7555758 -0.8968787 0.470214 0.7555758 -0.9125621 0.470214 0.7555758 -0.9278974 0.470214 0.7555758 -0.9429048 0.470214 0.7555758 -0.9576028 0.470214 0.7555758 -0.9720079 0.470214 0.7555758 -0.9861357 0.470214 0.7555758 -1 0.470214 0.7555758 -0 0.5050551 0.7555758 -0.1939468 0.5050551 0.7555758 -0.2773041 0.5050551 0.7555758 -0.3384659 0.5050551 0.7555758 -0.3885728 0.5050551 0.7555758 -0.4317928 0.5050551 0.7555758 -0.470214 0.5050551 0.7555758 -0.5050551 0.5050551 0.7555758 -0.5370987 0.5050551 0.7555758 -0.5668815 0.5050551 0.7555758 -0.5947903 0.5050551 0.7555758 -0.6211144 0.5050551 0.7555758 -0.6460766 0.5050551 0.7555758 -0.6698526 0.5050551 0.7555758 -0.6925839 0.5050551 0.7555758 -0.7143866 0.5050551 0.7555758 -0.7353569 0.5050551 0.7555758 -0.7555758 0.5050551 0.7555758 -0.7751122 0.5050551 0.7555758 -0.7940252 0.5050551 0.7555758 -0.8123661 0.5050551 0.7555758 -0.8301795 0.5050551 0.7555758 -0.8475045 0.5050551 0.7555758 -0.8643761 0.5050551 0.7555758 -0.880825 0.5050551 0.7555758 -0.8968787 0.5050551 0.7555758 -0.9125621 0.5050551 0.7555758 -0.9278974 0.5050551 0.7555758 -0.9429048 0.5050551 0.7555758 -0.9576028 0.5050551 0.7555758 -0.9720079 0.5050551 0.7555758 -0.9861357 0.5050551 0.7555758 -1 0.5050551 0.7555758 -0 0.5370987 0.7555758 -0.1939468 0.5370987 0.7555758 -0.2773041 0.5370987 0.7555758 -0.3384659 0.5370987 0.7555758 -0.3885728 0.5370987 0.7555758 -0.4317928 0.5370987 0.7555758 -0.470214 0.5370987 0.7555758 -0.5050551 0.5370987 0.7555758 -0.5370987 0.5370987 0.7555758 -0.5668815 0.5370987 0.7555758 -0.5947903 0.5370987 0.7555758 -0.6211144 0.5370987 0.7555758 -0.6460766 0.5370987 0.7555758 -0.6698526 0.5370987 0.7555758 -0.6925839 0.5370987 0.7555758 -0.7143866 0.5370987 0.7555758 -0.7353569 0.5370987 0.7555758 -0.7555758 0.5370987 0.7555758 -0.7751122 0.5370987 0.7555758 -0.7940252 0.5370987 0.7555758 -0.8123661 0.5370987 0.7555758 -0.8301795 0.5370987 0.7555758 -0.8475045 0.5370987 0.7555758 -0.8643761 0.5370987 0.7555758 -0.880825 0.5370987 0.7555758 -0.8968787 0.5370987 0.7555758 -0.9125621 0.5370987 0.7555758 -0.9278974 0.5370987 0.7555758 -0.9429048 0.5370987 0.7555758 -0.9576028 0.5370987 0.7555758 -0.9720079 0.5370987 0.7555758 -0.9861357 0.5370987 0.7555758 -1 0.5370987 0.7555758 -0 0.5668815 0.7555758 -0.1939468 0.5668815 0.7555758 -0.2773041 0.5668815 0.7555758 -0.3384659 0.5668815 0.7555758 -0.3885728 0.5668815 0.7555758 -0.4317928 0.5668815 0.7555758 -0.470214 0.5668815 0.7555758 -0.5050551 0.5668815 0.7555758 -0.5370987 0.5668815 0.7555758 -0.5668815 0.5668815 0.7555758 -0.5947903 0.5668815 0.7555758 -0.6211144 0.5668815 0.7555758 -0.6460766 0.5668815 0.7555758 -0.6698526 0.5668815 0.7555758 -0.6925839 0.5668815 0.7555758 -0.7143866 0.5668815 0.7555758 -0.7353569 0.5668815 0.7555758 -0.7555758 0.5668815 0.7555758 -0.7751122 0.5668815 0.7555758 -0.7940252 0.5668815 0.7555758 -0.8123661 0.5668815 0.7555758 -0.8301795 0.5668815 0.7555758 -0.8475045 0.5668815 0.7555758 -0.8643761 0.5668815 0.7555758 -0.880825 0.5668815 0.7555758 -0.8968787 0.5668815 0.7555758 -0.9125621 0.5668815 0.7555758 -0.9278974 0.5668815 0.7555758 -0.9429048 0.5668815 0.7555758 -0.9576028 0.5668815 0.7555758 -0.9720079 0.5668815 0.7555758 -0.9861357 0.5668815 0.7555758 -1 0.5668815 0.7555758 -0 0.5947903 0.7555758 -0.1939468 0.5947903 0.7555758 -0.2773041 0.5947903 0.7555758 -0.3384659 0.5947903 0.7555758 -0.3885728 0.5947903 0.7555758 -0.4317928 0.5947903 0.7555758 -0.470214 0.5947903 0.7555758 -0.5050551 0.5947903 0.7555758 -0.5370987 0.5947903 0.7555758 -0.5668815 0.5947903 0.7555758 -0.5947903 0.5947903 0.7555758 -0.6211144 0.5947903 0.7555758 -0.6460766 0.5947903 0.7555758 -0.6698526 0.5947903 0.7555758 -0.6925839 0.5947903 0.7555758 -0.7143866 0.5947903 0.7555758 -0.7353569 0.5947903 0.7555758 -0.7555758 0.5947903 0.7555758 -0.7751122 0.5947903 0.7555758 -0.7940252 0.5947903 0.7555758 -0.8123661 0.5947903 0.7555758 -0.8301795 0.5947903 0.7555758 -0.8475045 0.5947903 0.7555758 -0.8643761 0.5947903 0.7555758 -0.880825 0.5947903 0.7555758 -0.8968787 0.5947903 0.7555758 -0.9125621 0.5947903 0.7555758 -0.9278974 0.5947903 0.7555758 -0.9429048 0.5947903 0.7555758 -0.9576028 0.5947903 0.7555758 -0.9720079 0.5947903 0.7555758 -0.9861357 0.5947903 0.7555758 -1 0.5947903 0.7555758 -0 0.6211144 0.7555758 -0.1939468 0.6211144 0.7555758 -0.2773041 0.6211144 0.7555758 -0.3384659 0.6211144 0.7555758 -0.3885728 0.6211144 0.7555758 -0.4317928 0.6211144 0.7555758 -0.470214 0.6211144 0.7555758 -0.5050551 0.6211144 0.7555758 -0.5370987 0.6211144 0.7555758 -0.5668815 0.6211144 0.7555758 -0.5947903 0.6211144 0.7555758 -0.6211144 0.6211144 0.7555758 -0.6460766 0.6211144 0.7555758 -0.6698526 0.6211144 0.7555758 -0.6925839 0.6211144 0.7555758 -0.7143866 0.6211144 0.7555758 -0.7353569 0.6211144 0.7555758 -0.7555758 0.6211144 0.7555758 -0.7751122 0.6211144 0.7555758 -0.7940252 0.6211144 0.7555758 -0.8123661 0.6211144 0.7555758 -0.8301795 0.6211144 0.7555758 -0.8475045 0.6211144 0.7555758 -0.8643761 0.6211144 0.7555758 -0.880825 0.6211144 0.7555758 -0.8968787 0.6211144 0.7555758 -0.9125621 0.6211144 0.7555758 -0.9278974 0.6211144 0.7555758 -0.9429048 0.6211144 0.7555758 -0.9576028 0.6211144 0.7555758 -0.9720079 0.6211144 0.7555758 -0.9861357 0.6211144 0.7555758 -1 0.6211144 0.7555758 -0 0.6460766 0.7555758 -0.1939468 0.6460766 0.7555758 -0.2773041 0.6460766 0.7555758 -0.3384659 0.6460766 0.7555758 -0.3885728 0.6460766 0.7555758 -0.4317928 0.6460766 0.7555758 -0.470214 0.6460766 0.7555758 -0.5050551 0.6460766 0.7555758 -0.5370987 0.6460766 0.7555758 -0.5668815 0.6460766 0.7555758 -0.5947903 0.6460766 0.7555758 -0.6211144 0.6460766 0.7555758 -0.6460766 0.6460766 0.7555758 -0.6698526 0.6460766 0.7555758 -0.6925839 0.6460766 0.7555758 -0.7143866 0.6460766 0.7555758 -0.7353569 0.6460766 0.7555758 -0.7555758 0.6460766 0.7555758 -0.7751122 0.6460766 0.7555758 -0.7940252 0.6460766 0.7555758 -0.8123661 0.6460766 0.7555758 -0.8301795 0.6460766 0.7555758 -0.8475045 0.6460766 0.7555758 -0.8643761 0.6460766 0.7555758 -0.880825 0.6460766 0.7555758 -0.8968787 0.6460766 0.7555758 -0.9125621 0.6460766 0.7555758 -0.9278974 0.6460766 0.7555758 -0.9429048 0.6460766 0.7555758 -0.9576028 0.6460766 0.7555758 -0.9720079 0.6460766 0.7555758 -0.9861357 0.6460766 0.7555758 -1 0.6460766 0.7555758 -0 0.6698526 0.7555758 -0.1939468 0.6698526 0.7555758 -0.2773041 0.6698526 0.7555758 -0.3384659 0.6698526 0.7555758 -0.3885728 0.6698526 0.7555758 -0.4317928 0.6698526 0.7555758 -0.470214 0.6698526 0.7555758 -0.5050551 0.6698526 0.7555758 -0.5370987 0.6698526 0.7555758 -0.5668815 0.6698526 0.7555758 -0.5947903 0.6698526 0.7555758 -0.6211144 0.6698526 0.7555758 -0.6460766 0.6698526 0.7555758 -0.6698526 0.6698526 0.7555758 -0.6925839 0.6698526 0.7555758 -0.7143866 0.6698526 0.7555758 -0.7353569 0.6698526 0.7555758 -0.7555758 0.6698526 0.7555758 -0.7751122 0.6698526 0.7555758 -0.7940252 0.6698526 0.7555758 -0.8123661 0.6698526 0.7555758 -0.8301795 0.6698526 0.7555758 -0.8475045 0.6698526 0.7555758 -0.8643761 0.6698526 0.7555758 -0.880825 0.6698526 0.7555758 -0.8968787 0.6698526 0.7555758 -0.9125621 0.6698526 0.7555758 -0.9278974 0.6698526 0.7555758 -0.9429048 0.6698526 0.7555758 -0.9576028 0.6698526 0.7555758 -0.9720079 0.6698526 0.7555758 -0.9861357 0.6698526 0.7555758 -1 0.6698526 0.7555758 -0 0.6925839 0.7555758 -0.1939468 0.6925839 0.7555758 -0.2773041 0.6925839 0.7555758 -0.3384659 0.6925839 0.7555758 -0.3885728 0.6925839 0.7555758 -0.4317928 0.6925839 0.7555758 -0.470214 0.6925839 0.7555758 -0.5050551 0.6925839 0.7555758 -0.5370987 0.6925839 0.7555758 -0.5668815 0.6925839 0.7555758 -0.5947903 0.6925839 0.7555758 -0.6211144 0.6925839 0.7555758 -0.6460766 0.6925839 0.7555758 -0.6698526 0.6925839 0.7555758 -0.6925839 0.6925839 0.7555758 -0.7143866 0.6925839 0.7555758 -0.7353569 0.6925839 0.7555758 -0.7555758 0.6925839 0.7555758 -0.7751122 0.6925839 0.7555758 -0.7940252 0.6925839 0.7555758 -0.8123661 0.6925839 0.7555758 -0.8301795 0.6925839 0.7555758 -0.8475045 0.6925839 0.7555758 -0.8643761 0.6925839 0.7555758 -0.880825 0.6925839 0.7555758 -0.8968787 0.6925839 0.7555758 -0.9125621 0.6925839 0.7555758 -0.9278974 0.6925839 0.7555758 -0.9429048 0.6925839 0.7555758 -0.9576028 0.6925839 0.7555758 -0.9720079 0.6925839 0.7555758 -0.9861357 0.6925839 0.7555758 -1 0.6925839 0.7555758 -0 0.7143866 0.7555758 -0.1939468 0.7143866 0.7555758 -0.2773041 0.7143866 0.7555758 -0.3384659 0.7143866 0.7555758 -0.3885728 0.7143866 0.7555758 -0.4317928 0.7143866 0.7555758 -0.470214 0.7143866 0.7555758 -0.5050551 0.7143866 0.7555758 -0.5370987 0.7143866 0.7555758 -0.5668815 0.7143866 0.7555758 -0.5947903 0.7143866 0.7555758 -0.6211144 0.7143866 0.7555758 -0.6460766 0.7143866 0.7555758 -0.6698526 0.7143866 0.7555758 -0.6925839 0.7143866 0.7555758 -0.7143866 0.7143866 0.7555758 -0.7353569 0.7143866 0.7555758 -0.7555758 0.7143866 0.7555758 -0.7751122 0.7143866 0.7555758 -0.7940252 0.7143866 0.7555758 -0.8123661 0.7143866 0.7555758 -0.8301795 0.7143866 0.7555758 -0.8475045 0.7143866 0.7555758 -0.8643761 0.7143866 0.7555758 -0.880825 0.7143866 0.7555758 -0.8968787 0.7143866 0.7555758 -0.9125621 0.7143866 0.7555758 -0.9278974 0.7143866 0.7555758 -0.9429048 0.7143866 0.7555758 -0.9576028 0.7143866 0.7555758 -0.9720079 0.7143866 0.7555758 -0.9861357 0.7143866 0.7555758 -1 0.7143866 0.7555758 -0 0.7353569 0.7555758 -0.1939468 0.7353569 0.7555758 -0.2773041 0.7353569 0.7555758 -0.3384659 0.7353569 0.7555758 -0.3885728 0.7353569 0.7555758 -0.4317928 0.7353569 0.7555758 -0.470214 0.7353569 0.7555758 -0.5050551 0.7353569 0.7555758 -0.5370987 0.7353569 0.7555758 -0.5668815 0.7353569 0.7555758 -0.5947903 0.7353569 0.7555758 -0.6211144 0.7353569 0.7555758 -0.6460766 0.7353569 0.7555758 -0.6698526 0.7353569 0.7555758 -0.6925839 0.7353569 0.7555758 -0.7143866 0.7353569 0.7555758 -0.7353569 0.7353569 0.7555758 -0.7555758 0.7353569 0.7555758 -0.7751122 0.7353569 0.7555758 -0.7940252 0.7353569 0.7555758 -0.8123661 0.7353569 0.7555758 -0.8301795 0.7353569 0.7555758 -0.8475045 0.7353569 0.7555758 -0.8643761 0.7353569 0.7555758 -0.880825 0.7353569 0.7555758 -0.8968787 0.7353569 0.7555758 -0.9125621 0.7353569 0.7555758 -0.9278974 0.7353569 0.7555758 -0.9429048 0.7353569 0.7555758 -0.9576028 0.7353569 0.7555758 -0.9720079 0.7353569 0.7555758 -0.9861357 0.7353569 0.7555758 -1 0.7353569 0.7555758 -0 0.7555758 0.7555758 -0.1939468 0.7555758 0.7555758 -0.2773041 0.7555758 0.7555758 -0.3384659 0.7555758 0.7555758 -0.3885728 0.7555758 0.7555758 -0.4317928 0.7555758 0.7555758 -0.470214 0.7555758 0.7555758 -0.5050551 0.7555758 0.7555758 -0.5370987 0.7555758 0.7555758 -0.5668815 0.7555758 0.7555758 -0.5947903 0.7555758 0.7555758 -0.6211144 0.7555758 0.7555758 -0.6460766 0.7555758 0.7555758 -0.6698526 0.7555758 0.7555758 -0.6925839 0.7555758 0.7555758 -0.7143866 0.7555758 0.7555758 -0.7353569 0.7555758 0.7555758 -0.7555758 0.7555758 0.7555758 -0.7751122 0.7555758 0.7555758 -0.7940252 0.7555758 0.7555758 -0.8123661 0.7555758 0.7555758 -0.8301795 0.7555758 0.7555758 -0.8475045 0.7555758 0.7555758 -0.8643761 0.7555758 0.7555758 -0.880825 0.7555758 0.7555758 -0.8968787 0.7555758 0.7555758 -0.9125621 0.7555758 0.7555758 -0.9278974 0.7555758 0.7555758 -0.9429048 0.7555758 0.7555758 -0.9576028 0.7555758 0.7555758 -0.9720079 0.7555758 0.7555758 -0.9861357 0.7555758 0.7555758 -1 0.7555758 0.7555758 -0 0.7751122 0.7555758 -0.1939468 0.7751122 0.7555758 -0.2773041 0.7751122 0.7555758 -0.3384659 0.7751122 0.7555758 -0.3885728 0.7751122 0.7555758 -0.4317928 0.7751122 0.7555758 -0.470214 0.7751122 0.7555758 -0.5050551 0.7751122 0.7555758 -0.5370987 0.7751122 0.7555758 -0.5668815 0.7751122 0.7555758 -0.5947903 0.7751122 0.7555758 -0.6211144 0.7751122 0.7555758 -0.6460766 0.7751122 0.7555758 -0.6698526 0.7751122 0.7555758 -0.6925839 0.7751122 0.7555758 -0.7143866 0.7751122 0.7555758 -0.7353569 0.7751122 0.7555758 -0.7555758 0.7751122 0.7555758 -0.7751122 0.7751122 0.7555758 -0.7940252 0.7751122 0.7555758 -0.8123661 0.7751122 0.7555758 -0.8301795 0.7751122 0.7555758 -0.8475045 0.7751122 0.7555758 -0.8643761 0.7751122 0.7555758 -0.880825 0.7751122 0.7555758 -0.8968787 0.7751122 0.7555758 -0.9125621 0.7751122 0.7555758 -0.9278974 0.7751122 0.7555758 -0.9429048 0.7751122 0.7555758 -0.9576028 0.7751122 0.7555758 -0.9720079 0.7751122 0.7555758 -0.9861357 0.7751122 0.7555758 -1 0.7751122 0.7555758 -0 0.7940252 0.7555758 -0.1939468 0.7940252 0.7555758 -0.2773041 0.7940252 0.7555758 -0.3384659 0.7940252 0.7555758 -0.3885728 0.7940252 0.7555758 -0.4317928 0.7940252 0.7555758 -0.470214 0.7940252 0.7555758 -0.5050551 0.7940252 0.7555758 -0.5370987 0.7940252 0.7555758 -0.5668815 0.7940252 0.7555758 -0.5947903 0.7940252 0.7555758 -0.6211144 0.7940252 0.7555758 -0.6460766 0.7940252 0.7555758 -0.6698526 0.7940252 0.7555758 -0.6925839 0.7940252 0.7555758 -0.7143866 0.7940252 0.7555758 -0.7353569 0.7940252 0.7555758 -0.7555758 0.7940252 0.7555758 -0.7751122 0.7940252 0.7555758 -0.7940252 0.7940252 0.7555758 -0.8123661 0.7940252 0.7555758 -0.8301795 0.7940252 0.7555758 -0.8475045 0.7940252 0.7555758 -0.8643761 0.7940252 0.7555758 -0.880825 0.7940252 0.7555758 -0.8968787 0.7940252 0.7555758 -0.9125621 0.7940252 0.7555758 -0.9278974 0.7940252 0.7555758 -0.9429048 0.7940252 0.7555758 -0.9576028 0.7940252 0.7555758 -0.9720079 0.7940252 0.7555758 -0.9861357 0.7940252 0.7555758 -1 0.7940252 0.7555758 -0 0.8123661 0.7555758 -0.1939468 0.8123661 0.7555758 -0.2773041 0.8123661 0.7555758 -0.3384659 0.8123661 0.7555758 -0.3885728 0.8123661 0.7555758 -0.4317928 0.8123661 0.7555758 -0.470214 0.8123661 0.7555758 -0.5050551 0.8123661 0.7555758 -0.5370987 0.8123661 0.7555758 -0.5668815 0.8123661 0.7555758 -0.5947903 0.8123661 0.7555758 -0.6211144 0.8123661 0.7555758 -0.6460766 0.8123661 0.7555758 -0.6698526 0.8123661 0.7555758 -0.6925839 0.8123661 0.7555758 -0.7143866 0.8123661 0.7555758 -0.7353569 0.8123661 0.7555758 -0.7555758 0.8123661 0.7555758 -0.7751122 0.8123661 0.7555758 -0.7940252 0.8123661 0.7555758 -0.8123661 0.8123661 0.7555758 -0.8301795 0.8123661 0.7555758 -0.8475045 0.8123661 0.7555758 -0.8643761 0.8123661 0.7555758 -0.880825 0.8123661 0.7555758 -0.8968787 0.8123661 0.7555758 -0.9125621 0.8123661 0.7555758 -0.9278974 0.8123661 0.7555758 -0.9429048 0.8123661 0.7555758 -0.9576028 0.8123661 0.7555758 -0.9720079 0.8123661 0.7555758 -0.9861357 0.8123661 0.7555758 -1 0.8123661 0.7555758 -0 0.8301795 0.7555758 -0.1939468 0.8301795 0.7555758 -0.2773041 0.8301795 0.7555758 -0.3384659 0.8301795 0.7555758 -0.3885728 0.8301795 0.7555758 -0.4317928 0.8301795 0.7555758 -0.470214 0.8301795 0.7555758 -0.5050551 0.8301795 0.7555758 -0.5370987 0.8301795 0.7555758 -0.5668815 0.8301795 0.7555758 -0.5947903 0.8301795 0.7555758 -0.6211144 0.8301795 0.7555758 -0.6460766 0.8301795 0.7555758 -0.6698526 0.8301795 0.7555758 -0.6925839 0.8301795 0.7555758 -0.7143866 0.8301795 0.7555758 -0.7353569 0.8301795 0.7555758 -0.7555758 0.8301795 0.7555758 -0.7751122 0.8301795 0.7555758 -0.7940252 0.8301795 0.7555758 -0.8123661 0.8301795 0.7555758 -0.8301795 0.8301795 0.7555758 -0.8475045 0.8301795 0.7555758 -0.8643761 0.8301795 0.7555758 -0.880825 0.8301795 0.7555758 -0.8968787 0.8301795 0.7555758 -0.9125621 0.8301795 0.7555758 -0.9278974 0.8301795 0.7555758 -0.9429048 0.8301795 0.7555758 -0.9576028 0.8301795 0.7555758 -0.9720079 0.8301795 0.7555758 -0.9861357 0.8301795 0.7555758 -1 0.8301795 0.7555758 -0 0.8475045 0.7555758 -0.1939468 0.8475045 0.7555758 -0.2773041 0.8475045 0.7555758 -0.3384659 0.8475045 0.7555758 -0.3885728 0.8475045 0.7555758 -0.4317928 0.8475045 0.7555758 -0.470214 0.8475045 0.7555758 -0.5050551 0.8475045 0.7555758 -0.5370987 0.8475045 0.7555758 -0.5668815 0.8475045 0.7555758 -0.5947903 0.8475045 0.7555758 -0.6211144 0.8475045 0.7555758 -0.6460766 0.8475045 0.7555758 -0.6698526 0.8475045 0.7555758 -0.6925839 0.8475045 0.7555758 -0.7143866 0.8475045 0.7555758 -0.7353569 0.8475045 0.7555758 -0.7555758 0.8475045 0.7555758 -0.7751122 0.8475045 0.7555758 -0.7940252 0.8475045 0.7555758 -0.8123661 0.8475045 0.7555758 -0.8301795 0.8475045 0.7555758 -0.8475045 0.8475045 0.7555758 -0.8643761 0.8475045 0.7555758 -0.880825 0.8475045 0.7555758 -0.8968787 0.8475045 0.7555758 -0.9125621 0.8475045 0.7555758 -0.9278974 0.8475045 0.7555758 -0.9429048 0.8475045 0.7555758 -0.9576028 0.8475045 0.7555758 -0.9720079 0.8475045 0.7555758 -0.9861357 0.8475045 0.7555758 -1 0.8475045 0.7555758 -0 0.8643761 0.7555758 -0.1939468 0.8643761 0.7555758 -0.2773041 0.8643761 0.7555758 -0.3384659 0.8643761 0.7555758 -0.3885728 0.8643761 0.7555758 -0.4317928 0.8643761 0.7555758 -0.470214 0.8643761 0.7555758 -0.5050551 0.8643761 0.7555758 -0.5370987 0.8643761 0.7555758 -0.5668815 0.8643761 0.7555758 -0.5947903 0.8643761 0.7555758 -0.6211144 0.8643761 0.7555758 -0.6460766 0.8643761 0.7555758 -0.6698526 0.8643761 0.7555758 -0.6925839 0.8643761 0.7555758 -0.7143866 0.8643761 0.7555758 -0.7353569 0.8643761 0.7555758 -0.7555758 0.8643761 0.7555758 -0.7751122 0.8643761 0.7555758 -0.7940252 0.8643761 0.7555758 -0.8123661 0.8643761 0.7555758 -0.8301795 0.8643761 0.7555758 -0.8475045 0.8643761 0.7555758 -0.8643761 0.8643761 0.7555758 -0.880825 0.8643761 0.7555758 -0.8968787 0.8643761 0.7555758 -0.9125621 0.8643761 0.7555758 -0.9278974 0.8643761 0.7555758 -0.9429048 0.8643761 0.7555758 -0.9576028 0.8643761 0.7555758 -0.9720079 0.8643761 0.7555758 -0.9861357 0.8643761 0.7555758 -1 0.8643761 0.7555758 -0 0.880825 0.7555758 -0.1939468 0.880825 0.7555758 -0.2773041 0.880825 0.7555758 -0.3384659 0.880825 0.7555758 -0.3885728 0.880825 0.7555758 -0.4317928 0.880825 0.7555758 -0.470214 0.880825 0.7555758 -0.5050551 0.880825 0.7555758 -0.5370987 0.880825 0.7555758 -0.5668815 0.880825 0.7555758 -0.5947903 0.880825 0.7555758 -0.6211144 0.880825 0.7555758 -0.6460766 0.880825 0.7555758 -0.6698526 0.880825 0.7555758 -0.6925839 0.880825 0.7555758 -0.7143866 0.880825 0.7555758 -0.7353569 0.880825 0.7555758 -0.7555758 0.880825 0.7555758 -0.7751122 0.880825 0.7555758 -0.7940252 0.880825 0.7555758 -0.8123661 0.880825 0.7555758 -0.8301795 0.880825 0.7555758 -0.8475045 0.880825 0.7555758 -0.8643761 0.880825 0.7555758 -0.880825 0.880825 0.7555758 -0.8968787 0.880825 0.7555758 -0.9125621 0.880825 0.7555758 -0.9278974 0.880825 0.7555758 -0.9429048 0.880825 0.7555758 -0.9576028 0.880825 0.7555758 -0.9720079 0.880825 0.7555758 -0.9861357 0.880825 0.7555758 -1 0.880825 0.7555758 -0 0.8968787 0.7555758 -0.1939468 0.8968787 0.7555758 -0.2773041 0.8968787 0.7555758 -0.3384659 0.8968787 0.7555758 -0.3885728 0.8968787 0.7555758 -0.4317928 0.8968787 0.7555758 -0.470214 0.8968787 0.7555758 -0.5050551 0.8968787 0.7555758 -0.5370987 0.8968787 0.7555758 -0.5668815 0.8968787 0.7555758 -0.5947903 0.8968787 0.7555758 -0.6211144 0.8968787 0.7555758 -0.6460766 0.8968787 0.7555758 -0.6698526 0.8968787 0.7555758 -0.6925839 0.8968787 0.7555758 -0.7143866 0.8968787 0.7555758 -0.7353569 0.8968787 0.7555758 -0.7555758 0.8968787 0.7555758 -0.7751122 0.8968787 0.7555758 -0.7940252 0.8968787 0.7555758 -0.8123661 0.8968787 0.7555758 -0.8301795 0.8968787 0.7555758 -0.8475045 0.8968787 0.7555758 -0.8643761 0.8968787 0.7555758 -0.880825 0.8968787 0.7555758 -0.8968787 0.8968787 0.7555758 -0.9125621 0.8968787 0.7555758 -0.9278974 0.8968787 0.7555758 -0.9429048 0.8968787 0.7555758 -0.9576028 0.8968787 0.7555758 -0.9720079 0.8968787 0.7555758 -0.9861357 0.8968787 0.7555758 -1 0.8968787 0.7555758 -0 0.9125621 0.7555758 -0.1939468 0.9125621 0.7555758 -0.2773041 0.9125621 0.7555758 -0.3384659 0.9125621 0.7555758 -0.3885728 0.9125621 0.7555758 -0.4317928 0.9125621 0.7555758 -0.470214 0.9125621 0.7555758 -0.5050551 0.9125621 0.7555758 -0.5370987 0.9125621 0.7555758 -0.5668815 0.9125621 0.7555758 -0.5947903 0.9125621 0.7555758 -0.6211144 0.9125621 0.7555758 -0.6460766 0.9125621 0.7555758 -0.6698526 0.9125621 0.7555758 -0.6925839 0.9125621 0.7555758 -0.7143866 0.9125621 0.7555758 -0.7353569 0.9125621 0.7555758 -0.7555758 0.9125621 0.7555758 -0.7751122 0.9125621 0.7555758 -0.7940252 0.9125621 0.7555758 -0.8123661 0.9125621 0.7555758 -0.8301795 0.9125621 0.7555758 -0.8475045 0.9125621 0.7555758 -0.8643761 0.9125621 0.7555758 -0.880825 0.9125621 0.7555758 -0.8968787 0.9125621 0.7555758 -0.9125621 0.9125621 0.7555758 -0.9278974 0.9125621 0.7555758 -0.9429048 0.9125621 0.7555758 -0.9576028 0.9125621 0.7555758 -0.9720079 0.9125621 0.7555758 -0.9861357 0.9125621 0.7555758 -1 0.9125621 0.7555758 -0 0.9278974 0.7555758 -0.1939468 0.9278974 0.7555758 -0.2773041 0.9278974 0.7555758 -0.3384659 0.9278974 0.7555758 -0.3885728 0.9278974 0.7555758 -0.4317928 0.9278974 0.7555758 -0.470214 0.9278974 0.7555758 -0.5050551 0.9278974 0.7555758 -0.5370987 0.9278974 0.7555758 -0.5668815 0.9278974 0.7555758 -0.5947903 0.9278974 0.7555758 -0.6211144 0.9278974 0.7555758 -0.6460766 0.9278974 0.7555758 -0.6698526 0.9278974 0.7555758 -0.6925839 0.9278974 0.7555758 -0.7143866 0.9278974 0.7555758 -0.7353569 0.9278974 0.7555758 -0.7555758 0.9278974 0.7555758 -0.7751122 0.9278974 0.7555758 -0.7940252 0.9278974 0.7555758 -0.8123661 0.9278974 0.7555758 -0.8301795 0.9278974 0.7555758 -0.8475045 0.9278974 0.7555758 -0.8643761 0.9278974 0.7555758 -0.880825 0.9278974 0.7555758 -0.8968787 0.9278974 0.7555758 -0.9125621 0.9278974 0.7555758 -0.9278974 0.9278974 0.7555758 -0.9429048 0.9278974 0.7555758 -0.9576028 0.9278974 0.7555758 -0.9720079 0.9278974 0.7555758 -0.9861357 0.9278974 0.7555758 -1 0.9278974 0.7555758 -0 0.9429048 0.7555758 -0.1939468 0.9429048 0.7555758 -0.2773041 0.9429048 0.7555758 -0.3384659 0.9429048 0.7555758 -0.3885728 0.9429048 0.7555758 -0.4317928 0.9429048 0.7555758 -0.470214 0.9429048 0.7555758 -0.5050551 0.9429048 0.7555758 -0.5370987 0.9429048 0.7555758 -0.5668815 0.9429048 0.7555758 -0.5947903 0.9429048 0.7555758 -0.6211144 0.9429048 0.7555758 -0.6460766 0.9429048 0.7555758 -0.6698526 0.9429048 0.7555758 -0.6925839 0.9429048 0.7555758 -0.7143866 0.9429048 0.7555758 -0.7353569 0.9429048 0.7555758 -0.7555758 0.9429048 0.7555758 -0.7751122 0.9429048 0.7555758 -0.7940252 0.9429048 0.7555758 -0.8123661 0.9429048 0.7555758 -0.8301795 0.9429048 0.7555758 -0.8475045 0.9429048 0.7555758 -0.8643761 0.9429048 0.7555758 -0.880825 0.9429048 0.7555758 -0.8968787 0.9429048 0.7555758 -0.9125621 0.9429048 0.7555758 -0.9278974 0.9429048 0.7555758 -0.9429048 0.9429048 0.7555758 -0.9576028 0.9429048 0.7555758 -0.9720079 0.9429048 0.7555758 -0.9861357 0.9429048 0.7555758 -1 0.9429048 0.7555758 -0 0.9576028 0.7555758 -0.1939468 0.9576028 0.7555758 -0.2773041 0.9576028 0.7555758 -0.3384659 0.9576028 0.7555758 -0.3885728 0.9576028 0.7555758 -0.4317928 0.9576028 0.7555758 -0.470214 0.9576028 0.7555758 -0.5050551 0.9576028 0.7555758 -0.5370987 0.9576028 0.7555758 -0.5668815 0.9576028 0.7555758 -0.5947903 0.9576028 0.7555758 -0.6211144 0.9576028 0.7555758 -0.6460766 0.9576028 0.7555758 -0.6698526 0.9576028 0.7555758 -0.6925839 0.9576028 0.7555758 -0.7143866 0.9576028 0.7555758 -0.7353569 0.9576028 0.7555758 -0.7555758 0.9576028 0.7555758 -0.7751122 0.9576028 0.7555758 -0.7940252 0.9576028 0.7555758 -0.8123661 0.9576028 0.7555758 -0.8301795 0.9576028 0.7555758 -0.8475045 0.9576028 0.7555758 -0.8643761 0.9576028 0.7555758 -0.880825 0.9576028 0.7555758 -0.8968787 0.9576028 0.7555758 -0.9125621 0.9576028 0.7555758 -0.9278974 0.9576028 0.7555758 -0.9429048 0.9576028 0.7555758 -0.9576028 0.9576028 0.7555758 -0.9720079 0.9576028 0.7555758 -0.9861357 0.9576028 0.7555758 -1 0.9576028 0.7555758 -0 0.9720079 0.7555758 -0.1939468 0.9720079 0.7555758 -0.2773041 0.9720079 0.7555758 -0.3384659 0.9720079 0.7555758 -0.3885728 0.9720079 0.7555758 -0.4317928 0.9720079 0.7555758 -0.470214 0.9720079 0.7555758 -0.5050551 0.9720079 0.7555758 -0.5370987 0.9720079 0.7555758 -0.5668815 0.9720079 0.7555758 -0.5947903 0.9720079 0.7555758 -0.6211144 0.9720079 0.7555758 -0.6460766 0.9720079 0.7555758 -0.6698526 0.9720079 0.7555758 -0.6925839 0.9720079 0.7555758 -0.7143866 0.9720079 0.7555758 -0.7353569 0.9720079 0.7555758 -0.7555758 0.9720079 0.7555758 -0.7751122 0.9720079 0.7555758 -0.7940252 0.9720079 0.7555758 -0.8123661 0.9720079 0.7555758 -0.8301795 0.9720079 0.7555758 -0.8475045 0.9720079 0.7555758 -0.8643761 0.9720079 0.7555758 -0.880825 0.9720079 0.7555758 -0.8968787 0.9720079 0.7555758 -0.9125621 0.9720079 0.7555758 -0.9278974 0.9720079 0.7555758 -0.9429048 0.9720079 0.7555758 -0.9576028 0.9720079 0.7555758 -0.9720079 0.9720079 0.7555758 -0.9861357 0.9720079 0.7555758 -1 0.9720079 0.7555758 -0 0.9861357 0.7555758 -0.1939468 0.9861357 0.7555758 -0.2773041 0.9861357 0.7555758 -0.3384659 0.9861357 0.7555758 -0.3885728 0.9861357 0.7555758 -0.4317928 0.9861357 0.7555758 -0.470214 0.9861357 0.7555758 -0.5050551 0.9861357 0.7555758 -0.5370987 0.9861357 0.7555758 -0.5668815 0.9861357 0.7555758 -0.5947903 0.9861357 0.7555758 -0.6211144 0.9861357 0.7555758 -0.6460766 0.9861357 0.7555758 -0.6698526 0.9861357 0.7555758 -0.6925839 0.9861357 0.7555758 -0.7143866 0.9861357 0.7555758 -0.7353569 0.9861357 0.7555758 -0.7555758 0.9861357 0.7555758 -0.7751122 0.9861357 0.7555758 -0.7940252 0.9861357 0.7555758 -0.8123661 0.9861357 0.7555758 -0.8301795 0.9861357 0.7555758 -0.8475045 0.9861357 0.7555758 -0.8643761 0.9861357 0.7555758 -0.880825 0.9861357 0.7555758 -0.8968787 0.9861357 0.7555758 -0.9125621 0.9861357 0.7555758 -0.9278974 0.9861357 0.7555758 -0.9429048 0.9861357 0.7555758 -0.9576028 0.9861357 0.7555758 -0.9720079 0.9861357 0.7555758 -0.9861357 0.9861357 0.7555758 -1 0.9861357 0.7555758 -0 1 0.7555758 -0.1939468 1 0.7555758 -0.2773041 1 0.7555758 -0.3384659 1 0.7555758 -0.3885728 1 0.7555758 -0.4317928 1 0.7555758 -0.470214 1 0.7555758 -0.5050551 1 0.7555758 -0.5370987 1 0.7555758 -0.5668815 1 0.7555758 -0.5947903 1 0.7555758 -0.6211144 1 0.7555758 -0.6460766 1 0.7555758 -0.6698526 1 0.7555758 -0.6925839 1 0.7555758 -0.7143866 1 0.7555758 -0.7353569 1 0.7555758 -0.7555758 1 0.7555758 -0.7751122 1 0.7555758 -0.7940252 1 0.7555758 -0.8123661 1 0.7555758 -0.8301795 1 0.7555758 -0.8475045 1 0.7555758 -0.8643761 1 0.7555758 -0.880825 1 0.7555758 -0.8968787 1 0.7555758 -0.9125621 1 0.7555758 -0.9278974 1 0.7555758 -0.9429048 1 0.7555758 -0.9576028 1 0.7555758 -0.9720079 1 0.7555758 -0.9861357 1 0.7555758 -1 1 0.7555758 -0 0 0.7751122 -0.1939468 0 0.7751122 -0.2773041 0 0.7751122 -0.3384659 0 0.7751122 -0.3885728 0 0.7751122 -0.4317928 0 0.7751122 -0.470214 0 0.7751122 -0.5050551 0 0.7751122 -0.5370987 0 0.7751122 -0.5668815 0 0.7751122 -0.5947903 0 0.7751122 -0.6211144 0 0.7751122 -0.6460766 0 0.7751122 -0.6698526 0 0.7751122 -0.6925839 0 0.7751122 -0.7143866 0 0.7751122 -0.7353569 0 0.7751122 -0.7555758 0 0.7751122 -0.7751122 0 0.7751122 -0.7940252 0 0.7751122 -0.8123661 0 0.7751122 -0.8301795 0 0.7751122 -0.8475045 0 0.7751122 -0.8643761 0 0.7751122 -0.880825 0 0.7751122 -0.8968787 0 0.7751122 -0.9125621 0 0.7751122 -0.9278974 0 0.7751122 -0.9429048 0 0.7751122 -0.9576028 0 0.7751122 -0.9720079 0 0.7751122 -0.9861357 0 0.7751122 -1 0 0.7751122 -0 0.1939468 0.7751122 -0.1939468 0.1939468 0.7751122 -0.2773041 0.1939468 0.7751122 -0.3384659 0.1939468 0.7751122 -0.3885728 0.1939468 0.7751122 -0.4317928 0.1939468 0.7751122 -0.470214 0.1939468 0.7751122 -0.5050551 0.1939468 0.7751122 -0.5370987 0.1939468 0.7751122 -0.5668815 0.1939468 0.7751122 -0.5947903 0.1939468 0.7751122 -0.6211144 0.1939468 0.7751122 -0.6460766 0.1939468 0.7751122 -0.6698526 0.1939468 0.7751122 -0.6925839 0.1939468 0.7751122 -0.7143866 0.1939468 0.7751122 -0.7353569 0.1939468 0.7751122 -0.7555758 0.1939468 0.7751122 -0.7751122 0.1939468 0.7751122 -0.7940252 0.1939468 0.7751122 -0.8123661 0.1939468 0.7751122 -0.8301795 0.1939468 0.7751122 -0.8475045 0.1939468 0.7751122 -0.8643761 0.1939468 0.7751122 -0.880825 0.1939468 0.7751122 -0.8968787 0.1939468 0.7751122 -0.9125621 0.1939468 0.7751122 -0.9278974 0.1939468 0.7751122 -0.9429048 0.1939468 0.7751122 -0.9576028 0.1939468 0.7751122 -0.9720079 0.1939468 0.7751122 -0.9861357 0.1939468 0.7751122 -1 0.1939468 0.7751122 -0 0.2773041 0.7751122 -0.1939468 0.2773041 0.7751122 -0.2773041 0.2773041 0.7751122 -0.3384659 0.2773041 0.7751122 -0.3885728 0.2773041 0.7751122 -0.4317928 0.2773041 0.7751122 -0.470214 0.2773041 0.7751122 -0.5050551 0.2773041 0.7751122 -0.5370987 0.2773041 0.7751122 -0.5668815 0.2773041 0.7751122 -0.5947903 0.2773041 0.7751122 -0.6211144 0.2773041 0.7751122 -0.6460766 0.2773041 0.7751122 -0.6698526 0.2773041 0.7751122 -0.6925839 0.2773041 0.7751122 -0.7143866 0.2773041 0.7751122 -0.7353569 0.2773041 0.7751122 -0.7555758 0.2773041 0.7751122 -0.7751122 0.2773041 0.7751122 -0.7940252 0.2773041 0.7751122 -0.8123661 0.2773041 0.7751122 -0.8301795 0.2773041 0.7751122 -0.8475045 0.2773041 0.7751122 -0.8643761 0.2773041 0.7751122 -0.880825 0.2773041 0.7751122 -0.8968787 0.2773041 0.7751122 -0.9125621 0.2773041 0.7751122 -0.9278974 0.2773041 0.7751122 -0.9429048 0.2773041 0.7751122 -0.9576028 0.2773041 0.7751122 -0.9720079 0.2773041 0.7751122 -0.9861357 0.2773041 0.7751122 -1 0.2773041 0.7751122 -0 0.3384659 0.7751122 -0.1939468 0.3384659 0.7751122 -0.2773041 0.3384659 0.7751122 -0.3384659 0.3384659 0.7751122 -0.3885728 0.3384659 0.7751122 -0.4317928 0.3384659 0.7751122 -0.470214 0.3384659 0.7751122 -0.5050551 0.3384659 0.7751122 -0.5370987 0.3384659 0.7751122 -0.5668815 0.3384659 0.7751122 -0.5947903 0.3384659 0.7751122 -0.6211144 0.3384659 0.7751122 -0.6460766 0.3384659 0.7751122 -0.6698526 0.3384659 0.7751122 -0.6925839 0.3384659 0.7751122 -0.7143866 0.3384659 0.7751122 -0.7353569 0.3384659 0.7751122 -0.7555758 0.3384659 0.7751122 -0.7751122 0.3384659 0.7751122 -0.7940252 0.3384659 0.7751122 -0.8123661 0.3384659 0.7751122 -0.8301795 0.3384659 0.7751122 -0.8475045 0.3384659 0.7751122 -0.8643761 0.3384659 0.7751122 -0.880825 0.3384659 0.7751122 -0.8968787 0.3384659 0.7751122 -0.9125621 0.3384659 0.7751122 -0.9278974 0.3384659 0.7751122 -0.9429048 0.3384659 0.7751122 -0.9576028 0.3384659 0.7751122 -0.9720079 0.3384659 0.7751122 -0.9861357 0.3384659 0.7751122 -1 0.3384659 0.7751122 -0 0.3885728 0.7751122 -0.1939468 0.3885728 0.7751122 -0.2773041 0.3885728 0.7751122 -0.3384659 0.3885728 0.7751122 -0.3885728 0.3885728 0.7751122 -0.4317928 0.3885728 0.7751122 -0.470214 0.3885728 0.7751122 -0.5050551 0.3885728 0.7751122 -0.5370987 0.3885728 0.7751122 -0.5668815 0.3885728 0.7751122 -0.5947903 0.3885728 0.7751122 -0.6211144 0.3885728 0.7751122 -0.6460766 0.3885728 0.7751122 -0.6698526 0.3885728 0.7751122 -0.6925839 0.3885728 0.7751122 -0.7143866 0.3885728 0.7751122 -0.7353569 0.3885728 0.7751122 -0.7555758 0.3885728 0.7751122 -0.7751122 0.3885728 0.7751122 -0.7940252 0.3885728 0.7751122 -0.8123661 0.3885728 0.7751122 -0.8301795 0.3885728 0.7751122 -0.8475045 0.3885728 0.7751122 -0.8643761 0.3885728 0.7751122 -0.880825 0.3885728 0.7751122 -0.8968787 0.3885728 0.7751122 -0.9125621 0.3885728 0.7751122 -0.9278974 0.3885728 0.7751122 -0.9429048 0.3885728 0.7751122 -0.9576028 0.3885728 0.7751122 -0.9720079 0.3885728 0.7751122 -0.9861357 0.3885728 0.7751122 -1 0.3885728 0.7751122 -0 0.4317928 0.7751122 -0.1939468 0.4317928 0.7751122 -0.2773041 0.4317928 0.7751122 -0.3384659 0.4317928 0.7751122 -0.3885728 0.4317928 0.7751122 -0.4317928 0.4317928 0.7751122 -0.470214 0.4317928 0.7751122 -0.5050551 0.4317928 0.7751122 -0.5370987 0.4317928 0.7751122 -0.5668815 0.4317928 0.7751122 -0.5947903 0.4317928 0.7751122 -0.6211144 0.4317928 0.7751122 -0.6460766 0.4317928 0.7751122 -0.6698526 0.4317928 0.7751122 -0.6925839 0.4317928 0.7751122 -0.7143866 0.4317928 0.7751122 -0.7353569 0.4317928 0.7751122 -0.7555758 0.4317928 0.7751122 -0.7751122 0.4317928 0.7751122 -0.7940252 0.4317928 0.7751122 -0.8123661 0.4317928 0.7751122 -0.8301795 0.4317928 0.7751122 -0.8475045 0.4317928 0.7751122 -0.8643761 0.4317928 0.7751122 -0.880825 0.4317928 0.7751122 -0.8968787 0.4317928 0.7751122 -0.9125621 0.4317928 0.7751122 -0.9278974 0.4317928 0.7751122 -0.9429048 0.4317928 0.7751122 -0.9576028 0.4317928 0.7751122 -0.9720079 0.4317928 0.7751122 -0.9861357 0.4317928 0.7751122 -1 0.4317928 0.7751122 -0 0.470214 0.7751122 -0.1939468 0.470214 0.7751122 -0.2773041 0.470214 0.7751122 -0.3384659 0.470214 0.7751122 -0.3885728 0.470214 0.7751122 -0.4317928 0.470214 0.7751122 -0.470214 0.470214 0.7751122 -0.5050551 0.470214 0.7751122 -0.5370987 0.470214 0.7751122 -0.5668815 0.470214 0.7751122 -0.5947903 0.470214 0.7751122 -0.6211144 0.470214 0.7751122 -0.6460766 0.470214 0.7751122 -0.6698526 0.470214 0.7751122 -0.6925839 0.470214 0.7751122 -0.7143866 0.470214 0.7751122 -0.7353569 0.470214 0.7751122 -0.7555758 0.470214 0.7751122 -0.7751122 0.470214 0.7751122 -0.7940252 0.470214 0.7751122 -0.8123661 0.470214 0.7751122 -0.8301795 0.470214 0.7751122 -0.8475045 0.470214 0.7751122 -0.8643761 0.470214 0.7751122 -0.880825 0.470214 0.7751122 -0.8968787 0.470214 0.7751122 -0.9125621 0.470214 0.7751122 -0.9278974 0.470214 0.7751122 -0.9429048 0.470214 0.7751122 -0.9576028 0.470214 0.7751122 -0.9720079 0.470214 0.7751122 -0.9861357 0.470214 0.7751122 -1 0.470214 0.7751122 -0 0.5050551 0.7751122 -0.1939468 0.5050551 0.7751122 -0.2773041 0.5050551 0.7751122 -0.3384659 0.5050551 0.7751122 -0.3885728 0.5050551 0.7751122 -0.4317928 0.5050551 0.7751122 -0.470214 0.5050551 0.7751122 -0.5050551 0.5050551 0.7751122 -0.5370987 0.5050551 0.7751122 -0.5668815 0.5050551 0.7751122 -0.5947903 0.5050551 0.7751122 -0.6211144 0.5050551 0.7751122 -0.6460766 0.5050551 0.7751122 -0.6698526 0.5050551 0.7751122 -0.6925839 0.5050551 0.7751122 -0.7143866 0.5050551 0.7751122 -0.7353569 0.5050551 0.7751122 -0.7555758 0.5050551 0.7751122 -0.7751122 0.5050551 0.7751122 -0.7940252 0.5050551 0.7751122 -0.8123661 0.5050551 0.7751122 -0.8301795 0.5050551 0.7751122 -0.8475045 0.5050551 0.7751122 -0.8643761 0.5050551 0.7751122 -0.880825 0.5050551 0.7751122 -0.8968787 0.5050551 0.7751122 -0.9125621 0.5050551 0.7751122 -0.9278974 0.5050551 0.7751122 -0.9429048 0.5050551 0.7751122 -0.9576028 0.5050551 0.7751122 -0.9720079 0.5050551 0.7751122 -0.9861357 0.5050551 0.7751122 -1 0.5050551 0.7751122 -0 0.5370987 0.7751122 -0.1939468 0.5370987 0.7751122 -0.2773041 0.5370987 0.7751122 -0.3384659 0.5370987 0.7751122 -0.3885728 0.5370987 0.7751122 -0.4317928 0.5370987 0.7751122 -0.470214 0.5370987 0.7751122 -0.5050551 0.5370987 0.7751122 -0.5370987 0.5370987 0.7751122 -0.5668815 0.5370987 0.7751122 -0.5947903 0.5370987 0.7751122 -0.6211144 0.5370987 0.7751122 -0.6460766 0.5370987 0.7751122 -0.6698526 0.5370987 0.7751122 -0.6925839 0.5370987 0.7751122 -0.7143866 0.5370987 0.7751122 -0.7353569 0.5370987 0.7751122 -0.7555758 0.5370987 0.7751122 -0.7751122 0.5370987 0.7751122 -0.7940252 0.5370987 0.7751122 -0.8123661 0.5370987 0.7751122 -0.8301795 0.5370987 0.7751122 -0.8475045 0.5370987 0.7751122 -0.8643761 0.5370987 0.7751122 -0.880825 0.5370987 0.7751122 -0.8968787 0.5370987 0.7751122 -0.9125621 0.5370987 0.7751122 -0.9278974 0.5370987 0.7751122 -0.9429048 0.5370987 0.7751122 -0.9576028 0.5370987 0.7751122 -0.9720079 0.5370987 0.7751122 -0.9861357 0.5370987 0.7751122 -1 0.5370987 0.7751122 -0 0.5668815 0.7751122 -0.1939468 0.5668815 0.7751122 -0.2773041 0.5668815 0.7751122 -0.3384659 0.5668815 0.7751122 -0.3885728 0.5668815 0.7751122 -0.4317928 0.5668815 0.7751122 -0.470214 0.5668815 0.7751122 -0.5050551 0.5668815 0.7751122 -0.5370987 0.5668815 0.7751122 -0.5668815 0.5668815 0.7751122 -0.5947903 0.5668815 0.7751122 -0.6211144 0.5668815 0.7751122 -0.6460766 0.5668815 0.7751122 -0.6698526 0.5668815 0.7751122 -0.6925839 0.5668815 0.7751122 -0.7143866 0.5668815 0.7751122 -0.7353569 0.5668815 0.7751122 -0.7555758 0.5668815 0.7751122 -0.7751122 0.5668815 0.7751122 -0.7940252 0.5668815 0.7751122 -0.8123661 0.5668815 0.7751122 -0.8301795 0.5668815 0.7751122 -0.8475045 0.5668815 0.7751122 -0.8643761 0.5668815 0.7751122 -0.880825 0.5668815 0.7751122 -0.8968787 0.5668815 0.7751122 -0.9125621 0.5668815 0.7751122 -0.9278974 0.5668815 0.7751122 -0.9429048 0.5668815 0.7751122 -0.9576028 0.5668815 0.7751122 -0.9720079 0.5668815 0.7751122 -0.9861357 0.5668815 0.7751122 -1 0.5668815 0.7751122 -0 0.5947903 0.7751122 -0.1939468 0.5947903 0.7751122 -0.2773041 0.5947903 0.7751122 -0.3384659 0.5947903 0.7751122 -0.3885728 0.5947903 0.7751122 -0.4317928 0.5947903 0.7751122 -0.470214 0.5947903 0.7751122 -0.5050551 0.5947903 0.7751122 -0.5370987 0.5947903 0.7751122 -0.5668815 0.5947903 0.7751122 -0.5947903 0.5947903 0.7751122 -0.6211144 0.5947903 0.7751122 -0.6460766 0.5947903 0.7751122 -0.6698526 0.5947903 0.7751122 -0.6925839 0.5947903 0.7751122 -0.7143866 0.5947903 0.7751122 -0.7353569 0.5947903 0.7751122 -0.7555758 0.5947903 0.7751122 -0.7751122 0.5947903 0.7751122 -0.7940252 0.5947903 0.7751122 -0.8123661 0.5947903 0.7751122 -0.8301795 0.5947903 0.7751122 -0.8475045 0.5947903 0.7751122 -0.8643761 0.5947903 0.7751122 -0.880825 0.5947903 0.7751122 -0.8968787 0.5947903 0.7751122 -0.9125621 0.5947903 0.7751122 -0.9278974 0.5947903 0.7751122 -0.9429048 0.5947903 0.7751122 -0.9576028 0.5947903 0.7751122 -0.9720079 0.5947903 0.7751122 -0.9861357 0.5947903 0.7751122 -1 0.5947903 0.7751122 -0 0.6211144 0.7751122 -0.1939468 0.6211144 0.7751122 -0.2773041 0.6211144 0.7751122 -0.3384659 0.6211144 0.7751122 -0.3885728 0.6211144 0.7751122 -0.4317928 0.6211144 0.7751122 -0.470214 0.6211144 0.7751122 -0.5050551 0.6211144 0.7751122 -0.5370987 0.6211144 0.7751122 -0.5668815 0.6211144 0.7751122 -0.5947903 0.6211144 0.7751122 -0.6211144 0.6211144 0.7751122 -0.6460766 0.6211144 0.7751122 -0.6698526 0.6211144 0.7751122 -0.6925839 0.6211144 0.7751122 -0.7143866 0.6211144 0.7751122 -0.7353569 0.6211144 0.7751122 -0.7555758 0.6211144 0.7751122 -0.7751122 0.6211144 0.7751122 -0.7940252 0.6211144 0.7751122 -0.8123661 0.6211144 0.7751122 -0.8301795 0.6211144 0.7751122 -0.8475045 0.6211144 0.7751122 -0.8643761 0.6211144 0.7751122 -0.880825 0.6211144 0.7751122 -0.8968787 0.6211144 0.7751122 -0.9125621 0.6211144 0.7751122 -0.9278974 0.6211144 0.7751122 -0.9429048 0.6211144 0.7751122 -0.9576028 0.6211144 0.7751122 -0.9720079 0.6211144 0.7751122 -0.9861357 0.6211144 0.7751122 -1 0.6211144 0.7751122 -0 0.6460766 0.7751122 -0.1939468 0.6460766 0.7751122 -0.2773041 0.6460766 0.7751122 -0.3384659 0.6460766 0.7751122 -0.3885728 0.6460766 0.7751122 -0.4317928 0.6460766 0.7751122 -0.470214 0.6460766 0.7751122 -0.5050551 0.6460766 0.7751122 -0.5370987 0.6460766 0.7751122 -0.5668815 0.6460766 0.7751122 -0.5947903 0.6460766 0.7751122 -0.6211144 0.6460766 0.7751122 -0.6460766 0.6460766 0.7751122 -0.6698526 0.6460766 0.7751122 -0.6925839 0.6460766 0.7751122 -0.7143866 0.6460766 0.7751122 -0.7353569 0.6460766 0.7751122 -0.7555758 0.6460766 0.7751122 -0.7751122 0.6460766 0.7751122 -0.7940252 0.6460766 0.7751122 -0.8123661 0.6460766 0.7751122 -0.8301795 0.6460766 0.7751122 -0.8475045 0.6460766 0.7751122 -0.8643761 0.6460766 0.7751122 -0.880825 0.6460766 0.7751122 -0.8968787 0.6460766 0.7751122 -0.9125621 0.6460766 0.7751122 -0.9278974 0.6460766 0.7751122 -0.9429048 0.6460766 0.7751122 -0.9576028 0.6460766 0.7751122 -0.9720079 0.6460766 0.7751122 -0.9861357 0.6460766 0.7751122 -1 0.6460766 0.7751122 -0 0.6698526 0.7751122 -0.1939468 0.6698526 0.7751122 -0.2773041 0.6698526 0.7751122 -0.3384659 0.6698526 0.7751122 -0.3885728 0.6698526 0.7751122 -0.4317928 0.6698526 0.7751122 -0.470214 0.6698526 0.7751122 -0.5050551 0.6698526 0.7751122 -0.5370987 0.6698526 0.7751122 -0.5668815 0.6698526 0.7751122 -0.5947903 0.6698526 0.7751122 -0.6211144 0.6698526 0.7751122 -0.6460766 0.6698526 0.7751122 -0.6698526 0.6698526 0.7751122 -0.6925839 0.6698526 0.7751122 -0.7143866 0.6698526 0.7751122 -0.7353569 0.6698526 0.7751122 -0.7555758 0.6698526 0.7751122 -0.7751122 0.6698526 0.7751122 -0.7940252 0.6698526 0.7751122 -0.8123661 0.6698526 0.7751122 -0.8301795 0.6698526 0.7751122 -0.8475045 0.6698526 0.7751122 -0.8643761 0.6698526 0.7751122 -0.880825 0.6698526 0.7751122 -0.8968787 0.6698526 0.7751122 -0.9125621 0.6698526 0.7751122 -0.9278974 0.6698526 0.7751122 -0.9429048 0.6698526 0.7751122 -0.9576028 0.6698526 0.7751122 -0.9720079 0.6698526 0.7751122 -0.9861357 0.6698526 0.7751122 -1 0.6698526 0.7751122 -0 0.6925839 0.7751122 -0.1939468 0.6925839 0.7751122 -0.2773041 0.6925839 0.7751122 -0.3384659 0.6925839 0.7751122 -0.3885728 0.6925839 0.7751122 -0.4317928 0.6925839 0.7751122 -0.470214 0.6925839 0.7751122 -0.5050551 0.6925839 0.7751122 -0.5370987 0.6925839 0.7751122 -0.5668815 0.6925839 0.7751122 -0.5947903 0.6925839 0.7751122 -0.6211144 0.6925839 0.7751122 -0.6460766 0.6925839 0.7751122 -0.6698526 0.6925839 0.7751122 -0.6925839 0.6925839 0.7751122 -0.7143866 0.6925839 0.7751122 -0.7353569 0.6925839 0.7751122 -0.7555758 0.6925839 0.7751122 -0.7751122 0.6925839 0.7751122 -0.7940252 0.6925839 0.7751122 -0.8123661 0.6925839 0.7751122 -0.8301795 0.6925839 0.7751122 -0.8475045 0.6925839 0.7751122 -0.8643761 0.6925839 0.7751122 -0.880825 0.6925839 0.7751122 -0.8968787 0.6925839 0.7751122 -0.9125621 0.6925839 0.7751122 -0.9278974 0.6925839 0.7751122 -0.9429048 0.6925839 0.7751122 -0.9576028 0.6925839 0.7751122 -0.9720079 0.6925839 0.7751122 -0.9861357 0.6925839 0.7751122 -1 0.6925839 0.7751122 -0 0.7143866 0.7751122 -0.1939468 0.7143866 0.7751122 -0.2773041 0.7143866 0.7751122 -0.3384659 0.7143866 0.7751122 -0.3885728 0.7143866 0.7751122 -0.4317928 0.7143866 0.7751122 -0.470214 0.7143866 0.7751122 -0.5050551 0.7143866 0.7751122 -0.5370987 0.7143866 0.7751122 -0.5668815 0.7143866 0.7751122 -0.5947903 0.7143866 0.7751122 -0.6211144 0.7143866 0.7751122 -0.6460766 0.7143866 0.7751122 -0.6698526 0.7143866 0.7751122 -0.6925839 0.7143866 0.7751122 -0.7143866 0.7143866 0.7751122 -0.7353569 0.7143866 0.7751122 -0.7555758 0.7143866 0.7751122 -0.7751122 0.7143866 0.7751122 -0.7940252 0.7143866 0.7751122 -0.8123661 0.7143866 0.7751122 -0.8301795 0.7143866 0.7751122 -0.8475045 0.7143866 0.7751122 -0.8643761 0.7143866 0.7751122 -0.880825 0.7143866 0.7751122 -0.8968787 0.7143866 0.7751122 -0.9125621 0.7143866 0.7751122 -0.9278974 0.7143866 0.7751122 -0.9429048 0.7143866 0.7751122 -0.9576028 0.7143866 0.7751122 -0.9720079 0.7143866 0.7751122 -0.9861357 0.7143866 0.7751122 -1 0.7143866 0.7751122 -0 0.7353569 0.7751122 -0.1939468 0.7353569 0.7751122 -0.2773041 0.7353569 0.7751122 -0.3384659 0.7353569 0.7751122 -0.3885728 0.7353569 0.7751122 -0.4317928 0.7353569 0.7751122 -0.470214 0.7353569 0.7751122 -0.5050551 0.7353569 0.7751122 -0.5370987 0.7353569 0.7751122 -0.5668815 0.7353569 0.7751122 -0.5947903 0.7353569 0.7751122 -0.6211144 0.7353569 0.7751122 -0.6460766 0.7353569 0.7751122 -0.6698526 0.7353569 0.7751122 -0.6925839 0.7353569 0.7751122 -0.7143866 0.7353569 0.7751122 -0.7353569 0.7353569 0.7751122 -0.7555758 0.7353569 0.7751122 -0.7751122 0.7353569 0.7751122 -0.7940252 0.7353569 0.7751122 -0.8123661 0.7353569 0.7751122 -0.8301795 0.7353569 0.7751122 -0.8475045 0.7353569 0.7751122 -0.8643761 0.7353569 0.7751122 -0.880825 0.7353569 0.7751122 -0.8968787 0.7353569 0.7751122 -0.9125621 0.7353569 0.7751122 -0.9278974 0.7353569 0.7751122 -0.9429048 0.7353569 0.7751122 -0.9576028 0.7353569 0.7751122 -0.9720079 0.7353569 0.7751122 -0.9861357 0.7353569 0.7751122 -1 0.7353569 0.7751122 -0 0.7555758 0.7751122 -0.1939468 0.7555758 0.7751122 -0.2773041 0.7555758 0.7751122 -0.3384659 0.7555758 0.7751122 -0.3885728 0.7555758 0.7751122 -0.4317928 0.7555758 0.7751122 -0.470214 0.7555758 0.7751122 -0.5050551 0.7555758 0.7751122 -0.5370987 0.7555758 0.7751122 -0.5668815 0.7555758 0.7751122 -0.5947903 0.7555758 0.7751122 -0.6211144 0.7555758 0.7751122 -0.6460766 0.7555758 0.7751122 -0.6698526 0.7555758 0.7751122 -0.6925839 0.7555758 0.7751122 -0.7143866 0.7555758 0.7751122 -0.7353569 0.7555758 0.7751122 -0.7555758 0.7555758 0.7751122 -0.7751122 0.7555758 0.7751122 -0.7940252 0.7555758 0.7751122 -0.8123661 0.7555758 0.7751122 -0.8301795 0.7555758 0.7751122 -0.8475045 0.7555758 0.7751122 -0.8643761 0.7555758 0.7751122 -0.880825 0.7555758 0.7751122 -0.8968787 0.7555758 0.7751122 -0.9125621 0.7555758 0.7751122 -0.9278974 0.7555758 0.7751122 -0.9429048 0.7555758 0.7751122 -0.9576028 0.7555758 0.7751122 -0.9720079 0.7555758 0.7751122 -0.9861357 0.7555758 0.7751122 -1 0.7555758 0.7751122 -0 0.7751122 0.7751122 -0.1939468 0.7751122 0.7751122 -0.2773041 0.7751122 0.7751122 -0.3384659 0.7751122 0.7751122 -0.3885728 0.7751122 0.7751122 -0.4317928 0.7751122 0.7751122 -0.470214 0.7751122 0.7751122 -0.5050551 0.7751122 0.7751122 -0.5370987 0.7751122 0.7751122 -0.5668815 0.7751122 0.7751122 -0.5947903 0.7751122 0.7751122 -0.6211144 0.7751122 0.7751122 -0.6460766 0.7751122 0.7751122 -0.6698526 0.7751122 0.7751122 -0.6925839 0.7751122 0.7751122 -0.7143866 0.7751122 0.7751122 -0.7353569 0.7751122 0.7751122 -0.7555758 0.7751122 0.7751122 -0.7751122 0.7751122 0.7751122 -0.7940252 0.7751122 0.7751122 -0.8123661 0.7751122 0.7751122 -0.8301795 0.7751122 0.7751122 -0.8475045 0.7751122 0.7751122 -0.8643761 0.7751122 0.7751122 -0.880825 0.7751122 0.7751122 -0.8968787 0.7751122 0.7751122 -0.9125621 0.7751122 0.7751122 -0.9278974 0.7751122 0.7751122 -0.9429048 0.7751122 0.7751122 -0.9576028 0.7751122 0.7751122 -0.9720079 0.7751122 0.7751122 -0.9861357 0.7751122 0.7751122 -1 0.7751122 0.7751122 -0 0.7940252 0.7751122 -0.1939468 0.7940252 0.7751122 -0.2773041 0.7940252 0.7751122 -0.3384659 0.7940252 0.7751122 -0.3885728 0.7940252 0.7751122 -0.4317928 0.7940252 0.7751122 -0.470214 0.7940252 0.7751122 -0.5050551 0.7940252 0.7751122 -0.5370987 0.7940252 0.7751122 -0.5668815 0.7940252 0.7751122 -0.5947903 0.7940252 0.7751122 -0.6211144 0.7940252 0.7751122 -0.6460766 0.7940252 0.7751122 -0.6698526 0.7940252 0.7751122 -0.6925839 0.7940252 0.7751122 -0.7143866 0.7940252 0.7751122 -0.7353569 0.7940252 0.7751122 -0.7555758 0.7940252 0.7751122 -0.7751122 0.7940252 0.7751122 -0.7940252 0.7940252 0.7751122 -0.8123661 0.7940252 0.7751122 -0.8301795 0.7940252 0.7751122 -0.8475045 0.7940252 0.7751122 -0.8643761 0.7940252 0.7751122 -0.880825 0.7940252 0.7751122 -0.8968787 0.7940252 0.7751122 -0.9125621 0.7940252 0.7751122 -0.9278974 0.7940252 0.7751122 -0.9429048 0.7940252 0.7751122 -0.9576028 0.7940252 0.7751122 -0.9720079 0.7940252 0.7751122 -0.9861357 0.7940252 0.7751122 -1 0.7940252 0.7751122 -0 0.8123661 0.7751122 -0.1939468 0.8123661 0.7751122 -0.2773041 0.8123661 0.7751122 -0.3384659 0.8123661 0.7751122 -0.3885728 0.8123661 0.7751122 -0.4317928 0.8123661 0.7751122 -0.470214 0.8123661 0.7751122 -0.5050551 0.8123661 0.7751122 -0.5370987 0.8123661 0.7751122 -0.5668815 0.8123661 0.7751122 -0.5947903 0.8123661 0.7751122 -0.6211144 0.8123661 0.7751122 -0.6460766 0.8123661 0.7751122 -0.6698526 0.8123661 0.7751122 -0.6925839 0.8123661 0.7751122 -0.7143866 0.8123661 0.7751122 -0.7353569 0.8123661 0.7751122 -0.7555758 0.8123661 0.7751122 -0.7751122 0.8123661 0.7751122 -0.7940252 0.8123661 0.7751122 -0.8123661 0.8123661 0.7751122 -0.8301795 0.8123661 0.7751122 -0.8475045 0.8123661 0.7751122 -0.8643761 0.8123661 0.7751122 -0.880825 0.8123661 0.7751122 -0.8968787 0.8123661 0.7751122 -0.9125621 0.8123661 0.7751122 -0.9278974 0.8123661 0.7751122 -0.9429048 0.8123661 0.7751122 -0.9576028 0.8123661 0.7751122 -0.9720079 0.8123661 0.7751122 -0.9861357 0.8123661 0.7751122 -1 0.8123661 0.7751122 -0 0.8301795 0.7751122 -0.1939468 0.8301795 0.7751122 -0.2773041 0.8301795 0.7751122 -0.3384659 0.8301795 0.7751122 -0.3885728 0.8301795 0.7751122 -0.4317928 0.8301795 0.7751122 -0.470214 0.8301795 0.7751122 -0.5050551 0.8301795 0.7751122 -0.5370987 0.8301795 0.7751122 -0.5668815 0.8301795 0.7751122 -0.5947903 0.8301795 0.7751122 -0.6211144 0.8301795 0.7751122 -0.6460766 0.8301795 0.7751122 -0.6698526 0.8301795 0.7751122 -0.6925839 0.8301795 0.7751122 -0.7143866 0.8301795 0.7751122 -0.7353569 0.8301795 0.7751122 -0.7555758 0.8301795 0.7751122 -0.7751122 0.8301795 0.7751122 -0.7940252 0.8301795 0.7751122 -0.8123661 0.8301795 0.7751122 -0.8301795 0.8301795 0.7751122 -0.8475045 0.8301795 0.7751122 -0.8643761 0.8301795 0.7751122 -0.880825 0.8301795 0.7751122 -0.8968787 0.8301795 0.7751122 -0.9125621 0.8301795 0.7751122 -0.9278974 0.8301795 0.7751122 -0.9429048 0.8301795 0.7751122 -0.9576028 0.8301795 0.7751122 -0.9720079 0.8301795 0.7751122 -0.9861357 0.8301795 0.7751122 -1 0.8301795 0.7751122 -0 0.8475045 0.7751122 -0.1939468 0.8475045 0.7751122 -0.2773041 0.8475045 0.7751122 -0.3384659 0.8475045 0.7751122 -0.3885728 0.8475045 0.7751122 -0.4317928 0.8475045 0.7751122 -0.470214 0.8475045 0.7751122 -0.5050551 0.8475045 0.7751122 -0.5370987 0.8475045 0.7751122 -0.5668815 0.8475045 0.7751122 -0.5947903 0.8475045 0.7751122 -0.6211144 0.8475045 0.7751122 -0.6460766 0.8475045 0.7751122 -0.6698526 0.8475045 0.7751122 -0.6925839 0.8475045 0.7751122 -0.7143866 0.8475045 0.7751122 -0.7353569 0.8475045 0.7751122 -0.7555758 0.8475045 0.7751122 -0.7751122 0.8475045 0.7751122 -0.7940252 0.8475045 0.7751122 -0.8123661 0.8475045 0.7751122 -0.8301795 0.8475045 0.7751122 -0.8475045 0.8475045 0.7751122 -0.8643761 0.8475045 0.7751122 -0.880825 0.8475045 0.7751122 -0.8968787 0.8475045 0.7751122 -0.9125621 0.8475045 0.7751122 -0.9278974 0.8475045 0.7751122 -0.9429048 0.8475045 0.7751122 -0.9576028 0.8475045 0.7751122 -0.9720079 0.8475045 0.7751122 -0.9861357 0.8475045 0.7751122 -1 0.8475045 0.7751122 -0 0.8643761 0.7751122 -0.1939468 0.8643761 0.7751122 -0.2773041 0.8643761 0.7751122 -0.3384659 0.8643761 0.7751122 -0.3885728 0.8643761 0.7751122 -0.4317928 0.8643761 0.7751122 -0.470214 0.8643761 0.7751122 -0.5050551 0.8643761 0.7751122 -0.5370987 0.8643761 0.7751122 -0.5668815 0.8643761 0.7751122 -0.5947903 0.8643761 0.7751122 -0.6211144 0.8643761 0.7751122 -0.6460766 0.8643761 0.7751122 -0.6698526 0.8643761 0.7751122 -0.6925839 0.8643761 0.7751122 -0.7143866 0.8643761 0.7751122 -0.7353569 0.8643761 0.7751122 -0.7555758 0.8643761 0.7751122 -0.7751122 0.8643761 0.7751122 -0.7940252 0.8643761 0.7751122 -0.8123661 0.8643761 0.7751122 -0.8301795 0.8643761 0.7751122 -0.8475045 0.8643761 0.7751122 -0.8643761 0.8643761 0.7751122 -0.880825 0.8643761 0.7751122 -0.8968787 0.8643761 0.7751122 -0.9125621 0.8643761 0.7751122 -0.9278974 0.8643761 0.7751122 -0.9429048 0.8643761 0.7751122 -0.9576028 0.8643761 0.7751122 -0.9720079 0.8643761 0.7751122 -0.9861357 0.8643761 0.7751122 -1 0.8643761 0.7751122 -0 0.880825 0.7751122 -0.1939468 0.880825 0.7751122 -0.2773041 0.880825 0.7751122 -0.3384659 0.880825 0.7751122 -0.3885728 0.880825 0.7751122 -0.4317928 0.880825 0.7751122 -0.470214 0.880825 0.7751122 -0.5050551 0.880825 0.7751122 -0.5370987 0.880825 0.7751122 -0.5668815 0.880825 0.7751122 -0.5947903 0.880825 0.7751122 -0.6211144 0.880825 0.7751122 -0.6460766 0.880825 0.7751122 -0.6698526 0.880825 0.7751122 -0.6925839 0.880825 0.7751122 -0.7143866 0.880825 0.7751122 -0.7353569 0.880825 0.7751122 -0.7555758 0.880825 0.7751122 -0.7751122 0.880825 0.7751122 -0.7940252 0.880825 0.7751122 -0.8123661 0.880825 0.7751122 -0.8301795 0.880825 0.7751122 -0.8475045 0.880825 0.7751122 -0.8643761 0.880825 0.7751122 -0.880825 0.880825 0.7751122 -0.8968787 0.880825 0.7751122 -0.9125621 0.880825 0.7751122 -0.9278974 0.880825 0.7751122 -0.9429048 0.880825 0.7751122 -0.9576028 0.880825 0.7751122 -0.9720079 0.880825 0.7751122 -0.9861357 0.880825 0.7751122 -1 0.880825 0.7751122 -0 0.8968787 0.7751122 -0.1939468 0.8968787 0.7751122 -0.2773041 0.8968787 0.7751122 -0.3384659 0.8968787 0.7751122 -0.3885728 0.8968787 0.7751122 -0.4317928 0.8968787 0.7751122 -0.470214 0.8968787 0.7751122 -0.5050551 0.8968787 0.7751122 -0.5370987 0.8968787 0.7751122 -0.5668815 0.8968787 0.7751122 -0.5947903 0.8968787 0.7751122 -0.6211144 0.8968787 0.7751122 -0.6460766 0.8968787 0.7751122 -0.6698526 0.8968787 0.7751122 -0.6925839 0.8968787 0.7751122 -0.7143866 0.8968787 0.7751122 -0.7353569 0.8968787 0.7751122 -0.7555758 0.8968787 0.7751122 -0.7751122 0.8968787 0.7751122 -0.7940252 0.8968787 0.7751122 -0.8123661 0.8968787 0.7751122 -0.8301795 0.8968787 0.7751122 -0.8475045 0.8968787 0.7751122 -0.8643761 0.8968787 0.7751122 -0.880825 0.8968787 0.7751122 -0.8968787 0.8968787 0.7751122 -0.9125621 0.8968787 0.7751122 -0.9278974 0.8968787 0.7751122 -0.9429048 0.8968787 0.7751122 -0.9576028 0.8968787 0.7751122 -0.9720079 0.8968787 0.7751122 -0.9861357 0.8968787 0.7751122 -1 0.8968787 0.7751122 -0 0.9125621 0.7751122 -0.1939468 0.9125621 0.7751122 -0.2773041 0.9125621 0.7751122 -0.3384659 0.9125621 0.7751122 -0.3885728 0.9125621 0.7751122 -0.4317928 0.9125621 0.7751122 -0.470214 0.9125621 0.7751122 -0.5050551 0.9125621 0.7751122 -0.5370987 0.9125621 0.7751122 -0.5668815 0.9125621 0.7751122 -0.5947903 0.9125621 0.7751122 -0.6211144 0.9125621 0.7751122 -0.6460766 0.9125621 0.7751122 -0.6698526 0.9125621 0.7751122 -0.6925839 0.9125621 0.7751122 -0.7143866 0.9125621 0.7751122 -0.7353569 0.9125621 0.7751122 -0.7555758 0.9125621 0.7751122 -0.7751122 0.9125621 0.7751122 -0.7940252 0.9125621 0.7751122 -0.8123661 0.9125621 0.7751122 -0.8301795 0.9125621 0.7751122 -0.8475045 0.9125621 0.7751122 -0.8643761 0.9125621 0.7751122 -0.880825 0.9125621 0.7751122 -0.8968787 0.9125621 0.7751122 -0.9125621 0.9125621 0.7751122 -0.9278974 0.9125621 0.7751122 -0.9429048 0.9125621 0.7751122 -0.9576028 0.9125621 0.7751122 -0.9720079 0.9125621 0.7751122 -0.9861357 0.9125621 0.7751122 -1 0.9125621 0.7751122 -0 0.9278974 0.7751122 -0.1939468 0.9278974 0.7751122 -0.2773041 0.9278974 0.7751122 -0.3384659 0.9278974 0.7751122 -0.3885728 0.9278974 0.7751122 -0.4317928 0.9278974 0.7751122 -0.470214 0.9278974 0.7751122 -0.5050551 0.9278974 0.7751122 -0.5370987 0.9278974 0.7751122 -0.5668815 0.9278974 0.7751122 -0.5947903 0.9278974 0.7751122 -0.6211144 0.9278974 0.7751122 -0.6460766 0.9278974 0.7751122 -0.6698526 0.9278974 0.7751122 -0.6925839 0.9278974 0.7751122 -0.7143866 0.9278974 0.7751122 -0.7353569 0.9278974 0.7751122 -0.7555758 0.9278974 0.7751122 -0.7751122 0.9278974 0.7751122 -0.7940252 0.9278974 0.7751122 -0.8123661 0.9278974 0.7751122 -0.8301795 0.9278974 0.7751122 -0.8475045 0.9278974 0.7751122 -0.8643761 0.9278974 0.7751122 -0.880825 0.9278974 0.7751122 -0.8968787 0.9278974 0.7751122 -0.9125621 0.9278974 0.7751122 -0.9278974 0.9278974 0.7751122 -0.9429048 0.9278974 0.7751122 -0.9576028 0.9278974 0.7751122 -0.9720079 0.9278974 0.7751122 -0.9861357 0.9278974 0.7751122 -1 0.9278974 0.7751122 -0 0.9429048 0.7751122 -0.1939468 0.9429048 0.7751122 -0.2773041 0.9429048 0.7751122 -0.3384659 0.9429048 0.7751122 -0.3885728 0.9429048 0.7751122 -0.4317928 0.9429048 0.7751122 -0.470214 0.9429048 0.7751122 -0.5050551 0.9429048 0.7751122 -0.5370987 0.9429048 0.7751122 -0.5668815 0.9429048 0.7751122 -0.5947903 0.9429048 0.7751122 -0.6211144 0.9429048 0.7751122 -0.6460766 0.9429048 0.7751122 -0.6698526 0.9429048 0.7751122 -0.6925839 0.9429048 0.7751122 -0.7143866 0.9429048 0.7751122 -0.7353569 0.9429048 0.7751122 -0.7555758 0.9429048 0.7751122 -0.7751122 0.9429048 0.7751122 -0.7940252 0.9429048 0.7751122 -0.8123661 0.9429048 0.7751122 -0.8301795 0.9429048 0.7751122 -0.8475045 0.9429048 0.7751122 -0.8643761 0.9429048 0.7751122 -0.880825 0.9429048 0.7751122 -0.8968787 0.9429048 0.7751122 -0.9125621 0.9429048 0.7751122 -0.9278974 0.9429048 0.7751122 -0.9429048 0.9429048 0.7751122 -0.9576028 0.9429048 0.7751122 -0.9720079 0.9429048 0.7751122 -0.9861357 0.9429048 0.7751122 -1 0.9429048 0.7751122 -0 0.9576028 0.7751122 -0.1939468 0.9576028 0.7751122 -0.2773041 0.9576028 0.7751122 -0.3384659 0.9576028 0.7751122 -0.3885728 0.9576028 0.7751122 -0.4317928 0.9576028 0.7751122 -0.470214 0.9576028 0.7751122 -0.5050551 0.9576028 0.7751122 -0.5370987 0.9576028 0.7751122 -0.5668815 0.9576028 0.7751122 -0.5947903 0.9576028 0.7751122 -0.6211144 0.9576028 0.7751122 -0.6460766 0.9576028 0.7751122 -0.6698526 0.9576028 0.7751122 -0.6925839 0.9576028 0.7751122 -0.7143866 0.9576028 0.7751122 -0.7353569 0.9576028 0.7751122 -0.7555758 0.9576028 0.7751122 -0.7751122 0.9576028 0.7751122 -0.7940252 0.9576028 0.7751122 -0.8123661 0.9576028 0.7751122 -0.8301795 0.9576028 0.7751122 -0.8475045 0.9576028 0.7751122 -0.8643761 0.9576028 0.7751122 -0.880825 0.9576028 0.7751122 -0.8968787 0.9576028 0.7751122 -0.9125621 0.9576028 0.7751122 -0.9278974 0.9576028 0.7751122 -0.9429048 0.9576028 0.7751122 -0.9576028 0.9576028 0.7751122 -0.9720079 0.9576028 0.7751122 -0.9861357 0.9576028 0.7751122 -1 0.9576028 0.7751122 -0 0.9720079 0.7751122 -0.1939468 0.9720079 0.7751122 -0.2773041 0.9720079 0.7751122 -0.3384659 0.9720079 0.7751122 -0.3885728 0.9720079 0.7751122 -0.4317928 0.9720079 0.7751122 -0.470214 0.9720079 0.7751122 -0.5050551 0.9720079 0.7751122 -0.5370987 0.9720079 0.7751122 -0.5668815 0.9720079 0.7751122 -0.5947903 0.9720079 0.7751122 -0.6211144 0.9720079 0.7751122 -0.6460766 0.9720079 0.7751122 -0.6698526 0.9720079 0.7751122 -0.6925839 0.9720079 0.7751122 -0.7143866 0.9720079 0.7751122 -0.7353569 0.9720079 0.7751122 -0.7555758 0.9720079 0.7751122 -0.7751122 0.9720079 0.7751122 -0.7940252 0.9720079 0.7751122 -0.8123661 0.9720079 0.7751122 -0.8301795 0.9720079 0.7751122 -0.8475045 0.9720079 0.7751122 -0.8643761 0.9720079 0.7751122 -0.880825 0.9720079 0.7751122 -0.8968787 0.9720079 0.7751122 -0.9125621 0.9720079 0.7751122 -0.9278974 0.9720079 0.7751122 -0.9429048 0.9720079 0.7751122 -0.9576028 0.9720079 0.7751122 -0.9720079 0.9720079 0.7751122 -0.9861357 0.9720079 0.7751122 -1 0.9720079 0.7751122 -0 0.9861357 0.7751122 -0.1939468 0.9861357 0.7751122 -0.2773041 0.9861357 0.7751122 -0.3384659 0.9861357 0.7751122 -0.3885728 0.9861357 0.7751122 -0.4317928 0.9861357 0.7751122 -0.470214 0.9861357 0.7751122 -0.5050551 0.9861357 0.7751122 -0.5370987 0.9861357 0.7751122 -0.5668815 0.9861357 0.7751122 -0.5947903 0.9861357 0.7751122 -0.6211144 0.9861357 0.7751122 -0.6460766 0.9861357 0.7751122 -0.6698526 0.9861357 0.7751122 -0.6925839 0.9861357 0.7751122 -0.7143866 0.9861357 0.7751122 -0.7353569 0.9861357 0.7751122 -0.7555758 0.9861357 0.7751122 -0.7751122 0.9861357 0.7751122 -0.7940252 0.9861357 0.7751122 -0.8123661 0.9861357 0.7751122 -0.8301795 0.9861357 0.7751122 -0.8475045 0.9861357 0.7751122 -0.8643761 0.9861357 0.7751122 -0.880825 0.9861357 0.7751122 -0.8968787 0.9861357 0.7751122 -0.9125621 0.9861357 0.7751122 -0.9278974 0.9861357 0.7751122 -0.9429048 0.9861357 0.7751122 -0.9576028 0.9861357 0.7751122 -0.9720079 0.9861357 0.7751122 -0.9861357 0.9861357 0.7751122 -1 0.9861357 0.7751122 -0 1 0.7751122 -0.1939468 1 0.7751122 -0.2773041 1 0.7751122 -0.3384659 1 0.7751122 -0.3885728 1 0.7751122 -0.4317928 1 0.7751122 -0.470214 1 0.7751122 -0.5050551 1 0.7751122 -0.5370987 1 0.7751122 -0.5668815 1 0.7751122 -0.5947903 1 0.7751122 -0.6211144 1 0.7751122 -0.6460766 1 0.7751122 -0.6698526 1 0.7751122 -0.6925839 1 0.7751122 -0.7143866 1 0.7751122 -0.7353569 1 0.7751122 -0.7555758 1 0.7751122 -0.7751122 1 0.7751122 -0.7940252 1 0.7751122 -0.8123661 1 0.7751122 -0.8301795 1 0.7751122 -0.8475045 1 0.7751122 -0.8643761 1 0.7751122 -0.880825 1 0.7751122 -0.8968787 1 0.7751122 -0.9125621 1 0.7751122 -0.9278974 1 0.7751122 -0.9429048 1 0.7751122 -0.9576028 1 0.7751122 -0.9720079 1 0.7751122 -0.9861357 1 0.7751122 -1 1 0.7751122 -0 0 0.7940252 -0.1939468 0 0.7940252 -0.2773041 0 0.7940252 -0.3384659 0 0.7940252 -0.3885728 0 0.7940252 -0.4317928 0 0.7940252 -0.470214 0 0.7940252 -0.5050551 0 0.7940252 -0.5370987 0 0.7940252 -0.5668815 0 0.7940252 -0.5947903 0 0.7940252 -0.6211144 0 0.7940252 -0.6460766 0 0.7940252 -0.6698526 0 0.7940252 -0.6925839 0 0.7940252 -0.7143866 0 0.7940252 -0.7353569 0 0.7940252 -0.7555758 0 0.7940252 -0.7751122 0 0.7940252 -0.7940252 0 0.7940252 -0.8123661 0 0.7940252 -0.8301795 0 0.7940252 -0.8475045 0 0.7940252 -0.8643761 0 0.7940252 -0.880825 0 0.7940252 -0.8968787 0 0.7940252 -0.9125621 0 0.7940252 -0.9278974 0 0.7940252 -0.9429048 0 0.7940252 -0.9576028 0 0.7940252 -0.9720079 0 0.7940252 -0.9861357 0 0.7940252 -1 0 0.7940252 -0 0.1939468 0.7940252 -0.1939468 0.1939468 0.7940252 -0.2773041 0.1939468 0.7940252 -0.3384659 0.1939468 0.7940252 -0.3885728 0.1939468 0.7940252 -0.4317928 0.1939468 0.7940252 -0.470214 0.1939468 0.7940252 -0.5050551 0.1939468 0.7940252 -0.5370987 0.1939468 0.7940252 -0.5668815 0.1939468 0.7940252 -0.5947903 0.1939468 0.7940252 -0.6211144 0.1939468 0.7940252 -0.6460766 0.1939468 0.7940252 -0.6698526 0.1939468 0.7940252 -0.6925839 0.1939468 0.7940252 -0.7143866 0.1939468 0.7940252 -0.7353569 0.1939468 0.7940252 -0.7555758 0.1939468 0.7940252 -0.7751122 0.1939468 0.7940252 -0.7940252 0.1939468 0.7940252 -0.8123661 0.1939468 0.7940252 -0.8301795 0.1939468 0.7940252 -0.8475045 0.1939468 0.7940252 -0.8643761 0.1939468 0.7940252 -0.880825 0.1939468 0.7940252 -0.8968787 0.1939468 0.7940252 -0.9125621 0.1939468 0.7940252 -0.9278974 0.1939468 0.7940252 -0.9429048 0.1939468 0.7940252 -0.9576028 0.1939468 0.7940252 -0.9720079 0.1939468 0.7940252 -0.9861357 0.1939468 0.7940252 -1 0.1939468 0.7940252 -0 0.2773041 0.7940252 -0.1939468 0.2773041 0.7940252 -0.2773041 0.2773041 0.7940252 -0.3384659 0.2773041 0.7940252 -0.3885728 0.2773041 0.7940252 -0.4317928 0.2773041 0.7940252 -0.470214 0.2773041 0.7940252 -0.5050551 0.2773041 0.7940252 -0.5370987 0.2773041 0.7940252 -0.5668815 0.2773041 0.7940252 -0.5947903 0.2773041 0.7940252 -0.6211144 0.2773041 0.7940252 -0.6460766 0.2773041 0.7940252 -0.6698526 0.2773041 0.7940252 -0.6925839 0.2773041 0.7940252 -0.7143866 0.2773041 0.7940252 -0.7353569 0.2773041 0.7940252 -0.7555758 0.2773041 0.7940252 -0.7751122 0.2773041 0.7940252 -0.7940252 0.2773041 0.7940252 -0.8123661 0.2773041 0.7940252 -0.8301795 0.2773041 0.7940252 -0.8475045 0.2773041 0.7940252 -0.8643761 0.2773041 0.7940252 -0.880825 0.2773041 0.7940252 -0.8968787 0.2773041 0.7940252 -0.9125621 0.2773041 0.7940252 -0.9278974 0.2773041 0.7940252 -0.9429048 0.2773041 0.7940252 -0.9576028 0.2773041 0.7940252 -0.9720079 0.2773041 0.7940252 -0.9861357 0.2773041 0.7940252 -1 0.2773041 0.7940252 -0 0.3384659 0.7940252 -0.1939468 0.3384659 0.7940252 -0.2773041 0.3384659 0.7940252 -0.3384659 0.3384659 0.7940252 -0.3885728 0.3384659 0.7940252 -0.4317928 0.3384659 0.7940252 -0.470214 0.3384659 0.7940252 -0.5050551 0.3384659 0.7940252 -0.5370987 0.3384659 0.7940252 -0.5668815 0.3384659 0.7940252 -0.5947903 0.3384659 0.7940252 -0.6211144 0.3384659 0.7940252 -0.6460766 0.3384659 0.7940252 -0.6698526 0.3384659 0.7940252 -0.6925839 0.3384659 0.7940252 -0.7143866 0.3384659 0.7940252 -0.7353569 0.3384659 0.7940252 -0.7555758 0.3384659 0.7940252 -0.7751122 0.3384659 0.7940252 -0.7940252 0.3384659 0.7940252 -0.8123661 0.3384659 0.7940252 -0.8301795 0.3384659 0.7940252 -0.8475045 0.3384659 0.7940252 -0.8643761 0.3384659 0.7940252 -0.880825 0.3384659 0.7940252 -0.8968787 0.3384659 0.7940252 -0.9125621 0.3384659 0.7940252 -0.9278974 0.3384659 0.7940252 -0.9429048 0.3384659 0.7940252 -0.9576028 0.3384659 0.7940252 -0.9720079 0.3384659 0.7940252 -0.9861357 0.3384659 0.7940252 -1 0.3384659 0.7940252 -0 0.3885728 0.7940252 -0.1939468 0.3885728 0.7940252 -0.2773041 0.3885728 0.7940252 -0.3384659 0.3885728 0.7940252 -0.3885728 0.3885728 0.7940252 -0.4317928 0.3885728 0.7940252 -0.470214 0.3885728 0.7940252 -0.5050551 0.3885728 0.7940252 -0.5370987 0.3885728 0.7940252 -0.5668815 0.3885728 0.7940252 -0.5947903 0.3885728 0.7940252 -0.6211144 0.3885728 0.7940252 -0.6460766 0.3885728 0.7940252 -0.6698526 0.3885728 0.7940252 -0.6925839 0.3885728 0.7940252 -0.7143866 0.3885728 0.7940252 -0.7353569 0.3885728 0.7940252 -0.7555758 0.3885728 0.7940252 -0.7751122 0.3885728 0.7940252 -0.7940252 0.3885728 0.7940252 -0.8123661 0.3885728 0.7940252 -0.8301795 0.3885728 0.7940252 -0.8475045 0.3885728 0.7940252 -0.8643761 0.3885728 0.7940252 -0.880825 0.3885728 0.7940252 -0.8968787 0.3885728 0.7940252 -0.9125621 0.3885728 0.7940252 -0.9278974 0.3885728 0.7940252 -0.9429048 0.3885728 0.7940252 -0.9576028 0.3885728 0.7940252 -0.9720079 0.3885728 0.7940252 -0.9861357 0.3885728 0.7940252 -1 0.3885728 0.7940252 -0 0.4317928 0.7940252 -0.1939468 0.4317928 0.7940252 -0.2773041 0.4317928 0.7940252 -0.3384659 0.4317928 0.7940252 -0.3885728 0.4317928 0.7940252 -0.4317928 0.4317928 0.7940252 -0.470214 0.4317928 0.7940252 -0.5050551 0.4317928 0.7940252 -0.5370987 0.4317928 0.7940252 -0.5668815 0.4317928 0.7940252 -0.5947903 0.4317928 0.7940252 -0.6211144 0.4317928 0.7940252 -0.6460766 0.4317928 0.7940252 -0.6698526 0.4317928 0.7940252 -0.6925839 0.4317928 0.7940252 -0.7143866 0.4317928 0.7940252 -0.7353569 0.4317928 0.7940252 -0.7555758 0.4317928 0.7940252 -0.7751122 0.4317928 0.7940252 -0.7940252 0.4317928 0.7940252 -0.8123661 0.4317928 0.7940252 -0.8301795 0.4317928 0.7940252 -0.8475045 0.4317928 0.7940252 -0.8643761 0.4317928 0.7940252 -0.880825 0.4317928 0.7940252 -0.8968787 0.4317928 0.7940252 -0.9125621 0.4317928 0.7940252 -0.9278974 0.4317928 0.7940252 -0.9429048 0.4317928 0.7940252 -0.9576028 0.4317928 0.7940252 -0.9720079 0.4317928 0.7940252 -0.9861357 0.4317928 0.7940252 -1 0.4317928 0.7940252 -0 0.470214 0.7940252 -0.1939468 0.470214 0.7940252 -0.2773041 0.470214 0.7940252 -0.3384659 0.470214 0.7940252 -0.3885728 0.470214 0.7940252 -0.4317928 0.470214 0.7940252 -0.470214 0.470214 0.7940252 -0.5050551 0.470214 0.7940252 -0.5370987 0.470214 0.7940252 -0.5668815 0.470214 0.7940252 -0.5947903 0.470214 0.7940252 -0.6211144 0.470214 0.7940252 -0.6460766 0.470214 0.7940252 -0.6698526 0.470214 0.7940252 -0.6925839 0.470214 0.7940252 -0.7143866 0.470214 0.7940252 -0.7353569 0.470214 0.7940252 -0.7555758 0.470214 0.7940252 -0.7751122 0.470214 0.7940252 -0.7940252 0.470214 0.7940252 -0.8123661 0.470214 0.7940252 -0.8301795 0.470214 0.7940252 -0.8475045 0.470214 0.7940252 -0.8643761 0.470214 0.7940252 -0.880825 0.470214 0.7940252 -0.8968787 0.470214 0.7940252 -0.9125621 0.470214 0.7940252 -0.9278974 0.470214 0.7940252 -0.9429048 0.470214 0.7940252 -0.9576028 0.470214 0.7940252 -0.9720079 0.470214 0.7940252 -0.9861357 0.470214 0.7940252 -1 0.470214 0.7940252 -0 0.5050551 0.7940252 -0.1939468 0.5050551 0.7940252 -0.2773041 0.5050551 0.7940252 -0.3384659 0.5050551 0.7940252 -0.3885728 0.5050551 0.7940252 -0.4317928 0.5050551 0.7940252 -0.470214 0.5050551 0.7940252 -0.5050551 0.5050551 0.7940252 -0.5370987 0.5050551 0.7940252 -0.5668815 0.5050551 0.7940252 -0.5947903 0.5050551 0.7940252 -0.6211144 0.5050551 0.7940252 -0.6460766 0.5050551 0.7940252 -0.6698526 0.5050551 0.7940252 -0.6925839 0.5050551 0.7940252 -0.7143866 0.5050551 0.7940252 -0.7353569 0.5050551 0.7940252 -0.7555758 0.5050551 0.7940252 -0.7751122 0.5050551 0.7940252 -0.7940252 0.5050551 0.7940252 -0.8123661 0.5050551 0.7940252 -0.8301795 0.5050551 0.7940252 -0.8475045 0.5050551 0.7940252 -0.8643761 0.5050551 0.7940252 -0.880825 0.5050551 0.7940252 -0.8968787 0.5050551 0.7940252 -0.9125621 0.5050551 0.7940252 -0.9278974 0.5050551 0.7940252 -0.9429048 0.5050551 0.7940252 -0.9576028 0.5050551 0.7940252 -0.9720079 0.5050551 0.7940252 -0.9861357 0.5050551 0.7940252 -1 0.5050551 0.7940252 -0 0.5370987 0.7940252 -0.1939468 0.5370987 0.7940252 -0.2773041 0.5370987 0.7940252 -0.3384659 0.5370987 0.7940252 -0.3885728 0.5370987 0.7940252 -0.4317928 0.5370987 0.7940252 -0.470214 0.5370987 0.7940252 -0.5050551 0.5370987 0.7940252 -0.5370987 0.5370987 0.7940252 -0.5668815 0.5370987 0.7940252 -0.5947903 0.5370987 0.7940252 -0.6211144 0.5370987 0.7940252 -0.6460766 0.5370987 0.7940252 -0.6698526 0.5370987 0.7940252 -0.6925839 0.5370987 0.7940252 -0.7143866 0.5370987 0.7940252 -0.7353569 0.5370987 0.7940252 -0.7555758 0.5370987 0.7940252 -0.7751122 0.5370987 0.7940252 -0.7940252 0.5370987 0.7940252 -0.8123661 0.5370987 0.7940252 -0.8301795 0.5370987 0.7940252 -0.8475045 0.5370987 0.7940252 -0.8643761 0.5370987 0.7940252 -0.880825 0.5370987 0.7940252 -0.8968787 0.5370987 0.7940252 -0.9125621 0.5370987 0.7940252 -0.9278974 0.5370987 0.7940252 -0.9429048 0.5370987 0.7940252 -0.9576028 0.5370987 0.7940252 -0.9720079 0.5370987 0.7940252 -0.9861357 0.5370987 0.7940252 -1 0.5370987 0.7940252 -0 0.5668815 0.7940252 -0.1939468 0.5668815 0.7940252 -0.2773041 0.5668815 0.7940252 -0.3384659 0.5668815 0.7940252 -0.3885728 0.5668815 0.7940252 -0.4317928 0.5668815 0.7940252 -0.470214 0.5668815 0.7940252 -0.5050551 0.5668815 0.7940252 -0.5370987 0.5668815 0.7940252 -0.5668815 0.5668815 0.7940252 -0.5947903 0.5668815 0.7940252 -0.6211144 0.5668815 0.7940252 -0.6460766 0.5668815 0.7940252 -0.6698526 0.5668815 0.7940252 -0.6925839 0.5668815 0.7940252 -0.7143866 0.5668815 0.7940252 -0.7353569 0.5668815 0.7940252 -0.7555758 0.5668815 0.7940252 -0.7751122 0.5668815 0.7940252 -0.7940252 0.5668815 0.7940252 -0.8123661 0.5668815 0.7940252 -0.8301795 0.5668815 0.7940252 -0.8475045 0.5668815 0.7940252 -0.8643761 0.5668815 0.7940252 -0.880825 0.5668815 0.7940252 -0.8968787 0.5668815 0.7940252 -0.9125621 0.5668815 0.7940252 -0.9278974 0.5668815 0.7940252 -0.9429048 0.5668815 0.7940252 -0.9576028 0.5668815 0.7940252 -0.9720079 0.5668815 0.7940252 -0.9861357 0.5668815 0.7940252 -1 0.5668815 0.7940252 -0 0.5947903 0.7940252 -0.1939468 0.5947903 0.7940252 -0.2773041 0.5947903 0.7940252 -0.3384659 0.5947903 0.7940252 -0.3885728 0.5947903 0.7940252 -0.4317928 0.5947903 0.7940252 -0.470214 0.5947903 0.7940252 -0.5050551 0.5947903 0.7940252 -0.5370987 0.5947903 0.7940252 -0.5668815 0.5947903 0.7940252 -0.5947903 0.5947903 0.7940252 -0.6211144 0.5947903 0.7940252 -0.6460766 0.5947903 0.7940252 -0.6698526 0.5947903 0.7940252 -0.6925839 0.5947903 0.7940252 -0.7143866 0.5947903 0.7940252 -0.7353569 0.5947903 0.7940252 -0.7555758 0.5947903 0.7940252 -0.7751122 0.5947903 0.7940252 -0.7940252 0.5947903 0.7940252 -0.8123661 0.5947903 0.7940252 -0.8301795 0.5947903 0.7940252 -0.8475045 0.5947903 0.7940252 -0.8643761 0.5947903 0.7940252 -0.880825 0.5947903 0.7940252 -0.8968787 0.5947903 0.7940252 -0.9125621 0.5947903 0.7940252 -0.9278974 0.5947903 0.7940252 -0.9429048 0.5947903 0.7940252 -0.9576028 0.5947903 0.7940252 -0.9720079 0.5947903 0.7940252 -0.9861357 0.5947903 0.7940252 -1 0.5947903 0.7940252 -0 0.6211144 0.7940252 -0.1939468 0.6211144 0.7940252 -0.2773041 0.6211144 0.7940252 -0.3384659 0.6211144 0.7940252 -0.3885728 0.6211144 0.7940252 -0.4317928 0.6211144 0.7940252 -0.470214 0.6211144 0.7940252 -0.5050551 0.6211144 0.7940252 -0.5370987 0.6211144 0.7940252 -0.5668815 0.6211144 0.7940252 -0.5947903 0.6211144 0.7940252 -0.6211144 0.6211144 0.7940252 -0.6460766 0.6211144 0.7940252 -0.6698526 0.6211144 0.7940252 -0.6925839 0.6211144 0.7940252 -0.7143866 0.6211144 0.7940252 -0.7353569 0.6211144 0.7940252 -0.7555758 0.6211144 0.7940252 -0.7751122 0.6211144 0.7940252 -0.7940252 0.6211144 0.7940252 -0.8123661 0.6211144 0.7940252 -0.8301795 0.6211144 0.7940252 -0.8475045 0.6211144 0.7940252 -0.8643761 0.6211144 0.7940252 -0.880825 0.6211144 0.7940252 -0.8968787 0.6211144 0.7940252 -0.9125621 0.6211144 0.7940252 -0.9278974 0.6211144 0.7940252 -0.9429048 0.6211144 0.7940252 -0.9576028 0.6211144 0.7940252 -0.9720079 0.6211144 0.7940252 -0.9861357 0.6211144 0.7940252 -1 0.6211144 0.7940252 -0 0.6460766 0.7940252 -0.1939468 0.6460766 0.7940252 -0.2773041 0.6460766 0.7940252 -0.3384659 0.6460766 0.7940252 -0.3885728 0.6460766 0.7940252 -0.4317928 0.6460766 0.7940252 -0.470214 0.6460766 0.7940252 -0.5050551 0.6460766 0.7940252 -0.5370987 0.6460766 0.7940252 -0.5668815 0.6460766 0.7940252 -0.5947903 0.6460766 0.7940252 -0.6211144 0.6460766 0.7940252 -0.6460766 0.6460766 0.7940252 -0.6698526 0.6460766 0.7940252 -0.6925839 0.6460766 0.7940252 -0.7143866 0.6460766 0.7940252 -0.7353569 0.6460766 0.7940252 -0.7555758 0.6460766 0.7940252 -0.7751122 0.6460766 0.7940252 -0.7940252 0.6460766 0.7940252 -0.8123661 0.6460766 0.7940252 -0.8301795 0.6460766 0.7940252 -0.8475045 0.6460766 0.7940252 -0.8643761 0.6460766 0.7940252 -0.880825 0.6460766 0.7940252 -0.8968787 0.6460766 0.7940252 -0.9125621 0.6460766 0.7940252 -0.9278974 0.6460766 0.7940252 -0.9429048 0.6460766 0.7940252 -0.9576028 0.6460766 0.7940252 -0.9720079 0.6460766 0.7940252 -0.9861357 0.6460766 0.7940252 -1 0.6460766 0.7940252 -0 0.6698526 0.7940252 -0.1939468 0.6698526 0.7940252 -0.2773041 0.6698526 0.7940252 -0.3384659 0.6698526 0.7940252 -0.3885728 0.6698526 0.7940252 -0.4317928 0.6698526 0.7940252 -0.470214 0.6698526 0.7940252 -0.5050551 0.6698526 0.7940252 -0.5370987 0.6698526 0.7940252 -0.5668815 0.6698526 0.7940252 -0.5947903 0.6698526 0.7940252 -0.6211144 0.6698526 0.7940252 -0.6460766 0.6698526 0.7940252 -0.6698526 0.6698526 0.7940252 -0.6925839 0.6698526 0.7940252 -0.7143866 0.6698526 0.7940252 -0.7353569 0.6698526 0.7940252 -0.7555758 0.6698526 0.7940252 -0.7751122 0.6698526 0.7940252 -0.7940252 0.6698526 0.7940252 -0.8123661 0.6698526 0.7940252 -0.8301795 0.6698526 0.7940252 -0.8475045 0.6698526 0.7940252 -0.8643761 0.6698526 0.7940252 -0.880825 0.6698526 0.7940252 -0.8968787 0.6698526 0.7940252 -0.9125621 0.6698526 0.7940252 -0.9278974 0.6698526 0.7940252 -0.9429048 0.6698526 0.7940252 -0.9576028 0.6698526 0.7940252 -0.9720079 0.6698526 0.7940252 -0.9861357 0.6698526 0.7940252 -1 0.6698526 0.7940252 -0 0.6925839 0.7940252 -0.1939468 0.6925839 0.7940252 -0.2773041 0.6925839 0.7940252 -0.3384659 0.6925839 0.7940252 -0.3885728 0.6925839 0.7940252 -0.4317928 0.6925839 0.7940252 -0.470214 0.6925839 0.7940252 -0.5050551 0.6925839 0.7940252 -0.5370987 0.6925839 0.7940252 -0.5668815 0.6925839 0.7940252 -0.5947903 0.6925839 0.7940252 -0.6211144 0.6925839 0.7940252 -0.6460766 0.6925839 0.7940252 -0.6698526 0.6925839 0.7940252 -0.6925839 0.6925839 0.7940252 -0.7143866 0.6925839 0.7940252 -0.7353569 0.6925839 0.7940252 -0.7555758 0.6925839 0.7940252 -0.7751122 0.6925839 0.7940252 -0.7940252 0.6925839 0.7940252 -0.8123661 0.6925839 0.7940252 -0.8301795 0.6925839 0.7940252 -0.8475045 0.6925839 0.7940252 -0.8643761 0.6925839 0.7940252 -0.880825 0.6925839 0.7940252 -0.8968787 0.6925839 0.7940252 -0.9125621 0.6925839 0.7940252 -0.9278974 0.6925839 0.7940252 -0.9429048 0.6925839 0.7940252 -0.9576028 0.6925839 0.7940252 -0.9720079 0.6925839 0.7940252 -0.9861357 0.6925839 0.7940252 -1 0.6925839 0.7940252 -0 0.7143866 0.7940252 -0.1939468 0.7143866 0.7940252 -0.2773041 0.7143866 0.7940252 -0.3384659 0.7143866 0.7940252 -0.3885728 0.7143866 0.7940252 -0.4317928 0.7143866 0.7940252 -0.470214 0.7143866 0.7940252 -0.5050551 0.7143866 0.7940252 -0.5370987 0.7143866 0.7940252 -0.5668815 0.7143866 0.7940252 -0.5947903 0.7143866 0.7940252 -0.6211144 0.7143866 0.7940252 -0.6460766 0.7143866 0.7940252 -0.6698526 0.7143866 0.7940252 -0.6925839 0.7143866 0.7940252 -0.7143866 0.7143866 0.7940252 -0.7353569 0.7143866 0.7940252 -0.7555758 0.7143866 0.7940252 -0.7751122 0.7143866 0.7940252 -0.7940252 0.7143866 0.7940252 -0.8123661 0.7143866 0.7940252 -0.8301795 0.7143866 0.7940252 -0.8475045 0.7143866 0.7940252 -0.8643761 0.7143866 0.7940252 -0.880825 0.7143866 0.7940252 -0.8968787 0.7143866 0.7940252 -0.9125621 0.7143866 0.7940252 -0.9278974 0.7143866 0.7940252 -0.9429048 0.7143866 0.7940252 -0.9576028 0.7143866 0.7940252 -0.9720079 0.7143866 0.7940252 -0.9861357 0.7143866 0.7940252 -1 0.7143866 0.7940252 -0 0.7353569 0.7940252 -0.1939468 0.7353569 0.7940252 -0.2773041 0.7353569 0.7940252 -0.3384659 0.7353569 0.7940252 -0.3885728 0.7353569 0.7940252 -0.4317928 0.7353569 0.7940252 -0.470214 0.7353569 0.7940252 -0.5050551 0.7353569 0.7940252 -0.5370987 0.7353569 0.7940252 -0.5668815 0.7353569 0.7940252 -0.5947903 0.7353569 0.7940252 -0.6211144 0.7353569 0.7940252 -0.6460766 0.7353569 0.7940252 -0.6698526 0.7353569 0.7940252 -0.6925839 0.7353569 0.7940252 -0.7143866 0.7353569 0.7940252 -0.7353569 0.7353569 0.7940252 -0.7555758 0.7353569 0.7940252 -0.7751122 0.7353569 0.7940252 -0.7940252 0.7353569 0.7940252 -0.8123661 0.7353569 0.7940252 -0.8301795 0.7353569 0.7940252 -0.8475045 0.7353569 0.7940252 -0.8643761 0.7353569 0.7940252 -0.880825 0.7353569 0.7940252 -0.8968787 0.7353569 0.7940252 -0.9125621 0.7353569 0.7940252 -0.9278974 0.7353569 0.7940252 -0.9429048 0.7353569 0.7940252 -0.9576028 0.7353569 0.7940252 -0.9720079 0.7353569 0.7940252 -0.9861357 0.7353569 0.7940252 -1 0.7353569 0.7940252 -0 0.7555758 0.7940252 -0.1939468 0.7555758 0.7940252 -0.2773041 0.7555758 0.7940252 -0.3384659 0.7555758 0.7940252 -0.3885728 0.7555758 0.7940252 -0.4317928 0.7555758 0.7940252 -0.470214 0.7555758 0.7940252 -0.5050551 0.7555758 0.7940252 -0.5370987 0.7555758 0.7940252 -0.5668815 0.7555758 0.7940252 -0.5947903 0.7555758 0.7940252 -0.6211144 0.7555758 0.7940252 -0.6460766 0.7555758 0.7940252 -0.6698526 0.7555758 0.7940252 -0.6925839 0.7555758 0.7940252 -0.7143866 0.7555758 0.7940252 -0.7353569 0.7555758 0.7940252 -0.7555758 0.7555758 0.7940252 -0.7751122 0.7555758 0.7940252 -0.7940252 0.7555758 0.7940252 -0.8123661 0.7555758 0.7940252 -0.8301795 0.7555758 0.7940252 -0.8475045 0.7555758 0.7940252 -0.8643761 0.7555758 0.7940252 -0.880825 0.7555758 0.7940252 -0.8968787 0.7555758 0.7940252 -0.9125621 0.7555758 0.7940252 -0.9278974 0.7555758 0.7940252 -0.9429048 0.7555758 0.7940252 -0.9576028 0.7555758 0.7940252 -0.9720079 0.7555758 0.7940252 -0.9861357 0.7555758 0.7940252 -1 0.7555758 0.7940252 -0 0.7751122 0.7940252 -0.1939468 0.7751122 0.7940252 -0.2773041 0.7751122 0.7940252 -0.3384659 0.7751122 0.7940252 -0.3885728 0.7751122 0.7940252 -0.4317928 0.7751122 0.7940252 -0.470214 0.7751122 0.7940252 -0.5050551 0.7751122 0.7940252 -0.5370987 0.7751122 0.7940252 -0.5668815 0.7751122 0.7940252 -0.5947903 0.7751122 0.7940252 -0.6211144 0.7751122 0.7940252 -0.6460766 0.7751122 0.7940252 -0.6698526 0.7751122 0.7940252 -0.6925839 0.7751122 0.7940252 -0.7143866 0.7751122 0.7940252 -0.7353569 0.7751122 0.7940252 -0.7555758 0.7751122 0.7940252 -0.7751122 0.7751122 0.7940252 -0.7940252 0.7751122 0.7940252 -0.8123661 0.7751122 0.7940252 -0.8301795 0.7751122 0.7940252 -0.8475045 0.7751122 0.7940252 -0.8643761 0.7751122 0.7940252 -0.880825 0.7751122 0.7940252 -0.8968787 0.7751122 0.7940252 -0.9125621 0.7751122 0.7940252 -0.9278974 0.7751122 0.7940252 -0.9429048 0.7751122 0.7940252 -0.9576028 0.7751122 0.7940252 -0.9720079 0.7751122 0.7940252 -0.9861357 0.7751122 0.7940252 -1 0.7751122 0.7940252 -0 0.7940252 0.7940252 -0.1939468 0.7940252 0.7940252 -0.2773041 0.7940252 0.7940252 -0.3384659 0.7940252 0.7940252 -0.3885728 0.7940252 0.7940252 -0.4317928 0.7940252 0.7940252 -0.470214 0.7940252 0.7940252 -0.5050551 0.7940252 0.7940252 -0.5370987 0.7940252 0.7940252 -0.5668815 0.7940252 0.7940252 -0.5947903 0.7940252 0.7940252 -0.6211144 0.7940252 0.7940252 -0.6460766 0.7940252 0.7940252 -0.6698526 0.7940252 0.7940252 -0.6925839 0.7940252 0.7940252 -0.7143866 0.7940252 0.7940252 -0.7353569 0.7940252 0.7940252 -0.7555758 0.7940252 0.7940252 -0.7751122 0.7940252 0.7940252 -0.7940252 0.7940252 0.7940252 -0.8123661 0.7940252 0.7940252 -0.8301795 0.7940252 0.7940252 -0.8475045 0.7940252 0.7940252 -0.8643761 0.7940252 0.7940252 -0.880825 0.7940252 0.7940252 -0.8968787 0.7940252 0.7940252 -0.9125621 0.7940252 0.7940252 -0.9278974 0.7940252 0.7940252 -0.9429048 0.7940252 0.7940252 -0.9576028 0.7940252 0.7940252 -0.9720079 0.7940252 0.7940252 -0.9861357 0.7940252 0.7940252 -1 0.7940252 0.7940252 -0 0.8123661 0.7940252 -0.1939468 0.8123661 0.7940252 -0.2773041 0.8123661 0.7940252 -0.3384659 0.8123661 0.7940252 -0.3885728 0.8123661 0.7940252 -0.4317928 0.8123661 0.7940252 -0.470214 0.8123661 0.7940252 -0.5050551 0.8123661 0.7940252 -0.5370987 0.8123661 0.7940252 -0.5668815 0.8123661 0.7940252 -0.5947903 0.8123661 0.7940252 -0.6211144 0.8123661 0.7940252 -0.6460766 0.8123661 0.7940252 -0.6698526 0.8123661 0.7940252 -0.6925839 0.8123661 0.7940252 -0.7143866 0.8123661 0.7940252 -0.7353569 0.8123661 0.7940252 -0.7555758 0.8123661 0.7940252 -0.7751122 0.8123661 0.7940252 -0.7940252 0.8123661 0.7940252 -0.8123661 0.8123661 0.7940252 -0.8301795 0.8123661 0.7940252 -0.8475045 0.8123661 0.7940252 -0.8643761 0.8123661 0.7940252 -0.880825 0.8123661 0.7940252 -0.8968787 0.8123661 0.7940252 -0.9125621 0.8123661 0.7940252 -0.9278974 0.8123661 0.7940252 -0.9429048 0.8123661 0.7940252 -0.9576028 0.8123661 0.7940252 -0.9720079 0.8123661 0.7940252 -0.9861357 0.8123661 0.7940252 -1 0.8123661 0.7940252 -0 0.8301795 0.7940252 -0.1939468 0.8301795 0.7940252 -0.2773041 0.8301795 0.7940252 -0.3384659 0.8301795 0.7940252 -0.3885728 0.8301795 0.7940252 -0.4317928 0.8301795 0.7940252 -0.470214 0.8301795 0.7940252 -0.5050551 0.8301795 0.7940252 -0.5370987 0.8301795 0.7940252 -0.5668815 0.8301795 0.7940252 -0.5947903 0.8301795 0.7940252 -0.6211144 0.8301795 0.7940252 -0.6460766 0.8301795 0.7940252 -0.6698526 0.8301795 0.7940252 -0.6925839 0.8301795 0.7940252 -0.7143866 0.8301795 0.7940252 -0.7353569 0.8301795 0.7940252 -0.7555758 0.8301795 0.7940252 -0.7751122 0.8301795 0.7940252 -0.7940252 0.8301795 0.7940252 -0.8123661 0.8301795 0.7940252 -0.8301795 0.8301795 0.7940252 -0.8475045 0.8301795 0.7940252 -0.8643761 0.8301795 0.7940252 -0.880825 0.8301795 0.7940252 -0.8968787 0.8301795 0.7940252 -0.9125621 0.8301795 0.7940252 -0.9278974 0.8301795 0.7940252 -0.9429048 0.8301795 0.7940252 -0.9576028 0.8301795 0.7940252 -0.9720079 0.8301795 0.7940252 -0.9861357 0.8301795 0.7940252 -1 0.8301795 0.7940252 -0 0.8475045 0.7940252 -0.1939468 0.8475045 0.7940252 -0.2773041 0.8475045 0.7940252 -0.3384659 0.8475045 0.7940252 -0.3885728 0.8475045 0.7940252 -0.4317928 0.8475045 0.7940252 -0.470214 0.8475045 0.7940252 -0.5050551 0.8475045 0.7940252 -0.5370987 0.8475045 0.7940252 -0.5668815 0.8475045 0.7940252 -0.5947903 0.8475045 0.7940252 -0.6211144 0.8475045 0.7940252 -0.6460766 0.8475045 0.7940252 -0.6698526 0.8475045 0.7940252 -0.6925839 0.8475045 0.7940252 -0.7143866 0.8475045 0.7940252 -0.7353569 0.8475045 0.7940252 -0.7555758 0.8475045 0.7940252 -0.7751122 0.8475045 0.7940252 -0.7940252 0.8475045 0.7940252 -0.8123661 0.8475045 0.7940252 -0.8301795 0.8475045 0.7940252 -0.8475045 0.8475045 0.7940252 -0.8643761 0.8475045 0.7940252 -0.880825 0.8475045 0.7940252 -0.8968787 0.8475045 0.7940252 -0.9125621 0.8475045 0.7940252 -0.9278974 0.8475045 0.7940252 -0.9429048 0.8475045 0.7940252 -0.9576028 0.8475045 0.7940252 -0.9720079 0.8475045 0.7940252 -0.9861357 0.8475045 0.7940252 -1 0.8475045 0.7940252 -0 0.8643761 0.7940252 -0.1939468 0.8643761 0.7940252 -0.2773041 0.8643761 0.7940252 -0.3384659 0.8643761 0.7940252 -0.3885728 0.8643761 0.7940252 -0.4317928 0.8643761 0.7940252 -0.470214 0.8643761 0.7940252 -0.5050551 0.8643761 0.7940252 -0.5370987 0.8643761 0.7940252 -0.5668815 0.8643761 0.7940252 -0.5947903 0.8643761 0.7940252 -0.6211144 0.8643761 0.7940252 -0.6460766 0.8643761 0.7940252 -0.6698526 0.8643761 0.7940252 -0.6925839 0.8643761 0.7940252 -0.7143866 0.8643761 0.7940252 -0.7353569 0.8643761 0.7940252 -0.7555758 0.8643761 0.7940252 -0.7751122 0.8643761 0.7940252 -0.7940252 0.8643761 0.7940252 -0.8123661 0.8643761 0.7940252 -0.8301795 0.8643761 0.7940252 -0.8475045 0.8643761 0.7940252 -0.8643761 0.8643761 0.7940252 -0.880825 0.8643761 0.7940252 -0.8968787 0.8643761 0.7940252 -0.9125621 0.8643761 0.7940252 -0.9278974 0.8643761 0.7940252 -0.9429048 0.8643761 0.7940252 -0.9576028 0.8643761 0.7940252 -0.9720079 0.8643761 0.7940252 -0.9861357 0.8643761 0.7940252 -1 0.8643761 0.7940252 -0 0.880825 0.7940252 -0.1939468 0.880825 0.7940252 -0.2773041 0.880825 0.7940252 -0.3384659 0.880825 0.7940252 -0.3885728 0.880825 0.7940252 -0.4317928 0.880825 0.7940252 -0.470214 0.880825 0.7940252 -0.5050551 0.880825 0.7940252 -0.5370987 0.880825 0.7940252 -0.5668815 0.880825 0.7940252 -0.5947903 0.880825 0.7940252 -0.6211144 0.880825 0.7940252 -0.6460766 0.880825 0.7940252 -0.6698526 0.880825 0.7940252 -0.6925839 0.880825 0.7940252 -0.7143866 0.880825 0.7940252 -0.7353569 0.880825 0.7940252 -0.7555758 0.880825 0.7940252 -0.7751122 0.880825 0.7940252 -0.7940252 0.880825 0.7940252 -0.8123661 0.880825 0.7940252 -0.8301795 0.880825 0.7940252 -0.8475045 0.880825 0.7940252 -0.8643761 0.880825 0.7940252 -0.880825 0.880825 0.7940252 -0.8968787 0.880825 0.7940252 -0.9125621 0.880825 0.7940252 -0.9278974 0.880825 0.7940252 -0.9429048 0.880825 0.7940252 -0.9576028 0.880825 0.7940252 -0.9720079 0.880825 0.7940252 -0.9861357 0.880825 0.7940252 -1 0.880825 0.7940252 -0 0.8968787 0.7940252 -0.1939468 0.8968787 0.7940252 -0.2773041 0.8968787 0.7940252 -0.3384659 0.8968787 0.7940252 -0.3885728 0.8968787 0.7940252 -0.4317928 0.8968787 0.7940252 -0.470214 0.8968787 0.7940252 -0.5050551 0.8968787 0.7940252 -0.5370987 0.8968787 0.7940252 -0.5668815 0.8968787 0.7940252 -0.5947903 0.8968787 0.7940252 -0.6211144 0.8968787 0.7940252 -0.6460766 0.8968787 0.7940252 -0.6698526 0.8968787 0.7940252 -0.6925839 0.8968787 0.7940252 -0.7143866 0.8968787 0.7940252 -0.7353569 0.8968787 0.7940252 -0.7555758 0.8968787 0.7940252 -0.7751122 0.8968787 0.7940252 -0.7940252 0.8968787 0.7940252 -0.8123661 0.8968787 0.7940252 -0.8301795 0.8968787 0.7940252 -0.8475045 0.8968787 0.7940252 -0.8643761 0.8968787 0.7940252 -0.880825 0.8968787 0.7940252 -0.8968787 0.8968787 0.7940252 -0.9125621 0.8968787 0.7940252 -0.9278974 0.8968787 0.7940252 -0.9429048 0.8968787 0.7940252 -0.9576028 0.8968787 0.7940252 -0.9720079 0.8968787 0.7940252 -0.9861357 0.8968787 0.7940252 -1 0.8968787 0.7940252 -0 0.9125621 0.7940252 -0.1939468 0.9125621 0.7940252 -0.2773041 0.9125621 0.7940252 -0.3384659 0.9125621 0.7940252 -0.3885728 0.9125621 0.7940252 -0.4317928 0.9125621 0.7940252 -0.470214 0.9125621 0.7940252 -0.5050551 0.9125621 0.7940252 -0.5370987 0.9125621 0.7940252 -0.5668815 0.9125621 0.7940252 -0.5947903 0.9125621 0.7940252 -0.6211144 0.9125621 0.7940252 -0.6460766 0.9125621 0.7940252 -0.6698526 0.9125621 0.7940252 -0.6925839 0.9125621 0.7940252 -0.7143866 0.9125621 0.7940252 -0.7353569 0.9125621 0.7940252 -0.7555758 0.9125621 0.7940252 -0.7751122 0.9125621 0.7940252 -0.7940252 0.9125621 0.7940252 -0.8123661 0.9125621 0.7940252 -0.8301795 0.9125621 0.7940252 -0.8475045 0.9125621 0.7940252 -0.8643761 0.9125621 0.7940252 -0.880825 0.9125621 0.7940252 -0.8968787 0.9125621 0.7940252 -0.9125621 0.9125621 0.7940252 -0.9278974 0.9125621 0.7940252 -0.9429048 0.9125621 0.7940252 -0.9576028 0.9125621 0.7940252 -0.9720079 0.9125621 0.7940252 -0.9861357 0.9125621 0.7940252 -1 0.9125621 0.7940252 -0 0.9278974 0.7940252 -0.1939468 0.9278974 0.7940252 -0.2773041 0.9278974 0.7940252 -0.3384659 0.9278974 0.7940252 -0.3885728 0.9278974 0.7940252 -0.4317928 0.9278974 0.7940252 -0.470214 0.9278974 0.7940252 -0.5050551 0.9278974 0.7940252 -0.5370987 0.9278974 0.7940252 -0.5668815 0.9278974 0.7940252 -0.5947903 0.9278974 0.7940252 -0.6211144 0.9278974 0.7940252 -0.6460766 0.9278974 0.7940252 -0.6698526 0.9278974 0.7940252 -0.6925839 0.9278974 0.7940252 -0.7143866 0.9278974 0.7940252 -0.7353569 0.9278974 0.7940252 -0.7555758 0.9278974 0.7940252 -0.7751122 0.9278974 0.7940252 -0.7940252 0.9278974 0.7940252 -0.8123661 0.9278974 0.7940252 -0.8301795 0.9278974 0.7940252 -0.8475045 0.9278974 0.7940252 -0.8643761 0.9278974 0.7940252 -0.880825 0.9278974 0.7940252 -0.8968787 0.9278974 0.7940252 -0.9125621 0.9278974 0.7940252 -0.9278974 0.9278974 0.7940252 -0.9429048 0.9278974 0.7940252 -0.9576028 0.9278974 0.7940252 -0.9720079 0.9278974 0.7940252 -0.9861357 0.9278974 0.7940252 -1 0.9278974 0.7940252 -0 0.9429048 0.7940252 -0.1939468 0.9429048 0.7940252 -0.2773041 0.9429048 0.7940252 -0.3384659 0.9429048 0.7940252 -0.3885728 0.9429048 0.7940252 -0.4317928 0.9429048 0.7940252 -0.470214 0.9429048 0.7940252 -0.5050551 0.9429048 0.7940252 -0.5370987 0.9429048 0.7940252 -0.5668815 0.9429048 0.7940252 -0.5947903 0.9429048 0.7940252 -0.6211144 0.9429048 0.7940252 -0.6460766 0.9429048 0.7940252 -0.6698526 0.9429048 0.7940252 -0.6925839 0.9429048 0.7940252 -0.7143866 0.9429048 0.7940252 -0.7353569 0.9429048 0.7940252 -0.7555758 0.9429048 0.7940252 -0.7751122 0.9429048 0.7940252 -0.7940252 0.9429048 0.7940252 -0.8123661 0.9429048 0.7940252 -0.8301795 0.9429048 0.7940252 -0.8475045 0.9429048 0.7940252 -0.8643761 0.9429048 0.7940252 -0.880825 0.9429048 0.7940252 -0.8968787 0.9429048 0.7940252 -0.9125621 0.9429048 0.7940252 -0.9278974 0.9429048 0.7940252 -0.9429048 0.9429048 0.7940252 -0.9576028 0.9429048 0.7940252 -0.9720079 0.9429048 0.7940252 -0.9861357 0.9429048 0.7940252 -1 0.9429048 0.7940252 -0 0.9576028 0.7940252 -0.1939468 0.9576028 0.7940252 -0.2773041 0.9576028 0.7940252 -0.3384659 0.9576028 0.7940252 -0.3885728 0.9576028 0.7940252 -0.4317928 0.9576028 0.7940252 -0.470214 0.9576028 0.7940252 -0.5050551 0.9576028 0.7940252 -0.5370987 0.9576028 0.7940252 -0.5668815 0.9576028 0.7940252 -0.5947903 0.9576028 0.7940252 -0.6211144 0.9576028 0.7940252 -0.6460766 0.9576028 0.7940252 -0.6698526 0.9576028 0.7940252 -0.6925839 0.9576028 0.7940252 -0.7143866 0.9576028 0.7940252 -0.7353569 0.9576028 0.7940252 -0.7555758 0.9576028 0.7940252 -0.7751122 0.9576028 0.7940252 -0.7940252 0.9576028 0.7940252 -0.8123661 0.9576028 0.7940252 -0.8301795 0.9576028 0.7940252 -0.8475045 0.9576028 0.7940252 -0.8643761 0.9576028 0.7940252 -0.880825 0.9576028 0.7940252 -0.8968787 0.9576028 0.7940252 -0.9125621 0.9576028 0.7940252 -0.9278974 0.9576028 0.7940252 -0.9429048 0.9576028 0.7940252 -0.9576028 0.9576028 0.7940252 -0.9720079 0.9576028 0.7940252 -0.9861357 0.9576028 0.7940252 -1 0.9576028 0.7940252 -0 0.9720079 0.7940252 -0.1939468 0.9720079 0.7940252 -0.2773041 0.9720079 0.7940252 -0.3384659 0.9720079 0.7940252 -0.3885728 0.9720079 0.7940252 -0.4317928 0.9720079 0.7940252 -0.470214 0.9720079 0.7940252 -0.5050551 0.9720079 0.7940252 -0.5370987 0.9720079 0.7940252 -0.5668815 0.9720079 0.7940252 -0.5947903 0.9720079 0.7940252 -0.6211144 0.9720079 0.7940252 -0.6460766 0.9720079 0.7940252 -0.6698526 0.9720079 0.7940252 -0.6925839 0.9720079 0.7940252 -0.7143866 0.9720079 0.7940252 -0.7353569 0.9720079 0.7940252 -0.7555758 0.9720079 0.7940252 -0.7751122 0.9720079 0.7940252 -0.7940252 0.9720079 0.7940252 -0.8123661 0.9720079 0.7940252 -0.8301795 0.9720079 0.7940252 -0.8475045 0.9720079 0.7940252 -0.8643761 0.9720079 0.7940252 -0.880825 0.9720079 0.7940252 -0.8968787 0.9720079 0.7940252 -0.9125621 0.9720079 0.7940252 -0.9278974 0.9720079 0.7940252 -0.9429048 0.9720079 0.7940252 -0.9576028 0.9720079 0.7940252 -0.9720079 0.9720079 0.7940252 -0.9861357 0.9720079 0.7940252 -1 0.9720079 0.7940252 -0 0.9861357 0.7940252 -0.1939468 0.9861357 0.7940252 -0.2773041 0.9861357 0.7940252 -0.3384659 0.9861357 0.7940252 -0.3885728 0.9861357 0.7940252 -0.4317928 0.9861357 0.7940252 -0.470214 0.9861357 0.7940252 -0.5050551 0.9861357 0.7940252 -0.5370987 0.9861357 0.7940252 -0.5668815 0.9861357 0.7940252 -0.5947903 0.9861357 0.7940252 -0.6211144 0.9861357 0.7940252 -0.6460766 0.9861357 0.7940252 -0.6698526 0.9861357 0.7940252 -0.6925839 0.9861357 0.7940252 -0.7143866 0.9861357 0.7940252 -0.7353569 0.9861357 0.7940252 -0.7555758 0.9861357 0.7940252 -0.7751122 0.9861357 0.7940252 -0.7940252 0.9861357 0.7940252 -0.8123661 0.9861357 0.7940252 -0.8301795 0.9861357 0.7940252 -0.8475045 0.9861357 0.7940252 -0.8643761 0.9861357 0.7940252 -0.880825 0.9861357 0.7940252 -0.8968787 0.9861357 0.7940252 -0.9125621 0.9861357 0.7940252 -0.9278974 0.9861357 0.7940252 -0.9429048 0.9861357 0.7940252 -0.9576028 0.9861357 0.7940252 -0.9720079 0.9861357 0.7940252 -0.9861357 0.9861357 0.7940252 -1 0.9861357 0.7940252 -0 1 0.7940252 -0.1939468 1 0.7940252 -0.2773041 1 0.7940252 -0.3384659 1 0.7940252 -0.3885728 1 0.7940252 -0.4317928 1 0.7940252 -0.470214 1 0.7940252 -0.5050551 1 0.7940252 -0.5370987 1 0.7940252 -0.5668815 1 0.7940252 -0.5947903 1 0.7940252 -0.6211144 1 0.7940252 -0.6460766 1 0.7940252 -0.6698526 1 0.7940252 -0.6925839 1 0.7940252 -0.7143866 1 0.7940252 -0.7353569 1 0.7940252 -0.7555758 1 0.7940252 -0.7751122 1 0.7940252 -0.7940252 1 0.7940252 -0.8123661 1 0.7940252 -0.8301795 1 0.7940252 -0.8475045 1 0.7940252 -0.8643761 1 0.7940252 -0.880825 1 0.7940252 -0.8968787 1 0.7940252 -0.9125621 1 0.7940252 -0.9278974 1 0.7940252 -0.9429048 1 0.7940252 -0.9576028 1 0.7940252 -0.9720079 1 0.7940252 -0.9861357 1 0.7940252 -1 1 0.7940252 -0 0 0.8123661 -0.1939468 0 0.8123661 -0.2773041 0 0.8123661 -0.3384659 0 0.8123661 -0.3885728 0 0.8123661 -0.4317928 0 0.8123661 -0.470214 0 0.8123661 -0.5050551 0 0.8123661 -0.5370987 0 0.8123661 -0.5668815 0 0.8123661 -0.5947903 0 0.8123661 -0.6211144 0 0.8123661 -0.6460766 0 0.8123661 -0.6698526 0 0.8123661 -0.6925839 0 0.8123661 -0.7143866 0 0.8123661 -0.7353569 0 0.8123661 -0.7555758 0 0.8123661 -0.7751122 0 0.8123661 -0.7940252 0 0.8123661 -0.8123661 0 0.8123661 -0.8301795 0 0.8123661 -0.8475045 0 0.8123661 -0.8643761 0 0.8123661 -0.880825 0 0.8123661 -0.8968787 0 0.8123661 -0.9125621 0 0.8123661 -0.9278974 0 0.8123661 -0.9429048 0 0.8123661 -0.9576028 0 0.8123661 -0.9720079 0 0.8123661 -0.9861357 0 0.8123661 -1 0 0.8123661 -0 0.1939468 0.8123661 -0.1939468 0.1939468 0.8123661 -0.2773041 0.1939468 0.8123661 -0.3384659 0.1939468 0.8123661 -0.3885728 0.1939468 0.8123661 -0.4317928 0.1939468 0.8123661 -0.470214 0.1939468 0.8123661 -0.5050551 0.1939468 0.8123661 -0.5370987 0.1939468 0.8123661 -0.5668815 0.1939468 0.8123661 -0.5947903 0.1939468 0.8123661 -0.6211144 0.1939468 0.8123661 -0.6460766 0.1939468 0.8123661 -0.6698526 0.1939468 0.8123661 -0.6925839 0.1939468 0.8123661 -0.7143866 0.1939468 0.8123661 -0.7353569 0.1939468 0.8123661 -0.7555758 0.1939468 0.8123661 -0.7751122 0.1939468 0.8123661 -0.7940252 0.1939468 0.8123661 -0.8123661 0.1939468 0.8123661 -0.8301795 0.1939468 0.8123661 -0.8475045 0.1939468 0.8123661 -0.8643761 0.1939468 0.8123661 -0.880825 0.1939468 0.8123661 -0.8968787 0.1939468 0.8123661 -0.9125621 0.1939468 0.8123661 -0.9278974 0.1939468 0.8123661 -0.9429048 0.1939468 0.8123661 -0.9576028 0.1939468 0.8123661 -0.9720079 0.1939468 0.8123661 -0.9861357 0.1939468 0.8123661 -1 0.1939468 0.8123661 -0 0.2773041 0.8123661 -0.1939468 0.2773041 0.8123661 -0.2773041 0.2773041 0.8123661 -0.3384659 0.2773041 0.8123661 -0.3885728 0.2773041 0.8123661 -0.4317928 0.2773041 0.8123661 -0.470214 0.2773041 0.8123661 -0.5050551 0.2773041 0.8123661 -0.5370987 0.2773041 0.8123661 -0.5668815 0.2773041 0.8123661 -0.5947903 0.2773041 0.8123661 -0.6211144 0.2773041 0.8123661 -0.6460766 0.2773041 0.8123661 -0.6698526 0.2773041 0.8123661 -0.6925839 0.2773041 0.8123661 -0.7143866 0.2773041 0.8123661 -0.7353569 0.2773041 0.8123661 -0.7555758 0.2773041 0.8123661 -0.7751122 0.2773041 0.8123661 -0.7940252 0.2773041 0.8123661 -0.8123661 0.2773041 0.8123661 -0.8301795 0.2773041 0.8123661 -0.8475045 0.2773041 0.8123661 -0.8643761 0.2773041 0.8123661 -0.880825 0.2773041 0.8123661 -0.8968787 0.2773041 0.8123661 -0.9125621 0.2773041 0.8123661 -0.9278974 0.2773041 0.8123661 -0.9429048 0.2773041 0.8123661 -0.9576028 0.2773041 0.8123661 -0.9720079 0.2773041 0.8123661 -0.9861357 0.2773041 0.8123661 -1 0.2773041 0.8123661 -0 0.3384659 0.8123661 -0.1939468 0.3384659 0.8123661 -0.2773041 0.3384659 0.8123661 -0.3384659 0.3384659 0.8123661 -0.3885728 0.3384659 0.8123661 -0.4317928 0.3384659 0.8123661 -0.470214 0.3384659 0.8123661 -0.5050551 0.3384659 0.8123661 -0.5370987 0.3384659 0.8123661 -0.5668815 0.3384659 0.8123661 -0.5947903 0.3384659 0.8123661 -0.6211144 0.3384659 0.8123661 -0.6460766 0.3384659 0.8123661 -0.6698526 0.3384659 0.8123661 -0.6925839 0.3384659 0.8123661 -0.7143866 0.3384659 0.8123661 -0.7353569 0.3384659 0.8123661 -0.7555758 0.3384659 0.8123661 -0.7751122 0.3384659 0.8123661 -0.7940252 0.3384659 0.8123661 -0.8123661 0.3384659 0.8123661 -0.8301795 0.3384659 0.8123661 -0.8475045 0.3384659 0.8123661 -0.8643761 0.3384659 0.8123661 -0.880825 0.3384659 0.8123661 -0.8968787 0.3384659 0.8123661 -0.9125621 0.3384659 0.8123661 -0.9278974 0.3384659 0.8123661 -0.9429048 0.3384659 0.8123661 -0.9576028 0.3384659 0.8123661 -0.9720079 0.3384659 0.8123661 -0.9861357 0.3384659 0.8123661 -1 0.3384659 0.8123661 -0 0.3885728 0.8123661 -0.1939468 0.3885728 0.8123661 -0.2773041 0.3885728 0.8123661 -0.3384659 0.3885728 0.8123661 -0.3885728 0.3885728 0.8123661 -0.4317928 0.3885728 0.8123661 -0.470214 0.3885728 0.8123661 -0.5050551 0.3885728 0.8123661 -0.5370987 0.3885728 0.8123661 -0.5668815 0.3885728 0.8123661 -0.5947903 0.3885728 0.8123661 -0.6211144 0.3885728 0.8123661 -0.6460766 0.3885728 0.8123661 -0.6698526 0.3885728 0.8123661 -0.6925839 0.3885728 0.8123661 -0.7143866 0.3885728 0.8123661 -0.7353569 0.3885728 0.8123661 -0.7555758 0.3885728 0.8123661 -0.7751122 0.3885728 0.8123661 -0.7940252 0.3885728 0.8123661 -0.8123661 0.3885728 0.8123661 -0.8301795 0.3885728 0.8123661 -0.8475045 0.3885728 0.8123661 -0.8643761 0.3885728 0.8123661 -0.880825 0.3885728 0.8123661 -0.8968787 0.3885728 0.8123661 -0.9125621 0.3885728 0.8123661 -0.9278974 0.3885728 0.8123661 -0.9429048 0.3885728 0.8123661 -0.9576028 0.3885728 0.8123661 -0.9720079 0.3885728 0.8123661 -0.9861357 0.3885728 0.8123661 -1 0.3885728 0.8123661 -0 0.4317928 0.8123661 -0.1939468 0.4317928 0.8123661 -0.2773041 0.4317928 0.8123661 -0.3384659 0.4317928 0.8123661 -0.3885728 0.4317928 0.8123661 -0.4317928 0.4317928 0.8123661 -0.470214 0.4317928 0.8123661 -0.5050551 0.4317928 0.8123661 -0.5370987 0.4317928 0.8123661 -0.5668815 0.4317928 0.8123661 -0.5947903 0.4317928 0.8123661 -0.6211144 0.4317928 0.8123661 -0.6460766 0.4317928 0.8123661 -0.6698526 0.4317928 0.8123661 -0.6925839 0.4317928 0.8123661 -0.7143866 0.4317928 0.8123661 -0.7353569 0.4317928 0.8123661 -0.7555758 0.4317928 0.8123661 -0.7751122 0.4317928 0.8123661 -0.7940252 0.4317928 0.8123661 -0.8123661 0.4317928 0.8123661 -0.8301795 0.4317928 0.8123661 -0.8475045 0.4317928 0.8123661 -0.8643761 0.4317928 0.8123661 -0.880825 0.4317928 0.8123661 -0.8968787 0.4317928 0.8123661 -0.9125621 0.4317928 0.8123661 -0.9278974 0.4317928 0.8123661 -0.9429048 0.4317928 0.8123661 -0.9576028 0.4317928 0.8123661 -0.9720079 0.4317928 0.8123661 -0.9861357 0.4317928 0.8123661 -1 0.4317928 0.8123661 -0 0.470214 0.8123661 -0.1939468 0.470214 0.8123661 -0.2773041 0.470214 0.8123661 -0.3384659 0.470214 0.8123661 -0.3885728 0.470214 0.8123661 -0.4317928 0.470214 0.8123661 -0.470214 0.470214 0.8123661 -0.5050551 0.470214 0.8123661 -0.5370987 0.470214 0.8123661 -0.5668815 0.470214 0.8123661 -0.5947903 0.470214 0.8123661 -0.6211144 0.470214 0.8123661 -0.6460766 0.470214 0.8123661 -0.6698526 0.470214 0.8123661 -0.6925839 0.470214 0.8123661 -0.7143866 0.470214 0.8123661 -0.7353569 0.470214 0.8123661 -0.7555758 0.470214 0.8123661 -0.7751122 0.470214 0.8123661 -0.7940252 0.470214 0.8123661 -0.8123661 0.470214 0.8123661 -0.8301795 0.470214 0.8123661 -0.8475045 0.470214 0.8123661 -0.8643761 0.470214 0.8123661 -0.880825 0.470214 0.8123661 -0.8968787 0.470214 0.8123661 -0.9125621 0.470214 0.8123661 -0.9278974 0.470214 0.8123661 -0.9429048 0.470214 0.8123661 -0.9576028 0.470214 0.8123661 -0.9720079 0.470214 0.8123661 -0.9861357 0.470214 0.8123661 -1 0.470214 0.8123661 -0 0.5050551 0.8123661 -0.1939468 0.5050551 0.8123661 -0.2773041 0.5050551 0.8123661 -0.3384659 0.5050551 0.8123661 -0.3885728 0.5050551 0.8123661 -0.4317928 0.5050551 0.8123661 -0.470214 0.5050551 0.8123661 -0.5050551 0.5050551 0.8123661 -0.5370987 0.5050551 0.8123661 -0.5668815 0.5050551 0.8123661 -0.5947903 0.5050551 0.8123661 -0.6211144 0.5050551 0.8123661 -0.6460766 0.5050551 0.8123661 -0.6698526 0.5050551 0.8123661 -0.6925839 0.5050551 0.8123661 -0.7143866 0.5050551 0.8123661 -0.7353569 0.5050551 0.8123661 -0.7555758 0.5050551 0.8123661 -0.7751122 0.5050551 0.8123661 -0.7940252 0.5050551 0.8123661 -0.8123661 0.5050551 0.8123661 -0.8301795 0.5050551 0.8123661 -0.8475045 0.5050551 0.8123661 -0.8643761 0.5050551 0.8123661 -0.880825 0.5050551 0.8123661 -0.8968787 0.5050551 0.8123661 -0.9125621 0.5050551 0.8123661 -0.9278974 0.5050551 0.8123661 -0.9429048 0.5050551 0.8123661 -0.9576028 0.5050551 0.8123661 -0.9720079 0.5050551 0.8123661 -0.9861357 0.5050551 0.8123661 -1 0.5050551 0.8123661 -0 0.5370987 0.8123661 -0.1939468 0.5370987 0.8123661 -0.2773041 0.5370987 0.8123661 -0.3384659 0.5370987 0.8123661 -0.3885728 0.5370987 0.8123661 -0.4317928 0.5370987 0.8123661 -0.470214 0.5370987 0.8123661 -0.5050551 0.5370987 0.8123661 -0.5370987 0.5370987 0.8123661 -0.5668815 0.5370987 0.8123661 -0.5947903 0.5370987 0.8123661 -0.6211144 0.5370987 0.8123661 -0.6460766 0.5370987 0.8123661 -0.6698526 0.5370987 0.8123661 -0.6925839 0.5370987 0.8123661 -0.7143866 0.5370987 0.8123661 -0.7353569 0.5370987 0.8123661 -0.7555758 0.5370987 0.8123661 -0.7751122 0.5370987 0.8123661 -0.7940252 0.5370987 0.8123661 -0.8123661 0.5370987 0.8123661 -0.8301795 0.5370987 0.8123661 -0.8475045 0.5370987 0.8123661 -0.8643761 0.5370987 0.8123661 -0.880825 0.5370987 0.8123661 -0.8968787 0.5370987 0.8123661 -0.9125621 0.5370987 0.8123661 -0.9278974 0.5370987 0.8123661 -0.9429048 0.5370987 0.8123661 -0.9576028 0.5370987 0.8123661 -0.9720079 0.5370987 0.8123661 -0.9861357 0.5370987 0.8123661 -1 0.5370987 0.8123661 -0 0.5668815 0.8123661 -0.1939468 0.5668815 0.8123661 -0.2773041 0.5668815 0.8123661 -0.3384659 0.5668815 0.8123661 -0.3885728 0.5668815 0.8123661 -0.4317928 0.5668815 0.8123661 -0.470214 0.5668815 0.8123661 -0.5050551 0.5668815 0.8123661 -0.5370987 0.5668815 0.8123661 -0.5668815 0.5668815 0.8123661 -0.5947903 0.5668815 0.8123661 -0.6211144 0.5668815 0.8123661 -0.6460766 0.5668815 0.8123661 -0.6698526 0.5668815 0.8123661 -0.6925839 0.5668815 0.8123661 -0.7143866 0.5668815 0.8123661 -0.7353569 0.5668815 0.8123661 -0.7555758 0.5668815 0.8123661 -0.7751122 0.5668815 0.8123661 -0.7940252 0.5668815 0.8123661 -0.8123661 0.5668815 0.8123661 -0.8301795 0.5668815 0.8123661 -0.8475045 0.5668815 0.8123661 -0.8643761 0.5668815 0.8123661 -0.880825 0.5668815 0.8123661 -0.8968787 0.5668815 0.8123661 -0.9125621 0.5668815 0.8123661 -0.9278974 0.5668815 0.8123661 -0.9429048 0.5668815 0.8123661 -0.9576028 0.5668815 0.8123661 -0.9720079 0.5668815 0.8123661 -0.9861357 0.5668815 0.8123661 -1 0.5668815 0.8123661 -0 0.5947903 0.8123661 -0.1939468 0.5947903 0.8123661 -0.2773041 0.5947903 0.8123661 -0.3384659 0.5947903 0.8123661 -0.3885728 0.5947903 0.8123661 -0.4317928 0.5947903 0.8123661 -0.470214 0.5947903 0.8123661 -0.5050551 0.5947903 0.8123661 -0.5370987 0.5947903 0.8123661 -0.5668815 0.5947903 0.8123661 -0.5947903 0.5947903 0.8123661 -0.6211144 0.5947903 0.8123661 -0.6460766 0.5947903 0.8123661 -0.6698526 0.5947903 0.8123661 -0.6925839 0.5947903 0.8123661 -0.7143866 0.5947903 0.8123661 -0.7353569 0.5947903 0.8123661 -0.7555758 0.5947903 0.8123661 -0.7751122 0.5947903 0.8123661 -0.7940252 0.5947903 0.8123661 -0.8123661 0.5947903 0.8123661 -0.8301795 0.5947903 0.8123661 -0.8475045 0.5947903 0.8123661 -0.8643761 0.5947903 0.8123661 -0.880825 0.5947903 0.8123661 -0.8968787 0.5947903 0.8123661 -0.9125621 0.5947903 0.8123661 -0.9278974 0.5947903 0.8123661 -0.9429048 0.5947903 0.8123661 -0.9576028 0.5947903 0.8123661 -0.9720079 0.5947903 0.8123661 -0.9861357 0.5947903 0.8123661 -1 0.5947903 0.8123661 -0 0.6211144 0.8123661 -0.1939468 0.6211144 0.8123661 -0.2773041 0.6211144 0.8123661 -0.3384659 0.6211144 0.8123661 -0.3885728 0.6211144 0.8123661 -0.4317928 0.6211144 0.8123661 -0.470214 0.6211144 0.8123661 -0.5050551 0.6211144 0.8123661 -0.5370987 0.6211144 0.8123661 -0.5668815 0.6211144 0.8123661 -0.5947903 0.6211144 0.8123661 -0.6211144 0.6211144 0.8123661 -0.6460766 0.6211144 0.8123661 -0.6698526 0.6211144 0.8123661 -0.6925839 0.6211144 0.8123661 -0.7143866 0.6211144 0.8123661 -0.7353569 0.6211144 0.8123661 -0.7555758 0.6211144 0.8123661 -0.7751122 0.6211144 0.8123661 -0.7940252 0.6211144 0.8123661 -0.8123661 0.6211144 0.8123661 -0.8301795 0.6211144 0.8123661 -0.8475045 0.6211144 0.8123661 -0.8643761 0.6211144 0.8123661 -0.880825 0.6211144 0.8123661 -0.8968787 0.6211144 0.8123661 -0.9125621 0.6211144 0.8123661 -0.9278974 0.6211144 0.8123661 -0.9429048 0.6211144 0.8123661 -0.9576028 0.6211144 0.8123661 -0.9720079 0.6211144 0.8123661 -0.9861357 0.6211144 0.8123661 -1 0.6211144 0.8123661 -0 0.6460766 0.8123661 -0.1939468 0.6460766 0.8123661 -0.2773041 0.6460766 0.8123661 -0.3384659 0.6460766 0.8123661 -0.3885728 0.6460766 0.8123661 -0.4317928 0.6460766 0.8123661 -0.470214 0.6460766 0.8123661 -0.5050551 0.6460766 0.8123661 -0.5370987 0.6460766 0.8123661 -0.5668815 0.6460766 0.8123661 -0.5947903 0.6460766 0.8123661 -0.6211144 0.6460766 0.8123661 -0.6460766 0.6460766 0.8123661 -0.6698526 0.6460766 0.8123661 -0.6925839 0.6460766 0.8123661 -0.7143866 0.6460766 0.8123661 -0.7353569 0.6460766 0.8123661 -0.7555758 0.6460766 0.8123661 -0.7751122 0.6460766 0.8123661 -0.7940252 0.6460766 0.8123661 -0.8123661 0.6460766 0.8123661 -0.8301795 0.6460766 0.8123661 -0.8475045 0.6460766 0.8123661 -0.8643761 0.6460766 0.8123661 -0.880825 0.6460766 0.8123661 -0.8968787 0.6460766 0.8123661 -0.9125621 0.6460766 0.8123661 -0.9278974 0.6460766 0.8123661 -0.9429048 0.6460766 0.8123661 -0.9576028 0.6460766 0.8123661 -0.9720079 0.6460766 0.8123661 -0.9861357 0.6460766 0.8123661 -1 0.6460766 0.8123661 -0 0.6698526 0.8123661 -0.1939468 0.6698526 0.8123661 -0.2773041 0.6698526 0.8123661 -0.3384659 0.6698526 0.8123661 -0.3885728 0.6698526 0.8123661 -0.4317928 0.6698526 0.8123661 -0.470214 0.6698526 0.8123661 -0.5050551 0.6698526 0.8123661 -0.5370987 0.6698526 0.8123661 -0.5668815 0.6698526 0.8123661 -0.5947903 0.6698526 0.8123661 -0.6211144 0.6698526 0.8123661 -0.6460766 0.6698526 0.8123661 -0.6698526 0.6698526 0.8123661 -0.6925839 0.6698526 0.8123661 -0.7143866 0.6698526 0.8123661 -0.7353569 0.6698526 0.8123661 -0.7555758 0.6698526 0.8123661 -0.7751122 0.6698526 0.8123661 -0.7940252 0.6698526 0.8123661 -0.8123661 0.6698526 0.8123661 -0.8301795 0.6698526 0.8123661 -0.8475045 0.6698526 0.8123661 -0.8643761 0.6698526 0.8123661 -0.880825 0.6698526 0.8123661 -0.8968787 0.6698526 0.8123661 -0.9125621 0.6698526 0.8123661 -0.9278974 0.6698526 0.8123661 -0.9429048 0.6698526 0.8123661 -0.9576028 0.6698526 0.8123661 -0.9720079 0.6698526 0.8123661 -0.9861357 0.6698526 0.8123661 -1 0.6698526 0.8123661 -0 0.6925839 0.8123661 -0.1939468 0.6925839 0.8123661 -0.2773041 0.6925839 0.8123661 -0.3384659 0.6925839 0.8123661 -0.3885728 0.6925839 0.8123661 -0.4317928 0.6925839 0.8123661 -0.470214 0.6925839 0.8123661 -0.5050551 0.6925839 0.8123661 -0.5370987 0.6925839 0.8123661 -0.5668815 0.6925839 0.8123661 -0.5947903 0.6925839 0.8123661 -0.6211144 0.6925839 0.8123661 -0.6460766 0.6925839 0.8123661 -0.6698526 0.6925839 0.8123661 -0.6925839 0.6925839 0.8123661 -0.7143866 0.6925839 0.8123661 -0.7353569 0.6925839 0.8123661 -0.7555758 0.6925839 0.8123661 -0.7751122 0.6925839 0.8123661 -0.7940252 0.6925839 0.8123661 -0.8123661 0.6925839 0.8123661 -0.8301795 0.6925839 0.8123661 -0.8475045 0.6925839 0.8123661 -0.8643761 0.6925839 0.8123661 -0.880825 0.6925839 0.8123661 -0.8968787 0.6925839 0.8123661 -0.9125621 0.6925839 0.8123661 -0.9278974 0.6925839 0.8123661 -0.9429048 0.6925839 0.8123661 -0.9576028 0.6925839 0.8123661 -0.9720079 0.6925839 0.8123661 -0.9861357 0.6925839 0.8123661 -1 0.6925839 0.8123661 -0 0.7143866 0.8123661 -0.1939468 0.7143866 0.8123661 -0.2773041 0.7143866 0.8123661 -0.3384659 0.7143866 0.8123661 -0.3885728 0.7143866 0.8123661 -0.4317928 0.7143866 0.8123661 -0.470214 0.7143866 0.8123661 -0.5050551 0.7143866 0.8123661 -0.5370987 0.7143866 0.8123661 -0.5668815 0.7143866 0.8123661 -0.5947903 0.7143866 0.8123661 -0.6211144 0.7143866 0.8123661 -0.6460766 0.7143866 0.8123661 -0.6698526 0.7143866 0.8123661 -0.6925839 0.7143866 0.8123661 -0.7143866 0.7143866 0.8123661 -0.7353569 0.7143866 0.8123661 -0.7555758 0.7143866 0.8123661 -0.7751122 0.7143866 0.8123661 -0.7940252 0.7143866 0.8123661 -0.8123661 0.7143866 0.8123661 -0.8301795 0.7143866 0.8123661 -0.8475045 0.7143866 0.8123661 -0.8643761 0.7143866 0.8123661 -0.880825 0.7143866 0.8123661 -0.8968787 0.7143866 0.8123661 -0.9125621 0.7143866 0.8123661 -0.9278974 0.7143866 0.8123661 -0.9429048 0.7143866 0.8123661 -0.9576028 0.7143866 0.8123661 -0.9720079 0.7143866 0.8123661 -0.9861357 0.7143866 0.8123661 -1 0.7143866 0.8123661 -0 0.7353569 0.8123661 -0.1939468 0.7353569 0.8123661 -0.2773041 0.7353569 0.8123661 -0.3384659 0.7353569 0.8123661 -0.3885728 0.7353569 0.8123661 -0.4317928 0.7353569 0.8123661 -0.470214 0.7353569 0.8123661 -0.5050551 0.7353569 0.8123661 -0.5370987 0.7353569 0.8123661 -0.5668815 0.7353569 0.8123661 -0.5947903 0.7353569 0.8123661 -0.6211144 0.7353569 0.8123661 -0.6460766 0.7353569 0.8123661 -0.6698526 0.7353569 0.8123661 -0.6925839 0.7353569 0.8123661 -0.7143866 0.7353569 0.8123661 -0.7353569 0.7353569 0.8123661 -0.7555758 0.7353569 0.8123661 -0.7751122 0.7353569 0.8123661 -0.7940252 0.7353569 0.8123661 -0.8123661 0.7353569 0.8123661 -0.8301795 0.7353569 0.8123661 -0.8475045 0.7353569 0.8123661 -0.8643761 0.7353569 0.8123661 -0.880825 0.7353569 0.8123661 -0.8968787 0.7353569 0.8123661 -0.9125621 0.7353569 0.8123661 -0.9278974 0.7353569 0.8123661 -0.9429048 0.7353569 0.8123661 -0.9576028 0.7353569 0.8123661 -0.9720079 0.7353569 0.8123661 -0.9861357 0.7353569 0.8123661 -1 0.7353569 0.8123661 -0 0.7555758 0.8123661 -0.1939468 0.7555758 0.8123661 -0.2773041 0.7555758 0.8123661 -0.3384659 0.7555758 0.8123661 -0.3885728 0.7555758 0.8123661 -0.4317928 0.7555758 0.8123661 -0.470214 0.7555758 0.8123661 -0.5050551 0.7555758 0.8123661 -0.5370987 0.7555758 0.8123661 -0.5668815 0.7555758 0.8123661 -0.5947903 0.7555758 0.8123661 -0.6211144 0.7555758 0.8123661 -0.6460766 0.7555758 0.8123661 -0.6698526 0.7555758 0.8123661 -0.6925839 0.7555758 0.8123661 -0.7143866 0.7555758 0.8123661 -0.7353569 0.7555758 0.8123661 -0.7555758 0.7555758 0.8123661 -0.7751122 0.7555758 0.8123661 -0.7940252 0.7555758 0.8123661 -0.8123661 0.7555758 0.8123661 -0.8301795 0.7555758 0.8123661 -0.8475045 0.7555758 0.8123661 -0.8643761 0.7555758 0.8123661 -0.880825 0.7555758 0.8123661 -0.8968787 0.7555758 0.8123661 -0.9125621 0.7555758 0.8123661 -0.9278974 0.7555758 0.8123661 -0.9429048 0.7555758 0.8123661 -0.9576028 0.7555758 0.8123661 -0.9720079 0.7555758 0.8123661 -0.9861357 0.7555758 0.8123661 -1 0.7555758 0.8123661 -0 0.7751122 0.8123661 -0.1939468 0.7751122 0.8123661 -0.2773041 0.7751122 0.8123661 -0.3384659 0.7751122 0.8123661 -0.3885728 0.7751122 0.8123661 -0.4317928 0.7751122 0.8123661 -0.470214 0.7751122 0.8123661 -0.5050551 0.7751122 0.8123661 -0.5370987 0.7751122 0.8123661 -0.5668815 0.7751122 0.8123661 -0.5947903 0.7751122 0.8123661 -0.6211144 0.7751122 0.8123661 -0.6460766 0.7751122 0.8123661 -0.6698526 0.7751122 0.8123661 -0.6925839 0.7751122 0.8123661 -0.7143866 0.7751122 0.8123661 -0.7353569 0.7751122 0.8123661 -0.7555758 0.7751122 0.8123661 -0.7751122 0.7751122 0.8123661 -0.7940252 0.7751122 0.8123661 -0.8123661 0.7751122 0.8123661 -0.8301795 0.7751122 0.8123661 -0.8475045 0.7751122 0.8123661 -0.8643761 0.7751122 0.8123661 -0.880825 0.7751122 0.8123661 -0.8968787 0.7751122 0.8123661 -0.9125621 0.7751122 0.8123661 -0.9278974 0.7751122 0.8123661 -0.9429048 0.7751122 0.8123661 -0.9576028 0.7751122 0.8123661 -0.9720079 0.7751122 0.8123661 -0.9861357 0.7751122 0.8123661 -1 0.7751122 0.8123661 -0 0.7940252 0.8123661 -0.1939468 0.7940252 0.8123661 -0.2773041 0.7940252 0.8123661 -0.3384659 0.7940252 0.8123661 -0.3885728 0.7940252 0.8123661 -0.4317928 0.7940252 0.8123661 -0.470214 0.7940252 0.8123661 -0.5050551 0.7940252 0.8123661 -0.5370987 0.7940252 0.8123661 -0.5668815 0.7940252 0.8123661 -0.5947903 0.7940252 0.8123661 -0.6211144 0.7940252 0.8123661 -0.6460766 0.7940252 0.8123661 -0.6698526 0.7940252 0.8123661 -0.6925839 0.7940252 0.8123661 -0.7143866 0.7940252 0.8123661 -0.7353569 0.7940252 0.8123661 -0.7555758 0.7940252 0.8123661 -0.7751122 0.7940252 0.8123661 -0.7940252 0.7940252 0.8123661 -0.8123661 0.7940252 0.8123661 -0.8301795 0.7940252 0.8123661 -0.8475045 0.7940252 0.8123661 -0.8643761 0.7940252 0.8123661 -0.880825 0.7940252 0.8123661 -0.8968787 0.7940252 0.8123661 -0.9125621 0.7940252 0.8123661 -0.9278974 0.7940252 0.8123661 -0.9429048 0.7940252 0.8123661 -0.9576028 0.7940252 0.8123661 -0.9720079 0.7940252 0.8123661 -0.9861357 0.7940252 0.8123661 -1 0.7940252 0.8123661 -0 0.8123661 0.8123661 -0.1939468 0.8123661 0.8123661 -0.2773041 0.8123661 0.8123661 -0.3384659 0.8123661 0.8123661 -0.3885728 0.8123661 0.8123661 -0.4317928 0.8123661 0.8123661 -0.470214 0.8123661 0.8123661 -0.5050551 0.8123661 0.8123661 -0.5370987 0.8123661 0.8123661 -0.5668815 0.8123661 0.8123661 -0.5947903 0.8123661 0.8123661 -0.6211144 0.8123661 0.8123661 -0.6460766 0.8123661 0.8123661 -0.6698526 0.8123661 0.8123661 -0.6925839 0.8123661 0.8123661 -0.7143866 0.8123661 0.8123661 -0.7353569 0.8123661 0.8123661 -0.7555758 0.8123661 0.8123661 -0.7751122 0.8123661 0.8123661 -0.7940252 0.8123661 0.8123661 -0.8123661 0.8123661 0.8123661 -0.8301795 0.8123661 0.8123661 -0.8475045 0.8123661 0.8123661 -0.8643761 0.8123661 0.8123661 -0.880825 0.8123661 0.8123661 -0.8968787 0.8123661 0.8123661 -0.9125621 0.8123661 0.8123661 -0.9278974 0.8123661 0.8123661 -0.9429048 0.8123661 0.8123661 -0.9576028 0.8123661 0.8123661 -0.9720079 0.8123661 0.8123661 -0.9861357 0.8123661 0.8123661 -1 0.8123661 0.8123661 -0 0.8301795 0.8123661 -0.1939468 0.8301795 0.8123661 -0.2773041 0.8301795 0.8123661 -0.3384659 0.8301795 0.8123661 -0.3885728 0.8301795 0.8123661 -0.4317928 0.8301795 0.8123661 -0.470214 0.8301795 0.8123661 -0.5050551 0.8301795 0.8123661 -0.5370987 0.8301795 0.8123661 -0.5668815 0.8301795 0.8123661 -0.5947903 0.8301795 0.8123661 -0.6211144 0.8301795 0.8123661 -0.6460766 0.8301795 0.8123661 -0.6698526 0.8301795 0.8123661 -0.6925839 0.8301795 0.8123661 -0.7143866 0.8301795 0.8123661 -0.7353569 0.8301795 0.8123661 -0.7555758 0.8301795 0.8123661 -0.7751122 0.8301795 0.8123661 -0.7940252 0.8301795 0.8123661 -0.8123661 0.8301795 0.8123661 -0.8301795 0.8301795 0.8123661 -0.8475045 0.8301795 0.8123661 -0.8643761 0.8301795 0.8123661 -0.880825 0.8301795 0.8123661 -0.8968787 0.8301795 0.8123661 -0.9125621 0.8301795 0.8123661 -0.9278974 0.8301795 0.8123661 -0.9429048 0.8301795 0.8123661 -0.9576028 0.8301795 0.8123661 -0.9720079 0.8301795 0.8123661 -0.9861357 0.8301795 0.8123661 -1 0.8301795 0.8123661 -0 0.8475045 0.8123661 -0.1939468 0.8475045 0.8123661 -0.2773041 0.8475045 0.8123661 -0.3384659 0.8475045 0.8123661 -0.3885728 0.8475045 0.8123661 -0.4317928 0.8475045 0.8123661 -0.470214 0.8475045 0.8123661 -0.5050551 0.8475045 0.8123661 -0.5370987 0.8475045 0.8123661 -0.5668815 0.8475045 0.8123661 -0.5947903 0.8475045 0.8123661 -0.6211144 0.8475045 0.8123661 -0.6460766 0.8475045 0.8123661 -0.6698526 0.8475045 0.8123661 -0.6925839 0.8475045 0.8123661 -0.7143866 0.8475045 0.8123661 -0.7353569 0.8475045 0.8123661 -0.7555758 0.8475045 0.8123661 -0.7751122 0.8475045 0.8123661 -0.7940252 0.8475045 0.8123661 -0.8123661 0.8475045 0.8123661 -0.8301795 0.8475045 0.8123661 -0.8475045 0.8475045 0.8123661 -0.8643761 0.8475045 0.8123661 -0.880825 0.8475045 0.8123661 -0.8968787 0.8475045 0.8123661 -0.9125621 0.8475045 0.8123661 -0.9278974 0.8475045 0.8123661 -0.9429048 0.8475045 0.8123661 -0.9576028 0.8475045 0.8123661 -0.9720079 0.8475045 0.8123661 -0.9861357 0.8475045 0.8123661 -1 0.8475045 0.8123661 -0 0.8643761 0.8123661 -0.1939468 0.8643761 0.8123661 -0.2773041 0.8643761 0.8123661 -0.3384659 0.8643761 0.8123661 -0.3885728 0.8643761 0.8123661 -0.4317928 0.8643761 0.8123661 -0.470214 0.8643761 0.8123661 -0.5050551 0.8643761 0.8123661 -0.5370987 0.8643761 0.8123661 -0.5668815 0.8643761 0.8123661 -0.5947903 0.8643761 0.8123661 -0.6211144 0.8643761 0.8123661 -0.6460766 0.8643761 0.8123661 -0.6698526 0.8643761 0.8123661 -0.6925839 0.8643761 0.8123661 -0.7143866 0.8643761 0.8123661 -0.7353569 0.8643761 0.8123661 -0.7555758 0.8643761 0.8123661 -0.7751122 0.8643761 0.8123661 -0.7940252 0.8643761 0.8123661 -0.8123661 0.8643761 0.8123661 -0.8301795 0.8643761 0.8123661 -0.8475045 0.8643761 0.8123661 -0.8643761 0.8643761 0.8123661 -0.880825 0.8643761 0.8123661 -0.8968787 0.8643761 0.8123661 -0.9125621 0.8643761 0.8123661 -0.9278974 0.8643761 0.8123661 -0.9429048 0.8643761 0.8123661 -0.9576028 0.8643761 0.8123661 -0.9720079 0.8643761 0.8123661 -0.9861357 0.8643761 0.8123661 -1 0.8643761 0.8123661 -0 0.880825 0.8123661 -0.1939468 0.880825 0.8123661 -0.2773041 0.880825 0.8123661 -0.3384659 0.880825 0.8123661 -0.3885728 0.880825 0.8123661 -0.4317928 0.880825 0.8123661 -0.470214 0.880825 0.8123661 -0.5050551 0.880825 0.8123661 -0.5370987 0.880825 0.8123661 -0.5668815 0.880825 0.8123661 -0.5947903 0.880825 0.8123661 -0.6211144 0.880825 0.8123661 -0.6460766 0.880825 0.8123661 -0.6698526 0.880825 0.8123661 -0.6925839 0.880825 0.8123661 -0.7143866 0.880825 0.8123661 -0.7353569 0.880825 0.8123661 -0.7555758 0.880825 0.8123661 -0.7751122 0.880825 0.8123661 -0.7940252 0.880825 0.8123661 -0.8123661 0.880825 0.8123661 -0.8301795 0.880825 0.8123661 -0.8475045 0.880825 0.8123661 -0.8643761 0.880825 0.8123661 -0.880825 0.880825 0.8123661 -0.8968787 0.880825 0.8123661 -0.9125621 0.880825 0.8123661 -0.9278974 0.880825 0.8123661 -0.9429048 0.880825 0.8123661 -0.9576028 0.880825 0.8123661 -0.9720079 0.880825 0.8123661 -0.9861357 0.880825 0.8123661 -1 0.880825 0.8123661 -0 0.8968787 0.8123661 -0.1939468 0.8968787 0.8123661 -0.2773041 0.8968787 0.8123661 -0.3384659 0.8968787 0.8123661 -0.3885728 0.8968787 0.8123661 -0.4317928 0.8968787 0.8123661 -0.470214 0.8968787 0.8123661 -0.5050551 0.8968787 0.8123661 -0.5370987 0.8968787 0.8123661 -0.5668815 0.8968787 0.8123661 -0.5947903 0.8968787 0.8123661 -0.6211144 0.8968787 0.8123661 -0.6460766 0.8968787 0.8123661 -0.6698526 0.8968787 0.8123661 -0.6925839 0.8968787 0.8123661 -0.7143866 0.8968787 0.8123661 -0.7353569 0.8968787 0.8123661 -0.7555758 0.8968787 0.8123661 -0.7751122 0.8968787 0.8123661 -0.7940252 0.8968787 0.8123661 -0.8123661 0.8968787 0.8123661 -0.8301795 0.8968787 0.8123661 -0.8475045 0.8968787 0.8123661 -0.8643761 0.8968787 0.8123661 -0.880825 0.8968787 0.8123661 -0.8968787 0.8968787 0.8123661 -0.9125621 0.8968787 0.8123661 -0.9278974 0.8968787 0.8123661 -0.9429048 0.8968787 0.8123661 -0.9576028 0.8968787 0.8123661 -0.9720079 0.8968787 0.8123661 -0.9861357 0.8968787 0.8123661 -1 0.8968787 0.8123661 -0 0.9125621 0.8123661 -0.1939468 0.9125621 0.8123661 -0.2773041 0.9125621 0.8123661 -0.3384659 0.9125621 0.8123661 -0.3885728 0.9125621 0.8123661 -0.4317928 0.9125621 0.8123661 -0.470214 0.9125621 0.8123661 -0.5050551 0.9125621 0.8123661 -0.5370987 0.9125621 0.8123661 -0.5668815 0.9125621 0.8123661 -0.5947903 0.9125621 0.8123661 -0.6211144 0.9125621 0.8123661 -0.6460766 0.9125621 0.8123661 -0.6698526 0.9125621 0.8123661 -0.6925839 0.9125621 0.8123661 -0.7143866 0.9125621 0.8123661 -0.7353569 0.9125621 0.8123661 -0.7555758 0.9125621 0.8123661 -0.7751122 0.9125621 0.8123661 -0.7940252 0.9125621 0.8123661 -0.8123661 0.9125621 0.8123661 -0.8301795 0.9125621 0.8123661 -0.8475045 0.9125621 0.8123661 -0.8643761 0.9125621 0.8123661 -0.880825 0.9125621 0.8123661 -0.8968787 0.9125621 0.8123661 -0.9125621 0.9125621 0.8123661 -0.9278974 0.9125621 0.8123661 -0.9429048 0.9125621 0.8123661 -0.9576028 0.9125621 0.8123661 -0.9720079 0.9125621 0.8123661 -0.9861357 0.9125621 0.8123661 -1 0.9125621 0.8123661 -0 0.9278974 0.8123661 -0.1939468 0.9278974 0.8123661 -0.2773041 0.9278974 0.8123661 -0.3384659 0.9278974 0.8123661 -0.3885728 0.9278974 0.8123661 -0.4317928 0.9278974 0.8123661 -0.470214 0.9278974 0.8123661 -0.5050551 0.9278974 0.8123661 -0.5370987 0.9278974 0.8123661 -0.5668815 0.9278974 0.8123661 -0.5947903 0.9278974 0.8123661 -0.6211144 0.9278974 0.8123661 -0.6460766 0.9278974 0.8123661 -0.6698526 0.9278974 0.8123661 -0.6925839 0.9278974 0.8123661 -0.7143866 0.9278974 0.8123661 -0.7353569 0.9278974 0.8123661 -0.7555758 0.9278974 0.8123661 -0.7751122 0.9278974 0.8123661 -0.7940252 0.9278974 0.8123661 -0.8123661 0.9278974 0.8123661 -0.8301795 0.9278974 0.8123661 -0.8475045 0.9278974 0.8123661 -0.8643761 0.9278974 0.8123661 -0.880825 0.9278974 0.8123661 -0.8968787 0.9278974 0.8123661 -0.9125621 0.9278974 0.8123661 -0.9278974 0.9278974 0.8123661 -0.9429048 0.9278974 0.8123661 -0.9576028 0.9278974 0.8123661 -0.9720079 0.9278974 0.8123661 -0.9861357 0.9278974 0.8123661 -1 0.9278974 0.8123661 -0 0.9429048 0.8123661 -0.1939468 0.9429048 0.8123661 -0.2773041 0.9429048 0.8123661 -0.3384659 0.9429048 0.8123661 -0.3885728 0.9429048 0.8123661 -0.4317928 0.9429048 0.8123661 -0.470214 0.9429048 0.8123661 -0.5050551 0.9429048 0.8123661 -0.5370987 0.9429048 0.8123661 -0.5668815 0.9429048 0.8123661 -0.5947903 0.9429048 0.8123661 -0.6211144 0.9429048 0.8123661 -0.6460766 0.9429048 0.8123661 -0.6698526 0.9429048 0.8123661 -0.6925839 0.9429048 0.8123661 -0.7143866 0.9429048 0.8123661 -0.7353569 0.9429048 0.8123661 -0.7555758 0.9429048 0.8123661 -0.7751122 0.9429048 0.8123661 -0.7940252 0.9429048 0.8123661 -0.8123661 0.9429048 0.8123661 -0.8301795 0.9429048 0.8123661 -0.8475045 0.9429048 0.8123661 -0.8643761 0.9429048 0.8123661 -0.880825 0.9429048 0.8123661 -0.8968787 0.9429048 0.8123661 -0.9125621 0.9429048 0.8123661 -0.9278974 0.9429048 0.8123661 -0.9429048 0.9429048 0.8123661 -0.9576028 0.9429048 0.8123661 -0.9720079 0.9429048 0.8123661 -0.9861357 0.9429048 0.8123661 -1 0.9429048 0.8123661 -0 0.9576028 0.8123661 -0.1939468 0.9576028 0.8123661 -0.2773041 0.9576028 0.8123661 -0.3384659 0.9576028 0.8123661 -0.3885728 0.9576028 0.8123661 -0.4317928 0.9576028 0.8123661 -0.470214 0.9576028 0.8123661 -0.5050551 0.9576028 0.8123661 -0.5370987 0.9576028 0.8123661 -0.5668815 0.9576028 0.8123661 -0.5947903 0.9576028 0.8123661 -0.6211144 0.9576028 0.8123661 -0.6460766 0.9576028 0.8123661 -0.6698526 0.9576028 0.8123661 -0.6925839 0.9576028 0.8123661 -0.7143866 0.9576028 0.8123661 -0.7353569 0.9576028 0.8123661 -0.7555758 0.9576028 0.8123661 -0.7751122 0.9576028 0.8123661 -0.7940252 0.9576028 0.8123661 -0.8123661 0.9576028 0.8123661 -0.8301795 0.9576028 0.8123661 -0.8475045 0.9576028 0.8123661 -0.8643761 0.9576028 0.8123661 -0.880825 0.9576028 0.8123661 -0.8968787 0.9576028 0.8123661 -0.9125621 0.9576028 0.8123661 -0.9278974 0.9576028 0.8123661 -0.9429048 0.9576028 0.8123661 -0.9576028 0.9576028 0.8123661 -0.9720079 0.9576028 0.8123661 -0.9861357 0.9576028 0.8123661 -1 0.9576028 0.8123661 -0 0.9720079 0.8123661 -0.1939468 0.9720079 0.8123661 -0.2773041 0.9720079 0.8123661 -0.3384659 0.9720079 0.8123661 -0.3885728 0.9720079 0.8123661 -0.4317928 0.9720079 0.8123661 -0.470214 0.9720079 0.8123661 -0.5050551 0.9720079 0.8123661 -0.5370987 0.9720079 0.8123661 -0.5668815 0.9720079 0.8123661 -0.5947903 0.9720079 0.8123661 -0.6211144 0.9720079 0.8123661 -0.6460766 0.9720079 0.8123661 -0.6698526 0.9720079 0.8123661 -0.6925839 0.9720079 0.8123661 -0.7143866 0.9720079 0.8123661 -0.7353569 0.9720079 0.8123661 -0.7555758 0.9720079 0.8123661 -0.7751122 0.9720079 0.8123661 -0.7940252 0.9720079 0.8123661 -0.8123661 0.9720079 0.8123661 -0.8301795 0.9720079 0.8123661 -0.8475045 0.9720079 0.8123661 -0.8643761 0.9720079 0.8123661 -0.880825 0.9720079 0.8123661 -0.8968787 0.9720079 0.8123661 -0.9125621 0.9720079 0.8123661 -0.9278974 0.9720079 0.8123661 -0.9429048 0.9720079 0.8123661 -0.9576028 0.9720079 0.8123661 -0.9720079 0.9720079 0.8123661 -0.9861357 0.9720079 0.8123661 -1 0.9720079 0.8123661 -0 0.9861357 0.8123661 -0.1939468 0.9861357 0.8123661 -0.2773041 0.9861357 0.8123661 -0.3384659 0.9861357 0.8123661 -0.3885728 0.9861357 0.8123661 -0.4317928 0.9861357 0.8123661 -0.470214 0.9861357 0.8123661 -0.5050551 0.9861357 0.8123661 -0.5370987 0.9861357 0.8123661 -0.5668815 0.9861357 0.8123661 -0.5947903 0.9861357 0.8123661 -0.6211144 0.9861357 0.8123661 -0.6460766 0.9861357 0.8123661 -0.6698526 0.9861357 0.8123661 -0.6925839 0.9861357 0.8123661 -0.7143866 0.9861357 0.8123661 -0.7353569 0.9861357 0.8123661 -0.7555758 0.9861357 0.8123661 -0.7751122 0.9861357 0.8123661 -0.7940252 0.9861357 0.8123661 -0.8123661 0.9861357 0.8123661 -0.8301795 0.9861357 0.8123661 -0.8475045 0.9861357 0.8123661 -0.8643761 0.9861357 0.8123661 -0.880825 0.9861357 0.8123661 -0.8968787 0.9861357 0.8123661 -0.9125621 0.9861357 0.8123661 -0.9278974 0.9861357 0.8123661 -0.9429048 0.9861357 0.8123661 -0.9576028 0.9861357 0.8123661 -0.9720079 0.9861357 0.8123661 -0.9861357 0.9861357 0.8123661 -1 0.9861357 0.8123661 -0 1 0.8123661 -0.1939468 1 0.8123661 -0.2773041 1 0.8123661 -0.3384659 1 0.8123661 -0.3885728 1 0.8123661 -0.4317928 1 0.8123661 -0.470214 1 0.8123661 -0.5050551 1 0.8123661 -0.5370987 1 0.8123661 -0.5668815 1 0.8123661 -0.5947903 1 0.8123661 -0.6211144 1 0.8123661 -0.6460766 1 0.8123661 -0.6698526 1 0.8123661 -0.6925839 1 0.8123661 -0.7143866 1 0.8123661 -0.7353569 1 0.8123661 -0.7555758 1 0.8123661 -0.7751122 1 0.8123661 -0.7940252 1 0.8123661 -0.8123661 1 0.8123661 -0.8301795 1 0.8123661 -0.8475045 1 0.8123661 -0.8643761 1 0.8123661 -0.880825 1 0.8123661 -0.8968787 1 0.8123661 -0.9125621 1 0.8123661 -0.9278974 1 0.8123661 -0.9429048 1 0.8123661 -0.9576028 1 0.8123661 -0.9720079 1 0.8123661 -0.9861357 1 0.8123661 -1 1 0.8123661 -0 0 0.8301795 -0.1939468 0 0.8301795 -0.2773041 0 0.8301795 -0.3384659 0 0.8301795 -0.3885728 0 0.8301795 -0.4317928 0 0.8301795 -0.470214 0 0.8301795 -0.5050551 0 0.8301795 -0.5370987 0 0.8301795 -0.5668815 0 0.8301795 -0.5947903 0 0.8301795 -0.6211144 0 0.8301795 -0.6460766 0 0.8301795 -0.6698526 0 0.8301795 -0.6925839 0 0.8301795 -0.7143866 0 0.8301795 -0.7353569 0 0.8301795 -0.7555758 0 0.8301795 -0.7751122 0 0.8301795 -0.7940252 0 0.8301795 -0.8123661 0 0.8301795 -0.8301795 0 0.8301795 -0.8475045 0 0.8301795 -0.8643761 0 0.8301795 -0.880825 0 0.8301795 -0.8968787 0 0.8301795 -0.9125621 0 0.8301795 -0.9278974 0 0.8301795 -0.9429048 0 0.8301795 -0.9576028 0 0.8301795 -0.9720079 0 0.8301795 -0.9861357 0 0.8301795 -1 0 0.8301795 -0 0.1939468 0.8301795 -0.1939468 0.1939468 0.8301795 -0.2773041 0.1939468 0.8301795 -0.3384659 0.1939468 0.8301795 -0.3885728 0.1939468 0.8301795 -0.4317928 0.1939468 0.8301795 -0.470214 0.1939468 0.8301795 -0.5050551 0.1939468 0.8301795 -0.5370987 0.1939468 0.8301795 -0.5668815 0.1939468 0.8301795 -0.5947903 0.1939468 0.8301795 -0.6211144 0.1939468 0.8301795 -0.6460766 0.1939468 0.8301795 -0.6698526 0.1939468 0.8301795 -0.6925839 0.1939468 0.8301795 -0.7143866 0.1939468 0.8301795 -0.7353569 0.1939468 0.8301795 -0.7555758 0.1939468 0.8301795 -0.7751122 0.1939468 0.8301795 -0.7940252 0.1939468 0.8301795 -0.8123661 0.1939468 0.8301795 -0.8301795 0.1939468 0.8301795 -0.8475045 0.1939468 0.8301795 -0.8643761 0.1939468 0.8301795 -0.880825 0.1939468 0.8301795 -0.8968787 0.1939468 0.8301795 -0.9125621 0.1939468 0.8301795 -0.9278974 0.1939468 0.8301795 -0.9429048 0.1939468 0.8301795 -0.9576028 0.1939468 0.8301795 -0.9720079 0.1939468 0.8301795 -0.9861357 0.1939468 0.8301795 -1 0.1939468 0.8301795 -0 0.2773041 0.8301795 -0.1939468 0.2773041 0.8301795 -0.2773041 0.2773041 0.8301795 -0.3384659 0.2773041 0.8301795 -0.3885728 0.2773041 0.8301795 -0.4317928 0.2773041 0.8301795 -0.470214 0.2773041 0.8301795 -0.5050551 0.2773041 0.8301795 -0.5370987 0.2773041 0.8301795 -0.5668815 0.2773041 0.8301795 -0.5947903 0.2773041 0.8301795 -0.6211144 0.2773041 0.8301795 -0.6460766 0.2773041 0.8301795 -0.6698526 0.2773041 0.8301795 -0.6925839 0.2773041 0.8301795 -0.7143866 0.2773041 0.8301795 -0.7353569 0.2773041 0.8301795 -0.7555758 0.2773041 0.8301795 -0.7751122 0.2773041 0.8301795 -0.7940252 0.2773041 0.8301795 -0.8123661 0.2773041 0.8301795 -0.8301795 0.2773041 0.8301795 -0.8475045 0.2773041 0.8301795 -0.8643761 0.2773041 0.8301795 -0.880825 0.2773041 0.8301795 -0.8968787 0.2773041 0.8301795 -0.9125621 0.2773041 0.8301795 -0.9278974 0.2773041 0.8301795 -0.9429048 0.2773041 0.8301795 -0.9576028 0.2773041 0.8301795 -0.9720079 0.2773041 0.8301795 -0.9861357 0.2773041 0.8301795 -1 0.2773041 0.8301795 -0 0.3384659 0.8301795 -0.1939468 0.3384659 0.8301795 -0.2773041 0.3384659 0.8301795 -0.3384659 0.3384659 0.8301795 -0.3885728 0.3384659 0.8301795 -0.4317928 0.3384659 0.8301795 -0.470214 0.3384659 0.8301795 -0.5050551 0.3384659 0.8301795 -0.5370987 0.3384659 0.8301795 -0.5668815 0.3384659 0.8301795 -0.5947903 0.3384659 0.8301795 -0.6211144 0.3384659 0.8301795 -0.6460766 0.3384659 0.8301795 -0.6698526 0.3384659 0.8301795 -0.6925839 0.3384659 0.8301795 -0.7143866 0.3384659 0.8301795 -0.7353569 0.3384659 0.8301795 -0.7555758 0.3384659 0.8301795 -0.7751122 0.3384659 0.8301795 -0.7940252 0.3384659 0.8301795 -0.8123661 0.3384659 0.8301795 -0.8301795 0.3384659 0.8301795 -0.8475045 0.3384659 0.8301795 -0.8643761 0.3384659 0.8301795 -0.880825 0.3384659 0.8301795 -0.8968787 0.3384659 0.8301795 -0.9125621 0.3384659 0.8301795 -0.9278974 0.3384659 0.8301795 -0.9429048 0.3384659 0.8301795 -0.9576028 0.3384659 0.8301795 -0.9720079 0.3384659 0.8301795 -0.9861357 0.3384659 0.8301795 -1 0.3384659 0.8301795 -0 0.3885728 0.8301795 -0.1939468 0.3885728 0.8301795 -0.2773041 0.3885728 0.8301795 -0.3384659 0.3885728 0.8301795 -0.3885728 0.3885728 0.8301795 -0.4317928 0.3885728 0.8301795 -0.470214 0.3885728 0.8301795 -0.5050551 0.3885728 0.8301795 -0.5370987 0.3885728 0.8301795 -0.5668815 0.3885728 0.8301795 -0.5947903 0.3885728 0.8301795 -0.6211144 0.3885728 0.8301795 -0.6460766 0.3885728 0.8301795 -0.6698526 0.3885728 0.8301795 -0.6925839 0.3885728 0.8301795 -0.7143866 0.3885728 0.8301795 -0.7353569 0.3885728 0.8301795 -0.7555758 0.3885728 0.8301795 -0.7751122 0.3885728 0.8301795 -0.7940252 0.3885728 0.8301795 -0.8123661 0.3885728 0.8301795 -0.8301795 0.3885728 0.8301795 -0.8475045 0.3885728 0.8301795 -0.8643761 0.3885728 0.8301795 -0.880825 0.3885728 0.8301795 -0.8968787 0.3885728 0.8301795 -0.9125621 0.3885728 0.8301795 -0.9278974 0.3885728 0.8301795 -0.9429048 0.3885728 0.8301795 -0.9576028 0.3885728 0.8301795 -0.9720079 0.3885728 0.8301795 -0.9861357 0.3885728 0.8301795 -1 0.3885728 0.8301795 -0 0.4317928 0.8301795 -0.1939468 0.4317928 0.8301795 -0.2773041 0.4317928 0.8301795 -0.3384659 0.4317928 0.8301795 -0.3885728 0.4317928 0.8301795 -0.4317928 0.4317928 0.8301795 -0.470214 0.4317928 0.8301795 -0.5050551 0.4317928 0.8301795 -0.5370987 0.4317928 0.8301795 -0.5668815 0.4317928 0.8301795 -0.5947903 0.4317928 0.8301795 -0.6211144 0.4317928 0.8301795 -0.6460766 0.4317928 0.8301795 -0.6698526 0.4317928 0.8301795 -0.6925839 0.4317928 0.8301795 -0.7143866 0.4317928 0.8301795 -0.7353569 0.4317928 0.8301795 -0.7555758 0.4317928 0.8301795 -0.7751122 0.4317928 0.8301795 -0.7940252 0.4317928 0.8301795 -0.8123661 0.4317928 0.8301795 -0.8301795 0.4317928 0.8301795 -0.8475045 0.4317928 0.8301795 -0.8643761 0.4317928 0.8301795 -0.880825 0.4317928 0.8301795 -0.8968787 0.4317928 0.8301795 -0.9125621 0.4317928 0.8301795 -0.9278974 0.4317928 0.8301795 -0.9429048 0.4317928 0.8301795 -0.9576028 0.4317928 0.8301795 -0.9720079 0.4317928 0.8301795 -0.9861357 0.4317928 0.8301795 -1 0.4317928 0.8301795 -0 0.470214 0.8301795 -0.1939468 0.470214 0.8301795 -0.2773041 0.470214 0.8301795 -0.3384659 0.470214 0.8301795 -0.3885728 0.470214 0.8301795 -0.4317928 0.470214 0.8301795 -0.470214 0.470214 0.8301795 -0.5050551 0.470214 0.8301795 -0.5370987 0.470214 0.8301795 -0.5668815 0.470214 0.8301795 -0.5947903 0.470214 0.8301795 -0.6211144 0.470214 0.8301795 -0.6460766 0.470214 0.8301795 -0.6698526 0.470214 0.8301795 -0.6925839 0.470214 0.8301795 -0.7143866 0.470214 0.8301795 -0.7353569 0.470214 0.8301795 -0.7555758 0.470214 0.8301795 -0.7751122 0.470214 0.8301795 -0.7940252 0.470214 0.8301795 -0.8123661 0.470214 0.8301795 -0.8301795 0.470214 0.8301795 -0.8475045 0.470214 0.8301795 -0.8643761 0.470214 0.8301795 -0.880825 0.470214 0.8301795 -0.8968787 0.470214 0.8301795 -0.9125621 0.470214 0.8301795 -0.9278974 0.470214 0.8301795 -0.9429048 0.470214 0.8301795 -0.9576028 0.470214 0.8301795 -0.9720079 0.470214 0.8301795 -0.9861357 0.470214 0.8301795 -1 0.470214 0.8301795 -0 0.5050551 0.8301795 -0.1939468 0.5050551 0.8301795 -0.2773041 0.5050551 0.8301795 -0.3384659 0.5050551 0.8301795 -0.3885728 0.5050551 0.8301795 -0.4317928 0.5050551 0.8301795 -0.470214 0.5050551 0.8301795 -0.5050551 0.5050551 0.8301795 -0.5370987 0.5050551 0.8301795 -0.5668815 0.5050551 0.8301795 -0.5947903 0.5050551 0.8301795 -0.6211144 0.5050551 0.8301795 -0.6460766 0.5050551 0.8301795 -0.6698526 0.5050551 0.8301795 -0.6925839 0.5050551 0.8301795 -0.7143866 0.5050551 0.8301795 -0.7353569 0.5050551 0.8301795 -0.7555758 0.5050551 0.8301795 -0.7751122 0.5050551 0.8301795 -0.7940252 0.5050551 0.8301795 -0.8123661 0.5050551 0.8301795 -0.8301795 0.5050551 0.8301795 -0.8475045 0.5050551 0.8301795 -0.8643761 0.5050551 0.8301795 -0.880825 0.5050551 0.8301795 -0.8968787 0.5050551 0.8301795 -0.9125621 0.5050551 0.8301795 -0.9278974 0.5050551 0.8301795 -0.9429048 0.5050551 0.8301795 -0.9576028 0.5050551 0.8301795 -0.9720079 0.5050551 0.8301795 -0.9861357 0.5050551 0.8301795 -1 0.5050551 0.8301795 -0 0.5370987 0.8301795 -0.1939468 0.5370987 0.8301795 -0.2773041 0.5370987 0.8301795 -0.3384659 0.5370987 0.8301795 -0.3885728 0.5370987 0.8301795 -0.4317928 0.5370987 0.8301795 -0.470214 0.5370987 0.8301795 -0.5050551 0.5370987 0.8301795 -0.5370987 0.5370987 0.8301795 -0.5668815 0.5370987 0.8301795 -0.5947903 0.5370987 0.8301795 -0.6211144 0.5370987 0.8301795 -0.6460766 0.5370987 0.8301795 -0.6698526 0.5370987 0.8301795 -0.6925839 0.5370987 0.8301795 -0.7143866 0.5370987 0.8301795 -0.7353569 0.5370987 0.8301795 -0.7555758 0.5370987 0.8301795 -0.7751122 0.5370987 0.8301795 -0.7940252 0.5370987 0.8301795 -0.8123661 0.5370987 0.8301795 -0.8301795 0.5370987 0.8301795 -0.8475045 0.5370987 0.8301795 -0.8643761 0.5370987 0.8301795 -0.880825 0.5370987 0.8301795 -0.8968787 0.5370987 0.8301795 -0.9125621 0.5370987 0.8301795 -0.9278974 0.5370987 0.8301795 -0.9429048 0.5370987 0.8301795 -0.9576028 0.5370987 0.8301795 -0.9720079 0.5370987 0.8301795 -0.9861357 0.5370987 0.8301795 -1 0.5370987 0.8301795 -0 0.5668815 0.8301795 -0.1939468 0.5668815 0.8301795 -0.2773041 0.5668815 0.8301795 -0.3384659 0.5668815 0.8301795 -0.3885728 0.5668815 0.8301795 -0.4317928 0.5668815 0.8301795 -0.470214 0.5668815 0.8301795 -0.5050551 0.5668815 0.8301795 -0.5370987 0.5668815 0.8301795 -0.5668815 0.5668815 0.8301795 -0.5947903 0.5668815 0.8301795 -0.6211144 0.5668815 0.8301795 -0.6460766 0.5668815 0.8301795 -0.6698526 0.5668815 0.8301795 -0.6925839 0.5668815 0.8301795 -0.7143866 0.5668815 0.8301795 -0.7353569 0.5668815 0.8301795 -0.7555758 0.5668815 0.8301795 -0.7751122 0.5668815 0.8301795 -0.7940252 0.5668815 0.8301795 -0.8123661 0.5668815 0.8301795 -0.8301795 0.5668815 0.8301795 -0.8475045 0.5668815 0.8301795 -0.8643761 0.5668815 0.8301795 -0.880825 0.5668815 0.8301795 -0.8968787 0.5668815 0.8301795 -0.9125621 0.5668815 0.8301795 -0.9278974 0.5668815 0.8301795 -0.9429048 0.5668815 0.8301795 -0.9576028 0.5668815 0.8301795 -0.9720079 0.5668815 0.8301795 -0.9861357 0.5668815 0.8301795 -1 0.5668815 0.8301795 -0 0.5947903 0.8301795 -0.1939468 0.5947903 0.8301795 -0.2773041 0.5947903 0.8301795 -0.3384659 0.5947903 0.8301795 -0.3885728 0.5947903 0.8301795 -0.4317928 0.5947903 0.8301795 -0.470214 0.5947903 0.8301795 -0.5050551 0.5947903 0.8301795 -0.5370987 0.5947903 0.8301795 -0.5668815 0.5947903 0.8301795 -0.5947903 0.5947903 0.8301795 -0.6211144 0.5947903 0.8301795 -0.6460766 0.5947903 0.8301795 -0.6698526 0.5947903 0.8301795 -0.6925839 0.5947903 0.8301795 -0.7143866 0.5947903 0.8301795 -0.7353569 0.5947903 0.8301795 -0.7555758 0.5947903 0.8301795 -0.7751122 0.5947903 0.8301795 -0.7940252 0.5947903 0.8301795 -0.8123661 0.5947903 0.8301795 -0.8301795 0.5947903 0.8301795 -0.8475045 0.5947903 0.8301795 -0.8643761 0.5947903 0.8301795 -0.880825 0.5947903 0.8301795 -0.8968787 0.5947903 0.8301795 -0.9125621 0.5947903 0.8301795 -0.9278974 0.5947903 0.8301795 -0.9429048 0.5947903 0.8301795 -0.9576028 0.5947903 0.8301795 -0.9720079 0.5947903 0.8301795 -0.9861357 0.5947903 0.8301795 -1 0.5947903 0.8301795 -0 0.6211144 0.8301795 -0.1939468 0.6211144 0.8301795 -0.2773041 0.6211144 0.8301795 -0.3384659 0.6211144 0.8301795 -0.3885728 0.6211144 0.8301795 -0.4317928 0.6211144 0.8301795 -0.470214 0.6211144 0.8301795 -0.5050551 0.6211144 0.8301795 -0.5370987 0.6211144 0.8301795 -0.5668815 0.6211144 0.8301795 -0.5947903 0.6211144 0.8301795 -0.6211144 0.6211144 0.8301795 -0.6460766 0.6211144 0.8301795 -0.6698526 0.6211144 0.8301795 -0.6925839 0.6211144 0.8301795 -0.7143866 0.6211144 0.8301795 -0.7353569 0.6211144 0.8301795 -0.7555758 0.6211144 0.8301795 -0.7751122 0.6211144 0.8301795 -0.7940252 0.6211144 0.8301795 -0.8123661 0.6211144 0.8301795 -0.8301795 0.6211144 0.8301795 -0.8475045 0.6211144 0.8301795 -0.8643761 0.6211144 0.8301795 -0.880825 0.6211144 0.8301795 -0.8968787 0.6211144 0.8301795 -0.9125621 0.6211144 0.8301795 -0.9278974 0.6211144 0.8301795 -0.9429048 0.6211144 0.8301795 -0.9576028 0.6211144 0.8301795 -0.9720079 0.6211144 0.8301795 -0.9861357 0.6211144 0.8301795 -1 0.6211144 0.8301795 -0 0.6460766 0.8301795 -0.1939468 0.6460766 0.8301795 -0.2773041 0.6460766 0.8301795 -0.3384659 0.6460766 0.8301795 -0.3885728 0.6460766 0.8301795 -0.4317928 0.6460766 0.8301795 -0.470214 0.6460766 0.8301795 -0.5050551 0.6460766 0.8301795 -0.5370987 0.6460766 0.8301795 -0.5668815 0.6460766 0.8301795 -0.5947903 0.6460766 0.8301795 -0.6211144 0.6460766 0.8301795 -0.6460766 0.6460766 0.8301795 -0.6698526 0.6460766 0.8301795 -0.6925839 0.6460766 0.8301795 -0.7143866 0.6460766 0.8301795 -0.7353569 0.6460766 0.8301795 -0.7555758 0.6460766 0.8301795 -0.7751122 0.6460766 0.8301795 -0.7940252 0.6460766 0.8301795 -0.8123661 0.6460766 0.8301795 -0.8301795 0.6460766 0.8301795 -0.8475045 0.6460766 0.8301795 -0.8643761 0.6460766 0.8301795 -0.880825 0.6460766 0.8301795 -0.8968787 0.6460766 0.8301795 -0.9125621 0.6460766 0.8301795 -0.9278974 0.6460766 0.8301795 -0.9429048 0.6460766 0.8301795 -0.9576028 0.6460766 0.8301795 -0.9720079 0.6460766 0.8301795 -0.9861357 0.6460766 0.8301795 -1 0.6460766 0.8301795 -0 0.6698526 0.8301795 -0.1939468 0.6698526 0.8301795 -0.2773041 0.6698526 0.8301795 -0.3384659 0.6698526 0.8301795 -0.3885728 0.6698526 0.8301795 -0.4317928 0.6698526 0.8301795 -0.470214 0.6698526 0.8301795 -0.5050551 0.6698526 0.8301795 -0.5370987 0.6698526 0.8301795 -0.5668815 0.6698526 0.8301795 -0.5947903 0.6698526 0.8301795 -0.6211144 0.6698526 0.8301795 -0.6460766 0.6698526 0.8301795 -0.6698526 0.6698526 0.8301795 -0.6925839 0.6698526 0.8301795 -0.7143866 0.6698526 0.8301795 -0.7353569 0.6698526 0.8301795 -0.7555758 0.6698526 0.8301795 -0.7751122 0.6698526 0.8301795 -0.7940252 0.6698526 0.8301795 -0.8123661 0.6698526 0.8301795 -0.8301795 0.6698526 0.8301795 -0.8475045 0.6698526 0.8301795 -0.8643761 0.6698526 0.8301795 -0.880825 0.6698526 0.8301795 -0.8968787 0.6698526 0.8301795 -0.9125621 0.6698526 0.8301795 -0.9278974 0.6698526 0.8301795 -0.9429048 0.6698526 0.8301795 -0.9576028 0.6698526 0.8301795 -0.9720079 0.6698526 0.8301795 -0.9861357 0.6698526 0.8301795 -1 0.6698526 0.8301795 -0 0.6925839 0.8301795 -0.1939468 0.6925839 0.8301795 -0.2773041 0.6925839 0.8301795 -0.3384659 0.6925839 0.8301795 -0.3885728 0.6925839 0.8301795 -0.4317928 0.6925839 0.8301795 -0.470214 0.6925839 0.8301795 -0.5050551 0.6925839 0.8301795 -0.5370987 0.6925839 0.8301795 -0.5668815 0.6925839 0.8301795 -0.5947903 0.6925839 0.8301795 -0.6211144 0.6925839 0.8301795 -0.6460766 0.6925839 0.8301795 -0.6698526 0.6925839 0.8301795 -0.6925839 0.6925839 0.8301795 -0.7143866 0.6925839 0.8301795 -0.7353569 0.6925839 0.8301795 -0.7555758 0.6925839 0.8301795 -0.7751122 0.6925839 0.8301795 -0.7940252 0.6925839 0.8301795 -0.8123661 0.6925839 0.8301795 -0.8301795 0.6925839 0.8301795 -0.8475045 0.6925839 0.8301795 -0.8643761 0.6925839 0.8301795 -0.880825 0.6925839 0.8301795 -0.8968787 0.6925839 0.8301795 -0.9125621 0.6925839 0.8301795 -0.9278974 0.6925839 0.8301795 -0.9429048 0.6925839 0.8301795 -0.9576028 0.6925839 0.8301795 -0.9720079 0.6925839 0.8301795 -0.9861357 0.6925839 0.8301795 -1 0.6925839 0.8301795 -0 0.7143866 0.8301795 -0.1939468 0.7143866 0.8301795 -0.2773041 0.7143866 0.8301795 -0.3384659 0.7143866 0.8301795 -0.3885728 0.7143866 0.8301795 -0.4317928 0.7143866 0.8301795 -0.470214 0.7143866 0.8301795 -0.5050551 0.7143866 0.8301795 -0.5370987 0.7143866 0.8301795 -0.5668815 0.7143866 0.8301795 -0.5947903 0.7143866 0.8301795 -0.6211144 0.7143866 0.8301795 -0.6460766 0.7143866 0.8301795 -0.6698526 0.7143866 0.8301795 -0.6925839 0.7143866 0.8301795 -0.7143866 0.7143866 0.8301795 -0.7353569 0.7143866 0.8301795 -0.7555758 0.7143866 0.8301795 -0.7751122 0.7143866 0.8301795 -0.7940252 0.7143866 0.8301795 -0.8123661 0.7143866 0.8301795 -0.8301795 0.7143866 0.8301795 -0.8475045 0.7143866 0.8301795 -0.8643761 0.7143866 0.8301795 -0.880825 0.7143866 0.8301795 -0.8968787 0.7143866 0.8301795 -0.9125621 0.7143866 0.8301795 -0.9278974 0.7143866 0.8301795 -0.9429048 0.7143866 0.8301795 -0.9576028 0.7143866 0.8301795 -0.9720079 0.7143866 0.8301795 -0.9861357 0.7143866 0.8301795 -1 0.7143866 0.8301795 -0 0.7353569 0.8301795 -0.1939468 0.7353569 0.8301795 -0.2773041 0.7353569 0.8301795 -0.3384659 0.7353569 0.8301795 -0.3885728 0.7353569 0.8301795 -0.4317928 0.7353569 0.8301795 -0.470214 0.7353569 0.8301795 -0.5050551 0.7353569 0.8301795 -0.5370987 0.7353569 0.8301795 -0.5668815 0.7353569 0.8301795 -0.5947903 0.7353569 0.8301795 -0.6211144 0.7353569 0.8301795 -0.6460766 0.7353569 0.8301795 -0.6698526 0.7353569 0.8301795 -0.6925839 0.7353569 0.8301795 -0.7143866 0.7353569 0.8301795 -0.7353569 0.7353569 0.8301795 -0.7555758 0.7353569 0.8301795 -0.7751122 0.7353569 0.8301795 -0.7940252 0.7353569 0.8301795 -0.8123661 0.7353569 0.8301795 -0.8301795 0.7353569 0.8301795 -0.8475045 0.7353569 0.8301795 -0.8643761 0.7353569 0.8301795 -0.880825 0.7353569 0.8301795 -0.8968787 0.7353569 0.8301795 -0.9125621 0.7353569 0.8301795 -0.9278974 0.7353569 0.8301795 -0.9429048 0.7353569 0.8301795 -0.9576028 0.7353569 0.8301795 -0.9720079 0.7353569 0.8301795 -0.9861357 0.7353569 0.8301795 -1 0.7353569 0.8301795 -0 0.7555758 0.8301795 -0.1939468 0.7555758 0.8301795 -0.2773041 0.7555758 0.8301795 -0.3384659 0.7555758 0.8301795 -0.3885728 0.7555758 0.8301795 -0.4317928 0.7555758 0.8301795 -0.470214 0.7555758 0.8301795 -0.5050551 0.7555758 0.8301795 -0.5370987 0.7555758 0.8301795 -0.5668815 0.7555758 0.8301795 -0.5947903 0.7555758 0.8301795 -0.6211144 0.7555758 0.8301795 -0.6460766 0.7555758 0.8301795 -0.6698526 0.7555758 0.8301795 -0.6925839 0.7555758 0.8301795 -0.7143866 0.7555758 0.8301795 -0.7353569 0.7555758 0.8301795 -0.7555758 0.7555758 0.8301795 -0.7751122 0.7555758 0.8301795 -0.7940252 0.7555758 0.8301795 -0.8123661 0.7555758 0.8301795 -0.8301795 0.7555758 0.8301795 -0.8475045 0.7555758 0.8301795 -0.8643761 0.7555758 0.8301795 -0.880825 0.7555758 0.8301795 -0.8968787 0.7555758 0.8301795 -0.9125621 0.7555758 0.8301795 -0.9278974 0.7555758 0.8301795 -0.9429048 0.7555758 0.8301795 -0.9576028 0.7555758 0.8301795 -0.9720079 0.7555758 0.8301795 -0.9861357 0.7555758 0.8301795 -1 0.7555758 0.8301795 -0 0.7751122 0.8301795 -0.1939468 0.7751122 0.8301795 -0.2773041 0.7751122 0.8301795 -0.3384659 0.7751122 0.8301795 -0.3885728 0.7751122 0.8301795 -0.4317928 0.7751122 0.8301795 -0.470214 0.7751122 0.8301795 -0.5050551 0.7751122 0.8301795 -0.5370987 0.7751122 0.8301795 -0.5668815 0.7751122 0.8301795 -0.5947903 0.7751122 0.8301795 -0.6211144 0.7751122 0.8301795 -0.6460766 0.7751122 0.8301795 -0.6698526 0.7751122 0.8301795 -0.6925839 0.7751122 0.8301795 -0.7143866 0.7751122 0.8301795 -0.7353569 0.7751122 0.8301795 -0.7555758 0.7751122 0.8301795 -0.7751122 0.7751122 0.8301795 -0.7940252 0.7751122 0.8301795 -0.8123661 0.7751122 0.8301795 -0.8301795 0.7751122 0.8301795 -0.8475045 0.7751122 0.8301795 -0.8643761 0.7751122 0.8301795 -0.880825 0.7751122 0.8301795 -0.8968787 0.7751122 0.8301795 -0.9125621 0.7751122 0.8301795 -0.9278974 0.7751122 0.8301795 -0.9429048 0.7751122 0.8301795 -0.9576028 0.7751122 0.8301795 -0.9720079 0.7751122 0.8301795 -0.9861357 0.7751122 0.8301795 -1 0.7751122 0.8301795 -0 0.7940252 0.8301795 -0.1939468 0.7940252 0.8301795 -0.2773041 0.7940252 0.8301795 -0.3384659 0.7940252 0.8301795 -0.3885728 0.7940252 0.8301795 -0.4317928 0.7940252 0.8301795 -0.470214 0.7940252 0.8301795 -0.5050551 0.7940252 0.8301795 -0.5370987 0.7940252 0.8301795 -0.5668815 0.7940252 0.8301795 -0.5947903 0.7940252 0.8301795 -0.6211144 0.7940252 0.8301795 -0.6460766 0.7940252 0.8301795 -0.6698526 0.7940252 0.8301795 -0.6925839 0.7940252 0.8301795 -0.7143866 0.7940252 0.8301795 -0.7353569 0.7940252 0.8301795 -0.7555758 0.7940252 0.8301795 -0.7751122 0.7940252 0.8301795 -0.7940252 0.7940252 0.8301795 -0.8123661 0.7940252 0.8301795 -0.8301795 0.7940252 0.8301795 -0.8475045 0.7940252 0.8301795 -0.8643761 0.7940252 0.8301795 -0.880825 0.7940252 0.8301795 -0.8968787 0.7940252 0.8301795 -0.9125621 0.7940252 0.8301795 -0.9278974 0.7940252 0.8301795 -0.9429048 0.7940252 0.8301795 -0.9576028 0.7940252 0.8301795 -0.9720079 0.7940252 0.8301795 -0.9861357 0.7940252 0.8301795 -1 0.7940252 0.8301795 -0 0.8123661 0.8301795 -0.1939468 0.8123661 0.8301795 -0.2773041 0.8123661 0.8301795 -0.3384659 0.8123661 0.8301795 -0.3885728 0.8123661 0.8301795 -0.4317928 0.8123661 0.8301795 -0.470214 0.8123661 0.8301795 -0.5050551 0.8123661 0.8301795 -0.5370987 0.8123661 0.8301795 -0.5668815 0.8123661 0.8301795 -0.5947903 0.8123661 0.8301795 -0.6211144 0.8123661 0.8301795 -0.6460766 0.8123661 0.8301795 -0.6698526 0.8123661 0.8301795 -0.6925839 0.8123661 0.8301795 -0.7143866 0.8123661 0.8301795 -0.7353569 0.8123661 0.8301795 -0.7555758 0.8123661 0.8301795 -0.7751122 0.8123661 0.8301795 -0.7940252 0.8123661 0.8301795 -0.8123661 0.8123661 0.8301795 -0.8301795 0.8123661 0.8301795 -0.8475045 0.8123661 0.8301795 -0.8643761 0.8123661 0.8301795 -0.880825 0.8123661 0.8301795 -0.8968787 0.8123661 0.8301795 -0.9125621 0.8123661 0.8301795 -0.9278974 0.8123661 0.8301795 -0.9429048 0.8123661 0.8301795 -0.9576028 0.8123661 0.8301795 -0.9720079 0.8123661 0.8301795 -0.9861357 0.8123661 0.8301795 -1 0.8123661 0.8301795 -0 0.8301795 0.8301795 -0.1939468 0.8301795 0.8301795 -0.2773041 0.8301795 0.8301795 -0.3384659 0.8301795 0.8301795 -0.3885728 0.8301795 0.8301795 -0.4317928 0.8301795 0.8301795 -0.470214 0.8301795 0.8301795 -0.5050551 0.8301795 0.8301795 -0.5370987 0.8301795 0.8301795 -0.5668815 0.8301795 0.8301795 -0.5947903 0.8301795 0.8301795 -0.6211144 0.8301795 0.8301795 -0.6460766 0.8301795 0.8301795 -0.6698526 0.8301795 0.8301795 -0.6925839 0.8301795 0.8301795 -0.7143866 0.8301795 0.8301795 -0.7353569 0.8301795 0.8301795 -0.7555758 0.8301795 0.8301795 -0.7751122 0.8301795 0.8301795 -0.7940252 0.8301795 0.8301795 -0.8123661 0.8301795 0.8301795 -0.8301795 0.8301795 0.8301795 -0.8475045 0.8301795 0.8301795 -0.8643761 0.8301795 0.8301795 -0.880825 0.8301795 0.8301795 -0.8968787 0.8301795 0.8301795 -0.9125621 0.8301795 0.8301795 -0.9278974 0.8301795 0.8301795 -0.9429048 0.8301795 0.8301795 -0.9576028 0.8301795 0.8301795 -0.9720079 0.8301795 0.8301795 -0.9861357 0.8301795 0.8301795 -1 0.8301795 0.8301795 -0 0.8475045 0.8301795 -0.1939468 0.8475045 0.8301795 -0.2773041 0.8475045 0.8301795 -0.3384659 0.8475045 0.8301795 -0.3885728 0.8475045 0.8301795 -0.4317928 0.8475045 0.8301795 -0.470214 0.8475045 0.8301795 -0.5050551 0.8475045 0.8301795 -0.5370987 0.8475045 0.8301795 -0.5668815 0.8475045 0.8301795 -0.5947903 0.8475045 0.8301795 -0.6211144 0.8475045 0.8301795 -0.6460766 0.8475045 0.8301795 -0.6698526 0.8475045 0.8301795 -0.6925839 0.8475045 0.8301795 -0.7143866 0.8475045 0.8301795 -0.7353569 0.8475045 0.8301795 -0.7555758 0.8475045 0.8301795 -0.7751122 0.8475045 0.8301795 -0.7940252 0.8475045 0.8301795 -0.8123661 0.8475045 0.8301795 -0.8301795 0.8475045 0.8301795 -0.8475045 0.8475045 0.8301795 -0.8643761 0.8475045 0.8301795 -0.880825 0.8475045 0.8301795 -0.8968787 0.8475045 0.8301795 -0.9125621 0.8475045 0.8301795 -0.9278974 0.8475045 0.8301795 -0.9429048 0.8475045 0.8301795 -0.9576028 0.8475045 0.8301795 -0.9720079 0.8475045 0.8301795 -0.9861357 0.8475045 0.8301795 -1 0.8475045 0.8301795 -0 0.8643761 0.8301795 -0.1939468 0.8643761 0.8301795 -0.2773041 0.8643761 0.8301795 -0.3384659 0.8643761 0.8301795 -0.3885728 0.8643761 0.8301795 -0.4317928 0.8643761 0.8301795 -0.470214 0.8643761 0.8301795 -0.5050551 0.8643761 0.8301795 -0.5370987 0.8643761 0.8301795 -0.5668815 0.8643761 0.8301795 -0.5947903 0.8643761 0.8301795 -0.6211144 0.8643761 0.8301795 -0.6460766 0.8643761 0.8301795 -0.6698526 0.8643761 0.8301795 -0.6925839 0.8643761 0.8301795 -0.7143866 0.8643761 0.8301795 -0.7353569 0.8643761 0.8301795 -0.7555758 0.8643761 0.8301795 -0.7751122 0.8643761 0.8301795 -0.7940252 0.8643761 0.8301795 -0.8123661 0.8643761 0.8301795 -0.8301795 0.8643761 0.8301795 -0.8475045 0.8643761 0.8301795 -0.8643761 0.8643761 0.8301795 -0.880825 0.8643761 0.8301795 -0.8968787 0.8643761 0.8301795 -0.9125621 0.8643761 0.8301795 -0.9278974 0.8643761 0.8301795 -0.9429048 0.8643761 0.8301795 -0.9576028 0.8643761 0.8301795 -0.9720079 0.8643761 0.8301795 -0.9861357 0.8643761 0.8301795 -1 0.8643761 0.8301795 -0 0.880825 0.8301795 -0.1939468 0.880825 0.8301795 -0.2773041 0.880825 0.8301795 -0.3384659 0.880825 0.8301795 -0.3885728 0.880825 0.8301795 -0.4317928 0.880825 0.8301795 -0.470214 0.880825 0.8301795 -0.5050551 0.880825 0.8301795 -0.5370987 0.880825 0.8301795 -0.5668815 0.880825 0.8301795 -0.5947903 0.880825 0.8301795 -0.6211144 0.880825 0.8301795 -0.6460766 0.880825 0.8301795 -0.6698526 0.880825 0.8301795 -0.6925839 0.880825 0.8301795 -0.7143866 0.880825 0.8301795 -0.7353569 0.880825 0.8301795 -0.7555758 0.880825 0.8301795 -0.7751122 0.880825 0.8301795 -0.7940252 0.880825 0.8301795 -0.8123661 0.880825 0.8301795 -0.8301795 0.880825 0.8301795 -0.8475045 0.880825 0.8301795 -0.8643761 0.880825 0.8301795 -0.880825 0.880825 0.8301795 -0.8968787 0.880825 0.8301795 -0.9125621 0.880825 0.8301795 -0.9278974 0.880825 0.8301795 -0.9429048 0.880825 0.8301795 -0.9576028 0.880825 0.8301795 -0.9720079 0.880825 0.8301795 -0.9861357 0.880825 0.8301795 -1 0.880825 0.8301795 -0 0.8968787 0.8301795 -0.1939468 0.8968787 0.8301795 -0.2773041 0.8968787 0.8301795 -0.3384659 0.8968787 0.8301795 -0.3885728 0.8968787 0.8301795 -0.4317928 0.8968787 0.8301795 -0.470214 0.8968787 0.8301795 -0.5050551 0.8968787 0.8301795 -0.5370987 0.8968787 0.8301795 -0.5668815 0.8968787 0.8301795 -0.5947903 0.8968787 0.8301795 -0.6211144 0.8968787 0.8301795 -0.6460766 0.8968787 0.8301795 -0.6698526 0.8968787 0.8301795 -0.6925839 0.8968787 0.8301795 -0.7143866 0.8968787 0.8301795 -0.7353569 0.8968787 0.8301795 -0.7555758 0.8968787 0.8301795 -0.7751122 0.8968787 0.8301795 -0.7940252 0.8968787 0.8301795 -0.8123661 0.8968787 0.8301795 -0.8301795 0.8968787 0.8301795 -0.8475045 0.8968787 0.8301795 -0.8643761 0.8968787 0.8301795 -0.880825 0.8968787 0.8301795 -0.8968787 0.8968787 0.8301795 -0.9125621 0.8968787 0.8301795 -0.9278974 0.8968787 0.8301795 -0.9429048 0.8968787 0.8301795 -0.9576028 0.8968787 0.8301795 -0.9720079 0.8968787 0.8301795 -0.9861357 0.8968787 0.8301795 -1 0.8968787 0.8301795 -0 0.9125621 0.8301795 -0.1939468 0.9125621 0.8301795 -0.2773041 0.9125621 0.8301795 -0.3384659 0.9125621 0.8301795 -0.3885728 0.9125621 0.8301795 -0.4317928 0.9125621 0.8301795 -0.470214 0.9125621 0.8301795 -0.5050551 0.9125621 0.8301795 -0.5370987 0.9125621 0.8301795 -0.5668815 0.9125621 0.8301795 -0.5947903 0.9125621 0.8301795 -0.6211144 0.9125621 0.8301795 -0.6460766 0.9125621 0.8301795 -0.6698526 0.9125621 0.8301795 -0.6925839 0.9125621 0.8301795 -0.7143866 0.9125621 0.8301795 -0.7353569 0.9125621 0.8301795 -0.7555758 0.9125621 0.8301795 -0.7751122 0.9125621 0.8301795 -0.7940252 0.9125621 0.8301795 -0.8123661 0.9125621 0.8301795 -0.8301795 0.9125621 0.8301795 -0.8475045 0.9125621 0.8301795 -0.8643761 0.9125621 0.8301795 -0.880825 0.9125621 0.8301795 -0.8968787 0.9125621 0.8301795 -0.9125621 0.9125621 0.8301795 -0.9278974 0.9125621 0.8301795 -0.9429048 0.9125621 0.8301795 -0.9576028 0.9125621 0.8301795 -0.9720079 0.9125621 0.8301795 -0.9861357 0.9125621 0.8301795 -1 0.9125621 0.8301795 -0 0.9278974 0.8301795 -0.1939468 0.9278974 0.8301795 -0.2773041 0.9278974 0.8301795 -0.3384659 0.9278974 0.8301795 -0.3885728 0.9278974 0.8301795 -0.4317928 0.9278974 0.8301795 -0.470214 0.9278974 0.8301795 -0.5050551 0.9278974 0.8301795 -0.5370987 0.9278974 0.8301795 -0.5668815 0.9278974 0.8301795 -0.5947903 0.9278974 0.8301795 -0.6211144 0.9278974 0.8301795 -0.6460766 0.9278974 0.8301795 -0.6698526 0.9278974 0.8301795 -0.6925839 0.9278974 0.8301795 -0.7143866 0.9278974 0.8301795 -0.7353569 0.9278974 0.8301795 -0.7555758 0.9278974 0.8301795 -0.7751122 0.9278974 0.8301795 -0.7940252 0.9278974 0.8301795 -0.8123661 0.9278974 0.8301795 -0.8301795 0.9278974 0.8301795 -0.8475045 0.9278974 0.8301795 -0.8643761 0.9278974 0.8301795 -0.880825 0.9278974 0.8301795 -0.8968787 0.9278974 0.8301795 -0.9125621 0.9278974 0.8301795 -0.9278974 0.9278974 0.8301795 -0.9429048 0.9278974 0.8301795 -0.9576028 0.9278974 0.8301795 -0.9720079 0.9278974 0.8301795 -0.9861357 0.9278974 0.8301795 -1 0.9278974 0.8301795 -0 0.9429048 0.8301795 -0.1939468 0.9429048 0.8301795 -0.2773041 0.9429048 0.8301795 -0.3384659 0.9429048 0.8301795 -0.3885728 0.9429048 0.8301795 -0.4317928 0.9429048 0.8301795 -0.470214 0.9429048 0.8301795 -0.5050551 0.9429048 0.8301795 -0.5370987 0.9429048 0.8301795 -0.5668815 0.9429048 0.8301795 -0.5947903 0.9429048 0.8301795 -0.6211144 0.9429048 0.8301795 -0.6460766 0.9429048 0.8301795 -0.6698526 0.9429048 0.8301795 -0.6925839 0.9429048 0.8301795 -0.7143866 0.9429048 0.8301795 -0.7353569 0.9429048 0.8301795 -0.7555758 0.9429048 0.8301795 -0.7751122 0.9429048 0.8301795 -0.7940252 0.9429048 0.8301795 -0.8123661 0.9429048 0.8301795 -0.8301795 0.9429048 0.8301795 -0.8475045 0.9429048 0.8301795 -0.8643761 0.9429048 0.8301795 -0.880825 0.9429048 0.8301795 -0.8968787 0.9429048 0.8301795 -0.9125621 0.9429048 0.8301795 -0.9278974 0.9429048 0.8301795 -0.9429048 0.9429048 0.8301795 -0.9576028 0.9429048 0.8301795 -0.9720079 0.9429048 0.8301795 -0.9861357 0.9429048 0.8301795 -1 0.9429048 0.8301795 -0 0.9576028 0.8301795 -0.1939468 0.9576028 0.8301795 -0.2773041 0.9576028 0.8301795 -0.3384659 0.9576028 0.8301795 -0.3885728 0.9576028 0.8301795 -0.4317928 0.9576028 0.8301795 -0.470214 0.9576028 0.8301795 -0.5050551 0.9576028 0.8301795 -0.5370987 0.9576028 0.8301795 -0.5668815 0.9576028 0.8301795 -0.5947903 0.9576028 0.8301795 -0.6211144 0.9576028 0.8301795 -0.6460766 0.9576028 0.8301795 -0.6698526 0.9576028 0.8301795 -0.6925839 0.9576028 0.8301795 -0.7143866 0.9576028 0.8301795 -0.7353569 0.9576028 0.8301795 -0.7555758 0.9576028 0.8301795 -0.7751122 0.9576028 0.8301795 -0.7940252 0.9576028 0.8301795 -0.8123661 0.9576028 0.8301795 -0.8301795 0.9576028 0.8301795 -0.8475045 0.9576028 0.8301795 -0.8643761 0.9576028 0.8301795 -0.880825 0.9576028 0.8301795 -0.8968787 0.9576028 0.8301795 -0.9125621 0.9576028 0.8301795 -0.9278974 0.9576028 0.8301795 -0.9429048 0.9576028 0.8301795 -0.9576028 0.9576028 0.8301795 -0.9720079 0.9576028 0.8301795 -0.9861357 0.9576028 0.8301795 -1 0.9576028 0.8301795 -0 0.9720079 0.8301795 -0.1939468 0.9720079 0.8301795 -0.2773041 0.9720079 0.8301795 -0.3384659 0.9720079 0.8301795 -0.3885728 0.9720079 0.8301795 -0.4317928 0.9720079 0.8301795 -0.470214 0.9720079 0.8301795 -0.5050551 0.9720079 0.8301795 -0.5370987 0.9720079 0.8301795 -0.5668815 0.9720079 0.8301795 -0.5947903 0.9720079 0.8301795 -0.6211144 0.9720079 0.8301795 -0.6460766 0.9720079 0.8301795 -0.6698526 0.9720079 0.8301795 -0.6925839 0.9720079 0.8301795 -0.7143866 0.9720079 0.8301795 -0.7353569 0.9720079 0.8301795 -0.7555758 0.9720079 0.8301795 -0.7751122 0.9720079 0.8301795 -0.7940252 0.9720079 0.8301795 -0.8123661 0.9720079 0.8301795 -0.8301795 0.9720079 0.8301795 -0.8475045 0.9720079 0.8301795 -0.8643761 0.9720079 0.8301795 -0.880825 0.9720079 0.8301795 -0.8968787 0.9720079 0.8301795 -0.9125621 0.9720079 0.8301795 -0.9278974 0.9720079 0.8301795 -0.9429048 0.9720079 0.8301795 -0.9576028 0.9720079 0.8301795 -0.9720079 0.9720079 0.8301795 -0.9861357 0.9720079 0.8301795 -1 0.9720079 0.8301795 -0 0.9861357 0.8301795 -0.1939468 0.9861357 0.8301795 -0.2773041 0.9861357 0.8301795 -0.3384659 0.9861357 0.8301795 -0.3885728 0.9861357 0.8301795 -0.4317928 0.9861357 0.8301795 -0.470214 0.9861357 0.8301795 -0.5050551 0.9861357 0.8301795 -0.5370987 0.9861357 0.8301795 -0.5668815 0.9861357 0.8301795 -0.5947903 0.9861357 0.8301795 -0.6211144 0.9861357 0.8301795 -0.6460766 0.9861357 0.8301795 -0.6698526 0.9861357 0.8301795 -0.6925839 0.9861357 0.8301795 -0.7143866 0.9861357 0.8301795 -0.7353569 0.9861357 0.8301795 -0.7555758 0.9861357 0.8301795 -0.7751122 0.9861357 0.8301795 -0.7940252 0.9861357 0.8301795 -0.8123661 0.9861357 0.8301795 -0.8301795 0.9861357 0.8301795 -0.8475045 0.9861357 0.8301795 -0.8643761 0.9861357 0.8301795 -0.880825 0.9861357 0.8301795 -0.8968787 0.9861357 0.8301795 -0.9125621 0.9861357 0.8301795 -0.9278974 0.9861357 0.8301795 -0.9429048 0.9861357 0.8301795 -0.9576028 0.9861357 0.8301795 -0.9720079 0.9861357 0.8301795 -0.9861357 0.9861357 0.8301795 -1 0.9861357 0.8301795 -0 1 0.8301795 -0.1939468 1 0.8301795 -0.2773041 1 0.8301795 -0.3384659 1 0.8301795 -0.3885728 1 0.8301795 -0.4317928 1 0.8301795 -0.470214 1 0.8301795 -0.5050551 1 0.8301795 -0.5370987 1 0.8301795 -0.5668815 1 0.8301795 -0.5947903 1 0.8301795 -0.6211144 1 0.8301795 -0.6460766 1 0.8301795 -0.6698526 1 0.8301795 -0.6925839 1 0.8301795 -0.7143866 1 0.8301795 -0.7353569 1 0.8301795 -0.7555758 1 0.8301795 -0.7751122 1 0.8301795 -0.7940252 1 0.8301795 -0.8123661 1 0.8301795 -0.8301795 1 0.8301795 -0.8475045 1 0.8301795 -0.8643761 1 0.8301795 -0.880825 1 0.8301795 -0.8968787 1 0.8301795 -0.9125621 1 0.8301795 -0.9278974 1 0.8301795 -0.9429048 1 0.8301795 -0.9576028 1 0.8301795 -0.9720079 1 0.8301795 -0.9861357 1 0.8301795 -1 1 0.8301795 -0 0 0.8475045 -0.1939468 0 0.8475045 -0.2773041 0 0.8475045 -0.3384659 0 0.8475045 -0.3885728 0 0.8475045 -0.4317928 0 0.8475045 -0.470214 0 0.8475045 -0.5050551 0 0.8475045 -0.5370987 0 0.8475045 -0.5668815 0 0.8475045 -0.5947903 0 0.8475045 -0.6211144 0 0.8475045 -0.6460766 0 0.8475045 -0.6698526 0 0.8475045 -0.6925839 0 0.8475045 -0.7143866 0 0.8475045 -0.7353569 0 0.8475045 -0.7555758 0 0.8475045 -0.7751122 0 0.8475045 -0.7940252 0 0.8475045 -0.8123661 0 0.8475045 -0.8301795 0 0.8475045 -0.8475045 0 0.8475045 -0.8643761 0 0.8475045 -0.880825 0 0.8475045 -0.8968787 0 0.8475045 -0.9125621 0 0.8475045 -0.9278974 0 0.8475045 -0.9429048 0 0.8475045 -0.9576028 0 0.8475045 -0.9720079 0 0.8475045 -0.9861357 0 0.8475045 -1 0 0.8475045 -0 0.1939468 0.8475045 -0.1939468 0.1939468 0.8475045 -0.2773041 0.1939468 0.8475045 -0.3384659 0.1939468 0.8475045 -0.3885728 0.1939468 0.8475045 -0.4317928 0.1939468 0.8475045 -0.470214 0.1939468 0.8475045 -0.5050551 0.1939468 0.8475045 -0.5370987 0.1939468 0.8475045 -0.5668815 0.1939468 0.8475045 -0.5947903 0.1939468 0.8475045 -0.6211144 0.1939468 0.8475045 -0.6460766 0.1939468 0.8475045 -0.6698526 0.1939468 0.8475045 -0.6925839 0.1939468 0.8475045 -0.7143866 0.1939468 0.8475045 -0.7353569 0.1939468 0.8475045 -0.7555758 0.1939468 0.8475045 -0.7751122 0.1939468 0.8475045 -0.7940252 0.1939468 0.8475045 -0.8123661 0.1939468 0.8475045 -0.8301795 0.1939468 0.8475045 -0.8475045 0.1939468 0.8475045 -0.8643761 0.1939468 0.8475045 -0.880825 0.1939468 0.8475045 -0.8968787 0.1939468 0.8475045 -0.9125621 0.1939468 0.8475045 -0.9278974 0.1939468 0.8475045 -0.9429048 0.1939468 0.8475045 -0.9576028 0.1939468 0.8475045 -0.9720079 0.1939468 0.8475045 -0.9861357 0.1939468 0.8475045 -1 0.1939468 0.8475045 -0 0.2773041 0.8475045 -0.1939468 0.2773041 0.8475045 -0.2773041 0.2773041 0.8475045 -0.3384659 0.2773041 0.8475045 -0.3885728 0.2773041 0.8475045 -0.4317928 0.2773041 0.8475045 -0.470214 0.2773041 0.8475045 -0.5050551 0.2773041 0.8475045 -0.5370987 0.2773041 0.8475045 -0.5668815 0.2773041 0.8475045 -0.5947903 0.2773041 0.8475045 -0.6211144 0.2773041 0.8475045 -0.6460766 0.2773041 0.8475045 -0.6698526 0.2773041 0.8475045 -0.6925839 0.2773041 0.8475045 -0.7143866 0.2773041 0.8475045 -0.7353569 0.2773041 0.8475045 -0.7555758 0.2773041 0.8475045 -0.7751122 0.2773041 0.8475045 -0.7940252 0.2773041 0.8475045 -0.8123661 0.2773041 0.8475045 -0.8301795 0.2773041 0.8475045 -0.8475045 0.2773041 0.8475045 -0.8643761 0.2773041 0.8475045 -0.880825 0.2773041 0.8475045 -0.8968787 0.2773041 0.8475045 -0.9125621 0.2773041 0.8475045 -0.9278974 0.2773041 0.8475045 -0.9429048 0.2773041 0.8475045 -0.9576028 0.2773041 0.8475045 -0.9720079 0.2773041 0.8475045 -0.9861357 0.2773041 0.8475045 -1 0.2773041 0.8475045 -0 0.3384659 0.8475045 -0.1939468 0.3384659 0.8475045 -0.2773041 0.3384659 0.8475045 -0.3384659 0.3384659 0.8475045 -0.3885728 0.3384659 0.8475045 -0.4317928 0.3384659 0.8475045 -0.470214 0.3384659 0.8475045 -0.5050551 0.3384659 0.8475045 -0.5370987 0.3384659 0.8475045 -0.5668815 0.3384659 0.8475045 -0.5947903 0.3384659 0.8475045 -0.6211144 0.3384659 0.8475045 -0.6460766 0.3384659 0.8475045 -0.6698526 0.3384659 0.8475045 -0.6925839 0.3384659 0.8475045 -0.7143866 0.3384659 0.8475045 -0.7353569 0.3384659 0.8475045 -0.7555758 0.3384659 0.8475045 -0.7751122 0.3384659 0.8475045 -0.7940252 0.3384659 0.8475045 -0.8123661 0.3384659 0.8475045 -0.8301795 0.3384659 0.8475045 -0.8475045 0.3384659 0.8475045 -0.8643761 0.3384659 0.8475045 -0.880825 0.3384659 0.8475045 -0.8968787 0.3384659 0.8475045 -0.9125621 0.3384659 0.8475045 -0.9278974 0.3384659 0.8475045 -0.9429048 0.3384659 0.8475045 -0.9576028 0.3384659 0.8475045 -0.9720079 0.3384659 0.8475045 -0.9861357 0.3384659 0.8475045 -1 0.3384659 0.8475045 -0 0.3885728 0.8475045 -0.1939468 0.3885728 0.8475045 -0.2773041 0.3885728 0.8475045 -0.3384659 0.3885728 0.8475045 -0.3885728 0.3885728 0.8475045 -0.4317928 0.3885728 0.8475045 -0.470214 0.3885728 0.8475045 -0.5050551 0.3885728 0.8475045 -0.5370987 0.3885728 0.8475045 -0.5668815 0.3885728 0.8475045 -0.5947903 0.3885728 0.8475045 -0.6211144 0.3885728 0.8475045 -0.6460766 0.3885728 0.8475045 -0.6698526 0.3885728 0.8475045 -0.6925839 0.3885728 0.8475045 -0.7143866 0.3885728 0.8475045 -0.7353569 0.3885728 0.8475045 -0.7555758 0.3885728 0.8475045 -0.7751122 0.3885728 0.8475045 -0.7940252 0.3885728 0.8475045 -0.8123661 0.3885728 0.8475045 -0.8301795 0.3885728 0.8475045 -0.8475045 0.3885728 0.8475045 -0.8643761 0.3885728 0.8475045 -0.880825 0.3885728 0.8475045 -0.8968787 0.3885728 0.8475045 -0.9125621 0.3885728 0.8475045 -0.9278974 0.3885728 0.8475045 -0.9429048 0.3885728 0.8475045 -0.9576028 0.3885728 0.8475045 -0.9720079 0.3885728 0.8475045 -0.9861357 0.3885728 0.8475045 -1 0.3885728 0.8475045 -0 0.4317928 0.8475045 -0.1939468 0.4317928 0.8475045 -0.2773041 0.4317928 0.8475045 -0.3384659 0.4317928 0.8475045 -0.3885728 0.4317928 0.8475045 -0.4317928 0.4317928 0.8475045 -0.470214 0.4317928 0.8475045 -0.5050551 0.4317928 0.8475045 -0.5370987 0.4317928 0.8475045 -0.5668815 0.4317928 0.8475045 -0.5947903 0.4317928 0.8475045 -0.6211144 0.4317928 0.8475045 -0.6460766 0.4317928 0.8475045 -0.6698526 0.4317928 0.8475045 -0.6925839 0.4317928 0.8475045 -0.7143866 0.4317928 0.8475045 -0.7353569 0.4317928 0.8475045 -0.7555758 0.4317928 0.8475045 -0.7751122 0.4317928 0.8475045 -0.7940252 0.4317928 0.8475045 -0.8123661 0.4317928 0.8475045 -0.8301795 0.4317928 0.8475045 -0.8475045 0.4317928 0.8475045 -0.8643761 0.4317928 0.8475045 -0.880825 0.4317928 0.8475045 -0.8968787 0.4317928 0.8475045 -0.9125621 0.4317928 0.8475045 -0.9278974 0.4317928 0.8475045 -0.9429048 0.4317928 0.8475045 -0.9576028 0.4317928 0.8475045 -0.9720079 0.4317928 0.8475045 -0.9861357 0.4317928 0.8475045 -1 0.4317928 0.8475045 -0 0.470214 0.8475045 -0.1939468 0.470214 0.8475045 -0.2773041 0.470214 0.8475045 -0.3384659 0.470214 0.8475045 -0.3885728 0.470214 0.8475045 -0.4317928 0.470214 0.8475045 -0.470214 0.470214 0.8475045 -0.5050551 0.470214 0.8475045 -0.5370987 0.470214 0.8475045 -0.5668815 0.470214 0.8475045 -0.5947903 0.470214 0.8475045 -0.6211144 0.470214 0.8475045 -0.6460766 0.470214 0.8475045 -0.6698526 0.470214 0.8475045 -0.6925839 0.470214 0.8475045 -0.7143866 0.470214 0.8475045 -0.7353569 0.470214 0.8475045 -0.7555758 0.470214 0.8475045 -0.7751122 0.470214 0.8475045 -0.7940252 0.470214 0.8475045 -0.8123661 0.470214 0.8475045 -0.8301795 0.470214 0.8475045 -0.8475045 0.470214 0.8475045 -0.8643761 0.470214 0.8475045 -0.880825 0.470214 0.8475045 -0.8968787 0.470214 0.8475045 -0.9125621 0.470214 0.8475045 -0.9278974 0.470214 0.8475045 -0.9429048 0.470214 0.8475045 -0.9576028 0.470214 0.8475045 -0.9720079 0.470214 0.8475045 -0.9861357 0.470214 0.8475045 -1 0.470214 0.8475045 -0 0.5050551 0.8475045 -0.1939468 0.5050551 0.8475045 -0.2773041 0.5050551 0.8475045 -0.3384659 0.5050551 0.8475045 -0.3885728 0.5050551 0.8475045 -0.4317928 0.5050551 0.8475045 -0.470214 0.5050551 0.8475045 -0.5050551 0.5050551 0.8475045 -0.5370987 0.5050551 0.8475045 -0.5668815 0.5050551 0.8475045 -0.5947903 0.5050551 0.8475045 -0.6211144 0.5050551 0.8475045 -0.6460766 0.5050551 0.8475045 -0.6698526 0.5050551 0.8475045 -0.6925839 0.5050551 0.8475045 -0.7143866 0.5050551 0.8475045 -0.7353569 0.5050551 0.8475045 -0.7555758 0.5050551 0.8475045 -0.7751122 0.5050551 0.8475045 -0.7940252 0.5050551 0.8475045 -0.8123661 0.5050551 0.8475045 -0.8301795 0.5050551 0.8475045 -0.8475045 0.5050551 0.8475045 -0.8643761 0.5050551 0.8475045 -0.880825 0.5050551 0.8475045 -0.8968787 0.5050551 0.8475045 -0.9125621 0.5050551 0.8475045 -0.9278974 0.5050551 0.8475045 -0.9429048 0.5050551 0.8475045 -0.9576028 0.5050551 0.8475045 -0.9720079 0.5050551 0.8475045 -0.9861357 0.5050551 0.8475045 -1 0.5050551 0.8475045 -0 0.5370987 0.8475045 -0.1939468 0.5370987 0.8475045 -0.2773041 0.5370987 0.8475045 -0.3384659 0.5370987 0.8475045 -0.3885728 0.5370987 0.8475045 -0.4317928 0.5370987 0.8475045 -0.470214 0.5370987 0.8475045 -0.5050551 0.5370987 0.8475045 -0.5370987 0.5370987 0.8475045 -0.5668815 0.5370987 0.8475045 -0.5947903 0.5370987 0.8475045 -0.6211144 0.5370987 0.8475045 -0.6460766 0.5370987 0.8475045 -0.6698526 0.5370987 0.8475045 -0.6925839 0.5370987 0.8475045 -0.7143866 0.5370987 0.8475045 -0.7353569 0.5370987 0.8475045 -0.7555758 0.5370987 0.8475045 -0.7751122 0.5370987 0.8475045 -0.7940252 0.5370987 0.8475045 -0.8123661 0.5370987 0.8475045 -0.8301795 0.5370987 0.8475045 -0.8475045 0.5370987 0.8475045 -0.8643761 0.5370987 0.8475045 -0.880825 0.5370987 0.8475045 -0.8968787 0.5370987 0.8475045 -0.9125621 0.5370987 0.8475045 -0.9278974 0.5370987 0.8475045 -0.9429048 0.5370987 0.8475045 -0.9576028 0.5370987 0.8475045 -0.9720079 0.5370987 0.8475045 -0.9861357 0.5370987 0.8475045 -1 0.5370987 0.8475045 -0 0.5668815 0.8475045 -0.1939468 0.5668815 0.8475045 -0.2773041 0.5668815 0.8475045 -0.3384659 0.5668815 0.8475045 -0.3885728 0.5668815 0.8475045 -0.4317928 0.5668815 0.8475045 -0.470214 0.5668815 0.8475045 -0.5050551 0.5668815 0.8475045 -0.5370987 0.5668815 0.8475045 -0.5668815 0.5668815 0.8475045 -0.5947903 0.5668815 0.8475045 -0.6211144 0.5668815 0.8475045 -0.6460766 0.5668815 0.8475045 -0.6698526 0.5668815 0.8475045 -0.6925839 0.5668815 0.8475045 -0.7143866 0.5668815 0.8475045 -0.7353569 0.5668815 0.8475045 -0.7555758 0.5668815 0.8475045 -0.7751122 0.5668815 0.8475045 -0.7940252 0.5668815 0.8475045 -0.8123661 0.5668815 0.8475045 -0.8301795 0.5668815 0.8475045 -0.8475045 0.5668815 0.8475045 -0.8643761 0.5668815 0.8475045 -0.880825 0.5668815 0.8475045 -0.8968787 0.5668815 0.8475045 -0.9125621 0.5668815 0.8475045 -0.9278974 0.5668815 0.8475045 -0.9429048 0.5668815 0.8475045 -0.9576028 0.5668815 0.8475045 -0.9720079 0.5668815 0.8475045 -0.9861357 0.5668815 0.8475045 -1 0.5668815 0.8475045 -0 0.5947903 0.8475045 -0.1939468 0.5947903 0.8475045 -0.2773041 0.5947903 0.8475045 -0.3384659 0.5947903 0.8475045 -0.3885728 0.5947903 0.8475045 -0.4317928 0.5947903 0.8475045 -0.470214 0.5947903 0.8475045 -0.5050551 0.5947903 0.8475045 -0.5370987 0.5947903 0.8475045 -0.5668815 0.5947903 0.8475045 -0.5947903 0.5947903 0.8475045 -0.6211144 0.5947903 0.8475045 -0.6460766 0.5947903 0.8475045 -0.6698526 0.5947903 0.8475045 -0.6925839 0.5947903 0.8475045 -0.7143866 0.5947903 0.8475045 -0.7353569 0.5947903 0.8475045 -0.7555758 0.5947903 0.8475045 -0.7751122 0.5947903 0.8475045 -0.7940252 0.5947903 0.8475045 -0.8123661 0.5947903 0.8475045 -0.8301795 0.5947903 0.8475045 -0.8475045 0.5947903 0.8475045 -0.8643761 0.5947903 0.8475045 -0.880825 0.5947903 0.8475045 -0.8968787 0.5947903 0.8475045 -0.9125621 0.5947903 0.8475045 -0.9278974 0.5947903 0.8475045 -0.9429048 0.5947903 0.8475045 -0.9576028 0.5947903 0.8475045 -0.9720079 0.5947903 0.8475045 -0.9861357 0.5947903 0.8475045 -1 0.5947903 0.8475045 -0 0.6211144 0.8475045 -0.1939468 0.6211144 0.8475045 -0.2773041 0.6211144 0.8475045 -0.3384659 0.6211144 0.8475045 -0.3885728 0.6211144 0.8475045 -0.4317928 0.6211144 0.8475045 -0.470214 0.6211144 0.8475045 -0.5050551 0.6211144 0.8475045 -0.5370987 0.6211144 0.8475045 -0.5668815 0.6211144 0.8475045 -0.5947903 0.6211144 0.8475045 -0.6211144 0.6211144 0.8475045 -0.6460766 0.6211144 0.8475045 -0.6698526 0.6211144 0.8475045 -0.6925839 0.6211144 0.8475045 -0.7143866 0.6211144 0.8475045 -0.7353569 0.6211144 0.8475045 -0.7555758 0.6211144 0.8475045 -0.7751122 0.6211144 0.8475045 -0.7940252 0.6211144 0.8475045 -0.8123661 0.6211144 0.8475045 -0.8301795 0.6211144 0.8475045 -0.8475045 0.6211144 0.8475045 -0.8643761 0.6211144 0.8475045 -0.880825 0.6211144 0.8475045 -0.8968787 0.6211144 0.8475045 -0.9125621 0.6211144 0.8475045 -0.9278974 0.6211144 0.8475045 -0.9429048 0.6211144 0.8475045 -0.9576028 0.6211144 0.8475045 -0.9720079 0.6211144 0.8475045 -0.9861357 0.6211144 0.8475045 -1 0.6211144 0.8475045 -0 0.6460766 0.8475045 -0.1939468 0.6460766 0.8475045 -0.2773041 0.6460766 0.8475045 -0.3384659 0.6460766 0.8475045 -0.3885728 0.6460766 0.8475045 -0.4317928 0.6460766 0.8475045 -0.470214 0.6460766 0.8475045 -0.5050551 0.6460766 0.8475045 -0.5370987 0.6460766 0.8475045 -0.5668815 0.6460766 0.8475045 -0.5947903 0.6460766 0.8475045 -0.6211144 0.6460766 0.8475045 -0.6460766 0.6460766 0.8475045 -0.6698526 0.6460766 0.8475045 -0.6925839 0.6460766 0.8475045 -0.7143866 0.6460766 0.8475045 -0.7353569 0.6460766 0.8475045 -0.7555758 0.6460766 0.8475045 -0.7751122 0.6460766 0.8475045 -0.7940252 0.6460766 0.8475045 -0.8123661 0.6460766 0.8475045 -0.8301795 0.6460766 0.8475045 -0.8475045 0.6460766 0.8475045 -0.8643761 0.6460766 0.8475045 -0.880825 0.6460766 0.8475045 -0.8968787 0.6460766 0.8475045 -0.9125621 0.6460766 0.8475045 -0.9278974 0.6460766 0.8475045 -0.9429048 0.6460766 0.8475045 -0.9576028 0.6460766 0.8475045 -0.9720079 0.6460766 0.8475045 -0.9861357 0.6460766 0.8475045 -1 0.6460766 0.8475045 -0 0.6698526 0.8475045 -0.1939468 0.6698526 0.8475045 -0.2773041 0.6698526 0.8475045 -0.3384659 0.6698526 0.8475045 -0.3885728 0.6698526 0.8475045 -0.4317928 0.6698526 0.8475045 -0.470214 0.6698526 0.8475045 -0.5050551 0.6698526 0.8475045 -0.5370987 0.6698526 0.8475045 -0.5668815 0.6698526 0.8475045 -0.5947903 0.6698526 0.8475045 -0.6211144 0.6698526 0.8475045 -0.6460766 0.6698526 0.8475045 -0.6698526 0.6698526 0.8475045 -0.6925839 0.6698526 0.8475045 -0.7143866 0.6698526 0.8475045 -0.7353569 0.6698526 0.8475045 -0.7555758 0.6698526 0.8475045 -0.7751122 0.6698526 0.8475045 -0.7940252 0.6698526 0.8475045 -0.8123661 0.6698526 0.8475045 -0.8301795 0.6698526 0.8475045 -0.8475045 0.6698526 0.8475045 -0.8643761 0.6698526 0.8475045 -0.880825 0.6698526 0.8475045 -0.8968787 0.6698526 0.8475045 -0.9125621 0.6698526 0.8475045 -0.9278974 0.6698526 0.8475045 -0.9429048 0.6698526 0.8475045 -0.9576028 0.6698526 0.8475045 -0.9720079 0.6698526 0.8475045 -0.9861357 0.6698526 0.8475045 -1 0.6698526 0.8475045 -0 0.6925839 0.8475045 -0.1939468 0.6925839 0.8475045 -0.2773041 0.6925839 0.8475045 -0.3384659 0.6925839 0.8475045 -0.3885728 0.6925839 0.8475045 -0.4317928 0.6925839 0.8475045 -0.470214 0.6925839 0.8475045 -0.5050551 0.6925839 0.8475045 -0.5370987 0.6925839 0.8475045 -0.5668815 0.6925839 0.8475045 -0.5947903 0.6925839 0.8475045 -0.6211144 0.6925839 0.8475045 -0.6460766 0.6925839 0.8475045 -0.6698526 0.6925839 0.8475045 -0.6925839 0.6925839 0.8475045 -0.7143866 0.6925839 0.8475045 -0.7353569 0.6925839 0.8475045 -0.7555758 0.6925839 0.8475045 -0.7751122 0.6925839 0.8475045 -0.7940252 0.6925839 0.8475045 -0.8123661 0.6925839 0.8475045 -0.8301795 0.6925839 0.8475045 -0.8475045 0.6925839 0.8475045 -0.8643761 0.6925839 0.8475045 -0.880825 0.6925839 0.8475045 -0.8968787 0.6925839 0.8475045 -0.9125621 0.6925839 0.8475045 -0.9278974 0.6925839 0.8475045 -0.9429048 0.6925839 0.8475045 -0.9576028 0.6925839 0.8475045 -0.9720079 0.6925839 0.8475045 -0.9861357 0.6925839 0.8475045 -1 0.6925839 0.8475045 -0 0.7143866 0.8475045 -0.1939468 0.7143866 0.8475045 -0.2773041 0.7143866 0.8475045 -0.3384659 0.7143866 0.8475045 -0.3885728 0.7143866 0.8475045 -0.4317928 0.7143866 0.8475045 -0.470214 0.7143866 0.8475045 -0.5050551 0.7143866 0.8475045 -0.5370987 0.7143866 0.8475045 -0.5668815 0.7143866 0.8475045 -0.5947903 0.7143866 0.8475045 -0.6211144 0.7143866 0.8475045 -0.6460766 0.7143866 0.8475045 -0.6698526 0.7143866 0.8475045 -0.6925839 0.7143866 0.8475045 -0.7143866 0.7143866 0.8475045 -0.7353569 0.7143866 0.8475045 -0.7555758 0.7143866 0.8475045 -0.7751122 0.7143866 0.8475045 -0.7940252 0.7143866 0.8475045 -0.8123661 0.7143866 0.8475045 -0.8301795 0.7143866 0.8475045 -0.8475045 0.7143866 0.8475045 -0.8643761 0.7143866 0.8475045 -0.880825 0.7143866 0.8475045 -0.8968787 0.7143866 0.8475045 -0.9125621 0.7143866 0.8475045 -0.9278974 0.7143866 0.8475045 -0.9429048 0.7143866 0.8475045 -0.9576028 0.7143866 0.8475045 -0.9720079 0.7143866 0.8475045 -0.9861357 0.7143866 0.8475045 -1 0.7143866 0.8475045 -0 0.7353569 0.8475045 -0.1939468 0.7353569 0.8475045 -0.2773041 0.7353569 0.8475045 -0.3384659 0.7353569 0.8475045 -0.3885728 0.7353569 0.8475045 -0.4317928 0.7353569 0.8475045 -0.470214 0.7353569 0.8475045 -0.5050551 0.7353569 0.8475045 -0.5370987 0.7353569 0.8475045 -0.5668815 0.7353569 0.8475045 -0.5947903 0.7353569 0.8475045 -0.6211144 0.7353569 0.8475045 -0.6460766 0.7353569 0.8475045 -0.6698526 0.7353569 0.8475045 -0.6925839 0.7353569 0.8475045 -0.7143866 0.7353569 0.8475045 -0.7353569 0.7353569 0.8475045 -0.7555758 0.7353569 0.8475045 -0.7751122 0.7353569 0.8475045 -0.7940252 0.7353569 0.8475045 -0.8123661 0.7353569 0.8475045 -0.8301795 0.7353569 0.8475045 -0.8475045 0.7353569 0.8475045 -0.8643761 0.7353569 0.8475045 -0.880825 0.7353569 0.8475045 -0.8968787 0.7353569 0.8475045 -0.9125621 0.7353569 0.8475045 -0.9278974 0.7353569 0.8475045 -0.9429048 0.7353569 0.8475045 -0.9576028 0.7353569 0.8475045 -0.9720079 0.7353569 0.8475045 -0.9861357 0.7353569 0.8475045 -1 0.7353569 0.8475045 -0 0.7555758 0.8475045 -0.1939468 0.7555758 0.8475045 -0.2773041 0.7555758 0.8475045 -0.3384659 0.7555758 0.8475045 -0.3885728 0.7555758 0.8475045 -0.4317928 0.7555758 0.8475045 -0.470214 0.7555758 0.8475045 -0.5050551 0.7555758 0.8475045 -0.5370987 0.7555758 0.8475045 -0.5668815 0.7555758 0.8475045 -0.5947903 0.7555758 0.8475045 -0.6211144 0.7555758 0.8475045 -0.6460766 0.7555758 0.8475045 -0.6698526 0.7555758 0.8475045 -0.6925839 0.7555758 0.8475045 -0.7143866 0.7555758 0.8475045 -0.7353569 0.7555758 0.8475045 -0.7555758 0.7555758 0.8475045 -0.7751122 0.7555758 0.8475045 -0.7940252 0.7555758 0.8475045 -0.8123661 0.7555758 0.8475045 -0.8301795 0.7555758 0.8475045 -0.8475045 0.7555758 0.8475045 -0.8643761 0.7555758 0.8475045 -0.880825 0.7555758 0.8475045 -0.8968787 0.7555758 0.8475045 -0.9125621 0.7555758 0.8475045 -0.9278974 0.7555758 0.8475045 -0.9429048 0.7555758 0.8475045 -0.9576028 0.7555758 0.8475045 -0.9720079 0.7555758 0.8475045 -0.9861357 0.7555758 0.8475045 -1 0.7555758 0.8475045 -0 0.7751122 0.8475045 -0.1939468 0.7751122 0.8475045 -0.2773041 0.7751122 0.8475045 -0.3384659 0.7751122 0.8475045 -0.3885728 0.7751122 0.8475045 -0.4317928 0.7751122 0.8475045 -0.470214 0.7751122 0.8475045 -0.5050551 0.7751122 0.8475045 -0.5370987 0.7751122 0.8475045 -0.5668815 0.7751122 0.8475045 -0.5947903 0.7751122 0.8475045 -0.6211144 0.7751122 0.8475045 -0.6460766 0.7751122 0.8475045 -0.6698526 0.7751122 0.8475045 -0.6925839 0.7751122 0.8475045 -0.7143866 0.7751122 0.8475045 -0.7353569 0.7751122 0.8475045 -0.7555758 0.7751122 0.8475045 -0.7751122 0.7751122 0.8475045 -0.7940252 0.7751122 0.8475045 -0.8123661 0.7751122 0.8475045 -0.8301795 0.7751122 0.8475045 -0.8475045 0.7751122 0.8475045 -0.8643761 0.7751122 0.8475045 -0.880825 0.7751122 0.8475045 -0.8968787 0.7751122 0.8475045 -0.9125621 0.7751122 0.8475045 -0.9278974 0.7751122 0.8475045 -0.9429048 0.7751122 0.8475045 -0.9576028 0.7751122 0.8475045 -0.9720079 0.7751122 0.8475045 -0.9861357 0.7751122 0.8475045 -1 0.7751122 0.8475045 -0 0.7940252 0.8475045 -0.1939468 0.7940252 0.8475045 -0.2773041 0.7940252 0.8475045 -0.3384659 0.7940252 0.8475045 -0.3885728 0.7940252 0.8475045 -0.4317928 0.7940252 0.8475045 -0.470214 0.7940252 0.8475045 -0.5050551 0.7940252 0.8475045 -0.5370987 0.7940252 0.8475045 -0.5668815 0.7940252 0.8475045 -0.5947903 0.7940252 0.8475045 -0.6211144 0.7940252 0.8475045 -0.6460766 0.7940252 0.8475045 -0.6698526 0.7940252 0.8475045 -0.6925839 0.7940252 0.8475045 -0.7143866 0.7940252 0.8475045 -0.7353569 0.7940252 0.8475045 -0.7555758 0.7940252 0.8475045 -0.7751122 0.7940252 0.8475045 -0.7940252 0.7940252 0.8475045 -0.8123661 0.7940252 0.8475045 -0.8301795 0.7940252 0.8475045 -0.8475045 0.7940252 0.8475045 -0.8643761 0.7940252 0.8475045 -0.880825 0.7940252 0.8475045 -0.8968787 0.7940252 0.8475045 -0.9125621 0.7940252 0.8475045 -0.9278974 0.7940252 0.8475045 -0.9429048 0.7940252 0.8475045 -0.9576028 0.7940252 0.8475045 -0.9720079 0.7940252 0.8475045 -0.9861357 0.7940252 0.8475045 -1 0.7940252 0.8475045 -0 0.8123661 0.8475045 -0.1939468 0.8123661 0.8475045 -0.2773041 0.8123661 0.8475045 -0.3384659 0.8123661 0.8475045 -0.3885728 0.8123661 0.8475045 -0.4317928 0.8123661 0.8475045 -0.470214 0.8123661 0.8475045 -0.5050551 0.8123661 0.8475045 -0.5370987 0.8123661 0.8475045 -0.5668815 0.8123661 0.8475045 -0.5947903 0.8123661 0.8475045 -0.6211144 0.8123661 0.8475045 -0.6460766 0.8123661 0.8475045 -0.6698526 0.8123661 0.8475045 -0.6925839 0.8123661 0.8475045 -0.7143866 0.8123661 0.8475045 -0.7353569 0.8123661 0.8475045 -0.7555758 0.8123661 0.8475045 -0.7751122 0.8123661 0.8475045 -0.7940252 0.8123661 0.8475045 -0.8123661 0.8123661 0.8475045 -0.8301795 0.8123661 0.8475045 -0.8475045 0.8123661 0.8475045 -0.8643761 0.8123661 0.8475045 -0.880825 0.8123661 0.8475045 -0.8968787 0.8123661 0.8475045 -0.9125621 0.8123661 0.8475045 -0.9278974 0.8123661 0.8475045 -0.9429048 0.8123661 0.8475045 -0.9576028 0.8123661 0.8475045 -0.9720079 0.8123661 0.8475045 -0.9861357 0.8123661 0.8475045 -1 0.8123661 0.8475045 -0 0.8301795 0.8475045 -0.1939468 0.8301795 0.8475045 -0.2773041 0.8301795 0.8475045 -0.3384659 0.8301795 0.8475045 -0.3885728 0.8301795 0.8475045 -0.4317928 0.8301795 0.8475045 -0.470214 0.8301795 0.8475045 -0.5050551 0.8301795 0.8475045 -0.5370987 0.8301795 0.8475045 -0.5668815 0.8301795 0.8475045 -0.5947903 0.8301795 0.8475045 -0.6211144 0.8301795 0.8475045 -0.6460766 0.8301795 0.8475045 -0.6698526 0.8301795 0.8475045 -0.6925839 0.8301795 0.8475045 -0.7143866 0.8301795 0.8475045 -0.7353569 0.8301795 0.8475045 -0.7555758 0.8301795 0.8475045 -0.7751122 0.8301795 0.8475045 -0.7940252 0.8301795 0.8475045 -0.8123661 0.8301795 0.8475045 -0.8301795 0.8301795 0.8475045 -0.8475045 0.8301795 0.8475045 -0.8643761 0.8301795 0.8475045 -0.880825 0.8301795 0.8475045 -0.8968787 0.8301795 0.8475045 -0.9125621 0.8301795 0.8475045 -0.9278974 0.8301795 0.8475045 -0.9429048 0.8301795 0.8475045 -0.9576028 0.8301795 0.8475045 -0.9720079 0.8301795 0.8475045 -0.9861357 0.8301795 0.8475045 -1 0.8301795 0.8475045 -0 0.8475045 0.8475045 -0.1939468 0.8475045 0.8475045 -0.2773041 0.8475045 0.8475045 -0.3384659 0.8475045 0.8475045 -0.3885728 0.8475045 0.8475045 -0.4317928 0.8475045 0.8475045 -0.470214 0.8475045 0.8475045 -0.5050551 0.8475045 0.8475045 -0.5370987 0.8475045 0.8475045 -0.5668815 0.8475045 0.8475045 -0.5947903 0.8475045 0.8475045 -0.6211144 0.8475045 0.8475045 -0.6460766 0.8475045 0.8475045 -0.6698526 0.8475045 0.8475045 -0.6925839 0.8475045 0.8475045 -0.7143866 0.8475045 0.8475045 -0.7353569 0.8475045 0.8475045 -0.7555758 0.8475045 0.8475045 -0.7751122 0.8475045 0.8475045 -0.7940252 0.8475045 0.8475045 -0.8123661 0.8475045 0.8475045 -0.8301795 0.8475045 0.8475045 -0.8475045 0.8475045 0.8475045 -0.8643761 0.8475045 0.8475045 -0.880825 0.8475045 0.8475045 -0.8968787 0.8475045 0.8475045 -0.9125621 0.8475045 0.8475045 -0.9278974 0.8475045 0.8475045 -0.9429048 0.8475045 0.8475045 -0.9576028 0.8475045 0.8475045 -0.9720079 0.8475045 0.8475045 -0.9861357 0.8475045 0.8475045 -1 0.8475045 0.8475045 -0 0.8643761 0.8475045 -0.1939468 0.8643761 0.8475045 -0.2773041 0.8643761 0.8475045 -0.3384659 0.8643761 0.8475045 -0.3885728 0.8643761 0.8475045 -0.4317928 0.8643761 0.8475045 -0.470214 0.8643761 0.8475045 -0.5050551 0.8643761 0.8475045 -0.5370987 0.8643761 0.8475045 -0.5668815 0.8643761 0.8475045 -0.5947903 0.8643761 0.8475045 -0.6211144 0.8643761 0.8475045 -0.6460766 0.8643761 0.8475045 -0.6698526 0.8643761 0.8475045 -0.6925839 0.8643761 0.8475045 -0.7143866 0.8643761 0.8475045 -0.7353569 0.8643761 0.8475045 -0.7555758 0.8643761 0.8475045 -0.7751122 0.8643761 0.8475045 -0.7940252 0.8643761 0.8475045 -0.8123661 0.8643761 0.8475045 -0.8301795 0.8643761 0.8475045 -0.8475045 0.8643761 0.8475045 -0.8643761 0.8643761 0.8475045 -0.880825 0.8643761 0.8475045 -0.8968787 0.8643761 0.8475045 -0.9125621 0.8643761 0.8475045 -0.9278974 0.8643761 0.8475045 -0.9429048 0.8643761 0.8475045 -0.9576028 0.8643761 0.8475045 -0.9720079 0.8643761 0.8475045 -0.9861357 0.8643761 0.8475045 -1 0.8643761 0.8475045 -0 0.880825 0.8475045 -0.1939468 0.880825 0.8475045 -0.2773041 0.880825 0.8475045 -0.3384659 0.880825 0.8475045 -0.3885728 0.880825 0.8475045 -0.4317928 0.880825 0.8475045 -0.470214 0.880825 0.8475045 -0.5050551 0.880825 0.8475045 -0.5370987 0.880825 0.8475045 -0.5668815 0.880825 0.8475045 -0.5947903 0.880825 0.8475045 -0.6211144 0.880825 0.8475045 -0.6460766 0.880825 0.8475045 -0.6698526 0.880825 0.8475045 -0.6925839 0.880825 0.8475045 -0.7143866 0.880825 0.8475045 -0.7353569 0.880825 0.8475045 -0.7555758 0.880825 0.8475045 -0.7751122 0.880825 0.8475045 -0.7940252 0.880825 0.8475045 -0.8123661 0.880825 0.8475045 -0.8301795 0.880825 0.8475045 -0.8475045 0.880825 0.8475045 -0.8643761 0.880825 0.8475045 -0.880825 0.880825 0.8475045 -0.8968787 0.880825 0.8475045 -0.9125621 0.880825 0.8475045 -0.9278974 0.880825 0.8475045 -0.9429048 0.880825 0.8475045 -0.9576028 0.880825 0.8475045 -0.9720079 0.880825 0.8475045 -0.9861357 0.880825 0.8475045 -1 0.880825 0.8475045 -0 0.8968787 0.8475045 -0.1939468 0.8968787 0.8475045 -0.2773041 0.8968787 0.8475045 -0.3384659 0.8968787 0.8475045 -0.3885728 0.8968787 0.8475045 -0.4317928 0.8968787 0.8475045 -0.470214 0.8968787 0.8475045 -0.5050551 0.8968787 0.8475045 -0.5370987 0.8968787 0.8475045 -0.5668815 0.8968787 0.8475045 -0.5947903 0.8968787 0.8475045 -0.6211144 0.8968787 0.8475045 -0.6460766 0.8968787 0.8475045 -0.6698526 0.8968787 0.8475045 -0.6925839 0.8968787 0.8475045 -0.7143866 0.8968787 0.8475045 -0.7353569 0.8968787 0.8475045 -0.7555758 0.8968787 0.8475045 -0.7751122 0.8968787 0.8475045 -0.7940252 0.8968787 0.8475045 -0.8123661 0.8968787 0.8475045 -0.8301795 0.8968787 0.8475045 -0.8475045 0.8968787 0.8475045 -0.8643761 0.8968787 0.8475045 -0.880825 0.8968787 0.8475045 -0.8968787 0.8968787 0.8475045 -0.9125621 0.8968787 0.8475045 -0.9278974 0.8968787 0.8475045 -0.9429048 0.8968787 0.8475045 -0.9576028 0.8968787 0.8475045 -0.9720079 0.8968787 0.8475045 -0.9861357 0.8968787 0.8475045 -1 0.8968787 0.8475045 -0 0.9125621 0.8475045 -0.1939468 0.9125621 0.8475045 -0.2773041 0.9125621 0.8475045 -0.3384659 0.9125621 0.8475045 -0.3885728 0.9125621 0.8475045 -0.4317928 0.9125621 0.8475045 -0.470214 0.9125621 0.8475045 -0.5050551 0.9125621 0.8475045 -0.5370987 0.9125621 0.8475045 -0.5668815 0.9125621 0.8475045 -0.5947903 0.9125621 0.8475045 -0.6211144 0.9125621 0.8475045 -0.6460766 0.9125621 0.8475045 -0.6698526 0.9125621 0.8475045 -0.6925839 0.9125621 0.8475045 -0.7143866 0.9125621 0.8475045 -0.7353569 0.9125621 0.8475045 -0.7555758 0.9125621 0.8475045 -0.7751122 0.9125621 0.8475045 -0.7940252 0.9125621 0.8475045 -0.8123661 0.9125621 0.8475045 -0.8301795 0.9125621 0.8475045 -0.8475045 0.9125621 0.8475045 -0.8643761 0.9125621 0.8475045 -0.880825 0.9125621 0.8475045 -0.8968787 0.9125621 0.8475045 -0.9125621 0.9125621 0.8475045 -0.9278974 0.9125621 0.8475045 -0.9429048 0.9125621 0.8475045 -0.9576028 0.9125621 0.8475045 -0.9720079 0.9125621 0.8475045 -0.9861357 0.9125621 0.8475045 -1 0.9125621 0.8475045 -0 0.9278974 0.8475045 -0.1939468 0.9278974 0.8475045 -0.2773041 0.9278974 0.8475045 -0.3384659 0.9278974 0.8475045 -0.3885728 0.9278974 0.8475045 -0.4317928 0.9278974 0.8475045 -0.470214 0.9278974 0.8475045 -0.5050551 0.9278974 0.8475045 -0.5370987 0.9278974 0.8475045 -0.5668815 0.9278974 0.8475045 -0.5947903 0.9278974 0.8475045 -0.6211144 0.9278974 0.8475045 -0.6460766 0.9278974 0.8475045 -0.6698526 0.9278974 0.8475045 -0.6925839 0.9278974 0.8475045 -0.7143866 0.9278974 0.8475045 -0.7353569 0.9278974 0.8475045 -0.7555758 0.9278974 0.8475045 -0.7751122 0.9278974 0.8475045 -0.7940252 0.9278974 0.8475045 -0.8123661 0.9278974 0.8475045 -0.8301795 0.9278974 0.8475045 -0.8475045 0.9278974 0.8475045 -0.8643761 0.9278974 0.8475045 -0.880825 0.9278974 0.8475045 -0.8968787 0.9278974 0.8475045 -0.9125621 0.9278974 0.8475045 -0.9278974 0.9278974 0.8475045 -0.9429048 0.9278974 0.8475045 -0.9576028 0.9278974 0.8475045 -0.9720079 0.9278974 0.8475045 -0.9861357 0.9278974 0.8475045 -1 0.9278974 0.8475045 -0 0.9429048 0.8475045 -0.1939468 0.9429048 0.8475045 -0.2773041 0.9429048 0.8475045 -0.3384659 0.9429048 0.8475045 -0.3885728 0.9429048 0.8475045 -0.4317928 0.9429048 0.8475045 -0.470214 0.9429048 0.8475045 -0.5050551 0.9429048 0.8475045 -0.5370987 0.9429048 0.8475045 -0.5668815 0.9429048 0.8475045 -0.5947903 0.9429048 0.8475045 -0.6211144 0.9429048 0.8475045 -0.6460766 0.9429048 0.8475045 -0.6698526 0.9429048 0.8475045 -0.6925839 0.9429048 0.8475045 -0.7143866 0.9429048 0.8475045 -0.7353569 0.9429048 0.8475045 -0.7555758 0.9429048 0.8475045 -0.7751122 0.9429048 0.8475045 -0.7940252 0.9429048 0.8475045 -0.8123661 0.9429048 0.8475045 -0.8301795 0.9429048 0.8475045 -0.8475045 0.9429048 0.8475045 -0.8643761 0.9429048 0.8475045 -0.880825 0.9429048 0.8475045 -0.8968787 0.9429048 0.8475045 -0.9125621 0.9429048 0.8475045 -0.9278974 0.9429048 0.8475045 -0.9429048 0.9429048 0.8475045 -0.9576028 0.9429048 0.8475045 -0.9720079 0.9429048 0.8475045 -0.9861357 0.9429048 0.8475045 -1 0.9429048 0.8475045 -0 0.9576028 0.8475045 -0.1939468 0.9576028 0.8475045 -0.2773041 0.9576028 0.8475045 -0.3384659 0.9576028 0.8475045 -0.3885728 0.9576028 0.8475045 -0.4317928 0.9576028 0.8475045 -0.470214 0.9576028 0.8475045 -0.5050551 0.9576028 0.8475045 -0.5370987 0.9576028 0.8475045 -0.5668815 0.9576028 0.8475045 -0.5947903 0.9576028 0.8475045 -0.6211144 0.9576028 0.8475045 -0.6460766 0.9576028 0.8475045 -0.6698526 0.9576028 0.8475045 -0.6925839 0.9576028 0.8475045 -0.7143866 0.9576028 0.8475045 -0.7353569 0.9576028 0.8475045 -0.7555758 0.9576028 0.8475045 -0.7751122 0.9576028 0.8475045 -0.7940252 0.9576028 0.8475045 -0.8123661 0.9576028 0.8475045 -0.8301795 0.9576028 0.8475045 -0.8475045 0.9576028 0.8475045 -0.8643761 0.9576028 0.8475045 -0.880825 0.9576028 0.8475045 -0.8968787 0.9576028 0.8475045 -0.9125621 0.9576028 0.8475045 -0.9278974 0.9576028 0.8475045 -0.9429048 0.9576028 0.8475045 -0.9576028 0.9576028 0.8475045 -0.9720079 0.9576028 0.8475045 -0.9861357 0.9576028 0.8475045 -1 0.9576028 0.8475045 -0 0.9720079 0.8475045 -0.1939468 0.9720079 0.8475045 -0.2773041 0.9720079 0.8475045 -0.3384659 0.9720079 0.8475045 -0.3885728 0.9720079 0.8475045 -0.4317928 0.9720079 0.8475045 -0.470214 0.9720079 0.8475045 -0.5050551 0.9720079 0.8475045 -0.5370987 0.9720079 0.8475045 -0.5668815 0.9720079 0.8475045 -0.5947903 0.9720079 0.8475045 -0.6211144 0.9720079 0.8475045 -0.6460766 0.9720079 0.8475045 -0.6698526 0.9720079 0.8475045 -0.6925839 0.9720079 0.8475045 -0.7143866 0.9720079 0.8475045 -0.7353569 0.9720079 0.8475045 -0.7555758 0.9720079 0.8475045 -0.7751122 0.9720079 0.8475045 -0.7940252 0.9720079 0.8475045 -0.8123661 0.9720079 0.8475045 -0.8301795 0.9720079 0.8475045 -0.8475045 0.9720079 0.8475045 -0.8643761 0.9720079 0.8475045 -0.880825 0.9720079 0.8475045 -0.8968787 0.9720079 0.8475045 -0.9125621 0.9720079 0.8475045 -0.9278974 0.9720079 0.8475045 -0.9429048 0.9720079 0.8475045 -0.9576028 0.9720079 0.8475045 -0.9720079 0.9720079 0.8475045 -0.9861357 0.9720079 0.8475045 -1 0.9720079 0.8475045 -0 0.9861357 0.8475045 -0.1939468 0.9861357 0.8475045 -0.2773041 0.9861357 0.8475045 -0.3384659 0.9861357 0.8475045 -0.3885728 0.9861357 0.8475045 -0.4317928 0.9861357 0.8475045 -0.470214 0.9861357 0.8475045 -0.5050551 0.9861357 0.8475045 -0.5370987 0.9861357 0.8475045 -0.5668815 0.9861357 0.8475045 -0.5947903 0.9861357 0.8475045 -0.6211144 0.9861357 0.8475045 -0.6460766 0.9861357 0.8475045 -0.6698526 0.9861357 0.8475045 -0.6925839 0.9861357 0.8475045 -0.7143866 0.9861357 0.8475045 -0.7353569 0.9861357 0.8475045 -0.7555758 0.9861357 0.8475045 -0.7751122 0.9861357 0.8475045 -0.7940252 0.9861357 0.8475045 -0.8123661 0.9861357 0.8475045 -0.8301795 0.9861357 0.8475045 -0.8475045 0.9861357 0.8475045 -0.8643761 0.9861357 0.8475045 -0.880825 0.9861357 0.8475045 -0.8968787 0.9861357 0.8475045 -0.9125621 0.9861357 0.8475045 -0.9278974 0.9861357 0.8475045 -0.9429048 0.9861357 0.8475045 -0.9576028 0.9861357 0.8475045 -0.9720079 0.9861357 0.8475045 -0.9861357 0.9861357 0.8475045 -1 0.9861357 0.8475045 -0 1 0.8475045 -0.1939468 1 0.8475045 -0.2773041 1 0.8475045 -0.3384659 1 0.8475045 -0.3885728 1 0.8475045 -0.4317928 1 0.8475045 -0.470214 1 0.8475045 -0.5050551 1 0.8475045 -0.5370987 1 0.8475045 -0.5668815 1 0.8475045 -0.5947903 1 0.8475045 -0.6211144 1 0.8475045 -0.6460766 1 0.8475045 -0.6698526 1 0.8475045 -0.6925839 1 0.8475045 -0.7143866 1 0.8475045 -0.7353569 1 0.8475045 -0.7555758 1 0.8475045 -0.7751122 1 0.8475045 -0.7940252 1 0.8475045 -0.8123661 1 0.8475045 -0.8301795 1 0.8475045 -0.8475045 1 0.8475045 -0.8643761 1 0.8475045 -0.880825 1 0.8475045 -0.8968787 1 0.8475045 -0.9125621 1 0.8475045 -0.9278974 1 0.8475045 -0.9429048 1 0.8475045 -0.9576028 1 0.8475045 -0.9720079 1 0.8475045 -0.9861357 1 0.8475045 -1 1 0.8475045 -0 0 0.8643761 -0.1939468 0 0.8643761 -0.2773041 0 0.8643761 -0.3384659 0 0.8643761 -0.3885728 0 0.8643761 -0.4317928 0 0.8643761 -0.470214 0 0.8643761 -0.5050551 0 0.8643761 -0.5370987 0 0.8643761 -0.5668815 0 0.8643761 -0.5947903 0 0.8643761 -0.6211144 0 0.8643761 -0.6460766 0 0.8643761 -0.6698526 0 0.8643761 -0.6925839 0 0.8643761 -0.7143866 0 0.8643761 -0.7353569 0 0.8643761 -0.7555758 0 0.8643761 -0.7751122 0 0.8643761 -0.7940252 0 0.8643761 -0.8123661 0 0.8643761 -0.8301795 0 0.8643761 -0.8475045 0 0.8643761 -0.8643761 0 0.8643761 -0.880825 0 0.8643761 -0.8968787 0 0.8643761 -0.9125621 0 0.8643761 -0.9278974 0 0.8643761 -0.9429048 0 0.8643761 -0.9576028 0 0.8643761 -0.9720079 0 0.8643761 -0.9861357 0 0.8643761 -1 0 0.8643761 -0 0.1939468 0.8643761 -0.1939468 0.1939468 0.8643761 -0.2773041 0.1939468 0.8643761 -0.3384659 0.1939468 0.8643761 -0.3885728 0.1939468 0.8643761 -0.4317928 0.1939468 0.8643761 -0.470214 0.1939468 0.8643761 -0.5050551 0.1939468 0.8643761 -0.5370987 0.1939468 0.8643761 -0.5668815 0.1939468 0.8643761 -0.5947903 0.1939468 0.8643761 -0.6211144 0.1939468 0.8643761 -0.6460766 0.1939468 0.8643761 -0.6698526 0.1939468 0.8643761 -0.6925839 0.1939468 0.8643761 -0.7143866 0.1939468 0.8643761 -0.7353569 0.1939468 0.8643761 -0.7555758 0.1939468 0.8643761 -0.7751122 0.1939468 0.8643761 -0.7940252 0.1939468 0.8643761 -0.8123661 0.1939468 0.8643761 -0.8301795 0.1939468 0.8643761 -0.8475045 0.1939468 0.8643761 -0.8643761 0.1939468 0.8643761 -0.880825 0.1939468 0.8643761 -0.8968787 0.1939468 0.8643761 -0.9125621 0.1939468 0.8643761 -0.9278974 0.1939468 0.8643761 -0.9429048 0.1939468 0.8643761 -0.9576028 0.1939468 0.8643761 -0.9720079 0.1939468 0.8643761 -0.9861357 0.1939468 0.8643761 -1 0.1939468 0.8643761 -0 0.2773041 0.8643761 -0.1939468 0.2773041 0.8643761 -0.2773041 0.2773041 0.8643761 -0.3384659 0.2773041 0.8643761 -0.3885728 0.2773041 0.8643761 -0.4317928 0.2773041 0.8643761 -0.470214 0.2773041 0.8643761 -0.5050551 0.2773041 0.8643761 -0.5370987 0.2773041 0.8643761 -0.5668815 0.2773041 0.8643761 -0.5947903 0.2773041 0.8643761 -0.6211144 0.2773041 0.8643761 -0.6460766 0.2773041 0.8643761 -0.6698526 0.2773041 0.8643761 -0.6925839 0.2773041 0.8643761 -0.7143866 0.2773041 0.8643761 -0.7353569 0.2773041 0.8643761 -0.7555758 0.2773041 0.8643761 -0.7751122 0.2773041 0.8643761 -0.7940252 0.2773041 0.8643761 -0.8123661 0.2773041 0.8643761 -0.8301795 0.2773041 0.8643761 -0.8475045 0.2773041 0.8643761 -0.8643761 0.2773041 0.8643761 -0.880825 0.2773041 0.8643761 -0.8968787 0.2773041 0.8643761 -0.9125621 0.2773041 0.8643761 -0.9278974 0.2773041 0.8643761 -0.9429048 0.2773041 0.8643761 -0.9576028 0.2773041 0.8643761 -0.9720079 0.2773041 0.8643761 -0.9861357 0.2773041 0.8643761 -1 0.2773041 0.8643761 -0 0.3384659 0.8643761 -0.1939468 0.3384659 0.8643761 -0.2773041 0.3384659 0.8643761 -0.3384659 0.3384659 0.8643761 -0.3885728 0.3384659 0.8643761 -0.4317928 0.3384659 0.8643761 -0.470214 0.3384659 0.8643761 -0.5050551 0.3384659 0.8643761 -0.5370987 0.3384659 0.8643761 -0.5668815 0.3384659 0.8643761 -0.5947903 0.3384659 0.8643761 -0.6211144 0.3384659 0.8643761 -0.6460766 0.3384659 0.8643761 -0.6698526 0.3384659 0.8643761 -0.6925839 0.3384659 0.8643761 -0.7143866 0.3384659 0.8643761 -0.7353569 0.3384659 0.8643761 -0.7555758 0.3384659 0.8643761 -0.7751122 0.3384659 0.8643761 -0.7940252 0.3384659 0.8643761 -0.8123661 0.3384659 0.8643761 -0.8301795 0.3384659 0.8643761 -0.8475045 0.3384659 0.8643761 -0.8643761 0.3384659 0.8643761 -0.880825 0.3384659 0.8643761 -0.8968787 0.3384659 0.8643761 -0.9125621 0.3384659 0.8643761 -0.9278974 0.3384659 0.8643761 -0.9429048 0.3384659 0.8643761 -0.9576028 0.3384659 0.8643761 -0.9720079 0.3384659 0.8643761 -0.9861357 0.3384659 0.8643761 -1 0.3384659 0.8643761 -0 0.3885728 0.8643761 -0.1939468 0.3885728 0.8643761 -0.2773041 0.3885728 0.8643761 -0.3384659 0.3885728 0.8643761 -0.3885728 0.3885728 0.8643761 -0.4317928 0.3885728 0.8643761 -0.470214 0.3885728 0.8643761 -0.5050551 0.3885728 0.8643761 -0.5370987 0.3885728 0.8643761 -0.5668815 0.3885728 0.8643761 -0.5947903 0.3885728 0.8643761 -0.6211144 0.3885728 0.8643761 -0.6460766 0.3885728 0.8643761 -0.6698526 0.3885728 0.8643761 -0.6925839 0.3885728 0.8643761 -0.7143866 0.3885728 0.8643761 -0.7353569 0.3885728 0.8643761 -0.7555758 0.3885728 0.8643761 -0.7751122 0.3885728 0.8643761 -0.7940252 0.3885728 0.8643761 -0.8123661 0.3885728 0.8643761 -0.8301795 0.3885728 0.8643761 -0.8475045 0.3885728 0.8643761 -0.8643761 0.3885728 0.8643761 -0.880825 0.3885728 0.8643761 -0.8968787 0.3885728 0.8643761 -0.9125621 0.3885728 0.8643761 -0.9278974 0.3885728 0.8643761 -0.9429048 0.3885728 0.8643761 -0.9576028 0.3885728 0.8643761 -0.9720079 0.3885728 0.8643761 -0.9861357 0.3885728 0.8643761 -1 0.3885728 0.8643761 -0 0.4317928 0.8643761 -0.1939468 0.4317928 0.8643761 -0.2773041 0.4317928 0.8643761 -0.3384659 0.4317928 0.8643761 -0.3885728 0.4317928 0.8643761 -0.4317928 0.4317928 0.8643761 -0.470214 0.4317928 0.8643761 -0.5050551 0.4317928 0.8643761 -0.5370987 0.4317928 0.8643761 -0.5668815 0.4317928 0.8643761 -0.5947903 0.4317928 0.8643761 -0.6211144 0.4317928 0.8643761 -0.6460766 0.4317928 0.8643761 -0.6698526 0.4317928 0.8643761 -0.6925839 0.4317928 0.8643761 -0.7143866 0.4317928 0.8643761 -0.7353569 0.4317928 0.8643761 -0.7555758 0.4317928 0.8643761 -0.7751122 0.4317928 0.8643761 -0.7940252 0.4317928 0.8643761 -0.8123661 0.4317928 0.8643761 -0.8301795 0.4317928 0.8643761 -0.8475045 0.4317928 0.8643761 -0.8643761 0.4317928 0.8643761 -0.880825 0.4317928 0.8643761 -0.8968787 0.4317928 0.8643761 -0.9125621 0.4317928 0.8643761 -0.9278974 0.4317928 0.8643761 -0.9429048 0.4317928 0.8643761 -0.9576028 0.4317928 0.8643761 -0.9720079 0.4317928 0.8643761 -0.9861357 0.4317928 0.8643761 -1 0.4317928 0.8643761 -0 0.470214 0.8643761 -0.1939468 0.470214 0.8643761 -0.2773041 0.470214 0.8643761 -0.3384659 0.470214 0.8643761 -0.3885728 0.470214 0.8643761 -0.4317928 0.470214 0.8643761 -0.470214 0.470214 0.8643761 -0.5050551 0.470214 0.8643761 -0.5370987 0.470214 0.8643761 -0.5668815 0.470214 0.8643761 -0.5947903 0.470214 0.8643761 -0.6211144 0.470214 0.8643761 -0.6460766 0.470214 0.8643761 -0.6698526 0.470214 0.8643761 -0.6925839 0.470214 0.8643761 -0.7143866 0.470214 0.8643761 -0.7353569 0.470214 0.8643761 -0.7555758 0.470214 0.8643761 -0.7751122 0.470214 0.8643761 -0.7940252 0.470214 0.8643761 -0.8123661 0.470214 0.8643761 -0.8301795 0.470214 0.8643761 -0.8475045 0.470214 0.8643761 -0.8643761 0.470214 0.8643761 -0.880825 0.470214 0.8643761 -0.8968787 0.470214 0.8643761 -0.9125621 0.470214 0.8643761 -0.9278974 0.470214 0.8643761 -0.9429048 0.470214 0.8643761 -0.9576028 0.470214 0.8643761 -0.9720079 0.470214 0.8643761 -0.9861357 0.470214 0.8643761 -1 0.470214 0.8643761 -0 0.5050551 0.8643761 -0.1939468 0.5050551 0.8643761 -0.2773041 0.5050551 0.8643761 -0.3384659 0.5050551 0.8643761 -0.3885728 0.5050551 0.8643761 -0.4317928 0.5050551 0.8643761 -0.470214 0.5050551 0.8643761 -0.5050551 0.5050551 0.8643761 -0.5370987 0.5050551 0.8643761 -0.5668815 0.5050551 0.8643761 -0.5947903 0.5050551 0.8643761 -0.6211144 0.5050551 0.8643761 -0.6460766 0.5050551 0.8643761 -0.6698526 0.5050551 0.8643761 -0.6925839 0.5050551 0.8643761 -0.7143866 0.5050551 0.8643761 -0.7353569 0.5050551 0.8643761 -0.7555758 0.5050551 0.8643761 -0.7751122 0.5050551 0.8643761 -0.7940252 0.5050551 0.8643761 -0.8123661 0.5050551 0.8643761 -0.8301795 0.5050551 0.8643761 -0.8475045 0.5050551 0.8643761 -0.8643761 0.5050551 0.8643761 -0.880825 0.5050551 0.8643761 -0.8968787 0.5050551 0.8643761 -0.9125621 0.5050551 0.8643761 -0.9278974 0.5050551 0.8643761 -0.9429048 0.5050551 0.8643761 -0.9576028 0.5050551 0.8643761 -0.9720079 0.5050551 0.8643761 -0.9861357 0.5050551 0.8643761 -1 0.5050551 0.8643761 -0 0.5370987 0.8643761 -0.1939468 0.5370987 0.8643761 -0.2773041 0.5370987 0.8643761 -0.3384659 0.5370987 0.8643761 -0.3885728 0.5370987 0.8643761 -0.4317928 0.5370987 0.8643761 -0.470214 0.5370987 0.8643761 -0.5050551 0.5370987 0.8643761 -0.5370987 0.5370987 0.8643761 -0.5668815 0.5370987 0.8643761 -0.5947903 0.5370987 0.8643761 -0.6211144 0.5370987 0.8643761 -0.6460766 0.5370987 0.8643761 -0.6698526 0.5370987 0.8643761 -0.6925839 0.5370987 0.8643761 -0.7143866 0.5370987 0.8643761 -0.7353569 0.5370987 0.8643761 -0.7555758 0.5370987 0.8643761 -0.7751122 0.5370987 0.8643761 -0.7940252 0.5370987 0.8643761 -0.8123661 0.5370987 0.8643761 -0.8301795 0.5370987 0.8643761 -0.8475045 0.5370987 0.8643761 -0.8643761 0.5370987 0.8643761 -0.880825 0.5370987 0.8643761 -0.8968787 0.5370987 0.8643761 -0.9125621 0.5370987 0.8643761 -0.9278974 0.5370987 0.8643761 -0.9429048 0.5370987 0.8643761 -0.9576028 0.5370987 0.8643761 -0.9720079 0.5370987 0.8643761 -0.9861357 0.5370987 0.8643761 -1 0.5370987 0.8643761 -0 0.5668815 0.8643761 -0.1939468 0.5668815 0.8643761 -0.2773041 0.5668815 0.8643761 -0.3384659 0.5668815 0.8643761 -0.3885728 0.5668815 0.8643761 -0.4317928 0.5668815 0.8643761 -0.470214 0.5668815 0.8643761 -0.5050551 0.5668815 0.8643761 -0.5370987 0.5668815 0.8643761 -0.5668815 0.5668815 0.8643761 -0.5947903 0.5668815 0.8643761 -0.6211144 0.5668815 0.8643761 -0.6460766 0.5668815 0.8643761 -0.6698526 0.5668815 0.8643761 -0.6925839 0.5668815 0.8643761 -0.7143866 0.5668815 0.8643761 -0.7353569 0.5668815 0.8643761 -0.7555758 0.5668815 0.8643761 -0.7751122 0.5668815 0.8643761 -0.7940252 0.5668815 0.8643761 -0.8123661 0.5668815 0.8643761 -0.8301795 0.5668815 0.8643761 -0.8475045 0.5668815 0.8643761 -0.8643761 0.5668815 0.8643761 -0.880825 0.5668815 0.8643761 -0.8968787 0.5668815 0.8643761 -0.9125621 0.5668815 0.8643761 -0.9278974 0.5668815 0.8643761 -0.9429048 0.5668815 0.8643761 -0.9576028 0.5668815 0.8643761 -0.9720079 0.5668815 0.8643761 -0.9861357 0.5668815 0.8643761 -1 0.5668815 0.8643761 -0 0.5947903 0.8643761 -0.1939468 0.5947903 0.8643761 -0.2773041 0.5947903 0.8643761 -0.3384659 0.5947903 0.8643761 -0.3885728 0.5947903 0.8643761 -0.4317928 0.5947903 0.8643761 -0.470214 0.5947903 0.8643761 -0.5050551 0.5947903 0.8643761 -0.5370987 0.5947903 0.8643761 -0.5668815 0.5947903 0.8643761 -0.5947903 0.5947903 0.8643761 -0.6211144 0.5947903 0.8643761 -0.6460766 0.5947903 0.8643761 -0.6698526 0.5947903 0.8643761 -0.6925839 0.5947903 0.8643761 -0.7143866 0.5947903 0.8643761 -0.7353569 0.5947903 0.8643761 -0.7555758 0.5947903 0.8643761 -0.7751122 0.5947903 0.8643761 -0.7940252 0.5947903 0.8643761 -0.8123661 0.5947903 0.8643761 -0.8301795 0.5947903 0.8643761 -0.8475045 0.5947903 0.8643761 -0.8643761 0.5947903 0.8643761 -0.880825 0.5947903 0.8643761 -0.8968787 0.5947903 0.8643761 -0.9125621 0.5947903 0.8643761 -0.9278974 0.5947903 0.8643761 -0.9429048 0.5947903 0.8643761 -0.9576028 0.5947903 0.8643761 -0.9720079 0.5947903 0.8643761 -0.9861357 0.5947903 0.8643761 -1 0.5947903 0.8643761 -0 0.6211144 0.8643761 -0.1939468 0.6211144 0.8643761 -0.2773041 0.6211144 0.8643761 -0.3384659 0.6211144 0.8643761 -0.3885728 0.6211144 0.8643761 -0.4317928 0.6211144 0.8643761 -0.470214 0.6211144 0.8643761 -0.5050551 0.6211144 0.8643761 -0.5370987 0.6211144 0.8643761 -0.5668815 0.6211144 0.8643761 -0.5947903 0.6211144 0.8643761 -0.6211144 0.6211144 0.8643761 -0.6460766 0.6211144 0.8643761 -0.6698526 0.6211144 0.8643761 -0.6925839 0.6211144 0.8643761 -0.7143866 0.6211144 0.8643761 -0.7353569 0.6211144 0.8643761 -0.7555758 0.6211144 0.8643761 -0.7751122 0.6211144 0.8643761 -0.7940252 0.6211144 0.8643761 -0.8123661 0.6211144 0.8643761 -0.8301795 0.6211144 0.8643761 -0.8475045 0.6211144 0.8643761 -0.8643761 0.6211144 0.8643761 -0.880825 0.6211144 0.8643761 -0.8968787 0.6211144 0.8643761 -0.9125621 0.6211144 0.8643761 -0.9278974 0.6211144 0.8643761 -0.9429048 0.6211144 0.8643761 -0.9576028 0.6211144 0.8643761 -0.9720079 0.6211144 0.8643761 -0.9861357 0.6211144 0.8643761 -1 0.6211144 0.8643761 -0 0.6460766 0.8643761 -0.1939468 0.6460766 0.8643761 -0.2773041 0.6460766 0.8643761 -0.3384659 0.6460766 0.8643761 -0.3885728 0.6460766 0.8643761 -0.4317928 0.6460766 0.8643761 -0.470214 0.6460766 0.8643761 -0.5050551 0.6460766 0.8643761 -0.5370987 0.6460766 0.8643761 -0.5668815 0.6460766 0.8643761 -0.5947903 0.6460766 0.8643761 -0.6211144 0.6460766 0.8643761 -0.6460766 0.6460766 0.8643761 -0.6698526 0.6460766 0.8643761 -0.6925839 0.6460766 0.8643761 -0.7143866 0.6460766 0.8643761 -0.7353569 0.6460766 0.8643761 -0.7555758 0.6460766 0.8643761 -0.7751122 0.6460766 0.8643761 -0.7940252 0.6460766 0.8643761 -0.8123661 0.6460766 0.8643761 -0.8301795 0.6460766 0.8643761 -0.8475045 0.6460766 0.8643761 -0.8643761 0.6460766 0.8643761 -0.880825 0.6460766 0.8643761 -0.8968787 0.6460766 0.8643761 -0.9125621 0.6460766 0.8643761 -0.9278974 0.6460766 0.8643761 -0.9429048 0.6460766 0.8643761 -0.9576028 0.6460766 0.8643761 -0.9720079 0.6460766 0.8643761 -0.9861357 0.6460766 0.8643761 -1 0.6460766 0.8643761 -0 0.6698526 0.8643761 -0.1939468 0.6698526 0.8643761 -0.2773041 0.6698526 0.8643761 -0.3384659 0.6698526 0.8643761 -0.3885728 0.6698526 0.8643761 -0.4317928 0.6698526 0.8643761 -0.470214 0.6698526 0.8643761 -0.5050551 0.6698526 0.8643761 -0.5370987 0.6698526 0.8643761 -0.5668815 0.6698526 0.8643761 -0.5947903 0.6698526 0.8643761 -0.6211144 0.6698526 0.8643761 -0.6460766 0.6698526 0.8643761 -0.6698526 0.6698526 0.8643761 -0.6925839 0.6698526 0.8643761 -0.7143866 0.6698526 0.8643761 -0.7353569 0.6698526 0.8643761 -0.7555758 0.6698526 0.8643761 -0.7751122 0.6698526 0.8643761 -0.7940252 0.6698526 0.8643761 -0.8123661 0.6698526 0.8643761 -0.8301795 0.6698526 0.8643761 -0.8475045 0.6698526 0.8643761 -0.8643761 0.6698526 0.8643761 -0.880825 0.6698526 0.8643761 -0.8968787 0.6698526 0.8643761 -0.9125621 0.6698526 0.8643761 -0.9278974 0.6698526 0.8643761 -0.9429048 0.6698526 0.8643761 -0.9576028 0.6698526 0.8643761 -0.9720079 0.6698526 0.8643761 -0.9861357 0.6698526 0.8643761 -1 0.6698526 0.8643761 -0 0.6925839 0.8643761 -0.1939468 0.6925839 0.8643761 -0.2773041 0.6925839 0.8643761 -0.3384659 0.6925839 0.8643761 -0.3885728 0.6925839 0.8643761 -0.4317928 0.6925839 0.8643761 -0.470214 0.6925839 0.8643761 -0.5050551 0.6925839 0.8643761 -0.5370987 0.6925839 0.8643761 -0.5668815 0.6925839 0.8643761 -0.5947903 0.6925839 0.8643761 -0.6211144 0.6925839 0.8643761 -0.6460766 0.6925839 0.8643761 -0.6698526 0.6925839 0.8643761 -0.6925839 0.6925839 0.8643761 -0.7143866 0.6925839 0.8643761 -0.7353569 0.6925839 0.8643761 -0.7555758 0.6925839 0.8643761 -0.7751122 0.6925839 0.8643761 -0.7940252 0.6925839 0.8643761 -0.8123661 0.6925839 0.8643761 -0.8301795 0.6925839 0.8643761 -0.8475045 0.6925839 0.8643761 -0.8643761 0.6925839 0.8643761 -0.880825 0.6925839 0.8643761 -0.8968787 0.6925839 0.8643761 -0.9125621 0.6925839 0.8643761 -0.9278974 0.6925839 0.8643761 -0.9429048 0.6925839 0.8643761 -0.9576028 0.6925839 0.8643761 -0.9720079 0.6925839 0.8643761 -0.9861357 0.6925839 0.8643761 -1 0.6925839 0.8643761 -0 0.7143866 0.8643761 -0.1939468 0.7143866 0.8643761 -0.2773041 0.7143866 0.8643761 -0.3384659 0.7143866 0.8643761 -0.3885728 0.7143866 0.8643761 -0.4317928 0.7143866 0.8643761 -0.470214 0.7143866 0.8643761 -0.5050551 0.7143866 0.8643761 -0.5370987 0.7143866 0.8643761 -0.5668815 0.7143866 0.8643761 -0.5947903 0.7143866 0.8643761 -0.6211144 0.7143866 0.8643761 -0.6460766 0.7143866 0.8643761 -0.6698526 0.7143866 0.8643761 -0.6925839 0.7143866 0.8643761 -0.7143866 0.7143866 0.8643761 -0.7353569 0.7143866 0.8643761 -0.7555758 0.7143866 0.8643761 -0.7751122 0.7143866 0.8643761 -0.7940252 0.7143866 0.8643761 -0.8123661 0.7143866 0.8643761 -0.8301795 0.7143866 0.8643761 -0.8475045 0.7143866 0.8643761 -0.8643761 0.7143866 0.8643761 -0.880825 0.7143866 0.8643761 -0.8968787 0.7143866 0.8643761 -0.9125621 0.7143866 0.8643761 -0.9278974 0.7143866 0.8643761 -0.9429048 0.7143866 0.8643761 -0.9576028 0.7143866 0.8643761 -0.9720079 0.7143866 0.8643761 -0.9861357 0.7143866 0.8643761 -1 0.7143866 0.8643761 -0 0.7353569 0.8643761 -0.1939468 0.7353569 0.8643761 -0.2773041 0.7353569 0.8643761 -0.3384659 0.7353569 0.8643761 -0.3885728 0.7353569 0.8643761 -0.4317928 0.7353569 0.8643761 -0.470214 0.7353569 0.8643761 -0.5050551 0.7353569 0.8643761 -0.5370987 0.7353569 0.8643761 -0.5668815 0.7353569 0.8643761 -0.5947903 0.7353569 0.8643761 -0.6211144 0.7353569 0.8643761 -0.6460766 0.7353569 0.8643761 -0.6698526 0.7353569 0.8643761 -0.6925839 0.7353569 0.8643761 -0.7143866 0.7353569 0.8643761 -0.7353569 0.7353569 0.8643761 -0.7555758 0.7353569 0.8643761 -0.7751122 0.7353569 0.8643761 -0.7940252 0.7353569 0.8643761 -0.8123661 0.7353569 0.8643761 -0.8301795 0.7353569 0.8643761 -0.8475045 0.7353569 0.8643761 -0.8643761 0.7353569 0.8643761 -0.880825 0.7353569 0.8643761 -0.8968787 0.7353569 0.8643761 -0.9125621 0.7353569 0.8643761 -0.9278974 0.7353569 0.8643761 -0.9429048 0.7353569 0.8643761 -0.9576028 0.7353569 0.8643761 -0.9720079 0.7353569 0.8643761 -0.9861357 0.7353569 0.8643761 -1 0.7353569 0.8643761 -0 0.7555758 0.8643761 -0.1939468 0.7555758 0.8643761 -0.2773041 0.7555758 0.8643761 -0.3384659 0.7555758 0.8643761 -0.3885728 0.7555758 0.8643761 -0.4317928 0.7555758 0.8643761 -0.470214 0.7555758 0.8643761 -0.5050551 0.7555758 0.8643761 -0.5370987 0.7555758 0.8643761 -0.5668815 0.7555758 0.8643761 -0.5947903 0.7555758 0.8643761 -0.6211144 0.7555758 0.8643761 -0.6460766 0.7555758 0.8643761 -0.6698526 0.7555758 0.8643761 -0.6925839 0.7555758 0.8643761 -0.7143866 0.7555758 0.8643761 -0.7353569 0.7555758 0.8643761 -0.7555758 0.7555758 0.8643761 -0.7751122 0.7555758 0.8643761 -0.7940252 0.7555758 0.8643761 -0.8123661 0.7555758 0.8643761 -0.8301795 0.7555758 0.8643761 -0.8475045 0.7555758 0.8643761 -0.8643761 0.7555758 0.8643761 -0.880825 0.7555758 0.8643761 -0.8968787 0.7555758 0.8643761 -0.9125621 0.7555758 0.8643761 -0.9278974 0.7555758 0.8643761 -0.9429048 0.7555758 0.8643761 -0.9576028 0.7555758 0.8643761 -0.9720079 0.7555758 0.8643761 -0.9861357 0.7555758 0.8643761 -1 0.7555758 0.8643761 -0 0.7751122 0.8643761 -0.1939468 0.7751122 0.8643761 -0.2773041 0.7751122 0.8643761 -0.3384659 0.7751122 0.8643761 -0.3885728 0.7751122 0.8643761 -0.4317928 0.7751122 0.8643761 -0.470214 0.7751122 0.8643761 -0.5050551 0.7751122 0.8643761 -0.5370987 0.7751122 0.8643761 -0.5668815 0.7751122 0.8643761 -0.5947903 0.7751122 0.8643761 -0.6211144 0.7751122 0.8643761 -0.6460766 0.7751122 0.8643761 -0.6698526 0.7751122 0.8643761 -0.6925839 0.7751122 0.8643761 -0.7143866 0.7751122 0.8643761 -0.7353569 0.7751122 0.8643761 -0.7555758 0.7751122 0.8643761 -0.7751122 0.7751122 0.8643761 -0.7940252 0.7751122 0.8643761 -0.8123661 0.7751122 0.8643761 -0.8301795 0.7751122 0.8643761 -0.8475045 0.7751122 0.8643761 -0.8643761 0.7751122 0.8643761 -0.880825 0.7751122 0.8643761 -0.8968787 0.7751122 0.8643761 -0.9125621 0.7751122 0.8643761 -0.9278974 0.7751122 0.8643761 -0.9429048 0.7751122 0.8643761 -0.9576028 0.7751122 0.8643761 -0.9720079 0.7751122 0.8643761 -0.9861357 0.7751122 0.8643761 -1 0.7751122 0.8643761 -0 0.7940252 0.8643761 -0.1939468 0.7940252 0.8643761 -0.2773041 0.7940252 0.8643761 -0.3384659 0.7940252 0.8643761 -0.3885728 0.7940252 0.8643761 -0.4317928 0.7940252 0.8643761 -0.470214 0.7940252 0.8643761 -0.5050551 0.7940252 0.8643761 -0.5370987 0.7940252 0.8643761 -0.5668815 0.7940252 0.8643761 -0.5947903 0.7940252 0.8643761 -0.6211144 0.7940252 0.8643761 -0.6460766 0.7940252 0.8643761 -0.6698526 0.7940252 0.8643761 -0.6925839 0.7940252 0.8643761 -0.7143866 0.7940252 0.8643761 -0.7353569 0.7940252 0.8643761 -0.7555758 0.7940252 0.8643761 -0.7751122 0.7940252 0.8643761 -0.7940252 0.7940252 0.8643761 -0.8123661 0.7940252 0.8643761 -0.8301795 0.7940252 0.8643761 -0.8475045 0.7940252 0.8643761 -0.8643761 0.7940252 0.8643761 -0.880825 0.7940252 0.8643761 -0.8968787 0.7940252 0.8643761 -0.9125621 0.7940252 0.8643761 -0.9278974 0.7940252 0.8643761 -0.9429048 0.7940252 0.8643761 -0.9576028 0.7940252 0.8643761 -0.9720079 0.7940252 0.8643761 -0.9861357 0.7940252 0.8643761 -1 0.7940252 0.8643761 -0 0.8123661 0.8643761 -0.1939468 0.8123661 0.8643761 -0.2773041 0.8123661 0.8643761 -0.3384659 0.8123661 0.8643761 -0.3885728 0.8123661 0.8643761 -0.4317928 0.8123661 0.8643761 -0.470214 0.8123661 0.8643761 -0.5050551 0.8123661 0.8643761 -0.5370987 0.8123661 0.8643761 -0.5668815 0.8123661 0.8643761 -0.5947903 0.8123661 0.8643761 -0.6211144 0.8123661 0.8643761 -0.6460766 0.8123661 0.8643761 -0.6698526 0.8123661 0.8643761 -0.6925839 0.8123661 0.8643761 -0.7143866 0.8123661 0.8643761 -0.7353569 0.8123661 0.8643761 -0.7555758 0.8123661 0.8643761 -0.7751122 0.8123661 0.8643761 -0.7940252 0.8123661 0.8643761 -0.8123661 0.8123661 0.8643761 -0.8301795 0.8123661 0.8643761 -0.8475045 0.8123661 0.8643761 -0.8643761 0.8123661 0.8643761 -0.880825 0.8123661 0.8643761 -0.8968787 0.8123661 0.8643761 -0.9125621 0.8123661 0.8643761 -0.9278974 0.8123661 0.8643761 -0.9429048 0.8123661 0.8643761 -0.9576028 0.8123661 0.8643761 -0.9720079 0.8123661 0.8643761 -0.9861357 0.8123661 0.8643761 -1 0.8123661 0.8643761 -0 0.8301795 0.8643761 -0.1939468 0.8301795 0.8643761 -0.2773041 0.8301795 0.8643761 -0.3384659 0.8301795 0.8643761 -0.3885728 0.8301795 0.8643761 -0.4317928 0.8301795 0.8643761 -0.470214 0.8301795 0.8643761 -0.5050551 0.8301795 0.8643761 -0.5370987 0.8301795 0.8643761 -0.5668815 0.8301795 0.8643761 -0.5947903 0.8301795 0.8643761 -0.6211144 0.8301795 0.8643761 -0.6460766 0.8301795 0.8643761 -0.6698526 0.8301795 0.8643761 -0.6925839 0.8301795 0.8643761 -0.7143866 0.8301795 0.8643761 -0.7353569 0.8301795 0.8643761 -0.7555758 0.8301795 0.8643761 -0.7751122 0.8301795 0.8643761 -0.7940252 0.8301795 0.8643761 -0.8123661 0.8301795 0.8643761 -0.8301795 0.8301795 0.8643761 -0.8475045 0.8301795 0.8643761 -0.8643761 0.8301795 0.8643761 -0.880825 0.8301795 0.8643761 -0.8968787 0.8301795 0.8643761 -0.9125621 0.8301795 0.8643761 -0.9278974 0.8301795 0.8643761 -0.9429048 0.8301795 0.8643761 -0.9576028 0.8301795 0.8643761 -0.9720079 0.8301795 0.8643761 -0.9861357 0.8301795 0.8643761 -1 0.8301795 0.8643761 -0 0.8475045 0.8643761 -0.1939468 0.8475045 0.8643761 -0.2773041 0.8475045 0.8643761 -0.3384659 0.8475045 0.8643761 -0.3885728 0.8475045 0.8643761 -0.4317928 0.8475045 0.8643761 -0.470214 0.8475045 0.8643761 -0.5050551 0.8475045 0.8643761 -0.5370987 0.8475045 0.8643761 -0.5668815 0.8475045 0.8643761 -0.5947903 0.8475045 0.8643761 -0.6211144 0.8475045 0.8643761 -0.6460766 0.8475045 0.8643761 -0.6698526 0.8475045 0.8643761 -0.6925839 0.8475045 0.8643761 -0.7143866 0.8475045 0.8643761 -0.7353569 0.8475045 0.8643761 -0.7555758 0.8475045 0.8643761 -0.7751122 0.8475045 0.8643761 -0.7940252 0.8475045 0.8643761 -0.8123661 0.8475045 0.8643761 -0.8301795 0.8475045 0.8643761 -0.8475045 0.8475045 0.8643761 -0.8643761 0.8475045 0.8643761 -0.880825 0.8475045 0.8643761 -0.8968787 0.8475045 0.8643761 -0.9125621 0.8475045 0.8643761 -0.9278974 0.8475045 0.8643761 -0.9429048 0.8475045 0.8643761 -0.9576028 0.8475045 0.8643761 -0.9720079 0.8475045 0.8643761 -0.9861357 0.8475045 0.8643761 -1 0.8475045 0.8643761 -0 0.8643761 0.8643761 -0.1939468 0.8643761 0.8643761 -0.2773041 0.8643761 0.8643761 -0.3384659 0.8643761 0.8643761 -0.3885728 0.8643761 0.8643761 -0.4317928 0.8643761 0.8643761 -0.470214 0.8643761 0.8643761 -0.5050551 0.8643761 0.8643761 -0.5370987 0.8643761 0.8643761 -0.5668815 0.8643761 0.8643761 -0.5947903 0.8643761 0.8643761 -0.6211144 0.8643761 0.8643761 -0.6460766 0.8643761 0.8643761 -0.6698526 0.8643761 0.8643761 -0.6925839 0.8643761 0.8643761 -0.7143866 0.8643761 0.8643761 -0.7353569 0.8643761 0.8643761 -0.7555758 0.8643761 0.8643761 -0.7751122 0.8643761 0.8643761 -0.7940252 0.8643761 0.8643761 -0.8123661 0.8643761 0.8643761 -0.8301795 0.8643761 0.8643761 -0.8475045 0.8643761 0.8643761 -0.8643761 0.8643761 0.8643761 -0.880825 0.8643761 0.8643761 -0.8968787 0.8643761 0.8643761 -0.9125621 0.8643761 0.8643761 -0.9278974 0.8643761 0.8643761 -0.9429048 0.8643761 0.8643761 -0.9576028 0.8643761 0.8643761 -0.9720079 0.8643761 0.8643761 -0.9861357 0.8643761 0.8643761 -1 0.8643761 0.8643761 -0 0.880825 0.8643761 -0.1939468 0.880825 0.8643761 -0.2773041 0.880825 0.8643761 -0.3384659 0.880825 0.8643761 -0.3885728 0.880825 0.8643761 -0.4317928 0.880825 0.8643761 -0.470214 0.880825 0.8643761 -0.5050551 0.880825 0.8643761 -0.5370987 0.880825 0.8643761 -0.5668815 0.880825 0.8643761 -0.5947903 0.880825 0.8643761 -0.6211144 0.880825 0.8643761 -0.6460766 0.880825 0.8643761 -0.6698526 0.880825 0.8643761 -0.6925839 0.880825 0.8643761 -0.7143866 0.880825 0.8643761 -0.7353569 0.880825 0.8643761 -0.7555758 0.880825 0.8643761 -0.7751122 0.880825 0.8643761 -0.7940252 0.880825 0.8643761 -0.8123661 0.880825 0.8643761 -0.8301795 0.880825 0.8643761 -0.8475045 0.880825 0.8643761 -0.8643761 0.880825 0.8643761 -0.880825 0.880825 0.8643761 -0.8968787 0.880825 0.8643761 -0.9125621 0.880825 0.8643761 -0.9278974 0.880825 0.8643761 -0.9429048 0.880825 0.8643761 -0.9576028 0.880825 0.8643761 -0.9720079 0.880825 0.8643761 -0.9861357 0.880825 0.8643761 -1 0.880825 0.8643761 -0 0.8968787 0.8643761 -0.1939468 0.8968787 0.8643761 -0.2773041 0.8968787 0.8643761 -0.3384659 0.8968787 0.8643761 -0.3885728 0.8968787 0.8643761 -0.4317928 0.8968787 0.8643761 -0.470214 0.8968787 0.8643761 -0.5050551 0.8968787 0.8643761 -0.5370987 0.8968787 0.8643761 -0.5668815 0.8968787 0.8643761 -0.5947903 0.8968787 0.8643761 -0.6211144 0.8968787 0.8643761 -0.6460766 0.8968787 0.8643761 -0.6698526 0.8968787 0.8643761 -0.6925839 0.8968787 0.8643761 -0.7143866 0.8968787 0.8643761 -0.7353569 0.8968787 0.8643761 -0.7555758 0.8968787 0.8643761 -0.7751122 0.8968787 0.8643761 -0.7940252 0.8968787 0.8643761 -0.8123661 0.8968787 0.8643761 -0.8301795 0.8968787 0.8643761 -0.8475045 0.8968787 0.8643761 -0.8643761 0.8968787 0.8643761 -0.880825 0.8968787 0.8643761 -0.8968787 0.8968787 0.8643761 -0.9125621 0.8968787 0.8643761 -0.9278974 0.8968787 0.8643761 -0.9429048 0.8968787 0.8643761 -0.9576028 0.8968787 0.8643761 -0.9720079 0.8968787 0.8643761 -0.9861357 0.8968787 0.8643761 -1 0.8968787 0.8643761 -0 0.9125621 0.8643761 -0.1939468 0.9125621 0.8643761 -0.2773041 0.9125621 0.8643761 -0.3384659 0.9125621 0.8643761 -0.3885728 0.9125621 0.8643761 -0.4317928 0.9125621 0.8643761 -0.470214 0.9125621 0.8643761 -0.5050551 0.9125621 0.8643761 -0.5370987 0.9125621 0.8643761 -0.5668815 0.9125621 0.8643761 -0.5947903 0.9125621 0.8643761 -0.6211144 0.9125621 0.8643761 -0.6460766 0.9125621 0.8643761 -0.6698526 0.9125621 0.8643761 -0.6925839 0.9125621 0.8643761 -0.7143866 0.9125621 0.8643761 -0.7353569 0.9125621 0.8643761 -0.7555758 0.9125621 0.8643761 -0.7751122 0.9125621 0.8643761 -0.7940252 0.9125621 0.8643761 -0.8123661 0.9125621 0.8643761 -0.8301795 0.9125621 0.8643761 -0.8475045 0.9125621 0.8643761 -0.8643761 0.9125621 0.8643761 -0.880825 0.9125621 0.8643761 -0.8968787 0.9125621 0.8643761 -0.9125621 0.9125621 0.8643761 -0.9278974 0.9125621 0.8643761 -0.9429048 0.9125621 0.8643761 -0.9576028 0.9125621 0.8643761 -0.9720079 0.9125621 0.8643761 -0.9861357 0.9125621 0.8643761 -1 0.9125621 0.8643761 -0 0.9278974 0.8643761 -0.1939468 0.9278974 0.8643761 -0.2773041 0.9278974 0.8643761 -0.3384659 0.9278974 0.8643761 -0.3885728 0.9278974 0.8643761 -0.4317928 0.9278974 0.8643761 -0.470214 0.9278974 0.8643761 -0.5050551 0.9278974 0.8643761 -0.5370987 0.9278974 0.8643761 -0.5668815 0.9278974 0.8643761 -0.5947903 0.9278974 0.8643761 -0.6211144 0.9278974 0.8643761 -0.6460766 0.9278974 0.8643761 -0.6698526 0.9278974 0.8643761 -0.6925839 0.9278974 0.8643761 -0.7143866 0.9278974 0.8643761 -0.7353569 0.9278974 0.8643761 -0.7555758 0.9278974 0.8643761 -0.7751122 0.9278974 0.8643761 -0.7940252 0.9278974 0.8643761 -0.8123661 0.9278974 0.8643761 -0.8301795 0.9278974 0.8643761 -0.8475045 0.9278974 0.8643761 -0.8643761 0.9278974 0.8643761 -0.880825 0.9278974 0.8643761 -0.8968787 0.9278974 0.8643761 -0.9125621 0.9278974 0.8643761 -0.9278974 0.9278974 0.8643761 -0.9429048 0.9278974 0.8643761 -0.9576028 0.9278974 0.8643761 -0.9720079 0.9278974 0.8643761 -0.9861357 0.9278974 0.8643761 -1 0.9278974 0.8643761 -0 0.9429048 0.8643761 -0.1939468 0.9429048 0.8643761 -0.2773041 0.9429048 0.8643761 -0.3384659 0.9429048 0.8643761 -0.3885728 0.9429048 0.8643761 -0.4317928 0.9429048 0.8643761 -0.470214 0.9429048 0.8643761 -0.5050551 0.9429048 0.8643761 -0.5370987 0.9429048 0.8643761 -0.5668815 0.9429048 0.8643761 -0.5947903 0.9429048 0.8643761 -0.6211144 0.9429048 0.8643761 -0.6460766 0.9429048 0.8643761 -0.6698526 0.9429048 0.8643761 -0.6925839 0.9429048 0.8643761 -0.7143866 0.9429048 0.8643761 -0.7353569 0.9429048 0.8643761 -0.7555758 0.9429048 0.8643761 -0.7751122 0.9429048 0.8643761 -0.7940252 0.9429048 0.8643761 -0.8123661 0.9429048 0.8643761 -0.8301795 0.9429048 0.8643761 -0.8475045 0.9429048 0.8643761 -0.8643761 0.9429048 0.8643761 -0.880825 0.9429048 0.8643761 -0.8968787 0.9429048 0.8643761 -0.9125621 0.9429048 0.8643761 -0.9278974 0.9429048 0.8643761 -0.9429048 0.9429048 0.8643761 -0.9576028 0.9429048 0.8643761 -0.9720079 0.9429048 0.8643761 -0.9861357 0.9429048 0.8643761 -1 0.9429048 0.8643761 -0 0.9576028 0.8643761 -0.1939468 0.9576028 0.8643761 -0.2773041 0.9576028 0.8643761 -0.3384659 0.9576028 0.8643761 -0.3885728 0.9576028 0.8643761 -0.4317928 0.9576028 0.8643761 -0.470214 0.9576028 0.8643761 -0.5050551 0.9576028 0.8643761 -0.5370987 0.9576028 0.8643761 -0.5668815 0.9576028 0.8643761 -0.5947903 0.9576028 0.8643761 -0.6211144 0.9576028 0.8643761 -0.6460766 0.9576028 0.8643761 -0.6698526 0.9576028 0.8643761 -0.6925839 0.9576028 0.8643761 -0.7143866 0.9576028 0.8643761 -0.7353569 0.9576028 0.8643761 -0.7555758 0.9576028 0.8643761 -0.7751122 0.9576028 0.8643761 -0.7940252 0.9576028 0.8643761 -0.8123661 0.9576028 0.8643761 -0.8301795 0.9576028 0.8643761 -0.8475045 0.9576028 0.8643761 -0.8643761 0.9576028 0.8643761 -0.880825 0.9576028 0.8643761 -0.8968787 0.9576028 0.8643761 -0.9125621 0.9576028 0.8643761 -0.9278974 0.9576028 0.8643761 -0.9429048 0.9576028 0.8643761 -0.9576028 0.9576028 0.8643761 -0.9720079 0.9576028 0.8643761 -0.9861357 0.9576028 0.8643761 -1 0.9576028 0.8643761 -0 0.9720079 0.8643761 -0.1939468 0.9720079 0.8643761 -0.2773041 0.9720079 0.8643761 -0.3384659 0.9720079 0.8643761 -0.3885728 0.9720079 0.8643761 -0.4317928 0.9720079 0.8643761 -0.470214 0.9720079 0.8643761 -0.5050551 0.9720079 0.8643761 -0.5370987 0.9720079 0.8643761 -0.5668815 0.9720079 0.8643761 -0.5947903 0.9720079 0.8643761 -0.6211144 0.9720079 0.8643761 -0.6460766 0.9720079 0.8643761 -0.6698526 0.9720079 0.8643761 -0.6925839 0.9720079 0.8643761 -0.7143866 0.9720079 0.8643761 -0.7353569 0.9720079 0.8643761 -0.7555758 0.9720079 0.8643761 -0.7751122 0.9720079 0.8643761 -0.7940252 0.9720079 0.8643761 -0.8123661 0.9720079 0.8643761 -0.8301795 0.9720079 0.8643761 -0.8475045 0.9720079 0.8643761 -0.8643761 0.9720079 0.8643761 -0.880825 0.9720079 0.8643761 -0.8968787 0.9720079 0.8643761 -0.9125621 0.9720079 0.8643761 -0.9278974 0.9720079 0.8643761 -0.9429048 0.9720079 0.8643761 -0.9576028 0.9720079 0.8643761 -0.9720079 0.9720079 0.8643761 -0.9861357 0.9720079 0.8643761 -1 0.9720079 0.8643761 -0 0.9861357 0.8643761 -0.1939468 0.9861357 0.8643761 -0.2773041 0.9861357 0.8643761 -0.3384659 0.9861357 0.8643761 -0.3885728 0.9861357 0.8643761 -0.4317928 0.9861357 0.8643761 -0.470214 0.9861357 0.8643761 -0.5050551 0.9861357 0.8643761 -0.5370987 0.9861357 0.8643761 -0.5668815 0.9861357 0.8643761 -0.5947903 0.9861357 0.8643761 -0.6211144 0.9861357 0.8643761 -0.6460766 0.9861357 0.8643761 -0.6698526 0.9861357 0.8643761 -0.6925839 0.9861357 0.8643761 -0.7143866 0.9861357 0.8643761 -0.7353569 0.9861357 0.8643761 -0.7555758 0.9861357 0.8643761 -0.7751122 0.9861357 0.8643761 -0.7940252 0.9861357 0.8643761 -0.8123661 0.9861357 0.8643761 -0.8301795 0.9861357 0.8643761 -0.8475045 0.9861357 0.8643761 -0.8643761 0.9861357 0.8643761 -0.880825 0.9861357 0.8643761 -0.8968787 0.9861357 0.8643761 -0.9125621 0.9861357 0.8643761 -0.9278974 0.9861357 0.8643761 -0.9429048 0.9861357 0.8643761 -0.9576028 0.9861357 0.8643761 -0.9720079 0.9861357 0.8643761 -0.9861357 0.9861357 0.8643761 -1 0.9861357 0.8643761 -0 1 0.8643761 -0.1939468 1 0.8643761 -0.2773041 1 0.8643761 -0.3384659 1 0.8643761 -0.3885728 1 0.8643761 -0.4317928 1 0.8643761 -0.470214 1 0.8643761 -0.5050551 1 0.8643761 -0.5370987 1 0.8643761 -0.5668815 1 0.8643761 -0.5947903 1 0.8643761 -0.6211144 1 0.8643761 -0.6460766 1 0.8643761 -0.6698526 1 0.8643761 -0.6925839 1 0.8643761 -0.7143866 1 0.8643761 -0.7353569 1 0.8643761 -0.7555758 1 0.8643761 -0.7751122 1 0.8643761 -0.7940252 1 0.8643761 -0.8123661 1 0.8643761 -0.8301795 1 0.8643761 -0.8475045 1 0.8643761 -0.8643761 1 0.8643761 -0.880825 1 0.8643761 -0.8968787 1 0.8643761 -0.9125621 1 0.8643761 -0.9278974 1 0.8643761 -0.9429048 1 0.8643761 -0.9576028 1 0.8643761 -0.9720079 1 0.8643761 -0.9861357 1 0.8643761 -1 1 0.8643761 -0 0 0.880825 -0.1939468 0 0.880825 -0.2773041 0 0.880825 -0.3384659 0 0.880825 -0.3885728 0 0.880825 -0.4317928 0 0.880825 -0.470214 0 0.880825 -0.5050551 0 0.880825 -0.5370987 0 0.880825 -0.5668815 0 0.880825 -0.5947903 0 0.880825 -0.6211144 0 0.880825 -0.6460766 0 0.880825 -0.6698526 0 0.880825 -0.6925839 0 0.880825 -0.7143866 0 0.880825 -0.7353569 0 0.880825 -0.7555758 0 0.880825 -0.7751122 0 0.880825 -0.7940252 0 0.880825 -0.8123661 0 0.880825 -0.8301795 0 0.880825 -0.8475045 0 0.880825 -0.8643761 0 0.880825 -0.880825 0 0.880825 -0.8968787 0 0.880825 -0.9125621 0 0.880825 -0.9278974 0 0.880825 -0.9429048 0 0.880825 -0.9576028 0 0.880825 -0.9720079 0 0.880825 -0.9861357 0 0.880825 -1 0 0.880825 -0 0.1939468 0.880825 -0.1939468 0.1939468 0.880825 -0.2773041 0.1939468 0.880825 -0.3384659 0.1939468 0.880825 -0.3885728 0.1939468 0.880825 -0.4317928 0.1939468 0.880825 -0.470214 0.1939468 0.880825 -0.5050551 0.1939468 0.880825 -0.5370987 0.1939468 0.880825 -0.5668815 0.1939468 0.880825 -0.5947903 0.1939468 0.880825 -0.6211144 0.1939468 0.880825 -0.6460766 0.1939468 0.880825 -0.6698526 0.1939468 0.880825 -0.6925839 0.1939468 0.880825 -0.7143866 0.1939468 0.880825 -0.7353569 0.1939468 0.880825 -0.7555758 0.1939468 0.880825 -0.7751122 0.1939468 0.880825 -0.7940252 0.1939468 0.880825 -0.8123661 0.1939468 0.880825 -0.8301795 0.1939468 0.880825 -0.8475045 0.1939468 0.880825 -0.8643761 0.1939468 0.880825 -0.880825 0.1939468 0.880825 -0.8968787 0.1939468 0.880825 -0.9125621 0.1939468 0.880825 -0.9278974 0.1939468 0.880825 -0.9429048 0.1939468 0.880825 -0.9576028 0.1939468 0.880825 -0.9720079 0.1939468 0.880825 -0.9861357 0.1939468 0.880825 -1 0.1939468 0.880825 -0 0.2773041 0.880825 -0.1939468 0.2773041 0.880825 -0.2773041 0.2773041 0.880825 -0.3384659 0.2773041 0.880825 -0.3885728 0.2773041 0.880825 -0.4317928 0.2773041 0.880825 -0.470214 0.2773041 0.880825 -0.5050551 0.2773041 0.880825 -0.5370987 0.2773041 0.880825 -0.5668815 0.2773041 0.880825 -0.5947903 0.2773041 0.880825 -0.6211144 0.2773041 0.880825 -0.6460766 0.2773041 0.880825 -0.6698526 0.2773041 0.880825 -0.6925839 0.2773041 0.880825 -0.7143866 0.2773041 0.880825 -0.7353569 0.2773041 0.880825 -0.7555758 0.2773041 0.880825 -0.7751122 0.2773041 0.880825 -0.7940252 0.2773041 0.880825 -0.8123661 0.2773041 0.880825 -0.8301795 0.2773041 0.880825 -0.8475045 0.2773041 0.880825 -0.8643761 0.2773041 0.880825 -0.880825 0.2773041 0.880825 -0.8968787 0.2773041 0.880825 -0.9125621 0.2773041 0.880825 -0.9278974 0.2773041 0.880825 -0.9429048 0.2773041 0.880825 -0.9576028 0.2773041 0.880825 -0.9720079 0.2773041 0.880825 -0.9861357 0.2773041 0.880825 -1 0.2773041 0.880825 -0 0.3384659 0.880825 -0.1939468 0.3384659 0.880825 -0.2773041 0.3384659 0.880825 -0.3384659 0.3384659 0.880825 -0.3885728 0.3384659 0.880825 -0.4317928 0.3384659 0.880825 -0.470214 0.3384659 0.880825 -0.5050551 0.3384659 0.880825 -0.5370987 0.3384659 0.880825 -0.5668815 0.3384659 0.880825 -0.5947903 0.3384659 0.880825 -0.6211144 0.3384659 0.880825 -0.6460766 0.3384659 0.880825 -0.6698526 0.3384659 0.880825 -0.6925839 0.3384659 0.880825 -0.7143866 0.3384659 0.880825 -0.7353569 0.3384659 0.880825 -0.7555758 0.3384659 0.880825 -0.7751122 0.3384659 0.880825 -0.7940252 0.3384659 0.880825 -0.8123661 0.3384659 0.880825 -0.8301795 0.3384659 0.880825 -0.8475045 0.3384659 0.880825 -0.8643761 0.3384659 0.880825 -0.880825 0.3384659 0.880825 -0.8968787 0.3384659 0.880825 -0.9125621 0.3384659 0.880825 -0.9278974 0.3384659 0.880825 -0.9429048 0.3384659 0.880825 -0.9576028 0.3384659 0.880825 -0.9720079 0.3384659 0.880825 -0.9861357 0.3384659 0.880825 -1 0.3384659 0.880825 -0 0.3885728 0.880825 -0.1939468 0.3885728 0.880825 -0.2773041 0.3885728 0.880825 -0.3384659 0.3885728 0.880825 -0.3885728 0.3885728 0.880825 -0.4317928 0.3885728 0.880825 -0.470214 0.3885728 0.880825 -0.5050551 0.3885728 0.880825 -0.5370987 0.3885728 0.880825 -0.5668815 0.3885728 0.880825 -0.5947903 0.3885728 0.880825 -0.6211144 0.3885728 0.880825 -0.6460766 0.3885728 0.880825 -0.6698526 0.3885728 0.880825 -0.6925839 0.3885728 0.880825 -0.7143866 0.3885728 0.880825 -0.7353569 0.3885728 0.880825 -0.7555758 0.3885728 0.880825 -0.7751122 0.3885728 0.880825 -0.7940252 0.3885728 0.880825 -0.8123661 0.3885728 0.880825 -0.8301795 0.3885728 0.880825 -0.8475045 0.3885728 0.880825 -0.8643761 0.3885728 0.880825 -0.880825 0.3885728 0.880825 -0.8968787 0.3885728 0.880825 -0.9125621 0.3885728 0.880825 -0.9278974 0.3885728 0.880825 -0.9429048 0.3885728 0.880825 -0.9576028 0.3885728 0.880825 -0.9720079 0.3885728 0.880825 -0.9861357 0.3885728 0.880825 -1 0.3885728 0.880825 -0 0.4317928 0.880825 -0.1939468 0.4317928 0.880825 -0.2773041 0.4317928 0.880825 -0.3384659 0.4317928 0.880825 -0.3885728 0.4317928 0.880825 -0.4317928 0.4317928 0.880825 -0.470214 0.4317928 0.880825 -0.5050551 0.4317928 0.880825 -0.5370987 0.4317928 0.880825 -0.5668815 0.4317928 0.880825 -0.5947903 0.4317928 0.880825 -0.6211144 0.4317928 0.880825 -0.6460766 0.4317928 0.880825 -0.6698526 0.4317928 0.880825 -0.6925839 0.4317928 0.880825 -0.7143866 0.4317928 0.880825 -0.7353569 0.4317928 0.880825 -0.7555758 0.4317928 0.880825 -0.7751122 0.4317928 0.880825 -0.7940252 0.4317928 0.880825 -0.8123661 0.4317928 0.880825 -0.8301795 0.4317928 0.880825 -0.8475045 0.4317928 0.880825 -0.8643761 0.4317928 0.880825 -0.880825 0.4317928 0.880825 -0.8968787 0.4317928 0.880825 -0.9125621 0.4317928 0.880825 -0.9278974 0.4317928 0.880825 -0.9429048 0.4317928 0.880825 -0.9576028 0.4317928 0.880825 -0.9720079 0.4317928 0.880825 -0.9861357 0.4317928 0.880825 -1 0.4317928 0.880825 -0 0.470214 0.880825 -0.1939468 0.470214 0.880825 -0.2773041 0.470214 0.880825 -0.3384659 0.470214 0.880825 -0.3885728 0.470214 0.880825 -0.4317928 0.470214 0.880825 -0.470214 0.470214 0.880825 -0.5050551 0.470214 0.880825 -0.5370987 0.470214 0.880825 -0.5668815 0.470214 0.880825 -0.5947903 0.470214 0.880825 -0.6211144 0.470214 0.880825 -0.6460766 0.470214 0.880825 -0.6698526 0.470214 0.880825 -0.6925839 0.470214 0.880825 -0.7143866 0.470214 0.880825 -0.7353569 0.470214 0.880825 -0.7555758 0.470214 0.880825 -0.7751122 0.470214 0.880825 -0.7940252 0.470214 0.880825 -0.8123661 0.470214 0.880825 -0.8301795 0.470214 0.880825 -0.8475045 0.470214 0.880825 -0.8643761 0.470214 0.880825 -0.880825 0.470214 0.880825 -0.8968787 0.470214 0.880825 -0.9125621 0.470214 0.880825 -0.9278974 0.470214 0.880825 -0.9429048 0.470214 0.880825 -0.9576028 0.470214 0.880825 -0.9720079 0.470214 0.880825 -0.9861357 0.470214 0.880825 -1 0.470214 0.880825 -0 0.5050551 0.880825 -0.1939468 0.5050551 0.880825 -0.2773041 0.5050551 0.880825 -0.3384659 0.5050551 0.880825 -0.3885728 0.5050551 0.880825 -0.4317928 0.5050551 0.880825 -0.470214 0.5050551 0.880825 -0.5050551 0.5050551 0.880825 -0.5370987 0.5050551 0.880825 -0.5668815 0.5050551 0.880825 -0.5947903 0.5050551 0.880825 -0.6211144 0.5050551 0.880825 -0.6460766 0.5050551 0.880825 -0.6698526 0.5050551 0.880825 -0.6925839 0.5050551 0.880825 -0.7143866 0.5050551 0.880825 -0.7353569 0.5050551 0.880825 -0.7555758 0.5050551 0.880825 -0.7751122 0.5050551 0.880825 -0.7940252 0.5050551 0.880825 -0.8123661 0.5050551 0.880825 -0.8301795 0.5050551 0.880825 -0.8475045 0.5050551 0.880825 -0.8643761 0.5050551 0.880825 -0.880825 0.5050551 0.880825 -0.8968787 0.5050551 0.880825 -0.9125621 0.5050551 0.880825 -0.9278974 0.5050551 0.880825 -0.9429048 0.5050551 0.880825 -0.9576028 0.5050551 0.880825 -0.9720079 0.5050551 0.880825 -0.9861357 0.5050551 0.880825 -1 0.5050551 0.880825 -0 0.5370987 0.880825 -0.1939468 0.5370987 0.880825 -0.2773041 0.5370987 0.880825 -0.3384659 0.5370987 0.880825 -0.3885728 0.5370987 0.880825 -0.4317928 0.5370987 0.880825 -0.470214 0.5370987 0.880825 -0.5050551 0.5370987 0.880825 -0.5370987 0.5370987 0.880825 -0.5668815 0.5370987 0.880825 -0.5947903 0.5370987 0.880825 -0.6211144 0.5370987 0.880825 -0.6460766 0.5370987 0.880825 -0.6698526 0.5370987 0.880825 -0.6925839 0.5370987 0.880825 -0.7143866 0.5370987 0.880825 -0.7353569 0.5370987 0.880825 -0.7555758 0.5370987 0.880825 -0.7751122 0.5370987 0.880825 -0.7940252 0.5370987 0.880825 -0.8123661 0.5370987 0.880825 -0.8301795 0.5370987 0.880825 -0.8475045 0.5370987 0.880825 -0.8643761 0.5370987 0.880825 -0.880825 0.5370987 0.880825 -0.8968787 0.5370987 0.880825 -0.9125621 0.5370987 0.880825 -0.9278974 0.5370987 0.880825 -0.9429048 0.5370987 0.880825 -0.9576028 0.5370987 0.880825 -0.9720079 0.5370987 0.880825 -0.9861357 0.5370987 0.880825 -1 0.5370987 0.880825 -0 0.5668815 0.880825 -0.1939468 0.5668815 0.880825 -0.2773041 0.5668815 0.880825 -0.3384659 0.5668815 0.880825 -0.3885728 0.5668815 0.880825 -0.4317928 0.5668815 0.880825 -0.470214 0.5668815 0.880825 -0.5050551 0.5668815 0.880825 -0.5370987 0.5668815 0.880825 -0.5668815 0.5668815 0.880825 -0.5947903 0.5668815 0.880825 -0.6211144 0.5668815 0.880825 -0.6460766 0.5668815 0.880825 -0.6698526 0.5668815 0.880825 -0.6925839 0.5668815 0.880825 -0.7143866 0.5668815 0.880825 -0.7353569 0.5668815 0.880825 -0.7555758 0.5668815 0.880825 -0.7751122 0.5668815 0.880825 -0.7940252 0.5668815 0.880825 -0.8123661 0.5668815 0.880825 -0.8301795 0.5668815 0.880825 -0.8475045 0.5668815 0.880825 -0.8643761 0.5668815 0.880825 -0.880825 0.5668815 0.880825 -0.8968787 0.5668815 0.880825 -0.9125621 0.5668815 0.880825 -0.9278974 0.5668815 0.880825 -0.9429048 0.5668815 0.880825 -0.9576028 0.5668815 0.880825 -0.9720079 0.5668815 0.880825 -0.9861357 0.5668815 0.880825 -1 0.5668815 0.880825 -0 0.5947903 0.880825 -0.1939468 0.5947903 0.880825 -0.2773041 0.5947903 0.880825 -0.3384659 0.5947903 0.880825 -0.3885728 0.5947903 0.880825 -0.4317928 0.5947903 0.880825 -0.470214 0.5947903 0.880825 -0.5050551 0.5947903 0.880825 -0.5370987 0.5947903 0.880825 -0.5668815 0.5947903 0.880825 -0.5947903 0.5947903 0.880825 -0.6211144 0.5947903 0.880825 -0.6460766 0.5947903 0.880825 -0.6698526 0.5947903 0.880825 -0.6925839 0.5947903 0.880825 -0.7143866 0.5947903 0.880825 -0.7353569 0.5947903 0.880825 -0.7555758 0.5947903 0.880825 -0.7751122 0.5947903 0.880825 -0.7940252 0.5947903 0.880825 -0.8123661 0.5947903 0.880825 -0.8301795 0.5947903 0.880825 -0.8475045 0.5947903 0.880825 -0.8643761 0.5947903 0.880825 -0.880825 0.5947903 0.880825 -0.8968787 0.5947903 0.880825 -0.9125621 0.5947903 0.880825 -0.9278974 0.5947903 0.880825 -0.9429048 0.5947903 0.880825 -0.9576028 0.5947903 0.880825 -0.9720079 0.5947903 0.880825 -0.9861357 0.5947903 0.880825 -1 0.5947903 0.880825 -0 0.6211144 0.880825 -0.1939468 0.6211144 0.880825 -0.2773041 0.6211144 0.880825 -0.3384659 0.6211144 0.880825 -0.3885728 0.6211144 0.880825 -0.4317928 0.6211144 0.880825 -0.470214 0.6211144 0.880825 -0.5050551 0.6211144 0.880825 -0.5370987 0.6211144 0.880825 -0.5668815 0.6211144 0.880825 -0.5947903 0.6211144 0.880825 -0.6211144 0.6211144 0.880825 -0.6460766 0.6211144 0.880825 -0.6698526 0.6211144 0.880825 -0.6925839 0.6211144 0.880825 -0.7143866 0.6211144 0.880825 -0.7353569 0.6211144 0.880825 -0.7555758 0.6211144 0.880825 -0.7751122 0.6211144 0.880825 -0.7940252 0.6211144 0.880825 -0.8123661 0.6211144 0.880825 -0.8301795 0.6211144 0.880825 -0.8475045 0.6211144 0.880825 -0.8643761 0.6211144 0.880825 -0.880825 0.6211144 0.880825 -0.8968787 0.6211144 0.880825 -0.9125621 0.6211144 0.880825 -0.9278974 0.6211144 0.880825 -0.9429048 0.6211144 0.880825 -0.9576028 0.6211144 0.880825 -0.9720079 0.6211144 0.880825 -0.9861357 0.6211144 0.880825 -1 0.6211144 0.880825 -0 0.6460766 0.880825 -0.1939468 0.6460766 0.880825 -0.2773041 0.6460766 0.880825 -0.3384659 0.6460766 0.880825 -0.3885728 0.6460766 0.880825 -0.4317928 0.6460766 0.880825 -0.470214 0.6460766 0.880825 -0.5050551 0.6460766 0.880825 -0.5370987 0.6460766 0.880825 -0.5668815 0.6460766 0.880825 -0.5947903 0.6460766 0.880825 -0.6211144 0.6460766 0.880825 -0.6460766 0.6460766 0.880825 -0.6698526 0.6460766 0.880825 -0.6925839 0.6460766 0.880825 -0.7143866 0.6460766 0.880825 -0.7353569 0.6460766 0.880825 -0.7555758 0.6460766 0.880825 -0.7751122 0.6460766 0.880825 -0.7940252 0.6460766 0.880825 -0.8123661 0.6460766 0.880825 -0.8301795 0.6460766 0.880825 -0.8475045 0.6460766 0.880825 -0.8643761 0.6460766 0.880825 -0.880825 0.6460766 0.880825 -0.8968787 0.6460766 0.880825 -0.9125621 0.6460766 0.880825 -0.9278974 0.6460766 0.880825 -0.9429048 0.6460766 0.880825 -0.9576028 0.6460766 0.880825 -0.9720079 0.6460766 0.880825 -0.9861357 0.6460766 0.880825 -1 0.6460766 0.880825 -0 0.6698526 0.880825 -0.1939468 0.6698526 0.880825 -0.2773041 0.6698526 0.880825 -0.3384659 0.6698526 0.880825 -0.3885728 0.6698526 0.880825 -0.4317928 0.6698526 0.880825 -0.470214 0.6698526 0.880825 -0.5050551 0.6698526 0.880825 -0.5370987 0.6698526 0.880825 -0.5668815 0.6698526 0.880825 -0.5947903 0.6698526 0.880825 -0.6211144 0.6698526 0.880825 -0.6460766 0.6698526 0.880825 -0.6698526 0.6698526 0.880825 -0.6925839 0.6698526 0.880825 -0.7143866 0.6698526 0.880825 -0.7353569 0.6698526 0.880825 -0.7555758 0.6698526 0.880825 -0.7751122 0.6698526 0.880825 -0.7940252 0.6698526 0.880825 -0.8123661 0.6698526 0.880825 -0.8301795 0.6698526 0.880825 -0.8475045 0.6698526 0.880825 -0.8643761 0.6698526 0.880825 -0.880825 0.6698526 0.880825 -0.8968787 0.6698526 0.880825 -0.9125621 0.6698526 0.880825 -0.9278974 0.6698526 0.880825 -0.9429048 0.6698526 0.880825 -0.9576028 0.6698526 0.880825 -0.9720079 0.6698526 0.880825 -0.9861357 0.6698526 0.880825 -1 0.6698526 0.880825 -0 0.6925839 0.880825 -0.1939468 0.6925839 0.880825 -0.2773041 0.6925839 0.880825 -0.3384659 0.6925839 0.880825 -0.3885728 0.6925839 0.880825 -0.4317928 0.6925839 0.880825 -0.470214 0.6925839 0.880825 -0.5050551 0.6925839 0.880825 -0.5370987 0.6925839 0.880825 -0.5668815 0.6925839 0.880825 -0.5947903 0.6925839 0.880825 -0.6211144 0.6925839 0.880825 -0.6460766 0.6925839 0.880825 -0.6698526 0.6925839 0.880825 -0.6925839 0.6925839 0.880825 -0.7143866 0.6925839 0.880825 -0.7353569 0.6925839 0.880825 -0.7555758 0.6925839 0.880825 -0.7751122 0.6925839 0.880825 -0.7940252 0.6925839 0.880825 -0.8123661 0.6925839 0.880825 -0.8301795 0.6925839 0.880825 -0.8475045 0.6925839 0.880825 -0.8643761 0.6925839 0.880825 -0.880825 0.6925839 0.880825 -0.8968787 0.6925839 0.880825 -0.9125621 0.6925839 0.880825 -0.9278974 0.6925839 0.880825 -0.9429048 0.6925839 0.880825 -0.9576028 0.6925839 0.880825 -0.9720079 0.6925839 0.880825 -0.9861357 0.6925839 0.880825 -1 0.6925839 0.880825 -0 0.7143866 0.880825 -0.1939468 0.7143866 0.880825 -0.2773041 0.7143866 0.880825 -0.3384659 0.7143866 0.880825 -0.3885728 0.7143866 0.880825 -0.4317928 0.7143866 0.880825 -0.470214 0.7143866 0.880825 -0.5050551 0.7143866 0.880825 -0.5370987 0.7143866 0.880825 -0.5668815 0.7143866 0.880825 -0.5947903 0.7143866 0.880825 -0.6211144 0.7143866 0.880825 -0.6460766 0.7143866 0.880825 -0.6698526 0.7143866 0.880825 -0.6925839 0.7143866 0.880825 -0.7143866 0.7143866 0.880825 -0.7353569 0.7143866 0.880825 -0.7555758 0.7143866 0.880825 -0.7751122 0.7143866 0.880825 -0.7940252 0.7143866 0.880825 -0.8123661 0.7143866 0.880825 -0.8301795 0.7143866 0.880825 -0.8475045 0.7143866 0.880825 -0.8643761 0.7143866 0.880825 -0.880825 0.7143866 0.880825 -0.8968787 0.7143866 0.880825 -0.9125621 0.7143866 0.880825 -0.9278974 0.7143866 0.880825 -0.9429048 0.7143866 0.880825 -0.9576028 0.7143866 0.880825 -0.9720079 0.7143866 0.880825 -0.9861357 0.7143866 0.880825 -1 0.7143866 0.880825 -0 0.7353569 0.880825 -0.1939468 0.7353569 0.880825 -0.2773041 0.7353569 0.880825 -0.3384659 0.7353569 0.880825 -0.3885728 0.7353569 0.880825 -0.4317928 0.7353569 0.880825 -0.470214 0.7353569 0.880825 -0.5050551 0.7353569 0.880825 -0.5370987 0.7353569 0.880825 -0.5668815 0.7353569 0.880825 -0.5947903 0.7353569 0.880825 -0.6211144 0.7353569 0.880825 -0.6460766 0.7353569 0.880825 -0.6698526 0.7353569 0.880825 -0.6925839 0.7353569 0.880825 -0.7143866 0.7353569 0.880825 -0.7353569 0.7353569 0.880825 -0.7555758 0.7353569 0.880825 -0.7751122 0.7353569 0.880825 -0.7940252 0.7353569 0.880825 -0.8123661 0.7353569 0.880825 -0.8301795 0.7353569 0.880825 -0.8475045 0.7353569 0.880825 -0.8643761 0.7353569 0.880825 -0.880825 0.7353569 0.880825 -0.8968787 0.7353569 0.880825 -0.9125621 0.7353569 0.880825 -0.9278974 0.7353569 0.880825 -0.9429048 0.7353569 0.880825 -0.9576028 0.7353569 0.880825 -0.9720079 0.7353569 0.880825 -0.9861357 0.7353569 0.880825 -1 0.7353569 0.880825 -0 0.7555758 0.880825 -0.1939468 0.7555758 0.880825 -0.2773041 0.7555758 0.880825 -0.3384659 0.7555758 0.880825 -0.3885728 0.7555758 0.880825 -0.4317928 0.7555758 0.880825 -0.470214 0.7555758 0.880825 -0.5050551 0.7555758 0.880825 -0.5370987 0.7555758 0.880825 -0.5668815 0.7555758 0.880825 -0.5947903 0.7555758 0.880825 -0.6211144 0.7555758 0.880825 -0.6460766 0.7555758 0.880825 -0.6698526 0.7555758 0.880825 -0.6925839 0.7555758 0.880825 -0.7143866 0.7555758 0.880825 -0.7353569 0.7555758 0.880825 -0.7555758 0.7555758 0.880825 -0.7751122 0.7555758 0.880825 -0.7940252 0.7555758 0.880825 -0.8123661 0.7555758 0.880825 -0.8301795 0.7555758 0.880825 -0.8475045 0.7555758 0.880825 -0.8643761 0.7555758 0.880825 -0.880825 0.7555758 0.880825 -0.8968787 0.7555758 0.880825 -0.9125621 0.7555758 0.880825 -0.9278974 0.7555758 0.880825 -0.9429048 0.7555758 0.880825 -0.9576028 0.7555758 0.880825 -0.9720079 0.7555758 0.880825 -0.9861357 0.7555758 0.880825 -1 0.7555758 0.880825 -0 0.7751122 0.880825 -0.1939468 0.7751122 0.880825 -0.2773041 0.7751122 0.880825 -0.3384659 0.7751122 0.880825 -0.3885728 0.7751122 0.880825 -0.4317928 0.7751122 0.880825 -0.470214 0.7751122 0.880825 -0.5050551 0.7751122 0.880825 -0.5370987 0.7751122 0.880825 -0.5668815 0.7751122 0.880825 -0.5947903 0.7751122 0.880825 -0.6211144 0.7751122 0.880825 -0.6460766 0.7751122 0.880825 -0.6698526 0.7751122 0.880825 -0.6925839 0.7751122 0.880825 -0.7143866 0.7751122 0.880825 -0.7353569 0.7751122 0.880825 -0.7555758 0.7751122 0.880825 -0.7751122 0.7751122 0.880825 -0.7940252 0.7751122 0.880825 -0.8123661 0.7751122 0.880825 -0.8301795 0.7751122 0.880825 -0.8475045 0.7751122 0.880825 -0.8643761 0.7751122 0.880825 -0.880825 0.7751122 0.880825 -0.8968787 0.7751122 0.880825 -0.9125621 0.7751122 0.880825 -0.9278974 0.7751122 0.880825 -0.9429048 0.7751122 0.880825 -0.9576028 0.7751122 0.880825 -0.9720079 0.7751122 0.880825 -0.9861357 0.7751122 0.880825 -1 0.7751122 0.880825 -0 0.7940252 0.880825 -0.1939468 0.7940252 0.880825 -0.2773041 0.7940252 0.880825 -0.3384659 0.7940252 0.880825 -0.3885728 0.7940252 0.880825 -0.4317928 0.7940252 0.880825 -0.470214 0.7940252 0.880825 -0.5050551 0.7940252 0.880825 -0.5370987 0.7940252 0.880825 -0.5668815 0.7940252 0.880825 -0.5947903 0.7940252 0.880825 -0.6211144 0.7940252 0.880825 -0.6460766 0.7940252 0.880825 -0.6698526 0.7940252 0.880825 -0.6925839 0.7940252 0.880825 -0.7143866 0.7940252 0.880825 -0.7353569 0.7940252 0.880825 -0.7555758 0.7940252 0.880825 -0.7751122 0.7940252 0.880825 -0.7940252 0.7940252 0.880825 -0.8123661 0.7940252 0.880825 -0.8301795 0.7940252 0.880825 -0.8475045 0.7940252 0.880825 -0.8643761 0.7940252 0.880825 -0.880825 0.7940252 0.880825 -0.8968787 0.7940252 0.880825 -0.9125621 0.7940252 0.880825 -0.9278974 0.7940252 0.880825 -0.9429048 0.7940252 0.880825 -0.9576028 0.7940252 0.880825 -0.9720079 0.7940252 0.880825 -0.9861357 0.7940252 0.880825 -1 0.7940252 0.880825 -0 0.8123661 0.880825 -0.1939468 0.8123661 0.880825 -0.2773041 0.8123661 0.880825 -0.3384659 0.8123661 0.880825 -0.3885728 0.8123661 0.880825 -0.4317928 0.8123661 0.880825 -0.470214 0.8123661 0.880825 -0.5050551 0.8123661 0.880825 -0.5370987 0.8123661 0.880825 -0.5668815 0.8123661 0.880825 -0.5947903 0.8123661 0.880825 -0.6211144 0.8123661 0.880825 -0.6460766 0.8123661 0.880825 -0.6698526 0.8123661 0.880825 -0.6925839 0.8123661 0.880825 -0.7143866 0.8123661 0.880825 -0.7353569 0.8123661 0.880825 -0.7555758 0.8123661 0.880825 -0.7751122 0.8123661 0.880825 -0.7940252 0.8123661 0.880825 -0.8123661 0.8123661 0.880825 -0.8301795 0.8123661 0.880825 -0.8475045 0.8123661 0.880825 -0.8643761 0.8123661 0.880825 -0.880825 0.8123661 0.880825 -0.8968787 0.8123661 0.880825 -0.9125621 0.8123661 0.880825 -0.9278974 0.8123661 0.880825 -0.9429048 0.8123661 0.880825 -0.9576028 0.8123661 0.880825 -0.9720079 0.8123661 0.880825 -0.9861357 0.8123661 0.880825 -1 0.8123661 0.880825 -0 0.8301795 0.880825 -0.1939468 0.8301795 0.880825 -0.2773041 0.8301795 0.880825 -0.3384659 0.8301795 0.880825 -0.3885728 0.8301795 0.880825 -0.4317928 0.8301795 0.880825 -0.470214 0.8301795 0.880825 -0.5050551 0.8301795 0.880825 -0.5370987 0.8301795 0.880825 -0.5668815 0.8301795 0.880825 -0.5947903 0.8301795 0.880825 -0.6211144 0.8301795 0.880825 -0.6460766 0.8301795 0.880825 -0.6698526 0.8301795 0.880825 -0.6925839 0.8301795 0.880825 -0.7143866 0.8301795 0.880825 -0.7353569 0.8301795 0.880825 -0.7555758 0.8301795 0.880825 -0.7751122 0.8301795 0.880825 -0.7940252 0.8301795 0.880825 -0.8123661 0.8301795 0.880825 -0.8301795 0.8301795 0.880825 -0.8475045 0.8301795 0.880825 -0.8643761 0.8301795 0.880825 -0.880825 0.8301795 0.880825 -0.8968787 0.8301795 0.880825 -0.9125621 0.8301795 0.880825 -0.9278974 0.8301795 0.880825 -0.9429048 0.8301795 0.880825 -0.9576028 0.8301795 0.880825 -0.9720079 0.8301795 0.880825 -0.9861357 0.8301795 0.880825 -1 0.8301795 0.880825 -0 0.8475045 0.880825 -0.1939468 0.8475045 0.880825 -0.2773041 0.8475045 0.880825 -0.3384659 0.8475045 0.880825 -0.3885728 0.8475045 0.880825 -0.4317928 0.8475045 0.880825 -0.470214 0.8475045 0.880825 -0.5050551 0.8475045 0.880825 -0.5370987 0.8475045 0.880825 -0.5668815 0.8475045 0.880825 -0.5947903 0.8475045 0.880825 -0.6211144 0.8475045 0.880825 -0.6460766 0.8475045 0.880825 -0.6698526 0.8475045 0.880825 -0.6925839 0.8475045 0.880825 -0.7143866 0.8475045 0.880825 -0.7353569 0.8475045 0.880825 -0.7555758 0.8475045 0.880825 -0.7751122 0.8475045 0.880825 -0.7940252 0.8475045 0.880825 -0.8123661 0.8475045 0.880825 -0.8301795 0.8475045 0.880825 -0.8475045 0.8475045 0.880825 -0.8643761 0.8475045 0.880825 -0.880825 0.8475045 0.880825 -0.8968787 0.8475045 0.880825 -0.9125621 0.8475045 0.880825 -0.9278974 0.8475045 0.880825 -0.9429048 0.8475045 0.880825 -0.9576028 0.8475045 0.880825 -0.9720079 0.8475045 0.880825 -0.9861357 0.8475045 0.880825 -1 0.8475045 0.880825 -0 0.8643761 0.880825 -0.1939468 0.8643761 0.880825 -0.2773041 0.8643761 0.880825 -0.3384659 0.8643761 0.880825 -0.3885728 0.8643761 0.880825 -0.4317928 0.8643761 0.880825 -0.470214 0.8643761 0.880825 -0.5050551 0.8643761 0.880825 -0.5370987 0.8643761 0.880825 -0.5668815 0.8643761 0.880825 -0.5947903 0.8643761 0.880825 -0.6211144 0.8643761 0.880825 -0.6460766 0.8643761 0.880825 -0.6698526 0.8643761 0.880825 -0.6925839 0.8643761 0.880825 -0.7143866 0.8643761 0.880825 -0.7353569 0.8643761 0.880825 -0.7555758 0.8643761 0.880825 -0.7751122 0.8643761 0.880825 -0.7940252 0.8643761 0.880825 -0.8123661 0.8643761 0.880825 -0.8301795 0.8643761 0.880825 -0.8475045 0.8643761 0.880825 -0.8643761 0.8643761 0.880825 -0.880825 0.8643761 0.880825 -0.8968787 0.8643761 0.880825 -0.9125621 0.8643761 0.880825 -0.9278974 0.8643761 0.880825 -0.9429048 0.8643761 0.880825 -0.9576028 0.8643761 0.880825 -0.9720079 0.8643761 0.880825 -0.9861357 0.8643761 0.880825 -1 0.8643761 0.880825 -0 0.880825 0.880825 -0.1939468 0.880825 0.880825 -0.2773041 0.880825 0.880825 -0.3384659 0.880825 0.880825 -0.3885728 0.880825 0.880825 -0.4317928 0.880825 0.880825 -0.470214 0.880825 0.880825 -0.5050551 0.880825 0.880825 -0.5370987 0.880825 0.880825 -0.5668815 0.880825 0.880825 -0.5947903 0.880825 0.880825 -0.6211144 0.880825 0.880825 -0.6460766 0.880825 0.880825 -0.6698526 0.880825 0.880825 -0.6925839 0.880825 0.880825 -0.7143866 0.880825 0.880825 -0.7353569 0.880825 0.880825 -0.7555758 0.880825 0.880825 -0.7751122 0.880825 0.880825 -0.7940252 0.880825 0.880825 -0.8123661 0.880825 0.880825 -0.8301795 0.880825 0.880825 -0.8475045 0.880825 0.880825 -0.8643761 0.880825 0.880825 -0.880825 0.880825 0.880825 -0.8968787 0.880825 0.880825 -0.9125621 0.880825 0.880825 -0.9278974 0.880825 0.880825 -0.9429048 0.880825 0.880825 -0.9576028 0.880825 0.880825 -0.9720079 0.880825 0.880825 -0.9861357 0.880825 0.880825 -1 0.880825 0.880825 -0 0.8968787 0.880825 -0.1939468 0.8968787 0.880825 -0.2773041 0.8968787 0.880825 -0.3384659 0.8968787 0.880825 -0.3885728 0.8968787 0.880825 -0.4317928 0.8968787 0.880825 -0.470214 0.8968787 0.880825 -0.5050551 0.8968787 0.880825 -0.5370987 0.8968787 0.880825 -0.5668815 0.8968787 0.880825 -0.5947903 0.8968787 0.880825 -0.6211144 0.8968787 0.880825 -0.6460766 0.8968787 0.880825 -0.6698526 0.8968787 0.880825 -0.6925839 0.8968787 0.880825 -0.7143866 0.8968787 0.880825 -0.7353569 0.8968787 0.880825 -0.7555758 0.8968787 0.880825 -0.7751122 0.8968787 0.880825 -0.7940252 0.8968787 0.880825 -0.8123661 0.8968787 0.880825 -0.8301795 0.8968787 0.880825 -0.8475045 0.8968787 0.880825 -0.8643761 0.8968787 0.880825 -0.880825 0.8968787 0.880825 -0.8968787 0.8968787 0.880825 -0.9125621 0.8968787 0.880825 -0.9278974 0.8968787 0.880825 -0.9429048 0.8968787 0.880825 -0.9576028 0.8968787 0.880825 -0.9720079 0.8968787 0.880825 -0.9861357 0.8968787 0.880825 -1 0.8968787 0.880825 -0 0.9125621 0.880825 -0.1939468 0.9125621 0.880825 -0.2773041 0.9125621 0.880825 -0.3384659 0.9125621 0.880825 -0.3885728 0.9125621 0.880825 -0.4317928 0.9125621 0.880825 -0.470214 0.9125621 0.880825 -0.5050551 0.9125621 0.880825 -0.5370987 0.9125621 0.880825 -0.5668815 0.9125621 0.880825 -0.5947903 0.9125621 0.880825 -0.6211144 0.9125621 0.880825 -0.6460766 0.9125621 0.880825 -0.6698526 0.9125621 0.880825 -0.6925839 0.9125621 0.880825 -0.7143866 0.9125621 0.880825 -0.7353569 0.9125621 0.880825 -0.7555758 0.9125621 0.880825 -0.7751122 0.9125621 0.880825 -0.7940252 0.9125621 0.880825 -0.8123661 0.9125621 0.880825 -0.8301795 0.9125621 0.880825 -0.8475045 0.9125621 0.880825 -0.8643761 0.9125621 0.880825 -0.880825 0.9125621 0.880825 -0.8968787 0.9125621 0.880825 -0.9125621 0.9125621 0.880825 -0.9278974 0.9125621 0.880825 -0.9429048 0.9125621 0.880825 -0.9576028 0.9125621 0.880825 -0.9720079 0.9125621 0.880825 -0.9861357 0.9125621 0.880825 -1 0.9125621 0.880825 -0 0.9278974 0.880825 -0.1939468 0.9278974 0.880825 -0.2773041 0.9278974 0.880825 -0.3384659 0.9278974 0.880825 -0.3885728 0.9278974 0.880825 -0.4317928 0.9278974 0.880825 -0.470214 0.9278974 0.880825 -0.5050551 0.9278974 0.880825 -0.5370987 0.9278974 0.880825 -0.5668815 0.9278974 0.880825 -0.5947903 0.9278974 0.880825 -0.6211144 0.9278974 0.880825 -0.6460766 0.9278974 0.880825 -0.6698526 0.9278974 0.880825 -0.6925839 0.9278974 0.880825 -0.7143866 0.9278974 0.880825 -0.7353569 0.9278974 0.880825 -0.7555758 0.9278974 0.880825 -0.7751122 0.9278974 0.880825 -0.7940252 0.9278974 0.880825 -0.8123661 0.9278974 0.880825 -0.8301795 0.9278974 0.880825 -0.8475045 0.9278974 0.880825 -0.8643761 0.9278974 0.880825 -0.880825 0.9278974 0.880825 -0.8968787 0.9278974 0.880825 -0.9125621 0.9278974 0.880825 -0.9278974 0.9278974 0.880825 -0.9429048 0.9278974 0.880825 -0.9576028 0.9278974 0.880825 -0.9720079 0.9278974 0.880825 -0.9861357 0.9278974 0.880825 -1 0.9278974 0.880825 -0 0.9429048 0.880825 -0.1939468 0.9429048 0.880825 -0.2773041 0.9429048 0.880825 -0.3384659 0.9429048 0.880825 -0.3885728 0.9429048 0.880825 -0.4317928 0.9429048 0.880825 -0.470214 0.9429048 0.880825 -0.5050551 0.9429048 0.880825 -0.5370987 0.9429048 0.880825 -0.5668815 0.9429048 0.880825 -0.5947903 0.9429048 0.880825 -0.6211144 0.9429048 0.880825 -0.6460766 0.9429048 0.880825 -0.6698526 0.9429048 0.880825 -0.6925839 0.9429048 0.880825 -0.7143866 0.9429048 0.880825 -0.7353569 0.9429048 0.880825 -0.7555758 0.9429048 0.880825 -0.7751122 0.9429048 0.880825 -0.7940252 0.9429048 0.880825 -0.8123661 0.9429048 0.880825 -0.8301795 0.9429048 0.880825 -0.8475045 0.9429048 0.880825 -0.8643761 0.9429048 0.880825 -0.880825 0.9429048 0.880825 -0.8968787 0.9429048 0.880825 -0.9125621 0.9429048 0.880825 -0.9278974 0.9429048 0.880825 -0.9429048 0.9429048 0.880825 -0.9576028 0.9429048 0.880825 -0.9720079 0.9429048 0.880825 -0.9861357 0.9429048 0.880825 -1 0.9429048 0.880825 -0 0.9576028 0.880825 -0.1939468 0.9576028 0.880825 -0.2773041 0.9576028 0.880825 -0.3384659 0.9576028 0.880825 -0.3885728 0.9576028 0.880825 -0.4317928 0.9576028 0.880825 -0.470214 0.9576028 0.880825 -0.5050551 0.9576028 0.880825 -0.5370987 0.9576028 0.880825 -0.5668815 0.9576028 0.880825 -0.5947903 0.9576028 0.880825 -0.6211144 0.9576028 0.880825 -0.6460766 0.9576028 0.880825 -0.6698526 0.9576028 0.880825 -0.6925839 0.9576028 0.880825 -0.7143866 0.9576028 0.880825 -0.7353569 0.9576028 0.880825 -0.7555758 0.9576028 0.880825 -0.7751122 0.9576028 0.880825 -0.7940252 0.9576028 0.880825 -0.8123661 0.9576028 0.880825 -0.8301795 0.9576028 0.880825 -0.8475045 0.9576028 0.880825 -0.8643761 0.9576028 0.880825 -0.880825 0.9576028 0.880825 -0.8968787 0.9576028 0.880825 -0.9125621 0.9576028 0.880825 -0.9278974 0.9576028 0.880825 -0.9429048 0.9576028 0.880825 -0.9576028 0.9576028 0.880825 -0.9720079 0.9576028 0.880825 -0.9861357 0.9576028 0.880825 -1 0.9576028 0.880825 -0 0.9720079 0.880825 -0.1939468 0.9720079 0.880825 -0.2773041 0.9720079 0.880825 -0.3384659 0.9720079 0.880825 -0.3885728 0.9720079 0.880825 -0.4317928 0.9720079 0.880825 -0.470214 0.9720079 0.880825 -0.5050551 0.9720079 0.880825 -0.5370987 0.9720079 0.880825 -0.5668815 0.9720079 0.880825 -0.5947903 0.9720079 0.880825 -0.6211144 0.9720079 0.880825 -0.6460766 0.9720079 0.880825 -0.6698526 0.9720079 0.880825 -0.6925839 0.9720079 0.880825 -0.7143866 0.9720079 0.880825 -0.7353569 0.9720079 0.880825 -0.7555758 0.9720079 0.880825 -0.7751122 0.9720079 0.880825 -0.7940252 0.9720079 0.880825 -0.8123661 0.9720079 0.880825 -0.8301795 0.9720079 0.880825 -0.8475045 0.9720079 0.880825 -0.8643761 0.9720079 0.880825 -0.880825 0.9720079 0.880825 -0.8968787 0.9720079 0.880825 -0.9125621 0.9720079 0.880825 -0.9278974 0.9720079 0.880825 -0.9429048 0.9720079 0.880825 -0.9576028 0.9720079 0.880825 -0.9720079 0.9720079 0.880825 -0.9861357 0.9720079 0.880825 -1 0.9720079 0.880825 -0 0.9861357 0.880825 -0.1939468 0.9861357 0.880825 -0.2773041 0.9861357 0.880825 -0.3384659 0.9861357 0.880825 -0.3885728 0.9861357 0.880825 -0.4317928 0.9861357 0.880825 -0.470214 0.9861357 0.880825 -0.5050551 0.9861357 0.880825 -0.5370987 0.9861357 0.880825 -0.5668815 0.9861357 0.880825 -0.5947903 0.9861357 0.880825 -0.6211144 0.9861357 0.880825 -0.6460766 0.9861357 0.880825 -0.6698526 0.9861357 0.880825 -0.6925839 0.9861357 0.880825 -0.7143866 0.9861357 0.880825 -0.7353569 0.9861357 0.880825 -0.7555758 0.9861357 0.880825 -0.7751122 0.9861357 0.880825 -0.7940252 0.9861357 0.880825 -0.8123661 0.9861357 0.880825 -0.8301795 0.9861357 0.880825 -0.8475045 0.9861357 0.880825 -0.8643761 0.9861357 0.880825 -0.880825 0.9861357 0.880825 -0.8968787 0.9861357 0.880825 -0.9125621 0.9861357 0.880825 -0.9278974 0.9861357 0.880825 -0.9429048 0.9861357 0.880825 -0.9576028 0.9861357 0.880825 -0.9720079 0.9861357 0.880825 -0.9861357 0.9861357 0.880825 -1 0.9861357 0.880825 -0 1 0.880825 -0.1939468 1 0.880825 -0.2773041 1 0.880825 -0.3384659 1 0.880825 -0.3885728 1 0.880825 -0.4317928 1 0.880825 -0.470214 1 0.880825 -0.5050551 1 0.880825 -0.5370987 1 0.880825 -0.5668815 1 0.880825 -0.5947903 1 0.880825 -0.6211144 1 0.880825 -0.6460766 1 0.880825 -0.6698526 1 0.880825 -0.6925839 1 0.880825 -0.7143866 1 0.880825 -0.7353569 1 0.880825 -0.7555758 1 0.880825 -0.7751122 1 0.880825 -0.7940252 1 0.880825 -0.8123661 1 0.880825 -0.8301795 1 0.880825 -0.8475045 1 0.880825 -0.8643761 1 0.880825 -0.880825 1 0.880825 -0.8968787 1 0.880825 -0.9125621 1 0.880825 -0.9278974 1 0.880825 -0.9429048 1 0.880825 -0.9576028 1 0.880825 -0.9720079 1 0.880825 -0.9861357 1 0.880825 -1 1 0.880825 -0 0 0.8968787 -0.1939468 0 0.8968787 -0.2773041 0 0.8968787 -0.3384659 0 0.8968787 -0.3885728 0 0.8968787 -0.4317928 0 0.8968787 -0.470214 0 0.8968787 -0.5050551 0 0.8968787 -0.5370987 0 0.8968787 -0.5668815 0 0.8968787 -0.5947903 0 0.8968787 -0.6211144 0 0.8968787 -0.6460766 0 0.8968787 -0.6698526 0 0.8968787 -0.6925839 0 0.8968787 -0.7143866 0 0.8968787 -0.7353569 0 0.8968787 -0.7555758 0 0.8968787 -0.7751122 0 0.8968787 -0.7940252 0 0.8968787 -0.8123661 0 0.8968787 -0.8301795 0 0.8968787 -0.8475045 0 0.8968787 -0.8643761 0 0.8968787 -0.880825 0 0.8968787 -0.8968787 0 0.8968787 -0.9125621 0 0.8968787 -0.9278974 0 0.8968787 -0.9429048 0 0.8968787 -0.9576028 0 0.8968787 -0.9720079 0 0.8968787 -0.9861357 0 0.8968787 -1 0 0.8968787 -0 0.1939468 0.8968787 -0.1939468 0.1939468 0.8968787 -0.2773041 0.1939468 0.8968787 -0.3384659 0.1939468 0.8968787 -0.3885728 0.1939468 0.8968787 -0.4317928 0.1939468 0.8968787 -0.470214 0.1939468 0.8968787 -0.5050551 0.1939468 0.8968787 -0.5370987 0.1939468 0.8968787 -0.5668815 0.1939468 0.8968787 -0.5947903 0.1939468 0.8968787 -0.6211144 0.1939468 0.8968787 -0.6460766 0.1939468 0.8968787 -0.6698526 0.1939468 0.8968787 -0.6925839 0.1939468 0.8968787 -0.7143866 0.1939468 0.8968787 -0.7353569 0.1939468 0.8968787 -0.7555758 0.1939468 0.8968787 -0.7751122 0.1939468 0.8968787 -0.7940252 0.1939468 0.8968787 -0.8123661 0.1939468 0.8968787 -0.8301795 0.1939468 0.8968787 -0.8475045 0.1939468 0.8968787 -0.8643761 0.1939468 0.8968787 -0.880825 0.1939468 0.8968787 -0.8968787 0.1939468 0.8968787 -0.9125621 0.1939468 0.8968787 -0.9278974 0.1939468 0.8968787 -0.9429048 0.1939468 0.8968787 -0.9576028 0.1939468 0.8968787 -0.9720079 0.1939468 0.8968787 -0.9861357 0.1939468 0.8968787 -1 0.1939468 0.8968787 -0 0.2773041 0.8968787 -0.1939468 0.2773041 0.8968787 -0.2773041 0.2773041 0.8968787 -0.3384659 0.2773041 0.8968787 -0.3885728 0.2773041 0.8968787 -0.4317928 0.2773041 0.8968787 -0.470214 0.2773041 0.8968787 -0.5050551 0.2773041 0.8968787 -0.5370987 0.2773041 0.8968787 -0.5668815 0.2773041 0.8968787 -0.5947903 0.2773041 0.8968787 -0.6211144 0.2773041 0.8968787 -0.6460766 0.2773041 0.8968787 -0.6698526 0.2773041 0.8968787 -0.6925839 0.2773041 0.8968787 -0.7143866 0.2773041 0.8968787 -0.7353569 0.2773041 0.8968787 -0.7555758 0.2773041 0.8968787 -0.7751122 0.2773041 0.8968787 -0.7940252 0.2773041 0.8968787 -0.8123661 0.2773041 0.8968787 -0.8301795 0.2773041 0.8968787 -0.8475045 0.2773041 0.8968787 -0.8643761 0.2773041 0.8968787 -0.880825 0.2773041 0.8968787 -0.8968787 0.2773041 0.8968787 -0.9125621 0.2773041 0.8968787 -0.9278974 0.2773041 0.8968787 -0.9429048 0.2773041 0.8968787 -0.9576028 0.2773041 0.8968787 -0.9720079 0.2773041 0.8968787 -0.9861357 0.2773041 0.8968787 -1 0.2773041 0.8968787 -0 0.3384659 0.8968787 -0.1939468 0.3384659 0.8968787 -0.2773041 0.3384659 0.8968787 -0.3384659 0.3384659 0.8968787 -0.3885728 0.3384659 0.8968787 -0.4317928 0.3384659 0.8968787 -0.470214 0.3384659 0.8968787 -0.5050551 0.3384659 0.8968787 -0.5370987 0.3384659 0.8968787 -0.5668815 0.3384659 0.8968787 -0.5947903 0.3384659 0.8968787 -0.6211144 0.3384659 0.8968787 -0.6460766 0.3384659 0.8968787 -0.6698526 0.3384659 0.8968787 -0.6925839 0.3384659 0.8968787 -0.7143866 0.3384659 0.8968787 -0.7353569 0.3384659 0.8968787 -0.7555758 0.3384659 0.8968787 -0.7751122 0.3384659 0.8968787 -0.7940252 0.3384659 0.8968787 -0.8123661 0.3384659 0.8968787 -0.8301795 0.3384659 0.8968787 -0.8475045 0.3384659 0.8968787 -0.8643761 0.3384659 0.8968787 -0.880825 0.3384659 0.8968787 -0.8968787 0.3384659 0.8968787 -0.9125621 0.3384659 0.8968787 -0.9278974 0.3384659 0.8968787 -0.9429048 0.3384659 0.8968787 -0.9576028 0.3384659 0.8968787 -0.9720079 0.3384659 0.8968787 -0.9861357 0.3384659 0.8968787 -1 0.3384659 0.8968787 -0 0.3885728 0.8968787 -0.1939468 0.3885728 0.8968787 -0.2773041 0.3885728 0.8968787 -0.3384659 0.3885728 0.8968787 -0.3885728 0.3885728 0.8968787 -0.4317928 0.3885728 0.8968787 -0.470214 0.3885728 0.8968787 -0.5050551 0.3885728 0.8968787 -0.5370987 0.3885728 0.8968787 -0.5668815 0.3885728 0.8968787 -0.5947903 0.3885728 0.8968787 -0.6211144 0.3885728 0.8968787 -0.6460766 0.3885728 0.8968787 -0.6698526 0.3885728 0.8968787 -0.6925839 0.3885728 0.8968787 -0.7143866 0.3885728 0.8968787 -0.7353569 0.3885728 0.8968787 -0.7555758 0.3885728 0.8968787 -0.7751122 0.3885728 0.8968787 -0.7940252 0.3885728 0.8968787 -0.8123661 0.3885728 0.8968787 -0.8301795 0.3885728 0.8968787 -0.8475045 0.3885728 0.8968787 -0.8643761 0.3885728 0.8968787 -0.880825 0.3885728 0.8968787 -0.8968787 0.3885728 0.8968787 -0.9125621 0.3885728 0.8968787 -0.9278974 0.3885728 0.8968787 -0.9429048 0.3885728 0.8968787 -0.9576028 0.3885728 0.8968787 -0.9720079 0.3885728 0.8968787 -0.9861357 0.3885728 0.8968787 -1 0.3885728 0.8968787 -0 0.4317928 0.8968787 -0.1939468 0.4317928 0.8968787 -0.2773041 0.4317928 0.8968787 -0.3384659 0.4317928 0.8968787 -0.3885728 0.4317928 0.8968787 -0.4317928 0.4317928 0.8968787 -0.470214 0.4317928 0.8968787 -0.5050551 0.4317928 0.8968787 -0.5370987 0.4317928 0.8968787 -0.5668815 0.4317928 0.8968787 -0.5947903 0.4317928 0.8968787 -0.6211144 0.4317928 0.8968787 -0.6460766 0.4317928 0.8968787 -0.6698526 0.4317928 0.8968787 -0.6925839 0.4317928 0.8968787 -0.7143866 0.4317928 0.8968787 -0.7353569 0.4317928 0.8968787 -0.7555758 0.4317928 0.8968787 -0.7751122 0.4317928 0.8968787 -0.7940252 0.4317928 0.8968787 -0.8123661 0.4317928 0.8968787 -0.8301795 0.4317928 0.8968787 -0.8475045 0.4317928 0.8968787 -0.8643761 0.4317928 0.8968787 -0.880825 0.4317928 0.8968787 -0.8968787 0.4317928 0.8968787 -0.9125621 0.4317928 0.8968787 -0.9278974 0.4317928 0.8968787 -0.9429048 0.4317928 0.8968787 -0.9576028 0.4317928 0.8968787 -0.9720079 0.4317928 0.8968787 -0.9861357 0.4317928 0.8968787 -1 0.4317928 0.8968787 -0 0.470214 0.8968787 -0.1939468 0.470214 0.8968787 -0.2773041 0.470214 0.8968787 -0.3384659 0.470214 0.8968787 -0.3885728 0.470214 0.8968787 -0.4317928 0.470214 0.8968787 -0.470214 0.470214 0.8968787 -0.5050551 0.470214 0.8968787 -0.5370987 0.470214 0.8968787 -0.5668815 0.470214 0.8968787 -0.5947903 0.470214 0.8968787 -0.6211144 0.470214 0.8968787 -0.6460766 0.470214 0.8968787 -0.6698526 0.470214 0.8968787 -0.6925839 0.470214 0.8968787 -0.7143866 0.470214 0.8968787 -0.7353569 0.470214 0.8968787 -0.7555758 0.470214 0.8968787 -0.7751122 0.470214 0.8968787 -0.7940252 0.470214 0.8968787 -0.8123661 0.470214 0.8968787 -0.8301795 0.470214 0.8968787 -0.8475045 0.470214 0.8968787 -0.8643761 0.470214 0.8968787 -0.880825 0.470214 0.8968787 -0.8968787 0.470214 0.8968787 -0.9125621 0.470214 0.8968787 -0.9278974 0.470214 0.8968787 -0.9429048 0.470214 0.8968787 -0.9576028 0.470214 0.8968787 -0.9720079 0.470214 0.8968787 -0.9861357 0.470214 0.8968787 -1 0.470214 0.8968787 -0 0.5050551 0.8968787 -0.1939468 0.5050551 0.8968787 -0.2773041 0.5050551 0.8968787 -0.3384659 0.5050551 0.8968787 -0.3885728 0.5050551 0.8968787 -0.4317928 0.5050551 0.8968787 -0.470214 0.5050551 0.8968787 -0.5050551 0.5050551 0.8968787 -0.5370987 0.5050551 0.8968787 -0.5668815 0.5050551 0.8968787 -0.5947903 0.5050551 0.8968787 -0.6211144 0.5050551 0.8968787 -0.6460766 0.5050551 0.8968787 -0.6698526 0.5050551 0.8968787 -0.6925839 0.5050551 0.8968787 -0.7143866 0.5050551 0.8968787 -0.7353569 0.5050551 0.8968787 -0.7555758 0.5050551 0.8968787 -0.7751122 0.5050551 0.8968787 -0.7940252 0.5050551 0.8968787 -0.8123661 0.5050551 0.8968787 -0.8301795 0.5050551 0.8968787 -0.8475045 0.5050551 0.8968787 -0.8643761 0.5050551 0.8968787 -0.880825 0.5050551 0.8968787 -0.8968787 0.5050551 0.8968787 -0.9125621 0.5050551 0.8968787 -0.9278974 0.5050551 0.8968787 -0.9429048 0.5050551 0.8968787 -0.9576028 0.5050551 0.8968787 -0.9720079 0.5050551 0.8968787 -0.9861357 0.5050551 0.8968787 -1 0.5050551 0.8968787 -0 0.5370987 0.8968787 -0.1939468 0.5370987 0.8968787 -0.2773041 0.5370987 0.8968787 -0.3384659 0.5370987 0.8968787 -0.3885728 0.5370987 0.8968787 -0.4317928 0.5370987 0.8968787 -0.470214 0.5370987 0.8968787 -0.5050551 0.5370987 0.8968787 -0.5370987 0.5370987 0.8968787 -0.5668815 0.5370987 0.8968787 -0.5947903 0.5370987 0.8968787 -0.6211144 0.5370987 0.8968787 -0.6460766 0.5370987 0.8968787 -0.6698526 0.5370987 0.8968787 -0.6925839 0.5370987 0.8968787 -0.7143866 0.5370987 0.8968787 -0.7353569 0.5370987 0.8968787 -0.7555758 0.5370987 0.8968787 -0.7751122 0.5370987 0.8968787 -0.7940252 0.5370987 0.8968787 -0.8123661 0.5370987 0.8968787 -0.8301795 0.5370987 0.8968787 -0.8475045 0.5370987 0.8968787 -0.8643761 0.5370987 0.8968787 -0.880825 0.5370987 0.8968787 -0.8968787 0.5370987 0.8968787 -0.9125621 0.5370987 0.8968787 -0.9278974 0.5370987 0.8968787 -0.9429048 0.5370987 0.8968787 -0.9576028 0.5370987 0.8968787 -0.9720079 0.5370987 0.8968787 -0.9861357 0.5370987 0.8968787 -1 0.5370987 0.8968787 -0 0.5668815 0.8968787 -0.1939468 0.5668815 0.8968787 -0.2773041 0.5668815 0.8968787 -0.3384659 0.5668815 0.8968787 -0.3885728 0.5668815 0.8968787 -0.4317928 0.5668815 0.8968787 -0.470214 0.5668815 0.8968787 -0.5050551 0.5668815 0.8968787 -0.5370987 0.5668815 0.8968787 -0.5668815 0.5668815 0.8968787 -0.5947903 0.5668815 0.8968787 -0.6211144 0.5668815 0.8968787 -0.6460766 0.5668815 0.8968787 -0.6698526 0.5668815 0.8968787 -0.6925839 0.5668815 0.8968787 -0.7143866 0.5668815 0.8968787 -0.7353569 0.5668815 0.8968787 -0.7555758 0.5668815 0.8968787 -0.7751122 0.5668815 0.8968787 -0.7940252 0.5668815 0.8968787 -0.8123661 0.5668815 0.8968787 -0.8301795 0.5668815 0.8968787 -0.8475045 0.5668815 0.8968787 -0.8643761 0.5668815 0.8968787 -0.880825 0.5668815 0.8968787 -0.8968787 0.5668815 0.8968787 -0.9125621 0.5668815 0.8968787 -0.9278974 0.5668815 0.8968787 -0.9429048 0.5668815 0.8968787 -0.9576028 0.5668815 0.8968787 -0.9720079 0.5668815 0.8968787 -0.9861357 0.5668815 0.8968787 -1 0.5668815 0.8968787 -0 0.5947903 0.8968787 -0.1939468 0.5947903 0.8968787 -0.2773041 0.5947903 0.8968787 -0.3384659 0.5947903 0.8968787 -0.3885728 0.5947903 0.8968787 -0.4317928 0.5947903 0.8968787 -0.470214 0.5947903 0.8968787 -0.5050551 0.5947903 0.8968787 -0.5370987 0.5947903 0.8968787 -0.5668815 0.5947903 0.8968787 -0.5947903 0.5947903 0.8968787 -0.6211144 0.5947903 0.8968787 -0.6460766 0.5947903 0.8968787 -0.6698526 0.5947903 0.8968787 -0.6925839 0.5947903 0.8968787 -0.7143866 0.5947903 0.8968787 -0.7353569 0.5947903 0.8968787 -0.7555758 0.5947903 0.8968787 -0.7751122 0.5947903 0.8968787 -0.7940252 0.5947903 0.8968787 -0.8123661 0.5947903 0.8968787 -0.8301795 0.5947903 0.8968787 -0.8475045 0.5947903 0.8968787 -0.8643761 0.5947903 0.8968787 -0.880825 0.5947903 0.8968787 -0.8968787 0.5947903 0.8968787 -0.9125621 0.5947903 0.8968787 -0.9278974 0.5947903 0.8968787 -0.9429048 0.5947903 0.8968787 -0.9576028 0.5947903 0.8968787 -0.9720079 0.5947903 0.8968787 -0.9861357 0.5947903 0.8968787 -1 0.5947903 0.8968787 -0 0.6211144 0.8968787 -0.1939468 0.6211144 0.8968787 -0.2773041 0.6211144 0.8968787 -0.3384659 0.6211144 0.8968787 -0.3885728 0.6211144 0.8968787 -0.4317928 0.6211144 0.8968787 -0.470214 0.6211144 0.8968787 -0.5050551 0.6211144 0.8968787 -0.5370987 0.6211144 0.8968787 -0.5668815 0.6211144 0.8968787 -0.5947903 0.6211144 0.8968787 -0.6211144 0.6211144 0.8968787 -0.6460766 0.6211144 0.8968787 -0.6698526 0.6211144 0.8968787 -0.6925839 0.6211144 0.8968787 -0.7143866 0.6211144 0.8968787 -0.7353569 0.6211144 0.8968787 -0.7555758 0.6211144 0.8968787 -0.7751122 0.6211144 0.8968787 -0.7940252 0.6211144 0.8968787 -0.8123661 0.6211144 0.8968787 -0.8301795 0.6211144 0.8968787 -0.8475045 0.6211144 0.8968787 -0.8643761 0.6211144 0.8968787 -0.880825 0.6211144 0.8968787 -0.8968787 0.6211144 0.8968787 -0.9125621 0.6211144 0.8968787 -0.9278974 0.6211144 0.8968787 -0.9429048 0.6211144 0.8968787 -0.9576028 0.6211144 0.8968787 -0.9720079 0.6211144 0.8968787 -0.9861357 0.6211144 0.8968787 -1 0.6211144 0.8968787 -0 0.6460766 0.8968787 -0.1939468 0.6460766 0.8968787 -0.2773041 0.6460766 0.8968787 -0.3384659 0.6460766 0.8968787 -0.3885728 0.6460766 0.8968787 -0.4317928 0.6460766 0.8968787 -0.470214 0.6460766 0.8968787 -0.5050551 0.6460766 0.8968787 -0.5370987 0.6460766 0.8968787 -0.5668815 0.6460766 0.8968787 -0.5947903 0.6460766 0.8968787 -0.6211144 0.6460766 0.8968787 -0.6460766 0.6460766 0.8968787 -0.6698526 0.6460766 0.8968787 -0.6925839 0.6460766 0.8968787 -0.7143866 0.6460766 0.8968787 -0.7353569 0.6460766 0.8968787 -0.7555758 0.6460766 0.8968787 -0.7751122 0.6460766 0.8968787 -0.7940252 0.6460766 0.8968787 -0.8123661 0.6460766 0.8968787 -0.8301795 0.6460766 0.8968787 -0.8475045 0.6460766 0.8968787 -0.8643761 0.6460766 0.8968787 -0.880825 0.6460766 0.8968787 -0.8968787 0.6460766 0.8968787 -0.9125621 0.6460766 0.8968787 -0.9278974 0.6460766 0.8968787 -0.9429048 0.6460766 0.8968787 -0.9576028 0.6460766 0.8968787 -0.9720079 0.6460766 0.8968787 -0.9861357 0.6460766 0.8968787 -1 0.6460766 0.8968787 -0 0.6698526 0.8968787 -0.1939468 0.6698526 0.8968787 -0.2773041 0.6698526 0.8968787 -0.3384659 0.6698526 0.8968787 -0.3885728 0.6698526 0.8968787 -0.4317928 0.6698526 0.8968787 -0.470214 0.6698526 0.8968787 -0.5050551 0.6698526 0.8968787 -0.5370987 0.6698526 0.8968787 -0.5668815 0.6698526 0.8968787 -0.5947903 0.6698526 0.8968787 -0.6211144 0.6698526 0.8968787 -0.6460766 0.6698526 0.8968787 -0.6698526 0.6698526 0.8968787 -0.6925839 0.6698526 0.8968787 -0.7143866 0.6698526 0.8968787 -0.7353569 0.6698526 0.8968787 -0.7555758 0.6698526 0.8968787 -0.7751122 0.6698526 0.8968787 -0.7940252 0.6698526 0.8968787 -0.8123661 0.6698526 0.8968787 -0.8301795 0.6698526 0.8968787 -0.8475045 0.6698526 0.8968787 -0.8643761 0.6698526 0.8968787 -0.880825 0.6698526 0.8968787 -0.8968787 0.6698526 0.8968787 -0.9125621 0.6698526 0.8968787 -0.9278974 0.6698526 0.8968787 -0.9429048 0.6698526 0.8968787 -0.9576028 0.6698526 0.8968787 -0.9720079 0.6698526 0.8968787 -0.9861357 0.6698526 0.8968787 -1 0.6698526 0.8968787 -0 0.6925839 0.8968787 -0.1939468 0.6925839 0.8968787 -0.2773041 0.6925839 0.8968787 -0.3384659 0.6925839 0.8968787 -0.3885728 0.6925839 0.8968787 -0.4317928 0.6925839 0.8968787 -0.470214 0.6925839 0.8968787 -0.5050551 0.6925839 0.8968787 -0.5370987 0.6925839 0.8968787 -0.5668815 0.6925839 0.8968787 -0.5947903 0.6925839 0.8968787 -0.6211144 0.6925839 0.8968787 -0.6460766 0.6925839 0.8968787 -0.6698526 0.6925839 0.8968787 -0.6925839 0.6925839 0.8968787 -0.7143866 0.6925839 0.8968787 -0.7353569 0.6925839 0.8968787 -0.7555758 0.6925839 0.8968787 -0.7751122 0.6925839 0.8968787 -0.7940252 0.6925839 0.8968787 -0.8123661 0.6925839 0.8968787 -0.8301795 0.6925839 0.8968787 -0.8475045 0.6925839 0.8968787 -0.8643761 0.6925839 0.8968787 -0.880825 0.6925839 0.8968787 -0.8968787 0.6925839 0.8968787 -0.9125621 0.6925839 0.8968787 -0.9278974 0.6925839 0.8968787 -0.9429048 0.6925839 0.8968787 -0.9576028 0.6925839 0.8968787 -0.9720079 0.6925839 0.8968787 -0.9861357 0.6925839 0.8968787 -1 0.6925839 0.8968787 -0 0.7143866 0.8968787 -0.1939468 0.7143866 0.8968787 -0.2773041 0.7143866 0.8968787 -0.3384659 0.7143866 0.8968787 -0.3885728 0.7143866 0.8968787 -0.4317928 0.7143866 0.8968787 -0.470214 0.7143866 0.8968787 -0.5050551 0.7143866 0.8968787 -0.5370987 0.7143866 0.8968787 -0.5668815 0.7143866 0.8968787 -0.5947903 0.7143866 0.8968787 -0.6211144 0.7143866 0.8968787 -0.6460766 0.7143866 0.8968787 -0.6698526 0.7143866 0.8968787 -0.6925839 0.7143866 0.8968787 -0.7143866 0.7143866 0.8968787 -0.7353569 0.7143866 0.8968787 -0.7555758 0.7143866 0.8968787 -0.7751122 0.7143866 0.8968787 -0.7940252 0.7143866 0.8968787 -0.8123661 0.7143866 0.8968787 -0.8301795 0.7143866 0.8968787 -0.8475045 0.7143866 0.8968787 -0.8643761 0.7143866 0.8968787 -0.880825 0.7143866 0.8968787 -0.8968787 0.7143866 0.8968787 -0.9125621 0.7143866 0.8968787 -0.9278974 0.7143866 0.8968787 -0.9429048 0.7143866 0.8968787 -0.9576028 0.7143866 0.8968787 -0.9720079 0.7143866 0.8968787 -0.9861357 0.7143866 0.8968787 -1 0.7143866 0.8968787 -0 0.7353569 0.8968787 -0.1939468 0.7353569 0.8968787 -0.2773041 0.7353569 0.8968787 -0.3384659 0.7353569 0.8968787 -0.3885728 0.7353569 0.8968787 -0.4317928 0.7353569 0.8968787 -0.470214 0.7353569 0.8968787 -0.5050551 0.7353569 0.8968787 -0.5370987 0.7353569 0.8968787 -0.5668815 0.7353569 0.8968787 -0.5947903 0.7353569 0.8968787 -0.6211144 0.7353569 0.8968787 -0.6460766 0.7353569 0.8968787 -0.6698526 0.7353569 0.8968787 -0.6925839 0.7353569 0.8968787 -0.7143866 0.7353569 0.8968787 -0.7353569 0.7353569 0.8968787 -0.7555758 0.7353569 0.8968787 -0.7751122 0.7353569 0.8968787 -0.7940252 0.7353569 0.8968787 -0.8123661 0.7353569 0.8968787 -0.8301795 0.7353569 0.8968787 -0.8475045 0.7353569 0.8968787 -0.8643761 0.7353569 0.8968787 -0.880825 0.7353569 0.8968787 -0.8968787 0.7353569 0.8968787 -0.9125621 0.7353569 0.8968787 -0.9278974 0.7353569 0.8968787 -0.9429048 0.7353569 0.8968787 -0.9576028 0.7353569 0.8968787 -0.9720079 0.7353569 0.8968787 -0.9861357 0.7353569 0.8968787 -1 0.7353569 0.8968787 -0 0.7555758 0.8968787 -0.1939468 0.7555758 0.8968787 -0.2773041 0.7555758 0.8968787 -0.3384659 0.7555758 0.8968787 -0.3885728 0.7555758 0.8968787 -0.4317928 0.7555758 0.8968787 -0.470214 0.7555758 0.8968787 -0.5050551 0.7555758 0.8968787 -0.5370987 0.7555758 0.8968787 -0.5668815 0.7555758 0.8968787 -0.5947903 0.7555758 0.8968787 -0.6211144 0.7555758 0.8968787 -0.6460766 0.7555758 0.8968787 -0.6698526 0.7555758 0.8968787 -0.6925839 0.7555758 0.8968787 -0.7143866 0.7555758 0.8968787 -0.7353569 0.7555758 0.8968787 -0.7555758 0.7555758 0.8968787 -0.7751122 0.7555758 0.8968787 -0.7940252 0.7555758 0.8968787 -0.8123661 0.7555758 0.8968787 -0.8301795 0.7555758 0.8968787 -0.8475045 0.7555758 0.8968787 -0.8643761 0.7555758 0.8968787 -0.880825 0.7555758 0.8968787 -0.8968787 0.7555758 0.8968787 -0.9125621 0.7555758 0.8968787 -0.9278974 0.7555758 0.8968787 -0.9429048 0.7555758 0.8968787 -0.9576028 0.7555758 0.8968787 -0.9720079 0.7555758 0.8968787 -0.9861357 0.7555758 0.8968787 -1 0.7555758 0.8968787 -0 0.7751122 0.8968787 -0.1939468 0.7751122 0.8968787 -0.2773041 0.7751122 0.8968787 -0.3384659 0.7751122 0.8968787 -0.3885728 0.7751122 0.8968787 -0.4317928 0.7751122 0.8968787 -0.470214 0.7751122 0.8968787 -0.5050551 0.7751122 0.8968787 -0.5370987 0.7751122 0.8968787 -0.5668815 0.7751122 0.8968787 -0.5947903 0.7751122 0.8968787 -0.6211144 0.7751122 0.8968787 -0.6460766 0.7751122 0.8968787 -0.6698526 0.7751122 0.8968787 -0.6925839 0.7751122 0.8968787 -0.7143866 0.7751122 0.8968787 -0.7353569 0.7751122 0.8968787 -0.7555758 0.7751122 0.8968787 -0.7751122 0.7751122 0.8968787 -0.7940252 0.7751122 0.8968787 -0.8123661 0.7751122 0.8968787 -0.8301795 0.7751122 0.8968787 -0.8475045 0.7751122 0.8968787 -0.8643761 0.7751122 0.8968787 -0.880825 0.7751122 0.8968787 -0.8968787 0.7751122 0.8968787 -0.9125621 0.7751122 0.8968787 -0.9278974 0.7751122 0.8968787 -0.9429048 0.7751122 0.8968787 -0.9576028 0.7751122 0.8968787 -0.9720079 0.7751122 0.8968787 -0.9861357 0.7751122 0.8968787 -1 0.7751122 0.8968787 -0 0.7940252 0.8968787 -0.1939468 0.7940252 0.8968787 -0.2773041 0.7940252 0.8968787 -0.3384659 0.7940252 0.8968787 -0.3885728 0.7940252 0.8968787 -0.4317928 0.7940252 0.8968787 -0.470214 0.7940252 0.8968787 -0.5050551 0.7940252 0.8968787 -0.5370987 0.7940252 0.8968787 -0.5668815 0.7940252 0.8968787 -0.5947903 0.7940252 0.8968787 -0.6211144 0.7940252 0.8968787 -0.6460766 0.7940252 0.8968787 -0.6698526 0.7940252 0.8968787 -0.6925839 0.7940252 0.8968787 -0.7143866 0.7940252 0.8968787 -0.7353569 0.7940252 0.8968787 -0.7555758 0.7940252 0.8968787 -0.7751122 0.7940252 0.8968787 -0.7940252 0.7940252 0.8968787 -0.8123661 0.7940252 0.8968787 -0.8301795 0.7940252 0.8968787 -0.8475045 0.7940252 0.8968787 -0.8643761 0.7940252 0.8968787 -0.880825 0.7940252 0.8968787 -0.8968787 0.7940252 0.8968787 -0.9125621 0.7940252 0.8968787 -0.9278974 0.7940252 0.8968787 -0.9429048 0.7940252 0.8968787 -0.9576028 0.7940252 0.8968787 -0.9720079 0.7940252 0.8968787 -0.9861357 0.7940252 0.8968787 -1 0.7940252 0.8968787 -0 0.8123661 0.8968787 -0.1939468 0.8123661 0.8968787 -0.2773041 0.8123661 0.8968787 -0.3384659 0.8123661 0.8968787 -0.3885728 0.8123661 0.8968787 -0.4317928 0.8123661 0.8968787 -0.470214 0.8123661 0.8968787 -0.5050551 0.8123661 0.8968787 -0.5370987 0.8123661 0.8968787 -0.5668815 0.8123661 0.8968787 -0.5947903 0.8123661 0.8968787 -0.6211144 0.8123661 0.8968787 -0.6460766 0.8123661 0.8968787 -0.6698526 0.8123661 0.8968787 -0.6925839 0.8123661 0.8968787 -0.7143866 0.8123661 0.8968787 -0.7353569 0.8123661 0.8968787 -0.7555758 0.8123661 0.8968787 -0.7751122 0.8123661 0.8968787 -0.7940252 0.8123661 0.8968787 -0.8123661 0.8123661 0.8968787 -0.8301795 0.8123661 0.8968787 -0.8475045 0.8123661 0.8968787 -0.8643761 0.8123661 0.8968787 -0.880825 0.8123661 0.8968787 -0.8968787 0.8123661 0.8968787 -0.9125621 0.8123661 0.8968787 -0.9278974 0.8123661 0.8968787 -0.9429048 0.8123661 0.8968787 -0.9576028 0.8123661 0.8968787 -0.9720079 0.8123661 0.8968787 -0.9861357 0.8123661 0.8968787 -1 0.8123661 0.8968787 -0 0.8301795 0.8968787 -0.1939468 0.8301795 0.8968787 -0.2773041 0.8301795 0.8968787 -0.3384659 0.8301795 0.8968787 -0.3885728 0.8301795 0.8968787 -0.4317928 0.8301795 0.8968787 -0.470214 0.8301795 0.8968787 -0.5050551 0.8301795 0.8968787 -0.5370987 0.8301795 0.8968787 -0.5668815 0.8301795 0.8968787 -0.5947903 0.8301795 0.8968787 -0.6211144 0.8301795 0.8968787 -0.6460766 0.8301795 0.8968787 -0.6698526 0.8301795 0.8968787 -0.6925839 0.8301795 0.8968787 -0.7143866 0.8301795 0.8968787 -0.7353569 0.8301795 0.8968787 -0.7555758 0.8301795 0.8968787 -0.7751122 0.8301795 0.8968787 -0.7940252 0.8301795 0.8968787 -0.8123661 0.8301795 0.8968787 -0.8301795 0.8301795 0.8968787 -0.8475045 0.8301795 0.8968787 -0.8643761 0.8301795 0.8968787 -0.880825 0.8301795 0.8968787 -0.8968787 0.8301795 0.8968787 -0.9125621 0.8301795 0.8968787 -0.9278974 0.8301795 0.8968787 -0.9429048 0.8301795 0.8968787 -0.9576028 0.8301795 0.8968787 -0.9720079 0.8301795 0.8968787 -0.9861357 0.8301795 0.8968787 -1 0.8301795 0.8968787 -0 0.8475045 0.8968787 -0.1939468 0.8475045 0.8968787 -0.2773041 0.8475045 0.8968787 -0.3384659 0.8475045 0.8968787 -0.3885728 0.8475045 0.8968787 -0.4317928 0.8475045 0.8968787 -0.470214 0.8475045 0.8968787 -0.5050551 0.8475045 0.8968787 -0.5370987 0.8475045 0.8968787 -0.5668815 0.8475045 0.8968787 -0.5947903 0.8475045 0.8968787 -0.6211144 0.8475045 0.8968787 -0.6460766 0.8475045 0.8968787 -0.6698526 0.8475045 0.8968787 -0.6925839 0.8475045 0.8968787 -0.7143866 0.8475045 0.8968787 -0.7353569 0.8475045 0.8968787 -0.7555758 0.8475045 0.8968787 -0.7751122 0.8475045 0.8968787 -0.7940252 0.8475045 0.8968787 -0.8123661 0.8475045 0.8968787 -0.8301795 0.8475045 0.8968787 -0.8475045 0.8475045 0.8968787 -0.8643761 0.8475045 0.8968787 -0.880825 0.8475045 0.8968787 -0.8968787 0.8475045 0.8968787 -0.9125621 0.8475045 0.8968787 -0.9278974 0.8475045 0.8968787 -0.9429048 0.8475045 0.8968787 -0.9576028 0.8475045 0.8968787 -0.9720079 0.8475045 0.8968787 -0.9861357 0.8475045 0.8968787 -1 0.8475045 0.8968787 -0 0.8643761 0.8968787 -0.1939468 0.8643761 0.8968787 -0.2773041 0.8643761 0.8968787 -0.3384659 0.8643761 0.8968787 -0.3885728 0.8643761 0.8968787 -0.4317928 0.8643761 0.8968787 -0.470214 0.8643761 0.8968787 -0.5050551 0.8643761 0.8968787 -0.5370987 0.8643761 0.8968787 -0.5668815 0.8643761 0.8968787 -0.5947903 0.8643761 0.8968787 -0.6211144 0.8643761 0.8968787 -0.6460766 0.8643761 0.8968787 -0.6698526 0.8643761 0.8968787 -0.6925839 0.8643761 0.8968787 -0.7143866 0.8643761 0.8968787 -0.7353569 0.8643761 0.8968787 -0.7555758 0.8643761 0.8968787 -0.7751122 0.8643761 0.8968787 -0.7940252 0.8643761 0.8968787 -0.8123661 0.8643761 0.8968787 -0.8301795 0.8643761 0.8968787 -0.8475045 0.8643761 0.8968787 -0.8643761 0.8643761 0.8968787 -0.880825 0.8643761 0.8968787 -0.8968787 0.8643761 0.8968787 -0.9125621 0.8643761 0.8968787 -0.9278974 0.8643761 0.8968787 -0.9429048 0.8643761 0.8968787 -0.9576028 0.8643761 0.8968787 -0.9720079 0.8643761 0.8968787 -0.9861357 0.8643761 0.8968787 -1 0.8643761 0.8968787 -0 0.880825 0.8968787 -0.1939468 0.880825 0.8968787 -0.2773041 0.880825 0.8968787 -0.3384659 0.880825 0.8968787 -0.3885728 0.880825 0.8968787 -0.4317928 0.880825 0.8968787 -0.470214 0.880825 0.8968787 -0.5050551 0.880825 0.8968787 -0.5370987 0.880825 0.8968787 -0.5668815 0.880825 0.8968787 -0.5947903 0.880825 0.8968787 -0.6211144 0.880825 0.8968787 -0.6460766 0.880825 0.8968787 -0.6698526 0.880825 0.8968787 -0.6925839 0.880825 0.8968787 -0.7143866 0.880825 0.8968787 -0.7353569 0.880825 0.8968787 -0.7555758 0.880825 0.8968787 -0.7751122 0.880825 0.8968787 -0.7940252 0.880825 0.8968787 -0.8123661 0.880825 0.8968787 -0.8301795 0.880825 0.8968787 -0.8475045 0.880825 0.8968787 -0.8643761 0.880825 0.8968787 -0.880825 0.880825 0.8968787 -0.8968787 0.880825 0.8968787 -0.9125621 0.880825 0.8968787 -0.9278974 0.880825 0.8968787 -0.9429048 0.880825 0.8968787 -0.9576028 0.880825 0.8968787 -0.9720079 0.880825 0.8968787 -0.9861357 0.880825 0.8968787 -1 0.880825 0.8968787 -0 0.8968787 0.8968787 -0.1939468 0.8968787 0.8968787 -0.2773041 0.8968787 0.8968787 -0.3384659 0.8968787 0.8968787 -0.3885728 0.8968787 0.8968787 -0.4317928 0.8968787 0.8968787 -0.470214 0.8968787 0.8968787 -0.5050551 0.8968787 0.8968787 -0.5370987 0.8968787 0.8968787 -0.5668815 0.8968787 0.8968787 -0.5947903 0.8968787 0.8968787 -0.6211144 0.8968787 0.8968787 -0.6460766 0.8968787 0.8968787 -0.6698526 0.8968787 0.8968787 -0.6925839 0.8968787 0.8968787 -0.7143866 0.8968787 0.8968787 -0.7353569 0.8968787 0.8968787 -0.7555758 0.8968787 0.8968787 -0.7751122 0.8968787 0.8968787 -0.7940252 0.8968787 0.8968787 -0.8123661 0.8968787 0.8968787 -0.8301795 0.8968787 0.8968787 -0.8475045 0.8968787 0.8968787 -0.8643761 0.8968787 0.8968787 -0.880825 0.8968787 0.8968787 -0.8968787 0.8968787 0.8968787 -0.9125621 0.8968787 0.8968787 -0.9278974 0.8968787 0.8968787 -0.9429048 0.8968787 0.8968787 -0.9576028 0.8968787 0.8968787 -0.9720079 0.8968787 0.8968787 -0.9861357 0.8968787 0.8968787 -1 0.8968787 0.8968787 -0 0.9125621 0.8968787 -0.1939468 0.9125621 0.8968787 -0.2773041 0.9125621 0.8968787 -0.3384659 0.9125621 0.8968787 -0.3885728 0.9125621 0.8968787 -0.4317928 0.9125621 0.8968787 -0.470214 0.9125621 0.8968787 -0.5050551 0.9125621 0.8968787 -0.5370987 0.9125621 0.8968787 -0.5668815 0.9125621 0.8968787 -0.5947903 0.9125621 0.8968787 -0.6211144 0.9125621 0.8968787 -0.6460766 0.9125621 0.8968787 -0.6698526 0.9125621 0.8968787 -0.6925839 0.9125621 0.8968787 -0.7143866 0.9125621 0.8968787 -0.7353569 0.9125621 0.8968787 -0.7555758 0.9125621 0.8968787 -0.7751122 0.9125621 0.8968787 -0.7940252 0.9125621 0.8968787 -0.8123661 0.9125621 0.8968787 -0.8301795 0.9125621 0.8968787 -0.8475045 0.9125621 0.8968787 -0.8643761 0.9125621 0.8968787 -0.880825 0.9125621 0.8968787 -0.8968787 0.9125621 0.8968787 -0.9125621 0.9125621 0.8968787 -0.9278974 0.9125621 0.8968787 -0.9429048 0.9125621 0.8968787 -0.9576028 0.9125621 0.8968787 -0.9720079 0.9125621 0.8968787 -0.9861357 0.9125621 0.8968787 -1 0.9125621 0.8968787 -0 0.9278974 0.8968787 -0.1939468 0.9278974 0.8968787 -0.2773041 0.9278974 0.8968787 -0.3384659 0.9278974 0.8968787 -0.3885728 0.9278974 0.8968787 -0.4317928 0.9278974 0.8968787 -0.470214 0.9278974 0.8968787 -0.5050551 0.9278974 0.8968787 -0.5370987 0.9278974 0.8968787 -0.5668815 0.9278974 0.8968787 -0.5947903 0.9278974 0.8968787 -0.6211144 0.9278974 0.8968787 -0.6460766 0.9278974 0.8968787 -0.6698526 0.9278974 0.8968787 -0.6925839 0.9278974 0.8968787 -0.7143866 0.9278974 0.8968787 -0.7353569 0.9278974 0.8968787 -0.7555758 0.9278974 0.8968787 -0.7751122 0.9278974 0.8968787 -0.7940252 0.9278974 0.8968787 -0.8123661 0.9278974 0.8968787 -0.8301795 0.9278974 0.8968787 -0.8475045 0.9278974 0.8968787 -0.8643761 0.9278974 0.8968787 -0.880825 0.9278974 0.8968787 -0.8968787 0.9278974 0.8968787 -0.9125621 0.9278974 0.8968787 -0.9278974 0.9278974 0.8968787 -0.9429048 0.9278974 0.8968787 -0.9576028 0.9278974 0.8968787 -0.9720079 0.9278974 0.8968787 -0.9861357 0.9278974 0.8968787 -1 0.9278974 0.8968787 -0 0.9429048 0.8968787 -0.1939468 0.9429048 0.8968787 -0.2773041 0.9429048 0.8968787 -0.3384659 0.9429048 0.8968787 -0.3885728 0.9429048 0.8968787 -0.4317928 0.9429048 0.8968787 -0.470214 0.9429048 0.8968787 -0.5050551 0.9429048 0.8968787 -0.5370987 0.9429048 0.8968787 -0.5668815 0.9429048 0.8968787 -0.5947903 0.9429048 0.8968787 -0.6211144 0.9429048 0.8968787 -0.6460766 0.9429048 0.8968787 -0.6698526 0.9429048 0.8968787 -0.6925839 0.9429048 0.8968787 -0.7143866 0.9429048 0.8968787 -0.7353569 0.9429048 0.8968787 -0.7555758 0.9429048 0.8968787 -0.7751122 0.9429048 0.8968787 -0.7940252 0.9429048 0.8968787 -0.8123661 0.9429048 0.8968787 -0.8301795 0.9429048 0.8968787 -0.8475045 0.9429048 0.8968787 -0.8643761 0.9429048 0.8968787 -0.880825 0.9429048 0.8968787 -0.8968787 0.9429048 0.8968787 -0.9125621 0.9429048 0.8968787 -0.9278974 0.9429048 0.8968787 -0.9429048 0.9429048 0.8968787 -0.9576028 0.9429048 0.8968787 -0.9720079 0.9429048 0.8968787 -0.9861357 0.9429048 0.8968787 -1 0.9429048 0.8968787 -0 0.9576028 0.8968787 -0.1939468 0.9576028 0.8968787 -0.2773041 0.9576028 0.8968787 -0.3384659 0.9576028 0.8968787 -0.3885728 0.9576028 0.8968787 -0.4317928 0.9576028 0.8968787 -0.470214 0.9576028 0.8968787 -0.5050551 0.9576028 0.8968787 -0.5370987 0.9576028 0.8968787 -0.5668815 0.9576028 0.8968787 -0.5947903 0.9576028 0.8968787 -0.6211144 0.9576028 0.8968787 -0.6460766 0.9576028 0.8968787 -0.6698526 0.9576028 0.8968787 -0.6925839 0.9576028 0.8968787 -0.7143866 0.9576028 0.8968787 -0.7353569 0.9576028 0.8968787 -0.7555758 0.9576028 0.8968787 -0.7751122 0.9576028 0.8968787 -0.7940252 0.9576028 0.8968787 -0.8123661 0.9576028 0.8968787 -0.8301795 0.9576028 0.8968787 -0.8475045 0.9576028 0.8968787 -0.8643761 0.9576028 0.8968787 -0.880825 0.9576028 0.8968787 -0.8968787 0.9576028 0.8968787 -0.9125621 0.9576028 0.8968787 -0.9278974 0.9576028 0.8968787 -0.9429048 0.9576028 0.8968787 -0.9576028 0.9576028 0.8968787 -0.9720079 0.9576028 0.8968787 -0.9861357 0.9576028 0.8968787 -1 0.9576028 0.8968787 -0 0.9720079 0.8968787 -0.1939468 0.9720079 0.8968787 -0.2773041 0.9720079 0.8968787 -0.3384659 0.9720079 0.8968787 -0.3885728 0.9720079 0.8968787 -0.4317928 0.9720079 0.8968787 -0.470214 0.9720079 0.8968787 -0.5050551 0.9720079 0.8968787 -0.5370987 0.9720079 0.8968787 -0.5668815 0.9720079 0.8968787 -0.5947903 0.9720079 0.8968787 -0.6211144 0.9720079 0.8968787 -0.6460766 0.9720079 0.8968787 -0.6698526 0.9720079 0.8968787 -0.6925839 0.9720079 0.8968787 -0.7143866 0.9720079 0.8968787 -0.7353569 0.9720079 0.8968787 -0.7555758 0.9720079 0.8968787 -0.7751122 0.9720079 0.8968787 -0.7940252 0.9720079 0.8968787 -0.8123661 0.9720079 0.8968787 -0.8301795 0.9720079 0.8968787 -0.8475045 0.9720079 0.8968787 -0.8643761 0.9720079 0.8968787 -0.880825 0.9720079 0.8968787 -0.8968787 0.9720079 0.8968787 -0.9125621 0.9720079 0.8968787 -0.9278974 0.9720079 0.8968787 -0.9429048 0.9720079 0.8968787 -0.9576028 0.9720079 0.8968787 -0.9720079 0.9720079 0.8968787 -0.9861357 0.9720079 0.8968787 -1 0.9720079 0.8968787 -0 0.9861357 0.8968787 -0.1939468 0.9861357 0.8968787 -0.2773041 0.9861357 0.8968787 -0.3384659 0.9861357 0.8968787 -0.3885728 0.9861357 0.8968787 -0.4317928 0.9861357 0.8968787 -0.470214 0.9861357 0.8968787 -0.5050551 0.9861357 0.8968787 -0.5370987 0.9861357 0.8968787 -0.5668815 0.9861357 0.8968787 -0.5947903 0.9861357 0.8968787 -0.6211144 0.9861357 0.8968787 -0.6460766 0.9861357 0.8968787 -0.6698526 0.9861357 0.8968787 -0.6925839 0.9861357 0.8968787 -0.7143866 0.9861357 0.8968787 -0.7353569 0.9861357 0.8968787 -0.7555758 0.9861357 0.8968787 -0.7751122 0.9861357 0.8968787 -0.7940252 0.9861357 0.8968787 -0.8123661 0.9861357 0.8968787 -0.8301795 0.9861357 0.8968787 -0.8475045 0.9861357 0.8968787 -0.8643761 0.9861357 0.8968787 -0.880825 0.9861357 0.8968787 -0.8968787 0.9861357 0.8968787 -0.9125621 0.9861357 0.8968787 -0.9278974 0.9861357 0.8968787 -0.9429048 0.9861357 0.8968787 -0.9576028 0.9861357 0.8968787 -0.9720079 0.9861357 0.8968787 -0.9861357 0.9861357 0.8968787 -1 0.9861357 0.8968787 -0 1 0.8968787 -0.1939468 1 0.8968787 -0.2773041 1 0.8968787 -0.3384659 1 0.8968787 -0.3885728 1 0.8968787 -0.4317928 1 0.8968787 -0.470214 1 0.8968787 -0.5050551 1 0.8968787 -0.5370987 1 0.8968787 -0.5668815 1 0.8968787 -0.5947903 1 0.8968787 -0.6211144 1 0.8968787 -0.6460766 1 0.8968787 -0.6698526 1 0.8968787 -0.6925839 1 0.8968787 -0.7143866 1 0.8968787 -0.7353569 1 0.8968787 -0.7555758 1 0.8968787 -0.7751122 1 0.8968787 -0.7940252 1 0.8968787 -0.8123661 1 0.8968787 -0.8301795 1 0.8968787 -0.8475045 1 0.8968787 -0.8643761 1 0.8968787 -0.880825 1 0.8968787 -0.8968787 1 0.8968787 -0.9125621 1 0.8968787 -0.9278974 1 0.8968787 -0.9429048 1 0.8968787 -0.9576028 1 0.8968787 -0.9720079 1 0.8968787 -0.9861357 1 0.8968787 -1 1 0.8968787 -0 0 0.9125621 -0.1939468 0 0.9125621 -0.2773041 0 0.9125621 -0.3384659 0 0.9125621 -0.3885728 0 0.9125621 -0.4317928 0 0.9125621 -0.470214 0 0.9125621 -0.5050551 0 0.9125621 -0.5370987 0 0.9125621 -0.5668815 0 0.9125621 -0.5947903 0 0.9125621 -0.6211144 0 0.9125621 -0.6460766 0 0.9125621 -0.6698526 0 0.9125621 -0.6925839 0 0.9125621 -0.7143866 0 0.9125621 -0.7353569 0 0.9125621 -0.7555758 0 0.9125621 -0.7751122 0 0.9125621 -0.7940252 0 0.9125621 -0.8123661 0 0.9125621 -0.8301795 0 0.9125621 -0.8475045 0 0.9125621 -0.8643761 0 0.9125621 -0.880825 0 0.9125621 -0.8968787 0 0.9125621 -0.9125621 0 0.9125621 -0.9278974 0 0.9125621 -0.9429048 0 0.9125621 -0.9576028 0 0.9125621 -0.9720079 0 0.9125621 -0.9861357 0 0.9125621 -1 0 0.9125621 -0 0.1939468 0.9125621 -0.1939468 0.1939468 0.9125621 -0.2773041 0.1939468 0.9125621 -0.3384659 0.1939468 0.9125621 -0.3885728 0.1939468 0.9125621 -0.4317928 0.1939468 0.9125621 -0.470214 0.1939468 0.9125621 -0.5050551 0.1939468 0.9125621 -0.5370987 0.1939468 0.9125621 -0.5668815 0.1939468 0.9125621 -0.5947903 0.1939468 0.9125621 -0.6211144 0.1939468 0.9125621 -0.6460766 0.1939468 0.9125621 -0.6698526 0.1939468 0.9125621 -0.6925839 0.1939468 0.9125621 -0.7143866 0.1939468 0.9125621 -0.7353569 0.1939468 0.9125621 -0.7555758 0.1939468 0.9125621 -0.7751122 0.1939468 0.9125621 -0.7940252 0.1939468 0.9125621 -0.8123661 0.1939468 0.9125621 -0.8301795 0.1939468 0.9125621 -0.8475045 0.1939468 0.9125621 -0.8643761 0.1939468 0.9125621 -0.880825 0.1939468 0.9125621 -0.8968787 0.1939468 0.9125621 -0.9125621 0.1939468 0.9125621 -0.9278974 0.1939468 0.9125621 -0.9429048 0.1939468 0.9125621 -0.9576028 0.1939468 0.9125621 -0.9720079 0.1939468 0.9125621 -0.9861357 0.1939468 0.9125621 -1 0.1939468 0.9125621 -0 0.2773041 0.9125621 -0.1939468 0.2773041 0.9125621 -0.2773041 0.2773041 0.9125621 -0.3384659 0.2773041 0.9125621 -0.3885728 0.2773041 0.9125621 -0.4317928 0.2773041 0.9125621 -0.470214 0.2773041 0.9125621 -0.5050551 0.2773041 0.9125621 -0.5370987 0.2773041 0.9125621 -0.5668815 0.2773041 0.9125621 -0.5947903 0.2773041 0.9125621 -0.6211144 0.2773041 0.9125621 -0.6460766 0.2773041 0.9125621 -0.6698526 0.2773041 0.9125621 -0.6925839 0.2773041 0.9125621 -0.7143866 0.2773041 0.9125621 -0.7353569 0.2773041 0.9125621 -0.7555758 0.2773041 0.9125621 -0.7751122 0.2773041 0.9125621 -0.7940252 0.2773041 0.9125621 -0.8123661 0.2773041 0.9125621 -0.8301795 0.2773041 0.9125621 -0.8475045 0.2773041 0.9125621 -0.8643761 0.2773041 0.9125621 -0.880825 0.2773041 0.9125621 -0.8968787 0.2773041 0.9125621 -0.9125621 0.2773041 0.9125621 -0.9278974 0.2773041 0.9125621 -0.9429048 0.2773041 0.9125621 -0.9576028 0.2773041 0.9125621 -0.9720079 0.2773041 0.9125621 -0.9861357 0.2773041 0.9125621 -1 0.2773041 0.9125621 -0 0.3384659 0.9125621 -0.1939468 0.3384659 0.9125621 -0.2773041 0.3384659 0.9125621 -0.3384659 0.3384659 0.9125621 -0.3885728 0.3384659 0.9125621 -0.4317928 0.3384659 0.9125621 -0.470214 0.3384659 0.9125621 -0.5050551 0.3384659 0.9125621 -0.5370987 0.3384659 0.9125621 -0.5668815 0.3384659 0.9125621 -0.5947903 0.3384659 0.9125621 -0.6211144 0.3384659 0.9125621 -0.6460766 0.3384659 0.9125621 -0.6698526 0.3384659 0.9125621 -0.6925839 0.3384659 0.9125621 -0.7143866 0.3384659 0.9125621 -0.7353569 0.3384659 0.9125621 -0.7555758 0.3384659 0.9125621 -0.7751122 0.3384659 0.9125621 -0.7940252 0.3384659 0.9125621 -0.8123661 0.3384659 0.9125621 -0.8301795 0.3384659 0.9125621 -0.8475045 0.3384659 0.9125621 -0.8643761 0.3384659 0.9125621 -0.880825 0.3384659 0.9125621 -0.8968787 0.3384659 0.9125621 -0.9125621 0.3384659 0.9125621 -0.9278974 0.3384659 0.9125621 -0.9429048 0.3384659 0.9125621 -0.9576028 0.3384659 0.9125621 -0.9720079 0.3384659 0.9125621 -0.9861357 0.3384659 0.9125621 -1 0.3384659 0.9125621 -0 0.3885728 0.9125621 -0.1939468 0.3885728 0.9125621 -0.2773041 0.3885728 0.9125621 -0.3384659 0.3885728 0.9125621 -0.3885728 0.3885728 0.9125621 -0.4317928 0.3885728 0.9125621 -0.470214 0.3885728 0.9125621 -0.5050551 0.3885728 0.9125621 -0.5370987 0.3885728 0.9125621 -0.5668815 0.3885728 0.9125621 -0.5947903 0.3885728 0.9125621 -0.6211144 0.3885728 0.9125621 -0.6460766 0.3885728 0.9125621 -0.6698526 0.3885728 0.9125621 -0.6925839 0.3885728 0.9125621 -0.7143866 0.3885728 0.9125621 -0.7353569 0.3885728 0.9125621 -0.7555758 0.3885728 0.9125621 -0.7751122 0.3885728 0.9125621 -0.7940252 0.3885728 0.9125621 -0.8123661 0.3885728 0.9125621 -0.8301795 0.3885728 0.9125621 -0.8475045 0.3885728 0.9125621 -0.8643761 0.3885728 0.9125621 -0.880825 0.3885728 0.9125621 -0.8968787 0.3885728 0.9125621 -0.9125621 0.3885728 0.9125621 -0.9278974 0.3885728 0.9125621 -0.9429048 0.3885728 0.9125621 -0.9576028 0.3885728 0.9125621 -0.9720079 0.3885728 0.9125621 -0.9861357 0.3885728 0.9125621 -1 0.3885728 0.9125621 -0 0.4317928 0.9125621 -0.1939468 0.4317928 0.9125621 -0.2773041 0.4317928 0.9125621 -0.3384659 0.4317928 0.9125621 -0.3885728 0.4317928 0.9125621 -0.4317928 0.4317928 0.9125621 -0.470214 0.4317928 0.9125621 -0.5050551 0.4317928 0.9125621 -0.5370987 0.4317928 0.9125621 -0.5668815 0.4317928 0.9125621 -0.5947903 0.4317928 0.9125621 -0.6211144 0.4317928 0.9125621 -0.6460766 0.4317928 0.9125621 -0.6698526 0.4317928 0.9125621 -0.6925839 0.4317928 0.9125621 -0.7143866 0.4317928 0.9125621 -0.7353569 0.4317928 0.9125621 -0.7555758 0.4317928 0.9125621 -0.7751122 0.4317928 0.9125621 -0.7940252 0.4317928 0.9125621 -0.8123661 0.4317928 0.9125621 -0.8301795 0.4317928 0.9125621 -0.8475045 0.4317928 0.9125621 -0.8643761 0.4317928 0.9125621 -0.880825 0.4317928 0.9125621 -0.8968787 0.4317928 0.9125621 -0.9125621 0.4317928 0.9125621 -0.9278974 0.4317928 0.9125621 -0.9429048 0.4317928 0.9125621 -0.9576028 0.4317928 0.9125621 -0.9720079 0.4317928 0.9125621 -0.9861357 0.4317928 0.9125621 -1 0.4317928 0.9125621 -0 0.470214 0.9125621 -0.1939468 0.470214 0.9125621 -0.2773041 0.470214 0.9125621 -0.3384659 0.470214 0.9125621 -0.3885728 0.470214 0.9125621 -0.4317928 0.470214 0.9125621 -0.470214 0.470214 0.9125621 -0.5050551 0.470214 0.9125621 -0.5370987 0.470214 0.9125621 -0.5668815 0.470214 0.9125621 -0.5947903 0.470214 0.9125621 -0.6211144 0.470214 0.9125621 -0.6460766 0.470214 0.9125621 -0.6698526 0.470214 0.9125621 -0.6925839 0.470214 0.9125621 -0.7143866 0.470214 0.9125621 -0.7353569 0.470214 0.9125621 -0.7555758 0.470214 0.9125621 -0.7751122 0.470214 0.9125621 -0.7940252 0.470214 0.9125621 -0.8123661 0.470214 0.9125621 -0.8301795 0.470214 0.9125621 -0.8475045 0.470214 0.9125621 -0.8643761 0.470214 0.9125621 -0.880825 0.470214 0.9125621 -0.8968787 0.470214 0.9125621 -0.9125621 0.470214 0.9125621 -0.9278974 0.470214 0.9125621 -0.9429048 0.470214 0.9125621 -0.9576028 0.470214 0.9125621 -0.9720079 0.470214 0.9125621 -0.9861357 0.470214 0.9125621 -1 0.470214 0.9125621 -0 0.5050551 0.9125621 -0.1939468 0.5050551 0.9125621 -0.2773041 0.5050551 0.9125621 -0.3384659 0.5050551 0.9125621 -0.3885728 0.5050551 0.9125621 -0.4317928 0.5050551 0.9125621 -0.470214 0.5050551 0.9125621 -0.5050551 0.5050551 0.9125621 -0.5370987 0.5050551 0.9125621 -0.5668815 0.5050551 0.9125621 -0.5947903 0.5050551 0.9125621 -0.6211144 0.5050551 0.9125621 -0.6460766 0.5050551 0.9125621 -0.6698526 0.5050551 0.9125621 -0.6925839 0.5050551 0.9125621 -0.7143866 0.5050551 0.9125621 -0.7353569 0.5050551 0.9125621 -0.7555758 0.5050551 0.9125621 -0.7751122 0.5050551 0.9125621 -0.7940252 0.5050551 0.9125621 -0.8123661 0.5050551 0.9125621 -0.8301795 0.5050551 0.9125621 -0.8475045 0.5050551 0.9125621 -0.8643761 0.5050551 0.9125621 -0.880825 0.5050551 0.9125621 -0.8968787 0.5050551 0.9125621 -0.9125621 0.5050551 0.9125621 -0.9278974 0.5050551 0.9125621 -0.9429048 0.5050551 0.9125621 -0.9576028 0.5050551 0.9125621 -0.9720079 0.5050551 0.9125621 -0.9861357 0.5050551 0.9125621 -1 0.5050551 0.9125621 -0 0.5370987 0.9125621 -0.1939468 0.5370987 0.9125621 -0.2773041 0.5370987 0.9125621 -0.3384659 0.5370987 0.9125621 -0.3885728 0.5370987 0.9125621 -0.4317928 0.5370987 0.9125621 -0.470214 0.5370987 0.9125621 -0.5050551 0.5370987 0.9125621 -0.5370987 0.5370987 0.9125621 -0.5668815 0.5370987 0.9125621 -0.5947903 0.5370987 0.9125621 -0.6211144 0.5370987 0.9125621 -0.6460766 0.5370987 0.9125621 -0.6698526 0.5370987 0.9125621 -0.6925839 0.5370987 0.9125621 -0.7143866 0.5370987 0.9125621 -0.7353569 0.5370987 0.9125621 -0.7555758 0.5370987 0.9125621 -0.7751122 0.5370987 0.9125621 -0.7940252 0.5370987 0.9125621 -0.8123661 0.5370987 0.9125621 -0.8301795 0.5370987 0.9125621 -0.8475045 0.5370987 0.9125621 -0.8643761 0.5370987 0.9125621 -0.880825 0.5370987 0.9125621 -0.8968787 0.5370987 0.9125621 -0.9125621 0.5370987 0.9125621 -0.9278974 0.5370987 0.9125621 -0.9429048 0.5370987 0.9125621 -0.9576028 0.5370987 0.9125621 -0.9720079 0.5370987 0.9125621 -0.9861357 0.5370987 0.9125621 -1 0.5370987 0.9125621 -0 0.5668815 0.9125621 -0.1939468 0.5668815 0.9125621 -0.2773041 0.5668815 0.9125621 -0.3384659 0.5668815 0.9125621 -0.3885728 0.5668815 0.9125621 -0.4317928 0.5668815 0.9125621 -0.470214 0.5668815 0.9125621 -0.5050551 0.5668815 0.9125621 -0.5370987 0.5668815 0.9125621 -0.5668815 0.5668815 0.9125621 -0.5947903 0.5668815 0.9125621 -0.6211144 0.5668815 0.9125621 -0.6460766 0.5668815 0.9125621 -0.6698526 0.5668815 0.9125621 -0.6925839 0.5668815 0.9125621 -0.7143866 0.5668815 0.9125621 -0.7353569 0.5668815 0.9125621 -0.7555758 0.5668815 0.9125621 -0.7751122 0.5668815 0.9125621 -0.7940252 0.5668815 0.9125621 -0.8123661 0.5668815 0.9125621 -0.8301795 0.5668815 0.9125621 -0.8475045 0.5668815 0.9125621 -0.8643761 0.5668815 0.9125621 -0.880825 0.5668815 0.9125621 -0.8968787 0.5668815 0.9125621 -0.9125621 0.5668815 0.9125621 -0.9278974 0.5668815 0.9125621 -0.9429048 0.5668815 0.9125621 -0.9576028 0.5668815 0.9125621 -0.9720079 0.5668815 0.9125621 -0.9861357 0.5668815 0.9125621 -1 0.5668815 0.9125621 -0 0.5947903 0.9125621 -0.1939468 0.5947903 0.9125621 -0.2773041 0.5947903 0.9125621 -0.3384659 0.5947903 0.9125621 -0.3885728 0.5947903 0.9125621 -0.4317928 0.5947903 0.9125621 -0.470214 0.5947903 0.9125621 -0.5050551 0.5947903 0.9125621 -0.5370987 0.5947903 0.9125621 -0.5668815 0.5947903 0.9125621 -0.5947903 0.5947903 0.9125621 -0.6211144 0.5947903 0.9125621 -0.6460766 0.5947903 0.9125621 -0.6698526 0.5947903 0.9125621 -0.6925839 0.5947903 0.9125621 -0.7143866 0.5947903 0.9125621 -0.7353569 0.5947903 0.9125621 -0.7555758 0.5947903 0.9125621 -0.7751122 0.5947903 0.9125621 -0.7940252 0.5947903 0.9125621 -0.8123661 0.5947903 0.9125621 -0.8301795 0.5947903 0.9125621 -0.8475045 0.5947903 0.9125621 -0.8643761 0.5947903 0.9125621 -0.880825 0.5947903 0.9125621 -0.8968787 0.5947903 0.9125621 -0.9125621 0.5947903 0.9125621 -0.9278974 0.5947903 0.9125621 -0.9429048 0.5947903 0.9125621 -0.9576028 0.5947903 0.9125621 -0.9720079 0.5947903 0.9125621 -0.9861357 0.5947903 0.9125621 -1 0.5947903 0.9125621 -0 0.6211144 0.9125621 -0.1939468 0.6211144 0.9125621 -0.2773041 0.6211144 0.9125621 -0.3384659 0.6211144 0.9125621 -0.3885728 0.6211144 0.9125621 -0.4317928 0.6211144 0.9125621 -0.470214 0.6211144 0.9125621 -0.5050551 0.6211144 0.9125621 -0.5370987 0.6211144 0.9125621 -0.5668815 0.6211144 0.9125621 -0.5947903 0.6211144 0.9125621 -0.6211144 0.6211144 0.9125621 -0.6460766 0.6211144 0.9125621 -0.6698526 0.6211144 0.9125621 -0.6925839 0.6211144 0.9125621 -0.7143866 0.6211144 0.9125621 -0.7353569 0.6211144 0.9125621 -0.7555758 0.6211144 0.9125621 -0.7751122 0.6211144 0.9125621 -0.7940252 0.6211144 0.9125621 -0.8123661 0.6211144 0.9125621 -0.8301795 0.6211144 0.9125621 -0.8475045 0.6211144 0.9125621 -0.8643761 0.6211144 0.9125621 -0.880825 0.6211144 0.9125621 -0.8968787 0.6211144 0.9125621 -0.9125621 0.6211144 0.9125621 -0.9278974 0.6211144 0.9125621 -0.9429048 0.6211144 0.9125621 -0.9576028 0.6211144 0.9125621 -0.9720079 0.6211144 0.9125621 -0.9861357 0.6211144 0.9125621 -1 0.6211144 0.9125621 -0 0.6460766 0.9125621 -0.1939468 0.6460766 0.9125621 -0.2773041 0.6460766 0.9125621 -0.3384659 0.6460766 0.9125621 -0.3885728 0.6460766 0.9125621 -0.4317928 0.6460766 0.9125621 -0.470214 0.6460766 0.9125621 -0.5050551 0.6460766 0.9125621 -0.5370987 0.6460766 0.9125621 -0.5668815 0.6460766 0.9125621 -0.5947903 0.6460766 0.9125621 -0.6211144 0.6460766 0.9125621 -0.6460766 0.6460766 0.9125621 -0.6698526 0.6460766 0.9125621 -0.6925839 0.6460766 0.9125621 -0.7143866 0.6460766 0.9125621 -0.7353569 0.6460766 0.9125621 -0.7555758 0.6460766 0.9125621 -0.7751122 0.6460766 0.9125621 -0.7940252 0.6460766 0.9125621 -0.8123661 0.6460766 0.9125621 -0.8301795 0.6460766 0.9125621 -0.8475045 0.6460766 0.9125621 -0.8643761 0.6460766 0.9125621 -0.880825 0.6460766 0.9125621 -0.8968787 0.6460766 0.9125621 -0.9125621 0.6460766 0.9125621 -0.9278974 0.6460766 0.9125621 -0.9429048 0.6460766 0.9125621 -0.9576028 0.6460766 0.9125621 -0.9720079 0.6460766 0.9125621 -0.9861357 0.6460766 0.9125621 -1 0.6460766 0.9125621 -0 0.6698526 0.9125621 -0.1939468 0.6698526 0.9125621 -0.2773041 0.6698526 0.9125621 -0.3384659 0.6698526 0.9125621 -0.3885728 0.6698526 0.9125621 -0.4317928 0.6698526 0.9125621 -0.470214 0.6698526 0.9125621 -0.5050551 0.6698526 0.9125621 -0.5370987 0.6698526 0.9125621 -0.5668815 0.6698526 0.9125621 -0.5947903 0.6698526 0.9125621 -0.6211144 0.6698526 0.9125621 -0.6460766 0.6698526 0.9125621 -0.6698526 0.6698526 0.9125621 -0.6925839 0.6698526 0.9125621 -0.7143866 0.6698526 0.9125621 -0.7353569 0.6698526 0.9125621 -0.7555758 0.6698526 0.9125621 -0.7751122 0.6698526 0.9125621 -0.7940252 0.6698526 0.9125621 -0.8123661 0.6698526 0.9125621 -0.8301795 0.6698526 0.9125621 -0.8475045 0.6698526 0.9125621 -0.8643761 0.6698526 0.9125621 -0.880825 0.6698526 0.9125621 -0.8968787 0.6698526 0.9125621 -0.9125621 0.6698526 0.9125621 -0.9278974 0.6698526 0.9125621 -0.9429048 0.6698526 0.9125621 -0.9576028 0.6698526 0.9125621 -0.9720079 0.6698526 0.9125621 -0.9861357 0.6698526 0.9125621 -1 0.6698526 0.9125621 -0 0.6925839 0.9125621 -0.1939468 0.6925839 0.9125621 -0.2773041 0.6925839 0.9125621 -0.3384659 0.6925839 0.9125621 -0.3885728 0.6925839 0.9125621 -0.4317928 0.6925839 0.9125621 -0.470214 0.6925839 0.9125621 -0.5050551 0.6925839 0.9125621 -0.5370987 0.6925839 0.9125621 -0.5668815 0.6925839 0.9125621 -0.5947903 0.6925839 0.9125621 -0.6211144 0.6925839 0.9125621 -0.6460766 0.6925839 0.9125621 -0.6698526 0.6925839 0.9125621 -0.6925839 0.6925839 0.9125621 -0.7143866 0.6925839 0.9125621 -0.7353569 0.6925839 0.9125621 -0.7555758 0.6925839 0.9125621 -0.7751122 0.6925839 0.9125621 -0.7940252 0.6925839 0.9125621 -0.8123661 0.6925839 0.9125621 -0.8301795 0.6925839 0.9125621 -0.8475045 0.6925839 0.9125621 -0.8643761 0.6925839 0.9125621 -0.880825 0.6925839 0.9125621 -0.8968787 0.6925839 0.9125621 -0.9125621 0.6925839 0.9125621 -0.9278974 0.6925839 0.9125621 -0.9429048 0.6925839 0.9125621 -0.9576028 0.6925839 0.9125621 -0.9720079 0.6925839 0.9125621 -0.9861357 0.6925839 0.9125621 -1 0.6925839 0.9125621 -0 0.7143866 0.9125621 -0.1939468 0.7143866 0.9125621 -0.2773041 0.7143866 0.9125621 -0.3384659 0.7143866 0.9125621 -0.3885728 0.7143866 0.9125621 -0.4317928 0.7143866 0.9125621 -0.470214 0.7143866 0.9125621 -0.5050551 0.7143866 0.9125621 -0.5370987 0.7143866 0.9125621 -0.5668815 0.7143866 0.9125621 -0.5947903 0.7143866 0.9125621 -0.6211144 0.7143866 0.9125621 -0.6460766 0.7143866 0.9125621 -0.6698526 0.7143866 0.9125621 -0.6925839 0.7143866 0.9125621 -0.7143866 0.7143866 0.9125621 -0.7353569 0.7143866 0.9125621 -0.7555758 0.7143866 0.9125621 -0.7751122 0.7143866 0.9125621 -0.7940252 0.7143866 0.9125621 -0.8123661 0.7143866 0.9125621 -0.8301795 0.7143866 0.9125621 -0.8475045 0.7143866 0.9125621 -0.8643761 0.7143866 0.9125621 -0.880825 0.7143866 0.9125621 -0.8968787 0.7143866 0.9125621 -0.9125621 0.7143866 0.9125621 -0.9278974 0.7143866 0.9125621 -0.9429048 0.7143866 0.9125621 -0.9576028 0.7143866 0.9125621 -0.9720079 0.7143866 0.9125621 -0.9861357 0.7143866 0.9125621 -1 0.7143866 0.9125621 -0 0.7353569 0.9125621 -0.1939468 0.7353569 0.9125621 -0.2773041 0.7353569 0.9125621 -0.3384659 0.7353569 0.9125621 -0.3885728 0.7353569 0.9125621 -0.4317928 0.7353569 0.9125621 -0.470214 0.7353569 0.9125621 -0.5050551 0.7353569 0.9125621 -0.5370987 0.7353569 0.9125621 -0.5668815 0.7353569 0.9125621 -0.5947903 0.7353569 0.9125621 -0.6211144 0.7353569 0.9125621 -0.6460766 0.7353569 0.9125621 -0.6698526 0.7353569 0.9125621 -0.6925839 0.7353569 0.9125621 -0.7143866 0.7353569 0.9125621 -0.7353569 0.7353569 0.9125621 -0.7555758 0.7353569 0.9125621 -0.7751122 0.7353569 0.9125621 -0.7940252 0.7353569 0.9125621 -0.8123661 0.7353569 0.9125621 -0.8301795 0.7353569 0.9125621 -0.8475045 0.7353569 0.9125621 -0.8643761 0.7353569 0.9125621 -0.880825 0.7353569 0.9125621 -0.8968787 0.7353569 0.9125621 -0.9125621 0.7353569 0.9125621 -0.9278974 0.7353569 0.9125621 -0.9429048 0.7353569 0.9125621 -0.9576028 0.7353569 0.9125621 -0.9720079 0.7353569 0.9125621 -0.9861357 0.7353569 0.9125621 -1 0.7353569 0.9125621 -0 0.7555758 0.9125621 -0.1939468 0.7555758 0.9125621 -0.2773041 0.7555758 0.9125621 -0.3384659 0.7555758 0.9125621 -0.3885728 0.7555758 0.9125621 -0.4317928 0.7555758 0.9125621 -0.470214 0.7555758 0.9125621 -0.5050551 0.7555758 0.9125621 -0.5370987 0.7555758 0.9125621 -0.5668815 0.7555758 0.9125621 -0.5947903 0.7555758 0.9125621 -0.6211144 0.7555758 0.9125621 -0.6460766 0.7555758 0.9125621 -0.6698526 0.7555758 0.9125621 -0.6925839 0.7555758 0.9125621 -0.7143866 0.7555758 0.9125621 -0.7353569 0.7555758 0.9125621 -0.7555758 0.7555758 0.9125621 -0.7751122 0.7555758 0.9125621 -0.7940252 0.7555758 0.9125621 -0.8123661 0.7555758 0.9125621 -0.8301795 0.7555758 0.9125621 -0.8475045 0.7555758 0.9125621 -0.8643761 0.7555758 0.9125621 -0.880825 0.7555758 0.9125621 -0.8968787 0.7555758 0.9125621 -0.9125621 0.7555758 0.9125621 -0.9278974 0.7555758 0.9125621 -0.9429048 0.7555758 0.9125621 -0.9576028 0.7555758 0.9125621 -0.9720079 0.7555758 0.9125621 -0.9861357 0.7555758 0.9125621 -1 0.7555758 0.9125621 -0 0.7751122 0.9125621 -0.1939468 0.7751122 0.9125621 -0.2773041 0.7751122 0.9125621 -0.3384659 0.7751122 0.9125621 -0.3885728 0.7751122 0.9125621 -0.4317928 0.7751122 0.9125621 -0.470214 0.7751122 0.9125621 -0.5050551 0.7751122 0.9125621 -0.5370987 0.7751122 0.9125621 -0.5668815 0.7751122 0.9125621 -0.5947903 0.7751122 0.9125621 -0.6211144 0.7751122 0.9125621 -0.6460766 0.7751122 0.9125621 -0.6698526 0.7751122 0.9125621 -0.6925839 0.7751122 0.9125621 -0.7143866 0.7751122 0.9125621 -0.7353569 0.7751122 0.9125621 -0.7555758 0.7751122 0.9125621 -0.7751122 0.7751122 0.9125621 -0.7940252 0.7751122 0.9125621 -0.8123661 0.7751122 0.9125621 -0.8301795 0.7751122 0.9125621 -0.8475045 0.7751122 0.9125621 -0.8643761 0.7751122 0.9125621 -0.880825 0.7751122 0.9125621 -0.8968787 0.7751122 0.9125621 -0.9125621 0.7751122 0.9125621 -0.9278974 0.7751122 0.9125621 -0.9429048 0.7751122 0.9125621 -0.9576028 0.7751122 0.9125621 -0.9720079 0.7751122 0.9125621 -0.9861357 0.7751122 0.9125621 -1 0.7751122 0.9125621 -0 0.7940252 0.9125621 -0.1939468 0.7940252 0.9125621 -0.2773041 0.7940252 0.9125621 -0.3384659 0.7940252 0.9125621 -0.3885728 0.7940252 0.9125621 -0.4317928 0.7940252 0.9125621 -0.470214 0.7940252 0.9125621 -0.5050551 0.7940252 0.9125621 -0.5370987 0.7940252 0.9125621 -0.5668815 0.7940252 0.9125621 -0.5947903 0.7940252 0.9125621 -0.6211144 0.7940252 0.9125621 -0.6460766 0.7940252 0.9125621 -0.6698526 0.7940252 0.9125621 -0.6925839 0.7940252 0.9125621 -0.7143866 0.7940252 0.9125621 -0.7353569 0.7940252 0.9125621 -0.7555758 0.7940252 0.9125621 -0.7751122 0.7940252 0.9125621 -0.7940252 0.7940252 0.9125621 -0.8123661 0.7940252 0.9125621 -0.8301795 0.7940252 0.9125621 -0.8475045 0.7940252 0.9125621 -0.8643761 0.7940252 0.9125621 -0.880825 0.7940252 0.9125621 -0.8968787 0.7940252 0.9125621 -0.9125621 0.7940252 0.9125621 -0.9278974 0.7940252 0.9125621 -0.9429048 0.7940252 0.9125621 -0.9576028 0.7940252 0.9125621 -0.9720079 0.7940252 0.9125621 -0.9861357 0.7940252 0.9125621 -1 0.7940252 0.9125621 -0 0.8123661 0.9125621 -0.1939468 0.8123661 0.9125621 -0.2773041 0.8123661 0.9125621 -0.3384659 0.8123661 0.9125621 -0.3885728 0.8123661 0.9125621 -0.4317928 0.8123661 0.9125621 -0.470214 0.8123661 0.9125621 -0.5050551 0.8123661 0.9125621 -0.5370987 0.8123661 0.9125621 -0.5668815 0.8123661 0.9125621 -0.5947903 0.8123661 0.9125621 -0.6211144 0.8123661 0.9125621 -0.6460766 0.8123661 0.9125621 -0.6698526 0.8123661 0.9125621 -0.6925839 0.8123661 0.9125621 -0.7143866 0.8123661 0.9125621 -0.7353569 0.8123661 0.9125621 -0.7555758 0.8123661 0.9125621 -0.7751122 0.8123661 0.9125621 -0.7940252 0.8123661 0.9125621 -0.8123661 0.8123661 0.9125621 -0.8301795 0.8123661 0.9125621 -0.8475045 0.8123661 0.9125621 -0.8643761 0.8123661 0.9125621 -0.880825 0.8123661 0.9125621 -0.8968787 0.8123661 0.9125621 -0.9125621 0.8123661 0.9125621 -0.9278974 0.8123661 0.9125621 -0.9429048 0.8123661 0.9125621 -0.9576028 0.8123661 0.9125621 -0.9720079 0.8123661 0.9125621 -0.9861357 0.8123661 0.9125621 -1 0.8123661 0.9125621 -0 0.8301795 0.9125621 -0.1939468 0.8301795 0.9125621 -0.2773041 0.8301795 0.9125621 -0.3384659 0.8301795 0.9125621 -0.3885728 0.8301795 0.9125621 -0.4317928 0.8301795 0.9125621 -0.470214 0.8301795 0.9125621 -0.5050551 0.8301795 0.9125621 -0.5370987 0.8301795 0.9125621 -0.5668815 0.8301795 0.9125621 -0.5947903 0.8301795 0.9125621 -0.6211144 0.8301795 0.9125621 -0.6460766 0.8301795 0.9125621 -0.6698526 0.8301795 0.9125621 -0.6925839 0.8301795 0.9125621 -0.7143866 0.8301795 0.9125621 -0.7353569 0.8301795 0.9125621 -0.7555758 0.8301795 0.9125621 -0.7751122 0.8301795 0.9125621 -0.7940252 0.8301795 0.9125621 -0.8123661 0.8301795 0.9125621 -0.8301795 0.8301795 0.9125621 -0.8475045 0.8301795 0.9125621 -0.8643761 0.8301795 0.9125621 -0.880825 0.8301795 0.9125621 -0.8968787 0.8301795 0.9125621 -0.9125621 0.8301795 0.9125621 -0.9278974 0.8301795 0.9125621 -0.9429048 0.8301795 0.9125621 -0.9576028 0.8301795 0.9125621 -0.9720079 0.8301795 0.9125621 -0.9861357 0.8301795 0.9125621 -1 0.8301795 0.9125621 -0 0.8475045 0.9125621 -0.1939468 0.8475045 0.9125621 -0.2773041 0.8475045 0.9125621 -0.3384659 0.8475045 0.9125621 -0.3885728 0.8475045 0.9125621 -0.4317928 0.8475045 0.9125621 -0.470214 0.8475045 0.9125621 -0.5050551 0.8475045 0.9125621 -0.5370987 0.8475045 0.9125621 -0.5668815 0.8475045 0.9125621 -0.5947903 0.8475045 0.9125621 -0.6211144 0.8475045 0.9125621 -0.6460766 0.8475045 0.9125621 -0.6698526 0.8475045 0.9125621 -0.6925839 0.8475045 0.9125621 -0.7143866 0.8475045 0.9125621 -0.7353569 0.8475045 0.9125621 -0.7555758 0.8475045 0.9125621 -0.7751122 0.8475045 0.9125621 -0.7940252 0.8475045 0.9125621 -0.8123661 0.8475045 0.9125621 -0.8301795 0.8475045 0.9125621 -0.8475045 0.8475045 0.9125621 -0.8643761 0.8475045 0.9125621 -0.880825 0.8475045 0.9125621 -0.8968787 0.8475045 0.9125621 -0.9125621 0.8475045 0.9125621 -0.9278974 0.8475045 0.9125621 -0.9429048 0.8475045 0.9125621 -0.9576028 0.8475045 0.9125621 -0.9720079 0.8475045 0.9125621 -0.9861357 0.8475045 0.9125621 -1 0.8475045 0.9125621 -0 0.8643761 0.9125621 -0.1939468 0.8643761 0.9125621 -0.2773041 0.8643761 0.9125621 -0.3384659 0.8643761 0.9125621 -0.3885728 0.8643761 0.9125621 -0.4317928 0.8643761 0.9125621 -0.470214 0.8643761 0.9125621 -0.5050551 0.8643761 0.9125621 -0.5370987 0.8643761 0.9125621 -0.5668815 0.8643761 0.9125621 -0.5947903 0.8643761 0.9125621 -0.6211144 0.8643761 0.9125621 -0.6460766 0.8643761 0.9125621 -0.6698526 0.8643761 0.9125621 -0.6925839 0.8643761 0.9125621 -0.7143866 0.8643761 0.9125621 -0.7353569 0.8643761 0.9125621 -0.7555758 0.8643761 0.9125621 -0.7751122 0.8643761 0.9125621 -0.7940252 0.8643761 0.9125621 -0.8123661 0.8643761 0.9125621 -0.8301795 0.8643761 0.9125621 -0.8475045 0.8643761 0.9125621 -0.8643761 0.8643761 0.9125621 -0.880825 0.8643761 0.9125621 -0.8968787 0.8643761 0.9125621 -0.9125621 0.8643761 0.9125621 -0.9278974 0.8643761 0.9125621 -0.9429048 0.8643761 0.9125621 -0.9576028 0.8643761 0.9125621 -0.9720079 0.8643761 0.9125621 -0.9861357 0.8643761 0.9125621 -1 0.8643761 0.9125621 -0 0.880825 0.9125621 -0.1939468 0.880825 0.9125621 -0.2773041 0.880825 0.9125621 -0.3384659 0.880825 0.9125621 -0.3885728 0.880825 0.9125621 -0.4317928 0.880825 0.9125621 -0.470214 0.880825 0.9125621 -0.5050551 0.880825 0.9125621 -0.5370987 0.880825 0.9125621 -0.5668815 0.880825 0.9125621 -0.5947903 0.880825 0.9125621 -0.6211144 0.880825 0.9125621 -0.6460766 0.880825 0.9125621 -0.6698526 0.880825 0.9125621 -0.6925839 0.880825 0.9125621 -0.7143866 0.880825 0.9125621 -0.7353569 0.880825 0.9125621 -0.7555758 0.880825 0.9125621 -0.7751122 0.880825 0.9125621 -0.7940252 0.880825 0.9125621 -0.8123661 0.880825 0.9125621 -0.8301795 0.880825 0.9125621 -0.8475045 0.880825 0.9125621 -0.8643761 0.880825 0.9125621 -0.880825 0.880825 0.9125621 -0.8968787 0.880825 0.9125621 -0.9125621 0.880825 0.9125621 -0.9278974 0.880825 0.9125621 -0.9429048 0.880825 0.9125621 -0.9576028 0.880825 0.9125621 -0.9720079 0.880825 0.9125621 -0.9861357 0.880825 0.9125621 -1 0.880825 0.9125621 -0 0.8968787 0.9125621 -0.1939468 0.8968787 0.9125621 -0.2773041 0.8968787 0.9125621 -0.3384659 0.8968787 0.9125621 -0.3885728 0.8968787 0.9125621 -0.4317928 0.8968787 0.9125621 -0.470214 0.8968787 0.9125621 -0.5050551 0.8968787 0.9125621 -0.5370987 0.8968787 0.9125621 -0.5668815 0.8968787 0.9125621 -0.5947903 0.8968787 0.9125621 -0.6211144 0.8968787 0.9125621 -0.6460766 0.8968787 0.9125621 -0.6698526 0.8968787 0.9125621 -0.6925839 0.8968787 0.9125621 -0.7143866 0.8968787 0.9125621 -0.7353569 0.8968787 0.9125621 -0.7555758 0.8968787 0.9125621 -0.7751122 0.8968787 0.9125621 -0.7940252 0.8968787 0.9125621 -0.8123661 0.8968787 0.9125621 -0.8301795 0.8968787 0.9125621 -0.8475045 0.8968787 0.9125621 -0.8643761 0.8968787 0.9125621 -0.880825 0.8968787 0.9125621 -0.8968787 0.8968787 0.9125621 -0.9125621 0.8968787 0.9125621 -0.9278974 0.8968787 0.9125621 -0.9429048 0.8968787 0.9125621 -0.9576028 0.8968787 0.9125621 -0.9720079 0.8968787 0.9125621 -0.9861357 0.8968787 0.9125621 -1 0.8968787 0.9125621 -0 0.9125621 0.9125621 -0.1939468 0.9125621 0.9125621 -0.2773041 0.9125621 0.9125621 -0.3384659 0.9125621 0.9125621 -0.3885728 0.9125621 0.9125621 -0.4317928 0.9125621 0.9125621 -0.470214 0.9125621 0.9125621 -0.5050551 0.9125621 0.9125621 -0.5370987 0.9125621 0.9125621 -0.5668815 0.9125621 0.9125621 -0.5947903 0.9125621 0.9125621 -0.6211144 0.9125621 0.9125621 -0.6460766 0.9125621 0.9125621 -0.6698526 0.9125621 0.9125621 -0.6925839 0.9125621 0.9125621 -0.7143866 0.9125621 0.9125621 -0.7353569 0.9125621 0.9125621 -0.7555758 0.9125621 0.9125621 -0.7751122 0.9125621 0.9125621 -0.7940252 0.9125621 0.9125621 -0.8123661 0.9125621 0.9125621 -0.8301795 0.9125621 0.9125621 -0.8475045 0.9125621 0.9125621 -0.8643761 0.9125621 0.9125621 -0.880825 0.9125621 0.9125621 -0.8968787 0.9125621 0.9125621 -0.9125621 0.9125621 0.9125621 -0.9278974 0.9125621 0.9125621 -0.9429048 0.9125621 0.9125621 -0.9576028 0.9125621 0.9125621 -0.9720079 0.9125621 0.9125621 -0.9861357 0.9125621 0.9125621 -1 0.9125621 0.9125621 -0 0.9278974 0.9125621 -0.1939468 0.9278974 0.9125621 -0.2773041 0.9278974 0.9125621 -0.3384659 0.9278974 0.9125621 -0.3885728 0.9278974 0.9125621 -0.4317928 0.9278974 0.9125621 -0.470214 0.9278974 0.9125621 -0.5050551 0.9278974 0.9125621 -0.5370987 0.9278974 0.9125621 -0.5668815 0.9278974 0.9125621 -0.5947903 0.9278974 0.9125621 -0.6211144 0.9278974 0.9125621 -0.6460766 0.9278974 0.9125621 -0.6698526 0.9278974 0.9125621 -0.6925839 0.9278974 0.9125621 -0.7143866 0.9278974 0.9125621 -0.7353569 0.9278974 0.9125621 -0.7555758 0.9278974 0.9125621 -0.7751122 0.9278974 0.9125621 -0.7940252 0.9278974 0.9125621 -0.8123661 0.9278974 0.9125621 -0.8301795 0.9278974 0.9125621 -0.8475045 0.9278974 0.9125621 -0.8643761 0.9278974 0.9125621 -0.880825 0.9278974 0.9125621 -0.8968787 0.9278974 0.9125621 -0.9125621 0.9278974 0.9125621 -0.9278974 0.9278974 0.9125621 -0.9429048 0.9278974 0.9125621 -0.9576028 0.9278974 0.9125621 -0.9720079 0.9278974 0.9125621 -0.9861357 0.9278974 0.9125621 -1 0.9278974 0.9125621 -0 0.9429048 0.9125621 -0.1939468 0.9429048 0.9125621 -0.2773041 0.9429048 0.9125621 -0.3384659 0.9429048 0.9125621 -0.3885728 0.9429048 0.9125621 -0.4317928 0.9429048 0.9125621 -0.470214 0.9429048 0.9125621 -0.5050551 0.9429048 0.9125621 -0.5370987 0.9429048 0.9125621 -0.5668815 0.9429048 0.9125621 -0.5947903 0.9429048 0.9125621 -0.6211144 0.9429048 0.9125621 -0.6460766 0.9429048 0.9125621 -0.6698526 0.9429048 0.9125621 -0.6925839 0.9429048 0.9125621 -0.7143866 0.9429048 0.9125621 -0.7353569 0.9429048 0.9125621 -0.7555758 0.9429048 0.9125621 -0.7751122 0.9429048 0.9125621 -0.7940252 0.9429048 0.9125621 -0.8123661 0.9429048 0.9125621 -0.8301795 0.9429048 0.9125621 -0.8475045 0.9429048 0.9125621 -0.8643761 0.9429048 0.9125621 -0.880825 0.9429048 0.9125621 -0.8968787 0.9429048 0.9125621 -0.9125621 0.9429048 0.9125621 -0.9278974 0.9429048 0.9125621 -0.9429048 0.9429048 0.9125621 -0.9576028 0.9429048 0.9125621 -0.9720079 0.9429048 0.9125621 -0.9861357 0.9429048 0.9125621 -1 0.9429048 0.9125621 -0 0.9576028 0.9125621 -0.1939468 0.9576028 0.9125621 -0.2773041 0.9576028 0.9125621 -0.3384659 0.9576028 0.9125621 -0.3885728 0.9576028 0.9125621 -0.4317928 0.9576028 0.9125621 -0.470214 0.9576028 0.9125621 -0.5050551 0.9576028 0.9125621 -0.5370987 0.9576028 0.9125621 -0.5668815 0.9576028 0.9125621 -0.5947903 0.9576028 0.9125621 -0.6211144 0.9576028 0.9125621 -0.6460766 0.9576028 0.9125621 -0.6698526 0.9576028 0.9125621 -0.6925839 0.9576028 0.9125621 -0.7143866 0.9576028 0.9125621 -0.7353569 0.9576028 0.9125621 -0.7555758 0.9576028 0.9125621 -0.7751122 0.9576028 0.9125621 -0.7940252 0.9576028 0.9125621 -0.8123661 0.9576028 0.9125621 -0.8301795 0.9576028 0.9125621 -0.8475045 0.9576028 0.9125621 -0.8643761 0.9576028 0.9125621 -0.880825 0.9576028 0.9125621 -0.8968787 0.9576028 0.9125621 -0.9125621 0.9576028 0.9125621 -0.9278974 0.9576028 0.9125621 -0.9429048 0.9576028 0.9125621 -0.9576028 0.9576028 0.9125621 -0.9720079 0.9576028 0.9125621 -0.9861357 0.9576028 0.9125621 -1 0.9576028 0.9125621 -0 0.9720079 0.9125621 -0.1939468 0.9720079 0.9125621 -0.2773041 0.9720079 0.9125621 -0.3384659 0.9720079 0.9125621 -0.3885728 0.9720079 0.9125621 -0.4317928 0.9720079 0.9125621 -0.470214 0.9720079 0.9125621 -0.5050551 0.9720079 0.9125621 -0.5370987 0.9720079 0.9125621 -0.5668815 0.9720079 0.9125621 -0.5947903 0.9720079 0.9125621 -0.6211144 0.9720079 0.9125621 -0.6460766 0.9720079 0.9125621 -0.6698526 0.9720079 0.9125621 -0.6925839 0.9720079 0.9125621 -0.7143866 0.9720079 0.9125621 -0.7353569 0.9720079 0.9125621 -0.7555758 0.9720079 0.9125621 -0.7751122 0.9720079 0.9125621 -0.7940252 0.9720079 0.9125621 -0.8123661 0.9720079 0.9125621 -0.8301795 0.9720079 0.9125621 -0.8475045 0.9720079 0.9125621 -0.8643761 0.9720079 0.9125621 -0.880825 0.9720079 0.9125621 -0.8968787 0.9720079 0.9125621 -0.9125621 0.9720079 0.9125621 -0.9278974 0.9720079 0.9125621 -0.9429048 0.9720079 0.9125621 -0.9576028 0.9720079 0.9125621 -0.9720079 0.9720079 0.9125621 -0.9861357 0.9720079 0.9125621 -1 0.9720079 0.9125621 -0 0.9861357 0.9125621 -0.1939468 0.9861357 0.9125621 -0.2773041 0.9861357 0.9125621 -0.3384659 0.9861357 0.9125621 -0.3885728 0.9861357 0.9125621 -0.4317928 0.9861357 0.9125621 -0.470214 0.9861357 0.9125621 -0.5050551 0.9861357 0.9125621 -0.5370987 0.9861357 0.9125621 -0.5668815 0.9861357 0.9125621 -0.5947903 0.9861357 0.9125621 -0.6211144 0.9861357 0.9125621 -0.6460766 0.9861357 0.9125621 -0.6698526 0.9861357 0.9125621 -0.6925839 0.9861357 0.9125621 -0.7143866 0.9861357 0.9125621 -0.7353569 0.9861357 0.9125621 -0.7555758 0.9861357 0.9125621 -0.7751122 0.9861357 0.9125621 -0.7940252 0.9861357 0.9125621 -0.8123661 0.9861357 0.9125621 -0.8301795 0.9861357 0.9125621 -0.8475045 0.9861357 0.9125621 -0.8643761 0.9861357 0.9125621 -0.880825 0.9861357 0.9125621 -0.8968787 0.9861357 0.9125621 -0.9125621 0.9861357 0.9125621 -0.9278974 0.9861357 0.9125621 -0.9429048 0.9861357 0.9125621 -0.9576028 0.9861357 0.9125621 -0.9720079 0.9861357 0.9125621 -0.9861357 0.9861357 0.9125621 -1 0.9861357 0.9125621 -0 1 0.9125621 -0.1939468 1 0.9125621 -0.2773041 1 0.9125621 -0.3384659 1 0.9125621 -0.3885728 1 0.9125621 -0.4317928 1 0.9125621 -0.470214 1 0.9125621 -0.5050551 1 0.9125621 -0.5370987 1 0.9125621 -0.5668815 1 0.9125621 -0.5947903 1 0.9125621 -0.6211144 1 0.9125621 -0.6460766 1 0.9125621 -0.6698526 1 0.9125621 -0.6925839 1 0.9125621 -0.7143866 1 0.9125621 -0.7353569 1 0.9125621 -0.7555758 1 0.9125621 -0.7751122 1 0.9125621 -0.7940252 1 0.9125621 -0.8123661 1 0.9125621 -0.8301795 1 0.9125621 -0.8475045 1 0.9125621 -0.8643761 1 0.9125621 -0.880825 1 0.9125621 -0.8968787 1 0.9125621 -0.9125621 1 0.9125621 -0.9278974 1 0.9125621 -0.9429048 1 0.9125621 -0.9576028 1 0.9125621 -0.9720079 1 0.9125621 -0.9861357 1 0.9125621 -1 1 0.9125621 -0 0 0.9278974 -0.1939468 0 0.9278974 -0.2773041 0 0.9278974 -0.3384659 0 0.9278974 -0.3885728 0 0.9278974 -0.4317928 0 0.9278974 -0.470214 0 0.9278974 -0.5050551 0 0.9278974 -0.5370987 0 0.9278974 -0.5668815 0 0.9278974 -0.5947903 0 0.9278974 -0.6211144 0 0.9278974 -0.6460766 0 0.9278974 -0.6698526 0 0.9278974 -0.6925839 0 0.9278974 -0.7143866 0 0.9278974 -0.7353569 0 0.9278974 -0.7555758 0 0.9278974 -0.7751122 0 0.9278974 -0.7940252 0 0.9278974 -0.8123661 0 0.9278974 -0.8301795 0 0.9278974 -0.8475045 0 0.9278974 -0.8643761 0 0.9278974 -0.880825 0 0.9278974 -0.8968787 0 0.9278974 -0.9125621 0 0.9278974 -0.9278974 0 0.9278974 -0.9429048 0 0.9278974 -0.9576028 0 0.9278974 -0.9720079 0 0.9278974 -0.9861357 0 0.9278974 -1 0 0.9278974 -0 0.1939468 0.9278974 -0.1939468 0.1939468 0.9278974 -0.2773041 0.1939468 0.9278974 -0.3384659 0.1939468 0.9278974 -0.3885728 0.1939468 0.9278974 -0.4317928 0.1939468 0.9278974 -0.470214 0.1939468 0.9278974 -0.5050551 0.1939468 0.9278974 -0.5370987 0.1939468 0.9278974 -0.5668815 0.1939468 0.9278974 -0.5947903 0.1939468 0.9278974 -0.6211144 0.1939468 0.9278974 -0.6460766 0.1939468 0.9278974 -0.6698526 0.1939468 0.9278974 -0.6925839 0.1939468 0.9278974 -0.7143866 0.1939468 0.9278974 -0.7353569 0.1939468 0.9278974 -0.7555758 0.1939468 0.9278974 -0.7751122 0.1939468 0.9278974 -0.7940252 0.1939468 0.9278974 -0.8123661 0.1939468 0.9278974 -0.8301795 0.1939468 0.9278974 -0.8475045 0.1939468 0.9278974 -0.8643761 0.1939468 0.9278974 -0.880825 0.1939468 0.9278974 -0.8968787 0.1939468 0.9278974 -0.9125621 0.1939468 0.9278974 -0.9278974 0.1939468 0.9278974 -0.9429048 0.1939468 0.9278974 -0.9576028 0.1939468 0.9278974 -0.9720079 0.1939468 0.9278974 -0.9861357 0.1939468 0.9278974 -1 0.1939468 0.9278974 -0 0.2773041 0.9278974 -0.1939468 0.2773041 0.9278974 -0.2773041 0.2773041 0.9278974 -0.3384659 0.2773041 0.9278974 -0.3885728 0.2773041 0.9278974 -0.4317928 0.2773041 0.9278974 -0.470214 0.2773041 0.9278974 -0.5050551 0.2773041 0.9278974 -0.5370987 0.2773041 0.9278974 -0.5668815 0.2773041 0.9278974 -0.5947903 0.2773041 0.9278974 -0.6211144 0.2773041 0.9278974 -0.6460766 0.2773041 0.9278974 -0.6698526 0.2773041 0.9278974 -0.6925839 0.2773041 0.9278974 -0.7143866 0.2773041 0.9278974 -0.7353569 0.2773041 0.9278974 -0.7555758 0.2773041 0.9278974 -0.7751122 0.2773041 0.9278974 -0.7940252 0.2773041 0.9278974 -0.8123661 0.2773041 0.9278974 -0.8301795 0.2773041 0.9278974 -0.8475045 0.2773041 0.9278974 -0.8643761 0.2773041 0.9278974 -0.880825 0.2773041 0.9278974 -0.8968787 0.2773041 0.9278974 -0.9125621 0.2773041 0.9278974 -0.9278974 0.2773041 0.9278974 -0.9429048 0.2773041 0.9278974 -0.9576028 0.2773041 0.9278974 -0.9720079 0.2773041 0.9278974 -0.9861357 0.2773041 0.9278974 -1 0.2773041 0.9278974 -0 0.3384659 0.9278974 -0.1939468 0.3384659 0.9278974 -0.2773041 0.3384659 0.9278974 -0.3384659 0.3384659 0.9278974 -0.3885728 0.3384659 0.9278974 -0.4317928 0.3384659 0.9278974 -0.470214 0.3384659 0.9278974 -0.5050551 0.3384659 0.9278974 -0.5370987 0.3384659 0.9278974 -0.5668815 0.3384659 0.9278974 -0.5947903 0.3384659 0.9278974 -0.6211144 0.3384659 0.9278974 -0.6460766 0.3384659 0.9278974 -0.6698526 0.3384659 0.9278974 -0.6925839 0.3384659 0.9278974 -0.7143866 0.3384659 0.9278974 -0.7353569 0.3384659 0.9278974 -0.7555758 0.3384659 0.9278974 -0.7751122 0.3384659 0.9278974 -0.7940252 0.3384659 0.9278974 -0.8123661 0.3384659 0.9278974 -0.8301795 0.3384659 0.9278974 -0.8475045 0.3384659 0.9278974 -0.8643761 0.3384659 0.9278974 -0.880825 0.3384659 0.9278974 -0.8968787 0.3384659 0.9278974 -0.9125621 0.3384659 0.9278974 -0.9278974 0.3384659 0.9278974 -0.9429048 0.3384659 0.9278974 -0.9576028 0.3384659 0.9278974 -0.9720079 0.3384659 0.9278974 -0.9861357 0.3384659 0.9278974 -1 0.3384659 0.9278974 -0 0.3885728 0.9278974 -0.1939468 0.3885728 0.9278974 -0.2773041 0.3885728 0.9278974 -0.3384659 0.3885728 0.9278974 -0.3885728 0.3885728 0.9278974 -0.4317928 0.3885728 0.9278974 -0.470214 0.3885728 0.9278974 -0.5050551 0.3885728 0.9278974 -0.5370987 0.3885728 0.9278974 -0.5668815 0.3885728 0.9278974 -0.5947903 0.3885728 0.9278974 -0.6211144 0.3885728 0.9278974 -0.6460766 0.3885728 0.9278974 -0.6698526 0.3885728 0.9278974 -0.6925839 0.3885728 0.9278974 -0.7143866 0.3885728 0.9278974 -0.7353569 0.3885728 0.9278974 -0.7555758 0.3885728 0.9278974 -0.7751122 0.3885728 0.9278974 -0.7940252 0.3885728 0.9278974 -0.8123661 0.3885728 0.9278974 -0.8301795 0.3885728 0.9278974 -0.8475045 0.3885728 0.9278974 -0.8643761 0.3885728 0.9278974 -0.880825 0.3885728 0.9278974 -0.8968787 0.3885728 0.9278974 -0.9125621 0.3885728 0.9278974 -0.9278974 0.3885728 0.9278974 -0.9429048 0.3885728 0.9278974 -0.9576028 0.3885728 0.9278974 -0.9720079 0.3885728 0.9278974 -0.9861357 0.3885728 0.9278974 -1 0.3885728 0.9278974 -0 0.4317928 0.9278974 -0.1939468 0.4317928 0.9278974 -0.2773041 0.4317928 0.9278974 -0.3384659 0.4317928 0.9278974 -0.3885728 0.4317928 0.9278974 -0.4317928 0.4317928 0.9278974 -0.470214 0.4317928 0.9278974 -0.5050551 0.4317928 0.9278974 -0.5370987 0.4317928 0.9278974 -0.5668815 0.4317928 0.9278974 -0.5947903 0.4317928 0.9278974 -0.6211144 0.4317928 0.9278974 -0.6460766 0.4317928 0.9278974 -0.6698526 0.4317928 0.9278974 -0.6925839 0.4317928 0.9278974 -0.7143866 0.4317928 0.9278974 -0.7353569 0.4317928 0.9278974 -0.7555758 0.4317928 0.9278974 -0.7751122 0.4317928 0.9278974 -0.7940252 0.4317928 0.9278974 -0.8123661 0.4317928 0.9278974 -0.8301795 0.4317928 0.9278974 -0.8475045 0.4317928 0.9278974 -0.8643761 0.4317928 0.9278974 -0.880825 0.4317928 0.9278974 -0.8968787 0.4317928 0.9278974 -0.9125621 0.4317928 0.9278974 -0.9278974 0.4317928 0.9278974 -0.9429048 0.4317928 0.9278974 -0.9576028 0.4317928 0.9278974 -0.9720079 0.4317928 0.9278974 -0.9861357 0.4317928 0.9278974 -1 0.4317928 0.9278974 -0 0.470214 0.9278974 -0.1939468 0.470214 0.9278974 -0.2773041 0.470214 0.9278974 -0.3384659 0.470214 0.9278974 -0.3885728 0.470214 0.9278974 -0.4317928 0.470214 0.9278974 -0.470214 0.470214 0.9278974 -0.5050551 0.470214 0.9278974 -0.5370987 0.470214 0.9278974 -0.5668815 0.470214 0.9278974 -0.5947903 0.470214 0.9278974 -0.6211144 0.470214 0.9278974 -0.6460766 0.470214 0.9278974 -0.6698526 0.470214 0.9278974 -0.6925839 0.470214 0.9278974 -0.7143866 0.470214 0.9278974 -0.7353569 0.470214 0.9278974 -0.7555758 0.470214 0.9278974 -0.7751122 0.470214 0.9278974 -0.7940252 0.470214 0.9278974 -0.8123661 0.470214 0.9278974 -0.8301795 0.470214 0.9278974 -0.8475045 0.470214 0.9278974 -0.8643761 0.470214 0.9278974 -0.880825 0.470214 0.9278974 -0.8968787 0.470214 0.9278974 -0.9125621 0.470214 0.9278974 -0.9278974 0.470214 0.9278974 -0.9429048 0.470214 0.9278974 -0.9576028 0.470214 0.9278974 -0.9720079 0.470214 0.9278974 -0.9861357 0.470214 0.9278974 -1 0.470214 0.9278974 -0 0.5050551 0.9278974 -0.1939468 0.5050551 0.9278974 -0.2773041 0.5050551 0.9278974 -0.3384659 0.5050551 0.9278974 -0.3885728 0.5050551 0.9278974 -0.4317928 0.5050551 0.9278974 -0.470214 0.5050551 0.9278974 -0.5050551 0.5050551 0.9278974 -0.5370987 0.5050551 0.9278974 -0.5668815 0.5050551 0.9278974 -0.5947903 0.5050551 0.9278974 -0.6211144 0.5050551 0.9278974 -0.6460766 0.5050551 0.9278974 -0.6698526 0.5050551 0.9278974 -0.6925839 0.5050551 0.9278974 -0.7143866 0.5050551 0.9278974 -0.7353569 0.5050551 0.9278974 -0.7555758 0.5050551 0.9278974 -0.7751122 0.5050551 0.9278974 -0.7940252 0.5050551 0.9278974 -0.8123661 0.5050551 0.9278974 -0.8301795 0.5050551 0.9278974 -0.8475045 0.5050551 0.9278974 -0.8643761 0.5050551 0.9278974 -0.880825 0.5050551 0.9278974 -0.8968787 0.5050551 0.9278974 -0.9125621 0.5050551 0.9278974 -0.9278974 0.5050551 0.9278974 -0.9429048 0.5050551 0.9278974 -0.9576028 0.5050551 0.9278974 -0.9720079 0.5050551 0.9278974 -0.9861357 0.5050551 0.9278974 -1 0.5050551 0.9278974 -0 0.5370987 0.9278974 -0.1939468 0.5370987 0.9278974 -0.2773041 0.5370987 0.9278974 -0.3384659 0.5370987 0.9278974 -0.3885728 0.5370987 0.9278974 -0.4317928 0.5370987 0.9278974 -0.470214 0.5370987 0.9278974 -0.5050551 0.5370987 0.9278974 -0.5370987 0.5370987 0.9278974 -0.5668815 0.5370987 0.9278974 -0.5947903 0.5370987 0.9278974 -0.6211144 0.5370987 0.9278974 -0.6460766 0.5370987 0.9278974 -0.6698526 0.5370987 0.9278974 -0.6925839 0.5370987 0.9278974 -0.7143866 0.5370987 0.9278974 -0.7353569 0.5370987 0.9278974 -0.7555758 0.5370987 0.9278974 -0.7751122 0.5370987 0.9278974 -0.7940252 0.5370987 0.9278974 -0.8123661 0.5370987 0.9278974 -0.8301795 0.5370987 0.9278974 -0.8475045 0.5370987 0.9278974 -0.8643761 0.5370987 0.9278974 -0.880825 0.5370987 0.9278974 -0.8968787 0.5370987 0.9278974 -0.9125621 0.5370987 0.9278974 -0.9278974 0.5370987 0.9278974 -0.9429048 0.5370987 0.9278974 -0.9576028 0.5370987 0.9278974 -0.9720079 0.5370987 0.9278974 -0.9861357 0.5370987 0.9278974 -1 0.5370987 0.9278974 -0 0.5668815 0.9278974 -0.1939468 0.5668815 0.9278974 -0.2773041 0.5668815 0.9278974 -0.3384659 0.5668815 0.9278974 -0.3885728 0.5668815 0.9278974 -0.4317928 0.5668815 0.9278974 -0.470214 0.5668815 0.9278974 -0.5050551 0.5668815 0.9278974 -0.5370987 0.5668815 0.9278974 -0.5668815 0.5668815 0.9278974 -0.5947903 0.5668815 0.9278974 -0.6211144 0.5668815 0.9278974 -0.6460766 0.5668815 0.9278974 -0.6698526 0.5668815 0.9278974 -0.6925839 0.5668815 0.9278974 -0.7143866 0.5668815 0.9278974 -0.7353569 0.5668815 0.9278974 -0.7555758 0.5668815 0.9278974 -0.7751122 0.5668815 0.9278974 -0.7940252 0.5668815 0.9278974 -0.8123661 0.5668815 0.9278974 -0.8301795 0.5668815 0.9278974 -0.8475045 0.5668815 0.9278974 -0.8643761 0.5668815 0.9278974 -0.880825 0.5668815 0.9278974 -0.8968787 0.5668815 0.9278974 -0.9125621 0.5668815 0.9278974 -0.9278974 0.5668815 0.9278974 -0.9429048 0.5668815 0.9278974 -0.9576028 0.5668815 0.9278974 -0.9720079 0.5668815 0.9278974 -0.9861357 0.5668815 0.9278974 -1 0.5668815 0.9278974 -0 0.5947903 0.9278974 -0.1939468 0.5947903 0.9278974 -0.2773041 0.5947903 0.9278974 -0.3384659 0.5947903 0.9278974 -0.3885728 0.5947903 0.9278974 -0.4317928 0.5947903 0.9278974 -0.470214 0.5947903 0.9278974 -0.5050551 0.5947903 0.9278974 -0.5370987 0.5947903 0.9278974 -0.5668815 0.5947903 0.9278974 -0.5947903 0.5947903 0.9278974 -0.6211144 0.5947903 0.9278974 -0.6460766 0.5947903 0.9278974 -0.6698526 0.5947903 0.9278974 -0.6925839 0.5947903 0.9278974 -0.7143866 0.5947903 0.9278974 -0.7353569 0.5947903 0.9278974 -0.7555758 0.5947903 0.9278974 -0.7751122 0.5947903 0.9278974 -0.7940252 0.5947903 0.9278974 -0.8123661 0.5947903 0.9278974 -0.8301795 0.5947903 0.9278974 -0.8475045 0.5947903 0.9278974 -0.8643761 0.5947903 0.9278974 -0.880825 0.5947903 0.9278974 -0.8968787 0.5947903 0.9278974 -0.9125621 0.5947903 0.9278974 -0.9278974 0.5947903 0.9278974 -0.9429048 0.5947903 0.9278974 -0.9576028 0.5947903 0.9278974 -0.9720079 0.5947903 0.9278974 -0.9861357 0.5947903 0.9278974 -1 0.5947903 0.9278974 -0 0.6211144 0.9278974 -0.1939468 0.6211144 0.9278974 -0.2773041 0.6211144 0.9278974 -0.3384659 0.6211144 0.9278974 -0.3885728 0.6211144 0.9278974 -0.4317928 0.6211144 0.9278974 -0.470214 0.6211144 0.9278974 -0.5050551 0.6211144 0.9278974 -0.5370987 0.6211144 0.9278974 -0.5668815 0.6211144 0.9278974 -0.5947903 0.6211144 0.9278974 -0.6211144 0.6211144 0.9278974 -0.6460766 0.6211144 0.9278974 -0.6698526 0.6211144 0.9278974 -0.6925839 0.6211144 0.9278974 -0.7143866 0.6211144 0.9278974 -0.7353569 0.6211144 0.9278974 -0.7555758 0.6211144 0.9278974 -0.7751122 0.6211144 0.9278974 -0.7940252 0.6211144 0.9278974 -0.8123661 0.6211144 0.9278974 -0.8301795 0.6211144 0.9278974 -0.8475045 0.6211144 0.9278974 -0.8643761 0.6211144 0.9278974 -0.880825 0.6211144 0.9278974 -0.8968787 0.6211144 0.9278974 -0.9125621 0.6211144 0.9278974 -0.9278974 0.6211144 0.9278974 -0.9429048 0.6211144 0.9278974 -0.9576028 0.6211144 0.9278974 -0.9720079 0.6211144 0.9278974 -0.9861357 0.6211144 0.9278974 -1 0.6211144 0.9278974 -0 0.6460766 0.9278974 -0.1939468 0.6460766 0.9278974 -0.2773041 0.6460766 0.9278974 -0.3384659 0.6460766 0.9278974 -0.3885728 0.6460766 0.9278974 -0.4317928 0.6460766 0.9278974 -0.470214 0.6460766 0.9278974 -0.5050551 0.6460766 0.9278974 -0.5370987 0.6460766 0.9278974 -0.5668815 0.6460766 0.9278974 -0.5947903 0.6460766 0.9278974 -0.6211144 0.6460766 0.9278974 -0.6460766 0.6460766 0.9278974 -0.6698526 0.6460766 0.9278974 -0.6925839 0.6460766 0.9278974 -0.7143866 0.6460766 0.9278974 -0.7353569 0.6460766 0.9278974 -0.7555758 0.6460766 0.9278974 -0.7751122 0.6460766 0.9278974 -0.7940252 0.6460766 0.9278974 -0.8123661 0.6460766 0.9278974 -0.8301795 0.6460766 0.9278974 -0.8475045 0.6460766 0.9278974 -0.8643761 0.6460766 0.9278974 -0.880825 0.6460766 0.9278974 -0.8968787 0.6460766 0.9278974 -0.9125621 0.6460766 0.9278974 -0.9278974 0.6460766 0.9278974 -0.9429048 0.6460766 0.9278974 -0.9576028 0.6460766 0.9278974 -0.9720079 0.6460766 0.9278974 -0.9861357 0.6460766 0.9278974 -1 0.6460766 0.9278974 -0 0.6698526 0.9278974 -0.1939468 0.6698526 0.9278974 -0.2773041 0.6698526 0.9278974 -0.3384659 0.6698526 0.9278974 -0.3885728 0.6698526 0.9278974 -0.4317928 0.6698526 0.9278974 -0.470214 0.6698526 0.9278974 -0.5050551 0.6698526 0.9278974 -0.5370987 0.6698526 0.9278974 -0.5668815 0.6698526 0.9278974 -0.5947903 0.6698526 0.9278974 -0.6211144 0.6698526 0.9278974 -0.6460766 0.6698526 0.9278974 -0.6698526 0.6698526 0.9278974 -0.6925839 0.6698526 0.9278974 -0.7143866 0.6698526 0.9278974 -0.7353569 0.6698526 0.9278974 -0.7555758 0.6698526 0.9278974 -0.7751122 0.6698526 0.9278974 -0.7940252 0.6698526 0.9278974 -0.8123661 0.6698526 0.9278974 -0.8301795 0.6698526 0.9278974 -0.8475045 0.6698526 0.9278974 -0.8643761 0.6698526 0.9278974 -0.880825 0.6698526 0.9278974 -0.8968787 0.6698526 0.9278974 -0.9125621 0.6698526 0.9278974 -0.9278974 0.6698526 0.9278974 -0.9429048 0.6698526 0.9278974 -0.9576028 0.6698526 0.9278974 -0.9720079 0.6698526 0.9278974 -0.9861357 0.6698526 0.9278974 -1 0.6698526 0.9278974 -0 0.6925839 0.9278974 -0.1939468 0.6925839 0.9278974 -0.2773041 0.6925839 0.9278974 -0.3384659 0.6925839 0.9278974 -0.3885728 0.6925839 0.9278974 -0.4317928 0.6925839 0.9278974 -0.470214 0.6925839 0.9278974 -0.5050551 0.6925839 0.9278974 -0.5370987 0.6925839 0.9278974 -0.5668815 0.6925839 0.9278974 -0.5947903 0.6925839 0.9278974 -0.6211144 0.6925839 0.9278974 -0.6460766 0.6925839 0.9278974 -0.6698526 0.6925839 0.9278974 -0.6925839 0.6925839 0.9278974 -0.7143866 0.6925839 0.9278974 -0.7353569 0.6925839 0.9278974 -0.7555758 0.6925839 0.9278974 -0.7751122 0.6925839 0.9278974 -0.7940252 0.6925839 0.9278974 -0.8123661 0.6925839 0.9278974 -0.8301795 0.6925839 0.9278974 -0.8475045 0.6925839 0.9278974 -0.8643761 0.6925839 0.9278974 -0.880825 0.6925839 0.9278974 -0.8968787 0.6925839 0.9278974 -0.9125621 0.6925839 0.9278974 -0.9278974 0.6925839 0.9278974 -0.9429048 0.6925839 0.9278974 -0.9576028 0.6925839 0.9278974 -0.9720079 0.6925839 0.9278974 -0.9861357 0.6925839 0.9278974 -1 0.6925839 0.9278974 -0 0.7143866 0.9278974 -0.1939468 0.7143866 0.9278974 -0.2773041 0.7143866 0.9278974 -0.3384659 0.7143866 0.9278974 -0.3885728 0.7143866 0.9278974 -0.4317928 0.7143866 0.9278974 -0.470214 0.7143866 0.9278974 -0.5050551 0.7143866 0.9278974 -0.5370987 0.7143866 0.9278974 -0.5668815 0.7143866 0.9278974 -0.5947903 0.7143866 0.9278974 -0.6211144 0.7143866 0.9278974 -0.6460766 0.7143866 0.9278974 -0.6698526 0.7143866 0.9278974 -0.6925839 0.7143866 0.9278974 -0.7143866 0.7143866 0.9278974 -0.7353569 0.7143866 0.9278974 -0.7555758 0.7143866 0.9278974 -0.7751122 0.7143866 0.9278974 -0.7940252 0.7143866 0.9278974 -0.8123661 0.7143866 0.9278974 -0.8301795 0.7143866 0.9278974 -0.8475045 0.7143866 0.9278974 -0.8643761 0.7143866 0.9278974 -0.880825 0.7143866 0.9278974 -0.8968787 0.7143866 0.9278974 -0.9125621 0.7143866 0.9278974 -0.9278974 0.7143866 0.9278974 -0.9429048 0.7143866 0.9278974 -0.9576028 0.7143866 0.9278974 -0.9720079 0.7143866 0.9278974 -0.9861357 0.7143866 0.9278974 -1 0.7143866 0.9278974 -0 0.7353569 0.9278974 -0.1939468 0.7353569 0.9278974 -0.2773041 0.7353569 0.9278974 -0.3384659 0.7353569 0.9278974 -0.3885728 0.7353569 0.9278974 -0.4317928 0.7353569 0.9278974 -0.470214 0.7353569 0.9278974 -0.5050551 0.7353569 0.9278974 -0.5370987 0.7353569 0.9278974 -0.5668815 0.7353569 0.9278974 -0.5947903 0.7353569 0.9278974 -0.6211144 0.7353569 0.9278974 -0.6460766 0.7353569 0.9278974 -0.6698526 0.7353569 0.9278974 -0.6925839 0.7353569 0.9278974 -0.7143866 0.7353569 0.9278974 -0.7353569 0.7353569 0.9278974 -0.7555758 0.7353569 0.9278974 -0.7751122 0.7353569 0.9278974 -0.7940252 0.7353569 0.9278974 -0.8123661 0.7353569 0.9278974 -0.8301795 0.7353569 0.9278974 -0.8475045 0.7353569 0.9278974 -0.8643761 0.7353569 0.9278974 -0.880825 0.7353569 0.9278974 -0.8968787 0.7353569 0.9278974 -0.9125621 0.7353569 0.9278974 -0.9278974 0.7353569 0.9278974 -0.9429048 0.7353569 0.9278974 -0.9576028 0.7353569 0.9278974 -0.9720079 0.7353569 0.9278974 -0.9861357 0.7353569 0.9278974 -1 0.7353569 0.9278974 -0 0.7555758 0.9278974 -0.1939468 0.7555758 0.9278974 -0.2773041 0.7555758 0.9278974 -0.3384659 0.7555758 0.9278974 -0.3885728 0.7555758 0.9278974 -0.4317928 0.7555758 0.9278974 -0.470214 0.7555758 0.9278974 -0.5050551 0.7555758 0.9278974 -0.5370987 0.7555758 0.9278974 -0.5668815 0.7555758 0.9278974 -0.5947903 0.7555758 0.9278974 -0.6211144 0.7555758 0.9278974 -0.6460766 0.7555758 0.9278974 -0.6698526 0.7555758 0.9278974 -0.6925839 0.7555758 0.9278974 -0.7143866 0.7555758 0.9278974 -0.7353569 0.7555758 0.9278974 -0.7555758 0.7555758 0.9278974 -0.7751122 0.7555758 0.9278974 -0.7940252 0.7555758 0.9278974 -0.8123661 0.7555758 0.9278974 -0.8301795 0.7555758 0.9278974 -0.8475045 0.7555758 0.9278974 -0.8643761 0.7555758 0.9278974 -0.880825 0.7555758 0.9278974 -0.8968787 0.7555758 0.9278974 -0.9125621 0.7555758 0.9278974 -0.9278974 0.7555758 0.9278974 -0.9429048 0.7555758 0.9278974 -0.9576028 0.7555758 0.9278974 -0.9720079 0.7555758 0.9278974 -0.9861357 0.7555758 0.9278974 -1 0.7555758 0.9278974 -0 0.7751122 0.9278974 -0.1939468 0.7751122 0.9278974 -0.2773041 0.7751122 0.9278974 -0.3384659 0.7751122 0.9278974 -0.3885728 0.7751122 0.9278974 -0.4317928 0.7751122 0.9278974 -0.470214 0.7751122 0.9278974 -0.5050551 0.7751122 0.9278974 -0.5370987 0.7751122 0.9278974 -0.5668815 0.7751122 0.9278974 -0.5947903 0.7751122 0.9278974 -0.6211144 0.7751122 0.9278974 -0.6460766 0.7751122 0.9278974 -0.6698526 0.7751122 0.9278974 -0.6925839 0.7751122 0.9278974 -0.7143866 0.7751122 0.9278974 -0.7353569 0.7751122 0.9278974 -0.7555758 0.7751122 0.9278974 -0.7751122 0.7751122 0.9278974 -0.7940252 0.7751122 0.9278974 -0.8123661 0.7751122 0.9278974 -0.8301795 0.7751122 0.9278974 -0.8475045 0.7751122 0.9278974 -0.8643761 0.7751122 0.9278974 -0.880825 0.7751122 0.9278974 -0.8968787 0.7751122 0.9278974 -0.9125621 0.7751122 0.9278974 -0.9278974 0.7751122 0.9278974 -0.9429048 0.7751122 0.9278974 -0.9576028 0.7751122 0.9278974 -0.9720079 0.7751122 0.9278974 -0.9861357 0.7751122 0.9278974 -1 0.7751122 0.9278974 -0 0.7940252 0.9278974 -0.1939468 0.7940252 0.9278974 -0.2773041 0.7940252 0.9278974 -0.3384659 0.7940252 0.9278974 -0.3885728 0.7940252 0.9278974 -0.4317928 0.7940252 0.9278974 -0.470214 0.7940252 0.9278974 -0.5050551 0.7940252 0.9278974 -0.5370987 0.7940252 0.9278974 -0.5668815 0.7940252 0.9278974 -0.5947903 0.7940252 0.9278974 -0.6211144 0.7940252 0.9278974 -0.6460766 0.7940252 0.9278974 -0.6698526 0.7940252 0.9278974 -0.6925839 0.7940252 0.9278974 -0.7143866 0.7940252 0.9278974 -0.7353569 0.7940252 0.9278974 -0.7555758 0.7940252 0.9278974 -0.7751122 0.7940252 0.9278974 -0.7940252 0.7940252 0.9278974 -0.8123661 0.7940252 0.9278974 -0.8301795 0.7940252 0.9278974 -0.8475045 0.7940252 0.9278974 -0.8643761 0.7940252 0.9278974 -0.880825 0.7940252 0.9278974 -0.8968787 0.7940252 0.9278974 -0.9125621 0.7940252 0.9278974 -0.9278974 0.7940252 0.9278974 -0.9429048 0.7940252 0.9278974 -0.9576028 0.7940252 0.9278974 -0.9720079 0.7940252 0.9278974 -0.9861357 0.7940252 0.9278974 -1 0.7940252 0.9278974 -0 0.8123661 0.9278974 -0.1939468 0.8123661 0.9278974 -0.2773041 0.8123661 0.9278974 -0.3384659 0.8123661 0.9278974 -0.3885728 0.8123661 0.9278974 -0.4317928 0.8123661 0.9278974 -0.470214 0.8123661 0.9278974 -0.5050551 0.8123661 0.9278974 -0.5370987 0.8123661 0.9278974 -0.5668815 0.8123661 0.9278974 -0.5947903 0.8123661 0.9278974 -0.6211144 0.8123661 0.9278974 -0.6460766 0.8123661 0.9278974 -0.6698526 0.8123661 0.9278974 -0.6925839 0.8123661 0.9278974 -0.7143866 0.8123661 0.9278974 -0.7353569 0.8123661 0.9278974 -0.7555758 0.8123661 0.9278974 -0.7751122 0.8123661 0.9278974 -0.7940252 0.8123661 0.9278974 -0.8123661 0.8123661 0.9278974 -0.8301795 0.8123661 0.9278974 -0.8475045 0.8123661 0.9278974 -0.8643761 0.8123661 0.9278974 -0.880825 0.8123661 0.9278974 -0.8968787 0.8123661 0.9278974 -0.9125621 0.8123661 0.9278974 -0.9278974 0.8123661 0.9278974 -0.9429048 0.8123661 0.9278974 -0.9576028 0.8123661 0.9278974 -0.9720079 0.8123661 0.9278974 -0.9861357 0.8123661 0.9278974 -1 0.8123661 0.9278974 -0 0.8301795 0.9278974 -0.1939468 0.8301795 0.9278974 -0.2773041 0.8301795 0.9278974 -0.3384659 0.8301795 0.9278974 -0.3885728 0.8301795 0.9278974 -0.4317928 0.8301795 0.9278974 -0.470214 0.8301795 0.9278974 -0.5050551 0.8301795 0.9278974 -0.5370987 0.8301795 0.9278974 -0.5668815 0.8301795 0.9278974 -0.5947903 0.8301795 0.9278974 -0.6211144 0.8301795 0.9278974 -0.6460766 0.8301795 0.9278974 -0.6698526 0.8301795 0.9278974 -0.6925839 0.8301795 0.9278974 -0.7143866 0.8301795 0.9278974 -0.7353569 0.8301795 0.9278974 -0.7555758 0.8301795 0.9278974 -0.7751122 0.8301795 0.9278974 -0.7940252 0.8301795 0.9278974 -0.8123661 0.8301795 0.9278974 -0.8301795 0.8301795 0.9278974 -0.8475045 0.8301795 0.9278974 -0.8643761 0.8301795 0.9278974 -0.880825 0.8301795 0.9278974 -0.8968787 0.8301795 0.9278974 -0.9125621 0.8301795 0.9278974 -0.9278974 0.8301795 0.9278974 -0.9429048 0.8301795 0.9278974 -0.9576028 0.8301795 0.9278974 -0.9720079 0.8301795 0.9278974 -0.9861357 0.8301795 0.9278974 -1 0.8301795 0.9278974 -0 0.8475045 0.9278974 -0.1939468 0.8475045 0.9278974 -0.2773041 0.8475045 0.9278974 -0.3384659 0.8475045 0.9278974 -0.3885728 0.8475045 0.9278974 -0.4317928 0.8475045 0.9278974 -0.470214 0.8475045 0.9278974 -0.5050551 0.8475045 0.9278974 -0.5370987 0.8475045 0.9278974 -0.5668815 0.8475045 0.9278974 -0.5947903 0.8475045 0.9278974 -0.6211144 0.8475045 0.9278974 -0.6460766 0.8475045 0.9278974 -0.6698526 0.8475045 0.9278974 -0.6925839 0.8475045 0.9278974 -0.7143866 0.8475045 0.9278974 -0.7353569 0.8475045 0.9278974 -0.7555758 0.8475045 0.9278974 -0.7751122 0.8475045 0.9278974 -0.7940252 0.8475045 0.9278974 -0.8123661 0.8475045 0.9278974 -0.8301795 0.8475045 0.9278974 -0.8475045 0.8475045 0.9278974 -0.8643761 0.8475045 0.9278974 -0.880825 0.8475045 0.9278974 -0.8968787 0.8475045 0.9278974 -0.9125621 0.8475045 0.9278974 -0.9278974 0.8475045 0.9278974 -0.9429048 0.8475045 0.9278974 -0.9576028 0.8475045 0.9278974 -0.9720079 0.8475045 0.9278974 -0.9861357 0.8475045 0.9278974 -1 0.8475045 0.9278974 -0 0.8643761 0.9278974 -0.1939468 0.8643761 0.9278974 -0.2773041 0.8643761 0.9278974 -0.3384659 0.8643761 0.9278974 -0.3885728 0.8643761 0.9278974 -0.4317928 0.8643761 0.9278974 -0.470214 0.8643761 0.9278974 -0.5050551 0.8643761 0.9278974 -0.5370987 0.8643761 0.9278974 -0.5668815 0.8643761 0.9278974 -0.5947903 0.8643761 0.9278974 -0.6211144 0.8643761 0.9278974 -0.6460766 0.8643761 0.9278974 -0.6698526 0.8643761 0.9278974 -0.6925839 0.8643761 0.9278974 -0.7143866 0.8643761 0.9278974 -0.7353569 0.8643761 0.9278974 -0.7555758 0.8643761 0.9278974 -0.7751122 0.8643761 0.9278974 -0.7940252 0.8643761 0.9278974 -0.8123661 0.8643761 0.9278974 -0.8301795 0.8643761 0.9278974 -0.8475045 0.8643761 0.9278974 -0.8643761 0.8643761 0.9278974 -0.880825 0.8643761 0.9278974 -0.8968787 0.8643761 0.9278974 -0.9125621 0.8643761 0.9278974 -0.9278974 0.8643761 0.9278974 -0.9429048 0.8643761 0.9278974 -0.9576028 0.8643761 0.9278974 -0.9720079 0.8643761 0.9278974 -0.9861357 0.8643761 0.9278974 -1 0.8643761 0.9278974 -0 0.880825 0.9278974 -0.1939468 0.880825 0.9278974 -0.2773041 0.880825 0.9278974 -0.3384659 0.880825 0.9278974 -0.3885728 0.880825 0.9278974 -0.4317928 0.880825 0.9278974 -0.470214 0.880825 0.9278974 -0.5050551 0.880825 0.9278974 -0.5370987 0.880825 0.9278974 -0.5668815 0.880825 0.9278974 -0.5947903 0.880825 0.9278974 -0.6211144 0.880825 0.9278974 -0.6460766 0.880825 0.9278974 -0.6698526 0.880825 0.9278974 -0.6925839 0.880825 0.9278974 -0.7143866 0.880825 0.9278974 -0.7353569 0.880825 0.9278974 -0.7555758 0.880825 0.9278974 -0.7751122 0.880825 0.9278974 -0.7940252 0.880825 0.9278974 -0.8123661 0.880825 0.9278974 -0.8301795 0.880825 0.9278974 -0.8475045 0.880825 0.9278974 -0.8643761 0.880825 0.9278974 -0.880825 0.880825 0.9278974 -0.8968787 0.880825 0.9278974 -0.9125621 0.880825 0.9278974 -0.9278974 0.880825 0.9278974 -0.9429048 0.880825 0.9278974 -0.9576028 0.880825 0.9278974 -0.9720079 0.880825 0.9278974 -0.9861357 0.880825 0.9278974 -1 0.880825 0.9278974 -0 0.8968787 0.9278974 -0.1939468 0.8968787 0.9278974 -0.2773041 0.8968787 0.9278974 -0.3384659 0.8968787 0.9278974 -0.3885728 0.8968787 0.9278974 -0.4317928 0.8968787 0.9278974 -0.470214 0.8968787 0.9278974 -0.5050551 0.8968787 0.9278974 -0.5370987 0.8968787 0.9278974 -0.5668815 0.8968787 0.9278974 -0.5947903 0.8968787 0.9278974 -0.6211144 0.8968787 0.9278974 -0.6460766 0.8968787 0.9278974 -0.6698526 0.8968787 0.9278974 -0.6925839 0.8968787 0.9278974 -0.7143866 0.8968787 0.9278974 -0.7353569 0.8968787 0.9278974 -0.7555758 0.8968787 0.9278974 -0.7751122 0.8968787 0.9278974 -0.7940252 0.8968787 0.9278974 -0.8123661 0.8968787 0.9278974 -0.8301795 0.8968787 0.9278974 -0.8475045 0.8968787 0.9278974 -0.8643761 0.8968787 0.9278974 -0.880825 0.8968787 0.9278974 -0.8968787 0.8968787 0.9278974 -0.9125621 0.8968787 0.9278974 -0.9278974 0.8968787 0.9278974 -0.9429048 0.8968787 0.9278974 -0.9576028 0.8968787 0.9278974 -0.9720079 0.8968787 0.9278974 -0.9861357 0.8968787 0.9278974 -1 0.8968787 0.9278974 -0 0.9125621 0.9278974 -0.1939468 0.9125621 0.9278974 -0.2773041 0.9125621 0.9278974 -0.3384659 0.9125621 0.9278974 -0.3885728 0.9125621 0.9278974 -0.4317928 0.9125621 0.9278974 -0.470214 0.9125621 0.9278974 -0.5050551 0.9125621 0.9278974 -0.5370987 0.9125621 0.9278974 -0.5668815 0.9125621 0.9278974 -0.5947903 0.9125621 0.9278974 -0.6211144 0.9125621 0.9278974 -0.6460766 0.9125621 0.9278974 -0.6698526 0.9125621 0.9278974 -0.6925839 0.9125621 0.9278974 -0.7143866 0.9125621 0.9278974 -0.7353569 0.9125621 0.9278974 -0.7555758 0.9125621 0.9278974 -0.7751122 0.9125621 0.9278974 -0.7940252 0.9125621 0.9278974 -0.8123661 0.9125621 0.9278974 -0.8301795 0.9125621 0.9278974 -0.8475045 0.9125621 0.9278974 -0.8643761 0.9125621 0.9278974 -0.880825 0.9125621 0.9278974 -0.8968787 0.9125621 0.9278974 -0.9125621 0.9125621 0.9278974 -0.9278974 0.9125621 0.9278974 -0.9429048 0.9125621 0.9278974 -0.9576028 0.9125621 0.9278974 -0.9720079 0.9125621 0.9278974 -0.9861357 0.9125621 0.9278974 -1 0.9125621 0.9278974 -0 0.9278974 0.9278974 -0.1939468 0.9278974 0.9278974 -0.2773041 0.9278974 0.9278974 -0.3384659 0.9278974 0.9278974 -0.3885728 0.9278974 0.9278974 -0.4317928 0.9278974 0.9278974 -0.470214 0.9278974 0.9278974 -0.5050551 0.9278974 0.9278974 -0.5370987 0.9278974 0.9278974 -0.5668815 0.9278974 0.9278974 -0.5947903 0.9278974 0.9278974 -0.6211144 0.9278974 0.9278974 -0.6460766 0.9278974 0.9278974 -0.6698526 0.9278974 0.9278974 -0.6925839 0.9278974 0.9278974 -0.7143866 0.9278974 0.9278974 -0.7353569 0.9278974 0.9278974 -0.7555758 0.9278974 0.9278974 -0.7751122 0.9278974 0.9278974 -0.7940252 0.9278974 0.9278974 -0.8123661 0.9278974 0.9278974 -0.8301795 0.9278974 0.9278974 -0.8475045 0.9278974 0.9278974 -0.8643761 0.9278974 0.9278974 -0.880825 0.9278974 0.9278974 -0.8968787 0.9278974 0.9278974 -0.9125621 0.9278974 0.9278974 -0.9278974 0.9278974 0.9278974 -0.9429048 0.9278974 0.9278974 -0.9576028 0.9278974 0.9278974 -0.9720079 0.9278974 0.9278974 -0.9861357 0.9278974 0.9278974 -1 0.9278974 0.9278974 -0 0.9429048 0.9278974 -0.1939468 0.9429048 0.9278974 -0.2773041 0.9429048 0.9278974 -0.3384659 0.9429048 0.9278974 -0.3885728 0.9429048 0.9278974 -0.4317928 0.9429048 0.9278974 -0.470214 0.9429048 0.9278974 -0.5050551 0.9429048 0.9278974 -0.5370987 0.9429048 0.9278974 -0.5668815 0.9429048 0.9278974 -0.5947903 0.9429048 0.9278974 -0.6211144 0.9429048 0.9278974 -0.6460766 0.9429048 0.9278974 -0.6698526 0.9429048 0.9278974 -0.6925839 0.9429048 0.9278974 -0.7143866 0.9429048 0.9278974 -0.7353569 0.9429048 0.9278974 -0.7555758 0.9429048 0.9278974 -0.7751122 0.9429048 0.9278974 -0.7940252 0.9429048 0.9278974 -0.8123661 0.9429048 0.9278974 -0.8301795 0.9429048 0.9278974 -0.8475045 0.9429048 0.9278974 -0.8643761 0.9429048 0.9278974 -0.880825 0.9429048 0.9278974 -0.8968787 0.9429048 0.9278974 -0.9125621 0.9429048 0.9278974 -0.9278974 0.9429048 0.9278974 -0.9429048 0.9429048 0.9278974 -0.9576028 0.9429048 0.9278974 -0.9720079 0.9429048 0.9278974 -0.9861357 0.9429048 0.9278974 -1 0.9429048 0.9278974 -0 0.9576028 0.9278974 -0.1939468 0.9576028 0.9278974 -0.2773041 0.9576028 0.9278974 -0.3384659 0.9576028 0.9278974 -0.3885728 0.9576028 0.9278974 -0.4317928 0.9576028 0.9278974 -0.470214 0.9576028 0.9278974 -0.5050551 0.9576028 0.9278974 -0.5370987 0.9576028 0.9278974 -0.5668815 0.9576028 0.9278974 -0.5947903 0.9576028 0.9278974 -0.6211144 0.9576028 0.9278974 -0.6460766 0.9576028 0.9278974 -0.6698526 0.9576028 0.9278974 -0.6925839 0.9576028 0.9278974 -0.7143866 0.9576028 0.9278974 -0.7353569 0.9576028 0.9278974 -0.7555758 0.9576028 0.9278974 -0.7751122 0.9576028 0.9278974 -0.7940252 0.9576028 0.9278974 -0.8123661 0.9576028 0.9278974 -0.8301795 0.9576028 0.9278974 -0.8475045 0.9576028 0.9278974 -0.8643761 0.9576028 0.9278974 -0.880825 0.9576028 0.9278974 -0.8968787 0.9576028 0.9278974 -0.9125621 0.9576028 0.9278974 -0.9278974 0.9576028 0.9278974 -0.9429048 0.9576028 0.9278974 -0.9576028 0.9576028 0.9278974 -0.9720079 0.9576028 0.9278974 -0.9861357 0.9576028 0.9278974 -1 0.9576028 0.9278974 -0 0.9720079 0.9278974 -0.1939468 0.9720079 0.9278974 -0.2773041 0.9720079 0.9278974 -0.3384659 0.9720079 0.9278974 -0.3885728 0.9720079 0.9278974 -0.4317928 0.9720079 0.9278974 -0.470214 0.9720079 0.9278974 -0.5050551 0.9720079 0.9278974 -0.5370987 0.9720079 0.9278974 -0.5668815 0.9720079 0.9278974 -0.5947903 0.9720079 0.9278974 -0.6211144 0.9720079 0.9278974 -0.6460766 0.9720079 0.9278974 -0.6698526 0.9720079 0.9278974 -0.6925839 0.9720079 0.9278974 -0.7143866 0.9720079 0.9278974 -0.7353569 0.9720079 0.9278974 -0.7555758 0.9720079 0.9278974 -0.7751122 0.9720079 0.9278974 -0.7940252 0.9720079 0.9278974 -0.8123661 0.9720079 0.9278974 -0.8301795 0.9720079 0.9278974 -0.8475045 0.9720079 0.9278974 -0.8643761 0.9720079 0.9278974 -0.880825 0.9720079 0.9278974 -0.8968787 0.9720079 0.9278974 -0.9125621 0.9720079 0.9278974 -0.9278974 0.9720079 0.9278974 -0.9429048 0.9720079 0.9278974 -0.9576028 0.9720079 0.9278974 -0.9720079 0.9720079 0.9278974 -0.9861357 0.9720079 0.9278974 -1 0.9720079 0.9278974 -0 0.9861357 0.9278974 -0.1939468 0.9861357 0.9278974 -0.2773041 0.9861357 0.9278974 -0.3384659 0.9861357 0.9278974 -0.3885728 0.9861357 0.9278974 -0.4317928 0.9861357 0.9278974 -0.470214 0.9861357 0.9278974 -0.5050551 0.9861357 0.9278974 -0.5370987 0.9861357 0.9278974 -0.5668815 0.9861357 0.9278974 -0.5947903 0.9861357 0.9278974 -0.6211144 0.9861357 0.9278974 -0.6460766 0.9861357 0.9278974 -0.6698526 0.9861357 0.9278974 -0.6925839 0.9861357 0.9278974 -0.7143866 0.9861357 0.9278974 -0.7353569 0.9861357 0.9278974 -0.7555758 0.9861357 0.9278974 -0.7751122 0.9861357 0.9278974 -0.7940252 0.9861357 0.9278974 -0.8123661 0.9861357 0.9278974 -0.8301795 0.9861357 0.9278974 -0.8475045 0.9861357 0.9278974 -0.8643761 0.9861357 0.9278974 -0.880825 0.9861357 0.9278974 -0.8968787 0.9861357 0.9278974 -0.9125621 0.9861357 0.9278974 -0.9278974 0.9861357 0.9278974 -0.9429048 0.9861357 0.9278974 -0.9576028 0.9861357 0.9278974 -0.9720079 0.9861357 0.9278974 -0.9861357 0.9861357 0.9278974 -1 0.9861357 0.9278974 -0 1 0.9278974 -0.1939468 1 0.9278974 -0.2773041 1 0.9278974 -0.3384659 1 0.9278974 -0.3885728 1 0.9278974 -0.4317928 1 0.9278974 -0.470214 1 0.9278974 -0.5050551 1 0.9278974 -0.5370987 1 0.9278974 -0.5668815 1 0.9278974 -0.5947903 1 0.9278974 -0.6211144 1 0.9278974 -0.6460766 1 0.9278974 -0.6698526 1 0.9278974 -0.6925839 1 0.9278974 -0.7143866 1 0.9278974 -0.7353569 1 0.9278974 -0.7555758 1 0.9278974 -0.7751122 1 0.9278974 -0.7940252 1 0.9278974 -0.8123661 1 0.9278974 -0.8301795 1 0.9278974 -0.8475045 1 0.9278974 -0.8643761 1 0.9278974 -0.880825 1 0.9278974 -0.8968787 1 0.9278974 -0.9125621 1 0.9278974 -0.9278974 1 0.9278974 -0.9429048 1 0.9278974 -0.9576028 1 0.9278974 -0.9720079 1 0.9278974 -0.9861357 1 0.9278974 -1 1 0.9278974 -0 0 0.9429048 -0.1939468 0 0.9429048 -0.2773041 0 0.9429048 -0.3384659 0 0.9429048 -0.3885728 0 0.9429048 -0.4317928 0 0.9429048 -0.470214 0 0.9429048 -0.5050551 0 0.9429048 -0.5370987 0 0.9429048 -0.5668815 0 0.9429048 -0.5947903 0 0.9429048 -0.6211144 0 0.9429048 -0.6460766 0 0.9429048 -0.6698526 0 0.9429048 -0.6925839 0 0.9429048 -0.7143866 0 0.9429048 -0.7353569 0 0.9429048 -0.7555758 0 0.9429048 -0.7751122 0 0.9429048 -0.7940252 0 0.9429048 -0.8123661 0 0.9429048 -0.8301795 0 0.9429048 -0.8475045 0 0.9429048 -0.8643761 0 0.9429048 -0.880825 0 0.9429048 -0.8968787 0 0.9429048 -0.9125621 0 0.9429048 -0.9278974 0 0.9429048 -0.9429048 0 0.9429048 -0.9576028 0 0.9429048 -0.9720079 0 0.9429048 -0.9861357 0 0.9429048 -1 0 0.9429048 -0 0.1939468 0.9429048 -0.1939468 0.1939468 0.9429048 -0.2773041 0.1939468 0.9429048 -0.3384659 0.1939468 0.9429048 -0.3885728 0.1939468 0.9429048 -0.4317928 0.1939468 0.9429048 -0.470214 0.1939468 0.9429048 -0.5050551 0.1939468 0.9429048 -0.5370987 0.1939468 0.9429048 -0.5668815 0.1939468 0.9429048 -0.5947903 0.1939468 0.9429048 -0.6211144 0.1939468 0.9429048 -0.6460766 0.1939468 0.9429048 -0.6698526 0.1939468 0.9429048 -0.6925839 0.1939468 0.9429048 -0.7143866 0.1939468 0.9429048 -0.7353569 0.1939468 0.9429048 -0.7555758 0.1939468 0.9429048 -0.7751122 0.1939468 0.9429048 -0.7940252 0.1939468 0.9429048 -0.8123661 0.1939468 0.9429048 -0.8301795 0.1939468 0.9429048 -0.8475045 0.1939468 0.9429048 -0.8643761 0.1939468 0.9429048 -0.880825 0.1939468 0.9429048 -0.8968787 0.1939468 0.9429048 -0.9125621 0.1939468 0.9429048 -0.9278974 0.1939468 0.9429048 -0.9429048 0.1939468 0.9429048 -0.9576028 0.1939468 0.9429048 -0.9720079 0.1939468 0.9429048 -0.9861357 0.1939468 0.9429048 -1 0.1939468 0.9429048 -0 0.2773041 0.9429048 -0.1939468 0.2773041 0.9429048 -0.2773041 0.2773041 0.9429048 -0.3384659 0.2773041 0.9429048 -0.3885728 0.2773041 0.9429048 -0.4317928 0.2773041 0.9429048 -0.470214 0.2773041 0.9429048 -0.5050551 0.2773041 0.9429048 -0.5370987 0.2773041 0.9429048 -0.5668815 0.2773041 0.9429048 -0.5947903 0.2773041 0.9429048 -0.6211144 0.2773041 0.9429048 -0.6460766 0.2773041 0.9429048 -0.6698526 0.2773041 0.9429048 -0.6925839 0.2773041 0.9429048 -0.7143866 0.2773041 0.9429048 -0.7353569 0.2773041 0.9429048 -0.7555758 0.2773041 0.9429048 -0.7751122 0.2773041 0.9429048 -0.7940252 0.2773041 0.9429048 -0.8123661 0.2773041 0.9429048 -0.8301795 0.2773041 0.9429048 -0.8475045 0.2773041 0.9429048 -0.8643761 0.2773041 0.9429048 -0.880825 0.2773041 0.9429048 -0.8968787 0.2773041 0.9429048 -0.9125621 0.2773041 0.9429048 -0.9278974 0.2773041 0.9429048 -0.9429048 0.2773041 0.9429048 -0.9576028 0.2773041 0.9429048 -0.9720079 0.2773041 0.9429048 -0.9861357 0.2773041 0.9429048 -1 0.2773041 0.9429048 -0 0.3384659 0.9429048 -0.1939468 0.3384659 0.9429048 -0.2773041 0.3384659 0.9429048 -0.3384659 0.3384659 0.9429048 -0.3885728 0.3384659 0.9429048 -0.4317928 0.3384659 0.9429048 -0.470214 0.3384659 0.9429048 -0.5050551 0.3384659 0.9429048 -0.5370987 0.3384659 0.9429048 -0.5668815 0.3384659 0.9429048 -0.5947903 0.3384659 0.9429048 -0.6211144 0.3384659 0.9429048 -0.6460766 0.3384659 0.9429048 -0.6698526 0.3384659 0.9429048 -0.6925839 0.3384659 0.9429048 -0.7143866 0.3384659 0.9429048 -0.7353569 0.3384659 0.9429048 -0.7555758 0.3384659 0.9429048 -0.7751122 0.3384659 0.9429048 -0.7940252 0.3384659 0.9429048 -0.8123661 0.3384659 0.9429048 -0.8301795 0.3384659 0.9429048 -0.8475045 0.3384659 0.9429048 -0.8643761 0.3384659 0.9429048 -0.880825 0.3384659 0.9429048 -0.8968787 0.3384659 0.9429048 -0.9125621 0.3384659 0.9429048 -0.9278974 0.3384659 0.9429048 -0.9429048 0.3384659 0.9429048 -0.9576028 0.3384659 0.9429048 -0.9720079 0.3384659 0.9429048 -0.9861357 0.3384659 0.9429048 -1 0.3384659 0.9429048 -0 0.3885728 0.9429048 -0.1939468 0.3885728 0.9429048 -0.2773041 0.3885728 0.9429048 -0.3384659 0.3885728 0.9429048 -0.3885728 0.3885728 0.9429048 -0.4317928 0.3885728 0.9429048 -0.470214 0.3885728 0.9429048 -0.5050551 0.3885728 0.9429048 -0.5370987 0.3885728 0.9429048 -0.5668815 0.3885728 0.9429048 -0.5947903 0.3885728 0.9429048 -0.6211144 0.3885728 0.9429048 -0.6460766 0.3885728 0.9429048 -0.6698526 0.3885728 0.9429048 -0.6925839 0.3885728 0.9429048 -0.7143866 0.3885728 0.9429048 -0.7353569 0.3885728 0.9429048 -0.7555758 0.3885728 0.9429048 -0.7751122 0.3885728 0.9429048 -0.7940252 0.3885728 0.9429048 -0.8123661 0.3885728 0.9429048 -0.8301795 0.3885728 0.9429048 -0.8475045 0.3885728 0.9429048 -0.8643761 0.3885728 0.9429048 -0.880825 0.3885728 0.9429048 -0.8968787 0.3885728 0.9429048 -0.9125621 0.3885728 0.9429048 -0.9278974 0.3885728 0.9429048 -0.9429048 0.3885728 0.9429048 -0.9576028 0.3885728 0.9429048 -0.9720079 0.3885728 0.9429048 -0.9861357 0.3885728 0.9429048 -1 0.3885728 0.9429048 -0 0.4317928 0.9429048 -0.1939468 0.4317928 0.9429048 -0.2773041 0.4317928 0.9429048 -0.3384659 0.4317928 0.9429048 -0.3885728 0.4317928 0.9429048 -0.4317928 0.4317928 0.9429048 -0.470214 0.4317928 0.9429048 -0.5050551 0.4317928 0.9429048 -0.5370987 0.4317928 0.9429048 -0.5668815 0.4317928 0.9429048 -0.5947903 0.4317928 0.9429048 -0.6211144 0.4317928 0.9429048 -0.6460766 0.4317928 0.9429048 -0.6698526 0.4317928 0.9429048 -0.6925839 0.4317928 0.9429048 -0.7143866 0.4317928 0.9429048 -0.7353569 0.4317928 0.9429048 -0.7555758 0.4317928 0.9429048 -0.7751122 0.4317928 0.9429048 -0.7940252 0.4317928 0.9429048 -0.8123661 0.4317928 0.9429048 -0.8301795 0.4317928 0.9429048 -0.8475045 0.4317928 0.9429048 -0.8643761 0.4317928 0.9429048 -0.880825 0.4317928 0.9429048 -0.8968787 0.4317928 0.9429048 -0.9125621 0.4317928 0.9429048 -0.9278974 0.4317928 0.9429048 -0.9429048 0.4317928 0.9429048 -0.9576028 0.4317928 0.9429048 -0.9720079 0.4317928 0.9429048 -0.9861357 0.4317928 0.9429048 -1 0.4317928 0.9429048 -0 0.470214 0.9429048 -0.1939468 0.470214 0.9429048 -0.2773041 0.470214 0.9429048 -0.3384659 0.470214 0.9429048 -0.3885728 0.470214 0.9429048 -0.4317928 0.470214 0.9429048 -0.470214 0.470214 0.9429048 -0.5050551 0.470214 0.9429048 -0.5370987 0.470214 0.9429048 -0.5668815 0.470214 0.9429048 -0.5947903 0.470214 0.9429048 -0.6211144 0.470214 0.9429048 -0.6460766 0.470214 0.9429048 -0.6698526 0.470214 0.9429048 -0.6925839 0.470214 0.9429048 -0.7143866 0.470214 0.9429048 -0.7353569 0.470214 0.9429048 -0.7555758 0.470214 0.9429048 -0.7751122 0.470214 0.9429048 -0.7940252 0.470214 0.9429048 -0.8123661 0.470214 0.9429048 -0.8301795 0.470214 0.9429048 -0.8475045 0.470214 0.9429048 -0.8643761 0.470214 0.9429048 -0.880825 0.470214 0.9429048 -0.8968787 0.470214 0.9429048 -0.9125621 0.470214 0.9429048 -0.9278974 0.470214 0.9429048 -0.9429048 0.470214 0.9429048 -0.9576028 0.470214 0.9429048 -0.9720079 0.470214 0.9429048 -0.9861357 0.470214 0.9429048 -1 0.470214 0.9429048 -0 0.5050551 0.9429048 -0.1939468 0.5050551 0.9429048 -0.2773041 0.5050551 0.9429048 -0.3384659 0.5050551 0.9429048 -0.3885728 0.5050551 0.9429048 -0.4317928 0.5050551 0.9429048 -0.470214 0.5050551 0.9429048 -0.5050551 0.5050551 0.9429048 -0.5370987 0.5050551 0.9429048 -0.5668815 0.5050551 0.9429048 -0.5947903 0.5050551 0.9429048 -0.6211144 0.5050551 0.9429048 -0.6460766 0.5050551 0.9429048 -0.6698526 0.5050551 0.9429048 -0.6925839 0.5050551 0.9429048 -0.7143866 0.5050551 0.9429048 -0.7353569 0.5050551 0.9429048 -0.7555758 0.5050551 0.9429048 -0.7751122 0.5050551 0.9429048 -0.7940252 0.5050551 0.9429048 -0.8123661 0.5050551 0.9429048 -0.8301795 0.5050551 0.9429048 -0.8475045 0.5050551 0.9429048 -0.8643761 0.5050551 0.9429048 -0.880825 0.5050551 0.9429048 -0.8968787 0.5050551 0.9429048 -0.9125621 0.5050551 0.9429048 -0.9278974 0.5050551 0.9429048 -0.9429048 0.5050551 0.9429048 -0.9576028 0.5050551 0.9429048 -0.9720079 0.5050551 0.9429048 -0.9861357 0.5050551 0.9429048 -1 0.5050551 0.9429048 -0 0.5370987 0.9429048 -0.1939468 0.5370987 0.9429048 -0.2773041 0.5370987 0.9429048 -0.3384659 0.5370987 0.9429048 -0.3885728 0.5370987 0.9429048 -0.4317928 0.5370987 0.9429048 -0.470214 0.5370987 0.9429048 -0.5050551 0.5370987 0.9429048 -0.5370987 0.5370987 0.9429048 -0.5668815 0.5370987 0.9429048 -0.5947903 0.5370987 0.9429048 -0.6211144 0.5370987 0.9429048 -0.6460766 0.5370987 0.9429048 -0.6698526 0.5370987 0.9429048 -0.6925839 0.5370987 0.9429048 -0.7143866 0.5370987 0.9429048 -0.7353569 0.5370987 0.9429048 -0.7555758 0.5370987 0.9429048 -0.7751122 0.5370987 0.9429048 -0.7940252 0.5370987 0.9429048 -0.8123661 0.5370987 0.9429048 -0.8301795 0.5370987 0.9429048 -0.8475045 0.5370987 0.9429048 -0.8643761 0.5370987 0.9429048 -0.880825 0.5370987 0.9429048 -0.8968787 0.5370987 0.9429048 -0.9125621 0.5370987 0.9429048 -0.9278974 0.5370987 0.9429048 -0.9429048 0.5370987 0.9429048 -0.9576028 0.5370987 0.9429048 -0.9720079 0.5370987 0.9429048 -0.9861357 0.5370987 0.9429048 -1 0.5370987 0.9429048 -0 0.5668815 0.9429048 -0.1939468 0.5668815 0.9429048 -0.2773041 0.5668815 0.9429048 -0.3384659 0.5668815 0.9429048 -0.3885728 0.5668815 0.9429048 -0.4317928 0.5668815 0.9429048 -0.470214 0.5668815 0.9429048 -0.5050551 0.5668815 0.9429048 -0.5370987 0.5668815 0.9429048 -0.5668815 0.5668815 0.9429048 -0.5947903 0.5668815 0.9429048 -0.6211144 0.5668815 0.9429048 -0.6460766 0.5668815 0.9429048 -0.6698526 0.5668815 0.9429048 -0.6925839 0.5668815 0.9429048 -0.7143866 0.5668815 0.9429048 -0.7353569 0.5668815 0.9429048 -0.7555758 0.5668815 0.9429048 -0.7751122 0.5668815 0.9429048 -0.7940252 0.5668815 0.9429048 -0.8123661 0.5668815 0.9429048 -0.8301795 0.5668815 0.9429048 -0.8475045 0.5668815 0.9429048 -0.8643761 0.5668815 0.9429048 -0.880825 0.5668815 0.9429048 -0.8968787 0.5668815 0.9429048 -0.9125621 0.5668815 0.9429048 -0.9278974 0.5668815 0.9429048 -0.9429048 0.5668815 0.9429048 -0.9576028 0.5668815 0.9429048 -0.9720079 0.5668815 0.9429048 -0.9861357 0.5668815 0.9429048 -1 0.5668815 0.9429048 -0 0.5947903 0.9429048 -0.1939468 0.5947903 0.9429048 -0.2773041 0.5947903 0.9429048 -0.3384659 0.5947903 0.9429048 -0.3885728 0.5947903 0.9429048 -0.4317928 0.5947903 0.9429048 -0.470214 0.5947903 0.9429048 -0.5050551 0.5947903 0.9429048 -0.5370987 0.5947903 0.9429048 -0.5668815 0.5947903 0.9429048 -0.5947903 0.5947903 0.9429048 -0.6211144 0.5947903 0.9429048 -0.6460766 0.5947903 0.9429048 -0.6698526 0.5947903 0.9429048 -0.6925839 0.5947903 0.9429048 -0.7143866 0.5947903 0.9429048 -0.7353569 0.5947903 0.9429048 -0.7555758 0.5947903 0.9429048 -0.7751122 0.5947903 0.9429048 -0.7940252 0.5947903 0.9429048 -0.8123661 0.5947903 0.9429048 -0.8301795 0.5947903 0.9429048 -0.8475045 0.5947903 0.9429048 -0.8643761 0.5947903 0.9429048 -0.880825 0.5947903 0.9429048 -0.8968787 0.5947903 0.9429048 -0.9125621 0.5947903 0.9429048 -0.9278974 0.5947903 0.9429048 -0.9429048 0.5947903 0.9429048 -0.9576028 0.5947903 0.9429048 -0.9720079 0.5947903 0.9429048 -0.9861357 0.5947903 0.9429048 -1 0.5947903 0.9429048 -0 0.6211144 0.9429048 -0.1939468 0.6211144 0.9429048 -0.2773041 0.6211144 0.9429048 -0.3384659 0.6211144 0.9429048 -0.3885728 0.6211144 0.9429048 -0.4317928 0.6211144 0.9429048 -0.470214 0.6211144 0.9429048 -0.5050551 0.6211144 0.9429048 -0.5370987 0.6211144 0.9429048 -0.5668815 0.6211144 0.9429048 -0.5947903 0.6211144 0.9429048 -0.6211144 0.6211144 0.9429048 -0.6460766 0.6211144 0.9429048 -0.6698526 0.6211144 0.9429048 -0.6925839 0.6211144 0.9429048 -0.7143866 0.6211144 0.9429048 -0.7353569 0.6211144 0.9429048 -0.7555758 0.6211144 0.9429048 -0.7751122 0.6211144 0.9429048 -0.7940252 0.6211144 0.9429048 -0.8123661 0.6211144 0.9429048 -0.8301795 0.6211144 0.9429048 -0.8475045 0.6211144 0.9429048 -0.8643761 0.6211144 0.9429048 -0.880825 0.6211144 0.9429048 -0.8968787 0.6211144 0.9429048 -0.9125621 0.6211144 0.9429048 -0.9278974 0.6211144 0.9429048 -0.9429048 0.6211144 0.9429048 -0.9576028 0.6211144 0.9429048 -0.9720079 0.6211144 0.9429048 -0.9861357 0.6211144 0.9429048 -1 0.6211144 0.9429048 -0 0.6460766 0.9429048 -0.1939468 0.6460766 0.9429048 -0.2773041 0.6460766 0.9429048 -0.3384659 0.6460766 0.9429048 -0.3885728 0.6460766 0.9429048 -0.4317928 0.6460766 0.9429048 -0.470214 0.6460766 0.9429048 -0.5050551 0.6460766 0.9429048 -0.5370987 0.6460766 0.9429048 -0.5668815 0.6460766 0.9429048 -0.5947903 0.6460766 0.9429048 -0.6211144 0.6460766 0.9429048 -0.6460766 0.6460766 0.9429048 -0.6698526 0.6460766 0.9429048 -0.6925839 0.6460766 0.9429048 -0.7143866 0.6460766 0.9429048 -0.7353569 0.6460766 0.9429048 -0.7555758 0.6460766 0.9429048 -0.7751122 0.6460766 0.9429048 -0.7940252 0.6460766 0.9429048 -0.8123661 0.6460766 0.9429048 -0.8301795 0.6460766 0.9429048 -0.8475045 0.6460766 0.9429048 -0.8643761 0.6460766 0.9429048 -0.880825 0.6460766 0.9429048 -0.8968787 0.6460766 0.9429048 -0.9125621 0.6460766 0.9429048 -0.9278974 0.6460766 0.9429048 -0.9429048 0.6460766 0.9429048 -0.9576028 0.6460766 0.9429048 -0.9720079 0.6460766 0.9429048 -0.9861357 0.6460766 0.9429048 -1 0.6460766 0.9429048 -0 0.6698526 0.9429048 -0.1939468 0.6698526 0.9429048 -0.2773041 0.6698526 0.9429048 -0.3384659 0.6698526 0.9429048 -0.3885728 0.6698526 0.9429048 -0.4317928 0.6698526 0.9429048 -0.470214 0.6698526 0.9429048 -0.5050551 0.6698526 0.9429048 -0.5370987 0.6698526 0.9429048 -0.5668815 0.6698526 0.9429048 -0.5947903 0.6698526 0.9429048 -0.6211144 0.6698526 0.9429048 -0.6460766 0.6698526 0.9429048 -0.6698526 0.6698526 0.9429048 -0.6925839 0.6698526 0.9429048 -0.7143866 0.6698526 0.9429048 -0.7353569 0.6698526 0.9429048 -0.7555758 0.6698526 0.9429048 -0.7751122 0.6698526 0.9429048 -0.7940252 0.6698526 0.9429048 -0.8123661 0.6698526 0.9429048 -0.8301795 0.6698526 0.9429048 -0.8475045 0.6698526 0.9429048 -0.8643761 0.6698526 0.9429048 -0.880825 0.6698526 0.9429048 -0.8968787 0.6698526 0.9429048 -0.9125621 0.6698526 0.9429048 -0.9278974 0.6698526 0.9429048 -0.9429048 0.6698526 0.9429048 -0.9576028 0.6698526 0.9429048 -0.9720079 0.6698526 0.9429048 -0.9861357 0.6698526 0.9429048 -1 0.6698526 0.9429048 -0 0.6925839 0.9429048 -0.1939468 0.6925839 0.9429048 -0.2773041 0.6925839 0.9429048 -0.3384659 0.6925839 0.9429048 -0.3885728 0.6925839 0.9429048 -0.4317928 0.6925839 0.9429048 -0.470214 0.6925839 0.9429048 -0.5050551 0.6925839 0.9429048 -0.5370987 0.6925839 0.9429048 -0.5668815 0.6925839 0.9429048 -0.5947903 0.6925839 0.9429048 -0.6211144 0.6925839 0.9429048 -0.6460766 0.6925839 0.9429048 -0.6698526 0.6925839 0.9429048 -0.6925839 0.6925839 0.9429048 -0.7143866 0.6925839 0.9429048 -0.7353569 0.6925839 0.9429048 -0.7555758 0.6925839 0.9429048 -0.7751122 0.6925839 0.9429048 -0.7940252 0.6925839 0.9429048 -0.8123661 0.6925839 0.9429048 -0.8301795 0.6925839 0.9429048 -0.8475045 0.6925839 0.9429048 -0.8643761 0.6925839 0.9429048 -0.880825 0.6925839 0.9429048 -0.8968787 0.6925839 0.9429048 -0.9125621 0.6925839 0.9429048 -0.9278974 0.6925839 0.9429048 -0.9429048 0.6925839 0.9429048 -0.9576028 0.6925839 0.9429048 -0.9720079 0.6925839 0.9429048 -0.9861357 0.6925839 0.9429048 -1 0.6925839 0.9429048 -0 0.7143866 0.9429048 -0.1939468 0.7143866 0.9429048 -0.2773041 0.7143866 0.9429048 -0.3384659 0.7143866 0.9429048 -0.3885728 0.7143866 0.9429048 -0.4317928 0.7143866 0.9429048 -0.470214 0.7143866 0.9429048 -0.5050551 0.7143866 0.9429048 -0.5370987 0.7143866 0.9429048 -0.5668815 0.7143866 0.9429048 -0.5947903 0.7143866 0.9429048 -0.6211144 0.7143866 0.9429048 -0.6460766 0.7143866 0.9429048 -0.6698526 0.7143866 0.9429048 -0.6925839 0.7143866 0.9429048 -0.7143866 0.7143866 0.9429048 -0.7353569 0.7143866 0.9429048 -0.7555758 0.7143866 0.9429048 -0.7751122 0.7143866 0.9429048 -0.7940252 0.7143866 0.9429048 -0.8123661 0.7143866 0.9429048 -0.8301795 0.7143866 0.9429048 -0.8475045 0.7143866 0.9429048 -0.8643761 0.7143866 0.9429048 -0.880825 0.7143866 0.9429048 -0.8968787 0.7143866 0.9429048 -0.9125621 0.7143866 0.9429048 -0.9278974 0.7143866 0.9429048 -0.9429048 0.7143866 0.9429048 -0.9576028 0.7143866 0.9429048 -0.9720079 0.7143866 0.9429048 -0.9861357 0.7143866 0.9429048 -1 0.7143866 0.9429048 -0 0.7353569 0.9429048 -0.1939468 0.7353569 0.9429048 -0.2773041 0.7353569 0.9429048 -0.3384659 0.7353569 0.9429048 -0.3885728 0.7353569 0.9429048 -0.4317928 0.7353569 0.9429048 -0.470214 0.7353569 0.9429048 -0.5050551 0.7353569 0.9429048 -0.5370987 0.7353569 0.9429048 -0.5668815 0.7353569 0.9429048 -0.5947903 0.7353569 0.9429048 -0.6211144 0.7353569 0.9429048 -0.6460766 0.7353569 0.9429048 -0.6698526 0.7353569 0.9429048 -0.6925839 0.7353569 0.9429048 -0.7143866 0.7353569 0.9429048 -0.7353569 0.7353569 0.9429048 -0.7555758 0.7353569 0.9429048 -0.7751122 0.7353569 0.9429048 -0.7940252 0.7353569 0.9429048 -0.8123661 0.7353569 0.9429048 -0.8301795 0.7353569 0.9429048 -0.8475045 0.7353569 0.9429048 -0.8643761 0.7353569 0.9429048 -0.880825 0.7353569 0.9429048 -0.8968787 0.7353569 0.9429048 -0.9125621 0.7353569 0.9429048 -0.9278974 0.7353569 0.9429048 -0.9429048 0.7353569 0.9429048 -0.9576028 0.7353569 0.9429048 -0.9720079 0.7353569 0.9429048 -0.9861357 0.7353569 0.9429048 -1 0.7353569 0.9429048 -0 0.7555758 0.9429048 -0.1939468 0.7555758 0.9429048 -0.2773041 0.7555758 0.9429048 -0.3384659 0.7555758 0.9429048 -0.3885728 0.7555758 0.9429048 -0.4317928 0.7555758 0.9429048 -0.470214 0.7555758 0.9429048 -0.5050551 0.7555758 0.9429048 -0.5370987 0.7555758 0.9429048 -0.5668815 0.7555758 0.9429048 -0.5947903 0.7555758 0.9429048 -0.6211144 0.7555758 0.9429048 -0.6460766 0.7555758 0.9429048 -0.6698526 0.7555758 0.9429048 -0.6925839 0.7555758 0.9429048 -0.7143866 0.7555758 0.9429048 -0.7353569 0.7555758 0.9429048 -0.7555758 0.7555758 0.9429048 -0.7751122 0.7555758 0.9429048 -0.7940252 0.7555758 0.9429048 -0.8123661 0.7555758 0.9429048 -0.8301795 0.7555758 0.9429048 -0.8475045 0.7555758 0.9429048 -0.8643761 0.7555758 0.9429048 -0.880825 0.7555758 0.9429048 -0.8968787 0.7555758 0.9429048 -0.9125621 0.7555758 0.9429048 -0.9278974 0.7555758 0.9429048 -0.9429048 0.7555758 0.9429048 -0.9576028 0.7555758 0.9429048 -0.9720079 0.7555758 0.9429048 -0.9861357 0.7555758 0.9429048 -1 0.7555758 0.9429048 -0 0.7751122 0.9429048 -0.1939468 0.7751122 0.9429048 -0.2773041 0.7751122 0.9429048 -0.3384659 0.7751122 0.9429048 -0.3885728 0.7751122 0.9429048 -0.4317928 0.7751122 0.9429048 -0.470214 0.7751122 0.9429048 -0.5050551 0.7751122 0.9429048 -0.5370987 0.7751122 0.9429048 -0.5668815 0.7751122 0.9429048 -0.5947903 0.7751122 0.9429048 -0.6211144 0.7751122 0.9429048 -0.6460766 0.7751122 0.9429048 -0.6698526 0.7751122 0.9429048 -0.6925839 0.7751122 0.9429048 -0.7143866 0.7751122 0.9429048 -0.7353569 0.7751122 0.9429048 -0.7555758 0.7751122 0.9429048 -0.7751122 0.7751122 0.9429048 -0.7940252 0.7751122 0.9429048 -0.8123661 0.7751122 0.9429048 -0.8301795 0.7751122 0.9429048 -0.8475045 0.7751122 0.9429048 -0.8643761 0.7751122 0.9429048 -0.880825 0.7751122 0.9429048 -0.8968787 0.7751122 0.9429048 -0.9125621 0.7751122 0.9429048 -0.9278974 0.7751122 0.9429048 -0.9429048 0.7751122 0.9429048 -0.9576028 0.7751122 0.9429048 -0.9720079 0.7751122 0.9429048 -0.9861357 0.7751122 0.9429048 -1 0.7751122 0.9429048 -0 0.7940252 0.9429048 -0.1939468 0.7940252 0.9429048 -0.2773041 0.7940252 0.9429048 -0.3384659 0.7940252 0.9429048 -0.3885728 0.7940252 0.9429048 -0.4317928 0.7940252 0.9429048 -0.470214 0.7940252 0.9429048 -0.5050551 0.7940252 0.9429048 -0.5370987 0.7940252 0.9429048 -0.5668815 0.7940252 0.9429048 -0.5947903 0.7940252 0.9429048 -0.6211144 0.7940252 0.9429048 -0.6460766 0.7940252 0.9429048 -0.6698526 0.7940252 0.9429048 -0.6925839 0.7940252 0.9429048 -0.7143866 0.7940252 0.9429048 -0.7353569 0.7940252 0.9429048 -0.7555758 0.7940252 0.9429048 -0.7751122 0.7940252 0.9429048 -0.7940252 0.7940252 0.9429048 -0.8123661 0.7940252 0.9429048 -0.8301795 0.7940252 0.9429048 -0.8475045 0.7940252 0.9429048 -0.8643761 0.7940252 0.9429048 -0.880825 0.7940252 0.9429048 -0.8968787 0.7940252 0.9429048 -0.9125621 0.7940252 0.9429048 -0.9278974 0.7940252 0.9429048 -0.9429048 0.7940252 0.9429048 -0.9576028 0.7940252 0.9429048 -0.9720079 0.7940252 0.9429048 -0.9861357 0.7940252 0.9429048 -1 0.7940252 0.9429048 -0 0.8123661 0.9429048 -0.1939468 0.8123661 0.9429048 -0.2773041 0.8123661 0.9429048 -0.3384659 0.8123661 0.9429048 -0.3885728 0.8123661 0.9429048 -0.4317928 0.8123661 0.9429048 -0.470214 0.8123661 0.9429048 -0.5050551 0.8123661 0.9429048 -0.5370987 0.8123661 0.9429048 -0.5668815 0.8123661 0.9429048 -0.5947903 0.8123661 0.9429048 -0.6211144 0.8123661 0.9429048 -0.6460766 0.8123661 0.9429048 -0.6698526 0.8123661 0.9429048 -0.6925839 0.8123661 0.9429048 -0.7143866 0.8123661 0.9429048 -0.7353569 0.8123661 0.9429048 -0.7555758 0.8123661 0.9429048 -0.7751122 0.8123661 0.9429048 -0.7940252 0.8123661 0.9429048 -0.8123661 0.8123661 0.9429048 -0.8301795 0.8123661 0.9429048 -0.8475045 0.8123661 0.9429048 -0.8643761 0.8123661 0.9429048 -0.880825 0.8123661 0.9429048 -0.8968787 0.8123661 0.9429048 -0.9125621 0.8123661 0.9429048 -0.9278974 0.8123661 0.9429048 -0.9429048 0.8123661 0.9429048 -0.9576028 0.8123661 0.9429048 -0.9720079 0.8123661 0.9429048 -0.9861357 0.8123661 0.9429048 -1 0.8123661 0.9429048 -0 0.8301795 0.9429048 -0.1939468 0.8301795 0.9429048 -0.2773041 0.8301795 0.9429048 -0.3384659 0.8301795 0.9429048 -0.3885728 0.8301795 0.9429048 -0.4317928 0.8301795 0.9429048 -0.470214 0.8301795 0.9429048 -0.5050551 0.8301795 0.9429048 -0.5370987 0.8301795 0.9429048 -0.5668815 0.8301795 0.9429048 -0.5947903 0.8301795 0.9429048 -0.6211144 0.8301795 0.9429048 -0.6460766 0.8301795 0.9429048 -0.6698526 0.8301795 0.9429048 -0.6925839 0.8301795 0.9429048 -0.7143866 0.8301795 0.9429048 -0.7353569 0.8301795 0.9429048 -0.7555758 0.8301795 0.9429048 -0.7751122 0.8301795 0.9429048 -0.7940252 0.8301795 0.9429048 -0.8123661 0.8301795 0.9429048 -0.8301795 0.8301795 0.9429048 -0.8475045 0.8301795 0.9429048 -0.8643761 0.8301795 0.9429048 -0.880825 0.8301795 0.9429048 -0.8968787 0.8301795 0.9429048 -0.9125621 0.8301795 0.9429048 -0.9278974 0.8301795 0.9429048 -0.9429048 0.8301795 0.9429048 -0.9576028 0.8301795 0.9429048 -0.9720079 0.8301795 0.9429048 -0.9861357 0.8301795 0.9429048 -1 0.8301795 0.9429048 -0 0.8475045 0.9429048 -0.1939468 0.8475045 0.9429048 -0.2773041 0.8475045 0.9429048 -0.3384659 0.8475045 0.9429048 -0.3885728 0.8475045 0.9429048 -0.4317928 0.8475045 0.9429048 -0.470214 0.8475045 0.9429048 -0.5050551 0.8475045 0.9429048 -0.5370987 0.8475045 0.9429048 -0.5668815 0.8475045 0.9429048 -0.5947903 0.8475045 0.9429048 -0.6211144 0.8475045 0.9429048 -0.6460766 0.8475045 0.9429048 -0.6698526 0.8475045 0.9429048 -0.6925839 0.8475045 0.9429048 -0.7143866 0.8475045 0.9429048 -0.7353569 0.8475045 0.9429048 -0.7555758 0.8475045 0.9429048 -0.7751122 0.8475045 0.9429048 -0.7940252 0.8475045 0.9429048 -0.8123661 0.8475045 0.9429048 -0.8301795 0.8475045 0.9429048 -0.8475045 0.8475045 0.9429048 -0.8643761 0.8475045 0.9429048 -0.880825 0.8475045 0.9429048 -0.8968787 0.8475045 0.9429048 -0.9125621 0.8475045 0.9429048 -0.9278974 0.8475045 0.9429048 -0.9429048 0.8475045 0.9429048 -0.9576028 0.8475045 0.9429048 -0.9720079 0.8475045 0.9429048 -0.9861357 0.8475045 0.9429048 -1 0.8475045 0.9429048 -0 0.8643761 0.9429048 -0.1939468 0.8643761 0.9429048 -0.2773041 0.8643761 0.9429048 -0.3384659 0.8643761 0.9429048 -0.3885728 0.8643761 0.9429048 -0.4317928 0.8643761 0.9429048 -0.470214 0.8643761 0.9429048 -0.5050551 0.8643761 0.9429048 -0.5370987 0.8643761 0.9429048 -0.5668815 0.8643761 0.9429048 -0.5947903 0.8643761 0.9429048 -0.6211144 0.8643761 0.9429048 -0.6460766 0.8643761 0.9429048 -0.6698526 0.8643761 0.9429048 -0.6925839 0.8643761 0.9429048 -0.7143866 0.8643761 0.9429048 -0.7353569 0.8643761 0.9429048 -0.7555758 0.8643761 0.9429048 -0.7751122 0.8643761 0.9429048 -0.7940252 0.8643761 0.9429048 -0.8123661 0.8643761 0.9429048 -0.8301795 0.8643761 0.9429048 -0.8475045 0.8643761 0.9429048 -0.8643761 0.8643761 0.9429048 -0.880825 0.8643761 0.9429048 -0.8968787 0.8643761 0.9429048 -0.9125621 0.8643761 0.9429048 -0.9278974 0.8643761 0.9429048 -0.9429048 0.8643761 0.9429048 -0.9576028 0.8643761 0.9429048 -0.9720079 0.8643761 0.9429048 -0.9861357 0.8643761 0.9429048 -1 0.8643761 0.9429048 -0 0.880825 0.9429048 -0.1939468 0.880825 0.9429048 -0.2773041 0.880825 0.9429048 -0.3384659 0.880825 0.9429048 -0.3885728 0.880825 0.9429048 -0.4317928 0.880825 0.9429048 -0.470214 0.880825 0.9429048 -0.5050551 0.880825 0.9429048 -0.5370987 0.880825 0.9429048 -0.5668815 0.880825 0.9429048 -0.5947903 0.880825 0.9429048 -0.6211144 0.880825 0.9429048 -0.6460766 0.880825 0.9429048 -0.6698526 0.880825 0.9429048 -0.6925839 0.880825 0.9429048 -0.7143866 0.880825 0.9429048 -0.7353569 0.880825 0.9429048 -0.7555758 0.880825 0.9429048 -0.7751122 0.880825 0.9429048 -0.7940252 0.880825 0.9429048 -0.8123661 0.880825 0.9429048 -0.8301795 0.880825 0.9429048 -0.8475045 0.880825 0.9429048 -0.8643761 0.880825 0.9429048 -0.880825 0.880825 0.9429048 -0.8968787 0.880825 0.9429048 -0.9125621 0.880825 0.9429048 -0.9278974 0.880825 0.9429048 -0.9429048 0.880825 0.9429048 -0.9576028 0.880825 0.9429048 -0.9720079 0.880825 0.9429048 -0.9861357 0.880825 0.9429048 -1 0.880825 0.9429048 -0 0.8968787 0.9429048 -0.1939468 0.8968787 0.9429048 -0.2773041 0.8968787 0.9429048 -0.3384659 0.8968787 0.9429048 -0.3885728 0.8968787 0.9429048 -0.4317928 0.8968787 0.9429048 -0.470214 0.8968787 0.9429048 -0.5050551 0.8968787 0.9429048 -0.5370987 0.8968787 0.9429048 -0.5668815 0.8968787 0.9429048 -0.5947903 0.8968787 0.9429048 -0.6211144 0.8968787 0.9429048 -0.6460766 0.8968787 0.9429048 -0.6698526 0.8968787 0.9429048 -0.6925839 0.8968787 0.9429048 -0.7143866 0.8968787 0.9429048 -0.7353569 0.8968787 0.9429048 -0.7555758 0.8968787 0.9429048 -0.7751122 0.8968787 0.9429048 -0.7940252 0.8968787 0.9429048 -0.8123661 0.8968787 0.9429048 -0.8301795 0.8968787 0.9429048 -0.8475045 0.8968787 0.9429048 -0.8643761 0.8968787 0.9429048 -0.880825 0.8968787 0.9429048 -0.8968787 0.8968787 0.9429048 -0.9125621 0.8968787 0.9429048 -0.9278974 0.8968787 0.9429048 -0.9429048 0.8968787 0.9429048 -0.9576028 0.8968787 0.9429048 -0.9720079 0.8968787 0.9429048 -0.9861357 0.8968787 0.9429048 -1 0.8968787 0.9429048 -0 0.9125621 0.9429048 -0.1939468 0.9125621 0.9429048 -0.2773041 0.9125621 0.9429048 -0.3384659 0.9125621 0.9429048 -0.3885728 0.9125621 0.9429048 -0.4317928 0.9125621 0.9429048 -0.470214 0.9125621 0.9429048 -0.5050551 0.9125621 0.9429048 -0.5370987 0.9125621 0.9429048 -0.5668815 0.9125621 0.9429048 -0.5947903 0.9125621 0.9429048 -0.6211144 0.9125621 0.9429048 -0.6460766 0.9125621 0.9429048 -0.6698526 0.9125621 0.9429048 -0.6925839 0.9125621 0.9429048 -0.7143866 0.9125621 0.9429048 -0.7353569 0.9125621 0.9429048 -0.7555758 0.9125621 0.9429048 -0.7751122 0.9125621 0.9429048 -0.7940252 0.9125621 0.9429048 -0.8123661 0.9125621 0.9429048 -0.8301795 0.9125621 0.9429048 -0.8475045 0.9125621 0.9429048 -0.8643761 0.9125621 0.9429048 -0.880825 0.9125621 0.9429048 -0.8968787 0.9125621 0.9429048 -0.9125621 0.9125621 0.9429048 -0.9278974 0.9125621 0.9429048 -0.9429048 0.9125621 0.9429048 -0.9576028 0.9125621 0.9429048 -0.9720079 0.9125621 0.9429048 -0.9861357 0.9125621 0.9429048 -1 0.9125621 0.9429048 -0 0.9278974 0.9429048 -0.1939468 0.9278974 0.9429048 -0.2773041 0.9278974 0.9429048 -0.3384659 0.9278974 0.9429048 -0.3885728 0.9278974 0.9429048 -0.4317928 0.9278974 0.9429048 -0.470214 0.9278974 0.9429048 -0.5050551 0.9278974 0.9429048 -0.5370987 0.9278974 0.9429048 -0.5668815 0.9278974 0.9429048 -0.5947903 0.9278974 0.9429048 -0.6211144 0.9278974 0.9429048 -0.6460766 0.9278974 0.9429048 -0.6698526 0.9278974 0.9429048 -0.6925839 0.9278974 0.9429048 -0.7143866 0.9278974 0.9429048 -0.7353569 0.9278974 0.9429048 -0.7555758 0.9278974 0.9429048 -0.7751122 0.9278974 0.9429048 -0.7940252 0.9278974 0.9429048 -0.8123661 0.9278974 0.9429048 -0.8301795 0.9278974 0.9429048 -0.8475045 0.9278974 0.9429048 -0.8643761 0.9278974 0.9429048 -0.880825 0.9278974 0.9429048 -0.8968787 0.9278974 0.9429048 -0.9125621 0.9278974 0.9429048 -0.9278974 0.9278974 0.9429048 -0.9429048 0.9278974 0.9429048 -0.9576028 0.9278974 0.9429048 -0.9720079 0.9278974 0.9429048 -0.9861357 0.9278974 0.9429048 -1 0.9278974 0.9429048 -0 0.9429048 0.9429048 -0.1939468 0.9429048 0.9429048 -0.2773041 0.9429048 0.9429048 -0.3384659 0.9429048 0.9429048 -0.3885728 0.9429048 0.9429048 -0.4317928 0.9429048 0.9429048 -0.470214 0.9429048 0.9429048 -0.5050551 0.9429048 0.9429048 -0.5370987 0.9429048 0.9429048 -0.5668815 0.9429048 0.9429048 -0.5947903 0.9429048 0.9429048 -0.6211144 0.9429048 0.9429048 -0.6460766 0.9429048 0.9429048 -0.6698526 0.9429048 0.9429048 -0.6925839 0.9429048 0.9429048 -0.7143866 0.9429048 0.9429048 -0.7353569 0.9429048 0.9429048 -0.7555758 0.9429048 0.9429048 -0.7751122 0.9429048 0.9429048 -0.7940252 0.9429048 0.9429048 -0.8123661 0.9429048 0.9429048 -0.8301795 0.9429048 0.9429048 -0.8475045 0.9429048 0.9429048 -0.8643761 0.9429048 0.9429048 -0.880825 0.9429048 0.9429048 -0.8968787 0.9429048 0.9429048 -0.9125621 0.9429048 0.9429048 -0.9278974 0.9429048 0.9429048 -0.9429048 0.9429048 0.9429048 -0.9576028 0.9429048 0.9429048 -0.9720079 0.9429048 0.9429048 -0.9861357 0.9429048 0.9429048 -1 0.9429048 0.9429048 -0 0.9576028 0.9429048 -0.1939468 0.9576028 0.9429048 -0.2773041 0.9576028 0.9429048 -0.3384659 0.9576028 0.9429048 -0.3885728 0.9576028 0.9429048 -0.4317928 0.9576028 0.9429048 -0.470214 0.9576028 0.9429048 -0.5050551 0.9576028 0.9429048 -0.5370987 0.9576028 0.9429048 -0.5668815 0.9576028 0.9429048 -0.5947903 0.9576028 0.9429048 -0.6211144 0.9576028 0.9429048 -0.6460766 0.9576028 0.9429048 -0.6698526 0.9576028 0.9429048 -0.6925839 0.9576028 0.9429048 -0.7143866 0.9576028 0.9429048 -0.7353569 0.9576028 0.9429048 -0.7555758 0.9576028 0.9429048 -0.7751122 0.9576028 0.9429048 -0.7940252 0.9576028 0.9429048 -0.8123661 0.9576028 0.9429048 -0.8301795 0.9576028 0.9429048 -0.8475045 0.9576028 0.9429048 -0.8643761 0.9576028 0.9429048 -0.880825 0.9576028 0.9429048 -0.8968787 0.9576028 0.9429048 -0.9125621 0.9576028 0.9429048 -0.9278974 0.9576028 0.9429048 -0.9429048 0.9576028 0.9429048 -0.9576028 0.9576028 0.9429048 -0.9720079 0.9576028 0.9429048 -0.9861357 0.9576028 0.9429048 -1 0.9576028 0.9429048 -0 0.9720079 0.9429048 -0.1939468 0.9720079 0.9429048 -0.2773041 0.9720079 0.9429048 -0.3384659 0.9720079 0.9429048 -0.3885728 0.9720079 0.9429048 -0.4317928 0.9720079 0.9429048 -0.470214 0.9720079 0.9429048 -0.5050551 0.9720079 0.9429048 -0.5370987 0.9720079 0.9429048 -0.5668815 0.9720079 0.9429048 -0.5947903 0.9720079 0.9429048 -0.6211144 0.9720079 0.9429048 -0.6460766 0.9720079 0.9429048 -0.6698526 0.9720079 0.9429048 -0.6925839 0.9720079 0.9429048 -0.7143866 0.9720079 0.9429048 -0.7353569 0.9720079 0.9429048 -0.7555758 0.9720079 0.9429048 -0.7751122 0.9720079 0.9429048 -0.7940252 0.9720079 0.9429048 -0.8123661 0.9720079 0.9429048 -0.8301795 0.9720079 0.9429048 -0.8475045 0.9720079 0.9429048 -0.8643761 0.9720079 0.9429048 -0.880825 0.9720079 0.9429048 -0.8968787 0.9720079 0.9429048 -0.9125621 0.9720079 0.9429048 -0.9278974 0.9720079 0.9429048 -0.9429048 0.9720079 0.9429048 -0.9576028 0.9720079 0.9429048 -0.9720079 0.9720079 0.9429048 -0.9861357 0.9720079 0.9429048 -1 0.9720079 0.9429048 -0 0.9861357 0.9429048 -0.1939468 0.9861357 0.9429048 -0.2773041 0.9861357 0.9429048 -0.3384659 0.9861357 0.9429048 -0.3885728 0.9861357 0.9429048 -0.4317928 0.9861357 0.9429048 -0.470214 0.9861357 0.9429048 -0.5050551 0.9861357 0.9429048 -0.5370987 0.9861357 0.9429048 -0.5668815 0.9861357 0.9429048 -0.5947903 0.9861357 0.9429048 -0.6211144 0.9861357 0.9429048 -0.6460766 0.9861357 0.9429048 -0.6698526 0.9861357 0.9429048 -0.6925839 0.9861357 0.9429048 -0.7143866 0.9861357 0.9429048 -0.7353569 0.9861357 0.9429048 -0.7555758 0.9861357 0.9429048 -0.7751122 0.9861357 0.9429048 -0.7940252 0.9861357 0.9429048 -0.8123661 0.9861357 0.9429048 -0.8301795 0.9861357 0.9429048 -0.8475045 0.9861357 0.9429048 -0.8643761 0.9861357 0.9429048 -0.880825 0.9861357 0.9429048 -0.8968787 0.9861357 0.9429048 -0.9125621 0.9861357 0.9429048 -0.9278974 0.9861357 0.9429048 -0.9429048 0.9861357 0.9429048 -0.9576028 0.9861357 0.9429048 -0.9720079 0.9861357 0.9429048 -0.9861357 0.9861357 0.9429048 -1 0.9861357 0.9429048 -0 1 0.9429048 -0.1939468 1 0.9429048 -0.2773041 1 0.9429048 -0.3384659 1 0.9429048 -0.3885728 1 0.9429048 -0.4317928 1 0.9429048 -0.470214 1 0.9429048 -0.5050551 1 0.9429048 -0.5370987 1 0.9429048 -0.5668815 1 0.9429048 -0.5947903 1 0.9429048 -0.6211144 1 0.9429048 -0.6460766 1 0.9429048 -0.6698526 1 0.9429048 -0.6925839 1 0.9429048 -0.7143866 1 0.9429048 -0.7353569 1 0.9429048 -0.7555758 1 0.9429048 -0.7751122 1 0.9429048 -0.7940252 1 0.9429048 -0.8123661 1 0.9429048 -0.8301795 1 0.9429048 -0.8475045 1 0.9429048 -0.8643761 1 0.9429048 -0.880825 1 0.9429048 -0.8968787 1 0.9429048 -0.9125621 1 0.9429048 -0.9278974 1 0.9429048 -0.9429048 1 0.9429048 -0.9576028 1 0.9429048 -0.9720079 1 0.9429048 -0.9861357 1 0.9429048 -1 1 0.9429048 -0 0 0.9576028 -0.1939468 0 0.9576028 -0.2773041 0 0.9576028 -0.3384659 0 0.9576028 -0.3885728 0 0.9576028 -0.4317928 0 0.9576028 -0.470214 0 0.9576028 -0.5050551 0 0.9576028 -0.5370987 0 0.9576028 -0.5668815 0 0.9576028 -0.5947903 0 0.9576028 -0.6211144 0 0.9576028 -0.6460766 0 0.9576028 -0.6698526 0 0.9576028 -0.6925839 0 0.9576028 -0.7143866 0 0.9576028 -0.7353569 0 0.9576028 -0.7555758 0 0.9576028 -0.7751122 0 0.9576028 -0.7940252 0 0.9576028 -0.8123661 0 0.9576028 -0.8301795 0 0.9576028 -0.8475045 0 0.9576028 -0.8643761 0 0.9576028 -0.880825 0 0.9576028 -0.8968787 0 0.9576028 -0.9125621 0 0.9576028 -0.9278974 0 0.9576028 -0.9429048 0 0.9576028 -0.9576028 0 0.9576028 -0.9720079 0 0.9576028 -0.9861357 0 0.9576028 -1 0 0.9576028 -0 0.1939468 0.9576028 -0.1939468 0.1939468 0.9576028 -0.2773041 0.1939468 0.9576028 -0.3384659 0.1939468 0.9576028 -0.3885728 0.1939468 0.9576028 -0.4317928 0.1939468 0.9576028 -0.470214 0.1939468 0.9576028 -0.5050551 0.1939468 0.9576028 -0.5370987 0.1939468 0.9576028 -0.5668815 0.1939468 0.9576028 -0.5947903 0.1939468 0.9576028 -0.6211144 0.1939468 0.9576028 -0.6460766 0.1939468 0.9576028 -0.6698526 0.1939468 0.9576028 -0.6925839 0.1939468 0.9576028 -0.7143866 0.1939468 0.9576028 -0.7353569 0.1939468 0.9576028 -0.7555758 0.1939468 0.9576028 -0.7751122 0.1939468 0.9576028 -0.7940252 0.1939468 0.9576028 -0.8123661 0.1939468 0.9576028 -0.8301795 0.1939468 0.9576028 -0.8475045 0.1939468 0.9576028 -0.8643761 0.1939468 0.9576028 -0.880825 0.1939468 0.9576028 -0.8968787 0.1939468 0.9576028 -0.9125621 0.1939468 0.9576028 -0.9278974 0.1939468 0.9576028 -0.9429048 0.1939468 0.9576028 -0.9576028 0.1939468 0.9576028 -0.9720079 0.1939468 0.9576028 -0.9861357 0.1939468 0.9576028 -1 0.1939468 0.9576028 -0 0.2773041 0.9576028 -0.1939468 0.2773041 0.9576028 -0.2773041 0.2773041 0.9576028 -0.3384659 0.2773041 0.9576028 -0.3885728 0.2773041 0.9576028 -0.4317928 0.2773041 0.9576028 -0.470214 0.2773041 0.9576028 -0.5050551 0.2773041 0.9576028 -0.5370987 0.2773041 0.9576028 -0.5668815 0.2773041 0.9576028 -0.5947903 0.2773041 0.9576028 -0.6211144 0.2773041 0.9576028 -0.6460766 0.2773041 0.9576028 -0.6698526 0.2773041 0.9576028 -0.6925839 0.2773041 0.9576028 -0.7143866 0.2773041 0.9576028 -0.7353569 0.2773041 0.9576028 -0.7555758 0.2773041 0.9576028 -0.7751122 0.2773041 0.9576028 -0.7940252 0.2773041 0.9576028 -0.8123661 0.2773041 0.9576028 -0.8301795 0.2773041 0.9576028 -0.8475045 0.2773041 0.9576028 -0.8643761 0.2773041 0.9576028 -0.880825 0.2773041 0.9576028 -0.8968787 0.2773041 0.9576028 -0.9125621 0.2773041 0.9576028 -0.9278974 0.2773041 0.9576028 -0.9429048 0.2773041 0.9576028 -0.9576028 0.2773041 0.9576028 -0.9720079 0.2773041 0.9576028 -0.9861357 0.2773041 0.9576028 -1 0.2773041 0.9576028 -0 0.3384659 0.9576028 -0.1939468 0.3384659 0.9576028 -0.2773041 0.3384659 0.9576028 -0.3384659 0.3384659 0.9576028 -0.3885728 0.3384659 0.9576028 -0.4317928 0.3384659 0.9576028 -0.470214 0.3384659 0.9576028 -0.5050551 0.3384659 0.9576028 -0.5370987 0.3384659 0.9576028 -0.5668815 0.3384659 0.9576028 -0.5947903 0.3384659 0.9576028 -0.6211144 0.3384659 0.9576028 -0.6460766 0.3384659 0.9576028 -0.6698526 0.3384659 0.9576028 -0.6925839 0.3384659 0.9576028 -0.7143866 0.3384659 0.9576028 -0.7353569 0.3384659 0.9576028 -0.7555758 0.3384659 0.9576028 -0.7751122 0.3384659 0.9576028 -0.7940252 0.3384659 0.9576028 -0.8123661 0.3384659 0.9576028 -0.8301795 0.3384659 0.9576028 -0.8475045 0.3384659 0.9576028 -0.8643761 0.3384659 0.9576028 -0.880825 0.3384659 0.9576028 -0.8968787 0.3384659 0.9576028 -0.9125621 0.3384659 0.9576028 -0.9278974 0.3384659 0.9576028 -0.9429048 0.3384659 0.9576028 -0.9576028 0.3384659 0.9576028 -0.9720079 0.3384659 0.9576028 -0.9861357 0.3384659 0.9576028 -1 0.3384659 0.9576028 -0 0.3885728 0.9576028 -0.1939468 0.3885728 0.9576028 -0.2773041 0.3885728 0.9576028 -0.3384659 0.3885728 0.9576028 -0.3885728 0.3885728 0.9576028 -0.4317928 0.3885728 0.9576028 -0.470214 0.3885728 0.9576028 -0.5050551 0.3885728 0.9576028 -0.5370987 0.3885728 0.9576028 -0.5668815 0.3885728 0.9576028 -0.5947903 0.3885728 0.9576028 -0.6211144 0.3885728 0.9576028 -0.6460766 0.3885728 0.9576028 -0.6698526 0.3885728 0.9576028 -0.6925839 0.3885728 0.9576028 -0.7143866 0.3885728 0.9576028 -0.7353569 0.3885728 0.9576028 -0.7555758 0.3885728 0.9576028 -0.7751122 0.3885728 0.9576028 -0.7940252 0.3885728 0.9576028 -0.8123661 0.3885728 0.9576028 -0.8301795 0.3885728 0.9576028 -0.8475045 0.3885728 0.9576028 -0.8643761 0.3885728 0.9576028 -0.880825 0.3885728 0.9576028 -0.8968787 0.3885728 0.9576028 -0.9125621 0.3885728 0.9576028 -0.9278974 0.3885728 0.9576028 -0.9429048 0.3885728 0.9576028 -0.9576028 0.3885728 0.9576028 -0.9720079 0.3885728 0.9576028 -0.9861357 0.3885728 0.9576028 -1 0.3885728 0.9576028 -0 0.4317928 0.9576028 -0.1939468 0.4317928 0.9576028 -0.2773041 0.4317928 0.9576028 -0.3384659 0.4317928 0.9576028 -0.3885728 0.4317928 0.9576028 -0.4317928 0.4317928 0.9576028 -0.470214 0.4317928 0.9576028 -0.5050551 0.4317928 0.9576028 -0.5370987 0.4317928 0.9576028 -0.5668815 0.4317928 0.9576028 -0.5947903 0.4317928 0.9576028 -0.6211144 0.4317928 0.9576028 -0.6460766 0.4317928 0.9576028 -0.6698526 0.4317928 0.9576028 -0.6925839 0.4317928 0.9576028 -0.7143866 0.4317928 0.9576028 -0.7353569 0.4317928 0.9576028 -0.7555758 0.4317928 0.9576028 -0.7751122 0.4317928 0.9576028 -0.7940252 0.4317928 0.9576028 -0.8123661 0.4317928 0.9576028 -0.8301795 0.4317928 0.9576028 -0.8475045 0.4317928 0.9576028 -0.8643761 0.4317928 0.9576028 -0.880825 0.4317928 0.9576028 -0.8968787 0.4317928 0.9576028 -0.9125621 0.4317928 0.9576028 -0.9278974 0.4317928 0.9576028 -0.9429048 0.4317928 0.9576028 -0.9576028 0.4317928 0.9576028 -0.9720079 0.4317928 0.9576028 -0.9861357 0.4317928 0.9576028 -1 0.4317928 0.9576028 -0 0.470214 0.9576028 -0.1939468 0.470214 0.9576028 -0.2773041 0.470214 0.9576028 -0.3384659 0.470214 0.9576028 -0.3885728 0.470214 0.9576028 -0.4317928 0.470214 0.9576028 -0.470214 0.470214 0.9576028 -0.5050551 0.470214 0.9576028 -0.5370987 0.470214 0.9576028 -0.5668815 0.470214 0.9576028 -0.5947903 0.470214 0.9576028 -0.6211144 0.470214 0.9576028 -0.6460766 0.470214 0.9576028 -0.6698526 0.470214 0.9576028 -0.6925839 0.470214 0.9576028 -0.7143866 0.470214 0.9576028 -0.7353569 0.470214 0.9576028 -0.7555758 0.470214 0.9576028 -0.7751122 0.470214 0.9576028 -0.7940252 0.470214 0.9576028 -0.8123661 0.470214 0.9576028 -0.8301795 0.470214 0.9576028 -0.8475045 0.470214 0.9576028 -0.8643761 0.470214 0.9576028 -0.880825 0.470214 0.9576028 -0.8968787 0.470214 0.9576028 -0.9125621 0.470214 0.9576028 -0.9278974 0.470214 0.9576028 -0.9429048 0.470214 0.9576028 -0.9576028 0.470214 0.9576028 -0.9720079 0.470214 0.9576028 -0.9861357 0.470214 0.9576028 -1 0.470214 0.9576028 -0 0.5050551 0.9576028 -0.1939468 0.5050551 0.9576028 -0.2773041 0.5050551 0.9576028 -0.3384659 0.5050551 0.9576028 -0.3885728 0.5050551 0.9576028 -0.4317928 0.5050551 0.9576028 -0.470214 0.5050551 0.9576028 -0.5050551 0.5050551 0.9576028 -0.5370987 0.5050551 0.9576028 -0.5668815 0.5050551 0.9576028 -0.5947903 0.5050551 0.9576028 -0.6211144 0.5050551 0.9576028 -0.6460766 0.5050551 0.9576028 -0.6698526 0.5050551 0.9576028 -0.6925839 0.5050551 0.9576028 -0.7143866 0.5050551 0.9576028 -0.7353569 0.5050551 0.9576028 -0.7555758 0.5050551 0.9576028 -0.7751122 0.5050551 0.9576028 -0.7940252 0.5050551 0.9576028 -0.8123661 0.5050551 0.9576028 -0.8301795 0.5050551 0.9576028 -0.8475045 0.5050551 0.9576028 -0.8643761 0.5050551 0.9576028 -0.880825 0.5050551 0.9576028 -0.8968787 0.5050551 0.9576028 -0.9125621 0.5050551 0.9576028 -0.9278974 0.5050551 0.9576028 -0.9429048 0.5050551 0.9576028 -0.9576028 0.5050551 0.9576028 -0.9720079 0.5050551 0.9576028 -0.9861357 0.5050551 0.9576028 -1 0.5050551 0.9576028 -0 0.5370987 0.9576028 -0.1939468 0.5370987 0.9576028 -0.2773041 0.5370987 0.9576028 -0.3384659 0.5370987 0.9576028 -0.3885728 0.5370987 0.9576028 -0.4317928 0.5370987 0.9576028 -0.470214 0.5370987 0.9576028 -0.5050551 0.5370987 0.9576028 -0.5370987 0.5370987 0.9576028 -0.5668815 0.5370987 0.9576028 -0.5947903 0.5370987 0.9576028 -0.6211144 0.5370987 0.9576028 -0.6460766 0.5370987 0.9576028 -0.6698526 0.5370987 0.9576028 -0.6925839 0.5370987 0.9576028 -0.7143866 0.5370987 0.9576028 -0.7353569 0.5370987 0.9576028 -0.7555758 0.5370987 0.9576028 -0.7751122 0.5370987 0.9576028 -0.7940252 0.5370987 0.9576028 -0.8123661 0.5370987 0.9576028 -0.8301795 0.5370987 0.9576028 -0.8475045 0.5370987 0.9576028 -0.8643761 0.5370987 0.9576028 -0.880825 0.5370987 0.9576028 -0.8968787 0.5370987 0.9576028 -0.9125621 0.5370987 0.9576028 -0.9278974 0.5370987 0.9576028 -0.9429048 0.5370987 0.9576028 -0.9576028 0.5370987 0.9576028 -0.9720079 0.5370987 0.9576028 -0.9861357 0.5370987 0.9576028 -1 0.5370987 0.9576028 -0 0.5668815 0.9576028 -0.1939468 0.5668815 0.9576028 -0.2773041 0.5668815 0.9576028 -0.3384659 0.5668815 0.9576028 -0.3885728 0.5668815 0.9576028 -0.4317928 0.5668815 0.9576028 -0.470214 0.5668815 0.9576028 -0.5050551 0.5668815 0.9576028 -0.5370987 0.5668815 0.9576028 -0.5668815 0.5668815 0.9576028 -0.5947903 0.5668815 0.9576028 -0.6211144 0.5668815 0.9576028 -0.6460766 0.5668815 0.9576028 -0.6698526 0.5668815 0.9576028 -0.6925839 0.5668815 0.9576028 -0.7143866 0.5668815 0.9576028 -0.7353569 0.5668815 0.9576028 -0.7555758 0.5668815 0.9576028 -0.7751122 0.5668815 0.9576028 -0.7940252 0.5668815 0.9576028 -0.8123661 0.5668815 0.9576028 -0.8301795 0.5668815 0.9576028 -0.8475045 0.5668815 0.9576028 -0.8643761 0.5668815 0.9576028 -0.880825 0.5668815 0.9576028 -0.8968787 0.5668815 0.9576028 -0.9125621 0.5668815 0.9576028 -0.9278974 0.5668815 0.9576028 -0.9429048 0.5668815 0.9576028 -0.9576028 0.5668815 0.9576028 -0.9720079 0.5668815 0.9576028 -0.9861357 0.5668815 0.9576028 -1 0.5668815 0.9576028 -0 0.5947903 0.9576028 -0.1939468 0.5947903 0.9576028 -0.2773041 0.5947903 0.9576028 -0.3384659 0.5947903 0.9576028 -0.3885728 0.5947903 0.9576028 -0.4317928 0.5947903 0.9576028 -0.470214 0.5947903 0.9576028 -0.5050551 0.5947903 0.9576028 -0.5370987 0.5947903 0.9576028 -0.5668815 0.5947903 0.9576028 -0.5947903 0.5947903 0.9576028 -0.6211144 0.5947903 0.9576028 -0.6460766 0.5947903 0.9576028 -0.6698526 0.5947903 0.9576028 -0.6925839 0.5947903 0.9576028 -0.7143866 0.5947903 0.9576028 -0.7353569 0.5947903 0.9576028 -0.7555758 0.5947903 0.9576028 -0.7751122 0.5947903 0.9576028 -0.7940252 0.5947903 0.9576028 -0.8123661 0.5947903 0.9576028 -0.8301795 0.5947903 0.9576028 -0.8475045 0.5947903 0.9576028 -0.8643761 0.5947903 0.9576028 -0.880825 0.5947903 0.9576028 -0.8968787 0.5947903 0.9576028 -0.9125621 0.5947903 0.9576028 -0.9278974 0.5947903 0.9576028 -0.9429048 0.5947903 0.9576028 -0.9576028 0.5947903 0.9576028 -0.9720079 0.5947903 0.9576028 -0.9861357 0.5947903 0.9576028 -1 0.5947903 0.9576028 -0 0.6211144 0.9576028 -0.1939468 0.6211144 0.9576028 -0.2773041 0.6211144 0.9576028 -0.3384659 0.6211144 0.9576028 -0.3885728 0.6211144 0.9576028 -0.4317928 0.6211144 0.9576028 -0.470214 0.6211144 0.9576028 -0.5050551 0.6211144 0.9576028 -0.5370987 0.6211144 0.9576028 -0.5668815 0.6211144 0.9576028 -0.5947903 0.6211144 0.9576028 -0.6211144 0.6211144 0.9576028 -0.6460766 0.6211144 0.9576028 -0.6698526 0.6211144 0.9576028 -0.6925839 0.6211144 0.9576028 -0.7143866 0.6211144 0.9576028 -0.7353569 0.6211144 0.9576028 -0.7555758 0.6211144 0.9576028 -0.7751122 0.6211144 0.9576028 -0.7940252 0.6211144 0.9576028 -0.8123661 0.6211144 0.9576028 -0.8301795 0.6211144 0.9576028 -0.8475045 0.6211144 0.9576028 -0.8643761 0.6211144 0.9576028 -0.880825 0.6211144 0.9576028 -0.8968787 0.6211144 0.9576028 -0.9125621 0.6211144 0.9576028 -0.9278974 0.6211144 0.9576028 -0.9429048 0.6211144 0.9576028 -0.9576028 0.6211144 0.9576028 -0.9720079 0.6211144 0.9576028 -0.9861357 0.6211144 0.9576028 -1 0.6211144 0.9576028 -0 0.6460766 0.9576028 -0.1939468 0.6460766 0.9576028 -0.2773041 0.6460766 0.9576028 -0.3384659 0.6460766 0.9576028 -0.3885728 0.6460766 0.9576028 -0.4317928 0.6460766 0.9576028 -0.470214 0.6460766 0.9576028 -0.5050551 0.6460766 0.9576028 -0.5370987 0.6460766 0.9576028 -0.5668815 0.6460766 0.9576028 -0.5947903 0.6460766 0.9576028 -0.6211144 0.6460766 0.9576028 -0.6460766 0.6460766 0.9576028 -0.6698526 0.6460766 0.9576028 -0.6925839 0.6460766 0.9576028 -0.7143866 0.6460766 0.9576028 -0.7353569 0.6460766 0.9576028 -0.7555758 0.6460766 0.9576028 -0.7751122 0.6460766 0.9576028 -0.7940252 0.6460766 0.9576028 -0.8123661 0.6460766 0.9576028 -0.8301795 0.6460766 0.9576028 -0.8475045 0.6460766 0.9576028 -0.8643761 0.6460766 0.9576028 -0.880825 0.6460766 0.9576028 -0.8968787 0.6460766 0.9576028 -0.9125621 0.6460766 0.9576028 -0.9278974 0.6460766 0.9576028 -0.9429048 0.6460766 0.9576028 -0.9576028 0.6460766 0.9576028 -0.9720079 0.6460766 0.9576028 -0.9861357 0.6460766 0.9576028 -1 0.6460766 0.9576028 -0 0.6698526 0.9576028 -0.1939468 0.6698526 0.9576028 -0.2773041 0.6698526 0.9576028 -0.3384659 0.6698526 0.9576028 -0.3885728 0.6698526 0.9576028 -0.4317928 0.6698526 0.9576028 -0.470214 0.6698526 0.9576028 -0.5050551 0.6698526 0.9576028 -0.5370987 0.6698526 0.9576028 -0.5668815 0.6698526 0.9576028 -0.5947903 0.6698526 0.9576028 -0.6211144 0.6698526 0.9576028 -0.6460766 0.6698526 0.9576028 -0.6698526 0.6698526 0.9576028 -0.6925839 0.6698526 0.9576028 -0.7143866 0.6698526 0.9576028 -0.7353569 0.6698526 0.9576028 -0.7555758 0.6698526 0.9576028 -0.7751122 0.6698526 0.9576028 -0.7940252 0.6698526 0.9576028 -0.8123661 0.6698526 0.9576028 -0.8301795 0.6698526 0.9576028 -0.8475045 0.6698526 0.9576028 -0.8643761 0.6698526 0.9576028 -0.880825 0.6698526 0.9576028 -0.8968787 0.6698526 0.9576028 -0.9125621 0.6698526 0.9576028 -0.9278974 0.6698526 0.9576028 -0.9429048 0.6698526 0.9576028 -0.9576028 0.6698526 0.9576028 -0.9720079 0.6698526 0.9576028 -0.9861357 0.6698526 0.9576028 -1 0.6698526 0.9576028 -0 0.6925839 0.9576028 -0.1939468 0.6925839 0.9576028 -0.2773041 0.6925839 0.9576028 -0.3384659 0.6925839 0.9576028 -0.3885728 0.6925839 0.9576028 -0.4317928 0.6925839 0.9576028 -0.470214 0.6925839 0.9576028 -0.5050551 0.6925839 0.9576028 -0.5370987 0.6925839 0.9576028 -0.5668815 0.6925839 0.9576028 -0.5947903 0.6925839 0.9576028 -0.6211144 0.6925839 0.9576028 -0.6460766 0.6925839 0.9576028 -0.6698526 0.6925839 0.9576028 -0.6925839 0.6925839 0.9576028 -0.7143866 0.6925839 0.9576028 -0.7353569 0.6925839 0.9576028 -0.7555758 0.6925839 0.9576028 -0.7751122 0.6925839 0.9576028 -0.7940252 0.6925839 0.9576028 -0.8123661 0.6925839 0.9576028 -0.8301795 0.6925839 0.9576028 -0.8475045 0.6925839 0.9576028 -0.8643761 0.6925839 0.9576028 -0.880825 0.6925839 0.9576028 -0.8968787 0.6925839 0.9576028 -0.9125621 0.6925839 0.9576028 -0.9278974 0.6925839 0.9576028 -0.9429048 0.6925839 0.9576028 -0.9576028 0.6925839 0.9576028 -0.9720079 0.6925839 0.9576028 -0.9861357 0.6925839 0.9576028 -1 0.6925839 0.9576028 -0 0.7143866 0.9576028 -0.1939468 0.7143866 0.9576028 -0.2773041 0.7143866 0.9576028 -0.3384659 0.7143866 0.9576028 -0.3885728 0.7143866 0.9576028 -0.4317928 0.7143866 0.9576028 -0.470214 0.7143866 0.9576028 -0.5050551 0.7143866 0.9576028 -0.5370987 0.7143866 0.9576028 -0.5668815 0.7143866 0.9576028 -0.5947903 0.7143866 0.9576028 -0.6211144 0.7143866 0.9576028 -0.6460766 0.7143866 0.9576028 -0.6698526 0.7143866 0.9576028 -0.6925839 0.7143866 0.9576028 -0.7143866 0.7143866 0.9576028 -0.7353569 0.7143866 0.9576028 -0.7555758 0.7143866 0.9576028 -0.7751122 0.7143866 0.9576028 -0.7940252 0.7143866 0.9576028 -0.8123661 0.7143866 0.9576028 -0.8301795 0.7143866 0.9576028 -0.8475045 0.7143866 0.9576028 -0.8643761 0.7143866 0.9576028 -0.880825 0.7143866 0.9576028 -0.8968787 0.7143866 0.9576028 -0.9125621 0.7143866 0.9576028 -0.9278974 0.7143866 0.9576028 -0.9429048 0.7143866 0.9576028 -0.9576028 0.7143866 0.9576028 -0.9720079 0.7143866 0.9576028 -0.9861357 0.7143866 0.9576028 -1 0.7143866 0.9576028 -0 0.7353569 0.9576028 -0.1939468 0.7353569 0.9576028 -0.2773041 0.7353569 0.9576028 -0.3384659 0.7353569 0.9576028 -0.3885728 0.7353569 0.9576028 -0.4317928 0.7353569 0.9576028 -0.470214 0.7353569 0.9576028 -0.5050551 0.7353569 0.9576028 -0.5370987 0.7353569 0.9576028 -0.5668815 0.7353569 0.9576028 -0.5947903 0.7353569 0.9576028 -0.6211144 0.7353569 0.9576028 -0.6460766 0.7353569 0.9576028 -0.6698526 0.7353569 0.9576028 -0.6925839 0.7353569 0.9576028 -0.7143866 0.7353569 0.9576028 -0.7353569 0.7353569 0.9576028 -0.7555758 0.7353569 0.9576028 -0.7751122 0.7353569 0.9576028 -0.7940252 0.7353569 0.9576028 -0.8123661 0.7353569 0.9576028 -0.8301795 0.7353569 0.9576028 -0.8475045 0.7353569 0.9576028 -0.8643761 0.7353569 0.9576028 -0.880825 0.7353569 0.9576028 -0.8968787 0.7353569 0.9576028 -0.9125621 0.7353569 0.9576028 -0.9278974 0.7353569 0.9576028 -0.9429048 0.7353569 0.9576028 -0.9576028 0.7353569 0.9576028 -0.9720079 0.7353569 0.9576028 -0.9861357 0.7353569 0.9576028 -1 0.7353569 0.9576028 -0 0.7555758 0.9576028 -0.1939468 0.7555758 0.9576028 -0.2773041 0.7555758 0.9576028 -0.3384659 0.7555758 0.9576028 -0.3885728 0.7555758 0.9576028 -0.4317928 0.7555758 0.9576028 -0.470214 0.7555758 0.9576028 -0.5050551 0.7555758 0.9576028 -0.5370987 0.7555758 0.9576028 -0.5668815 0.7555758 0.9576028 -0.5947903 0.7555758 0.9576028 -0.6211144 0.7555758 0.9576028 -0.6460766 0.7555758 0.9576028 -0.6698526 0.7555758 0.9576028 -0.6925839 0.7555758 0.9576028 -0.7143866 0.7555758 0.9576028 -0.7353569 0.7555758 0.9576028 -0.7555758 0.7555758 0.9576028 -0.7751122 0.7555758 0.9576028 -0.7940252 0.7555758 0.9576028 -0.8123661 0.7555758 0.9576028 -0.8301795 0.7555758 0.9576028 -0.8475045 0.7555758 0.9576028 -0.8643761 0.7555758 0.9576028 -0.880825 0.7555758 0.9576028 -0.8968787 0.7555758 0.9576028 -0.9125621 0.7555758 0.9576028 -0.9278974 0.7555758 0.9576028 -0.9429048 0.7555758 0.9576028 -0.9576028 0.7555758 0.9576028 -0.9720079 0.7555758 0.9576028 -0.9861357 0.7555758 0.9576028 -1 0.7555758 0.9576028 -0 0.7751122 0.9576028 -0.1939468 0.7751122 0.9576028 -0.2773041 0.7751122 0.9576028 -0.3384659 0.7751122 0.9576028 -0.3885728 0.7751122 0.9576028 -0.4317928 0.7751122 0.9576028 -0.470214 0.7751122 0.9576028 -0.5050551 0.7751122 0.9576028 -0.5370987 0.7751122 0.9576028 -0.5668815 0.7751122 0.9576028 -0.5947903 0.7751122 0.9576028 -0.6211144 0.7751122 0.9576028 -0.6460766 0.7751122 0.9576028 -0.6698526 0.7751122 0.9576028 -0.6925839 0.7751122 0.9576028 -0.7143866 0.7751122 0.9576028 -0.7353569 0.7751122 0.9576028 -0.7555758 0.7751122 0.9576028 -0.7751122 0.7751122 0.9576028 -0.7940252 0.7751122 0.9576028 -0.8123661 0.7751122 0.9576028 -0.8301795 0.7751122 0.9576028 -0.8475045 0.7751122 0.9576028 -0.8643761 0.7751122 0.9576028 -0.880825 0.7751122 0.9576028 -0.8968787 0.7751122 0.9576028 -0.9125621 0.7751122 0.9576028 -0.9278974 0.7751122 0.9576028 -0.9429048 0.7751122 0.9576028 -0.9576028 0.7751122 0.9576028 -0.9720079 0.7751122 0.9576028 -0.9861357 0.7751122 0.9576028 -1 0.7751122 0.9576028 -0 0.7940252 0.9576028 -0.1939468 0.7940252 0.9576028 -0.2773041 0.7940252 0.9576028 -0.3384659 0.7940252 0.9576028 -0.3885728 0.7940252 0.9576028 -0.4317928 0.7940252 0.9576028 -0.470214 0.7940252 0.9576028 -0.5050551 0.7940252 0.9576028 -0.5370987 0.7940252 0.9576028 -0.5668815 0.7940252 0.9576028 -0.5947903 0.7940252 0.9576028 -0.6211144 0.7940252 0.9576028 -0.6460766 0.7940252 0.9576028 -0.6698526 0.7940252 0.9576028 -0.6925839 0.7940252 0.9576028 -0.7143866 0.7940252 0.9576028 -0.7353569 0.7940252 0.9576028 -0.7555758 0.7940252 0.9576028 -0.7751122 0.7940252 0.9576028 -0.7940252 0.7940252 0.9576028 -0.8123661 0.7940252 0.9576028 -0.8301795 0.7940252 0.9576028 -0.8475045 0.7940252 0.9576028 -0.8643761 0.7940252 0.9576028 -0.880825 0.7940252 0.9576028 -0.8968787 0.7940252 0.9576028 -0.9125621 0.7940252 0.9576028 -0.9278974 0.7940252 0.9576028 -0.9429048 0.7940252 0.9576028 -0.9576028 0.7940252 0.9576028 -0.9720079 0.7940252 0.9576028 -0.9861357 0.7940252 0.9576028 -1 0.7940252 0.9576028 -0 0.8123661 0.9576028 -0.1939468 0.8123661 0.9576028 -0.2773041 0.8123661 0.9576028 -0.3384659 0.8123661 0.9576028 -0.3885728 0.8123661 0.9576028 -0.4317928 0.8123661 0.9576028 -0.470214 0.8123661 0.9576028 -0.5050551 0.8123661 0.9576028 -0.5370987 0.8123661 0.9576028 -0.5668815 0.8123661 0.9576028 -0.5947903 0.8123661 0.9576028 -0.6211144 0.8123661 0.9576028 -0.6460766 0.8123661 0.9576028 -0.6698526 0.8123661 0.9576028 -0.6925839 0.8123661 0.9576028 -0.7143866 0.8123661 0.9576028 -0.7353569 0.8123661 0.9576028 -0.7555758 0.8123661 0.9576028 -0.7751122 0.8123661 0.9576028 -0.7940252 0.8123661 0.9576028 -0.8123661 0.8123661 0.9576028 -0.8301795 0.8123661 0.9576028 -0.8475045 0.8123661 0.9576028 -0.8643761 0.8123661 0.9576028 -0.880825 0.8123661 0.9576028 -0.8968787 0.8123661 0.9576028 -0.9125621 0.8123661 0.9576028 -0.9278974 0.8123661 0.9576028 -0.9429048 0.8123661 0.9576028 -0.9576028 0.8123661 0.9576028 -0.9720079 0.8123661 0.9576028 -0.9861357 0.8123661 0.9576028 -1 0.8123661 0.9576028 -0 0.8301795 0.9576028 -0.1939468 0.8301795 0.9576028 -0.2773041 0.8301795 0.9576028 -0.3384659 0.8301795 0.9576028 -0.3885728 0.8301795 0.9576028 -0.4317928 0.8301795 0.9576028 -0.470214 0.8301795 0.9576028 -0.5050551 0.8301795 0.9576028 -0.5370987 0.8301795 0.9576028 -0.5668815 0.8301795 0.9576028 -0.5947903 0.8301795 0.9576028 -0.6211144 0.8301795 0.9576028 -0.6460766 0.8301795 0.9576028 -0.6698526 0.8301795 0.9576028 -0.6925839 0.8301795 0.9576028 -0.7143866 0.8301795 0.9576028 -0.7353569 0.8301795 0.9576028 -0.7555758 0.8301795 0.9576028 -0.7751122 0.8301795 0.9576028 -0.7940252 0.8301795 0.9576028 -0.8123661 0.8301795 0.9576028 -0.8301795 0.8301795 0.9576028 -0.8475045 0.8301795 0.9576028 -0.8643761 0.8301795 0.9576028 -0.880825 0.8301795 0.9576028 -0.8968787 0.8301795 0.9576028 -0.9125621 0.8301795 0.9576028 -0.9278974 0.8301795 0.9576028 -0.9429048 0.8301795 0.9576028 -0.9576028 0.8301795 0.9576028 -0.9720079 0.8301795 0.9576028 -0.9861357 0.8301795 0.9576028 -1 0.8301795 0.9576028 -0 0.8475045 0.9576028 -0.1939468 0.8475045 0.9576028 -0.2773041 0.8475045 0.9576028 -0.3384659 0.8475045 0.9576028 -0.3885728 0.8475045 0.9576028 -0.4317928 0.8475045 0.9576028 -0.470214 0.8475045 0.9576028 -0.5050551 0.8475045 0.9576028 -0.5370987 0.8475045 0.9576028 -0.5668815 0.8475045 0.9576028 -0.5947903 0.8475045 0.9576028 -0.6211144 0.8475045 0.9576028 -0.6460766 0.8475045 0.9576028 -0.6698526 0.8475045 0.9576028 -0.6925839 0.8475045 0.9576028 -0.7143866 0.8475045 0.9576028 -0.7353569 0.8475045 0.9576028 -0.7555758 0.8475045 0.9576028 -0.7751122 0.8475045 0.9576028 -0.7940252 0.8475045 0.9576028 -0.8123661 0.8475045 0.9576028 -0.8301795 0.8475045 0.9576028 -0.8475045 0.8475045 0.9576028 -0.8643761 0.8475045 0.9576028 -0.880825 0.8475045 0.9576028 -0.8968787 0.8475045 0.9576028 -0.9125621 0.8475045 0.9576028 -0.9278974 0.8475045 0.9576028 -0.9429048 0.8475045 0.9576028 -0.9576028 0.8475045 0.9576028 -0.9720079 0.8475045 0.9576028 -0.9861357 0.8475045 0.9576028 -1 0.8475045 0.9576028 -0 0.8643761 0.9576028 -0.1939468 0.8643761 0.9576028 -0.2773041 0.8643761 0.9576028 -0.3384659 0.8643761 0.9576028 -0.3885728 0.8643761 0.9576028 -0.4317928 0.8643761 0.9576028 -0.470214 0.8643761 0.9576028 -0.5050551 0.8643761 0.9576028 -0.5370987 0.8643761 0.9576028 -0.5668815 0.8643761 0.9576028 -0.5947903 0.8643761 0.9576028 -0.6211144 0.8643761 0.9576028 -0.6460766 0.8643761 0.9576028 -0.6698526 0.8643761 0.9576028 -0.6925839 0.8643761 0.9576028 -0.7143866 0.8643761 0.9576028 -0.7353569 0.8643761 0.9576028 -0.7555758 0.8643761 0.9576028 -0.7751122 0.8643761 0.9576028 -0.7940252 0.8643761 0.9576028 -0.8123661 0.8643761 0.9576028 -0.8301795 0.8643761 0.9576028 -0.8475045 0.8643761 0.9576028 -0.8643761 0.8643761 0.9576028 -0.880825 0.8643761 0.9576028 -0.8968787 0.8643761 0.9576028 -0.9125621 0.8643761 0.9576028 -0.9278974 0.8643761 0.9576028 -0.9429048 0.8643761 0.9576028 -0.9576028 0.8643761 0.9576028 -0.9720079 0.8643761 0.9576028 -0.9861357 0.8643761 0.9576028 -1 0.8643761 0.9576028 -0 0.880825 0.9576028 -0.1939468 0.880825 0.9576028 -0.2773041 0.880825 0.9576028 -0.3384659 0.880825 0.9576028 -0.3885728 0.880825 0.9576028 -0.4317928 0.880825 0.9576028 -0.470214 0.880825 0.9576028 -0.5050551 0.880825 0.9576028 -0.5370987 0.880825 0.9576028 -0.5668815 0.880825 0.9576028 -0.5947903 0.880825 0.9576028 -0.6211144 0.880825 0.9576028 -0.6460766 0.880825 0.9576028 -0.6698526 0.880825 0.9576028 -0.6925839 0.880825 0.9576028 -0.7143866 0.880825 0.9576028 -0.7353569 0.880825 0.9576028 -0.7555758 0.880825 0.9576028 -0.7751122 0.880825 0.9576028 -0.7940252 0.880825 0.9576028 -0.8123661 0.880825 0.9576028 -0.8301795 0.880825 0.9576028 -0.8475045 0.880825 0.9576028 -0.8643761 0.880825 0.9576028 -0.880825 0.880825 0.9576028 -0.8968787 0.880825 0.9576028 -0.9125621 0.880825 0.9576028 -0.9278974 0.880825 0.9576028 -0.9429048 0.880825 0.9576028 -0.9576028 0.880825 0.9576028 -0.9720079 0.880825 0.9576028 -0.9861357 0.880825 0.9576028 -1 0.880825 0.9576028 -0 0.8968787 0.9576028 -0.1939468 0.8968787 0.9576028 -0.2773041 0.8968787 0.9576028 -0.3384659 0.8968787 0.9576028 -0.3885728 0.8968787 0.9576028 -0.4317928 0.8968787 0.9576028 -0.470214 0.8968787 0.9576028 -0.5050551 0.8968787 0.9576028 -0.5370987 0.8968787 0.9576028 -0.5668815 0.8968787 0.9576028 -0.5947903 0.8968787 0.9576028 -0.6211144 0.8968787 0.9576028 -0.6460766 0.8968787 0.9576028 -0.6698526 0.8968787 0.9576028 -0.6925839 0.8968787 0.9576028 -0.7143866 0.8968787 0.9576028 -0.7353569 0.8968787 0.9576028 -0.7555758 0.8968787 0.9576028 -0.7751122 0.8968787 0.9576028 -0.7940252 0.8968787 0.9576028 -0.8123661 0.8968787 0.9576028 -0.8301795 0.8968787 0.9576028 -0.8475045 0.8968787 0.9576028 -0.8643761 0.8968787 0.9576028 -0.880825 0.8968787 0.9576028 -0.8968787 0.8968787 0.9576028 -0.9125621 0.8968787 0.9576028 -0.9278974 0.8968787 0.9576028 -0.9429048 0.8968787 0.9576028 -0.9576028 0.8968787 0.9576028 -0.9720079 0.8968787 0.9576028 -0.9861357 0.8968787 0.9576028 -1 0.8968787 0.9576028 -0 0.9125621 0.9576028 -0.1939468 0.9125621 0.9576028 -0.2773041 0.9125621 0.9576028 -0.3384659 0.9125621 0.9576028 -0.3885728 0.9125621 0.9576028 -0.4317928 0.9125621 0.9576028 -0.470214 0.9125621 0.9576028 -0.5050551 0.9125621 0.9576028 -0.5370987 0.9125621 0.9576028 -0.5668815 0.9125621 0.9576028 -0.5947903 0.9125621 0.9576028 -0.6211144 0.9125621 0.9576028 -0.6460766 0.9125621 0.9576028 -0.6698526 0.9125621 0.9576028 -0.6925839 0.9125621 0.9576028 -0.7143866 0.9125621 0.9576028 -0.7353569 0.9125621 0.9576028 -0.7555758 0.9125621 0.9576028 -0.7751122 0.9125621 0.9576028 -0.7940252 0.9125621 0.9576028 -0.8123661 0.9125621 0.9576028 -0.8301795 0.9125621 0.9576028 -0.8475045 0.9125621 0.9576028 -0.8643761 0.9125621 0.9576028 -0.880825 0.9125621 0.9576028 -0.8968787 0.9125621 0.9576028 -0.9125621 0.9125621 0.9576028 -0.9278974 0.9125621 0.9576028 -0.9429048 0.9125621 0.9576028 -0.9576028 0.9125621 0.9576028 -0.9720079 0.9125621 0.9576028 -0.9861357 0.9125621 0.9576028 -1 0.9125621 0.9576028 -0 0.9278974 0.9576028 -0.1939468 0.9278974 0.9576028 -0.2773041 0.9278974 0.9576028 -0.3384659 0.9278974 0.9576028 -0.3885728 0.9278974 0.9576028 -0.4317928 0.9278974 0.9576028 -0.470214 0.9278974 0.9576028 -0.5050551 0.9278974 0.9576028 -0.5370987 0.9278974 0.9576028 -0.5668815 0.9278974 0.9576028 -0.5947903 0.9278974 0.9576028 -0.6211144 0.9278974 0.9576028 -0.6460766 0.9278974 0.9576028 -0.6698526 0.9278974 0.9576028 -0.6925839 0.9278974 0.9576028 -0.7143866 0.9278974 0.9576028 -0.7353569 0.9278974 0.9576028 -0.7555758 0.9278974 0.9576028 -0.7751122 0.9278974 0.9576028 -0.7940252 0.9278974 0.9576028 -0.8123661 0.9278974 0.9576028 -0.8301795 0.9278974 0.9576028 -0.8475045 0.9278974 0.9576028 -0.8643761 0.9278974 0.9576028 -0.880825 0.9278974 0.9576028 -0.8968787 0.9278974 0.9576028 -0.9125621 0.9278974 0.9576028 -0.9278974 0.9278974 0.9576028 -0.9429048 0.9278974 0.9576028 -0.9576028 0.9278974 0.9576028 -0.9720079 0.9278974 0.9576028 -0.9861357 0.9278974 0.9576028 -1 0.9278974 0.9576028 -0 0.9429048 0.9576028 -0.1939468 0.9429048 0.9576028 -0.2773041 0.9429048 0.9576028 -0.3384659 0.9429048 0.9576028 -0.3885728 0.9429048 0.9576028 -0.4317928 0.9429048 0.9576028 -0.470214 0.9429048 0.9576028 -0.5050551 0.9429048 0.9576028 -0.5370987 0.9429048 0.9576028 -0.5668815 0.9429048 0.9576028 -0.5947903 0.9429048 0.9576028 -0.6211144 0.9429048 0.9576028 -0.6460766 0.9429048 0.9576028 -0.6698526 0.9429048 0.9576028 -0.6925839 0.9429048 0.9576028 -0.7143866 0.9429048 0.9576028 -0.7353569 0.9429048 0.9576028 -0.7555758 0.9429048 0.9576028 -0.7751122 0.9429048 0.9576028 -0.7940252 0.9429048 0.9576028 -0.8123661 0.9429048 0.9576028 -0.8301795 0.9429048 0.9576028 -0.8475045 0.9429048 0.9576028 -0.8643761 0.9429048 0.9576028 -0.880825 0.9429048 0.9576028 -0.8968787 0.9429048 0.9576028 -0.9125621 0.9429048 0.9576028 -0.9278974 0.9429048 0.9576028 -0.9429048 0.9429048 0.9576028 -0.9576028 0.9429048 0.9576028 -0.9720079 0.9429048 0.9576028 -0.9861357 0.9429048 0.9576028 -1 0.9429048 0.9576028 -0 0.9576028 0.9576028 -0.1939468 0.9576028 0.9576028 -0.2773041 0.9576028 0.9576028 -0.3384659 0.9576028 0.9576028 -0.3885728 0.9576028 0.9576028 -0.4317928 0.9576028 0.9576028 -0.470214 0.9576028 0.9576028 -0.5050551 0.9576028 0.9576028 -0.5370987 0.9576028 0.9576028 -0.5668815 0.9576028 0.9576028 -0.5947903 0.9576028 0.9576028 -0.6211144 0.9576028 0.9576028 -0.6460766 0.9576028 0.9576028 -0.6698526 0.9576028 0.9576028 -0.6925839 0.9576028 0.9576028 -0.7143866 0.9576028 0.9576028 -0.7353569 0.9576028 0.9576028 -0.7555758 0.9576028 0.9576028 -0.7751122 0.9576028 0.9576028 -0.7940252 0.9576028 0.9576028 -0.8123661 0.9576028 0.9576028 -0.8301795 0.9576028 0.9576028 -0.8475045 0.9576028 0.9576028 -0.8643761 0.9576028 0.9576028 -0.880825 0.9576028 0.9576028 -0.8968787 0.9576028 0.9576028 -0.9125621 0.9576028 0.9576028 -0.9278974 0.9576028 0.9576028 -0.9429048 0.9576028 0.9576028 -0.9576028 0.9576028 0.9576028 -0.9720079 0.9576028 0.9576028 -0.9861357 0.9576028 0.9576028 -1 0.9576028 0.9576028 -0 0.9720079 0.9576028 -0.1939468 0.9720079 0.9576028 -0.2773041 0.9720079 0.9576028 -0.3384659 0.9720079 0.9576028 -0.3885728 0.9720079 0.9576028 -0.4317928 0.9720079 0.9576028 -0.470214 0.9720079 0.9576028 -0.5050551 0.9720079 0.9576028 -0.5370987 0.9720079 0.9576028 -0.5668815 0.9720079 0.9576028 -0.5947903 0.9720079 0.9576028 -0.6211144 0.9720079 0.9576028 -0.6460766 0.9720079 0.9576028 -0.6698526 0.9720079 0.9576028 -0.6925839 0.9720079 0.9576028 -0.7143866 0.9720079 0.9576028 -0.7353569 0.9720079 0.9576028 -0.7555758 0.9720079 0.9576028 -0.7751122 0.9720079 0.9576028 -0.7940252 0.9720079 0.9576028 -0.8123661 0.9720079 0.9576028 -0.8301795 0.9720079 0.9576028 -0.8475045 0.9720079 0.9576028 -0.8643761 0.9720079 0.9576028 -0.880825 0.9720079 0.9576028 -0.8968787 0.9720079 0.9576028 -0.9125621 0.9720079 0.9576028 -0.9278974 0.9720079 0.9576028 -0.9429048 0.9720079 0.9576028 -0.9576028 0.9720079 0.9576028 -0.9720079 0.9720079 0.9576028 -0.9861357 0.9720079 0.9576028 -1 0.9720079 0.9576028 -0 0.9861357 0.9576028 -0.1939468 0.9861357 0.9576028 -0.2773041 0.9861357 0.9576028 -0.3384659 0.9861357 0.9576028 -0.3885728 0.9861357 0.9576028 -0.4317928 0.9861357 0.9576028 -0.470214 0.9861357 0.9576028 -0.5050551 0.9861357 0.9576028 -0.5370987 0.9861357 0.9576028 -0.5668815 0.9861357 0.9576028 -0.5947903 0.9861357 0.9576028 -0.6211144 0.9861357 0.9576028 -0.6460766 0.9861357 0.9576028 -0.6698526 0.9861357 0.9576028 -0.6925839 0.9861357 0.9576028 -0.7143866 0.9861357 0.9576028 -0.7353569 0.9861357 0.9576028 -0.7555758 0.9861357 0.9576028 -0.7751122 0.9861357 0.9576028 -0.7940252 0.9861357 0.9576028 -0.8123661 0.9861357 0.9576028 -0.8301795 0.9861357 0.9576028 -0.8475045 0.9861357 0.9576028 -0.8643761 0.9861357 0.9576028 -0.880825 0.9861357 0.9576028 -0.8968787 0.9861357 0.9576028 -0.9125621 0.9861357 0.9576028 -0.9278974 0.9861357 0.9576028 -0.9429048 0.9861357 0.9576028 -0.9576028 0.9861357 0.9576028 -0.9720079 0.9861357 0.9576028 -0.9861357 0.9861357 0.9576028 -1 0.9861357 0.9576028 -0 1 0.9576028 -0.1939468 1 0.9576028 -0.2773041 1 0.9576028 -0.3384659 1 0.9576028 -0.3885728 1 0.9576028 -0.4317928 1 0.9576028 -0.470214 1 0.9576028 -0.5050551 1 0.9576028 -0.5370987 1 0.9576028 -0.5668815 1 0.9576028 -0.5947903 1 0.9576028 -0.6211144 1 0.9576028 -0.6460766 1 0.9576028 -0.6698526 1 0.9576028 -0.6925839 1 0.9576028 -0.7143866 1 0.9576028 -0.7353569 1 0.9576028 -0.7555758 1 0.9576028 -0.7751122 1 0.9576028 -0.7940252 1 0.9576028 -0.8123661 1 0.9576028 -0.8301795 1 0.9576028 -0.8475045 1 0.9576028 -0.8643761 1 0.9576028 -0.880825 1 0.9576028 -0.8968787 1 0.9576028 -0.9125621 1 0.9576028 -0.9278974 1 0.9576028 -0.9429048 1 0.9576028 -0.9576028 1 0.9576028 -0.9720079 1 0.9576028 -0.9861357 1 0.9576028 -1 1 0.9576028 -0 0 0.9720079 -0.1939468 0 0.9720079 -0.2773041 0 0.9720079 -0.3384659 0 0.9720079 -0.3885728 0 0.9720079 -0.4317928 0 0.9720079 -0.470214 0 0.9720079 -0.5050551 0 0.9720079 -0.5370987 0 0.9720079 -0.5668815 0 0.9720079 -0.5947903 0 0.9720079 -0.6211144 0 0.9720079 -0.6460766 0 0.9720079 -0.6698526 0 0.9720079 -0.6925839 0 0.9720079 -0.7143866 0 0.9720079 -0.7353569 0 0.9720079 -0.7555758 0 0.9720079 -0.7751122 0 0.9720079 -0.7940252 0 0.9720079 -0.8123661 0 0.9720079 -0.8301795 0 0.9720079 -0.8475045 0 0.9720079 -0.8643761 0 0.9720079 -0.880825 0 0.9720079 -0.8968787 0 0.9720079 -0.9125621 0 0.9720079 -0.9278974 0 0.9720079 -0.9429048 0 0.9720079 -0.9576028 0 0.9720079 -0.9720079 0 0.9720079 -0.9861357 0 0.9720079 -1 0 0.9720079 -0 0.1939468 0.9720079 -0.1939468 0.1939468 0.9720079 -0.2773041 0.1939468 0.9720079 -0.3384659 0.1939468 0.9720079 -0.3885728 0.1939468 0.9720079 -0.4317928 0.1939468 0.9720079 -0.470214 0.1939468 0.9720079 -0.5050551 0.1939468 0.9720079 -0.5370987 0.1939468 0.9720079 -0.5668815 0.1939468 0.9720079 -0.5947903 0.1939468 0.9720079 -0.6211144 0.1939468 0.9720079 -0.6460766 0.1939468 0.9720079 -0.6698526 0.1939468 0.9720079 -0.6925839 0.1939468 0.9720079 -0.7143866 0.1939468 0.9720079 -0.7353569 0.1939468 0.9720079 -0.7555758 0.1939468 0.9720079 -0.7751122 0.1939468 0.9720079 -0.7940252 0.1939468 0.9720079 -0.8123661 0.1939468 0.9720079 -0.8301795 0.1939468 0.9720079 -0.8475045 0.1939468 0.9720079 -0.8643761 0.1939468 0.9720079 -0.880825 0.1939468 0.9720079 -0.8968787 0.1939468 0.9720079 -0.9125621 0.1939468 0.9720079 -0.9278974 0.1939468 0.9720079 -0.9429048 0.1939468 0.9720079 -0.9576028 0.1939468 0.9720079 -0.9720079 0.1939468 0.9720079 -0.9861357 0.1939468 0.9720079 -1 0.1939468 0.9720079 -0 0.2773041 0.9720079 -0.1939468 0.2773041 0.9720079 -0.2773041 0.2773041 0.9720079 -0.3384659 0.2773041 0.9720079 -0.3885728 0.2773041 0.9720079 -0.4317928 0.2773041 0.9720079 -0.470214 0.2773041 0.9720079 -0.5050551 0.2773041 0.9720079 -0.5370987 0.2773041 0.9720079 -0.5668815 0.2773041 0.9720079 -0.5947903 0.2773041 0.9720079 -0.6211144 0.2773041 0.9720079 -0.6460766 0.2773041 0.9720079 -0.6698526 0.2773041 0.9720079 -0.6925839 0.2773041 0.9720079 -0.7143866 0.2773041 0.9720079 -0.7353569 0.2773041 0.9720079 -0.7555758 0.2773041 0.9720079 -0.7751122 0.2773041 0.9720079 -0.7940252 0.2773041 0.9720079 -0.8123661 0.2773041 0.9720079 -0.8301795 0.2773041 0.9720079 -0.8475045 0.2773041 0.9720079 -0.8643761 0.2773041 0.9720079 -0.880825 0.2773041 0.9720079 -0.8968787 0.2773041 0.9720079 -0.9125621 0.2773041 0.9720079 -0.9278974 0.2773041 0.9720079 -0.9429048 0.2773041 0.9720079 -0.9576028 0.2773041 0.9720079 -0.9720079 0.2773041 0.9720079 -0.9861357 0.2773041 0.9720079 -1 0.2773041 0.9720079 -0 0.3384659 0.9720079 -0.1939468 0.3384659 0.9720079 -0.2773041 0.3384659 0.9720079 -0.3384659 0.3384659 0.9720079 -0.3885728 0.3384659 0.9720079 -0.4317928 0.3384659 0.9720079 -0.470214 0.3384659 0.9720079 -0.5050551 0.3384659 0.9720079 -0.5370987 0.3384659 0.9720079 -0.5668815 0.3384659 0.9720079 -0.5947903 0.3384659 0.9720079 -0.6211144 0.3384659 0.9720079 -0.6460766 0.3384659 0.9720079 -0.6698526 0.3384659 0.9720079 -0.6925839 0.3384659 0.9720079 -0.7143866 0.3384659 0.9720079 -0.7353569 0.3384659 0.9720079 -0.7555758 0.3384659 0.9720079 -0.7751122 0.3384659 0.9720079 -0.7940252 0.3384659 0.9720079 -0.8123661 0.3384659 0.9720079 -0.8301795 0.3384659 0.9720079 -0.8475045 0.3384659 0.9720079 -0.8643761 0.3384659 0.9720079 -0.880825 0.3384659 0.9720079 -0.8968787 0.3384659 0.9720079 -0.9125621 0.3384659 0.9720079 -0.9278974 0.3384659 0.9720079 -0.9429048 0.3384659 0.9720079 -0.9576028 0.3384659 0.9720079 -0.9720079 0.3384659 0.9720079 -0.9861357 0.3384659 0.9720079 -1 0.3384659 0.9720079 -0 0.3885728 0.9720079 -0.1939468 0.3885728 0.9720079 -0.2773041 0.3885728 0.9720079 -0.3384659 0.3885728 0.9720079 -0.3885728 0.3885728 0.9720079 -0.4317928 0.3885728 0.9720079 -0.470214 0.3885728 0.9720079 -0.5050551 0.3885728 0.9720079 -0.5370987 0.3885728 0.9720079 -0.5668815 0.3885728 0.9720079 -0.5947903 0.3885728 0.9720079 -0.6211144 0.3885728 0.9720079 -0.6460766 0.3885728 0.9720079 -0.6698526 0.3885728 0.9720079 -0.6925839 0.3885728 0.9720079 -0.7143866 0.3885728 0.9720079 -0.7353569 0.3885728 0.9720079 -0.7555758 0.3885728 0.9720079 -0.7751122 0.3885728 0.9720079 -0.7940252 0.3885728 0.9720079 -0.8123661 0.3885728 0.9720079 -0.8301795 0.3885728 0.9720079 -0.8475045 0.3885728 0.9720079 -0.8643761 0.3885728 0.9720079 -0.880825 0.3885728 0.9720079 -0.8968787 0.3885728 0.9720079 -0.9125621 0.3885728 0.9720079 -0.9278974 0.3885728 0.9720079 -0.9429048 0.3885728 0.9720079 -0.9576028 0.3885728 0.9720079 -0.9720079 0.3885728 0.9720079 -0.9861357 0.3885728 0.9720079 -1 0.3885728 0.9720079 -0 0.4317928 0.9720079 -0.1939468 0.4317928 0.9720079 -0.2773041 0.4317928 0.9720079 -0.3384659 0.4317928 0.9720079 -0.3885728 0.4317928 0.9720079 -0.4317928 0.4317928 0.9720079 -0.470214 0.4317928 0.9720079 -0.5050551 0.4317928 0.9720079 -0.5370987 0.4317928 0.9720079 -0.5668815 0.4317928 0.9720079 -0.5947903 0.4317928 0.9720079 -0.6211144 0.4317928 0.9720079 -0.6460766 0.4317928 0.9720079 -0.6698526 0.4317928 0.9720079 -0.6925839 0.4317928 0.9720079 -0.7143866 0.4317928 0.9720079 -0.7353569 0.4317928 0.9720079 -0.7555758 0.4317928 0.9720079 -0.7751122 0.4317928 0.9720079 -0.7940252 0.4317928 0.9720079 -0.8123661 0.4317928 0.9720079 -0.8301795 0.4317928 0.9720079 -0.8475045 0.4317928 0.9720079 -0.8643761 0.4317928 0.9720079 -0.880825 0.4317928 0.9720079 -0.8968787 0.4317928 0.9720079 -0.9125621 0.4317928 0.9720079 -0.9278974 0.4317928 0.9720079 -0.9429048 0.4317928 0.9720079 -0.9576028 0.4317928 0.9720079 -0.9720079 0.4317928 0.9720079 -0.9861357 0.4317928 0.9720079 -1 0.4317928 0.9720079 -0 0.470214 0.9720079 -0.1939468 0.470214 0.9720079 -0.2773041 0.470214 0.9720079 -0.3384659 0.470214 0.9720079 -0.3885728 0.470214 0.9720079 -0.4317928 0.470214 0.9720079 -0.470214 0.470214 0.9720079 -0.5050551 0.470214 0.9720079 -0.5370987 0.470214 0.9720079 -0.5668815 0.470214 0.9720079 -0.5947903 0.470214 0.9720079 -0.6211144 0.470214 0.9720079 -0.6460766 0.470214 0.9720079 -0.6698526 0.470214 0.9720079 -0.6925839 0.470214 0.9720079 -0.7143866 0.470214 0.9720079 -0.7353569 0.470214 0.9720079 -0.7555758 0.470214 0.9720079 -0.7751122 0.470214 0.9720079 -0.7940252 0.470214 0.9720079 -0.8123661 0.470214 0.9720079 -0.8301795 0.470214 0.9720079 -0.8475045 0.470214 0.9720079 -0.8643761 0.470214 0.9720079 -0.880825 0.470214 0.9720079 -0.8968787 0.470214 0.9720079 -0.9125621 0.470214 0.9720079 -0.9278974 0.470214 0.9720079 -0.9429048 0.470214 0.9720079 -0.9576028 0.470214 0.9720079 -0.9720079 0.470214 0.9720079 -0.9861357 0.470214 0.9720079 -1 0.470214 0.9720079 -0 0.5050551 0.9720079 -0.1939468 0.5050551 0.9720079 -0.2773041 0.5050551 0.9720079 -0.3384659 0.5050551 0.9720079 -0.3885728 0.5050551 0.9720079 -0.4317928 0.5050551 0.9720079 -0.470214 0.5050551 0.9720079 -0.5050551 0.5050551 0.9720079 -0.5370987 0.5050551 0.9720079 -0.5668815 0.5050551 0.9720079 -0.5947903 0.5050551 0.9720079 -0.6211144 0.5050551 0.9720079 -0.6460766 0.5050551 0.9720079 -0.6698526 0.5050551 0.9720079 -0.6925839 0.5050551 0.9720079 -0.7143866 0.5050551 0.9720079 -0.7353569 0.5050551 0.9720079 -0.7555758 0.5050551 0.9720079 -0.7751122 0.5050551 0.9720079 -0.7940252 0.5050551 0.9720079 -0.8123661 0.5050551 0.9720079 -0.8301795 0.5050551 0.9720079 -0.8475045 0.5050551 0.9720079 -0.8643761 0.5050551 0.9720079 -0.880825 0.5050551 0.9720079 -0.8968787 0.5050551 0.9720079 -0.9125621 0.5050551 0.9720079 -0.9278974 0.5050551 0.9720079 -0.9429048 0.5050551 0.9720079 -0.9576028 0.5050551 0.9720079 -0.9720079 0.5050551 0.9720079 -0.9861357 0.5050551 0.9720079 -1 0.5050551 0.9720079 -0 0.5370987 0.9720079 -0.1939468 0.5370987 0.9720079 -0.2773041 0.5370987 0.9720079 -0.3384659 0.5370987 0.9720079 -0.3885728 0.5370987 0.9720079 -0.4317928 0.5370987 0.9720079 -0.470214 0.5370987 0.9720079 -0.5050551 0.5370987 0.9720079 -0.5370987 0.5370987 0.9720079 -0.5668815 0.5370987 0.9720079 -0.5947903 0.5370987 0.9720079 -0.6211144 0.5370987 0.9720079 -0.6460766 0.5370987 0.9720079 -0.6698526 0.5370987 0.9720079 -0.6925839 0.5370987 0.9720079 -0.7143866 0.5370987 0.9720079 -0.7353569 0.5370987 0.9720079 -0.7555758 0.5370987 0.9720079 -0.7751122 0.5370987 0.9720079 -0.7940252 0.5370987 0.9720079 -0.8123661 0.5370987 0.9720079 -0.8301795 0.5370987 0.9720079 -0.8475045 0.5370987 0.9720079 -0.8643761 0.5370987 0.9720079 -0.880825 0.5370987 0.9720079 -0.8968787 0.5370987 0.9720079 -0.9125621 0.5370987 0.9720079 -0.9278974 0.5370987 0.9720079 -0.9429048 0.5370987 0.9720079 -0.9576028 0.5370987 0.9720079 -0.9720079 0.5370987 0.9720079 -0.9861357 0.5370987 0.9720079 -1 0.5370987 0.9720079 -0 0.5668815 0.9720079 -0.1939468 0.5668815 0.9720079 -0.2773041 0.5668815 0.9720079 -0.3384659 0.5668815 0.9720079 -0.3885728 0.5668815 0.9720079 -0.4317928 0.5668815 0.9720079 -0.470214 0.5668815 0.9720079 -0.5050551 0.5668815 0.9720079 -0.5370987 0.5668815 0.9720079 -0.5668815 0.5668815 0.9720079 -0.5947903 0.5668815 0.9720079 -0.6211144 0.5668815 0.9720079 -0.6460766 0.5668815 0.9720079 -0.6698526 0.5668815 0.9720079 -0.6925839 0.5668815 0.9720079 -0.7143866 0.5668815 0.9720079 -0.7353569 0.5668815 0.9720079 -0.7555758 0.5668815 0.9720079 -0.7751122 0.5668815 0.9720079 -0.7940252 0.5668815 0.9720079 -0.8123661 0.5668815 0.9720079 -0.8301795 0.5668815 0.9720079 -0.8475045 0.5668815 0.9720079 -0.8643761 0.5668815 0.9720079 -0.880825 0.5668815 0.9720079 -0.8968787 0.5668815 0.9720079 -0.9125621 0.5668815 0.9720079 -0.9278974 0.5668815 0.9720079 -0.9429048 0.5668815 0.9720079 -0.9576028 0.5668815 0.9720079 -0.9720079 0.5668815 0.9720079 -0.9861357 0.5668815 0.9720079 -1 0.5668815 0.9720079 -0 0.5947903 0.9720079 -0.1939468 0.5947903 0.9720079 -0.2773041 0.5947903 0.9720079 -0.3384659 0.5947903 0.9720079 -0.3885728 0.5947903 0.9720079 -0.4317928 0.5947903 0.9720079 -0.470214 0.5947903 0.9720079 -0.5050551 0.5947903 0.9720079 -0.5370987 0.5947903 0.9720079 -0.5668815 0.5947903 0.9720079 -0.5947903 0.5947903 0.9720079 -0.6211144 0.5947903 0.9720079 -0.6460766 0.5947903 0.9720079 -0.6698526 0.5947903 0.9720079 -0.6925839 0.5947903 0.9720079 -0.7143866 0.5947903 0.9720079 -0.7353569 0.5947903 0.9720079 -0.7555758 0.5947903 0.9720079 -0.7751122 0.5947903 0.9720079 -0.7940252 0.5947903 0.9720079 -0.8123661 0.5947903 0.9720079 -0.8301795 0.5947903 0.9720079 -0.8475045 0.5947903 0.9720079 -0.8643761 0.5947903 0.9720079 -0.880825 0.5947903 0.9720079 -0.8968787 0.5947903 0.9720079 -0.9125621 0.5947903 0.9720079 -0.9278974 0.5947903 0.9720079 -0.9429048 0.5947903 0.9720079 -0.9576028 0.5947903 0.9720079 -0.9720079 0.5947903 0.9720079 -0.9861357 0.5947903 0.9720079 -1 0.5947903 0.9720079 -0 0.6211144 0.9720079 -0.1939468 0.6211144 0.9720079 -0.2773041 0.6211144 0.9720079 -0.3384659 0.6211144 0.9720079 -0.3885728 0.6211144 0.9720079 -0.4317928 0.6211144 0.9720079 -0.470214 0.6211144 0.9720079 -0.5050551 0.6211144 0.9720079 -0.5370987 0.6211144 0.9720079 -0.5668815 0.6211144 0.9720079 -0.5947903 0.6211144 0.9720079 -0.6211144 0.6211144 0.9720079 -0.6460766 0.6211144 0.9720079 -0.6698526 0.6211144 0.9720079 -0.6925839 0.6211144 0.9720079 -0.7143866 0.6211144 0.9720079 -0.7353569 0.6211144 0.9720079 -0.7555758 0.6211144 0.9720079 -0.7751122 0.6211144 0.9720079 -0.7940252 0.6211144 0.9720079 -0.8123661 0.6211144 0.9720079 -0.8301795 0.6211144 0.9720079 -0.8475045 0.6211144 0.9720079 -0.8643761 0.6211144 0.9720079 -0.880825 0.6211144 0.9720079 -0.8968787 0.6211144 0.9720079 -0.9125621 0.6211144 0.9720079 -0.9278974 0.6211144 0.9720079 -0.9429048 0.6211144 0.9720079 -0.9576028 0.6211144 0.9720079 -0.9720079 0.6211144 0.9720079 -0.9861357 0.6211144 0.9720079 -1 0.6211144 0.9720079 -0 0.6460766 0.9720079 -0.1939468 0.6460766 0.9720079 -0.2773041 0.6460766 0.9720079 -0.3384659 0.6460766 0.9720079 -0.3885728 0.6460766 0.9720079 -0.4317928 0.6460766 0.9720079 -0.470214 0.6460766 0.9720079 -0.5050551 0.6460766 0.9720079 -0.5370987 0.6460766 0.9720079 -0.5668815 0.6460766 0.9720079 -0.5947903 0.6460766 0.9720079 -0.6211144 0.6460766 0.9720079 -0.6460766 0.6460766 0.9720079 -0.6698526 0.6460766 0.9720079 -0.6925839 0.6460766 0.9720079 -0.7143866 0.6460766 0.9720079 -0.7353569 0.6460766 0.9720079 -0.7555758 0.6460766 0.9720079 -0.7751122 0.6460766 0.9720079 -0.7940252 0.6460766 0.9720079 -0.8123661 0.6460766 0.9720079 -0.8301795 0.6460766 0.9720079 -0.8475045 0.6460766 0.9720079 -0.8643761 0.6460766 0.9720079 -0.880825 0.6460766 0.9720079 -0.8968787 0.6460766 0.9720079 -0.9125621 0.6460766 0.9720079 -0.9278974 0.6460766 0.9720079 -0.9429048 0.6460766 0.9720079 -0.9576028 0.6460766 0.9720079 -0.9720079 0.6460766 0.9720079 -0.9861357 0.6460766 0.9720079 -1 0.6460766 0.9720079 -0 0.6698526 0.9720079 -0.1939468 0.6698526 0.9720079 -0.2773041 0.6698526 0.9720079 -0.3384659 0.6698526 0.9720079 -0.3885728 0.6698526 0.9720079 -0.4317928 0.6698526 0.9720079 -0.470214 0.6698526 0.9720079 -0.5050551 0.6698526 0.9720079 -0.5370987 0.6698526 0.9720079 -0.5668815 0.6698526 0.9720079 -0.5947903 0.6698526 0.9720079 -0.6211144 0.6698526 0.9720079 -0.6460766 0.6698526 0.9720079 -0.6698526 0.6698526 0.9720079 -0.6925839 0.6698526 0.9720079 -0.7143866 0.6698526 0.9720079 -0.7353569 0.6698526 0.9720079 -0.7555758 0.6698526 0.9720079 -0.7751122 0.6698526 0.9720079 -0.7940252 0.6698526 0.9720079 -0.8123661 0.6698526 0.9720079 -0.8301795 0.6698526 0.9720079 -0.8475045 0.6698526 0.9720079 -0.8643761 0.6698526 0.9720079 -0.880825 0.6698526 0.9720079 -0.8968787 0.6698526 0.9720079 -0.9125621 0.6698526 0.9720079 -0.9278974 0.6698526 0.9720079 -0.9429048 0.6698526 0.9720079 -0.9576028 0.6698526 0.9720079 -0.9720079 0.6698526 0.9720079 -0.9861357 0.6698526 0.9720079 -1 0.6698526 0.9720079 -0 0.6925839 0.9720079 -0.1939468 0.6925839 0.9720079 -0.2773041 0.6925839 0.9720079 -0.3384659 0.6925839 0.9720079 -0.3885728 0.6925839 0.9720079 -0.4317928 0.6925839 0.9720079 -0.470214 0.6925839 0.9720079 -0.5050551 0.6925839 0.9720079 -0.5370987 0.6925839 0.9720079 -0.5668815 0.6925839 0.9720079 -0.5947903 0.6925839 0.9720079 -0.6211144 0.6925839 0.9720079 -0.6460766 0.6925839 0.9720079 -0.6698526 0.6925839 0.9720079 -0.6925839 0.6925839 0.9720079 -0.7143866 0.6925839 0.9720079 -0.7353569 0.6925839 0.9720079 -0.7555758 0.6925839 0.9720079 -0.7751122 0.6925839 0.9720079 -0.7940252 0.6925839 0.9720079 -0.8123661 0.6925839 0.9720079 -0.8301795 0.6925839 0.9720079 -0.8475045 0.6925839 0.9720079 -0.8643761 0.6925839 0.9720079 -0.880825 0.6925839 0.9720079 -0.8968787 0.6925839 0.9720079 -0.9125621 0.6925839 0.9720079 -0.9278974 0.6925839 0.9720079 -0.9429048 0.6925839 0.9720079 -0.9576028 0.6925839 0.9720079 -0.9720079 0.6925839 0.9720079 -0.9861357 0.6925839 0.9720079 -1 0.6925839 0.9720079 -0 0.7143866 0.9720079 -0.1939468 0.7143866 0.9720079 -0.2773041 0.7143866 0.9720079 -0.3384659 0.7143866 0.9720079 -0.3885728 0.7143866 0.9720079 -0.4317928 0.7143866 0.9720079 -0.470214 0.7143866 0.9720079 -0.5050551 0.7143866 0.9720079 -0.5370987 0.7143866 0.9720079 -0.5668815 0.7143866 0.9720079 -0.5947903 0.7143866 0.9720079 -0.6211144 0.7143866 0.9720079 -0.6460766 0.7143866 0.9720079 -0.6698526 0.7143866 0.9720079 -0.6925839 0.7143866 0.9720079 -0.7143866 0.7143866 0.9720079 -0.7353569 0.7143866 0.9720079 -0.7555758 0.7143866 0.9720079 -0.7751122 0.7143866 0.9720079 -0.7940252 0.7143866 0.9720079 -0.8123661 0.7143866 0.9720079 -0.8301795 0.7143866 0.9720079 -0.8475045 0.7143866 0.9720079 -0.8643761 0.7143866 0.9720079 -0.880825 0.7143866 0.9720079 -0.8968787 0.7143866 0.9720079 -0.9125621 0.7143866 0.9720079 -0.9278974 0.7143866 0.9720079 -0.9429048 0.7143866 0.9720079 -0.9576028 0.7143866 0.9720079 -0.9720079 0.7143866 0.9720079 -0.9861357 0.7143866 0.9720079 -1 0.7143866 0.9720079 -0 0.7353569 0.9720079 -0.1939468 0.7353569 0.9720079 -0.2773041 0.7353569 0.9720079 -0.3384659 0.7353569 0.9720079 -0.3885728 0.7353569 0.9720079 -0.4317928 0.7353569 0.9720079 -0.470214 0.7353569 0.9720079 -0.5050551 0.7353569 0.9720079 -0.5370987 0.7353569 0.9720079 -0.5668815 0.7353569 0.9720079 -0.5947903 0.7353569 0.9720079 -0.6211144 0.7353569 0.9720079 -0.6460766 0.7353569 0.9720079 -0.6698526 0.7353569 0.9720079 -0.6925839 0.7353569 0.9720079 -0.7143866 0.7353569 0.9720079 -0.7353569 0.7353569 0.9720079 -0.7555758 0.7353569 0.9720079 -0.7751122 0.7353569 0.9720079 -0.7940252 0.7353569 0.9720079 -0.8123661 0.7353569 0.9720079 -0.8301795 0.7353569 0.9720079 -0.8475045 0.7353569 0.9720079 -0.8643761 0.7353569 0.9720079 -0.880825 0.7353569 0.9720079 -0.8968787 0.7353569 0.9720079 -0.9125621 0.7353569 0.9720079 -0.9278974 0.7353569 0.9720079 -0.9429048 0.7353569 0.9720079 -0.9576028 0.7353569 0.9720079 -0.9720079 0.7353569 0.9720079 -0.9861357 0.7353569 0.9720079 -1 0.7353569 0.9720079 -0 0.7555758 0.9720079 -0.1939468 0.7555758 0.9720079 -0.2773041 0.7555758 0.9720079 -0.3384659 0.7555758 0.9720079 -0.3885728 0.7555758 0.9720079 -0.4317928 0.7555758 0.9720079 -0.470214 0.7555758 0.9720079 -0.5050551 0.7555758 0.9720079 -0.5370987 0.7555758 0.9720079 -0.5668815 0.7555758 0.9720079 -0.5947903 0.7555758 0.9720079 -0.6211144 0.7555758 0.9720079 -0.6460766 0.7555758 0.9720079 -0.6698526 0.7555758 0.9720079 -0.6925839 0.7555758 0.9720079 -0.7143866 0.7555758 0.9720079 -0.7353569 0.7555758 0.9720079 -0.7555758 0.7555758 0.9720079 -0.7751122 0.7555758 0.9720079 -0.7940252 0.7555758 0.9720079 -0.8123661 0.7555758 0.9720079 -0.8301795 0.7555758 0.9720079 -0.8475045 0.7555758 0.9720079 -0.8643761 0.7555758 0.9720079 -0.880825 0.7555758 0.9720079 -0.8968787 0.7555758 0.9720079 -0.9125621 0.7555758 0.9720079 -0.9278974 0.7555758 0.9720079 -0.9429048 0.7555758 0.9720079 -0.9576028 0.7555758 0.9720079 -0.9720079 0.7555758 0.9720079 -0.9861357 0.7555758 0.9720079 -1 0.7555758 0.9720079 -0 0.7751122 0.9720079 -0.1939468 0.7751122 0.9720079 -0.2773041 0.7751122 0.9720079 -0.3384659 0.7751122 0.9720079 -0.3885728 0.7751122 0.9720079 -0.4317928 0.7751122 0.9720079 -0.470214 0.7751122 0.9720079 -0.5050551 0.7751122 0.9720079 -0.5370987 0.7751122 0.9720079 -0.5668815 0.7751122 0.9720079 -0.5947903 0.7751122 0.9720079 -0.6211144 0.7751122 0.9720079 -0.6460766 0.7751122 0.9720079 -0.6698526 0.7751122 0.9720079 -0.6925839 0.7751122 0.9720079 -0.7143866 0.7751122 0.9720079 -0.7353569 0.7751122 0.9720079 -0.7555758 0.7751122 0.9720079 -0.7751122 0.7751122 0.9720079 -0.7940252 0.7751122 0.9720079 -0.8123661 0.7751122 0.9720079 -0.8301795 0.7751122 0.9720079 -0.8475045 0.7751122 0.9720079 -0.8643761 0.7751122 0.9720079 -0.880825 0.7751122 0.9720079 -0.8968787 0.7751122 0.9720079 -0.9125621 0.7751122 0.9720079 -0.9278974 0.7751122 0.9720079 -0.9429048 0.7751122 0.9720079 -0.9576028 0.7751122 0.9720079 -0.9720079 0.7751122 0.9720079 -0.9861357 0.7751122 0.9720079 -1 0.7751122 0.9720079 -0 0.7940252 0.9720079 -0.1939468 0.7940252 0.9720079 -0.2773041 0.7940252 0.9720079 -0.3384659 0.7940252 0.9720079 -0.3885728 0.7940252 0.9720079 -0.4317928 0.7940252 0.9720079 -0.470214 0.7940252 0.9720079 -0.5050551 0.7940252 0.9720079 -0.5370987 0.7940252 0.9720079 -0.5668815 0.7940252 0.9720079 -0.5947903 0.7940252 0.9720079 -0.6211144 0.7940252 0.9720079 -0.6460766 0.7940252 0.9720079 -0.6698526 0.7940252 0.9720079 -0.6925839 0.7940252 0.9720079 -0.7143866 0.7940252 0.9720079 -0.7353569 0.7940252 0.9720079 -0.7555758 0.7940252 0.9720079 -0.7751122 0.7940252 0.9720079 -0.7940252 0.7940252 0.9720079 -0.8123661 0.7940252 0.9720079 -0.8301795 0.7940252 0.9720079 -0.8475045 0.7940252 0.9720079 -0.8643761 0.7940252 0.9720079 -0.880825 0.7940252 0.9720079 -0.8968787 0.7940252 0.9720079 -0.9125621 0.7940252 0.9720079 -0.9278974 0.7940252 0.9720079 -0.9429048 0.7940252 0.9720079 -0.9576028 0.7940252 0.9720079 -0.9720079 0.7940252 0.9720079 -0.9861357 0.7940252 0.9720079 -1 0.7940252 0.9720079 -0 0.8123661 0.9720079 -0.1939468 0.8123661 0.9720079 -0.2773041 0.8123661 0.9720079 -0.3384659 0.8123661 0.9720079 -0.3885728 0.8123661 0.9720079 -0.4317928 0.8123661 0.9720079 -0.470214 0.8123661 0.9720079 -0.5050551 0.8123661 0.9720079 -0.5370987 0.8123661 0.9720079 -0.5668815 0.8123661 0.9720079 -0.5947903 0.8123661 0.9720079 -0.6211144 0.8123661 0.9720079 -0.6460766 0.8123661 0.9720079 -0.6698526 0.8123661 0.9720079 -0.6925839 0.8123661 0.9720079 -0.7143866 0.8123661 0.9720079 -0.7353569 0.8123661 0.9720079 -0.7555758 0.8123661 0.9720079 -0.7751122 0.8123661 0.9720079 -0.7940252 0.8123661 0.9720079 -0.8123661 0.8123661 0.9720079 -0.8301795 0.8123661 0.9720079 -0.8475045 0.8123661 0.9720079 -0.8643761 0.8123661 0.9720079 -0.880825 0.8123661 0.9720079 -0.8968787 0.8123661 0.9720079 -0.9125621 0.8123661 0.9720079 -0.9278974 0.8123661 0.9720079 -0.9429048 0.8123661 0.9720079 -0.9576028 0.8123661 0.9720079 -0.9720079 0.8123661 0.9720079 -0.9861357 0.8123661 0.9720079 -1 0.8123661 0.9720079 -0 0.8301795 0.9720079 -0.1939468 0.8301795 0.9720079 -0.2773041 0.8301795 0.9720079 -0.3384659 0.8301795 0.9720079 -0.3885728 0.8301795 0.9720079 -0.4317928 0.8301795 0.9720079 -0.470214 0.8301795 0.9720079 -0.5050551 0.8301795 0.9720079 -0.5370987 0.8301795 0.9720079 -0.5668815 0.8301795 0.9720079 -0.5947903 0.8301795 0.9720079 -0.6211144 0.8301795 0.9720079 -0.6460766 0.8301795 0.9720079 -0.6698526 0.8301795 0.9720079 -0.6925839 0.8301795 0.9720079 -0.7143866 0.8301795 0.9720079 -0.7353569 0.8301795 0.9720079 -0.7555758 0.8301795 0.9720079 -0.7751122 0.8301795 0.9720079 -0.7940252 0.8301795 0.9720079 -0.8123661 0.8301795 0.9720079 -0.8301795 0.8301795 0.9720079 -0.8475045 0.8301795 0.9720079 -0.8643761 0.8301795 0.9720079 -0.880825 0.8301795 0.9720079 -0.8968787 0.8301795 0.9720079 -0.9125621 0.8301795 0.9720079 -0.9278974 0.8301795 0.9720079 -0.9429048 0.8301795 0.9720079 -0.9576028 0.8301795 0.9720079 -0.9720079 0.8301795 0.9720079 -0.9861357 0.8301795 0.9720079 -1 0.8301795 0.9720079 -0 0.8475045 0.9720079 -0.1939468 0.8475045 0.9720079 -0.2773041 0.8475045 0.9720079 -0.3384659 0.8475045 0.9720079 -0.3885728 0.8475045 0.9720079 -0.4317928 0.8475045 0.9720079 -0.470214 0.8475045 0.9720079 -0.5050551 0.8475045 0.9720079 -0.5370987 0.8475045 0.9720079 -0.5668815 0.8475045 0.9720079 -0.5947903 0.8475045 0.9720079 -0.6211144 0.8475045 0.9720079 -0.6460766 0.8475045 0.9720079 -0.6698526 0.8475045 0.9720079 -0.6925839 0.8475045 0.9720079 -0.7143866 0.8475045 0.9720079 -0.7353569 0.8475045 0.9720079 -0.7555758 0.8475045 0.9720079 -0.7751122 0.8475045 0.9720079 -0.7940252 0.8475045 0.9720079 -0.8123661 0.8475045 0.9720079 -0.8301795 0.8475045 0.9720079 -0.8475045 0.8475045 0.9720079 -0.8643761 0.8475045 0.9720079 -0.880825 0.8475045 0.9720079 -0.8968787 0.8475045 0.9720079 -0.9125621 0.8475045 0.9720079 -0.9278974 0.8475045 0.9720079 -0.9429048 0.8475045 0.9720079 -0.9576028 0.8475045 0.9720079 -0.9720079 0.8475045 0.9720079 -0.9861357 0.8475045 0.9720079 -1 0.8475045 0.9720079 -0 0.8643761 0.9720079 -0.1939468 0.8643761 0.9720079 -0.2773041 0.8643761 0.9720079 -0.3384659 0.8643761 0.9720079 -0.3885728 0.8643761 0.9720079 -0.4317928 0.8643761 0.9720079 -0.470214 0.8643761 0.9720079 -0.5050551 0.8643761 0.9720079 -0.5370987 0.8643761 0.9720079 -0.5668815 0.8643761 0.9720079 -0.5947903 0.8643761 0.9720079 -0.6211144 0.8643761 0.9720079 -0.6460766 0.8643761 0.9720079 -0.6698526 0.8643761 0.9720079 -0.6925839 0.8643761 0.9720079 -0.7143866 0.8643761 0.9720079 -0.7353569 0.8643761 0.9720079 -0.7555758 0.8643761 0.9720079 -0.7751122 0.8643761 0.9720079 -0.7940252 0.8643761 0.9720079 -0.8123661 0.8643761 0.9720079 -0.8301795 0.8643761 0.9720079 -0.8475045 0.8643761 0.9720079 -0.8643761 0.8643761 0.9720079 -0.880825 0.8643761 0.9720079 -0.8968787 0.8643761 0.9720079 -0.9125621 0.8643761 0.9720079 -0.9278974 0.8643761 0.9720079 -0.9429048 0.8643761 0.9720079 -0.9576028 0.8643761 0.9720079 -0.9720079 0.8643761 0.9720079 -0.9861357 0.8643761 0.9720079 -1 0.8643761 0.9720079 -0 0.880825 0.9720079 -0.1939468 0.880825 0.9720079 -0.2773041 0.880825 0.9720079 -0.3384659 0.880825 0.9720079 -0.3885728 0.880825 0.9720079 -0.4317928 0.880825 0.9720079 -0.470214 0.880825 0.9720079 -0.5050551 0.880825 0.9720079 -0.5370987 0.880825 0.9720079 -0.5668815 0.880825 0.9720079 -0.5947903 0.880825 0.9720079 -0.6211144 0.880825 0.9720079 -0.6460766 0.880825 0.9720079 -0.6698526 0.880825 0.9720079 -0.6925839 0.880825 0.9720079 -0.7143866 0.880825 0.9720079 -0.7353569 0.880825 0.9720079 -0.7555758 0.880825 0.9720079 -0.7751122 0.880825 0.9720079 -0.7940252 0.880825 0.9720079 -0.8123661 0.880825 0.9720079 -0.8301795 0.880825 0.9720079 -0.8475045 0.880825 0.9720079 -0.8643761 0.880825 0.9720079 -0.880825 0.880825 0.9720079 -0.8968787 0.880825 0.9720079 -0.9125621 0.880825 0.9720079 -0.9278974 0.880825 0.9720079 -0.9429048 0.880825 0.9720079 -0.9576028 0.880825 0.9720079 -0.9720079 0.880825 0.9720079 -0.9861357 0.880825 0.9720079 -1 0.880825 0.9720079 -0 0.8968787 0.9720079 -0.1939468 0.8968787 0.9720079 -0.2773041 0.8968787 0.9720079 -0.3384659 0.8968787 0.9720079 -0.3885728 0.8968787 0.9720079 -0.4317928 0.8968787 0.9720079 -0.470214 0.8968787 0.9720079 -0.5050551 0.8968787 0.9720079 -0.5370987 0.8968787 0.9720079 -0.5668815 0.8968787 0.9720079 -0.5947903 0.8968787 0.9720079 -0.6211144 0.8968787 0.9720079 -0.6460766 0.8968787 0.9720079 -0.6698526 0.8968787 0.9720079 -0.6925839 0.8968787 0.9720079 -0.7143866 0.8968787 0.9720079 -0.7353569 0.8968787 0.9720079 -0.7555758 0.8968787 0.9720079 -0.7751122 0.8968787 0.9720079 -0.7940252 0.8968787 0.9720079 -0.8123661 0.8968787 0.9720079 -0.8301795 0.8968787 0.9720079 -0.8475045 0.8968787 0.9720079 -0.8643761 0.8968787 0.9720079 -0.880825 0.8968787 0.9720079 -0.8968787 0.8968787 0.9720079 -0.9125621 0.8968787 0.9720079 -0.9278974 0.8968787 0.9720079 -0.9429048 0.8968787 0.9720079 -0.9576028 0.8968787 0.9720079 -0.9720079 0.8968787 0.9720079 -0.9861357 0.8968787 0.9720079 -1 0.8968787 0.9720079 -0 0.9125621 0.9720079 -0.1939468 0.9125621 0.9720079 -0.2773041 0.9125621 0.9720079 -0.3384659 0.9125621 0.9720079 -0.3885728 0.9125621 0.9720079 -0.4317928 0.9125621 0.9720079 -0.470214 0.9125621 0.9720079 -0.5050551 0.9125621 0.9720079 -0.5370987 0.9125621 0.9720079 -0.5668815 0.9125621 0.9720079 -0.5947903 0.9125621 0.9720079 -0.6211144 0.9125621 0.9720079 -0.6460766 0.9125621 0.9720079 -0.6698526 0.9125621 0.9720079 -0.6925839 0.9125621 0.9720079 -0.7143866 0.9125621 0.9720079 -0.7353569 0.9125621 0.9720079 -0.7555758 0.9125621 0.9720079 -0.7751122 0.9125621 0.9720079 -0.7940252 0.9125621 0.9720079 -0.8123661 0.9125621 0.9720079 -0.8301795 0.9125621 0.9720079 -0.8475045 0.9125621 0.9720079 -0.8643761 0.9125621 0.9720079 -0.880825 0.9125621 0.9720079 -0.8968787 0.9125621 0.9720079 -0.9125621 0.9125621 0.9720079 -0.9278974 0.9125621 0.9720079 -0.9429048 0.9125621 0.9720079 -0.9576028 0.9125621 0.9720079 -0.9720079 0.9125621 0.9720079 -0.9861357 0.9125621 0.9720079 -1 0.9125621 0.9720079 -0 0.9278974 0.9720079 -0.1939468 0.9278974 0.9720079 -0.2773041 0.9278974 0.9720079 -0.3384659 0.9278974 0.9720079 -0.3885728 0.9278974 0.9720079 -0.4317928 0.9278974 0.9720079 -0.470214 0.9278974 0.9720079 -0.5050551 0.9278974 0.9720079 -0.5370987 0.9278974 0.9720079 -0.5668815 0.9278974 0.9720079 -0.5947903 0.9278974 0.9720079 -0.6211144 0.9278974 0.9720079 -0.6460766 0.9278974 0.9720079 -0.6698526 0.9278974 0.9720079 -0.6925839 0.9278974 0.9720079 -0.7143866 0.9278974 0.9720079 -0.7353569 0.9278974 0.9720079 -0.7555758 0.9278974 0.9720079 -0.7751122 0.9278974 0.9720079 -0.7940252 0.9278974 0.9720079 -0.8123661 0.9278974 0.9720079 -0.8301795 0.9278974 0.9720079 -0.8475045 0.9278974 0.9720079 -0.8643761 0.9278974 0.9720079 -0.880825 0.9278974 0.9720079 -0.8968787 0.9278974 0.9720079 -0.9125621 0.9278974 0.9720079 -0.9278974 0.9278974 0.9720079 -0.9429048 0.9278974 0.9720079 -0.9576028 0.9278974 0.9720079 -0.9720079 0.9278974 0.9720079 -0.9861357 0.9278974 0.9720079 -1 0.9278974 0.9720079 -0 0.9429048 0.9720079 -0.1939468 0.9429048 0.9720079 -0.2773041 0.9429048 0.9720079 -0.3384659 0.9429048 0.9720079 -0.3885728 0.9429048 0.9720079 -0.4317928 0.9429048 0.9720079 -0.470214 0.9429048 0.9720079 -0.5050551 0.9429048 0.9720079 -0.5370987 0.9429048 0.9720079 -0.5668815 0.9429048 0.9720079 -0.5947903 0.9429048 0.9720079 -0.6211144 0.9429048 0.9720079 -0.6460766 0.9429048 0.9720079 -0.6698526 0.9429048 0.9720079 -0.6925839 0.9429048 0.9720079 -0.7143866 0.9429048 0.9720079 -0.7353569 0.9429048 0.9720079 -0.7555758 0.9429048 0.9720079 -0.7751122 0.9429048 0.9720079 -0.7940252 0.9429048 0.9720079 -0.8123661 0.9429048 0.9720079 -0.8301795 0.9429048 0.9720079 -0.8475045 0.9429048 0.9720079 -0.8643761 0.9429048 0.9720079 -0.880825 0.9429048 0.9720079 -0.8968787 0.9429048 0.9720079 -0.9125621 0.9429048 0.9720079 -0.9278974 0.9429048 0.9720079 -0.9429048 0.9429048 0.9720079 -0.9576028 0.9429048 0.9720079 -0.9720079 0.9429048 0.9720079 -0.9861357 0.9429048 0.9720079 -1 0.9429048 0.9720079 -0 0.9576028 0.9720079 -0.1939468 0.9576028 0.9720079 -0.2773041 0.9576028 0.9720079 -0.3384659 0.9576028 0.9720079 -0.3885728 0.9576028 0.9720079 -0.4317928 0.9576028 0.9720079 -0.470214 0.9576028 0.9720079 -0.5050551 0.9576028 0.9720079 -0.5370987 0.9576028 0.9720079 -0.5668815 0.9576028 0.9720079 -0.5947903 0.9576028 0.9720079 -0.6211144 0.9576028 0.9720079 -0.6460766 0.9576028 0.9720079 -0.6698526 0.9576028 0.9720079 -0.6925839 0.9576028 0.9720079 -0.7143866 0.9576028 0.9720079 -0.7353569 0.9576028 0.9720079 -0.7555758 0.9576028 0.9720079 -0.7751122 0.9576028 0.9720079 -0.7940252 0.9576028 0.9720079 -0.8123661 0.9576028 0.9720079 -0.8301795 0.9576028 0.9720079 -0.8475045 0.9576028 0.9720079 -0.8643761 0.9576028 0.9720079 -0.880825 0.9576028 0.9720079 -0.8968787 0.9576028 0.9720079 -0.9125621 0.9576028 0.9720079 -0.9278974 0.9576028 0.9720079 -0.9429048 0.9576028 0.9720079 -0.9576028 0.9576028 0.9720079 -0.9720079 0.9576028 0.9720079 -0.9861357 0.9576028 0.9720079 -1 0.9576028 0.9720079 -0 0.9720079 0.9720079 -0.1939468 0.9720079 0.9720079 -0.2773041 0.9720079 0.9720079 -0.3384659 0.9720079 0.9720079 -0.3885728 0.9720079 0.9720079 -0.4317928 0.9720079 0.9720079 -0.470214 0.9720079 0.9720079 -0.5050551 0.9720079 0.9720079 -0.5370987 0.9720079 0.9720079 -0.5668815 0.9720079 0.9720079 -0.5947903 0.9720079 0.9720079 -0.6211144 0.9720079 0.9720079 -0.6460766 0.9720079 0.9720079 -0.6698526 0.9720079 0.9720079 -0.6925839 0.9720079 0.9720079 -0.7143866 0.9720079 0.9720079 -0.7353569 0.9720079 0.9720079 -0.7555758 0.9720079 0.9720079 -0.7751122 0.9720079 0.9720079 -0.7940252 0.9720079 0.9720079 -0.8123661 0.9720079 0.9720079 -0.8301795 0.9720079 0.9720079 -0.8475045 0.9720079 0.9720079 -0.8643761 0.9720079 0.9720079 -0.880825 0.9720079 0.9720079 -0.8968787 0.9720079 0.9720079 -0.9125621 0.9720079 0.9720079 -0.9278974 0.9720079 0.9720079 -0.9429048 0.9720079 0.9720079 -0.9576028 0.9720079 0.9720079 -0.9720079 0.9720079 0.9720079 -0.9861357 0.9720079 0.9720079 -1 0.9720079 0.9720079 -0 0.9861357 0.9720079 -0.1939468 0.9861357 0.9720079 -0.2773041 0.9861357 0.9720079 -0.3384659 0.9861357 0.9720079 -0.3885728 0.9861357 0.9720079 -0.4317928 0.9861357 0.9720079 -0.470214 0.9861357 0.9720079 -0.5050551 0.9861357 0.9720079 -0.5370987 0.9861357 0.9720079 -0.5668815 0.9861357 0.9720079 -0.5947903 0.9861357 0.9720079 -0.6211144 0.9861357 0.9720079 -0.6460766 0.9861357 0.9720079 -0.6698526 0.9861357 0.9720079 -0.6925839 0.9861357 0.9720079 -0.7143866 0.9861357 0.9720079 -0.7353569 0.9861357 0.9720079 -0.7555758 0.9861357 0.9720079 -0.7751122 0.9861357 0.9720079 -0.7940252 0.9861357 0.9720079 -0.8123661 0.9861357 0.9720079 -0.8301795 0.9861357 0.9720079 -0.8475045 0.9861357 0.9720079 -0.8643761 0.9861357 0.9720079 -0.880825 0.9861357 0.9720079 -0.8968787 0.9861357 0.9720079 -0.9125621 0.9861357 0.9720079 -0.9278974 0.9861357 0.9720079 -0.9429048 0.9861357 0.9720079 -0.9576028 0.9861357 0.9720079 -0.9720079 0.9861357 0.9720079 -0.9861357 0.9861357 0.9720079 -1 0.9861357 0.9720079 -0 1 0.9720079 -0.1939468 1 0.9720079 -0.2773041 1 0.9720079 -0.3384659 1 0.9720079 -0.3885728 1 0.9720079 -0.4317928 1 0.9720079 -0.470214 1 0.9720079 -0.5050551 1 0.9720079 -0.5370987 1 0.9720079 -0.5668815 1 0.9720079 -0.5947903 1 0.9720079 -0.6211144 1 0.9720079 -0.6460766 1 0.9720079 -0.6698526 1 0.9720079 -0.6925839 1 0.9720079 -0.7143866 1 0.9720079 -0.7353569 1 0.9720079 -0.7555758 1 0.9720079 -0.7751122 1 0.9720079 -0.7940252 1 0.9720079 -0.8123661 1 0.9720079 -0.8301795 1 0.9720079 -0.8475045 1 0.9720079 -0.8643761 1 0.9720079 -0.880825 1 0.9720079 -0.8968787 1 0.9720079 -0.9125621 1 0.9720079 -0.9278974 1 0.9720079 -0.9429048 1 0.9720079 -0.9576028 1 0.9720079 -0.9720079 1 0.9720079 -0.9861357 1 0.9720079 -1 1 0.9720079 -0 0 0.9861357 -0.1939468 0 0.9861357 -0.2773041 0 0.9861357 -0.3384659 0 0.9861357 -0.3885728 0 0.9861357 -0.4317928 0 0.9861357 -0.470214 0 0.9861357 -0.5050551 0 0.9861357 -0.5370987 0 0.9861357 -0.5668815 0 0.9861357 -0.5947903 0 0.9861357 -0.6211144 0 0.9861357 -0.6460766 0 0.9861357 -0.6698526 0 0.9861357 -0.6925839 0 0.9861357 -0.7143866 0 0.9861357 -0.7353569 0 0.9861357 -0.7555758 0 0.9861357 -0.7751122 0 0.9861357 -0.7940252 0 0.9861357 -0.8123661 0 0.9861357 -0.8301795 0 0.9861357 -0.8475045 0 0.9861357 -0.8643761 0 0.9861357 -0.880825 0 0.9861357 -0.8968787 0 0.9861357 -0.9125621 0 0.9861357 -0.9278974 0 0.9861357 -0.9429048 0 0.9861357 -0.9576028 0 0.9861357 -0.9720079 0 0.9861357 -0.9861357 0 0.9861357 -1 0 0.9861357 -0 0.1939468 0.9861357 -0.1939468 0.1939468 0.9861357 -0.2773041 0.1939468 0.9861357 -0.3384659 0.1939468 0.9861357 -0.3885728 0.1939468 0.9861357 -0.4317928 0.1939468 0.9861357 -0.470214 0.1939468 0.9861357 -0.5050551 0.1939468 0.9861357 -0.5370987 0.1939468 0.9861357 -0.5668815 0.1939468 0.9861357 -0.5947903 0.1939468 0.9861357 -0.6211144 0.1939468 0.9861357 -0.6460766 0.1939468 0.9861357 -0.6698526 0.1939468 0.9861357 -0.6925839 0.1939468 0.9861357 -0.7143866 0.1939468 0.9861357 -0.7353569 0.1939468 0.9861357 -0.7555758 0.1939468 0.9861357 -0.7751122 0.1939468 0.9861357 -0.7940252 0.1939468 0.9861357 -0.8123661 0.1939468 0.9861357 -0.8301795 0.1939468 0.9861357 -0.8475045 0.1939468 0.9861357 -0.8643761 0.1939468 0.9861357 -0.880825 0.1939468 0.9861357 -0.8968787 0.1939468 0.9861357 -0.9125621 0.1939468 0.9861357 -0.9278974 0.1939468 0.9861357 -0.9429048 0.1939468 0.9861357 -0.9576028 0.1939468 0.9861357 -0.9720079 0.1939468 0.9861357 -0.9861357 0.1939468 0.9861357 -1 0.1939468 0.9861357 -0 0.2773041 0.9861357 -0.1939468 0.2773041 0.9861357 -0.2773041 0.2773041 0.9861357 -0.3384659 0.2773041 0.9861357 -0.3885728 0.2773041 0.9861357 -0.4317928 0.2773041 0.9861357 -0.470214 0.2773041 0.9861357 -0.5050551 0.2773041 0.9861357 -0.5370987 0.2773041 0.9861357 -0.5668815 0.2773041 0.9861357 -0.5947903 0.2773041 0.9861357 -0.6211144 0.2773041 0.9861357 -0.6460766 0.2773041 0.9861357 -0.6698526 0.2773041 0.9861357 -0.6925839 0.2773041 0.9861357 -0.7143866 0.2773041 0.9861357 -0.7353569 0.2773041 0.9861357 -0.7555758 0.2773041 0.9861357 -0.7751122 0.2773041 0.9861357 -0.7940252 0.2773041 0.9861357 -0.8123661 0.2773041 0.9861357 -0.8301795 0.2773041 0.9861357 -0.8475045 0.2773041 0.9861357 -0.8643761 0.2773041 0.9861357 -0.880825 0.2773041 0.9861357 -0.8968787 0.2773041 0.9861357 -0.9125621 0.2773041 0.9861357 -0.9278974 0.2773041 0.9861357 -0.9429048 0.2773041 0.9861357 -0.9576028 0.2773041 0.9861357 -0.9720079 0.2773041 0.9861357 -0.9861357 0.2773041 0.9861357 -1 0.2773041 0.9861357 -0 0.3384659 0.9861357 -0.1939468 0.3384659 0.9861357 -0.2773041 0.3384659 0.9861357 -0.3384659 0.3384659 0.9861357 -0.3885728 0.3384659 0.9861357 -0.4317928 0.3384659 0.9861357 -0.470214 0.3384659 0.9861357 -0.5050551 0.3384659 0.9861357 -0.5370987 0.3384659 0.9861357 -0.5668815 0.3384659 0.9861357 -0.5947903 0.3384659 0.9861357 -0.6211144 0.3384659 0.9861357 -0.6460766 0.3384659 0.9861357 -0.6698526 0.3384659 0.9861357 -0.6925839 0.3384659 0.9861357 -0.7143866 0.3384659 0.9861357 -0.7353569 0.3384659 0.9861357 -0.7555758 0.3384659 0.9861357 -0.7751122 0.3384659 0.9861357 -0.7940252 0.3384659 0.9861357 -0.8123661 0.3384659 0.9861357 -0.8301795 0.3384659 0.9861357 -0.8475045 0.3384659 0.9861357 -0.8643761 0.3384659 0.9861357 -0.880825 0.3384659 0.9861357 -0.8968787 0.3384659 0.9861357 -0.9125621 0.3384659 0.9861357 -0.9278974 0.3384659 0.9861357 -0.9429048 0.3384659 0.9861357 -0.9576028 0.3384659 0.9861357 -0.9720079 0.3384659 0.9861357 -0.9861357 0.3384659 0.9861357 -1 0.3384659 0.9861357 -0 0.3885728 0.9861357 -0.1939468 0.3885728 0.9861357 -0.2773041 0.3885728 0.9861357 -0.3384659 0.3885728 0.9861357 -0.3885728 0.3885728 0.9861357 -0.4317928 0.3885728 0.9861357 -0.470214 0.3885728 0.9861357 -0.5050551 0.3885728 0.9861357 -0.5370987 0.3885728 0.9861357 -0.5668815 0.3885728 0.9861357 -0.5947903 0.3885728 0.9861357 -0.6211144 0.3885728 0.9861357 -0.6460766 0.3885728 0.9861357 -0.6698526 0.3885728 0.9861357 -0.6925839 0.3885728 0.9861357 -0.7143866 0.3885728 0.9861357 -0.7353569 0.3885728 0.9861357 -0.7555758 0.3885728 0.9861357 -0.7751122 0.3885728 0.9861357 -0.7940252 0.3885728 0.9861357 -0.8123661 0.3885728 0.9861357 -0.8301795 0.3885728 0.9861357 -0.8475045 0.3885728 0.9861357 -0.8643761 0.3885728 0.9861357 -0.880825 0.3885728 0.9861357 -0.8968787 0.3885728 0.9861357 -0.9125621 0.3885728 0.9861357 -0.9278974 0.3885728 0.9861357 -0.9429048 0.3885728 0.9861357 -0.9576028 0.3885728 0.9861357 -0.9720079 0.3885728 0.9861357 -0.9861357 0.3885728 0.9861357 -1 0.3885728 0.9861357 -0 0.4317928 0.9861357 -0.1939468 0.4317928 0.9861357 -0.2773041 0.4317928 0.9861357 -0.3384659 0.4317928 0.9861357 -0.3885728 0.4317928 0.9861357 -0.4317928 0.4317928 0.9861357 -0.470214 0.4317928 0.9861357 -0.5050551 0.4317928 0.9861357 -0.5370987 0.4317928 0.9861357 -0.5668815 0.4317928 0.9861357 -0.5947903 0.4317928 0.9861357 -0.6211144 0.4317928 0.9861357 -0.6460766 0.4317928 0.9861357 -0.6698526 0.4317928 0.9861357 -0.6925839 0.4317928 0.9861357 -0.7143866 0.4317928 0.9861357 -0.7353569 0.4317928 0.9861357 -0.7555758 0.4317928 0.9861357 -0.7751122 0.4317928 0.9861357 -0.7940252 0.4317928 0.9861357 -0.8123661 0.4317928 0.9861357 -0.8301795 0.4317928 0.9861357 -0.8475045 0.4317928 0.9861357 -0.8643761 0.4317928 0.9861357 -0.880825 0.4317928 0.9861357 -0.8968787 0.4317928 0.9861357 -0.9125621 0.4317928 0.9861357 -0.9278974 0.4317928 0.9861357 -0.9429048 0.4317928 0.9861357 -0.9576028 0.4317928 0.9861357 -0.9720079 0.4317928 0.9861357 -0.9861357 0.4317928 0.9861357 -1 0.4317928 0.9861357 -0 0.470214 0.9861357 -0.1939468 0.470214 0.9861357 -0.2773041 0.470214 0.9861357 -0.3384659 0.470214 0.9861357 -0.3885728 0.470214 0.9861357 -0.4317928 0.470214 0.9861357 -0.470214 0.470214 0.9861357 -0.5050551 0.470214 0.9861357 -0.5370987 0.470214 0.9861357 -0.5668815 0.470214 0.9861357 -0.5947903 0.470214 0.9861357 -0.6211144 0.470214 0.9861357 -0.6460766 0.470214 0.9861357 -0.6698526 0.470214 0.9861357 -0.6925839 0.470214 0.9861357 -0.7143866 0.470214 0.9861357 -0.7353569 0.470214 0.9861357 -0.7555758 0.470214 0.9861357 -0.7751122 0.470214 0.9861357 -0.7940252 0.470214 0.9861357 -0.8123661 0.470214 0.9861357 -0.8301795 0.470214 0.9861357 -0.8475045 0.470214 0.9861357 -0.8643761 0.470214 0.9861357 -0.880825 0.470214 0.9861357 -0.8968787 0.470214 0.9861357 -0.9125621 0.470214 0.9861357 -0.9278974 0.470214 0.9861357 -0.9429048 0.470214 0.9861357 -0.9576028 0.470214 0.9861357 -0.9720079 0.470214 0.9861357 -0.9861357 0.470214 0.9861357 -1 0.470214 0.9861357 -0 0.5050551 0.9861357 -0.1939468 0.5050551 0.9861357 -0.2773041 0.5050551 0.9861357 -0.3384659 0.5050551 0.9861357 -0.3885728 0.5050551 0.9861357 -0.4317928 0.5050551 0.9861357 -0.470214 0.5050551 0.9861357 -0.5050551 0.5050551 0.9861357 -0.5370987 0.5050551 0.9861357 -0.5668815 0.5050551 0.9861357 -0.5947903 0.5050551 0.9861357 -0.6211144 0.5050551 0.9861357 -0.6460766 0.5050551 0.9861357 -0.6698526 0.5050551 0.9861357 -0.6925839 0.5050551 0.9861357 -0.7143866 0.5050551 0.9861357 -0.7353569 0.5050551 0.9861357 -0.7555758 0.5050551 0.9861357 -0.7751122 0.5050551 0.9861357 -0.7940252 0.5050551 0.9861357 -0.8123661 0.5050551 0.9861357 -0.8301795 0.5050551 0.9861357 -0.8475045 0.5050551 0.9861357 -0.8643761 0.5050551 0.9861357 -0.880825 0.5050551 0.9861357 -0.8968787 0.5050551 0.9861357 -0.9125621 0.5050551 0.9861357 -0.9278974 0.5050551 0.9861357 -0.9429048 0.5050551 0.9861357 -0.9576028 0.5050551 0.9861357 -0.9720079 0.5050551 0.9861357 -0.9861357 0.5050551 0.9861357 -1 0.5050551 0.9861357 -0 0.5370987 0.9861357 -0.1939468 0.5370987 0.9861357 -0.2773041 0.5370987 0.9861357 -0.3384659 0.5370987 0.9861357 -0.3885728 0.5370987 0.9861357 -0.4317928 0.5370987 0.9861357 -0.470214 0.5370987 0.9861357 -0.5050551 0.5370987 0.9861357 -0.5370987 0.5370987 0.9861357 -0.5668815 0.5370987 0.9861357 -0.5947903 0.5370987 0.9861357 -0.6211144 0.5370987 0.9861357 -0.6460766 0.5370987 0.9861357 -0.6698526 0.5370987 0.9861357 -0.6925839 0.5370987 0.9861357 -0.7143866 0.5370987 0.9861357 -0.7353569 0.5370987 0.9861357 -0.7555758 0.5370987 0.9861357 -0.7751122 0.5370987 0.9861357 -0.7940252 0.5370987 0.9861357 -0.8123661 0.5370987 0.9861357 -0.8301795 0.5370987 0.9861357 -0.8475045 0.5370987 0.9861357 -0.8643761 0.5370987 0.9861357 -0.880825 0.5370987 0.9861357 -0.8968787 0.5370987 0.9861357 -0.9125621 0.5370987 0.9861357 -0.9278974 0.5370987 0.9861357 -0.9429048 0.5370987 0.9861357 -0.9576028 0.5370987 0.9861357 -0.9720079 0.5370987 0.9861357 -0.9861357 0.5370987 0.9861357 -1 0.5370987 0.9861357 -0 0.5668815 0.9861357 -0.1939468 0.5668815 0.9861357 -0.2773041 0.5668815 0.9861357 -0.3384659 0.5668815 0.9861357 -0.3885728 0.5668815 0.9861357 -0.4317928 0.5668815 0.9861357 -0.470214 0.5668815 0.9861357 -0.5050551 0.5668815 0.9861357 -0.5370987 0.5668815 0.9861357 -0.5668815 0.5668815 0.9861357 -0.5947903 0.5668815 0.9861357 -0.6211144 0.5668815 0.9861357 -0.6460766 0.5668815 0.9861357 -0.6698526 0.5668815 0.9861357 -0.6925839 0.5668815 0.9861357 -0.7143866 0.5668815 0.9861357 -0.7353569 0.5668815 0.9861357 -0.7555758 0.5668815 0.9861357 -0.7751122 0.5668815 0.9861357 -0.7940252 0.5668815 0.9861357 -0.8123661 0.5668815 0.9861357 -0.8301795 0.5668815 0.9861357 -0.8475045 0.5668815 0.9861357 -0.8643761 0.5668815 0.9861357 -0.880825 0.5668815 0.9861357 -0.8968787 0.5668815 0.9861357 -0.9125621 0.5668815 0.9861357 -0.9278974 0.5668815 0.9861357 -0.9429048 0.5668815 0.9861357 -0.9576028 0.5668815 0.9861357 -0.9720079 0.5668815 0.9861357 -0.9861357 0.5668815 0.9861357 -1 0.5668815 0.9861357 -0 0.5947903 0.9861357 -0.1939468 0.5947903 0.9861357 -0.2773041 0.5947903 0.9861357 -0.3384659 0.5947903 0.9861357 -0.3885728 0.5947903 0.9861357 -0.4317928 0.5947903 0.9861357 -0.470214 0.5947903 0.9861357 -0.5050551 0.5947903 0.9861357 -0.5370987 0.5947903 0.9861357 -0.5668815 0.5947903 0.9861357 -0.5947903 0.5947903 0.9861357 -0.6211144 0.5947903 0.9861357 -0.6460766 0.5947903 0.9861357 -0.6698526 0.5947903 0.9861357 -0.6925839 0.5947903 0.9861357 -0.7143866 0.5947903 0.9861357 -0.7353569 0.5947903 0.9861357 -0.7555758 0.5947903 0.9861357 -0.7751122 0.5947903 0.9861357 -0.7940252 0.5947903 0.9861357 -0.8123661 0.5947903 0.9861357 -0.8301795 0.5947903 0.9861357 -0.8475045 0.5947903 0.9861357 -0.8643761 0.5947903 0.9861357 -0.880825 0.5947903 0.9861357 -0.8968787 0.5947903 0.9861357 -0.9125621 0.5947903 0.9861357 -0.9278974 0.5947903 0.9861357 -0.9429048 0.5947903 0.9861357 -0.9576028 0.5947903 0.9861357 -0.9720079 0.5947903 0.9861357 -0.9861357 0.5947903 0.9861357 -1 0.5947903 0.9861357 -0 0.6211144 0.9861357 -0.1939468 0.6211144 0.9861357 -0.2773041 0.6211144 0.9861357 -0.3384659 0.6211144 0.9861357 -0.3885728 0.6211144 0.9861357 -0.4317928 0.6211144 0.9861357 -0.470214 0.6211144 0.9861357 -0.5050551 0.6211144 0.9861357 -0.5370987 0.6211144 0.9861357 -0.5668815 0.6211144 0.9861357 -0.5947903 0.6211144 0.9861357 -0.6211144 0.6211144 0.9861357 -0.6460766 0.6211144 0.9861357 -0.6698526 0.6211144 0.9861357 -0.6925839 0.6211144 0.9861357 -0.7143866 0.6211144 0.9861357 -0.7353569 0.6211144 0.9861357 -0.7555758 0.6211144 0.9861357 -0.7751122 0.6211144 0.9861357 -0.7940252 0.6211144 0.9861357 -0.8123661 0.6211144 0.9861357 -0.8301795 0.6211144 0.9861357 -0.8475045 0.6211144 0.9861357 -0.8643761 0.6211144 0.9861357 -0.880825 0.6211144 0.9861357 -0.8968787 0.6211144 0.9861357 -0.9125621 0.6211144 0.9861357 -0.9278974 0.6211144 0.9861357 -0.9429048 0.6211144 0.9861357 -0.9576028 0.6211144 0.9861357 -0.9720079 0.6211144 0.9861357 -0.9861357 0.6211144 0.9861357 -1 0.6211144 0.9861357 -0 0.6460766 0.9861357 -0.1939468 0.6460766 0.9861357 -0.2773041 0.6460766 0.9861357 -0.3384659 0.6460766 0.9861357 -0.3885728 0.6460766 0.9861357 -0.4317928 0.6460766 0.9861357 -0.470214 0.6460766 0.9861357 -0.5050551 0.6460766 0.9861357 -0.5370987 0.6460766 0.9861357 -0.5668815 0.6460766 0.9861357 -0.5947903 0.6460766 0.9861357 -0.6211144 0.6460766 0.9861357 -0.6460766 0.6460766 0.9861357 -0.6698526 0.6460766 0.9861357 -0.6925839 0.6460766 0.9861357 -0.7143866 0.6460766 0.9861357 -0.7353569 0.6460766 0.9861357 -0.7555758 0.6460766 0.9861357 -0.7751122 0.6460766 0.9861357 -0.7940252 0.6460766 0.9861357 -0.8123661 0.6460766 0.9861357 -0.8301795 0.6460766 0.9861357 -0.8475045 0.6460766 0.9861357 -0.8643761 0.6460766 0.9861357 -0.880825 0.6460766 0.9861357 -0.8968787 0.6460766 0.9861357 -0.9125621 0.6460766 0.9861357 -0.9278974 0.6460766 0.9861357 -0.9429048 0.6460766 0.9861357 -0.9576028 0.6460766 0.9861357 -0.9720079 0.6460766 0.9861357 -0.9861357 0.6460766 0.9861357 -1 0.6460766 0.9861357 -0 0.6698526 0.9861357 -0.1939468 0.6698526 0.9861357 -0.2773041 0.6698526 0.9861357 -0.3384659 0.6698526 0.9861357 -0.3885728 0.6698526 0.9861357 -0.4317928 0.6698526 0.9861357 -0.470214 0.6698526 0.9861357 -0.5050551 0.6698526 0.9861357 -0.5370987 0.6698526 0.9861357 -0.5668815 0.6698526 0.9861357 -0.5947903 0.6698526 0.9861357 -0.6211144 0.6698526 0.9861357 -0.6460766 0.6698526 0.9861357 -0.6698526 0.6698526 0.9861357 -0.6925839 0.6698526 0.9861357 -0.7143866 0.6698526 0.9861357 -0.7353569 0.6698526 0.9861357 -0.7555758 0.6698526 0.9861357 -0.7751122 0.6698526 0.9861357 -0.7940252 0.6698526 0.9861357 -0.8123661 0.6698526 0.9861357 -0.8301795 0.6698526 0.9861357 -0.8475045 0.6698526 0.9861357 -0.8643761 0.6698526 0.9861357 -0.880825 0.6698526 0.9861357 -0.8968787 0.6698526 0.9861357 -0.9125621 0.6698526 0.9861357 -0.9278974 0.6698526 0.9861357 -0.9429048 0.6698526 0.9861357 -0.9576028 0.6698526 0.9861357 -0.9720079 0.6698526 0.9861357 -0.9861357 0.6698526 0.9861357 -1 0.6698526 0.9861357 -0 0.6925839 0.9861357 -0.1939468 0.6925839 0.9861357 -0.2773041 0.6925839 0.9861357 -0.3384659 0.6925839 0.9861357 -0.3885728 0.6925839 0.9861357 -0.4317928 0.6925839 0.9861357 -0.470214 0.6925839 0.9861357 -0.5050551 0.6925839 0.9861357 -0.5370987 0.6925839 0.9861357 -0.5668815 0.6925839 0.9861357 -0.5947903 0.6925839 0.9861357 -0.6211144 0.6925839 0.9861357 -0.6460766 0.6925839 0.9861357 -0.6698526 0.6925839 0.9861357 -0.6925839 0.6925839 0.9861357 -0.7143866 0.6925839 0.9861357 -0.7353569 0.6925839 0.9861357 -0.7555758 0.6925839 0.9861357 -0.7751122 0.6925839 0.9861357 -0.7940252 0.6925839 0.9861357 -0.8123661 0.6925839 0.9861357 -0.8301795 0.6925839 0.9861357 -0.8475045 0.6925839 0.9861357 -0.8643761 0.6925839 0.9861357 -0.880825 0.6925839 0.9861357 -0.8968787 0.6925839 0.9861357 -0.9125621 0.6925839 0.9861357 -0.9278974 0.6925839 0.9861357 -0.9429048 0.6925839 0.9861357 -0.9576028 0.6925839 0.9861357 -0.9720079 0.6925839 0.9861357 -0.9861357 0.6925839 0.9861357 -1 0.6925839 0.9861357 -0 0.7143866 0.9861357 -0.1939468 0.7143866 0.9861357 -0.2773041 0.7143866 0.9861357 -0.3384659 0.7143866 0.9861357 -0.3885728 0.7143866 0.9861357 -0.4317928 0.7143866 0.9861357 -0.470214 0.7143866 0.9861357 -0.5050551 0.7143866 0.9861357 -0.5370987 0.7143866 0.9861357 -0.5668815 0.7143866 0.9861357 -0.5947903 0.7143866 0.9861357 -0.6211144 0.7143866 0.9861357 -0.6460766 0.7143866 0.9861357 -0.6698526 0.7143866 0.9861357 -0.6925839 0.7143866 0.9861357 -0.7143866 0.7143866 0.9861357 -0.7353569 0.7143866 0.9861357 -0.7555758 0.7143866 0.9861357 -0.7751122 0.7143866 0.9861357 -0.7940252 0.7143866 0.9861357 -0.8123661 0.7143866 0.9861357 -0.8301795 0.7143866 0.9861357 -0.8475045 0.7143866 0.9861357 -0.8643761 0.7143866 0.9861357 -0.880825 0.7143866 0.9861357 -0.8968787 0.7143866 0.9861357 -0.9125621 0.7143866 0.9861357 -0.9278974 0.7143866 0.9861357 -0.9429048 0.7143866 0.9861357 -0.9576028 0.7143866 0.9861357 -0.9720079 0.7143866 0.9861357 -0.9861357 0.7143866 0.9861357 -1 0.7143866 0.9861357 -0 0.7353569 0.9861357 -0.1939468 0.7353569 0.9861357 -0.2773041 0.7353569 0.9861357 -0.3384659 0.7353569 0.9861357 -0.3885728 0.7353569 0.9861357 -0.4317928 0.7353569 0.9861357 -0.470214 0.7353569 0.9861357 -0.5050551 0.7353569 0.9861357 -0.5370987 0.7353569 0.9861357 -0.5668815 0.7353569 0.9861357 -0.5947903 0.7353569 0.9861357 -0.6211144 0.7353569 0.9861357 -0.6460766 0.7353569 0.9861357 -0.6698526 0.7353569 0.9861357 -0.6925839 0.7353569 0.9861357 -0.7143866 0.7353569 0.9861357 -0.7353569 0.7353569 0.9861357 -0.7555758 0.7353569 0.9861357 -0.7751122 0.7353569 0.9861357 -0.7940252 0.7353569 0.9861357 -0.8123661 0.7353569 0.9861357 -0.8301795 0.7353569 0.9861357 -0.8475045 0.7353569 0.9861357 -0.8643761 0.7353569 0.9861357 -0.880825 0.7353569 0.9861357 -0.8968787 0.7353569 0.9861357 -0.9125621 0.7353569 0.9861357 -0.9278974 0.7353569 0.9861357 -0.9429048 0.7353569 0.9861357 -0.9576028 0.7353569 0.9861357 -0.9720079 0.7353569 0.9861357 -0.9861357 0.7353569 0.9861357 -1 0.7353569 0.9861357 -0 0.7555758 0.9861357 -0.1939468 0.7555758 0.9861357 -0.2773041 0.7555758 0.9861357 -0.3384659 0.7555758 0.9861357 -0.3885728 0.7555758 0.9861357 -0.4317928 0.7555758 0.9861357 -0.470214 0.7555758 0.9861357 -0.5050551 0.7555758 0.9861357 -0.5370987 0.7555758 0.9861357 -0.5668815 0.7555758 0.9861357 -0.5947903 0.7555758 0.9861357 -0.6211144 0.7555758 0.9861357 -0.6460766 0.7555758 0.9861357 -0.6698526 0.7555758 0.9861357 -0.6925839 0.7555758 0.9861357 -0.7143866 0.7555758 0.9861357 -0.7353569 0.7555758 0.9861357 -0.7555758 0.7555758 0.9861357 -0.7751122 0.7555758 0.9861357 -0.7940252 0.7555758 0.9861357 -0.8123661 0.7555758 0.9861357 -0.8301795 0.7555758 0.9861357 -0.8475045 0.7555758 0.9861357 -0.8643761 0.7555758 0.9861357 -0.880825 0.7555758 0.9861357 -0.8968787 0.7555758 0.9861357 -0.9125621 0.7555758 0.9861357 -0.9278974 0.7555758 0.9861357 -0.9429048 0.7555758 0.9861357 -0.9576028 0.7555758 0.9861357 -0.9720079 0.7555758 0.9861357 -0.9861357 0.7555758 0.9861357 -1 0.7555758 0.9861357 -0 0.7751122 0.9861357 -0.1939468 0.7751122 0.9861357 -0.2773041 0.7751122 0.9861357 -0.3384659 0.7751122 0.9861357 -0.3885728 0.7751122 0.9861357 -0.4317928 0.7751122 0.9861357 -0.470214 0.7751122 0.9861357 -0.5050551 0.7751122 0.9861357 -0.5370987 0.7751122 0.9861357 -0.5668815 0.7751122 0.9861357 -0.5947903 0.7751122 0.9861357 -0.6211144 0.7751122 0.9861357 -0.6460766 0.7751122 0.9861357 -0.6698526 0.7751122 0.9861357 -0.6925839 0.7751122 0.9861357 -0.7143866 0.7751122 0.9861357 -0.7353569 0.7751122 0.9861357 -0.7555758 0.7751122 0.9861357 -0.7751122 0.7751122 0.9861357 -0.7940252 0.7751122 0.9861357 -0.8123661 0.7751122 0.9861357 -0.8301795 0.7751122 0.9861357 -0.8475045 0.7751122 0.9861357 -0.8643761 0.7751122 0.9861357 -0.880825 0.7751122 0.9861357 -0.8968787 0.7751122 0.9861357 -0.9125621 0.7751122 0.9861357 -0.9278974 0.7751122 0.9861357 -0.9429048 0.7751122 0.9861357 -0.9576028 0.7751122 0.9861357 -0.9720079 0.7751122 0.9861357 -0.9861357 0.7751122 0.9861357 -1 0.7751122 0.9861357 -0 0.7940252 0.9861357 -0.1939468 0.7940252 0.9861357 -0.2773041 0.7940252 0.9861357 -0.3384659 0.7940252 0.9861357 -0.3885728 0.7940252 0.9861357 -0.4317928 0.7940252 0.9861357 -0.470214 0.7940252 0.9861357 -0.5050551 0.7940252 0.9861357 -0.5370987 0.7940252 0.9861357 -0.5668815 0.7940252 0.9861357 -0.5947903 0.7940252 0.9861357 -0.6211144 0.7940252 0.9861357 -0.6460766 0.7940252 0.9861357 -0.6698526 0.7940252 0.9861357 -0.6925839 0.7940252 0.9861357 -0.7143866 0.7940252 0.9861357 -0.7353569 0.7940252 0.9861357 -0.7555758 0.7940252 0.9861357 -0.7751122 0.7940252 0.9861357 -0.7940252 0.7940252 0.9861357 -0.8123661 0.7940252 0.9861357 -0.8301795 0.7940252 0.9861357 -0.8475045 0.7940252 0.9861357 -0.8643761 0.7940252 0.9861357 -0.880825 0.7940252 0.9861357 -0.8968787 0.7940252 0.9861357 -0.9125621 0.7940252 0.9861357 -0.9278974 0.7940252 0.9861357 -0.9429048 0.7940252 0.9861357 -0.9576028 0.7940252 0.9861357 -0.9720079 0.7940252 0.9861357 -0.9861357 0.7940252 0.9861357 -1 0.7940252 0.9861357 -0 0.8123661 0.9861357 -0.1939468 0.8123661 0.9861357 -0.2773041 0.8123661 0.9861357 -0.3384659 0.8123661 0.9861357 -0.3885728 0.8123661 0.9861357 -0.4317928 0.8123661 0.9861357 -0.470214 0.8123661 0.9861357 -0.5050551 0.8123661 0.9861357 -0.5370987 0.8123661 0.9861357 -0.5668815 0.8123661 0.9861357 -0.5947903 0.8123661 0.9861357 -0.6211144 0.8123661 0.9861357 -0.6460766 0.8123661 0.9861357 -0.6698526 0.8123661 0.9861357 -0.6925839 0.8123661 0.9861357 -0.7143866 0.8123661 0.9861357 -0.7353569 0.8123661 0.9861357 -0.7555758 0.8123661 0.9861357 -0.7751122 0.8123661 0.9861357 -0.7940252 0.8123661 0.9861357 -0.8123661 0.8123661 0.9861357 -0.8301795 0.8123661 0.9861357 -0.8475045 0.8123661 0.9861357 -0.8643761 0.8123661 0.9861357 -0.880825 0.8123661 0.9861357 -0.8968787 0.8123661 0.9861357 -0.9125621 0.8123661 0.9861357 -0.9278974 0.8123661 0.9861357 -0.9429048 0.8123661 0.9861357 -0.9576028 0.8123661 0.9861357 -0.9720079 0.8123661 0.9861357 -0.9861357 0.8123661 0.9861357 -1 0.8123661 0.9861357 -0 0.8301795 0.9861357 -0.1939468 0.8301795 0.9861357 -0.2773041 0.8301795 0.9861357 -0.3384659 0.8301795 0.9861357 -0.3885728 0.8301795 0.9861357 -0.4317928 0.8301795 0.9861357 -0.470214 0.8301795 0.9861357 -0.5050551 0.8301795 0.9861357 -0.5370987 0.8301795 0.9861357 -0.5668815 0.8301795 0.9861357 -0.5947903 0.8301795 0.9861357 -0.6211144 0.8301795 0.9861357 -0.6460766 0.8301795 0.9861357 -0.6698526 0.8301795 0.9861357 -0.6925839 0.8301795 0.9861357 -0.7143866 0.8301795 0.9861357 -0.7353569 0.8301795 0.9861357 -0.7555758 0.8301795 0.9861357 -0.7751122 0.8301795 0.9861357 -0.7940252 0.8301795 0.9861357 -0.8123661 0.8301795 0.9861357 -0.8301795 0.8301795 0.9861357 -0.8475045 0.8301795 0.9861357 -0.8643761 0.8301795 0.9861357 -0.880825 0.8301795 0.9861357 -0.8968787 0.8301795 0.9861357 -0.9125621 0.8301795 0.9861357 -0.9278974 0.8301795 0.9861357 -0.9429048 0.8301795 0.9861357 -0.9576028 0.8301795 0.9861357 -0.9720079 0.8301795 0.9861357 -0.9861357 0.8301795 0.9861357 -1 0.8301795 0.9861357 -0 0.8475045 0.9861357 -0.1939468 0.8475045 0.9861357 -0.2773041 0.8475045 0.9861357 -0.3384659 0.8475045 0.9861357 -0.3885728 0.8475045 0.9861357 -0.4317928 0.8475045 0.9861357 -0.470214 0.8475045 0.9861357 -0.5050551 0.8475045 0.9861357 -0.5370987 0.8475045 0.9861357 -0.5668815 0.8475045 0.9861357 -0.5947903 0.8475045 0.9861357 -0.6211144 0.8475045 0.9861357 -0.6460766 0.8475045 0.9861357 -0.6698526 0.8475045 0.9861357 -0.6925839 0.8475045 0.9861357 -0.7143866 0.8475045 0.9861357 -0.7353569 0.8475045 0.9861357 -0.7555758 0.8475045 0.9861357 -0.7751122 0.8475045 0.9861357 -0.7940252 0.8475045 0.9861357 -0.8123661 0.8475045 0.9861357 -0.8301795 0.8475045 0.9861357 -0.8475045 0.8475045 0.9861357 -0.8643761 0.8475045 0.9861357 -0.880825 0.8475045 0.9861357 -0.8968787 0.8475045 0.9861357 -0.9125621 0.8475045 0.9861357 -0.9278974 0.8475045 0.9861357 -0.9429048 0.8475045 0.9861357 -0.9576028 0.8475045 0.9861357 -0.9720079 0.8475045 0.9861357 -0.9861357 0.8475045 0.9861357 -1 0.8475045 0.9861357 -0 0.8643761 0.9861357 -0.1939468 0.8643761 0.9861357 -0.2773041 0.8643761 0.9861357 -0.3384659 0.8643761 0.9861357 -0.3885728 0.8643761 0.9861357 -0.4317928 0.8643761 0.9861357 -0.470214 0.8643761 0.9861357 -0.5050551 0.8643761 0.9861357 -0.5370987 0.8643761 0.9861357 -0.5668815 0.8643761 0.9861357 -0.5947903 0.8643761 0.9861357 -0.6211144 0.8643761 0.9861357 -0.6460766 0.8643761 0.9861357 -0.6698526 0.8643761 0.9861357 -0.6925839 0.8643761 0.9861357 -0.7143866 0.8643761 0.9861357 -0.7353569 0.8643761 0.9861357 -0.7555758 0.8643761 0.9861357 -0.7751122 0.8643761 0.9861357 -0.7940252 0.8643761 0.9861357 -0.8123661 0.8643761 0.9861357 -0.8301795 0.8643761 0.9861357 -0.8475045 0.8643761 0.9861357 -0.8643761 0.8643761 0.9861357 -0.880825 0.8643761 0.9861357 -0.8968787 0.8643761 0.9861357 -0.9125621 0.8643761 0.9861357 -0.9278974 0.8643761 0.9861357 -0.9429048 0.8643761 0.9861357 -0.9576028 0.8643761 0.9861357 -0.9720079 0.8643761 0.9861357 -0.9861357 0.8643761 0.9861357 -1 0.8643761 0.9861357 -0 0.880825 0.9861357 -0.1939468 0.880825 0.9861357 -0.2773041 0.880825 0.9861357 -0.3384659 0.880825 0.9861357 -0.3885728 0.880825 0.9861357 -0.4317928 0.880825 0.9861357 -0.470214 0.880825 0.9861357 -0.5050551 0.880825 0.9861357 -0.5370987 0.880825 0.9861357 -0.5668815 0.880825 0.9861357 -0.5947903 0.880825 0.9861357 -0.6211144 0.880825 0.9861357 -0.6460766 0.880825 0.9861357 -0.6698526 0.880825 0.9861357 -0.6925839 0.880825 0.9861357 -0.7143866 0.880825 0.9861357 -0.7353569 0.880825 0.9861357 -0.7555758 0.880825 0.9861357 -0.7751122 0.880825 0.9861357 -0.7940252 0.880825 0.9861357 -0.8123661 0.880825 0.9861357 -0.8301795 0.880825 0.9861357 -0.8475045 0.880825 0.9861357 -0.8643761 0.880825 0.9861357 -0.880825 0.880825 0.9861357 -0.8968787 0.880825 0.9861357 -0.9125621 0.880825 0.9861357 -0.9278974 0.880825 0.9861357 -0.9429048 0.880825 0.9861357 -0.9576028 0.880825 0.9861357 -0.9720079 0.880825 0.9861357 -0.9861357 0.880825 0.9861357 -1 0.880825 0.9861357 -0 0.8968787 0.9861357 -0.1939468 0.8968787 0.9861357 -0.2773041 0.8968787 0.9861357 -0.3384659 0.8968787 0.9861357 -0.3885728 0.8968787 0.9861357 -0.4317928 0.8968787 0.9861357 -0.470214 0.8968787 0.9861357 -0.5050551 0.8968787 0.9861357 -0.5370987 0.8968787 0.9861357 -0.5668815 0.8968787 0.9861357 -0.5947903 0.8968787 0.9861357 -0.6211144 0.8968787 0.9861357 -0.6460766 0.8968787 0.9861357 -0.6698526 0.8968787 0.9861357 -0.6925839 0.8968787 0.9861357 -0.7143866 0.8968787 0.9861357 -0.7353569 0.8968787 0.9861357 -0.7555758 0.8968787 0.9861357 -0.7751122 0.8968787 0.9861357 -0.7940252 0.8968787 0.9861357 -0.8123661 0.8968787 0.9861357 -0.8301795 0.8968787 0.9861357 -0.8475045 0.8968787 0.9861357 -0.8643761 0.8968787 0.9861357 -0.880825 0.8968787 0.9861357 -0.8968787 0.8968787 0.9861357 -0.9125621 0.8968787 0.9861357 -0.9278974 0.8968787 0.9861357 -0.9429048 0.8968787 0.9861357 -0.9576028 0.8968787 0.9861357 -0.9720079 0.8968787 0.9861357 -0.9861357 0.8968787 0.9861357 -1 0.8968787 0.9861357 -0 0.9125621 0.9861357 -0.1939468 0.9125621 0.9861357 -0.2773041 0.9125621 0.9861357 -0.3384659 0.9125621 0.9861357 -0.3885728 0.9125621 0.9861357 -0.4317928 0.9125621 0.9861357 -0.470214 0.9125621 0.9861357 -0.5050551 0.9125621 0.9861357 -0.5370987 0.9125621 0.9861357 -0.5668815 0.9125621 0.9861357 -0.5947903 0.9125621 0.9861357 -0.6211144 0.9125621 0.9861357 -0.6460766 0.9125621 0.9861357 -0.6698526 0.9125621 0.9861357 -0.6925839 0.9125621 0.9861357 -0.7143866 0.9125621 0.9861357 -0.7353569 0.9125621 0.9861357 -0.7555758 0.9125621 0.9861357 -0.7751122 0.9125621 0.9861357 -0.7940252 0.9125621 0.9861357 -0.8123661 0.9125621 0.9861357 -0.8301795 0.9125621 0.9861357 -0.8475045 0.9125621 0.9861357 -0.8643761 0.9125621 0.9861357 -0.880825 0.9125621 0.9861357 -0.8968787 0.9125621 0.9861357 -0.9125621 0.9125621 0.9861357 -0.9278974 0.9125621 0.9861357 -0.9429048 0.9125621 0.9861357 -0.9576028 0.9125621 0.9861357 -0.9720079 0.9125621 0.9861357 -0.9861357 0.9125621 0.9861357 -1 0.9125621 0.9861357 -0 0.9278974 0.9861357 -0.1939468 0.9278974 0.9861357 -0.2773041 0.9278974 0.9861357 -0.3384659 0.9278974 0.9861357 -0.3885728 0.9278974 0.9861357 -0.4317928 0.9278974 0.9861357 -0.470214 0.9278974 0.9861357 -0.5050551 0.9278974 0.9861357 -0.5370987 0.9278974 0.9861357 -0.5668815 0.9278974 0.9861357 -0.5947903 0.9278974 0.9861357 -0.6211144 0.9278974 0.9861357 -0.6460766 0.9278974 0.9861357 -0.6698526 0.9278974 0.9861357 -0.6925839 0.9278974 0.9861357 -0.7143866 0.9278974 0.9861357 -0.7353569 0.9278974 0.9861357 -0.7555758 0.9278974 0.9861357 -0.7751122 0.9278974 0.9861357 -0.7940252 0.9278974 0.9861357 -0.8123661 0.9278974 0.9861357 -0.8301795 0.9278974 0.9861357 -0.8475045 0.9278974 0.9861357 -0.8643761 0.9278974 0.9861357 -0.880825 0.9278974 0.9861357 -0.8968787 0.9278974 0.9861357 -0.9125621 0.9278974 0.9861357 -0.9278974 0.9278974 0.9861357 -0.9429048 0.9278974 0.9861357 -0.9576028 0.9278974 0.9861357 -0.9720079 0.9278974 0.9861357 -0.9861357 0.9278974 0.9861357 -1 0.9278974 0.9861357 -0 0.9429048 0.9861357 -0.1939468 0.9429048 0.9861357 -0.2773041 0.9429048 0.9861357 -0.3384659 0.9429048 0.9861357 -0.3885728 0.9429048 0.9861357 -0.4317928 0.9429048 0.9861357 -0.470214 0.9429048 0.9861357 -0.5050551 0.9429048 0.9861357 -0.5370987 0.9429048 0.9861357 -0.5668815 0.9429048 0.9861357 -0.5947903 0.9429048 0.9861357 -0.6211144 0.9429048 0.9861357 -0.6460766 0.9429048 0.9861357 -0.6698526 0.9429048 0.9861357 -0.6925839 0.9429048 0.9861357 -0.7143866 0.9429048 0.9861357 -0.7353569 0.9429048 0.9861357 -0.7555758 0.9429048 0.9861357 -0.7751122 0.9429048 0.9861357 -0.7940252 0.9429048 0.9861357 -0.8123661 0.9429048 0.9861357 -0.8301795 0.9429048 0.9861357 -0.8475045 0.9429048 0.9861357 -0.8643761 0.9429048 0.9861357 -0.880825 0.9429048 0.9861357 -0.8968787 0.9429048 0.9861357 -0.9125621 0.9429048 0.9861357 -0.9278974 0.9429048 0.9861357 -0.9429048 0.9429048 0.9861357 -0.9576028 0.9429048 0.9861357 -0.9720079 0.9429048 0.9861357 -0.9861357 0.9429048 0.9861357 -1 0.9429048 0.9861357 -0 0.9576028 0.9861357 -0.1939468 0.9576028 0.9861357 -0.2773041 0.9576028 0.9861357 -0.3384659 0.9576028 0.9861357 -0.3885728 0.9576028 0.9861357 -0.4317928 0.9576028 0.9861357 -0.470214 0.9576028 0.9861357 -0.5050551 0.9576028 0.9861357 -0.5370987 0.9576028 0.9861357 -0.5668815 0.9576028 0.9861357 -0.5947903 0.9576028 0.9861357 -0.6211144 0.9576028 0.9861357 -0.6460766 0.9576028 0.9861357 -0.6698526 0.9576028 0.9861357 -0.6925839 0.9576028 0.9861357 -0.7143866 0.9576028 0.9861357 -0.7353569 0.9576028 0.9861357 -0.7555758 0.9576028 0.9861357 -0.7751122 0.9576028 0.9861357 -0.7940252 0.9576028 0.9861357 -0.8123661 0.9576028 0.9861357 -0.8301795 0.9576028 0.9861357 -0.8475045 0.9576028 0.9861357 -0.8643761 0.9576028 0.9861357 -0.880825 0.9576028 0.9861357 -0.8968787 0.9576028 0.9861357 -0.9125621 0.9576028 0.9861357 -0.9278974 0.9576028 0.9861357 -0.9429048 0.9576028 0.9861357 -0.9576028 0.9576028 0.9861357 -0.9720079 0.9576028 0.9861357 -0.9861357 0.9576028 0.9861357 -1 0.9576028 0.9861357 -0 0.9720079 0.9861357 -0.1939468 0.9720079 0.9861357 -0.2773041 0.9720079 0.9861357 -0.3384659 0.9720079 0.9861357 -0.3885728 0.9720079 0.9861357 -0.4317928 0.9720079 0.9861357 -0.470214 0.9720079 0.9861357 -0.5050551 0.9720079 0.9861357 -0.5370987 0.9720079 0.9861357 -0.5668815 0.9720079 0.9861357 -0.5947903 0.9720079 0.9861357 -0.6211144 0.9720079 0.9861357 -0.6460766 0.9720079 0.9861357 -0.6698526 0.9720079 0.9861357 -0.6925839 0.9720079 0.9861357 -0.7143866 0.9720079 0.9861357 -0.7353569 0.9720079 0.9861357 -0.7555758 0.9720079 0.9861357 -0.7751122 0.9720079 0.9861357 -0.7940252 0.9720079 0.9861357 -0.8123661 0.9720079 0.9861357 -0.8301795 0.9720079 0.9861357 -0.8475045 0.9720079 0.9861357 -0.8643761 0.9720079 0.9861357 -0.880825 0.9720079 0.9861357 -0.8968787 0.9720079 0.9861357 -0.9125621 0.9720079 0.9861357 -0.9278974 0.9720079 0.9861357 -0.9429048 0.9720079 0.9861357 -0.9576028 0.9720079 0.9861357 -0.9720079 0.9720079 0.9861357 -0.9861357 0.9720079 0.9861357 -1 0.9720079 0.9861357 -0 0.9861357 0.9861357 -0.1939468 0.9861357 0.9861357 -0.2773041 0.9861357 0.9861357 -0.3384659 0.9861357 0.9861357 -0.3885728 0.9861357 0.9861357 -0.4317928 0.9861357 0.9861357 -0.470214 0.9861357 0.9861357 -0.5050551 0.9861357 0.9861357 -0.5370987 0.9861357 0.9861357 -0.5668815 0.9861357 0.9861357 -0.5947903 0.9861357 0.9861357 -0.6211144 0.9861357 0.9861357 -0.6460766 0.9861357 0.9861357 -0.6698526 0.9861357 0.9861357 -0.6925839 0.9861357 0.9861357 -0.7143866 0.9861357 0.9861357 -0.7353569 0.9861357 0.9861357 -0.7555758 0.9861357 0.9861357 -0.7751122 0.9861357 0.9861357 -0.7940252 0.9861357 0.9861357 -0.8123661 0.9861357 0.9861357 -0.8301795 0.9861357 0.9861357 -0.8475045 0.9861357 0.9861357 -0.8643761 0.9861357 0.9861357 -0.880825 0.9861357 0.9861357 -0.8968787 0.9861357 0.9861357 -0.9125621 0.9861357 0.9861357 -0.9278974 0.9861357 0.9861357 -0.9429048 0.9861357 0.9861357 -0.9576028 0.9861357 0.9861357 -0.9720079 0.9861357 0.9861357 -0.9861357 0.9861357 0.9861357 -1 0.9861357 0.9861357 -0 1 0.9861357 -0.1939468 1 0.9861357 -0.2773041 1 0.9861357 -0.3384659 1 0.9861357 -0.3885728 1 0.9861357 -0.4317928 1 0.9861357 -0.470214 1 0.9861357 -0.5050551 1 0.9861357 -0.5370987 1 0.9861357 -0.5668815 1 0.9861357 -0.5947903 1 0.9861357 -0.6211144 1 0.9861357 -0.6460766 1 0.9861357 -0.6698526 1 0.9861357 -0.6925839 1 0.9861357 -0.7143866 1 0.9861357 -0.7353569 1 0.9861357 -0.7555758 1 0.9861357 -0.7751122 1 0.9861357 -0.7940252 1 0.9861357 -0.8123661 1 0.9861357 -0.8301795 1 0.9861357 -0.8475045 1 0.9861357 -0.8643761 1 0.9861357 -0.880825 1 0.9861357 -0.8968787 1 0.9861357 -0.9125621 1 0.9861357 -0.9278974 1 0.9861357 -0.9429048 1 0.9861357 -0.9576028 1 0.9861357 -0.9720079 1 0.9861357 -0.9861357 1 0.9861357 -1 1 0.9861357 -0 0 1 -0.1939468 0 1 -0.2773041 0 1 -0.3384659 0 1 -0.3885728 0 1 -0.4317928 0 1 -0.470214 0 1 -0.5050551 0 1 -0.5370987 0 1 -0.5668815 0 1 -0.5947903 0 1 -0.6211144 0 1 -0.6460766 0 1 -0.6698526 0 1 -0.6925839 0 1 -0.7143866 0 1 -0.7353569 0 1 -0.7555758 0 1 -0.7751122 0 1 -0.7940252 0 1 -0.8123661 0 1 -0.8301795 0 1 -0.8475045 0 1 -0.8643761 0 1 -0.880825 0 1 -0.8968787 0 1 -0.9125621 0 1 -0.9278974 0 1 -0.9429048 0 1 -0.9576028 0 1 -0.9720079 0 1 -0.9861357 0 1 -1 0 1 -0 0.1939468 1 -0.1939468 0.1939468 1 -0.2773041 0.1939468 1 -0.3384659 0.1939468 1 -0.3885728 0.1939468 1 -0.4317928 0.1939468 1 -0.470214 0.1939468 1 -0.5050551 0.1939468 1 -0.5370987 0.1939468 1 -0.5668815 0.1939468 1 -0.5947903 0.1939468 1 -0.6211144 0.1939468 1 -0.6460766 0.1939468 1 -0.6698526 0.1939468 1 -0.6925839 0.1939468 1 -0.7143866 0.1939468 1 -0.7353569 0.1939468 1 -0.7555758 0.1939468 1 -0.7751122 0.1939468 1 -0.7940252 0.1939468 1 -0.8123661 0.1939468 1 -0.8301795 0.1939468 1 -0.8475045 0.1939468 1 -0.8643761 0.1939468 1 -0.880825 0.1939468 1 -0.8968787 0.1939468 1 -0.9125621 0.1939468 1 -0.9278974 0.1939468 1 -0.9429048 0.1939468 1 -0.9576028 0.1939468 1 -0.9720079 0.1939468 1 -0.9861357 0.1939468 1 -1 0.1939468 1 -0 0.2773041 1 -0.1939468 0.2773041 1 -0.2773041 0.2773041 1 -0.3384659 0.2773041 1 -0.3885728 0.2773041 1 -0.4317928 0.2773041 1 -0.470214 0.2773041 1 -0.5050551 0.2773041 1 -0.5370987 0.2773041 1 -0.5668815 0.2773041 1 -0.5947903 0.2773041 1 -0.6211144 0.2773041 1 -0.6460766 0.2773041 1 -0.6698526 0.2773041 1 -0.6925839 0.2773041 1 -0.7143866 0.2773041 1 -0.7353569 0.2773041 1 -0.7555758 0.2773041 1 -0.7751122 0.2773041 1 -0.7940252 0.2773041 1 -0.8123661 0.2773041 1 -0.8301795 0.2773041 1 -0.8475045 0.2773041 1 -0.8643761 0.2773041 1 -0.880825 0.2773041 1 -0.8968787 0.2773041 1 -0.9125621 0.2773041 1 -0.9278974 0.2773041 1 -0.9429048 0.2773041 1 -0.9576028 0.2773041 1 -0.9720079 0.2773041 1 -0.9861357 0.2773041 1 -1 0.2773041 1 -0 0.3384659 1 -0.1939468 0.3384659 1 -0.2773041 0.3384659 1 -0.3384659 0.3384659 1 -0.3885728 0.3384659 1 -0.4317928 0.3384659 1 -0.470214 0.3384659 1 -0.5050551 0.3384659 1 -0.5370987 0.3384659 1 -0.5668815 0.3384659 1 -0.5947903 0.3384659 1 -0.6211144 0.3384659 1 -0.6460766 0.3384659 1 -0.6698526 0.3384659 1 -0.6925839 0.3384659 1 -0.7143866 0.3384659 1 -0.7353569 0.3384659 1 -0.7555758 0.3384659 1 -0.7751122 0.3384659 1 -0.7940252 0.3384659 1 -0.8123661 0.3384659 1 -0.8301795 0.3384659 1 -0.8475045 0.3384659 1 -0.8643761 0.3384659 1 -0.880825 0.3384659 1 -0.8968787 0.3384659 1 -0.9125621 0.3384659 1 -0.9278974 0.3384659 1 -0.9429048 0.3384659 1 -0.9576028 0.3384659 1 -0.9720079 0.3384659 1 -0.9861357 0.3384659 1 -1 0.3384659 1 -0 0.3885728 1 -0.1939468 0.3885728 1 -0.2773041 0.3885728 1 -0.3384659 0.3885728 1 -0.3885728 0.3885728 1 -0.4317928 0.3885728 1 -0.470214 0.3885728 1 -0.5050551 0.3885728 1 -0.5370987 0.3885728 1 -0.5668815 0.3885728 1 -0.5947903 0.3885728 1 -0.6211144 0.3885728 1 -0.6460766 0.3885728 1 -0.6698526 0.3885728 1 -0.6925839 0.3885728 1 -0.7143866 0.3885728 1 -0.7353569 0.3885728 1 -0.7555758 0.3885728 1 -0.7751122 0.3885728 1 -0.7940252 0.3885728 1 -0.8123661 0.3885728 1 -0.8301795 0.3885728 1 -0.8475045 0.3885728 1 -0.8643761 0.3885728 1 -0.880825 0.3885728 1 -0.8968787 0.3885728 1 -0.9125621 0.3885728 1 -0.9278974 0.3885728 1 -0.9429048 0.3885728 1 -0.9576028 0.3885728 1 -0.9720079 0.3885728 1 -0.9861357 0.3885728 1 -1 0.3885728 1 -0 0.4317928 1 -0.1939468 0.4317928 1 -0.2773041 0.4317928 1 -0.3384659 0.4317928 1 -0.3885728 0.4317928 1 -0.4317928 0.4317928 1 -0.470214 0.4317928 1 -0.5050551 0.4317928 1 -0.5370987 0.4317928 1 -0.5668815 0.4317928 1 -0.5947903 0.4317928 1 -0.6211144 0.4317928 1 -0.6460766 0.4317928 1 -0.6698526 0.4317928 1 -0.6925839 0.4317928 1 -0.7143866 0.4317928 1 -0.7353569 0.4317928 1 -0.7555758 0.4317928 1 -0.7751122 0.4317928 1 -0.7940252 0.4317928 1 -0.8123661 0.4317928 1 -0.8301795 0.4317928 1 -0.8475045 0.4317928 1 -0.8643761 0.4317928 1 -0.880825 0.4317928 1 -0.8968787 0.4317928 1 -0.9125621 0.4317928 1 -0.9278974 0.4317928 1 -0.9429048 0.4317928 1 -0.9576028 0.4317928 1 -0.9720079 0.4317928 1 -0.9861357 0.4317928 1 -1 0.4317928 1 -0 0.470214 1 -0.1939468 0.470214 1 -0.2773041 0.470214 1 -0.3384659 0.470214 1 -0.3885728 0.470214 1 -0.4317928 0.470214 1 -0.470214 0.470214 1 -0.5050551 0.470214 1 -0.5370987 0.470214 1 -0.5668815 0.470214 1 -0.5947903 0.470214 1 -0.6211144 0.470214 1 -0.6460766 0.470214 1 -0.6698526 0.470214 1 -0.6925839 0.470214 1 -0.7143866 0.470214 1 -0.7353569 0.470214 1 -0.7555758 0.470214 1 -0.7751122 0.470214 1 -0.7940252 0.470214 1 -0.8123661 0.470214 1 -0.8301795 0.470214 1 -0.8475045 0.470214 1 -0.8643761 0.470214 1 -0.880825 0.470214 1 -0.8968787 0.470214 1 -0.9125621 0.470214 1 -0.9278974 0.470214 1 -0.9429048 0.470214 1 -0.9576028 0.470214 1 -0.9720079 0.470214 1 -0.9861357 0.470214 1 -1 0.470214 1 -0 0.5050551 1 -0.1939468 0.5050551 1 -0.2773041 0.5050551 1 -0.3384659 0.5050551 1 -0.3885728 0.5050551 1 -0.4317928 0.5050551 1 -0.470214 0.5050551 1 -0.5050551 0.5050551 1 -0.5370987 0.5050551 1 -0.5668815 0.5050551 1 -0.5947903 0.5050551 1 -0.6211144 0.5050551 1 -0.6460766 0.5050551 1 -0.6698526 0.5050551 1 -0.6925839 0.5050551 1 -0.7143866 0.5050551 1 -0.7353569 0.5050551 1 -0.7555758 0.5050551 1 -0.7751122 0.5050551 1 -0.7940252 0.5050551 1 -0.8123661 0.5050551 1 -0.8301795 0.5050551 1 -0.8475045 0.5050551 1 -0.8643761 0.5050551 1 -0.880825 0.5050551 1 -0.8968787 0.5050551 1 -0.9125621 0.5050551 1 -0.9278974 0.5050551 1 -0.9429048 0.5050551 1 -0.9576028 0.5050551 1 -0.9720079 0.5050551 1 -0.9861357 0.5050551 1 -1 0.5050551 1 -0 0.5370987 1 -0.1939468 0.5370987 1 -0.2773041 0.5370987 1 -0.3384659 0.5370987 1 -0.3885728 0.5370987 1 -0.4317928 0.5370987 1 -0.470214 0.5370987 1 -0.5050551 0.5370987 1 -0.5370987 0.5370987 1 -0.5668815 0.5370987 1 -0.5947903 0.5370987 1 -0.6211144 0.5370987 1 -0.6460766 0.5370987 1 -0.6698526 0.5370987 1 -0.6925839 0.5370987 1 -0.7143866 0.5370987 1 -0.7353569 0.5370987 1 -0.7555758 0.5370987 1 -0.7751122 0.5370987 1 -0.7940252 0.5370987 1 -0.8123661 0.5370987 1 -0.8301795 0.5370987 1 -0.8475045 0.5370987 1 -0.8643761 0.5370987 1 -0.880825 0.5370987 1 -0.8968787 0.5370987 1 -0.9125621 0.5370987 1 -0.9278974 0.5370987 1 -0.9429048 0.5370987 1 -0.9576028 0.5370987 1 -0.9720079 0.5370987 1 -0.9861357 0.5370987 1 -1 0.5370987 1 -0 0.5668815 1 -0.1939468 0.5668815 1 -0.2773041 0.5668815 1 -0.3384659 0.5668815 1 -0.3885728 0.5668815 1 -0.4317928 0.5668815 1 -0.470214 0.5668815 1 -0.5050551 0.5668815 1 -0.5370987 0.5668815 1 -0.5668815 0.5668815 1 -0.5947903 0.5668815 1 -0.6211144 0.5668815 1 -0.6460766 0.5668815 1 -0.6698526 0.5668815 1 -0.6925839 0.5668815 1 -0.7143866 0.5668815 1 -0.7353569 0.5668815 1 -0.7555758 0.5668815 1 -0.7751122 0.5668815 1 -0.7940252 0.5668815 1 -0.8123661 0.5668815 1 -0.8301795 0.5668815 1 -0.8475045 0.5668815 1 -0.8643761 0.5668815 1 -0.880825 0.5668815 1 -0.8968787 0.5668815 1 -0.9125621 0.5668815 1 -0.9278974 0.5668815 1 -0.9429048 0.5668815 1 -0.9576028 0.5668815 1 -0.9720079 0.5668815 1 -0.9861357 0.5668815 1 -1 0.5668815 1 -0 0.5947903 1 -0.1939468 0.5947903 1 -0.2773041 0.5947903 1 -0.3384659 0.5947903 1 -0.3885728 0.5947903 1 -0.4317928 0.5947903 1 -0.470214 0.5947903 1 -0.5050551 0.5947903 1 -0.5370987 0.5947903 1 -0.5668815 0.5947903 1 -0.5947903 0.5947903 1 -0.6211144 0.5947903 1 -0.6460766 0.5947903 1 -0.6698526 0.5947903 1 -0.6925839 0.5947903 1 -0.7143866 0.5947903 1 -0.7353569 0.5947903 1 -0.7555758 0.5947903 1 -0.7751122 0.5947903 1 -0.7940252 0.5947903 1 -0.8123661 0.5947903 1 -0.8301795 0.5947903 1 -0.8475045 0.5947903 1 -0.8643761 0.5947903 1 -0.880825 0.5947903 1 -0.8968787 0.5947903 1 -0.9125621 0.5947903 1 -0.9278974 0.5947903 1 -0.9429048 0.5947903 1 -0.9576028 0.5947903 1 -0.9720079 0.5947903 1 -0.9861357 0.5947903 1 -1 0.5947903 1 -0 0.6211144 1 -0.1939468 0.6211144 1 -0.2773041 0.6211144 1 -0.3384659 0.6211144 1 -0.3885728 0.6211144 1 -0.4317928 0.6211144 1 -0.470214 0.6211144 1 -0.5050551 0.6211144 1 -0.5370987 0.6211144 1 -0.5668815 0.6211144 1 -0.5947903 0.6211144 1 -0.6211144 0.6211144 1 -0.6460766 0.6211144 1 -0.6698526 0.6211144 1 -0.6925839 0.6211144 1 -0.7143866 0.6211144 1 -0.7353569 0.6211144 1 -0.7555758 0.6211144 1 -0.7751122 0.6211144 1 -0.7940252 0.6211144 1 -0.8123661 0.6211144 1 -0.8301795 0.6211144 1 -0.8475045 0.6211144 1 -0.8643761 0.6211144 1 -0.880825 0.6211144 1 -0.8968787 0.6211144 1 -0.9125621 0.6211144 1 -0.9278974 0.6211144 1 -0.9429048 0.6211144 1 -0.9576028 0.6211144 1 -0.9720079 0.6211144 1 -0.9861357 0.6211144 1 -1 0.6211144 1 -0 0.6460766 1 -0.1939468 0.6460766 1 -0.2773041 0.6460766 1 -0.3384659 0.6460766 1 -0.3885728 0.6460766 1 -0.4317928 0.6460766 1 -0.470214 0.6460766 1 -0.5050551 0.6460766 1 -0.5370987 0.6460766 1 -0.5668815 0.6460766 1 -0.5947903 0.6460766 1 -0.6211144 0.6460766 1 -0.6460766 0.6460766 1 -0.6698526 0.6460766 1 -0.6925839 0.6460766 1 -0.7143866 0.6460766 1 -0.7353569 0.6460766 1 -0.7555758 0.6460766 1 -0.7751122 0.6460766 1 -0.7940252 0.6460766 1 -0.8123661 0.6460766 1 -0.8301795 0.6460766 1 -0.8475045 0.6460766 1 -0.8643761 0.6460766 1 -0.880825 0.6460766 1 -0.8968787 0.6460766 1 -0.9125621 0.6460766 1 -0.9278974 0.6460766 1 -0.9429048 0.6460766 1 -0.9576028 0.6460766 1 -0.9720079 0.6460766 1 -0.9861357 0.6460766 1 -1 0.6460766 1 -0 0.6698526 1 -0.1939468 0.6698526 1 -0.2773041 0.6698526 1 -0.3384659 0.6698526 1 -0.3885728 0.6698526 1 -0.4317928 0.6698526 1 -0.470214 0.6698526 1 -0.5050551 0.6698526 1 -0.5370987 0.6698526 1 -0.5668815 0.6698526 1 -0.5947903 0.6698526 1 -0.6211144 0.6698526 1 -0.6460766 0.6698526 1 -0.6698526 0.6698526 1 -0.6925839 0.6698526 1 -0.7143866 0.6698526 1 -0.7353569 0.6698526 1 -0.7555758 0.6698526 1 -0.7751122 0.6698526 1 -0.7940252 0.6698526 1 -0.8123661 0.6698526 1 -0.8301795 0.6698526 1 -0.8475045 0.6698526 1 -0.8643761 0.6698526 1 -0.880825 0.6698526 1 -0.8968787 0.6698526 1 -0.9125621 0.6698526 1 -0.9278974 0.6698526 1 -0.9429048 0.6698526 1 -0.9576028 0.6698526 1 -0.9720079 0.6698526 1 -0.9861357 0.6698526 1 -1 0.6698526 1 -0 0.6925839 1 -0.1939468 0.6925839 1 -0.2773041 0.6925839 1 -0.3384659 0.6925839 1 -0.3885728 0.6925839 1 -0.4317928 0.6925839 1 -0.470214 0.6925839 1 -0.5050551 0.6925839 1 -0.5370987 0.6925839 1 -0.5668815 0.6925839 1 -0.5947903 0.6925839 1 -0.6211144 0.6925839 1 -0.6460766 0.6925839 1 -0.6698526 0.6925839 1 -0.6925839 0.6925839 1 -0.7143866 0.6925839 1 -0.7353569 0.6925839 1 -0.7555758 0.6925839 1 -0.7751122 0.6925839 1 -0.7940252 0.6925839 1 -0.8123661 0.6925839 1 -0.8301795 0.6925839 1 -0.8475045 0.6925839 1 -0.8643761 0.6925839 1 -0.880825 0.6925839 1 -0.8968787 0.6925839 1 -0.9125621 0.6925839 1 -0.9278974 0.6925839 1 -0.9429048 0.6925839 1 -0.9576028 0.6925839 1 -0.9720079 0.6925839 1 -0.9861357 0.6925839 1 -1 0.6925839 1 -0 0.7143866 1 -0.1939468 0.7143866 1 -0.2773041 0.7143866 1 -0.3384659 0.7143866 1 -0.3885728 0.7143866 1 -0.4317928 0.7143866 1 -0.470214 0.7143866 1 -0.5050551 0.7143866 1 -0.5370987 0.7143866 1 -0.5668815 0.7143866 1 -0.5947903 0.7143866 1 -0.6211144 0.7143866 1 -0.6460766 0.7143866 1 -0.6698526 0.7143866 1 -0.6925839 0.7143866 1 -0.7143866 0.7143866 1 -0.7353569 0.7143866 1 -0.7555758 0.7143866 1 -0.7751122 0.7143866 1 -0.7940252 0.7143866 1 -0.8123661 0.7143866 1 -0.8301795 0.7143866 1 -0.8475045 0.7143866 1 -0.8643761 0.7143866 1 -0.880825 0.7143866 1 -0.8968787 0.7143866 1 -0.9125621 0.7143866 1 -0.9278974 0.7143866 1 -0.9429048 0.7143866 1 -0.9576028 0.7143866 1 -0.9720079 0.7143866 1 -0.9861357 0.7143866 1 -1 0.7143866 1 -0 0.7353569 1 -0.1939468 0.7353569 1 -0.2773041 0.7353569 1 -0.3384659 0.7353569 1 -0.3885728 0.7353569 1 -0.4317928 0.7353569 1 -0.470214 0.7353569 1 -0.5050551 0.7353569 1 -0.5370987 0.7353569 1 -0.5668815 0.7353569 1 -0.5947903 0.7353569 1 -0.6211144 0.7353569 1 -0.6460766 0.7353569 1 -0.6698526 0.7353569 1 -0.6925839 0.7353569 1 -0.7143866 0.7353569 1 -0.7353569 0.7353569 1 -0.7555758 0.7353569 1 -0.7751122 0.7353569 1 -0.7940252 0.7353569 1 -0.8123661 0.7353569 1 -0.8301795 0.7353569 1 -0.8475045 0.7353569 1 -0.8643761 0.7353569 1 -0.880825 0.7353569 1 -0.8968787 0.7353569 1 -0.9125621 0.7353569 1 -0.9278974 0.7353569 1 -0.9429048 0.7353569 1 -0.9576028 0.7353569 1 -0.9720079 0.7353569 1 -0.9861357 0.7353569 1 -1 0.7353569 1 -0 0.7555758 1 -0.1939468 0.7555758 1 -0.2773041 0.7555758 1 -0.3384659 0.7555758 1 -0.3885728 0.7555758 1 -0.4317928 0.7555758 1 -0.470214 0.7555758 1 -0.5050551 0.7555758 1 -0.5370987 0.7555758 1 -0.5668815 0.7555758 1 -0.5947903 0.7555758 1 -0.6211144 0.7555758 1 -0.6460766 0.7555758 1 -0.6698526 0.7555758 1 -0.6925839 0.7555758 1 -0.7143866 0.7555758 1 -0.7353569 0.7555758 1 -0.7555758 0.7555758 1 -0.7751122 0.7555758 1 -0.7940252 0.7555758 1 -0.8123661 0.7555758 1 -0.8301795 0.7555758 1 -0.8475045 0.7555758 1 -0.8643761 0.7555758 1 -0.880825 0.7555758 1 -0.8968787 0.7555758 1 -0.9125621 0.7555758 1 -0.9278974 0.7555758 1 -0.9429048 0.7555758 1 -0.9576028 0.7555758 1 -0.9720079 0.7555758 1 -0.9861357 0.7555758 1 -1 0.7555758 1 -0 0.7751122 1 -0.1939468 0.7751122 1 -0.2773041 0.7751122 1 -0.3384659 0.7751122 1 -0.3885728 0.7751122 1 -0.4317928 0.7751122 1 -0.470214 0.7751122 1 -0.5050551 0.7751122 1 -0.5370987 0.7751122 1 -0.5668815 0.7751122 1 -0.5947903 0.7751122 1 -0.6211144 0.7751122 1 -0.6460766 0.7751122 1 -0.6698526 0.7751122 1 -0.6925839 0.7751122 1 -0.7143866 0.7751122 1 -0.7353569 0.7751122 1 -0.7555758 0.7751122 1 -0.7751122 0.7751122 1 -0.7940252 0.7751122 1 -0.8123661 0.7751122 1 -0.8301795 0.7751122 1 -0.8475045 0.7751122 1 -0.8643761 0.7751122 1 -0.880825 0.7751122 1 -0.8968787 0.7751122 1 -0.9125621 0.7751122 1 -0.9278974 0.7751122 1 -0.9429048 0.7751122 1 -0.9576028 0.7751122 1 -0.9720079 0.7751122 1 -0.9861357 0.7751122 1 -1 0.7751122 1 -0 0.7940252 1 -0.1939468 0.7940252 1 -0.2773041 0.7940252 1 -0.3384659 0.7940252 1 -0.3885728 0.7940252 1 -0.4317928 0.7940252 1 -0.470214 0.7940252 1 -0.5050551 0.7940252 1 -0.5370987 0.7940252 1 -0.5668815 0.7940252 1 -0.5947903 0.7940252 1 -0.6211144 0.7940252 1 -0.6460766 0.7940252 1 -0.6698526 0.7940252 1 -0.6925839 0.7940252 1 -0.7143866 0.7940252 1 -0.7353569 0.7940252 1 -0.7555758 0.7940252 1 -0.7751122 0.7940252 1 -0.7940252 0.7940252 1 -0.8123661 0.7940252 1 -0.8301795 0.7940252 1 -0.8475045 0.7940252 1 -0.8643761 0.7940252 1 -0.880825 0.7940252 1 -0.8968787 0.7940252 1 -0.9125621 0.7940252 1 -0.9278974 0.7940252 1 -0.9429048 0.7940252 1 -0.9576028 0.7940252 1 -0.9720079 0.7940252 1 -0.9861357 0.7940252 1 -1 0.7940252 1 -0 0.8123661 1 -0.1939468 0.8123661 1 -0.2773041 0.8123661 1 -0.3384659 0.8123661 1 -0.3885728 0.8123661 1 -0.4317928 0.8123661 1 -0.470214 0.8123661 1 -0.5050551 0.8123661 1 -0.5370987 0.8123661 1 -0.5668815 0.8123661 1 -0.5947903 0.8123661 1 -0.6211144 0.8123661 1 -0.6460766 0.8123661 1 -0.6698526 0.8123661 1 -0.6925839 0.8123661 1 -0.7143866 0.8123661 1 -0.7353569 0.8123661 1 -0.7555758 0.8123661 1 -0.7751122 0.8123661 1 -0.7940252 0.8123661 1 -0.8123661 0.8123661 1 -0.8301795 0.8123661 1 -0.8475045 0.8123661 1 -0.8643761 0.8123661 1 -0.880825 0.8123661 1 -0.8968787 0.8123661 1 -0.9125621 0.8123661 1 -0.9278974 0.8123661 1 -0.9429048 0.8123661 1 -0.9576028 0.8123661 1 -0.9720079 0.8123661 1 -0.9861357 0.8123661 1 -1 0.8123661 1 -0 0.8301795 1 -0.1939468 0.8301795 1 -0.2773041 0.8301795 1 -0.3384659 0.8301795 1 -0.3885728 0.8301795 1 -0.4317928 0.8301795 1 -0.470214 0.8301795 1 -0.5050551 0.8301795 1 -0.5370987 0.8301795 1 -0.5668815 0.8301795 1 -0.5947903 0.8301795 1 -0.6211144 0.8301795 1 -0.6460766 0.8301795 1 -0.6698526 0.8301795 1 -0.6925839 0.8301795 1 -0.7143866 0.8301795 1 -0.7353569 0.8301795 1 -0.7555758 0.8301795 1 -0.7751122 0.8301795 1 -0.7940252 0.8301795 1 -0.8123661 0.8301795 1 -0.8301795 0.8301795 1 -0.8475045 0.8301795 1 -0.8643761 0.8301795 1 -0.880825 0.8301795 1 -0.8968787 0.8301795 1 -0.9125621 0.8301795 1 -0.9278974 0.8301795 1 -0.9429048 0.8301795 1 -0.9576028 0.8301795 1 -0.9720079 0.8301795 1 -0.9861357 0.8301795 1 -1 0.8301795 1 -0 0.8475045 1 -0.1939468 0.8475045 1 -0.2773041 0.8475045 1 -0.3384659 0.8475045 1 -0.3885728 0.8475045 1 -0.4317928 0.8475045 1 -0.470214 0.8475045 1 -0.5050551 0.8475045 1 -0.5370987 0.8475045 1 -0.5668815 0.8475045 1 -0.5947903 0.8475045 1 -0.6211144 0.8475045 1 -0.6460766 0.8475045 1 -0.6698526 0.8475045 1 -0.6925839 0.8475045 1 -0.7143866 0.8475045 1 -0.7353569 0.8475045 1 -0.7555758 0.8475045 1 -0.7751122 0.8475045 1 -0.7940252 0.8475045 1 -0.8123661 0.8475045 1 -0.8301795 0.8475045 1 -0.8475045 0.8475045 1 -0.8643761 0.8475045 1 -0.880825 0.8475045 1 -0.8968787 0.8475045 1 -0.9125621 0.8475045 1 -0.9278974 0.8475045 1 -0.9429048 0.8475045 1 -0.9576028 0.8475045 1 -0.9720079 0.8475045 1 -0.9861357 0.8475045 1 -1 0.8475045 1 -0 0.8643761 1 -0.1939468 0.8643761 1 -0.2773041 0.8643761 1 -0.3384659 0.8643761 1 -0.3885728 0.8643761 1 -0.4317928 0.8643761 1 -0.470214 0.8643761 1 -0.5050551 0.8643761 1 -0.5370987 0.8643761 1 -0.5668815 0.8643761 1 -0.5947903 0.8643761 1 -0.6211144 0.8643761 1 -0.6460766 0.8643761 1 -0.6698526 0.8643761 1 -0.6925839 0.8643761 1 -0.7143866 0.8643761 1 -0.7353569 0.8643761 1 -0.7555758 0.8643761 1 -0.7751122 0.8643761 1 -0.7940252 0.8643761 1 -0.8123661 0.8643761 1 -0.8301795 0.8643761 1 -0.8475045 0.8643761 1 -0.8643761 0.8643761 1 -0.880825 0.8643761 1 -0.8968787 0.8643761 1 -0.9125621 0.8643761 1 -0.9278974 0.8643761 1 -0.9429048 0.8643761 1 -0.9576028 0.8643761 1 -0.9720079 0.8643761 1 -0.9861357 0.8643761 1 -1 0.8643761 1 -0 0.880825 1 -0.1939468 0.880825 1 -0.2773041 0.880825 1 -0.3384659 0.880825 1 -0.3885728 0.880825 1 -0.4317928 0.880825 1 -0.470214 0.880825 1 -0.5050551 0.880825 1 -0.5370987 0.880825 1 -0.5668815 0.880825 1 -0.5947903 0.880825 1 -0.6211144 0.880825 1 -0.6460766 0.880825 1 -0.6698526 0.880825 1 -0.6925839 0.880825 1 -0.7143866 0.880825 1 -0.7353569 0.880825 1 -0.7555758 0.880825 1 -0.7751122 0.880825 1 -0.7940252 0.880825 1 -0.8123661 0.880825 1 -0.8301795 0.880825 1 -0.8475045 0.880825 1 -0.8643761 0.880825 1 -0.880825 0.880825 1 -0.8968787 0.880825 1 -0.9125621 0.880825 1 -0.9278974 0.880825 1 -0.9429048 0.880825 1 -0.9576028 0.880825 1 -0.9720079 0.880825 1 -0.9861357 0.880825 1 -1 0.880825 1 -0 0.8968787 1 -0.1939468 0.8968787 1 -0.2773041 0.8968787 1 -0.3384659 0.8968787 1 -0.3885728 0.8968787 1 -0.4317928 0.8968787 1 -0.470214 0.8968787 1 -0.5050551 0.8968787 1 -0.5370987 0.8968787 1 -0.5668815 0.8968787 1 -0.5947903 0.8968787 1 -0.6211144 0.8968787 1 -0.6460766 0.8968787 1 -0.6698526 0.8968787 1 -0.6925839 0.8968787 1 -0.7143866 0.8968787 1 -0.7353569 0.8968787 1 -0.7555758 0.8968787 1 -0.7751122 0.8968787 1 -0.7940252 0.8968787 1 -0.8123661 0.8968787 1 -0.8301795 0.8968787 1 -0.8475045 0.8968787 1 -0.8643761 0.8968787 1 -0.880825 0.8968787 1 -0.8968787 0.8968787 1 -0.9125621 0.8968787 1 -0.9278974 0.8968787 1 -0.9429048 0.8968787 1 -0.9576028 0.8968787 1 -0.9720079 0.8968787 1 -0.9861357 0.8968787 1 -1 0.8968787 1 -0 0.9125621 1 -0.1939468 0.9125621 1 -0.2773041 0.9125621 1 -0.3384659 0.9125621 1 -0.3885728 0.9125621 1 -0.4317928 0.9125621 1 -0.470214 0.9125621 1 -0.5050551 0.9125621 1 -0.5370987 0.9125621 1 -0.5668815 0.9125621 1 -0.5947903 0.9125621 1 -0.6211144 0.9125621 1 -0.6460766 0.9125621 1 -0.6698526 0.9125621 1 -0.6925839 0.9125621 1 -0.7143866 0.9125621 1 -0.7353569 0.9125621 1 -0.7555758 0.9125621 1 -0.7751122 0.9125621 1 -0.7940252 0.9125621 1 -0.8123661 0.9125621 1 -0.8301795 0.9125621 1 -0.8475045 0.9125621 1 -0.8643761 0.9125621 1 -0.880825 0.9125621 1 -0.8968787 0.9125621 1 -0.9125621 0.9125621 1 -0.9278974 0.9125621 1 -0.9429048 0.9125621 1 -0.9576028 0.9125621 1 -0.9720079 0.9125621 1 -0.9861357 0.9125621 1 -1 0.9125621 1 -0 0.9278974 1 -0.1939468 0.9278974 1 -0.2773041 0.9278974 1 -0.3384659 0.9278974 1 -0.3885728 0.9278974 1 -0.4317928 0.9278974 1 -0.470214 0.9278974 1 -0.5050551 0.9278974 1 -0.5370987 0.9278974 1 -0.5668815 0.9278974 1 -0.5947903 0.9278974 1 -0.6211144 0.9278974 1 -0.6460766 0.9278974 1 -0.6698526 0.9278974 1 -0.6925839 0.9278974 1 -0.7143866 0.9278974 1 -0.7353569 0.9278974 1 -0.7555758 0.9278974 1 -0.7751122 0.9278974 1 -0.7940252 0.9278974 1 -0.8123661 0.9278974 1 -0.8301795 0.9278974 1 -0.8475045 0.9278974 1 -0.8643761 0.9278974 1 -0.880825 0.9278974 1 -0.8968787 0.9278974 1 -0.9125621 0.9278974 1 -0.9278974 0.9278974 1 -0.9429048 0.9278974 1 -0.9576028 0.9278974 1 -0.9720079 0.9278974 1 -0.9861357 0.9278974 1 -1 0.9278974 1 -0 0.9429048 1 -0.1939468 0.9429048 1 -0.2773041 0.9429048 1 -0.3384659 0.9429048 1 -0.3885728 0.9429048 1 -0.4317928 0.9429048 1 -0.470214 0.9429048 1 -0.5050551 0.9429048 1 -0.5370987 0.9429048 1 -0.5668815 0.9429048 1 -0.5947903 0.9429048 1 -0.6211144 0.9429048 1 -0.6460766 0.9429048 1 -0.6698526 0.9429048 1 -0.6925839 0.9429048 1 -0.7143866 0.9429048 1 -0.7353569 0.9429048 1 -0.7555758 0.9429048 1 -0.7751122 0.9429048 1 -0.7940252 0.9429048 1 -0.8123661 0.9429048 1 -0.8301795 0.9429048 1 -0.8475045 0.9429048 1 -0.8643761 0.9429048 1 -0.880825 0.9429048 1 -0.8968787 0.9429048 1 -0.9125621 0.9429048 1 -0.9278974 0.9429048 1 -0.9429048 0.9429048 1 -0.9576028 0.9429048 1 -0.9720079 0.9429048 1 -0.9861357 0.9429048 1 -1 0.9429048 1 -0 0.9576028 1 -0.1939468 0.9576028 1 -0.2773041 0.9576028 1 -0.3384659 0.9576028 1 -0.3885728 0.9576028 1 -0.4317928 0.9576028 1 -0.470214 0.9576028 1 -0.5050551 0.9576028 1 -0.5370987 0.9576028 1 -0.5668815 0.9576028 1 -0.5947903 0.9576028 1 -0.6211144 0.9576028 1 -0.6460766 0.9576028 1 -0.6698526 0.9576028 1 -0.6925839 0.9576028 1 -0.7143866 0.9576028 1 -0.7353569 0.9576028 1 -0.7555758 0.9576028 1 -0.7751122 0.9576028 1 -0.7940252 0.9576028 1 -0.8123661 0.9576028 1 -0.8301795 0.9576028 1 -0.8475045 0.9576028 1 -0.8643761 0.9576028 1 -0.880825 0.9576028 1 -0.8968787 0.9576028 1 -0.9125621 0.9576028 1 -0.9278974 0.9576028 1 -0.9429048 0.9576028 1 -0.9576028 0.9576028 1 -0.9720079 0.9576028 1 -0.9861357 0.9576028 1 -1 0.9576028 1 -0 0.9720079 1 -0.1939468 0.9720079 1 -0.2773041 0.9720079 1 -0.3384659 0.9720079 1 -0.3885728 0.9720079 1 -0.4317928 0.9720079 1 -0.470214 0.9720079 1 -0.5050551 0.9720079 1 -0.5370987 0.9720079 1 -0.5668815 0.9720079 1 -0.5947903 0.9720079 1 -0.6211144 0.9720079 1 -0.6460766 0.9720079 1 -0.6698526 0.9720079 1 -0.6925839 0.9720079 1 -0.7143866 0.9720079 1 -0.7353569 0.9720079 1 -0.7555758 0.9720079 1 -0.7751122 0.9720079 1 -0.7940252 0.9720079 1 -0.8123661 0.9720079 1 -0.8301795 0.9720079 1 -0.8475045 0.9720079 1 -0.8643761 0.9720079 1 -0.880825 0.9720079 1 -0.8968787 0.9720079 1 -0.9125621 0.9720079 1 -0.9278974 0.9720079 1 -0.9429048 0.9720079 1 -0.9576028 0.9720079 1 -0.9720079 0.9720079 1 -0.9861357 0.9720079 1 -1 0.9720079 1 -0 0.9861357 1 -0.1939468 0.9861357 1 -0.2773041 0.9861357 1 -0.3384659 0.9861357 1 -0.3885728 0.9861357 1 -0.4317928 0.9861357 1 -0.470214 0.9861357 1 -0.5050551 0.9861357 1 -0.5370987 0.9861357 1 -0.5668815 0.9861357 1 -0.5947903 0.9861357 1 -0.6211144 0.9861357 1 -0.6460766 0.9861357 1 -0.6698526 0.9861357 1 -0.6925839 0.9861357 1 -0.7143866 0.9861357 1 -0.7353569 0.9861357 1 -0.7555758 0.9861357 1 -0.7751122 0.9861357 1 -0.7940252 0.9861357 1 -0.8123661 0.9861357 1 -0.8301795 0.9861357 1 -0.8475045 0.9861357 1 -0.8643761 0.9861357 1 -0.880825 0.9861357 1 -0.8968787 0.9861357 1 -0.9125621 0.9861357 1 -0.9278974 0.9861357 1 -0.9429048 0.9861357 1 -0.9576028 0.9861357 1 -0.9720079 0.9861357 1 -0.9861357 0.9861357 1 -1 0.9861357 1 -0 1 1 -0.1939468 1 1 -0.2773041 1 1 -0.3384659 1 1 -0.3885728 1 1 -0.4317928 1 1 -0.470214 1 1 -0.5050551 1 1 -0.5370987 1 1 -0.5668815 1 1 -0.5947903 1 1 -0.6211144 1 1 -0.6460766 1 1 -0.6698526 1 1 -0.6925839 1 1 -0.7143866 1 1 -0.7353569 1 1 -0.7555758 1 1 -0.7751122 1 1 -0.7940252 1 1 -0.8123661 1 1 -0.8301795 1 1 -0.8475045 1 1 -0.8643761 1 1 -0.880825 1 1 -0.8968787 1 1 -0.9125621 1 1 -0.9278974 1 1 -0.9429048 1 1 -0.9576028 1 1 -0.9720079 1 1 -0.9861357 1 1 -1 1 1 diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/Linear to sRGB r1.cube.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/Linear to sRGB r1.cube.meta deleted file mode 100644 index b9b2d5ac3..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/Linear to sRGB r1.cube.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: eb10e8cb1eab7904bb028a123f717ac7 -timeCreated: 1496826837 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/Unity Log to Linear r1.cube b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/Unity Log to Linear r1.cube deleted file mode 100644 index e4cf57e21..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/Unity Log to Linear r1.cube +++ /dev/null @@ -1,35941 +0,0 @@ -TITLE "Unity Log to Linear r1" -LUT_3D_SIZE 33 -DOMAIN_MIN 0 0 0 -DOMAIN_MAX 1 1 1 --0.0175068 -0.0175068 -0.0175068 --0.01161267 -0.0175068 -0.0175068 --0.005718534 -0.0175068 -0.0175068 -0.0001755984 -0.0175068 -0.0175068 -0.006069731 -0.0175068 -0.0175068 -0.01197402 -0.0175068 -0.0175068 -0.01903886 -0.0175068 -0.0175068 -0.02852504 -0.0175068 -0.0175068 -0.04126244 -0.0175068 -0.0175068 -0.05836535 -0.0175068 -0.0175068 -0.08132997 -0.0175068 -0.0175068 -0.1121653 -0.0175068 -0.0175068 -0.1535689 -0.0175068 -0.0175068 -0.2091628 -0.0175068 -0.0175068 -0.2838106 -0.0175068 -0.0175068 -0.3840425 -0.0175068 -0.0175068 -0.518627 -0.0175068 -0.0175068 -0.6993381 -0.0175068 -0.0175068 -0.9419845 -0.0175068 -0.0175068 -1.267794 -0.0175068 -0.0175068 -1.705268 -0.0175068 -0.0175068 -2.292679 -0.0175068 -0.0175068 -3.081414 -0.0175068 -0.0175068 -4.140474 -0.0175068 -0.0175068 -5.562508 -0.0175068 -0.0175068 -7.471917 -0.0175068 -0.0175068 -10.03574 -0.0175068 -0.0175068 -13.47828 -0.0175068 -0.0175068 -18.10068 -0.0175068 -0.0175068 -24.30731 -0.0175068 -0.0175068 -32.64117 -0.0175068 -0.0175068 -43.83129 -0.0175068 -0.0175068 -58.85664 -0.0175068 -0.0175068 --0.0175068 -0.01161267 -0.0175068 --0.01161267 -0.01161267 -0.0175068 --0.005718534 -0.01161267 -0.0175068 -0.0001755984 -0.01161267 -0.0175068 -0.006069731 -0.01161267 -0.0175068 -0.01197402 -0.01161267 -0.0175068 -0.01903886 -0.01161267 -0.0175068 -0.02852504 -0.01161267 -0.0175068 -0.04126244 -0.01161267 -0.0175068 -0.05836535 -0.01161267 -0.0175068 -0.08132997 -0.01161267 -0.0175068 -0.1121653 -0.01161267 -0.0175068 -0.1535689 -0.01161267 -0.0175068 -0.2091628 -0.01161267 -0.0175068 -0.2838106 -0.01161267 -0.0175068 -0.3840425 -0.01161267 -0.0175068 -0.518627 -0.01161267 -0.0175068 -0.6993381 -0.01161267 -0.0175068 -0.9419845 -0.01161267 -0.0175068 -1.267794 -0.01161267 -0.0175068 -1.705268 -0.01161267 -0.0175068 -2.292679 -0.01161267 -0.0175068 -3.081414 -0.01161267 -0.0175068 -4.140474 -0.01161267 -0.0175068 -5.562508 -0.01161267 -0.0175068 -7.471917 -0.01161267 -0.0175068 -10.03574 -0.01161267 -0.0175068 -13.47828 -0.01161267 -0.0175068 -18.10068 -0.01161267 -0.0175068 -24.30731 -0.01161267 -0.0175068 -32.64117 -0.01161267 -0.0175068 -43.83129 -0.01161267 -0.0175068 -58.85664 -0.01161267 -0.0175068 --0.0175068 -0.005718534 -0.0175068 --0.01161267 -0.005718534 -0.0175068 --0.005718534 -0.005718534 -0.0175068 -0.0001755984 -0.005718534 -0.0175068 -0.006069731 -0.005718534 -0.0175068 -0.01197402 -0.005718534 -0.0175068 -0.01903886 -0.005718534 -0.0175068 -0.02852504 -0.005718534 -0.0175068 -0.04126244 -0.005718534 -0.0175068 -0.05836535 -0.005718534 -0.0175068 -0.08132997 -0.005718534 -0.0175068 -0.1121653 -0.005718534 -0.0175068 -0.1535689 -0.005718534 -0.0175068 -0.2091628 -0.005718534 -0.0175068 -0.2838106 -0.005718534 -0.0175068 -0.3840425 -0.005718534 -0.0175068 -0.518627 -0.005718534 -0.0175068 -0.6993381 -0.005718534 -0.0175068 -0.9419845 -0.005718534 -0.0175068 -1.267794 -0.005718534 -0.0175068 -1.705268 -0.005718534 -0.0175068 -2.292679 -0.005718534 -0.0175068 -3.081414 -0.005718534 -0.0175068 -4.140474 -0.005718534 -0.0175068 -5.562508 -0.005718534 -0.0175068 -7.471917 -0.005718534 -0.0175068 -10.03574 -0.005718534 -0.0175068 -13.47828 -0.005718534 -0.0175068 -18.10068 -0.005718534 -0.0175068 -24.30731 -0.005718534 -0.0175068 -32.64117 -0.005718534 -0.0175068 -43.83129 -0.005718534 -0.0175068 -58.85664 -0.005718534 -0.0175068 --0.0175068 0.0001755984 -0.0175068 --0.01161267 0.0001755984 -0.0175068 --0.005718534 0.0001755984 -0.0175068 -0.0001755984 0.0001755984 -0.0175068 -0.006069731 0.0001755984 -0.0175068 -0.01197402 0.0001755984 -0.0175068 -0.01903886 0.0001755984 -0.0175068 -0.02852504 0.0001755984 -0.0175068 -0.04126244 0.0001755984 -0.0175068 -0.05836535 0.0001755984 -0.0175068 -0.08132997 0.0001755984 -0.0175068 -0.1121653 0.0001755984 -0.0175068 -0.1535689 0.0001755984 -0.0175068 -0.2091628 0.0001755984 -0.0175068 -0.2838106 0.0001755984 -0.0175068 -0.3840425 0.0001755984 -0.0175068 -0.518627 0.0001755984 -0.0175068 -0.6993381 0.0001755984 -0.0175068 -0.9419845 0.0001755984 -0.0175068 -1.267794 0.0001755984 -0.0175068 -1.705268 0.0001755984 -0.0175068 -2.292679 0.0001755984 -0.0175068 -3.081414 0.0001755984 -0.0175068 -4.140474 0.0001755984 -0.0175068 -5.562508 0.0001755984 -0.0175068 -7.471917 0.0001755984 -0.0175068 -10.03574 0.0001755984 -0.0175068 -13.47828 0.0001755984 -0.0175068 -18.10068 0.0001755984 -0.0175068 -24.30731 0.0001755984 -0.0175068 -32.64117 0.0001755984 -0.0175068 -43.83129 0.0001755984 -0.0175068 -58.85664 0.0001755984 -0.0175068 --0.0175068 0.006069731 -0.0175068 --0.01161267 0.006069731 -0.0175068 --0.005718534 0.006069731 -0.0175068 -0.0001755984 0.006069731 -0.0175068 -0.006069731 0.006069731 -0.0175068 -0.01197402 0.006069731 -0.0175068 -0.01903886 0.006069731 -0.0175068 -0.02852504 0.006069731 -0.0175068 -0.04126244 0.006069731 -0.0175068 -0.05836535 0.006069731 -0.0175068 -0.08132997 0.006069731 -0.0175068 -0.1121653 0.006069731 -0.0175068 -0.1535689 0.006069731 -0.0175068 -0.2091628 0.006069731 -0.0175068 -0.2838106 0.006069731 -0.0175068 -0.3840425 0.006069731 -0.0175068 -0.518627 0.006069731 -0.0175068 -0.6993381 0.006069731 -0.0175068 -0.9419845 0.006069731 -0.0175068 -1.267794 0.006069731 -0.0175068 -1.705268 0.006069731 -0.0175068 -2.292679 0.006069731 -0.0175068 -3.081414 0.006069731 -0.0175068 -4.140474 0.006069731 -0.0175068 -5.562508 0.006069731 -0.0175068 -7.471917 0.006069731 -0.0175068 -10.03574 0.006069731 -0.0175068 -13.47828 0.006069731 -0.0175068 -18.10068 0.006069731 -0.0175068 -24.30731 0.006069731 -0.0175068 -32.64117 0.006069731 -0.0175068 -43.83129 0.006069731 -0.0175068 -58.85664 0.006069731 -0.0175068 --0.0175068 0.01197402 -0.0175068 --0.01161267 0.01197402 -0.0175068 --0.005718534 0.01197402 -0.0175068 -0.0001755984 0.01197402 -0.0175068 -0.006069731 0.01197402 -0.0175068 -0.01197402 0.01197402 -0.0175068 -0.01903886 0.01197402 -0.0175068 -0.02852504 0.01197402 -0.0175068 -0.04126244 0.01197402 -0.0175068 -0.05836535 0.01197402 -0.0175068 -0.08132997 0.01197402 -0.0175068 -0.1121653 0.01197402 -0.0175068 -0.1535689 0.01197402 -0.0175068 -0.2091628 0.01197402 -0.0175068 -0.2838106 0.01197402 -0.0175068 -0.3840425 0.01197402 -0.0175068 -0.518627 0.01197402 -0.0175068 -0.6993381 0.01197402 -0.0175068 -0.9419845 0.01197402 -0.0175068 -1.267794 0.01197402 -0.0175068 -1.705268 0.01197402 -0.0175068 -2.292679 0.01197402 -0.0175068 -3.081414 0.01197402 -0.0175068 -4.140474 0.01197402 -0.0175068 -5.562508 0.01197402 -0.0175068 -7.471917 0.01197402 -0.0175068 -10.03574 0.01197402 -0.0175068 -13.47828 0.01197402 -0.0175068 -18.10068 0.01197402 -0.0175068 -24.30731 0.01197402 -0.0175068 -32.64117 0.01197402 -0.0175068 -43.83129 0.01197402 -0.0175068 -58.85664 0.01197402 -0.0175068 --0.0175068 0.01903886 -0.0175068 --0.01161267 0.01903886 -0.0175068 --0.005718534 0.01903886 -0.0175068 -0.0001755984 0.01903886 -0.0175068 -0.006069731 0.01903886 -0.0175068 -0.01197402 0.01903886 -0.0175068 -0.01903886 0.01903886 -0.0175068 -0.02852504 0.01903886 -0.0175068 -0.04126244 0.01903886 -0.0175068 -0.05836535 0.01903886 -0.0175068 -0.08132997 0.01903886 -0.0175068 -0.1121653 0.01903886 -0.0175068 -0.1535689 0.01903886 -0.0175068 -0.2091628 0.01903886 -0.0175068 -0.2838106 0.01903886 -0.0175068 -0.3840425 0.01903886 -0.0175068 -0.518627 0.01903886 -0.0175068 -0.6993381 0.01903886 -0.0175068 -0.9419845 0.01903886 -0.0175068 -1.267794 0.01903886 -0.0175068 -1.705268 0.01903886 -0.0175068 -2.292679 0.01903886 -0.0175068 -3.081414 0.01903886 -0.0175068 -4.140474 0.01903886 -0.0175068 -5.562508 0.01903886 -0.0175068 -7.471917 0.01903886 -0.0175068 -10.03574 0.01903886 -0.0175068 -13.47828 0.01903886 -0.0175068 -18.10068 0.01903886 -0.0175068 -24.30731 0.01903886 -0.0175068 -32.64117 0.01903886 -0.0175068 -43.83129 0.01903886 -0.0175068 -58.85664 0.01903886 -0.0175068 --0.0175068 0.02852504 -0.0175068 --0.01161267 0.02852504 -0.0175068 --0.005718534 0.02852504 -0.0175068 -0.0001755984 0.02852504 -0.0175068 -0.006069731 0.02852504 -0.0175068 -0.01197402 0.02852504 -0.0175068 -0.01903886 0.02852504 -0.0175068 -0.02852504 0.02852504 -0.0175068 -0.04126244 0.02852504 -0.0175068 -0.05836535 0.02852504 -0.0175068 -0.08132997 0.02852504 -0.0175068 -0.1121653 0.02852504 -0.0175068 -0.1535689 0.02852504 -0.0175068 -0.2091628 0.02852504 -0.0175068 -0.2838106 0.02852504 -0.0175068 -0.3840425 0.02852504 -0.0175068 -0.518627 0.02852504 -0.0175068 -0.6993381 0.02852504 -0.0175068 -0.9419845 0.02852504 -0.0175068 -1.267794 0.02852504 -0.0175068 -1.705268 0.02852504 -0.0175068 -2.292679 0.02852504 -0.0175068 -3.081414 0.02852504 -0.0175068 -4.140474 0.02852504 -0.0175068 -5.562508 0.02852504 -0.0175068 -7.471917 0.02852504 -0.0175068 -10.03574 0.02852504 -0.0175068 -13.47828 0.02852504 -0.0175068 -18.10068 0.02852504 -0.0175068 -24.30731 0.02852504 -0.0175068 -32.64117 0.02852504 -0.0175068 -43.83129 0.02852504 -0.0175068 -58.85664 0.02852504 -0.0175068 --0.0175068 0.04126244 -0.0175068 --0.01161267 0.04126244 -0.0175068 --0.005718534 0.04126244 -0.0175068 -0.0001755984 0.04126244 -0.0175068 -0.006069731 0.04126244 -0.0175068 -0.01197402 0.04126244 -0.0175068 -0.01903886 0.04126244 -0.0175068 -0.02852504 0.04126244 -0.0175068 -0.04126244 0.04126244 -0.0175068 -0.05836535 0.04126244 -0.0175068 -0.08132997 0.04126244 -0.0175068 -0.1121653 0.04126244 -0.0175068 -0.1535689 0.04126244 -0.0175068 -0.2091628 0.04126244 -0.0175068 -0.2838106 0.04126244 -0.0175068 -0.3840425 0.04126244 -0.0175068 -0.518627 0.04126244 -0.0175068 -0.6993381 0.04126244 -0.0175068 -0.9419845 0.04126244 -0.0175068 -1.267794 0.04126244 -0.0175068 -1.705268 0.04126244 -0.0175068 -2.292679 0.04126244 -0.0175068 -3.081414 0.04126244 -0.0175068 -4.140474 0.04126244 -0.0175068 -5.562508 0.04126244 -0.0175068 -7.471917 0.04126244 -0.0175068 -10.03574 0.04126244 -0.0175068 -13.47828 0.04126244 -0.0175068 -18.10068 0.04126244 -0.0175068 -24.30731 0.04126244 -0.0175068 -32.64117 0.04126244 -0.0175068 -43.83129 0.04126244 -0.0175068 -58.85664 0.04126244 -0.0175068 --0.0175068 0.05836535 -0.0175068 --0.01161267 0.05836535 -0.0175068 --0.005718534 0.05836535 -0.0175068 -0.0001755984 0.05836535 -0.0175068 -0.006069731 0.05836535 -0.0175068 -0.01197402 0.05836535 -0.0175068 -0.01903886 0.05836535 -0.0175068 -0.02852504 0.05836535 -0.0175068 -0.04126244 0.05836535 -0.0175068 -0.05836535 0.05836535 -0.0175068 -0.08132997 0.05836535 -0.0175068 -0.1121653 0.05836535 -0.0175068 -0.1535689 0.05836535 -0.0175068 -0.2091628 0.05836535 -0.0175068 -0.2838106 0.05836535 -0.0175068 -0.3840425 0.05836535 -0.0175068 -0.518627 0.05836535 -0.0175068 -0.6993381 0.05836535 -0.0175068 -0.9419845 0.05836535 -0.0175068 -1.267794 0.05836535 -0.0175068 -1.705268 0.05836535 -0.0175068 -2.292679 0.05836535 -0.0175068 -3.081414 0.05836535 -0.0175068 -4.140474 0.05836535 -0.0175068 -5.562508 0.05836535 -0.0175068 -7.471917 0.05836535 -0.0175068 -10.03574 0.05836535 -0.0175068 -13.47828 0.05836535 -0.0175068 -18.10068 0.05836535 -0.0175068 -24.30731 0.05836535 -0.0175068 -32.64117 0.05836535 -0.0175068 -43.83129 0.05836535 -0.0175068 -58.85664 0.05836535 -0.0175068 --0.0175068 0.08132997 -0.0175068 --0.01161267 0.08132997 -0.0175068 --0.005718534 0.08132997 -0.0175068 -0.0001755984 0.08132997 -0.0175068 -0.006069731 0.08132997 -0.0175068 -0.01197402 0.08132997 -0.0175068 -0.01903886 0.08132997 -0.0175068 -0.02852504 0.08132997 -0.0175068 -0.04126244 0.08132997 -0.0175068 -0.05836535 0.08132997 -0.0175068 -0.08132997 0.08132997 -0.0175068 -0.1121653 0.08132997 -0.0175068 -0.1535689 0.08132997 -0.0175068 -0.2091628 0.08132997 -0.0175068 -0.2838106 0.08132997 -0.0175068 -0.3840425 0.08132997 -0.0175068 -0.518627 0.08132997 -0.0175068 -0.6993381 0.08132997 -0.0175068 -0.9419845 0.08132997 -0.0175068 -1.267794 0.08132997 -0.0175068 -1.705268 0.08132997 -0.0175068 -2.292679 0.08132997 -0.0175068 -3.081414 0.08132997 -0.0175068 -4.140474 0.08132997 -0.0175068 -5.562508 0.08132997 -0.0175068 -7.471917 0.08132997 -0.0175068 -10.03574 0.08132997 -0.0175068 -13.47828 0.08132997 -0.0175068 -18.10068 0.08132997 -0.0175068 -24.30731 0.08132997 -0.0175068 -32.64117 0.08132997 -0.0175068 -43.83129 0.08132997 -0.0175068 -58.85664 0.08132997 -0.0175068 --0.0175068 0.1121653 -0.0175068 --0.01161267 0.1121653 -0.0175068 --0.005718534 0.1121653 -0.0175068 -0.0001755984 0.1121653 -0.0175068 -0.006069731 0.1121653 -0.0175068 -0.01197402 0.1121653 -0.0175068 -0.01903886 0.1121653 -0.0175068 -0.02852504 0.1121653 -0.0175068 -0.04126244 0.1121653 -0.0175068 -0.05836535 0.1121653 -0.0175068 -0.08132997 0.1121653 -0.0175068 -0.1121653 0.1121653 -0.0175068 -0.1535689 0.1121653 -0.0175068 -0.2091628 0.1121653 -0.0175068 -0.2838106 0.1121653 -0.0175068 -0.3840425 0.1121653 -0.0175068 -0.518627 0.1121653 -0.0175068 -0.6993381 0.1121653 -0.0175068 -0.9419845 0.1121653 -0.0175068 -1.267794 0.1121653 -0.0175068 -1.705268 0.1121653 -0.0175068 -2.292679 0.1121653 -0.0175068 -3.081414 0.1121653 -0.0175068 -4.140474 0.1121653 -0.0175068 -5.562508 0.1121653 -0.0175068 -7.471917 0.1121653 -0.0175068 -10.03574 0.1121653 -0.0175068 -13.47828 0.1121653 -0.0175068 -18.10068 0.1121653 -0.0175068 -24.30731 0.1121653 -0.0175068 -32.64117 0.1121653 -0.0175068 -43.83129 0.1121653 -0.0175068 -58.85664 0.1121653 -0.0175068 --0.0175068 0.1535689 -0.0175068 --0.01161267 0.1535689 -0.0175068 --0.005718534 0.1535689 -0.0175068 -0.0001755984 0.1535689 -0.0175068 -0.006069731 0.1535689 -0.0175068 -0.01197402 0.1535689 -0.0175068 -0.01903886 0.1535689 -0.0175068 -0.02852504 0.1535689 -0.0175068 -0.04126244 0.1535689 -0.0175068 -0.05836535 0.1535689 -0.0175068 -0.08132997 0.1535689 -0.0175068 -0.1121653 0.1535689 -0.0175068 -0.1535689 0.1535689 -0.0175068 -0.2091628 0.1535689 -0.0175068 -0.2838106 0.1535689 -0.0175068 -0.3840425 0.1535689 -0.0175068 -0.518627 0.1535689 -0.0175068 -0.6993381 0.1535689 -0.0175068 -0.9419845 0.1535689 -0.0175068 -1.267794 0.1535689 -0.0175068 -1.705268 0.1535689 -0.0175068 -2.292679 0.1535689 -0.0175068 -3.081414 0.1535689 -0.0175068 -4.140474 0.1535689 -0.0175068 -5.562508 0.1535689 -0.0175068 -7.471917 0.1535689 -0.0175068 -10.03574 0.1535689 -0.0175068 -13.47828 0.1535689 -0.0175068 -18.10068 0.1535689 -0.0175068 -24.30731 0.1535689 -0.0175068 -32.64117 0.1535689 -0.0175068 -43.83129 0.1535689 -0.0175068 -58.85664 0.1535689 -0.0175068 --0.0175068 0.2091628 -0.0175068 --0.01161267 0.2091628 -0.0175068 --0.005718534 0.2091628 -0.0175068 -0.0001755984 0.2091628 -0.0175068 -0.006069731 0.2091628 -0.0175068 -0.01197402 0.2091628 -0.0175068 -0.01903886 0.2091628 -0.0175068 -0.02852504 0.2091628 -0.0175068 -0.04126244 0.2091628 -0.0175068 -0.05836535 0.2091628 -0.0175068 -0.08132997 0.2091628 -0.0175068 -0.1121653 0.2091628 -0.0175068 -0.1535689 0.2091628 -0.0175068 -0.2091628 0.2091628 -0.0175068 -0.2838106 0.2091628 -0.0175068 -0.3840425 0.2091628 -0.0175068 -0.518627 0.2091628 -0.0175068 -0.6993381 0.2091628 -0.0175068 -0.9419845 0.2091628 -0.0175068 -1.267794 0.2091628 -0.0175068 -1.705268 0.2091628 -0.0175068 -2.292679 0.2091628 -0.0175068 -3.081414 0.2091628 -0.0175068 -4.140474 0.2091628 -0.0175068 -5.562508 0.2091628 -0.0175068 -7.471917 0.2091628 -0.0175068 -10.03574 0.2091628 -0.0175068 -13.47828 0.2091628 -0.0175068 -18.10068 0.2091628 -0.0175068 -24.30731 0.2091628 -0.0175068 -32.64117 0.2091628 -0.0175068 -43.83129 0.2091628 -0.0175068 -58.85664 0.2091628 -0.0175068 --0.0175068 0.2838106 -0.0175068 --0.01161267 0.2838106 -0.0175068 --0.005718534 0.2838106 -0.0175068 -0.0001755984 0.2838106 -0.0175068 -0.006069731 0.2838106 -0.0175068 -0.01197402 0.2838106 -0.0175068 -0.01903886 0.2838106 -0.0175068 -0.02852504 0.2838106 -0.0175068 -0.04126244 0.2838106 -0.0175068 -0.05836535 0.2838106 -0.0175068 -0.08132997 0.2838106 -0.0175068 -0.1121653 0.2838106 -0.0175068 -0.1535689 0.2838106 -0.0175068 -0.2091628 0.2838106 -0.0175068 -0.2838106 0.2838106 -0.0175068 -0.3840425 0.2838106 -0.0175068 -0.518627 0.2838106 -0.0175068 -0.6993381 0.2838106 -0.0175068 -0.9419845 0.2838106 -0.0175068 -1.267794 0.2838106 -0.0175068 -1.705268 0.2838106 -0.0175068 -2.292679 0.2838106 -0.0175068 -3.081414 0.2838106 -0.0175068 -4.140474 0.2838106 -0.0175068 -5.562508 0.2838106 -0.0175068 -7.471917 0.2838106 -0.0175068 -10.03574 0.2838106 -0.0175068 -13.47828 0.2838106 -0.0175068 -18.10068 0.2838106 -0.0175068 -24.30731 0.2838106 -0.0175068 -32.64117 0.2838106 -0.0175068 -43.83129 0.2838106 -0.0175068 -58.85664 0.2838106 -0.0175068 --0.0175068 0.3840425 -0.0175068 --0.01161267 0.3840425 -0.0175068 --0.005718534 0.3840425 -0.0175068 -0.0001755984 0.3840425 -0.0175068 -0.006069731 0.3840425 -0.0175068 -0.01197402 0.3840425 -0.0175068 -0.01903886 0.3840425 -0.0175068 -0.02852504 0.3840425 -0.0175068 -0.04126244 0.3840425 -0.0175068 -0.05836535 0.3840425 -0.0175068 -0.08132997 0.3840425 -0.0175068 -0.1121653 0.3840425 -0.0175068 -0.1535689 0.3840425 -0.0175068 -0.2091628 0.3840425 -0.0175068 -0.2838106 0.3840425 -0.0175068 -0.3840425 0.3840425 -0.0175068 -0.518627 0.3840425 -0.0175068 -0.6993381 0.3840425 -0.0175068 -0.9419845 0.3840425 -0.0175068 -1.267794 0.3840425 -0.0175068 -1.705268 0.3840425 -0.0175068 -2.292679 0.3840425 -0.0175068 -3.081414 0.3840425 -0.0175068 -4.140474 0.3840425 -0.0175068 -5.562508 0.3840425 -0.0175068 -7.471917 0.3840425 -0.0175068 -10.03574 0.3840425 -0.0175068 -13.47828 0.3840425 -0.0175068 -18.10068 0.3840425 -0.0175068 -24.30731 0.3840425 -0.0175068 -32.64117 0.3840425 -0.0175068 -43.83129 0.3840425 -0.0175068 -58.85664 0.3840425 -0.0175068 --0.0175068 0.518627 -0.0175068 --0.01161267 0.518627 -0.0175068 --0.005718534 0.518627 -0.0175068 -0.0001755984 0.518627 -0.0175068 -0.006069731 0.518627 -0.0175068 -0.01197402 0.518627 -0.0175068 -0.01903886 0.518627 -0.0175068 -0.02852504 0.518627 -0.0175068 -0.04126244 0.518627 -0.0175068 -0.05836535 0.518627 -0.0175068 -0.08132997 0.518627 -0.0175068 -0.1121653 0.518627 -0.0175068 -0.1535689 0.518627 -0.0175068 -0.2091628 0.518627 -0.0175068 -0.2838106 0.518627 -0.0175068 -0.3840425 0.518627 -0.0175068 -0.518627 0.518627 -0.0175068 -0.6993381 0.518627 -0.0175068 -0.9419845 0.518627 -0.0175068 -1.267794 0.518627 -0.0175068 -1.705268 0.518627 -0.0175068 -2.292679 0.518627 -0.0175068 -3.081414 0.518627 -0.0175068 -4.140474 0.518627 -0.0175068 -5.562508 0.518627 -0.0175068 -7.471917 0.518627 -0.0175068 -10.03574 0.518627 -0.0175068 -13.47828 0.518627 -0.0175068 -18.10068 0.518627 -0.0175068 -24.30731 0.518627 -0.0175068 -32.64117 0.518627 -0.0175068 -43.83129 0.518627 -0.0175068 -58.85664 0.518627 -0.0175068 --0.0175068 0.6993381 -0.0175068 --0.01161267 0.6993381 -0.0175068 --0.005718534 0.6993381 -0.0175068 -0.0001755984 0.6993381 -0.0175068 -0.006069731 0.6993381 -0.0175068 -0.01197402 0.6993381 -0.0175068 -0.01903886 0.6993381 -0.0175068 -0.02852504 0.6993381 -0.0175068 -0.04126244 0.6993381 -0.0175068 -0.05836535 0.6993381 -0.0175068 -0.08132997 0.6993381 -0.0175068 -0.1121653 0.6993381 -0.0175068 -0.1535689 0.6993381 -0.0175068 -0.2091628 0.6993381 -0.0175068 -0.2838106 0.6993381 -0.0175068 -0.3840425 0.6993381 -0.0175068 -0.518627 0.6993381 -0.0175068 -0.6993381 0.6993381 -0.0175068 -0.9419845 0.6993381 -0.0175068 -1.267794 0.6993381 -0.0175068 -1.705268 0.6993381 -0.0175068 -2.292679 0.6993381 -0.0175068 -3.081414 0.6993381 -0.0175068 -4.140474 0.6993381 -0.0175068 -5.562508 0.6993381 -0.0175068 -7.471917 0.6993381 -0.0175068 -10.03574 0.6993381 -0.0175068 -13.47828 0.6993381 -0.0175068 -18.10068 0.6993381 -0.0175068 -24.30731 0.6993381 -0.0175068 -32.64117 0.6993381 -0.0175068 -43.83129 0.6993381 -0.0175068 -58.85664 0.6993381 -0.0175068 --0.0175068 0.9419845 -0.0175068 --0.01161267 0.9419845 -0.0175068 --0.005718534 0.9419845 -0.0175068 -0.0001755984 0.9419845 -0.0175068 -0.006069731 0.9419845 -0.0175068 -0.01197402 0.9419845 -0.0175068 -0.01903886 0.9419845 -0.0175068 -0.02852504 0.9419845 -0.0175068 -0.04126244 0.9419845 -0.0175068 -0.05836535 0.9419845 -0.0175068 -0.08132997 0.9419845 -0.0175068 -0.1121653 0.9419845 -0.0175068 -0.1535689 0.9419845 -0.0175068 -0.2091628 0.9419845 -0.0175068 -0.2838106 0.9419845 -0.0175068 -0.3840425 0.9419845 -0.0175068 -0.518627 0.9419845 -0.0175068 -0.6993381 0.9419845 -0.0175068 -0.9419845 0.9419845 -0.0175068 -1.267794 0.9419845 -0.0175068 -1.705268 0.9419845 -0.0175068 -2.292679 0.9419845 -0.0175068 -3.081414 0.9419845 -0.0175068 -4.140474 0.9419845 -0.0175068 -5.562508 0.9419845 -0.0175068 -7.471917 0.9419845 -0.0175068 -10.03574 0.9419845 -0.0175068 -13.47828 0.9419845 -0.0175068 -18.10068 0.9419845 -0.0175068 -24.30731 0.9419845 -0.0175068 -32.64117 0.9419845 -0.0175068 -43.83129 0.9419845 -0.0175068 -58.85664 0.9419845 -0.0175068 --0.0175068 1.267794 -0.0175068 --0.01161267 1.267794 -0.0175068 --0.005718534 1.267794 -0.0175068 -0.0001755984 1.267794 -0.0175068 -0.006069731 1.267794 -0.0175068 -0.01197402 1.267794 -0.0175068 -0.01903886 1.267794 -0.0175068 -0.02852504 1.267794 -0.0175068 -0.04126244 1.267794 -0.0175068 -0.05836535 1.267794 -0.0175068 -0.08132997 1.267794 -0.0175068 -0.1121653 1.267794 -0.0175068 -0.1535689 1.267794 -0.0175068 -0.2091628 1.267794 -0.0175068 -0.2838106 1.267794 -0.0175068 -0.3840425 1.267794 -0.0175068 -0.518627 1.267794 -0.0175068 -0.6993381 1.267794 -0.0175068 -0.9419845 1.267794 -0.0175068 -1.267794 1.267794 -0.0175068 -1.705268 1.267794 -0.0175068 -2.292679 1.267794 -0.0175068 -3.081414 1.267794 -0.0175068 -4.140474 1.267794 -0.0175068 -5.562508 1.267794 -0.0175068 -7.471917 1.267794 -0.0175068 -10.03574 1.267794 -0.0175068 -13.47828 1.267794 -0.0175068 -18.10068 1.267794 -0.0175068 -24.30731 1.267794 -0.0175068 -32.64117 1.267794 -0.0175068 -43.83129 1.267794 -0.0175068 -58.85664 1.267794 -0.0175068 --0.0175068 1.705268 -0.0175068 --0.01161267 1.705268 -0.0175068 --0.005718534 1.705268 -0.0175068 -0.0001755984 1.705268 -0.0175068 -0.006069731 1.705268 -0.0175068 -0.01197402 1.705268 -0.0175068 -0.01903886 1.705268 -0.0175068 -0.02852504 1.705268 -0.0175068 -0.04126244 1.705268 -0.0175068 -0.05836535 1.705268 -0.0175068 -0.08132997 1.705268 -0.0175068 -0.1121653 1.705268 -0.0175068 -0.1535689 1.705268 -0.0175068 -0.2091628 1.705268 -0.0175068 -0.2838106 1.705268 -0.0175068 -0.3840425 1.705268 -0.0175068 -0.518627 1.705268 -0.0175068 -0.6993381 1.705268 -0.0175068 -0.9419845 1.705268 -0.0175068 -1.267794 1.705268 -0.0175068 -1.705268 1.705268 -0.0175068 -2.292679 1.705268 -0.0175068 -3.081414 1.705268 -0.0175068 -4.140474 1.705268 -0.0175068 -5.562508 1.705268 -0.0175068 -7.471917 1.705268 -0.0175068 -10.03574 1.705268 -0.0175068 -13.47828 1.705268 -0.0175068 -18.10068 1.705268 -0.0175068 -24.30731 1.705268 -0.0175068 -32.64117 1.705268 -0.0175068 -43.83129 1.705268 -0.0175068 -58.85664 1.705268 -0.0175068 --0.0175068 2.292679 -0.0175068 --0.01161267 2.292679 -0.0175068 --0.005718534 2.292679 -0.0175068 -0.0001755984 2.292679 -0.0175068 -0.006069731 2.292679 -0.0175068 -0.01197402 2.292679 -0.0175068 -0.01903886 2.292679 -0.0175068 -0.02852504 2.292679 -0.0175068 -0.04126244 2.292679 -0.0175068 -0.05836535 2.292679 -0.0175068 -0.08132997 2.292679 -0.0175068 -0.1121653 2.292679 -0.0175068 -0.1535689 2.292679 -0.0175068 -0.2091628 2.292679 -0.0175068 -0.2838106 2.292679 -0.0175068 -0.3840425 2.292679 -0.0175068 -0.518627 2.292679 -0.0175068 -0.6993381 2.292679 -0.0175068 -0.9419845 2.292679 -0.0175068 -1.267794 2.292679 -0.0175068 -1.705268 2.292679 -0.0175068 -2.292679 2.292679 -0.0175068 -3.081414 2.292679 -0.0175068 -4.140474 2.292679 -0.0175068 -5.562508 2.292679 -0.0175068 -7.471917 2.292679 -0.0175068 -10.03574 2.292679 -0.0175068 -13.47828 2.292679 -0.0175068 -18.10068 2.292679 -0.0175068 -24.30731 2.292679 -0.0175068 -32.64117 2.292679 -0.0175068 -43.83129 2.292679 -0.0175068 -58.85664 2.292679 -0.0175068 --0.0175068 3.081414 -0.0175068 --0.01161267 3.081414 -0.0175068 --0.005718534 3.081414 -0.0175068 -0.0001755984 3.081414 -0.0175068 -0.006069731 3.081414 -0.0175068 -0.01197402 3.081414 -0.0175068 -0.01903886 3.081414 -0.0175068 -0.02852504 3.081414 -0.0175068 -0.04126244 3.081414 -0.0175068 -0.05836535 3.081414 -0.0175068 -0.08132997 3.081414 -0.0175068 -0.1121653 3.081414 -0.0175068 -0.1535689 3.081414 -0.0175068 -0.2091628 3.081414 -0.0175068 -0.2838106 3.081414 -0.0175068 -0.3840425 3.081414 -0.0175068 -0.518627 3.081414 -0.0175068 -0.6993381 3.081414 -0.0175068 -0.9419845 3.081414 -0.0175068 -1.267794 3.081414 -0.0175068 -1.705268 3.081414 -0.0175068 -2.292679 3.081414 -0.0175068 -3.081414 3.081414 -0.0175068 -4.140474 3.081414 -0.0175068 -5.562508 3.081414 -0.0175068 -7.471917 3.081414 -0.0175068 -10.03574 3.081414 -0.0175068 -13.47828 3.081414 -0.0175068 -18.10068 3.081414 -0.0175068 -24.30731 3.081414 -0.0175068 -32.64117 3.081414 -0.0175068 -43.83129 3.081414 -0.0175068 -58.85664 3.081414 -0.0175068 --0.0175068 4.140474 -0.0175068 --0.01161267 4.140474 -0.0175068 --0.005718534 4.140474 -0.0175068 -0.0001755984 4.140474 -0.0175068 -0.006069731 4.140474 -0.0175068 -0.01197402 4.140474 -0.0175068 -0.01903886 4.140474 -0.0175068 -0.02852504 4.140474 -0.0175068 -0.04126244 4.140474 -0.0175068 -0.05836535 4.140474 -0.0175068 -0.08132997 4.140474 -0.0175068 -0.1121653 4.140474 -0.0175068 -0.1535689 4.140474 -0.0175068 -0.2091628 4.140474 -0.0175068 -0.2838106 4.140474 -0.0175068 -0.3840425 4.140474 -0.0175068 -0.518627 4.140474 -0.0175068 -0.6993381 4.140474 -0.0175068 -0.9419845 4.140474 -0.0175068 -1.267794 4.140474 -0.0175068 -1.705268 4.140474 -0.0175068 -2.292679 4.140474 -0.0175068 -3.081414 4.140474 -0.0175068 -4.140474 4.140474 -0.0175068 -5.562508 4.140474 -0.0175068 -7.471917 4.140474 -0.0175068 -10.03574 4.140474 -0.0175068 -13.47828 4.140474 -0.0175068 -18.10068 4.140474 -0.0175068 -24.30731 4.140474 -0.0175068 -32.64117 4.140474 -0.0175068 -43.83129 4.140474 -0.0175068 -58.85664 4.140474 -0.0175068 --0.0175068 5.562508 -0.0175068 --0.01161267 5.562508 -0.0175068 --0.005718534 5.562508 -0.0175068 -0.0001755984 5.562508 -0.0175068 -0.006069731 5.562508 -0.0175068 -0.01197402 5.562508 -0.0175068 -0.01903886 5.562508 -0.0175068 -0.02852504 5.562508 -0.0175068 -0.04126244 5.562508 -0.0175068 -0.05836535 5.562508 -0.0175068 -0.08132997 5.562508 -0.0175068 -0.1121653 5.562508 -0.0175068 -0.1535689 5.562508 -0.0175068 -0.2091628 5.562508 -0.0175068 -0.2838106 5.562508 -0.0175068 -0.3840425 5.562508 -0.0175068 -0.518627 5.562508 -0.0175068 -0.6993381 5.562508 -0.0175068 -0.9419845 5.562508 -0.0175068 -1.267794 5.562508 -0.0175068 -1.705268 5.562508 -0.0175068 -2.292679 5.562508 -0.0175068 -3.081414 5.562508 -0.0175068 -4.140474 5.562508 -0.0175068 -5.562508 5.562508 -0.0175068 -7.471917 5.562508 -0.0175068 -10.03574 5.562508 -0.0175068 -13.47828 5.562508 -0.0175068 -18.10068 5.562508 -0.0175068 -24.30731 5.562508 -0.0175068 -32.64117 5.562508 -0.0175068 -43.83129 5.562508 -0.0175068 -58.85664 5.562508 -0.0175068 --0.0175068 7.471917 -0.0175068 --0.01161267 7.471917 -0.0175068 --0.005718534 7.471917 -0.0175068 -0.0001755984 7.471917 -0.0175068 -0.006069731 7.471917 -0.0175068 -0.01197402 7.471917 -0.0175068 -0.01903886 7.471917 -0.0175068 -0.02852504 7.471917 -0.0175068 -0.04126244 7.471917 -0.0175068 -0.05836535 7.471917 -0.0175068 -0.08132997 7.471917 -0.0175068 -0.1121653 7.471917 -0.0175068 -0.1535689 7.471917 -0.0175068 -0.2091628 7.471917 -0.0175068 -0.2838106 7.471917 -0.0175068 -0.3840425 7.471917 -0.0175068 -0.518627 7.471917 -0.0175068 -0.6993381 7.471917 -0.0175068 -0.9419845 7.471917 -0.0175068 -1.267794 7.471917 -0.0175068 -1.705268 7.471917 -0.0175068 -2.292679 7.471917 -0.0175068 -3.081414 7.471917 -0.0175068 -4.140474 7.471917 -0.0175068 -5.562508 7.471917 -0.0175068 -7.471917 7.471917 -0.0175068 -10.03574 7.471917 -0.0175068 -13.47828 7.471917 -0.0175068 -18.10068 7.471917 -0.0175068 -24.30731 7.471917 -0.0175068 -32.64117 7.471917 -0.0175068 -43.83129 7.471917 -0.0175068 -58.85664 7.471917 -0.0175068 --0.0175068 10.03574 -0.0175068 --0.01161267 10.03574 -0.0175068 --0.005718534 10.03574 -0.0175068 -0.0001755984 10.03574 -0.0175068 -0.006069731 10.03574 -0.0175068 -0.01197402 10.03574 -0.0175068 -0.01903886 10.03574 -0.0175068 -0.02852504 10.03574 -0.0175068 -0.04126244 10.03574 -0.0175068 -0.05836535 10.03574 -0.0175068 -0.08132997 10.03574 -0.0175068 -0.1121653 10.03574 -0.0175068 -0.1535689 10.03574 -0.0175068 -0.2091628 10.03574 -0.0175068 -0.2838106 10.03574 -0.0175068 -0.3840425 10.03574 -0.0175068 -0.518627 10.03574 -0.0175068 -0.6993381 10.03574 -0.0175068 -0.9419845 10.03574 -0.0175068 -1.267794 10.03574 -0.0175068 -1.705268 10.03574 -0.0175068 -2.292679 10.03574 -0.0175068 -3.081414 10.03574 -0.0175068 -4.140474 10.03574 -0.0175068 -5.562508 10.03574 -0.0175068 -7.471917 10.03574 -0.0175068 -10.03574 10.03574 -0.0175068 -13.47828 10.03574 -0.0175068 -18.10068 10.03574 -0.0175068 -24.30731 10.03574 -0.0175068 -32.64117 10.03574 -0.0175068 -43.83129 10.03574 -0.0175068 -58.85664 10.03574 -0.0175068 --0.0175068 13.47828 -0.0175068 --0.01161267 13.47828 -0.0175068 --0.005718534 13.47828 -0.0175068 -0.0001755984 13.47828 -0.0175068 -0.006069731 13.47828 -0.0175068 -0.01197402 13.47828 -0.0175068 -0.01903886 13.47828 -0.0175068 -0.02852504 13.47828 -0.0175068 -0.04126244 13.47828 -0.0175068 -0.05836535 13.47828 -0.0175068 -0.08132997 13.47828 -0.0175068 -0.1121653 13.47828 -0.0175068 -0.1535689 13.47828 -0.0175068 -0.2091628 13.47828 -0.0175068 -0.2838106 13.47828 -0.0175068 -0.3840425 13.47828 -0.0175068 -0.518627 13.47828 -0.0175068 -0.6993381 13.47828 -0.0175068 -0.9419845 13.47828 -0.0175068 -1.267794 13.47828 -0.0175068 -1.705268 13.47828 -0.0175068 -2.292679 13.47828 -0.0175068 -3.081414 13.47828 -0.0175068 -4.140474 13.47828 -0.0175068 -5.562508 13.47828 -0.0175068 -7.471917 13.47828 -0.0175068 -10.03574 13.47828 -0.0175068 -13.47828 13.47828 -0.0175068 -18.10068 13.47828 -0.0175068 -24.30731 13.47828 -0.0175068 -32.64117 13.47828 -0.0175068 -43.83129 13.47828 -0.0175068 -58.85664 13.47828 -0.0175068 --0.0175068 18.10068 -0.0175068 --0.01161267 18.10068 -0.0175068 --0.005718534 18.10068 -0.0175068 -0.0001755984 18.10068 -0.0175068 -0.006069731 18.10068 -0.0175068 -0.01197402 18.10068 -0.0175068 -0.01903886 18.10068 -0.0175068 -0.02852504 18.10068 -0.0175068 -0.04126244 18.10068 -0.0175068 -0.05836535 18.10068 -0.0175068 -0.08132997 18.10068 -0.0175068 -0.1121653 18.10068 -0.0175068 -0.1535689 18.10068 -0.0175068 -0.2091628 18.10068 -0.0175068 -0.2838106 18.10068 -0.0175068 -0.3840425 18.10068 -0.0175068 -0.518627 18.10068 -0.0175068 -0.6993381 18.10068 -0.0175068 -0.9419845 18.10068 -0.0175068 -1.267794 18.10068 -0.0175068 -1.705268 18.10068 -0.0175068 -2.292679 18.10068 -0.0175068 -3.081414 18.10068 -0.0175068 -4.140474 18.10068 -0.0175068 -5.562508 18.10068 -0.0175068 -7.471917 18.10068 -0.0175068 -10.03574 18.10068 -0.0175068 -13.47828 18.10068 -0.0175068 -18.10068 18.10068 -0.0175068 -24.30731 18.10068 -0.0175068 -32.64117 18.10068 -0.0175068 -43.83129 18.10068 -0.0175068 -58.85664 18.10068 -0.0175068 --0.0175068 24.30731 -0.0175068 --0.01161267 24.30731 -0.0175068 --0.005718534 24.30731 -0.0175068 -0.0001755984 24.30731 -0.0175068 -0.006069731 24.30731 -0.0175068 -0.01197402 24.30731 -0.0175068 -0.01903886 24.30731 -0.0175068 -0.02852504 24.30731 -0.0175068 -0.04126244 24.30731 -0.0175068 -0.05836535 24.30731 -0.0175068 -0.08132997 24.30731 -0.0175068 -0.1121653 24.30731 -0.0175068 -0.1535689 24.30731 -0.0175068 -0.2091628 24.30731 -0.0175068 -0.2838106 24.30731 -0.0175068 -0.3840425 24.30731 -0.0175068 -0.518627 24.30731 -0.0175068 -0.6993381 24.30731 -0.0175068 -0.9419845 24.30731 -0.0175068 -1.267794 24.30731 -0.0175068 -1.705268 24.30731 -0.0175068 -2.292679 24.30731 -0.0175068 -3.081414 24.30731 -0.0175068 -4.140474 24.30731 -0.0175068 -5.562508 24.30731 -0.0175068 -7.471917 24.30731 -0.0175068 -10.03574 24.30731 -0.0175068 -13.47828 24.30731 -0.0175068 -18.10068 24.30731 -0.0175068 -24.30731 24.30731 -0.0175068 -32.64117 24.30731 -0.0175068 -43.83129 24.30731 -0.0175068 -58.85664 24.30731 -0.0175068 --0.0175068 32.64117 -0.0175068 --0.01161267 32.64117 -0.0175068 --0.005718534 32.64117 -0.0175068 -0.0001755984 32.64117 -0.0175068 -0.006069731 32.64117 -0.0175068 -0.01197402 32.64117 -0.0175068 -0.01903886 32.64117 -0.0175068 -0.02852504 32.64117 -0.0175068 -0.04126244 32.64117 -0.0175068 -0.05836535 32.64117 -0.0175068 -0.08132997 32.64117 -0.0175068 -0.1121653 32.64117 -0.0175068 -0.1535689 32.64117 -0.0175068 -0.2091628 32.64117 -0.0175068 -0.2838106 32.64117 -0.0175068 -0.3840425 32.64117 -0.0175068 -0.518627 32.64117 -0.0175068 -0.6993381 32.64117 -0.0175068 -0.9419845 32.64117 -0.0175068 -1.267794 32.64117 -0.0175068 -1.705268 32.64117 -0.0175068 -2.292679 32.64117 -0.0175068 -3.081414 32.64117 -0.0175068 -4.140474 32.64117 -0.0175068 -5.562508 32.64117 -0.0175068 -7.471917 32.64117 -0.0175068 -10.03574 32.64117 -0.0175068 -13.47828 32.64117 -0.0175068 -18.10068 32.64117 -0.0175068 -24.30731 32.64117 -0.0175068 -32.64117 32.64117 -0.0175068 -43.83129 32.64117 -0.0175068 -58.85664 32.64117 -0.0175068 --0.0175068 43.83129 -0.0175068 --0.01161267 43.83129 -0.0175068 --0.005718534 43.83129 -0.0175068 -0.0001755984 43.83129 -0.0175068 -0.006069731 43.83129 -0.0175068 -0.01197402 43.83129 -0.0175068 -0.01903886 43.83129 -0.0175068 -0.02852504 43.83129 -0.0175068 -0.04126244 43.83129 -0.0175068 -0.05836535 43.83129 -0.0175068 -0.08132997 43.83129 -0.0175068 -0.1121653 43.83129 -0.0175068 -0.1535689 43.83129 -0.0175068 -0.2091628 43.83129 -0.0175068 -0.2838106 43.83129 -0.0175068 -0.3840425 43.83129 -0.0175068 -0.518627 43.83129 -0.0175068 -0.6993381 43.83129 -0.0175068 -0.9419845 43.83129 -0.0175068 -1.267794 43.83129 -0.0175068 -1.705268 43.83129 -0.0175068 -2.292679 43.83129 -0.0175068 -3.081414 43.83129 -0.0175068 -4.140474 43.83129 -0.0175068 -5.562508 43.83129 -0.0175068 -7.471917 43.83129 -0.0175068 -10.03574 43.83129 -0.0175068 -13.47828 43.83129 -0.0175068 -18.10068 43.83129 -0.0175068 -24.30731 43.83129 -0.0175068 -32.64117 43.83129 -0.0175068 -43.83129 43.83129 -0.0175068 -58.85664 43.83129 -0.0175068 --0.0175068 58.85664 -0.0175068 --0.01161267 58.85664 -0.0175068 --0.005718534 58.85664 -0.0175068 -0.0001755984 58.85664 -0.0175068 -0.006069731 58.85664 -0.0175068 -0.01197402 58.85664 -0.0175068 -0.01903886 58.85664 -0.0175068 -0.02852504 58.85664 -0.0175068 -0.04126244 58.85664 -0.0175068 -0.05836535 58.85664 -0.0175068 -0.08132997 58.85664 -0.0175068 -0.1121653 58.85664 -0.0175068 -0.1535689 58.85664 -0.0175068 -0.2091628 58.85664 -0.0175068 -0.2838106 58.85664 -0.0175068 -0.3840425 58.85664 -0.0175068 -0.518627 58.85664 -0.0175068 -0.6993381 58.85664 -0.0175068 -0.9419845 58.85664 -0.0175068 -1.267794 58.85664 -0.0175068 -1.705268 58.85664 -0.0175068 -2.292679 58.85664 -0.0175068 -3.081414 58.85664 -0.0175068 -4.140474 58.85664 -0.0175068 -5.562508 58.85664 -0.0175068 -7.471917 58.85664 -0.0175068 -10.03574 58.85664 -0.0175068 -13.47828 58.85664 -0.0175068 -18.10068 58.85664 -0.0175068 -24.30731 58.85664 -0.0175068 -32.64117 58.85664 -0.0175068 -43.83129 58.85664 -0.0175068 -58.85664 58.85664 -0.0175068 --0.0175068 -0.0175068 -0.01161267 --0.01161267 -0.0175068 -0.01161267 --0.005718534 -0.0175068 -0.01161267 -0.0001755984 -0.0175068 -0.01161267 -0.006069731 -0.0175068 -0.01161267 -0.01197402 -0.0175068 -0.01161267 -0.01903886 -0.0175068 -0.01161267 -0.02852504 -0.0175068 -0.01161267 -0.04126244 -0.0175068 -0.01161267 -0.05836535 -0.0175068 -0.01161267 -0.08132997 -0.0175068 -0.01161267 -0.1121653 -0.0175068 -0.01161267 -0.1535689 -0.0175068 -0.01161267 -0.2091628 -0.0175068 -0.01161267 -0.2838106 -0.0175068 -0.01161267 -0.3840425 -0.0175068 -0.01161267 -0.518627 -0.0175068 -0.01161267 -0.6993381 -0.0175068 -0.01161267 -0.9419845 -0.0175068 -0.01161267 -1.267794 -0.0175068 -0.01161267 -1.705268 -0.0175068 -0.01161267 -2.292679 -0.0175068 -0.01161267 -3.081414 -0.0175068 -0.01161267 -4.140474 -0.0175068 -0.01161267 -5.562508 -0.0175068 -0.01161267 -7.471917 -0.0175068 -0.01161267 -10.03574 -0.0175068 -0.01161267 -13.47828 -0.0175068 -0.01161267 -18.10068 -0.0175068 -0.01161267 -24.30731 -0.0175068 -0.01161267 -32.64117 -0.0175068 -0.01161267 -43.83129 -0.0175068 -0.01161267 -58.85664 -0.0175068 -0.01161267 --0.0175068 -0.01161267 -0.01161267 --0.01161267 -0.01161267 -0.01161267 --0.005718534 -0.01161267 -0.01161267 -0.0001755984 -0.01161267 -0.01161267 -0.006069731 -0.01161267 -0.01161267 -0.01197402 -0.01161267 -0.01161267 -0.01903886 -0.01161267 -0.01161267 -0.02852504 -0.01161267 -0.01161267 -0.04126244 -0.01161267 -0.01161267 -0.05836535 -0.01161267 -0.01161267 -0.08132997 -0.01161267 -0.01161267 -0.1121653 -0.01161267 -0.01161267 -0.1535689 -0.01161267 -0.01161267 -0.2091628 -0.01161267 -0.01161267 -0.2838106 -0.01161267 -0.01161267 -0.3840425 -0.01161267 -0.01161267 -0.518627 -0.01161267 -0.01161267 -0.6993381 -0.01161267 -0.01161267 -0.9419845 -0.01161267 -0.01161267 -1.267794 -0.01161267 -0.01161267 -1.705268 -0.01161267 -0.01161267 -2.292679 -0.01161267 -0.01161267 -3.081414 -0.01161267 -0.01161267 -4.140474 -0.01161267 -0.01161267 -5.562508 -0.01161267 -0.01161267 -7.471917 -0.01161267 -0.01161267 -10.03574 -0.01161267 -0.01161267 -13.47828 -0.01161267 -0.01161267 -18.10068 -0.01161267 -0.01161267 -24.30731 -0.01161267 -0.01161267 -32.64117 -0.01161267 -0.01161267 -43.83129 -0.01161267 -0.01161267 -58.85664 -0.01161267 -0.01161267 --0.0175068 -0.005718534 -0.01161267 --0.01161267 -0.005718534 -0.01161267 --0.005718534 -0.005718534 -0.01161267 -0.0001755984 -0.005718534 -0.01161267 -0.006069731 -0.005718534 -0.01161267 -0.01197402 -0.005718534 -0.01161267 -0.01903886 -0.005718534 -0.01161267 -0.02852504 -0.005718534 -0.01161267 -0.04126244 -0.005718534 -0.01161267 -0.05836535 -0.005718534 -0.01161267 -0.08132997 -0.005718534 -0.01161267 -0.1121653 -0.005718534 -0.01161267 -0.1535689 -0.005718534 -0.01161267 -0.2091628 -0.005718534 -0.01161267 -0.2838106 -0.005718534 -0.01161267 -0.3840425 -0.005718534 -0.01161267 -0.518627 -0.005718534 -0.01161267 -0.6993381 -0.005718534 -0.01161267 -0.9419845 -0.005718534 -0.01161267 -1.267794 -0.005718534 -0.01161267 -1.705268 -0.005718534 -0.01161267 -2.292679 -0.005718534 -0.01161267 -3.081414 -0.005718534 -0.01161267 -4.140474 -0.005718534 -0.01161267 -5.562508 -0.005718534 -0.01161267 -7.471917 -0.005718534 -0.01161267 -10.03574 -0.005718534 -0.01161267 -13.47828 -0.005718534 -0.01161267 -18.10068 -0.005718534 -0.01161267 -24.30731 -0.005718534 -0.01161267 -32.64117 -0.005718534 -0.01161267 -43.83129 -0.005718534 -0.01161267 -58.85664 -0.005718534 -0.01161267 --0.0175068 0.0001755984 -0.01161267 --0.01161267 0.0001755984 -0.01161267 --0.005718534 0.0001755984 -0.01161267 -0.0001755984 0.0001755984 -0.01161267 -0.006069731 0.0001755984 -0.01161267 -0.01197402 0.0001755984 -0.01161267 -0.01903886 0.0001755984 -0.01161267 -0.02852504 0.0001755984 -0.01161267 -0.04126244 0.0001755984 -0.01161267 -0.05836535 0.0001755984 -0.01161267 -0.08132997 0.0001755984 -0.01161267 -0.1121653 0.0001755984 -0.01161267 -0.1535689 0.0001755984 -0.01161267 -0.2091628 0.0001755984 -0.01161267 -0.2838106 0.0001755984 -0.01161267 -0.3840425 0.0001755984 -0.01161267 -0.518627 0.0001755984 -0.01161267 -0.6993381 0.0001755984 -0.01161267 -0.9419845 0.0001755984 -0.01161267 -1.267794 0.0001755984 -0.01161267 -1.705268 0.0001755984 -0.01161267 -2.292679 0.0001755984 -0.01161267 -3.081414 0.0001755984 -0.01161267 -4.140474 0.0001755984 -0.01161267 -5.562508 0.0001755984 -0.01161267 -7.471917 0.0001755984 -0.01161267 -10.03574 0.0001755984 -0.01161267 -13.47828 0.0001755984 -0.01161267 -18.10068 0.0001755984 -0.01161267 -24.30731 0.0001755984 -0.01161267 -32.64117 0.0001755984 -0.01161267 -43.83129 0.0001755984 -0.01161267 -58.85664 0.0001755984 -0.01161267 --0.0175068 0.006069731 -0.01161267 --0.01161267 0.006069731 -0.01161267 --0.005718534 0.006069731 -0.01161267 -0.0001755984 0.006069731 -0.01161267 -0.006069731 0.006069731 -0.01161267 -0.01197402 0.006069731 -0.01161267 -0.01903886 0.006069731 -0.01161267 -0.02852504 0.006069731 -0.01161267 -0.04126244 0.006069731 -0.01161267 -0.05836535 0.006069731 -0.01161267 -0.08132997 0.006069731 -0.01161267 -0.1121653 0.006069731 -0.01161267 -0.1535689 0.006069731 -0.01161267 -0.2091628 0.006069731 -0.01161267 -0.2838106 0.006069731 -0.01161267 -0.3840425 0.006069731 -0.01161267 -0.518627 0.006069731 -0.01161267 -0.6993381 0.006069731 -0.01161267 -0.9419845 0.006069731 -0.01161267 -1.267794 0.006069731 -0.01161267 -1.705268 0.006069731 -0.01161267 -2.292679 0.006069731 -0.01161267 -3.081414 0.006069731 -0.01161267 -4.140474 0.006069731 -0.01161267 -5.562508 0.006069731 -0.01161267 -7.471917 0.006069731 -0.01161267 -10.03574 0.006069731 -0.01161267 -13.47828 0.006069731 -0.01161267 -18.10068 0.006069731 -0.01161267 -24.30731 0.006069731 -0.01161267 -32.64117 0.006069731 -0.01161267 -43.83129 0.006069731 -0.01161267 -58.85664 0.006069731 -0.01161267 --0.0175068 0.01197402 -0.01161267 --0.01161267 0.01197402 -0.01161267 --0.005718534 0.01197402 -0.01161267 -0.0001755984 0.01197402 -0.01161267 -0.006069731 0.01197402 -0.01161267 -0.01197402 0.01197402 -0.01161267 -0.01903886 0.01197402 -0.01161267 -0.02852504 0.01197402 -0.01161267 -0.04126244 0.01197402 -0.01161267 -0.05836535 0.01197402 -0.01161267 -0.08132997 0.01197402 -0.01161267 -0.1121653 0.01197402 -0.01161267 -0.1535689 0.01197402 -0.01161267 -0.2091628 0.01197402 -0.01161267 -0.2838106 0.01197402 -0.01161267 -0.3840425 0.01197402 -0.01161267 -0.518627 0.01197402 -0.01161267 -0.6993381 0.01197402 -0.01161267 -0.9419845 0.01197402 -0.01161267 -1.267794 0.01197402 -0.01161267 -1.705268 0.01197402 -0.01161267 -2.292679 0.01197402 -0.01161267 -3.081414 0.01197402 -0.01161267 -4.140474 0.01197402 -0.01161267 -5.562508 0.01197402 -0.01161267 -7.471917 0.01197402 -0.01161267 -10.03574 0.01197402 -0.01161267 -13.47828 0.01197402 -0.01161267 -18.10068 0.01197402 -0.01161267 -24.30731 0.01197402 -0.01161267 -32.64117 0.01197402 -0.01161267 -43.83129 0.01197402 -0.01161267 -58.85664 0.01197402 -0.01161267 --0.0175068 0.01903886 -0.01161267 --0.01161267 0.01903886 -0.01161267 --0.005718534 0.01903886 -0.01161267 -0.0001755984 0.01903886 -0.01161267 -0.006069731 0.01903886 -0.01161267 -0.01197402 0.01903886 -0.01161267 -0.01903886 0.01903886 -0.01161267 -0.02852504 0.01903886 -0.01161267 -0.04126244 0.01903886 -0.01161267 -0.05836535 0.01903886 -0.01161267 -0.08132997 0.01903886 -0.01161267 -0.1121653 0.01903886 -0.01161267 -0.1535689 0.01903886 -0.01161267 -0.2091628 0.01903886 -0.01161267 -0.2838106 0.01903886 -0.01161267 -0.3840425 0.01903886 -0.01161267 -0.518627 0.01903886 -0.01161267 -0.6993381 0.01903886 -0.01161267 -0.9419845 0.01903886 -0.01161267 -1.267794 0.01903886 -0.01161267 -1.705268 0.01903886 -0.01161267 -2.292679 0.01903886 -0.01161267 -3.081414 0.01903886 -0.01161267 -4.140474 0.01903886 -0.01161267 -5.562508 0.01903886 -0.01161267 -7.471917 0.01903886 -0.01161267 -10.03574 0.01903886 -0.01161267 -13.47828 0.01903886 -0.01161267 -18.10068 0.01903886 -0.01161267 -24.30731 0.01903886 -0.01161267 -32.64117 0.01903886 -0.01161267 -43.83129 0.01903886 -0.01161267 -58.85664 0.01903886 -0.01161267 --0.0175068 0.02852504 -0.01161267 --0.01161267 0.02852504 -0.01161267 --0.005718534 0.02852504 -0.01161267 -0.0001755984 0.02852504 -0.01161267 -0.006069731 0.02852504 -0.01161267 -0.01197402 0.02852504 -0.01161267 -0.01903886 0.02852504 -0.01161267 -0.02852504 0.02852504 -0.01161267 -0.04126244 0.02852504 -0.01161267 -0.05836535 0.02852504 -0.01161267 -0.08132997 0.02852504 -0.01161267 -0.1121653 0.02852504 -0.01161267 -0.1535689 0.02852504 -0.01161267 -0.2091628 0.02852504 -0.01161267 -0.2838106 0.02852504 -0.01161267 -0.3840425 0.02852504 -0.01161267 -0.518627 0.02852504 -0.01161267 -0.6993381 0.02852504 -0.01161267 -0.9419845 0.02852504 -0.01161267 -1.267794 0.02852504 -0.01161267 -1.705268 0.02852504 -0.01161267 -2.292679 0.02852504 -0.01161267 -3.081414 0.02852504 -0.01161267 -4.140474 0.02852504 -0.01161267 -5.562508 0.02852504 -0.01161267 -7.471917 0.02852504 -0.01161267 -10.03574 0.02852504 -0.01161267 -13.47828 0.02852504 -0.01161267 -18.10068 0.02852504 -0.01161267 -24.30731 0.02852504 -0.01161267 -32.64117 0.02852504 -0.01161267 -43.83129 0.02852504 -0.01161267 -58.85664 0.02852504 -0.01161267 --0.0175068 0.04126244 -0.01161267 --0.01161267 0.04126244 -0.01161267 --0.005718534 0.04126244 -0.01161267 -0.0001755984 0.04126244 -0.01161267 -0.006069731 0.04126244 -0.01161267 -0.01197402 0.04126244 -0.01161267 -0.01903886 0.04126244 -0.01161267 -0.02852504 0.04126244 -0.01161267 -0.04126244 0.04126244 -0.01161267 -0.05836535 0.04126244 -0.01161267 -0.08132997 0.04126244 -0.01161267 -0.1121653 0.04126244 -0.01161267 -0.1535689 0.04126244 -0.01161267 -0.2091628 0.04126244 -0.01161267 -0.2838106 0.04126244 -0.01161267 -0.3840425 0.04126244 -0.01161267 -0.518627 0.04126244 -0.01161267 -0.6993381 0.04126244 -0.01161267 -0.9419845 0.04126244 -0.01161267 -1.267794 0.04126244 -0.01161267 -1.705268 0.04126244 -0.01161267 -2.292679 0.04126244 -0.01161267 -3.081414 0.04126244 -0.01161267 -4.140474 0.04126244 -0.01161267 -5.562508 0.04126244 -0.01161267 -7.471917 0.04126244 -0.01161267 -10.03574 0.04126244 -0.01161267 -13.47828 0.04126244 -0.01161267 -18.10068 0.04126244 -0.01161267 -24.30731 0.04126244 -0.01161267 -32.64117 0.04126244 -0.01161267 -43.83129 0.04126244 -0.01161267 -58.85664 0.04126244 -0.01161267 --0.0175068 0.05836535 -0.01161267 --0.01161267 0.05836535 -0.01161267 --0.005718534 0.05836535 -0.01161267 -0.0001755984 0.05836535 -0.01161267 -0.006069731 0.05836535 -0.01161267 -0.01197402 0.05836535 -0.01161267 -0.01903886 0.05836535 -0.01161267 -0.02852504 0.05836535 -0.01161267 -0.04126244 0.05836535 -0.01161267 -0.05836535 0.05836535 -0.01161267 -0.08132997 0.05836535 -0.01161267 -0.1121653 0.05836535 -0.01161267 -0.1535689 0.05836535 -0.01161267 -0.2091628 0.05836535 -0.01161267 -0.2838106 0.05836535 -0.01161267 -0.3840425 0.05836535 -0.01161267 -0.518627 0.05836535 -0.01161267 -0.6993381 0.05836535 -0.01161267 -0.9419845 0.05836535 -0.01161267 -1.267794 0.05836535 -0.01161267 -1.705268 0.05836535 -0.01161267 -2.292679 0.05836535 -0.01161267 -3.081414 0.05836535 -0.01161267 -4.140474 0.05836535 -0.01161267 -5.562508 0.05836535 -0.01161267 -7.471917 0.05836535 -0.01161267 -10.03574 0.05836535 -0.01161267 -13.47828 0.05836535 -0.01161267 -18.10068 0.05836535 -0.01161267 -24.30731 0.05836535 -0.01161267 -32.64117 0.05836535 -0.01161267 -43.83129 0.05836535 -0.01161267 -58.85664 0.05836535 -0.01161267 --0.0175068 0.08132997 -0.01161267 --0.01161267 0.08132997 -0.01161267 --0.005718534 0.08132997 -0.01161267 -0.0001755984 0.08132997 -0.01161267 -0.006069731 0.08132997 -0.01161267 -0.01197402 0.08132997 -0.01161267 -0.01903886 0.08132997 -0.01161267 -0.02852504 0.08132997 -0.01161267 -0.04126244 0.08132997 -0.01161267 -0.05836535 0.08132997 -0.01161267 -0.08132997 0.08132997 -0.01161267 -0.1121653 0.08132997 -0.01161267 -0.1535689 0.08132997 -0.01161267 -0.2091628 0.08132997 -0.01161267 -0.2838106 0.08132997 -0.01161267 -0.3840425 0.08132997 -0.01161267 -0.518627 0.08132997 -0.01161267 -0.6993381 0.08132997 -0.01161267 -0.9419845 0.08132997 -0.01161267 -1.267794 0.08132997 -0.01161267 -1.705268 0.08132997 -0.01161267 -2.292679 0.08132997 -0.01161267 -3.081414 0.08132997 -0.01161267 -4.140474 0.08132997 -0.01161267 -5.562508 0.08132997 -0.01161267 -7.471917 0.08132997 -0.01161267 -10.03574 0.08132997 -0.01161267 -13.47828 0.08132997 -0.01161267 -18.10068 0.08132997 -0.01161267 -24.30731 0.08132997 -0.01161267 -32.64117 0.08132997 -0.01161267 -43.83129 0.08132997 -0.01161267 -58.85664 0.08132997 -0.01161267 --0.0175068 0.1121653 -0.01161267 --0.01161267 0.1121653 -0.01161267 --0.005718534 0.1121653 -0.01161267 -0.0001755984 0.1121653 -0.01161267 -0.006069731 0.1121653 -0.01161267 -0.01197402 0.1121653 -0.01161267 -0.01903886 0.1121653 -0.01161267 -0.02852504 0.1121653 -0.01161267 -0.04126244 0.1121653 -0.01161267 -0.05836535 0.1121653 -0.01161267 -0.08132997 0.1121653 -0.01161267 -0.1121653 0.1121653 -0.01161267 -0.1535689 0.1121653 -0.01161267 -0.2091628 0.1121653 -0.01161267 -0.2838106 0.1121653 -0.01161267 -0.3840425 0.1121653 -0.01161267 -0.518627 0.1121653 -0.01161267 -0.6993381 0.1121653 -0.01161267 -0.9419845 0.1121653 -0.01161267 -1.267794 0.1121653 -0.01161267 -1.705268 0.1121653 -0.01161267 -2.292679 0.1121653 -0.01161267 -3.081414 0.1121653 -0.01161267 -4.140474 0.1121653 -0.01161267 -5.562508 0.1121653 -0.01161267 -7.471917 0.1121653 -0.01161267 -10.03574 0.1121653 -0.01161267 -13.47828 0.1121653 -0.01161267 -18.10068 0.1121653 -0.01161267 -24.30731 0.1121653 -0.01161267 -32.64117 0.1121653 -0.01161267 -43.83129 0.1121653 -0.01161267 -58.85664 0.1121653 -0.01161267 --0.0175068 0.1535689 -0.01161267 --0.01161267 0.1535689 -0.01161267 --0.005718534 0.1535689 -0.01161267 -0.0001755984 0.1535689 -0.01161267 -0.006069731 0.1535689 -0.01161267 -0.01197402 0.1535689 -0.01161267 -0.01903886 0.1535689 -0.01161267 -0.02852504 0.1535689 -0.01161267 -0.04126244 0.1535689 -0.01161267 -0.05836535 0.1535689 -0.01161267 -0.08132997 0.1535689 -0.01161267 -0.1121653 0.1535689 -0.01161267 -0.1535689 0.1535689 -0.01161267 -0.2091628 0.1535689 -0.01161267 -0.2838106 0.1535689 -0.01161267 -0.3840425 0.1535689 -0.01161267 -0.518627 0.1535689 -0.01161267 -0.6993381 0.1535689 -0.01161267 -0.9419845 0.1535689 -0.01161267 -1.267794 0.1535689 -0.01161267 -1.705268 0.1535689 -0.01161267 -2.292679 0.1535689 -0.01161267 -3.081414 0.1535689 -0.01161267 -4.140474 0.1535689 -0.01161267 -5.562508 0.1535689 -0.01161267 -7.471917 0.1535689 -0.01161267 -10.03574 0.1535689 -0.01161267 -13.47828 0.1535689 -0.01161267 -18.10068 0.1535689 -0.01161267 -24.30731 0.1535689 -0.01161267 -32.64117 0.1535689 -0.01161267 -43.83129 0.1535689 -0.01161267 -58.85664 0.1535689 -0.01161267 --0.0175068 0.2091628 -0.01161267 --0.01161267 0.2091628 -0.01161267 --0.005718534 0.2091628 -0.01161267 -0.0001755984 0.2091628 -0.01161267 -0.006069731 0.2091628 -0.01161267 -0.01197402 0.2091628 -0.01161267 -0.01903886 0.2091628 -0.01161267 -0.02852504 0.2091628 -0.01161267 -0.04126244 0.2091628 -0.01161267 -0.05836535 0.2091628 -0.01161267 -0.08132997 0.2091628 -0.01161267 -0.1121653 0.2091628 -0.01161267 -0.1535689 0.2091628 -0.01161267 -0.2091628 0.2091628 -0.01161267 -0.2838106 0.2091628 -0.01161267 -0.3840425 0.2091628 -0.01161267 -0.518627 0.2091628 -0.01161267 -0.6993381 0.2091628 -0.01161267 -0.9419845 0.2091628 -0.01161267 -1.267794 0.2091628 -0.01161267 -1.705268 0.2091628 -0.01161267 -2.292679 0.2091628 -0.01161267 -3.081414 0.2091628 -0.01161267 -4.140474 0.2091628 -0.01161267 -5.562508 0.2091628 -0.01161267 -7.471917 0.2091628 -0.01161267 -10.03574 0.2091628 -0.01161267 -13.47828 0.2091628 -0.01161267 -18.10068 0.2091628 -0.01161267 -24.30731 0.2091628 -0.01161267 -32.64117 0.2091628 -0.01161267 -43.83129 0.2091628 -0.01161267 -58.85664 0.2091628 -0.01161267 --0.0175068 0.2838106 -0.01161267 --0.01161267 0.2838106 -0.01161267 --0.005718534 0.2838106 -0.01161267 -0.0001755984 0.2838106 -0.01161267 -0.006069731 0.2838106 -0.01161267 -0.01197402 0.2838106 -0.01161267 -0.01903886 0.2838106 -0.01161267 -0.02852504 0.2838106 -0.01161267 -0.04126244 0.2838106 -0.01161267 -0.05836535 0.2838106 -0.01161267 -0.08132997 0.2838106 -0.01161267 -0.1121653 0.2838106 -0.01161267 -0.1535689 0.2838106 -0.01161267 -0.2091628 0.2838106 -0.01161267 -0.2838106 0.2838106 -0.01161267 -0.3840425 0.2838106 -0.01161267 -0.518627 0.2838106 -0.01161267 -0.6993381 0.2838106 -0.01161267 -0.9419845 0.2838106 -0.01161267 -1.267794 0.2838106 -0.01161267 -1.705268 0.2838106 -0.01161267 -2.292679 0.2838106 -0.01161267 -3.081414 0.2838106 -0.01161267 -4.140474 0.2838106 -0.01161267 -5.562508 0.2838106 -0.01161267 -7.471917 0.2838106 -0.01161267 -10.03574 0.2838106 -0.01161267 -13.47828 0.2838106 -0.01161267 -18.10068 0.2838106 -0.01161267 -24.30731 0.2838106 -0.01161267 -32.64117 0.2838106 -0.01161267 -43.83129 0.2838106 -0.01161267 -58.85664 0.2838106 -0.01161267 --0.0175068 0.3840425 -0.01161267 --0.01161267 0.3840425 -0.01161267 --0.005718534 0.3840425 -0.01161267 -0.0001755984 0.3840425 -0.01161267 -0.006069731 0.3840425 -0.01161267 -0.01197402 0.3840425 -0.01161267 -0.01903886 0.3840425 -0.01161267 -0.02852504 0.3840425 -0.01161267 -0.04126244 0.3840425 -0.01161267 -0.05836535 0.3840425 -0.01161267 -0.08132997 0.3840425 -0.01161267 -0.1121653 0.3840425 -0.01161267 -0.1535689 0.3840425 -0.01161267 -0.2091628 0.3840425 -0.01161267 -0.2838106 0.3840425 -0.01161267 -0.3840425 0.3840425 -0.01161267 -0.518627 0.3840425 -0.01161267 -0.6993381 0.3840425 -0.01161267 -0.9419845 0.3840425 -0.01161267 -1.267794 0.3840425 -0.01161267 -1.705268 0.3840425 -0.01161267 -2.292679 0.3840425 -0.01161267 -3.081414 0.3840425 -0.01161267 -4.140474 0.3840425 -0.01161267 -5.562508 0.3840425 -0.01161267 -7.471917 0.3840425 -0.01161267 -10.03574 0.3840425 -0.01161267 -13.47828 0.3840425 -0.01161267 -18.10068 0.3840425 -0.01161267 -24.30731 0.3840425 -0.01161267 -32.64117 0.3840425 -0.01161267 -43.83129 0.3840425 -0.01161267 -58.85664 0.3840425 -0.01161267 --0.0175068 0.518627 -0.01161267 --0.01161267 0.518627 -0.01161267 --0.005718534 0.518627 -0.01161267 -0.0001755984 0.518627 -0.01161267 -0.006069731 0.518627 -0.01161267 -0.01197402 0.518627 -0.01161267 -0.01903886 0.518627 -0.01161267 -0.02852504 0.518627 -0.01161267 -0.04126244 0.518627 -0.01161267 -0.05836535 0.518627 -0.01161267 -0.08132997 0.518627 -0.01161267 -0.1121653 0.518627 -0.01161267 -0.1535689 0.518627 -0.01161267 -0.2091628 0.518627 -0.01161267 -0.2838106 0.518627 -0.01161267 -0.3840425 0.518627 -0.01161267 -0.518627 0.518627 -0.01161267 -0.6993381 0.518627 -0.01161267 -0.9419845 0.518627 -0.01161267 -1.267794 0.518627 -0.01161267 -1.705268 0.518627 -0.01161267 -2.292679 0.518627 -0.01161267 -3.081414 0.518627 -0.01161267 -4.140474 0.518627 -0.01161267 -5.562508 0.518627 -0.01161267 -7.471917 0.518627 -0.01161267 -10.03574 0.518627 -0.01161267 -13.47828 0.518627 -0.01161267 -18.10068 0.518627 -0.01161267 -24.30731 0.518627 -0.01161267 -32.64117 0.518627 -0.01161267 -43.83129 0.518627 -0.01161267 -58.85664 0.518627 -0.01161267 --0.0175068 0.6993381 -0.01161267 --0.01161267 0.6993381 -0.01161267 --0.005718534 0.6993381 -0.01161267 -0.0001755984 0.6993381 -0.01161267 -0.006069731 0.6993381 -0.01161267 -0.01197402 0.6993381 -0.01161267 -0.01903886 0.6993381 -0.01161267 -0.02852504 0.6993381 -0.01161267 -0.04126244 0.6993381 -0.01161267 -0.05836535 0.6993381 -0.01161267 -0.08132997 0.6993381 -0.01161267 -0.1121653 0.6993381 -0.01161267 -0.1535689 0.6993381 -0.01161267 -0.2091628 0.6993381 -0.01161267 -0.2838106 0.6993381 -0.01161267 -0.3840425 0.6993381 -0.01161267 -0.518627 0.6993381 -0.01161267 -0.6993381 0.6993381 -0.01161267 -0.9419845 0.6993381 -0.01161267 -1.267794 0.6993381 -0.01161267 -1.705268 0.6993381 -0.01161267 -2.292679 0.6993381 -0.01161267 -3.081414 0.6993381 -0.01161267 -4.140474 0.6993381 -0.01161267 -5.562508 0.6993381 -0.01161267 -7.471917 0.6993381 -0.01161267 -10.03574 0.6993381 -0.01161267 -13.47828 0.6993381 -0.01161267 -18.10068 0.6993381 -0.01161267 -24.30731 0.6993381 -0.01161267 -32.64117 0.6993381 -0.01161267 -43.83129 0.6993381 -0.01161267 -58.85664 0.6993381 -0.01161267 --0.0175068 0.9419845 -0.01161267 --0.01161267 0.9419845 -0.01161267 --0.005718534 0.9419845 -0.01161267 -0.0001755984 0.9419845 -0.01161267 -0.006069731 0.9419845 -0.01161267 -0.01197402 0.9419845 -0.01161267 -0.01903886 0.9419845 -0.01161267 -0.02852504 0.9419845 -0.01161267 -0.04126244 0.9419845 -0.01161267 -0.05836535 0.9419845 -0.01161267 -0.08132997 0.9419845 -0.01161267 -0.1121653 0.9419845 -0.01161267 -0.1535689 0.9419845 -0.01161267 -0.2091628 0.9419845 -0.01161267 -0.2838106 0.9419845 -0.01161267 -0.3840425 0.9419845 -0.01161267 -0.518627 0.9419845 -0.01161267 -0.6993381 0.9419845 -0.01161267 -0.9419845 0.9419845 -0.01161267 -1.267794 0.9419845 -0.01161267 -1.705268 0.9419845 -0.01161267 -2.292679 0.9419845 -0.01161267 -3.081414 0.9419845 -0.01161267 -4.140474 0.9419845 -0.01161267 -5.562508 0.9419845 -0.01161267 -7.471917 0.9419845 -0.01161267 -10.03574 0.9419845 -0.01161267 -13.47828 0.9419845 -0.01161267 -18.10068 0.9419845 -0.01161267 -24.30731 0.9419845 -0.01161267 -32.64117 0.9419845 -0.01161267 -43.83129 0.9419845 -0.01161267 -58.85664 0.9419845 -0.01161267 --0.0175068 1.267794 -0.01161267 --0.01161267 1.267794 -0.01161267 --0.005718534 1.267794 -0.01161267 -0.0001755984 1.267794 -0.01161267 -0.006069731 1.267794 -0.01161267 -0.01197402 1.267794 -0.01161267 -0.01903886 1.267794 -0.01161267 -0.02852504 1.267794 -0.01161267 -0.04126244 1.267794 -0.01161267 -0.05836535 1.267794 -0.01161267 -0.08132997 1.267794 -0.01161267 -0.1121653 1.267794 -0.01161267 -0.1535689 1.267794 -0.01161267 -0.2091628 1.267794 -0.01161267 -0.2838106 1.267794 -0.01161267 -0.3840425 1.267794 -0.01161267 -0.518627 1.267794 -0.01161267 -0.6993381 1.267794 -0.01161267 -0.9419845 1.267794 -0.01161267 -1.267794 1.267794 -0.01161267 -1.705268 1.267794 -0.01161267 -2.292679 1.267794 -0.01161267 -3.081414 1.267794 -0.01161267 -4.140474 1.267794 -0.01161267 -5.562508 1.267794 -0.01161267 -7.471917 1.267794 -0.01161267 -10.03574 1.267794 -0.01161267 -13.47828 1.267794 -0.01161267 -18.10068 1.267794 -0.01161267 -24.30731 1.267794 -0.01161267 -32.64117 1.267794 -0.01161267 -43.83129 1.267794 -0.01161267 -58.85664 1.267794 -0.01161267 --0.0175068 1.705268 -0.01161267 --0.01161267 1.705268 -0.01161267 --0.005718534 1.705268 -0.01161267 -0.0001755984 1.705268 -0.01161267 -0.006069731 1.705268 -0.01161267 -0.01197402 1.705268 -0.01161267 -0.01903886 1.705268 -0.01161267 -0.02852504 1.705268 -0.01161267 -0.04126244 1.705268 -0.01161267 -0.05836535 1.705268 -0.01161267 -0.08132997 1.705268 -0.01161267 -0.1121653 1.705268 -0.01161267 -0.1535689 1.705268 -0.01161267 -0.2091628 1.705268 -0.01161267 -0.2838106 1.705268 -0.01161267 -0.3840425 1.705268 -0.01161267 -0.518627 1.705268 -0.01161267 -0.6993381 1.705268 -0.01161267 -0.9419845 1.705268 -0.01161267 -1.267794 1.705268 -0.01161267 -1.705268 1.705268 -0.01161267 -2.292679 1.705268 -0.01161267 -3.081414 1.705268 -0.01161267 -4.140474 1.705268 -0.01161267 -5.562508 1.705268 -0.01161267 -7.471917 1.705268 -0.01161267 -10.03574 1.705268 -0.01161267 -13.47828 1.705268 -0.01161267 -18.10068 1.705268 -0.01161267 -24.30731 1.705268 -0.01161267 -32.64117 1.705268 -0.01161267 -43.83129 1.705268 -0.01161267 -58.85664 1.705268 -0.01161267 --0.0175068 2.292679 -0.01161267 --0.01161267 2.292679 -0.01161267 --0.005718534 2.292679 -0.01161267 -0.0001755984 2.292679 -0.01161267 -0.006069731 2.292679 -0.01161267 -0.01197402 2.292679 -0.01161267 -0.01903886 2.292679 -0.01161267 -0.02852504 2.292679 -0.01161267 -0.04126244 2.292679 -0.01161267 -0.05836535 2.292679 -0.01161267 -0.08132997 2.292679 -0.01161267 -0.1121653 2.292679 -0.01161267 -0.1535689 2.292679 -0.01161267 -0.2091628 2.292679 -0.01161267 -0.2838106 2.292679 -0.01161267 -0.3840425 2.292679 -0.01161267 -0.518627 2.292679 -0.01161267 -0.6993381 2.292679 -0.01161267 -0.9419845 2.292679 -0.01161267 -1.267794 2.292679 -0.01161267 -1.705268 2.292679 -0.01161267 -2.292679 2.292679 -0.01161267 -3.081414 2.292679 -0.01161267 -4.140474 2.292679 -0.01161267 -5.562508 2.292679 -0.01161267 -7.471917 2.292679 -0.01161267 -10.03574 2.292679 -0.01161267 -13.47828 2.292679 -0.01161267 -18.10068 2.292679 -0.01161267 -24.30731 2.292679 -0.01161267 -32.64117 2.292679 -0.01161267 -43.83129 2.292679 -0.01161267 -58.85664 2.292679 -0.01161267 --0.0175068 3.081414 -0.01161267 --0.01161267 3.081414 -0.01161267 --0.005718534 3.081414 -0.01161267 -0.0001755984 3.081414 -0.01161267 -0.006069731 3.081414 -0.01161267 -0.01197402 3.081414 -0.01161267 -0.01903886 3.081414 -0.01161267 -0.02852504 3.081414 -0.01161267 -0.04126244 3.081414 -0.01161267 -0.05836535 3.081414 -0.01161267 -0.08132997 3.081414 -0.01161267 -0.1121653 3.081414 -0.01161267 -0.1535689 3.081414 -0.01161267 -0.2091628 3.081414 -0.01161267 -0.2838106 3.081414 -0.01161267 -0.3840425 3.081414 -0.01161267 -0.518627 3.081414 -0.01161267 -0.6993381 3.081414 -0.01161267 -0.9419845 3.081414 -0.01161267 -1.267794 3.081414 -0.01161267 -1.705268 3.081414 -0.01161267 -2.292679 3.081414 -0.01161267 -3.081414 3.081414 -0.01161267 -4.140474 3.081414 -0.01161267 -5.562508 3.081414 -0.01161267 -7.471917 3.081414 -0.01161267 -10.03574 3.081414 -0.01161267 -13.47828 3.081414 -0.01161267 -18.10068 3.081414 -0.01161267 -24.30731 3.081414 -0.01161267 -32.64117 3.081414 -0.01161267 -43.83129 3.081414 -0.01161267 -58.85664 3.081414 -0.01161267 --0.0175068 4.140474 -0.01161267 --0.01161267 4.140474 -0.01161267 --0.005718534 4.140474 -0.01161267 -0.0001755984 4.140474 -0.01161267 -0.006069731 4.140474 -0.01161267 -0.01197402 4.140474 -0.01161267 -0.01903886 4.140474 -0.01161267 -0.02852504 4.140474 -0.01161267 -0.04126244 4.140474 -0.01161267 -0.05836535 4.140474 -0.01161267 -0.08132997 4.140474 -0.01161267 -0.1121653 4.140474 -0.01161267 -0.1535689 4.140474 -0.01161267 -0.2091628 4.140474 -0.01161267 -0.2838106 4.140474 -0.01161267 -0.3840425 4.140474 -0.01161267 -0.518627 4.140474 -0.01161267 -0.6993381 4.140474 -0.01161267 -0.9419845 4.140474 -0.01161267 -1.267794 4.140474 -0.01161267 -1.705268 4.140474 -0.01161267 -2.292679 4.140474 -0.01161267 -3.081414 4.140474 -0.01161267 -4.140474 4.140474 -0.01161267 -5.562508 4.140474 -0.01161267 -7.471917 4.140474 -0.01161267 -10.03574 4.140474 -0.01161267 -13.47828 4.140474 -0.01161267 -18.10068 4.140474 -0.01161267 -24.30731 4.140474 -0.01161267 -32.64117 4.140474 -0.01161267 -43.83129 4.140474 -0.01161267 -58.85664 4.140474 -0.01161267 --0.0175068 5.562508 -0.01161267 --0.01161267 5.562508 -0.01161267 --0.005718534 5.562508 -0.01161267 -0.0001755984 5.562508 -0.01161267 -0.006069731 5.562508 -0.01161267 -0.01197402 5.562508 -0.01161267 -0.01903886 5.562508 -0.01161267 -0.02852504 5.562508 -0.01161267 -0.04126244 5.562508 -0.01161267 -0.05836535 5.562508 -0.01161267 -0.08132997 5.562508 -0.01161267 -0.1121653 5.562508 -0.01161267 -0.1535689 5.562508 -0.01161267 -0.2091628 5.562508 -0.01161267 -0.2838106 5.562508 -0.01161267 -0.3840425 5.562508 -0.01161267 -0.518627 5.562508 -0.01161267 -0.6993381 5.562508 -0.01161267 -0.9419845 5.562508 -0.01161267 -1.267794 5.562508 -0.01161267 -1.705268 5.562508 -0.01161267 -2.292679 5.562508 -0.01161267 -3.081414 5.562508 -0.01161267 -4.140474 5.562508 -0.01161267 -5.562508 5.562508 -0.01161267 -7.471917 5.562508 -0.01161267 -10.03574 5.562508 -0.01161267 -13.47828 5.562508 -0.01161267 -18.10068 5.562508 -0.01161267 -24.30731 5.562508 -0.01161267 -32.64117 5.562508 -0.01161267 -43.83129 5.562508 -0.01161267 -58.85664 5.562508 -0.01161267 --0.0175068 7.471917 -0.01161267 --0.01161267 7.471917 -0.01161267 --0.005718534 7.471917 -0.01161267 -0.0001755984 7.471917 -0.01161267 -0.006069731 7.471917 -0.01161267 -0.01197402 7.471917 -0.01161267 -0.01903886 7.471917 -0.01161267 -0.02852504 7.471917 -0.01161267 -0.04126244 7.471917 -0.01161267 -0.05836535 7.471917 -0.01161267 -0.08132997 7.471917 -0.01161267 -0.1121653 7.471917 -0.01161267 -0.1535689 7.471917 -0.01161267 -0.2091628 7.471917 -0.01161267 -0.2838106 7.471917 -0.01161267 -0.3840425 7.471917 -0.01161267 -0.518627 7.471917 -0.01161267 -0.6993381 7.471917 -0.01161267 -0.9419845 7.471917 -0.01161267 -1.267794 7.471917 -0.01161267 -1.705268 7.471917 -0.01161267 -2.292679 7.471917 -0.01161267 -3.081414 7.471917 -0.01161267 -4.140474 7.471917 -0.01161267 -5.562508 7.471917 -0.01161267 -7.471917 7.471917 -0.01161267 -10.03574 7.471917 -0.01161267 -13.47828 7.471917 -0.01161267 -18.10068 7.471917 -0.01161267 -24.30731 7.471917 -0.01161267 -32.64117 7.471917 -0.01161267 -43.83129 7.471917 -0.01161267 -58.85664 7.471917 -0.01161267 --0.0175068 10.03574 -0.01161267 --0.01161267 10.03574 -0.01161267 --0.005718534 10.03574 -0.01161267 -0.0001755984 10.03574 -0.01161267 -0.006069731 10.03574 -0.01161267 -0.01197402 10.03574 -0.01161267 -0.01903886 10.03574 -0.01161267 -0.02852504 10.03574 -0.01161267 -0.04126244 10.03574 -0.01161267 -0.05836535 10.03574 -0.01161267 -0.08132997 10.03574 -0.01161267 -0.1121653 10.03574 -0.01161267 -0.1535689 10.03574 -0.01161267 -0.2091628 10.03574 -0.01161267 -0.2838106 10.03574 -0.01161267 -0.3840425 10.03574 -0.01161267 -0.518627 10.03574 -0.01161267 -0.6993381 10.03574 -0.01161267 -0.9419845 10.03574 -0.01161267 -1.267794 10.03574 -0.01161267 -1.705268 10.03574 -0.01161267 -2.292679 10.03574 -0.01161267 -3.081414 10.03574 -0.01161267 -4.140474 10.03574 -0.01161267 -5.562508 10.03574 -0.01161267 -7.471917 10.03574 -0.01161267 -10.03574 10.03574 -0.01161267 -13.47828 10.03574 -0.01161267 -18.10068 10.03574 -0.01161267 -24.30731 10.03574 -0.01161267 -32.64117 10.03574 -0.01161267 -43.83129 10.03574 -0.01161267 -58.85664 10.03574 -0.01161267 --0.0175068 13.47828 -0.01161267 --0.01161267 13.47828 -0.01161267 --0.005718534 13.47828 -0.01161267 -0.0001755984 13.47828 -0.01161267 -0.006069731 13.47828 -0.01161267 -0.01197402 13.47828 -0.01161267 -0.01903886 13.47828 -0.01161267 -0.02852504 13.47828 -0.01161267 -0.04126244 13.47828 -0.01161267 -0.05836535 13.47828 -0.01161267 -0.08132997 13.47828 -0.01161267 -0.1121653 13.47828 -0.01161267 -0.1535689 13.47828 -0.01161267 -0.2091628 13.47828 -0.01161267 -0.2838106 13.47828 -0.01161267 -0.3840425 13.47828 -0.01161267 -0.518627 13.47828 -0.01161267 -0.6993381 13.47828 -0.01161267 -0.9419845 13.47828 -0.01161267 -1.267794 13.47828 -0.01161267 -1.705268 13.47828 -0.01161267 -2.292679 13.47828 -0.01161267 -3.081414 13.47828 -0.01161267 -4.140474 13.47828 -0.01161267 -5.562508 13.47828 -0.01161267 -7.471917 13.47828 -0.01161267 -10.03574 13.47828 -0.01161267 -13.47828 13.47828 -0.01161267 -18.10068 13.47828 -0.01161267 -24.30731 13.47828 -0.01161267 -32.64117 13.47828 -0.01161267 -43.83129 13.47828 -0.01161267 -58.85664 13.47828 -0.01161267 --0.0175068 18.10068 -0.01161267 --0.01161267 18.10068 -0.01161267 --0.005718534 18.10068 -0.01161267 -0.0001755984 18.10068 -0.01161267 -0.006069731 18.10068 -0.01161267 -0.01197402 18.10068 -0.01161267 -0.01903886 18.10068 -0.01161267 -0.02852504 18.10068 -0.01161267 -0.04126244 18.10068 -0.01161267 -0.05836535 18.10068 -0.01161267 -0.08132997 18.10068 -0.01161267 -0.1121653 18.10068 -0.01161267 -0.1535689 18.10068 -0.01161267 -0.2091628 18.10068 -0.01161267 -0.2838106 18.10068 -0.01161267 -0.3840425 18.10068 -0.01161267 -0.518627 18.10068 -0.01161267 -0.6993381 18.10068 -0.01161267 -0.9419845 18.10068 -0.01161267 -1.267794 18.10068 -0.01161267 -1.705268 18.10068 -0.01161267 -2.292679 18.10068 -0.01161267 -3.081414 18.10068 -0.01161267 -4.140474 18.10068 -0.01161267 -5.562508 18.10068 -0.01161267 -7.471917 18.10068 -0.01161267 -10.03574 18.10068 -0.01161267 -13.47828 18.10068 -0.01161267 -18.10068 18.10068 -0.01161267 -24.30731 18.10068 -0.01161267 -32.64117 18.10068 -0.01161267 -43.83129 18.10068 -0.01161267 -58.85664 18.10068 -0.01161267 --0.0175068 24.30731 -0.01161267 --0.01161267 24.30731 -0.01161267 --0.005718534 24.30731 -0.01161267 -0.0001755984 24.30731 -0.01161267 -0.006069731 24.30731 -0.01161267 -0.01197402 24.30731 -0.01161267 -0.01903886 24.30731 -0.01161267 -0.02852504 24.30731 -0.01161267 -0.04126244 24.30731 -0.01161267 -0.05836535 24.30731 -0.01161267 -0.08132997 24.30731 -0.01161267 -0.1121653 24.30731 -0.01161267 -0.1535689 24.30731 -0.01161267 -0.2091628 24.30731 -0.01161267 -0.2838106 24.30731 -0.01161267 -0.3840425 24.30731 -0.01161267 -0.518627 24.30731 -0.01161267 -0.6993381 24.30731 -0.01161267 -0.9419845 24.30731 -0.01161267 -1.267794 24.30731 -0.01161267 -1.705268 24.30731 -0.01161267 -2.292679 24.30731 -0.01161267 -3.081414 24.30731 -0.01161267 -4.140474 24.30731 -0.01161267 -5.562508 24.30731 -0.01161267 -7.471917 24.30731 -0.01161267 -10.03574 24.30731 -0.01161267 -13.47828 24.30731 -0.01161267 -18.10068 24.30731 -0.01161267 -24.30731 24.30731 -0.01161267 -32.64117 24.30731 -0.01161267 -43.83129 24.30731 -0.01161267 -58.85664 24.30731 -0.01161267 --0.0175068 32.64117 -0.01161267 --0.01161267 32.64117 -0.01161267 --0.005718534 32.64117 -0.01161267 -0.0001755984 32.64117 -0.01161267 -0.006069731 32.64117 -0.01161267 -0.01197402 32.64117 -0.01161267 -0.01903886 32.64117 -0.01161267 -0.02852504 32.64117 -0.01161267 -0.04126244 32.64117 -0.01161267 -0.05836535 32.64117 -0.01161267 -0.08132997 32.64117 -0.01161267 -0.1121653 32.64117 -0.01161267 -0.1535689 32.64117 -0.01161267 -0.2091628 32.64117 -0.01161267 -0.2838106 32.64117 -0.01161267 -0.3840425 32.64117 -0.01161267 -0.518627 32.64117 -0.01161267 -0.6993381 32.64117 -0.01161267 -0.9419845 32.64117 -0.01161267 -1.267794 32.64117 -0.01161267 -1.705268 32.64117 -0.01161267 -2.292679 32.64117 -0.01161267 -3.081414 32.64117 -0.01161267 -4.140474 32.64117 -0.01161267 -5.562508 32.64117 -0.01161267 -7.471917 32.64117 -0.01161267 -10.03574 32.64117 -0.01161267 -13.47828 32.64117 -0.01161267 -18.10068 32.64117 -0.01161267 -24.30731 32.64117 -0.01161267 -32.64117 32.64117 -0.01161267 -43.83129 32.64117 -0.01161267 -58.85664 32.64117 -0.01161267 --0.0175068 43.83129 -0.01161267 --0.01161267 43.83129 -0.01161267 --0.005718534 43.83129 -0.01161267 -0.0001755984 43.83129 -0.01161267 -0.006069731 43.83129 -0.01161267 -0.01197402 43.83129 -0.01161267 -0.01903886 43.83129 -0.01161267 -0.02852504 43.83129 -0.01161267 -0.04126244 43.83129 -0.01161267 -0.05836535 43.83129 -0.01161267 -0.08132997 43.83129 -0.01161267 -0.1121653 43.83129 -0.01161267 -0.1535689 43.83129 -0.01161267 -0.2091628 43.83129 -0.01161267 -0.2838106 43.83129 -0.01161267 -0.3840425 43.83129 -0.01161267 -0.518627 43.83129 -0.01161267 -0.6993381 43.83129 -0.01161267 -0.9419845 43.83129 -0.01161267 -1.267794 43.83129 -0.01161267 -1.705268 43.83129 -0.01161267 -2.292679 43.83129 -0.01161267 -3.081414 43.83129 -0.01161267 -4.140474 43.83129 -0.01161267 -5.562508 43.83129 -0.01161267 -7.471917 43.83129 -0.01161267 -10.03574 43.83129 -0.01161267 -13.47828 43.83129 -0.01161267 -18.10068 43.83129 -0.01161267 -24.30731 43.83129 -0.01161267 -32.64117 43.83129 -0.01161267 -43.83129 43.83129 -0.01161267 -58.85664 43.83129 -0.01161267 --0.0175068 58.85664 -0.01161267 --0.01161267 58.85664 -0.01161267 --0.005718534 58.85664 -0.01161267 -0.0001755984 58.85664 -0.01161267 -0.006069731 58.85664 -0.01161267 -0.01197402 58.85664 -0.01161267 -0.01903886 58.85664 -0.01161267 -0.02852504 58.85664 -0.01161267 -0.04126244 58.85664 -0.01161267 -0.05836535 58.85664 -0.01161267 -0.08132997 58.85664 -0.01161267 -0.1121653 58.85664 -0.01161267 -0.1535689 58.85664 -0.01161267 -0.2091628 58.85664 -0.01161267 -0.2838106 58.85664 -0.01161267 -0.3840425 58.85664 -0.01161267 -0.518627 58.85664 -0.01161267 -0.6993381 58.85664 -0.01161267 -0.9419845 58.85664 -0.01161267 -1.267794 58.85664 -0.01161267 -1.705268 58.85664 -0.01161267 -2.292679 58.85664 -0.01161267 -3.081414 58.85664 -0.01161267 -4.140474 58.85664 -0.01161267 -5.562508 58.85664 -0.01161267 -7.471917 58.85664 -0.01161267 -10.03574 58.85664 -0.01161267 -13.47828 58.85664 -0.01161267 -18.10068 58.85664 -0.01161267 -24.30731 58.85664 -0.01161267 -32.64117 58.85664 -0.01161267 -43.83129 58.85664 -0.01161267 -58.85664 58.85664 -0.01161267 --0.0175068 -0.0175068 -0.005718534 --0.01161267 -0.0175068 -0.005718534 --0.005718534 -0.0175068 -0.005718534 -0.0001755984 -0.0175068 -0.005718534 -0.006069731 -0.0175068 -0.005718534 -0.01197402 -0.0175068 -0.005718534 -0.01903886 -0.0175068 -0.005718534 -0.02852504 -0.0175068 -0.005718534 -0.04126244 -0.0175068 -0.005718534 -0.05836535 -0.0175068 -0.005718534 -0.08132997 -0.0175068 -0.005718534 -0.1121653 -0.0175068 -0.005718534 -0.1535689 -0.0175068 -0.005718534 -0.2091628 -0.0175068 -0.005718534 -0.2838106 -0.0175068 -0.005718534 -0.3840425 -0.0175068 -0.005718534 -0.518627 -0.0175068 -0.005718534 -0.6993381 -0.0175068 -0.005718534 -0.9419845 -0.0175068 -0.005718534 -1.267794 -0.0175068 -0.005718534 -1.705268 -0.0175068 -0.005718534 -2.292679 -0.0175068 -0.005718534 -3.081414 -0.0175068 -0.005718534 -4.140474 -0.0175068 -0.005718534 -5.562508 -0.0175068 -0.005718534 -7.471917 -0.0175068 -0.005718534 -10.03574 -0.0175068 -0.005718534 -13.47828 -0.0175068 -0.005718534 -18.10068 -0.0175068 -0.005718534 -24.30731 -0.0175068 -0.005718534 -32.64117 -0.0175068 -0.005718534 -43.83129 -0.0175068 -0.005718534 -58.85664 -0.0175068 -0.005718534 --0.0175068 -0.01161267 -0.005718534 --0.01161267 -0.01161267 -0.005718534 --0.005718534 -0.01161267 -0.005718534 -0.0001755984 -0.01161267 -0.005718534 -0.006069731 -0.01161267 -0.005718534 -0.01197402 -0.01161267 -0.005718534 -0.01903886 -0.01161267 -0.005718534 -0.02852504 -0.01161267 -0.005718534 -0.04126244 -0.01161267 -0.005718534 -0.05836535 -0.01161267 -0.005718534 -0.08132997 -0.01161267 -0.005718534 -0.1121653 -0.01161267 -0.005718534 -0.1535689 -0.01161267 -0.005718534 -0.2091628 -0.01161267 -0.005718534 -0.2838106 -0.01161267 -0.005718534 -0.3840425 -0.01161267 -0.005718534 -0.518627 -0.01161267 -0.005718534 -0.6993381 -0.01161267 -0.005718534 -0.9419845 -0.01161267 -0.005718534 -1.267794 -0.01161267 -0.005718534 -1.705268 -0.01161267 -0.005718534 -2.292679 -0.01161267 -0.005718534 -3.081414 -0.01161267 -0.005718534 -4.140474 -0.01161267 -0.005718534 -5.562508 -0.01161267 -0.005718534 -7.471917 -0.01161267 -0.005718534 -10.03574 -0.01161267 -0.005718534 -13.47828 -0.01161267 -0.005718534 -18.10068 -0.01161267 -0.005718534 -24.30731 -0.01161267 -0.005718534 -32.64117 -0.01161267 -0.005718534 -43.83129 -0.01161267 -0.005718534 -58.85664 -0.01161267 -0.005718534 --0.0175068 -0.005718534 -0.005718534 --0.01161267 -0.005718534 -0.005718534 --0.005718534 -0.005718534 -0.005718534 -0.0001755984 -0.005718534 -0.005718534 -0.006069731 -0.005718534 -0.005718534 -0.01197402 -0.005718534 -0.005718534 -0.01903886 -0.005718534 -0.005718534 -0.02852504 -0.005718534 -0.005718534 -0.04126244 -0.005718534 -0.005718534 -0.05836535 -0.005718534 -0.005718534 -0.08132997 -0.005718534 -0.005718534 -0.1121653 -0.005718534 -0.005718534 -0.1535689 -0.005718534 -0.005718534 -0.2091628 -0.005718534 -0.005718534 -0.2838106 -0.005718534 -0.005718534 -0.3840425 -0.005718534 -0.005718534 -0.518627 -0.005718534 -0.005718534 -0.6993381 -0.005718534 -0.005718534 -0.9419845 -0.005718534 -0.005718534 -1.267794 -0.005718534 -0.005718534 -1.705268 -0.005718534 -0.005718534 -2.292679 -0.005718534 -0.005718534 -3.081414 -0.005718534 -0.005718534 -4.140474 -0.005718534 -0.005718534 -5.562508 -0.005718534 -0.005718534 -7.471917 -0.005718534 -0.005718534 -10.03574 -0.005718534 -0.005718534 -13.47828 -0.005718534 -0.005718534 -18.10068 -0.005718534 -0.005718534 -24.30731 -0.005718534 -0.005718534 -32.64117 -0.005718534 -0.005718534 -43.83129 -0.005718534 -0.005718534 -58.85664 -0.005718534 -0.005718534 --0.0175068 0.0001755984 -0.005718534 --0.01161267 0.0001755984 -0.005718534 --0.005718534 0.0001755984 -0.005718534 -0.0001755984 0.0001755984 -0.005718534 -0.006069731 0.0001755984 -0.005718534 -0.01197402 0.0001755984 -0.005718534 -0.01903886 0.0001755984 -0.005718534 -0.02852504 0.0001755984 -0.005718534 -0.04126244 0.0001755984 -0.005718534 -0.05836535 0.0001755984 -0.005718534 -0.08132997 0.0001755984 -0.005718534 -0.1121653 0.0001755984 -0.005718534 -0.1535689 0.0001755984 -0.005718534 -0.2091628 0.0001755984 -0.005718534 -0.2838106 0.0001755984 -0.005718534 -0.3840425 0.0001755984 -0.005718534 -0.518627 0.0001755984 -0.005718534 -0.6993381 0.0001755984 -0.005718534 -0.9419845 0.0001755984 -0.005718534 -1.267794 0.0001755984 -0.005718534 -1.705268 0.0001755984 -0.005718534 -2.292679 0.0001755984 -0.005718534 -3.081414 0.0001755984 -0.005718534 -4.140474 0.0001755984 -0.005718534 -5.562508 0.0001755984 -0.005718534 -7.471917 0.0001755984 -0.005718534 -10.03574 0.0001755984 -0.005718534 -13.47828 0.0001755984 -0.005718534 -18.10068 0.0001755984 -0.005718534 -24.30731 0.0001755984 -0.005718534 -32.64117 0.0001755984 -0.005718534 -43.83129 0.0001755984 -0.005718534 -58.85664 0.0001755984 -0.005718534 --0.0175068 0.006069731 -0.005718534 --0.01161267 0.006069731 -0.005718534 --0.005718534 0.006069731 -0.005718534 -0.0001755984 0.006069731 -0.005718534 -0.006069731 0.006069731 -0.005718534 -0.01197402 0.006069731 -0.005718534 -0.01903886 0.006069731 -0.005718534 -0.02852504 0.006069731 -0.005718534 -0.04126244 0.006069731 -0.005718534 -0.05836535 0.006069731 -0.005718534 -0.08132997 0.006069731 -0.005718534 -0.1121653 0.006069731 -0.005718534 -0.1535689 0.006069731 -0.005718534 -0.2091628 0.006069731 -0.005718534 -0.2838106 0.006069731 -0.005718534 -0.3840425 0.006069731 -0.005718534 -0.518627 0.006069731 -0.005718534 -0.6993381 0.006069731 -0.005718534 -0.9419845 0.006069731 -0.005718534 -1.267794 0.006069731 -0.005718534 -1.705268 0.006069731 -0.005718534 -2.292679 0.006069731 -0.005718534 -3.081414 0.006069731 -0.005718534 -4.140474 0.006069731 -0.005718534 -5.562508 0.006069731 -0.005718534 -7.471917 0.006069731 -0.005718534 -10.03574 0.006069731 -0.005718534 -13.47828 0.006069731 -0.005718534 -18.10068 0.006069731 -0.005718534 -24.30731 0.006069731 -0.005718534 -32.64117 0.006069731 -0.005718534 -43.83129 0.006069731 -0.005718534 -58.85664 0.006069731 -0.005718534 --0.0175068 0.01197402 -0.005718534 --0.01161267 0.01197402 -0.005718534 --0.005718534 0.01197402 -0.005718534 -0.0001755984 0.01197402 -0.005718534 -0.006069731 0.01197402 -0.005718534 -0.01197402 0.01197402 -0.005718534 -0.01903886 0.01197402 -0.005718534 -0.02852504 0.01197402 -0.005718534 -0.04126244 0.01197402 -0.005718534 -0.05836535 0.01197402 -0.005718534 -0.08132997 0.01197402 -0.005718534 -0.1121653 0.01197402 -0.005718534 -0.1535689 0.01197402 -0.005718534 -0.2091628 0.01197402 -0.005718534 -0.2838106 0.01197402 -0.005718534 -0.3840425 0.01197402 -0.005718534 -0.518627 0.01197402 -0.005718534 -0.6993381 0.01197402 -0.005718534 -0.9419845 0.01197402 -0.005718534 -1.267794 0.01197402 -0.005718534 -1.705268 0.01197402 -0.005718534 -2.292679 0.01197402 -0.005718534 -3.081414 0.01197402 -0.005718534 -4.140474 0.01197402 -0.005718534 -5.562508 0.01197402 -0.005718534 -7.471917 0.01197402 -0.005718534 -10.03574 0.01197402 -0.005718534 -13.47828 0.01197402 -0.005718534 -18.10068 0.01197402 -0.005718534 -24.30731 0.01197402 -0.005718534 -32.64117 0.01197402 -0.005718534 -43.83129 0.01197402 -0.005718534 -58.85664 0.01197402 -0.005718534 --0.0175068 0.01903886 -0.005718534 --0.01161267 0.01903886 -0.005718534 --0.005718534 0.01903886 -0.005718534 -0.0001755984 0.01903886 -0.005718534 -0.006069731 0.01903886 -0.005718534 -0.01197402 0.01903886 -0.005718534 -0.01903886 0.01903886 -0.005718534 -0.02852504 0.01903886 -0.005718534 -0.04126244 0.01903886 -0.005718534 -0.05836535 0.01903886 -0.005718534 -0.08132997 0.01903886 -0.005718534 -0.1121653 0.01903886 -0.005718534 -0.1535689 0.01903886 -0.005718534 -0.2091628 0.01903886 -0.005718534 -0.2838106 0.01903886 -0.005718534 -0.3840425 0.01903886 -0.005718534 -0.518627 0.01903886 -0.005718534 -0.6993381 0.01903886 -0.005718534 -0.9419845 0.01903886 -0.005718534 -1.267794 0.01903886 -0.005718534 -1.705268 0.01903886 -0.005718534 -2.292679 0.01903886 -0.005718534 -3.081414 0.01903886 -0.005718534 -4.140474 0.01903886 -0.005718534 -5.562508 0.01903886 -0.005718534 -7.471917 0.01903886 -0.005718534 -10.03574 0.01903886 -0.005718534 -13.47828 0.01903886 -0.005718534 -18.10068 0.01903886 -0.005718534 -24.30731 0.01903886 -0.005718534 -32.64117 0.01903886 -0.005718534 -43.83129 0.01903886 -0.005718534 -58.85664 0.01903886 -0.005718534 --0.0175068 0.02852504 -0.005718534 --0.01161267 0.02852504 -0.005718534 --0.005718534 0.02852504 -0.005718534 -0.0001755984 0.02852504 -0.005718534 -0.006069731 0.02852504 -0.005718534 -0.01197402 0.02852504 -0.005718534 -0.01903886 0.02852504 -0.005718534 -0.02852504 0.02852504 -0.005718534 -0.04126244 0.02852504 -0.005718534 -0.05836535 0.02852504 -0.005718534 -0.08132997 0.02852504 -0.005718534 -0.1121653 0.02852504 -0.005718534 -0.1535689 0.02852504 -0.005718534 -0.2091628 0.02852504 -0.005718534 -0.2838106 0.02852504 -0.005718534 -0.3840425 0.02852504 -0.005718534 -0.518627 0.02852504 -0.005718534 -0.6993381 0.02852504 -0.005718534 -0.9419845 0.02852504 -0.005718534 -1.267794 0.02852504 -0.005718534 -1.705268 0.02852504 -0.005718534 -2.292679 0.02852504 -0.005718534 -3.081414 0.02852504 -0.005718534 -4.140474 0.02852504 -0.005718534 -5.562508 0.02852504 -0.005718534 -7.471917 0.02852504 -0.005718534 -10.03574 0.02852504 -0.005718534 -13.47828 0.02852504 -0.005718534 -18.10068 0.02852504 -0.005718534 -24.30731 0.02852504 -0.005718534 -32.64117 0.02852504 -0.005718534 -43.83129 0.02852504 -0.005718534 -58.85664 0.02852504 -0.005718534 --0.0175068 0.04126244 -0.005718534 --0.01161267 0.04126244 -0.005718534 --0.005718534 0.04126244 -0.005718534 -0.0001755984 0.04126244 -0.005718534 -0.006069731 0.04126244 -0.005718534 -0.01197402 0.04126244 -0.005718534 -0.01903886 0.04126244 -0.005718534 -0.02852504 0.04126244 -0.005718534 -0.04126244 0.04126244 -0.005718534 -0.05836535 0.04126244 -0.005718534 -0.08132997 0.04126244 -0.005718534 -0.1121653 0.04126244 -0.005718534 -0.1535689 0.04126244 -0.005718534 -0.2091628 0.04126244 -0.005718534 -0.2838106 0.04126244 -0.005718534 -0.3840425 0.04126244 -0.005718534 -0.518627 0.04126244 -0.005718534 -0.6993381 0.04126244 -0.005718534 -0.9419845 0.04126244 -0.005718534 -1.267794 0.04126244 -0.005718534 -1.705268 0.04126244 -0.005718534 -2.292679 0.04126244 -0.005718534 -3.081414 0.04126244 -0.005718534 -4.140474 0.04126244 -0.005718534 -5.562508 0.04126244 -0.005718534 -7.471917 0.04126244 -0.005718534 -10.03574 0.04126244 -0.005718534 -13.47828 0.04126244 -0.005718534 -18.10068 0.04126244 -0.005718534 -24.30731 0.04126244 -0.005718534 -32.64117 0.04126244 -0.005718534 -43.83129 0.04126244 -0.005718534 -58.85664 0.04126244 -0.005718534 --0.0175068 0.05836535 -0.005718534 --0.01161267 0.05836535 -0.005718534 --0.005718534 0.05836535 -0.005718534 -0.0001755984 0.05836535 -0.005718534 -0.006069731 0.05836535 -0.005718534 -0.01197402 0.05836535 -0.005718534 -0.01903886 0.05836535 -0.005718534 -0.02852504 0.05836535 -0.005718534 -0.04126244 0.05836535 -0.005718534 -0.05836535 0.05836535 -0.005718534 -0.08132997 0.05836535 -0.005718534 -0.1121653 0.05836535 -0.005718534 -0.1535689 0.05836535 -0.005718534 -0.2091628 0.05836535 -0.005718534 -0.2838106 0.05836535 -0.005718534 -0.3840425 0.05836535 -0.005718534 -0.518627 0.05836535 -0.005718534 -0.6993381 0.05836535 -0.005718534 -0.9419845 0.05836535 -0.005718534 -1.267794 0.05836535 -0.005718534 -1.705268 0.05836535 -0.005718534 -2.292679 0.05836535 -0.005718534 -3.081414 0.05836535 -0.005718534 -4.140474 0.05836535 -0.005718534 -5.562508 0.05836535 -0.005718534 -7.471917 0.05836535 -0.005718534 -10.03574 0.05836535 -0.005718534 -13.47828 0.05836535 -0.005718534 -18.10068 0.05836535 -0.005718534 -24.30731 0.05836535 -0.005718534 -32.64117 0.05836535 -0.005718534 -43.83129 0.05836535 -0.005718534 -58.85664 0.05836535 -0.005718534 --0.0175068 0.08132997 -0.005718534 --0.01161267 0.08132997 -0.005718534 --0.005718534 0.08132997 -0.005718534 -0.0001755984 0.08132997 -0.005718534 -0.006069731 0.08132997 -0.005718534 -0.01197402 0.08132997 -0.005718534 -0.01903886 0.08132997 -0.005718534 -0.02852504 0.08132997 -0.005718534 -0.04126244 0.08132997 -0.005718534 -0.05836535 0.08132997 -0.005718534 -0.08132997 0.08132997 -0.005718534 -0.1121653 0.08132997 -0.005718534 -0.1535689 0.08132997 -0.005718534 -0.2091628 0.08132997 -0.005718534 -0.2838106 0.08132997 -0.005718534 -0.3840425 0.08132997 -0.005718534 -0.518627 0.08132997 -0.005718534 -0.6993381 0.08132997 -0.005718534 -0.9419845 0.08132997 -0.005718534 -1.267794 0.08132997 -0.005718534 -1.705268 0.08132997 -0.005718534 -2.292679 0.08132997 -0.005718534 -3.081414 0.08132997 -0.005718534 -4.140474 0.08132997 -0.005718534 -5.562508 0.08132997 -0.005718534 -7.471917 0.08132997 -0.005718534 -10.03574 0.08132997 -0.005718534 -13.47828 0.08132997 -0.005718534 -18.10068 0.08132997 -0.005718534 -24.30731 0.08132997 -0.005718534 -32.64117 0.08132997 -0.005718534 -43.83129 0.08132997 -0.005718534 -58.85664 0.08132997 -0.005718534 --0.0175068 0.1121653 -0.005718534 --0.01161267 0.1121653 -0.005718534 --0.005718534 0.1121653 -0.005718534 -0.0001755984 0.1121653 -0.005718534 -0.006069731 0.1121653 -0.005718534 -0.01197402 0.1121653 -0.005718534 -0.01903886 0.1121653 -0.005718534 -0.02852504 0.1121653 -0.005718534 -0.04126244 0.1121653 -0.005718534 -0.05836535 0.1121653 -0.005718534 -0.08132997 0.1121653 -0.005718534 -0.1121653 0.1121653 -0.005718534 -0.1535689 0.1121653 -0.005718534 -0.2091628 0.1121653 -0.005718534 -0.2838106 0.1121653 -0.005718534 -0.3840425 0.1121653 -0.005718534 -0.518627 0.1121653 -0.005718534 -0.6993381 0.1121653 -0.005718534 -0.9419845 0.1121653 -0.005718534 -1.267794 0.1121653 -0.005718534 -1.705268 0.1121653 -0.005718534 -2.292679 0.1121653 -0.005718534 -3.081414 0.1121653 -0.005718534 -4.140474 0.1121653 -0.005718534 -5.562508 0.1121653 -0.005718534 -7.471917 0.1121653 -0.005718534 -10.03574 0.1121653 -0.005718534 -13.47828 0.1121653 -0.005718534 -18.10068 0.1121653 -0.005718534 -24.30731 0.1121653 -0.005718534 -32.64117 0.1121653 -0.005718534 -43.83129 0.1121653 -0.005718534 -58.85664 0.1121653 -0.005718534 --0.0175068 0.1535689 -0.005718534 --0.01161267 0.1535689 -0.005718534 --0.005718534 0.1535689 -0.005718534 -0.0001755984 0.1535689 -0.005718534 -0.006069731 0.1535689 -0.005718534 -0.01197402 0.1535689 -0.005718534 -0.01903886 0.1535689 -0.005718534 -0.02852504 0.1535689 -0.005718534 -0.04126244 0.1535689 -0.005718534 -0.05836535 0.1535689 -0.005718534 -0.08132997 0.1535689 -0.005718534 -0.1121653 0.1535689 -0.005718534 -0.1535689 0.1535689 -0.005718534 -0.2091628 0.1535689 -0.005718534 -0.2838106 0.1535689 -0.005718534 -0.3840425 0.1535689 -0.005718534 -0.518627 0.1535689 -0.005718534 -0.6993381 0.1535689 -0.005718534 -0.9419845 0.1535689 -0.005718534 -1.267794 0.1535689 -0.005718534 -1.705268 0.1535689 -0.005718534 -2.292679 0.1535689 -0.005718534 -3.081414 0.1535689 -0.005718534 -4.140474 0.1535689 -0.005718534 -5.562508 0.1535689 -0.005718534 -7.471917 0.1535689 -0.005718534 -10.03574 0.1535689 -0.005718534 -13.47828 0.1535689 -0.005718534 -18.10068 0.1535689 -0.005718534 -24.30731 0.1535689 -0.005718534 -32.64117 0.1535689 -0.005718534 -43.83129 0.1535689 -0.005718534 -58.85664 0.1535689 -0.005718534 --0.0175068 0.2091628 -0.005718534 --0.01161267 0.2091628 -0.005718534 --0.005718534 0.2091628 -0.005718534 -0.0001755984 0.2091628 -0.005718534 -0.006069731 0.2091628 -0.005718534 -0.01197402 0.2091628 -0.005718534 -0.01903886 0.2091628 -0.005718534 -0.02852504 0.2091628 -0.005718534 -0.04126244 0.2091628 -0.005718534 -0.05836535 0.2091628 -0.005718534 -0.08132997 0.2091628 -0.005718534 -0.1121653 0.2091628 -0.005718534 -0.1535689 0.2091628 -0.005718534 -0.2091628 0.2091628 -0.005718534 -0.2838106 0.2091628 -0.005718534 -0.3840425 0.2091628 -0.005718534 -0.518627 0.2091628 -0.005718534 -0.6993381 0.2091628 -0.005718534 -0.9419845 0.2091628 -0.005718534 -1.267794 0.2091628 -0.005718534 -1.705268 0.2091628 -0.005718534 -2.292679 0.2091628 -0.005718534 -3.081414 0.2091628 -0.005718534 -4.140474 0.2091628 -0.005718534 -5.562508 0.2091628 -0.005718534 -7.471917 0.2091628 -0.005718534 -10.03574 0.2091628 -0.005718534 -13.47828 0.2091628 -0.005718534 -18.10068 0.2091628 -0.005718534 -24.30731 0.2091628 -0.005718534 -32.64117 0.2091628 -0.005718534 -43.83129 0.2091628 -0.005718534 -58.85664 0.2091628 -0.005718534 --0.0175068 0.2838106 -0.005718534 --0.01161267 0.2838106 -0.005718534 --0.005718534 0.2838106 -0.005718534 -0.0001755984 0.2838106 -0.005718534 -0.006069731 0.2838106 -0.005718534 -0.01197402 0.2838106 -0.005718534 -0.01903886 0.2838106 -0.005718534 -0.02852504 0.2838106 -0.005718534 -0.04126244 0.2838106 -0.005718534 -0.05836535 0.2838106 -0.005718534 -0.08132997 0.2838106 -0.005718534 -0.1121653 0.2838106 -0.005718534 -0.1535689 0.2838106 -0.005718534 -0.2091628 0.2838106 -0.005718534 -0.2838106 0.2838106 -0.005718534 -0.3840425 0.2838106 -0.005718534 -0.518627 0.2838106 -0.005718534 -0.6993381 0.2838106 -0.005718534 -0.9419845 0.2838106 -0.005718534 -1.267794 0.2838106 -0.005718534 -1.705268 0.2838106 -0.005718534 -2.292679 0.2838106 -0.005718534 -3.081414 0.2838106 -0.005718534 -4.140474 0.2838106 -0.005718534 -5.562508 0.2838106 -0.005718534 -7.471917 0.2838106 -0.005718534 -10.03574 0.2838106 -0.005718534 -13.47828 0.2838106 -0.005718534 -18.10068 0.2838106 -0.005718534 -24.30731 0.2838106 -0.005718534 -32.64117 0.2838106 -0.005718534 -43.83129 0.2838106 -0.005718534 -58.85664 0.2838106 -0.005718534 --0.0175068 0.3840425 -0.005718534 --0.01161267 0.3840425 -0.005718534 --0.005718534 0.3840425 -0.005718534 -0.0001755984 0.3840425 -0.005718534 -0.006069731 0.3840425 -0.005718534 -0.01197402 0.3840425 -0.005718534 -0.01903886 0.3840425 -0.005718534 -0.02852504 0.3840425 -0.005718534 -0.04126244 0.3840425 -0.005718534 -0.05836535 0.3840425 -0.005718534 -0.08132997 0.3840425 -0.005718534 -0.1121653 0.3840425 -0.005718534 -0.1535689 0.3840425 -0.005718534 -0.2091628 0.3840425 -0.005718534 -0.2838106 0.3840425 -0.005718534 -0.3840425 0.3840425 -0.005718534 -0.518627 0.3840425 -0.005718534 -0.6993381 0.3840425 -0.005718534 -0.9419845 0.3840425 -0.005718534 -1.267794 0.3840425 -0.005718534 -1.705268 0.3840425 -0.005718534 -2.292679 0.3840425 -0.005718534 -3.081414 0.3840425 -0.005718534 -4.140474 0.3840425 -0.005718534 -5.562508 0.3840425 -0.005718534 -7.471917 0.3840425 -0.005718534 -10.03574 0.3840425 -0.005718534 -13.47828 0.3840425 -0.005718534 -18.10068 0.3840425 -0.005718534 -24.30731 0.3840425 -0.005718534 -32.64117 0.3840425 -0.005718534 -43.83129 0.3840425 -0.005718534 -58.85664 0.3840425 -0.005718534 --0.0175068 0.518627 -0.005718534 --0.01161267 0.518627 -0.005718534 --0.005718534 0.518627 -0.005718534 -0.0001755984 0.518627 -0.005718534 -0.006069731 0.518627 -0.005718534 -0.01197402 0.518627 -0.005718534 -0.01903886 0.518627 -0.005718534 -0.02852504 0.518627 -0.005718534 -0.04126244 0.518627 -0.005718534 -0.05836535 0.518627 -0.005718534 -0.08132997 0.518627 -0.005718534 -0.1121653 0.518627 -0.005718534 -0.1535689 0.518627 -0.005718534 -0.2091628 0.518627 -0.005718534 -0.2838106 0.518627 -0.005718534 -0.3840425 0.518627 -0.005718534 -0.518627 0.518627 -0.005718534 -0.6993381 0.518627 -0.005718534 -0.9419845 0.518627 -0.005718534 -1.267794 0.518627 -0.005718534 -1.705268 0.518627 -0.005718534 -2.292679 0.518627 -0.005718534 -3.081414 0.518627 -0.005718534 -4.140474 0.518627 -0.005718534 -5.562508 0.518627 -0.005718534 -7.471917 0.518627 -0.005718534 -10.03574 0.518627 -0.005718534 -13.47828 0.518627 -0.005718534 -18.10068 0.518627 -0.005718534 -24.30731 0.518627 -0.005718534 -32.64117 0.518627 -0.005718534 -43.83129 0.518627 -0.005718534 -58.85664 0.518627 -0.005718534 --0.0175068 0.6993381 -0.005718534 --0.01161267 0.6993381 -0.005718534 --0.005718534 0.6993381 -0.005718534 -0.0001755984 0.6993381 -0.005718534 -0.006069731 0.6993381 -0.005718534 -0.01197402 0.6993381 -0.005718534 -0.01903886 0.6993381 -0.005718534 -0.02852504 0.6993381 -0.005718534 -0.04126244 0.6993381 -0.005718534 -0.05836535 0.6993381 -0.005718534 -0.08132997 0.6993381 -0.005718534 -0.1121653 0.6993381 -0.005718534 -0.1535689 0.6993381 -0.005718534 -0.2091628 0.6993381 -0.005718534 -0.2838106 0.6993381 -0.005718534 -0.3840425 0.6993381 -0.005718534 -0.518627 0.6993381 -0.005718534 -0.6993381 0.6993381 -0.005718534 -0.9419845 0.6993381 -0.005718534 -1.267794 0.6993381 -0.005718534 -1.705268 0.6993381 -0.005718534 -2.292679 0.6993381 -0.005718534 -3.081414 0.6993381 -0.005718534 -4.140474 0.6993381 -0.005718534 -5.562508 0.6993381 -0.005718534 -7.471917 0.6993381 -0.005718534 -10.03574 0.6993381 -0.005718534 -13.47828 0.6993381 -0.005718534 -18.10068 0.6993381 -0.005718534 -24.30731 0.6993381 -0.005718534 -32.64117 0.6993381 -0.005718534 -43.83129 0.6993381 -0.005718534 -58.85664 0.6993381 -0.005718534 --0.0175068 0.9419845 -0.005718534 --0.01161267 0.9419845 -0.005718534 --0.005718534 0.9419845 -0.005718534 -0.0001755984 0.9419845 -0.005718534 -0.006069731 0.9419845 -0.005718534 -0.01197402 0.9419845 -0.005718534 -0.01903886 0.9419845 -0.005718534 -0.02852504 0.9419845 -0.005718534 -0.04126244 0.9419845 -0.005718534 -0.05836535 0.9419845 -0.005718534 -0.08132997 0.9419845 -0.005718534 -0.1121653 0.9419845 -0.005718534 -0.1535689 0.9419845 -0.005718534 -0.2091628 0.9419845 -0.005718534 -0.2838106 0.9419845 -0.005718534 -0.3840425 0.9419845 -0.005718534 -0.518627 0.9419845 -0.005718534 -0.6993381 0.9419845 -0.005718534 -0.9419845 0.9419845 -0.005718534 -1.267794 0.9419845 -0.005718534 -1.705268 0.9419845 -0.005718534 -2.292679 0.9419845 -0.005718534 -3.081414 0.9419845 -0.005718534 -4.140474 0.9419845 -0.005718534 -5.562508 0.9419845 -0.005718534 -7.471917 0.9419845 -0.005718534 -10.03574 0.9419845 -0.005718534 -13.47828 0.9419845 -0.005718534 -18.10068 0.9419845 -0.005718534 -24.30731 0.9419845 -0.005718534 -32.64117 0.9419845 -0.005718534 -43.83129 0.9419845 -0.005718534 -58.85664 0.9419845 -0.005718534 --0.0175068 1.267794 -0.005718534 --0.01161267 1.267794 -0.005718534 --0.005718534 1.267794 -0.005718534 -0.0001755984 1.267794 -0.005718534 -0.006069731 1.267794 -0.005718534 -0.01197402 1.267794 -0.005718534 -0.01903886 1.267794 -0.005718534 -0.02852504 1.267794 -0.005718534 -0.04126244 1.267794 -0.005718534 -0.05836535 1.267794 -0.005718534 -0.08132997 1.267794 -0.005718534 -0.1121653 1.267794 -0.005718534 -0.1535689 1.267794 -0.005718534 -0.2091628 1.267794 -0.005718534 -0.2838106 1.267794 -0.005718534 -0.3840425 1.267794 -0.005718534 -0.518627 1.267794 -0.005718534 -0.6993381 1.267794 -0.005718534 -0.9419845 1.267794 -0.005718534 -1.267794 1.267794 -0.005718534 -1.705268 1.267794 -0.005718534 -2.292679 1.267794 -0.005718534 -3.081414 1.267794 -0.005718534 -4.140474 1.267794 -0.005718534 -5.562508 1.267794 -0.005718534 -7.471917 1.267794 -0.005718534 -10.03574 1.267794 -0.005718534 -13.47828 1.267794 -0.005718534 -18.10068 1.267794 -0.005718534 -24.30731 1.267794 -0.005718534 -32.64117 1.267794 -0.005718534 -43.83129 1.267794 -0.005718534 -58.85664 1.267794 -0.005718534 --0.0175068 1.705268 -0.005718534 --0.01161267 1.705268 -0.005718534 --0.005718534 1.705268 -0.005718534 -0.0001755984 1.705268 -0.005718534 -0.006069731 1.705268 -0.005718534 -0.01197402 1.705268 -0.005718534 -0.01903886 1.705268 -0.005718534 -0.02852504 1.705268 -0.005718534 -0.04126244 1.705268 -0.005718534 -0.05836535 1.705268 -0.005718534 -0.08132997 1.705268 -0.005718534 -0.1121653 1.705268 -0.005718534 -0.1535689 1.705268 -0.005718534 -0.2091628 1.705268 -0.005718534 -0.2838106 1.705268 -0.005718534 -0.3840425 1.705268 -0.005718534 -0.518627 1.705268 -0.005718534 -0.6993381 1.705268 -0.005718534 -0.9419845 1.705268 -0.005718534 -1.267794 1.705268 -0.005718534 -1.705268 1.705268 -0.005718534 -2.292679 1.705268 -0.005718534 -3.081414 1.705268 -0.005718534 -4.140474 1.705268 -0.005718534 -5.562508 1.705268 -0.005718534 -7.471917 1.705268 -0.005718534 -10.03574 1.705268 -0.005718534 -13.47828 1.705268 -0.005718534 -18.10068 1.705268 -0.005718534 -24.30731 1.705268 -0.005718534 -32.64117 1.705268 -0.005718534 -43.83129 1.705268 -0.005718534 -58.85664 1.705268 -0.005718534 --0.0175068 2.292679 -0.005718534 --0.01161267 2.292679 -0.005718534 --0.005718534 2.292679 -0.005718534 -0.0001755984 2.292679 -0.005718534 -0.006069731 2.292679 -0.005718534 -0.01197402 2.292679 -0.005718534 -0.01903886 2.292679 -0.005718534 -0.02852504 2.292679 -0.005718534 -0.04126244 2.292679 -0.005718534 -0.05836535 2.292679 -0.005718534 -0.08132997 2.292679 -0.005718534 -0.1121653 2.292679 -0.005718534 -0.1535689 2.292679 -0.005718534 -0.2091628 2.292679 -0.005718534 -0.2838106 2.292679 -0.005718534 -0.3840425 2.292679 -0.005718534 -0.518627 2.292679 -0.005718534 -0.6993381 2.292679 -0.005718534 -0.9419845 2.292679 -0.005718534 -1.267794 2.292679 -0.005718534 -1.705268 2.292679 -0.005718534 -2.292679 2.292679 -0.005718534 -3.081414 2.292679 -0.005718534 -4.140474 2.292679 -0.005718534 -5.562508 2.292679 -0.005718534 -7.471917 2.292679 -0.005718534 -10.03574 2.292679 -0.005718534 -13.47828 2.292679 -0.005718534 -18.10068 2.292679 -0.005718534 -24.30731 2.292679 -0.005718534 -32.64117 2.292679 -0.005718534 -43.83129 2.292679 -0.005718534 -58.85664 2.292679 -0.005718534 --0.0175068 3.081414 -0.005718534 --0.01161267 3.081414 -0.005718534 --0.005718534 3.081414 -0.005718534 -0.0001755984 3.081414 -0.005718534 -0.006069731 3.081414 -0.005718534 -0.01197402 3.081414 -0.005718534 -0.01903886 3.081414 -0.005718534 -0.02852504 3.081414 -0.005718534 -0.04126244 3.081414 -0.005718534 -0.05836535 3.081414 -0.005718534 -0.08132997 3.081414 -0.005718534 -0.1121653 3.081414 -0.005718534 -0.1535689 3.081414 -0.005718534 -0.2091628 3.081414 -0.005718534 -0.2838106 3.081414 -0.005718534 -0.3840425 3.081414 -0.005718534 -0.518627 3.081414 -0.005718534 -0.6993381 3.081414 -0.005718534 -0.9419845 3.081414 -0.005718534 -1.267794 3.081414 -0.005718534 -1.705268 3.081414 -0.005718534 -2.292679 3.081414 -0.005718534 -3.081414 3.081414 -0.005718534 -4.140474 3.081414 -0.005718534 -5.562508 3.081414 -0.005718534 -7.471917 3.081414 -0.005718534 -10.03574 3.081414 -0.005718534 -13.47828 3.081414 -0.005718534 -18.10068 3.081414 -0.005718534 -24.30731 3.081414 -0.005718534 -32.64117 3.081414 -0.005718534 -43.83129 3.081414 -0.005718534 -58.85664 3.081414 -0.005718534 --0.0175068 4.140474 -0.005718534 --0.01161267 4.140474 -0.005718534 --0.005718534 4.140474 -0.005718534 -0.0001755984 4.140474 -0.005718534 -0.006069731 4.140474 -0.005718534 -0.01197402 4.140474 -0.005718534 -0.01903886 4.140474 -0.005718534 -0.02852504 4.140474 -0.005718534 -0.04126244 4.140474 -0.005718534 -0.05836535 4.140474 -0.005718534 -0.08132997 4.140474 -0.005718534 -0.1121653 4.140474 -0.005718534 -0.1535689 4.140474 -0.005718534 -0.2091628 4.140474 -0.005718534 -0.2838106 4.140474 -0.005718534 -0.3840425 4.140474 -0.005718534 -0.518627 4.140474 -0.005718534 -0.6993381 4.140474 -0.005718534 -0.9419845 4.140474 -0.005718534 -1.267794 4.140474 -0.005718534 -1.705268 4.140474 -0.005718534 -2.292679 4.140474 -0.005718534 -3.081414 4.140474 -0.005718534 -4.140474 4.140474 -0.005718534 -5.562508 4.140474 -0.005718534 -7.471917 4.140474 -0.005718534 -10.03574 4.140474 -0.005718534 -13.47828 4.140474 -0.005718534 -18.10068 4.140474 -0.005718534 -24.30731 4.140474 -0.005718534 -32.64117 4.140474 -0.005718534 -43.83129 4.140474 -0.005718534 -58.85664 4.140474 -0.005718534 --0.0175068 5.562508 -0.005718534 --0.01161267 5.562508 -0.005718534 --0.005718534 5.562508 -0.005718534 -0.0001755984 5.562508 -0.005718534 -0.006069731 5.562508 -0.005718534 -0.01197402 5.562508 -0.005718534 -0.01903886 5.562508 -0.005718534 -0.02852504 5.562508 -0.005718534 -0.04126244 5.562508 -0.005718534 -0.05836535 5.562508 -0.005718534 -0.08132997 5.562508 -0.005718534 -0.1121653 5.562508 -0.005718534 -0.1535689 5.562508 -0.005718534 -0.2091628 5.562508 -0.005718534 -0.2838106 5.562508 -0.005718534 -0.3840425 5.562508 -0.005718534 -0.518627 5.562508 -0.005718534 -0.6993381 5.562508 -0.005718534 -0.9419845 5.562508 -0.005718534 -1.267794 5.562508 -0.005718534 -1.705268 5.562508 -0.005718534 -2.292679 5.562508 -0.005718534 -3.081414 5.562508 -0.005718534 -4.140474 5.562508 -0.005718534 -5.562508 5.562508 -0.005718534 -7.471917 5.562508 -0.005718534 -10.03574 5.562508 -0.005718534 -13.47828 5.562508 -0.005718534 -18.10068 5.562508 -0.005718534 -24.30731 5.562508 -0.005718534 -32.64117 5.562508 -0.005718534 -43.83129 5.562508 -0.005718534 -58.85664 5.562508 -0.005718534 --0.0175068 7.471917 -0.005718534 --0.01161267 7.471917 -0.005718534 --0.005718534 7.471917 -0.005718534 -0.0001755984 7.471917 -0.005718534 -0.006069731 7.471917 -0.005718534 -0.01197402 7.471917 -0.005718534 -0.01903886 7.471917 -0.005718534 -0.02852504 7.471917 -0.005718534 -0.04126244 7.471917 -0.005718534 -0.05836535 7.471917 -0.005718534 -0.08132997 7.471917 -0.005718534 -0.1121653 7.471917 -0.005718534 -0.1535689 7.471917 -0.005718534 -0.2091628 7.471917 -0.005718534 -0.2838106 7.471917 -0.005718534 -0.3840425 7.471917 -0.005718534 -0.518627 7.471917 -0.005718534 -0.6993381 7.471917 -0.005718534 -0.9419845 7.471917 -0.005718534 -1.267794 7.471917 -0.005718534 -1.705268 7.471917 -0.005718534 -2.292679 7.471917 -0.005718534 -3.081414 7.471917 -0.005718534 -4.140474 7.471917 -0.005718534 -5.562508 7.471917 -0.005718534 -7.471917 7.471917 -0.005718534 -10.03574 7.471917 -0.005718534 -13.47828 7.471917 -0.005718534 -18.10068 7.471917 -0.005718534 -24.30731 7.471917 -0.005718534 -32.64117 7.471917 -0.005718534 -43.83129 7.471917 -0.005718534 -58.85664 7.471917 -0.005718534 --0.0175068 10.03574 -0.005718534 --0.01161267 10.03574 -0.005718534 --0.005718534 10.03574 -0.005718534 -0.0001755984 10.03574 -0.005718534 -0.006069731 10.03574 -0.005718534 -0.01197402 10.03574 -0.005718534 -0.01903886 10.03574 -0.005718534 -0.02852504 10.03574 -0.005718534 -0.04126244 10.03574 -0.005718534 -0.05836535 10.03574 -0.005718534 -0.08132997 10.03574 -0.005718534 -0.1121653 10.03574 -0.005718534 -0.1535689 10.03574 -0.005718534 -0.2091628 10.03574 -0.005718534 -0.2838106 10.03574 -0.005718534 -0.3840425 10.03574 -0.005718534 -0.518627 10.03574 -0.005718534 -0.6993381 10.03574 -0.005718534 -0.9419845 10.03574 -0.005718534 -1.267794 10.03574 -0.005718534 -1.705268 10.03574 -0.005718534 -2.292679 10.03574 -0.005718534 -3.081414 10.03574 -0.005718534 -4.140474 10.03574 -0.005718534 -5.562508 10.03574 -0.005718534 -7.471917 10.03574 -0.005718534 -10.03574 10.03574 -0.005718534 -13.47828 10.03574 -0.005718534 -18.10068 10.03574 -0.005718534 -24.30731 10.03574 -0.005718534 -32.64117 10.03574 -0.005718534 -43.83129 10.03574 -0.005718534 -58.85664 10.03574 -0.005718534 --0.0175068 13.47828 -0.005718534 --0.01161267 13.47828 -0.005718534 --0.005718534 13.47828 -0.005718534 -0.0001755984 13.47828 -0.005718534 -0.006069731 13.47828 -0.005718534 -0.01197402 13.47828 -0.005718534 -0.01903886 13.47828 -0.005718534 -0.02852504 13.47828 -0.005718534 -0.04126244 13.47828 -0.005718534 -0.05836535 13.47828 -0.005718534 -0.08132997 13.47828 -0.005718534 -0.1121653 13.47828 -0.005718534 -0.1535689 13.47828 -0.005718534 -0.2091628 13.47828 -0.005718534 -0.2838106 13.47828 -0.005718534 -0.3840425 13.47828 -0.005718534 -0.518627 13.47828 -0.005718534 -0.6993381 13.47828 -0.005718534 -0.9419845 13.47828 -0.005718534 -1.267794 13.47828 -0.005718534 -1.705268 13.47828 -0.005718534 -2.292679 13.47828 -0.005718534 -3.081414 13.47828 -0.005718534 -4.140474 13.47828 -0.005718534 -5.562508 13.47828 -0.005718534 -7.471917 13.47828 -0.005718534 -10.03574 13.47828 -0.005718534 -13.47828 13.47828 -0.005718534 -18.10068 13.47828 -0.005718534 -24.30731 13.47828 -0.005718534 -32.64117 13.47828 -0.005718534 -43.83129 13.47828 -0.005718534 -58.85664 13.47828 -0.005718534 --0.0175068 18.10068 -0.005718534 --0.01161267 18.10068 -0.005718534 --0.005718534 18.10068 -0.005718534 -0.0001755984 18.10068 -0.005718534 -0.006069731 18.10068 -0.005718534 -0.01197402 18.10068 -0.005718534 -0.01903886 18.10068 -0.005718534 -0.02852504 18.10068 -0.005718534 -0.04126244 18.10068 -0.005718534 -0.05836535 18.10068 -0.005718534 -0.08132997 18.10068 -0.005718534 -0.1121653 18.10068 -0.005718534 -0.1535689 18.10068 -0.005718534 -0.2091628 18.10068 -0.005718534 -0.2838106 18.10068 -0.005718534 -0.3840425 18.10068 -0.005718534 -0.518627 18.10068 -0.005718534 -0.6993381 18.10068 -0.005718534 -0.9419845 18.10068 -0.005718534 -1.267794 18.10068 -0.005718534 -1.705268 18.10068 -0.005718534 -2.292679 18.10068 -0.005718534 -3.081414 18.10068 -0.005718534 -4.140474 18.10068 -0.005718534 -5.562508 18.10068 -0.005718534 -7.471917 18.10068 -0.005718534 -10.03574 18.10068 -0.005718534 -13.47828 18.10068 -0.005718534 -18.10068 18.10068 -0.005718534 -24.30731 18.10068 -0.005718534 -32.64117 18.10068 -0.005718534 -43.83129 18.10068 -0.005718534 -58.85664 18.10068 -0.005718534 --0.0175068 24.30731 -0.005718534 --0.01161267 24.30731 -0.005718534 --0.005718534 24.30731 -0.005718534 -0.0001755984 24.30731 -0.005718534 -0.006069731 24.30731 -0.005718534 -0.01197402 24.30731 -0.005718534 -0.01903886 24.30731 -0.005718534 -0.02852504 24.30731 -0.005718534 -0.04126244 24.30731 -0.005718534 -0.05836535 24.30731 -0.005718534 -0.08132997 24.30731 -0.005718534 -0.1121653 24.30731 -0.005718534 -0.1535689 24.30731 -0.005718534 -0.2091628 24.30731 -0.005718534 -0.2838106 24.30731 -0.005718534 -0.3840425 24.30731 -0.005718534 -0.518627 24.30731 -0.005718534 -0.6993381 24.30731 -0.005718534 -0.9419845 24.30731 -0.005718534 -1.267794 24.30731 -0.005718534 -1.705268 24.30731 -0.005718534 -2.292679 24.30731 -0.005718534 -3.081414 24.30731 -0.005718534 -4.140474 24.30731 -0.005718534 -5.562508 24.30731 -0.005718534 -7.471917 24.30731 -0.005718534 -10.03574 24.30731 -0.005718534 -13.47828 24.30731 -0.005718534 -18.10068 24.30731 -0.005718534 -24.30731 24.30731 -0.005718534 -32.64117 24.30731 -0.005718534 -43.83129 24.30731 -0.005718534 -58.85664 24.30731 -0.005718534 --0.0175068 32.64117 -0.005718534 --0.01161267 32.64117 -0.005718534 --0.005718534 32.64117 -0.005718534 -0.0001755984 32.64117 -0.005718534 -0.006069731 32.64117 -0.005718534 -0.01197402 32.64117 -0.005718534 -0.01903886 32.64117 -0.005718534 -0.02852504 32.64117 -0.005718534 -0.04126244 32.64117 -0.005718534 -0.05836535 32.64117 -0.005718534 -0.08132997 32.64117 -0.005718534 -0.1121653 32.64117 -0.005718534 -0.1535689 32.64117 -0.005718534 -0.2091628 32.64117 -0.005718534 -0.2838106 32.64117 -0.005718534 -0.3840425 32.64117 -0.005718534 -0.518627 32.64117 -0.005718534 -0.6993381 32.64117 -0.005718534 -0.9419845 32.64117 -0.005718534 -1.267794 32.64117 -0.005718534 -1.705268 32.64117 -0.005718534 -2.292679 32.64117 -0.005718534 -3.081414 32.64117 -0.005718534 -4.140474 32.64117 -0.005718534 -5.562508 32.64117 -0.005718534 -7.471917 32.64117 -0.005718534 -10.03574 32.64117 -0.005718534 -13.47828 32.64117 -0.005718534 -18.10068 32.64117 -0.005718534 -24.30731 32.64117 -0.005718534 -32.64117 32.64117 -0.005718534 -43.83129 32.64117 -0.005718534 -58.85664 32.64117 -0.005718534 --0.0175068 43.83129 -0.005718534 --0.01161267 43.83129 -0.005718534 --0.005718534 43.83129 -0.005718534 -0.0001755984 43.83129 -0.005718534 -0.006069731 43.83129 -0.005718534 -0.01197402 43.83129 -0.005718534 -0.01903886 43.83129 -0.005718534 -0.02852504 43.83129 -0.005718534 -0.04126244 43.83129 -0.005718534 -0.05836535 43.83129 -0.005718534 -0.08132997 43.83129 -0.005718534 -0.1121653 43.83129 -0.005718534 -0.1535689 43.83129 -0.005718534 -0.2091628 43.83129 -0.005718534 -0.2838106 43.83129 -0.005718534 -0.3840425 43.83129 -0.005718534 -0.518627 43.83129 -0.005718534 -0.6993381 43.83129 -0.005718534 -0.9419845 43.83129 -0.005718534 -1.267794 43.83129 -0.005718534 -1.705268 43.83129 -0.005718534 -2.292679 43.83129 -0.005718534 -3.081414 43.83129 -0.005718534 -4.140474 43.83129 -0.005718534 -5.562508 43.83129 -0.005718534 -7.471917 43.83129 -0.005718534 -10.03574 43.83129 -0.005718534 -13.47828 43.83129 -0.005718534 -18.10068 43.83129 -0.005718534 -24.30731 43.83129 -0.005718534 -32.64117 43.83129 -0.005718534 -43.83129 43.83129 -0.005718534 -58.85664 43.83129 -0.005718534 --0.0175068 58.85664 -0.005718534 --0.01161267 58.85664 -0.005718534 --0.005718534 58.85664 -0.005718534 -0.0001755984 58.85664 -0.005718534 -0.006069731 58.85664 -0.005718534 -0.01197402 58.85664 -0.005718534 -0.01903886 58.85664 -0.005718534 -0.02852504 58.85664 -0.005718534 -0.04126244 58.85664 -0.005718534 -0.05836535 58.85664 -0.005718534 -0.08132997 58.85664 -0.005718534 -0.1121653 58.85664 -0.005718534 -0.1535689 58.85664 -0.005718534 -0.2091628 58.85664 -0.005718534 -0.2838106 58.85664 -0.005718534 -0.3840425 58.85664 -0.005718534 -0.518627 58.85664 -0.005718534 -0.6993381 58.85664 -0.005718534 -0.9419845 58.85664 -0.005718534 -1.267794 58.85664 -0.005718534 -1.705268 58.85664 -0.005718534 -2.292679 58.85664 -0.005718534 -3.081414 58.85664 -0.005718534 -4.140474 58.85664 -0.005718534 -5.562508 58.85664 -0.005718534 -7.471917 58.85664 -0.005718534 -10.03574 58.85664 -0.005718534 -13.47828 58.85664 -0.005718534 -18.10068 58.85664 -0.005718534 -24.30731 58.85664 -0.005718534 -32.64117 58.85664 -0.005718534 -43.83129 58.85664 -0.005718534 -58.85664 58.85664 -0.005718534 --0.0175068 -0.0175068 0.0001755984 --0.01161267 -0.0175068 0.0001755984 --0.005718534 -0.0175068 0.0001755984 -0.0001755984 -0.0175068 0.0001755984 -0.006069731 -0.0175068 0.0001755984 -0.01197402 -0.0175068 0.0001755984 -0.01903886 -0.0175068 0.0001755984 -0.02852504 -0.0175068 0.0001755984 -0.04126244 -0.0175068 0.0001755984 -0.05836535 -0.0175068 0.0001755984 -0.08132997 -0.0175068 0.0001755984 -0.1121653 -0.0175068 0.0001755984 -0.1535689 -0.0175068 0.0001755984 -0.2091628 -0.0175068 0.0001755984 -0.2838106 -0.0175068 0.0001755984 -0.3840425 -0.0175068 0.0001755984 -0.518627 -0.0175068 0.0001755984 -0.6993381 -0.0175068 0.0001755984 -0.9419845 -0.0175068 0.0001755984 -1.267794 -0.0175068 0.0001755984 -1.705268 -0.0175068 0.0001755984 -2.292679 -0.0175068 0.0001755984 -3.081414 -0.0175068 0.0001755984 -4.140474 -0.0175068 0.0001755984 -5.562508 -0.0175068 0.0001755984 -7.471917 -0.0175068 0.0001755984 -10.03574 -0.0175068 0.0001755984 -13.47828 -0.0175068 0.0001755984 -18.10068 -0.0175068 0.0001755984 -24.30731 -0.0175068 0.0001755984 -32.64117 -0.0175068 0.0001755984 -43.83129 -0.0175068 0.0001755984 -58.85664 -0.0175068 0.0001755984 --0.0175068 -0.01161267 0.0001755984 --0.01161267 -0.01161267 0.0001755984 --0.005718534 -0.01161267 0.0001755984 -0.0001755984 -0.01161267 0.0001755984 -0.006069731 -0.01161267 0.0001755984 -0.01197402 -0.01161267 0.0001755984 -0.01903886 -0.01161267 0.0001755984 -0.02852504 -0.01161267 0.0001755984 -0.04126244 -0.01161267 0.0001755984 -0.05836535 -0.01161267 0.0001755984 -0.08132997 -0.01161267 0.0001755984 -0.1121653 -0.01161267 0.0001755984 -0.1535689 -0.01161267 0.0001755984 -0.2091628 -0.01161267 0.0001755984 -0.2838106 -0.01161267 0.0001755984 -0.3840425 -0.01161267 0.0001755984 -0.518627 -0.01161267 0.0001755984 -0.6993381 -0.01161267 0.0001755984 -0.9419845 -0.01161267 0.0001755984 -1.267794 -0.01161267 0.0001755984 -1.705268 -0.01161267 0.0001755984 -2.292679 -0.01161267 0.0001755984 -3.081414 -0.01161267 0.0001755984 -4.140474 -0.01161267 0.0001755984 -5.562508 -0.01161267 0.0001755984 -7.471917 -0.01161267 0.0001755984 -10.03574 -0.01161267 0.0001755984 -13.47828 -0.01161267 0.0001755984 -18.10068 -0.01161267 0.0001755984 -24.30731 -0.01161267 0.0001755984 -32.64117 -0.01161267 0.0001755984 -43.83129 -0.01161267 0.0001755984 -58.85664 -0.01161267 0.0001755984 --0.0175068 -0.005718534 0.0001755984 --0.01161267 -0.005718534 0.0001755984 --0.005718534 -0.005718534 0.0001755984 -0.0001755984 -0.005718534 0.0001755984 -0.006069731 -0.005718534 0.0001755984 -0.01197402 -0.005718534 0.0001755984 -0.01903886 -0.005718534 0.0001755984 -0.02852504 -0.005718534 0.0001755984 -0.04126244 -0.005718534 0.0001755984 -0.05836535 -0.005718534 0.0001755984 -0.08132997 -0.005718534 0.0001755984 -0.1121653 -0.005718534 0.0001755984 -0.1535689 -0.005718534 0.0001755984 -0.2091628 -0.005718534 0.0001755984 -0.2838106 -0.005718534 0.0001755984 -0.3840425 -0.005718534 0.0001755984 -0.518627 -0.005718534 0.0001755984 -0.6993381 -0.005718534 0.0001755984 -0.9419845 -0.005718534 0.0001755984 -1.267794 -0.005718534 0.0001755984 -1.705268 -0.005718534 0.0001755984 -2.292679 -0.005718534 0.0001755984 -3.081414 -0.005718534 0.0001755984 -4.140474 -0.005718534 0.0001755984 -5.562508 -0.005718534 0.0001755984 -7.471917 -0.005718534 0.0001755984 -10.03574 -0.005718534 0.0001755984 -13.47828 -0.005718534 0.0001755984 -18.10068 -0.005718534 0.0001755984 -24.30731 -0.005718534 0.0001755984 -32.64117 -0.005718534 0.0001755984 -43.83129 -0.005718534 0.0001755984 -58.85664 -0.005718534 0.0001755984 --0.0175068 0.0001755984 0.0001755984 --0.01161267 0.0001755984 0.0001755984 --0.005718534 0.0001755984 0.0001755984 -0.0001755984 0.0001755984 0.0001755984 -0.006069731 0.0001755984 0.0001755984 -0.01197402 0.0001755984 0.0001755984 -0.01903886 0.0001755984 0.0001755984 -0.02852504 0.0001755984 0.0001755984 -0.04126244 0.0001755984 0.0001755984 -0.05836535 0.0001755984 0.0001755984 -0.08132997 0.0001755984 0.0001755984 -0.1121653 0.0001755984 0.0001755984 -0.1535689 0.0001755984 0.0001755984 -0.2091628 0.0001755984 0.0001755984 -0.2838106 0.0001755984 0.0001755984 -0.3840425 0.0001755984 0.0001755984 -0.518627 0.0001755984 0.0001755984 -0.6993381 0.0001755984 0.0001755984 -0.9419845 0.0001755984 0.0001755984 -1.267794 0.0001755984 0.0001755984 -1.705268 0.0001755984 0.0001755984 -2.292679 0.0001755984 0.0001755984 -3.081414 0.0001755984 0.0001755984 -4.140474 0.0001755984 0.0001755984 -5.562508 0.0001755984 0.0001755984 -7.471917 0.0001755984 0.0001755984 -10.03574 0.0001755984 0.0001755984 -13.47828 0.0001755984 0.0001755984 -18.10068 0.0001755984 0.0001755984 -24.30731 0.0001755984 0.0001755984 -32.64117 0.0001755984 0.0001755984 -43.83129 0.0001755984 0.0001755984 -58.85664 0.0001755984 0.0001755984 --0.0175068 0.006069731 0.0001755984 --0.01161267 0.006069731 0.0001755984 --0.005718534 0.006069731 0.0001755984 -0.0001755984 0.006069731 0.0001755984 -0.006069731 0.006069731 0.0001755984 -0.01197402 0.006069731 0.0001755984 -0.01903886 0.006069731 0.0001755984 -0.02852504 0.006069731 0.0001755984 -0.04126244 0.006069731 0.0001755984 -0.05836535 0.006069731 0.0001755984 -0.08132997 0.006069731 0.0001755984 -0.1121653 0.006069731 0.0001755984 -0.1535689 0.006069731 0.0001755984 -0.2091628 0.006069731 0.0001755984 -0.2838106 0.006069731 0.0001755984 -0.3840425 0.006069731 0.0001755984 -0.518627 0.006069731 0.0001755984 -0.6993381 0.006069731 0.0001755984 -0.9419845 0.006069731 0.0001755984 -1.267794 0.006069731 0.0001755984 -1.705268 0.006069731 0.0001755984 -2.292679 0.006069731 0.0001755984 -3.081414 0.006069731 0.0001755984 -4.140474 0.006069731 0.0001755984 -5.562508 0.006069731 0.0001755984 -7.471917 0.006069731 0.0001755984 -10.03574 0.006069731 0.0001755984 -13.47828 0.006069731 0.0001755984 -18.10068 0.006069731 0.0001755984 -24.30731 0.006069731 0.0001755984 -32.64117 0.006069731 0.0001755984 -43.83129 0.006069731 0.0001755984 -58.85664 0.006069731 0.0001755984 --0.0175068 0.01197402 0.0001755984 --0.01161267 0.01197402 0.0001755984 --0.005718534 0.01197402 0.0001755984 -0.0001755984 0.01197402 0.0001755984 -0.006069731 0.01197402 0.0001755984 -0.01197402 0.01197402 0.0001755984 -0.01903886 0.01197402 0.0001755984 -0.02852504 0.01197402 0.0001755984 -0.04126244 0.01197402 0.0001755984 -0.05836535 0.01197402 0.0001755984 -0.08132997 0.01197402 0.0001755984 -0.1121653 0.01197402 0.0001755984 -0.1535689 0.01197402 0.0001755984 -0.2091628 0.01197402 0.0001755984 -0.2838106 0.01197402 0.0001755984 -0.3840425 0.01197402 0.0001755984 -0.518627 0.01197402 0.0001755984 -0.6993381 0.01197402 0.0001755984 -0.9419845 0.01197402 0.0001755984 -1.267794 0.01197402 0.0001755984 -1.705268 0.01197402 0.0001755984 -2.292679 0.01197402 0.0001755984 -3.081414 0.01197402 0.0001755984 -4.140474 0.01197402 0.0001755984 -5.562508 0.01197402 0.0001755984 -7.471917 0.01197402 0.0001755984 -10.03574 0.01197402 0.0001755984 -13.47828 0.01197402 0.0001755984 -18.10068 0.01197402 0.0001755984 -24.30731 0.01197402 0.0001755984 -32.64117 0.01197402 0.0001755984 -43.83129 0.01197402 0.0001755984 -58.85664 0.01197402 0.0001755984 --0.0175068 0.01903886 0.0001755984 --0.01161267 0.01903886 0.0001755984 --0.005718534 0.01903886 0.0001755984 -0.0001755984 0.01903886 0.0001755984 -0.006069731 0.01903886 0.0001755984 -0.01197402 0.01903886 0.0001755984 -0.01903886 0.01903886 0.0001755984 -0.02852504 0.01903886 0.0001755984 -0.04126244 0.01903886 0.0001755984 -0.05836535 0.01903886 0.0001755984 -0.08132997 0.01903886 0.0001755984 -0.1121653 0.01903886 0.0001755984 -0.1535689 0.01903886 0.0001755984 -0.2091628 0.01903886 0.0001755984 -0.2838106 0.01903886 0.0001755984 -0.3840425 0.01903886 0.0001755984 -0.518627 0.01903886 0.0001755984 -0.6993381 0.01903886 0.0001755984 -0.9419845 0.01903886 0.0001755984 -1.267794 0.01903886 0.0001755984 -1.705268 0.01903886 0.0001755984 -2.292679 0.01903886 0.0001755984 -3.081414 0.01903886 0.0001755984 -4.140474 0.01903886 0.0001755984 -5.562508 0.01903886 0.0001755984 -7.471917 0.01903886 0.0001755984 -10.03574 0.01903886 0.0001755984 -13.47828 0.01903886 0.0001755984 -18.10068 0.01903886 0.0001755984 -24.30731 0.01903886 0.0001755984 -32.64117 0.01903886 0.0001755984 -43.83129 0.01903886 0.0001755984 -58.85664 0.01903886 0.0001755984 --0.0175068 0.02852504 0.0001755984 --0.01161267 0.02852504 0.0001755984 --0.005718534 0.02852504 0.0001755984 -0.0001755984 0.02852504 0.0001755984 -0.006069731 0.02852504 0.0001755984 -0.01197402 0.02852504 0.0001755984 -0.01903886 0.02852504 0.0001755984 -0.02852504 0.02852504 0.0001755984 -0.04126244 0.02852504 0.0001755984 -0.05836535 0.02852504 0.0001755984 -0.08132997 0.02852504 0.0001755984 -0.1121653 0.02852504 0.0001755984 -0.1535689 0.02852504 0.0001755984 -0.2091628 0.02852504 0.0001755984 -0.2838106 0.02852504 0.0001755984 -0.3840425 0.02852504 0.0001755984 -0.518627 0.02852504 0.0001755984 -0.6993381 0.02852504 0.0001755984 -0.9419845 0.02852504 0.0001755984 -1.267794 0.02852504 0.0001755984 -1.705268 0.02852504 0.0001755984 -2.292679 0.02852504 0.0001755984 -3.081414 0.02852504 0.0001755984 -4.140474 0.02852504 0.0001755984 -5.562508 0.02852504 0.0001755984 -7.471917 0.02852504 0.0001755984 -10.03574 0.02852504 0.0001755984 -13.47828 0.02852504 0.0001755984 -18.10068 0.02852504 0.0001755984 -24.30731 0.02852504 0.0001755984 -32.64117 0.02852504 0.0001755984 -43.83129 0.02852504 0.0001755984 -58.85664 0.02852504 0.0001755984 --0.0175068 0.04126244 0.0001755984 --0.01161267 0.04126244 0.0001755984 --0.005718534 0.04126244 0.0001755984 -0.0001755984 0.04126244 0.0001755984 -0.006069731 0.04126244 0.0001755984 -0.01197402 0.04126244 0.0001755984 -0.01903886 0.04126244 0.0001755984 -0.02852504 0.04126244 0.0001755984 -0.04126244 0.04126244 0.0001755984 -0.05836535 0.04126244 0.0001755984 -0.08132997 0.04126244 0.0001755984 -0.1121653 0.04126244 0.0001755984 -0.1535689 0.04126244 0.0001755984 -0.2091628 0.04126244 0.0001755984 -0.2838106 0.04126244 0.0001755984 -0.3840425 0.04126244 0.0001755984 -0.518627 0.04126244 0.0001755984 -0.6993381 0.04126244 0.0001755984 -0.9419845 0.04126244 0.0001755984 -1.267794 0.04126244 0.0001755984 -1.705268 0.04126244 0.0001755984 -2.292679 0.04126244 0.0001755984 -3.081414 0.04126244 0.0001755984 -4.140474 0.04126244 0.0001755984 -5.562508 0.04126244 0.0001755984 -7.471917 0.04126244 0.0001755984 -10.03574 0.04126244 0.0001755984 -13.47828 0.04126244 0.0001755984 -18.10068 0.04126244 0.0001755984 -24.30731 0.04126244 0.0001755984 -32.64117 0.04126244 0.0001755984 -43.83129 0.04126244 0.0001755984 -58.85664 0.04126244 0.0001755984 --0.0175068 0.05836535 0.0001755984 --0.01161267 0.05836535 0.0001755984 --0.005718534 0.05836535 0.0001755984 -0.0001755984 0.05836535 0.0001755984 -0.006069731 0.05836535 0.0001755984 -0.01197402 0.05836535 0.0001755984 -0.01903886 0.05836535 0.0001755984 -0.02852504 0.05836535 0.0001755984 -0.04126244 0.05836535 0.0001755984 -0.05836535 0.05836535 0.0001755984 -0.08132997 0.05836535 0.0001755984 -0.1121653 0.05836535 0.0001755984 -0.1535689 0.05836535 0.0001755984 -0.2091628 0.05836535 0.0001755984 -0.2838106 0.05836535 0.0001755984 -0.3840425 0.05836535 0.0001755984 -0.518627 0.05836535 0.0001755984 -0.6993381 0.05836535 0.0001755984 -0.9419845 0.05836535 0.0001755984 -1.267794 0.05836535 0.0001755984 -1.705268 0.05836535 0.0001755984 -2.292679 0.05836535 0.0001755984 -3.081414 0.05836535 0.0001755984 -4.140474 0.05836535 0.0001755984 -5.562508 0.05836535 0.0001755984 -7.471917 0.05836535 0.0001755984 -10.03574 0.05836535 0.0001755984 -13.47828 0.05836535 0.0001755984 -18.10068 0.05836535 0.0001755984 -24.30731 0.05836535 0.0001755984 -32.64117 0.05836535 0.0001755984 -43.83129 0.05836535 0.0001755984 -58.85664 0.05836535 0.0001755984 --0.0175068 0.08132997 0.0001755984 --0.01161267 0.08132997 0.0001755984 --0.005718534 0.08132997 0.0001755984 -0.0001755984 0.08132997 0.0001755984 -0.006069731 0.08132997 0.0001755984 -0.01197402 0.08132997 0.0001755984 -0.01903886 0.08132997 0.0001755984 -0.02852504 0.08132997 0.0001755984 -0.04126244 0.08132997 0.0001755984 -0.05836535 0.08132997 0.0001755984 -0.08132997 0.08132997 0.0001755984 -0.1121653 0.08132997 0.0001755984 -0.1535689 0.08132997 0.0001755984 -0.2091628 0.08132997 0.0001755984 -0.2838106 0.08132997 0.0001755984 -0.3840425 0.08132997 0.0001755984 -0.518627 0.08132997 0.0001755984 -0.6993381 0.08132997 0.0001755984 -0.9419845 0.08132997 0.0001755984 -1.267794 0.08132997 0.0001755984 -1.705268 0.08132997 0.0001755984 -2.292679 0.08132997 0.0001755984 -3.081414 0.08132997 0.0001755984 -4.140474 0.08132997 0.0001755984 -5.562508 0.08132997 0.0001755984 -7.471917 0.08132997 0.0001755984 -10.03574 0.08132997 0.0001755984 -13.47828 0.08132997 0.0001755984 -18.10068 0.08132997 0.0001755984 -24.30731 0.08132997 0.0001755984 -32.64117 0.08132997 0.0001755984 -43.83129 0.08132997 0.0001755984 -58.85664 0.08132997 0.0001755984 --0.0175068 0.1121653 0.0001755984 --0.01161267 0.1121653 0.0001755984 --0.005718534 0.1121653 0.0001755984 -0.0001755984 0.1121653 0.0001755984 -0.006069731 0.1121653 0.0001755984 -0.01197402 0.1121653 0.0001755984 -0.01903886 0.1121653 0.0001755984 -0.02852504 0.1121653 0.0001755984 -0.04126244 0.1121653 0.0001755984 -0.05836535 0.1121653 0.0001755984 -0.08132997 0.1121653 0.0001755984 -0.1121653 0.1121653 0.0001755984 -0.1535689 0.1121653 0.0001755984 -0.2091628 0.1121653 0.0001755984 -0.2838106 0.1121653 0.0001755984 -0.3840425 0.1121653 0.0001755984 -0.518627 0.1121653 0.0001755984 -0.6993381 0.1121653 0.0001755984 -0.9419845 0.1121653 0.0001755984 -1.267794 0.1121653 0.0001755984 -1.705268 0.1121653 0.0001755984 -2.292679 0.1121653 0.0001755984 -3.081414 0.1121653 0.0001755984 -4.140474 0.1121653 0.0001755984 -5.562508 0.1121653 0.0001755984 -7.471917 0.1121653 0.0001755984 -10.03574 0.1121653 0.0001755984 -13.47828 0.1121653 0.0001755984 -18.10068 0.1121653 0.0001755984 -24.30731 0.1121653 0.0001755984 -32.64117 0.1121653 0.0001755984 -43.83129 0.1121653 0.0001755984 -58.85664 0.1121653 0.0001755984 --0.0175068 0.1535689 0.0001755984 --0.01161267 0.1535689 0.0001755984 --0.005718534 0.1535689 0.0001755984 -0.0001755984 0.1535689 0.0001755984 -0.006069731 0.1535689 0.0001755984 -0.01197402 0.1535689 0.0001755984 -0.01903886 0.1535689 0.0001755984 -0.02852504 0.1535689 0.0001755984 -0.04126244 0.1535689 0.0001755984 -0.05836535 0.1535689 0.0001755984 -0.08132997 0.1535689 0.0001755984 -0.1121653 0.1535689 0.0001755984 -0.1535689 0.1535689 0.0001755984 -0.2091628 0.1535689 0.0001755984 -0.2838106 0.1535689 0.0001755984 -0.3840425 0.1535689 0.0001755984 -0.518627 0.1535689 0.0001755984 -0.6993381 0.1535689 0.0001755984 -0.9419845 0.1535689 0.0001755984 -1.267794 0.1535689 0.0001755984 -1.705268 0.1535689 0.0001755984 -2.292679 0.1535689 0.0001755984 -3.081414 0.1535689 0.0001755984 -4.140474 0.1535689 0.0001755984 -5.562508 0.1535689 0.0001755984 -7.471917 0.1535689 0.0001755984 -10.03574 0.1535689 0.0001755984 -13.47828 0.1535689 0.0001755984 -18.10068 0.1535689 0.0001755984 -24.30731 0.1535689 0.0001755984 -32.64117 0.1535689 0.0001755984 -43.83129 0.1535689 0.0001755984 -58.85664 0.1535689 0.0001755984 --0.0175068 0.2091628 0.0001755984 --0.01161267 0.2091628 0.0001755984 --0.005718534 0.2091628 0.0001755984 -0.0001755984 0.2091628 0.0001755984 -0.006069731 0.2091628 0.0001755984 -0.01197402 0.2091628 0.0001755984 -0.01903886 0.2091628 0.0001755984 -0.02852504 0.2091628 0.0001755984 -0.04126244 0.2091628 0.0001755984 -0.05836535 0.2091628 0.0001755984 -0.08132997 0.2091628 0.0001755984 -0.1121653 0.2091628 0.0001755984 -0.1535689 0.2091628 0.0001755984 -0.2091628 0.2091628 0.0001755984 -0.2838106 0.2091628 0.0001755984 -0.3840425 0.2091628 0.0001755984 -0.518627 0.2091628 0.0001755984 -0.6993381 0.2091628 0.0001755984 -0.9419845 0.2091628 0.0001755984 -1.267794 0.2091628 0.0001755984 -1.705268 0.2091628 0.0001755984 -2.292679 0.2091628 0.0001755984 -3.081414 0.2091628 0.0001755984 -4.140474 0.2091628 0.0001755984 -5.562508 0.2091628 0.0001755984 -7.471917 0.2091628 0.0001755984 -10.03574 0.2091628 0.0001755984 -13.47828 0.2091628 0.0001755984 -18.10068 0.2091628 0.0001755984 -24.30731 0.2091628 0.0001755984 -32.64117 0.2091628 0.0001755984 -43.83129 0.2091628 0.0001755984 -58.85664 0.2091628 0.0001755984 --0.0175068 0.2838106 0.0001755984 --0.01161267 0.2838106 0.0001755984 --0.005718534 0.2838106 0.0001755984 -0.0001755984 0.2838106 0.0001755984 -0.006069731 0.2838106 0.0001755984 -0.01197402 0.2838106 0.0001755984 -0.01903886 0.2838106 0.0001755984 -0.02852504 0.2838106 0.0001755984 -0.04126244 0.2838106 0.0001755984 -0.05836535 0.2838106 0.0001755984 -0.08132997 0.2838106 0.0001755984 -0.1121653 0.2838106 0.0001755984 -0.1535689 0.2838106 0.0001755984 -0.2091628 0.2838106 0.0001755984 -0.2838106 0.2838106 0.0001755984 -0.3840425 0.2838106 0.0001755984 -0.518627 0.2838106 0.0001755984 -0.6993381 0.2838106 0.0001755984 -0.9419845 0.2838106 0.0001755984 -1.267794 0.2838106 0.0001755984 -1.705268 0.2838106 0.0001755984 -2.292679 0.2838106 0.0001755984 -3.081414 0.2838106 0.0001755984 -4.140474 0.2838106 0.0001755984 -5.562508 0.2838106 0.0001755984 -7.471917 0.2838106 0.0001755984 -10.03574 0.2838106 0.0001755984 -13.47828 0.2838106 0.0001755984 -18.10068 0.2838106 0.0001755984 -24.30731 0.2838106 0.0001755984 -32.64117 0.2838106 0.0001755984 -43.83129 0.2838106 0.0001755984 -58.85664 0.2838106 0.0001755984 --0.0175068 0.3840425 0.0001755984 --0.01161267 0.3840425 0.0001755984 --0.005718534 0.3840425 0.0001755984 -0.0001755984 0.3840425 0.0001755984 -0.006069731 0.3840425 0.0001755984 -0.01197402 0.3840425 0.0001755984 -0.01903886 0.3840425 0.0001755984 -0.02852504 0.3840425 0.0001755984 -0.04126244 0.3840425 0.0001755984 -0.05836535 0.3840425 0.0001755984 -0.08132997 0.3840425 0.0001755984 -0.1121653 0.3840425 0.0001755984 -0.1535689 0.3840425 0.0001755984 -0.2091628 0.3840425 0.0001755984 -0.2838106 0.3840425 0.0001755984 -0.3840425 0.3840425 0.0001755984 -0.518627 0.3840425 0.0001755984 -0.6993381 0.3840425 0.0001755984 -0.9419845 0.3840425 0.0001755984 -1.267794 0.3840425 0.0001755984 -1.705268 0.3840425 0.0001755984 -2.292679 0.3840425 0.0001755984 -3.081414 0.3840425 0.0001755984 -4.140474 0.3840425 0.0001755984 -5.562508 0.3840425 0.0001755984 -7.471917 0.3840425 0.0001755984 -10.03574 0.3840425 0.0001755984 -13.47828 0.3840425 0.0001755984 -18.10068 0.3840425 0.0001755984 -24.30731 0.3840425 0.0001755984 -32.64117 0.3840425 0.0001755984 -43.83129 0.3840425 0.0001755984 -58.85664 0.3840425 0.0001755984 --0.0175068 0.518627 0.0001755984 --0.01161267 0.518627 0.0001755984 --0.005718534 0.518627 0.0001755984 -0.0001755984 0.518627 0.0001755984 -0.006069731 0.518627 0.0001755984 -0.01197402 0.518627 0.0001755984 -0.01903886 0.518627 0.0001755984 -0.02852504 0.518627 0.0001755984 -0.04126244 0.518627 0.0001755984 -0.05836535 0.518627 0.0001755984 -0.08132997 0.518627 0.0001755984 -0.1121653 0.518627 0.0001755984 -0.1535689 0.518627 0.0001755984 -0.2091628 0.518627 0.0001755984 -0.2838106 0.518627 0.0001755984 -0.3840425 0.518627 0.0001755984 -0.518627 0.518627 0.0001755984 -0.6993381 0.518627 0.0001755984 -0.9419845 0.518627 0.0001755984 -1.267794 0.518627 0.0001755984 -1.705268 0.518627 0.0001755984 -2.292679 0.518627 0.0001755984 -3.081414 0.518627 0.0001755984 -4.140474 0.518627 0.0001755984 -5.562508 0.518627 0.0001755984 -7.471917 0.518627 0.0001755984 -10.03574 0.518627 0.0001755984 -13.47828 0.518627 0.0001755984 -18.10068 0.518627 0.0001755984 -24.30731 0.518627 0.0001755984 -32.64117 0.518627 0.0001755984 -43.83129 0.518627 0.0001755984 -58.85664 0.518627 0.0001755984 --0.0175068 0.6993381 0.0001755984 --0.01161267 0.6993381 0.0001755984 --0.005718534 0.6993381 0.0001755984 -0.0001755984 0.6993381 0.0001755984 -0.006069731 0.6993381 0.0001755984 -0.01197402 0.6993381 0.0001755984 -0.01903886 0.6993381 0.0001755984 -0.02852504 0.6993381 0.0001755984 -0.04126244 0.6993381 0.0001755984 -0.05836535 0.6993381 0.0001755984 -0.08132997 0.6993381 0.0001755984 -0.1121653 0.6993381 0.0001755984 -0.1535689 0.6993381 0.0001755984 -0.2091628 0.6993381 0.0001755984 -0.2838106 0.6993381 0.0001755984 -0.3840425 0.6993381 0.0001755984 -0.518627 0.6993381 0.0001755984 -0.6993381 0.6993381 0.0001755984 -0.9419845 0.6993381 0.0001755984 -1.267794 0.6993381 0.0001755984 -1.705268 0.6993381 0.0001755984 -2.292679 0.6993381 0.0001755984 -3.081414 0.6993381 0.0001755984 -4.140474 0.6993381 0.0001755984 -5.562508 0.6993381 0.0001755984 -7.471917 0.6993381 0.0001755984 -10.03574 0.6993381 0.0001755984 -13.47828 0.6993381 0.0001755984 -18.10068 0.6993381 0.0001755984 -24.30731 0.6993381 0.0001755984 -32.64117 0.6993381 0.0001755984 -43.83129 0.6993381 0.0001755984 -58.85664 0.6993381 0.0001755984 --0.0175068 0.9419845 0.0001755984 --0.01161267 0.9419845 0.0001755984 --0.005718534 0.9419845 0.0001755984 -0.0001755984 0.9419845 0.0001755984 -0.006069731 0.9419845 0.0001755984 -0.01197402 0.9419845 0.0001755984 -0.01903886 0.9419845 0.0001755984 -0.02852504 0.9419845 0.0001755984 -0.04126244 0.9419845 0.0001755984 -0.05836535 0.9419845 0.0001755984 -0.08132997 0.9419845 0.0001755984 -0.1121653 0.9419845 0.0001755984 -0.1535689 0.9419845 0.0001755984 -0.2091628 0.9419845 0.0001755984 -0.2838106 0.9419845 0.0001755984 -0.3840425 0.9419845 0.0001755984 -0.518627 0.9419845 0.0001755984 -0.6993381 0.9419845 0.0001755984 -0.9419845 0.9419845 0.0001755984 -1.267794 0.9419845 0.0001755984 -1.705268 0.9419845 0.0001755984 -2.292679 0.9419845 0.0001755984 -3.081414 0.9419845 0.0001755984 -4.140474 0.9419845 0.0001755984 -5.562508 0.9419845 0.0001755984 -7.471917 0.9419845 0.0001755984 -10.03574 0.9419845 0.0001755984 -13.47828 0.9419845 0.0001755984 -18.10068 0.9419845 0.0001755984 -24.30731 0.9419845 0.0001755984 -32.64117 0.9419845 0.0001755984 -43.83129 0.9419845 0.0001755984 -58.85664 0.9419845 0.0001755984 --0.0175068 1.267794 0.0001755984 --0.01161267 1.267794 0.0001755984 --0.005718534 1.267794 0.0001755984 -0.0001755984 1.267794 0.0001755984 -0.006069731 1.267794 0.0001755984 -0.01197402 1.267794 0.0001755984 -0.01903886 1.267794 0.0001755984 -0.02852504 1.267794 0.0001755984 -0.04126244 1.267794 0.0001755984 -0.05836535 1.267794 0.0001755984 -0.08132997 1.267794 0.0001755984 -0.1121653 1.267794 0.0001755984 -0.1535689 1.267794 0.0001755984 -0.2091628 1.267794 0.0001755984 -0.2838106 1.267794 0.0001755984 -0.3840425 1.267794 0.0001755984 -0.518627 1.267794 0.0001755984 -0.6993381 1.267794 0.0001755984 -0.9419845 1.267794 0.0001755984 -1.267794 1.267794 0.0001755984 -1.705268 1.267794 0.0001755984 -2.292679 1.267794 0.0001755984 -3.081414 1.267794 0.0001755984 -4.140474 1.267794 0.0001755984 -5.562508 1.267794 0.0001755984 -7.471917 1.267794 0.0001755984 -10.03574 1.267794 0.0001755984 -13.47828 1.267794 0.0001755984 -18.10068 1.267794 0.0001755984 -24.30731 1.267794 0.0001755984 -32.64117 1.267794 0.0001755984 -43.83129 1.267794 0.0001755984 -58.85664 1.267794 0.0001755984 --0.0175068 1.705268 0.0001755984 --0.01161267 1.705268 0.0001755984 --0.005718534 1.705268 0.0001755984 -0.0001755984 1.705268 0.0001755984 -0.006069731 1.705268 0.0001755984 -0.01197402 1.705268 0.0001755984 -0.01903886 1.705268 0.0001755984 -0.02852504 1.705268 0.0001755984 -0.04126244 1.705268 0.0001755984 -0.05836535 1.705268 0.0001755984 -0.08132997 1.705268 0.0001755984 -0.1121653 1.705268 0.0001755984 -0.1535689 1.705268 0.0001755984 -0.2091628 1.705268 0.0001755984 -0.2838106 1.705268 0.0001755984 -0.3840425 1.705268 0.0001755984 -0.518627 1.705268 0.0001755984 -0.6993381 1.705268 0.0001755984 -0.9419845 1.705268 0.0001755984 -1.267794 1.705268 0.0001755984 -1.705268 1.705268 0.0001755984 -2.292679 1.705268 0.0001755984 -3.081414 1.705268 0.0001755984 -4.140474 1.705268 0.0001755984 -5.562508 1.705268 0.0001755984 -7.471917 1.705268 0.0001755984 -10.03574 1.705268 0.0001755984 -13.47828 1.705268 0.0001755984 -18.10068 1.705268 0.0001755984 -24.30731 1.705268 0.0001755984 -32.64117 1.705268 0.0001755984 -43.83129 1.705268 0.0001755984 -58.85664 1.705268 0.0001755984 --0.0175068 2.292679 0.0001755984 --0.01161267 2.292679 0.0001755984 --0.005718534 2.292679 0.0001755984 -0.0001755984 2.292679 0.0001755984 -0.006069731 2.292679 0.0001755984 -0.01197402 2.292679 0.0001755984 -0.01903886 2.292679 0.0001755984 -0.02852504 2.292679 0.0001755984 -0.04126244 2.292679 0.0001755984 -0.05836535 2.292679 0.0001755984 -0.08132997 2.292679 0.0001755984 -0.1121653 2.292679 0.0001755984 -0.1535689 2.292679 0.0001755984 -0.2091628 2.292679 0.0001755984 -0.2838106 2.292679 0.0001755984 -0.3840425 2.292679 0.0001755984 -0.518627 2.292679 0.0001755984 -0.6993381 2.292679 0.0001755984 -0.9419845 2.292679 0.0001755984 -1.267794 2.292679 0.0001755984 -1.705268 2.292679 0.0001755984 -2.292679 2.292679 0.0001755984 -3.081414 2.292679 0.0001755984 -4.140474 2.292679 0.0001755984 -5.562508 2.292679 0.0001755984 -7.471917 2.292679 0.0001755984 -10.03574 2.292679 0.0001755984 -13.47828 2.292679 0.0001755984 -18.10068 2.292679 0.0001755984 -24.30731 2.292679 0.0001755984 -32.64117 2.292679 0.0001755984 -43.83129 2.292679 0.0001755984 -58.85664 2.292679 0.0001755984 --0.0175068 3.081414 0.0001755984 --0.01161267 3.081414 0.0001755984 --0.005718534 3.081414 0.0001755984 -0.0001755984 3.081414 0.0001755984 -0.006069731 3.081414 0.0001755984 -0.01197402 3.081414 0.0001755984 -0.01903886 3.081414 0.0001755984 -0.02852504 3.081414 0.0001755984 -0.04126244 3.081414 0.0001755984 -0.05836535 3.081414 0.0001755984 -0.08132997 3.081414 0.0001755984 -0.1121653 3.081414 0.0001755984 -0.1535689 3.081414 0.0001755984 -0.2091628 3.081414 0.0001755984 -0.2838106 3.081414 0.0001755984 -0.3840425 3.081414 0.0001755984 -0.518627 3.081414 0.0001755984 -0.6993381 3.081414 0.0001755984 -0.9419845 3.081414 0.0001755984 -1.267794 3.081414 0.0001755984 -1.705268 3.081414 0.0001755984 -2.292679 3.081414 0.0001755984 -3.081414 3.081414 0.0001755984 -4.140474 3.081414 0.0001755984 -5.562508 3.081414 0.0001755984 -7.471917 3.081414 0.0001755984 -10.03574 3.081414 0.0001755984 -13.47828 3.081414 0.0001755984 -18.10068 3.081414 0.0001755984 -24.30731 3.081414 0.0001755984 -32.64117 3.081414 0.0001755984 -43.83129 3.081414 0.0001755984 -58.85664 3.081414 0.0001755984 --0.0175068 4.140474 0.0001755984 --0.01161267 4.140474 0.0001755984 --0.005718534 4.140474 0.0001755984 -0.0001755984 4.140474 0.0001755984 -0.006069731 4.140474 0.0001755984 -0.01197402 4.140474 0.0001755984 -0.01903886 4.140474 0.0001755984 -0.02852504 4.140474 0.0001755984 -0.04126244 4.140474 0.0001755984 -0.05836535 4.140474 0.0001755984 -0.08132997 4.140474 0.0001755984 -0.1121653 4.140474 0.0001755984 -0.1535689 4.140474 0.0001755984 -0.2091628 4.140474 0.0001755984 -0.2838106 4.140474 0.0001755984 -0.3840425 4.140474 0.0001755984 -0.518627 4.140474 0.0001755984 -0.6993381 4.140474 0.0001755984 -0.9419845 4.140474 0.0001755984 -1.267794 4.140474 0.0001755984 -1.705268 4.140474 0.0001755984 -2.292679 4.140474 0.0001755984 -3.081414 4.140474 0.0001755984 -4.140474 4.140474 0.0001755984 -5.562508 4.140474 0.0001755984 -7.471917 4.140474 0.0001755984 -10.03574 4.140474 0.0001755984 -13.47828 4.140474 0.0001755984 -18.10068 4.140474 0.0001755984 -24.30731 4.140474 0.0001755984 -32.64117 4.140474 0.0001755984 -43.83129 4.140474 0.0001755984 -58.85664 4.140474 0.0001755984 --0.0175068 5.562508 0.0001755984 --0.01161267 5.562508 0.0001755984 --0.005718534 5.562508 0.0001755984 -0.0001755984 5.562508 0.0001755984 -0.006069731 5.562508 0.0001755984 -0.01197402 5.562508 0.0001755984 -0.01903886 5.562508 0.0001755984 -0.02852504 5.562508 0.0001755984 -0.04126244 5.562508 0.0001755984 -0.05836535 5.562508 0.0001755984 -0.08132997 5.562508 0.0001755984 -0.1121653 5.562508 0.0001755984 -0.1535689 5.562508 0.0001755984 -0.2091628 5.562508 0.0001755984 -0.2838106 5.562508 0.0001755984 -0.3840425 5.562508 0.0001755984 -0.518627 5.562508 0.0001755984 -0.6993381 5.562508 0.0001755984 -0.9419845 5.562508 0.0001755984 -1.267794 5.562508 0.0001755984 -1.705268 5.562508 0.0001755984 -2.292679 5.562508 0.0001755984 -3.081414 5.562508 0.0001755984 -4.140474 5.562508 0.0001755984 -5.562508 5.562508 0.0001755984 -7.471917 5.562508 0.0001755984 -10.03574 5.562508 0.0001755984 -13.47828 5.562508 0.0001755984 -18.10068 5.562508 0.0001755984 -24.30731 5.562508 0.0001755984 -32.64117 5.562508 0.0001755984 -43.83129 5.562508 0.0001755984 -58.85664 5.562508 0.0001755984 --0.0175068 7.471917 0.0001755984 --0.01161267 7.471917 0.0001755984 --0.005718534 7.471917 0.0001755984 -0.0001755984 7.471917 0.0001755984 -0.006069731 7.471917 0.0001755984 -0.01197402 7.471917 0.0001755984 -0.01903886 7.471917 0.0001755984 -0.02852504 7.471917 0.0001755984 -0.04126244 7.471917 0.0001755984 -0.05836535 7.471917 0.0001755984 -0.08132997 7.471917 0.0001755984 -0.1121653 7.471917 0.0001755984 -0.1535689 7.471917 0.0001755984 -0.2091628 7.471917 0.0001755984 -0.2838106 7.471917 0.0001755984 -0.3840425 7.471917 0.0001755984 -0.518627 7.471917 0.0001755984 -0.6993381 7.471917 0.0001755984 -0.9419845 7.471917 0.0001755984 -1.267794 7.471917 0.0001755984 -1.705268 7.471917 0.0001755984 -2.292679 7.471917 0.0001755984 -3.081414 7.471917 0.0001755984 -4.140474 7.471917 0.0001755984 -5.562508 7.471917 0.0001755984 -7.471917 7.471917 0.0001755984 -10.03574 7.471917 0.0001755984 -13.47828 7.471917 0.0001755984 -18.10068 7.471917 0.0001755984 -24.30731 7.471917 0.0001755984 -32.64117 7.471917 0.0001755984 -43.83129 7.471917 0.0001755984 -58.85664 7.471917 0.0001755984 --0.0175068 10.03574 0.0001755984 --0.01161267 10.03574 0.0001755984 --0.005718534 10.03574 0.0001755984 -0.0001755984 10.03574 0.0001755984 -0.006069731 10.03574 0.0001755984 -0.01197402 10.03574 0.0001755984 -0.01903886 10.03574 0.0001755984 -0.02852504 10.03574 0.0001755984 -0.04126244 10.03574 0.0001755984 -0.05836535 10.03574 0.0001755984 -0.08132997 10.03574 0.0001755984 -0.1121653 10.03574 0.0001755984 -0.1535689 10.03574 0.0001755984 -0.2091628 10.03574 0.0001755984 -0.2838106 10.03574 0.0001755984 -0.3840425 10.03574 0.0001755984 -0.518627 10.03574 0.0001755984 -0.6993381 10.03574 0.0001755984 -0.9419845 10.03574 0.0001755984 -1.267794 10.03574 0.0001755984 -1.705268 10.03574 0.0001755984 -2.292679 10.03574 0.0001755984 -3.081414 10.03574 0.0001755984 -4.140474 10.03574 0.0001755984 -5.562508 10.03574 0.0001755984 -7.471917 10.03574 0.0001755984 -10.03574 10.03574 0.0001755984 -13.47828 10.03574 0.0001755984 -18.10068 10.03574 0.0001755984 -24.30731 10.03574 0.0001755984 -32.64117 10.03574 0.0001755984 -43.83129 10.03574 0.0001755984 -58.85664 10.03574 0.0001755984 --0.0175068 13.47828 0.0001755984 --0.01161267 13.47828 0.0001755984 --0.005718534 13.47828 0.0001755984 -0.0001755984 13.47828 0.0001755984 -0.006069731 13.47828 0.0001755984 -0.01197402 13.47828 0.0001755984 -0.01903886 13.47828 0.0001755984 -0.02852504 13.47828 0.0001755984 -0.04126244 13.47828 0.0001755984 -0.05836535 13.47828 0.0001755984 -0.08132997 13.47828 0.0001755984 -0.1121653 13.47828 0.0001755984 -0.1535689 13.47828 0.0001755984 -0.2091628 13.47828 0.0001755984 -0.2838106 13.47828 0.0001755984 -0.3840425 13.47828 0.0001755984 -0.518627 13.47828 0.0001755984 -0.6993381 13.47828 0.0001755984 -0.9419845 13.47828 0.0001755984 -1.267794 13.47828 0.0001755984 -1.705268 13.47828 0.0001755984 -2.292679 13.47828 0.0001755984 -3.081414 13.47828 0.0001755984 -4.140474 13.47828 0.0001755984 -5.562508 13.47828 0.0001755984 -7.471917 13.47828 0.0001755984 -10.03574 13.47828 0.0001755984 -13.47828 13.47828 0.0001755984 -18.10068 13.47828 0.0001755984 -24.30731 13.47828 0.0001755984 -32.64117 13.47828 0.0001755984 -43.83129 13.47828 0.0001755984 -58.85664 13.47828 0.0001755984 --0.0175068 18.10068 0.0001755984 --0.01161267 18.10068 0.0001755984 --0.005718534 18.10068 0.0001755984 -0.0001755984 18.10068 0.0001755984 -0.006069731 18.10068 0.0001755984 -0.01197402 18.10068 0.0001755984 -0.01903886 18.10068 0.0001755984 -0.02852504 18.10068 0.0001755984 -0.04126244 18.10068 0.0001755984 -0.05836535 18.10068 0.0001755984 -0.08132997 18.10068 0.0001755984 -0.1121653 18.10068 0.0001755984 -0.1535689 18.10068 0.0001755984 -0.2091628 18.10068 0.0001755984 -0.2838106 18.10068 0.0001755984 -0.3840425 18.10068 0.0001755984 -0.518627 18.10068 0.0001755984 -0.6993381 18.10068 0.0001755984 -0.9419845 18.10068 0.0001755984 -1.267794 18.10068 0.0001755984 -1.705268 18.10068 0.0001755984 -2.292679 18.10068 0.0001755984 -3.081414 18.10068 0.0001755984 -4.140474 18.10068 0.0001755984 -5.562508 18.10068 0.0001755984 -7.471917 18.10068 0.0001755984 -10.03574 18.10068 0.0001755984 -13.47828 18.10068 0.0001755984 -18.10068 18.10068 0.0001755984 -24.30731 18.10068 0.0001755984 -32.64117 18.10068 0.0001755984 -43.83129 18.10068 0.0001755984 -58.85664 18.10068 0.0001755984 --0.0175068 24.30731 0.0001755984 --0.01161267 24.30731 0.0001755984 --0.005718534 24.30731 0.0001755984 -0.0001755984 24.30731 0.0001755984 -0.006069731 24.30731 0.0001755984 -0.01197402 24.30731 0.0001755984 -0.01903886 24.30731 0.0001755984 -0.02852504 24.30731 0.0001755984 -0.04126244 24.30731 0.0001755984 -0.05836535 24.30731 0.0001755984 -0.08132997 24.30731 0.0001755984 -0.1121653 24.30731 0.0001755984 -0.1535689 24.30731 0.0001755984 -0.2091628 24.30731 0.0001755984 -0.2838106 24.30731 0.0001755984 -0.3840425 24.30731 0.0001755984 -0.518627 24.30731 0.0001755984 -0.6993381 24.30731 0.0001755984 -0.9419845 24.30731 0.0001755984 -1.267794 24.30731 0.0001755984 -1.705268 24.30731 0.0001755984 -2.292679 24.30731 0.0001755984 -3.081414 24.30731 0.0001755984 -4.140474 24.30731 0.0001755984 -5.562508 24.30731 0.0001755984 -7.471917 24.30731 0.0001755984 -10.03574 24.30731 0.0001755984 -13.47828 24.30731 0.0001755984 -18.10068 24.30731 0.0001755984 -24.30731 24.30731 0.0001755984 -32.64117 24.30731 0.0001755984 -43.83129 24.30731 0.0001755984 -58.85664 24.30731 0.0001755984 --0.0175068 32.64117 0.0001755984 --0.01161267 32.64117 0.0001755984 --0.005718534 32.64117 0.0001755984 -0.0001755984 32.64117 0.0001755984 -0.006069731 32.64117 0.0001755984 -0.01197402 32.64117 0.0001755984 -0.01903886 32.64117 0.0001755984 -0.02852504 32.64117 0.0001755984 -0.04126244 32.64117 0.0001755984 -0.05836535 32.64117 0.0001755984 -0.08132997 32.64117 0.0001755984 -0.1121653 32.64117 0.0001755984 -0.1535689 32.64117 0.0001755984 -0.2091628 32.64117 0.0001755984 -0.2838106 32.64117 0.0001755984 -0.3840425 32.64117 0.0001755984 -0.518627 32.64117 0.0001755984 -0.6993381 32.64117 0.0001755984 -0.9419845 32.64117 0.0001755984 -1.267794 32.64117 0.0001755984 -1.705268 32.64117 0.0001755984 -2.292679 32.64117 0.0001755984 -3.081414 32.64117 0.0001755984 -4.140474 32.64117 0.0001755984 -5.562508 32.64117 0.0001755984 -7.471917 32.64117 0.0001755984 -10.03574 32.64117 0.0001755984 -13.47828 32.64117 0.0001755984 -18.10068 32.64117 0.0001755984 -24.30731 32.64117 0.0001755984 -32.64117 32.64117 0.0001755984 -43.83129 32.64117 0.0001755984 -58.85664 32.64117 0.0001755984 --0.0175068 43.83129 0.0001755984 --0.01161267 43.83129 0.0001755984 --0.005718534 43.83129 0.0001755984 -0.0001755984 43.83129 0.0001755984 -0.006069731 43.83129 0.0001755984 -0.01197402 43.83129 0.0001755984 -0.01903886 43.83129 0.0001755984 -0.02852504 43.83129 0.0001755984 -0.04126244 43.83129 0.0001755984 -0.05836535 43.83129 0.0001755984 -0.08132997 43.83129 0.0001755984 -0.1121653 43.83129 0.0001755984 -0.1535689 43.83129 0.0001755984 -0.2091628 43.83129 0.0001755984 -0.2838106 43.83129 0.0001755984 -0.3840425 43.83129 0.0001755984 -0.518627 43.83129 0.0001755984 -0.6993381 43.83129 0.0001755984 -0.9419845 43.83129 0.0001755984 -1.267794 43.83129 0.0001755984 -1.705268 43.83129 0.0001755984 -2.292679 43.83129 0.0001755984 -3.081414 43.83129 0.0001755984 -4.140474 43.83129 0.0001755984 -5.562508 43.83129 0.0001755984 -7.471917 43.83129 0.0001755984 -10.03574 43.83129 0.0001755984 -13.47828 43.83129 0.0001755984 -18.10068 43.83129 0.0001755984 -24.30731 43.83129 0.0001755984 -32.64117 43.83129 0.0001755984 -43.83129 43.83129 0.0001755984 -58.85664 43.83129 0.0001755984 --0.0175068 58.85664 0.0001755984 --0.01161267 58.85664 0.0001755984 --0.005718534 58.85664 0.0001755984 -0.0001755984 58.85664 0.0001755984 -0.006069731 58.85664 0.0001755984 -0.01197402 58.85664 0.0001755984 -0.01903886 58.85664 0.0001755984 -0.02852504 58.85664 0.0001755984 -0.04126244 58.85664 0.0001755984 -0.05836535 58.85664 0.0001755984 -0.08132997 58.85664 0.0001755984 -0.1121653 58.85664 0.0001755984 -0.1535689 58.85664 0.0001755984 -0.2091628 58.85664 0.0001755984 -0.2838106 58.85664 0.0001755984 -0.3840425 58.85664 0.0001755984 -0.518627 58.85664 0.0001755984 -0.6993381 58.85664 0.0001755984 -0.9419845 58.85664 0.0001755984 -1.267794 58.85664 0.0001755984 -1.705268 58.85664 0.0001755984 -2.292679 58.85664 0.0001755984 -3.081414 58.85664 0.0001755984 -4.140474 58.85664 0.0001755984 -5.562508 58.85664 0.0001755984 -7.471917 58.85664 0.0001755984 -10.03574 58.85664 0.0001755984 -13.47828 58.85664 0.0001755984 -18.10068 58.85664 0.0001755984 -24.30731 58.85664 0.0001755984 -32.64117 58.85664 0.0001755984 -43.83129 58.85664 0.0001755984 -58.85664 58.85664 0.0001755984 --0.0175068 -0.0175068 0.006069731 --0.01161267 -0.0175068 0.006069731 --0.005718534 -0.0175068 0.006069731 -0.0001755984 -0.0175068 0.006069731 -0.006069731 -0.0175068 0.006069731 -0.01197402 -0.0175068 0.006069731 -0.01903886 -0.0175068 0.006069731 -0.02852504 -0.0175068 0.006069731 -0.04126244 -0.0175068 0.006069731 -0.05836535 -0.0175068 0.006069731 -0.08132997 -0.0175068 0.006069731 -0.1121653 -0.0175068 0.006069731 -0.1535689 -0.0175068 0.006069731 -0.2091628 -0.0175068 0.006069731 -0.2838106 -0.0175068 0.006069731 -0.3840425 -0.0175068 0.006069731 -0.518627 -0.0175068 0.006069731 -0.6993381 -0.0175068 0.006069731 -0.9419845 -0.0175068 0.006069731 -1.267794 -0.0175068 0.006069731 -1.705268 -0.0175068 0.006069731 -2.292679 -0.0175068 0.006069731 -3.081414 -0.0175068 0.006069731 -4.140474 -0.0175068 0.006069731 -5.562508 -0.0175068 0.006069731 -7.471917 -0.0175068 0.006069731 -10.03574 -0.0175068 0.006069731 -13.47828 -0.0175068 0.006069731 -18.10068 -0.0175068 0.006069731 -24.30731 -0.0175068 0.006069731 -32.64117 -0.0175068 0.006069731 -43.83129 -0.0175068 0.006069731 -58.85664 -0.0175068 0.006069731 --0.0175068 -0.01161267 0.006069731 --0.01161267 -0.01161267 0.006069731 --0.005718534 -0.01161267 0.006069731 -0.0001755984 -0.01161267 0.006069731 -0.006069731 -0.01161267 0.006069731 -0.01197402 -0.01161267 0.006069731 -0.01903886 -0.01161267 0.006069731 -0.02852504 -0.01161267 0.006069731 -0.04126244 -0.01161267 0.006069731 -0.05836535 -0.01161267 0.006069731 -0.08132997 -0.01161267 0.006069731 -0.1121653 -0.01161267 0.006069731 -0.1535689 -0.01161267 0.006069731 -0.2091628 -0.01161267 0.006069731 -0.2838106 -0.01161267 0.006069731 -0.3840425 -0.01161267 0.006069731 -0.518627 -0.01161267 0.006069731 -0.6993381 -0.01161267 0.006069731 -0.9419845 -0.01161267 0.006069731 -1.267794 -0.01161267 0.006069731 -1.705268 -0.01161267 0.006069731 -2.292679 -0.01161267 0.006069731 -3.081414 -0.01161267 0.006069731 -4.140474 -0.01161267 0.006069731 -5.562508 -0.01161267 0.006069731 -7.471917 -0.01161267 0.006069731 -10.03574 -0.01161267 0.006069731 -13.47828 -0.01161267 0.006069731 -18.10068 -0.01161267 0.006069731 -24.30731 -0.01161267 0.006069731 -32.64117 -0.01161267 0.006069731 -43.83129 -0.01161267 0.006069731 -58.85664 -0.01161267 0.006069731 --0.0175068 -0.005718534 0.006069731 --0.01161267 -0.005718534 0.006069731 --0.005718534 -0.005718534 0.006069731 -0.0001755984 -0.005718534 0.006069731 -0.006069731 -0.005718534 0.006069731 -0.01197402 -0.005718534 0.006069731 -0.01903886 -0.005718534 0.006069731 -0.02852504 -0.005718534 0.006069731 -0.04126244 -0.005718534 0.006069731 -0.05836535 -0.005718534 0.006069731 -0.08132997 -0.005718534 0.006069731 -0.1121653 -0.005718534 0.006069731 -0.1535689 -0.005718534 0.006069731 -0.2091628 -0.005718534 0.006069731 -0.2838106 -0.005718534 0.006069731 -0.3840425 -0.005718534 0.006069731 -0.518627 -0.005718534 0.006069731 -0.6993381 -0.005718534 0.006069731 -0.9419845 -0.005718534 0.006069731 -1.267794 -0.005718534 0.006069731 -1.705268 -0.005718534 0.006069731 -2.292679 -0.005718534 0.006069731 -3.081414 -0.005718534 0.006069731 -4.140474 -0.005718534 0.006069731 -5.562508 -0.005718534 0.006069731 -7.471917 -0.005718534 0.006069731 -10.03574 -0.005718534 0.006069731 -13.47828 -0.005718534 0.006069731 -18.10068 -0.005718534 0.006069731 -24.30731 -0.005718534 0.006069731 -32.64117 -0.005718534 0.006069731 -43.83129 -0.005718534 0.006069731 -58.85664 -0.005718534 0.006069731 --0.0175068 0.0001755984 0.006069731 --0.01161267 0.0001755984 0.006069731 --0.005718534 0.0001755984 0.006069731 -0.0001755984 0.0001755984 0.006069731 -0.006069731 0.0001755984 0.006069731 -0.01197402 0.0001755984 0.006069731 -0.01903886 0.0001755984 0.006069731 -0.02852504 0.0001755984 0.006069731 -0.04126244 0.0001755984 0.006069731 -0.05836535 0.0001755984 0.006069731 -0.08132997 0.0001755984 0.006069731 -0.1121653 0.0001755984 0.006069731 -0.1535689 0.0001755984 0.006069731 -0.2091628 0.0001755984 0.006069731 -0.2838106 0.0001755984 0.006069731 -0.3840425 0.0001755984 0.006069731 -0.518627 0.0001755984 0.006069731 -0.6993381 0.0001755984 0.006069731 -0.9419845 0.0001755984 0.006069731 -1.267794 0.0001755984 0.006069731 -1.705268 0.0001755984 0.006069731 -2.292679 0.0001755984 0.006069731 -3.081414 0.0001755984 0.006069731 -4.140474 0.0001755984 0.006069731 -5.562508 0.0001755984 0.006069731 -7.471917 0.0001755984 0.006069731 -10.03574 0.0001755984 0.006069731 -13.47828 0.0001755984 0.006069731 -18.10068 0.0001755984 0.006069731 -24.30731 0.0001755984 0.006069731 -32.64117 0.0001755984 0.006069731 -43.83129 0.0001755984 0.006069731 -58.85664 0.0001755984 0.006069731 --0.0175068 0.006069731 0.006069731 --0.01161267 0.006069731 0.006069731 --0.005718534 0.006069731 0.006069731 -0.0001755984 0.006069731 0.006069731 -0.006069731 0.006069731 0.006069731 -0.01197402 0.006069731 0.006069731 -0.01903886 0.006069731 0.006069731 -0.02852504 0.006069731 0.006069731 -0.04126244 0.006069731 0.006069731 -0.05836535 0.006069731 0.006069731 -0.08132997 0.006069731 0.006069731 -0.1121653 0.006069731 0.006069731 -0.1535689 0.006069731 0.006069731 -0.2091628 0.006069731 0.006069731 -0.2838106 0.006069731 0.006069731 -0.3840425 0.006069731 0.006069731 -0.518627 0.006069731 0.006069731 -0.6993381 0.006069731 0.006069731 -0.9419845 0.006069731 0.006069731 -1.267794 0.006069731 0.006069731 -1.705268 0.006069731 0.006069731 -2.292679 0.006069731 0.006069731 -3.081414 0.006069731 0.006069731 -4.140474 0.006069731 0.006069731 -5.562508 0.006069731 0.006069731 -7.471917 0.006069731 0.006069731 -10.03574 0.006069731 0.006069731 -13.47828 0.006069731 0.006069731 -18.10068 0.006069731 0.006069731 -24.30731 0.006069731 0.006069731 -32.64117 0.006069731 0.006069731 -43.83129 0.006069731 0.006069731 -58.85664 0.006069731 0.006069731 --0.0175068 0.01197402 0.006069731 --0.01161267 0.01197402 0.006069731 --0.005718534 0.01197402 0.006069731 -0.0001755984 0.01197402 0.006069731 -0.006069731 0.01197402 0.006069731 -0.01197402 0.01197402 0.006069731 -0.01903886 0.01197402 0.006069731 -0.02852504 0.01197402 0.006069731 -0.04126244 0.01197402 0.006069731 -0.05836535 0.01197402 0.006069731 -0.08132997 0.01197402 0.006069731 -0.1121653 0.01197402 0.006069731 -0.1535689 0.01197402 0.006069731 -0.2091628 0.01197402 0.006069731 -0.2838106 0.01197402 0.006069731 -0.3840425 0.01197402 0.006069731 -0.518627 0.01197402 0.006069731 -0.6993381 0.01197402 0.006069731 -0.9419845 0.01197402 0.006069731 -1.267794 0.01197402 0.006069731 -1.705268 0.01197402 0.006069731 -2.292679 0.01197402 0.006069731 -3.081414 0.01197402 0.006069731 -4.140474 0.01197402 0.006069731 -5.562508 0.01197402 0.006069731 -7.471917 0.01197402 0.006069731 -10.03574 0.01197402 0.006069731 -13.47828 0.01197402 0.006069731 -18.10068 0.01197402 0.006069731 -24.30731 0.01197402 0.006069731 -32.64117 0.01197402 0.006069731 -43.83129 0.01197402 0.006069731 -58.85664 0.01197402 0.006069731 --0.0175068 0.01903886 0.006069731 --0.01161267 0.01903886 0.006069731 --0.005718534 0.01903886 0.006069731 -0.0001755984 0.01903886 0.006069731 -0.006069731 0.01903886 0.006069731 -0.01197402 0.01903886 0.006069731 -0.01903886 0.01903886 0.006069731 -0.02852504 0.01903886 0.006069731 -0.04126244 0.01903886 0.006069731 -0.05836535 0.01903886 0.006069731 -0.08132997 0.01903886 0.006069731 -0.1121653 0.01903886 0.006069731 -0.1535689 0.01903886 0.006069731 -0.2091628 0.01903886 0.006069731 -0.2838106 0.01903886 0.006069731 -0.3840425 0.01903886 0.006069731 -0.518627 0.01903886 0.006069731 -0.6993381 0.01903886 0.006069731 -0.9419845 0.01903886 0.006069731 -1.267794 0.01903886 0.006069731 -1.705268 0.01903886 0.006069731 -2.292679 0.01903886 0.006069731 -3.081414 0.01903886 0.006069731 -4.140474 0.01903886 0.006069731 -5.562508 0.01903886 0.006069731 -7.471917 0.01903886 0.006069731 -10.03574 0.01903886 0.006069731 -13.47828 0.01903886 0.006069731 -18.10068 0.01903886 0.006069731 -24.30731 0.01903886 0.006069731 -32.64117 0.01903886 0.006069731 -43.83129 0.01903886 0.006069731 -58.85664 0.01903886 0.006069731 --0.0175068 0.02852504 0.006069731 --0.01161267 0.02852504 0.006069731 --0.005718534 0.02852504 0.006069731 -0.0001755984 0.02852504 0.006069731 -0.006069731 0.02852504 0.006069731 -0.01197402 0.02852504 0.006069731 -0.01903886 0.02852504 0.006069731 -0.02852504 0.02852504 0.006069731 -0.04126244 0.02852504 0.006069731 -0.05836535 0.02852504 0.006069731 -0.08132997 0.02852504 0.006069731 -0.1121653 0.02852504 0.006069731 -0.1535689 0.02852504 0.006069731 -0.2091628 0.02852504 0.006069731 -0.2838106 0.02852504 0.006069731 -0.3840425 0.02852504 0.006069731 -0.518627 0.02852504 0.006069731 -0.6993381 0.02852504 0.006069731 -0.9419845 0.02852504 0.006069731 -1.267794 0.02852504 0.006069731 -1.705268 0.02852504 0.006069731 -2.292679 0.02852504 0.006069731 -3.081414 0.02852504 0.006069731 -4.140474 0.02852504 0.006069731 -5.562508 0.02852504 0.006069731 -7.471917 0.02852504 0.006069731 -10.03574 0.02852504 0.006069731 -13.47828 0.02852504 0.006069731 -18.10068 0.02852504 0.006069731 -24.30731 0.02852504 0.006069731 -32.64117 0.02852504 0.006069731 -43.83129 0.02852504 0.006069731 -58.85664 0.02852504 0.006069731 --0.0175068 0.04126244 0.006069731 --0.01161267 0.04126244 0.006069731 --0.005718534 0.04126244 0.006069731 -0.0001755984 0.04126244 0.006069731 -0.006069731 0.04126244 0.006069731 -0.01197402 0.04126244 0.006069731 -0.01903886 0.04126244 0.006069731 -0.02852504 0.04126244 0.006069731 -0.04126244 0.04126244 0.006069731 -0.05836535 0.04126244 0.006069731 -0.08132997 0.04126244 0.006069731 -0.1121653 0.04126244 0.006069731 -0.1535689 0.04126244 0.006069731 -0.2091628 0.04126244 0.006069731 -0.2838106 0.04126244 0.006069731 -0.3840425 0.04126244 0.006069731 -0.518627 0.04126244 0.006069731 -0.6993381 0.04126244 0.006069731 -0.9419845 0.04126244 0.006069731 -1.267794 0.04126244 0.006069731 -1.705268 0.04126244 0.006069731 -2.292679 0.04126244 0.006069731 -3.081414 0.04126244 0.006069731 -4.140474 0.04126244 0.006069731 -5.562508 0.04126244 0.006069731 -7.471917 0.04126244 0.006069731 -10.03574 0.04126244 0.006069731 -13.47828 0.04126244 0.006069731 -18.10068 0.04126244 0.006069731 -24.30731 0.04126244 0.006069731 -32.64117 0.04126244 0.006069731 -43.83129 0.04126244 0.006069731 -58.85664 0.04126244 0.006069731 --0.0175068 0.05836535 0.006069731 --0.01161267 0.05836535 0.006069731 --0.005718534 0.05836535 0.006069731 -0.0001755984 0.05836535 0.006069731 -0.006069731 0.05836535 0.006069731 -0.01197402 0.05836535 0.006069731 -0.01903886 0.05836535 0.006069731 -0.02852504 0.05836535 0.006069731 -0.04126244 0.05836535 0.006069731 -0.05836535 0.05836535 0.006069731 -0.08132997 0.05836535 0.006069731 -0.1121653 0.05836535 0.006069731 -0.1535689 0.05836535 0.006069731 -0.2091628 0.05836535 0.006069731 -0.2838106 0.05836535 0.006069731 -0.3840425 0.05836535 0.006069731 -0.518627 0.05836535 0.006069731 -0.6993381 0.05836535 0.006069731 -0.9419845 0.05836535 0.006069731 -1.267794 0.05836535 0.006069731 -1.705268 0.05836535 0.006069731 -2.292679 0.05836535 0.006069731 -3.081414 0.05836535 0.006069731 -4.140474 0.05836535 0.006069731 -5.562508 0.05836535 0.006069731 -7.471917 0.05836535 0.006069731 -10.03574 0.05836535 0.006069731 -13.47828 0.05836535 0.006069731 -18.10068 0.05836535 0.006069731 -24.30731 0.05836535 0.006069731 -32.64117 0.05836535 0.006069731 -43.83129 0.05836535 0.006069731 -58.85664 0.05836535 0.006069731 --0.0175068 0.08132997 0.006069731 --0.01161267 0.08132997 0.006069731 --0.005718534 0.08132997 0.006069731 -0.0001755984 0.08132997 0.006069731 -0.006069731 0.08132997 0.006069731 -0.01197402 0.08132997 0.006069731 -0.01903886 0.08132997 0.006069731 -0.02852504 0.08132997 0.006069731 -0.04126244 0.08132997 0.006069731 -0.05836535 0.08132997 0.006069731 -0.08132997 0.08132997 0.006069731 -0.1121653 0.08132997 0.006069731 -0.1535689 0.08132997 0.006069731 -0.2091628 0.08132997 0.006069731 -0.2838106 0.08132997 0.006069731 -0.3840425 0.08132997 0.006069731 -0.518627 0.08132997 0.006069731 -0.6993381 0.08132997 0.006069731 -0.9419845 0.08132997 0.006069731 -1.267794 0.08132997 0.006069731 -1.705268 0.08132997 0.006069731 -2.292679 0.08132997 0.006069731 -3.081414 0.08132997 0.006069731 -4.140474 0.08132997 0.006069731 -5.562508 0.08132997 0.006069731 -7.471917 0.08132997 0.006069731 -10.03574 0.08132997 0.006069731 -13.47828 0.08132997 0.006069731 -18.10068 0.08132997 0.006069731 -24.30731 0.08132997 0.006069731 -32.64117 0.08132997 0.006069731 -43.83129 0.08132997 0.006069731 -58.85664 0.08132997 0.006069731 --0.0175068 0.1121653 0.006069731 --0.01161267 0.1121653 0.006069731 --0.005718534 0.1121653 0.006069731 -0.0001755984 0.1121653 0.006069731 -0.006069731 0.1121653 0.006069731 -0.01197402 0.1121653 0.006069731 -0.01903886 0.1121653 0.006069731 -0.02852504 0.1121653 0.006069731 -0.04126244 0.1121653 0.006069731 -0.05836535 0.1121653 0.006069731 -0.08132997 0.1121653 0.006069731 -0.1121653 0.1121653 0.006069731 -0.1535689 0.1121653 0.006069731 -0.2091628 0.1121653 0.006069731 -0.2838106 0.1121653 0.006069731 -0.3840425 0.1121653 0.006069731 -0.518627 0.1121653 0.006069731 -0.6993381 0.1121653 0.006069731 -0.9419845 0.1121653 0.006069731 -1.267794 0.1121653 0.006069731 -1.705268 0.1121653 0.006069731 -2.292679 0.1121653 0.006069731 -3.081414 0.1121653 0.006069731 -4.140474 0.1121653 0.006069731 -5.562508 0.1121653 0.006069731 -7.471917 0.1121653 0.006069731 -10.03574 0.1121653 0.006069731 -13.47828 0.1121653 0.006069731 -18.10068 0.1121653 0.006069731 -24.30731 0.1121653 0.006069731 -32.64117 0.1121653 0.006069731 -43.83129 0.1121653 0.006069731 -58.85664 0.1121653 0.006069731 --0.0175068 0.1535689 0.006069731 --0.01161267 0.1535689 0.006069731 --0.005718534 0.1535689 0.006069731 -0.0001755984 0.1535689 0.006069731 -0.006069731 0.1535689 0.006069731 -0.01197402 0.1535689 0.006069731 -0.01903886 0.1535689 0.006069731 -0.02852504 0.1535689 0.006069731 -0.04126244 0.1535689 0.006069731 -0.05836535 0.1535689 0.006069731 -0.08132997 0.1535689 0.006069731 -0.1121653 0.1535689 0.006069731 -0.1535689 0.1535689 0.006069731 -0.2091628 0.1535689 0.006069731 -0.2838106 0.1535689 0.006069731 -0.3840425 0.1535689 0.006069731 -0.518627 0.1535689 0.006069731 -0.6993381 0.1535689 0.006069731 -0.9419845 0.1535689 0.006069731 -1.267794 0.1535689 0.006069731 -1.705268 0.1535689 0.006069731 -2.292679 0.1535689 0.006069731 -3.081414 0.1535689 0.006069731 -4.140474 0.1535689 0.006069731 -5.562508 0.1535689 0.006069731 -7.471917 0.1535689 0.006069731 -10.03574 0.1535689 0.006069731 -13.47828 0.1535689 0.006069731 -18.10068 0.1535689 0.006069731 -24.30731 0.1535689 0.006069731 -32.64117 0.1535689 0.006069731 -43.83129 0.1535689 0.006069731 -58.85664 0.1535689 0.006069731 --0.0175068 0.2091628 0.006069731 --0.01161267 0.2091628 0.006069731 --0.005718534 0.2091628 0.006069731 -0.0001755984 0.2091628 0.006069731 -0.006069731 0.2091628 0.006069731 -0.01197402 0.2091628 0.006069731 -0.01903886 0.2091628 0.006069731 -0.02852504 0.2091628 0.006069731 -0.04126244 0.2091628 0.006069731 -0.05836535 0.2091628 0.006069731 -0.08132997 0.2091628 0.006069731 -0.1121653 0.2091628 0.006069731 -0.1535689 0.2091628 0.006069731 -0.2091628 0.2091628 0.006069731 -0.2838106 0.2091628 0.006069731 -0.3840425 0.2091628 0.006069731 -0.518627 0.2091628 0.006069731 -0.6993381 0.2091628 0.006069731 -0.9419845 0.2091628 0.006069731 -1.267794 0.2091628 0.006069731 -1.705268 0.2091628 0.006069731 -2.292679 0.2091628 0.006069731 -3.081414 0.2091628 0.006069731 -4.140474 0.2091628 0.006069731 -5.562508 0.2091628 0.006069731 -7.471917 0.2091628 0.006069731 -10.03574 0.2091628 0.006069731 -13.47828 0.2091628 0.006069731 -18.10068 0.2091628 0.006069731 -24.30731 0.2091628 0.006069731 -32.64117 0.2091628 0.006069731 -43.83129 0.2091628 0.006069731 -58.85664 0.2091628 0.006069731 --0.0175068 0.2838106 0.006069731 --0.01161267 0.2838106 0.006069731 --0.005718534 0.2838106 0.006069731 -0.0001755984 0.2838106 0.006069731 -0.006069731 0.2838106 0.006069731 -0.01197402 0.2838106 0.006069731 -0.01903886 0.2838106 0.006069731 -0.02852504 0.2838106 0.006069731 -0.04126244 0.2838106 0.006069731 -0.05836535 0.2838106 0.006069731 -0.08132997 0.2838106 0.006069731 -0.1121653 0.2838106 0.006069731 -0.1535689 0.2838106 0.006069731 -0.2091628 0.2838106 0.006069731 -0.2838106 0.2838106 0.006069731 -0.3840425 0.2838106 0.006069731 -0.518627 0.2838106 0.006069731 -0.6993381 0.2838106 0.006069731 -0.9419845 0.2838106 0.006069731 -1.267794 0.2838106 0.006069731 -1.705268 0.2838106 0.006069731 -2.292679 0.2838106 0.006069731 -3.081414 0.2838106 0.006069731 -4.140474 0.2838106 0.006069731 -5.562508 0.2838106 0.006069731 -7.471917 0.2838106 0.006069731 -10.03574 0.2838106 0.006069731 -13.47828 0.2838106 0.006069731 -18.10068 0.2838106 0.006069731 -24.30731 0.2838106 0.006069731 -32.64117 0.2838106 0.006069731 -43.83129 0.2838106 0.006069731 -58.85664 0.2838106 0.006069731 --0.0175068 0.3840425 0.006069731 --0.01161267 0.3840425 0.006069731 --0.005718534 0.3840425 0.006069731 -0.0001755984 0.3840425 0.006069731 -0.006069731 0.3840425 0.006069731 -0.01197402 0.3840425 0.006069731 -0.01903886 0.3840425 0.006069731 -0.02852504 0.3840425 0.006069731 -0.04126244 0.3840425 0.006069731 -0.05836535 0.3840425 0.006069731 -0.08132997 0.3840425 0.006069731 -0.1121653 0.3840425 0.006069731 -0.1535689 0.3840425 0.006069731 -0.2091628 0.3840425 0.006069731 -0.2838106 0.3840425 0.006069731 -0.3840425 0.3840425 0.006069731 -0.518627 0.3840425 0.006069731 -0.6993381 0.3840425 0.006069731 -0.9419845 0.3840425 0.006069731 -1.267794 0.3840425 0.006069731 -1.705268 0.3840425 0.006069731 -2.292679 0.3840425 0.006069731 -3.081414 0.3840425 0.006069731 -4.140474 0.3840425 0.006069731 -5.562508 0.3840425 0.006069731 -7.471917 0.3840425 0.006069731 -10.03574 0.3840425 0.006069731 -13.47828 0.3840425 0.006069731 -18.10068 0.3840425 0.006069731 -24.30731 0.3840425 0.006069731 -32.64117 0.3840425 0.006069731 -43.83129 0.3840425 0.006069731 -58.85664 0.3840425 0.006069731 --0.0175068 0.518627 0.006069731 --0.01161267 0.518627 0.006069731 --0.005718534 0.518627 0.006069731 -0.0001755984 0.518627 0.006069731 -0.006069731 0.518627 0.006069731 -0.01197402 0.518627 0.006069731 -0.01903886 0.518627 0.006069731 -0.02852504 0.518627 0.006069731 -0.04126244 0.518627 0.006069731 -0.05836535 0.518627 0.006069731 -0.08132997 0.518627 0.006069731 -0.1121653 0.518627 0.006069731 -0.1535689 0.518627 0.006069731 -0.2091628 0.518627 0.006069731 -0.2838106 0.518627 0.006069731 -0.3840425 0.518627 0.006069731 -0.518627 0.518627 0.006069731 -0.6993381 0.518627 0.006069731 -0.9419845 0.518627 0.006069731 -1.267794 0.518627 0.006069731 -1.705268 0.518627 0.006069731 -2.292679 0.518627 0.006069731 -3.081414 0.518627 0.006069731 -4.140474 0.518627 0.006069731 -5.562508 0.518627 0.006069731 -7.471917 0.518627 0.006069731 -10.03574 0.518627 0.006069731 -13.47828 0.518627 0.006069731 -18.10068 0.518627 0.006069731 -24.30731 0.518627 0.006069731 -32.64117 0.518627 0.006069731 -43.83129 0.518627 0.006069731 -58.85664 0.518627 0.006069731 --0.0175068 0.6993381 0.006069731 --0.01161267 0.6993381 0.006069731 --0.005718534 0.6993381 0.006069731 -0.0001755984 0.6993381 0.006069731 -0.006069731 0.6993381 0.006069731 -0.01197402 0.6993381 0.006069731 -0.01903886 0.6993381 0.006069731 -0.02852504 0.6993381 0.006069731 -0.04126244 0.6993381 0.006069731 -0.05836535 0.6993381 0.006069731 -0.08132997 0.6993381 0.006069731 -0.1121653 0.6993381 0.006069731 -0.1535689 0.6993381 0.006069731 -0.2091628 0.6993381 0.006069731 -0.2838106 0.6993381 0.006069731 -0.3840425 0.6993381 0.006069731 -0.518627 0.6993381 0.006069731 -0.6993381 0.6993381 0.006069731 -0.9419845 0.6993381 0.006069731 -1.267794 0.6993381 0.006069731 -1.705268 0.6993381 0.006069731 -2.292679 0.6993381 0.006069731 -3.081414 0.6993381 0.006069731 -4.140474 0.6993381 0.006069731 -5.562508 0.6993381 0.006069731 -7.471917 0.6993381 0.006069731 -10.03574 0.6993381 0.006069731 -13.47828 0.6993381 0.006069731 -18.10068 0.6993381 0.006069731 -24.30731 0.6993381 0.006069731 -32.64117 0.6993381 0.006069731 -43.83129 0.6993381 0.006069731 -58.85664 0.6993381 0.006069731 --0.0175068 0.9419845 0.006069731 --0.01161267 0.9419845 0.006069731 --0.005718534 0.9419845 0.006069731 -0.0001755984 0.9419845 0.006069731 -0.006069731 0.9419845 0.006069731 -0.01197402 0.9419845 0.006069731 -0.01903886 0.9419845 0.006069731 -0.02852504 0.9419845 0.006069731 -0.04126244 0.9419845 0.006069731 -0.05836535 0.9419845 0.006069731 -0.08132997 0.9419845 0.006069731 -0.1121653 0.9419845 0.006069731 -0.1535689 0.9419845 0.006069731 -0.2091628 0.9419845 0.006069731 -0.2838106 0.9419845 0.006069731 -0.3840425 0.9419845 0.006069731 -0.518627 0.9419845 0.006069731 -0.6993381 0.9419845 0.006069731 -0.9419845 0.9419845 0.006069731 -1.267794 0.9419845 0.006069731 -1.705268 0.9419845 0.006069731 -2.292679 0.9419845 0.006069731 -3.081414 0.9419845 0.006069731 -4.140474 0.9419845 0.006069731 -5.562508 0.9419845 0.006069731 -7.471917 0.9419845 0.006069731 -10.03574 0.9419845 0.006069731 -13.47828 0.9419845 0.006069731 -18.10068 0.9419845 0.006069731 -24.30731 0.9419845 0.006069731 -32.64117 0.9419845 0.006069731 -43.83129 0.9419845 0.006069731 -58.85664 0.9419845 0.006069731 --0.0175068 1.267794 0.006069731 --0.01161267 1.267794 0.006069731 --0.005718534 1.267794 0.006069731 -0.0001755984 1.267794 0.006069731 -0.006069731 1.267794 0.006069731 -0.01197402 1.267794 0.006069731 -0.01903886 1.267794 0.006069731 -0.02852504 1.267794 0.006069731 -0.04126244 1.267794 0.006069731 -0.05836535 1.267794 0.006069731 -0.08132997 1.267794 0.006069731 -0.1121653 1.267794 0.006069731 -0.1535689 1.267794 0.006069731 -0.2091628 1.267794 0.006069731 -0.2838106 1.267794 0.006069731 -0.3840425 1.267794 0.006069731 -0.518627 1.267794 0.006069731 -0.6993381 1.267794 0.006069731 -0.9419845 1.267794 0.006069731 -1.267794 1.267794 0.006069731 -1.705268 1.267794 0.006069731 -2.292679 1.267794 0.006069731 -3.081414 1.267794 0.006069731 -4.140474 1.267794 0.006069731 -5.562508 1.267794 0.006069731 -7.471917 1.267794 0.006069731 -10.03574 1.267794 0.006069731 -13.47828 1.267794 0.006069731 -18.10068 1.267794 0.006069731 -24.30731 1.267794 0.006069731 -32.64117 1.267794 0.006069731 -43.83129 1.267794 0.006069731 -58.85664 1.267794 0.006069731 --0.0175068 1.705268 0.006069731 --0.01161267 1.705268 0.006069731 --0.005718534 1.705268 0.006069731 -0.0001755984 1.705268 0.006069731 -0.006069731 1.705268 0.006069731 -0.01197402 1.705268 0.006069731 -0.01903886 1.705268 0.006069731 -0.02852504 1.705268 0.006069731 -0.04126244 1.705268 0.006069731 -0.05836535 1.705268 0.006069731 -0.08132997 1.705268 0.006069731 -0.1121653 1.705268 0.006069731 -0.1535689 1.705268 0.006069731 -0.2091628 1.705268 0.006069731 -0.2838106 1.705268 0.006069731 -0.3840425 1.705268 0.006069731 -0.518627 1.705268 0.006069731 -0.6993381 1.705268 0.006069731 -0.9419845 1.705268 0.006069731 -1.267794 1.705268 0.006069731 -1.705268 1.705268 0.006069731 -2.292679 1.705268 0.006069731 -3.081414 1.705268 0.006069731 -4.140474 1.705268 0.006069731 -5.562508 1.705268 0.006069731 -7.471917 1.705268 0.006069731 -10.03574 1.705268 0.006069731 -13.47828 1.705268 0.006069731 -18.10068 1.705268 0.006069731 -24.30731 1.705268 0.006069731 -32.64117 1.705268 0.006069731 -43.83129 1.705268 0.006069731 -58.85664 1.705268 0.006069731 --0.0175068 2.292679 0.006069731 --0.01161267 2.292679 0.006069731 --0.005718534 2.292679 0.006069731 -0.0001755984 2.292679 0.006069731 -0.006069731 2.292679 0.006069731 -0.01197402 2.292679 0.006069731 -0.01903886 2.292679 0.006069731 -0.02852504 2.292679 0.006069731 -0.04126244 2.292679 0.006069731 -0.05836535 2.292679 0.006069731 -0.08132997 2.292679 0.006069731 -0.1121653 2.292679 0.006069731 -0.1535689 2.292679 0.006069731 -0.2091628 2.292679 0.006069731 -0.2838106 2.292679 0.006069731 -0.3840425 2.292679 0.006069731 -0.518627 2.292679 0.006069731 -0.6993381 2.292679 0.006069731 -0.9419845 2.292679 0.006069731 -1.267794 2.292679 0.006069731 -1.705268 2.292679 0.006069731 -2.292679 2.292679 0.006069731 -3.081414 2.292679 0.006069731 -4.140474 2.292679 0.006069731 -5.562508 2.292679 0.006069731 -7.471917 2.292679 0.006069731 -10.03574 2.292679 0.006069731 -13.47828 2.292679 0.006069731 -18.10068 2.292679 0.006069731 -24.30731 2.292679 0.006069731 -32.64117 2.292679 0.006069731 -43.83129 2.292679 0.006069731 -58.85664 2.292679 0.006069731 --0.0175068 3.081414 0.006069731 --0.01161267 3.081414 0.006069731 --0.005718534 3.081414 0.006069731 -0.0001755984 3.081414 0.006069731 -0.006069731 3.081414 0.006069731 -0.01197402 3.081414 0.006069731 -0.01903886 3.081414 0.006069731 -0.02852504 3.081414 0.006069731 -0.04126244 3.081414 0.006069731 -0.05836535 3.081414 0.006069731 -0.08132997 3.081414 0.006069731 -0.1121653 3.081414 0.006069731 -0.1535689 3.081414 0.006069731 -0.2091628 3.081414 0.006069731 -0.2838106 3.081414 0.006069731 -0.3840425 3.081414 0.006069731 -0.518627 3.081414 0.006069731 -0.6993381 3.081414 0.006069731 -0.9419845 3.081414 0.006069731 -1.267794 3.081414 0.006069731 -1.705268 3.081414 0.006069731 -2.292679 3.081414 0.006069731 -3.081414 3.081414 0.006069731 -4.140474 3.081414 0.006069731 -5.562508 3.081414 0.006069731 -7.471917 3.081414 0.006069731 -10.03574 3.081414 0.006069731 -13.47828 3.081414 0.006069731 -18.10068 3.081414 0.006069731 -24.30731 3.081414 0.006069731 -32.64117 3.081414 0.006069731 -43.83129 3.081414 0.006069731 -58.85664 3.081414 0.006069731 --0.0175068 4.140474 0.006069731 --0.01161267 4.140474 0.006069731 --0.005718534 4.140474 0.006069731 -0.0001755984 4.140474 0.006069731 -0.006069731 4.140474 0.006069731 -0.01197402 4.140474 0.006069731 -0.01903886 4.140474 0.006069731 -0.02852504 4.140474 0.006069731 -0.04126244 4.140474 0.006069731 -0.05836535 4.140474 0.006069731 -0.08132997 4.140474 0.006069731 -0.1121653 4.140474 0.006069731 -0.1535689 4.140474 0.006069731 -0.2091628 4.140474 0.006069731 -0.2838106 4.140474 0.006069731 -0.3840425 4.140474 0.006069731 -0.518627 4.140474 0.006069731 -0.6993381 4.140474 0.006069731 -0.9419845 4.140474 0.006069731 -1.267794 4.140474 0.006069731 -1.705268 4.140474 0.006069731 -2.292679 4.140474 0.006069731 -3.081414 4.140474 0.006069731 -4.140474 4.140474 0.006069731 -5.562508 4.140474 0.006069731 -7.471917 4.140474 0.006069731 -10.03574 4.140474 0.006069731 -13.47828 4.140474 0.006069731 -18.10068 4.140474 0.006069731 -24.30731 4.140474 0.006069731 -32.64117 4.140474 0.006069731 -43.83129 4.140474 0.006069731 -58.85664 4.140474 0.006069731 --0.0175068 5.562508 0.006069731 --0.01161267 5.562508 0.006069731 --0.005718534 5.562508 0.006069731 -0.0001755984 5.562508 0.006069731 -0.006069731 5.562508 0.006069731 -0.01197402 5.562508 0.006069731 -0.01903886 5.562508 0.006069731 -0.02852504 5.562508 0.006069731 -0.04126244 5.562508 0.006069731 -0.05836535 5.562508 0.006069731 -0.08132997 5.562508 0.006069731 -0.1121653 5.562508 0.006069731 -0.1535689 5.562508 0.006069731 -0.2091628 5.562508 0.006069731 -0.2838106 5.562508 0.006069731 -0.3840425 5.562508 0.006069731 -0.518627 5.562508 0.006069731 -0.6993381 5.562508 0.006069731 -0.9419845 5.562508 0.006069731 -1.267794 5.562508 0.006069731 -1.705268 5.562508 0.006069731 -2.292679 5.562508 0.006069731 -3.081414 5.562508 0.006069731 -4.140474 5.562508 0.006069731 -5.562508 5.562508 0.006069731 -7.471917 5.562508 0.006069731 -10.03574 5.562508 0.006069731 -13.47828 5.562508 0.006069731 -18.10068 5.562508 0.006069731 -24.30731 5.562508 0.006069731 -32.64117 5.562508 0.006069731 -43.83129 5.562508 0.006069731 -58.85664 5.562508 0.006069731 --0.0175068 7.471917 0.006069731 --0.01161267 7.471917 0.006069731 --0.005718534 7.471917 0.006069731 -0.0001755984 7.471917 0.006069731 -0.006069731 7.471917 0.006069731 -0.01197402 7.471917 0.006069731 -0.01903886 7.471917 0.006069731 -0.02852504 7.471917 0.006069731 -0.04126244 7.471917 0.006069731 -0.05836535 7.471917 0.006069731 -0.08132997 7.471917 0.006069731 -0.1121653 7.471917 0.006069731 -0.1535689 7.471917 0.006069731 -0.2091628 7.471917 0.006069731 -0.2838106 7.471917 0.006069731 -0.3840425 7.471917 0.006069731 -0.518627 7.471917 0.006069731 -0.6993381 7.471917 0.006069731 -0.9419845 7.471917 0.006069731 -1.267794 7.471917 0.006069731 -1.705268 7.471917 0.006069731 -2.292679 7.471917 0.006069731 -3.081414 7.471917 0.006069731 -4.140474 7.471917 0.006069731 -5.562508 7.471917 0.006069731 -7.471917 7.471917 0.006069731 -10.03574 7.471917 0.006069731 -13.47828 7.471917 0.006069731 -18.10068 7.471917 0.006069731 -24.30731 7.471917 0.006069731 -32.64117 7.471917 0.006069731 -43.83129 7.471917 0.006069731 -58.85664 7.471917 0.006069731 --0.0175068 10.03574 0.006069731 --0.01161267 10.03574 0.006069731 --0.005718534 10.03574 0.006069731 -0.0001755984 10.03574 0.006069731 -0.006069731 10.03574 0.006069731 -0.01197402 10.03574 0.006069731 -0.01903886 10.03574 0.006069731 -0.02852504 10.03574 0.006069731 -0.04126244 10.03574 0.006069731 -0.05836535 10.03574 0.006069731 -0.08132997 10.03574 0.006069731 -0.1121653 10.03574 0.006069731 -0.1535689 10.03574 0.006069731 -0.2091628 10.03574 0.006069731 -0.2838106 10.03574 0.006069731 -0.3840425 10.03574 0.006069731 -0.518627 10.03574 0.006069731 -0.6993381 10.03574 0.006069731 -0.9419845 10.03574 0.006069731 -1.267794 10.03574 0.006069731 -1.705268 10.03574 0.006069731 -2.292679 10.03574 0.006069731 -3.081414 10.03574 0.006069731 -4.140474 10.03574 0.006069731 -5.562508 10.03574 0.006069731 -7.471917 10.03574 0.006069731 -10.03574 10.03574 0.006069731 -13.47828 10.03574 0.006069731 -18.10068 10.03574 0.006069731 -24.30731 10.03574 0.006069731 -32.64117 10.03574 0.006069731 -43.83129 10.03574 0.006069731 -58.85664 10.03574 0.006069731 --0.0175068 13.47828 0.006069731 --0.01161267 13.47828 0.006069731 --0.005718534 13.47828 0.006069731 -0.0001755984 13.47828 0.006069731 -0.006069731 13.47828 0.006069731 -0.01197402 13.47828 0.006069731 -0.01903886 13.47828 0.006069731 -0.02852504 13.47828 0.006069731 -0.04126244 13.47828 0.006069731 -0.05836535 13.47828 0.006069731 -0.08132997 13.47828 0.006069731 -0.1121653 13.47828 0.006069731 -0.1535689 13.47828 0.006069731 -0.2091628 13.47828 0.006069731 -0.2838106 13.47828 0.006069731 -0.3840425 13.47828 0.006069731 -0.518627 13.47828 0.006069731 -0.6993381 13.47828 0.006069731 -0.9419845 13.47828 0.006069731 -1.267794 13.47828 0.006069731 -1.705268 13.47828 0.006069731 -2.292679 13.47828 0.006069731 -3.081414 13.47828 0.006069731 -4.140474 13.47828 0.006069731 -5.562508 13.47828 0.006069731 -7.471917 13.47828 0.006069731 -10.03574 13.47828 0.006069731 -13.47828 13.47828 0.006069731 -18.10068 13.47828 0.006069731 -24.30731 13.47828 0.006069731 -32.64117 13.47828 0.006069731 -43.83129 13.47828 0.006069731 -58.85664 13.47828 0.006069731 --0.0175068 18.10068 0.006069731 --0.01161267 18.10068 0.006069731 --0.005718534 18.10068 0.006069731 -0.0001755984 18.10068 0.006069731 -0.006069731 18.10068 0.006069731 -0.01197402 18.10068 0.006069731 -0.01903886 18.10068 0.006069731 -0.02852504 18.10068 0.006069731 -0.04126244 18.10068 0.006069731 -0.05836535 18.10068 0.006069731 -0.08132997 18.10068 0.006069731 -0.1121653 18.10068 0.006069731 -0.1535689 18.10068 0.006069731 -0.2091628 18.10068 0.006069731 -0.2838106 18.10068 0.006069731 -0.3840425 18.10068 0.006069731 -0.518627 18.10068 0.006069731 -0.6993381 18.10068 0.006069731 -0.9419845 18.10068 0.006069731 -1.267794 18.10068 0.006069731 -1.705268 18.10068 0.006069731 -2.292679 18.10068 0.006069731 -3.081414 18.10068 0.006069731 -4.140474 18.10068 0.006069731 -5.562508 18.10068 0.006069731 -7.471917 18.10068 0.006069731 -10.03574 18.10068 0.006069731 -13.47828 18.10068 0.006069731 -18.10068 18.10068 0.006069731 -24.30731 18.10068 0.006069731 -32.64117 18.10068 0.006069731 -43.83129 18.10068 0.006069731 -58.85664 18.10068 0.006069731 --0.0175068 24.30731 0.006069731 --0.01161267 24.30731 0.006069731 --0.005718534 24.30731 0.006069731 -0.0001755984 24.30731 0.006069731 -0.006069731 24.30731 0.006069731 -0.01197402 24.30731 0.006069731 -0.01903886 24.30731 0.006069731 -0.02852504 24.30731 0.006069731 -0.04126244 24.30731 0.006069731 -0.05836535 24.30731 0.006069731 -0.08132997 24.30731 0.006069731 -0.1121653 24.30731 0.006069731 -0.1535689 24.30731 0.006069731 -0.2091628 24.30731 0.006069731 -0.2838106 24.30731 0.006069731 -0.3840425 24.30731 0.006069731 -0.518627 24.30731 0.006069731 -0.6993381 24.30731 0.006069731 -0.9419845 24.30731 0.006069731 -1.267794 24.30731 0.006069731 -1.705268 24.30731 0.006069731 -2.292679 24.30731 0.006069731 -3.081414 24.30731 0.006069731 -4.140474 24.30731 0.006069731 -5.562508 24.30731 0.006069731 -7.471917 24.30731 0.006069731 -10.03574 24.30731 0.006069731 -13.47828 24.30731 0.006069731 -18.10068 24.30731 0.006069731 -24.30731 24.30731 0.006069731 -32.64117 24.30731 0.006069731 -43.83129 24.30731 0.006069731 -58.85664 24.30731 0.006069731 --0.0175068 32.64117 0.006069731 --0.01161267 32.64117 0.006069731 --0.005718534 32.64117 0.006069731 -0.0001755984 32.64117 0.006069731 -0.006069731 32.64117 0.006069731 -0.01197402 32.64117 0.006069731 -0.01903886 32.64117 0.006069731 -0.02852504 32.64117 0.006069731 -0.04126244 32.64117 0.006069731 -0.05836535 32.64117 0.006069731 -0.08132997 32.64117 0.006069731 -0.1121653 32.64117 0.006069731 -0.1535689 32.64117 0.006069731 -0.2091628 32.64117 0.006069731 -0.2838106 32.64117 0.006069731 -0.3840425 32.64117 0.006069731 -0.518627 32.64117 0.006069731 -0.6993381 32.64117 0.006069731 -0.9419845 32.64117 0.006069731 -1.267794 32.64117 0.006069731 -1.705268 32.64117 0.006069731 -2.292679 32.64117 0.006069731 -3.081414 32.64117 0.006069731 -4.140474 32.64117 0.006069731 -5.562508 32.64117 0.006069731 -7.471917 32.64117 0.006069731 -10.03574 32.64117 0.006069731 -13.47828 32.64117 0.006069731 -18.10068 32.64117 0.006069731 -24.30731 32.64117 0.006069731 -32.64117 32.64117 0.006069731 -43.83129 32.64117 0.006069731 -58.85664 32.64117 0.006069731 --0.0175068 43.83129 0.006069731 --0.01161267 43.83129 0.006069731 --0.005718534 43.83129 0.006069731 -0.0001755984 43.83129 0.006069731 -0.006069731 43.83129 0.006069731 -0.01197402 43.83129 0.006069731 -0.01903886 43.83129 0.006069731 -0.02852504 43.83129 0.006069731 -0.04126244 43.83129 0.006069731 -0.05836535 43.83129 0.006069731 -0.08132997 43.83129 0.006069731 -0.1121653 43.83129 0.006069731 -0.1535689 43.83129 0.006069731 -0.2091628 43.83129 0.006069731 -0.2838106 43.83129 0.006069731 -0.3840425 43.83129 0.006069731 -0.518627 43.83129 0.006069731 -0.6993381 43.83129 0.006069731 -0.9419845 43.83129 0.006069731 -1.267794 43.83129 0.006069731 -1.705268 43.83129 0.006069731 -2.292679 43.83129 0.006069731 -3.081414 43.83129 0.006069731 -4.140474 43.83129 0.006069731 -5.562508 43.83129 0.006069731 -7.471917 43.83129 0.006069731 -10.03574 43.83129 0.006069731 -13.47828 43.83129 0.006069731 -18.10068 43.83129 0.006069731 -24.30731 43.83129 0.006069731 -32.64117 43.83129 0.006069731 -43.83129 43.83129 0.006069731 -58.85664 43.83129 0.006069731 --0.0175068 58.85664 0.006069731 --0.01161267 58.85664 0.006069731 --0.005718534 58.85664 0.006069731 -0.0001755984 58.85664 0.006069731 -0.006069731 58.85664 0.006069731 -0.01197402 58.85664 0.006069731 -0.01903886 58.85664 0.006069731 -0.02852504 58.85664 0.006069731 -0.04126244 58.85664 0.006069731 -0.05836535 58.85664 0.006069731 -0.08132997 58.85664 0.006069731 -0.1121653 58.85664 0.006069731 -0.1535689 58.85664 0.006069731 -0.2091628 58.85664 0.006069731 -0.2838106 58.85664 0.006069731 -0.3840425 58.85664 0.006069731 -0.518627 58.85664 0.006069731 -0.6993381 58.85664 0.006069731 -0.9419845 58.85664 0.006069731 -1.267794 58.85664 0.006069731 -1.705268 58.85664 0.006069731 -2.292679 58.85664 0.006069731 -3.081414 58.85664 0.006069731 -4.140474 58.85664 0.006069731 -5.562508 58.85664 0.006069731 -7.471917 58.85664 0.006069731 -10.03574 58.85664 0.006069731 -13.47828 58.85664 0.006069731 -18.10068 58.85664 0.006069731 -24.30731 58.85664 0.006069731 -32.64117 58.85664 0.006069731 -43.83129 58.85664 0.006069731 -58.85664 58.85664 0.006069731 --0.0175068 -0.0175068 0.01197402 --0.01161267 -0.0175068 0.01197402 --0.005718534 -0.0175068 0.01197402 -0.0001755984 -0.0175068 0.01197402 -0.006069731 -0.0175068 0.01197402 -0.01197402 -0.0175068 0.01197402 -0.01903886 -0.0175068 0.01197402 -0.02852504 -0.0175068 0.01197402 -0.04126244 -0.0175068 0.01197402 -0.05836535 -0.0175068 0.01197402 -0.08132997 -0.0175068 0.01197402 -0.1121653 -0.0175068 0.01197402 -0.1535689 -0.0175068 0.01197402 -0.2091628 -0.0175068 0.01197402 -0.2838106 -0.0175068 0.01197402 -0.3840425 -0.0175068 0.01197402 -0.518627 -0.0175068 0.01197402 -0.6993381 -0.0175068 0.01197402 -0.9419845 -0.0175068 0.01197402 -1.267794 -0.0175068 0.01197402 -1.705268 -0.0175068 0.01197402 -2.292679 -0.0175068 0.01197402 -3.081414 -0.0175068 0.01197402 -4.140474 -0.0175068 0.01197402 -5.562508 -0.0175068 0.01197402 -7.471917 -0.0175068 0.01197402 -10.03574 -0.0175068 0.01197402 -13.47828 -0.0175068 0.01197402 -18.10068 -0.0175068 0.01197402 -24.30731 -0.0175068 0.01197402 -32.64117 -0.0175068 0.01197402 -43.83129 -0.0175068 0.01197402 -58.85664 -0.0175068 0.01197402 --0.0175068 -0.01161267 0.01197402 --0.01161267 -0.01161267 0.01197402 --0.005718534 -0.01161267 0.01197402 -0.0001755984 -0.01161267 0.01197402 -0.006069731 -0.01161267 0.01197402 -0.01197402 -0.01161267 0.01197402 -0.01903886 -0.01161267 0.01197402 -0.02852504 -0.01161267 0.01197402 -0.04126244 -0.01161267 0.01197402 -0.05836535 -0.01161267 0.01197402 -0.08132997 -0.01161267 0.01197402 -0.1121653 -0.01161267 0.01197402 -0.1535689 -0.01161267 0.01197402 -0.2091628 -0.01161267 0.01197402 -0.2838106 -0.01161267 0.01197402 -0.3840425 -0.01161267 0.01197402 -0.518627 -0.01161267 0.01197402 -0.6993381 -0.01161267 0.01197402 -0.9419845 -0.01161267 0.01197402 -1.267794 -0.01161267 0.01197402 -1.705268 -0.01161267 0.01197402 -2.292679 -0.01161267 0.01197402 -3.081414 -0.01161267 0.01197402 -4.140474 -0.01161267 0.01197402 -5.562508 -0.01161267 0.01197402 -7.471917 -0.01161267 0.01197402 -10.03574 -0.01161267 0.01197402 -13.47828 -0.01161267 0.01197402 -18.10068 -0.01161267 0.01197402 -24.30731 -0.01161267 0.01197402 -32.64117 -0.01161267 0.01197402 -43.83129 -0.01161267 0.01197402 -58.85664 -0.01161267 0.01197402 --0.0175068 -0.005718534 0.01197402 --0.01161267 -0.005718534 0.01197402 --0.005718534 -0.005718534 0.01197402 -0.0001755984 -0.005718534 0.01197402 -0.006069731 -0.005718534 0.01197402 -0.01197402 -0.005718534 0.01197402 -0.01903886 -0.005718534 0.01197402 -0.02852504 -0.005718534 0.01197402 -0.04126244 -0.005718534 0.01197402 -0.05836535 -0.005718534 0.01197402 -0.08132997 -0.005718534 0.01197402 -0.1121653 -0.005718534 0.01197402 -0.1535689 -0.005718534 0.01197402 -0.2091628 -0.005718534 0.01197402 -0.2838106 -0.005718534 0.01197402 -0.3840425 -0.005718534 0.01197402 -0.518627 -0.005718534 0.01197402 -0.6993381 -0.005718534 0.01197402 -0.9419845 -0.005718534 0.01197402 -1.267794 -0.005718534 0.01197402 -1.705268 -0.005718534 0.01197402 -2.292679 -0.005718534 0.01197402 -3.081414 -0.005718534 0.01197402 -4.140474 -0.005718534 0.01197402 -5.562508 -0.005718534 0.01197402 -7.471917 -0.005718534 0.01197402 -10.03574 -0.005718534 0.01197402 -13.47828 -0.005718534 0.01197402 -18.10068 -0.005718534 0.01197402 -24.30731 -0.005718534 0.01197402 -32.64117 -0.005718534 0.01197402 -43.83129 -0.005718534 0.01197402 -58.85664 -0.005718534 0.01197402 --0.0175068 0.0001755984 0.01197402 --0.01161267 0.0001755984 0.01197402 --0.005718534 0.0001755984 0.01197402 -0.0001755984 0.0001755984 0.01197402 -0.006069731 0.0001755984 0.01197402 -0.01197402 0.0001755984 0.01197402 -0.01903886 0.0001755984 0.01197402 -0.02852504 0.0001755984 0.01197402 -0.04126244 0.0001755984 0.01197402 -0.05836535 0.0001755984 0.01197402 -0.08132997 0.0001755984 0.01197402 -0.1121653 0.0001755984 0.01197402 -0.1535689 0.0001755984 0.01197402 -0.2091628 0.0001755984 0.01197402 -0.2838106 0.0001755984 0.01197402 -0.3840425 0.0001755984 0.01197402 -0.518627 0.0001755984 0.01197402 -0.6993381 0.0001755984 0.01197402 -0.9419845 0.0001755984 0.01197402 -1.267794 0.0001755984 0.01197402 -1.705268 0.0001755984 0.01197402 -2.292679 0.0001755984 0.01197402 -3.081414 0.0001755984 0.01197402 -4.140474 0.0001755984 0.01197402 -5.562508 0.0001755984 0.01197402 -7.471917 0.0001755984 0.01197402 -10.03574 0.0001755984 0.01197402 -13.47828 0.0001755984 0.01197402 -18.10068 0.0001755984 0.01197402 -24.30731 0.0001755984 0.01197402 -32.64117 0.0001755984 0.01197402 -43.83129 0.0001755984 0.01197402 -58.85664 0.0001755984 0.01197402 --0.0175068 0.006069731 0.01197402 --0.01161267 0.006069731 0.01197402 --0.005718534 0.006069731 0.01197402 -0.0001755984 0.006069731 0.01197402 -0.006069731 0.006069731 0.01197402 -0.01197402 0.006069731 0.01197402 -0.01903886 0.006069731 0.01197402 -0.02852504 0.006069731 0.01197402 -0.04126244 0.006069731 0.01197402 -0.05836535 0.006069731 0.01197402 -0.08132997 0.006069731 0.01197402 -0.1121653 0.006069731 0.01197402 -0.1535689 0.006069731 0.01197402 -0.2091628 0.006069731 0.01197402 -0.2838106 0.006069731 0.01197402 -0.3840425 0.006069731 0.01197402 -0.518627 0.006069731 0.01197402 -0.6993381 0.006069731 0.01197402 -0.9419845 0.006069731 0.01197402 -1.267794 0.006069731 0.01197402 -1.705268 0.006069731 0.01197402 -2.292679 0.006069731 0.01197402 -3.081414 0.006069731 0.01197402 -4.140474 0.006069731 0.01197402 -5.562508 0.006069731 0.01197402 -7.471917 0.006069731 0.01197402 -10.03574 0.006069731 0.01197402 -13.47828 0.006069731 0.01197402 -18.10068 0.006069731 0.01197402 -24.30731 0.006069731 0.01197402 -32.64117 0.006069731 0.01197402 -43.83129 0.006069731 0.01197402 -58.85664 0.006069731 0.01197402 --0.0175068 0.01197402 0.01197402 --0.01161267 0.01197402 0.01197402 --0.005718534 0.01197402 0.01197402 -0.0001755984 0.01197402 0.01197402 -0.006069731 0.01197402 0.01197402 -0.01197402 0.01197402 0.01197402 -0.01903886 0.01197402 0.01197402 -0.02852504 0.01197402 0.01197402 -0.04126244 0.01197402 0.01197402 -0.05836535 0.01197402 0.01197402 -0.08132997 0.01197402 0.01197402 -0.1121653 0.01197402 0.01197402 -0.1535689 0.01197402 0.01197402 -0.2091628 0.01197402 0.01197402 -0.2838106 0.01197402 0.01197402 -0.3840425 0.01197402 0.01197402 -0.518627 0.01197402 0.01197402 -0.6993381 0.01197402 0.01197402 -0.9419845 0.01197402 0.01197402 -1.267794 0.01197402 0.01197402 -1.705268 0.01197402 0.01197402 -2.292679 0.01197402 0.01197402 -3.081414 0.01197402 0.01197402 -4.140474 0.01197402 0.01197402 -5.562508 0.01197402 0.01197402 -7.471917 0.01197402 0.01197402 -10.03574 0.01197402 0.01197402 -13.47828 0.01197402 0.01197402 -18.10068 0.01197402 0.01197402 -24.30731 0.01197402 0.01197402 -32.64117 0.01197402 0.01197402 -43.83129 0.01197402 0.01197402 -58.85664 0.01197402 0.01197402 --0.0175068 0.01903886 0.01197402 --0.01161267 0.01903886 0.01197402 --0.005718534 0.01903886 0.01197402 -0.0001755984 0.01903886 0.01197402 -0.006069731 0.01903886 0.01197402 -0.01197402 0.01903886 0.01197402 -0.01903886 0.01903886 0.01197402 -0.02852504 0.01903886 0.01197402 -0.04126244 0.01903886 0.01197402 -0.05836535 0.01903886 0.01197402 -0.08132997 0.01903886 0.01197402 -0.1121653 0.01903886 0.01197402 -0.1535689 0.01903886 0.01197402 -0.2091628 0.01903886 0.01197402 -0.2838106 0.01903886 0.01197402 -0.3840425 0.01903886 0.01197402 -0.518627 0.01903886 0.01197402 -0.6993381 0.01903886 0.01197402 -0.9419845 0.01903886 0.01197402 -1.267794 0.01903886 0.01197402 -1.705268 0.01903886 0.01197402 -2.292679 0.01903886 0.01197402 -3.081414 0.01903886 0.01197402 -4.140474 0.01903886 0.01197402 -5.562508 0.01903886 0.01197402 -7.471917 0.01903886 0.01197402 -10.03574 0.01903886 0.01197402 -13.47828 0.01903886 0.01197402 -18.10068 0.01903886 0.01197402 -24.30731 0.01903886 0.01197402 -32.64117 0.01903886 0.01197402 -43.83129 0.01903886 0.01197402 -58.85664 0.01903886 0.01197402 --0.0175068 0.02852504 0.01197402 --0.01161267 0.02852504 0.01197402 --0.005718534 0.02852504 0.01197402 -0.0001755984 0.02852504 0.01197402 -0.006069731 0.02852504 0.01197402 -0.01197402 0.02852504 0.01197402 -0.01903886 0.02852504 0.01197402 -0.02852504 0.02852504 0.01197402 -0.04126244 0.02852504 0.01197402 -0.05836535 0.02852504 0.01197402 -0.08132997 0.02852504 0.01197402 -0.1121653 0.02852504 0.01197402 -0.1535689 0.02852504 0.01197402 -0.2091628 0.02852504 0.01197402 -0.2838106 0.02852504 0.01197402 -0.3840425 0.02852504 0.01197402 -0.518627 0.02852504 0.01197402 -0.6993381 0.02852504 0.01197402 -0.9419845 0.02852504 0.01197402 -1.267794 0.02852504 0.01197402 -1.705268 0.02852504 0.01197402 -2.292679 0.02852504 0.01197402 -3.081414 0.02852504 0.01197402 -4.140474 0.02852504 0.01197402 -5.562508 0.02852504 0.01197402 -7.471917 0.02852504 0.01197402 -10.03574 0.02852504 0.01197402 -13.47828 0.02852504 0.01197402 -18.10068 0.02852504 0.01197402 -24.30731 0.02852504 0.01197402 -32.64117 0.02852504 0.01197402 -43.83129 0.02852504 0.01197402 -58.85664 0.02852504 0.01197402 --0.0175068 0.04126244 0.01197402 --0.01161267 0.04126244 0.01197402 --0.005718534 0.04126244 0.01197402 -0.0001755984 0.04126244 0.01197402 -0.006069731 0.04126244 0.01197402 -0.01197402 0.04126244 0.01197402 -0.01903886 0.04126244 0.01197402 -0.02852504 0.04126244 0.01197402 -0.04126244 0.04126244 0.01197402 -0.05836535 0.04126244 0.01197402 -0.08132997 0.04126244 0.01197402 -0.1121653 0.04126244 0.01197402 -0.1535689 0.04126244 0.01197402 -0.2091628 0.04126244 0.01197402 -0.2838106 0.04126244 0.01197402 -0.3840425 0.04126244 0.01197402 -0.518627 0.04126244 0.01197402 -0.6993381 0.04126244 0.01197402 -0.9419845 0.04126244 0.01197402 -1.267794 0.04126244 0.01197402 -1.705268 0.04126244 0.01197402 -2.292679 0.04126244 0.01197402 -3.081414 0.04126244 0.01197402 -4.140474 0.04126244 0.01197402 -5.562508 0.04126244 0.01197402 -7.471917 0.04126244 0.01197402 -10.03574 0.04126244 0.01197402 -13.47828 0.04126244 0.01197402 -18.10068 0.04126244 0.01197402 -24.30731 0.04126244 0.01197402 -32.64117 0.04126244 0.01197402 -43.83129 0.04126244 0.01197402 -58.85664 0.04126244 0.01197402 --0.0175068 0.05836535 0.01197402 --0.01161267 0.05836535 0.01197402 --0.005718534 0.05836535 0.01197402 -0.0001755984 0.05836535 0.01197402 -0.006069731 0.05836535 0.01197402 -0.01197402 0.05836535 0.01197402 -0.01903886 0.05836535 0.01197402 -0.02852504 0.05836535 0.01197402 -0.04126244 0.05836535 0.01197402 -0.05836535 0.05836535 0.01197402 -0.08132997 0.05836535 0.01197402 -0.1121653 0.05836535 0.01197402 -0.1535689 0.05836535 0.01197402 -0.2091628 0.05836535 0.01197402 -0.2838106 0.05836535 0.01197402 -0.3840425 0.05836535 0.01197402 -0.518627 0.05836535 0.01197402 -0.6993381 0.05836535 0.01197402 -0.9419845 0.05836535 0.01197402 -1.267794 0.05836535 0.01197402 -1.705268 0.05836535 0.01197402 -2.292679 0.05836535 0.01197402 -3.081414 0.05836535 0.01197402 -4.140474 0.05836535 0.01197402 -5.562508 0.05836535 0.01197402 -7.471917 0.05836535 0.01197402 -10.03574 0.05836535 0.01197402 -13.47828 0.05836535 0.01197402 -18.10068 0.05836535 0.01197402 -24.30731 0.05836535 0.01197402 -32.64117 0.05836535 0.01197402 -43.83129 0.05836535 0.01197402 -58.85664 0.05836535 0.01197402 --0.0175068 0.08132997 0.01197402 --0.01161267 0.08132997 0.01197402 --0.005718534 0.08132997 0.01197402 -0.0001755984 0.08132997 0.01197402 -0.006069731 0.08132997 0.01197402 -0.01197402 0.08132997 0.01197402 -0.01903886 0.08132997 0.01197402 -0.02852504 0.08132997 0.01197402 -0.04126244 0.08132997 0.01197402 -0.05836535 0.08132997 0.01197402 -0.08132997 0.08132997 0.01197402 -0.1121653 0.08132997 0.01197402 -0.1535689 0.08132997 0.01197402 -0.2091628 0.08132997 0.01197402 -0.2838106 0.08132997 0.01197402 -0.3840425 0.08132997 0.01197402 -0.518627 0.08132997 0.01197402 -0.6993381 0.08132997 0.01197402 -0.9419845 0.08132997 0.01197402 -1.267794 0.08132997 0.01197402 -1.705268 0.08132997 0.01197402 -2.292679 0.08132997 0.01197402 -3.081414 0.08132997 0.01197402 -4.140474 0.08132997 0.01197402 -5.562508 0.08132997 0.01197402 -7.471917 0.08132997 0.01197402 -10.03574 0.08132997 0.01197402 -13.47828 0.08132997 0.01197402 -18.10068 0.08132997 0.01197402 -24.30731 0.08132997 0.01197402 -32.64117 0.08132997 0.01197402 -43.83129 0.08132997 0.01197402 -58.85664 0.08132997 0.01197402 --0.0175068 0.1121653 0.01197402 --0.01161267 0.1121653 0.01197402 --0.005718534 0.1121653 0.01197402 -0.0001755984 0.1121653 0.01197402 -0.006069731 0.1121653 0.01197402 -0.01197402 0.1121653 0.01197402 -0.01903886 0.1121653 0.01197402 -0.02852504 0.1121653 0.01197402 -0.04126244 0.1121653 0.01197402 -0.05836535 0.1121653 0.01197402 -0.08132997 0.1121653 0.01197402 -0.1121653 0.1121653 0.01197402 -0.1535689 0.1121653 0.01197402 -0.2091628 0.1121653 0.01197402 -0.2838106 0.1121653 0.01197402 -0.3840425 0.1121653 0.01197402 -0.518627 0.1121653 0.01197402 -0.6993381 0.1121653 0.01197402 -0.9419845 0.1121653 0.01197402 -1.267794 0.1121653 0.01197402 -1.705268 0.1121653 0.01197402 -2.292679 0.1121653 0.01197402 -3.081414 0.1121653 0.01197402 -4.140474 0.1121653 0.01197402 -5.562508 0.1121653 0.01197402 -7.471917 0.1121653 0.01197402 -10.03574 0.1121653 0.01197402 -13.47828 0.1121653 0.01197402 -18.10068 0.1121653 0.01197402 -24.30731 0.1121653 0.01197402 -32.64117 0.1121653 0.01197402 -43.83129 0.1121653 0.01197402 -58.85664 0.1121653 0.01197402 --0.0175068 0.1535689 0.01197402 --0.01161267 0.1535689 0.01197402 --0.005718534 0.1535689 0.01197402 -0.0001755984 0.1535689 0.01197402 -0.006069731 0.1535689 0.01197402 -0.01197402 0.1535689 0.01197402 -0.01903886 0.1535689 0.01197402 -0.02852504 0.1535689 0.01197402 -0.04126244 0.1535689 0.01197402 -0.05836535 0.1535689 0.01197402 -0.08132997 0.1535689 0.01197402 -0.1121653 0.1535689 0.01197402 -0.1535689 0.1535689 0.01197402 -0.2091628 0.1535689 0.01197402 -0.2838106 0.1535689 0.01197402 -0.3840425 0.1535689 0.01197402 -0.518627 0.1535689 0.01197402 -0.6993381 0.1535689 0.01197402 -0.9419845 0.1535689 0.01197402 -1.267794 0.1535689 0.01197402 -1.705268 0.1535689 0.01197402 -2.292679 0.1535689 0.01197402 -3.081414 0.1535689 0.01197402 -4.140474 0.1535689 0.01197402 -5.562508 0.1535689 0.01197402 -7.471917 0.1535689 0.01197402 -10.03574 0.1535689 0.01197402 -13.47828 0.1535689 0.01197402 -18.10068 0.1535689 0.01197402 -24.30731 0.1535689 0.01197402 -32.64117 0.1535689 0.01197402 -43.83129 0.1535689 0.01197402 -58.85664 0.1535689 0.01197402 --0.0175068 0.2091628 0.01197402 --0.01161267 0.2091628 0.01197402 --0.005718534 0.2091628 0.01197402 -0.0001755984 0.2091628 0.01197402 -0.006069731 0.2091628 0.01197402 -0.01197402 0.2091628 0.01197402 -0.01903886 0.2091628 0.01197402 -0.02852504 0.2091628 0.01197402 -0.04126244 0.2091628 0.01197402 -0.05836535 0.2091628 0.01197402 -0.08132997 0.2091628 0.01197402 -0.1121653 0.2091628 0.01197402 -0.1535689 0.2091628 0.01197402 -0.2091628 0.2091628 0.01197402 -0.2838106 0.2091628 0.01197402 -0.3840425 0.2091628 0.01197402 -0.518627 0.2091628 0.01197402 -0.6993381 0.2091628 0.01197402 -0.9419845 0.2091628 0.01197402 -1.267794 0.2091628 0.01197402 -1.705268 0.2091628 0.01197402 -2.292679 0.2091628 0.01197402 -3.081414 0.2091628 0.01197402 -4.140474 0.2091628 0.01197402 -5.562508 0.2091628 0.01197402 -7.471917 0.2091628 0.01197402 -10.03574 0.2091628 0.01197402 -13.47828 0.2091628 0.01197402 -18.10068 0.2091628 0.01197402 -24.30731 0.2091628 0.01197402 -32.64117 0.2091628 0.01197402 -43.83129 0.2091628 0.01197402 -58.85664 0.2091628 0.01197402 --0.0175068 0.2838106 0.01197402 --0.01161267 0.2838106 0.01197402 --0.005718534 0.2838106 0.01197402 -0.0001755984 0.2838106 0.01197402 -0.006069731 0.2838106 0.01197402 -0.01197402 0.2838106 0.01197402 -0.01903886 0.2838106 0.01197402 -0.02852504 0.2838106 0.01197402 -0.04126244 0.2838106 0.01197402 -0.05836535 0.2838106 0.01197402 -0.08132997 0.2838106 0.01197402 -0.1121653 0.2838106 0.01197402 -0.1535689 0.2838106 0.01197402 -0.2091628 0.2838106 0.01197402 -0.2838106 0.2838106 0.01197402 -0.3840425 0.2838106 0.01197402 -0.518627 0.2838106 0.01197402 -0.6993381 0.2838106 0.01197402 -0.9419845 0.2838106 0.01197402 -1.267794 0.2838106 0.01197402 -1.705268 0.2838106 0.01197402 -2.292679 0.2838106 0.01197402 -3.081414 0.2838106 0.01197402 -4.140474 0.2838106 0.01197402 -5.562508 0.2838106 0.01197402 -7.471917 0.2838106 0.01197402 -10.03574 0.2838106 0.01197402 -13.47828 0.2838106 0.01197402 -18.10068 0.2838106 0.01197402 -24.30731 0.2838106 0.01197402 -32.64117 0.2838106 0.01197402 -43.83129 0.2838106 0.01197402 -58.85664 0.2838106 0.01197402 --0.0175068 0.3840425 0.01197402 --0.01161267 0.3840425 0.01197402 --0.005718534 0.3840425 0.01197402 -0.0001755984 0.3840425 0.01197402 -0.006069731 0.3840425 0.01197402 -0.01197402 0.3840425 0.01197402 -0.01903886 0.3840425 0.01197402 -0.02852504 0.3840425 0.01197402 -0.04126244 0.3840425 0.01197402 -0.05836535 0.3840425 0.01197402 -0.08132997 0.3840425 0.01197402 -0.1121653 0.3840425 0.01197402 -0.1535689 0.3840425 0.01197402 -0.2091628 0.3840425 0.01197402 -0.2838106 0.3840425 0.01197402 -0.3840425 0.3840425 0.01197402 -0.518627 0.3840425 0.01197402 -0.6993381 0.3840425 0.01197402 -0.9419845 0.3840425 0.01197402 -1.267794 0.3840425 0.01197402 -1.705268 0.3840425 0.01197402 -2.292679 0.3840425 0.01197402 -3.081414 0.3840425 0.01197402 -4.140474 0.3840425 0.01197402 -5.562508 0.3840425 0.01197402 -7.471917 0.3840425 0.01197402 -10.03574 0.3840425 0.01197402 -13.47828 0.3840425 0.01197402 -18.10068 0.3840425 0.01197402 -24.30731 0.3840425 0.01197402 -32.64117 0.3840425 0.01197402 -43.83129 0.3840425 0.01197402 -58.85664 0.3840425 0.01197402 --0.0175068 0.518627 0.01197402 --0.01161267 0.518627 0.01197402 --0.005718534 0.518627 0.01197402 -0.0001755984 0.518627 0.01197402 -0.006069731 0.518627 0.01197402 -0.01197402 0.518627 0.01197402 -0.01903886 0.518627 0.01197402 -0.02852504 0.518627 0.01197402 -0.04126244 0.518627 0.01197402 -0.05836535 0.518627 0.01197402 -0.08132997 0.518627 0.01197402 -0.1121653 0.518627 0.01197402 -0.1535689 0.518627 0.01197402 -0.2091628 0.518627 0.01197402 -0.2838106 0.518627 0.01197402 -0.3840425 0.518627 0.01197402 -0.518627 0.518627 0.01197402 -0.6993381 0.518627 0.01197402 -0.9419845 0.518627 0.01197402 -1.267794 0.518627 0.01197402 -1.705268 0.518627 0.01197402 -2.292679 0.518627 0.01197402 -3.081414 0.518627 0.01197402 -4.140474 0.518627 0.01197402 -5.562508 0.518627 0.01197402 -7.471917 0.518627 0.01197402 -10.03574 0.518627 0.01197402 -13.47828 0.518627 0.01197402 -18.10068 0.518627 0.01197402 -24.30731 0.518627 0.01197402 -32.64117 0.518627 0.01197402 -43.83129 0.518627 0.01197402 -58.85664 0.518627 0.01197402 --0.0175068 0.6993381 0.01197402 --0.01161267 0.6993381 0.01197402 --0.005718534 0.6993381 0.01197402 -0.0001755984 0.6993381 0.01197402 -0.006069731 0.6993381 0.01197402 -0.01197402 0.6993381 0.01197402 -0.01903886 0.6993381 0.01197402 -0.02852504 0.6993381 0.01197402 -0.04126244 0.6993381 0.01197402 -0.05836535 0.6993381 0.01197402 -0.08132997 0.6993381 0.01197402 -0.1121653 0.6993381 0.01197402 -0.1535689 0.6993381 0.01197402 -0.2091628 0.6993381 0.01197402 -0.2838106 0.6993381 0.01197402 -0.3840425 0.6993381 0.01197402 -0.518627 0.6993381 0.01197402 -0.6993381 0.6993381 0.01197402 -0.9419845 0.6993381 0.01197402 -1.267794 0.6993381 0.01197402 -1.705268 0.6993381 0.01197402 -2.292679 0.6993381 0.01197402 -3.081414 0.6993381 0.01197402 -4.140474 0.6993381 0.01197402 -5.562508 0.6993381 0.01197402 -7.471917 0.6993381 0.01197402 -10.03574 0.6993381 0.01197402 -13.47828 0.6993381 0.01197402 -18.10068 0.6993381 0.01197402 -24.30731 0.6993381 0.01197402 -32.64117 0.6993381 0.01197402 -43.83129 0.6993381 0.01197402 -58.85664 0.6993381 0.01197402 --0.0175068 0.9419845 0.01197402 --0.01161267 0.9419845 0.01197402 --0.005718534 0.9419845 0.01197402 -0.0001755984 0.9419845 0.01197402 -0.006069731 0.9419845 0.01197402 -0.01197402 0.9419845 0.01197402 -0.01903886 0.9419845 0.01197402 -0.02852504 0.9419845 0.01197402 -0.04126244 0.9419845 0.01197402 -0.05836535 0.9419845 0.01197402 -0.08132997 0.9419845 0.01197402 -0.1121653 0.9419845 0.01197402 -0.1535689 0.9419845 0.01197402 -0.2091628 0.9419845 0.01197402 -0.2838106 0.9419845 0.01197402 -0.3840425 0.9419845 0.01197402 -0.518627 0.9419845 0.01197402 -0.6993381 0.9419845 0.01197402 -0.9419845 0.9419845 0.01197402 -1.267794 0.9419845 0.01197402 -1.705268 0.9419845 0.01197402 -2.292679 0.9419845 0.01197402 -3.081414 0.9419845 0.01197402 -4.140474 0.9419845 0.01197402 -5.562508 0.9419845 0.01197402 -7.471917 0.9419845 0.01197402 -10.03574 0.9419845 0.01197402 -13.47828 0.9419845 0.01197402 -18.10068 0.9419845 0.01197402 -24.30731 0.9419845 0.01197402 -32.64117 0.9419845 0.01197402 -43.83129 0.9419845 0.01197402 -58.85664 0.9419845 0.01197402 --0.0175068 1.267794 0.01197402 --0.01161267 1.267794 0.01197402 --0.005718534 1.267794 0.01197402 -0.0001755984 1.267794 0.01197402 -0.006069731 1.267794 0.01197402 -0.01197402 1.267794 0.01197402 -0.01903886 1.267794 0.01197402 -0.02852504 1.267794 0.01197402 -0.04126244 1.267794 0.01197402 -0.05836535 1.267794 0.01197402 -0.08132997 1.267794 0.01197402 -0.1121653 1.267794 0.01197402 -0.1535689 1.267794 0.01197402 -0.2091628 1.267794 0.01197402 -0.2838106 1.267794 0.01197402 -0.3840425 1.267794 0.01197402 -0.518627 1.267794 0.01197402 -0.6993381 1.267794 0.01197402 -0.9419845 1.267794 0.01197402 -1.267794 1.267794 0.01197402 -1.705268 1.267794 0.01197402 -2.292679 1.267794 0.01197402 -3.081414 1.267794 0.01197402 -4.140474 1.267794 0.01197402 -5.562508 1.267794 0.01197402 -7.471917 1.267794 0.01197402 -10.03574 1.267794 0.01197402 -13.47828 1.267794 0.01197402 -18.10068 1.267794 0.01197402 -24.30731 1.267794 0.01197402 -32.64117 1.267794 0.01197402 -43.83129 1.267794 0.01197402 -58.85664 1.267794 0.01197402 --0.0175068 1.705268 0.01197402 --0.01161267 1.705268 0.01197402 --0.005718534 1.705268 0.01197402 -0.0001755984 1.705268 0.01197402 -0.006069731 1.705268 0.01197402 -0.01197402 1.705268 0.01197402 -0.01903886 1.705268 0.01197402 -0.02852504 1.705268 0.01197402 -0.04126244 1.705268 0.01197402 -0.05836535 1.705268 0.01197402 -0.08132997 1.705268 0.01197402 -0.1121653 1.705268 0.01197402 -0.1535689 1.705268 0.01197402 -0.2091628 1.705268 0.01197402 -0.2838106 1.705268 0.01197402 -0.3840425 1.705268 0.01197402 -0.518627 1.705268 0.01197402 -0.6993381 1.705268 0.01197402 -0.9419845 1.705268 0.01197402 -1.267794 1.705268 0.01197402 -1.705268 1.705268 0.01197402 -2.292679 1.705268 0.01197402 -3.081414 1.705268 0.01197402 -4.140474 1.705268 0.01197402 -5.562508 1.705268 0.01197402 -7.471917 1.705268 0.01197402 -10.03574 1.705268 0.01197402 -13.47828 1.705268 0.01197402 -18.10068 1.705268 0.01197402 -24.30731 1.705268 0.01197402 -32.64117 1.705268 0.01197402 -43.83129 1.705268 0.01197402 -58.85664 1.705268 0.01197402 --0.0175068 2.292679 0.01197402 --0.01161267 2.292679 0.01197402 --0.005718534 2.292679 0.01197402 -0.0001755984 2.292679 0.01197402 -0.006069731 2.292679 0.01197402 -0.01197402 2.292679 0.01197402 -0.01903886 2.292679 0.01197402 -0.02852504 2.292679 0.01197402 -0.04126244 2.292679 0.01197402 -0.05836535 2.292679 0.01197402 -0.08132997 2.292679 0.01197402 -0.1121653 2.292679 0.01197402 -0.1535689 2.292679 0.01197402 -0.2091628 2.292679 0.01197402 -0.2838106 2.292679 0.01197402 -0.3840425 2.292679 0.01197402 -0.518627 2.292679 0.01197402 -0.6993381 2.292679 0.01197402 -0.9419845 2.292679 0.01197402 -1.267794 2.292679 0.01197402 -1.705268 2.292679 0.01197402 -2.292679 2.292679 0.01197402 -3.081414 2.292679 0.01197402 -4.140474 2.292679 0.01197402 -5.562508 2.292679 0.01197402 -7.471917 2.292679 0.01197402 -10.03574 2.292679 0.01197402 -13.47828 2.292679 0.01197402 -18.10068 2.292679 0.01197402 -24.30731 2.292679 0.01197402 -32.64117 2.292679 0.01197402 -43.83129 2.292679 0.01197402 -58.85664 2.292679 0.01197402 --0.0175068 3.081414 0.01197402 --0.01161267 3.081414 0.01197402 --0.005718534 3.081414 0.01197402 -0.0001755984 3.081414 0.01197402 -0.006069731 3.081414 0.01197402 -0.01197402 3.081414 0.01197402 -0.01903886 3.081414 0.01197402 -0.02852504 3.081414 0.01197402 -0.04126244 3.081414 0.01197402 -0.05836535 3.081414 0.01197402 -0.08132997 3.081414 0.01197402 -0.1121653 3.081414 0.01197402 -0.1535689 3.081414 0.01197402 -0.2091628 3.081414 0.01197402 -0.2838106 3.081414 0.01197402 -0.3840425 3.081414 0.01197402 -0.518627 3.081414 0.01197402 -0.6993381 3.081414 0.01197402 -0.9419845 3.081414 0.01197402 -1.267794 3.081414 0.01197402 -1.705268 3.081414 0.01197402 -2.292679 3.081414 0.01197402 -3.081414 3.081414 0.01197402 -4.140474 3.081414 0.01197402 -5.562508 3.081414 0.01197402 -7.471917 3.081414 0.01197402 -10.03574 3.081414 0.01197402 -13.47828 3.081414 0.01197402 -18.10068 3.081414 0.01197402 -24.30731 3.081414 0.01197402 -32.64117 3.081414 0.01197402 -43.83129 3.081414 0.01197402 -58.85664 3.081414 0.01197402 --0.0175068 4.140474 0.01197402 --0.01161267 4.140474 0.01197402 --0.005718534 4.140474 0.01197402 -0.0001755984 4.140474 0.01197402 -0.006069731 4.140474 0.01197402 -0.01197402 4.140474 0.01197402 -0.01903886 4.140474 0.01197402 -0.02852504 4.140474 0.01197402 -0.04126244 4.140474 0.01197402 -0.05836535 4.140474 0.01197402 -0.08132997 4.140474 0.01197402 -0.1121653 4.140474 0.01197402 -0.1535689 4.140474 0.01197402 -0.2091628 4.140474 0.01197402 -0.2838106 4.140474 0.01197402 -0.3840425 4.140474 0.01197402 -0.518627 4.140474 0.01197402 -0.6993381 4.140474 0.01197402 -0.9419845 4.140474 0.01197402 -1.267794 4.140474 0.01197402 -1.705268 4.140474 0.01197402 -2.292679 4.140474 0.01197402 -3.081414 4.140474 0.01197402 -4.140474 4.140474 0.01197402 -5.562508 4.140474 0.01197402 -7.471917 4.140474 0.01197402 -10.03574 4.140474 0.01197402 -13.47828 4.140474 0.01197402 -18.10068 4.140474 0.01197402 -24.30731 4.140474 0.01197402 -32.64117 4.140474 0.01197402 -43.83129 4.140474 0.01197402 -58.85664 4.140474 0.01197402 --0.0175068 5.562508 0.01197402 --0.01161267 5.562508 0.01197402 --0.005718534 5.562508 0.01197402 -0.0001755984 5.562508 0.01197402 -0.006069731 5.562508 0.01197402 -0.01197402 5.562508 0.01197402 -0.01903886 5.562508 0.01197402 -0.02852504 5.562508 0.01197402 -0.04126244 5.562508 0.01197402 -0.05836535 5.562508 0.01197402 -0.08132997 5.562508 0.01197402 -0.1121653 5.562508 0.01197402 -0.1535689 5.562508 0.01197402 -0.2091628 5.562508 0.01197402 -0.2838106 5.562508 0.01197402 -0.3840425 5.562508 0.01197402 -0.518627 5.562508 0.01197402 -0.6993381 5.562508 0.01197402 -0.9419845 5.562508 0.01197402 -1.267794 5.562508 0.01197402 -1.705268 5.562508 0.01197402 -2.292679 5.562508 0.01197402 -3.081414 5.562508 0.01197402 -4.140474 5.562508 0.01197402 -5.562508 5.562508 0.01197402 -7.471917 5.562508 0.01197402 -10.03574 5.562508 0.01197402 -13.47828 5.562508 0.01197402 -18.10068 5.562508 0.01197402 -24.30731 5.562508 0.01197402 -32.64117 5.562508 0.01197402 -43.83129 5.562508 0.01197402 -58.85664 5.562508 0.01197402 --0.0175068 7.471917 0.01197402 --0.01161267 7.471917 0.01197402 --0.005718534 7.471917 0.01197402 -0.0001755984 7.471917 0.01197402 -0.006069731 7.471917 0.01197402 -0.01197402 7.471917 0.01197402 -0.01903886 7.471917 0.01197402 -0.02852504 7.471917 0.01197402 -0.04126244 7.471917 0.01197402 -0.05836535 7.471917 0.01197402 -0.08132997 7.471917 0.01197402 -0.1121653 7.471917 0.01197402 -0.1535689 7.471917 0.01197402 -0.2091628 7.471917 0.01197402 -0.2838106 7.471917 0.01197402 -0.3840425 7.471917 0.01197402 -0.518627 7.471917 0.01197402 -0.6993381 7.471917 0.01197402 -0.9419845 7.471917 0.01197402 -1.267794 7.471917 0.01197402 -1.705268 7.471917 0.01197402 -2.292679 7.471917 0.01197402 -3.081414 7.471917 0.01197402 -4.140474 7.471917 0.01197402 -5.562508 7.471917 0.01197402 -7.471917 7.471917 0.01197402 -10.03574 7.471917 0.01197402 -13.47828 7.471917 0.01197402 -18.10068 7.471917 0.01197402 -24.30731 7.471917 0.01197402 -32.64117 7.471917 0.01197402 -43.83129 7.471917 0.01197402 -58.85664 7.471917 0.01197402 --0.0175068 10.03574 0.01197402 --0.01161267 10.03574 0.01197402 --0.005718534 10.03574 0.01197402 -0.0001755984 10.03574 0.01197402 -0.006069731 10.03574 0.01197402 -0.01197402 10.03574 0.01197402 -0.01903886 10.03574 0.01197402 -0.02852504 10.03574 0.01197402 -0.04126244 10.03574 0.01197402 -0.05836535 10.03574 0.01197402 -0.08132997 10.03574 0.01197402 -0.1121653 10.03574 0.01197402 -0.1535689 10.03574 0.01197402 -0.2091628 10.03574 0.01197402 -0.2838106 10.03574 0.01197402 -0.3840425 10.03574 0.01197402 -0.518627 10.03574 0.01197402 -0.6993381 10.03574 0.01197402 -0.9419845 10.03574 0.01197402 -1.267794 10.03574 0.01197402 -1.705268 10.03574 0.01197402 -2.292679 10.03574 0.01197402 -3.081414 10.03574 0.01197402 -4.140474 10.03574 0.01197402 -5.562508 10.03574 0.01197402 -7.471917 10.03574 0.01197402 -10.03574 10.03574 0.01197402 -13.47828 10.03574 0.01197402 -18.10068 10.03574 0.01197402 -24.30731 10.03574 0.01197402 -32.64117 10.03574 0.01197402 -43.83129 10.03574 0.01197402 -58.85664 10.03574 0.01197402 --0.0175068 13.47828 0.01197402 --0.01161267 13.47828 0.01197402 --0.005718534 13.47828 0.01197402 -0.0001755984 13.47828 0.01197402 -0.006069731 13.47828 0.01197402 -0.01197402 13.47828 0.01197402 -0.01903886 13.47828 0.01197402 -0.02852504 13.47828 0.01197402 -0.04126244 13.47828 0.01197402 -0.05836535 13.47828 0.01197402 -0.08132997 13.47828 0.01197402 -0.1121653 13.47828 0.01197402 -0.1535689 13.47828 0.01197402 -0.2091628 13.47828 0.01197402 -0.2838106 13.47828 0.01197402 -0.3840425 13.47828 0.01197402 -0.518627 13.47828 0.01197402 -0.6993381 13.47828 0.01197402 -0.9419845 13.47828 0.01197402 -1.267794 13.47828 0.01197402 -1.705268 13.47828 0.01197402 -2.292679 13.47828 0.01197402 -3.081414 13.47828 0.01197402 -4.140474 13.47828 0.01197402 -5.562508 13.47828 0.01197402 -7.471917 13.47828 0.01197402 -10.03574 13.47828 0.01197402 -13.47828 13.47828 0.01197402 -18.10068 13.47828 0.01197402 -24.30731 13.47828 0.01197402 -32.64117 13.47828 0.01197402 -43.83129 13.47828 0.01197402 -58.85664 13.47828 0.01197402 --0.0175068 18.10068 0.01197402 --0.01161267 18.10068 0.01197402 --0.005718534 18.10068 0.01197402 -0.0001755984 18.10068 0.01197402 -0.006069731 18.10068 0.01197402 -0.01197402 18.10068 0.01197402 -0.01903886 18.10068 0.01197402 -0.02852504 18.10068 0.01197402 -0.04126244 18.10068 0.01197402 -0.05836535 18.10068 0.01197402 -0.08132997 18.10068 0.01197402 -0.1121653 18.10068 0.01197402 -0.1535689 18.10068 0.01197402 -0.2091628 18.10068 0.01197402 -0.2838106 18.10068 0.01197402 -0.3840425 18.10068 0.01197402 -0.518627 18.10068 0.01197402 -0.6993381 18.10068 0.01197402 -0.9419845 18.10068 0.01197402 -1.267794 18.10068 0.01197402 -1.705268 18.10068 0.01197402 -2.292679 18.10068 0.01197402 -3.081414 18.10068 0.01197402 -4.140474 18.10068 0.01197402 -5.562508 18.10068 0.01197402 -7.471917 18.10068 0.01197402 -10.03574 18.10068 0.01197402 -13.47828 18.10068 0.01197402 -18.10068 18.10068 0.01197402 -24.30731 18.10068 0.01197402 -32.64117 18.10068 0.01197402 -43.83129 18.10068 0.01197402 -58.85664 18.10068 0.01197402 --0.0175068 24.30731 0.01197402 --0.01161267 24.30731 0.01197402 --0.005718534 24.30731 0.01197402 -0.0001755984 24.30731 0.01197402 -0.006069731 24.30731 0.01197402 -0.01197402 24.30731 0.01197402 -0.01903886 24.30731 0.01197402 -0.02852504 24.30731 0.01197402 -0.04126244 24.30731 0.01197402 -0.05836535 24.30731 0.01197402 -0.08132997 24.30731 0.01197402 -0.1121653 24.30731 0.01197402 -0.1535689 24.30731 0.01197402 -0.2091628 24.30731 0.01197402 -0.2838106 24.30731 0.01197402 -0.3840425 24.30731 0.01197402 -0.518627 24.30731 0.01197402 -0.6993381 24.30731 0.01197402 -0.9419845 24.30731 0.01197402 -1.267794 24.30731 0.01197402 -1.705268 24.30731 0.01197402 -2.292679 24.30731 0.01197402 -3.081414 24.30731 0.01197402 -4.140474 24.30731 0.01197402 -5.562508 24.30731 0.01197402 -7.471917 24.30731 0.01197402 -10.03574 24.30731 0.01197402 -13.47828 24.30731 0.01197402 -18.10068 24.30731 0.01197402 -24.30731 24.30731 0.01197402 -32.64117 24.30731 0.01197402 -43.83129 24.30731 0.01197402 -58.85664 24.30731 0.01197402 --0.0175068 32.64117 0.01197402 --0.01161267 32.64117 0.01197402 --0.005718534 32.64117 0.01197402 -0.0001755984 32.64117 0.01197402 -0.006069731 32.64117 0.01197402 -0.01197402 32.64117 0.01197402 -0.01903886 32.64117 0.01197402 -0.02852504 32.64117 0.01197402 -0.04126244 32.64117 0.01197402 -0.05836535 32.64117 0.01197402 -0.08132997 32.64117 0.01197402 -0.1121653 32.64117 0.01197402 -0.1535689 32.64117 0.01197402 -0.2091628 32.64117 0.01197402 -0.2838106 32.64117 0.01197402 -0.3840425 32.64117 0.01197402 -0.518627 32.64117 0.01197402 -0.6993381 32.64117 0.01197402 -0.9419845 32.64117 0.01197402 -1.267794 32.64117 0.01197402 -1.705268 32.64117 0.01197402 -2.292679 32.64117 0.01197402 -3.081414 32.64117 0.01197402 -4.140474 32.64117 0.01197402 -5.562508 32.64117 0.01197402 -7.471917 32.64117 0.01197402 -10.03574 32.64117 0.01197402 -13.47828 32.64117 0.01197402 -18.10068 32.64117 0.01197402 -24.30731 32.64117 0.01197402 -32.64117 32.64117 0.01197402 -43.83129 32.64117 0.01197402 -58.85664 32.64117 0.01197402 --0.0175068 43.83129 0.01197402 --0.01161267 43.83129 0.01197402 --0.005718534 43.83129 0.01197402 -0.0001755984 43.83129 0.01197402 -0.006069731 43.83129 0.01197402 -0.01197402 43.83129 0.01197402 -0.01903886 43.83129 0.01197402 -0.02852504 43.83129 0.01197402 -0.04126244 43.83129 0.01197402 -0.05836535 43.83129 0.01197402 -0.08132997 43.83129 0.01197402 -0.1121653 43.83129 0.01197402 -0.1535689 43.83129 0.01197402 -0.2091628 43.83129 0.01197402 -0.2838106 43.83129 0.01197402 -0.3840425 43.83129 0.01197402 -0.518627 43.83129 0.01197402 -0.6993381 43.83129 0.01197402 -0.9419845 43.83129 0.01197402 -1.267794 43.83129 0.01197402 -1.705268 43.83129 0.01197402 -2.292679 43.83129 0.01197402 -3.081414 43.83129 0.01197402 -4.140474 43.83129 0.01197402 -5.562508 43.83129 0.01197402 -7.471917 43.83129 0.01197402 -10.03574 43.83129 0.01197402 -13.47828 43.83129 0.01197402 -18.10068 43.83129 0.01197402 -24.30731 43.83129 0.01197402 -32.64117 43.83129 0.01197402 -43.83129 43.83129 0.01197402 -58.85664 43.83129 0.01197402 --0.0175068 58.85664 0.01197402 --0.01161267 58.85664 0.01197402 --0.005718534 58.85664 0.01197402 -0.0001755984 58.85664 0.01197402 -0.006069731 58.85664 0.01197402 -0.01197402 58.85664 0.01197402 -0.01903886 58.85664 0.01197402 -0.02852504 58.85664 0.01197402 -0.04126244 58.85664 0.01197402 -0.05836535 58.85664 0.01197402 -0.08132997 58.85664 0.01197402 -0.1121653 58.85664 0.01197402 -0.1535689 58.85664 0.01197402 -0.2091628 58.85664 0.01197402 -0.2838106 58.85664 0.01197402 -0.3840425 58.85664 0.01197402 -0.518627 58.85664 0.01197402 -0.6993381 58.85664 0.01197402 -0.9419845 58.85664 0.01197402 -1.267794 58.85664 0.01197402 -1.705268 58.85664 0.01197402 -2.292679 58.85664 0.01197402 -3.081414 58.85664 0.01197402 -4.140474 58.85664 0.01197402 -5.562508 58.85664 0.01197402 -7.471917 58.85664 0.01197402 -10.03574 58.85664 0.01197402 -13.47828 58.85664 0.01197402 -18.10068 58.85664 0.01197402 -24.30731 58.85664 0.01197402 -32.64117 58.85664 0.01197402 -43.83129 58.85664 0.01197402 -58.85664 58.85664 0.01197402 --0.0175068 -0.0175068 0.01903886 --0.01161267 -0.0175068 0.01903886 --0.005718534 -0.0175068 0.01903886 -0.0001755984 -0.0175068 0.01903886 -0.006069731 -0.0175068 0.01903886 -0.01197402 -0.0175068 0.01903886 -0.01903886 -0.0175068 0.01903886 -0.02852504 -0.0175068 0.01903886 -0.04126244 -0.0175068 0.01903886 -0.05836535 -0.0175068 0.01903886 -0.08132997 -0.0175068 0.01903886 -0.1121653 -0.0175068 0.01903886 -0.1535689 -0.0175068 0.01903886 -0.2091628 -0.0175068 0.01903886 -0.2838106 -0.0175068 0.01903886 -0.3840425 -0.0175068 0.01903886 -0.518627 -0.0175068 0.01903886 -0.6993381 -0.0175068 0.01903886 -0.9419845 -0.0175068 0.01903886 -1.267794 -0.0175068 0.01903886 -1.705268 -0.0175068 0.01903886 -2.292679 -0.0175068 0.01903886 -3.081414 -0.0175068 0.01903886 -4.140474 -0.0175068 0.01903886 -5.562508 -0.0175068 0.01903886 -7.471917 -0.0175068 0.01903886 -10.03574 -0.0175068 0.01903886 -13.47828 -0.0175068 0.01903886 -18.10068 -0.0175068 0.01903886 -24.30731 -0.0175068 0.01903886 -32.64117 -0.0175068 0.01903886 -43.83129 -0.0175068 0.01903886 -58.85664 -0.0175068 0.01903886 --0.0175068 -0.01161267 0.01903886 --0.01161267 -0.01161267 0.01903886 --0.005718534 -0.01161267 0.01903886 -0.0001755984 -0.01161267 0.01903886 -0.006069731 -0.01161267 0.01903886 -0.01197402 -0.01161267 0.01903886 -0.01903886 -0.01161267 0.01903886 -0.02852504 -0.01161267 0.01903886 -0.04126244 -0.01161267 0.01903886 -0.05836535 -0.01161267 0.01903886 -0.08132997 -0.01161267 0.01903886 -0.1121653 -0.01161267 0.01903886 -0.1535689 -0.01161267 0.01903886 -0.2091628 -0.01161267 0.01903886 -0.2838106 -0.01161267 0.01903886 -0.3840425 -0.01161267 0.01903886 -0.518627 -0.01161267 0.01903886 -0.6993381 -0.01161267 0.01903886 -0.9419845 -0.01161267 0.01903886 -1.267794 -0.01161267 0.01903886 -1.705268 -0.01161267 0.01903886 -2.292679 -0.01161267 0.01903886 -3.081414 -0.01161267 0.01903886 -4.140474 -0.01161267 0.01903886 -5.562508 -0.01161267 0.01903886 -7.471917 -0.01161267 0.01903886 -10.03574 -0.01161267 0.01903886 -13.47828 -0.01161267 0.01903886 -18.10068 -0.01161267 0.01903886 -24.30731 -0.01161267 0.01903886 -32.64117 -0.01161267 0.01903886 -43.83129 -0.01161267 0.01903886 -58.85664 -0.01161267 0.01903886 --0.0175068 -0.005718534 0.01903886 --0.01161267 -0.005718534 0.01903886 --0.005718534 -0.005718534 0.01903886 -0.0001755984 -0.005718534 0.01903886 -0.006069731 -0.005718534 0.01903886 -0.01197402 -0.005718534 0.01903886 -0.01903886 -0.005718534 0.01903886 -0.02852504 -0.005718534 0.01903886 -0.04126244 -0.005718534 0.01903886 -0.05836535 -0.005718534 0.01903886 -0.08132997 -0.005718534 0.01903886 -0.1121653 -0.005718534 0.01903886 -0.1535689 -0.005718534 0.01903886 -0.2091628 -0.005718534 0.01903886 -0.2838106 -0.005718534 0.01903886 -0.3840425 -0.005718534 0.01903886 -0.518627 -0.005718534 0.01903886 -0.6993381 -0.005718534 0.01903886 -0.9419845 -0.005718534 0.01903886 -1.267794 -0.005718534 0.01903886 -1.705268 -0.005718534 0.01903886 -2.292679 -0.005718534 0.01903886 -3.081414 -0.005718534 0.01903886 -4.140474 -0.005718534 0.01903886 -5.562508 -0.005718534 0.01903886 -7.471917 -0.005718534 0.01903886 -10.03574 -0.005718534 0.01903886 -13.47828 -0.005718534 0.01903886 -18.10068 -0.005718534 0.01903886 -24.30731 -0.005718534 0.01903886 -32.64117 -0.005718534 0.01903886 -43.83129 -0.005718534 0.01903886 -58.85664 -0.005718534 0.01903886 --0.0175068 0.0001755984 0.01903886 --0.01161267 0.0001755984 0.01903886 --0.005718534 0.0001755984 0.01903886 -0.0001755984 0.0001755984 0.01903886 -0.006069731 0.0001755984 0.01903886 -0.01197402 0.0001755984 0.01903886 -0.01903886 0.0001755984 0.01903886 -0.02852504 0.0001755984 0.01903886 -0.04126244 0.0001755984 0.01903886 -0.05836535 0.0001755984 0.01903886 -0.08132997 0.0001755984 0.01903886 -0.1121653 0.0001755984 0.01903886 -0.1535689 0.0001755984 0.01903886 -0.2091628 0.0001755984 0.01903886 -0.2838106 0.0001755984 0.01903886 -0.3840425 0.0001755984 0.01903886 -0.518627 0.0001755984 0.01903886 -0.6993381 0.0001755984 0.01903886 -0.9419845 0.0001755984 0.01903886 -1.267794 0.0001755984 0.01903886 -1.705268 0.0001755984 0.01903886 -2.292679 0.0001755984 0.01903886 -3.081414 0.0001755984 0.01903886 -4.140474 0.0001755984 0.01903886 -5.562508 0.0001755984 0.01903886 -7.471917 0.0001755984 0.01903886 -10.03574 0.0001755984 0.01903886 -13.47828 0.0001755984 0.01903886 -18.10068 0.0001755984 0.01903886 -24.30731 0.0001755984 0.01903886 -32.64117 0.0001755984 0.01903886 -43.83129 0.0001755984 0.01903886 -58.85664 0.0001755984 0.01903886 --0.0175068 0.006069731 0.01903886 --0.01161267 0.006069731 0.01903886 --0.005718534 0.006069731 0.01903886 -0.0001755984 0.006069731 0.01903886 -0.006069731 0.006069731 0.01903886 -0.01197402 0.006069731 0.01903886 -0.01903886 0.006069731 0.01903886 -0.02852504 0.006069731 0.01903886 -0.04126244 0.006069731 0.01903886 -0.05836535 0.006069731 0.01903886 -0.08132997 0.006069731 0.01903886 -0.1121653 0.006069731 0.01903886 -0.1535689 0.006069731 0.01903886 -0.2091628 0.006069731 0.01903886 -0.2838106 0.006069731 0.01903886 -0.3840425 0.006069731 0.01903886 -0.518627 0.006069731 0.01903886 -0.6993381 0.006069731 0.01903886 -0.9419845 0.006069731 0.01903886 -1.267794 0.006069731 0.01903886 -1.705268 0.006069731 0.01903886 -2.292679 0.006069731 0.01903886 -3.081414 0.006069731 0.01903886 -4.140474 0.006069731 0.01903886 -5.562508 0.006069731 0.01903886 -7.471917 0.006069731 0.01903886 -10.03574 0.006069731 0.01903886 -13.47828 0.006069731 0.01903886 -18.10068 0.006069731 0.01903886 -24.30731 0.006069731 0.01903886 -32.64117 0.006069731 0.01903886 -43.83129 0.006069731 0.01903886 -58.85664 0.006069731 0.01903886 --0.0175068 0.01197402 0.01903886 --0.01161267 0.01197402 0.01903886 --0.005718534 0.01197402 0.01903886 -0.0001755984 0.01197402 0.01903886 -0.006069731 0.01197402 0.01903886 -0.01197402 0.01197402 0.01903886 -0.01903886 0.01197402 0.01903886 -0.02852504 0.01197402 0.01903886 -0.04126244 0.01197402 0.01903886 -0.05836535 0.01197402 0.01903886 -0.08132997 0.01197402 0.01903886 -0.1121653 0.01197402 0.01903886 -0.1535689 0.01197402 0.01903886 -0.2091628 0.01197402 0.01903886 -0.2838106 0.01197402 0.01903886 -0.3840425 0.01197402 0.01903886 -0.518627 0.01197402 0.01903886 -0.6993381 0.01197402 0.01903886 -0.9419845 0.01197402 0.01903886 -1.267794 0.01197402 0.01903886 -1.705268 0.01197402 0.01903886 -2.292679 0.01197402 0.01903886 -3.081414 0.01197402 0.01903886 -4.140474 0.01197402 0.01903886 -5.562508 0.01197402 0.01903886 -7.471917 0.01197402 0.01903886 -10.03574 0.01197402 0.01903886 -13.47828 0.01197402 0.01903886 -18.10068 0.01197402 0.01903886 -24.30731 0.01197402 0.01903886 -32.64117 0.01197402 0.01903886 -43.83129 0.01197402 0.01903886 -58.85664 0.01197402 0.01903886 --0.0175068 0.01903886 0.01903886 --0.01161267 0.01903886 0.01903886 --0.005718534 0.01903886 0.01903886 -0.0001755984 0.01903886 0.01903886 -0.006069731 0.01903886 0.01903886 -0.01197402 0.01903886 0.01903886 -0.01903886 0.01903886 0.01903886 -0.02852504 0.01903886 0.01903886 -0.04126244 0.01903886 0.01903886 -0.05836535 0.01903886 0.01903886 -0.08132997 0.01903886 0.01903886 -0.1121653 0.01903886 0.01903886 -0.1535689 0.01903886 0.01903886 -0.2091628 0.01903886 0.01903886 -0.2838106 0.01903886 0.01903886 -0.3840425 0.01903886 0.01903886 -0.518627 0.01903886 0.01903886 -0.6993381 0.01903886 0.01903886 -0.9419845 0.01903886 0.01903886 -1.267794 0.01903886 0.01903886 -1.705268 0.01903886 0.01903886 -2.292679 0.01903886 0.01903886 -3.081414 0.01903886 0.01903886 -4.140474 0.01903886 0.01903886 -5.562508 0.01903886 0.01903886 -7.471917 0.01903886 0.01903886 -10.03574 0.01903886 0.01903886 -13.47828 0.01903886 0.01903886 -18.10068 0.01903886 0.01903886 -24.30731 0.01903886 0.01903886 -32.64117 0.01903886 0.01903886 -43.83129 0.01903886 0.01903886 -58.85664 0.01903886 0.01903886 --0.0175068 0.02852504 0.01903886 --0.01161267 0.02852504 0.01903886 --0.005718534 0.02852504 0.01903886 -0.0001755984 0.02852504 0.01903886 -0.006069731 0.02852504 0.01903886 -0.01197402 0.02852504 0.01903886 -0.01903886 0.02852504 0.01903886 -0.02852504 0.02852504 0.01903886 -0.04126244 0.02852504 0.01903886 -0.05836535 0.02852504 0.01903886 -0.08132997 0.02852504 0.01903886 -0.1121653 0.02852504 0.01903886 -0.1535689 0.02852504 0.01903886 -0.2091628 0.02852504 0.01903886 -0.2838106 0.02852504 0.01903886 -0.3840425 0.02852504 0.01903886 -0.518627 0.02852504 0.01903886 -0.6993381 0.02852504 0.01903886 -0.9419845 0.02852504 0.01903886 -1.267794 0.02852504 0.01903886 -1.705268 0.02852504 0.01903886 -2.292679 0.02852504 0.01903886 -3.081414 0.02852504 0.01903886 -4.140474 0.02852504 0.01903886 -5.562508 0.02852504 0.01903886 -7.471917 0.02852504 0.01903886 -10.03574 0.02852504 0.01903886 -13.47828 0.02852504 0.01903886 -18.10068 0.02852504 0.01903886 -24.30731 0.02852504 0.01903886 -32.64117 0.02852504 0.01903886 -43.83129 0.02852504 0.01903886 -58.85664 0.02852504 0.01903886 --0.0175068 0.04126244 0.01903886 --0.01161267 0.04126244 0.01903886 --0.005718534 0.04126244 0.01903886 -0.0001755984 0.04126244 0.01903886 -0.006069731 0.04126244 0.01903886 -0.01197402 0.04126244 0.01903886 -0.01903886 0.04126244 0.01903886 -0.02852504 0.04126244 0.01903886 -0.04126244 0.04126244 0.01903886 -0.05836535 0.04126244 0.01903886 -0.08132997 0.04126244 0.01903886 -0.1121653 0.04126244 0.01903886 -0.1535689 0.04126244 0.01903886 -0.2091628 0.04126244 0.01903886 -0.2838106 0.04126244 0.01903886 -0.3840425 0.04126244 0.01903886 -0.518627 0.04126244 0.01903886 -0.6993381 0.04126244 0.01903886 -0.9419845 0.04126244 0.01903886 -1.267794 0.04126244 0.01903886 -1.705268 0.04126244 0.01903886 -2.292679 0.04126244 0.01903886 -3.081414 0.04126244 0.01903886 -4.140474 0.04126244 0.01903886 -5.562508 0.04126244 0.01903886 -7.471917 0.04126244 0.01903886 -10.03574 0.04126244 0.01903886 -13.47828 0.04126244 0.01903886 -18.10068 0.04126244 0.01903886 -24.30731 0.04126244 0.01903886 -32.64117 0.04126244 0.01903886 -43.83129 0.04126244 0.01903886 -58.85664 0.04126244 0.01903886 --0.0175068 0.05836535 0.01903886 --0.01161267 0.05836535 0.01903886 --0.005718534 0.05836535 0.01903886 -0.0001755984 0.05836535 0.01903886 -0.006069731 0.05836535 0.01903886 -0.01197402 0.05836535 0.01903886 -0.01903886 0.05836535 0.01903886 -0.02852504 0.05836535 0.01903886 -0.04126244 0.05836535 0.01903886 -0.05836535 0.05836535 0.01903886 -0.08132997 0.05836535 0.01903886 -0.1121653 0.05836535 0.01903886 -0.1535689 0.05836535 0.01903886 -0.2091628 0.05836535 0.01903886 -0.2838106 0.05836535 0.01903886 -0.3840425 0.05836535 0.01903886 -0.518627 0.05836535 0.01903886 -0.6993381 0.05836535 0.01903886 -0.9419845 0.05836535 0.01903886 -1.267794 0.05836535 0.01903886 -1.705268 0.05836535 0.01903886 -2.292679 0.05836535 0.01903886 -3.081414 0.05836535 0.01903886 -4.140474 0.05836535 0.01903886 -5.562508 0.05836535 0.01903886 -7.471917 0.05836535 0.01903886 -10.03574 0.05836535 0.01903886 -13.47828 0.05836535 0.01903886 -18.10068 0.05836535 0.01903886 -24.30731 0.05836535 0.01903886 -32.64117 0.05836535 0.01903886 -43.83129 0.05836535 0.01903886 -58.85664 0.05836535 0.01903886 --0.0175068 0.08132997 0.01903886 --0.01161267 0.08132997 0.01903886 --0.005718534 0.08132997 0.01903886 -0.0001755984 0.08132997 0.01903886 -0.006069731 0.08132997 0.01903886 -0.01197402 0.08132997 0.01903886 -0.01903886 0.08132997 0.01903886 -0.02852504 0.08132997 0.01903886 -0.04126244 0.08132997 0.01903886 -0.05836535 0.08132997 0.01903886 -0.08132997 0.08132997 0.01903886 -0.1121653 0.08132997 0.01903886 -0.1535689 0.08132997 0.01903886 -0.2091628 0.08132997 0.01903886 -0.2838106 0.08132997 0.01903886 -0.3840425 0.08132997 0.01903886 -0.518627 0.08132997 0.01903886 -0.6993381 0.08132997 0.01903886 -0.9419845 0.08132997 0.01903886 -1.267794 0.08132997 0.01903886 -1.705268 0.08132997 0.01903886 -2.292679 0.08132997 0.01903886 -3.081414 0.08132997 0.01903886 -4.140474 0.08132997 0.01903886 -5.562508 0.08132997 0.01903886 -7.471917 0.08132997 0.01903886 -10.03574 0.08132997 0.01903886 -13.47828 0.08132997 0.01903886 -18.10068 0.08132997 0.01903886 -24.30731 0.08132997 0.01903886 -32.64117 0.08132997 0.01903886 -43.83129 0.08132997 0.01903886 -58.85664 0.08132997 0.01903886 --0.0175068 0.1121653 0.01903886 --0.01161267 0.1121653 0.01903886 --0.005718534 0.1121653 0.01903886 -0.0001755984 0.1121653 0.01903886 -0.006069731 0.1121653 0.01903886 -0.01197402 0.1121653 0.01903886 -0.01903886 0.1121653 0.01903886 -0.02852504 0.1121653 0.01903886 -0.04126244 0.1121653 0.01903886 -0.05836535 0.1121653 0.01903886 -0.08132997 0.1121653 0.01903886 -0.1121653 0.1121653 0.01903886 -0.1535689 0.1121653 0.01903886 -0.2091628 0.1121653 0.01903886 -0.2838106 0.1121653 0.01903886 -0.3840425 0.1121653 0.01903886 -0.518627 0.1121653 0.01903886 -0.6993381 0.1121653 0.01903886 -0.9419845 0.1121653 0.01903886 -1.267794 0.1121653 0.01903886 -1.705268 0.1121653 0.01903886 -2.292679 0.1121653 0.01903886 -3.081414 0.1121653 0.01903886 -4.140474 0.1121653 0.01903886 -5.562508 0.1121653 0.01903886 -7.471917 0.1121653 0.01903886 -10.03574 0.1121653 0.01903886 -13.47828 0.1121653 0.01903886 -18.10068 0.1121653 0.01903886 -24.30731 0.1121653 0.01903886 -32.64117 0.1121653 0.01903886 -43.83129 0.1121653 0.01903886 -58.85664 0.1121653 0.01903886 --0.0175068 0.1535689 0.01903886 --0.01161267 0.1535689 0.01903886 --0.005718534 0.1535689 0.01903886 -0.0001755984 0.1535689 0.01903886 -0.006069731 0.1535689 0.01903886 -0.01197402 0.1535689 0.01903886 -0.01903886 0.1535689 0.01903886 -0.02852504 0.1535689 0.01903886 -0.04126244 0.1535689 0.01903886 -0.05836535 0.1535689 0.01903886 -0.08132997 0.1535689 0.01903886 -0.1121653 0.1535689 0.01903886 -0.1535689 0.1535689 0.01903886 -0.2091628 0.1535689 0.01903886 -0.2838106 0.1535689 0.01903886 -0.3840425 0.1535689 0.01903886 -0.518627 0.1535689 0.01903886 -0.6993381 0.1535689 0.01903886 -0.9419845 0.1535689 0.01903886 -1.267794 0.1535689 0.01903886 -1.705268 0.1535689 0.01903886 -2.292679 0.1535689 0.01903886 -3.081414 0.1535689 0.01903886 -4.140474 0.1535689 0.01903886 -5.562508 0.1535689 0.01903886 -7.471917 0.1535689 0.01903886 -10.03574 0.1535689 0.01903886 -13.47828 0.1535689 0.01903886 -18.10068 0.1535689 0.01903886 -24.30731 0.1535689 0.01903886 -32.64117 0.1535689 0.01903886 -43.83129 0.1535689 0.01903886 -58.85664 0.1535689 0.01903886 --0.0175068 0.2091628 0.01903886 --0.01161267 0.2091628 0.01903886 --0.005718534 0.2091628 0.01903886 -0.0001755984 0.2091628 0.01903886 -0.006069731 0.2091628 0.01903886 -0.01197402 0.2091628 0.01903886 -0.01903886 0.2091628 0.01903886 -0.02852504 0.2091628 0.01903886 -0.04126244 0.2091628 0.01903886 -0.05836535 0.2091628 0.01903886 -0.08132997 0.2091628 0.01903886 -0.1121653 0.2091628 0.01903886 -0.1535689 0.2091628 0.01903886 -0.2091628 0.2091628 0.01903886 -0.2838106 0.2091628 0.01903886 -0.3840425 0.2091628 0.01903886 -0.518627 0.2091628 0.01903886 -0.6993381 0.2091628 0.01903886 -0.9419845 0.2091628 0.01903886 -1.267794 0.2091628 0.01903886 -1.705268 0.2091628 0.01903886 -2.292679 0.2091628 0.01903886 -3.081414 0.2091628 0.01903886 -4.140474 0.2091628 0.01903886 -5.562508 0.2091628 0.01903886 -7.471917 0.2091628 0.01903886 -10.03574 0.2091628 0.01903886 -13.47828 0.2091628 0.01903886 -18.10068 0.2091628 0.01903886 -24.30731 0.2091628 0.01903886 -32.64117 0.2091628 0.01903886 -43.83129 0.2091628 0.01903886 -58.85664 0.2091628 0.01903886 --0.0175068 0.2838106 0.01903886 --0.01161267 0.2838106 0.01903886 --0.005718534 0.2838106 0.01903886 -0.0001755984 0.2838106 0.01903886 -0.006069731 0.2838106 0.01903886 -0.01197402 0.2838106 0.01903886 -0.01903886 0.2838106 0.01903886 -0.02852504 0.2838106 0.01903886 -0.04126244 0.2838106 0.01903886 -0.05836535 0.2838106 0.01903886 -0.08132997 0.2838106 0.01903886 -0.1121653 0.2838106 0.01903886 -0.1535689 0.2838106 0.01903886 -0.2091628 0.2838106 0.01903886 -0.2838106 0.2838106 0.01903886 -0.3840425 0.2838106 0.01903886 -0.518627 0.2838106 0.01903886 -0.6993381 0.2838106 0.01903886 -0.9419845 0.2838106 0.01903886 -1.267794 0.2838106 0.01903886 -1.705268 0.2838106 0.01903886 -2.292679 0.2838106 0.01903886 -3.081414 0.2838106 0.01903886 -4.140474 0.2838106 0.01903886 -5.562508 0.2838106 0.01903886 -7.471917 0.2838106 0.01903886 -10.03574 0.2838106 0.01903886 -13.47828 0.2838106 0.01903886 -18.10068 0.2838106 0.01903886 -24.30731 0.2838106 0.01903886 -32.64117 0.2838106 0.01903886 -43.83129 0.2838106 0.01903886 -58.85664 0.2838106 0.01903886 --0.0175068 0.3840425 0.01903886 --0.01161267 0.3840425 0.01903886 --0.005718534 0.3840425 0.01903886 -0.0001755984 0.3840425 0.01903886 -0.006069731 0.3840425 0.01903886 -0.01197402 0.3840425 0.01903886 -0.01903886 0.3840425 0.01903886 -0.02852504 0.3840425 0.01903886 -0.04126244 0.3840425 0.01903886 -0.05836535 0.3840425 0.01903886 -0.08132997 0.3840425 0.01903886 -0.1121653 0.3840425 0.01903886 -0.1535689 0.3840425 0.01903886 -0.2091628 0.3840425 0.01903886 -0.2838106 0.3840425 0.01903886 -0.3840425 0.3840425 0.01903886 -0.518627 0.3840425 0.01903886 -0.6993381 0.3840425 0.01903886 -0.9419845 0.3840425 0.01903886 -1.267794 0.3840425 0.01903886 -1.705268 0.3840425 0.01903886 -2.292679 0.3840425 0.01903886 -3.081414 0.3840425 0.01903886 -4.140474 0.3840425 0.01903886 -5.562508 0.3840425 0.01903886 -7.471917 0.3840425 0.01903886 -10.03574 0.3840425 0.01903886 -13.47828 0.3840425 0.01903886 -18.10068 0.3840425 0.01903886 -24.30731 0.3840425 0.01903886 -32.64117 0.3840425 0.01903886 -43.83129 0.3840425 0.01903886 -58.85664 0.3840425 0.01903886 --0.0175068 0.518627 0.01903886 --0.01161267 0.518627 0.01903886 --0.005718534 0.518627 0.01903886 -0.0001755984 0.518627 0.01903886 -0.006069731 0.518627 0.01903886 -0.01197402 0.518627 0.01903886 -0.01903886 0.518627 0.01903886 -0.02852504 0.518627 0.01903886 -0.04126244 0.518627 0.01903886 -0.05836535 0.518627 0.01903886 -0.08132997 0.518627 0.01903886 -0.1121653 0.518627 0.01903886 -0.1535689 0.518627 0.01903886 -0.2091628 0.518627 0.01903886 -0.2838106 0.518627 0.01903886 -0.3840425 0.518627 0.01903886 -0.518627 0.518627 0.01903886 -0.6993381 0.518627 0.01903886 -0.9419845 0.518627 0.01903886 -1.267794 0.518627 0.01903886 -1.705268 0.518627 0.01903886 -2.292679 0.518627 0.01903886 -3.081414 0.518627 0.01903886 -4.140474 0.518627 0.01903886 -5.562508 0.518627 0.01903886 -7.471917 0.518627 0.01903886 -10.03574 0.518627 0.01903886 -13.47828 0.518627 0.01903886 -18.10068 0.518627 0.01903886 -24.30731 0.518627 0.01903886 -32.64117 0.518627 0.01903886 -43.83129 0.518627 0.01903886 -58.85664 0.518627 0.01903886 --0.0175068 0.6993381 0.01903886 --0.01161267 0.6993381 0.01903886 --0.005718534 0.6993381 0.01903886 -0.0001755984 0.6993381 0.01903886 -0.006069731 0.6993381 0.01903886 -0.01197402 0.6993381 0.01903886 -0.01903886 0.6993381 0.01903886 -0.02852504 0.6993381 0.01903886 -0.04126244 0.6993381 0.01903886 -0.05836535 0.6993381 0.01903886 -0.08132997 0.6993381 0.01903886 -0.1121653 0.6993381 0.01903886 -0.1535689 0.6993381 0.01903886 -0.2091628 0.6993381 0.01903886 -0.2838106 0.6993381 0.01903886 -0.3840425 0.6993381 0.01903886 -0.518627 0.6993381 0.01903886 -0.6993381 0.6993381 0.01903886 -0.9419845 0.6993381 0.01903886 -1.267794 0.6993381 0.01903886 -1.705268 0.6993381 0.01903886 -2.292679 0.6993381 0.01903886 -3.081414 0.6993381 0.01903886 -4.140474 0.6993381 0.01903886 -5.562508 0.6993381 0.01903886 -7.471917 0.6993381 0.01903886 -10.03574 0.6993381 0.01903886 -13.47828 0.6993381 0.01903886 -18.10068 0.6993381 0.01903886 -24.30731 0.6993381 0.01903886 -32.64117 0.6993381 0.01903886 -43.83129 0.6993381 0.01903886 -58.85664 0.6993381 0.01903886 --0.0175068 0.9419845 0.01903886 --0.01161267 0.9419845 0.01903886 --0.005718534 0.9419845 0.01903886 -0.0001755984 0.9419845 0.01903886 -0.006069731 0.9419845 0.01903886 -0.01197402 0.9419845 0.01903886 -0.01903886 0.9419845 0.01903886 -0.02852504 0.9419845 0.01903886 -0.04126244 0.9419845 0.01903886 -0.05836535 0.9419845 0.01903886 -0.08132997 0.9419845 0.01903886 -0.1121653 0.9419845 0.01903886 -0.1535689 0.9419845 0.01903886 -0.2091628 0.9419845 0.01903886 -0.2838106 0.9419845 0.01903886 -0.3840425 0.9419845 0.01903886 -0.518627 0.9419845 0.01903886 -0.6993381 0.9419845 0.01903886 -0.9419845 0.9419845 0.01903886 -1.267794 0.9419845 0.01903886 -1.705268 0.9419845 0.01903886 -2.292679 0.9419845 0.01903886 -3.081414 0.9419845 0.01903886 -4.140474 0.9419845 0.01903886 -5.562508 0.9419845 0.01903886 -7.471917 0.9419845 0.01903886 -10.03574 0.9419845 0.01903886 -13.47828 0.9419845 0.01903886 -18.10068 0.9419845 0.01903886 -24.30731 0.9419845 0.01903886 -32.64117 0.9419845 0.01903886 -43.83129 0.9419845 0.01903886 -58.85664 0.9419845 0.01903886 --0.0175068 1.267794 0.01903886 --0.01161267 1.267794 0.01903886 --0.005718534 1.267794 0.01903886 -0.0001755984 1.267794 0.01903886 -0.006069731 1.267794 0.01903886 -0.01197402 1.267794 0.01903886 -0.01903886 1.267794 0.01903886 -0.02852504 1.267794 0.01903886 -0.04126244 1.267794 0.01903886 -0.05836535 1.267794 0.01903886 -0.08132997 1.267794 0.01903886 -0.1121653 1.267794 0.01903886 -0.1535689 1.267794 0.01903886 -0.2091628 1.267794 0.01903886 -0.2838106 1.267794 0.01903886 -0.3840425 1.267794 0.01903886 -0.518627 1.267794 0.01903886 -0.6993381 1.267794 0.01903886 -0.9419845 1.267794 0.01903886 -1.267794 1.267794 0.01903886 -1.705268 1.267794 0.01903886 -2.292679 1.267794 0.01903886 -3.081414 1.267794 0.01903886 -4.140474 1.267794 0.01903886 -5.562508 1.267794 0.01903886 -7.471917 1.267794 0.01903886 -10.03574 1.267794 0.01903886 -13.47828 1.267794 0.01903886 -18.10068 1.267794 0.01903886 -24.30731 1.267794 0.01903886 -32.64117 1.267794 0.01903886 -43.83129 1.267794 0.01903886 -58.85664 1.267794 0.01903886 --0.0175068 1.705268 0.01903886 --0.01161267 1.705268 0.01903886 --0.005718534 1.705268 0.01903886 -0.0001755984 1.705268 0.01903886 -0.006069731 1.705268 0.01903886 -0.01197402 1.705268 0.01903886 -0.01903886 1.705268 0.01903886 -0.02852504 1.705268 0.01903886 -0.04126244 1.705268 0.01903886 -0.05836535 1.705268 0.01903886 -0.08132997 1.705268 0.01903886 -0.1121653 1.705268 0.01903886 -0.1535689 1.705268 0.01903886 -0.2091628 1.705268 0.01903886 -0.2838106 1.705268 0.01903886 -0.3840425 1.705268 0.01903886 -0.518627 1.705268 0.01903886 -0.6993381 1.705268 0.01903886 -0.9419845 1.705268 0.01903886 -1.267794 1.705268 0.01903886 -1.705268 1.705268 0.01903886 -2.292679 1.705268 0.01903886 -3.081414 1.705268 0.01903886 -4.140474 1.705268 0.01903886 -5.562508 1.705268 0.01903886 -7.471917 1.705268 0.01903886 -10.03574 1.705268 0.01903886 -13.47828 1.705268 0.01903886 -18.10068 1.705268 0.01903886 -24.30731 1.705268 0.01903886 -32.64117 1.705268 0.01903886 -43.83129 1.705268 0.01903886 -58.85664 1.705268 0.01903886 --0.0175068 2.292679 0.01903886 --0.01161267 2.292679 0.01903886 --0.005718534 2.292679 0.01903886 -0.0001755984 2.292679 0.01903886 -0.006069731 2.292679 0.01903886 -0.01197402 2.292679 0.01903886 -0.01903886 2.292679 0.01903886 -0.02852504 2.292679 0.01903886 -0.04126244 2.292679 0.01903886 -0.05836535 2.292679 0.01903886 -0.08132997 2.292679 0.01903886 -0.1121653 2.292679 0.01903886 -0.1535689 2.292679 0.01903886 -0.2091628 2.292679 0.01903886 -0.2838106 2.292679 0.01903886 -0.3840425 2.292679 0.01903886 -0.518627 2.292679 0.01903886 -0.6993381 2.292679 0.01903886 -0.9419845 2.292679 0.01903886 -1.267794 2.292679 0.01903886 -1.705268 2.292679 0.01903886 -2.292679 2.292679 0.01903886 -3.081414 2.292679 0.01903886 -4.140474 2.292679 0.01903886 -5.562508 2.292679 0.01903886 -7.471917 2.292679 0.01903886 -10.03574 2.292679 0.01903886 -13.47828 2.292679 0.01903886 -18.10068 2.292679 0.01903886 -24.30731 2.292679 0.01903886 -32.64117 2.292679 0.01903886 -43.83129 2.292679 0.01903886 -58.85664 2.292679 0.01903886 --0.0175068 3.081414 0.01903886 --0.01161267 3.081414 0.01903886 --0.005718534 3.081414 0.01903886 -0.0001755984 3.081414 0.01903886 -0.006069731 3.081414 0.01903886 -0.01197402 3.081414 0.01903886 -0.01903886 3.081414 0.01903886 -0.02852504 3.081414 0.01903886 -0.04126244 3.081414 0.01903886 -0.05836535 3.081414 0.01903886 -0.08132997 3.081414 0.01903886 -0.1121653 3.081414 0.01903886 -0.1535689 3.081414 0.01903886 -0.2091628 3.081414 0.01903886 -0.2838106 3.081414 0.01903886 -0.3840425 3.081414 0.01903886 -0.518627 3.081414 0.01903886 -0.6993381 3.081414 0.01903886 -0.9419845 3.081414 0.01903886 -1.267794 3.081414 0.01903886 -1.705268 3.081414 0.01903886 -2.292679 3.081414 0.01903886 -3.081414 3.081414 0.01903886 -4.140474 3.081414 0.01903886 -5.562508 3.081414 0.01903886 -7.471917 3.081414 0.01903886 -10.03574 3.081414 0.01903886 -13.47828 3.081414 0.01903886 -18.10068 3.081414 0.01903886 -24.30731 3.081414 0.01903886 -32.64117 3.081414 0.01903886 -43.83129 3.081414 0.01903886 -58.85664 3.081414 0.01903886 --0.0175068 4.140474 0.01903886 --0.01161267 4.140474 0.01903886 --0.005718534 4.140474 0.01903886 -0.0001755984 4.140474 0.01903886 -0.006069731 4.140474 0.01903886 -0.01197402 4.140474 0.01903886 -0.01903886 4.140474 0.01903886 -0.02852504 4.140474 0.01903886 -0.04126244 4.140474 0.01903886 -0.05836535 4.140474 0.01903886 -0.08132997 4.140474 0.01903886 -0.1121653 4.140474 0.01903886 -0.1535689 4.140474 0.01903886 -0.2091628 4.140474 0.01903886 -0.2838106 4.140474 0.01903886 -0.3840425 4.140474 0.01903886 -0.518627 4.140474 0.01903886 -0.6993381 4.140474 0.01903886 -0.9419845 4.140474 0.01903886 -1.267794 4.140474 0.01903886 -1.705268 4.140474 0.01903886 -2.292679 4.140474 0.01903886 -3.081414 4.140474 0.01903886 -4.140474 4.140474 0.01903886 -5.562508 4.140474 0.01903886 -7.471917 4.140474 0.01903886 -10.03574 4.140474 0.01903886 -13.47828 4.140474 0.01903886 -18.10068 4.140474 0.01903886 -24.30731 4.140474 0.01903886 -32.64117 4.140474 0.01903886 -43.83129 4.140474 0.01903886 -58.85664 4.140474 0.01903886 --0.0175068 5.562508 0.01903886 --0.01161267 5.562508 0.01903886 --0.005718534 5.562508 0.01903886 -0.0001755984 5.562508 0.01903886 -0.006069731 5.562508 0.01903886 -0.01197402 5.562508 0.01903886 -0.01903886 5.562508 0.01903886 -0.02852504 5.562508 0.01903886 -0.04126244 5.562508 0.01903886 -0.05836535 5.562508 0.01903886 -0.08132997 5.562508 0.01903886 -0.1121653 5.562508 0.01903886 -0.1535689 5.562508 0.01903886 -0.2091628 5.562508 0.01903886 -0.2838106 5.562508 0.01903886 -0.3840425 5.562508 0.01903886 -0.518627 5.562508 0.01903886 -0.6993381 5.562508 0.01903886 -0.9419845 5.562508 0.01903886 -1.267794 5.562508 0.01903886 -1.705268 5.562508 0.01903886 -2.292679 5.562508 0.01903886 -3.081414 5.562508 0.01903886 -4.140474 5.562508 0.01903886 -5.562508 5.562508 0.01903886 -7.471917 5.562508 0.01903886 -10.03574 5.562508 0.01903886 -13.47828 5.562508 0.01903886 -18.10068 5.562508 0.01903886 -24.30731 5.562508 0.01903886 -32.64117 5.562508 0.01903886 -43.83129 5.562508 0.01903886 -58.85664 5.562508 0.01903886 --0.0175068 7.471917 0.01903886 --0.01161267 7.471917 0.01903886 --0.005718534 7.471917 0.01903886 -0.0001755984 7.471917 0.01903886 -0.006069731 7.471917 0.01903886 -0.01197402 7.471917 0.01903886 -0.01903886 7.471917 0.01903886 -0.02852504 7.471917 0.01903886 -0.04126244 7.471917 0.01903886 -0.05836535 7.471917 0.01903886 -0.08132997 7.471917 0.01903886 -0.1121653 7.471917 0.01903886 -0.1535689 7.471917 0.01903886 -0.2091628 7.471917 0.01903886 -0.2838106 7.471917 0.01903886 -0.3840425 7.471917 0.01903886 -0.518627 7.471917 0.01903886 -0.6993381 7.471917 0.01903886 -0.9419845 7.471917 0.01903886 -1.267794 7.471917 0.01903886 -1.705268 7.471917 0.01903886 -2.292679 7.471917 0.01903886 -3.081414 7.471917 0.01903886 -4.140474 7.471917 0.01903886 -5.562508 7.471917 0.01903886 -7.471917 7.471917 0.01903886 -10.03574 7.471917 0.01903886 -13.47828 7.471917 0.01903886 -18.10068 7.471917 0.01903886 -24.30731 7.471917 0.01903886 -32.64117 7.471917 0.01903886 -43.83129 7.471917 0.01903886 -58.85664 7.471917 0.01903886 --0.0175068 10.03574 0.01903886 --0.01161267 10.03574 0.01903886 --0.005718534 10.03574 0.01903886 -0.0001755984 10.03574 0.01903886 -0.006069731 10.03574 0.01903886 -0.01197402 10.03574 0.01903886 -0.01903886 10.03574 0.01903886 -0.02852504 10.03574 0.01903886 -0.04126244 10.03574 0.01903886 -0.05836535 10.03574 0.01903886 -0.08132997 10.03574 0.01903886 -0.1121653 10.03574 0.01903886 -0.1535689 10.03574 0.01903886 -0.2091628 10.03574 0.01903886 -0.2838106 10.03574 0.01903886 -0.3840425 10.03574 0.01903886 -0.518627 10.03574 0.01903886 -0.6993381 10.03574 0.01903886 -0.9419845 10.03574 0.01903886 -1.267794 10.03574 0.01903886 -1.705268 10.03574 0.01903886 -2.292679 10.03574 0.01903886 -3.081414 10.03574 0.01903886 -4.140474 10.03574 0.01903886 -5.562508 10.03574 0.01903886 -7.471917 10.03574 0.01903886 -10.03574 10.03574 0.01903886 -13.47828 10.03574 0.01903886 -18.10068 10.03574 0.01903886 -24.30731 10.03574 0.01903886 -32.64117 10.03574 0.01903886 -43.83129 10.03574 0.01903886 -58.85664 10.03574 0.01903886 --0.0175068 13.47828 0.01903886 --0.01161267 13.47828 0.01903886 --0.005718534 13.47828 0.01903886 -0.0001755984 13.47828 0.01903886 -0.006069731 13.47828 0.01903886 -0.01197402 13.47828 0.01903886 -0.01903886 13.47828 0.01903886 -0.02852504 13.47828 0.01903886 -0.04126244 13.47828 0.01903886 -0.05836535 13.47828 0.01903886 -0.08132997 13.47828 0.01903886 -0.1121653 13.47828 0.01903886 -0.1535689 13.47828 0.01903886 -0.2091628 13.47828 0.01903886 -0.2838106 13.47828 0.01903886 -0.3840425 13.47828 0.01903886 -0.518627 13.47828 0.01903886 -0.6993381 13.47828 0.01903886 -0.9419845 13.47828 0.01903886 -1.267794 13.47828 0.01903886 -1.705268 13.47828 0.01903886 -2.292679 13.47828 0.01903886 -3.081414 13.47828 0.01903886 -4.140474 13.47828 0.01903886 -5.562508 13.47828 0.01903886 -7.471917 13.47828 0.01903886 -10.03574 13.47828 0.01903886 -13.47828 13.47828 0.01903886 -18.10068 13.47828 0.01903886 -24.30731 13.47828 0.01903886 -32.64117 13.47828 0.01903886 -43.83129 13.47828 0.01903886 -58.85664 13.47828 0.01903886 --0.0175068 18.10068 0.01903886 --0.01161267 18.10068 0.01903886 --0.005718534 18.10068 0.01903886 -0.0001755984 18.10068 0.01903886 -0.006069731 18.10068 0.01903886 -0.01197402 18.10068 0.01903886 -0.01903886 18.10068 0.01903886 -0.02852504 18.10068 0.01903886 -0.04126244 18.10068 0.01903886 -0.05836535 18.10068 0.01903886 -0.08132997 18.10068 0.01903886 -0.1121653 18.10068 0.01903886 -0.1535689 18.10068 0.01903886 -0.2091628 18.10068 0.01903886 -0.2838106 18.10068 0.01903886 -0.3840425 18.10068 0.01903886 -0.518627 18.10068 0.01903886 -0.6993381 18.10068 0.01903886 -0.9419845 18.10068 0.01903886 -1.267794 18.10068 0.01903886 -1.705268 18.10068 0.01903886 -2.292679 18.10068 0.01903886 -3.081414 18.10068 0.01903886 -4.140474 18.10068 0.01903886 -5.562508 18.10068 0.01903886 -7.471917 18.10068 0.01903886 -10.03574 18.10068 0.01903886 -13.47828 18.10068 0.01903886 -18.10068 18.10068 0.01903886 -24.30731 18.10068 0.01903886 -32.64117 18.10068 0.01903886 -43.83129 18.10068 0.01903886 -58.85664 18.10068 0.01903886 --0.0175068 24.30731 0.01903886 --0.01161267 24.30731 0.01903886 --0.005718534 24.30731 0.01903886 -0.0001755984 24.30731 0.01903886 -0.006069731 24.30731 0.01903886 -0.01197402 24.30731 0.01903886 -0.01903886 24.30731 0.01903886 -0.02852504 24.30731 0.01903886 -0.04126244 24.30731 0.01903886 -0.05836535 24.30731 0.01903886 -0.08132997 24.30731 0.01903886 -0.1121653 24.30731 0.01903886 -0.1535689 24.30731 0.01903886 -0.2091628 24.30731 0.01903886 -0.2838106 24.30731 0.01903886 -0.3840425 24.30731 0.01903886 -0.518627 24.30731 0.01903886 -0.6993381 24.30731 0.01903886 -0.9419845 24.30731 0.01903886 -1.267794 24.30731 0.01903886 -1.705268 24.30731 0.01903886 -2.292679 24.30731 0.01903886 -3.081414 24.30731 0.01903886 -4.140474 24.30731 0.01903886 -5.562508 24.30731 0.01903886 -7.471917 24.30731 0.01903886 -10.03574 24.30731 0.01903886 -13.47828 24.30731 0.01903886 -18.10068 24.30731 0.01903886 -24.30731 24.30731 0.01903886 -32.64117 24.30731 0.01903886 -43.83129 24.30731 0.01903886 -58.85664 24.30731 0.01903886 --0.0175068 32.64117 0.01903886 --0.01161267 32.64117 0.01903886 --0.005718534 32.64117 0.01903886 -0.0001755984 32.64117 0.01903886 -0.006069731 32.64117 0.01903886 -0.01197402 32.64117 0.01903886 -0.01903886 32.64117 0.01903886 -0.02852504 32.64117 0.01903886 -0.04126244 32.64117 0.01903886 -0.05836535 32.64117 0.01903886 -0.08132997 32.64117 0.01903886 -0.1121653 32.64117 0.01903886 -0.1535689 32.64117 0.01903886 -0.2091628 32.64117 0.01903886 -0.2838106 32.64117 0.01903886 -0.3840425 32.64117 0.01903886 -0.518627 32.64117 0.01903886 -0.6993381 32.64117 0.01903886 -0.9419845 32.64117 0.01903886 -1.267794 32.64117 0.01903886 -1.705268 32.64117 0.01903886 -2.292679 32.64117 0.01903886 -3.081414 32.64117 0.01903886 -4.140474 32.64117 0.01903886 -5.562508 32.64117 0.01903886 -7.471917 32.64117 0.01903886 -10.03574 32.64117 0.01903886 -13.47828 32.64117 0.01903886 -18.10068 32.64117 0.01903886 -24.30731 32.64117 0.01903886 -32.64117 32.64117 0.01903886 -43.83129 32.64117 0.01903886 -58.85664 32.64117 0.01903886 --0.0175068 43.83129 0.01903886 --0.01161267 43.83129 0.01903886 --0.005718534 43.83129 0.01903886 -0.0001755984 43.83129 0.01903886 -0.006069731 43.83129 0.01903886 -0.01197402 43.83129 0.01903886 -0.01903886 43.83129 0.01903886 -0.02852504 43.83129 0.01903886 -0.04126244 43.83129 0.01903886 -0.05836535 43.83129 0.01903886 -0.08132997 43.83129 0.01903886 -0.1121653 43.83129 0.01903886 -0.1535689 43.83129 0.01903886 -0.2091628 43.83129 0.01903886 -0.2838106 43.83129 0.01903886 -0.3840425 43.83129 0.01903886 -0.518627 43.83129 0.01903886 -0.6993381 43.83129 0.01903886 -0.9419845 43.83129 0.01903886 -1.267794 43.83129 0.01903886 -1.705268 43.83129 0.01903886 -2.292679 43.83129 0.01903886 -3.081414 43.83129 0.01903886 -4.140474 43.83129 0.01903886 -5.562508 43.83129 0.01903886 -7.471917 43.83129 0.01903886 -10.03574 43.83129 0.01903886 -13.47828 43.83129 0.01903886 -18.10068 43.83129 0.01903886 -24.30731 43.83129 0.01903886 -32.64117 43.83129 0.01903886 -43.83129 43.83129 0.01903886 -58.85664 43.83129 0.01903886 --0.0175068 58.85664 0.01903886 --0.01161267 58.85664 0.01903886 --0.005718534 58.85664 0.01903886 -0.0001755984 58.85664 0.01903886 -0.006069731 58.85664 0.01903886 -0.01197402 58.85664 0.01903886 -0.01903886 58.85664 0.01903886 -0.02852504 58.85664 0.01903886 -0.04126244 58.85664 0.01903886 -0.05836535 58.85664 0.01903886 -0.08132997 58.85664 0.01903886 -0.1121653 58.85664 0.01903886 -0.1535689 58.85664 0.01903886 -0.2091628 58.85664 0.01903886 -0.2838106 58.85664 0.01903886 -0.3840425 58.85664 0.01903886 -0.518627 58.85664 0.01903886 -0.6993381 58.85664 0.01903886 -0.9419845 58.85664 0.01903886 -1.267794 58.85664 0.01903886 -1.705268 58.85664 0.01903886 -2.292679 58.85664 0.01903886 -3.081414 58.85664 0.01903886 -4.140474 58.85664 0.01903886 -5.562508 58.85664 0.01903886 -7.471917 58.85664 0.01903886 -10.03574 58.85664 0.01903886 -13.47828 58.85664 0.01903886 -18.10068 58.85664 0.01903886 -24.30731 58.85664 0.01903886 -32.64117 58.85664 0.01903886 -43.83129 58.85664 0.01903886 -58.85664 58.85664 0.01903886 --0.0175068 -0.0175068 0.02852504 --0.01161267 -0.0175068 0.02852504 --0.005718534 -0.0175068 0.02852504 -0.0001755984 -0.0175068 0.02852504 -0.006069731 -0.0175068 0.02852504 -0.01197402 -0.0175068 0.02852504 -0.01903886 -0.0175068 0.02852504 -0.02852504 -0.0175068 0.02852504 -0.04126244 -0.0175068 0.02852504 -0.05836535 -0.0175068 0.02852504 -0.08132997 -0.0175068 0.02852504 -0.1121653 -0.0175068 0.02852504 -0.1535689 -0.0175068 0.02852504 -0.2091628 -0.0175068 0.02852504 -0.2838106 -0.0175068 0.02852504 -0.3840425 -0.0175068 0.02852504 -0.518627 -0.0175068 0.02852504 -0.6993381 -0.0175068 0.02852504 -0.9419845 -0.0175068 0.02852504 -1.267794 -0.0175068 0.02852504 -1.705268 -0.0175068 0.02852504 -2.292679 -0.0175068 0.02852504 -3.081414 -0.0175068 0.02852504 -4.140474 -0.0175068 0.02852504 -5.562508 -0.0175068 0.02852504 -7.471917 -0.0175068 0.02852504 -10.03574 -0.0175068 0.02852504 -13.47828 -0.0175068 0.02852504 -18.10068 -0.0175068 0.02852504 -24.30731 -0.0175068 0.02852504 -32.64117 -0.0175068 0.02852504 -43.83129 -0.0175068 0.02852504 -58.85664 -0.0175068 0.02852504 --0.0175068 -0.01161267 0.02852504 --0.01161267 -0.01161267 0.02852504 --0.005718534 -0.01161267 0.02852504 -0.0001755984 -0.01161267 0.02852504 -0.006069731 -0.01161267 0.02852504 -0.01197402 -0.01161267 0.02852504 -0.01903886 -0.01161267 0.02852504 -0.02852504 -0.01161267 0.02852504 -0.04126244 -0.01161267 0.02852504 -0.05836535 -0.01161267 0.02852504 -0.08132997 -0.01161267 0.02852504 -0.1121653 -0.01161267 0.02852504 -0.1535689 -0.01161267 0.02852504 -0.2091628 -0.01161267 0.02852504 -0.2838106 -0.01161267 0.02852504 -0.3840425 -0.01161267 0.02852504 -0.518627 -0.01161267 0.02852504 -0.6993381 -0.01161267 0.02852504 -0.9419845 -0.01161267 0.02852504 -1.267794 -0.01161267 0.02852504 -1.705268 -0.01161267 0.02852504 -2.292679 -0.01161267 0.02852504 -3.081414 -0.01161267 0.02852504 -4.140474 -0.01161267 0.02852504 -5.562508 -0.01161267 0.02852504 -7.471917 -0.01161267 0.02852504 -10.03574 -0.01161267 0.02852504 -13.47828 -0.01161267 0.02852504 -18.10068 -0.01161267 0.02852504 -24.30731 -0.01161267 0.02852504 -32.64117 -0.01161267 0.02852504 -43.83129 -0.01161267 0.02852504 -58.85664 -0.01161267 0.02852504 --0.0175068 -0.005718534 0.02852504 --0.01161267 -0.005718534 0.02852504 --0.005718534 -0.005718534 0.02852504 -0.0001755984 -0.005718534 0.02852504 -0.006069731 -0.005718534 0.02852504 -0.01197402 -0.005718534 0.02852504 -0.01903886 -0.005718534 0.02852504 -0.02852504 -0.005718534 0.02852504 -0.04126244 -0.005718534 0.02852504 -0.05836535 -0.005718534 0.02852504 -0.08132997 -0.005718534 0.02852504 -0.1121653 -0.005718534 0.02852504 -0.1535689 -0.005718534 0.02852504 -0.2091628 -0.005718534 0.02852504 -0.2838106 -0.005718534 0.02852504 -0.3840425 -0.005718534 0.02852504 -0.518627 -0.005718534 0.02852504 -0.6993381 -0.005718534 0.02852504 -0.9419845 -0.005718534 0.02852504 -1.267794 -0.005718534 0.02852504 -1.705268 -0.005718534 0.02852504 -2.292679 -0.005718534 0.02852504 -3.081414 -0.005718534 0.02852504 -4.140474 -0.005718534 0.02852504 -5.562508 -0.005718534 0.02852504 -7.471917 -0.005718534 0.02852504 -10.03574 -0.005718534 0.02852504 -13.47828 -0.005718534 0.02852504 -18.10068 -0.005718534 0.02852504 -24.30731 -0.005718534 0.02852504 -32.64117 -0.005718534 0.02852504 -43.83129 -0.005718534 0.02852504 -58.85664 -0.005718534 0.02852504 --0.0175068 0.0001755984 0.02852504 --0.01161267 0.0001755984 0.02852504 --0.005718534 0.0001755984 0.02852504 -0.0001755984 0.0001755984 0.02852504 -0.006069731 0.0001755984 0.02852504 -0.01197402 0.0001755984 0.02852504 -0.01903886 0.0001755984 0.02852504 -0.02852504 0.0001755984 0.02852504 -0.04126244 0.0001755984 0.02852504 -0.05836535 0.0001755984 0.02852504 -0.08132997 0.0001755984 0.02852504 -0.1121653 0.0001755984 0.02852504 -0.1535689 0.0001755984 0.02852504 -0.2091628 0.0001755984 0.02852504 -0.2838106 0.0001755984 0.02852504 -0.3840425 0.0001755984 0.02852504 -0.518627 0.0001755984 0.02852504 -0.6993381 0.0001755984 0.02852504 -0.9419845 0.0001755984 0.02852504 -1.267794 0.0001755984 0.02852504 -1.705268 0.0001755984 0.02852504 -2.292679 0.0001755984 0.02852504 -3.081414 0.0001755984 0.02852504 -4.140474 0.0001755984 0.02852504 -5.562508 0.0001755984 0.02852504 -7.471917 0.0001755984 0.02852504 -10.03574 0.0001755984 0.02852504 -13.47828 0.0001755984 0.02852504 -18.10068 0.0001755984 0.02852504 -24.30731 0.0001755984 0.02852504 -32.64117 0.0001755984 0.02852504 -43.83129 0.0001755984 0.02852504 -58.85664 0.0001755984 0.02852504 --0.0175068 0.006069731 0.02852504 --0.01161267 0.006069731 0.02852504 --0.005718534 0.006069731 0.02852504 -0.0001755984 0.006069731 0.02852504 -0.006069731 0.006069731 0.02852504 -0.01197402 0.006069731 0.02852504 -0.01903886 0.006069731 0.02852504 -0.02852504 0.006069731 0.02852504 -0.04126244 0.006069731 0.02852504 -0.05836535 0.006069731 0.02852504 -0.08132997 0.006069731 0.02852504 -0.1121653 0.006069731 0.02852504 -0.1535689 0.006069731 0.02852504 -0.2091628 0.006069731 0.02852504 -0.2838106 0.006069731 0.02852504 -0.3840425 0.006069731 0.02852504 -0.518627 0.006069731 0.02852504 -0.6993381 0.006069731 0.02852504 -0.9419845 0.006069731 0.02852504 -1.267794 0.006069731 0.02852504 -1.705268 0.006069731 0.02852504 -2.292679 0.006069731 0.02852504 -3.081414 0.006069731 0.02852504 -4.140474 0.006069731 0.02852504 -5.562508 0.006069731 0.02852504 -7.471917 0.006069731 0.02852504 -10.03574 0.006069731 0.02852504 -13.47828 0.006069731 0.02852504 -18.10068 0.006069731 0.02852504 -24.30731 0.006069731 0.02852504 -32.64117 0.006069731 0.02852504 -43.83129 0.006069731 0.02852504 -58.85664 0.006069731 0.02852504 --0.0175068 0.01197402 0.02852504 --0.01161267 0.01197402 0.02852504 --0.005718534 0.01197402 0.02852504 -0.0001755984 0.01197402 0.02852504 -0.006069731 0.01197402 0.02852504 -0.01197402 0.01197402 0.02852504 -0.01903886 0.01197402 0.02852504 -0.02852504 0.01197402 0.02852504 -0.04126244 0.01197402 0.02852504 -0.05836535 0.01197402 0.02852504 -0.08132997 0.01197402 0.02852504 -0.1121653 0.01197402 0.02852504 -0.1535689 0.01197402 0.02852504 -0.2091628 0.01197402 0.02852504 -0.2838106 0.01197402 0.02852504 -0.3840425 0.01197402 0.02852504 -0.518627 0.01197402 0.02852504 -0.6993381 0.01197402 0.02852504 -0.9419845 0.01197402 0.02852504 -1.267794 0.01197402 0.02852504 -1.705268 0.01197402 0.02852504 -2.292679 0.01197402 0.02852504 -3.081414 0.01197402 0.02852504 -4.140474 0.01197402 0.02852504 -5.562508 0.01197402 0.02852504 -7.471917 0.01197402 0.02852504 -10.03574 0.01197402 0.02852504 -13.47828 0.01197402 0.02852504 -18.10068 0.01197402 0.02852504 -24.30731 0.01197402 0.02852504 -32.64117 0.01197402 0.02852504 -43.83129 0.01197402 0.02852504 -58.85664 0.01197402 0.02852504 --0.0175068 0.01903886 0.02852504 --0.01161267 0.01903886 0.02852504 --0.005718534 0.01903886 0.02852504 -0.0001755984 0.01903886 0.02852504 -0.006069731 0.01903886 0.02852504 -0.01197402 0.01903886 0.02852504 -0.01903886 0.01903886 0.02852504 -0.02852504 0.01903886 0.02852504 -0.04126244 0.01903886 0.02852504 -0.05836535 0.01903886 0.02852504 -0.08132997 0.01903886 0.02852504 -0.1121653 0.01903886 0.02852504 -0.1535689 0.01903886 0.02852504 -0.2091628 0.01903886 0.02852504 -0.2838106 0.01903886 0.02852504 -0.3840425 0.01903886 0.02852504 -0.518627 0.01903886 0.02852504 -0.6993381 0.01903886 0.02852504 -0.9419845 0.01903886 0.02852504 -1.267794 0.01903886 0.02852504 -1.705268 0.01903886 0.02852504 -2.292679 0.01903886 0.02852504 -3.081414 0.01903886 0.02852504 -4.140474 0.01903886 0.02852504 -5.562508 0.01903886 0.02852504 -7.471917 0.01903886 0.02852504 -10.03574 0.01903886 0.02852504 -13.47828 0.01903886 0.02852504 -18.10068 0.01903886 0.02852504 -24.30731 0.01903886 0.02852504 -32.64117 0.01903886 0.02852504 -43.83129 0.01903886 0.02852504 -58.85664 0.01903886 0.02852504 --0.0175068 0.02852504 0.02852504 --0.01161267 0.02852504 0.02852504 --0.005718534 0.02852504 0.02852504 -0.0001755984 0.02852504 0.02852504 -0.006069731 0.02852504 0.02852504 -0.01197402 0.02852504 0.02852504 -0.01903886 0.02852504 0.02852504 -0.02852504 0.02852504 0.02852504 -0.04126244 0.02852504 0.02852504 -0.05836535 0.02852504 0.02852504 -0.08132997 0.02852504 0.02852504 -0.1121653 0.02852504 0.02852504 -0.1535689 0.02852504 0.02852504 -0.2091628 0.02852504 0.02852504 -0.2838106 0.02852504 0.02852504 -0.3840425 0.02852504 0.02852504 -0.518627 0.02852504 0.02852504 -0.6993381 0.02852504 0.02852504 -0.9419845 0.02852504 0.02852504 -1.267794 0.02852504 0.02852504 -1.705268 0.02852504 0.02852504 -2.292679 0.02852504 0.02852504 -3.081414 0.02852504 0.02852504 -4.140474 0.02852504 0.02852504 -5.562508 0.02852504 0.02852504 -7.471917 0.02852504 0.02852504 -10.03574 0.02852504 0.02852504 -13.47828 0.02852504 0.02852504 -18.10068 0.02852504 0.02852504 -24.30731 0.02852504 0.02852504 -32.64117 0.02852504 0.02852504 -43.83129 0.02852504 0.02852504 -58.85664 0.02852504 0.02852504 --0.0175068 0.04126244 0.02852504 --0.01161267 0.04126244 0.02852504 --0.005718534 0.04126244 0.02852504 -0.0001755984 0.04126244 0.02852504 -0.006069731 0.04126244 0.02852504 -0.01197402 0.04126244 0.02852504 -0.01903886 0.04126244 0.02852504 -0.02852504 0.04126244 0.02852504 -0.04126244 0.04126244 0.02852504 -0.05836535 0.04126244 0.02852504 -0.08132997 0.04126244 0.02852504 -0.1121653 0.04126244 0.02852504 -0.1535689 0.04126244 0.02852504 -0.2091628 0.04126244 0.02852504 -0.2838106 0.04126244 0.02852504 -0.3840425 0.04126244 0.02852504 -0.518627 0.04126244 0.02852504 -0.6993381 0.04126244 0.02852504 -0.9419845 0.04126244 0.02852504 -1.267794 0.04126244 0.02852504 -1.705268 0.04126244 0.02852504 -2.292679 0.04126244 0.02852504 -3.081414 0.04126244 0.02852504 -4.140474 0.04126244 0.02852504 -5.562508 0.04126244 0.02852504 -7.471917 0.04126244 0.02852504 -10.03574 0.04126244 0.02852504 -13.47828 0.04126244 0.02852504 -18.10068 0.04126244 0.02852504 -24.30731 0.04126244 0.02852504 -32.64117 0.04126244 0.02852504 -43.83129 0.04126244 0.02852504 -58.85664 0.04126244 0.02852504 --0.0175068 0.05836535 0.02852504 --0.01161267 0.05836535 0.02852504 --0.005718534 0.05836535 0.02852504 -0.0001755984 0.05836535 0.02852504 -0.006069731 0.05836535 0.02852504 -0.01197402 0.05836535 0.02852504 -0.01903886 0.05836535 0.02852504 -0.02852504 0.05836535 0.02852504 -0.04126244 0.05836535 0.02852504 -0.05836535 0.05836535 0.02852504 -0.08132997 0.05836535 0.02852504 -0.1121653 0.05836535 0.02852504 -0.1535689 0.05836535 0.02852504 -0.2091628 0.05836535 0.02852504 -0.2838106 0.05836535 0.02852504 -0.3840425 0.05836535 0.02852504 -0.518627 0.05836535 0.02852504 -0.6993381 0.05836535 0.02852504 -0.9419845 0.05836535 0.02852504 -1.267794 0.05836535 0.02852504 -1.705268 0.05836535 0.02852504 -2.292679 0.05836535 0.02852504 -3.081414 0.05836535 0.02852504 -4.140474 0.05836535 0.02852504 -5.562508 0.05836535 0.02852504 -7.471917 0.05836535 0.02852504 -10.03574 0.05836535 0.02852504 -13.47828 0.05836535 0.02852504 -18.10068 0.05836535 0.02852504 -24.30731 0.05836535 0.02852504 -32.64117 0.05836535 0.02852504 -43.83129 0.05836535 0.02852504 -58.85664 0.05836535 0.02852504 --0.0175068 0.08132997 0.02852504 --0.01161267 0.08132997 0.02852504 --0.005718534 0.08132997 0.02852504 -0.0001755984 0.08132997 0.02852504 -0.006069731 0.08132997 0.02852504 -0.01197402 0.08132997 0.02852504 -0.01903886 0.08132997 0.02852504 -0.02852504 0.08132997 0.02852504 -0.04126244 0.08132997 0.02852504 -0.05836535 0.08132997 0.02852504 -0.08132997 0.08132997 0.02852504 -0.1121653 0.08132997 0.02852504 -0.1535689 0.08132997 0.02852504 -0.2091628 0.08132997 0.02852504 -0.2838106 0.08132997 0.02852504 -0.3840425 0.08132997 0.02852504 -0.518627 0.08132997 0.02852504 -0.6993381 0.08132997 0.02852504 -0.9419845 0.08132997 0.02852504 -1.267794 0.08132997 0.02852504 -1.705268 0.08132997 0.02852504 -2.292679 0.08132997 0.02852504 -3.081414 0.08132997 0.02852504 -4.140474 0.08132997 0.02852504 -5.562508 0.08132997 0.02852504 -7.471917 0.08132997 0.02852504 -10.03574 0.08132997 0.02852504 -13.47828 0.08132997 0.02852504 -18.10068 0.08132997 0.02852504 -24.30731 0.08132997 0.02852504 -32.64117 0.08132997 0.02852504 -43.83129 0.08132997 0.02852504 -58.85664 0.08132997 0.02852504 --0.0175068 0.1121653 0.02852504 --0.01161267 0.1121653 0.02852504 --0.005718534 0.1121653 0.02852504 -0.0001755984 0.1121653 0.02852504 -0.006069731 0.1121653 0.02852504 -0.01197402 0.1121653 0.02852504 -0.01903886 0.1121653 0.02852504 -0.02852504 0.1121653 0.02852504 -0.04126244 0.1121653 0.02852504 -0.05836535 0.1121653 0.02852504 -0.08132997 0.1121653 0.02852504 -0.1121653 0.1121653 0.02852504 -0.1535689 0.1121653 0.02852504 -0.2091628 0.1121653 0.02852504 -0.2838106 0.1121653 0.02852504 -0.3840425 0.1121653 0.02852504 -0.518627 0.1121653 0.02852504 -0.6993381 0.1121653 0.02852504 -0.9419845 0.1121653 0.02852504 -1.267794 0.1121653 0.02852504 -1.705268 0.1121653 0.02852504 -2.292679 0.1121653 0.02852504 -3.081414 0.1121653 0.02852504 -4.140474 0.1121653 0.02852504 -5.562508 0.1121653 0.02852504 -7.471917 0.1121653 0.02852504 -10.03574 0.1121653 0.02852504 -13.47828 0.1121653 0.02852504 -18.10068 0.1121653 0.02852504 -24.30731 0.1121653 0.02852504 -32.64117 0.1121653 0.02852504 -43.83129 0.1121653 0.02852504 -58.85664 0.1121653 0.02852504 --0.0175068 0.1535689 0.02852504 --0.01161267 0.1535689 0.02852504 --0.005718534 0.1535689 0.02852504 -0.0001755984 0.1535689 0.02852504 -0.006069731 0.1535689 0.02852504 -0.01197402 0.1535689 0.02852504 -0.01903886 0.1535689 0.02852504 -0.02852504 0.1535689 0.02852504 -0.04126244 0.1535689 0.02852504 -0.05836535 0.1535689 0.02852504 -0.08132997 0.1535689 0.02852504 -0.1121653 0.1535689 0.02852504 -0.1535689 0.1535689 0.02852504 -0.2091628 0.1535689 0.02852504 -0.2838106 0.1535689 0.02852504 -0.3840425 0.1535689 0.02852504 -0.518627 0.1535689 0.02852504 -0.6993381 0.1535689 0.02852504 -0.9419845 0.1535689 0.02852504 -1.267794 0.1535689 0.02852504 -1.705268 0.1535689 0.02852504 -2.292679 0.1535689 0.02852504 -3.081414 0.1535689 0.02852504 -4.140474 0.1535689 0.02852504 -5.562508 0.1535689 0.02852504 -7.471917 0.1535689 0.02852504 -10.03574 0.1535689 0.02852504 -13.47828 0.1535689 0.02852504 -18.10068 0.1535689 0.02852504 -24.30731 0.1535689 0.02852504 -32.64117 0.1535689 0.02852504 -43.83129 0.1535689 0.02852504 -58.85664 0.1535689 0.02852504 --0.0175068 0.2091628 0.02852504 --0.01161267 0.2091628 0.02852504 --0.005718534 0.2091628 0.02852504 -0.0001755984 0.2091628 0.02852504 -0.006069731 0.2091628 0.02852504 -0.01197402 0.2091628 0.02852504 -0.01903886 0.2091628 0.02852504 -0.02852504 0.2091628 0.02852504 -0.04126244 0.2091628 0.02852504 -0.05836535 0.2091628 0.02852504 -0.08132997 0.2091628 0.02852504 -0.1121653 0.2091628 0.02852504 -0.1535689 0.2091628 0.02852504 -0.2091628 0.2091628 0.02852504 -0.2838106 0.2091628 0.02852504 -0.3840425 0.2091628 0.02852504 -0.518627 0.2091628 0.02852504 -0.6993381 0.2091628 0.02852504 -0.9419845 0.2091628 0.02852504 -1.267794 0.2091628 0.02852504 -1.705268 0.2091628 0.02852504 -2.292679 0.2091628 0.02852504 -3.081414 0.2091628 0.02852504 -4.140474 0.2091628 0.02852504 -5.562508 0.2091628 0.02852504 -7.471917 0.2091628 0.02852504 -10.03574 0.2091628 0.02852504 -13.47828 0.2091628 0.02852504 -18.10068 0.2091628 0.02852504 -24.30731 0.2091628 0.02852504 -32.64117 0.2091628 0.02852504 -43.83129 0.2091628 0.02852504 -58.85664 0.2091628 0.02852504 --0.0175068 0.2838106 0.02852504 --0.01161267 0.2838106 0.02852504 --0.005718534 0.2838106 0.02852504 -0.0001755984 0.2838106 0.02852504 -0.006069731 0.2838106 0.02852504 -0.01197402 0.2838106 0.02852504 -0.01903886 0.2838106 0.02852504 -0.02852504 0.2838106 0.02852504 -0.04126244 0.2838106 0.02852504 -0.05836535 0.2838106 0.02852504 -0.08132997 0.2838106 0.02852504 -0.1121653 0.2838106 0.02852504 -0.1535689 0.2838106 0.02852504 -0.2091628 0.2838106 0.02852504 -0.2838106 0.2838106 0.02852504 -0.3840425 0.2838106 0.02852504 -0.518627 0.2838106 0.02852504 -0.6993381 0.2838106 0.02852504 -0.9419845 0.2838106 0.02852504 -1.267794 0.2838106 0.02852504 -1.705268 0.2838106 0.02852504 -2.292679 0.2838106 0.02852504 -3.081414 0.2838106 0.02852504 -4.140474 0.2838106 0.02852504 -5.562508 0.2838106 0.02852504 -7.471917 0.2838106 0.02852504 -10.03574 0.2838106 0.02852504 -13.47828 0.2838106 0.02852504 -18.10068 0.2838106 0.02852504 -24.30731 0.2838106 0.02852504 -32.64117 0.2838106 0.02852504 -43.83129 0.2838106 0.02852504 -58.85664 0.2838106 0.02852504 --0.0175068 0.3840425 0.02852504 --0.01161267 0.3840425 0.02852504 --0.005718534 0.3840425 0.02852504 -0.0001755984 0.3840425 0.02852504 -0.006069731 0.3840425 0.02852504 -0.01197402 0.3840425 0.02852504 -0.01903886 0.3840425 0.02852504 -0.02852504 0.3840425 0.02852504 -0.04126244 0.3840425 0.02852504 -0.05836535 0.3840425 0.02852504 -0.08132997 0.3840425 0.02852504 -0.1121653 0.3840425 0.02852504 -0.1535689 0.3840425 0.02852504 -0.2091628 0.3840425 0.02852504 -0.2838106 0.3840425 0.02852504 -0.3840425 0.3840425 0.02852504 -0.518627 0.3840425 0.02852504 -0.6993381 0.3840425 0.02852504 -0.9419845 0.3840425 0.02852504 -1.267794 0.3840425 0.02852504 -1.705268 0.3840425 0.02852504 -2.292679 0.3840425 0.02852504 -3.081414 0.3840425 0.02852504 -4.140474 0.3840425 0.02852504 -5.562508 0.3840425 0.02852504 -7.471917 0.3840425 0.02852504 -10.03574 0.3840425 0.02852504 -13.47828 0.3840425 0.02852504 -18.10068 0.3840425 0.02852504 -24.30731 0.3840425 0.02852504 -32.64117 0.3840425 0.02852504 -43.83129 0.3840425 0.02852504 -58.85664 0.3840425 0.02852504 --0.0175068 0.518627 0.02852504 --0.01161267 0.518627 0.02852504 --0.005718534 0.518627 0.02852504 -0.0001755984 0.518627 0.02852504 -0.006069731 0.518627 0.02852504 -0.01197402 0.518627 0.02852504 -0.01903886 0.518627 0.02852504 -0.02852504 0.518627 0.02852504 -0.04126244 0.518627 0.02852504 -0.05836535 0.518627 0.02852504 -0.08132997 0.518627 0.02852504 -0.1121653 0.518627 0.02852504 -0.1535689 0.518627 0.02852504 -0.2091628 0.518627 0.02852504 -0.2838106 0.518627 0.02852504 -0.3840425 0.518627 0.02852504 -0.518627 0.518627 0.02852504 -0.6993381 0.518627 0.02852504 -0.9419845 0.518627 0.02852504 -1.267794 0.518627 0.02852504 -1.705268 0.518627 0.02852504 -2.292679 0.518627 0.02852504 -3.081414 0.518627 0.02852504 -4.140474 0.518627 0.02852504 -5.562508 0.518627 0.02852504 -7.471917 0.518627 0.02852504 -10.03574 0.518627 0.02852504 -13.47828 0.518627 0.02852504 -18.10068 0.518627 0.02852504 -24.30731 0.518627 0.02852504 -32.64117 0.518627 0.02852504 -43.83129 0.518627 0.02852504 -58.85664 0.518627 0.02852504 --0.0175068 0.6993381 0.02852504 --0.01161267 0.6993381 0.02852504 --0.005718534 0.6993381 0.02852504 -0.0001755984 0.6993381 0.02852504 -0.006069731 0.6993381 0.02852504 -0.01197402 0.6993381 0.02852504 -0.01903886 0.6993381 0.02852504 -0.02852504 0.6993381 0.02852504 -0.04126244 0.6993381 0.02852504 -0.05836535 0.6993381 0.02852504 -0.08132997 0.6993381 0.02852504 -0.1121653 0.6993381 0.02852504 -0.1535689 0.6993381 0.02852504 -0.2091628 0.6993381 0.02852504 -0.2838106 0.6993381 0.02852504 -0.3840425 0.6993381 0.02852504 -0.518627 0.6993381 0.02852504 -0.6993381 0.6993381 0.02852504 -0.9419845 0.6993381 0.02852504 -1.267794 0.6993381 0.02852504 -1.705268 0.6993381 0.02852504 -2.292679 0.6993381 0.02852504 -3.081414 0.6993381 0.02852504 -4.140474 0.6993381 0.02852504 -5.562508 0.6993381 0.02852504 -7.471917 0.6993381 0.02852504 -10.03574 0.6993381 0.02852504 -13.47828 0.6993381 0.02852504 -18.10068 0.6993381 0.02852504 -24.30731 0.6993381 0.02852504 -32.64117 0.6993381 0.02852504 -43.83129 0.6993381 0.02852504 -58.85664 0.6993381 0.02852504 --0.0175068 0.9419845 0.02852504 --0.01161267 0.9419845 0.02852504 --0.005718534 0.9419845 0.02852504 -0.0001755984 0.9419845 0.02852504 -0.006069731 0.9419845 0.02852504 -0.01197402 0.9419845 0.02852504 -0.01903886 0.9419845 0.02852504 -0.02852504 0.9419845 0.02852504 -0.04126244 0.9419845 0.02852504 -0.05836535 0.9419845 0.02852504 -0.08132997 0.9419845 0.02852504 -0.1121653 0.9419845 0.02852504 -0.1535689 0.9419845 0.02852504 -0.2091628 0.9419845 0.02852504 -0.2838106 0.9419845 0.02852504 -0.3840425 0.9419845 0.02852504 -0.518627 0.9419845 0.02852504 -0.6993381 0.9419845 0.02852504 -0.9419845 0.9419845 0.02852504 -1.267794 0.9419845 0.02852504 -1.705268 0.9419845 0.02852504 -2.292679 0.9419845 0.02852504 -3.081414 0.9419845 0.02852504 -4.140474 0.9419845 0.02852504 -5.562508 0.9419845 0.02852504 -7.471917 0.9419845 0.02852504 -10.03574 0.9419845 0.02852504 -13.47828 0.9419845 0.02852504 -18.10068 0.9419845 0.02852504 -24.30731 0.9419845 0.02852504 -32.64117 0.9419845 0.02852504 -43.83129 0.9419845 0.02852504 -58.85664 0.9419845 0.02852504 --0.0175068 1.267794 0.02852504 --0.01161267 1.267794 0.02852504 --0.005718534 1.267794 0.02852504 -0.0001755984 1.267794 0.02852504 -0.006069731 1.267794 0.02852504 -0.01197402 1.267794 0.02852504 -0.01903886 1.267794 0.02852504 -0.02852504 1.267794 0.02852504 -0.04126244 1.267794 0.02852504 -0.05836535 1.267794 0.02852504 -0.08132997 1.267794 0.02852504 -0.1121653 1.267794 0.02852504 -0.1535689 1.267794 0.02852504 -0.2091628 1.267794 0.02852504 -0.2838106 1.267794 0.02852504 -0.3840425 1.267794 0.02852504 -0.518627 1.267794 0.02852504 -0.6993381 1.267794 0.02852504 -0.9419845 1.267794 0.02852504 -1.267794 1.267794 0.02852504 -1.705268 1.267794 0.02852504 -2.292679 1.267794 0.02852504 -3.081414 1.267794 0.02852504 -4.140474 1.267794 0.02852504 -5.562508 1.267794 0.02852504 -7.471917 1.267794 0.02852504 -10.03574 1.267794 0.02852504 -13.47828 1.267794 0.02852504 -18.10068 1.267794 0.02852504 -24.30731 1.267794 0.02852504 -32.64117 1.267794 0.02852504 -43.83129 1.267794 0.02852504 -58.85664 1.267794 0.02852504 --0.0175068 1.705268 0.02852504 --0.01161267 1.705268 0.02852504 --0.005718534 1.705268 0.02852504 -0.0001755984 1.705268 0.02852504 -0.006069731 1.705268 0.02852504 -0.01197402 1.705268 0.02852504 -0.01903886 1.705268 0.02852504 -0.02852504 1.705268 0.02852504 -0.04126244 1.705268 0.02852504 -0.05836535 1.705268 0.02852504 -0.08132997 1.705268 0.02852504 -0.1121653 1.705268 0.02852504 -0.1535689 1.705268 0.02852504 -0.2091628 1.705268 0.02852504 -0.2838106 1.705268 0.02852504 -0.3840425 1.705268 0.02852504 -0.518627 1.705268 0.02852504 -0.6993381 1.705268 0.02852504 -0.9419845 1.705268 0.02852504 -1.267794 1.705268 0.02852504 -1.705268 1.705268 0.02852504 -2.292679 1.705268 0.02852504 -3.081414 1.705268 0.02852504 -4.140474 1.705268 0.02852504 -5.562508 1.705268 0.02852504 -7.471917 1.705268 0.02852504 -10.03574 1.705268 0.02852504 -13.47828 1.705268 0.02852504 -18.10068 1.705268 0.02852504 -24.30731 1.705268 0.02852504 -32.64117 1.705268 0.02852504 -43.83129 1.705268 0.02852504 -58.85664 1.705268 0.02852504 --0.0175068 2.292679 0.02852504 --0.01161267 2.292679 0.02852504 --0.005718534 2.292679 0.02852504 -0.0001755984 2.292679 0.02852504 -0.006069731 2.292679 0.02852504 -0.01197402 2.292679 0.02852504 -0.01903886 2.292679 0.02852504 -0.02852504 2.292679 0.02852504 -0.04126244 2.292679 0.02852504 -0.05836535 2.292679 0.02852504 -0.08132997 2.292679 0.02852504 -0.1121653 2.292679 0.02852504 -0.1535689 2.292679 0.02852504 -0.2091628 2.292679 0.02852504 -0.2838106 2.292679 0.02852504 -0.3840425 2.292679 0.02852504 -0.518627 2.292679 0.02852504 -0.6993381 2.292679 0.02852504 -0.9419845 2.292679 0.02852504 -1.267794 2.292679 0.02852504 -1.705268 2.292679 0.02852504 -2.292679 2.292679 0.02852504 -3.081414 2.292679 0.02852504 -4.140474 2.292679 0.02852504 -5.562508 2.292679 0.02852504 -7.471917 2.292679 0.02852504 -10.03574 2.292679 0.02852504 -13.47828 2.292679 0.02852504 -18.10068 2.292679 0.02852504 -24.30731 2.292679 0.02852504 -32.64117 2.292679 0.02852504 -43.83129 2.292679 0.02852504 -58.85664 2.292679 0.02852504 --0.0175068 3.081414 0.02852504 --0.01161267 3.081414 0.02852504 --0.005718534 3.081414 0.02852504 -0.0001755984 3.081414 0.02852504 -0.006069731 3.081414 0.02852504 -0.01197402 3.081414 0.02852504 -0.01903886 3.081414 0.02852504 -0.02852504 3.081414 0.02852504 -0.04126244 3.081414 0.02852504 -0.05836535 3.081414 0.02852504 -0.08132997 3.081414 0.02852504 -0.1121653 3.081414 0.02852504 -0.1535689 3.081414 0.02852504 -0.2091628 3.081414 0.02852504 -0.2838106 3.081414 0.02852504 -0.3840425 3.081414 0.02852504 -0.518627 3.081414 0.02852504 -0.6993381 3.081414 0.02852504 -0.9419845 3.081414 0.02852504 -1.267794 3.081414 0.02852504 -1.705268 3.081414 0.02852504 -2.292679 3.081414 0.02852504 -3.081414 3.081414 0.02852504 -4.140474 3.081414 0.02852504 -5.562508 3.081414 0.02852504 -7.471917 3.081414 0.02852504 -10.03574 3.081414 0.02852504 -13.47828 3.081414 0.02852504 -18.10068 3.081414 0.02852504 -24.30731 3.081414 0.02852504 -32.64117 3.081414 0.02852504 -43.83129 3.081414 0.02852504 -58.85664 3.081414 0.02852504 --0.0175068 4.140474 0.02852504 --0.01161267 4.140474 0.02852504 --0.005718534 4.140474 0.02852504 -0.0001755984 4.140474 0.02852504 -0.006069731 4.140474 0.02852504 -0.01197402 4.140474 0.02852504 -0.01903886 4.140474 0.02852504 -0.02852504 4.140474 0.02852504 -0.04126244 4.140474 0.02852504 -0.05836535 4.140474 0.02852504 -0.08132997 4.140474 0.02852504 -0.1121653 4.140474 0.02852504 -0.1535689 4.140474 0.02852504 -0.2091628 4.140474 0.02852504 -0.2838106 4.140474 0.02852504 -0.3840425 4.140474 0.02852504 -0.518627 4.140474 0.02852504 -0.6993381 4.140474 0.02852504 -0.9419845 4.140474 0.02852504 -1.267794 4.140474 0.02852504 -1.705268 4.140474 0.02852504 -2.292679 4.140474 0.02852504 -3.081414 4.140474 0.02852504 -4.140474 4.140474 0.02852504 -5.562508 4.140474 0.02852504 -7.471917 4.140474 0.02852504 -10.03574 4.140474 0.02852504 -13.47828 4.140474 0.02852504 -18.10068 4.140474 0.02852504 -24.30731 4.140474 0.02852504 -32.64117 4.140474 0.02852504 -43.83129 4.140474 0.02852504 -58.85664 4.140474 0.02852504 --0.0175068 5.562508 0.02852504 --0.01161267 5.562508 0.02852504 --0.005718534 5.562508 0.02852504 -0.0001755984 5.562508 0.02852504 -0.006069731 5.562508 0.02852504 -0.01197402 5.562508 0.02852504 -0.01903886 5.562508 0.02852504 -0.02852504 5.562508 0.02852504 -0.04126244 5.562508 0.02852504 -0.05836535 5.562508 0.02852504 -0.08132997 5.562508 0.02852504 -0.1121653 5.562508 0.02852504 -0.1535689 5.562508 0.02852504 -0.2091628 5.562508 0.02852504 -0.2838106 5.562508 0.02852504 -0.3840425 5.562508 0.02852504 -0.518627 5.562508 0.02852504 -0.6993381 5.562508 0.02852504 -0.9419845 5.562508 0.02852504 -1.267794 5.562508 0.02852504 -1.705268 5.562508 0.02852504 -2.292679 5.562508 0.02852504 -3.081414 5.562508 0.02852504 -4.140474 5.562508 0.02852504 -5.562508 5.562508 0.02852504 -7.471917 5.562508 0.02852504 -10.03574 5.562508 0.02852504 -13.47828 5.562508 0.02852504 -18.10068 5.562508 0.02852504 -24.30731 5.562508 0.02852504 -32.64117 5.562508 0.02852504 -43.83129 5.562508 0.02852504 -58.85664 5.562508 0.02852504 --0.0175068 7.471917 0.02852504 --0.01161267 7.471917 0.02852504 --0.005718534 7.471917 0.02852504 -0.0001755984 7.471917 0.02852504 -0.006069731 7.471917 0.02852504 -0.01197402 7.471917 0.02852504 -0.01903886 7.471917 0.02852504 -0.02852504 7.471917 0.02852504 -0.04126244 7.471917 0.02852504 -0.05836535 7.471917 0.02852504 -0.08132997 7.471917 0.02852504 -0.1121653 7.471917 0.02852504 -0.1535689 7.471917 0.02852504 -0.2091628 7.471917 0.02852504 -0.2838106 7.471917 0.02852504 -0.3840425 7.471917 0.02852504 -0.518627 7.471917 0.02852504 -0.6993381 7.471917 0.02852504 -0.9419845 7.471917 0.02852504 -1.267794 7.471917 0.02852504 -1.705268 7.471917 0.02852504 -2.292679 7.471917 0.02852504 -3.081414 7.471917 0.02852504 -4.140474 7.471917 0.02852504 -5.562508 7.471917 0.02852504 -7.471917 7.471917 0.02852504 -10.03574 7.471917 0.02852504 -13.47828 7.471917 0.02852504 -18.10068 7.471917 0.02852504 -24.30731 7.471917 0.02852504 -32.64117 7.471917 0.02852504 -43.83129 7.471917 0.02852504 -58.85664 7.471917 0.02852504 --0.0175068 10.03574 0.02852504 --0.01161267 10.03574 0.02852504 --0.005718534 10.03574 0.02852504 -0.0001755984 10.03574 0.02852504 -0.006069731 10.03574 0.02852504 -0.01197402 10.03574 0.02852504 -0.01903886 10.03574 0.02852504 -0.02852504 10.03574 0.02852504 -0.04126244 10.03574 0.02852504 -0.05836535 10.03574 0.02852504 -0.08132997 10.03574 0.02852504 -0.1121653 10.03574 0.02852504 -0.1535689 10.03574 0.02852504 -0.2091628 10.03574 0.02852504 -0.2838106 10.03574 0.02852504 -0.3840425 10.03574 0.02852504 -0.518627 10.03574 0.02852504 -0.6993381 10.03574 0.02852504 -0.9419845 10.03574 0.02852504 -1.267794 10.03574 0.02852504 -1.705268 10.03574 0.02852504 -2.292679 10.03574 0.02852504 -3.081414 10.03574 0.02852504 -4.140474 10.03574 0.02852504 -5.562508 10.03574 0.02852504 -7.471917 10.03574 0.02852504 -10.03574 10.03574 0.02852504 -13.47828 10.03574 0.02852504 -18.10068 10.03574 0.02852504 -24.30731 10.03574 0.02852504 -32.64117 10.03574 0.02852504 -43.83129 10.03574 0.02852504 -58.85664 10.03574 0.02852504 --0.0175068 13.47828 0.02852504 --0.01161267 13.47828 0.02852504 --0.005718534 13.47828 0.02852504 -0.0001755984 13.47828 0.02852504 -0.006069731 13.47828 0.02852504 -0.01197402 13.47828 0.02852504 -0.01903886 13.47828 0.02852504 -0.02852504 13.47828 0.02852504 -0.04126244 13.47828 0.02852504 -0.05836535 13.47828 0.02852504 -0.08132997 13.47828 0.02852504 -0.1121653 13.47828 0.02852504 -0.1535689 13.47828 0.02852504 -0.2091628 13.47828 0.02852504 -0.2838106 13.47828 0.02852504 -0.3840425 13.47828 0.02852504 -0.518627 13.47828 0.02852504 -0.6993381 13.47828 0.02852504 -0.9419845 13.47828 0.02852504 -1.267794 13.47828 0.02852504 -1.705268 13.47828 0.02852504 -2.292679 13.47828 0.02852504 -3.081414 13.47828 0.02852504 -4.140474 13.47828 0.02852504 -5.562508 13.47828 0.02852504 -7.471917 13.47828 0.02852504 -10.03574 13.47828 0.02852504 -13.47828 13.47828 0.02852504 -18.10068 13.47828 0.02852504 -24.30731 13.47828 0.02852504 -32.64117 13.47828 0.02852504 -43.83129 13.47828 0.02852504 -58.85664 13.47828 0.02852504 --0.0175068 18.10068 0.02852504 --0.01161267 18.10068 0.02852504 --0.005718534 18.10068 0.02852504 -0.0001755984 18.10068 0.02852504 -0.006069731 18.10068 0.02852504 -0.01197402 18.10068 0.02852504 -0.01903886 18.10068 0.02852504 -0.02852504 18.10068 0.02852504 -0.04126244 18.10068 0.02852504 -0.05836535 18.10068 0.02852504 -0.08132997 18.10068 0.02852504 -0.1121653 18.10068 0.02852504 -0.1535689 18.10068 0.02852504 -0.2091628 18.10068 0.02852504 -0.2838106 18.10068 0.02852504 -0.3840425 18.10068 0.02852504 -0.518627 18.10068 0.02852504 -0.6993381 18.10068 0.02852504 -0.9419845 18.10068 0.02852504 -1.267794 18.10068 0.02852504 -1.705268 18.10068 0.02852504 -2.292679 18.10068 0.02852504 -3.081414 18.10068 0.02852504 -4.140474 18.10068 0.02852504 -5.562508 18.10068 0.02852504 -7.471917 18.10068 0.02852504 -10.03574 18.10068 0.02852504 -13.47828 18.10068 0.02852504 -18.10068 18.10068 0.02852504 -24.30731 18.10068 0.02852504 -32.64117 18.10068 0.02852504 -43.83129 18.10068 0.02852504 -58.85664 18.10068 0.02852504 --0.0175068 24.30731 0.02852504 --0.01161267 24.30731 0.02852504 --0.005718534 24.30731 0.02852504 -0.0001755984 24.30731 0.02852504 -0.006069731 24.30731 0.02852504 -0.01197402 24.30731 0.02852504 -0.01903886 24.30731 0.02852504 -0.02852504 24.30731 0.02852504 -0.04126244 24.30731 0.02852504 -0.05836535 24.30731 0.02852504 -0.08132997 24.30731 0.02852504 -0.1121653 24.30731 0.02852504 -0.1535689 24.30731 0.02852504 -0.2091628 24.30731 0.02852504 -0.2838106 24.30731 0.02852504 -0.3840425 24.30731 0.02852504 -0.518627 24.30731 0.02852504 -0.6993381 24.30731 0.02852504 -0.9419845 24.30731 0.02852504 -1.267794 24.30731 0.02852504 -1.705268 24.30731 0.02852504 -2.292679 24.30731 0.02852504 -3.081414 24.30731 0.02852504 -4.140474 24.30731 0.02852504 -5.562508 24.30731 0.02852504 -7.471917 24.30731 0.02852504 -10.03574 24.30731 0.02852504 -13.47828 24.30731 0.02852504 -18.10068 24.30731 0.02852504 -24.30731 24.30731 0.02852504 -32.64117 24.30731 0.02852504 -43.83129 24.30731 0.02852504 -58.85664 24.30731 0.02852504 --0.0175068 32.64117 0.02852504 --0.01161267 32.64117 0.02852504 --0.005718534 32.64117 0.02852504 -0.0001755984 32.64117 0.02852504 -0.006069731 32.64117 0.02852504 -0.01197402 32.64117 0.02852504 -0.01903886 32.64117 0.02852504 -0.02852504 32.64117 0.02852504 -0.04126244 32.64117 0.02852504 -0.05836535 32.64117 0.02852504 -0.08132997 32.64117 0.02852504 -0.1121653 32.64117 0.02852504 -0.1535689 32.64117 0.02852504 -0.2091628 32.64117 0.02852504 -0.2838106 32.64117 0.02852504 -0.3840425 32.64117 0.02852504 -0.518627 32.64117 0.02852504 -0.6993381 32.64117 0.02852504 -0.9419845 32.64117 0.02852504 -1.267794 32.64117 0.02852504 -1.705268 32.64117 0.02852504 -2.292679 32.64117 0.02852504 -3.081414 32.64117 0.02852504 -4.140474 32.64117 0.02852504 -5.562508 32.64117 0.02852504 -7.471917 32.64117 0.02852504 -10.03574 32.64117 0.02852504 -13.47828 32.64117 0.02852504 -18.10068 32.64117 0.02852504 -24.30731 32.64117 0.02852504 -32.64117 32.64117 0.02852504 -43.83129 32.64117 0.02852504 -58.85664 32.64117 0.02852504 --0.0175068 43.83129 0.02852504 --0.01161267 43.83129 0.02852504 --0.005718534 43.83129 0.02852504 -0.0001755984 43.83129 0.02852504 -0.006069731 43.83129 0.02852504 -0.01197402 43.83129 0.02852504 -0.01903886 43.83129 0.02852504 -0.02852504 43.83129 0.02852504 -0.04126244 43.83129 0.02852504 -0.05836535 43.83129 0.02852504 -0.08132997 43.83129 0.02852504 -0.1121653 43.83129 0.02852504 -0.1535689 43.83129 0.02852504 -0.2091628 43.83129 0.02852504 -0.2838106 43.83129 0.02852504 -0.3840425 43.83129 0.02852504 -0.518627 43.83129 0.02852504 -0.6993381 43.83129 0.02852504 -0.9419845 43.83129 0.02852504 -1.267794 43.83129 0.02852504 -1.705268 43.83129 0.02852504 -2.292679 43.83129 0.02852504 -3.081414 43.83129 0.02852504 -4.140474 43.83129 0.02852504 -5.562508 43.83129 0.02852504 -7.471917 43.83129 0.02852504 -10.03574 43.83129 0.02852504 -13.47828 43.83129 0.02852504 -18.10068 43.83129 0.02852504 -24.30731 43.83129 0.02852504 -32.64117 43.83129 0.02852504 -43.83129 43.83129 0.02852504 -58.85664 43.83129 0.02852504 --0.0175068 58.85664 0.02852504 --0.01161267 58.85664 0.02852504 --0.005718534 58.85664 0.02852504 -0.0001755984 58.85664 0.02852504 -0.006069731 58.85664 0.02852504 -0.01197402 58.85664 0.02852504 -0.01903886 58.85664 0.02852504 -0.02852504 58.85664 0.02852504 -0.04126244 58.85664 0.02852504 -0.05836535 58.85664 0.02852504 -0.08132997 58.85664 0.02852504 -0.1121653 58.85664 0.02852504 -0.1535689 58.85664 0.02852504 -0.2091628 58.85664 0.02852504 -0.2838106 58.85664 0.02852504 -0.3840425 58.85664 0.02852504 -0.518627 58.85664 0.02852504 -0.6993381 58.85664 0.02852504 -0.9419845 58.85664 0.02852504 -1.267794 58.85664 0.02852504 -1.705268 58.85664 0.02852504 -2.292679 58.85664 0.02852504 -3.081414 58.85664 0.02852504 -4.140474 58.85664 0.02852504 -5.562508 58.85664 0.02852504 -7.471917 58.85664 0.02852504 -10.03574 58.85664 0.02852504 -13.47828 58.85664 0.02852504 -18.10068 58.85664 0.02852504 -24.30731 58.85664 0.02852504 -32.64117 58.85664 0.02852504 -43.83129 58.85664 0.02852504 -58.85664 58.85664 0.02852504 --0.0175068 -0.0175068 0.04126244 --0.01161267 -0.0175068 0.04126244 --0.005718534 -0.0175068 0.04126244 -0.0001755984 -0.0175068 0.04126244 -0.006069731 -0.0175068 0.04126244 -0.01197402 -0.0175068 0.04126244 -0.01903886 -0.0175068 0.04126244 -0.02852504 -0.0175068 0.04126244 -0.04126244 -0.0175068 0.04126244 -0.05836535 -0.0175068 0.04126244 -0.08132997 -0.0175068 0.04126244 -0.1121653 -0.0175068 0.04126244 -0.1535689 -0.0175068 0.04126244 -0.2091628 -0.0175068 0.04126244 -0.2838106 -0.0175068 0.04126244 -0.3840425 -0.0175068 0.04126244 -0.518627 -0.0175068 0.04126244 -0.6993381 -0.0175068 0.04126244 -0.9419845 -0.0175068 0.04126244 -1.267794 -0.0175068 0.04126244 -1.705268 -0.0175068 0.04126244 -2.292679 -0.0175068 0.04126244 -3.081414 -0.0175068 0.04126244 -4.140474 -0.0175068 0.04126244 -5.562508 -0.0175068 0.04126244 -7.471917 -0.0175068 0.04126244 -10.03574 -0.0175068 0.04126244 -13.47828 -0.0175068 0.04126244 -18.10068 -0.0175068 0.04126244 -24.30731 -0.0175068 0.04126244 -32.64117 -0.0175068 0.04126244 -43.83129 -0.0175068 0.04126244 -58.85664 -0.0175068 0.04126244 --0.0175068 -0.01161267 0.04126244 --0.01161267 -0.01161267 0.04126244 --0.005718534 -0.01161267 0.04126244 -0.0001755984 -0.01161267 0.04126244 -0.006069731 -0.01161267 0.04126244 -0.01197402 -0.01161267 0.04126244 -0.01903886 -0.01161267 0.04126244 -0.02852504 -0.01161267 0.04126244 -0.04126244 -0.01161267 0.04126244 -0.05836535 -0.01161267 0.04126244 -0.08132997 -0.01161267 0.04126244 -0.1121653 -0.01161267 0.04126244 -0.1535689 -0.01161267 0.04126244 -0.2091628 -0.01161267 0.04126244 -0.2838106 -0.01161267 0.04126244 -0.3840425 -0.01161267 0.04126244 -0.518627 -0.01161267 0.04126244 -0.6993381 -0.01161267 0.04126244 -0.9419845 -0.01161267 0.04126244 -1.267794 -0.01161267 0.04126244 -1.705268 -0.01161267 0.04126244 -2.292679 -0.01161267 0.04126244 -3.081414 -0.01161267 0.04126244 -4.140474 -0.01161267 0.04126244 -5.562508 -0.01161267 0.04126244 -7.471917 -0.01161267 0.04126244 -10.03574 -0.01161267 0.04126244 -13.47828 -0.01161267 0.04126244 -18.10068 -0.01161267 0.04126244 -24.30731 -0.01161267 0.04126244 -32.64117 -0.01161267 0.04126244 -43.83129 -0.01161267 0.04126244 -58.85664 -0.01161267 0.04126244 --0.0175068 -0.005718534 0.04126244 --0.01161267 -0.005718534 0.04126244 --0.005718534 -0.005718534 0.04126244 -0.0001755984 -0.005718534 0.04126244 -0.006069731 -0.005718534 0.04126244 -0.01197402 -0.005718534 0.04126244 -0.01903886 -0.005718534 0.04126244 -0.02852504 -0.005718534 0.04126244 -0.04126244 -0.005718534 0.04126244 -0.05836535 -0.005718534 0.04126244 -0.08132997 -0.005718534 0.04126244 -0.1121653 -0.005718534 0.04126244 -0.1535689 -0.005718534 0.04126244 -0.2091628 -0.005718534 0.04126244 -0.2838106 -0.005718534 0.04126244 -0.3840425 -0.005718534 0.04126244 -0.518627 -0.005718534 0.04126244 -0.6993381 -0.005718534 0.04126244 -0.9419845 -0.005718534 0.04126244 -1.267794 -0.005718534 0.04126244 -1.705268 -0.005718534 0.04126244 -2.292679 -0.005718534 0.04126244 -3.081414 -0.005718534 0.04126244 -4.140474 -0.005718534 0.04126244 -5.562508 -0.005718534 0.04126244 -7.471917 -0.005718534 0.04126244 -10.03574 -0.005718534 0.04126244 -13.47828 -0.005718534 0.04126244 -18.10068 -0.005718534 0.04126244 -24.30731 -0.005718534 0.04126244 -32.64117 -0.005718534 0.04126244 -43.83129 -0.005718534 0.04126244 -58.85664 -0.005718534 0.04126244 --0.0175068 0.0001755984 0.04126244 --0.01161267 0.0001755984 0.04126244 --0.005718534 0.0001755984 0.04126244 -0.0001755984 0.0001755984 0.04126244 -0.006069731 0.0001755984 0.04126244 -0.01197402 0.0001755984 0.04126244 -0.01903886 0.0001755984 0.04126244 -0.02852504 0.0001755984 0.04126244 -0.04126244 0.0001755984 0.04126244 -0.05836535 0.0001755984 0.04126244 -0.08132997 0.0001755984 0.04126244 -0.1121653 0.0001755984 0.04126244 -0.1535689 0.0001755984 0.04126244 -0.2091628 0.0001755984 0.04126244 -0.2838106 0.0001755984 0.04126244 -0.3840425 0.0001755984 0.04126244 -0.518627 0.0001755984 0.04126244 -0.6993381 0.0001755984 0.04126244 -0.9419845 0.0001755984 0.04126244 -1.267794 0.0001755984 0.04126244 -1.705268 0.0001755984 0.04126244 -2.292679 0.0001755984 0.04126244 -3.081414 0.0001755984 0.04126244 -4.140474 0.0001755984 0.04126244 -5.562508 0.0001755984 0.04126244 -7.471917 0.0001755984 0.04126244 -10.03574 0.0001755984 0.04126244 -13.47828 0.0001755984 0.04126244 -18.10068 0.0001755984 0.04126244 -24.30731 0.0001755984 0.04126244 -32.64117 0.0001755984 0.04126244 -43.83129 0.0001755984 0.04126244 -58.85664 0.0001755984 0.04126244 --0.0175068 0.006069731 0.04126244 --0.01161267 0.006069731 0.04126244 --0.005718534 0.006069731 0.04126244 -0.0001755984 0.006069731 0.04126244 -0.006069731 0.006069731 0.04126244 -0.01197402 0.006069731 0.04126244 -0.01903886 0.006069731 0.04126244 -0.02852504 0.006069731 0.04126244 -0.04126244 0.006069731 0.04126244 -0.05836535 0.006069731 0.04126244 -0.08132997 0.006069731 0.04126244 -0.1121653 0.006069731 0.04126244 -0.1535689 0.006069731 0.04126244 -0.2091628 0.006069731 0.04126244 -0.2838106 0.006069731 0.04126244 -0.3840425 0.006069731 0.04126244 -0.518627 0.006069731 0.04126244 -0.6993381 0.006069731 0.04126244 -0.9419845 0.006069731 0.04126244 -1.267794 0.006069731 0.04126244 -1.705268 0.006069731 0.04126244 -2.292679 0.006069731 0.04126244 -3.081414 0.006069731 0.04126244 -4.140474 0.006069731 0.04126244 -5.562508 0.006069731 0.04126244 -7.471917 0.006069731 0.04126244 -10.03574 0.006069731 0.04126244 -13.47828 0.006069731 0.04126244 -18.10068 0.006069731 0.04126244 -24.30731 0.006069731 0.04126244 -32.64117 0.006069731 0.04126244 -43.83129 0.006069731 0.04126244 -58.85664 0.006069731 0.04126244 --0.0175068 0.01197402 0.04126244 --0.01161267 0.01197402 0.04126244 --0.005718534 0.01197402 0.04126244 -0.0001755984 0.01197402 0.04126244 -0.006069731 0.01197402 0.04126244 -0.01197402 0.01197402 0.04126244 -0.01903886 0.01197402 0.04126244 -0.02852504 0.01197402 0.04126244 -0.04126244 0.01197402 0.04126244 -0.05836535 0.01197402 0.04126244 -0.08132997 0.01197402 0.04126244 -0.1121653 0.01197402 0.04126244 -0.1535689 0.01197402 0.04126244 -0.2091628 0.01197402 0.04126244 -0.2838106 0.01197402 0.04126244 -0.3840425 0.01197402 0.04126244 -0.518627 0.01197402 0.04126244 -0.6993381 0.01197402 0.04126244 -0.9419845 0.01197402 0.04126244 -1.267794 0.01197402 0.04126244 -1.705268 0.01197402 0.04126244 -2.292679 0.01197402 0.04126244 -3.081414 0.01197402 0.04126244 -4.140474 0.01197402 0.04126244 -5.562508 0.01197402 0.04126244 -7.471917 0.01197402 0.04126244 -10.03574 0.01197402 0.04126244 -13.47828 0.01197402 0.04126244 -18.10068 0.01197402 0.04126244 -24.30731 0.01197402 0.04126244 -32.64117 0.01197402 0.04126244 -43.83129 0.01197402 0.04126244 -58.85664 0.01197402 0.04126244 --0.0175068 0.01903886 0.04126244 --0.01161267 0.01903886 0.04126244 --0.005718534 0.01903886 0.04126244 -0.0001755984 0.01903886 0.04126244 -0.006069731 0.01903886 0.04126244 -0.01197402 0.01903886 0.04126244 -0.01903886 0.01903886 0.04126244 -0.02852504 0.01903886 0.04126244 -0.04126244 0.01903886 0.04126244 -0.05836535 0.01903886 0.04126244 -0.08132997 0.01903886 0.04126244 -0.1121653 0.01903886 0.04126244 -0.1535689 0.01903886 0.04126244 -0.2091628 0.01903886 0.04126244 -0.2838106 0.01903886 0.04126244 -0.3840425 0.01903886 0.04126244 -0.518627 0.01903886 0.04126244 -0.6993381 0.01903886 0.04126244 -0.9419845 0.01903886 0.04126244 -1.267794 0.01903886 0.04126244 -1.705268 0.01903886 0.04126244 -2.292679 0.01903886 0.04126244 -3.081414 0.01903886 0.04126244 -4.140474 0.01903886 0.04126244 -5.562508 0.01903886 0.04126244 -7.471917 0.01903886 0.04126244 -10.03574 0.01903886 0.04126244 -13.47828 0.01903886 0.04126244 -18.10068 0.01903886 0.04126244 -24.30731 0.01903886 0.04126244 -32.64117 0.01903886 0.04126244 -43.83129 0.01903886 0.04126244 -58.85664 0.01903886 0.04126244 --0.0175068 0.02852504 0.04126244 --0.01161267 0.02852504 0.04126244 --0.005718534 0.02852504 0.04126244 -0.0001755984 0.02852504 0.04126244 -0.006069731 0.02852504 0.04126244 -0.01197402 0.02852504 0.04126244 -0.01903886 0.02852504 0.04126244 -0.02852504 0.02852504 0.04126244 -0.04126244 0.02852504 0.04126244 -0.05836535 0.02852504 0.04126244 -0.08132997 0.02852504 0.04126244 -0.1121653 0.02852504 0.04126244 -0.1535689 0.02852504 0.04126244 -0.2091628 0.02852504 0.04126244 -0.2838106 0.02852504 0.04126244 -0.3840425 0.02852504 0.04126244 -0.518627 0.02852504 0.04126244 -0.6993381 0.02852504 0.04126244 -0.9419845 0.02852504 0.04126244 -1.267794 0.02852504 0.04126244 -1.705268 0.02852504 0.04126244 -2.292679 0.02852504 0.04126244 -3.081414 0.02852504 0.04126244 -4.140474 0.02852504 0.04126244 -5.562508 0.02852504 0.04126244 -7.471917 0.02852504 0.04126244 -10.03574 0.02852504 0.04126244 -13.47828 0.02852504 0.04126244 -18.10068 0.02852504 0.04126244 -24.30731 0.02852504 0.04126244 -32.64117 0.02852504 0.04126244 -43.83129 0.02852504 0.04126244 -58.85664 0.02852504 0.04126244 --0.0175068 0.04126244 0.04126244 --0.01161267 0.04126244 0.04126244 --0.005718534 0.04126244 0.04126244 -0.0001755984 0.04126244 0.04126244 -0.006069731 0.04126244 0.04126244 -0.01197402 0.04126244 0.04126244 -0.01903886 0.04126244 0.04126244 -0.02852504 0.04126244 0.04126244 -0.04126244 0.04126244 0.04126244 -0.05836535 0.04126244 0.04126244 -0.08132997 0.04126244 0.04126244 -0.1121653 0.04126244 0.04126244 -0.1535689 0.04126244 0.04126244 -0.2091628 0.04126244 0.04126244 -0.2838106 0.04126244 0.04126244 -0.3840425 0.04126244 0.04126244 -0.518627 0.04126244 0.04126244 -0.6993381 0.04126244 0.04126244 -0.9419845 0.04126244 0.04126244 -1.267794 0.04126244 0.04126244 -1.705268 0.04126244 0.04126244 -2.292679 0.04126244 0.04126244 -3.081414 0.04126244 0.04126244 -4.140474 0.04126244 0.04126244 -5.562508 0.04126244 0.04126244 -7.471917 0.04126244 0.04126244 -10.03574 0.04126244 0.04126244 -13.47828 0.04126244 0.04126244 -18.10068 0.04126244 0.04126244 -24.30731 0.04126244 0.04126244 -32.64117 0.04126244 0.04126244 -43.83129 0.04126244 0.04126244 -58.85664 0.04126244 0.04126244 --0.0175068 0.05836535 0.04126244 --0.01161267 0.05836535 0.04126244 --0.005718534 0.05836535 0.04126244 -0.0001755984 0.05836535 0.04126244 -0.006069731 0.05836535 0.04126244 -0.01197402 0.05836535 0.04126244 -0.01903886 0.05836535 0.04126244 -0.02852504 0.05836535 0.04126244 -0.04126244 0.05836535 0.04126244 -0.05836535 0.05836535 0.04126244 -0.08132997 0.05836535 0.04126244 -0.1121653 0.05836535 0.04126244 -0.1535689 0.05836535 0.04126244 -0.2091628 0.05836535 0.04126244 -0.2838106 0.05836535 0.04126244 -0.3840425 0.05836535 0.04126244 -0.518627 0.05836535 0.04126244 -0.6993381 0.05836535 0.04126244 -0.9419845 0.05836535 0.04126244 -1.267794 0.05836535 0.04126244 -1.705268 0.05836535 0.04126244 -2.292679 0.05836535 0.04126244 -3.081414 0.05836535 0.04126244 -4.140474 0.05836535 0.04126244 -5.562508 0.05836535 0.04126244 -7.471917 0.05836535 0.04126244 -10.03574 0.05836535 0.04126244 -13.47828 0.05836535 0.04126244 -18.10068 0.05836535 0.04126244 -24.30731 0.05836535 0.04126244 -32.64117 0.05836535 0.04126244 -43.83129 0.05836535 0.04126244 -58.85664 0.05836535 0.04126244 --0.0175068 0.08132997 0.04126244 --0.01161267 0.08132997 0.04126244 --0.005718534 0.08132997 0.04126244 -0.0001755984 0.08132997 0.04126244 -0.006069731 0.08132997 0.04126244 -0.01197402 0.08132997 0.04126244 -0.01903886 0.08132997 0.04126244 -0.02852504 0.08132997 0.04126244 -0.04126244 0.08132997 0.04126244 -0.05836535 0.08132997 0.04126244 -0.08132997 0.08132997 0.04126244 -0.1121653 0.08132997 0.04126244 -0.1535689 0.08132997 0.04126244 -0.2091628 0.08132997 0.04126244 -0.2838106 0.08132997 0.04126244 -0.3840425 0.08132997 0.04126244 -0.518627 0.08132997 0.04126244 -0.6993381 0.08132997 0.04126244 -0.9419845 0.08132997 0.04126244 -1.267794 0.08132997 0.04126244 -1.705268 0.08132997 0.04126244 -2.292679 0.08132997 0.04126244 -3.081414 0.08132997 0.04126244 -4.140474 0.08132997 0.04126244 -5.562508 0.08132997 0.04126244 -7.471917 0.08132997 0.04126244 -10.03574 0.08132997 0.04126244 -13.47828 0.08132997 0.04126244 -18.10068 0.08132997 0.04126244 -24.30731 0.08132997 0.04126244 -32.64117 0.08132997 0.04126244 -43.83129 0.08132997 0.04126244 -58.85664 0.08132997 0.04126244 --0.0175068 0.1121653 0.04126244 --0.01161267 0.1121653 0.04126244 --0.005718534 0.1121653 0.04126244 -0.0001755984 0.1121653 0.04126244 -0.006069731 0.1121653 0.04126244 -0.01197402 0.1121653 0.04126244 -0.01903886 0.1121653 0.04126244 -0.02852504 0.1121653 0.04126244 -0.04126244 0.1121653 0.04126244 -0.05836535 0.1121653 0.04126244 -0.08132997 0.1121653 0.04126244 -0.1121653 0.1121653 0.04126244 -0.1535689 0.1121653 0.04126244 -0.2091628 0.1121653 0.04126244 -0.2838106 0.1121653 0.04126244 -0.3840425 0.1121653 0.04126244 -0.518627 0.1121653 0.04126244 -0.6993381 0.1121653 0.04126244 -0.9419845 0.1121653 0.04126244 -1.267794 0.1121653 0.04126244 -1.705268 0.1121653 0.04126244 -2.292679 0.1121653 0.04126244 -3.081414 0.1121653 0.04126244 -4.140474 0.1121653 0.04126244 -5.562508 0.1121653 0.04126244 -7.471917 0.1121653 0.04126244 -10.03574 0.1121653 0.04126244 -13.47828 0.1121653 0.04126244 -18.10068 0.1121653 0.04126244 -24.30731 0.1121653 0.04126244 -32.64117 0.1121653 0.04126244 -43.83129 0.1121653 0.04126244 -58.85664 0.1121653 0.04126244 --0.0175068 0.1535689 0.04126244 --0.01161267 0.1535689 0.04126244 --0.005718534 0.1535689 0.04126244 -0.0001755984 0.1535689 0.04126244 -0.006069731 0.1535689 0.04126244 -0.01197402 0.1535689 0.04126244 -0.01903886 0.1535689 0.04126244 -0.02852504 0.1535689 0.04126244 -0.04126244 0.1535689 0.04126244 -0.05836535 0.1535689 0.04126244 -0.08132997 0.1535689 0.04126244 -0.1121653 0.1535689 0.04126244 -0.1535689 0.1535689 0.04126244 -0.2091628 0.1535689 0.04126244 -0.2838106 0.1535689 0.04126244 -0.3840425 0.1535689 0.04126244 -0.518627 0.1535689 0.04126244 -0.6993381 0.1535689 0.04126244 -0.9419845 0.1535689 0.04126244 -1.267794 0.1535689 0.04126244 -1.705268 0.1535689 0.04126244 -2.292679 0.1535689 0.04126244 -3.081414 0.1535689 0.04126244 -4.140474 0.1535689 0.04126244 -5.562508 0.1535689 0.04126244 -7.471917 0.1535689 0.04126244 -10.03574 0.1535689 0.04126244 -13.47828 0.1535689 0.04126244 -18.10068 0.1535689 0.04126244 -24.30731 0.1535689 0.04126244 -32.64117 0.1535689 0.04126244 -43.83129 0.1535689 0.04126244 -58.85664 0.1535689 0.04126244 --0.0175068 0.2091628 0.04126244 --0.01161267 0.2091628 0.04126244 --0.005718534 0.2091628 0.04126244 -0.0001755984 0.2091628 0.04126244 -0.006069731 0.2091628 0.04126244 -0.01197402 0.2091628 0.04126244 -0.01903886 0.2091628 0.04126244 -0.02852504 0.2091628 0.04126244 -0.04126244 0.2091628 0.04126244 -0.05836535 0.2091628 0.04126244 -0.08132997 0.2091628 0.04126244 -0.1121653 0.2091628 0.04126244 -0.1535689 0.2091628 0.04126244 -0.2091628 0.2091628 0.04126244 -0.2838106 0.2091628 0.04126244 -0.3840425 0.2091628 0.04126244 -0.518627 0.2091628 0.04126244 -0.6993381 0.2091628 0.04126244 -0.9419845 0.2091628 0.04126244 -1.267794 0.2091628 0.04126244 -1.705268 0.2091628 0.04126244 -2.292679 0.2091628 0.04126244 -3.081414 0.2091628 0.04126244 -4.140474 0.2091628 0.04126244 -5.562508 0.2091628 0.04126244 -7.471917 0.2091628 0.04126244 -10.03574 0.2091628 0.04126244 -13.47828 0.2091628 0.04126244 -18.10068 0.2091628 0.04126244 -24.30731 0.2091628 0.04126244 -32.64117 0.2091628 0.04126244 -43.83129 0.2091628 0.04126244 -58.85664 0.2091628 0.04126244 --0.0175068 0.2838106 0.04126244 --0.01161267 0.2838106 0.04126244 --0.005718534 0.2838106 0.04126244 -0.0001755984 0.2838106 0.04126244 -0.006069731 0.2838106 0.04126244 -0.01197402 0.2838106 0.04126244 -0.01903886 0.2838106 0.04126244 -0.02852504 0.2838106 0.04126244 -0.04126244 0.2838106 0.04126244 -0.05836535 0.2838106 0.04126244 -0.08132997 0.2838106 0.04126244 -0.1121653 0.2838106 0.04126244 -0.1535689 0.2838106 0.04126244 -0.2091628 0.2838106 0.04126244 -0.2838106 0.2838106 0.04126244 -0.3840425 0.2838106 0.04126244 -0.518627 0.2838106 0.04126244 -0.6993381 0.2838106 0.04126244 -0.9419845 0.2838106 0.04126244 -1.267794 0.2838106 0.04126244 -1.705268 0.2838106 0.04126244 -2.292679 0.2838106 0.04126244 -3.081414 0.2838106 0.04126244 -4.140474 0.2838106 0.04126244 -5.562508 0.2838106 0.04126244 -7.471917 0.2838106 0.04126244 -10.03574 0.2838106 0.04126244 -13.47828 0.2838106 0.04126244 -18.10068 0.2838106 0.04126244 -24.30731 0.2838106 0.04126244 -32.64117 0.2838106 0.04126244 -43.83129 0.2838106 0.04126244 -58.85664 0.2838106 0.04126244 --0.0175068 0.3840425 0.04126244 --0.01161267 0.3840425 0.04126244 --0.005718534 0.3840425 0.04126244 -0.0001755984 0.3840425 0.04126244 -0.006069731 0.3840425 0.04126244 -0.01197402 0.3840425 0.04126244 -0.01903886 0.3840425 0.04126244 -0.02852504 0.3840425 0.04126244 -0.04126244 0.3840425 0.04126244 -0.05836535 0.3840425 0.04126244 -0.08132997 0.3840425 0.04126244 -0.1121653 0.3840425 0.04126244 -0.1535689 0.3840425 0.04126244 -0.2091628 0.3840425 0.04126244 -0.2838106 0.3840425 0.04126244 -0.3840425 0.3840425 0.04126244 -0.518627 0.3840425 0.04126244 -0.6993381 0.3840425 0.04126244 -0.9419845 0.3840425 0.04126244 -1.267794 0.3840425 0.04126244 -1.705268 0.3840425 0.04126244 -2.292679 0.3840425 0.04126244 -3.081414 0.3840425 0.04126244 -4.140474 0.3840425 0.04126244 -5.562508 0.3840425 0.04126244 -7.471917 0.3840425 0.04126244 -10.03574 0.3840425 0.04126244 -13.47828 0.3840425 0.04126244 -18.10068 0.3840425 0.04126244 -24.30731 0.3840425 0.04126244 -32.64117 0.3840425 0.04126244 -43.83129 0.3840425 0.04126244 -58.85664 0.3840425 0.04126244 --0.0175068 0.518627 0.04126244 --0.01161267 0.518627 0.04126244 --0.005718534 0.518627 0.04126244 -0.0001755984 0.518627 0.04126244 -0.006069731 0.518627 0.04126244 -0.01197402 0.518627 0.04126244 -0.01903886 0.518627 0.04126244 -0.02852504 0.518627 0.04126244 -0.04126244 0.518627 0.04126244 -0.05836535 0.518627 0.04126244 -0.08132997 0.518627 0.04126244 -0.1121653 0.518627 0.04126244 -0.1535689 0.518627 0.04126244 -0.2091628 0.518627 0.04126244 -0.2838106 0.518627 0.04126244 -0.3840425 0.518627 0.04126244 -0.518627 0.518627 0.04126244 -0.6993381 0.518627 0.04126244 -0.9419845 0.518627 0.04126244 -1.267794 0.518627 0.04126244 -1.705268 0.518627 0.04126244 -2.292679 0.518627 0.04126244 -3.081414 0.518627 0.04126244 -4.140474 0.518627 0.04126244 -5.562508 0.518627 0.04126244 -7.471917 0.518627 0.04126244 -10.03574 0.518627 0.04126244 -13.47828 0.518627 0.04126244 -18.10068 0.518627 0.04126244 -24.30731 0.518627 0.04126244 -32.64117 0.518627 0.04126244 -43.83129 0.518627 0.04126244 -58.85664 0.518627 0.04126244 --0.0175068 0.6993381 0.04126244 --0.01161267 0.6993381 0.04126244 --0.005718534 0.6993381 0.04126244 -0.0001755984 0.6993381 0.04126244 -0.006069731 0.6993381 0.04126244 -0.01197402 0.6993381 0.04126244 -0.01903886 0.6993381 0.04126244 -0.02852504 0.6993381 0.04126244 -0.04126244 0.6993381 0.04126244 -0.05836535 0.6993381 0.04126244 -0.08132997 0.6993381 0.04126244 -0.1121653 0.6993381 0.04126244 -0.1535689 0.6993381 0.04126244 -0.2091628 0.6993381 0.04126244 -0.2838106 0.6993381 0.04126244 -0.3840425 0.6993381 0.04126244 -0.518627 0.6993381 0.04126244 -0.6993381 0.6993381 0.04126244 -0.9419845 0.6993381 0.04126244 -1.267794 0.6993381 0.04126244 -1.705268 0.6993381 0.04126244 -2.292679 0.6993381 0.04126244 -3.081414 0.6993381 0.04126244 -4.140474 0.6993381 0.04126244 -5.562508 0.6993381 0.04126244 -7.471917 0.6993381 0.04126244 -10.03574 0.6993381 0.04126244 -13.47828 0.6993381 0.04126244 -18.10068 0.6993381 0.04126244 -24.30731 0.6993381 0.04126244 -32.64117 0.6993381 0.04126244 -43.83129 0.6993381 0.04126244 -58.85664 0.6993381 0.04126244 --0.0175068 0.9419845 0.04126244 --0.01161267 0.9419845 0.04126244 --0.005718534 0.9419845 0.04126244 -0.0001755984 0.9419845 0.04126244 -0.006069731 0.9419845 0.04126244 -0.01197402 0.9419845 0.04126244 -0.01903886 0.9419845 0.04126244 -0.02852504 0.9419845 0.04126244 -0.04126244 0.9419845 0.04126244 -0.05836535 0.9419845 0.04126244 -0.08132997 0.9419845 0.04126244 -0.1121653 0.9419845 0.04126244 -0.1535689 0.9419845 0.04126244 -0.2091628 0.9419845 0.04126244 -0.2838106 0.9419845 0.04126244 -0.3840425 0.9419845 0.04126244 -0.518627 0.9419845 0.04126244 -0.6993381 0.9419845 0.04126244 -0.9419845 0.9419845 0.04126244 -1.267794 0.9419845 0.04126244 -1.705268 0.9419845 0.04126244 -2.292679 0.9419845 0.04126244 -3.081414 0.9419845 0.04126244 -4.140474 0.9419845 0.04126244 -5.562508 0.9419845 0.04126244 -7.471917 0.9419845 0.04126244 -10.03574 0.9419845 0.04126244 -13.47828 0.9419845 0.04126244 -18.10068 0.9419845 0.04126244 -24.30731 0.9419845 0.04126244 -32.64117 0.9419845 0.04126244 -43.83129 0.9419845 0.04126244 -58.85664 0.9419845 0.04126244 --0.0175068 1.267794 0.04126244 --0.01161267 1.267794 0.04126244 --0.005718534 1.267794 0.04126244 -0.0001755984 1.267794 0.04126244 -0.006069731 1.267794 0.04126244 -0.01197402 1.267794 0.04126244 -0.01903886 1.267794 0.04126244 -0.02852504 1.267794 0.04126244 -0.04126244 1.267794 0.04126244 -0.05836535 1.267794 0.04126244 -0.08132997 1.267794 0.04126244 -0.1121653 1.267794 0.04126244 -0.1535689 1.267794 0.04126244 -0.2091628 1.267794 0.04126244 -0.2838106 1.267794 0.04126244 -0.3840425 1.267794 0.04126244 -0.518627 1.267794 0.04126244 -0.6993381 1.267794 0.04126244 -0.9419845 1.267794 0.04126244 -1.267794 1.267794 0.04126244 -1.705268 1.267794 0.04126244 -2.292679 1.267794 0.04126244 -3.081414 1.267794 0.04126244 -4.140474 1.267794 0.04126244 -5.562508 1.267794 0.04126244 -7.471917 1.267794 0.04126244 -10.03574 1.267794 0.04126244 -13.47828 1.267794 0.04126244 -18.10068 1.267794 0.04126244 -24.30731 1.267794 0.04126244 -32.64117 1.267794 0.04126244 -43.83129 1.267794 0.04126244 -58.85664 1.267794 0.04126244 --0.0175068 1.705268 0.04126244 --0.01161267 1.705268 0.04126244 --0.005718534 1.705268 0.04126244 -0.0001755984 1.705268 0.04126244 -0.006069731 1.705268 0.04126244 -0.01197402 1.705268 0.04126244 -0.01903886 1.705268 0.04126244 -0.02852504 1.705268 0.04126244 -0.04126244 1.705268 0.04126244 -0.05836535 1.705268 0.04126244 -0.08132997 1.705268 0.04126244 -0.1121653 1.705268 0.04126244 -0.1535689 1.705268 0.04126244 -0.2091628 1.705268 0.04126244 -0.2838106 1.705268 0.04126244 -0.3840425 1.705268 0.04126244 -0.518627 1.705268 0.04126244 -0.6993381 1.705268 0.04126244 -0.9419845 1.705268 0.04126244 -1.267794 1.705268 0.04126244 -1.705268 1.705268 0.04126244 -2.292679 1.705268 0.04126244 -3.081414 1.705268 0.04126244 -4.140474 1.705268 0.04126244 -5.562508 1.705268 0.04126244 -7.471917 1.705268 0.04126244 -10.03574 1.705268 0.04126244 -13.47828 1.705268 0.04126244 -18.10068 1.705268 0.04126244 -24.30731 1.705268 0.04126244 -32.64117 1.705268 0.04126244 -43.83129 1.705268 0.04126244 -58.85664 1.705268 0.04126244 --0.0175068 2.292679 0.04126244 --0.01161267 2.292679 0.04126244 --0.005718534 2.292679 0.04126244 -0.0001755984 2.292679 0.04126244 -0.006069731 2.292679 0.04126244 -0.01197402 2.292679 0.04126244 -0.01903886 2.292679 0.04126244 -0.02852504 2.292679 0.04126244 -0.04126244 2.292679 0.04126244 -0.05836535 2.292679 0.04126244 -0.08132997 2.292679 0.04126244 -0.1121653 2.292679 0.04126244 -0.1535689 2.292679 0.04126244 -0.2091628 2.292679 0.04126244 -0.2838106 2.292679 0.04126244 -0.3840425 2.292679 0.04126244 -0.518627 2.292679 0.04126244 -0.6993381 2.292679 0.04126244 -0.9419845 2.292679 0.04126244 -1.267794 2.292679 0.04126244 -1.705268 2.292679 0.04126244 -2.292679 2.292679 0.04126244 -3.081414 2.292679 0.04126244 -4.140474 2.292679 0.04126244 -5.562508 2.292679 0.04126244 -7.471917 2.292679 0.04126244 -10.03574 2.292679 0.04126244 -13.47828 2.292679 0.04126244 -18.10068 2.292679 0.04126244 -24.30731 2.292679 0.04126244 -32.64117 2.292679 0.04126244 -43.83129 2.292679 0.04126244 -58.85664 2.292679 0.04126244 --0.0175068 3.081414 0.04126244 --0.01161267 3.081414 0.04126244 --0.005718534 3.081414 0.04126244 -0.0001755984 3.081414 0.04126244 -0.006069731 3.081414 0.04126244 -0.01197402 3.081414 0.04126244 -0.01903886 3.081414 0.04126244 -0.02852504 3.081414 0.04126244 -0.04126244 3.081414 0.04126244 -0.05836535 3.081414 0.04126244 -0.08132997 3.081414 0.04126244 -0.1121653 3.081414 0.04126244 -0.1535689 3.081414 0.04126244 -0.2091628 3.081414 0.04126244 -0.2838106 3.081414 0.04126244 -0.3840425 3.081414 0.04126244 -0.518627 3.081414 0.04126244 -0.6993381 3.081414 0.04126244 -0.9419845 3.081414 0.04126244 -1.267794 3.081414 0.04126244 -1.705268 3.081414 0.04126244 -2.292679 3.081414 0.04126244 -3.081414 3.081414 0.04126244 -4.140474 3.081414 0.04126244 -5.562508 3.081414 0.04126244 -7.471917 3.081414 0.04126244 -10.03574 3.081414 0.04126244 -13.47828 3.081414 0.04126244 -18.10068 3.081414 0.04126244 -24.30731 3.081414 0.04126244 -32.64117 3.081414 0.04126244 -43.83129 3.081414 0.04126244 -58.85664 3.081414 0.04126244 --0.0175068 4.140474 0.04126244 --0.01161267 4.140474 0.04126244 --0.005718534 4.140474 0.04126244 -0.0001755984 4.140474 0.04126244 -0.006069731 4.140474 0.04126244 -0.01197402 4.140474 0.04126244 -0.01903886 4.140474 0.04126244 -0.02852504 4.140474 0.04126244 -0.04126244 4.140474 0.04126244 -0.05836535 4.140474 0.04126244 -0.08132997 4.140474 0.04126244 -0.1121653 4.140474 0.04126244 -0.1535689 4.140474 0.04126244 -0.2091628 4.140474 0.04126244 -0.2838106 4.140474 0.04126244 -0.3840425 4.140474 0.04126244 -0.518627 4.140474 0.04126244 -0.6993381 4.140474 0.04126244 -0.9419845 4.140474 0.04126244 -1.267794 4.140474 0.04126244 -1.705268 4.140474 0.04126244 -2.292679 4.140474 0.04126244 -3.081414 4.140474 0.04126244 -4.140474 4.140474 0.04126244 -5.562508 4.140474 0.04126244 -7.471917 4.140474 0.04126244 -10.03574 4.140474 0.04126244 -13.47828 4.140474 0.04126244 -18.10068 4.140474 0.04126244 -24.30731 4.140474 0.04126244 -32.64117 4.140474 0.04126244 -43.83129 4.140474 0.04126244 -58.85664 4.140474 0.04126244 --0.0175068 5.562508 0.04126244 --0.01161267 5.562508 0.04126244 --0.005718534 5.562508 0.04126244 -0.0001755984 5.562508 0.04126244 -0.006069731 5.562508 0.04126244 -0.01197402 5.562508 0.04126244 -0.01903886 5.562508 0.04126244 -0.02852504 5.562508 0.04126244 -0.04126244 5.562508 0.04126244 -0.05836535 5.562508 0.04126244 -0.08132997 5.562508 0.04126244 -0.1121653 5.562508 0.04126244 -0.1535689 5.562508 0.04126244 -0.2091628 5.562508 0.04126244 -0.2838106 5.562508 0.04126244 -0.3840425 5.562508 0.04126244 -0.518627 5.562508 0.04126244 -0.6993381 5.562508 0.04126244 -0.9419845 5.562508 0.04126244 -1.267794 5.562508 0.04126244 -1.705268 5.562508 0.04126244 -2.292679 5.562508 0.04126244 -3.081414 5.562508 0.04126244 -4.140474 5.562508 0.04126244 -5.562508 5.562508 0.04126244 -7.471917 5.562508 0.04126244 -10.03574 5.562508 0.04126244 -13.47828 5.562508 0.04126244 -18.10068 5.562508 0.04126244 -24.30731 5.562508 0.04126244 -32.64117 5.562508 0.04126244 -43.83129 5.562508 0.04126244 -58.85664 5.562508 0.04126244 --0.0175068 7.471917 0.04126244 --0.01161267 7.471917 0.04126244 --0.005718534 7.471917 0.04126244 -0.0001755984 7.471917 0.04126244 -0.006069731 7.471917 0.04126244 -0.01197402 7.471917 0.04126244 -0.01903886 7.471917 0.04126244 -0.02852504 7.471917 0.04126244 -0.04126244 7.471917 0.04126244 -0.05836535 7.471917 0.04126244 -0.08132997 7.471917 0.04126244 -0.1121653 7.471917 0.04126244 -0.1535689 7.471917 0.04126244 -0.2091628 7.471917 0.04126244 -0.2838106 7.471917 0.04126244 -0.3840425 7.471917 0.04126244 -0.518627 7.471917 0.04126244 -0.6993381 7.471917 0.04126244 -0.9419845 7.471917 0.04126244 -1.267794 7.471917 0.04126244 -1.705268 7.471917 0.04126244 -2.292679 7.471917 0.04126244 -3.081414 7.471917 0.04126244 -4.140474 7.471917 0.04126244 -5.562508 7.471917 0.04126244 -7.471917 7.471917 0.04126244 -10.03574 7.471917 0.04126244 -13.47828 7.471917 0.04126244 -18.10068 7.471917 0.04126244 -24.30731 7.471917 0.04126244 -32.64117 7.471917 0.04126244 -43.83129 7.471917 0.04126244 -58.85664 7.471917 0.04126244 --0.0175068 10.03574 0.04126244 --0.01161267 10.03574 0.04126244 --0.005718534 10.03574 0.04126244 -0.0001755984 10.03574 0.04126244 -0.006069731 10.03574 0.04126244 -0.01197402 10.03574 0.04126244 -0.01903886 10.03574 0.04126244 -0.02852504 10.03574 0.04126244 -0.04126244 10.03574 0.04126244 -0.05836535 10.03574 0.04126244 -0.08132997 10.03574 0.04126244 -0.1121653 10.03574 0.04126244 -0.1535689 10.03574 0.04126244 -0.2091628 10.03574 0.04126244 -0.2838106 10.03574 0.04126244 -0.3840425 10.03574 0.04126244 -0.518627 10.03574 0.04126244 -0.6993381 10.03574 0.04126244 -0.9419845 10.03574 0.04126244 -1.267794 10.03574 0.04126244 -1.705268 10.03574 0.04126244 -2.292679 10.03574 0.04126244 -3.081414 10.03574 0.04126244 -4.140474 10.03574 0.04126244 -5.562508 10.03574 0.04126244 -7.471917 10.03574 0.04126244 -10.03574 10.03574 0.04126244 -13.47828 10.03574 0.04126244 -18.10068 10.03574 0.04126244 -24.30731 10.03574 0.04126244 -32.64117 10.03574 0.04126244 -43.83129 10.03574 0.04126244 -58.85664 10.03574 0.04126244 --0.0175068 13.47828 0.04126244 --0.01161267 13.47828 0.04126244 --0.005718534 13.47828 0.04126244 -0.0001755984 13.47828 0.04126244 -0.006069731 13.47828 0.04126244 -0.01197402 13.47828 0.04126244 -0.01903886 13.47828 0.04126244 -0.02852504 13.47828 0.04126244 -0.04126244 13.47828 0.04126244 -0.05836535 13.47828 0.04126244 -0.08132997 13.47828 0.04126244 -0.1121653 13.47828 0.04126244 -0.1535689 13.47828 0.04126244 -0.2091628 13.47828 0.04126244 -0.2838106 13.47828 0.04126244 -0.3840425 13.47828 0.04126244 -0.518627 13.47828 0.04126244 -0.6993381 13.47828 0.04126244 -0.9419845 13.47828 0.04126244 -1.267794 13.47828 0.04126244 -1.705268 13.47828 0.04126244 -2.292679 13.47828 0.04126244 -3.081414 13.47828 0.04126244 -4.140474 13.47828 0.04126244 -5.562508 13.47828 0.04126244 -7.471917 13.47828 0.04126244 -10.03574 13.47828 0.04126244 -13.47828 13.47828 0.04126244 -18.10068 13.47828 0.04126244 -24.30731 13.47828 0.04126244 -32.64117 13.47828 0.04126244 -43.83129 13.47828 0.04126244 -58.85664 13.47828 0.04126244 --0.0175068 18.10068 0.04126244 --0.01161267 18.10068 0.04126244 --0.005718534 18.10068 0.04126244 -0.0001755984 18.10068 0.04126244 -0.006069731 18.10068 0.04126244 -0.01197402 18.10068 0.04126244 -0.01903886 18.10068 0.04126244 -0.02852504 18.10068 0.04126244 -0.04126244 18.10068 0.04126244 -0.05836535 18.10068 0.04126244 -0.08132997 18.10068 0.04126244 -0.1121653 18.10068 0.04126244 -0.1535689 18.10068 0.04126244 -0.2091628 18.10068 0.04126244 -0.2838106 18.10068 0.04126244 -0.3840425 18.10068 0.04126244 -0.518627 18.10068 0.04126244 -0.6993381 18.10068 0.04126244 -0.9419845 18.10068 0.04126244 -1.267794 18.10068 0.04126244 -1.705268 18.10068 0.04126244 -2.292679 18.10068 0.04126244 -3.081414 18.10068 0.04126244 -4.140474 18.10068 0.04126244 -5.562508 18.10068 0.04126244 -7.471917 18.10068 0.04126244 -10.03574 18.10068 0.04126244 -13.47828 18.10068 0.04126244 -18.10068 18.10068 0.04126244 -24.30731 18.10068 0.04126244 -32.64117 18.10068 0.04126244 -43.83129 18.10068 0.04126244 -58.85664 18.10068 0.04126244 --0.0175068 24.30731 0.04126244 --0.01161267 24.30731 0.04126244 --0.005718534 24.30731 0.04126244 -0.0001755984 24.30731 0.04126244 -0.006069731 24.30731 0.04126244 -0.01197402 24.30731 0.04126244 -0.01903886 24.30731 0.04126244 -0.02852504 24.30731 0.04126244 -0.04126244 24.30731 0.04126244 -0.05836535 24.30731 0.04126244 -0.08132997 24.30731 0.04126244 -0.1121653 24.30731 0.04126244 -0.1535689 24.30731 0.04126244 -0.2091628 24.30731 0.04126244 -0.2838106 24.30731 0.04126244 -0.3840425 24.30731 0.04126244 -0.518627 24.30731 0.04126244 -0.6993381 24.30731 0.04126244 -0.9419845 24.30731 0.04126244 -1.267794 24.30731 0.04126244 -1.705268 24.30731 0.04126244 -2.292679 24.30731 0.04126244 -3.081414 24.30731 0.04126244 -4.140474 24.30731 0.04126244 -5.562508 24.30731 0.04126244 -7.471917 24.30731 0.04126244 -10.03574 24.30731 0.04126244 -13.47828 24.30731 0.04126244 -18.10068 24.30731 0.04126244 -24.30731 24.30731 0.04126244 -32.64117 24.30731 0.04126244 -43.83129 24.30731 0.04126244 -58.85664 24.30731 0.04126244 --0.0175068 32.64117 0.04126244 --0.01161267 32.64117 0.04126244 --0.005718534 32.64117 0.04126244 -0.0001755984 32.64117 0.04126244 -0.006069731 32.64117 0.04126244 -0.01197402 32.64117 0.04126244 -0.01903886 32.64117 0.04126244 -0.02852504 32.64117 0.04126244 -0.04126244 32.64117 0.04126244 -0.05836535 32.64117 0.04126244 -0.08132997 32.64117 0.04126244 -0.1121653 32.64117 0.04126244 -0.1535689 32.64117 0.04126244 -0.2091628 32.64117 0.04126244 -0.2838106 32.64117 0.04126244 -0.3840425 32.64117 0.04126244 -0.518627 32.64117 0.04126244 -0.6993381 32.64117 0.04126244 -0.9419845 32.64117 0.04126244 -1.267794 32.64117 0.04126244 -1.705268 32.64117 0.04126244 -2.292679 32.64117 0.04126244 -3.081414 32.64117 0.04126244 -4.140474 32.64117 0.04126244 -5.562508 32.64117 0.04126244 -7.471917 32.64117 0.04126244 -10.03574 32.64117 0.04126244 -13.47828 32.64117 0.04126244 -18.10068 32.64117 0.04126244 -24.30731 32.64117 0.04126244 -32.64117 32.64117 0.04126244 -43.83129 32.64117 0.04126244 -58.85664 32.64117 0.04126244 --0.0175068 43.83129 0.04126244 --0.01161267 43.83129 0.04126244 --0.005718534 43.83129 0.04126244 -0.0001755984 43.83129 0.04126244 -0.006069731 43.83129 0.04126244 -0.01197402 43.83129 0.04126244 -0.01903886 43.83129 0.04126244 -0.02852504 43.83129 0.04126244 -0.04126244 43.83129 0.04126244 -0.05836535 43.83129 0.04126244 -0.08132997 43.83129 0.04126244 -0.1121653 43.83129 0.04126244 -0.1535689 43.83129 0.04126244 -0.2091628 43.83129 0.04126244 -0.2838106 43.83129 0.04126244 -0.3840425 43.83129 0.04126244 -0.518627 43.83129 0.04126244 -0.6993381 43.83129 0.04126244 -0.9419845 43.83129 0.04126244 -1.267794 43.83129 0.04126244 -1.705268 43.83129 0.04126244 -2.292679 43.83129 0.04126244 -3.081414 43.83129 0.04126244 -4.140474 43.83129 0.04126244 -5.562508 43.83129 0.04126244 -7.471917 43.83129 0.04126244 -10.03574 43.83129 0.04126244 -13.47828 43.83129 0.04126244 -18.10068 43.83129 0.04126244 -24.30731 43.83129 0.04126244 -32.64117 43.83129 0.04126244 -43.83129 43.83129 0.04126244 -58.85664 43.83129 0.04126244 --0.0175068 58.85664 0.04126244 --0.01161267 58.85664 0.04126244 --0.005718534 58.85664 0.04126244 -0.0001755984 58.85664 0.04126244 -0.006069731 58.85664 0.04126244 -0.01197402 58.85664 0.04126244 -0.01903886 58.85664 0.04126244 -0.02852504 58.85664 0.04126244 -0.04126244 58.85664 0.04126244 -0.05836535 58.85664 0.04126244 -0.08132997 58.85664 0.04126244 -0.1121653 58.85664 0.04126244 -0.1535689 58.85664 0.04126244 -0.2091628 58.85664 0.04126244 -0.2838106 58.85664 0.04126244 -0.3840425 58.85664 0.04126244 -0.518627 58.85664 0.04126244 -0.6993381 58.85664 0.04126244 -0.9419845 58.85664 0.04126244 -1.267794 58.85664 0.04126244 -1.705268 58.85664 0.04126244 -2.292679 58.85664 0.04126244 -3.081414 58.85664 0.04126244 -4.140474 58.85664 0.04126244 -5.562508 58.85664 0.04126244 -7.471917 58.85664 0.04126244 -10.03574 58.85664 0.04126244 -13.47828 58.85664 0.04126244 -18.10068 58.85664 0.04126244 -24.30731 58.85664 0.04126244 -32.64117 58.85664 0.04126244 -43.83129 58.85664 0.04126244 -58.85664 58.85664 0.04126244 --0.0175068 -0.0175068 0.05836535 --0.01161267 -0.0175068 0.05836535 --0.005718534 -0.0175068 0.05836535 -0.0001755984 -0.0175068 0.05836535 -0.006069731 -0.0175068 0.05836535 -0.01197402 -0.0175068 0.05836535 -0.01903886 -0.0175068 0.05836535 -0.02852504 -0.0175068 0.05836535 -0.04126244 -0.0175068 0.05836535 -0.05836535 -0.0175068 0.05836535 -0.08132997 -0.0175068 0.05836535 -0.1121653 -0.0175068 0.05836535 -0.1535689 -0.0175068 0.05836535 -0.2091628 -0.0175068 0.05836535 -0.2838106 -0.0175068 0.05836535 -0.3840425 -0.0175068 0.05836535 -0.518627 -0.0175068 0.05836535 -0.6993381 -0.0175068 0.05836535 -0.9419845 -0.0175068 0.05836535 -1.267794 -0.0175068 0.05836535 -1.705268 -0.0175068 0.05836535 -2.292679 -0.0175068 0.05836535 -3.081414 -0.0175068 0.05836535 -4.140474 -0.0175068 0.05836535 -5.562508 -0.0175068 0.05836535 -7.471917 -0.0175068 0.05836535 -10.03574 -0.0175068 0.05836535 -13.47828 -0.0175068 0.05836535 -18.10068 -0.0175068 0.05836535 -24.30731 -0.0175068 0.05836535 -32.64117 -0.0175068 0.05836535 -43.83129 -0.0175068 0.05836535 -58.85664 -0.0175068 0.05836535 --0.0175068 -0.01161267 0.05836535 --0.01161267 -0.01161267 0.05836535 --0.005718534 -0.01161267 0.05836535 -0.0001755984 -0.01161267 0.05836535 -0.006069731 -0.01161267 0.05836535 -0.01197402 -0.01161267 0.05836535 -0.01903886 -0.01161267 0.05836535 -0.02852504 -0.01161267 0.05836535 -0.04126244 -0.01161267 0.05836535 -0.05836535 -0.01161267 0.05836535 -0.08132997 -0.01161267 0.05836535 -0.1121653 -0.01161267 0.05836535 -0.1535689 -0.01161267 0.05836535 -0.2091628 -0.01161267 0.05836535 -0.2838106 -0.01161267 0.05836535 -0.3840425 -0.01161267 0.05836535 -0.518627 -0.01161267 0.05836535 -0.6993381 -0.01161267 0.05836535 -0.9419845 -0.01161267 0.05836535 -1.267794 -0.01161267 0.05836535 -1.705268 -0.01161267 0.05836535 -2.292679 -0.01161267 0.05836535 -3.081414 -0.01161267 0.05836535 -4.140474 -0.01161267 0.05836535 -5.562508 -0.01161267 0.05836535 -7.471917 -0.01161267 0.05836535 -10.03574 -0.01161267 0.05836535 -13.47828 -0.01161267 0.05836535 -18.10068 -0.01161267 0.05836535 -24.30731 -0.01161267 0.05836535 -32.64117 -0.01161267 0.05836535 -43.83129 -0.01161267 0.05836535 -58.85664 -0.01161267 0.05836535 --0.0175068 -0.005718534 0.05836535 --0.01161267 -0.005718534 0.05836535 --0.005718534 -0.005718534 0.05836535 -0.0001755984 -0.005718534 0.05836535 -0.006069731 -0.005718534 0.05836535 -0.01197402 -0.005718534 0.05836535 -0.01903886 -0.005718534 0.05836535 -0.02852504 -0.005718534 0.05836535 -0.04126244 -0.005718534 0.05836535 -0.05836535 -0.005718534 0.05836535 -0.08132997 -0.005718534 0.05836535 -0.1121653 -0.005718534 0.05836535 -0.1535689 -0.005718534 0.05836535 -0.2091628 -0.005718534 0.05836535 -0.2838106 -0.005718534 0.05836535 -0.3840425 -0.005718534 0.05836535 -0.518627 -0.005718534 0.05836535 -0.6993381 -0.005718534 0.05836535 -0.9419845 -0.005718534 0.05836535 -1.267794 -0.005718534 0.05836535 -1.705268 -0.005718534 0.05836535 -2.292679 -0.005718534 0.05836535 -3.081414 -0.005718534 0.05836535 -4.140474 -0.005718534 0.05836535 -5.562508 -0.005718534 0.05836535 -7.471917 -0.005718534 0.05836535 -10.03574 -0.005718534 0.05836535 -13.47828 -0.005718534 0.05836535 -18.10068 -0.005718534 0.05836535 -24.30731 -0.005718534 0.05836535 -32.64117 -0.005718534 0.05836535 -43.83129 -0.005718534 0.05836535 -58.85664 -0.005718534 0.05836535 --0.0175068 0.0001755984 0.05836535 --0.01161267 0.0001755984 0.05836535 --0.005718534 0.0001755984 0.05836535 -0.0001755984 0.0001755984 0.05836535 -0.006069731 0.0001755984 0.05836535 -0.01197402 0.0001755984 0.05836535 -0.01903886 0.0001755984 0.05836535 -0.02852504 0.0001755984 0.05836535 -0.04126244 0.0001755984 0.05836535 -0.05836535 0.0001755984 0.05836535 -0.08132997 0.0001755984 0.05836535 -0.1121653 0.0001755984 0.05836535 -0.1535689 0.0001755984 0.05836535 -0.2091628 0.0001755984 0.05836535 -0.2838106 0.0001755984 0.05836535 -0.3840425 0.0001755984 0.05836535 -0.518627 0.0001755984 0.05836535 -0.6993381 0.0001755984 0.05836535 -0.9419845 0.0001755984 0.05836535 -1.267794 0.0001755984 0.05836535 -1.705268 0.0001755984 0.05836535 -2.292679 0.0001755984 0.05836535 -3.081414 0.0001755984 0.05836535 -4.140474 0.0001755984 0.05836535 -5.562508 0.0001755984 0.05836535 -7.471917 0.0001755984 0.05836535 -10.03574 0.0001755984 0.05836535 -13.47828 0.0001755984 0.05836535 -18.10068 0.0001755984 0.05836535 -24.30731 0.0001755984 0.05836535 -32.64117 0.0001755984 0.05836535 -43.83129 0.0001755984 0.05836535 -58.85664 0.0001755984 0.05836535 --0.0175068 0.006069731 0.05836535 --0.01161267 0.006069731 0.05836535 --0.005718534 0.006069731 0.05836535 -0.0001755984 0.006069731 0.05836535 -0.006069731 0.006069731 0.05836535 -0.01197402 0.006069731 0.05836535 -0.01903886 0.006069731 0.05836535 -0.02852504 0.006069731 0.05836535 -0.04126244 0.006069731 0.05836535 -0.05836535 0.006069731 0.05836535 -0.08132997 0.006069731 0.05836535 -0.1121653 0.006069731 0.05836535 -0.1535689 0.006069731 0.05836535 -0.2091628 0.006069731 0.05836535 -0.2838106 0.006069731 0.05836535 -0.3840425 0.006069731 0.05836535 -0.518627 0.006069731 0.05836535 -0.6993381 0.006069731 0.05836535 -0.9419845 0.006069731 0.05836535 -1.267794 0.006069731 0.05836535 -1.705268 0.006069731 0.05836535 -2.292679 0.006069731 0.05836535 -3.081414 0.006069731 0.05836535 -4.140474 0.006069731 0.05836535 -5.562508 0.006069731 0.05836535 -7.471917 0.006069731 0.05836535 -10.03574 0.006069731 0.05836535 -13.47828 0.006069731 0.05836535 -18.10068 0.006069731 0.05836535 -24.30731 0.006069731 0.05836535 -32.64117 0.006069731 0.05836535 -43.83129 0.006069731 0.05836535 -58.85664 0.006069731 0.05836535 --0.0175068 0.01197402 0.05836535 --0.01161267 0.01197402 0.05836535 --0.005718534 0.01197402 0.05836535 -0.0001755984 0.01197402 0.05836535 -0.006069731 0.01197402 0.05836535 -0.01197402 0.01197402 0.05836535 -0.01903886 0.01197402 0.05836535 -0.02852504 0.01197402 0.05836535 -0.04126244 0.01197402 0.05836535 -0.05836535 0.01197402 0.05836535 -0.08132997 0.01197402 0.05836535 -0.1121653 0.01197402 0.05836535 -0.1535689 0.01197402 0.05836535 -0.2091628 0.01197402 0.05836535 -0.2838106 0.01197402 0.05836535 -0.3840425 0.01197402 0.05836535 -0.518627 0.01197402 0.05836535 -0.6993381 0.01197402 0.05836535 -0.9419845 0.01197402 0.05836535 -1.267794 0.01197402 0.05836535 -1.705268 0.01197402 0.05836535 -2.292679 0.01197402 0.05836535 -3.081414 0.01197402 0.05836535 -4.140474 0.01197402 0.05836535 -5.562508 0.01197402 0.05836535 -7.471917 0.01197402 0.05836535 -10.03574 0.01197402 0.05836535 -13.47828 0.01197402 0.05836535 -18.10068 0.01197402 0.05836535 -24.30731 0.01197402 0.05836535 -32.64117 0.01197402 0.05836535 -43.83129 0.01197402 0.05836535 -58.85664 0.01197402 0.05836535 --0.0175068 0.01903886 0.05836535 --0.01161267 0.01903886 0.05836535 --0.005718534 0.01903886 0.05836535 -0.0001755984 0.01903886 0.05836535 -0.006069731 0.01903886 0.05836535 -0.01197402 0.01903886 0.05836535 -0.01903886 0.01903886 0.05836535 -0.02852504 0.01903886 0.05836535 -0.04126244 0.01903886 0.05836535 -0.05836535 0.01903886 0.05836535 -0.08132997 0.01903886 0.05836535 -0.1121653 0.01903886 0.05836535 -0.1535689 0.01903886 0.05836535 -0.2091628 0.01903886 0.05836535 -0.2838106 0.01903886 0.05836535 -0.3840425 0.01903886 0.05836535 -0.518627 0.01903886 0.05836535 -0.6993381 0.01903886 0.05836535 -0.9419845 0.01903886 0.05836535 -1.267794 0.01903886 0.05836535 -1.705268 0.01903886 0.05836535 -2.292679 0.01903886 0.05836535 -3.081414 0.01903886 0.05836535 -4.140474 0.01903886 0.05836535 -5.562508 0.01903886 0.05836535 -7.471917 0.01903886 0.05836535 -10.03574 0.01903886 0.05836535 -13.47828 0.01903886 0.05836535 -18.10068 0.01903886 0.05836535 -24.30731 0.01903886 0.05836535 -32.64117 0.01903886 0.05836535 -43.83129 0.01903886 0.05836535 -58.85664 0.01903886 0.05836535 --0.0175068 0.02852504 0.05836535 --0.01161267 0.02852504 0.05836535 --0.005718534 0.02852504 0.05836535 -0.0001755984 0.02852504 0.05836535 -0.006069731 0.02852504 0.05836535 -0.01197402 0.02852504 0.05836535 -0.01903886 0.02852504 0.05836535 -0.02852504 0.02852504 0.05836535 -0.04126244 0.02852504 0.05836535 -0.05836535 0.02852504 0.05836535 -0.08132997 0.02852504 0.05836535 -0.1121653 0.02852504 0.05836535 -0.1535689 0.02852504 0.05836535 -0.2091628 0.02852504 0.05836535 -0.2838106 0.02852504 0.05836535 -0.3840425 0.02852504 0.05836535 -0.518627 0.02852504 0.05836535 -0.6993381 0.02852504 0.05836535 -0.9419845 0.02852504 0.05836535 -1.267794 0.02852504 0.05836535 -1.705268 0.02852504 0.05836535 -2.292679 0.02852504 0.05836535 -3.081414 0.02852504 0.05836535 -4.140474 0.02852504 0.05836535 -5.562508 0.02852504 0.05836535 -7.471917 0.02852504 0.05836535 -10.03574 0.02852504 0.05836535 -13.47828 0.02852504 0.05836535 -18.10068 0.02852504 0.05836535 -24.30731 0.02852504 0.05836535 -32.64117 0.02852504 0.05836535 -43.83129 0.02852504 0.05836535 -58.85664 0.02852504 0.05836535 --0.0175068 0.04126244 0.05836535 --0.01161267 0.04126244 0.05836535 --0.005718534 0.04126244 0.05836535 -0.0001755984 0.04126244 0.05836535 -0.006069731 0.04126244 0.05836535 -0.01197402 0.04126244 0.05836535 -0.01903886 0.04126244 0.05836535 -0.02852504 0.04126244 0.05836535 -0.04126244 0.04126244 0.05836535 -0.05836535 0.04126244 0.05836535 -0.08132997 0.04126244 0.05836535 -0.1121653 0.04126244 0.05836535 -0.1535689 0.04126244 0.05836535 -0.2091628 0.04126244 0.05836535 -0.2838106 0.04126244 0.05836535 -0.3840425 0.04126244 0.05836535 -0.518627 0.04126244 0.05836535 -0.6993381 0.04126244 0.05836535 -0.9419845 0.04126244 0.05836535 -1.267794 0.04126244 0.05836535 -1.705268 0.04126244 0.05836535 -2.292679 0.04126244 0.05836535 -3.081414 0.04126244 0.05836535 -4.140474 0.04126244 0.05836535 -5.562508 0.04126244 0.05836535 -7.471917 0.04126244 0.05836535 -10.03574 0.04126244 0.05836535 -13.47828 0.04126244 0.05836535 -18.10068 0.04126244 0.05836535 -24.30731 0.04126244 0.05836535 -32.64117 0.04126244 0.05836535 -43.83129 0.04126244 0.05836535 -58.85664 0.04126244 0.05836535 --0.0175068 0.05836535 0.05836535 --0.01161267 0.05836535 0.05836535 --0.005718534 0.05836535 0.05836535 -0.0001755984 0.05836535 0.05836535 -0.006069731 0.05836535 0.05836535 -0.01197402 0.05836535 0.05836535 -0.01903886 0.05836535 0.05836535 -0.02852504 0.05836535 0.05836535 -0.04126244 0.05836535 0.05836535 -0.05836535 0.05836535 0.05836535 -0.08132997 0.05836535 0.05836535 -0.1121653 0.05836535 0.05836535 -0.1535689 0.05836535 0.05836535 -0.2091628 0.05836535 0.05836535 -0.2838106 0.05836535 0.05836535 -0.3840425 0.05836535 0.05836535 -0.518627 0.05836535 0.05836535 -0.6993381 0.05836535 0.05836535 -0.9419845 0.05836535 0.05836535 -1.267794 0.05836535 0.05836535 -1.705268 0.05836535 0.05836535 -2.292679 0.05836535 0.05836535 -3.081414 0.05836535 0.05836535 -4.140474 0.05836535 0.05836535 -5.562508 0.05836535 0.05836535 -7.471917 0.05836535 0.05836535 -10.03574 0.05836535 0.05836535 -13.47828 0.05836535 0.05836535 -18.10068 0.05836535 0.05836535 -24.30731 0.05836535 0.05836535 -32.64117 0.05836535 0.05836535 -43.83129 0.05836535 0.05836535 -58.85664 0.05836535 0.05836535 --0.0175068 0.08132997 0.05836535 --0.01161267 0.08132997 0.05836535 --0.005718534 0.08132997 0.05836535 -0.0001755984 0.08132997 0.05836535 -0.006069731 0.08132997 0.05836535 -0.01197402 0.08132997 0.05836535 -0.01903886 0.08132997 0.05836535 -0.02852504 0.08132997 0.05836535 -0.04126244 0.08132997 0.05836535 -0.05836535 0.08132997 0.05836535 -0.08132997 0.08132997 0.05836535 -0.1121653 0.08132997 0.05836535 -0.1535689 0.08132997 0.05836535 -0.2091628 0.08132997 0.05836535 -0.2838106 0.08132997 0.05836535 -0.3840425 0.08132997 0.05836535 -0.518627 0.08132997 0.05836535 -0.6993381 0.08132997 0.05836535 -0.9419845 0.08132997 0.05836535 -1.267794 0.08132997 0.05836535 -1.705268 0.08132997 0.05836535 -2.292679 0.08132997 0.05836535 -3.081414 0.08132997 0.05836535 -4.140474 0.08132997 0.05836535 -5.562508 0.08132997 0.05836535 -7.471917 0.08132997 0.05836535 -10.03574 0.08132997 0.05836535 -13.47828 0.08132997 0.05836535 -18.10068 0.08132997 0.05836535 -24.30731 0.08132997 0.05836535 -32.64117 0.08132997 0.05836535 -43.83129 0.08132997 0.05836535 -58.85664 0.08132997 0.05836535 --0.0175068 0.1121653 0.05836535 --0.01161267 0.1121653 0.05836535 --0.005718534 0.1121653 0.05836535 -0.0001755984 0.1121653 0.05836535 -0.006069731 0.1121653 0.05836535 -0.01197402 0.1121653 0.05836535 -0.01903886 0.1121653 0.05836535 -0.02852504 0.1121653 0.05836535 -0.04126244 0.1121653 0.05836535 -0.05836535 0.1121653 0.05836535 -0.08132997 0.1121653 0.05836535 -0.1121653 0.1121653 0.05836535 -0.1535689 0.1121653 0.05836535 -0.2091628 0.1121653 0.05836535 -0.2838106 0.1121653 0.05836535 -0.3840425 0.1121653 0.05836535 -0.518627 0.1121653 0.05836535 -0.6993381 0.1121653 0.05836535 -0.9419845 0.1121653 0.05836535 -1.267794 0.1121653 0.05836535 -1.705268 0.1121653 0.05836535 -2.292679 0.1121653 0.05836535 -3.081414 0.1121653 0.05836535 -4.140474 0.1121653 0.05836535 -5.562508 0.1121653 0.05836535 -7.471917 0.1121653 0.05836535 -10.03574 0.1121653 0.05836535 -13.47828 0.1121653 0.05836535 -18.10068 0.1121653 0.05836535 -24.30731 0.1121653 0.05836535 -32.64117 0.1121653 0.05836535 -43.83129 0.1121653 0.05836535 -58.85664 0.1121653 0.05836535 --0.0175068 0.1535689 0.05836535 --0.01161267 0.1535689 0.05836535 --0.005718534 0.1535689 0.05836535 -0.0001755984 0.1535689 0.05836535 -0.006069731 0.1535689 0.05836535 -0.01197402 0.1535689 0.05836535 -0.01903886 0.1535689 0.05836535 -0.02852504 0.1535689 0.05836535 -0.04126244 0.1535689 0.05836535 -0.05836535 0.1535689 0.05836535 -0.08132997 0.1535689 0.05836535 -0.1121653 0.1535689 0.05836535 -0.1535689 0.1535689 0.05836535 -0.2091628 0.1535689 0.05836535 -0.2838106 0.1535689 0.05836535 -0.3840425 0.1535689 0.05836535 -0.518627 0.1535689 0.05836535 -0.6993381 0.1535689 0.05836535 -0.9419845 0.1535689 0.05836535 -1.267794 0.1535689 0.05836535 -1.705268 0.1535689 0.05836535 -2.292679 0.1535689 0.05836535 -3.081414 0.1535689 0.05836535 -4.140474 0.1535689 0.05836535 -5.562508 0.1535689 0.05836535 -7.471917 0.1535689 0.05836535 -10.03574 0.1535689 0.05836535 -13.47828 0.1535689 0.05836535 -18.10068 0.1535689 0.05836535 -24.30731 0.1535689 0.05836535 -32.64117 0.1535689 0.05836535 -43.83129 0.1535689 0.05836535 -58.85664 0.1535689 0.05836535 --0.0175068 0.2091628 0.05836535 --0.01161267 0.2091628 0.05836535 --0.005718534 0.2091628 0.05836535 -0.0001755984 0.2091628 0.05836535 -0.006069731 0.2091628 0.05836535 -0.01197402 0.2091628 0.05836535 -0.01903886 0.2091628 0.05836535 -0.02852504 0.2091628 0.05836535 -0.04126244 0.2091628 0.05836535 -0.05836535 0.2091628 0.05836535 -0.08132997 0.2091628 0.05836535 -0.1121653 0.2091628 0.05836535 -0.1535689 0.2091628 0.05836535 -0.2091628 0.2091628 0.05836535 -0.2838106 0.2091628 0.05836535 -0.3840425 0.2091628 0.05836535 -0.518627 0.2091628 0.05836535 -0.6993381 0.2091628 0.05836535 -0.9419845 0.2091628 0.05836535 -1.267794 0.2091628 0.05836535 -1.705268 0.2091628 0.05836535 -2.292679 0.2091628 0.05836535 -3.081414 0.2091628 0.05836535 -4.140474 0.2091628 0.05836535 -5.562508 0.2091628 0.05836535 -7.471917 0.2091628 0.05836535 -10.03574 0.2091628 0.05836535 -13.47828 0.2091628 0.05836535 -18.10068 0.2091628 0.05836535 -24.30731 0.2091628 0.05836535 -32.64117 0.2091628 0.05836535 -43.83129 0.2091628 0.05836535 -58.85664 0.2091628 0.05836535 --0.0175068 0.2838106 0.05836535 --0.01161267 0.2838106 0.05836535 --0.005718534 0.2838106 0.05836535 -0.0001755984 0.2838106 0.05836535 -0.006069731 0.2838106 0.05836535 -0.01197402 0.2838106 0.05836535 -0.01903886 0.2838106 0.05836535 -0.02852504 0.2838106 0.05836535 -0.04126244 0.2838106 0.05836535 -0.05836535 0.2838106 0.05836535 -0.08132997 0.2838106 0.05836535 -0.1121653 0.2838106 0.05836535 -0.1535689 0.2838106 0.05836535 -0.2091628 0.2838106 0.05836535 -0.2838106 0.2838106 0.05836535 -0.3840425 0.2838106 0.05836535 -0.518627 0.2838106 0.05836535 -0.6993381 0.2838106 0.05836535 -0.9419845 0.2838106 0.05836535 -1.267794 0.2838106 0.05836535 -1.705268 0.2838106 0.05836535 -2.292679 0.2838106 0.05836535 -3.081414 0.2838106 0.05836535 -4.140474 0.2838106 0.05836535 -5.562508 0.2838106 0.05836535 -7.471917 0.2838106 0.05836535 -10.03574 0.2838106 0.05836535 -13.47828 0.2838106 0.05836535 -18.10068 0.2838106 0.05836535 -24.30731 0.2838106 0.05836535 -32.64117 0.2838106 0.05836535 -43.83129 0.2838106 0.05836535 -58.85664 0.2838106 0.05836535 --0.0175068 0.3840425 0.05836535 --0.01161267 0.3840425 0.05836535 --0.005718534 0.3840425 0.05836535 -0.0001755984 0.3840425 0.05836535 -0.006069731 0.3840425 0.05836535 -0.01197402 0.3840425 0.05836535 -0.01903886 0.3840425 0.05836535 -0.02852504 0.3840425 0.05836535 -0.04126244 0.3840425 0.05836535 -0.05836535 0.3840425 0.05836535 -0.08132997 0.3840425 0.05836535 -0.1121653 0.3840425 0.05836535 -0.1535689 0.3840425 0.05836535 -0.2091628 0.3840425 0.05836535 -0.2838106 0.3840425 0.05836535 -0.3840425 0.3840425 0.05836535 -0.518627 0.3840425 0.05836535 -0.6993381 0.3840425 0.05836535 -0.9419845 0.3840425 0.05836535 -1.267794 0.3840425 0.05836535 -1.705268 0.3840425 0.05836535 -2.292679 0.3840425 0.05836535 -3.081414 0.3840425 0.05836535 -4.140474 0.3840425 0.05836535 -5.562508 0.3840425 0.05836535 -7.471917 0.3840425 0.05836535 -10.03574 0.3840425 0.05836535 -13.47828 0.3840425 0.05836535 -18.10068 0.3840425 0.05836535 -24.30731 0.3840425 0.05836535 -32.64117 0.3840425 0.05836535 -43.83129 0.3840425 0.05836535 -58.85664 0.3840425 0.05836535 --0.0175068 0.518627 0.05836535 --0.01161267 0.518627 0.05836535 --0.005718534 0.518627 0.05836535 -0.0001755984 0.518627 0.05836535 -0.006069731 0.518627 0.05836535 -0.01197402 0.518627 0.05836535 -0.01903886 0.518627 0.05836535 -0.02852504 0.518627 0.05836535 -0.04126244 0.518627 0.05836535 -0.05836535 0.518627 0.05836535 -0.08132997 0.518627 0.05836535 -0.1121653 0.518627 0.05836535 -0.1535689 0.518627 0.05836535 -0.2091628 0.518627 0.05836535 -0.2838106 0.518627 0.05836535 -0.3840425 0.518627 0.05836535 -0.518627 0.518627 0.05836535 -0.6993381 0.518627 0.05836535 -0.9419845 0.518627 0.05836535 -1.267794 0.518627 0.05836535 -1.705268 0.518627 0.05836535 -2.292679 0.518627 0.05836535 -3.081414 0.518627 0.05836535 -4.140474 0.518627 0.05836535 -5.562508 0.518627 0.05836535 -7.471917 0.518627 0.05836535 -10.03574 0.518627 0.05836535 -13.47828 0.518627 0.05836535 -18.10068 0.518627 0.05836535 -24.30731 0.518627 0.05836535 -32.64117 0.518627 0.05836535 -43.83129 0.518627 0.05836535 -58.85664 0.518627 0.05836535 --0.0175068 0.6993381 0.05836535 --0.01161267 0.6993381 0.05836535 --0.005718534 0.6993381 0.05836535 -0.0001755984 0.6993381 0.05836535 -0.006069731 0.6993381 0.05836535 -0.01197402 0.6993381 0.05836535 -0.01903886 0.6993381 0.05836535 -0.02852504 0.6993381 0.05836535 -0.04126244 0.6993381 0.05836535 -0.05836535 0.6993381 0.05836535 -0.08132997 0.6993381 0.05836535 -0.1121653 0.6993381 0.05836535 -0.1535689 0.6993381 0.05836535 -0.2091628 0.6993381 0.05836535 -0.2838106 0.6993381 0.05836535 -0.3840425 0.6993381 0.05836535 -0.518627 0.6993381 0.05836535 -0.6993381 0.6993381 0.05836535 -0.9419845 0.6993381 0.05836535 -1.267794 0.6993381 0.05836535 -1.705268 0.6993381 0.05836535 -2.292679 0.6993381 0.05836535 -3.081414 0.6993381 0.05836535 -4.140474 0.6993381 0.05836535 -5.562508 0.6993381 0.05836535 -7.471917 0.6993381 0.05836535 -10.03574 0.6993381 0.05836535 -13.47828 0.6993381 0.05836535 -18.10068 0.6993381 0.05836535 -24.30731 0.6993381 0.05836535 -32.64117 0.6993381 0.05836535 -43.83129 0.6993381 0.05836535 -58.85664 0.6993381 0.05836535 --0.0175068 0.9419845 0.05836535 --0.01161267 0.9419845 0.05836535 --0.005718534 0.9419845 0.05836535 -0.0001755984 0.9419845 0.05836535 -0.006069731 0.9419845 0.05836535 -0.01197402 0.9419845 0.05836535 -0.01903886 0.9419845 0.05836535 -0.02852504 0.9419845 0.05836535 -0.04126244 0.9419845 0.05836535 -0.05836535 0.9419845 0.05836535 -0.08132997 0.9419845 0.05836535 -0.1121653 0.9419845 0.05836535 -0.1535689 0.9419845 0.05836535 -0.2091628 0.9419845 0.05836535 -0.2838106 0.9419845 0.05836535 -0.3840425 0.9419845 0.05836535 -0.518627 0.9419845 0.05836535 -0.6993381 0.9419845 0.05836535 -0.9419845 0.9419845 0.05836535 -1.267794 0.9419845 0.05836535 -1.705268 0.9419845 0.05836535 -2.292679 0.9419845 0.05836535 -3.081414 0.9419845 0.05836535 -4.140474 0.9419845 0.05836535 -5.562508 0.9419845 0.05836535 -7.471917 0.9419845 0.05836535 -10.03574 0.9419845 0.05836535 -13.47828 0.9419845 0.05836535 -18.10068 0.9419845 0.05836535 -24.30731 0.9419845 0.05836535 -32.64117 0.9419845 0.05836535 -43.83129 0.9419845 0.05836535 -58.85664 0.9419845 0.05836535 --0.0175068 1.267794 0.05836535 --0.01161267 1.267794 0.05836535 --0.005718534 1.267794 0.05836535 -0.0001755984 1.267794 0.05836535 -0.006069731 1.267794 0.05836535 -0.01197402 1.267794 0.05836535 -0.01903886 1.267794 0.05836535 -0.02852504 1.267794 0.05836535 -0.04126244 1.267794 0.05836535 -0.05836535 1.267794 0.05836535 -0.08132997 1.267794 0.05836535 -0.1121653 1.267794 0.05836535 -0.1535689 1.267794 0.05836535 -0.2091628 1.267794 0.05836535 -0.2838106 1.267794 0.05836535 -0.3840425 1.267794 0.05836535 -0.518627 1.267794 0.05836535 -0.6993381 1.267794 0.05836535 -0.9419845 1.267794 0.05836535 -1.267794 1.267794 0.05836535 -1.705268 1.267794 0.05836535 -2.292679 1.267794 0.05836535 -3.081414 1.267794 0.05836535 -4.140474 1.267794 0.05836535 -5.562508 1.267794 0.05836535 -7.471917 1.267794 0.05836535 -10.03574 1.267794 0.05836535 -13.47828 1.267794 0.05836535 -18.10068 1.267794 0.05836535 -24.30731 1.267794 0.05836535 -32.64117 1.267794 0.05836535 -43.83129 1.267794 0.05836535 -58.85664 1.267794 0.05836535 --0.0175068 1.705268 0.05836535 --0.01161267 1.705268 0.05836535 --0.005718534 1.705268 0.05836535 -0.0001755984 1.705268 0.05836535 -0.006069731 1.705268 0.05836535 -0.01197402 1.705268 0.05836535 -0.01903886 1.705268 0.05836535 -0.02852504 1.705268 0.05836535 -0.04126244 1.705268 0.05836535 -0.05836535 1.705268 0.05836535 -0.08132997 1.705268 0.05836535 -0.1121653 1.705268 0.05836535 -0.1535689 1.705268 0.05836535 -0.2091628 1.705268 0.05836535 -0.2838106 1.705268 0.05836535 -0.3840425 1.705268 0.05836535 -0.518627 1.705268 0.05836535 -0.6993381 1.705268 0.05836535 -0.9419845 1.705268 0.05836535 -1.267794 1.705268 0.05836535 -1.705268 1.705268 0.05836535 -2.292679 1.705268 0.05836535 -3.081414 1.705268 0.05836535 -4.140474 1.705268 0.05836535 -5.562508 1.705268 0.05836535 -7.471917 1.705268 0.05836535 -10.03574 1.705268 0.05836535 -13.47828 1.705268 0.05836535 -18.10068 1.705268 0.05836535 -24.30731 1.705268 0.05836535 -32.64117 1.705268 0.05836535 -43.83129 1.705268 0.05836535 -58.85664 1.705268 0.05836535 --0.0175068 2.292679 0.05836535 --0.01161267 2.292679 0.05836535 --0.005718534 2.292679 0.05836535 -0.0001755984 2.292679 0.05836535 -0.006069731 2.292679 0.05836535 -0.01197402 2.292679 0.05836535 -0.01903886 2.292679 0.05836535 -0.02852504 2.292679 0.05836535 -0.04126244 2.292679 0.05836535 -0.05836535 2.292679 0.05836535 -0.08132997 2.292679 0.05836535 -0.1121653 2.292679 0.05836535 -0.1535689 2.292679 0.05836535 -0.2091628 2.292679 0.05836535 -0.2838106 2.292679 0.05836535 -0.3840425 2.292679 0.05836535 -0.518627 2.292679 0.05836535 -0.6993381 2.292679 0.05836535 -0.9419845 2.292679 0.05836535 -1.267794 2.292679 0.05836535 -1.705268 2.292679 0.05836535 -2.292679 2.292679 0.05836535 -3.081414 2.292679 0.05836535 -4.140474 2.292679 0.05836535 -5.562508 2.292679 0.05836535 -7.471917 2.292679 0.05836535 -10.03574 2.292679 0.05836535 -13.47828 2.292679 0.05836535 -18.10068 2.292679 0.05836535 -24.30731 2.292679 0.05836535 -32.64117 2.292679 0.05836535 -43.83129 2.292679 0.05836535 -58.85664 2.292679 0.05836535 --0.0175068 3.081414 0.05836535 --0.01161267 3.081414 0.05836535 --0.005718534 3.081414 0.05836535 -0.0001755984 3.081414 0.05836535 -0.006069731 3.081414 0.05836535 -0.01197402 3.081414 0.05836535 -0.01903886 3.081414 0.05836535 -0.02852504 3.081414 0.05836535 -0.04126244 3.081414 0.05836535 -0.05836535 3.081414 0.05836535 -0.08132997 3.081414 0.05836535 -0.1121653 3.081414 0.05836535 -0.1535689 3.081414 0.05836535 -0.2091628 3.081414 0.05836535 -0.2838106 3.081414 0.05836535 -0.3840425 3.081414 0.05836535 -0.518627 3.081414 0.05836535 -0.6993381 3.081414 0.05836535 -0.9419845 3.081414 0.05836535 -1.267794 3.081414 0.05836535 -1.705268 3.081414 0.05836535 -2.292679 3.081414 0.05836535 -3.081414 3.081414 0.05836535 -4.140474 3.081414 0.05836535 -5.562508 3.081414 0.05836535 -7.471917 3.081414 0.05836535 -10.03574 3.081414 0.05836535 -13.47828 3.081414 0.05836535 -18.10068 3.081414 0.05836535 -24.30731 3.081414 0.05836535 -32.64117 3.081414 0.05836535 -43.83129 3.081414 0.05836535 -58.85664 3.081414 0.05836535 --0.0175068 4.140474 0.05836535 --0.01161267 4.140474 0.05836535 --0.005718534 4.140474 0.05836535 -0.0001755984 4.140474 0.05836535 -0.006069731 4.140474 0.05836535 -0.01197402 4.140474 0.05836535 -0.01903886 4.140474 0.05836535 -0.02852504 4.140474 0.05836535 -0.04126244 4.140474 0.05836535 -0.05836535 4.140474 0.05836535 -0.08132997 4.140474 0.05836535 -0.1121653 4.140474 0.05836535 -0.1535689 4.140474 0.05836535 -0.2091628 4.140474 0.05836535 -0.2838106 4.140474 0.05836535 -0.3840425 4.140474 0.05836535 -0.518627 4.140474 0.05836535 -0.6993381 4.140474 0.05836535 -0.9419845 4.140474 0.05836535 -1.267794 4.140474 0.05836535 -1.705268 4.140474 0.05836535 -2.292679 4.140474 0.05836535 -3.081414 4.140474 0.05836535 -4.140474 4.140474 0.05836535 -5.562508 4.140474 0.05836535 -7.471917 4.140474 0.05836535 -10.03574 4.140474 0.05836535 -13.47828 4.140474 0.05836535 -18.10068 4.140474 0.05836535 -24.30731 4.140474 0.05836535 -32.64117 4.140474 0.05836535 -43.83129 4.140474 0.05836535 -58.85664 4.140474 0.05836535 --0.0175068 5.562508 0.05836535 --0.01161267 5.562508 0.05836535 --0.005718534 5.562508 0.05836535 -0.0001755984 5.562508 0.05836535 -0.006069731 5.562508 0.05836535 -0.01197402 5.562508 0.05836535 -0.01903886 5.562508 0.05836535 -0.02852504 5.562508 0.05836535 -0.04126244 5.562508 0.05836535 -0.05836535 5.562508 0.05836535 -0.08132997 5.562508 0.05836535 -0.1121653 5.562508 0.05836535 -0.1535689 5.562508 0.05836535 -0.2091628 5.562508 0.05836535 -0.2838106 5.562508 0.05836535 -0.3840425 5.562508 0.05836535 -0.518627 5.562508 0.05836535 -0.6993381 5.562508 0.05836535 -0.9419845 5.562508 0.05836535 -1.267794 5.562508 0.05836535 -1.705268 5.562508 0.05836535 -2.292679 5.562508 0.05836535 -3.081414 5.562508 0.05836535 -4.140474 5.562508 0.05836535 -5.562508 5.562508 0.05836535 -7.471917 5.562508 0.05836535 -10.03574 5.562508 0.05836535 -13.47828 5.562508 0.05836535 -18.10068 5.562508 0.05836535 -24.30731 5.562508 0.05836535 -32.64117 5.562508 0.05836535 -43.83129 5.562508 0.05836535 -58.85664 5.562508 0.05836535 --0.0175068 7.471917 0.05836535 --0.01161267 7.471917 0.05836535 --0.005718534 7.471917 0.05836535 -0.0001755984 7.471917 0.05836535 -0.006069731 7.471917 0.05836535 -0.01197402 7.471917 0.05836535 -0.01903886 7.471917 0.05836535 -0.02852504 7.471917 0.05836535 -0.04126244 7.471917 0.05836535 -0.05836535 7.471917 0.05836535 -0.08132997 7.471917 0.05836535 -0.1121653 7.471917 0.05836535 -0.1535689 7.471917 0.05836535 -0.2091628 7.471917 0.05836535 -0.2838106 7.471917 0.05836535 -0.3840425 7.471917 0.05836535 -0.518627 7.471917 0.05836535 -0.6993381 7.471917 0.05836535 -0.9419845 7.471917 0.05836535 -1.267794 7.471917 0.05836535 -1.705268 7.471917 0.05836535 -2.292679 7.471917 0.05836535 -3.081414 7.471917 0.05836535 -4.140474 7.471917 0.05836535 -5.562508 7.471917 0.05836535 -7.471917 7.471917 0.05836535 -10.03574 7.471917 0.05836535 -13.47828 7.471917 0.05836535 -18.10068 7.471917 0.05836535 -24.30731 7.471917 0.05836535 -32.64117 7.471917 0.05836535 -43.83129 7.471917 0.05836535 -58.85664 7.471917 0.05836535 --0.0175068 10.03574 0.05836535 --0.01161267 10.03574 0.05836535 --0.005718534 10.03574 0.05836535 -0.0001755984 10.03574 0.05836535 -0.006069731 10.03574 0.05836535 -0.01197402 10.03574 0.05836535 -0.01903886 10.03574 0.05836535 -0.02852504 10.03574 0.05836535 -0.04126244 10.03574 0.05836535 -0.05836535 10.03574 0.05836535 -0.08132997 10.03574 0.05836535 -0.1121653 10.03574 0.05836535 -0.1535689 10.03574 0.05836535 -0.2091628 10.03574 0.05836535 -0.2838106 10.03574 0.05836535 -0.3840425 10.03574 0.05836535 -0.518627 10.03574 0.05836535 -0.6993381 10.03574 0.05836535 -0.9419845 10.03574 0.05836535 -1.267794 10.03574 0.05836535 -1.705268 10.03574 0.05836535 -2.292679 10.03574 0.05836535 -3.081414 10.03574 0.05836535 -4.140474 10.03574 0.05836535 -5.562508 10.03574 0.05836535 -7.471917 10.03574 0.05836535 -10.03574 10.03574 0.05836535 -13.47828 10.03574 0.05836535 -18.10068 10.03574 0.05836535 -24.30731 10.03574 0.05836535 -32.64117 10.03574 0.05836535 -43.83129 10.03574 0.05836535 -58.85664 10.03574 0.05836535 --0.0175068 13.47828 0.05836535 --0.01161267 13.47828 0.05836535 --0.005718534 13.47828 0.05836535 -0.0001755984 13.47828 0.05836535 -0.006069731 13.47828 0.05836535 -0.01197402 13.47828 0.05836535 -0.01903886 13.47828 0.05836535 -0.02852504 13.47828 0.05836535 -0.04126244 13.47828 0.05836535 -0.05836535 13.47828 0.05836535 -0.08132997 13.47828 0.05836535 -0.1121653 13.47828 0.05836535 -0.1535689 13.47828 0.05836535 -0.2091628 13.47828 0.05836535 -0.2838106 13.47828 0.05836535 -0.3840425 13.47828 0.05836535 -0.518627 13.47828 0.05836535 -0.6993381 13.47828 0.05836535 -0.9419845 13.47828 0.05836535 -1.267794 13.47828 0.05836535 -1.705268 13.47828 0.05836535 -2.292679 13.47828 0.05836535 -3.081414 13.47828 0.05836535 -4.140474 13.47828 0.05836535 -5.562508 13.47828 0.05836535 -7.471917 13.47828 0.05836535 -10.03574 13.47828 0.05836535 -13.47828 13.47828 0.05836535 -18.10068 13.47828 0.05836535 -24.30731 13.47828 0.05836535 -32.64117 13.47828 0.05836535 -43.83129 13.47828 0.05836535 -58.85664 13.47828 0.05836535 --0.0175068 18.10068 0.05836535 --0.01161267 18.10068 0.05836535 --0.005718534 18.10068 0.05836535 -0.0001755984 18.10068 0.05836535 -0.006069731 18.10068 0.05836535 -0.01197402 18.10068 0.05836535 -0.01903886 18.10068 0.05836535 -0.02852504 18.10068 0.05836535 -0.04126244 18.10068 0.05836535 -0.05836535 18.10068 0.05836535 -0.08132997 18.10068 0.05836535 -0.1121653 18.10068 0.05836535 -0.1535689 18.10068 0.05836535 -0.2091628 18.10068 0.05836535 -0.2838106 18.10068 0.05836535 -0.3840425 18.10068 0.05836535 -0.518627 18.10068 0.05836535 -0.6993381 18.10068 0.05836535 -0.9419845 18.10068 0.05836535 -1.267794 18.10068 0.05836535 -1.705268 18.10068 0.05836535 -2.292679 18.10068 0.05836535 -3.081414 18.10068 0.05836535 -4.140474 18.10068 0.05836535 -5.562508 18.10068 0.05836535 -7.471917 18.10068 0.05836535 -10.03574 18.10068 0.05836535 -13.47828 18.10068 0.05836535 -18.10068 18.10068 0.05836535 -24.30731 18.10068 0.05836535 -32.64117 18.10068 0.05836535 -43.83129 18.10068 0.05836535 -58.85664 18.10068 0.05836535 --0.0175068 24.30731 0.05836535 --0.01161267 24.30731 0.05836535 --0.005718534 24.30731 0.05836535 -0.0001755984 24.30731 0.05836535 -0.006069731 24.30731 0.05836535 -0.01197402 24.30731 0.05836535 -0.01903886 24.30731 0.05836535 -0.02852504 24.30731 0.05836535 -0.04126244 24.30731 0.05836535 -0.05836535 24.30731 0.05836535 -0.08132997 24.30731 0.05836535 -0.1121653 24.30731 0.05836535 -0.1535689 24.30731 0.05836535 -0.2091628 24.30731 0.05836535 -0.2838106 24.30731 0.05836535 -0.3840425 24.30731 0.05836535 -0.518627 24.30731 0.05836535 -0.6993381 24.30731 0.05836535 -0.9419845 24.30731 0.05836535 -1.267794 24.30731 0.05836535 -1.705268 24.30731 0.05836535 -2.292679 24.30731 0.05836535 -3.081414 24.30731 0.05836535 -4.140474 24.30731 0.05836535 -5.562508 24.30731 0.05836535 -7.471917 24.30731 0.05836535 -10.03574 24.30731 0.05836535 -13.47828 24.30731 0.05836535 -18.10068 24.30731 0.05836535 -24.30731 24.30731 0.05836535 -32.64117 24.30731 0.05836535 -43.83129 24.30731 0.05836535 -58.85664 24.30731 0.05836535 --0.0175068 32.64117 0.05836535 --0.01161267 32.64117 0.05836535 --0.005718534 32.64117 0.05836535 -0.0001755984 32.64117 0.05836535 -0.006069731 32.64117 0.05836535 -0.01197402 32.64117 0.05836535 -0.01903886 32.64117 0.05836535 -0.02852504 32.64117 0.05836535 -0.04126244 32.64117 0.05836535 -0.05836535 32.64117 0.05836535 -0.08132997 32.64117 0.05836535 -0.1121653 32.64117 0.05836535 -0.1535689 32.64117 0.05836535 -0.2091628 32.64117 0.05836535 -0.2838106 32.64117 0.05836535 -0.3840425 32.64117 0.05836535 -0.518627 32.64117 0.05836535 -0.6993381 32.64117 0.05836535 -0.9419845 32.64117 0.05836535 -1.267794 32.64117 0.05836535 -1.705268 32.64117 0.05836535 -2.292679 32.64117 0.05836535 -3.081414 32.64117 0.05836535 -4.140474 32.64117 0.05836535 -5.562508 32.64117 0.05836535 -7.471917 32.64117 0.05836535 -10.03574 32.64117 0.05836535 -13.47828 32.64117 0.05836535 -18.10068 32.64117 0.05836535 -24.30731 32.64117 0.05836535 -32.64117 32.64117 0.05836535 -43.83129 32.64117 0.05836535 -58.85664 32.64117 0.05836535 --0.0175068 43.83129 0.05836535 --0.01161267 43.83129 0.05836535 --0.005718534 43.83129 0.05836535 -0.0001755984 43.83129 0.05836535 -0.006069731 43.83129 0.05836535 -0.01197402 43.83129 0.05836535 -0.01903886 43.83129 0.05836535 -0.02852504 43.83129 0.05836535 -0.04126244 43.83129 0.05836535 -0.05836535 43.83129 0.05836535 -0.08132997 43.83129 0.05836535 -0.1121653 43.83129 0.05836535 -0.1535689 43.83129 0.05836535 -0.2091628 43.83129 0.05836535 -0.2838106 43.83129 0.05836535 -0.3840425 43.83129 0.05836535 -0.518627 43.83129 0.05836535 -0.6993381 43.83129 0.05836535 -0.9419845 43.83129 0.05836535 -1.267794 43.83129 0.05836535 -1.705268 43.83129 0.05836535 -2.292679 43.83129 0.05836535 -3.081414 43.83129 0.05836535 -4.140474 43.83129 0.05836535 -5.562508 43.83129 0.05836535 -7.471917 43.83129 0.05836535 -10.03574 43.83129 0.05836535 -13.47828 43.83129 0.05836535 -18.10068 43.83129 0.05836535 -24.30731 43.83129 0.05836535 -32.64117 43.83129 0.05836535 -43.83129 43.83129 0.05836535 -58.85664 43.83129 0.05836535 --0.0175068 58.85664 0.05836535 --0.01161267 58.85664 0.05836535 --0.005718534 58.85664 0.05836535 -0.0001755984 58.85664 0.05836535 -0.006069731 58.85664 0.05836535 -0.01197402 58.85664 0.05836535 -0.01903886 58.85664 0.05836535 -0.02852504 58.85664 0.05836535 -0.04126244 58.85664 0.05836535 -0.05836535 58.85664 0.05836535 -0.08132997 58.85664 0.05836535 -0.1121653 58.85664 0.05836535 -0.1535689 58.85664 0.05836535 -0.2091628 58.85664 0.05836535 -0.2838106 58.85664 0.05836535 -0.3840425 58.85664 0.05836535 -0.518627 58.85664 0.05836535 -0.6993381 58.85664 0.05836535 -0.9419845 58.85664 0.05836535 -1.267794 58.85664 0.05836535 -1.705268 58.85664 0.05836535 -2.292679 58.85664 0.05836535 -3.081414 58.85664 0.05836535 -4.140474 58.85664 0.05836535 -5.562508 58.85664 0.05836535 -7.471917 58.85664 0.05836535 -10.03574 58.85664 0.05836535 -13.47828 58.85664 0.05836535 -18.10068 58.85664 0.05836535 -24.30731 58.85664 0.05836535 -32.64117 58.85664 0.05836535 -43.83129 58.85664 0.05836535 -58.85664 58.85664 0.05836535 --0.0175068 -0.0175068 0.08132997 --0.01161267 -0.0175068 0.08132997 --0.005718534 -0.0175068 0.08132997 -0.0001755984 -0.0175068 0.08132997 -0.006069731 -0.0175068 0.08132997 -0.01197402 -0.0175068 0.08132997 -0.01903886 -0.0175068 0.08132997 -0.02852504 -0.0175068 0.08132997 -0.04126244 -0.0175068 0.08132997 -0.05836535 -0.0175068 0.08132997 -0.08132997 -0.0175068 0.08132997 -0.1121653 -0.0175068 0.08132997 -0.1535689 -0.0175068 0.08132997 -0.2091628 -0.0175068 0.08132997 -0.2838106 -0.0175068 0.08132997 -0.3840425 -0.0175068 0.08132997 -0.518627 -0.0175068 0.08132997 -0.6993381 -0.0175068 0.08132997 -0.9419845 -0.0175068 0.08132997 -1.267794 -0.0175068 0.08132997 -1.705268 -0.0175068 0.08132997 -2.292679 -0.0175068 0.08132997 -3.081414 -0.0175068 0.08132997 -4.140474 -0.0175068 0.08132997 -5.562508 -0.0175068 0.08132997 -7.471917 -0.0175068 0.08132997 -10.03574 -0.0175068 0.08132997 -13.47828 -0.0175068 0.08132997 -18.10068 -0.0175068 0.08132997 -24.30731 -0.0175068 0.08132997 -32.64117 -0.0175068 0.08132997 -43.83129 -0.0175068 0.08132997 -58.85664 -0.0175068 0.08132997 --0.0175068 -0.01161267 0.08132997 --0.01161267 -0.01161267 0.08132997 --0.005718534 -0.01161267 0.08132997 -0.0001755984 -0.01161267 0.08132997 -0.006069731 -0.01161267 0.08132997 -0.01197402 -0.01161267 0.08132997 -0.01903886 -0.01161267 0.08132997 -0.02852504 -0.01161267 0.08132997 -0.04126244 -0.01161267 0.08132997 -0.05836535 -0.01161267 0.08132997 -0.08132997 -0.01161267 0.08132997 -0.1121653 -0.01161267 0.08132997 -0.1535689 -0.01161267 0.08132997 -0.2091628 -0.01161267 0.08132997 -0.2838106 -0.01161267 0.08132997 -0.3840425 -0.01161267 0.08132997 -0.518627 -0.01161267 0.08132997 -0.6993381 -0.01161267 0.08132997 -0.9419845 -0.01161267 0.08132997 -1.267794 -0.01161267 0.08132997 -1.705268 -0.01161267 0.08132997 -2.292679 -0.01161267 0.08132997 -3.081414 -0.01161267 0.08132997 -4.140474 -0.01161267 0.08132997 -5.562508 -0.01161267 0.08132997 -7.471917 -0.01161267 0.08132997 -10.03574 -0.01161267 0.08132997 -13.47828 -0.01161267 0.08132997 -18.10068 -0.01161267 0.08132997 -24.30731 -0.01161267 0.08132997 -32.64117 -0.01161267 0.08132997 -43.83129 -0.01161267 0.08132997 -58.85664 -0.01161267 0.08132997 --0.0175068 -0.005718534 0.08132997 --0.01161267 -0.005718534 0.08132997 --0.005718534 -0.005718534 0.08132997 -0.0001755984 -0.005718534 0.08132997 -0.006069731 -0.005718534 0.08132997 -0.01197402 -0.005718534 0.08132997 -0.01903886 -0.005718534 0.08132997 -0.02852504 -0.005718534 0.08132997 -0.04126244 -0.005718534 0.08132997 -0.05836535 -0.005718534 0.08132997 -0.08132997 -0.005718534 0.08132997 -0.1121653 -0.005718534 0.08132997 -0.1535689 -0.005718534 0.08132997 -0.2091628 -0.005718534 0.08132997 -0.2838106 -0.005718534 0.08132997 -0.3840425 -0.005718534 0.08132997 -0.518627 -0.005718534 0.08132997 -0.6993381 -0.005718534 0.08132997 -0.9419845 -0.005718534 0.08132997 -1.267794 -0.005718534 0.08132997 -1.705268 -0.005718534 0.08132997 -2.292679 -0.005718534 0.08132997 -3.081414 -0.005718534 0.08132997 -4.140474 -0.005718534 0.08132997 -5.562508 -0.005718534 0.08132997 -7.471917 -0.005718534 0.08132997 -10.03574 -0.005718534 0.08132997 -13.47828 -0.005718534 0.08132997 -18.10068 -0.005718534 0.08132997 -24.30731 -0.005718534 0.08132997 -32.64117 -0.005718534 0.08132997 -43.83129 -0.005718534 0.08132997 -58.85664 -0.005718534 0.08132997 --0.0175068 0.0001755984 0.08132997 --0.01161267 0.0001755984 0.08132997 --0.005718534 0.0001755984 0.08132997 -0.0001755984 0.0001755984 0.08132997 -0.006069731 0.0001755984 0.08132997 -0.01197402 0.0001755984 0.08132997 -0.01903886 0.0001755984 0.08132997 -0.02852504 0.0001755984 0.08132997 -0.04126244 0.0001755984 0.08132997 -0.05836535 0.0001755984 0.08132997 -0.08132997 0.0001755984 0.08132997 -0.1121653 0.0001755984 0.08132997 -0.1535689 0.0001755984 0.08132997 -0.2091628 0.0001755984 0.08132997 -0.2838106 0.0001755984 0.08132997 -0.3840425 0.0001755984 0.08132997 -0.518627 0.0001755984 0.08132997 -0.6993381 0.0001755984 0.08132997 -0.9419845 0.0001755984 0.08132997 -1.267794 0.0001755984 0.08132997 -1.705268 0.0001755984 0.08132997 -2.292679 0.0001755984 0.08132997 -3.081414 0.0001755984 0.08132997 -4.140474 0.0001755984 0.08132997 -5.562508 0.0001755984 0.08132997 -7.471917 0.0001755984 0.08132997 -10.03574 0.0001755984 0.08132997 -13.47828 0.0001755984 0.08132997 -18.10068 0.0001755984 0.08132997 -24.30731 0.0001755984 0.08132997 -32.64117 0.0001755984 0.08132997 -43.83129 0.0001755984 0.08132997 -58.85664 0.0001755984 0.08132997 --0.0175068 0.006069731 0.08132997 --0.01161267 0.006069731 0.08132997 --0.005718534 0.006069731 0.08132997 -0.0001755984 0.006069731 0.08132997 -0.006069731 0.006069731 0.08132997 -0.01197402 0.006069731 0.08132997 -0.01903886 0.006069731 0.08132997 -0.02852504 0.006069731 0.08132997 -0.04126244 0.006069731 0.08132997 -0.05836535 0.006069731 0.08132997 -0.08132997 0.006069731 0.08132997 -0.1121653 0.006069731 0.08132997 -0.1535689 0.006069731 0.08132997 -0.2091628 0.006069731 0.08132997 -0.2838106 0.006069731 0.08132997 -0.3840425 0.006069731 0.08132997 -0.518627 0.006069731 0.08132997 -0.6993381 0.006069731 0.08132997 -0.9419845 0.006069731 0.08132997 -1.267794 0.006069731 0.08132997 -1.705268 0.006069731 0.08132997 -2.292679 0.006069731 0.08132997 -3.081414 0.006069731 0.08132997 -4.140474 0.006069731 0.08132997 -5.562508 0.006069731 0.08132997 -7.471917 0.006069731 0.08132997 -10.03574 0.006069731 0.08132997 -13.47828 0.006069731 0.08132997 -18.10068 0.006069731 0.08132997 -24.30731 0.006069731 0.08132997 -32.64117 0.006069731 0.08132997 -43.83129 0.006069731 0.08132997 -58.85664 0.006069731 0.08132997 --0.0175068 0.01197402 0.08132997 --0.01161267 0.01197402 0.08132997 --0.005718534 0.01197402 0.08132997 -0.0001755984 0.01197402 0.08132997 -0.006069731 0.01197402 0.08132997 -0.01197402 0.01197402 0.08132997 -0.01903886 0.01197402 0.08132997 -0.02852504 0.01197402 0.08132997 -0.04126244 0.01197402 0.08132997 -0.05836535 0.01197402 0.08132997 -0.08132997 0.01197402 0.08132997 -0.1121653 0.01197402 0.08132997 -0.1535689 0.01197402 0.08132997 -0.2091628 0.01197402 0.08132997 -0.2838106 0.01197402 0.08132997 -0.3840425 0.01197402 0.08132997 -0.518627 0.01197402 0.08132997 -0.6993381 0.01197402 0.08132997 -0.9419845 0.01197402 0.08132997 -1.267794 0.01197402 0.08132997 -1.705268 0.01197402 0.08132997 -2.292679 0.01197402 0.08132997 -3.081414 0.01197402 0.08132997 -4.140474 0.01197402 0.08132997 -5.562508 0.01197402 0.08132997 -7.471917 0.01197402 0.08132997 -10.03574 0.01197402 0.08132997 -13.47828 0.01197402 0.08132997 -18.10068 0.01197402 0.08132997 -24.30731 0.01197402 0.08132997 -32.64117 0.01197402 0.08132997 -43.83129 0.01197402 0.08132997 -58.85664 0.01197402 0.08132997 --0.0175068 0.01903886 0.08132997 --0.01161267 0.01903886 0.08132997 --0.005718534 0.01903886 0.08132997 -0.0001755984 0.01903886 0.08132997 -0.006069731 0.01903886 0.08132997 -0.01197402 0.01903886 0.08132997 -0.01903886 0.01903886 0.08132997 -0.02852504 0.01903886 0.08132997 -0.04126244 0.01903886 0.08132997 -0.05836535 0.01903886 0.08132997 -0.08132997 0.01903886 0.08132997 -0.1121653 0.01903886 0.08132997 -0.1535689 0.01903886 0.08132997 -0.2091628 0.01903886 0.08132997 -0.2838106 0.01903886 0.08132997 -0.3840425 0.01903886 0.08132997 -0.518627 0.01903886 0.08132997 -0.6993381 0.01903886 0.08132997 -0.9419845 0.01903886 0.08132997 -1.267794 0.01903886 0.08132997 -1.705268 0.01903886 0.08132997 -2.292679 0.01903886 0.08132997 -3.081414 0.01903886 0.08132997 -4.140474 0.01903886 0.08132997 -5.562508 0.01903886 0.08132997 -7.471917 0.01903886 0.08132997 -10.03574 0.01903886 0.08132997 -13.47828 0.01903886 0.08132997 -18.10068 0.01903886 0.08132997 -24.30731 0.01903886 0.08132997 -32.64117 0.01903886 0.08132997 -43.83129 0.01903886 0.08132997 -58.85664 0.01903886 0.08132997 --0.0175068 0.02852504 0.08132997 --0.01161267 0.02852504 0.08132997 --0.005718534 0.02852504 0.08132997 -0.0001755984 0.02852504 0.08132997 -0.006069731 0.02852504 0.08132997 -0.01197402 0.02852504 0.08132997 -0.01903886 0.02852504 0.08132997 -0.02852504 0.02852504 0.08132997 -0.04126244 0.02852504 0.08132997 -0.05836535 0.02852504 0.08132997 -0.08132997 0.02852504 0.08132997 -0.1121653 0.02852504 0.08132997 -0.1535689 0.02852504 0.08132997 -0.2091628 0.02852504 0.08132997 -0.2838106 0.02852504 0.08132997 -0.3840425 0.02852504 0.08132997 -0.518627 0.02852504 0.08132997 -0.6993381 0.02852504 0.08132997 -0.9419845 0.02852504 0.08132997 -1.267794 0.02852504 0.08132997 -1.705268 0.02852504 0.08132997 -2.292679 0.02852504 0.08132997 -3.081414 0.02852504 0.08132997 -4.140474 0.02852504 0.08132997 -5.562508 0.02852504 0.08132997 -7.471917 0.02852504 0.08132997 -10.03574 0.02852504 0.08132997 -13.47828 0.02852504 0.08132997 -18.10068 0.02852504 0.08132997 -24.30731 0.02852504 0.08132997 -32.64117 0.02852504 0.08132997 -43.83129 0.02852504 0.08132997 -58.85664 0.02852504 0.08132997 --0.0175068 0.04126244 0.08132997 --0.01161267 0.04126244 0.08132997 --0.005718534 0.04126244 0.08132997 -0.0001755984 0.04126244 0.08132997 -0.006069731 0.04126244 0.08132997 -0.01197402 0.04126244 0.08132997 -0.01903886 0.04126244 0.08132997 -0.02852504 0.04126244 0.08132997 -0.04126244 0.04126244 0.08132997 -0.05836535 0.04126244 0.08132997 -0.08132997 0.04126244 0.08132997 -0.1121653 0.04126244 0.08132997 -0.1535689 0.04126244 0.08132997 -0.2091628 0.04126244 0.08132997 -0.2838106 0.04126244 0.08132997 -0.3840425 0.04126244 0.08132997 -0.518627 0.04126244 0.08132997 -0.6993381 0.04126244 0.08132997 -0.9419845 0.04126244 0.08132997 -1.267794 0.04126244 0.08132997 -1.705268 0.04126244 0.08132997 -2.292679 0.04126244 0.08132997 -3.081414 0.04126244 0.08132997 -4.140474 0.04126244 0.08132997 -5.562508 0.04126244 0.08132997 -7.471917 0.04126244 0.08132997 -10.03574 0.04126244 0.08132997 -13.47828 0.04126244 0.08132997 -18.10068 0.04126244 0.08132997 -24.30731 0.04126244 0.08132997 -32.64117 0.04126244 0.08132997 -43.83129 0.04126244 0.08132997 -58.85664 0.04126244 0.08132997 --0.0175068 0.05836535 0.08132997 --0.01161267 0.05836535 0.08132997 --0.005718534 0.05836535 0.08132997 -0.0001755984 0.05836535 0.08132997 -0.006069731 0.05836535 0.08132997 -0.01197402 0.05836535 0.08132997 -0.01903886 0.05836535 0.08132997 -0.02852504 0.05836535 0.08132997 -0.04126244 0.05836535 0.08132997 -0.05836535 0.05836535 0.08132997 -0.08132997 0.05836535 0.08132997 -0.1121653 0.05836535 0.08132997 -0.1535689 0.05836535 0.08132997 -0.2091628 0.05836535 0.08132997 -0.2838106 0.05836535 0.08132997 -0.3840425 0.05836535 0.08132997 -0.518627 0.05836535 0.08132997 -0.6993381 0.05836535 0.08132997 -0.9419845 0.05836535 0.08132997 -1.267794 0.05836535 0.08132997 -1.705268 0.05836535 0.08132997 -2.292679 0.05836535 0.08132997 -3.081414 0.05836535 0.08132997 -4.140474 0.05836535 0.08132997 -5.562508 0.05836535 0.08132997 -7.471917 0.05836535 0.08132997 -10.03574 0.05836535 0.08132997 -13.47828 0.05836535 0.08132997 -18.10068 0.05836535 0.08132997 -24.30731 0.05836535 0.08132997 -32.64117 0.05836535 0.08132997 -43.83129 0.05836535 0.08132997 -58.85664 0.05836535 0.08132997 --0.0175068 0.08132997 0.08132997 --0.01161267 0.08132997 0.08132997 --0.005718534 0.08132997 0.08132997 -0.0001755984 0.08132997 0.08132997 -0.006069731 0.08132997 0.08132997 -0.01197402 0.08132997 0.08132997 -0.01903886 0.08132997 0.08132997 -0.02852504 0.08132997 0.08132997 -0.04126244 0.08132997 0.08132997 -0.05836535 0.08132997 0.08132997 -0.08132997 0.08132997 0.08132997 -0.1121653 0.08132997 0.08132997 -0.1535689 0.08132997 0.08132997 -0.2091628 0.08132997 0.08132997 -0.2838106 0.08132997 0.08132997 -0.3840425 0.08132997 0.08132997 -0.518627 0.08132997 0.08132997 -0.6993381 0.08132997 0.08132997 -0.9419845 0.08132997 0.08132997 -1.267794 0.08132997 0.08132997 -1.705268 0.08132997 0.08132997 -2.292679 0.08132997 0.08132997 -3.081414 0.08132997 0.08132997 -4.140474 0.08132997 0.08132997 -5.562508 0.08132997 0.08132997 -7.471917 0.08132997 0.08132997 -10.03574 0.08132997 0.08132997 -13.47828 0.08132997 0.08132997 -18.10068 0.08132997 0.08132997 -24.30731 0.08132997 0.08132997 -32.64117 0.08132997 0.08132997 -43.83129 0.08132997 0.08132997 -58.85664 0.08132997 0.08132997 --0.0175068 0.1121653 0.08132997 --0.01161267 0.1121653 0.08132997 --0.005718534 0.1121653 0.08132997 -0.0001755984 0.1121653 0.08132997 -0.006069731 0.1121653 0.08132997 -0.01197402 0.1121653 0.08132997 -0.01903886 0.1121653 0.08132997 -0.02852504 0.1121653 0.08132997 -0.04126244 0.1121653 0.08132997 -0.05836535 0.1121653 0.08132997 -0.08132997 0.1121653 0.08132997 -0.1121653 0.1121653 0.08132997 -0.1535689 0.1121653 0.08132997 -0.2091628 0.1121653 0.08132997 -0.2838106 0.1121653 0.08132997 -0.3840425 0.1121653 0.08132997 -0.518627 0.1121653 0.08132997 -0.6993381 0.1121653 0.08132997 -0.9419845 0.1121653 0.08132997 -1.267794 0.1121653 0.08132997 -1.705268 0.1121653 0.08132997 -2.292679 0.1121653 0.08132997 -3.081414 0.1121653 0.08132997 -4.140474 0.1121653 0.08132997 -5.562508 0.1121653 0.08132997 -7.471917 0.1121653 0.08132997 -10.03574 0.1121653 0.08132997 -13.47828 0.1121653 0.08132997 -18.10068 0.1121653 0.08132997 -24.30731 0.1121653 0.08132997 -32.64117 0.1121653 0.08132997 -43.83129 0.1121653 0.08132997 -58.85664 0.1121653 0.08132997 --0.0175068 0.1535689 0.08132997 --0.01161267 0.1535689 0.08132997 --0.005718534 0.1535689 0.08132997 -0.0001755984 0.1535689 0.08132997 -0.006069731 0.1535689 0.08132997 -0.01197402 0.1535689 0.08132997 -0.01903886 0.1535689 0.08132997 -0.02852504 0.1535689 0.08132997 -0.04126244 0.1535689 0.08132997 -0.05836535 0.1535689 0.08132997 -0.08132997 0.1535689 0.08132997 -0.1121653 0.1535689 0.08132997 -0.1535689 0.1535689 0.08132997 -0.2091628 0.1535689 0.08132997 -0.2838106 0.1535689 0.08132997 -0.3840425 0.1535689 0.08132997 -0.518627 0.1535689 0.08132997 -0.6993381 0.1535689 0.08132997 -0.9419845 0.1535689 0.08132997 -1.267794 0.1535689 0.08132997 -1.705268 0.1535689 0.08132997 -2.292679 0.1535689 0.08132997 -3.081414 0.1535689 0.08132997 -4.140474 0.1535689 0.08132997 -5.562508 0.1535689 0.08132997 -7.471917 0.1535689 0.08132997 -10.03574 0.1535689 0.08132997 -13.47828 0.1535689 0.08132997 -18.10068 0.1535689 0.08132997 -24.30731 0.1535689 0.08132997 -32.64117 0.1535689 0.08132997 -43.83129 0.1535689 0.08132997 -58.85664 0.1535689 0.08132997 --0.0175068 0.2091628 0.08132997 --0.01161267 0.2091628 0.08132997 --0.005718534 0.2091628 0.08132997 -0.0001755984 0.2091628 0.08132997 -0.006069731 0.2091628 0.08132997 -0.01197402 0.2091628 0.08132997 -0.01903886 0.2091628 0.08132997 -0.02852504 0.2091628 0.08132997 -0.04126244 0.2091628 0.08132997 -0.05836535 0.2091628 0.08132997 -0.08132997 0.2091628 0.08132997 -0.1121653 0.2091628 0.08132997 -0.1535689 0.2091628 0.08132997 -0.2091628 0.2091628 0.08132997 -0.2838106 0.2091628 0.08132997 -0.3840425 0.2091628 0.08132997 -0.518627 0.2091628 0.08132997 -0.6993381 0.2091628 0.08132997 -0.9419845 0.2091628 0.08132997 -1.267794 0.2091628 0.08132997 -1.705268 0.2091628 0.08132997 -2.292679 0.2091628 0.08132997 -3.081414 0.2091628 0.08132997 -4.140474 0.2091628 0.08132997 -5.562508 0.2091628 0.08132997 -7.471917 0.2091628 0.08132997 -10.03574 0.2091628 0.08132997 -13.47828 0.2091628 0.08132997 -18.10068 0.2091628 0.08132997 -24.30731 0.2091628 0.08132997 -32.64117 0.2091628 0.08132997 -43.83129 0.2091628 0.08132997 -58.85664 0.2091628 0.08132997 --0.0175068 0.2838106 0.08132997 --0.01161267 0.2838106 0.08132997 --0.005718534 0.2838106 0.08132997 -0.0001755984 0.2838106 0.08132997 -0.006069731 0.2838106 0.08132997 -0.01197402 0.2838106 0.08132997 -0.01903886 0.2838106 0.08132997 -0.02852504 0.2838106 0.08132997 -0.04126244 0.2838106 0.08132997 -0.05836535 0.2838106 0.08132997 -0.08132997 0.2838106 0.08132997 -0.1121653 0.2838106 0.08132997 -0.1535689 0.2838106 0.08132997 -0.2091628 0.2838106 0.08132997 -0.2838106 0.2838106 0.08132997 -0.3840425 0.2838106 0.08132997 -0.518627 0.2838106 0.08132997 -0.6993381 0.2838106 0.08132997 -0.9419845 0.2838106 0.08132997 -1.267794 0.2838106 0.08132997 -1.705268 0.2838106 0.08132997 -2.292679 0.2838106 0.08132997 -3.081414 0.2838106 0.08132997 -4.140474 0.2838106 0.08132997 -5.562508 0.2838106 0.08132997 -7.471917 0.2838106 0.08132997 -10.03574 0.2838106 0.08132997 -13.47828 0.2838106 0.08132997 -18.10068 0.2838106 0.08132997 -24.30731 0.2838106 0.08132997 -32.64117 0.2838106 0.08132997 -43.83129 0.2838106 0.08132997 -58.85664 0.2838106 0.08132997 --0.0175068 0.3840425 0.08132997 --0.01161267 0.3840425 0.08132997 --0.005718534 0.3840425 0.08132997 -0.0001755984 0.3840425 0.08132997 -0.006069731 0.3840425 0.08132997 -0.01197402 0.3840425 0.08132997 -0.01903886 0.3840425 0.08132997 -0.02852504 0.3840425 0.08132997 -0.04126244 0.3840425 0.08132997 -0.05836535 0.3840425 0.08132997 -0.08132997 0.3840425 0.08132997 -0.1121653 0.3840425 0.08132997 -0.1535689 0.3840425 0.08132997 -0.2091628 0.3840425 0.08132997 -0.2838106 0.3840425 0.08132997 -0.3840425 0.3840425 0.08132997 -0.518627 0.3840425 0.08132997 -0.6993381 0.3840425 0.08132997 -0.9419845 0.3840425 0.08132997 -1.267794 0.3840425 0.08132997 -1.705268 0.3840425 0.08132997 -2.292679 0.3840425 0.08132997 -3.081414 0.3840425 0.08132997 -4.140474 0.3840425 0.08132997 -5.562508 0.3840425 0.08132997 -7.471917 0.3840425 0.08132997 -10.03574 0.3840425 0.08132997 -13.47828 0.3840425 0.08132997 -18.10068 0.3840425 0.08132997 -24.30731 0.3840425 0.08132997 -32.64117 0.3840425 0.08132997 -43.83129 0.3840425 0.08132997 -58.85664 0.3840425 0.08132997 --0.0175068 0.518627 0.08132997 --0.01161267 0.518627 0.08132997 --0.005718534 0.518627 0.08132997 -0.0001755984 0.518627 0.08132997 -0.006069731 0.518627 0.08132997 -0.01197402 0.518627 0.08132997 -0.01903886 0.518627 0.08132997 -0.02852504 0.518627 0.08132997 -0.04126244 0.518627 0.08132997 -0.05836535 0.518627 0.08132997 -0.08132997 0.518627 0.08132997 -0.1121653 0.518627 0.08132997 -0.1535689 0.518627 0.08132997 -0.2091628 0.518627 0.08132997 -0.2838106 0.518627 0.08132997 -0.3840425 0.518627 0.08132997 -0.518627 0.518627 0.08132997 -0.6993381 0.518627 0.08132997 -0.9419845 0.518627 0.08132997 -1.267794 0.518627 0.08132997 -1.705268 0.518627 0.08132997 -2.292679 0.518627 0.08132997 -3.081414 0.518627 0.08132997 -4.140474 0.518627 0.08132997 -5.562508 0.518627 0.08132997 -7.471917 0.518627 0.08132997 -10.03574 0.518627 0.08132997 -13.47828 0.518627 0.08132997 -18.10068 0.518627 0.08132997 -24.30731 0.518627 0.08132997 -32.64117 0.518627 0.08132997 -43.83129 0.518627 0.08132997 -58.85664 0.518627 0.08132997 --0.0175068 0.6993381 0.08132997 --0.01161267 0.6993381 0.08132997 --0.005718534 0.6993381 0.08132997 -0.0001755984 0.6993381 0.08132997 -0.006069731 0.6993381 0.08132997 -0.01197402 0.6993381 0.08132997 -0.01903886 0.6993381 0.08132997 -0.02852504 0.6993381 0.08132997 -0.04126244 0.6993381 0.08132997 -0.05836535 0.6993381 0.08132997 -0.08132997 0.6993381 0.08132997 -0.1121653 0.6993381 0.08132997 -0.1535689 0.6993381 0.08132997 -0.2091628 0.6993381 0.08132997 -0.2838106 0.6993381 0.08132997 -0.3840425 0.6993381 0.08132997 -0.518627 0.6993381 0.08132997 -0.6993381 0.6993381 0.08132997 -0.9419845 0.6993381 0.08132997 -1.267794 0.6993381 0.08132997 -1.705268 0.6993381 0.08132997 -2.292679 0.6993381 0.08132997 -3.081414 0.6993381 0.08132997 -4.140474 0.6993381 0.08132997 -5.562508 0.6993381 0.08132997 -7.471917 0.6993381 0.08132997 -10.03574 0.6993381 0.08132997 -13.47828 0.6993381 0.08132997 -18.10068 0.6993381 0.08132997 -24.30731 0.6993381 0.08132997 -32.64117 0.6993381 0.08132997 -43.83129 0.6993381 0.08132997 -58.85664 0.6993381 0.08132997 --0.0175068 0.9419845 0.08132997 --0.01161267 0.9419845 0.08132997 --0.005718534 0.9419845 0.08132997 -0.0001755984 0.9419845 0.08132997 -0.006069731 0.9419845 0.08132997 -0.01197402 0.9419845 0.08132997 -0.01903886 0.9419845 0.08132997 -0.02852504 0.9419845 0.08132997 -0.04126244 0.9419845 0.08132997 -0.05836535 0.9419845 0.08132997 -0.08132997 0.9419845 0.08132997 -0.1121653 0.9419845 0.08132997 -0.1535689 0.9419845 0.08132997 -0.2091628 0.9419845 0.08132997 -0.2838106 0.9419845 0.08132997 -0.3840425 0.9419845 0.08132997 -0.518627 0.9419845 0.08132997 -0.6993381 0.9419845 0.08132997 -0.9419845 0.9419845 0.08132997 -1.267794 0.9419845 0.08132997 -1.705268 0.9419845 0.08132997 -2.292679 0.9419845 0.08132997 -3.081414 0.9419845 0.08132997 -4.140474 0.9419845 0.08132997 -5.562508 0.9419845 0.08132997 -7.471917 0.9419845 0.08132997 -10.03574 0.9419845 0.08132997 -13.47828 0.9419845 0.08132997 -18.10068 0.9419845 0.08132997 -24.30731 0.9419845 0.08132997 -32.64117 0.9419845 0.08132997 -43.83129 0.9419845 0.08132997 -58.85664 0.9419845 0.08132997 --0.0175068 1.267794 0.08132997 --0.01161267 1.267794 0.08132997 --0.005718534 1.267794 0.08132997 -0.0001755984 1.267794 0.08132997 -0.006069731 1.267794 0.08132997 -0.01197402 1.267794 0.08132997 -0.01903886 1.267794 0.08132997 -0.02852504 1.267794 0.08132997 -0.04126244 1.267794 0.08132997 -0.05836535 1.267794 0.08132997 -0.08132997 1.267794 0.08132997 -0.1121653 1.267794 0.08132997 -0.1535689 1.267794 0.08132997 -0.2091628 1.267794 0.08132997 -0.2838106 1.267794 0.08132997 -0.3840425 1.267794 0.08132997 -0.518627 1.267794 0.08132997 -0.6993381 1.267794 0.08132997 -0.9419845 1.267794 0.08132997 -1.267794 1.267794 0.08132997 -1.705268 1.267794 0.08132997 -2.292679 1.267794 0.08132997 -3.081414 1.267794 0.08132997 -4.140474 1.267794 0.08132997 -5.562508 1.267794 0.08132997 -7.471917 1.267794 0.08132997 -10.03574 1.267794 0.08132997 -13.47828 1.267794 0.08132997 -18.10068 1.267794 0.08132997 -24.30731 1.267794 0.08132997 -32.64117 1.267794 0.08132997 -43.83129 1.267794 0.08132997 -58.85664 1.267794 0.08132997 --0.0175068 1.705268 0.08132997 --0.01161267 1.705268 0.08132997 --0.005718534 1.705268 0.08132997 -0.0001755984 1.705268 0.08132997 -0.006069731 1.705268 0.08132997 -0.01197402 1.705268 0.08132997 -0.01903886 1.705268 0.08132997 -0.02852504 1.705268 0.08132997 -0.04126244 1.705268 0.08132997 -0.05836535 1.705268 0.08132997 -0.08132997 1.705268 0.08132997 -0.1121653 1.705268 0.08132997 -0.1535689 1.705268 0.08132997 -0.2091628 1.705268 0.08132997 -0.2838106 1.705268 0.08132997 -0.3840425 1.705268 0.08132997 -0.518627 1.705268 0.08132997 -0.6993381 1.705268 0.08132997 -0.9419845 1.705268 0.08132997 -1.267794 1.705268 0.08132997 -1.705268 1.705268 0.08132997 -2.292679 1.705268 0.08132997 -3.081414 1.705268 0.08132997 -4.140474 1.705268 0.08132997 -5.562508 1.705268 0.08132997 -7.471917 1.705268 0.08132997 -10.03574 1.705268 0.08132997 -13.47828 1.705268 0.08132997 -18.10068 1.705268 0.08132997 -24.30731 1.705268 0.08132997 -32.64117 1.705268 0.08132997 -43.83129 1.705268 0.08132997 -58.85664 1.705268 0.08132997 --0.0175068 2.292679 0.08132997 --0.01161267 2.292679 0.08132997 --0.005718534 2.292679 0.08132997 -0.0001755984 2.292679 0.08132997 -0.006069731 2.292679 0.08132997 -0.01197402 2.292679 0.08132997 -0.01903886 2.292679 0.08132997 -0.02852504 2.292679 0.08132997 -0.04126244 2.292679 0.08132997 -0.05836535 2.292679 0.08132997 -0.08132997 2.292679 0.08132997 -0.1121653 2.292679 0.08132997 -0.1535689 2.292679 0.08132997 -0.2091628 2.292679 0.08132997 -0.2838106 2.292679 0.08132997 -0.3840425 2.292679 0.08132997 -0.518627 2.292679 0.08132997 -0.6993381 2.292679 0.08132997 -0.9419845 2.292679 0.08132997 -1.267794 2.292679 0.08132997 -1.705268 2.292679 0.08132997 -2.292679 2.292679 0.08132997 -3.081414 2.292679 0.08132997 -4.140474 2.292679 0.08132997 -5.562508 2.292679 0.08132997 -7.471917 2.292679 0.08132997 -10.03574 2.292679 0.08132997 -13.47828 2.292679 0.08132997 -18.10068 2.292679 0.08132997 -24.30731 2.292679 0.08132997 -32.64117 2.292679 0.08132997 -43.83129 2.292679 0.08132997 -58.85664 2.292679 0.08132997 --0.0175068 3.081414 0.08132997 --0.01161267 3.081414 0.08132997 --0.005718534 3.081414 0.08132997 -0.0001755984 3.081414 0.08132997 -0.006069731 3.081414 0.08132997 -0.01197402 3.081414 0.08132997 -0.01903886 3.081414 0.08132997 -0.02852504 3.081414 0.08132997 -0.04126244 3.081414 0.08132997 -0.05836535 3.081414 0.08132997 -0.08132997 3.081414 0.08132997 -0.1121653 3.081414 0.08132997 -0.1535689 3.081414 0.08132997 -0.2091628 3.081414 0.08132997 -0.2838106 3.081414 0.08132997 -0.3840425 3.081414 0.08132997 -0.518627 3.081414 0.08132997 -0.6993381 3.081414 0.08132997 -0.9419845 3.081414 0.08132997 -1.267794 3.081414 0.08132997 -1.705268 3.081414 0.08132997 -2.292679 3.081414 0.08132997 -3.081414 3.081414 0.08132997 -4.140474 3.081414 0.08132997 -5.562508 3.081414 0.08132997 -7.471917 3.081414 0.08132997 -10.03574 3.081414 0.08132997 -13.47828 3.081414 0.08132997 -18.10068 3.081414 0.08132997 -24.30731 3.081414 0.08132997 -32.64117 3.081414 0.08132997 -43.83129 3.081414 0.08132997 -58.85664 3.081414 0.08132997 --0.0175068 4.140474 0.08132997 --0.01161267 4.140474 0.08132997 --0.005718534 4.140474 0.08132997 -0.0001755984 4.140474 0.08132997 -0.006069731 4.140474 0.08132997 -0.01197402 4.140474 0.08132997 -0.01903886 4.140474 0.08132997 -0.02852504 4.140474 0.08132997 -0.04126244 4.140474 0.08132997 -0.05836535 4.140474 0.08132997 -0.08132997 4.140474 0.08132997 -0.1121653 4.140474 0.08132997 -0.1535689 4.140474 0.08132997 -0.2091628 4.140474 0.08132997 -0.2838106 4.140474 0.08132997 -0.3840425 4.140474 0.08132997 -0.518627 4.140474 0.08132997 -0.6993381 4.140474 0.08132997 -0.9419845 4.140474 0.08132997 -1.267794 4.140474 0.08132997 -1.705268 4.140474 0.08132997 -2.292679 4.140474 0.08132997 -3.081414 4.140474 0.08132997 -4.140474 4.140474 0.08132997 -5.562508 4.140474 0.08132997 -7.471917 4.140474 0.08132997 -10.03574 4.140474 0.08132997 -13.47828 4.140474 0.08132997 -18.10068 4.140474 0.08132997 -24.30731 4.140474 0.08132997 -32.64117 4.140474 0.08132997 -43.83129 4.140474 0.08132997 -58.85664 4.140474 0.08132997 --0.0175068 5.562508 0.08132997 --0.01161267 5.562508 0.08132997 --0.005718534 5.562508 0.08132997 -0.0001755984 5.562508 0.08132997 -0.006069731 5.562508 0.08132997 -0.01197402 5.562508 0.08132997 -0.01903886 5.562508 0.08132997 -0.02852504 5.562508 0.08132997 -0.04126244 5.562508 0.08132997 -0.05836535 5.562508 0.08132997 -0.08132997 5.562508 0.08132997 -0.1121653 5.562508 0.08132997 -0.1535689 5.562508 0.08132997 -0.2091628 5.562508 0.08132997 -0.2838106 5.562508 0.08132997 -0.3840425 5.562508 0.08132997 -0.518627 5.562508 0.08132997 -0.6993381 5.562508 0.08132997 -0.9419845 5.562508 0.08132997 -1.267794 5.562508 0.08132997 -1.705268 5.562508 0.08132997 -2.292679 5.562508 0.08132997 -3.081414 5.562508 0.08132997 -4.140474 5.562508 0.08132997 -5.562508 5.562508 0.08132997 -7.471917 5.562508 0.08132997 -10.03574 5.562508 0.08132997 -13.47828 5.562508 0.08132997 -18.10068 5.562508 0.08132997 -24.30731 5.562508 0.08132997 -32.64117 5.562508 0.08132997 -43.83129 5.562508 0.08132997 -58.85664 5.562508 0.08132997 --0.0175068 7.471917 0.08132997 --0.01161267 7.471917 0.08132997 --0.005718534 7.471917 0.08132997 -0.0001755984 7.471917 0.08132997 -0.006069731 7.471917 0.08132997 -0.01197402 7.471917 0.08132997 -0.01903886 7.471917 0.08132997 -0.02852504 7.471917 0.08132997 -0.04126244 7.471917 0.08132997 -0.05836535 7.471917 0.08132997 -0.08132997 7.471917 0.08132997 -0.1121653 7.471917 0.08132997 -0.1535689 7.471917 0.08132997 -0.2091628 7.471917 0.08132997 -0.2838106 7.471917 0.08132997 -0.3840425 7.471917 0.08132997 -0.518627 7.471917 0.08132997 -0.6993381 7.471917 0.08132997 -0.9419845 7.471917 0.08132997 -1.267794 7.471917 0.08132997 -1.705268 7.471917 0.08132997 -2.292679 7.471917 0.08132997 -3.081414 7.471917 0.08132997 -4.140474 7.471917 0.08132997 -5.562508 7.471917 0.08132997 -7.471917 7.471917 0.08132997 -10.03574 7.471917 0.08132997 -13.47828 7.471917 0.08132997 -18.10068 7.471917 0.08132997 -24.30731 7.471917 0.08132997 -32.64117 7.471917 0.08132997 -43.83129 7.471917 0.08132997 -58.85664 7.471917 0.08132997 --0.0175068 10.03574 0.08132997 --0.01161267 10.03574 0.08132997 --0.005718534 10.03574 0.08132997 -0.0001755984 10.03574 0.08132997 -0.006069731 10.03574 0.08132997 -0.01197402 10.03574 0.08132997 -0.01903886 10.03574 0.08132997 -0.02852504 10.03574 0.08132997 -0.04126244 10.03574 0.08132997 -0.05836535 10.03574 0.08132997 -0.08132997 10.03574 0.08132997 -0.1121653 10.03574 0.08132997 -0.1535689 10.03574 0.08132997 -0.2091628 10.03574 0.08132997 -0.2838106 10.03574 0.08132997 -0.3840425 10.03574 0.08132997 -0.518627 10.03574 0.08132997 -0.6993381 10.03574 0.08132997 -0.9419845 10.03574 0.08132997 -1.267794 10.03574 0.08132997 -1.705268 10.03574 0.08132997 -2.292679 10.03574 0.08132997 -3.081414 10.03574 0.08132997 -4.140474 10.03574 0.08132997 -5.562508 10.03574 0.08132997 -7.471917 10.03574 0.08132997 -10.03574 10.03574 0.08132997 -13.47828 10.03574 0.08132997 -18.10068 10.03574 0.08132997 -24.30731 10.03574 0.08132997 -32.64117 10.03574 0.08132997 -43.83129 10.03574 0.08132997 -58.85664 10.03574 0.08132997 --0.0175068 13.47828 0.08132997 --0.01161267 13.47828 0.08132997 --0.005718534 13.47828 0.08132997 -0.0001755984 13.47828 0.08132997 -0.006069731 13.47828 0.08132997 -0.01197402 13.47828 0.08132997 -0.01903886 13.47828 0.08132997 -0.02852504 13.47828 0.08132997 -0.04126244 13.47828 0.08132997 -0.05836535 13.47828 0.08132997 -0.08132997 13.47828 0.08132997 -0.1121653 13.47828 0.08132997 -0.1535689 13.47828 0.08132997 -0.2091628 13.47828 0.08132997 -0.2838106 13.47828 0.08132997 -0.3840425 13.47828 0.08132997 -0.518627 13.47828 0.08132997 -0.6993381 13.47828 0.08132997 -0.9419845 13.47828 0.08132997 -1.267794 13.47828 0.08132997 -1.705268 13.47828 0.08132997 -2.292679 13.47828 0.08132997 -3.081414 13.47828 0.08132997 -4.140474 13.47828 0.08132997 -5.562508 13.47828 0.08132997 -7.471917 13.47828 0.08132997 -10.03574 13.47828 0.08132997 -13.47828 13.47828 0.08132997 -18.10068 13.47828 0.08132997 -24.30731 13.47828 0.08132997 -32.64117 13.47828 0.08132997 -43.83129 13.47828 0.08132997 -58.85664 13.47828 0.08132997 --0.0175068 18.10068 0.08132997 --0.01161267 18.10068 0.08132997 --0.005718534 18.10068 0.08132997 -0.0001755984 18.10068 0.08132997 -0.006069731 18.10068 0.08132997 -0.01197402 18.10068 0.08132997 -0.01903886 18.10068 0.08132997 -0.02852504 18.10068 0.08132997 -0.04126244 18.10068 0.08132997 -0.05836535 18.10068 0.08132997 -0.08132997 18.10068 0.08132997 -0.1121653 18.10068 0.08132997 -0.1535689 18.10068 0.08132997 -0.2091628 18.10068 0.08132997 -0.2838106 18.10068 0.08132997 -0.3840425 18.10068 0.08132997 -0.518627 18.10068 0.08132997 -0.6993381 18.10068 0.08132997 -0.9419845 18.10068 0.08132997 -1.267794 18.10068 0.08132997 -1.705268 18.10068 0.08132997 -2.292679 18.10068 0.08132997 -3.081414 18.10068 0.08132997 -4.140474 18.10068 0.08132997 -5.562508 18.10068 0.08132997 -7.471917 18.10068 0.08132997 -10.03574 18.10068 0.08132997 -13.47828 18.10068 0.08132997 -18.10068 18.10068 0.08132997 -24.30731 18.10068 0.08132997 -32.64117 18.10068 0.08132997 -43.83129 18.10068 0.08132997 -58.85664 18.10068 0.08132997 --0.0175068 24.30731 0.08132997 --0.01161267 24.30731 0.08132997 --0.005718534 24.30731 0.08132997 -0.0001755984 24.30731 0.08132997 -0.006069731 24.30731 0.08132997 -0.01197402 24.30731 0.08132997 -0.01903886 24.30731 0.08132997 -0.02852504 24.30731 0.08132997 -0.04126244 24.30731 0.08132997 -0.05836535 24.30731 0.08132997 -0.08132997 24.30731 0.08132997 -0.1121653 24.30731 0.08132997 -0.1535689 24.30731 0.08132997 -0.2091628 24.30731 0.08132997 -0.2838106 24.30731 0.08132997 -0.3840425 24.30731 0.08132997 -0.518627 24.30731 0.08132997 -0.6993381 24.30731 0.08132997 -0.9419845 24.30731 0.08132997 -1.267794 24.30731 0.08132997 -1.705268 24.30731 0.08132997 -2.292679 24.30731 0.08132997 -3.081414 24.30731 0.08132997 -4.140474 24.30731 0.08132997 -5.562508 24.30731 0.08132997 -7.471917 24.30731 0.08132997 -10.03574 24.30731 0.08132997 -13.47828 24.30731 0.08132997 -18.10068 24.30731 0.08132997 -24.30731 24.30731 0.08132997 -32.64117 24.30731 0.08132997 -43.83129 24.30731 0.08132997 -58.85664 24.30731 0.08132997 --0.0175068 32.64117 0.08132997 --0.01161267 32.64117 0.08132997 --0.005718534 32.64117 0.08132997 -0.0001755984 32.64117 0.08132997 -0.006069731 32.64117 0.08132997 -0.01197402 32.64117 0.08132997 -0.01903886 32.64117 0.08132997 -0.02852504 32.64117 0.08132997 -0.04126244 32.64117 0.08132997 -0.05836535 32.64117 0.08132997 -0.08132997 32.64117 0.08132997 -0.1121653 32.64117 0.08132997 -0.1535689 32.64117 0.08132997 -0.2091628 32.64117 0.08132997 -0.2838106 32.64117 0.08132997 -0.3840425 32.64117 0.08132997 -0.518627 32.64117 0.08132997 -0.6993381 32.64117 0.08132997 -0.9419845 32.64117 0.08132997 -1.267794 32.64117 0.08132997 -1.705268 32.64117 0.08132997 -2.292679 32.64117 0.08132997 -3.081414 32.64117 0.08132997 -4.140474 32.64117 0.08132997 -5.562508 32.64117 0.08132997 -7.471917 32.64117 0.08132997 -10.03574 32.64117 0.08132997 -13.47828 32.64117 0.08132997 -18.10068 32.64117 0.08132997 -24.30731 32.64117 0.08132997 -32.64117 32.64117 0.08132997 -43.83129 32.64117 0.08132997 -58.85664 32.64117 0.08132997 --0.0175068 43.83129 0.08132997 --0.01161267 43.83129 0.08132997 --0.005718534 43.83129 0.08132997 -0.0001755984 43.83129 0.08132997 -0.006069731 43.83129 0.08132997 -0.01197402 43.83129 0.08132997 -0.01903886 43.83129 0.08132997 -0.02852504 43.83129 0.08132997 -0.04126244 43.83129 0.08132997 -0.05836535 43.83129 0.08132997 -0.08132997 43.83129 0.08132997 -0.1121653 43.83129 0.08132997 -0.1535689 43.83129 0.08132997 -0.2091628 43.83129 0.08132997 -0.2838106 43.83129 0.08132997 -0.3840425 43.83129 0.08132997 -0.518627 43.83129 0.08132997 -0.6993381 43.83129 0.08132997 -0.9419845 43.83129 0.08132997 -1.267794 43.83129 0.08132997 -1.705268 43.83129 0.08132997 -2.292679 43.83129 0.08132997 -3.081414 43.83129 0.08132997 -4.140474 43.83129 0.08132997 -5.562508 43.83129 0.08132997 -7.471917 43.83129 0.08132997 -10.03574 43.83129 0.08132997 -13.47828 43.83129 0.08132997 -18.10068 43.83129 0.08132997 -24.30731 43.83129 0.08132997 -32.64117 43.83129 0.08132997 -43.83129 43.83129 0.08132997 -58.85664 43.83129 0.08132997 --0.0175068 58.85664 0.08132997 --0.01161267 58.85664 0.08132997 --0.005718534 58.85664 0.08132997 -0.0001755984 58.85664 0.08132997 -0.006069731 58.85664 0.08132997 -0.01197402 58.85664 0.08132997 -0.01903886 58.85664 0.08132997 -0.02852504 58.85664 0.08132997 -0.04126244 58.85664 0.08132997 -0.05836535 58.85664 0.08132997 -0.08132997 58.85664 0.08132997 -0.1121653 58.85664 0.08132997 -0.1535689 58.85664 0.08132997 -0.2091628 58.85664 0.08132997 -0.2838106 58.85664 0.08132997 -0.3840425 58.85664 0.08132997 -0.518627 58.85664 0.08132997 -0.6993381 58.85664 0.08132997 -0.9419845 58.85664 0.08132997 -1.267794 58.85664 0.08132997 -1.705268 58.85664 0.08132997 -2.292679 58.85664 0.08132997 -3.081414 58.85664 0.08132997 -4.140474 58.85664 0.08132997 -5.562508 58.85664 0.08132997 -7.471917 58.85664 0.08132997 -10.03574 58.85664 0.08132997 -13.47828 58.85664 0.08132997 -18.10068 58.85664 0.08132997 -24.30731 58.85664 0.08132997 -32.64117 58.85664 0.08132997 -43.83129 58.85664 0.08132997 -58.85664 58.85664 0.08132997 --0.0175068 -0.0175068 0.1121653 --0.01161267 -0.0175068 0.1121653 --0.005718534 -0.0175068 0.1121653 -0.0001755984 -0.0175068 0.1121653 -0.006069731 -0.0175068 0.1121653 -0.01197402 -0.0175068 0.1121653 -0.01903886 -0.0175068 0.1121653 -0.02852504 -0.0175068 0.1121653 -0.04126244 -0.0175068 0.1121653 -0.05836535 -0.0175068 0.1121653 -0.08132997 -0.0175068 0.1121653 -0.1121653 -0.0175068 0.1121653 -0.1535689 -0.0175068 0.1121653 -0.2091628 -0.0175068 0.1121653 -0.2838106 -0.0175068 0.1121653 -0.3840425 -0.0175068 0.1121653 -0.518627 -0.0175068 0.1121653 -0.6993381 -0.0175068 0.1121653 -0.9419845 -0.0175068 0.1121653 -1.267794 -0.0175068 0.1121653 -1.705268 -0.0175068 0.1121653 -2.292679 -0.0175068 0.1121653 -3.081414 -0.0175068 0.1121653 -4.140474 -0.0175068 0.1121653 -5.562508 -0.0175068 0.1121653 -7.471917 -0.0175068 0.1121653 -10.03574 -0.0175068 0.1121653 -13.47828 -0.0175068 0.1121653 -18.10068 -0.0175068 0.1121653 -24.30731 -0.0175068 0.1121653 -32.64117 -0.0175068 0.1121653 -43.83129 -0.0175068 0.1121653 -58.85664 -0.0175068 0.1121653 --0.0175068 -0.01161267 0.1121653 --0.01161267 -0.01161267 0.1121653 --0.005718534 -0.01161267 0.1121653 -0.0001755984 -0.01161267 0.1121653 -0.006069731 -0.01161267 0.1121653 -0.01197402 -0.01161267 0.1121653 -0.01903886 -0.01161267 0.1121653 -0.02852504 -0.01161267 0.1121653 -0.04126244 -0.01161267 0.1121653 -0.05836535 -0.01161267 0.1121653 -0.08132997 -0.01161267 0.1121653 -0.1121653 -0.01161267 0.1121653 -0.1535689 -0.01161267 0.1121653 -0.2091628 -0.01161267 0.1121653 -0.2838106 -0.01161267 0.1121653 -0.3840425 -0.01161267 0.1121653 -0.518627 -0.01161267 0.1121653 -0.6993381 -0.01161267 0.1121653 -0.9419845 -0.01161267 0.1121653 -1.267794 -0.01161267 0.1121653 -1.705268 -0.01161267 0.1121653 -2.292679 -0.01161267 0.1121653 -3.081414 -0.01161267 0.1121653 -4.140474 -0.01161267 0.1121653 -5.562508 -0.01161267 0.1121653 -7.471917 -0.01161267 0.1121653 -10.03574 -0.01161267 0.1121653 -13.47828 -0.01161267 0.1121653 -18.10068 -0.01161267 0.1121653 -24.30731 -0.01161267 0.1121653 -32.64117 -0.01161267 0.1121653 -43.83129 -0.01161267 0.1121653 -58.85664 -0.01161267 0.1121653 --0.0175068 -0.005718534 0.1121653 --0.01161267 -0.005718534 0.1121653 --0.005718534 -0.005718534 0.1121653 -0.0001755984 -0.005718534 0.1121653 -0.006069731 -0.005718534 0.1121653 -0.01197402 -0.005718534 0.1121653 -0.01903886 -0.005718534 0.1121653 -0.02852504 -0.005718534 0.1121653 -0.04126244 -0.005718534 0.1121653 -0.05836535 -0.005718534 0.1121653 -0.08132997 -0.005718534 0.1121653 -0.1121653 -0.005718534 0.1121653 -0.1535689 -0.005718534 0.1121653 -0.2091628 -0.005718534 0.1121653 -0.2838106 -0.005718534 0.1121653 -0.3840425 -0.005718534 0.1121653 -0.518627 -0.005718534 0.1121653 -0.6993381 -0.005718534 0.1121653 -0.9419845 -0.005718534 0.1121653 -1.267794 -0.005718534 0.1121653 -1.705268 -0.005718534 0.1121653 -2.292679 -0.005718534 0.1121653 -3.081414 -0.005718534 0.1121653 -4.140474 -0.005718534 0.1121653 -5.562508 -0.005718534 0.1121653 -7.471917 -0.005718534 0.1121653 -10.03574 -0.005718534 0.1121653 -13.47828 -0.005718534 0.1121653 -18.10068 -0.005718534 0.1121653 -24.30731 -0.005718534 0.1121653 -32.64117 -0.005718534 0.1121653 -43.83129 -0.005718534 0.1121653 -58.85664 -0.005718534 0.1121653 --0.0175068 0.0001755984 0.1121653 --0.01161267 0.0001755984 0.1121653 --0.005718534 0.0001755984 0.1121653 -0.0001755984 0.0001755984 0.1121653 -0.006069731 0.0001755984 0.1121653 -0.01197402 0.0001755984 0.1121653 -0.01903886 0.0001755984 0.1121653 -0.02852504 0.0001755984 0.1121653 -0.04126244 0.0001755984 0.1121653 -0.05836535 0.0001755984 0.1121653 -0.08132997 0.0001755984 0.1121653 -0.1121653 0.0001755984 0.1121653 -0.1535689 0.0001755984 0.1121653 -0.2091628 0.0001755984 0.1121653 -0.2838106 0.0001755984 0.1121653 -0.3840425 0.0001755984 0.1121653 -0.518627 0.0001755984 0.1121653 -0.6993381 0.0001755984 0.1121653 -0.9419845 0.0001755984 0.1121653 -1.267794 0.0001755984 0.1121653 -1.705268 0.0001755984 0.1121653 -2.292679 0.0001755984 0.1121653 -3.081414 0.0001755984 0.1121653 -4.140474 0.0001755984 0.1121653 -5.562508 0.0001755984 0.1121653 -7.471917 0.0001755984 0.1121653 -10.03574 0.0001755984 0.1121653 -13.47828 0.0001755984 0.1121653 -18.10068 0.0001755984 0.1121653 -24.30731 0.0001755984 0.1121653 -32.64117 0.0001755984 0.1121653 -43.83129 0.0001755984 0.1121653 -58.85664 0.0001755984 0.1121653 --0.0175068 0.006069731 0.1121653 --0.01161267 0.006069731 0.1121653 --0.005718534 0.006069731 0.1121653 -0.0001755984 0.006069731 0.1121653 -0.006069731 0.006069731 0.1121653 -0.01197402 0.006069731 0.1121653 -0.01903886 0.006069731 0.1121653 -0.02852504 0.006069731 0.1121653 -0.04126244 0.006069731 0.1121653 -0.05836535 0.006069731 0.1121653 -0.08132997 0.006069731 0.1121653 -0.1121653 0.006069731 0.1121653 -0.1535689 0.006069731 0.1121653 -0.2091628 0.006069731 0.1121653 -0.2838106 0.006069731 0.1121653 -0.3840425 0.006069731 0.1121653 -0.518627 0.006069731 0.1121653 -0.6993381 0.006069731 0.1121653 -0.9419845 0.006069731 0.1121653 -1.267794 0.006069731 0.1121653 -1.705268 0.006069731 0.1121653 -2.292679 0.006069731 0.1121653 -3.081414 0.006069731 0.1121653 -4.140474 0.006069731 0.1121653 -5.562508 0.006069731 0.1121653 -7.471917 0.006069731 0.1121653 -10.03574 0.006069731 0.1121653 -13.47828 0.006069731 0.1121653 -18.10068 0.006069731 0.1121653 -24.30731 0.006069731 0.1121653 -32.64117 0.006069731 0.1121653 -43.83129 0.006069731 0.1121653 -58.85664 0.006069731 0.1121653 --0.0175068 0.01197402 0.1121653 --0.01161267 0.01197402 0.1121653 --0.005718534 0.01197402 0.1121653 -0.0001755984 0.01197402 0.1121653 -0.006069731 0.01197402 0.1121653 -0.01197402 0.01197402 0.1121653 -0.01903886 0.01197402 0.1121653 -0.02852504 0.01197402 0.1121653 -0.04126244 0.01197402 0.1121653 -0.05836535 0.01197402 0.1121653 -0.08132997 0.01197402 0.1121653 -0.1121653 0.01197402 0.1121653 -0.1535689 0.01197402 0.1121653 -0.2091628 0.01197402 0.1121653 -0.2838106 0.01197402 0.1121653 -0.3840425 0.01197402 0.1121653 -0.518627 0.01197402 0.1121653 -0.6993381 0.01197402 0.1121653 -0.9419845 0.01197402 0.1121653 -1.267794 0.01197402 0.1121653 -1.705268 0.01197402 0.1121653 -2.292679 0.01197402 0.1121653 -3.081414 0.01197402 0.1121653 -4.140474 0.01197402 0.1121653 -5.562508 0.01197402 0.1121653 -7.471917 0.01197402 0.1121653 -10.03574 0.01197402 0.1121653 -13.47828 0.01197402 0.1121653 -18.10068 0.01197402 0.1121653 -24.30731 0.01197402 0.1121653 -32.64117 0.01197402 0.1121653 -43.83129 0.01197402 0.1121653 -58.85664 0.01197402 0.1121653 --0.0175068 0.01903886 0.1121653 --0.01161267 0.01903886 0.1121653 --0.005718534 0.01903886 0.1121653 -0.0001755984 0.01903886 0.1121653 -0.006069731 0.01903886 0.1121653 -0.01197402 0.01903886 0.1121653 -0.01903886 0.01903886 0.1121653 -0.02852504 0.01903886 0.1121653 -0.04126244 0.01903886 0.1121653 -0.05836535 0.01903886 0.1121653 -0.08132997 0.01903886 0.1121653 -0.1121653 0.01903886 0.1121653 -0.1535689 0.01903886 0.1121653 -0.2091628 0.01903886 0.1121653 -0.2838106 0.01903886 0.1121653 -0.3840425 0.01903886 0.1121653 -0.518627 0.01903886 0.1121653 -0.6993381 0.01903886 0.1121653 -0.9419845 0.01903886 0.1121653 -1.267794 0.01903886 0.1121653 -1.705268 0.01903886 0.1121653 -2.292679 0.01903886 0.1121653 -3.081414 0.01903886 0.1121653 -4.140474 0.01903886 0.1121653 -5.562508 0.01903886 0.1121653 -7.471917 0.01903886 0.1121653 -10.03574 0.01903886 0.1121653 -13.47828 0.01903886 0.1121653 -18.10068 0.01903886 0.1121653 -24.30731 0.01903886 0.1121653 -32.64117 0.01903886 0.1121653 -43.83129 0.01903886 0.1121653 -58.85664 0.01903886 0.1121653 --0.0175068 0.02852504 0.1121653 --0.01161267 0.02852504 0.1121653 --0.005718534 0.02852504 0.1121653 -0.0001755984 0.02852504 0.1121653 -0.006069731 0.02852504 0.1121653 -0.01197402 0.02852504 0.1121653 -0.01903886 0.02852504 0.1121653 -0.02852504 0.02852504 0.1121653 -0.04126244 0.02852504 0.1121653 -0.05836535 0.02852504 0.1121653 -0.08132997 0.02852504 0.1121653 -0.1121653 0.02852504 0.1121653 -0.1535689 0.02852504 0.1121653 -0.2091628 0.02852504 0.1121653 -0.2838106 0.02852504 0.1121653 -0.3840425 0.02852504 0.1121653 -0.518627 0.02852504 0.1121653 -0.6993381 0.02852504 0.1121653 -0.9419845 0.02852504 0.1121653 -1.267794 0.02852504 0.1121653 -1.705268 0.02852504 0.1121653 -2.292679 0.02852504 0.1121653 -3.081414 0.02852504 0.1121653 -4.140474 0.02852504 0.1121653 -5.562508 0.02852504 0.1121653 -7.471917 0.02852504 0.1121653 -10.03574 0.02852504 0.1121653 -13.47828 0.02852504 0.1121653 -18.10068 0.02852504 0.1121653 -24.30731 0.02852504 0.1121653 -32.64117 0.02852504 0.1121653 -43.83129 0.02852504 0.1121653 -58.85664 0.02852504 0.1121653 --0.0175068 0.04126244 0.1121653 --0.01161267 0.04126244 0.1121653 --0.005718534 0.04126244 0.1121653 -0.0001755984 0.04126244 0.1121653 -0.006069731 0.04126244 0.1121653 -0.01197402 0.04126244 0.1121653 -0.01903886 0.04126244 0.1121653 -0.02852504 0.04126244 0.1121653 -0.04126244 0.04126244 0.1121653 -0.05836535 0.04126244 0.1121653 -0.08132997 0.04126244 0.1121653 -0.1121653 0.04126244 0.1121653 -0.1535689 0.04126244 0.1121653 -0.2091628 0.04126244 0.1121653 -0.2838106 0.04126244 0.1121653 -0.3840425 0.04126244 0.1121653 -0.518627 0.04126244 0.1121653 -0.6993381 0.04126244 0.1121653 -0.9419845 0.04126244 0.1121653 -1.267794 0.04126244 0.1121653 -1.705268 0.04126244 0.1121653 -2.292679 0.04126244 0.1121653 -3.081414 0.04126244 0.1121653 -4.140474 0.04126244 0.1121653 -5.562508 0.04126244 0.1121653 -7.471917 0.04126244 0.1121653 -10.03574 0.04126244 0.1121653 -13.47828 0.04126244 0.1121653 -18.10068 0.04126244 0.1121653 -24.30731 0.04126244 0.1121653 -32.64117 0.04126244 0.1121653 -43.83129 0.04126244 0.1121653 -58.85664 0.04126244 0.1121653 --0.0175068 0.05836535 0.1121653 --0.01161267 0.05836535 0.1121653 --0.005718534 0.05836535 0.1121653 -0.0001755984 0.05836535 0.1121653 -0.006069731 0.05836535 0.1121653 -0.01197402 0.05836535 0.1121653 -0.01903886 0.05836535 0.1121653 -0.02852504 0.05836535 0.1121653 -0.04126244 0.05836535 0.1121653 -0.05836535 0.05836535 0.1121653 -0.08132997 0.05836535 0.1121653 -0.1121653 0.05836535 0.1121653 -0.1535689 0.05836535 0.1121653 -0.2091628 0.05836535 0.1121653 -0.2838106 0.05836535 0.1121653 -0.3840425 0.05836535 0.1121653 -0.518627 0.05836535 0.1121653 -0.6993381 0.05836535 0.1121653 -0.9419845 0.05836535 0.1121653 -1.267794 0.05836535 0.1121653 -1.705268 0.05836535 0.1121653 -2.292679 0.05836535 0.1121653 -3.081414 0.05836535 0.1121653 -4.140474 0.05836535 0.1121653 -5.562508 0.05836535 0.1121653 -7.471917 0.05836535 0.1121653 -10.03574 0.05836535 0.1121653 -13.47828 0.05836535 0.1121653 -18.10068 0.05836535 0.1121653 -24.30731 0.05836535 0.1121653 -32.64117 0.05836535 0.1121653 -43.83129 0.05836535 0.1121653 -58.85664 0.05836535 0.1121653 --0.0175068 0.08132997 0.1121653 --0.01161267 0.08132997 0.1121653 --0.005718534 0.08132997 0.1121653 -0.0001755984 0.08132997 0.1121653 -0.006069731 0.08132997 0.1121653 -0.01197402 0.08132997 0.1121653 -0.01903886 0.08132997 0.1121653 -0.02852504 0.08132997 0.1121653 -0.04126244 0.08132997 0.1121653 -0.05836535 0.08132997 0.1121653 -0.08132997 0.08132997 0.1121653 -0.1121653 0.08132997 0.1121653 -0.1535689 0.08132997 0.1121653 -0.2091628 0.08132997 0.1121653 -0.2838106 0.08132997 0.1121653 -0.3840425 0.08132997 0.1121653 -0.518627 0.08132997 0.1121653 -0.6993381 0.08132997 0.1121653 -0.9419845 0.08132997 0.1121653 -1.267794 0.08132997 0.1121653 -1.705268 0.08132997 0.1121653 -2.292679 0.08132997 0.1121653 -3.081414 0.08132997 0.1121653 -4.140474 0.08132997 0.1121653 -5.562508 0.08132997 0.1121653 -7.471917 0.08132997 0.1121653 -10.03574 0.08132997 0.1121653 -13.47828 0.08132997 0.1121653 -18.10068 0.08132997 0.1121653 -24.30731 0.08132997 0.1121653 -32.64117 0.08132997 0.1121653 -43.83129 0.08132997 0.1121653 -58.85664 0.08132997 0.1121653 --0.0175068 0.1121653 0.1121653 --0.01161267 0.1121653 0.1121653 --0.005718534 0.1121653 0.1121653 -0.0001755984 0.1121653 0.1121653 -0.006069731 0.1121653 0.1121653 -0.01197402 0.1121653 0.1121653 -0.01903886 0.1121653 0.1121653 -0.02852504 0.1121653 0.1121653 -0.04126244 0.1121653 0.1121653 -0.05836535 0.1121653 0.1121653 -0.08132997 0.1121653 0.1121653 -0.1121653 0.1121653 0.1121653 -0.1535689 0.1121653 0.1121653 -0.2091628 0.1121653 0.1121653 -0.2838106 0.1121653 0.1121653 -0.3840425 0.1121653 0.1121653 -0.518627 0.1121653 0.1121653 -0.6993381 0.1121653 0.1121653 -0.9419845 0.1121653 0.1121653 -1.267794 0.1121653 0.1121653 -1.705268 0.1121653 0.1121653 -2.292679 0.1121653 0.1121653 -3.081414 0.1121653 0.1121653 -4.140474 0.1121653 0.1121653 -5.562508 0.1121653 0.1121653 -7.471917 0.1121653 0.1121653 -10.03574 0.1121653 0.1121653 -13.47828 0.1121653 0.1121653 -18.10068 0.1121653 0.1121653 -24.30731 0.1121653 0.1121653 -32.64117 0.1121653 0.1121653 -43.83129 0.1121653 0.1121653 -58.85664 0.1121653 0.1121653 --0.0175068 0.1535689 0.1121653 --0.01161267 0.1535689 0.1121653 --0.005718534 0.1535689 0.1121653 -0.0001755984 0.1535689 0.1121653 -0.006069731 0.1535689 0.1121653 -0.01197402 0.1535689 0.1121653 -0.01903886 0.1535689 0.1121653 -0.02852504 0.1535689 0.1121653 -0.04126244 0.1535689 0.1121653 -0.05836535 0.1535689 0.1121653 -0.08132997 0.1535689 0.1121653 -0.1121653 0.1535689 0.1121653 -0.1535689 0.1535689 0.1121653 -0.2091628 0.1535689 0.1121653 -0.2838106 0.1535689 0.1121653 -0.3840425 0.1535689 0.1121653 -0.518627 0.1535689 0.1121653 -0.6993381 0.1535689 0.1121653 -0.9419845 0.1535689 0.1121653 -1.267794 0.1535689 0.1121653 -1.705268 0.1535689 0.1121653 -2.292679 0.1535689 0.1121653 -3.081414 0.1535689 0.1121653 -4.140474 0.1535689 0.1121653 -5.562508 0.1535689 0.1121653 -7.471917 0.1535689 0.1121653 -10.03574 0.1535689 0.1121653 -13.47828 0.1535689 0.1121653 -18.10068 0.1535689 0.1121653 -24.30731 0.1535689 0.1121653 -32.64117 0.1535689 0.1121653 -43.83129 0.1535689 0.1121653 -58.85664 0.1535689 0.1121653 --0.0175068 0.2091628 0.1121653 --0.01161267 0.2091628 0.1121653 --0.005718534 0.2091628 0.1121653 -0.0001755984 0.2091628 0.1121653 -0.006069731 0.2091628 0.1121653 -0.01197402 0.2091628 0.1121653 -0.01903886 0.2091628 0.1121653 -0.02852504 0.2091628 0.1121653 -0.04126244 0.2091628 0.1121653 -0.05836535 0.2091628 0.1121653 -0.08132997 0.2091628 0.1121653 -0.1121653 0.2091628 0.1121653 -0.1535689 0.2091628 0.1121653 -0.2091628 0.2091628 0.1121653 -0.2838106 0.2091628 0.1121653 -0.3840425 0.2091628 0.1121653 -0.518627 0.2091628 0.1121653 -0.6993381 0.2091628 0.1121653 -0.9419845 0.2091628 0.1121653 -1.267794 0.2091628 0.1121653 -1.705268 0.2091628 0.1121653 -2.292679 0.2091628 0.1121653 -3.081414 0.2091628 0.1121653 -4.140474 0.2091628 0.1121653 -5.562508 0.2091628 0.1121653 -7.471917 0.2091628 0.1121653 -10.03574 0.2091628 0.1121653 -13.47828 0.2091628 0.1121653 -18.10068 0.2091628 0.1121653 -24.30731 0.2091628 0.1121653 -32.64117 0.2091628 0.1121653 -43.83129 0.2091628 0.1121653 -58.85664 0.2091628 0.1121653 --0.0175068 0.2838106 0.1121653 --0.01161267 0.2838106 0.1121653 --0.005718534 0.2838106 0.1121653 -0.0001755984 0.2838106 0.1121653 -0.006069731 0.2838106 0.1121653 -0.01197402 0.2838106 0.1121653 -0.01903886 0.2838106 0.1121653 -0.02852504 0.2838106 0.1121653 -0.04126244 0.2838106 0.1121653 -0.05836535 0.2838106 0.1121653 -0.08132997 0.2838106 0.1121653 -0.1121653 0.2838106 0.1121653 -0.1535689 0.2838106 0.1121653 -0.2091628 0.2838106 0.1121653 -0.2838106 0.2838106 0.1121653 -0.3840425 0.2838106 0.1121653 -0.518627 0.2838106 0.1121653 -0.6993381 0.2838106 0.1121653 -0.9419845 0.2838106 0.1121653 -1.267794 0.2838106 0.1121653 -1.705268 0.2838106 0.1121653 -2.292679 0.2838106 0.1121653 -3.081414 0.2838106 0.1121653 -4.140474 0.2838106 0.1121653 -5.562508 0.2838106 0.1121653 -7.471917 0.2838106 0.1121653 -10.03574 0.2838106 0.1121653 -13.47828 0.2838106 0.1121653 -18.10068 0.2838106 0.1121653 -24.30731 0.2838106 0.1121653 -32.64117 0.2838106 0.1121653 -43.83129 0.2838106 0.1121653 -58.85664 0.2838106 0.1121653 --0.0175068 0.3840425 0.1121653 --0.01161267 0.3840425 0.1121653 --0.005718534 0.3840425 0.1121653 -0.0001755984 0.3840425 0.1121653 -0.006069731 0.3840425 0.1121653 -0.01197402 0.3840425 0.1121653 -0.01903886 0.3840425 0.1121653 -0.02852504 0.3840425 0.1121653 -0.04126244 0.3840425 0.1121653 -0.05836535 0.3840425 0.1121653 -0.08132997 0.3840425 0.1121653 -0.1121653 0.3840425 0.1121653 -0.1535689 0.3840425 0.1121653 -0.2091628 0.3840425 0.1121653 -0.2838106 0.3840425 0.1121653 -0.3840425 0.3840425 0.1121653 -0.518627 0.3840425 0.1121653 -0.6993381 0.3840425 0.1121653 -0.9419845 0.3840425 0.1121653 -1.267794 0.3840425 0.1121653 -1.705268 0.3840425 0.1121653 -2.292679 0.3840425 0.1121653 -3.081414 0.3840425 0.1121653 -4.140474 0.3840425 0.1121653 -5.562508 0.3840425 0.1121653 -7.471917 0.3840425 0.1121653 -10.03574 0.3840425 0.1121653 -13.47828 0.3840425 0.1121653 -18.10068 0.3840425 0.1121653 -24.30731 0.3840425 0.1121653 -32.64117 0.3840425 0.1121653 -43.83129 0.3840425 0.1121653 -58.85664 0.3840425 0.1121653 --0.0175068 0.518627 0.1121653 --0.01161267 0.518627 0.1121653 --0.005718534 0.518627 0.1121653 -0.0001755984 0.518627 0.1121653 -0.006069731 0.518627 0.1121653 -0.01197402 0.518627 0.1121653 -0.01903886 0.518627 0.1121653 -0.02852504 0.518627 0.1121653 -0.04126244 0.518627 0.1121653 -0.05836535 0.518627 0.1121653 -0.08132997 0.518627 0.1121653 -0.1121653 0.518627 0.1121653 -0.1535689 0.518627 0.1121653 -0.2091628 0.518627 0.1121653 -0.2838106 0.518627 0.1121653 -0.3840425 0.518627 0.1121653 -0.518627 0.518627 0.1121653 -0.6993381 0.518627 0.1121653 -0.9419845 0.518627 0.1121653 -1.267794 0.518627 0.1121653 -1.705268 0.518627 0.1121653 -2.292679 0.518627 0.1121653 -3.081414 0.518627 0.1121653 -4.140474 0.518627 0.1121653 -5.562508 0.518627 0.1121653 -7.471917 0.518627 0.1121653 -10.03574 0.518627 0.1121653 -13.47828 0.518627 0.1121653 -18.10068 0.518627 0.1121653 -24.30731 0.518627 0.1121653 -32.64117 0.518627 0.1121653 -43.83129 0.518627 0.1121653 -58.85664 0.518627 0.1121653 --0.0175068 0.6993381 0.1121653 --0.01161267 0.6993381 0.1121653 --0.005718534 0.6993381 0.1121653 -0.0001755984 0.6993381 0.1121653 -0.006069731 0.6993381 0.1121653 -0.01197402 0.6993381 0.1121653 -0.01903886 0.6993381 0.1121653 -0.02852504 0.6993381 0.1121653 -0.04126244 0.6993381 0.1121653 -0.05836535 0.6993381 0.1121653 -0.08132997 0.6993381 0.1121653 -0.1121653 0.6993381 0.1121653 -0.1535689 0.6993381 0.1121653 -0.2091628 0.6993381 0.1121653 -0.2838106 0.6993381 0.1121653 -0.3840425 0.6993381 0.1121653 -0.518627 0.6993381 0.1121653 -0.6993381 0.6993381 0.1121653 -0.9419845 0.6993381 0.1121653 -1.267794 0.6993381 0.1121653 -1.705268 0.6993381 0.1121653 -2.292679 0.6993381 0.1121653 -3.081414 0.6993381 0.1121653 -4.140474 0.6993381 0.1121653 -5.562508 0.6993381 0.1121653 -7.471917 0.6993381 0.1121653 -10.03574 0.6993381 0.1121653 -13.47828 0.6993381 0.1121653 -18.10068 0.6993381 0.1121653 -24.30731 0.6993381 0.1121653 -32.64117 0.6993381 0.1121653 -43.83129 0.6993381 0.1121653 -58.85664 0.6993381 0.1121653 --0.0175068 0.9419845 0.1121653 --0.01161267 0.9419845 0.1121653 --0.005718534 0.9419845 0.1121653 -0.0001755984 0.9419845 0.1121653 -0.006069731 0.9419845 0.1121653 -0.01197402 0.9419845 0.1121653 -0.01903886 0.9419845 0.1121653 -0.02852504 0.9419845 0.1121653 -0.04126244 0.9419845 0.1121653 -0.05836535 0.9419845 0.1121653 -0.08132997 0.9419845 0.1121653 -0.1121653 0.9419845 0.1121653 -0.1535689 0.9419845 0.1121653 -0.2091628 0.9419845 0.1121653 -0.2838106 0.9419845 0.1121653 -0.3840425 0.9419845 0.1121653 -0.518627 0.9419845 0.1121653 -0.6993381 0.9419845 0.1121653 -0.9419845 0.9419845 0.1121653 -1.267794 0.9419845 0.1121653 -1.705268 0.9419845 0.1121653 -2.292679 0.9419845 0.1121653 -3.081414 0.9419845 0.1121653 -4.140474 0.9419845 0.1121653 -5.562508 0.9419845 0.1121653 -7.471917 0.9419845 0.1121653 -10.03574 0.9419845 0.1121653 -13.47828 0.9419845 0.1121653 -18.10068 0.9419845 0.1121653 -24.30731 0.9419845 0.1121653 -32.64117 0.9419845 0.1121653 -43.83129 0.9419845 0.1121653 -58.85664 0.9419845 0.1121653 --0.0175068 1.267794 0.1121653 --0.01161267 1.267794 0.1121653 --0.005718534 1.267794 0.1121653 -0.0001755984 1.267794 0.1121653 -0.006069731 1.267794 0.1121653 -0.01197402 1.267794 0.1121653 -0.01903886 1.267794 0.1121653 -0.02852504 1.267794 0.1121653 -0.04126244 1.267794 0.1121653 -0.05836535 1.267794 0.1121653 -0.08132997 1.267794 0.1121653 -0.1121653 1.267794 0.1121653 -0.1535689 1.267794 0.1121653 -0.2091628 1.267794 0.1121653 -0.2838106 1.267794 0.1121653 -0.3840425 1.267794 0.1121653 -0.518627 1.267794 0.1121653 -0.6993381 1.267794 0.1121653 -0.9419845 1.267794 0.1121653 -1.267794 1.267794 0.1121653 -1.705268 1.267794 0.1121653 -2.292679 1.267794 0.1121653 -3.081414 1.267794 0.1121653 -4.140474 1.267794 0.1121653 -5.562508 1.267794 0.1121653 -7.471917 1.267794 0.1121653 -10.03574 1.267794 0.1121653 -13.47828 1.267794 0.1121653 -18.10068 1.267794 0.1121653 -24.30731 1.267794 0.1121653 -32.64117 1.267794 0.1121653 -43.83129 1.267794 0.1121653 -58.85664 1.267794 0.1121653 --0.0175068 1.705268 0.1121653 --0.01161267 1.705268 0.1121653 --0.005718534 1.705268 0.1121653 -0.0001755984 1.705268 0.1121653 -0.006069731 1.705268 0.1121653 -0.01197402 1.705268 0.1121653 -0.01903886 1.705268 0.1121653 -0.02852504 1.705268 0.1121653 -0.04126244 1.705268 0.1121653 -0.05836535 1.705268 0.1121653 -0.08132997 1.705268 0.1121653 -0.1121653 1.705268 0.1121653 -0.1535689 1.705268 0.1121653 -0.2091628 1.705268 0.1121653 -0.2838106 1.705268 0.1121653 -0.3840425 1.705268 0.1121653 -0.518627 1.705268 0.1121653 -0.6993381 1.705268 0.1121653 -0.9419845 1.705268 0.1121653 -1.267794 1.705268 0.1121653 -1.705268 1.705268 0.1121653 -2.292679 1.705268 0.1121653 -3.081414 1.705268 0.1121653 -4.140474 1.705268 0.1121653 -5.562508 1.705268 0.1121653 -7.471917 1.705268 0.1121653 -10.03574 1.705268 0.1121653 -13.47828 1.705268 0.1121653 -18.10068 1.705268 0.1121653 -24.30731 1.705268 0.1121653 -32.64117 1.705268 0.1121653 -43.83129 1.705268 0.1121653 -58.85664 1.705268 0.1121653 --0.0175068 2.292679 0.1121653 --0.01161267 2.292679 0.1121653 --0.005718534 2.292679 0.1121653 -0.0001755984 2.292679 0.1121653 -0.006069731 2.292679 0.1121653 -0.01197402 2.292679 0.1121653 -0.01903886 2.292679 0.1121653 -0.02852504 2.292679 0.1121653 -0.04126244 2.292679 0.1121653 -0.05836535 2.292679 0.1121653 -0.08132997 2.292679 0.1121653 -0.1121653 2.292679 0.1121653 -0.1535689 2.292679 0.1121653 -0.2091628 2.292679 0.1121653 -0.2838106 2.292679 0.1121653 -0.3840425 2.292679 0.1121653 -0.518627 2.292679 0.1121653 -0.6993381 2.292679 0.1121653 -0.9419845 2.292679 0.1121653 -1.267794 2.292679 0.1121653 -1.705268 2.292679 0.1121653 -2.292679 2.292679 0.1121653 -3.081414 2.292679 0.1121653 -4.140474 2.292679 0.1121653 -5.562508 2.292679 0.1121653 -7.471917 2.292679 0.1121653 -10.03574 2.292679 0.1121653 -13.47828 2.292679 0.1121653 -18.10068 2.292679 0.1121653 -24.30731 2.292679 0.1121653 -32.64117 2.292679 0.1121653 -43.83129 2.292679 0.1121653 -58.85664 2.292679 0.1121653 --0.0175068 3.081414 0.1121653 --0.01161267 3.081414 0.1121653 --0.005718534 3.081414 0.1121653 -0.0001755984 3.081414 0.1121653 -0.006069731 3.081414 0.1121653 -0.01197402 3.081414 0.1121653 -0.01903886 3.081414 0.1121653 -0.02852504 3.081414 0.1121653 -0.04126244 3.081414 0.1121653 -0.05836535 3.081414 0.1121653 -0.08132997 3.081414 0.1121653 -0.1121653 3.081414 0.1121653 -0.1535689 3.081414 0.1121653 -0.2091628 3.081414 0.1121653 -0.2838106 3.081414 0.1121653 -0.3840425 3.081414 0.1121653 -0.518627 3.081414 0.1121653 -0.6993381 3.081414 0.1121653 -0.9419845 3.081414 0.1121653 -1.267794 3.081414 0.1121653 -1.705268 3.081414 0.1121653 -2.292679 3.081414 0.1121653 -3.081414 3.081414 0.1121653 -4.140474 3.081414 0.1121653 -5.562508 3.081414 0.1121653 -7.471917 3.081414 0.1121653 -10.03574 3.081414 0.1121653 -13.47828 3.081414 0.1121653 -18.10068 3.081414 0.1121653 -24.30731 3.081414 0.1121653 -32.64117 3.081414 0.1121653 -43.83129 3.081414 0.1121653 -58.85664 3.081414 0.1121653 --0.0175068 4.140474 0.1121653 --0.01161267 4.140474 0.1121653 --0.005718534 4.140474 0.1121653 -0.0001755984 4.140474 0.1121653 -0.006069731 4.140474 0.1121653 -0.01197402 4.140474 0.1121653 -0.01903886 4.140474 0.1121653 -0.02852504 4.140474 0.1121653 -0.04126244 4.140474 0.1121653 -0.05836535 4.140474 0.1121653 -0.08132997 4.140474 0.1121653 -0.1121653 4.140474 0.1121653 -0.1535689 4.140474 0.1121653 -0.2091628 4.140474 0.1121653 -0.2838106 4.140474 0.1121653 -0.3840425 4.140474 0.1121653 -0.518627 4.140474 0.1121653 -0.6993381 4.140474 0.1121653 -0.9419845 4.140474 0.1121653 -1.267794 4.140474 0.1121653 -1.705268 4.140474 0.1121653 -2.292679 4.140474 0.1121653 -3.081414 4.140474 0.1121653 -4.140474 4.140474 0.1121653 -5.562508 4.140474 0.1121653 -7.471917 4.140474 0.1121653 -10.03574 4.140474 0.1121653 -13.47828 4.140474 0.1121653 -18.10068 4.140474 0.1121653 -24.30731 4.140474 0.1121653 -32.64117 4.140474 0.1121653 -43.83129 4.140474 0.1121653 -58.85664 4.140474 0.1121653 --0.0175068 5.562508 0.1121653 --0.01161267 5.562508 0.1121653 --0.005718534 5.562508 0.1121653 -0.0001755984 5.562508 0.1121653 -0.006069731 5.562508 0.1121653 -0.01197402 5.562508 0.1121653 -0.01903886 5.562508 0.1121653 -0.02852504 5.562508 0.1121653 -0.04126244 5.562508 0.1121653 -0.05836535 5.562508 0.1121653 -0.08132997 5.562508 0.1121653 -0.1121653 5.562508 0.1121653 -0.1535689 5.562508 0.1121653 -0.2091628 5.562508 0.1121653 -0.2838106 5.562508 0.1121653 -0.3840425 5.562508 0.1121653 -0.518627 5.562508 0.1121653 -0.6993381 5.562508 0.1121653 -0.9419845 5.562508 0.1121653 -1.267794 5.562508 0.1121653 -1.705268 5.562508 0.1121653 -2.292679 5.562508 0.1121653 -3.081414 5.562508 0.1121653 -4.140474 5.562508 0.1121653 -5.562508 5.562508 0.1121653 -7.471917 5.562508 0.1121653 -10.03574 5.562508 0.1121653 -13.47828 5.562508 0.1121653 -18.10068 5.562508 0.1121653 -24.30731 5.562508 0.1121653 -32.64117 5.562508 0.1121653 -43.83129 5.562508 0.1121653 -58.85664 5.562508 0.1121653 --0.0175068 7.471917 0.1121653 --0.01161267 7.471917 0.1121653 --0.005718534 7.471917 0.1121653 -0.0001755984 7.471917 0.1121653 -0.006069731 7.471917 0.1121653 -0.01197402 7.471917 0.1121653 -0.01903886 7.471917 0.1121653 -0.02852504 7.471917 0.1121653 -0.04126244 7.471917 0.1121653 -0.05836535 7.471917 0.1121653 -0.08132997 7.471917 0.1121653 -0.1121653 7.471917 0.1121653 -0.1535689 7.471917 0.1121653 -0.2091628 7.471917 0.1121653 -0.2838106 7.471917 0.1121653 -0.3840425 7.471917 0.1121653 -0.518627 7.471917 0.1121653 -0.6993381 7.471917 0.1121653 -0.9419845 7.471917 0.1121653 -1.267794 7.471917 0.1121653 -1.705268 7.471917 0.1121653 -2.292679 7.471917 0.1121653 -3.081414 7.471917 0.1121653 -4.140474 7.471917 0.1121653 -5.562508 7.471917 0.1121653 -7.471917 7.471917 0.1121653 -10.03574 7.471917 0.1121653 -13.47828 7.471917 0.1121653 -18.10068 7.471917 0.1121653 -24.30731 7.471917 0.1121653 -32.64117 7.471917 0.1121653 -43.83129 7.471917 0.1121653 -58.85664 7.471917 0.1121653 --0.0175068 10.03574 0.1121653 --0.01161267 10.03574 0.1121653 --0.005718534 10.03574 0.1121653 -0.0001755984 10.03574 0.1121653 -0.006069731 10.03574 0.1121653 -0.01197402 10.03574 0.1121653 -0.01903886 10.03574 0.1121653 -0.02852504 10.03574 0.1121653 -0.04126244 10.03574 0.1121653 -0.05836535 10.03574 0.1121653 -0.08132997 10.03574 0.1121653 -0.1121653 10.03574 0.1121653 -0.1535689 10.03574 0.1121653 -0.2091628 10.03574 0.1121653 -0.2838106 10.03574 0.1121653 -0.3840425 10.03574 0.1121653 -0.518627 10.03574 0.1121653 -0.6993381 10.03574 0.1121653 -0.9419845 10.03574 0.1121653 -1.267794 10.03574 0.1121653 -1.705268 10.03574 0.1121653 -2.292679 10.03574 0.1121653 -3.081414 10.03574 0.1121653 -4.140474 10.03574 0.1121653 -5.562508 10.03574 0.1121653 -7.471917 10.03574 0.1121653 -10.03574 10.03574 0.1121653 -13.47828 10.03574 0.1121653 -18.10068 10.03574 0.1121653 -24.30731 10.03574 0.1121653 -32.64117 10.03574 0.1121653 -43.83129 10.03574 0.1121653 -58.85664 10.03574 0.1121653 --0.0175068 13.47828 0.1121653 --0.01161267 13.47828 0.1121653 --0.005718534 13.47828 0.1121653 -0.0001755984 13.47828 0.1121653 -0.006069731 13.47828 0.1121653 -0.01197402 13.47828 0.1121653 -0.01903886 13.47828 0.1121653 -0.02852504 13.47828 0.1121653 -0.04126244 13.47828 0.1121653 -0.05836535 13.47828 0.1121653 -0.08132997 13.47828 0.1121653 -0.1121653 13.47828 0.1121653 -0.1535689 13.47828 0.1121653 -0.2091628 13.47828 0.1121653 -0.2838106 13.47828 0.1121653 -0.3840425 13.47828 0.1121653 -0.518627 13.47828 0.1121653 -0.6993381 13.47828 0.1121653 -0.9419845 13.47828 0.1121653 -1.267794 13.47828 0.1121653 -1.705268 13.47828 0.1121653 -2.292679 13.47828 0.1121653 -3.081414 13.47828 0.1121653 -4.140474 13.47828 0.1121653 -5.562508 13.47828 0.1121653 -7.471917 13.47828 0.1121653 -10.03574 13.47828 0.1121653 -13.47828 13.47828 0.1121653 -18.10068 13.47828 0.1121653 -24.30731 13.47828 0.1121653 -32.64117 13.47828 0.1121653 -43.83129 13.47828 0.1121653 -58.85664 13.47828 0.1121653 --0.0175068 18.10068 0.1121653 --0.01161267 18.10068 0.1121653 --0.005718534 18.10068 0.1121653 -0.0001755984 18.10068 0.1121653 -0.006069731 18.10068 0.1121653 -0.01197402 18.10068 0.1121653 -0.01903886 18.10068 0.1121653 -0.02852504 18.10068 0.1121653 -0.04126244 18.10068 0.1121653 -0.05836535 18.10068 0.1121653 -0.08132997 18.10068 0.1121653 -0.1121653 18.10068 0.1121653 -0.1535689 18.10068 0.1121653 -0.2091628 18.10068 0.1121653 -0.2838106 18.10068 0.1121653 -0.3840425 18.10068 0.1121653 -0.518627 18.10068 0.1121653 -0.6993381 18.10068 0.1121653 -0.9419845 18.10068 0.1121653 -1.267794 18.10068 0.1121653 -1.705268 18.10068 0.1121653 -2.292679 18.10068 0.1121653 -3.081414 18.10068 0.1121653 -4.140474 18.10068 0.1121653 -5.562508 18.10068 0.1121653 -7.471917 18.10068 0.1121653 -10.03574 18.10068 0.1121653 -13.47828 18.10068 0.1121653 -18.10068 18.10068 0.1121653 -24.30731 18.10068 0.1121653 -32.64117 18.10068 0.1121653 -43.83129 18.10068 0.1121653 -58.85664 18.10068 0.1121653 --0.0175068 24.30731 0.1121653 --0.01161267 24.30731 0.1121653 --0.005718534 24.30731 0.1121653 -0.0001755984 24.30731 0.1121653 -0.006069731 24.30731 0.1121653 -0.01197402 24.30731 0.1121653 -0.01903886 24.30731 0.1121653 -0.02852504 24.30731 0.1121653 -0.04126244 24.30731 0.1121653 -0.05836535 24.30731 0.1121653 -0.08132997 24.30731 0.1121653 -0.1121653 24.30731 0.1121653 -0.1535689 24.30731 0.1121653 -0.2091628 24.30731 0.1121653 -0.2838106 24.30731 0.1121653 -0.3840425 24.30731 0.1121653 -0.518627 24.30731 0.1121653 -0.6993381 24.30731 0.1121653 -0.9419845 24.30731 0.1121653 -1.267794 24.30731 0.1121653 -1.705268 24.30731 0.1121653 -2.292679 24.30731 0.1121653 -3.081414 24.30731 0.1121653 -4.140474 24.30731 0.1121653 -5.562508 24.30731 0.1121653 -7.471917 24.30731 0.1121653 -10.03574 24.30731 0.1121653 -13.47828 24.30731 0.1121653 -18.10068 24.30731 0.1121653 -24.30731 24.30731 0.1121653 -32.64117 24.30731 0.1121653 -43.83129 24.30731 0.1121653 -58.85664 24.30731 0.1121653 --0.0175068 32.64117 0.1121653 --0.01161267 32.64117 0.1121653 --0.005718534 32.64117 0.1121653 -0.0001755984 32.64117 0.1121653 -0.006069731 32.64117 0.1121653 -0.01197402 32.64117 0.1121653 -0.01903886 32.64117 0.1121653 -0.02852504 32.64117 0.1121653 -0.04126244 32.64117 0.1121653 -0.05836535 32.64117 0.1121653 -0.08132997 32.64117 0.1121653 -0.1121653 32.64117 0.1121653 -0.1535689 32.64117 0.1121653 -0.2091628 32.64117 0.1121653 -0.2838106 32.64117 0.1121653 -0.3840425 32.64117 0.1121653 -0.518627 32.64117 0.1121653 -0.6993381 32.64117 0.1121653 -0.9419845 32.64117 0.1121653 -1.267794 32.64117 0.1121653 -1.705268 32.64117 0.1121653 -2.292679 32.64117 0.1121653 -3.081414 32.64117 0.1121653 -4.140474 32.64117 0.1121653 -5.562508 32.64117 0.1121653 -7.471917 32.64117 0.1121653 -10.03574 32.64117 0.1121653 -13.47828 32.64117 0.1121653 -18.10068 32.64117 0.1121653 -24.30731 32.64117 0.1121653 -32.64117 32.64117 0.1121653 -43.83129 32.64117 0.1121653 -58.85664 32.64117 0.1121653 --0.0175068 43.83129 0.1121653 --0.01161267 43.83129 0.1121653 --0.005718534 43.83129 0.1121653 -0.0001755984 43.83129 0.1121653 -0.006069731 43.83129 0.1121653 -0.01197402 43.83129 0.1121653 -0.01903886 43.83129 0.1121653 -0.02852504 43.83129 0.1121653 -0.04126244 43.83129 0.1121653 -0.05836535 43.83129 0.1121653 -0.08132997 43.83129 0.1121653 -0.1121653 43.83129 0.1121653 -0.1535689 43.83129 0.1121653 -0.2091628 43.83129 0.1121653 -0.2838106 43.83129 0.1121653 -0.3840425 43.83129 0.1121653 -0.518627 43.83129 0.1121653 -0.6993381 43.83129 0.1121653 -0.9419845 43.83129 0.1121653 -1.267794 43.83129 0.1121653 -1.705268 43.83129 0.1121653 -2.292679 43.83129 0.1121653 -3.081414 43.83129 0.1121653 -4.140474 43.83129 0.1121653 -5.562508 43.83129 0.1121653 -7.471917 43.83129 0.1121653 -10.03574 43.83129 0.1121653 -13.47828 43.83129 0.1121653 -18.10068 43.83129 0.1121653 -24.30731 43.83129 0.1121653 -32.64117 43.83129 0.1121653 -43.83129 43.83129 0.1121653 -58.85664 43.83129 0.1121653 --0.0175068 58.85664 0.1121653 --0.01161267 58.85664 0.1121653 --0.005718534 58.85664 0.1121653 -0.0001755984 58.85664 0.1121653 -0.006069731 58.85664 0.1121653 -0.01197402 58.85664 0.1121653 -0.01903886 58.85664 0.1121653 -0.02852504 58.85664 0.1121653 -0.04126244 58.85664 0.1121653 -0.05836535 58.85664 0.1121653 -0.08132997 58.85664 0.1121653 -0.1121653 58.85664 0.1121653 -0.1535689 58.85664 0.1121653 -0.2091628 58.85664 0.1121653 -0.2838106 58.85664 0.1121653 -0.3840425 58.85664 0.1121653 -0.518627 58.85664 0.1121653 -0.6993381 58.85664 0.1121653 -0.9419845 58.85664 0.1121653 -1.267794 58.85664 0.1121653 -1.705268 58.85664 0.1121653 -2.292679 58.85664 0.1121653 -3.081414 58.85664 0.1121653 -4.140474 58.85664 0.1121653 -5.562508 58.85664 0.1121653 -7.471917 58.85664 0.1121653 -10.03574 58.85664 0.1121653 -13.47828 58.85664 0.1121653 -18.10068 58.85664 0.1121653 -24.30731 58.85664 0.1121653 -32.64117 58.85664 0.1121653 -43.83129 58.85664 0.1121653 -58.85664 58.85664 0.1121653 --0.0175068 -0.0175068 0.1535689 --0.01161267 -0.0175068 0.1535689 --0.005718534 -0.0175068 0.1535689 -0.0001755984 -0.0175068 0.1535689 -0.006069731 -0.0175068 0.1535689 -0.01197402 -0.0175068 0.1535689 -0.01903886 -0.0175068 0.1535689 -0.02852504 -0.0175068 0.1535689 -0.04126244 -0.0175068 0.1535689 -0.05836535 -0.0175068 0.1535689 -0.08132997 -0.0175068 0.1535689 -0.1121653 -0.0175068 0.1535689 -0.1535689 -0.0175068 0.1535689 -0.2091628 -0.0175068 0.1535689 -0.2838106 -0.0175068 0.1535689 -0.3840425 -0.0175068 0.1535689 -0.518627 -0.0175068 0.1535689 -0.6993381 -0.0175068 0.1535689 -0.9419845 -0.0175068 0.1535689 -1.267794 -0.0175068 0.1535689 -1.705268 -0.0175068 0.1535689 -2.292679 -0.0175068 0.1535689 -3.081414 -0.0175068 0.1535689 -4.140474 -0.0175068 0.1535689 -5.562508 -0.0175068 0.1535689 -7.471917 -0.0175068 0.1535689 -10.03574 -0.0175068 0.1535689 -13.47828 -0.0175068 0.1535689 -18.10068 -0.0175068 0.1535689 -24.30731 -0.0175068 0.1535689 -32.64117 -0.0175068 0.1535689 -43.83129 -0.0175068 0.1535689 -58.85664 -0.0175068 0.1535689 --0.0175068 -0.01161267 0.1535689 --0.01161267 -0.01161267 0.1535689 --0.005718534 -0.01161267 0.1535689 -0.0001755984 -0.01161267 0.1535689 -0.006069731 -0.01161267 0.1535689 -0.01197402 -0.01161267 0.1535689 -0.01903886 -0.01161267 0.1535689 -0.02852504 -0.01161267 0.1535689 -0.04126244 -0.01161267 0.1535689 -0.05836535 -0.01161267 0.1535689 -0.08132997 -0.01161267 0.1535689 -0.1121653 -0.01161267 0.1535689 -0.1535689 -0.01161267 0.1535689 -0.2091628 -0.01161267 0.1535689 -0.2838106 -0.01161267 0.1535689 -0.3840425 -0.01161267 0.1535689 -0.518627 -0.01161267 0.1535689 -0.6993381 -0.01161267 0.1535689 -0.9419845 -0.01161267 0.1535689 -1.267794 -0.01161267 0.1535689 -1.705268 -0.01161267 0.1535689 -2.292679 -0.01161267 0.1535689 -3.081414 -0.01161267 0.1535689 -4.140474 -0.01161267 0.1535689 -5.562508 -0.01161267 0.1535689 -7.471917 -0.01161267 0.1535689 -10.03574 -0.01161267 0.1535689 -13.47828 -0.01161267 0.1535689 -18.10068 -0.01161267 0.1535689 -24.30731 -0.01161267 0.1535689 -32.64117 -0.01161267 0.1535689 -43.83129 -0.01161267 0.1535689 -58.85664 -0.01161267 0.1535689 --0.0175068 -0.005718534 0.1535689 --0.01161267 -0.005718534 0.1535689 --0.005718534 -0.005718534 0.1535689 -0.0001755984 -0.005718534 0.1535689 -0.006069731 -0.005718534 0.1535689 -0.01197402 -0.005718534 0.1535689 -0.01903886 -0.005718534 0.1535689 -0.02852504 -0.005718534 0.1535689 -0.04126244 -0.005718534 0.1535689 -0.05836535 -0.005718534 0.1535689 -0.08132997 -0.005718534 0.1535689 -0.1121653 -0.005718534 0.1535689 -0.1535689 -0.005718534 0.1535689 -0.2091628 -0.005718534 0.1535689 -0.2838106 -0.005718534 0.1535689 -0.3840425 -0.005718534 0.1535689 -0.518627 -0.005718534 0.1535689 -0.6993381 -0.005718534 0.1535689 -0.9419845 -0.005718534 0.1535689 -1.267794 -0.005718534 0.1535689 -1.705268 -0.005718534 0.1535689 -2.292679 -0.005718534 0.1535689 -3.081414 -0.005718534 0.1535689 -4.140474 -0.005718534 0.1535689 -5.562508 -0.005718534 0.1535689 -7.471917 -0.005718534 0.1535689 -10.03574 -0.005718534 0.1535689 -13.47828 -0.005718534 0.1535689 -18.10068 -0.005718534 0.1535689 -24.30731 -0.005718534 0.1535689 -32.64117 -0.005718534 0.1535689 -43.83129 -0.005718534 0.1535689 -58.85664 -0.005718534 0.1535689 --0.0175068 0.0001755984 0.1535689 --0.01161267 0.0001755984 0.1535689 --0.005718534 0.0001755984 0.1535689 -0.0001755984 0.0001755984 0.1535689 -0.006069731 0.0001755984 0.1535689 -0.01197402 0.0001755984 0.1535689 -0.01903886 0.0001755984 0.1535689 -0.02852504 0.0001755984 0.1535689 -0.04126244 0.0001755984 0.1535689 -0.05836535 0.0001755984 0.1535689 -0.08132997 0.0001755984 0.1535689 -0.1121653 0.0001755984 0.1535689 -0.1535689 0.0001755984 0.1535689 -0.2091628 0.0001755984 0.1535689 -0.2838106 0.0001755984 0.1535689 -0.3840425 0.0001755984 0.1535689 -0.518627 0.0001755984 0.1535689 -0.6993381 0.0001755984 0.1535689 -0.9419845 0.0001755984 0.1535689 -1.267794 0.0001755984 0.1535689 -1.705268 0.0001755984 0.1535689 -2.292679 0.0001755984 0.1535689 -3.081414 0.0001755984 0.1535689 -4.140474 0.0001755984 0.1535689 -5.562508 0.0001755984 0.1535689 -7.471917 0.0001755984 0.1535689 -10.03574 0.0001755984 0.1535689 -13.47828 0.0001755984 0.1535689 -18.10068 0.0001755984 0.1535689 -24.30731 0.0001755984 0.1535689 -32.64117 0.0001755984 0.1535689 -43.83129 0.0001755984 0.1535689 -58.85664 0.0001755984 0.1535689 --0.0175068 0.006069731 0.1535689 --0.01161267 0.006069731 0.1535689 --0.005718534 0.006069731 0.1535689 -0.0001755984 0.006069731 0.1535689 -0.006069731 0.006069731 0.1535689 -0.01197402 0.006069731 0.1535689 -0.01903886 0.006069731 0.1535689 -0.02852504 0.006069731 0.1535689 -0.04126244 0.006069731 0.1535689 -0.05836535 0.006069731 0.1535689 -0.08132997 0.006069731 0.1535689 -0.1121653 0.006069731 0.1535689 -0.1535689 0.006069731 0.1535689 -0.2091628 0.006069731 0.1535689 -0.2838106 0.006069731 0.1535689 -0.3840425 0.006069731 0.1535689 -0.518627 0.006069731 0.1535689 -0.6993381 0.006069731 0.1535689 -0.9419845 0.006069731 0.1535689 -1.267794 0.006069731 0.1535689 -1.705268 0.006069731 0.1535689 -2.292679 0.006069731 0.1535689 -3.081414 0.006069731 0.1535689 -4.140474 0.006069731 0.1535689 -5.562508 0.006069731 0.1535689 -7.471917 0.006069731 0.1535689 -10.03574 0.006069731 0.1535689 -13.47828 0.006069731 0.1535689 -18.10068 0.006069731 0.1535689 -24.30731 0.006069731 0.1535689 -32.64117 0.006069731 0.1535689 -43.83129 0.006069731 0.1535689 -58.85664 0.006069731 0.1535689 --0.0175068 0.01197402 0.1535689 --0.01161267 0.01197402 0.1535689 --0.005718534 0.01197402 0.1535689 -0.0001755984 0.01197402 0.1535689 -0.006069731 0.01197402 0.1535689 -0.01197402 0.01197402 0.1535689 -0.01903886 0.01197402 0.1535689 -0.02852504 0.01197402 0.1535689 -0.04126244 0.01197402 0.1535689 -0.05836535 0.01197402 0.1535689 -0.08132997 0.01197402 0.1535689 -0.1121653 0.01197402 0.1535689 -0.1535689 0.01197402 0.1535689 -0.2091628 0.01197402 0.1535689 -0.2838106 0.01197402 0.1535689 -0.3840425 0.01197402 0.1535689 -0.518627 0.01197402 0.1535689 -0.6993381 0.01197402 0.1535689 -0.9419845 0.01197402 0.1535689 -1.267794 0.01197402 0.1535689 -1.705268 0.01197402 0.1535689 -2.292679 0.01197402 0.1535689 -3.081414 0.01197402 0.1535689 -4.140474 0.01197402 0.1535689 -5.562508 0.01197402 0.1535689 -7.471917 0.01197402 0.1535689 -10.03574 0.01197402 0.1535689 -13.47828 0.01197402 0.1535689 -18.10068 0.01197402 0.1535689 -24.30731 0.01197402 0.1535689 -32.64117 0.01197402 0.1535689 -43.83129 0.01197402 0.1535689 -58.85664 0.01197402 0.1535689 --0.0175068 0.01903886 0.1535689 --0.01161267 0.01903886 0.1535689 --0.005718534 0.01903886 0.1535689 -0.0001755984 0.01903886 0.1535689 -0.006069731 0.01903886 0.1535689 -0.01197402 0.01903886 0.1535689 -0.01903886 0.01903886 0.1535689 -0.02852504 0.01903886 0.1535689 -0.04126244 0.01903886 0.1535689 -0.05836535 0.01903886 0.1535689 -0.08132997 0.01903886 0.1535689 -0.1121653 0.01903886 0.1535689 -0.1535689 0.01903886 0.1535689 -0.2091628 0.01903886 0.1535689 -0.2838106 0.01903886 0.1535689 -0.3840425 0.01903886 0.1535689 -0.518627 0.01903886 0.1535689 -0.6993381 0.01903886 0.1535689 -0.9419845 0.01903886 0.1535689 -1.267794 0.01903886 0.1535689 -1.705268 0.01903886 0.1535689 -2.292679 0.01903886 0.1535689 -3.081414 0.01903886 0.1535689 -4.140474 0.01903886 0.1535689 -5.562508 0.01903886 0.1535689 -7.471917 0.01903886 0.1535689 -10.03574 0.01903886 0.1535689 -13.47828 0.01903886 0.1535689 -18.10068 0.01903886 0.1535689 -24.30731 0.01903886 0.1535689 -32.64117 0.01903886 0.1535689 -43.83129 0.01903886 0.1535689 -58.85664 0.01903886 0.1535689 --0.0175068 0.02852504 0.1535689 --0.01161267 0.02852504 0.1535689 --0.005718534 0.02852504 0.1535689 -0.0001755984 0.02852504 0.1535689 -0.006069731 0.02852504 0.1535689 -0.01197402 0.02852504 0.1535689 -0.01903886 0.02852504 0.1535689 -0.02852504 0.02852504 0.1535689 -0.04126244 0.02852504 0.1535689 -0.05836535 0.02852504 0.1535689 -0.08132997 0.02852504 0.1535689 -0.1121653 0.02852504 0.1535689 -0.1535689 0.02852504 0.1535689 -0.2091628 0.02852504 0.1535689 -0.2838106 0.02852504 0.1535689 -0.3840425 0.02852504 0.1535689 -0.518627 0.02852504 0.1535689 -0.6993381 0.02852504 0.1535689 -0.9419845 0.02852504 0.1535689 -1.267794 0.02852504 0.1535689 -1.705268 0.02852504 0.1535689 -2.292679 0.02852504 0.1535689 -3.081414 0.02852504 0.1535689 -4.140474 0.02852504 0.1535689 -5.562508 0.02852504 0.1535689 -7.471917 0.02852504 0.1535689 -10.03574 0.02852504 0.1535689 -13.47828 0.02852504 0.1535689 -18.10068 0.02852504 0.1535689 -24.30731 0.02852504 0.1535689 -32.64117 0.02852504 0.1535689 -43.83129 0.02852504 0.1535689 -58.85664 0.02852504 0.1535689 --0.0175068 0.04126244 0.1535689 --0.01161267 0.04126244 0.1535689 --0.005718534 0.04126244 0.1535689 -0.0001755984 0.04126244 0.1535689 -0.006069731 0.04126244 0.1535689 -0.01197402 0.04126244 0.1535689 -0.01903886 0.04126244 0.1535689 -0.02852504 0.04126244 0.1535689 -0.04126244 0.04126244 0.1535689 -0.05836535 0.04126244 0.1535689 -0.08132997 0.04126244 0.1535689 -0.1121653 0.04126244 0.1535689 -0.1535689 0.04126244 0.1535689 -0.2091628 0.04126244 0.1535689 -0.2838106 0.04126244 0.1535689 -0.3840425 0.04126244 0.1535689 -0.518627 0.04126244 0.1535689 -0.6993381 0.04126244 0.1535689 -0.9419845 0.04126244 0.1535689 -1.267794 0.04126244 0.1535689 -1.705268 0.04126244 0.1535689 -2.292679 0.04126244 0.1535689 -3.081414 0.04126244 0.1535689 -4.140474 0.04126244 0.1535689 -5.562508 0.04126244 0.1535689 -7.471917 0.04126244 0.1535689 -10.03574 0.04126244 0.1535689 -13.47828 0.04126244 0.1535689 -18.10068 0.04126244 0.1535689 -24.30731 0.04126244 0.1535689 -32.64117 0.04126244 0.1535689 -43.83129 0.04126244 0.1535689 -58.85664 0.04126244 0.1535689 --0.0175068 0.05836535 0.1535689 --0.01161267 0.05836535 0.1535689 --0.005718534 0.05836535 0.1535689 -0.0001755984 0.05836535 0.1535689 -0.006069731 0.05836535 0.1535689 -0.01197402 0.05836535 0.1535689 -0.01903886 0.05836535 0.1535689 -0.02852504 0.05836535 0.1535689 -0.04126244 0.05836535 0.1535689 -0.05836535 0.05836535 0.1535689 -0.08132997 0.05836535 0.1535689 -0.1121653 0.05836535 0.1535689 -0.1535689 0.05836535 0.1535689 -0.2091628 0.05836535 0.1535689 -0.2838106 0.05836535 0.1535689 -0.3840425 0.05836535 0.1535689 -0.518627 0.05836535 0.1535689 -0.6993381 0.05836535 0.1535689 -0.9419845 0.05836535 0.1535689 -1.267794 0.05836535 0.1535689 -1.705268 0.05836535 0.1535689 -2.292679 0.05836535 0.1535689 -3.081414 0.05836535 0.1535689 -4.140474 0.05836535 0.1535689 -5.562508 0.05836535 0.1535689 -7.471917 0.05836535 0.1535689 -10.03574 0.05836535 0.1535689 -13.47828 0.05836535 0.1535689 -18.10068 0.05836535 0.1535689 -24.30731 0.05836535 0.1535689 -32.64117 0.05836535 0.1535689 -43.83129 0.05836535 0.1535689 -58.85664 0.05836535 0.1535689 --0.0175068 0.08132997 0.1535689 --0.01161267 0.08132997 0.1535689 --0.005718534 0.08132997 0.1535689 -0.0001755984 0.08132997 0.1535689 -0.006069731 0.08132997 0.1535689 -0.01197402 0.08132997 0.1535689 -0.01903886 0.08132997 0.1535689 -0.02852504 0.08132997 0.1535689 -0.04126244 0.08132997 0.1535689 -0.05836535 0.08132997 0.1535689 -0.08132997 0.08132997 0.1535689 -0.1121653 0.08132997 0.1535689 -0.1535689 0.08132997 0.1535689 -0.2091628 0.08132997 0.1535689 -0.2838106 0.08132997 0.1535689 -0.3840425 0.08132997 0.1535689 -0.518627 0.08132997 0.1535689 -0.6993381 0.08132997 0.1535689 -0.9419845 0.08132997 0.1535689 -1.267794 0.08132997 0.1535689 -1.705268 0.08132997 0.1535689 -2.292679 0.08132997 0.1535689 -3.081414 0.08132997 0.1535689 -4.140474 0.08132997 0.1535689 -5.562508 0.08132997 0.1535689 -7.471917 0.08132997 0.1535689 -10.03574 0.08132997 0.1535689 -13.47828 0.08132997 0.1535689 -18.10068 0.08132997 0.1535689 -24.30731 0.08132997 0.1535689 -32.64117 0.08132997 0.1535689 -43.83129 0.08132997 0.1535689 -58.85664 0.08132997 0.1535689 --0.0175068 0.1121653 0.1535689 --0.01161267 0.1121653 0.1535689 --0.005718534 0.1121653 0.1535689 -0.0001755984 0.1121653 0.1535689 -0.006069731 0.1121653 0.1535689 -0.01197402 0.1121653 0.1535689 -0.01903886 0.1121653 0.1535689 -0.02852504 0.1121653 0.1535689 -0.04126244 0.1121653 0.1535689 -0.05836535 0.1121653 0.1535689 -0.08132997 0.1121653 0.1535689 -0.1121653 0.1121653 0.1535689 -0.1535689 0.1121653 0.1535689 -0.2091628 0.1121653 0.1535689 -0.2838106 0.1121653 0.1535689 -0.3840425 0.1121653 0.1535689 -0.518627 0.1121653 0.1535689 -0.6993381 0.1121653 0.1535689 -0.9419845 0.1121653 0.1535689 -1.267794 0.1121653 0.1535689 -1.705268 0.1121653 0.1535689 -2.292679 0.1121653 0.1535689 -3.081414 0.1121653 0.1535689 -4.140474 0.1121653 0.1535689 -5.562508 0.1121653 0.1535689 -7.471917 0.1121653 0.1535689 -10.03574 0.1121653 0.1535689 -13.47828 0.1121653 0.1535689 -18.10068 0.1121653 0.1535689 -24.30731 0.1121653 0.1535689 -32.64117 0.1121653 0.1535689 -43.83129 0.1121653 0.1535689 -58.85664 0.1121653 0.1535689 --0.0175068 0.1535689 0.1535689 --0.01161267 0.1535689 0.1535689 --0.005718534 0.1535689 0.1535689 -0.0001755984 0.1535689 0.1535689 -0.006069731 0.1535689 0.1535689 -0.01197402 0.1535689 0.1535689 -0.01903886 0.1535689 0.1535689 -0.02852504 0.1535689 0.1535689 -0.04126244 0.1535689 0.1535689 -0.05836535 0.1535689 0.1535689 -0.08132997 0.1535689 0.1535689 -0.1121653 0.1535689 0.1535689 -0.1535689 0.1535689 0.1535689 -0.2091628 0.1535689 0.1535689 -0.2838106 0.1535689 0.1535689 -0.3840425 0.1535689 0.1535689 -0.518627 0.1535689 0.1535689 -0.6993381 0.1535689 0.1535689 -0.9419845 0.1535689 0.1535689 -1.267794 0.1535689 0.1535689 -1.705268 0.1535689 0.1535689 -2.292679 0.1535689 0.1535689 -3.081414 0.1535689 0.1535689 -4.140474 0.1535689 0.1535689 -5.562508 0.1535689 0.1535689 -7.471917 0.1535689 0.1535689 -10.03574 0.1535689 0.1535689 -13.47828 0.1535689 0.1535689 -18.10068 0.1535689 0.1535689 -24.30731 0.1535689 0.1535689 -32.64117 0.1535689 0.1535689 -43.83129 0.1535689 0.1535689 -58.85664 0.1535689 0.1535689 --0.0175068 0.2091628 0.1535689 --0.01161267 0.2091628 0.1535689 --0.005718534 0.2091628 0.1535689 -0.0001755984 0.2091628 0.1535689 -0.006069731 0.2091628 0.1535689 -0.01197402 0.2091628 0.1535689 -0.01903886 0.2091628 0.1535689 -0.02852504 0.2091628 0.1535689 -0.04126244 0.2091628 0.1535689 -0.05836535 0.2091628 0.1535689 -0.08132997 0.2091628 0.1535689 -0.1121653 0.2091628 0.1535689 -0.1535689 0.2091628 0.1535689 -0.2091628 0.2091628 0.1535689 -0.2838106 0.2091628 0.1535689 -0.3840425 0.2091628 0.1535689 -0.518627 0.2091628 0.1535689 -0.6993381 0.2091628 0.1535689 -0.9419845 0.2091628 0.1535689 -1.267794 0.2091628 0.1535689 -1.705268 0.2091628 0.1535689 -2.292679 0.2091628 0.1535689 -3.081414 0.2091628 0.1535689 -4.140474 0.2091628 0.1535689 -5.562508 0.2091628 0.1535689 -7.471917 0.2091628 0.1535689 -10.03574 0.2091628 0.1535689 -13.47828 0.2091628 0.1535689 -18.10068 0.2091628 0.1535689 -24.30731 0.2091628 0.1535689 -32.64117 0.2091628 0.1535689 -43.83129 0.2091628 0.1535689 -58.85664 0.2091628 0.1535689 --0.0175068 0.2838106 0.1535689 --0.01161267 0.2838106 0.1535689 --0.005718534 0.2838106 0.1535689 -0.0001755984 0.2838106 0.1535689 -0.006069731 0.2838106 0.1535689 -0.01197402 0.2838106 0.1535689 -0.01903886 0.2838106 0.1535689 -0.02852504 0.2838106 0.1535689 -0.04126244 0.2838106 0.1535689 -0.05836535 0.2838106 0.1535689 -0.08132997 0.2838106 0.1535689 -0.1121653 0.2838106 0.1535689 -0.1535689 0.2838106 0.1535689 -0.2091628 0.2838106 0.1535689 -0.2838106 0.2838106 0.1535689 -0.3840425 0.2838106 0.1535689 -0.518627 0.2838106 0.1535689 -0.6993381 0.2838106 0.1535689 -0.9419845 0.2838106 0.1535689 -1.267794 0.2838106 0.1535689 -1.705268 0.2838106 0.1535689 -2.292679 0.2838106 0.1535689 -3.081414 0.2838106 0.1535689 -4.140474 0.2838106 0.1535689 -5.562508 0.2838106 0.1535689 -7.471917 0.2838106 0.1535689 -10.03574 0.2838106 0.1535689 -13.47828 0.2838106 0.1535689 -18.10068 0.2838106 0.1535689 -24.30731 0.2838106 0.1535689 -32.64117 0.2838106 0.1535689 -43.83129 0.2838106 0.1535689 -58.85664 0.2838106 0.1535689 --0.0175068 0.3840425 0.1535689 --0.01161267 0.3840425 0.1535689 --0.005718534 0.3840425 0.1535689 -0.0001755984 0.3840425 0.1535689 -0.006069731 0.3840425 0.1535689 -0.01197402 0.3840425 0.1535689 -0.01903886 0.3840425 0.1535689 -0.02852504 0.3840425 0.1535689 -0.04126244 0.3840425 0.1535689 -0.05836535 0.3840425 0.1535689 -0.08132997 0.3840425 0.1535689 -0.1121653 0.3840425 0.1535689 -0.1535689 0.3840425 0.1535689 -0.2091628 0.3840425 0.1535689 -0.2838106 0.3840425 0.1535689 -0.3840425 0.3840425 0.1535689 -0.518627 0.3840425 0.1535689 -0.6993381 0.3840425 0.1535689 -0.9419845 0.3840425 0.1535689 -1.267794 0.3840425 0.1535689 -1.705268 0.3840425 0.1535689 -2.292679 0.3840425 0.1535689 -3.081414 0.3840425 0.1535689 -4.140474 0.3840425 0.1535689 -5.562508 0.3840425 0.1535689 -7.471917 0.3840425 0.1535689 -10.03574 0.3840425 0.1535689 -13.47828 0.3840425 0.1535689 -18.10068 0.3840425 0.1535689 -24.30731 0.3840425 0.1535689 -32.64117 0.3840425 0.1535689 -43.83129 0.3840425 0.1535689 -58.85664 0.3840425 0.1535689 --0.0175068 0.518627 0.1535689 --0.01161267 0.518627 0.1535689 --0.005718534 0.518627 0.1535689 -0.0001755984 0.518627 0.1535689 -0.006069731 0.518627 0.1535689 -0.01197402 0.518627 0.1535689 -0.01903886 0.518627 0.1535689 -0.02852504 0.518627 0.1535689 -0.04126244 0.518627 0.1535689 -0.05836535 0.518627 0.1535689 -0.08132997 0.518627 0.1535689 -0.1121653 0.518627 0.1535689 -0.1535689 0.518627 0.1535689 -0.2091628 0.518627 0.1535689 -0.2838106 0.518627 0.1535689 -0.3840425 0.518627 0.1535689 -0.518627 0.518627 0.1535689 -0.6993381 0.518627 0.1535689 -0.9419845 0.518627 0.1535689 -1.267794 0.518627 0.1535689 -1.705268 0.518627 0.1535689 -2.292679 0.518627 0.1535689 -3.081414 0.518627 0.1535689 -4.140474 0.518627 0.1535689 -5.562508 0.518627 0.1535689 -7.471917 0.518627 0.1535689 -10.03574 0.518627 0.1535689 -13.47828 0.518627 0.1535689 -18.10068 0.518627 0.1535689 -24.30731 0.518627 0.1535689 -32.64117 0.518627 0.1535689 -43.83129 0.518627 0.1535689 -58.85664 0.518627 0.1535689 --0.0175068 0.6993381 0.1535689 --0.01161267 0.6993381 0.1535689 --0.005718534 0.6993381 0.1535689 -0.0001755984 0.6993381 0.1535689 -0.006069731 0.6993381 0.1535689 -0.01197402 0.6993381 0.1535689 -0.01903886 0.6993381 0.1535689 -0.02852504 0.6993381 0.1535689 -0.04126244 0.6993381 0.1535689 -0.05836535 0.6993381 0.1535689 -0.08132997 0.6993381 0.1535689 -0.1121653 0.6993381 0.1535689 -0.1535689 0.6993381 0.1535689 -0.2091628 0.6993381 0.1535689 -0.2838106 0.6993381 0.1535689 -0.3840425 0.6993381 0.1535689 -0.518627 0.6993381 0.1535689 -0.6993381 0.6993381 0.1535689 -0.9419845 0.6993381 0.1535689 -1.267794 0.6993381 0.1535689 -1.705268 0.6993381 0.1535689 -2.292679 0.6993381 0.1535689 -3.081414 0.6993381 0.1535689 -4.140474 0.6993381 0.1535689 -5.562508 0.6993381 0.1535689 -7.471917 0.6993381 0.1535689 -10.03574 0.6993381 0.1535689 -13.47828 0.6993381 0.1535689 -18.10068 0.6993381 0.1535689 -24.30731 0.6993381 0.1535689 -32.64117 0.6993381 0.1535689 -43.83129 0.6993381 0.1535689 -58.85664 0.6993381 0.1535689 --0.0175068 0.9419845 0.1535689 --0.01161267 0.9419845 0.1535689 --0.005718534 0.9419845 0.1535689 -0.0001755984 0.9419845 0.1535689 -0.006069731 0.9419845 0.1535689 -0.01197402 0.9419845 0.1535689 -0.01903886 0.9419845 0.1535689 -0.02852504 0.9419845 0.1535689 -0.04126244 0.9419845 0.1535689 -0.05836535 0.9419845 0.1535689 -0.08132997 0.9419845 0.1535689 -0.1121653 0.9419845 0.1535689 -0.1535689 0.9419845 0.1535689 -0.2091628 0.9419845 0.1535689 -0.2838106 0.9419845 0.1535689 -0.3840425 0.9419845 0.1535689 -0.518627 0.9419845 0.1535689 -0.6993381 0.9419845 0.1535689 -0.9419845 0.9419845 0.1535689 -1.267794 0.9419845 0.1535689 -1.705268 0.9419845 0.1535689 -2.292679 0.9419845 0.1535689 -3.081414 0.9419845 0.1535689 -4.140474 0.9419845 0.1535689 -5.562508 0.9419845 0.1535689 -7.471917 0.9419845 0.1535689 -10.03574 0.9419845 0.1535689 -13.47828 0.9419845 0.1535689 -18.10068 0.9419845 0.1535689 -24.30731 0.9419845 0.1535689 -32.64117 0.9419845 0.1535689 -43.83129 0.9419845 0.1535689 -58.85664 0.9419845 0.1535689 --0.0175068 1.267794 0.1535689 --0.01161267 1.267794 0.1535689 --0.005718534 1.267794 0.1535689 -0.0001755984 1.267794 0.1535689 -0.006069731 1.267794 0.1535689 -0.01197402 1.267794 0.1535689 -0.01903886 1.267794 0.1535689 -0.02852504 1.267794 0.1535689 -0.04126244 1.267794 0.1535689 -0.05836535 1.267794 0.1535689 -0.08132997 1.267794 0.1535689 -0.1121653 1.267794 0.1535689 -0.1535689 1.267794 0.1535689 -0.2091628 1.267794 0.1535689 -0.2838106 1.267794 0.1535689 -0.3840425 1.267794 0.1535689 -0.518627 1.267794 0.1535689 -0.6993381 1.267794 0.1535689 -0.9419845 1.267794 0.1535689 -1.267794 1.267794 0.1535689 -1.705268 1.267794 0.1535689 -2.292679 1.267794 0.1535689 -3.081414 1.267794 0.1535689 -4.140474 1.267794 0.1535689 -5.562508 1.267794 0.1535689 -7.471917 1.267794 0.1535689 -10.03574 1.267794 0.1535689 -13.47828 1.267794 0.1535689 -18.10068 1.267794 0.1535689 -24.30731 1.267794 0.1535689 -32.64117 1.267794 0.1535689 -43.83129 1.267794 0.1535689 -58.85664 1.267794 0.1535689 --0.0175068 1.705268 0.1535689 --0.01161267 1.705268 0.1535689 --0.005718534 1.705268 0.1535689 -0.0001755984 1.705268 0.1535689 -0.006069731 1.705268 0.1535689 -0.01197402 1.705268 0.1535689 -0.01903886 1.705268 0.1535689 -0.02852504 1.705268 0.1535689 -0.04126244 1.705268 0.1535689 -0.05836535 1.705268 0.1535689 -0.08132997 1.705268 0.1535689 -0.1121653 1.705268 0.1535689 -0.1535689 1.705268 0.1535689 -0.2091628 1.705268 0.1535689 -0.2838106 1.705268 0.1535689 -0.3840425 1.705268 0.1535689 -0.518627 1.705268 0.1535689 -0.6993381 1.705268 0.1535689 -0.9419845 1.705268 0.1535689 -1.267794 1.705268 0.1535689 -1.705268 1.705268 0.1535689 -2.292679 1.705268 0.1535689 -3.081414 1.705268 0.1535689 -4.140474 1.705268 0.1535689 -5.562508 1.705268 0.1535689 -7.471917 1.705268 0.1535689 -10.03574 1.705268 0.1535689 -13.47828 1.705268 0.1535689 -18.10068 1.705268 0.1535689 -24.30731 1.705268 0.1535689 -32.64117 1.705268 0.1535689 -43.83129 1.705268 0.1535689 -58.85664 1.705268 0.1535689 --0.0175068 2.292679 0.1535689 --0.01161267 2.292679 0.1535689 --0.005718534 2.292679 0.1535689 -0.0001755984 2.292679 0.1535689 -0.006069731 2.292679 0.1535689 -0.01197402 2.292679 0.1535689 -0.01903886 2.292679 0.1535689 -0.02852504 2.292679 0.1535689 -0.04126244 2.292679 0.1535689 -0.05836535 2.292679 0.1535689 -0.08132997 2.292679 0.1535689 -0.1121653 2.292679 0.1535689 -0.1535689 2.292679 0.1535689 -0.2091628 2.292679 0.1535689 -0.2838106 2.292679 0.1535689 -0.3840425 2.292679 0.1535689 -0.518627 2.292679 0.1535689 -0.6993381 2.292679 0.1535689 -0.9419845 2.292679 0.1535689 -1.267794 2.292679 0.1535689 -1.705268 2.292679 0.1535689 -2.292679 2.292679 0.1535689 -3.081414 2.292679 0.1535689 -4.140474 2.292679 0.1535689 -5.562508 2.292679 0.1535689 -7.471917 2.292679 0.1535689 -10.03574 2.292679 0.1535689 -13.47828 2.292679 0.1535689 -18.10068 2.292679 0.1535689 -24.30731 2.292679 0.1535689 -32.64117 2.292679 0.1535689 -43.83129 2.292679 0.1535689 -58.85664 2.292679 0.1535689 --0.0175068 3.081414 0.1535689 --0.01161267 3.081414 0.1535689 --0.005718534 3.081414 0.1535689 -0.0001755984 3.081414 0.1535689 -0.006069731 3.081414 0.1535689 -0.01197402 3.081414 0.1535689 -0.01903886 3.081414 0.1535689 -0.02852504 3.081414 0.1535689 -0.04126244 3.081414 0.1535689 -0.05836535 3.081414 0.1535689 -0.08132997 3.081414 0.1535689 -0.1121653 3.081414 0.1535689 -0.1535689 3.081414 0.1535689 -0.2091628 3.081414 0.1535689 -0.2838106 3.081414 0.1535689 -0.3840425 3.081414 0.1535689 -0.518627 3.081414 0.1535689 -0.6993381 3.081414 0.1535689 -0.9419845 3.081414 0.1535689 -1.267794 3.081414 0.1535689 -1.705268 3.081414 0.1535689 -2.292679 3.081414 0.1535689 -3.081414 3.081414 0.1535689 -4.140474 3.081414 0.1535689 -5.562508 3.081414 0.1535689 -7.471917 3.081414 0.1535689 -10.03574 3.081414 0.1535689 -13.47828 3.081414 0.1535689 -18.10068 3.081414 0.1535689 -24.30731 3.081414 0.1535689 -32.64117 3.081414 0.1535689 -43.83129 3.081414 0.1535689 -58.85664 3.081414 0.1535689 --0.0175068 4.140474 0.1535689 --0.01161267 4.140474 0.1535689 --0.005718534 4.140474 0.1535689 -0.0001755984 4.140474 0.1535689 -0.006069731 4.140474 0.1535689 -0.01197402 4.140474 0.1535689 -0.01903886 4.140474 0.1535689 -0.02852504 4.140474 0.1535689 -0.04126244 4.140474 0.1535689 -0.05836535 4.140474 0.1535689 -0.08132997 4.140474 0.1535689 -0.1121653 4.140474 0.1535689 -0.1535689 4.140474 0.1535689 -0.2091628 4.140474 0.1535689 -0.2838106 4.140474 0.1535689 -0.3840425 4.140474 0.1535689 -0.518627 4.140474 0.1535689 -0.6993381 4.140474 0.1535689 -0.9419845 4.140474 0.1535689 -1.267794 4.140474 0.1535689 -1.705268 4.140474 0.1535689 -2.292679 4.140474 0.1535689 -3.081414 4.140474 0.1535689 -4.140474 4.140474 0.1535689 -5.562508 4.140474 0.1535689 -7.471917 4.140474 0.1535689 -10.03574 4.140474 0.1535689 -13.47828 4.140474 0.1535689 -18.10068 4.140474 0.1535689 -24.30731 4.140474 0.1535689 -32.64117 4.140474 0.1535689 -43.83129 4.140474 0.1535689 -58.85664 4.140474 0.1535689 --0.0175068 5.562508 0.1535689 --0.01161267 5.562508 0.1535689 --0.005718534 5.562508 0.1535689 -0.0001755984 5.562508 0.1535689 -0.006069731 5.562508 0.1535689 -0.01197402 5.562508 0.1535689 -0.01903886 5.562508 0.1535689 -0.02852504 5.562508 0.1535689 -0.04126244 5.562508 0.1535689 -0.05836535 5.562508 0.1535689 -0.08132997 5.562508 0.1535689 -0.1121653 5.562508 0.1535689 -0.1535689 5.562508 0.1535689 -0.2091628 5.562508 0.1535689 -0.2838106 5.562508 0.1535689 -0.3840425 5.562508 0.1535689 -0.518627 5.562508 0.1535689 -0.6993381 5.562508 0.1535689 -0.9419845 5.562508 0.1535689 -1.267794 5.562508 0.1535689 -1.705268 5.562508 0.1535689 -2.292679 5.562508 0.1535689 -3.081414 5.562508 0.1535689 -4.140474 5.562508 0.1535689 -5.562508 5.562508 0.1535689 -7.471917 5.562508 0.1535689 -10.03574 5.562508 0.1535689 -13.47828 5.562508 0.1535689 -18.10068 5.562508 0.1535689 -24.30731 5.562508 0.1535689 -32.64117 5.562508 0.1535689 -43.83129 5.562508 0.1535689 -58.85664 5.562508 0.1535689 --0.0175068 7.471917 0.1535689 --0.01161267 7.471917 0.1535689 --0.005718534 7.471917 0.1535689 -0.0001755984 7.471917 0.1535689 -0.006069731 7.471917 0.1535689 -0.01197402 7.471917 0.1535689 -0.01903886 7.471917 0.1535689 -0.02852504 7.471917 0.1535689 -0.04126244 7.471917 0.1535689 -0.05836535 7.471917 0.1535689 -0.08132997 7.471917 0.1535689 -0.1121653 7.471917 0.1535689 -0.1535689 7.471917 0.1535689 -0.2091628 7.471917 0.1535689 -0.2838106 7.471917 0.1535689 -0.3840425 7.471917 0.1535689 -0.518627 7.471917 0.1535689 -0.6993381 7.471917 0.1535689 -0.9419845 7.471917 0.1535689 -1.267794 7.471917 0.1535689 -1.705268 7.471917 0.1535689 -2.292679 7.471917 0.1535689 -3.081414 7.471917 0.1535689 -4.140474 7.471917 0.1535689 -5.562508 7.471917 0.1535689 -7.471917 7.471917 0.1535689 -10.03574 7.471917 0.1535689 -13.47828 7.471917 0.1535689 -18.10068 7.471917 0.1535689 -24.30731 7.471917 0.1535689 -32.64117 7.471917 0.1535689 -43.83129 7.471917 0.1535689 -58.85664 7.471917 0.1535689 --0.0175068 10.03574 0.1535689 --0.01161267 10.03574 0.1535689 --0.005718534 10.03574 0.1535689 -0.0001755984 10.03574 0.1535689 -0.006069731 10.03574 0.1535689 -0.01197402 10.03574 0.1535689 -0.01903886 10.03574 0.1535689 -0.02852504 10.03574 0.1535689 -0.04126244 10.03574 0.1535689 -0.05836535 10.03574 0.1535689 -0.08132997 10.03574 0.1535689 -0.1121653 10.03574 0.1535689 -0.1535689 10.03574 0.1535689 -0.2091628 10.03574 0.1535689 -0.2838106 10.03574 0.1535689 -0.3840425 10.03574 0.1535689 -0.518627 10.03574 0.1535689 -0.6993381 10.03574 0.1535689 -0.9419845 10.03574 0.1535689 -1.267794 10.03574 0.1535689 -1.705268 10.03574 0.1535689 -2.292679 10.03574 0.1535689 -3.081414 10.03574 0.1535689 -4.140474 10.03574 0.1535689 -5.562508 10.03574 0.1535689 -7.471917 10.03574 0.1535689 -10.03574 10.03574 0.1535689 -13.47828 10.03574 0.1535689 -18.10068 10.03574 0.1535689 -24.30731 10.03574 0.1535689 -32.64117 10.03574 0.1535689 -43.83129 10.03574 0.1535689 -58.85664 10.03574 0.1535689 --0.0175068 13.47828 0.1535689 --0.01161267 13.47828 0.1535689 --0.005718534 13.47828 0.1535689 -0.0001755984 13.47828 0.1535689 -0.006069731 13.47828 0.1535689 -0.01197402 13.47828 0.1535689 -0.01903886 13.47828 0.1535689 -0.02852504 13.47828 0.1535689 -0.04126244 13.47828 0.1535689 -0.05836535 13.47828 0.1535689 -0.08132997 13.47828 0.1535689 -0.1121653 13.47828 0.1535689 -0.1535689 13.47828 0.1535689 -0.2091628 13.47828 0.1535689 -0.2838106 13.47828 0.1535689 -0.3840425 13.47828 0.1535689 -0.518627 13.47828 0.1535689 -0.6993381 13.47828 0.1535689 -0.9419845 13.47828 0.1535689 -1.267794 13.47828 0.1535689 -1.705268 13.47828 0.1535689 -2.292679 13.47828 0.1535689 -3.081414 13.47828 0.1535689 -4.140474 13.47828 0.1535689 -5.562508 13.47828 0.1535689 -7.471917 13.47828 0.1535689 -10.03574 13.47828 0.1535689 -13.47828 13.47828 0.1535689 -18.10068 13.47828 0.1535689 -24.30731 13.47828 0.1535689 -32.64117 13.47828 0.1535689 -43.83129 13.47828 0.1535689 -58.85664 13.47828 0.1535689 --0.0175068 18.10068 0.1535689 --0.01161267 18.10068 0.1535689 --0.005718534 18.10068 0.1535689 -0.0001755984 18.10068 0.1535689 -0.006069731 18.10068 0.1535689 -0.01197402 18.10068 0.1535689 -0.01903886 18.10068 0.1535689 -0.02852504 18.10068 0.1535689 -0.04126244 18.10068 0.1535689 -0.05836535 18.10068 0.1535689 -0.08132997 18.10068 0.1535689 -0.1121653 18.10068 0.1535689 -0.1535689 18.10068 0.1535689 -0.2091628 18.10068 0.1535689 -0.2838106 18.10068 0.1535689 -0.3840425 18.10068 0.1535689 -0.518627 18.10068 0.1535689 -0.6993381 18.10068 0.1535689 -0.9419845 18.10068 0.1535689 -1.267794 18.10068 0.1535689 -1.705268 18.10068 0.1535689 -2.292679 18.10068 0.1535689 -3.081414 18.10068 0.1535689 -4.140474 18.10068 0.1535689 -5.562508 18.10068 0.1535689 -7.471917 18.10068 0.1535689 -10.03574 18.10068 0.1535689 -13.47828 18.10068 0.1535689 -18.10068 18.10068 0.1535689 -24.30731 18.10068 0.1535689 -32.64117 18.10068 0.1535689 -43.83129 18.10068 0.1535689 -58.85664 18.10068 0.1535689 --0.0175068 24.30731 0.1535689 --0.01161267 24.30731 0.1535689 --0.005718534 24.30731 0.1535689 -0.0001755984 24.30731 0.1535689 -0.006069731 24.30731 0.1535689 -0.01197402 24.30731 0.1535689 -0.01903886 24.30731 0.1535689 -0.02852504 24.30731 0.1535689 -0.04126244 24.30731 0.1535689 -0.05836535 24.30731 0.1535689 -0.08132997 24.30731 0.1535689 -0.1121653 24.30731 0.1535689 -0.1535689 24.30731 0.1535689 -0.2091628 24.30731 0.1535689 -0.2838106 24.30731 0.1535689 -0.3840425 24.30731 0.1535689 -0.518627 24.30731 0.1535689 -0.6993381 24.30731 0.1535689 -0.9419845 24.30731 0.1535689 -1.267794 24.30731 0.1535689 -1.705268 24.30731 0.1535689 -2.292679 24.30731 0.1535689 -3.081414 24.30731 0.1535689 -4.140474 24.30731 0.1535689 -5.562508 24.30731 0.1535689 -7.471917 24.30731 0.1535689 -10.03574 24.30731 0.1535689 -13.47828 24.30731 0.1535689 -18.10068 24.30731 0.1535689 -24.30731 24.30731 0.1535689 -32.64117 24.30731 0.1535689 -43.83129 24.30731 0.1535689 -58.85664 24.30731 0.1535689 --0.0175068 32.64117 0.1535689 --0.01161267 32.64117 0.1535689 --0.005718534 32.64117 0.1535689 -0.0001755984 32.64117 0.1535689 -0.006069731 32.64117 0.1535689 -0.01197402 32.64117 0.1535689 -0.01903886 32.64117 0.1535689 -0.02852504 32.64117 0.1535689 -0.04126244 32.64117 0.1535689 -0.05836535 32.64117 0.1535689 -0.08132997 32.64117 0.1535689 -0.1121653 32.64117 0.1535689 -0.1535689 32.64117 0.1535689 -0.2091628 32.64117 0.1535689 -0.2838106 32.64117 0.1535689 -0.3840425 32.64117 0.1535689 -0.518627 32.64117 0.1535689 -0.6993381 32.64117 0.1535689 -0.9419845 32.64117 0.1535689 -1.267794 32.64117 0.1535689 -1.705268 32.64117 0.1535689 -2.292679 32.64117 0.1535689 -3.081414 32.64117 0.1535689 -4.140474 32.64117 0.1535689 -5.562508 32.64117 0.1535689 -7.471917 32.64117 0.1535689 -10.03574 32.64117 0.1535689 -13.47828 32.64117 0.1535689 -18.10068 32.64117 0.1535689 -24.30731 32.64117 0.1535689 -32.64117 32.64117 0.1535689 -43.83129 32.64117 0.1535689 -58.85664 32.64117 0.1535689 --0.0175068 43.83129 0.1535689 --0.01161267 43.83129 0.1535689 --0.005718534 43.83129 0.1535689 -0.0001755984 43.83129 0.1535689 -0.006069731 43.83129 0.1535689 -0.01197402 43.83129 0.1535689 -0.01903886 43.83129 0.1535689 -0.02852504 43.83129 0.1535689 -0.04126244 43.83129 0.1535689 -0.05836535 43.83129 0.1535689 -0.08132997 43.83129 0.1535689 -0.1121653 43.83129 0.1535689 -0.1535689 43.83129 0.1535689 -0.2091628 43.83129 0.1535689 -0.2838106 43.83129 0.1535689 -0.3840425 43.83129 0.1535689 -0.518627 43.83129 0.1535689 -0.6993381 43.83129 0.1535689 -0.9419845 43.83129 0.1535689 -1.267794 43.83129 0.1535689 -1.705268 43.83129 0.1535689 -2.292679 43.83129 0.1535689 -3.081414 43.83129 0.1535689 -4.140474 43.83129 0.1535689 -5.562508 43.83129 0.1535689 -7.471917 43.83129 0.1535689 -10.03574 43.83129 0.1535689 -13.47828 43.83129 0.1535689 -18.10068 43.83129 0.1535689 -24.30731 43.83129 0.1535689 -32.64117 43.83129 0.1535689 -43.83129 43.83129 0.1535689 -58.85664 43.83129 0.1535689 --0.0175068 58.85664 0.1535689 --0.01161267 58.85664 0.1535689 --0.005718534 58.85664 0.1535689 -0.0001755984 58.85664 0.1535689 -0.006069731 58.85664 0.1535689 -0.01197402 58.85664 0.1535689 -0.01903886 58.85664 0.1535689 -0.02852504 58.85664 0.1535689 -0.04126244 58.85664 0.1535689 -0.05836535 58.85664 0.1535689 -0.08132997 58.85664 0.1535689 -0.1121653 58.85664 0.1535689 -0.1535689 58.85664 0.1535689 -0.2091628 58.85664 0.1535689 -0.2838106 58.85664 0.1535689 -0.3840425 58.85664 0.1535689 -0.518627 58.85664 0.1535689 -0.6993381 58.85664 0.1535689 -0.9419845 58.85664 0.1535689 -1.267794 58.85664 0.1535689 -1.705268 58.85664 0.1535689 -2.292679 58.85664 0.1535689 -3.081414 58.85664 0.1535689 -4.140474 58.85664 0.1535689 -5.562508 58.85664 0.1535689 -7.471917 58.85664 0.1535689 -10.03574 58.85664 0.1535689 -13.47828 58.85664 0.1535689 -18.10068 58.85664 0.1535689 -24.30731 58.85664 0.1535689 -32.64117 58.85664 0.1535689 -43.83129 58.85664 0.1535689 -58.85664 58.85664 0.1535689 --0.0175068 -0.0175068 0.2091628 --0.01161267 -0.0175068 0.2091628 --0.005718534 -0.0175068 0.2091628 -0.0001755984 -0.0175068 0.2091628 -0.006069731 -0.0175068 0.2091628 -0.01197402 -0.0175068 0.2091628 -0.01903886 -0.0175068 0.2091628 -0.02852504 -0.0175068 0.2091628 -0.04126244 -0.0175068 0.2091628 -0.05836535 -0.0175068 0.2091628 -0.08132997 -0.0175068 0.2091628 -0.1121653 -0.0175068 0.2091628 -0.1535689 -0.0175068 0.2091628 -0.2091628 -0.0175068 0.2091628 -0.2838106 -0.0175068 0.2091628 -0.3840425 -0.0175068 0.2091628 -0.518627 -0.0175068 0.2091628 -0.6993381 -0.0175068 0.2091628 -0.9419845 -0.0175068 0.2091628 -1.267794 -0.0175068 0.2091628 -1.705268 -0.0175068 0.2091628 -2.292679 -0.0175068 0.2091628 -3.081414 -0.0175068 0.2091628 -4.140474 -0.0175068 0.2091628 -5.562508 -0.0175068 0.2091628 -7.471917 -0.0175068 0.2091628 -10.03574 -0.0175068 0.2091628 -13.47828 -0.0175068 0.2091628 -18.10068 -0.0175068 0.2091628 -24.30731 -0.0175068 0.2091628 -32.64117 -0.0175068 0.2091628 -43.83129 -0.0175068 0.2091628 -58.85664 -0.0175068 0.2091628 --0.0175068 -0.01161267 0.2091628 --0.01161267 -0.01161267 0.2091628 --0.005718534 -0.01161267 0.2091628 -0.0001755984 -0.01161267 0.2091628 -0.006069731 -0.01161267 0.2091628 -0.01197402 -0.01161267 0.2091628 -0.01903886 -0.01161267 0.2091628 -0.02852504 -0.01161267 0.2091628 -0.04126244 -0.01161267 0.2091628 -0.05836535 -0.01161267 0.2091628 -0.08132997 -0.01161267 0.2091628 -0.1121653 -0.01161267 0.2091628 -0.1535689 -0.01161267 0.2091628 -0.2091628 -0.01161267 0.2091628 -0.2838106 -0.01161267 0.2091628 -0.3840425 -0.01161267 0.2091628 -0.518627 -0.01161267 0.2091628 -0.6993381 -0.01161267 0.2091628 -0.9419845 -0.01161267 0.2091628 -1.267794 -0.01161267 0.2091628 -1.705268 -0.01161267 0.2091628 -2.292679 -0.01161267 0.2091628 -3.081414 -0.01161267 0.2091628 -4.140474 -0.01161267 0.2091628 -5.562508 -0.01161267 0.2091628 -7.471917 -0.01161267 0.2091628 -10.03574 -0.01161267 0.2091628 -13.47828 -0.01161267 0.2091628 -18.10068 -0.01161267 0.2091628 -24.30731 -0.01161267 0.2091628 -32.64117 -0.01161267 0.2091628 -43.83129 -0.01161267 0.2091628 -58.85664 -0.01161267 0.2091628 --0.0175068 -0.005718534 0.2091628 --0.01161267 -0.005718534 0.2091628 --0.005718534 -0.005718534 0.2091628 -0.0001755984 -0.005718534 0.2091628 -0.006069731 -0.005718534 0.2091628 -0.01197402 -0.005718534 0.2091628 -0.01903886 -0.005718534 0.2091628 -0.02852504 -0.005718534 0.2091628 -0.04126244 -0.005718534 0.2091628 -0.05836535 -0.005718534 0.2091628 -0.08132997 -0.005718534 0.2091628 -0.1121653 -0.005718534 0.2091628 -0.1535689 -0.005718534 0.2091628 -0.2091628 -0.005718534 0.2091628 -0.2838106 -0.005718534 0.2091628 -0.3840425 -0.005718534 0.2091628 -0.518627 -0.005718534 0.2091628 -0.6993381 -0.005718534 0.2091628 -0.9419845 -0.005718534 0.2091628 -1.267794 -0.005718534 0.2091628 -1.705268 -0.005718534 0.2091628 -2.292679 -0.005718534 0.2091628 -3.081414 -0.005718534 0.2091628 -4.140474 -0.005718534 0.2091628 -5.562508 -0.005718534 0.2091628 -7.471917 -0.005718534 0.2091628 -10.03574 -0.005718534 0.2091628 -13.47828 -0.005718534 0.2091628 -18.10068 -0.005718534 0.2091628 -24.30731 -0.005718534 0.2091628 -32.64117 -0.005718534 0.2091628 -43.83129 -0.005718534 0.2091628 -58.85664 -0.005718534 0.2091628 --0.0175068 0.0001755984 0.2091628 --0.01161267 0.0001755984 0.2091628 --0.005718534 0.0001755984 0.2091628 -0.0001755984 0.0001755984 0.2091628 -0.006069731 0.0001755984 0.2091628 -0.01197402 0.0001755984 0.2091628 -0.01903886 0.0001755984 0.2091628 -0.02852504 0.0001755984 0.2091628 -0.04126244 0.0001755984 0.2091628 -0.05836535 0.0001755984 0.2091628 -0.08132997 0.0001755984 0.2091628 -0.1121653 0.0001755984 0.2091628 -0.1535689 0.0001755984 0.2091628 -0.2091628 0.0001755984 0.2091628 -0.2838106 0.0001755984 0.2091628 -0.3840425 0.0001755984 0.2091628 -0.518627 0.0001755984 0.2091628 -0.6993381 0.0001755984 0.2091628 -0.9419845 0.0001755984 0.2091628 -1.267794 0.0001755984 0.2091628 -1.705268 0.0001755984 0.2091628 -2.292679 0.0001755984 0.2091628 -3.081414 0.0001755984 0.2091628 -4.140474 0.0001755984 0.2091628 -5.562508 0.0001755984 0.2091628 -7.471917 0.0001755984 0.2091628 -10.03574 0.0001755984 0.2091628 -13.47828 0.0001755984 0.2091628 -18.10068 0.0001755984 0.2091628 -24.30731 0.0001755984 0.2091628 -32.64117 0.0001755984 0.2091628 -43.83129 0.0001755984 0.2091628 -58.85664 0.0001755984 0.2091628 --0.0175068 0.006069731 0.2091628 --0.01161267 0.006069731 0.2091628 --0.005718534 0.006069731 0.2091628 -0.0001755984 0.006069731 0.2091628 -0.006069731 0.006069731 0.2091628 -0.01197402 0.006069731 0.2091628 -0.01903886 0.006069731 0.2091628 -0.02852504 0.006069731 0.2091628 -0.04126244 0.006069731 0.2091628 -0.05836535 0.006069731 0.2091628 -0.08132997 0.006069731 0.2091628 -0.1121653 0.006069731 0.2091628 -0.1535689 0.006069731 0.2091628 -0.2091628 0.006069731 0.2091628 -0.2838106 0.006069731 0.2091628 -0.3840425 0.006069731 0.2091628 -0.518627 0.006069731 0.2091628 -0.6993381 0.006069731 0.2091628 -0.9419845 0.006069731 0.2091628 -1.267794 0.006069731 0.2091628 -1.705268 0.006069731 0.2091628 -2.292679 0.006069731 0.2091628 -3.081414 0.006069731 0.2091628 -4.140474 0.006069731 0.2091628 -5.562508 0.006069731 0.2091628 -7.471917 0.006069731 0.2091628 -10.03574 0.006069731 0.2091628 -13.47828 0.006069731 0.2091628 -18.10068 0.006069731 0.2091628 -24.30731 0.006069731 0.2091628 -32.64117 0.006069731 0.2091628 -43.83129 0.006069731 0.2091628 -58.85664 0.006069731 0.2091628 --0.0175068 0.01197402 0.2091628 --0.01161267 0.01197402 0.2091628 --0.005718534 0.01197402 0.2091628 -0.0001755984 0.01197402 0.2091628 -0.006069731 0.01197402 0.2091628 -0.01197402 0.01197402 0.2091628 -0.01903886 0.01197402 0.2091628 -0.02852504 0.01197402 0.2091628 -0.04126244 0.01197402 0.2091628 -0.05836535 0.01197402 0.2091628 -0.08132997 0.01197402 0.2091628 -0.1121653 0.01197402 0.2091628 -0.1535689 0.01197402 0.2091628 -0.2091628 0.01197402 0.2091628 -0.2838106 0.01197402 0.2091628 -0.3840425 0.01197402 0.2091628 -0.518627 0.01197402 0.2091628 -0.6993381 0.01197402 0.2091628 -0.9419845 0.01197402 0.2091628 -1.267794 0.01197402 0.2091628 -1.705268 0.01197402 0.2091628 -2.292679 0.01197402 0.2091628 -3.081414 0.01197402 0.2091628 -4.140474 0.01197402 0.2091628 -5.562508 0.01197402 0.2091628 -7.471917 0.01197402 0.2091628 -10.03574 0.01197402 0.2091628 -13.47828 0.01197402 0.2091628 -18.10068 0.01197402 0.2091628 -24.30731 0.01197402 0.2091628 -32.64117 0.01197402 0.2091628 -43.83129 0.01197402 0.2091628 -58.85664 0.01197402 0.2091628 --0.0175068 0.01903886 0.2091628 --0.01161267 0.01903886 0.2091628 --0.005718534 0.01903886 0.2091628 -0.0001755984 0.01903886 0.2091628 -0.006069731 0.01903886 0.2091628 -0.01197402 0.01903886 0.2091628 -0.01903886 0.01903886 0.2091628 -0.02852504 0.01903886 0.2091628 -0.04126244 0.01903886 0.2091628 -0.05836535 0.01903886 0.2091628 -0.08132997 0.01903886 0.2091628 -0.1121653 0.01903886 0.2091628 -0.1535689 0.01903886 0.2091628 -0.2091628 0.01903886 0.2091628 -0.2838106 0.01903886 0.2091628 -0.3840425 0.01903886 0.2091628 -0.518627 0.01903886 0.2091628 -0.6993381 0.01903886 0.2091628 -0.9419845 0.01903886 0.2091628 -1.267794 0.01903886 0.2091628 -1.705268 0.01903886 0.2091628 -2.292679 0.01903886 0.2091628 -3.081414 0.01903886 0.2091628 -4.140474 0.01903886 0.2091628 -5.562508 0.01903886 0.2091628 -7.471917 0.01903886 0.2091628 -10.03574 0.01903886 0.2091628 -13.47828 0.01903886 0.2091628 -18.10068 0.01903886 0.2091628 -24.30731 0.01903886 0.2091628 -32.64117 0.01903886 0.2091628 -43.83129 0.01903886 0.2091628 -58.85664 0.01903886 0.2091628 --0.0175068 0.02852504 0.2091628 --0.01161267 0.02852504 0.2091628 --0.005718534 0.02852504 0.2091628 -0.0001755984 0.02852504 0.2091628 -0.006069731 0.02852504 0.2091628 -0.01197402 0.02852504 0.2091628 -0.01903886 0.02852504 0.2091628 -0.02852504 0.02852504 0.2091628 -0.04126244 0.02852504 0.2091628 -0.05836535 0.02852504 0.2091628 -0.08132997 0.02852504 0.2091628 -0.1121653 0.02852504 0.2091628 -0.1535689 0.02852504 0.2091628 -0.2091628 0.02852504 0.2091628 -0.2838106 0.02852504 0.2091628 -0.3840425 0.02852504 0.2091628 -0.518627 0.02852504 0.2091628 -0.6993381 0.02852504 0.2091628 -0.9419845 0.02852504 0.2091628 -1.267794 0.02852504 0.2091628 -1.705268 0.02852504 0.2091628 -2.292679 0.02852504 0.2091628 -3.081414 0.02852504 0.2091628 -4.140474 0.02852504 0.2091628 -5.562508 0.02852504 0.2091628 -7.471917 0.02852504 0.2091628 -10.03574 0.02852504 0.2091628 -13.47828 0.02852504 0.2091628 -18.10068 0.02852504 0.2091628 -24.30731 0.02852504 0.2091628 -32.64117 0.02852504 0.2091628 -43.83129 0.02852504 0.2091628 -58.85664 0.02852504 0.2091628 --0.0175068 0.04126244 0.2091628 --0.01161267 0.04126244 0.2091628 --0.005718534 0.04126244 0.2091628 -0.0001755984 0.04126244 0.2091628 -0.006069731 0.04126244 0.2091628 -0.01197402 0.04126244 0.2091628 -0.01903886 0.04126244 0.2091628 -0.02852504 0.04126244 0.2091628 -0.04126244 0.04126244 0.2091628 -0.05836535 0.04126244 0.2091628 -0.08132997 0.04126244 0.2091628 -0.1121653 0.04126244 0.2091628 -0.1535689 0.04126244 0.2091628 -0.2091628 0.04126244 0.2091628 -0.2838106 0.04126244 0.2091628 -0.3840425 0.04126244 0.2091628 -0.518627 0.04126244 0.2091628 -0.6993381 0.04126244 0.2091628 -0.9419845 0.04126244 0.2091628 -1.267794 0.04126244 0.2091628 -1.705268 0.04126244 0.2091628 -2.292679 0.04126244 0.2091628 -3.081414 0.04126244 0.2091628 -4.140474 0.04126244 0.2091628 -5.562508 0.04126244 0.2091628 -7.471917 0.04126244 0.2091628 -10.03574 0.04126244 0.2091628 -13.47828 0.04126244 0.2091628 -18.10068 0.04126244 0.2091628 -24.30731 0.04126244 0.2091628 -32.64117 0.04126244 0.2091628 -43.83129 0.04126244 0.2091628 -58.85664 0.04126244 0.2091628 --0.0175068 0.05836535 0.2091628 --0.01161267 0.05836535 0.2091628 --0.005718534 0.05836535 0.2091628 -0.0001755984 0.05836535 0.2091628 -0.006069731 0.05836535 0.2091628 -0.01197402 0.05836535 0.2091628 -0.01903886 0.05836535 0.2091628 -0.02852504 0.05836535 0.2091628 -0.04126244 0.05836535 0.2091628 -0.05836535 0.05836535 0.2091628 -0.08132997 0.05836535 0.2091628 -0.1121653 0.05836535 0.2091628 -0.1535689 0.05836535 0.2091628 -0.2091628 0.05836535 0.2091628 -0.2838106 0.05836535 0.2091628 -0.3840425 0.05836535 0.2091628 -0.518627 0.05836535 0.2091628 -0.6993381 0.05836535 0.2091628 -0.9419845 0.05836535 0.2091628 -1.267794 0.05836535 0.2091628 -1.705268 0.05836535 0.2091628 -2.292679 0.05836535 0.2091628 -3.081414 0.05836535 0.2091628 -4.140474 0.05836535 0.2091628 -5.562508 0.05836535 0.2091628 -7.471917 0.05836535 0.2091628 -10.03574 0.05836535 0.2091628 -13.47828 0.05836535 0.2091628 -18.10068 0.05836535 0.2091628 -24.30731 0.05836535 0.2091628 -32.64117 0.05836535 0.2091628 -43.83129 0.05836535 0.2091628 -58.85664 0.05836535 0.2091628 --0.0175068 0.08132997 0.2091628 --0.01161267 0.08132997 0.2091628 --0.005718534 0.08132997 0.2091628 -0.0001755984 0.08132997 0.2091628 -0.006069731 0.08132997 0.2091628 -0.01197402 0.08132997 0.2091628 -0.01903886 0.08132997 0.2091628 -0.02852504 0.08132997 0.2091628 -0.04126244 0.08132997 0.2091628 -0.05836535 0.08132997 0.2091628 -0.08132997 0.08132997 0.2091628 -0.1121653 0.08132997 0.2091628 -0.1535689 0.08132997 0.2091628 -0.2091628 0.08132997 0.2091628 -0.2838106 0.08132997 0.2091628 -0.3840425 0.08132997 0.2091628 -0.518627 0.08132997 0.2091628 -0.6993381 0.08132997 0.2091628 -0.9419845 0.08132997 0.2091628 -1.267794 0.08132997 0.2091628 -1.705268 0.08132997 0.2091628 -2.292679 0.08132997 0.2091628 -3.081414 0.08132997 0.2091628 -4.140474 0.08132997 0.2091628 -5.562508 0.08132997 0.2091628 -7.471917 0.08132997 0.2091628 -10.03574 0.08132997 0.2091628 -13.47828 0.08132997 0.2091628 -18.10068 0.08132997 0.2091628 -24.30731 0.08132997 0.2091628 -32.64117 0.08132997 0.2091628 -43.83129 0.08132997 0.2091628 -58.85664 0.08132997 0.2091628 --0.0175068 0.1121653 0.2091628 --0.01161267 0.1121653 0.2091628 --0.005718534 0.1121653 0.2091628 -0.0001755984 0.1121653 0.2091628 -0.006069731 0.1121653 0.2091628 -0.01197402 0.1121653 0.2091628 -0.01903886 0.1121653 0.2091628 -0.02852504 0.1121653 0.2091628 -0.04126244 0.1121653 0.2091628 -0.05836535 0.1121653 0.2091628 -0.08132997 0.1121653 0.2091628 -0.1121653 0.1121653 0.2091628 -0.1535689 0.1121653 0.2091628 -0.2091628 0.1121653 0.2091628 -0.2838106 0.1121653 0.2091628 -0.3840425 0.1121653 0.2091628 -0.518627 0.1121653 0.2091628 -0.6993381 0.1121653 0.2091628 -0.9419845 0.1121653 0.2091628 -1.267794 0.1121653 0.2091628 -1.705268 0.1121653 0.2091628 -2.292679 0.1121653 0.2091628 -3.081414 0.1121653 0.2091628 -4.140474 0.1121653 0.2091628 -5.562508 0.1121653 0.2091628 -7.471917 0.1121653 0.2091628 -10.03574 0.1121653 0.2091628 -13.47828 0.1121653 0.2091628 -18.10068 0.1121653 0.2091628 -24.30731 0.1121653 0.2091628 -32.64117 0.1121653 0.2091628 -43.83129 0.1121653 0.2091628 -58.85664 0.1121653 0.2091628 --0.0175068 0.1535689 0.2091628 --0.01161267 0.1535689 0.2091628 --0.005718534 0.1535689 0.2091628 -0.0001755984 0.1535689 0.2091628 -0.006069731 0.1535689 0.2091628 -0.01197402 0.1535689 0.2091628 -0.01903886 0.1535689 0.2091628 -0.02852504 0.1535689 0.2091628 -0.04126244 0.1535689 0.2091628 -0.05836535 0.1535689 0.2091628 -0.08132997 0.1535689 0.2091628 -0.1121653 0.1535689 0.2091628 -0.1535689 0.1535689 0.2091628 -0.2091628 0.1535689 0.2091628 -0.2838106 0.1535689 0.2091628 -0.3840425 0.1535689 0.2091628 -0.518627 0.1535689 0.2091628 -0.6993381 0.1535689 0.2091628 -0.9419845 0.1535689 0.2091628 -1.267794 0.1535689 0.2091628 -1.705268 0.1535689 0.2091628 -2.292679 0.1535689 0.2091628 -3.081414 0.1535689 0.2091628 -4.140474 0.1535689 0.2091628 -5.562508 0.1535689 0.2091628 -7.471917 0.1535689 0.2091628 -10.03574 0.1535689 0.2091628 -13.47828 0.1535689 0.2091628 -18.10068 0.1535689 0.2091628 -24.30731 0.1535689 0.2091628 -32.64117 0.1535689 0.2091628 -43.83129 0.1535689 0.2091628 -58.85664 0.1535689 0.2091628 --0.0175068 0.2091628 0.2091628 --0.01161267 0.2091628 0.2091628 --0.005718534 0.2091628 0.2091628 -0.0001755984 0.2091628 0.2091628 -0.006069731 0.2091628 0.2091628 -0.01197402 0.2091628 0.2091628 -0.01903886 0.2091628 0.2091628 -0.02852504 0.2091628 0.2091628 -0.04126244 0.2091628 0.2091628 -0.05836535 0.2091628 0.2091628 -0.08132997 0.2091628 0.2091628 -0.1121653 0.2091628 0.2091628 -0.1535689 0.2091628 0.2091628 -0.2091628 0.2091628 0.2091628 -0.2838106 0.2091628 0.2091628 -0.3840425 0.2091628 0.2091628 -0.518627 0.2091628 0.2091628 -0.6993381 0.2091628 0.2091628 -0.9419845 0.2091628 0.2091628 -1.267794 0.2091628 0.2091628 -1.705268 0.2091628 0.2091628 -2.292679 0.2091628 0.2091628 -3.081414 0.2091628 0.2091628 -4.140474 0.2091628 0.2091628 -5.562508 0.2091628 0.2091628 -7.471917 0.2091628 0.2091628 -10.03574 0.2091628 0.2091628 -13.47828 0.2091628 0.2091628 -18.10068 0.2091628 0.2091628 -24.30731 0.2091628 0.2091628 -32.64117 0.2091628 0.2091628 -43.83129 0.2091628 0.2091628 -58.85664 0.2091628 0.2091628 --0.0175068 0.2838106 0.2091628 --0.01161267 0.2838106 0.2091628 --0.005718534 0.2838106 0.2091628 -0.0001755984 0.2838106 0.2091628 -0.006069731 0.2838106 0.2091628 -0.01197402 0.2838106 0.2091628 -0.01903886 0.2838106 0.2091628 -0.02852504 0.2838106 0.2091628 -0.04126244 0.2838106 0.2091628 -0.05836535 0.2838106 0.2091628 -0.08132997 0.2838106 0.2091628 -0.1121653 0.2838106 0.2091628 -0.1535689 0.2838106 0.2091628 -0.2091628 0.2838106 0.2091628 -0.2838106 0.2838106 0.2091628 -0.3840425 0.2838106 0.2091628 -0.518627 0.2838106 0.2091628 -0.6993381 0.2838106 0.2091628 -0.9419845 0.2838106 0.2091628 -1.267794 0.2838106 0.2091628 -1.705268 0.2838106 0.2091628 -2.292679 0.2838106 0.2091628 -3.081414 0.2838106 0.2091628 -4.140474 0.2838106 0.2091628 -5.562508 0.2838106 0.2091628 -7.471917 0.2838106 0.2091628 -10.03574 0.2838106 0.2091628 -13.47828 0.2838106 0.2091628 -18.10068 0.2838106 0.2091628 -24.30731 0.2838106 0.2091628 -32.64117 0.2838106 0.2091628 -43.83129 0.2838106 0.2091628 -58.85664 0.2838106 0.2091628 --0.0175068 0.3840425 0.2091628 --0.01161267 0.3840425 0.2091628 --0.005718534 0.3840425 0.2091628 -0.0001755984 0.3840425 0.2091628 -0.006069731 0.3840425 0.2091628 -0.01197402 0.3840425 0.2091628 -0.01903886 0.3840425 0.2091628 -0.02852504 0.3840425 0.2091628 -0.04126244 0.3840425 0.2091628 -0.05836535 0.3840425 0.2091628 -0.08132997 0.3840425 0.2091628 -0.1121653 0.3840425 0.2091628 -0.1535689 0.3840425 0.2091628 -0.2091628 0.3840425 0.2091628 -0.2838106 0.3840425 0.2091628 -0.3840425 0.3840425 0.2091628 -0.518627 0.3840425 0.2091628 -0.6993381 0.3840425 0.2091628 -0.9419845 0.3840425 0.2091628 -1.267794 0.3840425 0.2091628 -1.705268 0.3840425 0.2091628 -2.292679 0.3840425 0.2091628 -3.081414 0.3840425 0.2091628 -4.140474 0.3840425 0.2091628 -5.562508 0.3840425 0.2091628 -7.471917 0.3840425 0.2091628 -10.03574 0.3840425 0.2091628 -13.47828 0.3840425 0.2091628 -18.10068 0.3840425 0.2091628 -24.30731 0.3840425 0.2091628 -32.64117 0.3840425 0.2091628 -43.83129 0.3840425 0.2091628 -58.85664 0.3840425 0.2091628 --0.0175068 0.518627 0.2091628 --0.01161267 0.518627 0.2091628 --0.005718534 0.518627 0.2091628 -0.0001755984 0.518627 0.2091628 -0.006069731 0.518627 0.2091628 -0.01197402 0.518627 0.2091628 -0.01903886 0.518627 0.2091628 -0.02852504 0.518627 0.2091628 -0.04126244 0.518627 0.2091628 -0.05836535 0.518627 0.2091628 -0.08132997 0.518627 0.2091628 -0.1121653 0.518627 0.2091628 -0.1535689 0.518627 0.2091628 -0.2091628 0.518627 0.2091628 -0.2838106 0.518627 0.2091628 -0.3840425 0.518627 0.2091628 -0.518627 0.518627 0.2091628 -0.6993381 0.518627 0.2091628 -0.9419845 0.518627 0.2091628 -1.267794 0.518627 0.2091628 -1.705268 0.518627 0.2091628 -2.292679 0.518627 0.2091628 -3.081414 0.518627 0.2091628 -4.140474 0.518627 0.2091628 -5.562508 0.518627 0.2091628 -7.471917 0.518627 0.2091628 -10.03574 0.518627 0.2091628 -13.47828 0.518627 0.2091628 -18.10068 0.518627 0.2091628 -24.30731 0.518627 0.2091628 -32.64117 0.518627 0.2091628 -43.83129 0.518627 0.2091628 -58.85664 0.518627 0.2091628 --0.0175068 0.6993381 0.2091628 --0.01161267 0.6993381 0.2091628 --0.005718534 0.6993381 0.2091628 -0.0001755984 0.6993381 0.2091628 -0.006069731 0.6993381 0.2091628 -0.01197402 0.6993381 0.2091628 -0.01903886 0.6993381 0.2091628 -0.02852504 0.6993381 0.2091628 -0.04126244 0.6993381 0.2091628 -0.05836535 0.6993381 0.2091628 -0.08132997 0.6993381 0.2091628 -0.1121653 0.6993381 0.2091628 -0.1535689 0.6993381 0.2091628 -0.2091628 0.6993381 0.2091628 -0.2838106 0.6993381 0.2091628 -0.3840425 0.6993381 0.2091628 -0.518627 0.6993381 0.2091628 -0.6993381 0.6993381 0.2091628 -0.9419845 0.6993381 0.2091628 -1.267794 0.6993381 0.2091628 -1.705268 0.6993381 0.2091628 -2.292679 0.6993381 0.2091628 -3.081414 0.6993381 0.2091628 -4.140474 0.6993381 0.2091628 -5.562508 0.6993381 0.2091628 -7.471917 0.6993381 0.2091628 -10.03574 0.6993381 0.2091628 -13.47828 0.6993381 0.2091628 -18.10068 0.6993381 0.2091628 -24.30731 0.6993381 0.2091628 -32.64117 0.6993381 0.2091628 -43.83129 0.6993381 0.2091628 -58.85664 0.6993381 0.2091628 --0.0175068 0.9419845 0.2091628 --0.01161267 0.9419845 0.2091628 --0.005718534 0.9419845 0.2091628 -0.0001755984 0.9419845 0.2091628 -0.006069731 0.9419845 0.2091628 -0.01197402 0.9419845 0.2091628 -0.01903886 0.9419845 0.2091628 -0.02852504 0.9419845 0.2091628 -0.04126244 0.9419845 0.2091628 -0.05836535 0.9419845 0.2091628 -0.08132997 0.9419845 0.2091628 -0.1121653 0.9419845 0.2091628 -0.1535689 0.9419845 0.2091628 -0.2091628 0.9419845 0.2091628 -0.2838106 0.9419845 0.2091628 -0.3840425 0.9419845 0.2091628 -0.518627 0.9419845 0.2091628 -0.6993381 0.9419845 0.2091628 -0.9419845 0.9419845 0.2091628 -1.267794 0.9419845 0.2091628 -1.705268 0.9419845 0.2091628 -2.292679 0.9419845 0.2091628 -3.081414 0.9419845 0.2091628 -4.140474 0.9419845 0.2091628 -5.562508 0.9419845 0.2091628 -7.471917 0.9419845 0.2091628 -10.03574 0.9419845 0.2091628 -13.47828 0.9419845 0.2091628 -18.10068 0.9419845 0.2091628 -24.30731 0.9419845 0.2091628 -32.64117 0.9419845 0.2091628 -43.83129 0.9419845 0.2091628 -58.85664 0.9419845 0.2091628 --0.0175068 1.267794 0.2091628 --0.01161267 1.267794 0.2091628 --0.005718534 1.267794 0.2091628 -0.0001755984 1.267794 0.2091628 -0.006069731 1.267794 0.2091628 -0.01197402 1.267794 0.2091628 -0.01903886 1.267794 0.2091628 -0.02852504 1.267794 0.2091628 -0.04126244 1.267794 0.2091628 -0.05836535 1.267794 0.2091628 -0.08132997 1.267794 0.2091628 -0.1121653 1.267794 0.2091628 -0.1535689 1.267794 0.2091628 -0.2091628 1.267794 0.2091628 -0.2838106 1.267794 0.2091628 -0.3840425 1.267794 0.2091628 -0.518627 1.267794 0.2091628 -0.6993381 1.267794 0.2091628 -0.9419845 1.267794 0.2091628 -1.267794 1.267794 0.2091628 -1.705268 1.267794 0.2091628 -2.292679 1.267794 0.2091628 -3.081414 1.267794 0.2091628 -4.140474 1.267794 0.2091628 -5.562508 1.267794 0.2091628 -7.471917 1.267794 0.2091628 -10.03574 1.267794 0.2091628 -13.47828 1.267794 0.2091628 -18.10068 1.267794 0.2091628 -24.30731 1.267794 0.2091628 -32.64117 1.267794 0.2091628 -43.83129 1.267794 0.2091628 -58.85664 1.267794 0.2091628 --0.0175068 1.705268 0.2091628 --0.01161267 1.705268 0.2091628 --0.005718534 1.705268 0.2091628 -0.0001755984 1.705268 0.2091628 -0.006069731 1.705268 0.2091628 -0.01197402 1.705268 0.2091628 -0.01903886 1.705268 0.2091628 -0.02852504 1.705268 0.2091628 -0.04126244 1.705268 0.2091628 -0.05836535 1.705268 0.2091628 -0.08132997 1.705268 0.2091628 -0.1121653 1.705268 0.2091628 -0.1535689 1.705268 0.2091628 -0.2091628 1.705268 0.2091628 -0.2838106 1.705268 0.2091628 -0.3840425 1.705268 0.2091628 -0.518627 1.705268 0.2091628 -0.6993381 1.705268 0.2091628 -0.9419845 1.705268 0.2091628 -1.267794 1.705268 0.2091628 -1.705268 1.705268 0.2091628 -2.292679 1.705268 0.2091628 -3.081414 1.705268 0.2091628 -4.140474 1.705268 0.2091628 -5.562508 1.705268 0.2091628 -7.471917 1.705268 0.2091628 -10.03574 1.705268 0.2091628 -13.47828 1.705268 0.2091628 -18.10068 1.705268 0.2091628 -24.30731 1.705268 0.2091628 -32.64117 1.705268 0.2091628 -43.83129 1.705268 0.2091628 -58.85664 1.705268 0.2091628 --0.0175068 2.292679 0.2091628 --0.01161267 2.292679 0.2091628 --0.005718534 2.292679 0.2091628 -0.0001755984 2.292679 0.2091628 -0.006069731 2.292679 0.2091628 -0.01197402 2.292679 0.2091628 -0.01903886 2.292679 0.2091628 -0.02852504 2.292679 0.2091628 -0.04126244 2.292679 0.2091628 -0.05836535 2.292679 0.2091628 -0.08132997 2.292679 0.2091628 -0.1121653 2.292679 0.2091628 -0.1535689 2.292679 0.2091628 -0.2091628 2.292679 0.2091628 -0.2838106 2.292679 0.2091628 -0.3840425 2.292679 0.2091628 -0.518627 2.292679 0.2091628 -0.6993381 2.292679 0.2091628 -0.9419845 2.292679 0.2091628 -1.267794 2.292679 0.2091628 -1.705268 2.292679 0.2091628 -2.292679 2.292679 0.2091628 -3.081414 2.292679 0.2091628 -4.140474 2.292679 0.2091628 -5.562508 2.292679 0.2091628 -7.471917 2.292679 0.2091628 -10.03574 2.292679 0.2091628 -13.47828 2.292679 0.2091628 -18.10068 2.292679 0.2091628 -24.30731 2.292679 0.2091628 -32.64117 2.292679 0.2091628 -43.83129 2.292679 0.2091628 -58.85664 2.292679 0.2091628 --0.0175068 3.081414 0.2091628 --0.01161267 3.081414 0.2091628 --0.005718534 3.081414 0.2091628 -0.0001755984 3.081414 0.2091628 -0.006069731 3.081414 0.2091628 -0.01197402 3.081414 0.2091628 -0.01903886 3.081414 0.2091628 -0.02852504 3.081414 0.2091628 -0.04126244 3.081414 0.2091628 -0.05836535 3.081414 0.2091628 -0.08132997 3.081414 0.2091628 -0.1121653 3.081414 0.2091628 -0.1535689 3.081414 0.2091628 -0.2091628 3.081414 0.2091628 -0.2838106 3.081414 0.2091628 -0.3840425 3.081414 0.2091628 -0.518627 3.081414 0.2091628 -0.6993381 3.081414 0.2091628 -0.9419845 3.081414 0.2091628 -1.267794 3.081414 0.2091628 -1.705268 3.081414 0.2091628 -2.292679 3.081414 0.2091628 -3.081414 3.081414 0.2091628 -4.140474 3.081414 0.2091628 -5.562508 3.081414 0.2091628 -7.471917 3.081414 0.2091628 -10.03574 3.081414 0.2091628 -13.47828 3.081414 0.2091628 -18.10068 3.081414 0.2091628 -24.30731 3.081414 0.2091628 -32.64117 3.081414 0.2091628 -43.83129 3.081414 0.2091628 -58.85664 3.081414 0.2091628 --0.0175068 4.140474 0.2091628 --0.01161267 4.140474 0.2091628 --0.005718534 4.140474 0.2091628 -0.0001755984 4.140474 0.2091628 -0.006069731 4.140474 0.2091628 -0.01197402 4.140474 0.2091628 -0.01903886 4.140474 0.2091628 -0.02852504 4.140474 0.2091628 -0.04126244 4.140474 0.2091628 -0.05836535 4.140474 0.2091628 -0.08132997 4.140474 0.2091628 -0.1121653 4.140474 0.2091628 -0.1535689 4.140474 0.2091628 -0.2091628 4.140474 0.2091628 -0.2838106 4.140474 0.2091628 -0.3840425 4.140474 0.2091628 -0.518627 4.140474 0.2091628 -0.6993381 4.140474 0.2091628 -0.9419845 4.140474 0.2091628 -1.267794 4.140474 0.2091628 -1.705268 4.140474 0.2091628 -2.292679 4.140474 0.2091628 -3.081414 4.140474 0.2091628 -4.140474 4.140474 0.2091628 -5.562508 4.140474 0.2091628 -7.471917 4.140474 0.2091628 -10.03574 4.140474 0.2091628 -13.47828 4.140474 0.2091628 -18.10068 4.140474 0.2091628 -24.30731 4.140474 0.2091628 -32.64117 4.140474 0.2091628 -43.83129 4.140474 0.2091628 -58.85664 4.140474 0.2091628 --0.0175068 5.562508 0.2091628 --0.01161267 5.562508 0.2091628 --0.005718534 5.562508 0.2091628 -0.0001755984 5.562508 0.2091628 -0.006069731 5.562508 0.2091628 -0.01197402 5.562508 0.2091628 -0.01903886 5.562508 0.2091628 -0.02852504 5.562508 0.2091628 -0.04126244 5.562508 0.2091628 -0.05836535 5.562508 0.2091628 -0.08132997 5.562508 0.2091628 -0.1121653 5.562508 0.2091628 -0.1535689 5.562508 0.2091628 -0.2091628 5.562508 0.2091628 -0.2838106 5.562508 0.2091628 -0.3840425 5.562508 0.2091628 -0.518627 5.562508 0.2091628 -0.6993381 5.562508 0.2091628 -0.9419845 5.562508 0.2091628 -1.267794 5.562508 0.2091628 -1.705268 5.562508 0.2091628 -2.292679 5.562508 0.2091628 -3.081414 5.562508 0.2091628 -4.140474 5.562508 0.2091628 -5.562508 5.562508 0.2091628 -7.471917 5.562508 0.2091628 -10.03574 5.562508 0.2091628 -13.47828 5.562508 0.2091628 -18.10068 5.562508 0.2091628 -24.30731 5.562508 0.2091628 -32.64117 5.562508 0.2091628 -43.83129 5.562508 0.2091628 -58.85664 5.562508 0.2091628 --0.0175068 7.471917 0.2091628 --0.01161267 7.471917 0.2091628 --0.005718534 7.471917 0.2091628 -0.0001755984 7.471917 0.2091628 -0.006069731 7.471917 0.2091628 -0.01197402 7.471917 0.2091628 -0.01903886 7.471917 0.2091628 -0.02852504 7.471917 0.2091628 -0.04126244 7.471917 0.2091628 -0.05836535 7.471917 0.2091628 -0.08132997 7.471917 0.2091628 -0.1121653 7.471917 0.2091628 -0.1535689 7.471917 0.2091628 -0.2091628 7.471917 0.2091628 -0.2838106 7.471917 0.2091628 -0.3840425 7.471917 0.2091628 -0.518627 7.471917 0.2091628 -0.6993381 7.471917 0.2091628 -0.9419845 7.471917 0.2091628 -1.267794 7.471917 0.2091628 -1.705268 7.471917 0.2091628 -2.292679 7.471917 0.2091628 -3.081414 7.471917 0.2091628 -4.140474 7.471917 0.2091628 -5.562508 7.471917 0.2091628 -7.471917 7.471917 0.2091628 -10.03574 7.471917 0.2091628 -13.47828 7.471917 0.2091628 -18.10068 7.471917 0.2091628 -24.30731 7.471917 0.2091628 -32.64117 7.471917 0.2091628 -43.83129 7.471917 0.2091628 -58.85664 7.471917 0.2091628 --0.0175068 10.03574 0.2091628 --0.01161267 10.03574 0.2091628 --0.005718534 10.03574 0.2091628 -0.0001755984 10.03574 0.2091628 -0.006069731 10.03574 0.2091628 -0.01197402 10.03574 0.2091628 -0.01903886 10.03574 0.2091628 -0.02852504 10.03574 0.2091628 -0.04126244 10.03574 0.2091628 -0.05836535 10.03574 0.2091628 -0.08132997 10.03574 0.2091628 -0.1121653 10.03574 0.2091628 -0.1535689 10.03574 0.2091628 -0.2091628 10.03574 0.2091628 -0.2838106 10.03574 0.2091628 -0.3840425 10.03574 0.2091628 -0.518627 10.03574 0.2091628 -0.6993381 10.03574 0.2091628 -0.9419845 10.03574 0.2091628 -1.267794 10.03574 0.2091628 -1.705268 10.03574 0.2091628 -2.292679 10.03574 0.2091628 -3.081414 10.03574 0.2091628 -4.140474 10.03574 0.2091628 -5.562508 10.03574 0.2091628 -7.471917 10.03574 0.2091628 -10.03574 10.03574 0.2091628 -13.47828 10.03574 0.2091628 -18.10068 10.03574 0.2091628 -24.30731 10.03574 0.2091628 -32.64117 10.03574 0.2091628 -43.83129 10.03574 0.2091628 -58.85664 10.03574 0.2091628 --0.0175068 13.47828 0.2091628 --0.01161267 13.47828 0.2091628 --0.005718534 13.47828 0.2091628 -0.0001755984 13.47828 0.2091628 -0.006069731 13.47828 0.2091628 -0.01197402 13.47828 0.2091628 -0.01903886 13.47828 0.2091628 -0.02852504 13.47828 0.2091628 -0.04126244 13.47828 0.2091628 -0.05836535 13.47828 0.2091628 -0.08132997 13.47828 0.2091628 -0.1121653 13.47828 0.2091628 -0.1535689 13.47828 0.2091628 -0.2091628 13.47828 0.2091628 -0.2838106 13.47828 0.2091628 -0.3840425 13.47828 0.2091628 -0.518627 13.47828 0.2091628 -0.6993381 13.47828 0.2091628 -0.9419845 13.47828 0.2091628 -1.267794 13.47828 0.2091628 -1.705268 13.47828 0.2091628 -2.292679 13.47828 0.2091628 -3.081414 13.47828 0.2091628 -4.140474 13.47828 0.2091628 -5.562508 13.47828 0.2091628 -7.471917 13.47828 0.2091628 -10.03574 13.47828 0.2091628 -13.47828 13.47828 0.2091628 -18.10068 13.47828 0.2091628 -24.30731 13.47828 0.2091628 -32.64117 13.47828 0.2091628 -43.83129 13.47828 0.2091628 -58.85664 13.47828 0.2091628 --0.0175068 18.10068 0.2091628 --0.01161267 18.10068 0.2091628 --0.005718534 18.10068 0.2091628 -0.0001755984 18.10068 0.2091628 -0.006069731 18.10068 0.2091628 -0.01197402 18.10068 0.2091628 -0.01903886 18.10068 0.2091628 -0.02852504 18.10068 0.2091628 -0.04126244 18.10068 0.2091628 -0.05836535 18.10068 0.2091628 -0.08132997 18.10068 0.2091628 -0.1121653 18.10068 0.2091628 -0.1535689 18.10068 0.2091628 -0.2091628 18.10068 0.2091628 -0.2838106 18.10068 0.2091628 -0.3840425 18.10068 0.2091628 -0.518627 18.10068 0.2091628 -0.6993381 18.10068 0.2091628 -0.9419845 18.10068 0.2091628 -1.267794 18.10068 0.2091628 -1.705268 18.10068 0.2091628 -2.292679 18.10068 0.2091628 -3.081414 18.10068 0.2091628 -4.140474 18.10068 0.2091628 -5.562508 18.10068 0.2091628 -7.471917 18.10068 0.2091628 -10.03574 18.10068 0.2091628 -13.47828 18.10068 0.2091628 -18.10068 18.10068 0.2091628 -24.30731 18.10068 0.2091628 -32.64117 18.10068 0.2091628 -43.83129 18.10068 0.2091628 -58.85664 18.10068 0.2091628 --0.0175068 24.30731 0.2091628 --0.01161267 24.30731 0.2091628 --0.005718534 24.30731 0.2091628 -0.0001755984 24.30731 0.2091628 -0.006069731 24.30731 0.2091628 -0.01197402 24.30731 0.2091628 -0.01903886 24.30731 0.2091628 -0.02852504 24.30731 0.2091628 -0.04126244 24.30731 0.2091628 -0.05836535 24.30731 0.2091628 -0.08132997 24.30731 0.2091628 -0.1121653 24.30731 0.2091628 -0.1535689 24.30731 0.2091628 -0.2091628 24.30731 0.2091628 -0.2838106 24.30731 0.2091628 -0.3840425 24.30731 0.2091628 -0.518627 24.30731 0.2091628 -0.6993381 24.30731 0.2091628 -0.9419845 24.30731 0.2091628 -1.267794 24.30731 0.2091628 -1.705268 24.30731 0.2091628 -2.292679 24.30731 0.2091628 -3.081414 24.30731 0.2091628 -4.140474 24.30731 0.2091628 -5.562508 24.30731 0.2091628 -7.471917 24.30731 0.2091628 -10.03574 24.30731 0.2091628 -13.47828 24.30731 0.2091628 -18.10068 24.30731 0.2091628 -24.30731 24.30731 0.2091628 -32.64117 24.30731 0.2091628 -43.83129 24.30731 0.2091628 -58.85664 24.30731 0.2091628 --0.0175068 32.64117 0.2091628 --0.01161267 32.64117 0.2091628 --0.005718534 32.64117 0.2091628 -0.0001755984 32.64117 0.2091628 -0.006069731 32.64117 0.2091628 -0.01197402 32.64117 0.2091628 -0.01903886 32.64117 0.2091628 -0.02852504 32.64117 0.2091628 -0.04126244 32.64117 0.2091628 -0.05836535 32.64117 0.2091628 -0.08132997 32.64117 0.2091628 -0.1121653 32.64117 0.2091628 -0.1535689 32.64117 0.2091628 -0.2091628 32.64117 0.2091628 -0.2838106 32.64117 0.2091628 -0.3840425 32.64117 0.2091628 -0.518627 32.64117 0.2091628 -0.6993381 32.64117 0.2091628 -0.9419845 32.64117 0.2091628 -1.267794 32.64117 0.2091628 -1.705268 32.64117 0.2091628 -2.292679 32.64117 0.2091628 -3.081414 32.64117 0.2091628 -4.140474 32.64117 0.2091628 -5.562508 32.64117 0.2091628 -7.471917 32.64117 0.2091628 -10.03574 32.64117 0.2091628 -13.47828 32.64117 0.2091628 -18.10068 32.64117 0.2091628 -24.30731 32.64117 0.2091628 -32.64117 32.64117 0.2091628 -43.83129 32.64117 0.2091628 -58.85664 32.64117 0.2091628 --0.0175068 43.83129 0.2091628 --0.01161267 43.83129 0.2091628 --0.005718534 43.83129 0.2091628 -0.0001755984 43.83129 0.2091628 -0.006069731 43.83129 0.2091628 -0.01197402 43.83129 0.2091628 -0.01903886 43.83129 0.2091628 -0.02852504 43.83129 0.2091628 -0.04126244 43.83129 0.2091628 -0.05836535 43.83129 0.2091628 -0.08132997 43.83129 0.2091628 -0.1121653 43.83129 0.2091628 -0.1535689 43.83129 0.2091628 -0.2091628 43.83129 0.2091628 -0.2838106 43.83129 0.2091628 -0.3840425 43.83129 0.2091628 -0.518627 43.83129 0.2091628 -0.6993381 43.83129 0.2091628 -0.9419845 43.83129 0.2091628 -1.267794 43.83129 0.2091628 -1.705268 43.83129 0.2091628 -2.292679 43.83129 0.2091628 -3.081414 43.83129 0.2091628 -4.140474 43.83129 0.2091628 -5.562508 43.83129 0.2091628 -7.471917 43.83129 0.2091628 -10.03574 43.83129 0.2091628 -13.47828 43.83129 0.2091628 -18.10068 43.83129 0.2091628 -24.30731 43.83129 0.2091628 -32.64117 43.83129 0.2091628 -43.83129 43.83129 0.2091628 -58.85664 43.83129 0.2091628 --0.0175068 58.85664 0.2091628 --0.01161267 58.85664 0.2091628 --0.005718534 58.85664 0.2091628 -0.0001755984 58.85664 0.2091628 -0.006069731 58.85664 0.2091628 -0.01197402 58.85664 0.2091628 -0.01903886 58.85664 0.2091628 -0.02852504 58.85664 0.2091628 -0.04126244 58.85664 0.2091628 -0.05836535 58.85664 0.2091628 -0.08132997 58.85664 0.2091628 -0.1121653 58.85664 0.2091628 -0.1535689 58.85664 0.2091628 -0.2091628 58.85664 0.2091628 -0.2838106 58.85664 0.2091628 -0.3840425 58.85664 0.2091628 -0.518627 58.85664 0.2091628 -0.6993381 58.85664 0.2091628 -0.9419845 58.85664 0.2091628 -1.267794 58.85664 0.2091628 -1.705268 58.85664 0.2091628 -2.292679 58.85664 0.2091628 -3.081414 58.85664 0.2091628 -4.140474 58.85664 0.2091628 -5.562508 58.85664 0.2091628 -7.471917 58.85664 0.2091628 -10.03574 58.85664 0.2091628 -13.47828 58.85664 0.2091628 -18.10068 58.85664 0.2091628 -24.30731 58.85664 0.2091628 -32.64117 58.85664 0.2091628 -43.83129 58.85664 0.2091628 -58.85664 58.85664 0.2091628 --0.0175068 -0.0175068 0.2838106 --0.01161267 -0.0175068 0.2838106 --0.005718534 -0.0175068 0.2838106 -0.0001755984 -0.0175068 0.2838106 -0.006069731 -0.0175068 0.2838106 -0.01197402 -0.0175068 0.2838106 -0.01903886 -0.0175068 0.2838106 -0.02852504 -0.0175068 0.2838106 -0.04126244 -0.0175068 0.2838106 -0.05836535 -0.0175068 0.2838106 -0.08132997 -0.0175068 0.2838106 -0.1121653 -0.0175068 0.2838106 -0.1535689 -0.0175068 0.2838106 -0.2091628 -0.0175068 0.2838106 -0.2838106 -0.0175068 0.2838106 -0.3840425 -0.0175068 0.2838106 -0.518627 -0.0175068 0.2838106 -0.6993381 -0.0175068 0.2838106 -0.9419845 -0.0175068 0.2838106 -1.267794 -0.0175068 0.2838106 -1.705268 -0.0175068 0.2838106 -2.292679 -0.0175068 0.2838106 -3.081414 -0.0175068 0.2838106 -4.140474 -0.0175068 0.2838106 -5.562508 -0.0175068 0.2838106 -7.471917 -0.0175068 0.2838106 -10.03574 -0.0175068 0.2838106 -13.47828 -0.0175068 0.2838106 -18.10068 -0.0175068 0.2838106 -24.30731 -0.0175068 0.2838106 -32.64117 -0.0175068 0.2838106 -43.83129 -0.0175068 0.2838106 -58.85664 -0.0175068 0.2838106 --0.0175068 -0.01161267 0.2838106 --0.01161267 -0.01161267 0.2838106 --0.005718534 -0.01161267 0.2838106 -0.0001755984 -0.01161267 0.2838106 -0.006069731 -0.01161267 0.2838106 -0.01197402 -0.01161267 0.2838106 -0.01903886 -0.01161267 0.2838106 -0.02852504 -0.01161267 0.2838106 -0.04126244 -0.01161267 0.2838106 -0.05836535 -0.01161267 0.2838106 -0.08132997 -0.01161267 0.2838106 -0.1121653 -0.01161267 0.2838106 -0.1535689 -0.01161267 0.2838106 -0.2091628 -0.01161267 0.2838106 -0.2838106 -0.01161267 0.2838106 -0.3840425 -0.01161267 0.2838106 -0.518627 -0.01161267 0.2838106 -0.6993381 -0.01161267 0.2838106 -0.9419845 -0.01161267 0.2838106 -1.267794 -0.01161267 0.2838106 -1.705268 -0.01161267 0.2838106 -2.292679 -0.01161267 0.2838106 -3.081414 -0.01161267 0.2838106 -4.140474 -0.01161267 0.2838106 -5.562508 -0.01161267 0.2838106 -7.471917 -0.01161267 0.2838106 -10.03574 -0.01161267 0.2838106 -13.47828 -0.01161267 0.2838106 -18.10068 -0.01161267 0.2838106 -24.30731 -0.01161267 0.2838106 -32.64117 -0.01161267 0.2838106 -43.83129 -0.01161267 0.2838106 -58.85664 -0.01161267 0.2838106 --0.0175068 -0.005718534 0.2838106 --0.01161267 -0.005718534 0.2838106 --0.005718534 -0.005718534 0.2838106 -0.0001755984 -0.005718534 0.2838106 -0.006069731 -0.005718534 0.2838106 -0.01197402 -0.005718534 0.2838106 -0.01903886 -0.005718534 0.2838106 -0.02852504 -0.005718534 0.2838106 -0.04126244 -0.005718534 0.2838106 -0.05836535 -0.005718534 0.2838106 -0.08132997 -0.005718534 0.2838106 -0.1121653 -0.005718534 0.2838106 -0.1535689 -0.005718534 0.2838106 -0.2091628 -0.005718534 0.2838106 -0.2838106 -0.005718534 0.2838106 -0.3840425 -0.005718534 0.2838106 -0.518627 -0.005718534 0.2838106 -0.6993381 -0.005718534 0.2838106 -0.9419845 -0.005718534 0.2838106 -1.267794 -0.005718534 0.2838106 -1.705268 -0.005718534 0.2838106 -2.292679 -0.005718534 0.2838106 -3.081414 -0.005718534 0.2838106 -4.140474 -0.005718534 0.2838106 -5.562508 -0.005718534 0.2838106 -7.471917 -0.005718534 0.2838106 -10.03574 -0.005718534 0.2838106 -13.47828 -0.005718534 0.2838106 -18.10068 -0.005718534 0.2838106 -24.30731 -0.005718534 0.2838106 -32.64117 -0.005718534 0.2838106 -43.83129 -0.005718534 0.2838106 -58.85664 -0.005718534 0.2838106 --0.0175068 0.0001755984 0.2838106 --0.01161267 0.0001755984 0.2838106 --0.005718534 0.0001755984 0.2838106 -0.0001755984 0.0001755984 0.2838106 -0.006069731 0.0001755984 0.2838106 -0.01197402 0.0001755984 0.2838106 -0.01903886 0.0001755984 0.2838106 -0.02852504 0.0001755984 0.2838106 -0.04126244 0.0001755984 0.2838106 -0.05836535 0.0001755984 0.2838106 -0.08132997 0.0001755984 0.2838106 -0.1121653 0.0001755984 0.2838106 -0.1535689 0.0001755984 0.2838106 -0.2091628 0.0001755984 0.2838106 -0.2838106 0.0001755984 0.2838106 -0.3840425 0.0001755984 0.2838106 -0.518627 0.0001755984 0.2838106 -0.6993381 0.0001755984 0.2838106 -0.9419845 0.0001755984 0.2838106 -1.267794 0.0001755984 0.2838106 -1.705268 0.0001755984 0.2838106 -2.292679 0.0001755984 0.2838106 -3.081414 0.0001755984 0.2838106 -4.140474 0.0001755984 0.2838106 -5.562508 0.0001755984 0.2838106 -7.471917 0.0001755984 0.2838106 -10.03574 0.0001755984 0.2838106 -13.47828 0.0001755984 0.2838106 -18.10068 0.0001755984 0.2838106 -24.30731 0.0001755984 0.2838106 -32.64117 0.0001755984 0.2838106 -43.83129 0.0001755984 0.2838106 -58.85664 0.0001755984 0.2838106 --0.0175068 0.006069731 0.2838106 --0.01161267 0.006069731 0.2838106 --0.005718534 0.006069731 0.2838106 -0.0001755984 0.006069731 0.2838106 -0.006069731 0.006069731 0.2838106 -0.01197402 0.006069731 0.2838106 -0.01903886 0.006069731 0.2838106 -0.02852504 0.006069731 0.2838106 -0.04126244 0.006069731 0.2838106 -0.05836535 0.006069731 0.2838106 -0.08132997 0.006069731 0.2838106 -0.1121653 0.006069731 0.2838106 -0.1535689 0.006069731 0.2838106 -0.2091628 0.006069731 0.2838106 -0.2838106 0.006069731 0.2838106 -0.3840425 0.006069731 0.2838106 -0.518627 0.006069731 0.2838106 -0.6993381 0.006069731 0.2838106 -0.9419845 0.006069731 0.2838106 -1.267794 0.006069731 0.2838106 -1.705268 0.006069731 0.2838106 -2.292679 0.006069731 0.2838106 -3.081414 0.006069731 0.2838106 -4.140474 0.006069731 0.2838106 -5.562508 0.006069731 0.2838106 -7.471917 0.006069731 0.2838106 -10.03574 0.006069731 0.2838106 -13.47828 0.006069731 0.2838106 -18.10068 0.006069731 0.2838106 -24.30731 0.006069731 0.2838106 -32.64117 0.006069731 0.2838106 -43.83129 0.006069731 0.2838106 -58.85664 0.006069731 0.2838106 --0.0175068 0.01197402 0.2838106 --0.01161267 0.01197402 0.2838106 --0.005718534 0.01197402 0.2838106 -0.0001755984 0.01197402 0.2838106 -0.006069731 0.01197402 0.2838106 -0.01197402 0.01197402 0.2838106 -0.01903886 0.01197402 0.2838106 -0.02852504 0.01197402 0.2838106 -0.04126244 0.01197402 0.2838106 -0.05836535 0.01197402 0.2838106 -0.08132997 0.01197402 0.2838106 -0.1121653 0.01197402 0.2838106 -0.1535689 0.01197402 0.2838106 -0.2091628 0.01197402 0.2838106 -0.2838106 0.01197402 0.2838106 -0.3840425 0.01197402 0.2838106 -0.518627 0.01197402 0.2838106 -0.6993381 0.01197402 0.2838106 -0.9419845 0.01197402 0.2838106 -1.267794 0.01197402 0.2838106 -1.705268 0.01197402 0.2838106 -2.292679 0.01197402 0.2838106 -3.081414 0.01197402 0.2838106 -4.140474 0.01197402 0.2838106 -5.562508 0.01197402 0.2838106 -7.471917 0.01197402 0.2838106 -10.03574 0.01197402 0.2838106 -13.47828 0.01197402 0.2838106 -18.10068 0.01197402 0.2838106 -24.30731 0.01197402 0.2838106 -32.64117 0.01197402 0.2838106 -43.83129 0.01197402 0.2838106 -58.85664 0.01197402 0.2838106 --0.0175068 0.01903886 0.2838106 --0.01161267 0.01903886 0.2838106 --0.005718534 0.01903886 0.2838106 -0.0001755984 0.01903886 0.2838106 -0.006069731 0.01903886 0.2838106 -0.01197402 0.01903886 0.2838106 -0.01903886 0.01903886 0.2838106 -0.02852504 0.01903886 0.2838106 -0.04126244 0.01903886 0.2838106 -0.05836535 0.01903886 0.2838106 -0.08132997 0.01903886 0.2838106 -0.1121653 0.01903886 0.2838106 -0.1535689 0.01903886 0.2838106 -0.2091628 0.01903886 0.2838106 -0.2838106 0.01903886 0.2838106 -0.3840425 0.01903886 0.2838106 -0.518627 0.01903886 0.2838106 -0.6993381 0.01903886 0.2838106 -0.9419845 0.01903886 0.2838106 -1.267794 0.01903886 0.2838106 -1.705268 0.01903886 0.2838106 -2.292679 0.01903886 0.2838106 -3.081414 0.01903886 0.2838106 -4.140474 0.01903886 0.2838106 -5.562508 0.01903886 0.2838106 -7.471917 0.01903886 0.2838106 -10.03574 0.01903886 0.2838106 -13.47828 0.01903886 0.2838106 -18.10068 0.01903886 0.2838106 -24.30731 0.01903886 0.2838106 -32.64117 0.01903886 0.2838106 -43.83129 0.01903886 0.2838106 -58.85664 0.01903886 0.2838106 --0.0175068 0.02852504 0.2838106 --0.01161267 0.02852504 0.2838106 --0.005718534 0.02852504 0.2838106 -0.0001755984 0.02852504 0.2838106 -0.006069731 0.02852504 0.2838106 -0.01197402 0.02852504 0.2838106 -0.01903886 0.02852504 0.2838106 -0.02852504 0.02852504 0.2838106 -0.04126244 0.02852504 0.2838106 -0.05836535 0.02852504 0.2838106 -0.08132997 0.02852504 0.2838106 -0.1121653 0.02852504 0.2838106 -0.1535689 0.02852504 0.2838106 -0.2091628 0.02852504 0.2838106 -0.2838106 0.02852504 0.2838106 -0.3840425 0.02852504 0.2838106 -0.518627 0.02852504 0.2838106 -0.6993381 0.02852504 0.2838106 -0.9419845 0.02852504 0.2838106 -1.267794 0.02852504 0.2838106 -1.705268 0.02852504 0.2838106 -2.292679 0.02852504 0.2838106 -3.081414 0.02852504 0.2838106 -4.140474 0.02852504 0.2838106 -5.562508 0.02852504 0.2838106 -7.471917 0.02852504 0.2838106 -10.03574 0.02852504 0.2838106 -13.47828 0.02852504 0.2838106 -18.10068 0.02852504 0.2838106 -24.30731 0.02852504 0.2838106 -32.64117 0.02852504 0.2838106 -43.83129 0.02852504 0.2838106 -58.85664 0.02852504 0.2838106 --0.0175068 0.04126244 0.2838106 --0.01161267 0.04126244 0.2838106 --0.005718534 0.04126244 0.2838106 -0.0001755984 0.04126244 0.2838106 -0.006069731 0.04126244 0.2838106 -0.01197402 0.04126244 0.2838106 -0.01903886 0.04126244 0.2838106 -0.02852504 0.04126244 0.2838106 -0.04126244 0.04126244 0.2838106 -0.05836535 0.04126244 0.2838106 -0.08132997 0.04126244 0.2838106 -0.1121653 0.04126244 0.2838106 -0.1535689 0.04126244 0.2838106 -0.2091628 0.04126244 0.2838106 -0.2838106 0.04126244 0.2838106 -0.3840425 0.04126244 0.2838106 -0.518627 0.04126244 0.2838106 -0.6993381 0.04126244 0.2838106 -0.9419845 0.04126244 0.2838106 -1.267794 0.04126244 0.2838106 -1.705268 0.04126244 0.2838106 -2.292679 0.04126244 0.2838106 -3.081414 0.04126244 0.2838106 -4.140474 0.04126244 0.2838106 -5.562508 0.04126244 0.2838106 -7.471917 0.04126244 0.2838106 -10.03574 0.04126244 0.2838106 -13.47828 0.04126244 0.2838106 -18.10068 0.04126244 0.2838106 -24.30731 0.04126244 0.2838106 -32.64117 0.04126244 0.2838106 -43.83129 0.04126244 0.2838106 -58.85664 0.04126244 0.2838106 --0.0175068 0.05836535 0.2838106 --0.01161267 0.05836535 0.2838106 --0.005718534 0.05836535 0.2838106 -0.0001755984 0.05836535 0.2838106 -0.006069731 0.05836535 0.2838106 -0.01197402 0.05836535 0.2838106 -0.01903886 0.05836535 0.2838106 -0.02852504 0.05836535 0.2838106 -0.04126244 0.05836535 0.2838106 -0.05836535 0.05836535 0.2838106 -0.08132997 0.05836535 0.2838106 -0.1121653 0.05836535 0.2838106 -0.1535689 0.05836535 0.2838106 -0.2091628 0.05836535 0.2838106 -0.2838106 0.05836535 0.2838106 -0.3840425 0.05836535 0.2838106 -0.518627 0.05836535 0.2838106 -0.6993381 0.05836535 0.2838106 -0.9419845 0.05836535 0.2838106 -1.267794 0.05836535 0.2838106 -1.705268 0.05836535 0.2838106 -2.292679 0.05836535 0.2838106 -3.081414 0.05836535 0.2838106 -4.140474 0.05836535 0.2838106 -5.562508 0.05836535 0.2838106 -7.471917 0.05836535 0.2838106 -10.03574 0.05836535 0.2838106 -13.47828 0.05836535 0.2838106 -18.10068 0.05836535 0.2838106 -24.30731 0.05836535 0.2838106 -32.64117 0.05836535 0.2838106 -43.83129 0.05836535 0.2838106 -58.85664 0.05836535 0.2838106 --0.0175068 0.08132997 0.2838106 --0.01161267 0.08132997 0.2838106 --0.005718534 0.08132997 0.2838106 -0.0001755984 0.08132997 0.2838106 -0.006069731 0.08132997 0.2838106 -0.01197402 0.08132997 0.2838106 -0.01903886 0.08132997 0.2838106 -0.02852504 0.08132997 0.2838106 -0.04126244 0.08132997 0.2838106 -0.05836535 0.08132997 0.2838106 -0.08132997 0.08132997 0.2838106 -0.1121653 0.08132997 0.2838106 -0.1535689 0.08132997 0.2838106 -0.2091628 0.08132997 0.2838106 -0.2838106 0.08132997 0.2838106 -0.3840425 0.08132997 0.2838106 -0.518627 0.08132997 0.2838106 -0.6993381 0.08132997 0.2838106 -0.9419845 0.08132997 0.2838106 -1.267794 0.08132997 0.2838106 -1.705268 0.08132997 0.2838106 -2.292679 0.08132997 0.2838106 -3.081414 0.08132997 0.2838106 -4.140474 0.08132997 0.2838106 -5.562508 0.08132997 0.2838106 -7.471917 0.08132997 0.2838106 -10.03574 0.08132997 0.2838106 -13.47828 0.08132997 0.2838106 -18.10068 0.08132997 0.2838106 -24.30731 0.08132997 0.2838106 -32.64117 0.08132997 0.2838106 -43.83129 0.08132997 0.2838106 -58.85664 0.08132997 0.2838106 --0.0175068 0.1121653 0.2838106 --0.01161267 0.1121653 0.2838106 --0.005718534 0.1121653 0.2838106 -0.0001755984 0.1121653 0.2838106 -0.006069731 0.1121653 0.2838106 -0.01197402 0.1121653 0.2838106 -0.01903886 0.1121653 0.2838106 -0.02852504 0.1121653 0.2838106 -0.04126244 0.1121653 0.2838106 -0.05836535 0.1121653 0.2838106 -0.08132997 0.1121653 0.2838106 -0.1121653 0.1121653 0.2838106 -0.1535689 0.1121653 0.2838106 -0.2091628 0.1121653 0.2838106 -0.2838106 0.1121653 0.2838106 -0.3840425 0.1121653 0.2838106 -0.518627 0.1121653 0.2838106 -0.6993381 0.1121653 0.2838106 -0.9419845 0.1121653 0.2838106 -1.267794 0.1121653 0.2838106 -1.705268 0.1121653 0.2838106 -2.292679 0.1121653 0.2838106 -3.081414 0.1121653 0.2838106 -4.140474 0.1121653 0.2838106 -5.562508 0.1121653 0.2838106 -7.471917 0.1121653 0.2838106 -10.03574 0.1121653 0.2838106 -13.47828 0.1121653 0.2838106 -18.10068 0.1121653 0.2838106 -24.30731 0.1121653 0.2838106 -32.64117 0.1121653 0.2838106 -43.83129 0.1121653 0.2838106 -58.85664 0.1121653 0.2838106 --0.0175068 0.1535689 0.2838106 --0.01161267 0.1535689 0.2838106 --0.005718534 0.1535689 0.2838106 -0.0001755984 0.1535689 0.2838106 -0.006069731 0.1535689 0.2838106 -0.01197402 0.1535689 0.2838106 -0.01903886 0.1535689 0.2838106 -0.02852504 0.1535689 0.2838106 -0.04126244 0.1535689 0.2838106 -0.05836535 0.1535689 0.2838106 -0.08132997 0.1535689 0.2838106 -0.1121653 0.1535689 0.2838106 -0.1535689 0.1535689 0.2838106 -0.2091628 0.1535689 0.2838106 -0.2838106 0.1535689 0.2838106 -0.3840425 0.1535689 0.2838106 -0.518627 0.1535689 0.2838106 -0.6993381 0.1535689 0.2838106 -0.9419845 0.1535689 0.2838106 -1.267794 0.1535689 0.2838106 -1.705268 0.1535689 0.2838106 -2.292679 0.1535689 0.2838106 -3.081414 0.1535689 0.2838106 -4.140474 0.1535689 0.2838106 -5.562508 0.1535689 0.2838106 -7.471917 0.1535689 0.2838106 -10.03574 0.1535689 0.2838106 -13.47828 0.1535689 0.2838106 -18.10068 0.1535689 0.2838106 -24.30731 0.1535689 0.2838106 -32.64117 0.1535689 0.2838106 -43.83129 0.1535689 0.2838106 -58.85664 0.1535689 0.2838106 --0.0175068 0.2091628 0.2838106 --0.01161267 0.2091628 0.2838106 --0.005718534 0.2091628 0.2838106 -0.0001755984 0.2091628 0.2838106 -0.006069731 0.2091628 0.2838106 -0.01197402 0.2091628 0.2838106 -0.01903886 0.2091628 0.2838106 -0.02852504 0.2091628 0.2838106 -0.04126244 0.2091628 0.2838106 -0.05836535 0.2091628 0.2838106 -0.08132997 0.2091628 0.2838106 -0.1121653 0.2091628 0.2838106 -0.1535689 0.2091628 0.2838106 -0.2091628 0.2091628 0.2838106 -0.2838106 0.2091628 0.2838106 -0.3840425 0.2091628 0.2838106 -0.518627 0.2091628 0.2838106 -0.6993381 0.2091628 0.2838106 -0.9419845 0.2091628 0.2838106 -1.267794 0.2091628 0.2838106 -1.705268 0.2091628 0.2838106 -2.292679 0.2091628 0.2838106 -3.081414 0.2091628 0.2838106 -4.140474 0.2091628 0.2838106 -5.562508 0.2091628 0.2838106 -7.471917 0.2091628 0.2838106 -10.03574 0.2091628 0.2838106 -13.47828 0.2091628 0.2838106 -18.10068 0.2091628 0.2838106 -24.30731 0.2091628 0.2838106 -32.64117 0.2091628 0.2838106 -43.83129 0.2091628 0.2838106 -58.85664 0.2091628 0.2838106 --0.0175068 0.2838106 0.2838106 --0.01161267 0.2838106 0.2838106 --0.005718534 0.2838106 0.2838106 -0.0001755984 0.2838106 0.2838106 -0.006069731 0.2838106 0.2838106 -0.01197402 0.2838106 0.2838106 -0.01903886 0.2838106 0.2838106 -0.02852504 0.2838106 0.2838106 -0.04126244 0.2838106 0.2838106 -0.05836535 0.2838106 0.2838106 -0.08132997 0.2838106 0.2838106 -0.1121653 0.2838106 0.2838106 -0.1535689 0.2838106 0.2838106 -0.2091628 0.2838106 0.2838106 -0.2838106 0.2838106 0.2838106 -0.3840425 0.2838106 0.2838106 -0.518627 0.2838106 0.2838106 -0.6993381 0.2838106 0.2838106 -0.9419845 0.2838106 0.2838106 -1.267794 0.2838106 0.2838106 -1.705268 0.2838106 0.2838106 -2.292679 0.2838106 0.2838106 -3.081414 0.2838106 0.2838106 -4.140474 0.2838106 0.2838106 -5.562508 0.2838106 0.2838106 -7.471917 0.2838106 0.2838106 -10.03574 0.2838106 0.2838106 -13.47828 0.2838106 0.2838106 -18.10068 0.2838106 0.2838106 -24.30731 0.2838106 0.2838106 -32.64117 0.2838106 0.2838106 -43.83129 0.2838106 0.2838106 -58.85664 0.2838106 0.2838106 --0.0175068 0.3840425 0.2838106 --0.01161267 0.3840425 0.2838106 --0.005718534 0.3840425 0.2838106 -0.0001755984 0.3840425 0.2838106 -0.006069731 0.3840425 0.2838106 -0.01197402 0.3840425 0.2838106 -0.01903886 0.3840425 0.2838106 -0.02852504 0.3840425 0.2838106 -0.04126244 0.3840425 0.2838106 -0.05836535 0.3840425 0.2838106 -0.08132997 0.3840425 0.2838106 -0.1121653 0.3840425 0.2838106 -0.1535689 0.3840425 0.2838106 -0.2091628 0.3840425 0.2838106 -0.2838106 0.3840425 0.2838106 -0.3840425 0.3840425 0.2838106 -0.518627 0.3840425 0.2838106 -0.6993381 0.3840425 0.2838106 -0.9419845 0.3840425 0.2838106 -1.267794 0.3840425 0.2838106 -1.705268 0.3840425 0.2838106 -2.292679 0.3840425 0.2838106 -3.081414 0.3840425 0.2838106 -4.140474 0.3840425 0.2838106 -5.562508 0.3840425 0.2838106 -7.471917 0.3840425 0.2838106 -10.03574 0.3840425 0.2838106 -13.47828 0.3840425 0.2838106 -18.10068 0.3840425 0.2838106 -24.30731 0.3840425 0.2838106 -32.64117 0.3840425 0.2838106 -43.83129 0.3840425 0.2838106 -58.85664 0.3840425 0.2838106 --0.0175068 0.518627 0.2838106 --0.01161267 0.518627 0.2838106 --0.005718534 0.518627 0.2838106 -0.0001755984 0.518627 0.2838106 -0.006069731 0.518627 0.2838106 -0.01197402 0.518627 0.2838106 -0.01903886 0.518627 0.2838106 -0.02852504 0.518627 0.2838106 -0.04126244 0.518627 0.2838106 -0.05836535 0.518627 0.2838106 -0.08132997 0.518627 0.2838106 -0.1121653 0.518627 0.2838106 -0.1535689 0.518627 0.2838106 -0.2091628 0.518627 0.2838106 -0.2838106 0.518627 0.2838106 -0.3840425 0.518627 0.2838106 -0.518627 0.518627 0.2838106 -0.6993381 0.518627 0.2838106 -0.9419845 0.518627 0.2838106 -1.267794 0.518627 0.2838106 -1.705268 0.518627 0.2838106 -2.292679 0.518627 0.2838106 -3.081414 0.518627 0.2838106 -4.140474 0.518627 0.2838106 -5.562508 0.518627 0.2838106 -7.471917 0.518627 0.2838106 -10.03574 0.518627 0.2838106 -13.47828 0.518627 0.2838106 -18.10068 0.518627 0.2838106 -24.30731 0.518627 0.2838106 -32.64117 0.518627 0.2838106 -43.83129 0.518627 0.2838106 -58.85664 0.518627 0.2838106 --0.0175068 0.6993381 0.2838106 --0.01161267 0.6993381 0.2838106 --0.005718534 0.6993381 0.2838106 -0.0001755984 0.6993381 0.2838106 -0.006069731 0.6993381 0.2838106 -0.01197402 0.6993381 0.2838106 -0.01903886 0.6993381 0.2838106 -0.02852504 0.6993381 0.2838106 -0.04126244 0.6993381 0.2838106 -0.05836535 0.6993381 0.2838106 -0.08132997 0.6993381 0.2838106 -0.1121653 0.6993381 0.2838106 -0.1535689 0.6993381 0.2838106 -0.2091628 0.6993381 0.2838106 -0.2838106 0.6993381 0.2838106 -0.3840425 0.6993381 0.2838106 -0.518627 0.6993381 0.2838106 -0.6993381 0.6993381 0.2838106 -0.9419845 0.6993381 0.2838106 -1.267794 0.6993381 0.2838106 -1.705268 0.6993381 0.2838106 -2.292679 0.6993381 0.2838106 -3.081414 0.6993381 0.2838106 -4.140474 0.6993381 0.2838106 -5.562508 0.6993381 0.2838106 -7.471917 0.6993381 0.2838106 -10.03574 0.6993381 0.2838106 -13.47828 0.6993381 0.2838106 -18.10068 0.6993381 0.2838106 -24.30731 0.6993381 0.2838106 -32.64117 0.6993381 0.2838106 -43.83129 0.6993381 0.2838106 -58.85664 0.6993381 0.2838106 --0.0175068 0.9419845 0.2838106 --0.01161267 0.9419845 0.2838106 --0.005718534 0.9419845 0.2838106 -0.0001755984 0.9419845 0.2838106 -0.006069731 0.9419845 0.2838106 -0.01197402 0.9419845 0.2838106 -0.01903886 0.9419845 0.2838106 -0.02852504 0.9419845 0.2838106 -0.04126244 0.9419845 0.2838106 -0.05836535 0.9419845 0.2838106 -0.08132997 0.9419845 0.2838106 -0.1121653 0.9419845 0.2838106 -0.1535689 0.9419845 0.2838106 -0.2091628 0.9419845 0.2838106 -0.2838106 0.9419845 0.2838106 -0.3840425 0.9419845 0.2838106 -0.518627 0.9419845 0.2838106 -0.6993381 0.9419845 0.2838106 -0.9419845 0.9419845 0.2838106 -1.267794 0.9419845 0.2838106 -1.705268 0.9419845 0.2838106 -2.292679 0.9419845 0.2838106 -3.081414 0.9419845 0.2838106 -4.140474 0.9419845 0.2838106 -5.562508 0.9419845 0.2838106 -7.471917 0.9419845 0.2838106 -10.03574 0.9419845 0.2838106 -13.47828 0.9419845 0.2838106 -18.10068 0.9419845 0.2838106 -24.30731 0.9419845 0.2838106 -32.64117 0.9419845 0.2838106 -43.83129 0.9419845 0.2838106 -58.85664 0.9419845 0.2838106 --0.0175068 1.267794 0.2838106 --0.01161267 1.267794 0.2838106 --0.005718534 1.267794 0.2838106 -0.0001755984 1.267794 0.2838106 -0.006069731 1.267794 0.2838106 -0.01197402 1.267794 0.2838106 -0.01903886 1.267794 0.2838106 -0.02852504 1.267794 0.2838106 -0.04126244 1.267794 0.2838106 -0.05836535 1.267794 0.2838106 -0.08132997 1.267794 0.2838106 -0.1121653 1.267794 0.2838106 -0.1535689 1.267794 0.2838106 -0.2091628 1.267794 0.2838106 -0.2838106 1.267794 0.2838106 -0.3840425 1.267794 0.2838106 -0.518627 1.267794 0.2838106 -0.6993381 1.267794 0.2838106 -0.9419845 1.267794 0.2838106 -1.267794 1.267794 0.2838106 -1.705268 1.267794 0.2838106 -2.292679 1.267794 0.2838106 -3.081414 1.267794 0.2838106 -4.140474 1.267794 0.2838106 -5.562508 1.267794 0.2838106 -7.471917 1.267794 0.2838106 -10.03574 1.267794 0.2838106 -13.47828 1.267794 0.2838106 -18.10068 1.267794 0.2838106 -24.30731 1.267794 0.2838106 -32.64117 1.267794 0.2838106 -43.83129 1.267794 0.2838106 -58.85664 1.267794 0.2838106 --0.0175068 1.705268 0.2838106 --0.01161267 1.705268 0.2838106 --0.005718534 1.705268 0.2838106 -0.0001755984 1.705268 0.2838106 -0.006069731 1.705268 0.2838106 -0.01197402 1.705268 0.2838106 -0.01903886 1.705268 0.2838106 -0.02852504 1.705268 0.2838106 -0.04126244 1.705268 0.2838106 -0.05836535 1.705268 0.2838106 -0.08132997 1.705268 0.2838106 -0.1121653 1.705268 0.2838106 -0.1535689 1.705268 0.2838106 -0.2091628 1.705268 0.2838106 -0.2838106 1.705268 0.2838106 -0.3840425 1.705268 0.2838106 -0.518627 1.705268 0.2838106 -0.6993381 1.705268 0.2838106 -0.9419845 1.705268 0.2838106 -1.267794 1.705268 0.2838106 -1.705268 1.705268 0.2838106 -2.292679 1.705268 0.2838106 -3.081414 1.705268 0.2838106 -4.140474 1.705268 0.2838106 -5.562508 1.705268 0.2838106 -7.471917 1.705268 0.2838106 -10.03574 1.705268 0.2838106 -13.47828 1.705268 0.2838106 -18.10068 1.705268 0.2838106 -24.30731 1.705268 0.2838106 -32.64117 1.705268 0.2838106 -43.83129 1.705268 0.2838106 -58.85664 1.705268 0.2838106 --0.0175068 2.292679 0.2838106 --0.01161267 2.292679 0.2838106 --0.005718534 2.292679 0.2838106 -0.0001755984 2.292679 0.2838106 -0.006069731 2.292679 0.2838106 -0.01197402 2.292679 0.2838106 -0.01903886 2.292679 0.2838106 -0.02852504 2.292679 0.2838106 -0.04126244 2.292679 0.2838106 -0.05836535 2.292679 0.2838106 -0.08132997 2.292679 0.2838106 -0.1121653 2.292679 0.2838106 -0.1535689 2.292679 0.2838106 -0.2091628 2.292679 0.2838106 -0.2838106 2.292679 0.2838106 -0.3840425 2.292679 0.2838106 -0.518627 2.292679 0.2838106 -0.6993381 2.292679 0.2838106 -0.9419845 2.292679 0.2838106 -1.267794 2.292679 0.2838106 -1.705268 2.292679 0.2838106 -2.292679 2.292679 0.2838106 -3.081414 2.292679 0.2838106 -4.140474 2.292679 0.2838106 -5.562508 2.292679 0.2838106 -7.471917 2.292679 0.2838106 -10.03574 2.292679 0.2838106 -13.47828 2.292679 0.2838106 -18.10068 2.292679 0.2838106 -24.30731 2.292679 0.2838106 -32.64117 2.292679 0.2838106 -43.83129 2.292679 0.2838106 -58.85664 2.292679 0.2838106 --0.0175068 3.081414 0.2838106 --0.01161267 3.081414 0.2838106 --0.005718534 3.081414 0.2838106 -0.0001755984 3.081414 0.2838106 -0.006069731 3.081414 0.2838106 -0.01197402 3.081414 0.2838106 -0.01903886 3.081414 0.2838106 -0.02852504 3.081414 0.2838106 -0.04126244 3.081414 0.2838106 -0.05836535 3.081414 0.2838106 -0.08132997 3.081414 0.2838106 -0.1121653 3.081414 0.2838106 -0.1535689 3.081414 0.2838106 -0.2091628 3.081414 0.2838106 -0.2838106 3.081414 0.2838106 -0.3840425 3.081414 0.2838106 -0.518627 3.081414 0.2838106 -0.6993381 3.081414 0.2838106 -0.9419845 3.081414 0.2838106 -1.267794 3.081414 0.2838106 -1.705268 3.081414 0.2838106 -2.292679 3.081414 0.2838106 -3.081414 3.081414 0.2838106 -4.140474 3.081414 0.2838106 -5.562508 3.081414 0.2838106 -7.471917 3.081414 0.2838106 -10.03574 3.081414 0.2838106 -13.47828 3.081414 0.2838106 -18.10068 3.081414 0.2838106 -24.30731 3.081414 0.2838106 -32.64117 3.081414 0.2838106 -43.83129 3.081414 0.2838106 -58.85664 3.081414 0.2838106 --0.0175068 4.140474 0.2838106 --0.01161267 4.140474 0.2838106 --0.005718534 4.140474 0.2838106 -0.0001755984 4.140474 0.2838106 -0.006069731 4.140474 0.2838106 -0.01197402 4.140474 0.2838106 -0.01903886 4.140474 0.2838106 -0.02852504 4.140474 0.2838106 -0.04126244 4.140474 0.2838106 -0.05836535 4.140474 0.2838106 -0.08132997 4.140474 0.2838106 -0.1121653 4.140474 0.2838106 -0.1535689 4.140474 0.2838106 -0.2091628 4.140474 0.2838106 -0.2838106 4.140474 0.2838106 -0.3840425 4.140474 0.2838106 -0.518627 4.140474 0.2838106 -0.6993381 4.140474 0.2838106 -0.9419845 4.140474 0.2838106 -1.267794 4.140474 0.2838106 -1.705268 4.140474 0.2838106 -2.292679 4.140474 0.2838106 -3.081414 4.140474 0.2838106 -4.140474 4.140474 0.2838106 -5.562508 4.140474 0.2838106 -7.471917 4.140474 0.2838106 -10.03574 4.140474 0.2838106 -13.47828 4.140474 0.2838106 -18.10068 4.140474 0.2838106 -24.30731 4.140474 0.2838106 -32.64117 4.140474 0.2838106 -43.83129 4.140474 0.2838106 -58.85664 4.140474 0.2838106 --0.0175068 5.562508 0.2838106 --0.01161267 5.562508 0.2838106 --0.005718534 5.562508 0.2838106 -0.0001755984 5.562508 0.2838106 -0.006069731 5.562508 0.2838106 -0.01197402 5.562508 0.2838106 -0.01903886 5.562508 0.2838106 -0.02852504 5.562508 0.2838106 -0.04126244 5.562508 0.2838106 -0.05836535 5.562508 0.2838106 -0.08132997 5.562508 0.2838106 -0.1121653 5.562508 0.2838106 -0.1535689 5.562508 0.2838106 -0.2091628 5.562508 0.2838106 -0.2838106 5.562508 0.2838106 -0.3840425 5.562508 0.2838106 -0.518627 5.562508 0.2838106 -0.6993381 5.562508 0.2838106 -0.9419845 5.562508 0.2838106 -1.267794 5.562508 0.2838106 -1.705268 5.562508 0.2838106 -2.292679 5.562508 0.2838106 -3.081414 5.562508 0.2838106 -4.140474 5.562508 0.2838106 -5.562508 5.562508 0.2838106 -7.471917 5.562508 0.2838106 -10.03574 5.562508 0.2838106 -13.47828 5.562508 0.2838106 -18.10068 5.562508 0.2838106 -24.30731 5.562508 0.2838106 -32.64117 5.562508 0.2838106 -43.83129 5.562508 0.2838106 -58.85664 5.562508 0.2838106 --0.0175068 7.471917 0.2838106 --0.01161267 7.471917 0.2838106 --0.005718534 7.471917 0.2838106 -0.0001755984 7.471917 0.2838106 -0.006069731 7.471917 0.2838106 -0.01197402 7.471917 0.2838106 -0.01903886 7.471917 0.2838106 -0.02852504 7.471917 0.2838106 -0.04126244 7.471917 0.2838106 -0.05836535 7.471917 0.2838106 -0.08132997 7.471917 0.2838106 -0.1121653 7.471917 0.2838106 -0.1535689 7.471917 0.2838106 -0.2091628 7.471917 0.2838106 -0.2838106 7.471917 0.2838106 -0.3840425 7.471917 0.2838106 -0.518627 7.471917 0.2838106 -0.6993381 7.471917 0.2838106 -0.9419845 7.471917 0.2838106 -1.267794 7.471917 0.2838106 -1.705268 7.471917 0.2838106 -2.292679 7.471917 0.2838106 -3.081414 7.471917 0.2838106 -4.140474 7.471917 0.2838106 -5.562508 7.471917 0.2838106 -7.471917 7.471917 0.2838106 -10.03574 7.471917 0.2838106 -13.47828 7.471917 0.2838106 -18.10068 7.471917 0.2838106 -24.30731 7.471917 0.2838106 -32.64117 7.471917 0.2838106 -43.83129 7.471917 0.2838106 -58.85664 7.471917 0.2838106 --0.0175068 10.03574 0.2838106 --0.01161267 10.03574 0.2838106 --0.005718534 10.03574 0.2838106 -0.0001755984 10.03574 0.2838106 -0.006069731 10.03574 0.2838106 -0.01197402 10.03574 0.2838106 -0.01903886 10.03574 0.2838106 -0.02852504 10.03574 0.2838106 -0.04126244 10.03574 0.2838106 -0.05836535 10.03574 0.2838106 -0.08132997 10.03574 0.2838106 -0.1121653 10.03574 0.2838106 -0.1535689 10.03574 0.2838106 -0.2091628 10.03574 0.2838106 -0.2838106 10.03574 0.2838106 -0.3840425 10.03574 0.2838106 -0.518627 10.03574 0.2838106 -0.6993381 10.03574 0.2838106 -0.9419845 10.03574 0.2838106 -1.267794 10.03574 0.2838106 -1.705268 10.03574 0.2838106 -2.292679 10.03574 0.2838106 -3.081414 10.03574 0.2838106 -4.140474 10.03574 0.2838106 -5.562508 10.03574 0.2838106 -7.471917 10.03574 0.2838106 -10.03574 10.03574 0.2838106 -13.47828 10.03574 0.2838106 -18.10068 10.03574 0.2838106 -24.30731 10.03574 0.2838106 -32.64117 10.03574 0.2838106 -43.83129 10.03574 0.2838106 -58.85664 10.03574 0.2838106 --0.0175068 13.47828 0.2838106 --0.01161267 13.47828 0.2838106 --0.005718534 13.47828 0.2838106 -0.0001755984 13.47828 0.2838106 -0.006069731 13.47828 0.2838106 -0.01197402 13.47828 0.2838106 -0.01903886 13.47828 0.2838106 -0.02852504 13.47828 0.2838106 -0.04126244 13.47828 0.2838106 -0.05836535 13.47828 0.2838106 -0.08132997 13.47828 0.2838106 -0.1121653 13.47828 0.2838106 -0.1535689 13.47828 0.2838106 -0.2091628 13.47828 0.2838106 -0.2838106 13.47828 0.2838106 -0.3840425 13.47828 0.2838106 -0.518627 13.47828 0.2838106 -0.6993381 13.47828 0.2838106 -0.9419845 13.47828 0.2838106 -1.267794 13.47828 0.2838106 -1.705268 13.47828 0.2838106 -2.292679 13.47828 0.2838106 -3.081414 13.47828 0.2838106 -4.140474 13.47828 0.2838106 -5.562508 13.47828 0.2838106 -7.471917 13.47828 0.2838106 -10.03574 13.47828 0.2838106 -13.47828 13.47828 0.2838106 -18.10068 13.47828 0.2838106 -24.30731 13.47828 0.2838106 -32.64117 13.47828 0.2838106 -43.83129 13.47828 0.2838106 -58.85664 13.47828 0.2838106 --0.0175068 18.10068 0.2838106 --0.01161267 18.10068 0.2838106 --0.005718534 18.10068 0.2838106 -0.0001755984 18.10068 0.2838106 -0.006069731 18.10068 0.2838106 -0.01197402 18.10068 0.2838106 -0.01903886 18.10068 0.2838106 -0.02852504 18.10068 0.2838106 -0.04126244 18.10068 0.2838106 -0.05836535 18.10068 0.2838106 -0.08132997 18.10068 0.2838106 -0.1121653 18.10068 0.2838106 -0.1535689 18.10068 0.2838106 -0.2091628 18.10068 0.2838106 -0.2838106 18.10068 0.2838106 -0.3840425 18.10068 0.2838106 -0.518627 18.10068 0.2838106 -0.6993381 18.10068 0.2838106 -0.9419845 18.10068 0.2838106 -1.267794 18.10068 0.2838106 -1.705268 18.10068 0.2838106 -2.292679 18.10068 0.2838106 -3.081414 18.10068 0.2838106 -4.140474 18.10068 0.2838106 -5.562508 18.10068 0.2838106 -7.471917 18.10068 0.2838106 -10.03574 18.10068 0.2838106 -13.47828 18.10068 0.2838106 -18.10068 18.10068 0.2838106 -24.30731 18.10068 0.2838106 -32.64117 18.10068 0.2838106 -43.83129 18.10068 0.2838106 -58.85664 18.10068 0.2838106 --0.0175068 24.30731 0.2838106 --0.01161267 24.30731 0.2838106 --0.005718534 24.30731 0.2838106 -0.0001755984 24.30731 0.2838106 -0.006069731 24.30731 0.2838106 -0.01197402 24.30731 0.2838106 -0.01903886 24.30731 0.2838106 -0.02852504 24.30731 0.2838106 -0.04126244 24.30731 0.2838106 -0.05836535 24.30731 0.2838106 -0.08132997 24.30731 0.2838106 -0.1121653 24.30731 0.2838106 -0.1535689 24.30731 0.2838106 -0.2091628 24.30731 0.2838106 -0.2838106 24.30731 0.2838106 -0.3840425 24.30731 0.2838106 -0.518627 24.30731 0.2838106 -0.6993381 24.30731 0.2838106 -0.9419845 24.30731 0.2838106 -1.267794 24.30731 0.2838106 -1.705268 24.30731 0.2838106 -2.292679 24.30731 0.2838106 -3.081414 24.30731 0.2838106 -4.140474 24.30731 0.2838106 -5.562508 24.30731 0.2838106 -7.471917 24.30731 0.2838106 -10.03574 24.30731 0.2838106 -13.47828 24.30731 0.2838106 -18.10068 24.30731 0.2838106 -24.30731 24.30731 0.2838106 -32.64117 24.30731 0.2838106 -43.83129 24.30731 0.2838106 -58.85664 24.30731 0.2838106 --0.0175068 32.64117 0.2838106 --0.01161267 32.64117 0.2838106 --0.005718534 32.64117 0.2838106 -0.0001755984 32.64117 0.2838106 -0.006069731 32.64117 0.2838106 -0.01197402 32.64117 0.2838106 -0.01903886 32.64117 0.2838106 -0.02852504 32.64117 0.2838106 -0.04126244 32.64117 0.2838106 -0.05836535 32.64117 0.2838106 -0.08132997 32.64117 0.2838106 -0.1121653 32.64117 0.2838106 -0.1535689 32.64117 0.2838106 -0.2091628 32.64117 0.2838106 -0.2838106 32.64117 0.2838106 -0.3840425 32.64117 0.2838106 -0.518627 32.64117 0.2838106 -0.6993381 32.64117 0.2838106 -0.9419845 32.64117 0.2838106 -1.267794 32.64117 0.2838106 -1.705268 32.64117 0.2838106 -2.292679 32.64117 0.2838106 -3.081414 32.64117 0.2838106 -4.140474 32.64117 0.2838106 -5.562508 32.64117 0.2838106 -7.471917 32.64117 0.2838106 -10.03574 32.64117 0.2838106 -13.47828 32.64117 0.2838106 -18.10068 32.64117 0.2838106 -24.30731 32.64117 0.2838106 -32.64117 32.64117 0.2838106 -43.83129 32.64117 0.2838106 -58.85664 32.64117 0.2838106 --0.0175068 43.83129 0.2838106 --0.01161267 43.83129 0.2838106 --0.005718534 43.83129 0.2838106 -0.0001755984 43.83129 0.2838106 -0.006069731 43.83129 0.2838106 -0.01197402 43.83129 0.2838106 -0.01903886 43.83129 0.2838106 -0.02852504 43.83129 0.2838106 -0.04126244 43.83129 0.2838106 -0.05836535 43.83129 0.2838106 -0.08132997 43.83129 0.2838106 -0.1121653 43.83129 0.2838106 -0.1535689 43.83129 0.2838106 -0.2091628 43.83129 0.2838106 -0.2838106 43.83129 0.2838106 -0.3840425 43.83129 0.2838106 -0.518627 43.83129 0.2838106 -0.6993381 43.83129 0.2838106 -0.9419845 43.83129 0.2838106 -1.267794 43.83129 0.2838106 -1.705268 43.83129 0.2838106 -2.292679 43.83129 0.2838106 -3.081414 43.83129 0.2838106 -4.140474 43.83129 0.2838106 -5.562508 43.83129 0.2838106 -7.471917 43.83129 0.2838106 -10.03574 43.83129 0.2838106 -13.47828 43.83129 0.2838106 -18.10068 43.83129 0.2838106 -24.30731 43.83129 0.2838106 -32.64117 43.83129 0.2838106 -43.83129 43.83129 0.2838106 -58.85664 43.83129 0.2838106 --0.0175068 58.85664 0.2838106 --0.01161267 58.85664 0.2838106 --0.005718534 58.85664 0.2838106 -0.0001755984 58.85664 0.2838106 -0.006069731 58.85664 0.2838106 -0.01197402 58.85664 0.2838106 -0.01903886 58.85664 0.2838106 -0.02852504 58.85664 0.2838106 -0.04126244 58.85664 0.2838106 -0.05836535 58.85664 0.2838106 -0.08132997 58.85664 0.2838106 -0.1121653 58.85664 0.2838106 -0.1535689 58.85664 0.2838106 -0.2091628 58.85664 0.2838106 -0.2838106 58.85664 0.2838106 -0.3840425 58.85664 0.2838106 -0.518627 58.85664 0.2838106 -0.6993381 58.85664 0.2838106 -0.9419845 58.85664 0.2838106 -1.267794 58.85664 0.2838106 -1.705268 58.85664 0.2838106 -2.292679 58.85664 0.2838106 -3.081414 58.85664 0.2838106 -4.140474 58.85664 0.2838106 -5.562508 58.85664 0.2838106 -7.471917 58.85664 0.2838106 -10.03574 58.85664 0.2838106 -13.47828 58.85664 0.2838106 -18.10068 58.85664 0.2838106 -24.30731 58.85664 0.2838106 -32.64117 58.85664 0.2838106 -43.83129 58.85664 0.2838106 -58.85664 58.85664 0.2838106 --0.0175068 -0.0175068 0.3840425 --0.01161267 -0.0175068 0.3840425 --0.005718534 -0.0175068 0.3840425 -0.0001755984 -0.0175068 0.3840425 -0.006069731 -0.0175068 0.3840425 -0.01197402 -0.0175068 0.3840425 -0.01903886 -0.0175068 0.3840425 -0.02852504 -0.0175068 0.3840425 -0.04126244 -0.0175068 0.3840425 -0.05836535 -0.0175068 0.3840425 -0.08132997 -0.0175068 0.3840425 -0.1121653 -0.0175068 0.3840425 -0.1535689 -0.0175068 0.3840425 -0.2091628 -0.0175068 0.3840425 -0.2838106 -0.0175068 0.3840425 -0.3840425 -0.0175068 0.3840425 -0.518627 -0.0175068 0.3840425 -0.6993381 -0.0175068 0.3840425 -0.9419845 -0.0175068 0.3840425 -1.267794 -0.0175068 0.3840425 -1.705268 -0.0175068 0.3840425 -2.292679 -0.0175068 0.3840425 -3.081414 -0.0175068 0.3840425 -4.140474 -0.0175068 0.3840425 -5.562508 -0.0175068 0.3840425 -7.471917 -0.0175068 0.3840425 -10.03574 -0.0175068 0.3840425 -13.47828 -0.0175068 0.3840425 -18.10068 -0.0175068 0.3840425 -24.30731 -0.0175068 0.3840425 -32.64117 -0.0175068 0.3840425 -43.83129 -0.0175068 0.3840425 -58.85664 -0.0175068 0.3840425 --0.0175068 -0.01161267 0.3840425 --0.01161267 -0.01161267 0.3840425 --0.005718534 -0.01161267 0.3840425 -0.0001755984 -0.01161267 0.3840425 -0.006069731 -0.01161267 0.3840425 -0.01197402 -0.01161267 0.3840425 -0.01903886 -0.01161267 0.3840425 -0.02852504 -0.01161267 0.3840425 -0.04126244 -0.01161267 0.3840425 -0.05836535 -0.01161267 0.3840425 -0.08132997 -0.01161267 0.3840425 -0.1121653 -0.01161267 0.3840425 -0.1535689 -0.01161267 0.3840425 -0.2091628 -0.01161267 0.3840425 -0.2838106 -0.01161267 0.3840425 -0.3840425 -0.01161267 0.3840425 -0.518627 -0.01161267 0.3840425 -0.6993381 -0.01161267 0.3840425 -0.9419845 -0.01161267 0.3840425 -1.267794 -0.01161267 0.3840425 -1.705268 -0.01161267 0.3840425 -2.292679 -0.01161267 0.3840425 -3.081414 -0.01161267 0.3840425 -4.140474 -0.01161267 0.3840425 -5.562508 -0.01161267 0.3840425 -7.471917 -0.01161267 0.3840425 -10.03574 -0.01161267 0.3840425 -13.47828 -0.01161267 0.3840425 -18.10068 -0.01161267 0.3840425 -24.30731 -0.01161267 0.3840425 -32.64117 -0.01161267 0.3840425 -43.83129 -0.01161267 0.3840425 -58.85664 -0.01161267 0.3840425 --0.0175068 -0.005718534 0.3840425 --0.01161267 -0.005718534 0.3840425 --0.005718534 -0.005718534 0.3840425 -0.0001755984 -0.005718534 0.3840425 -0.006069731 -0.005718534 0.3840425 -0.01197402 -0.005718534 0.3840425 -0.01903886 -0.005718534 0.3840425 -0.02852504 -0.005718534 0.3840425 -0.04126244 -0.005718534 0.3840425 -0.05836535 -0.005718534 0.3840425 -0.08132997 -0.005718534 0.3840425 -0.1121653 -0.005718534 0.3840425 -0.1535689 -0.005718534 0.3840425 -0.2091628 -0.005718534 0.3840425 -0.2838106 -0.005718534 0.3840425 -0.3840425 -0.005718534 0.3840425 -0.518627 -0.005718534 0.3840425 -0.6993381 -0.005718534 0.3840425 -0.9419845 -0.005718534 0.3840425 -1.267794 -0.005718534 0.3840425 -1.705268 -0.005718534 0.3840425 -2.292679 -0.005718534 0.3840425 -3.081414 -0.005718534 0.3840425 -4.140474 -0.005718534 0.3840425 -5.562508 -0.005718534 0.3840425 -7.471917 -0.005718534 0.3840425 -10.03574 -0.005718534 0.3840425 -13.47828 -0.005718534 0.3840425 -18.10068 -0.005718534 0.3840425 -24.30731 -0.005718534 0.3840425 -32.64117 -0.005718534 0.3840425 -43.83129 -0.005718534 0.3840425 -58.85664 -0.005718534 0.3840425 --0.0175068 0.0001755984 0.3840425 --0.01161267 0.0001755984 0.3840425 --0.005718534 0.0001755984 0.3840425 -0.0001755984 0.0001755984 0.3840425 -0.006069731 0.0001755984 0.3840425 -0.01197402 0.0001755984 0.3840425 -0.01903886 0.0001755984 0.3840425 -0.02852504 0.0001755984 0.3840425 -0.04126244 0.0001755984 0.3840425 -0.05836535 0.0001755984 0.3840425 -0.08132997 0.0001755984 0.3840425 -0.1121653 0.0001755984 0.3840425 -0.1535689 0.0001755984 0.3840425 -0.2091628 0.0001755984 0.3840425 -0.2838106 0.0001755984 0.3840425 -0.3840425 0.0001755984 0.3840425 -0.518627 0.0001755984 0.3840425 -0.6993381 0.0001755984 0.3840425 -0.9419845 0.0001755984 0.3840425 -1.267794 0.0001755984 0.3840425 -1.705268 0.0001755984 0.3840425 -2.292679 0.0001755984 0.3840425 -3.081414 0.0001755984 0.3840425 -4.140474 0.0001755984 0.3840425 -5.562508 0.0001755984 0.3840425 -7.471917 0.0001755984 0.3840425 -10.03574 0.0001755984 0.3840425 -13.47828 0.0001755984 0.3840425 -18.10068 0.0001755984 0.3840425 -24.30731 0.0001755984 0.3840425 -32.64117 0.0001755984 0.3840425 -43.83129 0.0001755984 0.3840425 -58.85664 0.0001755984 0.3840425 --0.0175068 0.006069731 0.3840425 --0.01161267 0.006069731 0.3840425 --0.005718534 0.006069731 0.3840425 -0.0001755984 0.006069731 0.3840425 -0.006069731 0.006069731 0.3840425 -0.01197402 0.006069731 0.3840425 -0.01903886 0.006069731 0.3840425 -0.02852504 0.006069731 0.3840425 -0.04126244 0.006069731 0.3840425 -0.05836535 0.006069731 0.3840425 -0.08132997 0.006069731 0.3840425 -0.1121653 0.006069731 0.3840425 -0.1535689 0.006069731 0.3840425 -0.2091628 0.006069731 0.3840425 -0.2838106 0.006069731 0.3840425 -0.3840425 0.006069731 0.3840425 -0.518627 0.006069731 0.3840425 -0.6993381 0.006069731 0.3840425 -0.9419845 0.006069731 0.3840425 -1.267794 0.006069731 0.3840425 -1.705268 0.006069731 0.3840425 -2.292679 0.006069731 0.3840425 -3.081414 0.006069731 0.3840425 -4.140474 0.006069731 0.3840425 -5.562508 0.006069731 0.3840425 -7.471917 0.006069731 0.3840425 -10.03574 0.006069731 0.3840425 -13.47828 0.006069731 0.3840425 -18.10068 0.006069731 0.3840425 -24.30731 0.006069731 0.3840425 -32.64117 0.006069731 0.3840425 -43.83129 0.006069731 0.3840425 -58.85664 0.006069731 0.3840425 --0.0175068 0.01197402 0.3840425 --0.01161267 0.01197402 0.3840425 --0.005718534 0.01197402 0.3840425 -0.0001755984 0.01197402 0.3840425 -0.006069731 0.01197402 0.3840425 -0.01197402 0.01197402 0.3840425 -0.01903886 0.01197402 0.3840425 -0.02852504 0.01197402 0.3840425 -0.04126244 0.01197402 0.3840425 -0.05836535 0.01197402 0.3840425 -0.08132997 0.01197402 0.3840425 -0.1121653 0.01197402 0.3840425 -0.1535689 0.01197402 0.3840425 -0.2091628 0.01197402 0.3840425 -0.2838106 0.01197402 0.3840425 -0.3840425 0.01197402 0.3840425 -0.518627 0.01197402 0.3840425 -0.6993381 0.01197402 0.3840425 -0.9419845 0.01197402 0.3840425 -1.267794 0.01197402 0.3840425 -1.705268 0.01197402 0.3840425 -2.292679 0.01197402 0.3840425 -3.081414 0.01197402 0.3840425 -4.140474 0.01197402 0.3840425 -5.562508 0.01197402 0.3840425 -7.471917 0.01197402 0.3840425 -10.03574 0.01197402 0.3840425 -13.47828 0.01197402 0.3840425 -18.10068 0.01197402 0.3840425 -24.30731 0.01197402 0.3840425 -32.64117 0.01197402 0.3840425 -43.83129 0.01197402 0.3840425 -58.85664 0.01197402 0.3840425 --0.0175068 0.01903886 0.3840425 --0.01161267 0.01903886 0.3840425 --0.005718534 0.01903886 0.3840425 -0.0001755984 0.01903886 0.3840425 -0.006069731 0.01903886 0.3840425 -0.01197402 0.01903886 0.3840425 -0.01903886 0.01903886 0.3840425 -0.02852504 0.01903886 0.3840425 -0.04126244 0.01903886 0.3840425 -0.05836535 0.01903886 0.3840425 -0.08132997 0.01903886 0.3840425 -0.1121653 0.01903886 0.3840425 -0.1535689 0.01903886 0.3840425 -0.2091628 0.01903886 0.3840425 -0.2838106 0.01903886 0.3840425 -0.3840425 0.01903886 0.3840425 -0.518627 0.01903886 0.3840425 -0.6993381 0.01903886 0.3840425 -0.9419845 0.01903886 0.3840425 -1.267794 0.01903886 0.3840425 -1.705268 0.01903886 0.3840425 -2.292679 0.01903886 0.3840425 -3.081414 0.01903886 0.3840425 -4.140474 0.01903886 0.3840425 -5.562508 0.01903886 0.3840425 -7.471917 0.01903886 0.3840425 -10.03574 0.01903886 0.3840425 -13.47828 0.01903886 0.3840425 -18.10068 0.01903886 0.3840425 -24.30731 0.01903886 0.3840425 -32.64117 0.01903886 0.3840425 -43.83129 0.01903886 0.3840425 -58.85664 0.01903886 0.3840425 --0.0175068 0.02852504 0.3840425 --0.01161267 0.02852504 0.3840425 --0.005718534 0.02852504 0.3840425 -0.0001755984 0.02852504 0.3840425 -0.006069731 0.02852504 0.3840425 -0.01197402 0.02852504 0.3840425 -0.01903886 0.02852504 0.3840425 -0.02852504 0.02852504 0.3840425 -0.04126244 0.02852504 0.3840425 -0.05836535 0.02852504 0.3840425 -0.08132997 0.02852504 0.3840425 -0.1121653 0.02852504 0.3840425 -0.1535689 0.02852504 0.3840425 -0.2091628 0.02852504 0.3840425 -0.2838106 0.02852504 0.3840425 -0.3840425 0.02852504 0.3840425 -0.518627 0.02852504 0.3840425 -0.6993381 0.02852504 0.3840425 -0.9419845 0.02852504 0.3840425 -1.267794 0.02852504 0.3840425 -1.705268 0.02852504 0.3840425 -2.292679 0.02852504 0.3840425 -3.081414 0.02852504 0.3840425 -4.140474 0.02852504 0.3840425 -5.562508 0.02852504 0.3840425 -7.471917 0.02852504 0.3840425 -10.03574 0.02852504 0.3840425 -13.47828 0.02852504 0.3840425 -18.10068 0.02852504 0.3840425 -24.30731 0.02852504 0.3840425 -32.64117 0.02852504 0.3840425 -43.83129 0.02852504 0.3840425 -58.85664 0.02852504 0.3840425 --0.0175068 0.04126244 0.3840425 --0.01161267 0.04126244 0.3840425 --0.005718534 0.04126244 0.3840425 -0.0001755984 0.04126244 0.3840425 -0.006069731 0.04126244 0.3840425 -0.01197402 0.04126244 0.3840425 -0.01903886 0.04126244 0.3840425 -0.02852504 0.04126244 0.3840425 -0.04126244 0.04126244 0.3840425 -0.05836535 0.04126244 0.3840425 -0.08132997 0.04126244 0.3840425 -0.1121653 0.04126244 0.3840425 -0.1535689 0.04126244 0.3840425 -0.2091628 0.04126244 0.3840425 -0.2838106 0.04126244 0.3840425 -0.3840425 0.04126244 0.3840425 -0.518627 0.04126244 0.3840425 -0.6993381 0.04126244 0.3840425 -0.9419845 0.04126244 0.3840425 -1.267794 0.04126244 0.3840425 -1.705268 0.04126244 0.3840425 -2.292679 0.04126244 0.3840425 -3.081414 0.04126244 0.3840425 -4.140474 0.04126244 0.3840425 -5.562508 0.04126244 0.3840425 -7.471917 0.04126244 0.3840425 -10.03574 0.04126244 0.3840425 -13.47828 0.04126244 0.3840425 -18.10068 0.04126244 0.3840425 -24.30731 0.04126244 0.3840425 -32.64117 0.04126244 0.3840425 -43.83129 0.04126244 0.3840425 -58.85664 0.04126244 0.3840425 --0.0175068 0.05836535 0.3840425 --0.01161267 0.05836535 0.3840425 --0.005718534 0.05836535 0.3840425 -0.0001755984 0.05836535 0.3840425 -0.006069731 0.05836535 0.3840425 -0.01197402 0.05836535 0.3840425 -0.01903886 0.05836535 0.3840425 -0.02852504 0.05836535 0.3840425 -0.04126244 0.05836535 0.3840425 -0.05836535 0.05836535 0.3840425 -0.08132997 0.05836535 0.3840425 -0.1121653 0.05836535 0.3840425 -0.1535689 0.05836535 0.3840425 -0.2091628 0.05836535 0.3840425 -0.2838106 0.05836535 0.3840425 -0.3840425 0.05836535 0.3840425 -0.518627 0.05836535 0.3840425 -0.6993381 0.05836535 0.3840425 -0.9419845 0.05836535 0.3840425 -1.267794 0.05836535 0.3840425 -1.705268 0.05836535 0.3840425 -2.292679 0.05836535 0.3840425 -3.081414 0.05836535 0.3840425 -4.140474 0.05836535 0.3840425 -5.562508 0.05836535 0.3840425 -7.471917 0.05836535 0.3840425 -10.03574 0.05836535 0.3840425 -13.47828 0.05836535 0.3840425 -18.10068 0.05836535 0.3840425 -24.30731 0.05836535 0.3840425 -32.64117 0.05836535 0.3840425 -43.83129 0.05836535 0.3840425 -58.85664 0.05836535 0.3840425 --0.0175068 0.08132997 0.3840425 --0.01161267 0.08132997 0.3840425 --0.005718534 0.08132997 0.3840425 -0.0001755984 0.08132997 0.3840425 -0.006069731 0.08132997 0.3840425 -0.01197402 0.08132997 0.3840425 -0.01903886 0.08132997 0.3840425 -0.02852504 0.08132997 0.3840425 -0.04126244 0.08132997 0.3840425 -0.05836535 0.08132997 0.3840425 -0.08132997 0.08132997 0.3840425 -0.1121653 0.08132997 0.3840425 -0.1535689 0.08132997 0.3840425 -0.2091628 0.08132997 0.3840425 -0.2838106 0.08132997 0.3840425 -0.3840425 0.08132997 0.3840425 -0.518627 0.08132997 0.3840425 -0.6993381 0.08132997 0.3840425 -0.9419845 0.08132997 0.3840425 -1.267794 0.08132997 0.3840425 -1.705268 0.08132997 0.3840425 -2.292679 0.08132997 0.3840425 -3.081414 0.08132997 0.3840425 -4.140474 0.08132997 0.3840425 -5.562508 0.08132997 0.3840425 -7.471917 0.08132997 0.3840425 -10.03574 0.08132997 0.3840425 -13.47828 0.08132997 0.3840425 -18.10068 0.08132997 0.3840425 -24.30731 0.08132997 0.3840425 -32.64117 0.08132997 0.3840425 -43.83129 0.08132997 0.3840425 -58.85664 0.08132997 0.3840425 --0.0175068 0.1121653 0.3840425 --0.01161267 0.1121653 0.3840425 --0.005718534 0.1121653 0.3840425 -0.0001755984 0.1121653 0.3840425 -0.006069731 0.1121653 0.3840425 -0.01197402 0.1121653 0.3840425 -0.01903886 0.1121653 0.3840425 -0.02852504 0.1121653 0.3840425 -0.04126244 0.1121653 0.3840425 -0.05836535 0.1121653 0.3840425 -0.08132997 0.1121653 0.3840425 -0.1121653 0.1121653 0.3840425 -0.1535689 0.1121653 0.3840425 -0.2091628 0.1121653 0.3840425 -0.2838106 0.1121653 0.3840425 -0.3840425 0.1121653 0.3840425 -0.518627 0.1121653 0.3840425 -0.6993381 0.1121653 0.3840425 -0.9419845 0.1121653 0.3840425 -1.267794 0.1121653 0.3840425 -1.705268 0.1121653 0.3840425 -2.292679 0.1121653 0.3840425 -3.081414 0.1121653 0.3840425 -4.140474 0.1121653 0.3840425 -5.562508 0.1121653 0.3840425 -7.471917 0.1121653 0.3840425 -10.03574 0.1121653 0.3840425 -13.47828 0.1121653 0.3840425 -18.10068 0.1121653 0.3840425 -24.30731 0.1121653 0.3840425 -32.64117 0.1121653 0.3840425 -43.83129 0.1121653 0.3840425 -58.85664 0.1121653 0.3840425 --0.0175068 0.1535689 0.3840425 --0.01161267 0.1535689 0.3840425 --0.005718534 0.1535689 0.3840425 -0.0001755984 0.1535689 0.3840425 -0.006069731 0.1535689 0.3840425 -0.01197402 0.1535689 0.3840425 -0.01903886 0.1535689 0.3840425 -0.02852504 0.1535689 0.3840425 -0.04126244 0.1535689 0.3840425 -0.05836535 0.1535689 0.3840425 -0.08132997 0.1535689 0.3840425 -0.1121653 0.1535689 0.3840425 -0.1535689 0.1535689 0.3840425 -0.2091628 0.1535689 0.3840425 -0.2838106 0.1535689 0.3840425 -0.3840425 0.1535689 0.3840425 -0.518627 0.1535689 0.3840425 -0.6993381 0.1535689 0.3840425 -0.9419845 0.1535689 0.3840425 -1.267794 0.1535689 0.3840425 -1.705268 0.1535689 0.3840425 -2.292679 0.1535689 0.3840425 -3.081414 0.1535689 0.3840425 -4.140474 0.1535689 0.3840425 -5.562508 0.1535689 0.3840425 -7.471917 0.1535689 0.3840425 -10.03574 0.1535689 0.3840425 -13.47828 0.1535689 0.3840425 -18.10068 0.1535689 0.3840425 -24.30731 0.1535689 0.3840425 -32.64117 0.1535689 0.3840425 -43.83129 0.1535689 0.3840425 -58.85664 0.1535689 0.3840425 --0.0175068 0.2091628 0.3840425 --0.01161267 0.2091628 0.3840425 --0.005718534 0.2091628 0.3840425 -0.0001755984 0.2091628 0.3840425 -0.006069731 0.2091628 0.3840425 -0.01197402 0.2091628 0.3840425 -0.01903886 0.2091628 0.3840425 -0.02852504 0.2091628 0.3840425 -0.04126244 0.2091628 0.3840425 -0.05836535 0.2091628 0.3840425 -0.08132997 0.2091628 0.3840425 -0.1121653 0.2091628 0.3840425 -0.1535689 0.2091628 0.3840425 -0.2091628 0.2091628 0.3840425 -0.2838106 0.2091628 0.3840425 -0.3840425 0.2091628 0.3840425 -0.518627 0.2091628 0.3840425 -0.6993381 0.2091628 0.3840425 -0.9419845 0.2091628 0.3840425 -1.267794 0.2091628 0.3840425 -1.705268 0.2091628 0.3840425 -2.292679 0.2091628 0.3840425 -3.081414 0.2091628 0.3840425 -4.140474 0.2091628 0.3840425 -5.562508 0.2091628 0.3840425 -7.471917 0.2091628 0.3840425 -10.03574 0.2091628 0.3840425 -13.47828 0.2091628 0.3840425 -18.10068 0.2091628 0.3840425 -24.30731 0.2091628 0.3840425 -32.64117 0.2091628 0.3840425 -43.83129 0.2091628 0.3840425 -58.85664 0.2091628 0.3840425 --0.0175068 0.2838106 0.3840425 --0.01161267 0.2838106 0.3840425 --0.005718534 0.2838106 0.3840425 -0.0001755984 0.2838106 0.3840425 -0.006069731 0.2838106 0.3840425 -0.01197402 0.2838106 0.3840425 -0.01903886 0.2838106 0.3840425 -0.02852504 0.2838106 0.3840425 -0.04126244 0.2838106 0.3840425 -0.05836535 0.2838106 0.3840425 -0.08132997 0.2838106 0.3840425 -0.1121653 0.2838106 0.3840425 -0.1535689 0.2838106 0.3840425 -0.2091628 0.2838106 0.3840425 -0.2838106 0.2838106 0.3840425 -0.3840425 0.2838106 0.3840425 -0.518627 0.2838106 0.3840425 -0.6993381 0.2838106 0.3840425 -0.9419845 0.2838106 0.3840425 -1.267794 0.2838106 0.3840425 -1.705268 0.2838106 0.3840425 -2.292679 0.2838106 0.3840425 -3.081414 0.2838106 0.3840425 -4.140474 0.2838106 0.3840425 -5.562508 0.2838106 0.3840425 -7.471917 0.2838106 0.3840425 -10.03574 0.2838106 0.3840425 -13.47828 0.2838106 0.3840425 -18.10068 0.2838106 0.3840425 -24.30731 0.2838106 0.3840425 -32.64117 0.2838106 0.3840425 -43.83129 0.2838106 0.3840425 -58.85664 0.2838106 0.3840425 --0.0175068 0.3840425 0.3840425 --0.01161267 0.3840425 0.3840425 --0.005718534 0.3840425 0.3840425 -0.0001755984 0.3840425 0.3840425 -0.006069731 0.3840425 0.3840425 -0.01197402 0.3840425 0.3840425 -0.01903886 0.3840425 0.3840425 -0.02852504 0.3840425 0.3840425 -0.04126244 0.3840425 0.3840425 -0.05836535 0.3840425 0.3840425 -0.08132997 0.3840425 0.3840425 -0.1121653 0.3840425 0.3840425 -0.1535689 0.3840425 0.3840425 -0.2091628 0.3840425 0.3840425 -0.2838106 0.3840425 0.3840425 -0.3840425 0.3840425 0.3840425 -0.518627 0.3840425 0.3840425 -0.6993381 0.3840425 0.3840425 -0.9419845 0.3840425 0.3840425 -1.267794 0.3840425 0.3840425 -1.705268 0.3840425 0.3840425 -2.292679 0.3840425 0.3840425 -3.081414 0.3840425 0.3840425 -4.140474 0.3840425 0.3840425 -5.562508 0.3840425 0.3840425 -7.471917 0.3840425 0.3840425 -10.03574 0.3840425 0.3840425 -13.47828 0.3840425 0.3840425 -18.10068 0.3840425 0.3840425 -24.30731 0.3840425 0.3840425 -32.64117 0.3840425 0.3840425 -43.83129 0.3840425 0.3840425 -58.85664 0.3840425 0.3840425 --0.0175068 0.518627 0.3840425 --0.01161267 0.518627 0.3840425 --0.005718534 0.518627 0.3840425 -0.0001755984 0.518627 0.3840425 -0.006069731 0.518627 0.3840425 -0.01197402 0.518627 0.3840425 -0.01903886 0.518627 0.3840425 -0.02852504 0.518627 0.3840425 -0.04126244 0.518627 0.3840425 -0.05836535 0.518627 0.3840425 -0.08132997 0.518627 0.3840425 -0.1121653 0.518627 0.3840425 -0.1535689 0.518627 0.3840425 -0.2091628 0.518627 0.3840425 -0.2838106 0.518627 0.3840425 -0.3840425 0.518627 0.3840425 -0.518627 0.518627 0.3840425 -0.6993381 0.518627 0.3840425 -0.9419845 0.518627 0.3840425 -1.267794 0.518627 0.3840425 -1.705268 0.518627 0.3840425 -2.292679 0.518627 0.3840425 -3.081414 0.518627 0.3840425 -4.140474 0.518627 0.3840425 -5.562508 0.518627 0.3840425 -7.471917 0.518627 0.3840425 -10.03574 0.518627 0.3840425 -13.47828 0.518627 0.3840425 -18.10068 0.518627 0.3840425 -24.30731 0.518627 0.3840425 -32.64117 0.518627 0.3840425 -43.83129 0.518627 0.3840425 -58.85664 0.518627 0.3840425 --0.0175068 0.6993381 0.3840425 --0.01161267 0.6993381 0.3840425 --0.005718534 0.6993381 0.3840425 -0.0001755984 0.6993381 0.3840425 -0.006069731 0.6993381 0.3840425 -0.01197402 0.6993381 0.3840425 -0.01903886 0.6993381 0.3840425 -0.02852504 0.6993381 0.3840425 -0.04126244 0.6993381 0.3840425 -0.05836535 0.6993381 0.3840425 -0.08132997 0.6993381 0.3840425 -0.1121653 0.6993381 0.3840425 -0.1535689 0.6993381 0.3840425 -0.2091628 0.6993381 0.3840425 -0.2838106 0.6993381 0.3840425 -0.3840425 0.6993381 0.3840425 -0.518627 0.6993381 0.3840425 -0.6993381 0.6993381 0.3840425 -0.9419845 0.6993381 0.3840425 -1.267794 0.6993381 0.3840425 -1.705268 0.6993381 0.3840425 -2.292679 0.6993381 0.3840425 -3.081414 0.6993381 0.3840425 -4.140474 0.6993381 0.3840425 -5.562508 0.6993381 0.3840425 -7.471917 0.6993381 0.3840425 -10.03574 0.6993381 0.3840425 -13.47828 0.6993381 0.3840425 -18.10068 0.6993381 0.3840425 -24.30731 0.6993381 0.3840425 -32.64117 0.6993381 0.3840425 -43.83129 0.6993381 0.3840425 -58.85664 0.6993381 0.3840425 --0.0175068 0.9419845 0.3840425 --0.01161267 0.9419845 0.3840425 --0.005718534 0.9419845 0.3840425 -0.0001755984 0.9419845 0.3840425 -0.006069731 0.9419845 0.3840425 -0.01197402 0.9419845 0.3840425 -0.01903886 0.9419845 0.3840425 -0.02852504 0.9419845 0.3840425 -0.04126244 0.9419845 0.3840425 -0.05836535 0.9419845 0.3840425 -0.08132997 0.9419845 0.3840425 -0.1121653 0.9419845 0.3840425 -0.1535689 0.9419845 0.3840425 -0.2091628 0.9419845 0.3840425 -0.2838106 0.9419845 0.3840425 -0.3840425 0.9419845 0.3840425 -0.518627 0.9419845 0.3840425 -0.6993381 0.9419845 0.3840425 -0.9419845 0.9419845 0.3840425 -1.267794 0.9419845 0.3840425 -1.705268 0.9419845 0.3840425 -2.292679 0.9419845 0.3840425 -3.081414 0.9419845 0.3840425 -4.140474 0.9419845 0.3840425 -5.562508 0.9419845 0.3840425 -7.471917 0.9419845 0.3840425 -10.03574 0.9419845 0.3840425 -13.47828 0.9419845 0.3840425 -18.10068 0.9419845 0.3840425 -24.30731 0.9419845 0.3840425 -32.64117 0.9419845 0.3840425 -43.83129 0.9419845 0.3840425 -58.85664 0.9419845 0.3840425 --0.0175068 1.267794 0.3840425 --0.01161267 1.267794 0.3840425 --0.005718534 1.267794 0.3840425 -0.0001755984 1.267794 0.3840425 -0.006069731 1.267794 0.3840425 -0.01197402 1.267794 0.3840425 -0.01903886 1.267794 0.3840425 -0.02852504 1.267794 0.3840425 -0.04126244 1.267794 0.3840425 -0.05836535 1.267794 0.3840425 -0.08132997 1.267794 0.3840425 -0.1121653 1.267794 0.3840425 -0.1535689 1.267794 0.3840425 -0.2091628 1.267794 0.3840425 -0.2838106 1.267794 0.3840425 -0.3840425 1.267794 0.3840425 -0.518627 1.267794 0.3840425 -0.6993381 1.267794 0.3840425 -0.9419845 1.267794 0.3840425 -1.267794 1.267794 0.3840425 -1.705268 1.267794 0.3840425 -2.292679 1.267794 0.3840425 -3.081414 1.267794 0.3840425 -4.140474 1.267794 0.3840425 -5.562508 1.267794 0.3840425 -7.471917 1.267794 0.3840425 -10.03574 1.267794 0.3840425 -13.47828 1.267794 0.3840425 -18.10068 1.267794 0.3840425 -24.30731 1.267794 0.3840425 -32.64117 1.267794 0.3840425 -43.83129 1.267794 0.3840425 -58.85664 1.267794 0.3840425 --0.0175068 1.705268 0.3840425 --0.01161267 1.705268 0.3840425 --0.005718534 1.705268 0.3840425 -0.0001755984 1.705268 0.3840425 -0.006069731 1.705268 0.3840425 -0.01197402 1.705268 0.3840425 -0.01903886 1.705268 0.3840425 -0.02852504 1.705268 0.3840425 -0.04126244 1.705268 0.3840425 -0.05836535 1.705268 0.3840425 -0.08132997 1.705268 0.3840425 -0.1121653 1.705268 0.3840425 -0.1535689 1.705268 0.3840425 -0.2091628 1.705268 0.3840425 -0.2838106 1.705268 0.3840425 -0.3840425 1.705268 0.3840425 -0.518627 1.705268 0.3840425 -0.6993381 1.705268 0.3840425 -0.9419845 1.705268 0.3840425 -1.267794 1.705268 0.3840425 -1.705268 1.705268 0.3840425 -2.292679 1.705268 0.3840425 -3.081414 1.705268 0.3840425 -4.140474 1.705268 0.3840425 -5.562508 1.705268 0.3840425 -7.471917 1.705268 0.3840425 -10.03574 1.705268 0.3840425 -13.47828 1.705268 0.3840425 -18.10068 1.705268 0.3840425 -24.30731 1.705268 0.3840425 -32.64117 1.705268 0.3840425 -43.83129 1.705268 0.3840425 -58.85664 1.705268 0.3840425 --0.0175068 2.292679 0.3840425 --0.01161267 2.292679 0.3840425 --0.005718534 2.292679 0.3840425 -0.0001755984 2.292679 0.3840425 -0.006069731 2.292679 0.3840425 -0.01197402 2.292679 0.3840425 -0.01903886 2.292679 0.3840425 -0.02852504 2.292679 0.3840425 -0.04126244 2.292679 0.3840425 -0.05836535 2.292679 0.3840425 -0.08132997 2.292679 0.3840425 -0.1121653 2.292679 0.3840425 -0.1535689 2.292679 0.3840425 -0.2091628 2.292679 0.3840425 -0.2838106 2.292679 0.3840425 -0.3840425 2.292679 0.3840425 -0.518627 2.292679 0.3840425 -0.6993381 2.292679 0.3840425 -0.9419845 2.292679 0.3840425 -1.267794 2.292679 0.3840425 -1.705268 2.292679 0.3840425 -2.292679 2.292679 0.3840425 -3.081414 2.292679 0.3840425 -4.140474 2.292679 0.3840425 -5.562508 2.292679 0.3840425 -7.471917 2.292679 0.3840425 -10.03574 2.292679 0.3840425 -13.47828 2.292679 0.3840425 -18.10068 2.292679 0.3840425 -24.30731 2.292679 0.3840425 -32.64117 2.292679 0.3840425 -43.83129 2.292679 0.3840425 -58.85664 2.292679 0.3840425 --0.0175068 3.081414 0.3840425 --0.01161267 3.081414 0.3840425 --0.005718534 3.081414 0.3840425 -0.0001755984 3.081414 0.3840425 -0.006069731 3.081414 0.3840425 -0.01197402 3.081414 0.3840425 -0.01903886 3.081414 0.3840425 -0.02852504 3.081414 0.3840425 -0.04126244 3.081414 0.3840425 -0.05836535 3.081414 0.3840425 -0.08132997 3.081414 0.3840425 -0.1121653 3.081414 0.3840425 -0.1535689 3.081414 0.3840425 -0.2091628 3.081414 0.3840425 -0.2838106 3.081414 0.3840425 -0.3840425 3.081414 0.3840425 -0.518627 3.081414 0.3840425 -0.6993381 3.081414 0.3840425 -0.9419845 3.081414 0.3840425 -1.267794 3.081414 0.3840425 -1.705268 3.081414 0.3840425 -2.292679 3.081414 0.3840425 -3.081414 3.081414 0.3840425 -4.140474 3.081414 0.3840425 -5.562508 3.081414 0.3840425 -7.471917 3.081414 0.3840425 -10.03574 3.081414 0.3840425 -13.47828 3.081414 0.3840425 -18.10068 3.081414 0.3840425 -24.30731 3.081414 0.3840425 -32.64117 3.081414 0.3840425 -43.83129 3.081414 0.3840425 -58.85664 3.081414 0.3840425 --0.0175068 4.140474 0.3840425 --0.01161267 4.140474 0.3840425 --0.005718534 4.140474 0.3840425 -0.0001755984 4.140474 0.3840425 -0.006069731 4.140474 0.3840425 -0.01197402 4.140474 0.3840425 -0.01903886 4.140474 0.3840425 -0.02852504 4.140474 0.3840425 -0.04126244 4.140474 0.3840425 -0.05836535 4.140474 0.3840425 -0.08132997 4.140474 0.3840425 -0.1121653 4.140474 0.3840425 -0.1535689 4.140474 0.3840425 -0.2091628 4.140474 0.3840425 -0.2838106 4.140474 0.3840425 -0.3840425 4.140474 0.3840425 -0.518627 4.140474 0.3840425 -0.6993381 4.140474 0.3840425 -0.9419845 4.140474 0.3840425 -1.267794 4.140474 0.3840425 -1.705268 4.140474 0.3840425 -2.292679 4.140474 0.3840425 -3.081414 4.140474 0.3840425 -4.140474 4.140474 0.3840425 -5.562508 4.140474 0.3840425 -7.471917 4.140474 0.3840425 -10.03574 4.140474 0.3840425 -13.47828 4.140474 0.3840425 -18.10068 4.140474 0.3840425 -24.30731 4.140474 0.3840425 -32.64117 4.140474 0.3840425 -43.83129 4.140474 0.3840425 -58.85664 4.140474 0.3840425 --0.0175068 5.562508 0.3840425 --0.01161267 5.562508 0.3840425 --0.005718534 5.562508 0.3840425 -0.0001755984 5.562508 0.3840425 -0.006069731 5.562508 0.3840425 -0.01197402 5.562508 0.3840425 -0.01903886 5.562508 0.3840425 -0.02852504 5.562508 0.3840425 -0.04126244 5.562508 0.3840425 -0.05836535 5.562508 0.3840425 -0.08132997 5.562508 0.3840425 -0.1121653 5.562508 0.3840425 -0.1535689 5.562508 0.3840425 -0.2091628 5.562508 0.3840425 -0.2838106 5.562508 0.3840425 -0.3840425 5.562508 0.3840425 -0.518627 5.562508 0.3840425 -0.6993381 5.562508 0.3840425 -0.9419845 5.562508 0.3840425 -1.267794 5.562508 0.3840425 -1.705268 5.562508 0.3840425 -2.292679 5.562508 0.3840425 -3.081414 5.562508 0.3840425 -4.140474 5.562508 0.3840425 -5.562508 5.562508 0.3840425 -7.471917 5.562508 0.3840425 -10.03574 5.562508 0.3840425 -13.47828 5.562508 0.3840425 -18.10068 5.562508 0.3840425 -24.30731 5.562508 0.3840425 -32.64117 5.562508 0.3840425 -43.83129 5.562508 0.3840425 -58.85664 5.562508 0.3840425 --0.0175068 7.471917 0.3840425 --0.01161267 7.471917 0.3840425 --0.005718534 7.471917 0.3840425 -0.0001755984 7.471917 0.3840425 -0.006069731 7.471917 0.3840425 -0.01197402 7.471917 0.3840425 -0.01903886 7.471917 0.3840425 -0.02852504 7.471917 0.3840425 -0.04126244 7.471917 0.3840425 -0.05836535 7.471917 0.3840425 -0.08132997 7.471917 0.3840425 -0.1121653 7.471917 0.3840425 -0.1535689 7.471917 0.3840425 -0.2091628 7.471917 0.3840425 -0.2838106 7.471917 0.3840425 -0.3840425 7.471917 0.3840425 -0.518627 7.471917 0.3840425 -0.6993381 7.471917 0.3840425 -0.9419845 7.471917 0.3840425 -1.267794 7.471917 0.3840425 -1.705268 7.471917 0.3840425 -2.292679 7.471917 0.3840425 -3.081414 7.471917 0.3840425 -4.140474 7.471917 0.3840425 -5.562508 7.471917 0.3840425 -7.471917 7.471917 0.3840425 -10.03574 7.471917 0.3840425 -13.47828 7.471917 0.3840425 -18.10068 7.471917 0.3840425 -24.30731 7.471917 0.3840425 -32.64117 7.471917 0.3840425 -43.83129 7.471917 0.3840425 -58.85664 7.471917 0.3840425 --0.0175068 10.03574 0.3840425 --0.01161267 10.03574 0.3840425 --0.005718534 10.03574 0.3840425 -0.0001755984 10.03574 0.3840425 -0.006069731 10.03574 0.3840425 -0.01197402 10.03574 0.3840425 -0.01903886 10.03574 0.3840425 -0.02852504 10.03574 0.3840425 -0.04126244 10.03574 0.3840425 -0.05836535 10.03574 0.3840425 -0.08132997 10.03574 0.3840425 -0.1121653 10.03574 0.3840425 -0.1535689 10.03574 0.3840425 -0.2091628 10.03574 0.3840425 -0.2838106 10.03574 0.3840425 -0.3840425 10.03574 0.3840425 -0.518627 10.03574 0.3840425 -0.6993381 10.03574 0.3840425 -0.9419845 10.03574 0.3840425 -1.267794 10.03574 0.3840425 -1.705268 10.03574 0.3840425 -2.292679 10.03574 0.3840425 -3.081414 10.03574 0.3840425 -4.140474 10.03574 0.3840425 -5.562508 10.03574 0.3840425 -7.471917 10.03574 0.3840425 -10.03574 10.03574 0.3840425 -13.47828 10.03574 0.3840425 -18.10068 10.03574 0.3840425 -24.30731 10.03574 0.3840425 -32.64117 10.03574 0.3840425 -43.83129 10.03574 0.3840425 -58.85664 10.03574 0.3840425 --0.0175068 13.47828 0.3840425 --0.01161267 13.47828 0.3840425 --0.005718534 13.47828 0.3840425 -0.0001755984 13.47828 0.3840425 -0.006069731 13.47828 0.3840425 -0.01197402 13.47828 0.3840425 -0.01903886 13.47828 0.3840425 -0.02852504 13.47828 0.3840425 -0.04126244 13.47828 0.3840425 -0.05836535 13.47828 0.3840425 -0.08132997 13.47828 0.3840425 -0.1121653 13.47828 0.3840425 -0.1535689 13.47828 0.3840425 -0.2091628 13.47828 0.3840425 -0.2838106 13.47828 0.3840425 -0.3840425 13.47828 0.3840425 -0.518627 13.47828 0.3840425 -0.6993381 13.47828 0.3840425 -0.9419845 13.47828 0.3840425 -1.267794 13.47828 0.3840425 -1.705268 13.47828 0.3840425 -2.292679 13.47828 0.3840425 -3.081414 13.47828 0.3840425 -4.140474 13.47828 0.3840425 -5.562508 13.47828 0.3840425 -7.471917 13.47828 0.3840425 -10.03574 13.47828 0.3840425 -13.47828 13.47828 0.3840425 -18.10068 13.47828 0.3840425 -24.30731 13.47828 0.3840425 -32.64117 13.47828 0.3840425 -43.83129 13.47828 0.3840425 -58.85664 13.47828 0.3840425 --0.0175068 18.10068 0.3840425 --0.01161267 18.10068 0.3840425 --0.005718534 18.10068 0.3840425 -0.0001755984 18.10068 0.3840425 -0.006069731 18.10068 0.3840425 -0.01197402 18.10068 0.3840425 -0.01903886 18.10068 0.3840425 -0.02852504 18.10068 0.3840425 -0.04126244 18.10068 0.3840425 -0.05836535 18.10068 0.3840425 -0.08132997 18.10068 0.3840425 -0.1121653 18.10068 0.3840425 -0.1535689 18.10068 0.3840425 -0.2091628 18.10068 0.3840425 -0.2838106 18.10068 0.3840425 -0.3840425 18.10068 0.3840425 -0.518627 18.10068 0.3840425 -0.6993381 18.10068 0.3840425 -0.9419845 18.10068 0.3840425 -1.267794 18.10068 0.3840425 -1.705268 18.10068 0.3840425 -2.292679 18.10068 0.3840425 -3.081414 18.10068 0.3840425 -4.140474 18.10068 0.3840425 -5.562508 18.10068 0.3840425 -7.471917 18.10068 0.3840425 -10.03574 18.10068 0.3840425 -13.47828 18.10068 0.3840425 -18.10068 18.10068 0.3840425 -24.30731 18.10068 0.3840425 -32.64117 18.10068 0.3840425 -43.83129 18.10068 0.3840425 -58.85664 18.10068 0.3840425 --0.0175068 24.30731 0.3840425 --0.01161267 24.30731 0.3840425 --0.005718534 24.30731 0.3840425 -0.0001755984 24.30731 0.3840425 -0.006069731 24.30731 0.3840425 -0.01197402 24.30731 0.3840425 -0.01903886 24.30731 0.3840425 -0.02852504 24.30731 0.3840425 -0.04126244 24.30731 0.3840425 -0.05836535 24.30731 0.3840425 -0.08132997 24.30731 0.3840425 -0.1121653 24.30731 0.3840425 -0.1535689 24.30731 0.3840425 -0.2091628 24.30731 0.3840425 -0.2838106 24.30731 0.3840425 -0.3840425 24.30731 0.3840425 -0.518627 24.30731 0.3840425 -0.6993381 24.30731 0.3840425 -0.9419845 24.30731 0.3840425 -1.267794 24.30731 0.3840425 -1.705268 24.30731 0.3840425 -2.292679 24.30731 0.3840425 -3.081414 24.30731 0.3840425 -4.140474 24.30731 0.3840425 -5.562508 24.30731 0.3840425 -7.471917 24.30731 0.3840425 -10.03574 24.30731 0.3840425 -13.47828 24.30731 0.3840425 -18.10068 24.30731 0.3840425 -24.30731 24.30731 0.3840425 -32.64117 24.30731 0.3840425 -43.83129 24.30731 0.3840425 -58.85664 24.30731 0.3840425 --0.0175068 32.64117 0.3840425 --0.01161267 32.64117 0.3840425 --0.005718534 32.64117 0.3840425 -0.0001755984 32.64117 0.3840425 -0.006069731 32.64117 0.3840425 -0.01197402 32.64117 0.3840425 -0.01903886 32.64117 0.3840425 -0.02852504 32.64117 0.3840425 -0.04126244 32.64117 0.3840425 -0.05836535 32.64117 0.3840425 -0.08132997 32.64117 0.3840425 -0.1121653 32.64117 0.3840425 -0.1535689 32.64117 0.3840425 -0.2091628 32.64117 0.3840425 -0.2838106 32.64117 0.3840425 -0.3840425 32.64117 0.3840425 -0.518627 32.64117 0.3840425 -0.6993381 32.64117 0.3840425 -0.9419845 32.64117 0.3840425 -1.267794 32.64117 0.3840425 -1.705268 32.64117 0.3840425 -2.292679 32.64117 0.3840425 -3.081414 32.64117 0.3840425 -4.140474 32.64117 0.3840425 -5.562508 32.64117 0.3840425 -7.471917 32.64117 0.3840425 -10.03574 32.64117 0.3840425 -13.47828 32.64117 0.3840425 -18.10068 32.64117 0.3840425 -24.30731 32.64117 0.3840425 -32.64117 32.64117 0.3840425 -43.83129 32.64117 0.3840425 -58.85664 32.64117 0.3840425 --0.0175068 43.83129 0.3840425 --0.01161267 43.83129 0.3840425 --0.005718534 43.83129 0.3840425 -0.0001755984 43.83129 0.3840425 -0.006069731 43.83129 0.3840425 -0.01197402 43.83129 0.3840425 -0.01903886 43.83129 0.3840425 -0.02852504 43.83129 0.3840425 -0.04126244 43.83129 0.3840425 -0.05836535 43.83129 0.3840425 -0.08132997 43.83129 0.3840425 -0.1121653 43.83129 0.3840425 -0.1535689 43.83129 0.3840425 -0.2091628 43.83129 0.3840425 -0.2838106 43.83129 0.3840425 -0.3840425 43.83129 0.3840425 -0.518627 43.83129 0.3840425 -0.6993381 43.83129 0.3840425 -0.9419845 43.83129 0.3840425 -1.267794 43.83129 0.3840425 -1.705268 43.83129 0.3840425 -2.292679 43.83129 0.3840425 -3.081414 43.83129 0.3840425 -4.140474 43.83129 0.3840425 -5.562508 43.83129 0.3840425 -7.471917 43.83129 0.3840425 -10.03574 43.83129 0.3840425 -13.47828 43.83129 0.3840425 -18.10068 43.83129 0.3840425 -24.30731 43.83129 0.3840425 -32.64117 43.83129 0.3840425 -43.83129 43.83129 0.3840425 -58.85664 43.83129 0.3840425 --0.0175068 58.85664 0.3840425 --0.01161267 58.85664 0.3840425 --0.005718534 58.85664 0.3840425 -0.0001755984 58.85664 0.3840425 -0.006069731 58.85664 0.3840425 -0.01197402 58.85664 0.3840425 -0.01903886 58.85664 0.3840425 -0.02852504 58.85664 0.3840425 -0.04126244 58.85664 0.3840425 -0.05836535 58.85664 0.3840425 -0.08132997 58.85664 0.3840425 -0.1121653 58.85664 0.3840425 -0.1535689 58.85664 0.3840425 -0.2091628 58.85664 0.3840425 -0.2838106 58.85664 0.3840425 -0.3840425 58.85664 0.3840425 -0.518627 58.85664 0.3840425 -0.6993381 58.85664 0.3840425 -0.9419845 58.85664 0.3840425 -1.267794 58.85664 0.3840425 -1.705268 58.85664 0.3840425 -2.292679 58.85664 0.3840425 -3.081414 58.85664 0.3840425 -4.140474 58.85664 0.3840425 -5.562508 58.85664 0.3840425 -7.471917 58.85664 0.3840425 -10.03574 58.85664 0.3840425 -13.47828 58.85664 0.3840425 -18.10068 58.85664 0.3840425 -24.30731 58.85664 0.3840425 -32.64117 58.85664 0.3840425 -43.83129 58.85664 0.3840425 -58.85664 58.85664 0.3840425 --0.0175068 -0.0175068 0.518627 --0.01161267 -0.0175068 0.518627 --0.005718534 -0.0175068 0.518627 -0.0001755984 -0.0175068 0.518627 -0.006069731 -0.0175068 0.518627 -0.01197402 -0.0175068 0.518627 -0.01903886 -0.0175068 0.518627 -0.02852504 -0.0175068 0.518627 -0.04126244 -0.0175068 0.518627 -0.05836535 -0.0175068 0.518627 -0.08132997 -0.0175068 0.518627 -0.1121653 -0.0175068 0.518627 -0.1535689 -0.0175068 0.518627 -0.2091628 -0.0175068 0.518627 -0.2838106 -0.0175068 0.518627 -0.3840425 -0.0175068 0.518627 -0.518627 -0.0175068 0.518627 -0.6993381 -0.0175068 0.518627 -0.9419845 -0.0175068 0.518627 -1.267794 -0.0175068 0.518627 -1.705268 -0.0175068 0.518627 -2.292679 -0.0175068 0.518627 -3.081414 -0.0175068 0.518627 -4.140474 -0.0175068 0.518627 -5.562508 -0.0175068 0.518627 -7.471917 -0.0175068 0.518627 -10.03574 -0.0175068 0.518627 -13.47828 -0.0175068 0.518627 -18.10068 -0.0175068 0.518627 -24.30731 -0.0175068 0.518627 -32.64117 -0.0175068 0.518627 -43.83129 -0.0175068 0.518627 -58.85664 -0.0175068 0.518627 --0.0175068 -0.01161267 0.518627 --0.01161267 -0.01161267 0.518627 --0.005718534 -0.01161267 0.518627 -0.0001755984 -0.01161267 0.518627 -0.006069731 -0.01161267 0.518627 -0.01197402 -0.01161267 0.518627 -0.01903886 -0.01161267 0.518627 -0.02852504 -0.01161267 0.518627 -0.04126244 -0.01161267 0.518627 -0.05836535 -0.01161267 0.518627 -0.08132997 -0.01161267 0.518627 -0.1121653 -0.01161267 0.518627 -0.1535689 -0.01161267 0.518627 -0.2091628 -0.01161267 0.518627 -0.2838106 -0.01161267 0.518627 -0.3840425 -0.01161267 0.518627 -0.518627 -0.01161267 0.518627 -0.6993381 -0.01161267 0.518627 -0.9419845 -0.01161267 0.518627 -1.267794 -0.01161267 0.518627 -1.705268 -0.01161267 0.518627 -2.292679 -0.01161267 0.518627 -3.081414 -0.01161267 0.518627 -4.140474 -0.01161267 0.518627 -5.562508 -0.01161267 0.518627 -7.471917 -0.01161267 0.518627 -10.03574 -0.01161267 0.518627 -13.47828 -0.01161267 0.518627 -18.10068 -0.01161267 0.518627 -24.30731 -0.01161267 0.518627 -32.64117 -0.01161267 0.518627 -43.83129 -0.01161267 0.518627 -58.85664 -0.01161267 0.518627 --0.0175068 -0.005718534 0.518627 --0.01161267 -0.005718534 0.518627 --0.005718534 -0.005718534 0.518627 -0.0001755984 -0.005718534 0.518627 -0.006069731 -0.005718534 0.518627 -0.01197402 -0.005718534 0.518627 -0.01903886 -0.005718534 0.518627 -0.02852504 -0.005718534 0.518627 -0.04126244 -0.005718534 0.518627 -0.05836535 -0.005718534 0.518627 -0.08132997 -0.005718534 0.518627 -0.1121653 -0.005718534 0.518627 -0.1535689 -0.005718534 0.518627 -0.2091628 -0.005718534 0.518627 -0.2838106 -0.005718534 0.518627 -0.3840425 -0.005718534 0.518627 -0.518627 -0.005718534 0.518627 -0.6993381 -0.005718534 0.518627 -0.9419845 -0.005718534 0.518627 -1.267794 -0.005718534 0.518627 -1.705268 -0.005718534 0.518627 -2.292679 -0.005718534 0.518627 -3.081414 -0.005718534 0.518627 -4.140474 -0.005718534 0.518627 -5.562508 -0.005718534 0.518627 -7.471917 -0.005718534 0.518627 -10.03574 -0.005718534 0.518627 -13.47828 -0.005718534 0.518627 -18.10068 -0.005718534 0.518627 -24.30731 -0.005718534 0.518627 -32.64117 -0.005718534 0.518627 -43.83129 -0.005718534 0.518627 -58.85664 -0.005718534 0.518627 --0.0175068 0.0001755984 0.518627 --0.01161267 0.0001755984 0.518627 --0.005718534 0.0001755984 0.518627 -0.0001755984 0.0001755984 0.518627 -0.006069731 0.0001755984 0.518627 -0.01197402 0.0001755984 0.518627 -0.01903886 0.0001755984 0.518627 -0.02852504 0.0001755984 0.518627 -0.04126244 0.0001755984 0.518627 -0.05836535 0.0001755984 0.518627 -0.08132997 0.0001755984 0.518627 -0.1121653 0.0001755984 0.518627 -0.1535689 0.0001755984 0.518627 -0.2091628 0.0001755984 0.518627 -0.2838106 0.0001755984 0.518627 -0.3840425 0.0001755984 0.518627 -0.518627 0.0001755984 0.518627 -0.6993381 0.0001755984 0.518627 -0.9419845 0.0001755984 0.518627 -1.267794 0.0001755984 0.518627 -1.705268 0.0001755984 0.518627 -2.292679 0.0001755984 0.518627 -3.081414 0.0001755984 0.518627 -4.140474 0.0001755984 0.518627 -5.562508 0.0001755984 0.518627 -7.471917 0.0001755984 0.518627 -10.03574 0.0001755984 0.518627 -13.47828 0.0001755984 0.518627 -18.10068 0.0001755984 0.518627 -24.30731 0.0001755984 0.518627 -32.64117 0.0001755984 0.518627 -43.83129 0.0001755984 0.518627 -58.85664 0.0001755984 0.518627 --0.0175068 0.006069731 0.518627 --0.01161267 0.006069731 0.518627 --0.005718534 0.006069731 0.518627 -0.0001755984 0.006069731 0.518627 -0.006069731 0.006069731 0.518627 -0.01197402 0.006069731 0.518627 -0.01903886 0.006069731 0.518627 -0.02852504 0.006069731 0.518627 -0.04126244 0.006069731 0.518627 -0.05836535 0.006069731 0.518627 -0.08132997 0.006069731 0.518627 -0.1121653 0.006069731 0.518627 -0.1535689 0.006069731 0.518627 -0.2091628 0.006069731 0.518627 -0.2838106 0.006069731 0.518627 -0.3840425 0.006069731 0.518627 -0.518627 0.006069731 0.518627 -0.6993381 0.006069731 0.518627 -0.9419845 0.006069731 0.518627 -1.267794 0.006069731 0.518627 -1.705268 0.006069731 0.518627 -2.292679 0.006069731 0.518627 -3.081414 0.006069731 0.518627 -4.140474 0.006069731 0.518627 -5.562508 0.006069731 0.518627 -7.471917 0.006069731 0.518627 -10.03574 0.006069731 0.518627 -13.47828 0.006069731 0.518627 -18.10068 0.006069731 0.518627 -24.30731 0.006069731 0.518627 -32.64117 0.006069731 0.518627 -43.83129 0.006069731 0.518627 -58.85664 0.006069731 0.518627 --0.0175068 0.01197402 0.518627 --0.01161267 0.01197402 0.518627 --0.005718534 0.01197402 0.518627 -0.0001755984 0.01197402 0.518627 -0.006069731 0.01197402 0.518627 -0.01197402 0.01197402 0.518627 -0.01903886 0.01197402 0.518627 -0.02852504 0.01197402 0.518627 -0.04126244 0.01197402 0.518627 -0.05836535 0.01197402 0.518627 -0.08132997 0.01197402 0.518627 -0.1121653 0.01197402 0.518627 -0.1535689 0.01197402 0.518627 -0.2091628 0.01197402 0.518627 -0.2838106 0.01197402 0.518627 -0.3840425 0.01197402 0.518627 -0.518627 0.01197402 0.518627 -0.6993381 0.01197402 0.518627 -0.9419845 0.01197402 0.518627 -1.267794 0.01197402 0.518627 -1.705268 0.01197402 0.518627 -2.292679 0.01197402 0.518627 -3.081414 0.01197402 0.518627 -4.140474 0.01197402 0.518627 -5.562508 0.01197402 0.518627 -7.471917 0.01197402 0.518627 -10.03574 0.01197402 0.518627 -13.47828 0.01197402 0.518627 -18.10068 0.01197402 0.518627 -24.30731 0.01197402 0.518627 -32.64117 0.01197402 0.518627 -43.83129 0.01197402 0.518627 -58.85664 0.01197402 0.518627 --0.0175068 0.01903886 0.518627 --0.01161267 0.01903886 0.518627 --0.005718534 0.01903886 0.518627 -0.0001755984 0.01903886 0.518627 -0.006069731 0.01903886 0.518627 -0.01197402 0.01903886 0.518627 -0.01903886 0.01903886 0.518627 -0.02852504 0.01903886 0.518627 -0.04126244 0.01903886 0.518627 -0.05836535 0.01903886 0.518627 -0.08132997 0.01903886 0.518627 -0.1121653 0.01903886 0.518627 -0.1535689 0.01903886 0.518627 -0.2091628 0.01903886 0.518627 -0.2838106 0.01903886 0.518627 -0.3840425 0.01903886 0.518627 -0.518627 0.01903886 0.518627 -0.6993381 0.01903886 0.518627 -0.9419845 0.01903886 0.518627 -1.267794 0.01903886 0.518627 -1.705268 0.01903886 0.518627 -2.292679 0.01903886 0.518627 -3.081414 0.01903886 0.518627 -4.140474 0.01903886 0.518627 -5.562508 0.01903886 0.518627 -7.471917 0.01903886 0.518627 -10.03574 0.01903886 0.518627 -13.47828 0.01903886 0.518627 -18.10068 0.01903886 0.518627 -24.30731 0.01903886 0.518627 -32.64117 0.01903886 0.518627 -43.83129 0.01903886 0.518627 -58.85664 0.01903886 0.518627 --0.0175068 0.02852504 0.518627 --0.01161267 0.02852504 0.518627 --0.005718534 0.02852504 0.518627 -0.0001755984 0.02852504 0.518627 -0.006069731 0.02852504 0.518627 -0.01197402 0.02852504 0.518627 -0.01903886 0.02852504 0.518627 -0.02852504 0.02852504 0.518627 -0.04126244 0.02852504 0.518627 -0.05836535 0.02852504 0.518627 -0.08132997 0.02852504 0.518627 -0.1121653 0.02852504 0.518627 -0.1535689 0.02852504 0.518627 -0.2091628 0.02852504 0.518627 -0.2838106 0.02852504 0.518627 -0.3840425 0.02852504 0.518627 -0.518627 0.02852504 0.518627 -0.6993381 0.02852504 0.518627 -0.9419845 0.02852504 0.518627 -1.267794 0.02852504 0.518627 -1.705268 0.02852504 0.518627 -2.292679 0.02852504 0.518627 -3.081414 0.02852504 0.518627 -4.140474 0.02852504 0.518627 -5.562508 0.02852504 0.518627 -7.471917 0.02852504 0.518627 -10.03574 0.02852504 0.518627 -13.47828 0.02852504 0.518627 -18.10068 0.02852504 0.518627 -24.30731 0.02852504 0.518627 -32.64117 0.02852504 0.518627 -43.83129 0.02852504 0.518627 -58.85664 0.02852504 0.518627 --0.0175068 0.04126244 0.518627 --0.01161267 0.04126244 0.518627 --0.005718534 0.04126244 0.518627 -0.0001755984 0.04126244 0.518627 -0.006069731 0.04126244 0.518627 -0.01197402 0.04126244 0.518627 -0.01903886 0.04126244 0.518627 -0.02852504 0.04126244 0.518627 -0.04126244 0.04126244 0.518627 -0.05836535 0.04126244 0.518627 -0.08132997 0.04126244 0.518627 -0.1121653 0.04126244 0.518627 -0.1535689 0.04126244 0.518627 -0.2091628 0.04126244 0.518627 -0.2838106 0.04126244 0.518627 -0.3840425 0.04126244 0.518627 -0.518627 0.04126244 0.518627 -0.6993381 0.04126244 0.518627 -0.9419845 0.04126244 0.518627 -1.267794 0.04126244 0.518627 -1.705268 0.04126244 0.518627 -2.292679 0.04126244 0.518627 -3.081414 0.04126244 0.518627 -4.140474 0.04126244 0.518627 -5.562508 0.04126244 0.518627 -7.471917 0.04126244 0.518627 -10.03574 0.04126244 0.518627 -13.47828 0.04126244 0.518627 -18.10068 0.04126244 0.518627 -24.30731 0.04126244 0.518627 -32.64117 0.04126244 0.518627 -43.83129 0.04126244 0.518627 -58.85664 0.04126244 0.518627 --0.0175068 0.05836535 0.518627 --0.01161267 0.05836535 0.518627 --0.005718534 0.05836535 0.518627 -0.0001755984 0.05836535 0.518627 -0.006069731 0.05836535 0.518627 -0.01197402 0.05836535 0.518627 -0.01903886 0.05836535 0.518627 -0.02852504 0.05836535 0.518627 -0.04126244 0.05836535 0.518627 -0.05836535 0.05836535 0.518627 -0.08132997 0.05836535 0.518627 -0.1121653 0.05836535 0.518627 -0.1535689 0.05836535 0.518627 -0.2091628 0.05836535 0.518627 -0.2838106 0.05836535 0.518627 -0.3840425 0.05836535 0.518627 -0.518627 0.05836535 0.518627 -0.6993381 0.05836535 0.518627 -0.9419845 0.05836535 0.518627 -1.267794 0.05836535 0.518627 -1.705268 0.05836535 0.518627 -2.292679 0.05836535 0.518627 -3.081414 0.05836535 0.518627 -4.140474 0.05836535 0.518627 -5.562508 0.05836535 0.518627 -7.471917 0.05836535 0.518627 -10.03574 0.05836535 0.518627 -13.47828 0.05836535 0.518627 -18.10068 0.05836535 0.518627 -24.30731 0.05836535 0.518627 -32.64117 0.05836535 0.518627 -43.83129 0.05836535 0.518627 -58.85664 0.05836535 0.518627 --0.0175068 0.08132997 0.518627 --0.01161267 0.08132997 0.518627 --0.005718534 0.08132997 0.518627 -0.0001755984 0.08132997 0.518627 -0.006069731 0.08132997 0.518627 -0.01197402 0.08132997 0.518627 -0.01903886 0.08132997 0.518627 -0.02852504 0.08132997 0.518627 -0.04126244 0.08132997 0.518627 -0.05836535 0.08132997 0.518627 -0.08132997 0.08132997 0.518627 -0.1121653 0.08132997 0.518627 -0.1535689 0.08132997 0.518627 -0.2091628 0.08132997 0.518627 -0.2838106 0.08132997 0.518627 -0.3840425 0.08132997 0.518627 -0.518627 0.08132997 0.518627 -0.6993381 0.08132997 0.518627 -0.9419845 0.08132997 0.518627 -1.267794 0.08132997 0.518627 -1.705268 0.08132997 0.518627 -2.292679 0.08132997 0.518627 -3.081414 0.08132997 0.518627 -4.140474 0.08132997 0.518627 -5.562508 0.08132997 0.518627 -7.471917 0.08132997 0.518627 -10.03574 0.08132997 0.518627 -13.47828 0.08132997 0.518627 -18.10068 0.08132997 0.518627 -24.30731 0.08132997 0.518627 -32.64117 0.08132997 0.518627 -43.83129 0.08132997 0.518627 -58.85664 0.08132997 0.518627 --0.0175068 0.1121653 0.518627 --0.01161267 0.1121653 0.518627 --0.005718534 0.1121653 0.518627 -0.0001755984 0.1121653 0.518627 -0.006069731 0.1121653 0.518627 -0.01197402 0.1121653 0.518627 -0.01903886 0.1121653 0.518627 -0.02852504 0.1121653 0.518627 -0.04126244 0.1121653 0.518627 -0.05836535 0.1121653 0.518627 -0.08132997 0.1121653 0.518627 -0.1121653 0.1121653 0.518627 -0.1535689 0.1121653 0.518627 -0.2091628 0.1121653 0.518627 -0.2838106 0.1121653 0.518627 -0.3840425 0.1121653 0.518627 -0.518627 0.1121653 0.518627 -0.6993381 0.1121653 0.518627 -0.9419845 0.1121653 0.518627 -1.267794 0.1121653 0.518627 -1.705268 0.1121653 0.518627 -2.292679 0.1121653 0.518627 -3.081414 0.1121653 0.518627 -4.140474 0.1121653 0.518627 -5.562508 0.1121653 0.518627 -7.471917 0.1121653 0.518627 -10.03574 0.1121653 0.518627 -13.47828 0.1121653 0.518627 -18.10068 0.1121653 0.518627 -24.30731 0.1121653 0.518627 -32.64117 0.1121653 0.518627 -43.83129 0.1121653 0.518627 -58.85664 0.1121653 0.518627 --0.0175068 0.1535689 0.518627 --0.01161267 0.1535689 0.518627 --0.005718534 0.1535689 0.518627 -0.0001755984 0.1535689 0.518627 -0.006069731 0.1535689 0.518627 -0.01197402 0.1535689 0.518627 -0.01903886 0.1535689 0.518627 -0.02852504 0.1535689 0.518627 -0.04126244 0.1535689 0.518627 -0.05836535 0.1535689 0.518627 -0.08132997 0.1535689 0.518627 -0.1121653 0.1535689 0.518627 -0.1535689 0.1535689 0.518627 -0.2091628 0.1535689 0.518627 -0.2838106 0.1535689 0.518627 -0.3840425 0.1535689 0.518627 -0.518627 0.1535689 0.518627 -0.6993381 0.1535689 0.518627 -0.9419845 0.1535689 0.518627 -1.267794 0.1535689 0.518627 -1.705268 0.1535689 0.518627 -2.292679 0.1535689 0.518627 -3.081414 0.1535689 0.518627 -4.140474 0.1535689 0.518627 -5.562508 0.1535689 0.518627 -7.471917 0.1535689 0.518627 -10.03574 0.1535689 0.518627 -13.47828 0.1535689 0.518627 -18.10068 0.1535689 0.518627 -24.30731 0.1535689 0.518627 -32.64117 0.1535689 0.518627 -43.83129 0.1535689 0.518627 -58.85664 0.1535689 0.518627 --0.0175068 0.2091628 0.518627 --0.01161267 0.2091628 0.518627 --0.005718534 0.2091628 0.518627 -0.0001755984 0.2091628 0.518627 -0.006069731 0.2091628 0.518627 -0.01197402 0.2091628 0.518627 -0.01903886 0.2091628 0.518627 -0.02852504 0.2091628 0.518627 -0.04126244 0.2091628 0.518627 -0.05836535 0.2091628 0.518627 -0.08132997 0.2091628 0.518627 -0.1121653 0.2091628 0.518627 -0.1535689 0.2091628 0.518627 -0.2091628 0.2091628 0.518627 -0.2838106 0.2091628 0.518627 -0.3840425 0.2091628 0.518627 -0.518627 0.2091628 0.518627 -0.6993381 0.2091628 0.518627 -0.9419845 0.2091628 0.518627 -1.267794 0.2091628 0.518627 -1.705268 0.2091628 0.518627 -2.292679 0.2091628 0.518627 -3.081414 0.2091628 0.518627 -4.140474 0.2091628 0.518627 -5.562508 0.2091628 0.518627 -7.471917 0.2091628 0.518627 -10.03574 0.2091628 0.518627 -13.47828 0.2091628 0.518627 -18.10068 0.2091628 0.518627 -24.30731 0.2091628 0.518627 -32.64117 0.2091628 0.518627 -43.83129 0.2091628 0.518627 -58.85664 0.2091628 0.518627 --0.0175068 0.2838106 0.518627 --0.01161267 0.2838106 0.518627 --0.005718534 0.2838106 0.518627 -0.0001755984 0.2838106 0.518627 -0.006069731 0.2838106 0.518627 -0.01197402 0.2838106 0.518627 -0.01903886 0.2838106 0.518627 -0.02852504 0.2838106 0.518627 -0.04126244 0.2838106 0.518627 -0.05836535 0.2838106 0.518627 -0.08132997 0.2838106 0.518627 -0.1121653 0.2838106 0.518627 -0.1535689 0.2838106 0.518627 -0.2091628 0.2838106 0.518627 -0.2838106 0.2838106 0.518627 -0.3840425 0.2838106 0.518627 -0.518627 0.2838106 0.518627 -0.6993381 0.2838106 0.518627 -0.9419845 0.2838106 0.518627 -1.267794 0.2838106 0.518627 -1.705268 0.2838106 0.518627 -2.292679 0.2838106 0.518627 -3.081414 0.2838106 0.518627 -4.140474 0.2838106 0.518627 -5.562508 0.2838106 0.518627 -7.471917 0.2838106 0.518627 -10.03574 0.2838106 0.518627 -13.47828 0.2838106 0.518627 -18.10068 0.2838106 0.518627 -24.30731 0.2838106 0.518627 -32.64117 0.2838106 0.518627 -43.83129 0.2838106 0.518627 -58.85664 0.2838106 0.518627 --0.0175068 0.3840425 0.518627 --0.01161267 0.3840425 0.518627 --0.005718534 0.3840425 0.518627 -0.0001755984 0.3840425 0.518627 -0.006069731 0.3840425 0.518627 -0.01197402 0.3840425 0.518627 -0.01903886 0.3840425 0.518627 -0.02852504 0.3840425 0.518627 -0.04126244 0.3840425 0.518627 -0.05836535 0.3840425 0.518627 -0.08132997 0.3840425 0.518627 -0.1121653 0.3840425 0.518627 -0.1535689 0.3840425 0.518627 -0.2091628 0.3840425 0.518627 -0.2838106 0.3840425 0.518627 -0.3840425 0.3840425 0.518627 -0.518627 0.3840425 0.518627 -0.6993381 0.3840425 0.518627 -0.9419845 0.3840425 0.518627 -1.267794 0.3840425 0.518627 -1.705268 0.3840425 0.518627 -2.292679 0.3840425 0.518627 -3.081414 0.3840425 0.518627 -4.140474 0.3840425 0.518627 -5.562508 0.3840425 0.518627 -7.471917 0.3840425 0.518627 -10.03574 0.3840425 0.518627 -13.47828 0.3840425 0.518627 -18.10068 0.3840425 0.518627 -24.30731 0.3840425 0.518627 -32.64117 0.3840425 0.518627 -43.83129 0.3840425 0.518627 -58.85664 0.3840425 0.518627 --0.0175068 0.518627 0.518627 --0.01161267 0.518627 0.518627 --0.005718534 0.518627 0.518627 -0.0001755984 0.518627 0.518627 -0.006069731 0.518627 0.518627 -0.01197402 0.518627 0.518627 -0.01903886 0.518627 0.518627 -0.02852504 0.518627 0.518627 -0.04126244 0.518627 0.518627 -0.05836535 0.518627 0.518627 -0.08132997 0.518627 0.518627 -0.1121653 0.518627 0.518627 -0.1535689 0.518627 0.518627 -0.2091628 0.518627 0.518627 -0.2838106 0.518627 0.518627 -0.3840425 0.518627 0.518627 -0.518627 0.518627 0.518627 -0.6993381 0.518627 0.518627 -0.9419845 0.518627 0.518627 -1.267794 0.518627 0.518627 -1.705268 0.518627 0.518627 -2.292679 0.518627 0.518627 -3.081414 0.518627 0.518627 -4.140474 0.518627 0.518627 -5.562508 0.518627 0.518627 -7.471917 0.518627 0.518627 -10.03574 0.518627 0.518627 -13.47828 0.518627 0.518627 -18.10068 0.518627 0.518627 -24.30731 0.518627 0.518627 -32.64117 0.518627 0.518627 -43.83129 0.518627 0.518627 -58.85664 0.518627 0.518627 --0.0175068 0.6993381 0.518627 --0.01161267 0.6993381 0.518627 --0.005718534 0.6993381 0.518627 -0.0001755984 0.6993381 0.518627 -0.006069731 0.6993381 0.518627 -0.01197402 0.6993381 0.518627 -0.01903886 0.6993381 0.518627 -0.02852504 0.6993381 0.518627 -0.04126244 0.6993381 0.518627 -0.05836535 0.6993381 0.518627 -0.08132997 0.6993381 0.518627 -0.1121653 0.6993381 0.518627 -0.1535689 0.6993381 0.518627 -0.2091628 0.6993381 0.518627 -0.2838106 0.6993381 0.518627 -0.3840425 0.6993381 0.518627 -0.518627 0.6993381 0.518627 -0.6993381 0.6993381 0.518627 -0.9419845 0.6993381 0.518627 -1.267794 0.6993381 0.518627 -1.705268 0.6993381 0.518627 -2.292679 0.6993381 0.518627 -3.081414 0.6993381 0.518627 -4.140474 0.6993381 0.518627 -5.562508 0.6993381 0.518627 -7.471917 0.6993381 0.518627 -10.03574 0.6993381 0.518627 -13.47828 0.6993381 0.518627 -18.10068 0.6993381 0.518627 -24.30731 0.6993381 0.518627 -32.64117 0.6993381 0.518627 -43.83129 0.6993381 0.518627 -58.85664 0.6993381 0.518627 --0.0175068 0.9419845 0.518627 --0.01161267 0.9419845 0.518627 --0.005718534 0.9419845 0.518627 -0.0001755984 0.9419845 0.518627 -0.006069731 0.9419845 0.518627 -0.01197402 0.9419845 0.518627 -0.01903886 0.9419845 0.518627 -0.02852504 0.9419845 0.518627 -0.04126244 0.9419845 0.518627 -0.05836535 0.9419845 0.518627 -0.08132997 0.9419845 0.518627 -0.1121653 0.9419845 0.518627 -0.1535689 0.9419845 0.518627 -0.2091628 0.9419845 0.518627 -0.2838106 0.9419845 0.518627 -0.3840425 0.9419845 0.518627 -0.518627 0.9419845 0.518627 -0.6993381 0.9419845 0.518627 -0.9419845 0.9419845 0.518627 -1.267794 0.9419845 0.518627 -1.705268 0.9419845 0.518627 -2.292679 0.9419845 0.518627 -3.081414 0.9419845 0.518627 -4.140474 0.9419845 0.518627 -5.562508 0.9419845 0.518627 -7.471917 0.9419845 0.518627 -10.03574 0.9419845 0.518627 -13.47828 0.9419845 0.518627 -18.10068 0.9419845 0.518627 -24.30731 0.9419845 0.518627 -32.64117 0.9419845 0.518627 -43.83129 0.9419845 0.518627 -58.85664 0.9419845 0.518627 --0.0175068 1.267794 0.518627 --0.01161267 1.267794 0.518627 --0.005718534 1.267794 0.518627 -0.0001755984 1.267794 0.518627 -0.006069731 1.267794 0.518627 -0.01197402 1.267794 0.518627 -0.01903886 1.267794 0.518627 -0.02852504 1.267794 0.518627 -0.04126244 1.267794 0.518627 -0.05836535 1.267794 0.518627 -0.08132997 1.267794 0.518627 -0.1121653 1.267794 0.518627 -0.1535689 1.267794 0.518627 -0.2091628 1.267794 0.518627 -0.2838106 1.267794 0.518627 -0.3840425 1.267794 0.518627 -0.518627 1.267794 0.518627 -0.6993381 1.267794 0.518627 -0.9419845 1.267794 0.518627 -1.267794 1.267794 0.518627 -1.705268 1.267794 0.518627 -2.292679 1.267794 0.518627 -3.081414 1.267794 0.518627 -4.140474 1.267794 0.518627 -5.562508 1.267794 0.518627 -7.471917 1.267794 0.518627 -10.03574 1.267794 0.518627 -13.47828 1.267794 0.518627 -18.10068 1.267794 0.518627 -24.30731 1.267794 0.518627 -32.64117 1.267794 0.518627 -43.83129 1.267794 0.518627 -58.85664 1.267794 0.518627 --0.0175068 1.705268 0.518627 --0.01161267 1.705268 0.518627 --0.005718534 1.705268 0.518627 -0.0001755984 1.705268 0.518627 -0.006069731 1.705268 0.518627 -0.01197402 1.705268 0.518627 -0.01903886 1.705268 0.518627 -0.02852504 1.705268 0.518627 -0.04126244 1.705268 0.518627 -0.05836535 1.705268 0.518627 -0.08132997 1.705268 0.518627 -0.1121653 1.705268 0.518627 -0.1535689 1.705268 0.518627 -0.2091628 1.705268 0.518627 -0.2838106 1.705268 0.518627 -0.3840425 1.705268 0.518627 -0.518627 1.705268 0.518627 -0.6993381 1.705268 0.518627 -0.9419845 1.705268 0.518627 -1.267794 1.705268 0.518627 -1.705268 1.705268 0.518627 -2.292679 1.705268 0.518627 -3.081414 1.705268 0.518627 -4.140474 1.705268 0.518627 -5.562508 1.705268 0.518627 -7.471917 1.705268 0.518627 -10.03574 1.705268 0.518627 -13.47828 1.705268 0.518627 -18.10068 1.705268 0.518627 -24.30731 1.705268 0.518627 -32.64117 1.705268 0.518627 -43.83129 1.705268 0.518627 -58.85664 1.705268 0.518627 --0.0175068 2.292679 0.518627 --0.01161267 2.292679 0.518627 --0.005718534 2.292679 0.518627 -0.0001755984 2.292679 0.518627 -0.006069731 2.292679 0.518627 -0.01197402 2.292679 0.518627 -0.01903886 2.292679 0.518627 -0.02852504 2.292679 0.518627 -0.04126244 2.292679 0.518627 -0.05836535 2.292679 0.518627 -0.08132997 2.292679 0.518627 -0.1121653 2.292679 0.518627 -0.1535689 2.292679 0.518627 -0.2091628 2.292679 0.518627 -0.2838106 2.292679 0.518627 -0.3840425 2.292679 0.518627 -0.518627 2.292679 0.518627 -0.6993381 2.292679 0.518627 -0.9419845 2.292679 0.518627 -1.267794 2.292679 0.518627 -1.705268 2.292679 0.518627 -2.292679 2.292679 0.518627 -3.081414 2.292679 0.518627 -4.140474 2.292679 0.518627 -5.562508 2.292679 0.518627 -7.471917 2.292679 0.518627 -10.03574 2.292679 0.518627 -13.47828 2.292679 0.518627 -18.10068 2.292679 0.518627 -24.30731 2.292679 0.518627 -32.64117 2.292679 0.518627 -43.83129 2.292679 0.518627 -58.85664 2.292679 0.518627 --0.0175068 3.081414 0.518627 --0.01161267 3.081414 0.518627 --0.005718534 3.081414 0.518627 -0.0001755984 3.081414 0.518627 -0.006069731 3.081414 0.518627 -0.01197402 3.081414 0.518627 -0.01903886 3.081414 0.518627 -0.02852504 3.081414 0.518627 -0.04126244 3.081414 0.518627 -0.05836535 3.081414 0.518627 -0.08132997 3.081414 0.518627 -0.1121653 3.081414 0.518627 -0.1535689 3.081414 0.518627 -0.2091628 3.081414 0.518627 -0.2838106 3.081414 0.518627 -0.3840425 3.081414 0.518627 -0.518627 3.081414 0.518627 -0.6993381 3.081414 0.518627 -0.9419845 3.081414 0.518627 -1.267794 3.081414 0.518627 -1.705268 3.081414 0.518627 -2.292679 3.081414 0.518627 -3.081414 3.081414 0.518627 -4.140474 3.081414 0.518627 -5.562508 3.081414 0.518627 -7.471917 3.081414 0.518627 -10.03574 3.081414 0.518627 -13.47828 3.081414 0.518627 -18.10068 3.081414 0.518627 -24.30731 3.081414 0.518627 -32.64117 3.081414 0.518627 -43.83129 3.081414 0.518627 -58.85664 3.081414 0.518627 --0.0175068 4.140474 0.518627 --0.01161267 4.140474 0.518627 --0.005718534 4.140474 0.518627 -0.0001755984 4.140474 0.518627 -0.006069731 4.140474 0.518627 -0.01197402 4.140474 0.518627 -0.01903886 4.140474 0.518627 -0.02852504 4.140474 0.518627 -0.04126244 4.140474 0.518627 -0.05836535 4.140474 0.518627 -0.08132997 4.140474 0.518627 -0.1121653 4.140474 0.518627 -0.1535689 4.140474 0.518627 -0.2091628 4.140474 0.518627 -0.2838106 4.140474 0.518627 -0.3840425 4.140474 0.518627 -0.518627 4.140474 0.518627 -0.6993381 4.140474 0.518627 -0.9419845 4.140474 0.518627 -1.267794 4.140474 0.518627 -1.705268 4.140474 0.518627 -2.292679 4.140474 0.518627 -3.081414 4.140474 0.518627 -4.140474 4.140474 0.518627 -5.562508 4.140474 0.518627 -7.471917 4.140474 0.518627 -10.03574 4.140474 0.518627 -13.47828 4.140474 0.518627 -18.10068 4.140474 0.518627 -24.30731 4.140474 0.518627 -32.64117 4.140474 0.518627 -43.83129 4.140474 0.518627 -58.85664 4.140474 0.518627 --0.0175068 5.562508 0.518627 --0.01161267 5.562508 0.518627 --0.005718534 5.562508 0.518627 -0.0001755984 5.562508 0.518627 -0.006069731 5.562508 0.518627 -0.01197402 5.562508 0.518627 -0.01903886 5.562508 0.518627 -0.02852504 5.562508 0.518627 -0.04126244 5.562508 0.518627 -0.05836535 5.562508 0.518627 -0.08132997 5.562508 0.518627 -0.1121653 5.562508 0.518627 -0.1535689 5.562508 0.518627 -0.2091628 5.562508 0.518627 -0.2838106 5.562508 0.518627 -0.3840425 5.562508 0.518627 -0.518627 5.562508 0.518627 -0.6993381 5.562508 0.518627 -0.9419845 5.562508 0.518627 -1.267794 5.562508 0.518627 -1.705268 5.562508 0.518627 -2.292679 5.562508 0.518627 -3.081414 5.562508 0.518627 -4.140474 5.562508 0.518627 -5.562508 5.562508 0.518627 -7.471917 5.562508 0.518627 -10.03574 5.562508 0.518627 -13.47828 5.562508 0.518627 -18.10068 5.562508 0.518627 -24.30731 5.562508 0.518627 -32.64117 5.562508 0.518627 -43.83129 5.562508 0.518627 -58.85664 5.562508 0.518627 --0.0175068 7.471917 0.518627 --0.01161267 7.471917 0.518627 --0.005718534 7.471917 0.518627 -0.0001755984 7.471917 0.518627 -0.006069731 7.471917 0.518627 -0.01197402 7.471917 0.518627 -0.01903886 7.471917 0.518627 -0.02852504 7.471917 0.518627 -0.04126244 7.471917 0.518627 -0.05836535 7.471917 0.518627 -0.08132997 7.471917 0.518627 -0.1121653 7.471917 0.518627 -0.1535689 7.471917 0.518627 -0.2091628 7.471917 0.518627 -0.2838106 7.471917 0.518627 -0.3840425 7.471917 0.518627 -0.518627 7.471917 0.518627 -0.6993381 7.471917 0.518627 -0.9419845 7.471917 0.518627 -1.267794 7.471917 0.518627 -1.705268 7.471917 0.518627 -2.292679 7.471917 0.518627 -3.081414 7.471917 0.518627 -4.140474 7.471917 0.518627 -5.562508 7.471917 0.518627 -7.471917 7.471917 0.518627 -10.03574 7.471917 0.518627 -13.47828 7.471917 0.518627 -18.10068 7.471917 0.518627 -24.30731 7.471917 0.518627 -32.64117 7.471917 0.518627 -43.83129 7.471917 0.518627 -58.85664 7.471917 0.518627 --0.0175068 10.03574 0.518627 --0.01161267 10.03574 0.518627 --0.005718534 10.03574 0.518627 -0.0001755984 10.03574 0.518627 -0.006069731 10.03574 0.518627 -0.01197402 10.03574 0.518627 -0.01903886 10.03574 0.518627 -0.02852504 10.03574 0.518627 -0.04126244 10.03574 0.518627 -0.05836535 10.03574 0.518627 -0.08132997 10.03574 0.518627 -0.1121653 10.03574 0.518627 -0.1535689 10.03574 0.518627 -0.2091628 10.03574 0.518627 -0.2838106 10.03574 0.518627 -0.3840425 10.03574 0.518627 -0.518627 10.03574 0.518627 -0.6993381 10.03574 0.518627 -0.9419845 10.03574 0.518627 -1.267794 10.03574 0.518627 -1.705268 10.03574 0.518627 -2.292679 10.03574 0.518627 -3.081414 10.03574 0.518627 -4.140474 10.03574 0.518627 -5.562508 10.03574 0.518627 -7.471917 10.03574 0.518627 -10.03574 10.03574 0.518627 -13.47828 10.03574 0.518627 -18.10068 10.03574 0.518627 -24.30731 10.03574 0.518627 -32.64117 10.03574 0.518627 -43.83129 10.03574 0.518627 -58.85664 10.03574 0.518627 --0.0175068 13.47828 0.518627 --0.01161267 13.47828 0.518627 --0.005718534 13.47828 0.518627 -0.0001755984 13.47828 0.518627 -0.006069731 13.47828 0.518627 -0.01197402 13.47828 0.518627 -0.01903886 13.47828 0.518627 -0.02852504 13.47828 0.518627 -0.04126244 13.47828 0.518627 -0.05836535 13.47828 0.518627 -0.08132997 13.47828 0.518627 -0.1121653 13.47828 0.518627 -0.1535689 13.47828 0.518627 -0.2091628 13.47828 0.518627 -0.2838106 13.47828 0.518627 -0.3840425 13.47828 0.518627 -0.518627 13.47828 0.518627 -0.6993381 13.47828 0.518627 -0.9419845 13.47828 0.518627 -1.267794 13.47828 0.518627 -1.705268 13.47828 0.518627 -2.292679 13.47828 0.518627 -3.081414 13.47828 0.518627 -4.140474 13.47828 0.518627 -5.562508 13.47828 0.518627 -7.471917 13.47828 0.518627 -10.03574 13.47828 0.518627 -13.47828 13.47828 0.518627 -18.10068 13.47828 0.518627 -24.30731 13.47828 0.518627 -32.64117 13.47828 0.518627 -43.83129 13.47828 0.518627 -58.85664 13.47828 0.518627 --0.0175068 18.10068 0.518627 --0.01161267 18.10068 0.518627 --0.005718534 18.10068 0.518627 -0.0001755984 18.10068 0.518627 -0.006069731 18.10068 0.518627 -0.01197402 18.10068 0.518627 -0.01903886 18.10068 0.518627 -0.02852504 18.10068 0.518627 -0.04126244 18.10068 0.518627 -0.05836535 18.10068 0.518627 -0.08132997 18.10068 0.518627 -0.1121653 18.10068 0.518627 -0.1535689 18.10068 0.518627 -0.2091628 18.10068 0.518627 -0.2838106 18.10068 0.518627 -0.3840425 18.10068 0.518627 -0.518627 18.10068 0.518627 -0.6993381 18.10068 0.518627 -0.9419845 18.10068 0.518627 -1.267794 18.10068 0.518627 -1.705268 18.10068 0.518627 -2.292679 18.10068 0.518627 -3.081414 18.10068 0.518627 -4.140474 18.10068 0.518627 -5.562508 18.10068 0.518627 -7.471917 18.10068 0.518627 -10.03574 18.10068 0.518627 -13.47828 18.10068 0.518627 -18.10068 18.10068 0.518627 -24.30731 18.10068 0.518627 -32.64117 18.10068 0.518627 -43.83129 18.10068 0.518627 -58.85664 18.10068 0.518627 --0.0175068 24.30731 0.518627 --0.01161267 24.30731 0.518627 --0.005718534 24.30731 0.518627 -0.0001755984 24.30731 0.518627 -0.006069731 24.30731 0.518627 -0.01197402 24.30731 0.518627 -0.01903886 24.30731 0.518627 -0.02852504 24.30731 0.518627 -0.04126244 24.30731 0.518627 -0.05836535 24.30731 0.518627 -0.08132997 24.30731 0.518627 -0.1121653 24.30731 0.518627 -0.1535689 24.30731 0.518627 -0.2091628 24.30731 0.518627 -0.2838106 24.30731 0.518627 -0.3840425 24.30731 0.518627 -0.518627 24.30731 0.518627 -0.6993381 24.30731 0.518627 -0.9419845 24.30731 0.518627 -1.267794 24.30731 0.518627 -1.705268 24.30731 0.518627 -2.292679 24.30731 0.518627 -3.081414 24.30731 0.518627 -4.140474 24.30731 0.518627 -5.562508 24.30731 0.518627 -7.471917 24.30731 0.518627 -10.03574 24.30731 0.518627 -13.47828 24.30731 0.518627 -18.10068 24.30731 0.518627 -24.30731 24.30731 0.518627 -32.64117 24.30731 0.518627 -43.83129 24.30731 0.518627 -58.85664 24.30731 0.518627 --0.0175068 32.64117 0.518627 --0.01161267 32.64117 0.518627 --0.005718534 32.64117 0.518627 -0.0001755984 32.64117 0.518627 -0.006069731 32.64117 0.518627 -0.01197402 32.64117 0.518627 -0.01903886 32.64117 0.518627 -0.02852504 32.64117 0.518627 -0.04126244 32.64117 0.518627 -0.05836535 32.64117 0.518627 -0.08132997 32.64117 0.518627 -0.1121653 32.64117 0.518627 -0.1535689 32.64117 0.518627 -0.2091628 32.64117 0.518627 -0.2838106 32.64117 0.518627 -0.3840425 32.64117 0.518627 -0.518627 32.64117 0.518627 -0.6993381 32.64117 0.518627 -0.9419845 32.64117 0.518627 -1.267794 32.64117 0.518627 -1.705268 32.64117 0.518627 -2.292679 32.64117 0.518627 -3.081414 32.64117 0.518627 -4.140474 32.64117 0.518627 -5.562508 32.64117 0.518627 -7.471917 32.64117 0.518627 -10.03574 32.64117 0.518627 -13.47828 32.64117 0.518627 -18.10068 32.64117 0.518627 -24.30731 32.64117 0.518627 -32.64117 32.64117 0.518627 -43.83129 32.64117 0.518627 -58.85664 32.64117 0.518627 --0.0175068 43.83129 0.518627 --0.01161267 43.83129 0.518627 --0.005718534 43.83129 0.518627 -0.0001755984 43.83129 0.518627 -0.006069731 43.83129 0.518627 -0.01197402 43.83129 0.518627 -0.01903886 43.83129 0.518627 -0.02852504 43.83129 0.518627 -0.04126244 43.83129 0.518627 -0.05836535 43.83129 0.518627 -0.08132997 43.83129 0.518627 -0.1121653 43.83129 0.518627 -0.1535689 43.83129 0.518627 -0.2091628 43.83129 0.518627 -0.2838106 43.83129 0.518627 -0.3840425 43.83129 0.518627 -0.518627 43.83129 0.518627 -0.6993381 43.83129 0.518627 -0.9419845 43.83129 0.518627 -1.267794 43.83129 0.518627 -1.705268 43.83129 0.518627 -2.292679 43.83129 0.518627 -3.081414 43.83129 0.518627 -4.140474 43.83129 0.518627 -5.562508 43.83129 0.518627 -7.471917 43.83129 0.518627 -10.03574 43.83129 0.518627 -13.47828 43.83129 0.518627 -18.10068 43.83129 0.518627 -24.30731 43.83129 0.518627 -32.64117 43.83129 0.518627 -43.83129 43.83129 0.518627 -58.85664 43.83129 0.518627 --0.0175068 58.85664 0.518627 --0.01161267 58.85664 0.518627 --0.005718534 58.85664 0.518627 -0.0001755984 58.85664 0.518627 -0.006069731 58.85664 0.518627 -0.01197402 58.85664 0.518627 -0.01903886 58.85664 0.518627 -0.02852504 58.85664 0.518627 -0.04126244 58.85664 0.518627 -0.05836535 58.85664 0.518627 -0.08132997 58.85664 0.518627 -0.1121653 58.85664 0.518627 -0.1535689 58.85664 0.518627 -0.2091628 58.85664 0.518627 -0.2838106 58.85664 0.518627 -0.3840425 58.85664 0.518627 -0.518627 58.85664 0.518627 -0.6993381 58.85664 0.518627 -0.9419845 58.85664 0.518627 -1.267794 58.85664 0.518627 -1.705268 58.85664 0.518627 -2.292679 58.85664 0.518627 -3.081414 58.85664 0.518627 -4.140474 58.85664 0.518627 -5.562508 58.85664 0.518627 -7.471917 58.85664 0.518627 -10.03574 58.85664 0.518627 -13.47828 58.85664 0.518627 -18.10068 58.85664 0.518627 -24.30731 58.85664 0.518627 -32.64117 58.85664 0.518627 -43.83129 58.85664 0.518627 -58.85664 58.85664 0.518627 --0.0175068 -0.0175068 0.6993381 --0.01161267 -0.0175068 0.6993381 --0.005718534 -0.0175068 0.6993381 -0.0001755984 -0.0175068 0.6993381 -0.006069731 -0.0175068 0.6993381 -0.01197402 -0.0175068 0.6993381 -0.01903886 -0.0175068 0.6993381 -0.02852504 -0.0175068 0.6993381 -0.04126244 -0.0175068 0.6993381 -0.05836535 -0.0175068 0.6993381 -0.08132997 -0.0175068 0.6993381 -0.1121653 -0.0175068 0.6993381 -0.1535689 -0.0175068 0.6993381 -0.2091628 -0.0175068 0.6993381 -0.2838106 -0.0175068 0.6993381 -0.3840425 -0.0175068 0.6993381 -0.518627 -0.0175068 0.6993381 -0.6993381 -0.0175068 0.6993381 -0.9419845 -0.0175068 0.6993381 -1.267794 -0.0175068 0.6993381 -1.705268 -0.0175068 0.6993381 -2.292679 -0.0175068 0.6993381 -3.081414 -0.0175068 0.6993381 -4.140474 -0.0175068 0.6993381 -5.562508 -0.0175068 0.6993381 -7.471917 -0.0175068 0.6993381 -10.03574 -0.0175068 0.6993381 -13.47828 -0.0175068 0.6993381 -18.10068 -0.0175068 0.6993381 -24.30731 -0.0175068 0.6993381 -32.64117 -0.0175068 0.6993381 -43.83129 -0.0175068 0.6993381 -58.85664 -0.0175068 0.6993381 --0.0175068 -0.01161267 0.6993381 --0.01161267 -0.01161267 0.6993381 --0.005718534 -0.01161267 0.6993381 -0.0001755984 -0.01161267 0.6993381 -0.006069731 -0.01161267 0.6993381 -0.01197402 -0.01161267 0.6993381 -0.01903886 -0.01161267 0.6993381 -0.02852504 -0.01161267 0.6993381 -0.04126244 -0.01161267 0.6993381 -0.05836535 -0.01161267 0.6993381 -0.08132997 -0.01161267 0.6993381 -0.1121653 -0.01161267 0.6993381 -0.1535689 -0.01161267 0.6993381 -0.2091628 -0.01161267 0.6993381 -0.2838106 -0.01161267 0.6993381 -0.3840425 -0.01161267 0.6993381 -0.518627 -0.01161267 0.6993381 -0.6993381 -0.01161267 0.6993381 -0.9419845 -0.01161267 0.6993381 -1.267794 -0.01161267 0.6993381 -1.705268 -0.01161267 0.6993381 -2.292679 -0.01161267 0.6993381 -3.081414 -0.01161267 0.6993381 -4.140474 -0.01161267 0.6993381 -5.562508 -0.01161267 0.6993381 -7.471917 -0.01161267 0.6993381 -10.03574 -0.01161267 0.6993381 -13.47828 -0.01161267 0.6993381 -18.10068 -0.01161267 0.6993381 -24.30731 -0.01161267 0.6993381 -32.64117 -0.01161267 0.6993381 -43.83129 -0.01161267 0.6993381 -58.85664 -0.01161267 0.6993381 --0.0175068 -0.005718534 0.6993381 --0.01161267 -0.005718534 0.6993381 --0.005718534 -0.005718534 0.6993381 -0.0001755984 -0.005718534 0.6993381 -0.006069731 -0.005718534 0.6993381 -0.01197402 -0.005718534 0.6993381 -0.01903886 -0.005718534 0.6993381 -0.02852504 -0.005718534 0.6993381 -0.04126244 -0.005718534 0.6993381 -0.05836535 -0.005718534 0.6993381 -0.08132997 -0.005718534 0.6993381 -0.1121653 -0.005718534 0.6993381 -0.1535689 -0.005718534 0.6993381 -0.2091628 -0.005718534 0.6993381 -0.2838106 -0.005718534 0.6993381 -0.3840425 -0.005718534 0.6993381 -0.518627 -0.005718534 0.6993381 -0.6993381 -0.005718534 0.6993381 -0.9419845 -0.005718534 0.6993381 -1.267794 -0.005718534 0.6993381 -1.705268 -0.005718534 0.6993381 -2.292679 -0.005718534 0.6993381 -3.081414 -0.005718534 0.6993381 -4.140474 -0.005718534 0.6993381 -5.562508 -0.005718534 0.6993381 -7.471917 -0.005718534 0.6993381 -10.03574 -0.005718534 0.6993381 -13.47828 -0.005718534 0.6993381 -18.10068 -0.005718534 0.6993381 -24.30731 -0.005718534 0.6993381 -32.64117 -0.005718534 0.6993381 -43.83129 -0.005718534 0.6993381 -58.85664 -0.005718534 0.6993381 --0.0175068 0.0001755984 0.6993381 --0.01161267 0.0001755984 0.6993381 --0.005718534 0.0001755984 0.6993381 -0.0001755984 0.0001755984 0.6993381 -0.006069731 0.0001755984 0.6993381 -0.01197402 0.0001755984 0.6993381 -0.01903886 0.0001755984 0.6993381 -0.02852504 0.0001755984 0.6993381 -0.04126244 0.0001755984 0.6993381 -0.05836535 0.0001755984 0.6993381 -0.08132997 0.0001755984 0.6993381 -0.1121653 0.0001755984 0.6993381 -0.1535689 0.0001755984 0.6993381 -0.2091628 0.0001755984 0.6993381 -0.2838106 0.0001755984 0.6993381 -0.3840425 0.0001755984 0.6993381 -0.518627 0.0001755984 0.6993381 -0.6993381 0.0001755984 0.6993381 -0.9419845 0.0001755984 0.6993381 -1.267794 0.0001755984 0.6993381 -1.705268 0.0001755984 0.6993381 -2.292679 0.0001755984 0.6993381 -3.081414 0.0001755984 0.6993381 -4.140474 0.0001755984 0.6993381 -5.562508 0.0001755984 0.6993381 -7.471917 0.0001755984 0.6993381 -10.03574 0.0001755984 0.6993381 -13.47828 0.0001755984 0.6993381 -18.10068 0.0001755984 0.6993381 -24.30731 0.0001755984 0.6993381 -32.64117 0.0001755984 0.6993381 -43.83129 0.0001755984 0.6993381 -58.85664 0.0001755984 0.6993381 --0.0175068 0.006069731 0.6993381 --0.01161267 0.006069731 0.6993381 --0.005718534 0.006069731 0.6993381 -0.0001755984 0.006069731 0.6993381 -0.006069731 0.006069731 0.6993381 -0.01197402 0.006069731 0.6993381 -0.01903886 0.006069731 0.6993381 -0.02852504 0.006069731 0.6993381 -0.04126244 0.006069731 0.6993381 -0.05836535 0.006069731 0.6993381 -0.08132997 0.006069731 0.6993381 -0.1121653 0.006069731 0.6993381 -0.1535689 0.006069731 0.6993381 -0.2091628 0.006069731 0.6993381 -0.2838106 0.006069731 0.6993381 -0.3840425 0.006069731 0.6993381 -0.518627 0.006069731 0.6993381 -0.6993381 0.006069731 0.6993381 -0.9419845 0.006069731 0.6993381 -1.267794 0.006069731 0.6993381 -1.705268 0.006069731 0.6993381 -2.292679 0.006069731 0.6993381 -3.081414 0.006069731 0.6993381 -4.140474 0.006069731 0.6993381 -5.562508 0.006069731 0.6993381 -7.471917 0.006069731 0.6993381 -10.03574 0.006069731 0.6993381 -13.47828 0.006069731 0.6993381 -18.10068 0.006069731 0.6993381 -24.30731 0.006069731 0.6993381 -32.64117 0.006069731 0.6993381 -43.83129 0.006069731 0.6993381 -58.85664 0.006069731 0.6993381 --0.0175068 0.01197402 0.6993381 --0.01161267 0.01197402 0.6993381 --0.005718534 0.01197402 0.6993381 -0.0001755984 0.01197402 0.6993381 -0.006069731 0.01197402 0.6993381 -0.01197402 0.01197402 0.6993381 -0.01903886 0.01197402 0.6993381 -0.02852504 0.01197402 0.6993381 -0.04126244 0.01197402 0.6993381 -0.05836535 0.01197402 0.6993381 -0.08132997 0.01197402 0.6993381 -0.1121653 0.01197402 0.6993381 -0.1535689 0.01197402 0.6993381 -0.2091628 0.01197402 0.6993381 -0.2838106 0.01197402 0.6993381 -0.3840425 0.01197402 0.6993381 -0.518627 0.01197402 0.6993381 -0.6993381 0.01197402 0.6993381 -0.9419845 0.01197402 0.6993381 -1.267794 0.01197402 0.6993381 -1.705268 0.01197402 0.6993381 -2.292679 0.01197402 0.6993381 -3.081414 0.01197402 0.6993381 -4.140474 0.01197402 0.6993381 -5.562508 0.01197402 0.6993381 -7.471917 0.01197402 0.6993381 -10.03574 0.01197402 0.6993381 -13.47828 0.01197402 0.6993381 -18.10068 0.01197402 0.6993381 -24.30731 0.01197402 0.6993381 -32.64117 0.01197402 0.6993381 -43.83129 0.01197402 0.6993381 -58.85664 0.01197402 0.6993381 --0.0175068 0.01903886 0.6993381 --0.01161267 0.01903886 0.6993381 --0.005718534 0.01903886 0.6993381 -0.0001755984 0.01903886 0.6993381 -0.006069731 0.01903886 0.6993381 -0.01197402 0.01903886 0.6993381 -0.01903886 0.01903886 0.6993381 -0.02852504 0.01903886 0.6993381 -0.04126244 0.01903886 0.6993381 -0.05836535 0.01903886 0.6993381 -0.08132997 0.01903886 0.6993381 -0.1121653 0.01903886 0.6993381 -0.1535689 0.01903886 0.6993381 -0.2091628 0.01903886 0.6993381 -0.2838106 0.01903886 0.6993381 -0.3840425 0.01903886 0.6993381 -0.518627 0.01903886 0.6993381 -0.6993381 0.01903886 0.6993381 -0.9419845 0.01903886 0.6993381 -1.267794 0.01903886 0.6993381 -1.705268 0.01903886 0.6993381 -2.292679 0.01903886 0.6993381 -3.081414 0.01903886 0.6993381 -4.140474 0.01903886 0.6993381 -5.562508 0.01903886 0.6993381 -7.471917 0.01903886 0.6993381 -10.03574 0.01903886 0.6993381 -13.47828 0.01903886 0.6993381 -18.10068 0.01903886 0.6993381 -24.30731 0.01903886 0.6993381 -32.64117 0.01903886 0.6993381 -43.83129 0.01903886 0.6993381 -58.85664 0.01903886 0.6993381 --0.0175068 0.02852504 0.6993381 --0.01161267 0.02852504 0.6993381 --0.005718534 0.02852504 0.6993381 -0.0001755984 0.02852504 0.6993381 -0.006069731 0.02852504 0.6993381 -0.01197402 0.02852504 0.6993381 -0.01903886 0.02852504 0.6993381 -0.02852504 0.02852504 0.6993381 -0.04126244 0.02852504 0.6993381 -0.05836535 0.02852504 0.6993381 -0.08132997 0.02852504 0.6993381 -0.1121653 0.02852504 0.6993381 -0.1535689 0.02852504 0.6993381 -0.2091628 0.02852504 0.6993381 -0.2838106 0.02852504 0.6993381 -0.3840425 0.02852504 0.6993381 -0.518627 0.02852504 0.6993381 -0.6993381 0.02852504 0.6993381 -0.9419845 0.02852504 0.6993381 -1.267794 0.02852504 0.6993381 -1.705268 0.02852504 0.6993381 -2.292679 0.02852504 0.6993381 -3.081414 0.02852504 0.6993381 -4.140474 0.02852504 0.6993381 -5.562508 0.02852504 0.6993381 -7.471917 0.02852504 0.6993381 -10.03574 0.02852504 0.6993381 -13.47828 0.02852504 0.6993381 -18.10068 0.02852504 0.6993381 -24.30731 0.02852504 0.6993381 -32.64117 0.02852504 0.6993381 -43.83129 0.02852504 0.6993381 -58.85664 0.02852504 0.6993381 --0.0175068 0.04126244 0.6993381 --0.01161267 0.04126244 0.6993381 --0.005718534 0.04126244 0.6993381 -0.0001755984 0.04126244 0.6993381 -0.006069731 0.04126244 0.6993381 -0.01197402 0.04126244 0.6993381 -0.01903886 0.04126244 0.6993381 -0.02852504 0.04126244 0.6993381 -0.04126244 0.04126244 0.6993381 -0.05836535 0.04126244 0.6993381 -0.08132997 0.04126244 0.6993381 -0.1121653 0.04126244 0.6993381 -0.1535689 0.04126244 0.6993381 -0.2091628 0.04126244 0.6993381 -0.2838106 0.04126244 0.6993381 -0.3840425 0.04126244 0.6993381 -0.518627 0.04126244 0.6993381 -0.6993381 0.04126244 0.6993381 -0.9419845 0.04126244 0.6993381 -1.267794 0.04126244 0.6993381 -1.705268 0.04126244 0.6993381 -2.292679 0.04126244 0.6993381 -3.081414 0.04126244 0.6993381 -4.140474 0.04126244 0.6993381 -5.562508 0.04126244 0.6993381 -7.471917 0.04126244 0.6993381 -10.03574 0.04126244 0.6993381 -13.47828 0.04126244 0.6993381 -18.10068 0.04126244 0.6993381 -24.30731 0.04126244 0.6993381 -32.64117 0.04126244 0.6993381 -43.83129 0.04126244 0.6993381 -58.85664 0.04126244 0.6993381 --0.0175068 0.05836535 0.6993381 --0.01161267 0.05836535 0.6993381 --0.005718534 0.05836535 0.6993381 -0.0001755984 0.05836535 0.6993381 -0.006069731 0.05836535 0.6993381 -0.01197402 0.05836535 0.6993381 -0.01903886 0.05836535 0.6993381 -0.02852504 0.05836535 0.6993381 -0.04126244 0.05836535 0.6993381 -0.05836535 0.05836535 0.6993381 -0.08132997 0.05836535 0.6993381 -0.1121653 0.05836535 0.6993381 -0.1535689 0.05836535 0.6993381 -0.2091628 0.05836535 0.6993381 -0.2838106 0.05836535 0.6993381 -0.3840425 0.05836535 0.6993381 -0.518627 0.05836535 0.6993381 -0.6993381 0.05836535 0.6993381 -0.9419845 0.05836535 0.6993381 -1.267794 0.05836535 0.6993381 -1.705268 0.05836535 0.6993381 -2.292679 0.05836535 0.6993381 -3.081414 0.05836535 0.6993381 -4.140474 0.05836535 0.6993381 -5.562508 0.05836535 0.6993381 -7.471917 0.05836535 0.6993381 -10.03574 0.05836535 0.6993381 -13.47828 0.05836535 0.6993381 -18.10068 0.05836535 0.6993381 -24.30731 0.05836535 0.6993381 -32.64117 0.05836535 0.6993381 -43.83129 0.05836535 0.6993381 -58.85664 0.05836535 0.6993381 --0.0175068 0.08132997 0.6993381 --0.01161267 0.08132997 0.6993381 --0.005718534 0.08132997 0.6993381 -0.0001755984 0.08132997 0.6993381 -0.006069731 0.08132997 0.6993381 -0.01197402 0.08132997 0.6993381 -0.01903886 0.08132997 0.6993381 -0.02852504 0.08132997 0.6993381 -0.04126244 0.08132997 0.6993381 -0.05836535 0.08132997 0.6993381 -0.08132997 0.08132997 0.6993381 -0.1121653 0.08132997 0.6993381 -0.1535689 0.08132997 0.6993381 -0.2091628 0.08132997 0.6993381 -0.2838106 0.08132997 0.6993381 -0.3840425 0.08132997 0.6993381 -0.518627 0.08132997 0.6993381 -0.6993381 0.08132997 0.6993381 -0.9419845 0.08132997 0.6993381 -1.267794 0.08132997 0.6993381 -1.705268 0.08132997 0.6993381 -2.292679 0.08132997 0.6993381 -3.081414 0.08132997 0.6993381 -4.140474 0.08132997 0.6993381 -5.562508 0.08132997 0.6993381 -7.471917 0.08132997 0.6993381 -10.03574 0.08132997 0.6993381 -13.47828 0.08132997 0.6993381 -18.10068 0.08132997 0.6993381 -24.30731 0.08132997 0.6993381 -32.64117 0.08132997 0.6993381 -43.83129 0.08132997 0.6993381 -58.85664 0.08132997 0.6993381 --0.0175068 0.1121653 0.6993381 --0.01161267 0.1121653 0.6993381 --0.005718534 0.1121653 0.6993381 -0.0001755984 0.1121653 0.6993381 -0.006069731 0.1121653 0.6993381 -0.01197402 0.1121653 0.6993381 -0.01903886 0.1121653 0.6993381 -0.02852504 0.1121653 0.6993381 -0.04126244 0.1121653 0.6993381 -0.05836535 0.1121653 0.6993381 -0.08132997 0.1121653 0.6993381 -0.1121653 0.1121653 0.6993381 -0.1535689 0.1121653 0.6993381 -0.2091628 0.1121653 0.6993381 -0.2838106 0.1121653 0.6993381 -0.3840425 0.1121653 0.6993381 -0.518627 0.1121653 0.6993381 -0.6993381 0.1121653 0.6993381 -0.9419845 0.1121653 0.6993381 -1.267794 0.1121653 0.6993381 -1.705268 0.1121653 0.6993381 -2.292679 0.1121653 0.6993381 -3.081414 0.1121653 0.6993381 -4.140474 0.1121653 0.6993381 -5.562508 0.1121653 0.6993381 -7.471917 0.1121653 0.6993381 -10.03574 0.1121653 0.6993381 -13.47828 0.1121653 0.6993381 -18.10068 0.1121653 0.6993381 -24.30731 0.1121653 0.6993381 -32.64117 0.1121653 0.6993381 -43.83129 0.1121653 0.6993381 -58.85664 0.1121653 0.6993381 --0.0175068 0.1535689 0.6993381 --0.01161267 0.1535689 0.6993381 --0.005718534 0.1535689 0.6993381 -0.0001755984 0.1535689 0.6993381 -0.006069731 0.1535689 0.6993381 -0.01197402 0.1535689 0.6993381 -0.01903886 0.1535689 0.6993381 -0.02852504 0.1535689 0.6993381 -0.04126244 0.1535689 0.6993381 -0.05836535 0.1535689 0.6993381 -0.08132997 0.1535689 0.6993381 -0.1121653 0.1535689 0.6993381 -0.1535689 0.1535689 0.6993381 -0.2091628 0.1535689 0.6993381 -0.2838106 0.1535689 0.6993381 -0.3840425 0.1535689 0.6993381 -0.518627 0.1535689 0.6993381 -0.6993381 0.1535689 0.6993381 -0.9419845 0.1535689 0.6993381 -1.267794 0.1535689 0.6993381 -1.705268 0.1535689 0.6993381 -2.292679 0.1535689 0.6993381 -3.081414 0.1535689 0.6993381 -4.140474 0.1535689 0.6993381 -5.562508 0.1535689 0.6993381 -7.471917 0.1535689 0.6993381 -10.03574 0.1535689 0.6993381 -13.47828 0.1535689 0.6993381 -18.10068 0.1535689 0.6993381 -24.30731 0.1535689 0.6993381 -32.64117 0.1535689 0.6993381 -43.83129 0.1535689 0.6993381 -58.85664 0.1535689 0.6993381 --0.0175068 0.2091628 0.6993381 --0.01161267 0.2091628 0.6993381 --0.005718534 0.2091628 0.6993381 -0.0001755984 0.2091628 0.6993381 -0.006069731 0.2091628 0.6993381 -0.01197402 0.2091628 0.6993381 -0.01903886 0.2091628 0.6993381 -0.02852504 0.2091628 0.6993381 -0.04126244 0.2091628 0.6993381 -0.05836535 0.2091628 0.6993381 -0.08132997 0.2091628 0.6993381 -0.1121653 0.2091628 0.6993381 -0.1535689 0.2091628 0.6993381 -0.2091628 0.2091628 0.6993381 -0.2838106 0.2091628 0.6993381 -0.3840425 0.2091628 0.6993381 -0.518627 0.2091628 0.6993381 -0.6993381 0.2091628 0.6993381 -0.9419845 0.2091628 0.6993381 -1.267794 0.2091628 0.6993381 -1.705268 0.2091628 0.6993381 -2.292679 0.2091628 0.6993381 -3.081414 0.2091628 0.6993381 -4.140474 0.2091628 0.6993381 -5.562508 0.2091628 0.6993381 -7.471917 0.2091628 0.6993381 -10.03574 0.2091628 0.6993381 -13.47828 0.2091628 0.6993381 -18.10068 0.2091628 0.6993381 -24.30731 0.2091628 0.6993381 -32.64117 0.2091628 0.6993381 -43.83129 0.2091628 0.6993381 -58.85664 0.2091628 0.6993381 --0.0175068 0.2838106 0.6993381 --0.01161267 0.2838106 0.6993381 --0.005718534 0.2838106 0.6993381 -0.0001755984 0.2838106 0.6993381 -0.006069731 0.2838106 0.6993381 -0.01197402 0.2838106 0.6993381 -0.01903886 0.2838106 0.6993381 -0.02852504 0.2838106 0.6993381 -0.04126244 0.2838106 0.6993381 -0.05836535 0.2838106 0.6993381 -0.08132997 0.2838106 0.6993381 -0.1121653 0.2838106 0.6993381 -0.1535689 0.2838106 0.6993381 -0.2091628 0.2838106 0.6993381 -0.2838106 0.2838106 0.6993381 -0.3840425 0.2838106 0.6993381 -0.518627 0.2838106 0.6993381 -0.6993381 0.2838106 0.6993381 -0.9419845 0.2838106 0.6993381 -1.267794 0.2838106 0.6993381 -1.705268 0.2838106 0.6993381 -2.292679 0.2838106 0.6993381 -3.081414 0.2838106 0.6993381 -4.140474 0.2838106 0.6993381 -5.562508 0.2838106 0.6993381 -7.471917 0.2838106 0.6993381 -10.03574 0.2838106 0.6993381 -13.47828 0.2838106 0.6993381 -18.10068 0.2838106 0.6993381 -24.30731 0.2838106 0.6993381 -32.64117 0.2838106 0.6993381 -43.83129 0.2838106 0.6993381 -58.85664 0.2838106 0.6993381 --0.0175068 0.3840425 0.6993381 --0.01161267 0.3840425 0.6993381 --0.005718534 0.3840425 0.6993381 -0.0001755984 0.3840425 0.6993381 -0.006069731 0.3840425 0.6993381 -0.01197402 0.3840425 0.6993381 -0.01903886 0.3840425 0.6993381 -0.02852504 0.3840425 0.6993381 -0.04126244 0.3840425 0.6993381 -0.05836535 0.3840425 0.6993381 -0.08132997 0.3840425 0.6993381 -0.1121653 0.3840425 0.6993381 -0.1535689 0.3840425 0.6993381 -0.2091628 0.3840425 0.6993381 -0.2838106 0.3840425 0.6993381 -0.3840425 0.3840425 0.6993381 -0.518627 0.3840425 0.6993381 -0.6993381 0.3840425 0.6993381 -0.9419845 0.3840425 0.6993381 -1.267794 0.3840425 0.6993381 -1.705268 0.3840425 0.6993381 -2.292679 0.3840425 0.6993381 -3.081414 0.3840425 0.6993381 -4.140474 0.3840425 0.6993381 -5.562508 0.3840425 0.6993381 -7.471917 0.3840425 0.6993381 -10.03574 0.3840425 0.6993381 -13.47828 0.3840425 0.6993381 -18.10068 0.3840425 0.6993381 -24.30731 0.3840425 0.6993381 -32.64117 0.3840425 0.6993381 -43.83129 0.3840425 0.6993381 -58.85664 0.3840425 0.6993381 --0.0175068 0.518627 0.6993381 --0.01161267 0.518627 0.6993381 --0.005718534 0.518627 0.6993381 -0.0001755984 0.518627 0.6993381 -0.006069731 0.518627 0.6993381 -0.01197402 0.518627 0.6993381 -0.01903886 0.518627 0.6993381 -0.02852504 0.518627 0.6993381 -0.04126244 0.518627 0.6993381 -0.05836535 0.518627 0.6993381 -0.08132997 0.518627 0.6993381 -0.1121653 0.518627 0.6993381 -0.1535689 0.518627 0.6993381 -0.2091628 0.518627 0.6993381 -0.2838106 0.518627 0.6993381 -0.3840425 0.518627 0.6993381 -0.518627 0.518627 0.6993381 -0.6993381 0.518627 0.6993381 -0.9419845 0.518627 0.6993381 -1.267794 0.518627 0.6993381 -1.705268 0.518627 0.6993381 -2.292679 0.518627 0.6993381 -3.081414 0.518627 0.6993381 -4.140474 0.518627 0.6993381 -5.562508 0.518627 0.6993381 -7.471917 0.518627 0.6993381 -10.03574 0.518627 0.6993381 -13.47828 0.518627 0.6993381 -18.10068 0.518627 0.6993381 -24.30731 0.518627 0.6993381 -32.64117 0.518627 0.6993381 -43.83129 0.518627 0.6993381 -58.85664 0.518627 0.6993381 --0.0175068 0.6993381 0.6993381 --0.01161267 0.6993381 0.6993381 --0.005718534 0.6993381 0.6993381 -0.0001755984 0.6993381 0.6993381 -0.006069731 0.6993381 0.6993381 -0.01197402 0.6993381 0.6993381 -0.01903886 0.6993381 0.6993381 -0.02852504 0.6993381 0.6993381 -0.04126244 0.6993381 0.6993381 -0.05836535 0.6993381 0.6993381 -0.08132997 0.6993381 0.6993381 -0.1121653 0.6993381 0.6993381 -0.1535689 0.6993381 0.6993381 -0.2091628 0.6993381 0.6993381 -0.2838106 0.6993381 0.6993381 -0.3840425 0.6993381 0.6993381 -0.518627 0.6993381 0.6993381 -0.6993381 0.6993381 0.6993381 -0.9419845 0.6993381 0.6993381 -1.267794 0.6993381 0.6993381 -1.705268 0.6993381 0.6993381 -2.292679 0.6993381 0.6993381 -3.081414 0.6993381 0.6993381 -4.140474 0.6993381 0.6993381 -5.562508 0.6993381 0.6993381 -7.471917 0.6993381 0.6993381 -10.03574 0.6993381 0.6993381 -13.47828 0.6993381 0.6993381 -18.10068 0.6993381 0.6993381 -24.30731 0.6993381 0.6993381 -32.64117 0.6993381 0.6993381 -43.83129 0.6993381 0.6993381 -58.85664 0.6993381 0.6993381 --0.0175068 0.9419845 0.6993381 --0.01161267 0.9419845 0.6993381 --0.005718534 0.9419845 0.6993381 -0.0001755984 0.9419845 0.6993381 -0.006069731 0.9419845 0.6993381 -0.01197402 0.9419845 0.6993381 -0.01903886 0.9419845 0.6993381 -0.02852504 0.9419845 0.6993381 -0.04126244 0.9419845 0.6993381 -0.05836535 0.9419845 0.6993381 -0.08132997 0.9419845 0.6993381 -0.1121653 0.9419845 0.6993381 -0.1535689 0.9419845 0.6993381 -0.2091628 0.9419845 0.6993381 -0.2838106 0.9419845 0.6993381 -0.3840425 0.9419845 0.6993381 -0.518627 0.9419845 0.6993381 -0.6993381 0.9419845 0.6993381 -0.9419845 0.9419845 0.6993381 -1.267794 0.9419845 0.6993381 -1.705268 0.9419845 0.6993381 -2.292679 0.9419845 0.6993381 -3.081414 0.9419845 0.6993381 -4.140474 0.9419845 0.6993381 -5.562508 0.9419845 0.6993381 -7.471917 0.9419845 0.6993381 -10.03574 0.9419845 0.6993381 -13.47828 0.9419845 0.6993381 -18.10068 0.9419845 0.6993381 -24.30731 0.9419845 0.6993381 -32.64117 0.9419845 0.6993381 -43.83129 0.9419845 0.6993381 -58.85664 0.9419845 0.6993381 --0.0175068 1.267794 0.6993381 --0.01161267 1.267794 0.6993381 --0.005718534 1.267794 0.6993381 -0.0001755984 1.267794 0.6993381 -0.006069731 1.267794 0.6993381 -0.01197402 1.267794 0.6993381 -0.01903886 1.267794 0.6993381 -0.02852504 1.267794 0.6993381 -0.04126244 1.267794 0.6993381 -0.05836535 1.267794 0.6993381 -0.08132997 1.267794 0.6993381 -0.1121653 1.267794 0.6993381 -0.1535689 1.267794 0.6993381 -0.2091628 1.267794 0.6993381 -0.2838106 1.267794 0.6993381 -0.3840425 1.267794 0.6993381 -0.518627 1.267794 0.6993381 -0.6993381 1.267794 0.6993381 -0.9419845 1.267794 0.6993381 -1.267794 1.267794 0.6993381 -1.705268 1.267794 0.6993381 -2.292679 1.267794 0.6993381 -3.081414 1.267794 0.6993381 -4.140474 1.267794 0.6993381 -5.562508 1.267794 0.6993381 -7.471917 1.267794 0.6993381 -10.03574 1.267794 0.6993381 -13.47828 1.267794 0.6993381 -18.10068 1.267794 0.6993381 -24.30731 1.267794 0.6993381 -32.64117 1.267794 0.6993381 -43.83129 1.267794 0.6993381 -58.85664 1.267794 0.6993381 --0.0175068 1.705268 0.6993381 --0.01161267 1.705268 0.6993381 --0.005718534 1.705268 0.6993381 -0.0001755984 1.705268 0.6993381 -0.006069731 1.705268 0.6993381 -0.01197402 1.705268 0.6993381 -0.01903886 1.705268 0.6993381 -0.02852504 1.705268 0.6993381 -0.04126244 1.705268 0.6993381 -0.05836535 1.705268 0.6993381 -0.08132997 1.705268 0.6993381 -0.1121653 1.705268 0.6993381 -0.1535689 1.705268 0.6993381 -0.2091628 1.705268 0.6993381 -0.2838106 1.705268 0.6993381 -0.3840425 1.705268 0.6993381 -0.518627 1.705268 0.6993381 -0.6993381 1.705268 0.6993381 -0.9419845 1.705268 0.6993381 -1.267794 1.705268 0.6993381 -1.705268 1.705268 0.6993381 -2.292679 1.705268 0.6993381 -3.081414 1.705268 0.6993381 -4.140474 1.705268 0.6993381 -5.562508 1.705268 0.6993381 -7.471917 1.705268 0.6993381 -10.03574 1.705268 0.6993381 -13.47828 1.705268 0.6993381 -18.10068 1.705268 0.6993381 -24.30731 1.705268 0.6993381 -32.64117 1.705268 0.6993381 -43.83129 1.705268 0.6993381 -58.85664 1.705268 0.6993381 --0.0175068 2.292679 0.6993381 --0.01161267 2.292679 0.6993381 --0.005718534 2.292679 0.6993381 -0.0001755984 2.292679 0.6993381 -0.006069731 2.292679 0.6993381 -0.01197402 2.292679 0.6993381 -0.01903886 2.292679 0.6993381 -0.02852504 2.292679 0.6993381 -0.04126244 2.292679 0.6993381 -0.05836535 2.292679 0.6993381 -0.08132997 2.292679 0.6993381 -0.1121653 2.292679 0.6993381 -0.1535689 2.292679 0.6993381 -0.2091628 2.292679 0.6993381 -0.2838106 2.292679 0.6993381 -0.3840425 2.292679 0.6993381 -0.518627 2.292679 0.6993381 -0.6993381 2.292679 0.6993381 -0.9419845 2.292679 0.6993381 -1.267794 2.292679 0.6993381 -1.705268 2.292679 0.6993381 -2.292679 2.292679 0.6993381 -3.081414 2.292679 0.6993381 -4.140474 2.292679 0.6993381 -5.562508 2.292679 0.6993381 -7.471917 2.292679 0.6993381 -10.03574 2.292679 0.6993381 -13.47828 2.292679 0.6993381 -18.10068 2.292679 0.6993381 -24.30731 2.292679 0.6993381 -32.64117 2.292679 0.6993381 -43.83129 2.292679 0.6993381 -58.85664 2.292679 0.6993381 --0.0175068 3.081414 0.6993381 --0.01161267 3.081414 0.6993381 --0.005718534 3.081414 0.6993381 -0.0001755984 3.081414 0.6993381 -0.006069731 3.081414 0.6993381 -0.01197402 3.081414 0.6993381 -0.01903886 3.081414 0.6993381 -0.02852504 3.081414 0.6993381 -0.04126244 3.081414 0.6993381 -0.05836535 3.081414 0.6993381 -0.08132997 3.081414 0.6993381 -0.1121653 3.081414 0.6993381 -0.1535689 3.081414 0.6993381 -0.2091628 3.081414 0.6993381 -0.2838106 3.081414 0.6993381 -0.3840425 3.081414 0.6993381 -0.518627 3.081414 0.6993381 -0.6993381 3.081414 0.6993381 -0.9419845 3.081414 0.6993381 -1.267794 3.081414 0.6993381 -1.705268 3.081414 0.6993381 -2.292679 3.081414 0.6993381 -3.081414 3.081414 0.6993381 -4.140474 3.081414 0.6993381 -5.562508 3.081414 0.6993381 -7.471917 3.081414 0.6993381 -10.03574 3.081414 0.6993381 -13.47828 3.081414 0.6993381 -18.10068 3.081414 0.6993381 -24.30731 3.081414 0.6993381 -32.64117 3.081414 0.6993381 -43.83129 3.081414 0.6993381 -58.85664 3.081414 0.6993381 --0.0175068 4.140474 0.6993381 --0.01161267 4.140474 0.6993381 --0.005718534 4.140474 0.6993381 -0.0001755984 4.140474 0.6993381 -0.006069731 4.140474 0.6993381 -0.01197402 4.140474 0.6993381 -0.01903886 4.140474 0.6993381 -0.02852504 4.140474 0.6993381 -0.04126244 4.140474 0.6993381 -0.05836535 4.140474 0.6993381 -0.08132997 4.140474 0.6993381 -0.1121653 4.140474 0.6993381 -0.1535689 4.140474 0.6993381 -0.2091628 4.140474 0.6993381 -0.2838106 4.140474 0.6993381 -0.3840425 4.140474 0.6993381 -0.518627 4.140474 0.6993381 -0.6993381 4.140474 0.6993381 -0.9419845 4.140474 0.6993381 -1.267794 4.140474 0.6993381 -1.705268 4.140474 0.6993381 -2.292679 4.140474 0.6993381 -3.081414 4.140474 0.6993381 -4.140474 4.140474 0.6993381 -5.562508 4.140474 0.6993381 -7.471917 4.140474 0.6993381 -10.03574 4.140474 0.6993381 -13.47828 4.140474 0.6993381 -18.10068 4.140474 0.6993381 -24.30731 4.140474 0.6993381 -32.64117 4.140474 0.6993381 -43.83129 4.140474 0.6993381 -58.85664 4.140474 0.6993381 --0.0175068 5.562508 0.6993381 --0.01161267 5.562508 0.6993381 --0.005718534 5.562508 0.6993381 -0.0001755984 5.562508 0.6993381 -0.006069731 5.562508 0.6993381 -0.01197402 5.562508 0.6993381 -0.01903886 5.562508 0.6993381 -0.02852504 5.562508 0.6993381 -0.04126244 5.562508 0.6993381 -0.05836535 5.562508 0.6993381 -0.08132997 5.562508 0.6993381 -0.1121653 5.562508 0.6993381 -0.1535689 5.562508 0.6993381 -0.2091628 5.562508 0.6993381 -0.2838106 5.562508 0.6993381 -0.3840425 5.562508 0.6993381 -0.518627 5.562508 0.6993381 -0.6993381 5.562508 0.6993381 -0.9419845 5.562508 0.6993381 -1.267794 5.562508 0.6993381 -1.705268 5.562508 0.6993381 -2.292679 5.562508 0.6993381 -3.081414 5.562508 0.6993381 -4.140474 5.562508 0.6993381 -5.562508 5.562508 0.6993381 -7.471917 5.562508 0.6993381 -10.03574 5.562508 0.6993381 -13.47828 5.562508 0.6993381 -18.10068 5.562508 0.6993381 -24.30731 5.562508 0.6993381 -32.64117 5.562508 0.6993381 -43.83129 5.562508 0.6993381 -58.85664 5.562508 0.6993381 --0.0175068 7.471917 0.6993381 --0.01161267 7.471917 0.6993381 --0.005718534 7.471917 0.6993381 -0.0001755984 7.471917 0.6993381 -0.006069731 7.471917 0.6993381 -0.01197402 7.471917 0.6993381 -0.01903886 7.471917 0.6993381 -0.02852504 7.471917 0.6993381 -0.04126244 7.471917 0.6993381 -0.05836535 7.471917 0.6993381 -0.08132997 7.471917 0.6993381 -0.1121653 7.471917 0.6993381 -0.1535689 7.471917 0.6993381 -0.2091628 7.471917 0.6993381 -0.2838106 7.471917 0.6993381 -0.3840425 7.471917 0.6993381 -0.518627 7.471917 0.6993381 -0.6993381 7.471917 0.6993381 -0.9419845 7.471917 0.6993381 -1.267794 7.471917 0.6993381 -1.705268 7.471917 0.6993381 -2.292679 7.471917 0.6993381 -3.081414 7.471917 0.6993381 -4.140474 7.471917 0.6993381 -5.562508 7.471917 0.6993381 -7.471917 7.471917 0.6993381 -10.03574 7.471917 0.6993381 -13.47828 7.471917 0.6993381 -18.10068 7.471917 0.6993381 -24.30731 7.471917 0.6993381 -32.64117 7.471917 0.6993381 -43.83129 7.471917 0.6993381 -58.85664 7.471917 0.6993381 --0.0175068 10.03574 0.6993381 --0.01161267 10.03574 0.6993381 --0.005718534 10.03574 0.6993381 -0.0001755984 10.03574 0.6993381 -0.006069731 10.03574 0.6993381 -0.01197402 10.03574 0.6993381 -0.01903886 10.03574 0.6993381 -0.02852504 10.03574 0.6993381 -0.04126244 10.03574 0.6993381 -0.05836535 10.03574 0.6993381 -0.08132997 10.03574 0.6993381 -0.1121653 10.03574 0.6993381 -0.1535689 10.03574 0.6993381 -0.2091628 10.03574 0.6993381 -0.2838106 10.03574 0.6993381 -0.3840425 10.03574 0.6993381 -0.518627 10.03574 0.6993381 -0.6993381 10.03574 0.6993381 -0.9419845 10.03574 0.6993381 -1.267794 10.03574 0.6993381 -1.705268 10.03574 0.6993381 -2.292679 10.03574 0.6993381 -3.081414 10.03574 0.6993381 -4.140474 10.03574 0.6993381 -5.562508 10.03574 0.6993381 -7.471917 10.03574 0.6993381 -10.03574 10.03574 0.6993381 -13.47828 10.03574 0.6993381 -18.10068 10.03574 0.6993381 -24.30731 10.03574 0.6993381 -32.64117 10.03574 0.6993381 -43.83129 10.03574 0.6993381 -58.85664 10.03574 0.6993381 --0.0175068 13.47828 0.6993381 --0.01161267 13.47828 0.6993381 --0.005718534 13.47828 0.6993381 -0.0001755984 13.47828 0.6993381 -0.006069731 13.47828 0.6993381 -0.01197402 13.47828 0.6993381 -0.01903886 13.47828 0.6993381 -0.02852504 13.47828 0.6993381 -0.04126244 13.47828 0.6993381 -0.05836535 13.47828 0.6993381 -0.08132997 13.47828 0.6993381 -0.1121653 13.47828 0.6993381 -0.1535689 13.47828 0.6993381 -0.2091628 13.47828 0.6993381 -0.2838106 13.47828 0.6993381 -0.3840425 13.47828 0.6993381 -0.518627 13.47828 0.6993381 -0.6993381 13.47828 0.6993381 -0.9419845 13.47828 0.6993381 -1.267794 13.47828 0.6993381 -1.705268 13.47828 0.6993381 -2.292679 13.47828 0.6993381 -3.081414 13.47828 0.6993381 -4.140474 13.47828 0.6993381 -5.562508 13.47828 0.6993381 -7.471917 13.47828 0.6993381 -10.03574 13.47828 0.6993381 -13.47828 13.47828 0.6993381 -18.10068 13.47828 0.6993381 -24.30731 13.47828 0.6993381 -32.64117 13.47828 0.6993381 -43.83129 13.47828 0.6993381 -58.85664 13.47828 0.6993381 --0.0175068 18.10068 0.6993381 --0.01161267 18.10068 0.6993381 --0.005718534 18.10068 0.6993381 -0.0001755984 18.10068 0.6993381 -0.006069731 18.10068 0.6993381 -0.01197402 18.10068 0.6993381 -0.01903886 18.10068 0.6993381 -0.02852504 18.10068 0.6993381 -0.04126244 18.10068 0.6993381 -0.05836535 18.10068 0.6993381 -0.08132997 18.10068 0.6993381 -0.1121653 18.10068 0.6993381 -0.1535689 18.10068 0.6993381 -0.2091628 18.10068 0.6993381 -0.2838106 18.10068 0.6993381 -0.3840425 18.10068 0.6993381 -0.518627 18.10068 0.6993381 -0.6993381 18.10068 0.6993381 -0.9419845 18.10068 0.6993381 -1.267794 18.10068 0.6993381 -1.705268 18.10068 0.6993381 -2.292679 18.10068 0.6993381 -3.081414 18.10068 0.6993381 -4.140474 18.10068 0.6993381 -5.562508 18.10068 0.6993381 -7.471917 18.10068 0.6993381 -10.03574 18.10068 0.6993381 -13.47828 18.10068 0.6993381 -18.10068 18.10068 0.6993381 -24.30731 18.10068 0.6993381 -32.64117 18.10068 0.6993381 -43.83129 18.10068 0.6993381 -58.85664 18.10068 0.6993381 --0.0175068 24.30731 0.6993381 --0.01161267 24.30731 0.6993381 --0.005718534 24.30731 0.6993381 -0.0001755984 24.30731 0.6993381 -0.006069731 24.30731 0.6993381 -0.01197402 24.30731 0.6993381 -0.01903886 24.30731 0.6993381 -0.02852504 24.30731 0.6993381 -0.04126244 24.30731 0.6993381 -0.05836535 24.30731 0.6993381 -0.08132997 24.30731 0.6993381 -0.1121653 24.30731 0.6993381 -0.1535689 24.30731 0.6993381 -0.2091628 24.30731 0.6993381 -0.2838106 24.30731 0.6993381 -0.3840425 24.30731 0.6993381 -0.518627 24.30731 0.6993381 -0.6993381 24.30731 0.6993381 -0.9419845 24.30731 0.6993381 -1.267794 24.30731 0.6993381 -1.705268 24.30731 0.6993381 -2.292679 24.30731 0.6993381 -3.081414 24.30731 0.6993381 -4.140474 24.30731 0.6993381 -5.562508 24.30731 0.6993381 -7.471917 24.30731 0.6993381 -10.03574 24.30731 0.6993381 -13.47828 24.30731 0.6993381 -18.10068 24.30731 0.6993381 -24.30731 24.30731 0.6993381 -32.64117 24.30731 0.6993381 -43.83129 24.30731 0.6993381 -58.85664 24.30731 0.6993381 --0.0175068 32.64117 0.6993381 --0.01161267 32.64117 0.6993381 --0.005718534 32.64117 0.6993381 -0.0001755984 32.64117 0.6993381 -0.006069731 32.64117 0.6993381 -0.01197402 32.64117 0.6993381 -0.01903886 32.64117 0.6993381 -0.02852504 32.64117 0.6993381 -0.04126244 32.64117 0.6993381 -0.05836535 32.64117 0.6993381 -0.08132997 32.64117 0.6993381 -0.1121653 32.64117 0.6993381 -0.1535689 32.64117 0.6993381 -0.2091628 32.64117 0.6993381 -0.2838106 32.64117 0.6993381 -0.3840425 32.64117 0.6993381 -0.518627 32.64117 0.6993381 -0.6993381 32.64117 0.6993381 -0.9419845 32.64117 0.6993381 -1.267794 32.64117 0.6993381 -1.705268 32.64117 0.6993381 -2.292679 32.64117 0.6993381 -3.081414 32.64117 0.6993381 -4.140474 32.64117 0.6993381 -5.562508 32.64117 0.6993381 -7.471917 32.64117 0.6993381 -10.03574 32.64117 0.6993381 -13.47828 32.64117 0.6993381 -18.10068 32.64117 0.6993381 -24.30731 32.64117 0.6993381 -32.64117 32.64117 0.6993381 -43.83129 32.64117 0.6993381 -58.85664 32.64117 0.6993381 --0.0175068 43.83129 0.6993381 --0.01161267 43.83129 0.6993381 --0.005718534 43.83129 0.6993381 -0.0001755984 43.83129 0.6993381 -0.006069731 43.83129 0.6993381 -0.01197402 43.83129 0.6993381 -0.01903886 43.83129 0.6993381 -0.02852504 43.83129 0.6993381 -0.04126244 43.83129 0.6993381 -0.05836535 43.83129 0.6993381 -0.08132997 43.83129 0.6993381 -0.1121653 43.83129 0.6993381 -0.1535689 43.83129 0.6993381 -0.2091628 43.83129 0.6993381 -0.2838106 43.83129 0.6993381 -0.3840425 43.83129 0.6993381 -0.518627 43.83129 0.6993381 -0.6993381 43.83129 0.6993381 -0.9419845 43.83129 0.6993381 -1.267794 43.83129 0.6993381 -1.705268 43.83129 0.6993381 -2.292679 43.83129 0.6993381 -3.081414 43.83129 0.6993381 -4.140474 43.83129 0.6993381 -5.562508 43.83129 0.6993381 -7.471917 43.83129 0.6993381 -10.03574 43.83129 0.6993381 -13.47828 43.83129 0.6993381 -18.10068 43.83129 0.6993381 -24.30731 43.83129 0.6993381 -32.64117 43.83129 0.6993381 -43.83129 43.83129 0.6993381 -58.85664 43.83129 0.6993381 --0.0175068 58.85664 0.6993381 --0.01161267 58.85664 0.6993381 --0.005718534 58.85664 0.6993381 -0.0001755984 58.85664 0.6993381 -0.006069731 58.85664 0.6993381 -0.01197402 58.85664 0.6993381 -0.01903886 58.85664 0.6993381 -0.02852504 58.85664 0.6993381 -0.04126244 58.85664 0.6993381 -0.05836535 58.85664 0.6993381 -0.08132997 58.85664 0.6993381 -0.1121653 58.85664 0.6993381 -0.1535689 58.85664 0.6993381 -0.2091628 58.85664 0.6993381 -0.2838106 58.85664 0.6993381 -0.3840425 58.85664 0.6993381 -0.518627 58.85664 0.6993381 -0.6993381 58.85664 0.6993381 -0.9419845 58.85664 0.6993381 -1.267794 58.85664 0.6993381 -1.705268 58.85664 0.6993381 -2.292679 58.85664 0.6993381 -3.081414 58.85664 0.6993381 -4.140474 58.85664 0.6993381 -5.562508 58.85664 0.6993381 -7.471917 58.85664 0.6993381 -10.03574 58.85664 0.6993381 -13.47828 58.85664 0.6993381 -18.10068 58.85664 0.6993381 -24.30731 58.85664 0.6993381 -32.64117 58.85664 0.6993381 -43.83129 58.85664 0.6993381 -58.85664 58.85664 0.6993381 --0.0175068 -0.0175068 0.9419845 --0.01161267 -0.0175068 0.9419845 --0.005718534 -0.0175068 0.9419845 -0.0001755984 -0.0175068 0.9419845 -0.006069731 -0.0175068 0.9419845 -0.01197402 -0.0175068 0.9419845 -0.01903886 -0.0175068 0.9419845 -0.02852504 -0.0175068 0.9419845 -0.04126244 -0.0175068 0.9419845 -0.05836535 -0.0175068 0.9419845 -0.08132997 -0.0175068 0.9419845 -0.1121653 -0.0175068 0.9419845 -0.1535689 -0.0175068 0.9419845 -0.2091628 -0.0175068 0.9419845 -0.2838106 -0.0175068 0.9419845 -0.3840425 -0.0175068 0.9419845 -0.518627 -0.0175068 0.9419845 -0.6993381 -0.0175068 0.9419845 -0.9419845 -0.0175068 0.9419845 -1.267794 -0.0175068 0.9419845 -1.705268 -0.0175068 0.9419845 -2.292679 -0.0175068 0.9419845 -3.081414 -0.0175068 0.9419845 -4.140474 -0.0175068 0.9419845 -5.562508 -0.0175068 0.9419845 -7.471917 -0.0175068 0.9419845 -10.03574 -0.0175068 0.9419845 -13.47828 -0.0175068 0.9419845 -18.10068 -0.0175068 0.9419845 -24.30731 -0.0175068 0.9419845 -32.64117 -0.0175068 0.9419845 -43.83129 -0.0175068 0.9419845 -58.85664 -0.0175068 0.9419845 --0.0175068 -0.01161267 0.9419845 --0.01161267 -0.01161267 0.9419845 --0.005718534 -0.01161267 0.9419845 -0.0001755984 -0.01161267 0.9419845 -0.006069731 -0.01161267 0.9419845 -0.01197402 -0.01161267 0.9419845 -0.01903886 -0.01161267 0.9419845 -0.02852504 -0.01161267 0.9419845 -0.04126244 -0.01161267 0.9419845 -0.05836535 -0.01161267 0.9419845 -0.08132997 -0.01161267 0.9419845 -0.1121653 -0.01161267 0.9419845 -0.1535689 -0.01161267 0.9419845 -0.2091628 -0.01161267 0.9419845 -0.2838106 -0.01161267 0.9419845 -0.3840425 -0.01161267 0.9419845 -0.518627 -0.01161267 0.9419845 -0.6993381 -0.01161267 0.9419845 -0.9419845 -0.01161267 0.9419845 -1.267794 -0.01161267 0.9419845 -1.705268 -0.01161267 0.9419845 -2.292679 -0.01161267 0.9419845 -3.081414 -0.01161267 0.9419845 -4.140474 -0.01161267 0.9419845 -5.562508 -0.01161267 0.9419845 -7.471917 -0.01161267 0.9419845 -10.03574 -0.01161267 0.9419845 -13.47828 -0.01161267 0.9419845 -18.10068 -0.01161267 0.9419845 -24.30731 -0.01161267 0.9419845 -32.64117 -0.01161267 0.9419845 -43.83129 -0.01161267 0.9419845 -58.85664 -0.01161267 0.9419845 --0.0175068 -0.005718534 0.9419845 --0.01161267 -0.005718534 0.9419845 --0.005718534 -0.005718534 0.9419845 -0.0001755984 -0.005718534 0.9419845 -0.006069731 -0.005718534 0.9419845 -0.01197402 -0.005718534 0.9419845 -0.01903886 -0.005718534 0.9419845 -0.02852504 -0.005718534 0.9419845 -0.04126244 -0.005718534 0.9419845 -0.05836535 -0.005718534 0.9419845 -0.08132997 -0.005718534 0.9419845 -0.1121653 -0.005718534 0.9419845 -0.1535689 -0.005718534 0.9419845 -0.2091628 -0.005718534 0.9419845 -0.2838106 -0.005718534 0.9419845 -0.3840425 -0.005718534 0.9419845 -0.518627 -0.005718534 0.9419845 -0.6993381 -0.005718534 0.9419845 -0.9419845 -0.005718534 0.9419845 -1.267794 -0.005718534 0.9419845 -1.705268 -0.005718534 0.9419845 -2.292679 -0.005718534 0.9419845 -3.081414 -0.005718534 0.9419845 -4.140474 -0.005718534 0.9419845 -5.562508 -0.005718534 0.9419845 -7.471917 -0.005718534 0.9419845 -10.03574 -0.005718534 0.9419845 -13.47828 -0.005718534 0.9419845 -18.10068 -0.005718534 0.9419845 -24.30731 -0.005718534 0.9419845 -32.64117 -0.005718534 0.9419845 -43.83129 -0.005718534 0.9419845 -58.85664 -0.005718534 0.9419845 --0.0175068 0.0001755984 0.9419845 --0.01161267 0.0001755984 0.9419845 --0.005718534 0.0001755984 0.9419845 -0.0001755984 0.0001755984 0.9419845 -0.006069731 0.0001755984 0.9419845 -0.01197402 0.0001755984 0.9419845 -0.01903886 0.0001755984 0.9419845 -0.02852504 0.0001755984 0.9419845 -0.04126244 0.0001755984 0.9419845 -0.05836535 0.0001755984 0.9419845 -0.08132997 0.0001755984 0.9419845 -0.1121653 0.0001755984 0.9419845 -0.1535689 0.0001755984 0.9419845 -0.2091628 0.0001755984 0.9419845 -0.2838106 0.0001755984 0.9419845 -0.3840425 0.0001755984 0.9419845 -0.518627 0.0001755984 0.9419845 -0.6993381 0.0001755984 0.9419845 -0.9419845 0.0001755984 0.9419845 -1.267794 0.0001755984 0.9419845 -1.705268 0.0001755984 0.9419845 -2.292679 0.0001755984 0.9419845 -3.081414 0.0001755984 0.9419845 -4.140474 0.0001755984 0.9419845 -5.562508 0.0001755984 0.9419845 -7.471917 0.0001755984 0.9419845 -10.03574 0.0001755984 0.9419845 -13.47828 0.0001755984 0.9419845 -18.10068 0.0001755984 0.9419845 -24.30731 0.0001755984 0.9419845 -32.64117 0.0001755984 0.9419845 -43.83129 0.0001755984 0.9419845 -58.85664 0.0001755984 0.9419845 --0.0175068 0.006069731 0.9419845 --0.01161267 0.006069731 0.9419845 --0.005718534 0.006069731 0.9419845 -0.0001755984 0.006069731 0.9419845 -0.006069731 0.006069731 0.9419845 -0.01197402 0.006069731 0.9419845 -0.01903886 0.006069731 0.9419845 -0.02852504 0.006069731 0.9419845 -0.04126244 0.006069731 0.9419845 -0.05836535 0.006069731 0.9419845 -0.08132997 0.006069731 0.9419845 -0.1121653 0.006069731 0.9419845 -0.1535689 0.006069731 0.9419845 -0.2091628 0.006069731 0.9419845 -0.2838106 0.006069731 0.9419845 -0.3840425 0.006069731 0.9419845 -0.518627 0.006069731 0.9419845 -0.6993381 0.006069731 0.9419845 -0.9419845 0.006069731 0.9419845 -1.267794 0.006069731 0.9419845 -1.705268 0.006069731 0.9419845 -2.292679 0.006069731 0.9419845 -3.081414 0.006069731 0.9419845 -4.140474 0.006069731 0.9419845 -5.562508 0.006069731 0.9419845 -7.471917 0.006069731 0.9419845 -10.03574 0.006069731 0.9419845 -13.47828 0.006069731 0.9419845 -18.10068 0.006069731 0.9419845 -24.30731 0.006069731 0.9419845 -32.64117 0.006069731 0.9419845 -43.83129 0.006069731 0.9419845 -58.85664 0.006069731 0.9419845 --0.0175068 0.01197402 0.9419845 --0.01161267 0.01197402 0.9419845 --0.005718534 0.01197402 0.9419845 -0.0001755984 0.01197402 0.9419845 -0.006069731 0.01197402 0.9419845 -0.01197402 0.01197402 0.9419845 -0.01903886 0.01197402 0.9419845 -0.02852504 0.01197402 0.9419845 -0.04126244 0.01197402 0.9419845 -0.05836535 0.01197402 0.9419845 -0.08132997 0.01197402 0.9419845 -0.1121653 0.01197402 0.9419845 -0.1535689 0.01197402 0.9419845 -0.2091628 0.01197402 0.9419845 -0.2838106 0.01197402 0.9419845 -0.3840425 0.01197402 0.9419845 -0.518627 0.01197402 0.9419845 -0.6993381 0.01197402 0.9419845 -0.9419845 0.01197402 0.9419845 -1.267794 0.01197402 0.9419845 -1.705268 0.01197402 0.9419845 -2.292679 0.01197402 0.9419845 -3.081414 0.01197402 0.9419845 -4.140474 0.01197402 0.9419845 -5.562508 0.01197402 0.9419845 -7.471917 0.01197402 0.9419845 -10.03574 0.01197402 0.9419845 -13.47828 0.01197402 0.9419845 -18.10068 0.01197402 0.9419845 -24.30731 0.01197402 0.9419845 -32.64117 0.01197402 0.9419845 -43.83129 0.01197402 0.9419845 -58.85664 0.01197402 0.9419845 --0.0175068 0.01903886 0.9419845 --0.01161267 0.01903886 0.9419845 --0.005718534 0.01903886 0.9419845 -0.0001755984 0.01903886 0.9419845 -0.006069731 0.01903886 0.9419845 -0.01197402 0.01903886 0.9419845 -0.01903886 0.01903886 0.9419845 -0.02852504 0.01903886 0.9419845 -0.04126244 0.01903886 0.9419845 -0.05836535 0.01903886 0.9419845 -0.08132997 0.01903886 0.9419845 -0.1121653 0.01903886 0.9419845 -0.1535689 0.01903886 0.9419845 -0.2091628 0.01903886 0.9419845 -0.2838106 0.01903886 0.9419845 -0.3840425 0.01903886 0.9419845 -0.518627 0.01903886 0.9419845 -0.6993381 0.01903886 0.9419845 -0.9419845 0.01903886 0.9419845 -1.267794 0.01903886 0.9419845 -1.705268 0.01903886 0.9419845 -2.292679 0.01903886 0.9419845 -3.081414 0.01903886 0.9419845 -4.140474 0.01903886 0.9419845 -5.562508 0.01903886 0.9419845 -7.471917 0.01903886 0.9419845 -10.03574 0.01903886 0.9419845 -13.47828 0.01903886 0.9419845 -18.10068 0.01903886 0.9419845 -24.30731 0.01903886 0.9419845 -32.64117 0.01903886 0.9419845 -43.83129 0.01903886 0.9419845 -58.85664 0.01903886 0.9419845 --0.0175068 0.02852504 0.9419845 --0.01161267 0.02852504 0.9419845 --0.005718534 0.02852504 0.9419845 -0.0001755984 0.02852504 0.9419845 -0.006069731 0.02852504 0.9419845 -0.01197402 0.02852504 0.9419845 -0.01903886 0.02852504 0.9419845 -0.02852504 0.02852504 0.9419845 -0.04126244 0.02852504 0.9419845 -0.05836535 0.02852504 0.9419845 -0.08132997 0.02852504 0.9419845 -0.1121653 0.02852504 0.9419845 -0.1535689 0.02852504 0.9419845 -0.2091628 0.02852504 0.9419845 -0.2838106 0.02852504 0.9419845 -0.3840425 0.02852504 0.9419845 -0.518627 0.02852504 0.9419845 -0.6993381 0.02852504 0.9419845 -0.9419845 0.02852504 0.9419845 -1.267794 0.02852504 0.9419845 -1.705268 0.02852504 0.9419845 -2.292679 0.02852504 0.9419845 -3.081414 0.02852504 0.9419845 -4.140474 0.02852504 0.9419845 -5.562508 0.02852504 0.9419845 -7.471917 0.02852504 0.9419845 -10.03574 0.02852504 0.9419845 -13.47828 0.02852504 0.9419845 -18.10068 0.02852504 0.9419845 -24.30731 0.02852504 0.9419845 -32.64117 0.02852504 0.9419845 -43.83129 0.02852504 0.9419845 -58.85664 0.02852504 0.9419845 --0.0175068 0.04126244 0.9419845 --0.01161267 0.04126244 0.9419845 --0.005718534 0.04126244 0.9419845 -0.0001755984 0.04126244 0.9419845 -0.006069731 0.04126244 0.9419845 -0.01197402 0.04126244 0.9419845 -0.01903886 0.04126244 0.9419845 -0.02852504 0.04126244 0.9419845 -0.04126244 0.04126244 0.9419845 -0.05836535 0.04126244 0.9419845 -0.08132997 0.04126244 0.9419845 -0.1121653 0.04126244 0.9419845 -0.1535689 0.04126244 0.9419845 -0.2091628 0.04126244 0.9419845 -0.2838106 0.04126244 0.9419845 -0.3840425 0.04126244 0.9419845 -0.518627 0.04126244 0.9419845 -0.6993381 0.04126244 0.9419845 -0.9419845 0.04126244 0.9419845 -1.267794 0.04126244 0.9419845 -1.705268 0.04126244 0.9419845 -2.292679 0.04126244 0.9419845 -3.081414 0.04126244 0.9419845 -4.140474 0.04126244 0.9419845 -5.562508 0.04126244 0.9419845 -7.471917 0.04126244 0.9419845 -10.03574 0.04126244 0.9419845 -13.47828 0.04126244 0.9419845 -18.10068 0.04126244 0.9419845 -24.30731 0.04126244 0.9419845 -32.64117 0.04126244 0.9419845 -43.83129 0.04126244 0.9419845 -58.85664 0.04126244 0.9419845 --0.0175068 0.05836535 0.9419845 --0.01161267 0.05836535 0.9419845 --0.005718534 0.05836535 0.9419845 -0.0001755984 0.05836535 0.9419845 -0.006069731 0.05836535 0.9419845 -0.01197402 0.05836535 0.9419845 -0.01903886 0.05836535 0.9419845 -0.02852504 0.05836535 0.9419845 -0.04126244 0.05836535 0.9419845 -0.05836535 0.05836535 0.9419845 -0.08132997 0.05836535 0.9419845 -0.1121653 0.05836535 0.9419845 -0.1535689 0.05836535 0.9419845 -0.2091628 0.05836535 0.9419845 -0.2838106 0.05836535 0.9419845 -0.3840425 0.05836535 0.9419845 -0.518627 0.05836535 0.9419845 -0.6993381 0.05836535 0.9419845 -0.9419845 0.05836535 0.9419845 -1.267794 0.05836535 0.9419845 -1.705268 0.05836535 0.9419845 -2.292679 0.05836535 0.9419845 -3.081414 0.05836535 0.9419845 -4.140474 0.05836535 0.9419845 -5.562508 0.05836535 0.9419845 -7.471917 0.05836535 0.9419845 -10.03574 0.05836535 0.9419845 -13.47828 0.05836535 0.9419845 -18.10068 0.05836535 0.9419845 -24.30731 0.05836535 0.9419845 -32.64117 0.05836535 0.9419845 -43.83129 0.05836535 0.9419845 -58.85664 0.05836535 0.9419845 --0.0175068 0.08132997 0.9419845 --0.01161267 0.08132997 0.9419845 --0.005718534 0.08132997 0.9419845 -0.0001755984 0.08132997 0.9419845 -0.006069731 0.08132997 0.9419845 -0.01197402 0.08132997 0.9419845 -0.01903886 0.08132997 0.9419845 -0.02852504 0.08132997 0.9419845 -0.04126244 0.08132997 0.9419845 -0.05836535 0.08132997 0.9419845 -0.08132997 0.08132997 0.9419845 -0.1121653 0.08132997 0.9419845 -0.1535689 0.08132997 0.9419845 -0.2091628 0.08132997 0.9419845 -0.2838106 0.08132997 0.9419845 -0.3840425 0.08132997 0.9419845 -0.518627 0.08132997 0.9419845 -0.6993381 0.08132997 0.9419845 -0.9419845 0.08132997 0.9419845 -1.267794 0.08132997 0.9419845 -1.705268 0.08132997 0.9419845 -2.292679 0.08132997 0.9419845 -3.081414 0.08132997 0.9419845 -4.140474 0.08132997 0.9419845 -5.562508 0.08132997 0.9419845 -7.471917 0.08132997 0.9419845 -10.03574 0.08132997 0.9419845 -13.47828 0.08132997 0.9419845 -18.10068 0.08132997 0.9419845 -24.30731 0.08132997 0.9419845 -32.64117 0.08132997 0.9419845 -43.83129 0.08132997 0.9419845 -58.85664 0.08132997 0.9419845 --0.0175068 0.1121653 0.9419845 --0.01161267 0.1121653 0.9419845 --0.005718534 0.1121653 0.9419845 -0.0001755984 0.1121653 0.9419845 -0.006069731 0.1121653 0.9419845 -0.01197402 0.1121653 0.9419845 -0.01903886 0.1121653 0.9419845 -0.02852504 0.1121653 0.9419845 -0.04126244 0.1121653 0.9419845 -0.05836535 0.1121653 0.9419845 -0.08132997 0.1121653 0.9419845 -0.1121653 0.1121653 0.9419845 -0.1535689 0.1121653 0.9419845 -0.2091628 0.1121653 0.9419845 -0.2838106 0.1121653 0.9419845 -0.3840425 0.1121653 0.9419845 -0.518627 0.1121653 0.9419845 -0.6993381 0.1121653 0.9419845 -0.9419845 0.1121653 0.9419845 -1.267794 0.1121653 0.9419845 -1.705268 0.1121653 0.9419845 -2.292679 0.1121653 0.9419845 -3.081414 0.1121653 0.9419845 -4.140474 0.1121653 0.9419845 -5.562508 0.1121653 0.9419845 -7.471917 0.1121653 0.9419845 -10.03574 0.1121653 0.9419845 -13.47828 0.1121653 0.9419845 -18.10068 0.1121653 0.9419845 -24.30731 0.1121653 0.9419845 -32.64117 0.1121653 0.9419845 -43.83129 0.1121653 0.9419845 -58.85664 0.1121653 0.9419845 --0.0175068 0.1535689 0.9419845 --0.01161267 0.1535689 0.9419845 --0.005718534 0.1535689 0.9419845 -0.0001755984 0.1535689 0.9419845 -0.006069731 0.1535689 0.9419845 -0.01197402 0.1535689 0.9419845 -0.01903886 0.1535689 0.9419845 -0.02852504 0.1535689 0.9419845 -0.04126244 0.1535689 0.9419845 -0.05836535 0.1535689 0.9419845 -0.08132997 0.1535689 0.9419845 -0.1121653 0.1535689 0.9419845 -0.1535689 0.1535689 0.9419845 -0.2091628 0.1535689 0.9419845 -0.2838106 0.1535689 0.9419845 -0.3840425 0.1535689 0.9419845 -0.518627 0.1535689 0.9419845 -0.6993381 0.1535689 0.9419845 -0.9419845 0.1535689 0.9419845 -1.267794 0.1535689 0.9419845 -1.705268 0.1535689 0.9419845 -2.292679 0.1535689 0.9419845 -3.081414 0.1535689 0.9419845 -4.140474 0.1535689 0.9419845 -5.562508 0.1535689 0.9419845 -7.471917 0.1535689 0.9419845 -10.03574 0.1535689 0.9419845 -13.47828 0.1535689 0.9419845 -18.10068 0.1535689 0.9419845 -24.30731 0.1535689 0.9419845 -32.64117 0.1535689 0.9419845 -43.83129 0.1535689 0.9419845 -58.85664 0.1535689 0.9419845 --0.0175068 0.2091628 0.9419845 --0.01161267 0.2091628 0.9419845 --0.005718534 0.2091628 0.9419845 -0.0001755984 0.2091628 0.9419845 -0.006069731 0.2091628 0.9419845 -0.01197402 0.2091628 0.9419845 -0.01903886 0.2091628 0.9419845 -0.02852504 0.2091628 0.9419845 -0.04126244 0.2091628 0.9419845 -0.05836535 0.2091628 0.9419845 -0.08132997 0.2091628 0.9419845 -0.1121653 0.2091628 0.9419845 -0.1535689 0.2091628 0.9419845 -0.2091628 0.2091628 0.9419845 -0.2838106 0.2091628 0.9419845 -0.3840425 0.2091628 0.9419845 -0.518627 0.2091628 0.9419845 -0.6993381 0.2091628 0.9419845 -0.9419845 0.2091628 0.9419845 -1.267794 0.2091628 0.9419845 -1.705268 0.2091628 0.9419845 -2.292679 0.2091628 0.9419845 -3.081414 0.2091628 0.9419845 -4.140474 0.2091628 0.9419845 -5.562508 0.2091628 0.9419845 -7.471917 0.2091628 0.9419845 -10.03574 0.2091628 0.9419845 -13.47828 0.2091628 0.9419845 -18.10068 0.2091628 0.9419845 -24.30731 0.2091628 0.9419845 -32.64117 0.2091628 0.9419845 -43.83129 0.2091628 0.9419845 -58.85664 0.2091628 0.9419845 --0.0175068 0.2838106 0.9419845 --0.01161267 0.2838106 0.9419845 --0.005718534 0.2838106 0.9419845 -0.0001755984 0.2838106 0.9419845 -0.006069731 0.2838106 0.9419845 -0.01197402 0.2838106 0.9419845 -0.01903886 0.2838106 0.9419845 -0.02852504 0.2838106 0.9419845 -0.04126244 0.2838106 0.9419845 -0.05836535 0.2838106 0.9419845 -0.08132997 0.2838106 0.9419845 -0.1121653 0.2838106 0.9419845 -0.1535689 0.2838106 0.9419845 -0.2091628 0.2838106 0.9419845 -0.2838106 0.2838106 0.9419845 -0.3840425 0.2838106 0.9419845 -0.518627 0.2838106 0.9419845 -0.6993381 0.2838106 0.9419845 -0.9419845 0.2838106 0.9419845 -1.267794 0.2838106 0.9419845 -1.705268 0.2838106 0.9419845 -2.292679 0.2838106 0.9419845 -3.081414 0.2838106 0.9419845 -4.140474 0.2838106 0.9419845 -5.562508 0.2838106 0.9419845 -7.471917 0.2838106 0.9419845 -10.03574 0.2838106 0.9419845 -13.47828 0.2838106 0.9419845 -18.10068 0.2838106 0.9419845 -24.30731 0.2838106 0.9419845 -32.64117 0.2838106 0.9419845 -43.83129 0.2838106 0.9419845 -58.85664 0.2838106 0.9419845 --0.0175068 0.3840425 0.9419845 --0.01161267 0.3840425 0.9419845 --0.005718534 0.3840425 0.9419845 -0.0001755984 0.3840425 0.9419845 -0.006069731 0.3840425 0.9419845 -0.01197402 0.3840425 0.9419845 -0.01903886 0.3840425 0.9419845 -0.02852504 0.3840425 0.9419845 -0.04126244 0.3840425 0.9419845 -0.05836535 0.3840425 0.9419845 -0.08132997 0.3840425 0.9419845 -0.1121653 0.3840425 0.9419845 -0.1535689 0.3840425 0.9419845 -0.2091628 0.3840425 0.9419845 -0.2838106 0.3840425 0.9419845 -0.3840425 0.3840425 0.9419845 -0.518627 0.3840425 0.9419845 -0.6993381 0.3840425 0.9419845 -0.9419845 0.3840425 0.9419845 -1.267794 0.3840425 0.9419845 -1.705268 0.3840425 0.9419845 -2.292679 0.3840425 0.9419845 -3.081414 0.3840425 0.9419845 -4.140474 0.3840425 0.9419845 -5.562508 0.3840425 0.9419845 -7.471917 0.3840425 0.9419845 -10.03574 0.3840425 0.9419845 -13.47828 0.3840425 0.9419845 -18.10068 0.3840425 0.9419845 -24.30731 0.3840425 0.9419845 -32.64117 0.3840425 0.9419845 -43.83129 0.3840425 0.9419845 -58.85664 0.3840425 0.9419845 --0.0175068 0.518627 0.9419845 --0.01161267 0.518627 0.9419845 --0.005718534 0.518627 0.9419845 -0.0001755984 0.518627 0.9419845 -0.006069731 0.518627 0.9419845 -0.01197402 0.518627 0.9419845 -0.01903886 0.518627 0.9419845 -0.02852504 0.518627 0.9419845 -0.04126244 0.518627 0.9419845 -0.05836535 0.518627 0.9419845 -0.08132997 0.518627 0.9419845 -0.1121653 0.518627 0.9419845 -0.1535689 0.518627 0.9419845 -0.2091628 0.518627 0.9419845 -0.2838106 0.518627 0.9419845 -0.3840425 0.518627 0.9419845 -0.518627 0.518627 0.9419845 -0.6993381 0.518627 0.9419845 -0.9419845 0.518627 0.9419845 -1.267794 0.518627 0.9419845 -1.705268 0.518627 0.9419845 -2.292679 0.518627 0.9419845 -3.081414 0.518627 0.9419845 -4.140474 0.518627 0.9419845 -5.562508 0.518627 0.9419845 -7.471917 0.518627 0.9419845 -10.03574 0.518627 0.9419845 -13.47828 0.518627 0.9419845 -18.10068 0.518627 0.9419845 -24.30731 0.518627 0.9419845 -32.64117 0.518627 0.9419845 -43.83129 0.518627 0.9419845 -58.85664 0.518627 0.9419845 --0.0175068 0.6993381 0.9419845 --0.01161267 0.6993381 0.9419845 --0.005718534 0.6993381 0.9419845 -0.0001755984 0.6993381 0.9419845 -0.006069731 0.6993381 0.9419845 -0.01197402 0.6993381 0.9419845 -0.01903886 0.6993381 0.9419845 -0.02852504 0.6993381 0.9419845 -0.04126244 0.6993381 0.9419845 -0.05836535 0.6993381 0.9419845 -0.08132997 0.6993381 0.9419845 -0.1121653 0.6993381 0.9419845 -0.1535689 0.6993381 0.9419845 -0.2091628 0.6993381 0.9419845 -0.2838106 0.6993381 0.9419845 -0.3840425 0.6993381 0.9419845 -0.518627 0.6993381 0.9419845 -0.6993381 0.6993381 0.9419845 -0.9419845 0.6993381 0.9419845 -1.267794 0.6993381 0.9419845 -1.705268 0.6993381 0.9419845 -2.292679 0.6993381 0.9419845 -3.081414 0.6993381 0.9419845 -4.140474 0.6993381 0.9419845 -5.562508 0.6993381 0.9419845 -7.471917 0.6993381 0.9419845 -10.03574 0.6993381 0.9419845 -13.47828 0.6993381 0.9419845 -18.10068 0.6993381 0.9419845 -24.30731 0.6993381 0.9419845 -32.64117 0.6993381 0.9419845 -43.83129 0.6993381 0.9419845 -58.85664 0.6993381 0.9419845 --0.0175068 0.9419845 0.9419845 --0.01161267 0.9419845 0.9419845 --0.005718534 0.9419845 0.9419845 -0.0001755984 0.9419845 0.9419845 -0.006069731 0.9419845 0.9419845 -0.01197402 0.9419845 0.9419845 -0.01903886 0.9419845 0.9419845 -0.02852504 0.9419845 0.9419845 -0.04126244 0.9419845 0.9419845 -0.05836535 0.9419845 0.9419845 -0.08132997 0.9419845 0.9419845 -0.1121653 0.9419845 0.9419845 -0.1535689 0.9419845 0.9419845 -0.2091628 0.9419845 0.9419845 -0.2838106 0.9419845 0.9419845 -0.3840425 0.9419845 0.9419845 -0.518627 0.9419845 0.9419845 -0.6993381 0.9419845 0.9419845 -0.9419845 0.9419845 0.9419845 -1.267794 0.9419845 0.9419845 -1.705268 0.9419845 0.9419845 -2.292679 0.9419845 0.9419845 -3.081414 0.9419845 0.9419845 -4.140474 0.9419845 0.9419845 -5.562508 0.9419845 0.9419845 -7.471917 0.9419845 0.9419845 -10.03574 0.9419845 0.9419845 -13.47828 0.9419845 0.9419845 -18.10068 0.9419845 0.9419845 -24.30731 0.9419845 0.9419845 -32.64117 0.9419845 0.9419845 -43.83129 0.9419845 0.9419845 -58.85664 0.9419845 0.9419845 --0.0175068 1.267794 0.9419845 --0.01161267 1.267794 0.9419845 --0.005718534 1.267794 0.9419845 -0.0001755984 1.267794 0.9419845 -0.006069731 1.267794 0.9419845 -0.01197402 1.267794 0.9419845 -0.01903886 1.267794 0.9419845 -0.02852504 1.267794 0.9419845 -0.04126244 1.267794 0.9419845 -0.05836535 1.267794 0.9419845 -0.08132997 1.267794 0.9419845 -0.1121653 1.267794 0.9419845 -0.1535689 1.267794 0.9419845 -0.2091628 1.267794 0.9419845 -0.2838106 1.267794 0.9419845 -0.3840425 1.267794 0.9419845 -0.518627 1.267794 0.9419845 -0.6993381 1.267794 0.9419845 -0.9419845 1.267794 0.9419845 -1.267794 1.267794 0.9419845 -1.705268 1.267794 0.9419845 -2.292679 1.267794 0.9419845 -3.081414 1.267794 0.9419845 -4.140474 1.267794 0.9419845 -5.562508 1.267794 0.9419845 -7.471917 1.267794 0.9419845 -10.03574 1.267794 0.9419845 -13.47828 1.267794 0.9419845 -18.10068 1.267794 0.9419845 -24.30731 1.267794 0.9419845 -32.64117 1.267794 0.9419845 -43.83129 1.267794 0.9419845 -58.85664 1.267794 0.9419845 --0.0175068 1.705268 0.9419845 --0.01161267 1.705268 0.9419845 --0.005718534 1.705268 0.9419845 -0.0001755984 1.705268 0.9419845 -0.006069731 1.705268 0.9419845 -0.01197402 1.705268 0.9419845 -0.01903886 1.705268 0.9419845 -0.02852504 1.705268 0.9419845 -0.04126244 1.705268 0.9419845 -0.05836535 1.705268 0.9419845 -0.08132997 1.705268 0.9419845 -0.1121653 1.705268 0.9419845 -0.1535689 1.705268 0.9419845 -0.2091628 1.705268 0.9419845 -0.2838106 1.705268 0.9419845 -0.3840425 1.705268 0.9419845 -0.518627 1.705268 0.9419845 -0.6993381 1.705268 0.9419845 -0.9419845 1.705268 0.9419845 -1.267794 1.705268 0.9419845 -1.705268 1.705268 0.9419845 -2.292679 1.705268 0.9419845 -3.081414 1.705268 0.9419845 -4.140474 1.705268 0.9419845 -5.562508 1.705268 0.9419845 -7.471917 1.705268 0.9419845 -10.03574 1.705268 0.9419845 -13.47828 1.705268 0.9419845 -18.10068 1.705268 0.9419845 -24.30731 1.705268 0.9419845 -32.64117 1.705268 0.9419845 -43.83129 1.705268 0.9419845 -58.85664 1.705268 0.9419845 --0.0175068 2.292679 0.9419845 --0.01161267 2.292679 0.9419845 --0.005718534 2.292679 0.9419845 -0.0001755984 2.292679 0.9419845 -0.006069731 2.292679 0.9419845 -0.01197402 2.292679 0.9419845 -0.01903886 2.292679 0.9419845 -0.02852504 2.292679 0.9419845 -0.04126244 2.292679 0.9419845 -0.05836535 2.292679 0.9419845 -0.08132997 2.292679 0.9419845 -0.1121653 2.292679 0.9419845 -0.1535689 2.292679 0.9419845 -0.2091628 2.292679 0.9419845 -0.2838106 2.292679 0.9419845 -0.3840425 2.292679 0.9419845 -0.518627 2.292679 0.9419845 -0.6993381 2.292679 0.9419845 -0.9419845 2.292679 0.9419845 -1.267794 2.292679 0.9419845 -1.705268 2.292679 0.9419845 -2.292679 2.292679 0.9419845 -3.081414 2.292679 0.9419845 -4.140474 2.292679 0.9419845 -5.562508 2.292679 0.9419845 -7.471917 2.292679 0.9419845 -10.03574 2.292679 0.9419845 -13.47828 2.292679 0.9419845 -18.10068 2.292679 0.9419845 -24.30731 2.292679 0.9419845 -32.64117 2.292679 0.9419845 -43.83129 2.292679 0.9419845 -58.85664 2.292679 0.9419845 --0.0175068 3.081414 0.9419845 --0.01161267 3.081414 0.9419845 --0.005718534 3.081414 0.9419845 -0.0001755984 3.081414 0.9419845 -0.006069731 3.081414 0.9419845 -0.01197402 3.081414 0.9419845 -0.01903886 3.081414 0.9419845 -0.02852504 3.081414 0.9419845 -0.04126244 3.081414 0.9419845 -0.05836535 3.081414 0.9419845 -0.08132997 3.081414 0.9419845 -0.1121653 3.081414 0.9419845 -0.1535689 3.081414 0.9419845 -0.2091628 3.081414 0.9419845 -0.2838106 3.081414 0.9419845 -0.3840425 3.081414 0.9419845 -0.518627 3.081414 0.9419845 -0.6993381 3.081414 0.9419845 -0.9419845 3.081414 0.9419845 -1.267794 3.081414 0.9419845 -1.705268 3.081414 0.9419845 -2.292679 3.081414 0.9419845 -3.081414 3.081414 0.9419845 -4.140474 3.081414 0.9419845 -5.562508 3.081414 0.9419845 -7.471917 3.081414 0.9419845 -10.03574 3.081414 0.9419845 -13.47828 3.081414 0.9419845 -18.10068 3.081414 0.9419845 -24.30731 3.081414 0.9419845 -32.64117 3.081414 0.9419845 -43.83129 3.081414 0.9419845 -58.85664 3.081414 0.9419845 --0.0175068 4.140474 0.9419845 --0.01161267 4.140474 0.9419845 --0.005718534 4.140474 0.9419845 -0.0001755984 4.140474 0.9419845 -0.006069731 4.140474 0.9419845 -0.01197402 4.140474 0.9419845 -0.01903886 4.140474 0.9419845 -0.02852504 4.140474 0.9419845 -0.04126244 4.140474 0.9419845 -0.05836535 4.140474 0.9419845 -0.08132997 4.140474 0.9419845 -0.1121653 4.140474 0.9419845 -0.1535689 4.140474 0.9419845 -0.2091628 4.140474 0.9419845 -0.2838106 4.140474 0.9419845 -0.3840425 4.140474 0.9419845 -0.518627 4.140474 0.9419845 -0.6993381 4.140474 0.9419845 -0.9419845 4.140474 0.9419845 -1.267794 4.140474 0.9419845 -1.705268 4.140474 0.9419845 -2.292679 4.140474 0.9419845 -3.081414 4.140474 0.9419845 -4.140474 4.140474 0.9419845 -5.562508 4.140474 0.9419845 -7.471917 4.140474 0.9419845 -10.03574 4.140474 0.9419845 -13.47828 4.140474 0.9419845 -18.10068 4.140474 0.9419845 -24.30731 4.140474 0.9419845 -32.64117 4.140474 0.9419845 -43.83129 4.140474 0.9419845 -58.85664 4.140474 0.9419845 --0.0175068 5.562508 0.9419845 --0.01161267 5.562508 0.9419845 --0.005718534 5.562508 0.9419845 -0.0001755984 5.562508 0.9419845 -0.006069731 5.562508 0.9419845 -0.01197402 5.562508 0.9419845 -0.01903886 5.562508 0.9419845 -0.02852504 5.562508 0.9419845 -0.04126244 5.562508 0.9419845 -0.05836535 5.562508 0.9419845 -0.08132997 5.562508 0.9419845 -0.1121653 5.562508 0.9419845 -0.1535689 5.562508 0.9419845 -0.2091628 5.562508 0.9419845 -0.2838106 5.562508 0.9419845 -0.3840425 5.562508 0.9419845 -0.518627 5.562508 0.9419845 -0.6993381 5.562508 0.9419845 -0.9419845 5.562508 0.9419845 -1.267794 5.562508 0.9419845 -1.705268 5.562508 0.9419845 -2.292679 5.562508 0.9419845 -3.081414 5.562508 0.9419845 -4.140474 5.562508 0.9419845 -5.562508 5.562508 0.9419845 -7.471917 5.562508 0.9419845 -10.03574 5.562508 0.9419845 -13.47828 5.562508 0.9419845 -18.10068 5.562508 0.9419845 -24.30731 5.562508 0.9419845 -32.64117 5.562508 0.9419845 -43.83129 5.562508 0.9419845 -58.85664 5.562508 0.9419845 --0.0175068 7.471917 0.9419845 --0.01161267 7.471917 0.9419845 --0.005718534 7.471917 0.9419845 -0.0001755984 7.471917 0.9419845 -0.006069731 7.471917 0.9419845 -0.01197402 7.471917 0.9419845 -0.01903886 7.471917 0.9419845 -0.02852504 7.471917 0.9419845 -0.04126244 7.471917 0.9419845 -0.05836535 7.471917 0.9419845 -0.08132997 7.471917 0.9419845 -0.1121653 7.471917 0.9419845 -0.1535689 7.471917 0.9419845 -0.2091628 7.471917 0.9419845 -0.2838106 7.471917 0.9419845 -0.3840425 7.471917 0.9419845 -0.518627 7.471917 0.9419845 -0.6993381 7.471917 0.9419845 -0.9419845 7.471917 0.9419845 -1.267794 7.471917 0.9419845 -1.705268 7.471917 0.9419845 -2.292679 7.471917 0.9419845 -3.081414 7.471917 0.9419845 -4.140474 7.471917 0.9419845 -5.562508 7.471917 0.9419845 -7.471917 7.471917 0.9419845 -10.03574 7.471917 0.9419845 -13.47828 7.471917 0.9419845 -18.10068 7.471917 0.9419845 -24.30731 7.471917 0.9419845 -32.64117 7.471917 0.9419845 -43.83129 7.471917 0.9419845 -58.85664 7.471917 0.9419845 --0.0175068 10.03574 0.9419845 --0.01161267 10.03574 0.9419845 --0.005718534 10.03574 0.9419845 -0.0001755984 10.03574 0.9419845 -0.006069731 10.03574 0.9419845 -0.01197402 10.03574 0.9419845 -0.01903886 10.03574 0.9419845 -0.02852504 10.03574 0.9419845 -0.04126244 10.03574 0.9419845 -0.05836535 10.03574 0.9419845 -0.08132997 10.03574 0.9419845 -0.1121653 10.03574 0.9419845 -0.1535689 10.03574 0.9419845 -0.2091628 10.03574 0.9419845 -0.2838106 10.03574 0.9419845 -0.3840425 10.03574 0.9419845 -0.518627 10.03574 0.9419845 -0.6993381 10.03574 0.9419845 -0.9419845 10.03574 0.9419845 -1.267794 10.03574 0.9419845 -1.705268 10.03574 0.9419845 -2.292679 10.03574 0.9419845 -3.081414 10.03574 0.9419845 -4.140474 10.03574 0.9419845 -5.562508 10.03574 0.9419845 -7.471917 10.03574 0.9419845 -10.03574 10.03574 0.9419845 -13.47828 10.03574 0.9419845 -18.10068 10.03574 0.9419845 -24.30731 10.03574 0.9419845 -32.64117 10.03574 0.9419845 -43.83129 10.03574 0.9419845 -58.85664 10.03574 0.9419845 --0.0175068 13.47828 0.9419845 --0.01161267 13.47828 0.9419845 --0.005718534 13.47828 0.9419845 -0.0001755984 13.47828 0.9419845 -0.006069731 13.47828 0.9419845 -0.01197402 13.47828 0.9419845 -0.01903886 13.47828 0.9419845 -0.02852504 13.47828 0.9419845 -0.04126244 13.47828 0.9419845 -0.05836535 13.47828 0.9419845 -0.08132997 13.47828 0.9419845 -0.1121653 13.47828 0.9419845 -0.1535689 13.47828 0.9419845 -0.2091628 13.47828 0.9419845 -0.2838106 13.47828 0.9419845 -0.3840425 13.47828 0.9419845 -0.518627 13.47828 0.9419845 -0.6993381 13.47828 0.9419845 -0.9419845 13.47828 0.9419845 -1.267794 13.47828 0.9419845 -1.705268 13.47828 0.9419845 -2.292679 13.47828 0.9419845 -3.081414 13.47828 0.9419845 -4.140474 13.47828 0.9419845 -5.562508 13.47828 0.9419845 -7.471917 13.47828 0.9419845 -10.03574 13.47828 0.9419845 -13.47828 13.47828 0.9419845 -18.10068 13.47828 0.9419845 -24.30731 13.47828 0.9419845 -32.64117 13.47828 0.9419845 -43.83129 13.47828 0.9419845 -58.85664 13.47828 0.9419845 --0.0175068 18.10068 0.9419845 --0.01161267 18.10068 0.9419845 --0.005718534 18.10068 0.9419845 -0.0001755984 18.10068 0.9419845 -0.006069731 18.10068 0.9419845 -0.01197402 18.10068 0.9419845 -0.01903886 18.10068 0.9419845 -0.02852504 18.10068 0.9419845 -0.04126244 18.10068 0.9419845 -0.05836535 18.10068 0.9419845 -0.08132997 18.10068 0.9419845 -0.1121653 18.10068 0.9419845 -0.1535689 18.10068 0.9419845 -0.2091628 18.10068 0.9419845 -0.2838106 18.10068 0.9419845 -0.3840425 18.10068 0.9419845 -0.518627 18.10068 0.9419845 -0.6993381 18.10068 0.9419845 -0.9419845 18.10068 0.9419845 -1.267794 18.10068 0.9419845 -1.705268 18.10068 0.9419845 -2.292679 18.10068 0.9419845 -3.081414 18.10068 0.9419845 -4.140474 18.10068 0.9419845 -5.562508 18.10068 0.9419845 -7.471917 18.10068 0.9419845 -10.03574 18.10068 0.9419845 -13.47828 18.10068 0.9419845 -18.10068 18.10068 0.9419845 -24.30731 18.10068 0.9419845 -32.64117 18.10068 0.9419845 -43.83129 18.10068 0.9419845 -58.85664 18.10068 0.9419845 --0.0175068 24.30731 0.9419845 --0.01161267 24.30731 0.9419845 --0.005718534 24.30731 0.9419845 -0.0001755984 24.30731 0.9419845 -0.006069731 24.30731 0.9419845 -0.01197402 24.30731 0.9419845 -0.01903886 24.30731 0.9419845 -0.02852504 24.30731 0.9419845 -0.04126244 24.30731 0.9419845 -0.05836535 24.30731 0.9419845 -0.08132997 24.30731 0.9419845 -0.1121653 24.30731 0.9419845 -0.1535689 24.30731 0.9419845 -0.2091628 24.30731 0.9419845 -0.2838106 24.30731 0.9419845 -0.3840425 24.30731 0.9419845 -0.518627 24.30731 0.9419845 -0.6993381 24.30731 0.9419845 -0.9419845 24.30731 0.9419845 -1.267794 24.30731 0.9419845 -1.705268 24.30731 0.9419845 -2.292679 24.30731 0.9419845 -3.081414 24.30731 0.9419845 -4.140474 24.30731 0.9419845 -5.562508 24.30731 0.9419845 -7.471917 24.30731 0.9419845 -10.03574 24.30731 0.9419845 -13.47828 24.30731 0.9419845 -18.10068 24.30731 0.9419845 -24.30731 24.30731 0.9419845 -32.64117 24.30731 0.9419845 -43.83129 24.30731 0.9419845 -58.85664 24.30731 0.9419845 --0.0175068 32.64117 0.9419845 --0.01161267 32.64117 0.9419845 --0.005718534 32.64117 0.9419845 -0.0001755984 32.64117 0.9419845 -0.006069731 32.64117 0.9419845 -0.01197402 32.64117 0.9419845 -0.01903886 32.64117 0.9419845 -0.02852504 32.64117 0.9419845 -0.04126244 32.64117 0.9419845 -0.05836535 32.64117 0.9419845 -0.08132997 32.64117 0.9419845 -0.1121653 32.64117 0.9419845 -0.1535689 32.64117 0.9419845 -0.2091628 32.64117 0.9419845 -0.2838106 32.64117 0.9419845 -0.3840425 32.64117 0.9419845 -0.518627 32.64117 0.9419845 -0.6993381 32.64117 0.9419845 -0.9419845 32.64117 0.9419845 -1.267794 32.64117 0.9419845 -1.705268 32.64117 0.9419845 -2.292679 32.64117 0.9419845 -3.081414 32.64117 0.9419845 -4.140474 32.64117 0.9419845 -5.562508 32.64117 0.9419845 -7.471917 32.64117 0.9419845 -10.03574 32.64117 0.9419845 -13.47828 32.64117 0.9419845 -18.10068 32.64117 0.9419845 -24.30731 32.64117 0.9419845 -32.64117 32.64117 0.9419845 -43.83129 32.64117 0.9419845 -58.85664 32.64117 0.9419845 --0.0175068 43.83129 0.9419845 --0.01161267 43.83129 0.9419845 --0.005718534 43.83129 0.9419845 -0.0001755984 43.83129 0.9419845 -0.006069731 43.83129 0.9419845 -0.01197402 43.83129 0.9419845 -0.01903886 43.83129 0.9419845 -0.02852504 43.83129 0.9419845 -0.04126244 43.83129 0.9419845 -0.05836535 43.83129 0.9419845 -0.08132997 43.83129 0.9419845 -0.1121653 43.83129 0.9419845 -0.1535689 43.83129 0.9419845 -0.2091628 43.83129 0.9419845 -0.2838106 43.83129 0.9419845 -0.3840425 43.83129 0.9419845 -0.518627 43.83129 0.9419845 -0.6993381 43.83129 0.9419845 -0.9419845 43.83129 0.9419845 -1.267794 43.83129 0.9419845 -1.705268 43.83129 0.9419845 -2.292679 43.83129 0.9419845 -3.081414 43.83129 0.9419845 -4.140474 43.83129 0.9419845 -5.562508 43.83129 0.9419845 -7.471917 43.83129 0.9419845 -10.03574 43.83129 0.9419845 -13.47828 43.83129 0.9419845 -18.10068 43.83129 0.9419845 -24.30731 43.83129 0.9419845 -32.64117 43.83129 0.9419845 -43.83129 43.83129 0.9419845 -58.85664 43.83129 0.9419845 --0.0175068 58.85664 0.9419845 --0.01161267 58.85664 0.9419845 --0.005718534 58.85664 0.9419845 -0.0001755984 58.85664 0.9419845 -0.006069731 58.85664 0.9419845 -0.01197402 58.85664 0.9419845 -0.01903886 58.85664 0.9419845 -0.02852504 58.85664 0.9419845 -0.04126244 58.85664 0.9419845 -0.05836535 58.85664 0.9419845 -0.08132997 58.85664 0.9419845 -0.1121653 58.85664 0.9419845 -0.1535689 58.85664 0.9419845 -0.2091628 58.85664 0.9419845 -0.2838106 58.85664 0.9419845 -0.3840425 58.85664 0.9419845 -0.518627 58.85664 0.9419845 -0.6993381 58.85664 0.9419845 -0.9419845 58.85664 0.9419845 -1.267794 58.85664 0.9419845 -1.705268 58.85664 0.9419845 -2.292679 58.85664 0.9419845 -3.081414 58.85664 0.9419845 -4.140474 58.85664 0.9419845 -5.562508 58.85664 0.9419845 -7.471917 58.85664 0.9419845 -10.03574 58.85664 0.9419845 -13.47828 58.85664 0.9419845 -18.10068 58.85664 0.9419845 -24.30731 58.85664 0.9419845 -32.64117 58.85664 0.9419845 -43.83129 58.85664 0.9419845 -58.85664 58.85664 0.9419845 --0.0175068 -0.0175068 1.267794 --0.01161267 -0.0175068 1.267794 --0.005718534 -0.0175068 1.267794 -0.0001755984 -0.0175068 1.267794 -0.006069731 -0.0175068 1.267794 -0.01197402 -0.0175068 1.267794 -0.01903886 -0.0175068 1.267794 -0.02852504 -0.0175068 1.267794 -0.04126244 -0.0175068 1.267794 -0.05836535 -0.0175068 1.267794 -0.08132997 -0.0175068 1.267794 -0.1121653 -0.0175068 1.267794 -0.1535689 -0.0175068 1.267794 -0.2091628 -0.0175068 1.267794 -0.2838106 -0.0175068 1.267794 -0.3840425 -0.0175068 1.267794 -0.518627 -0.0175068 1.267794 -0.6993381 -0.0175068 1.267794 -0.9419845 -0.0175068 1.267794 -1.267794 -0.0175068 1.267794 -1.705268 -0.0175068 1.267794 -2.292679 -0.0175068 1.267794 -3.081414 -0.0175068 1.267794 -4.140474 -0.0175068 1.267794 -5.562508 -0.0175068 1.267794 -7.471917 -0.0175068 1.267794 -10.03574 -0.0175068 1.267794 -13.47828 -0.0175068 1.267794 -18.10068 -0.0175068 1.267794 -24.30731 -0.0175068 1.267794 -32.64117 -0.0175068 1.267794 -43.83129 -0.0175068 1.267794 -58.85664 -0.0175068 1.267794 --0.0175068 -0.01161267 1.267794 --0.01161267 -0.01161267 1.267794 --0.005718534 -0.01161267 1.267794 -0.0001755984 -0.01161267 1.267794 -0.006069731 -0.01161267 1.267794 -0.01197402 -0.01161267 1.267794 -0.01903886 -0.01161267 1.267794 -0.02852504 -0.01161267 1.267794 -0.04126244 -0.01161267 1.267794 -0.05836535 -0.01161267 1.267794 -0.08132997 -0.01161267 1.267794 -0.1121653 -0.01161267 1.267794 -0.1535689 -0.01161267 1.267794 -0.2091628 -0.01161267 1.267794 -0.2838106 -0.01161267 1.267794 -0.3840425 -0.01161267 1.267794 -0.518627 -0.01161267 1.267794 -0.6993381 -0.01161267 1.267794 -0.9419845 -0.01161267 1.267794 -1.267794 -0.01161267 1.267794 -1.705268 -0.01161267 1.267794 -2.292679 -0.01161267 1.267794 -3.081414 -0.01161267 1.267794 -4.140474 -0.01161267 1.267794 -5.562508 -0.01161267 1.267794 -7.471917 -0.01161267 1.267794 -10.03574 -0.01161267 1.267794 -13.47828 -0.01161267 1.267794 -18.10068 -0.01161267 1.267794 -24.30731 -0.01161267 1.267794 -32.64117 -0.01161267 1.267794 -43.83129 -0.01161267 1.267794 -58.85664 -0.01161267 1.267794 --0.0175068 -0.005718534 1.267794 --0.01161267 -0.005718534 1.267794 --0.005718534 -0.005718534 1.267794 -0.0001755984 -0.005718534 1.267794 -0.006069731 -0.005718534 1.267794 -0.01197402 -0.005718534 1.267794 -0.01903886 -0.005718534 1.267794 -0.02852504 -0.005718534 1.267794 -0.04126244 -0.005718534 1.267794 -0.05836535 -0.005718534 1.267794 -0.08132997 -0.005718534 1.267794 -0.1121653 -0.005718534 1.267794 -0.1535689 -0.005718534 1.267794 -0.2091628 -0.005718534 1.267794 -0.2838106 -0.005718534 1.267794 -0.3840425 -0.005718534 1.267794 -0.518627 -0.005718534 1.267794 -0.6993381 -0.005718534 1.267794 -0.9419845 -0.005718534 1.267794 -1.267794 -0.005718534 1.267794 -1.705268 -0.005718534 1.267794 -2.292679 -0.005718534 1.267794 -3.081414 -0.005718534 1.267794 -4.140474 -0.005718534 1.267794 -5.562508 -0.005718534 1.267794 -7.471917 -0.005718534 1.267794 -10.03574 -0.005718534 1.267794 -13.47828 -0.005718534 1.267794 -18.10068 -0.005718534 1.267794 -24.30731 -0.005718534 1.267794 -32.64117 -0.005718534 1.267794 -43.83129 -0.005718534 1.267794 -58.85664 -0.005718534 1.267794 --0.0175068 0.0001755984 1.267794 --0.01161267 0.0001755984 1.267794 --0.005718534 0.0001755984 1.267794 -0.0001755984 0.0001755984 1.267794 -0.006069731 0.0001755984 1.267794 -0.01197402 0.0001755984 1.267794 -0.01903886 0.0001755984 1.267794 -0.02852504 0.0001755984 1.267794 -0.04126244 0.0001755984 1.267794 -0.05836535 0.0001755984 1.267794 -0.08132997 0.0001755984 1.267794 -0.1121653 0.0001755984 1.267794 -0.1535689 0.0001755984 1.267794 -0.2091628 0.0001755984 1.267794 -0.2838106 0.0001755984 1.267794 -0.3840425 0.0001755984 1.267794 -0.518627 0.0001755984 1.267794 -0.6993381 0.0001755984 1.267794 -0.9419845 0.0001755984 1.267794 -1.267794 0.0001755984 1.267794 -1.705268 0.0001755984 1.267794 -2.292679 0.0001755984 1.267794 -3.081414 0.0001755984 1.267794 -4.140474 0.0001755984 1.267794 -5.562508 0.0001755984 1.267794 -7.471917 0.0001755984 1.267794 -10.03574 0.0001755984 1.267794 -13.47828 0.0001755984 1.267794 -18.10068 0.0001755984 1.267794 -24.30731 0.0001755984 1.267794 -32.64117 0.0001755984 1.267794 -43.83129 0.0001755984 1.267794 -58.85664 0.0001755984 1.267794 --0.0175068 0.006069731 1.267794 --0.01161267 0.006069731 1.267794 --0.005718534 0.006069731 1.267794 -0.0001755984 0.006069731 1.267794 -0.006069731 0.006069731 1.267794 -0.01197402 0.006069731 1.267794 -0.01903886 0.006069731 1.267794 -0.02852504 0.006069731 1.267794 -0.04126244 0.006069731 1.267794 -0.05836535 0.006069731 1.267794 -0.08132997 0.006069731 1.267794 -0.1121653 0.006069731 1.267794 -0.1535689 0.006069731 1.267794 -0.2091628 0.006069731 1.267794 -0.2838106 0.006069731 1.267794 -0.3840425 0.006069731 1.267794 -0.518627 0.006069731 1.267794 -0.6993381 0.006069731 1.267794 -0.9419845 0.006069731 1.267794 -1.267794 0.006069731 1.267794 -1.705268 0.006069731 1.267794 -2.292679 0.006069731 1.267794 -3.081414 0.006069731 1.267794 -4.140474 0.006069731 1.267794 -5.562508 0.006069731 1.267794 -7.471917 0.006069731 1.267794 -10.03574 0.006069731 1.267794 -13.47828 0.006069731 1.267794 -18.10068 0.006069731 1.267794 -24.30731 0.006069731 1.267794 -32.64117 0.006069731 1.267794 -43.83129 0.006069731 1.267794 -58.85664 0.006069731 1.267794 --0.0175068 0.01197402 1.267794 --0.01161267 0.01197402 1.267794 --0.005718534 0.01197402 1.267794 -0.0001755984 0.01197402 1.267794 -0.006069731 0.01197402 1.267794 -0.01197402 0.01197402 1.267794 -0.01903886 0.01197402 1.267794 -0.02852504 0.01197402 1.267794 -0.04126244 0.01197402 1.267794 -0.05836535 0.01197402 1.267794 -0.08132997 0.01197402 1.267794 -0.1121653 0.01197402 1.267794 -0.1535689 0.01197402 1.267794 -0.2091628 0.01197402 1.267794 -0.2838106 0.01197402 1.267794 -0.3840425 0.01197402 1.267794 -0.518627 0.01197402 1.267794 -0.6993381 0.01197402 1.267794 -0.9419845 0.01197402 1.267794 -1.267794 0.01197402 1.267794 -1.705268 0.01197402 1.267794 -2.292679 0.01197402 1.267794 -3.081414 0.01197402 1.267794 -4.140474 0.01197402 1.267794 -5.562508 0.01197402 1.267794 -7.471917 0.01197402 1.267794 -10.03574 0.01197402 1.267794 -13.47828 0.01197402 1.267794 -18.10068 0.01197402 1.267794 -24.30731 0.01197402 1.267794 -32.64117 0.01197402 1.267794 -43.83129 0.01197402 1.267794 -58.85664 0.01197402 1.267794 --0.0175068 0.01903886 1.267794 --0.01161267 0.01903886 1.267794 --0.005718534 0.01903886 1.267794 -0.0001755984 0.01903886 1.267794 -0.006069731 0.01903886 1.267794 -0.01197402 0.01903886 1.267794 -0.01903886 0.01903886 1.267794 -0.02852504 0.01903886 1.267794 -0.04126244 0.01903886 1.267794 -0.05836535 0.01903886 1.267794 -0.08132997 0.01903886 1.267794 -0.1121653 0.01903886 1.267794 -0.1535689 0.01903886 1.267794 -0.2091628 0.01903886 1.267794 -0.2838106 0.01903886 1.267794 -0.3840425 0.01903886 1.267794 -0.518627 0.01903886 1.267794 -0.6993381 0.01903886 1.267794 -0.9419845 0.01903886 1.267794 -1.267794 0.01903886 1.267794 -1.705268 0.01903886 1.267794 -2.292679 0.01903886 1.267794 -3.081414 0.01903886 1.267794 -4.140474 0.01903886 1.267794 -5.562508 0.01903886 1.267794 -7.471917 0.01903886 1.267794 -10.03574 0.01903886 1.267794 -13.47828 0.01903886 1.267794 -18.10068 0.01903886 1.267794 -24.30731 0.01903886 1.267794 -32.64117 0.01903886 1.267794 -43.83129 0.01903886 1.267794 -58.85664 0.01903886 1.267794 --0.0175068 0.02852504 1.267794 --0.01161267 0.02852504 1.267794 --0.005718534 0.02852504 1.267794 -0.0001755984 0.02852504 1.267794 -0.006069731 0.02852504 1.267794 -0.01197402 0.02852504 1.267794 -0.01903886 0.02852504 1.267794 -0.02852504 0.02852504 1.267794 -0.04126244 0.02852504 1.267794 -0.05836535 0.02852504 1.267794 -0.08132997 0.02852504 1.267794 -0.1121653 0.02852504 1.267794 -0.1535689 0.02852504 1.267794 -0.2091628 0.02852504 1.267794 -0.2838106 0.02852504 1.267794 -0.3840425 0.02852504 1.267794 -0.518627 0.02852504 1.267794 -0.6993381 0.02852504 1.267794 -0.9419845 0.02852504 1.267794 -1.267794 0.02852504 1.267794 -1.705268 0.02852504 1.267794 -2.292679 0.02852504 1.267794 -3.081414 0.02852504 1.267794 -4.140474 0.02852504 1.267794 -5.562508 0.02852504 1.267794 -7.471917 0.02852504 1.267794 -10.03574 0.02852504 1.267794 -13.47828 0.02852504 1.267794 -18.10068 0.02852504 1.267794 -24.30731 0.02852504 1.267794 -32.64117 0.02852504 1.267794 -43.83129 0.02852504 1.267794 -58.85664 0.02852504 1.267794 --0.0175068 0.04126244 1.267794 --0.01161267 0.04126244 1.267794 --0.005718534 0.04126244 1.267794 -0.0001755984 0.04126244 1.267794 -0.006069731 0.04126244 1.267794 -0.01197402 0.04126244 1.267794 -0.01903886 0.04126244 1.267794 -0.02852504 0.04126244 1.267794 -0.04126244 0.04126244 1.267794 -0.05836535 0.04126244 1.267794 -0.08132997 0.04126244 1.267794 -0.1121653 0.04126244 1.267794 -0.1535689 0.04126244 1.267794 -0.2091628 0.04126244 1.267794 -0.2838106 0.04126244 1.267794 -0.3840425 0.04126244 1.267794 -0.518627 0.04126244 1.267794 -0.6993381 0.04126244 1.267794 -0.9419845 0.04126244 1.267794 -1.267794 0.04126244 1.267794 -1.705268 0.04126244 1.267794 -2.292679 0.04126244 1.267794 -3.081414 0.04126244 1.267794 -4.140474 0.04126244 1.267794 -5.562508 0.04126244 1.267794 -7.471917 0.04126244 1.267794 -10.03574 0.04126244 1.267794 -13.47828 0.04126244 1.267794 -18.10068 0.04126244 1.267794 -24.30731 0.04126244 1.267794 -32.64117 0.04126244 1.267794 -43.83129 0.04126244 1.267794 -58.85664 0.04126244 1.267794 --0.0175068 0.05836535 1.267794 --0.01161267 0.05836535 1.267794 --0.005718534 0.05836535 1.267794 -0.0001755984 0.05836535 1.267794 -0.006069731 0.05836535 1.267794 -0.01197402 0.05836535 1.267794 -0.01903886 0.05836535 1.267794 -0.02852504 0.05836535 1.267794 -0.04126244 0.05836535 1.267794 -0.05836535 0.05836535 1.267794 -0.08132997 0.05836535 1.267794 -0.1121653 0.05836535 1.267794 -0.1535689 0.05836535 1.267794 -0.2091628 0.05836535 1.267794 -0.2838106 0.05836535 1.267794 -0.3840425 0.05836535 1.267794 -0.518627 0.05836535 1.267794 -0.6993381 0.05836535 1.267794 -0.9419845 0.05836535 1.267794 -1.267794 0.05836535 1.267794 -1.705268 0.05836535 1.267794 -2.292679 0.05836535 1.267794 -3.081414 0.05836535 1.267794 -4.140474 0.05836535 1.267794 -5.562508 0.05836535 1.267794 -7.471917 0.05836535 1.267794 -10.03574 0.05836535 1.267794 -13.47828 0.05836535 1.267794 -18.10068 0.05836535 1.267794 -24.30731 0.05836535 1.267794 -32.64117 0.05836535 1.267794 -43.83129 0.05836535 1.267794 -58.85664 0.05836535 1.267794 --0.0175068 0.08132997 1.267794 --0.01161267 0.08132997 1.267794 --0.005718534 0.08132997 1.267794 -0.0001755984 0.08132997 1.267794 -0.006069731 0.08132997 1.267794 -0.01197402 0.08132997 1.267794 -0.01903886 0.08132997 1.267794 -0.02852504 0.08132997 1.267794 -0.04126244 0.08132997 1.267794 -0.05836535 0.08132997 1.267794 -0.08132997 0.08132997 1.267794 -0.1121653 0.08132997 1.267794 -0.1535689 0.08132997 1.267794 -0.2091628 0.08132997 1.267794 -0.2838106 0.08132997 1.267794 -0.3840425 0.08132997 1.267794 -0.518627 0.08132997 1.267794 -0.6993381 0.08132997 1.267794 -0.9419845 0.08132997 1.267794 -1.267794 0.08132997 1.267794 -1.705268 0.08132997 1.267794 -2.292679 0.08132997 1.267794 -3.081414 0.08132997 1.267794 -4.140474 0.08132997 1.267794 -5.562508 0.08132997 1.267794 -7.471917 0.08132997 1.267794 -10.03574 0.08132997 1.267794 -13.47828 0.08132997 1.267794 -18.10068 0.08132997 1.267794 -24.30731 0.08132997 1.267794 -32.64117 0.08132997 1.267794 -43.83129 0.08132997 1.267794 -58.85664 0.08132997 1.267794 --0.0175068 0.1121653 1.267794 --0.01161267 0.1121653 1.267794 --0.005718534 0.1121653 1.267794 -0.0001755984 0.1121653 1.267794 -0.006069731 0.1121653 1.267794 -0.01197402 0.1121653 1.267794 -0.01903886 0.1121653 1.267794 -0.02852504 0.1121653 1.267794 -0.04126244 0.1121653 1.267794 -0.05836535 0.1121653 1.267794 -0.08132997 0.1121653 1.267794 -0.1121653 0.1121653 1.267794 -0.1535689 0.1121653 1.267794 -0.2091628 0.1121653 1.267794 -0.2838106 0.1121653 1.267794 -0.3840425 0.1121653 1.267794 -0.518627 0.1121653 1.267794 -0.6993381 0.1121653 1.267794 -0.9419845 0.1121653 1.267794 -1.267794 0.1121653 1.267794 -1.705268 0.1121653 1.267794 -2.292679 0.1121653 1.267794 -3.081414 0.1121653 1.267794 -4.140474 0.1121653 1.267794 -5.562508 0.1121653 1.267794 -7.471917 0.1121653 1.267794 -10.03574 0.1121653 1.267794 -13.47828 0.1121653 1.267794 -18.10068 0.1121653 1.267794 -24.30731 0.1121653 1.267794 -32.64117 0.1121653 1.267794 -43.83129 0.1121653 1.267794 -58.85664 0.1121653 1.267794 --0.0175068 0.1535689 1.267794 --0.01161267 0.1535689 1.267794 --0.005718534 0.1535689 1.267794 -0.0001755984 0.1535689 1.267794 -0.006069731 0.1535689 1.267794 -0.01197402 0.1535689 1.267794 -0.01903886 0.1535689 1.267794 -0.02852504 0.1535689 1.267794 -0.04126244 0.1535689 1.267794 -0.05836535 0.1535689 1.267794 -0.08132997 0.1535689 1.267794 -0.1121653 0.1535689 1.267794 -0.1535689 0.1535689 1.267794 -0.2091628 0.1535689 1.267794 -0.2838106 0.1535689 1.267794 -0.3840425 0.1535689 1.267794 -0.518627 0.1535689 1.267794 -0.6993381 0.1535689 1.267794 -0.9419845 0.1535689 1.267794 -1.267794 0.1535689 1.267794 -1.705268 0.1535689 1.267794 -2.292679 0.1535689 1.267794 -3.081414 0.1535689 1.267794 -4.140474 0.1535689 1.267794 -5.562508 0.1535689 1.267794 -7.471917 0.1535689 1.267794 -10.03574 0.1535689 1.267794 -13.47828 0.1535689 1.267794 -18.10068 0.1535689 1.267794 -24.30731 0.1535689 1.267794 -32.64117 0.1535689 1.267794 -43.83129 0.1535689 1.267794 -58.85664 0.1535689 1.267794 --0.0175068 0.2091628 1.267794 --0.01161267 0.2091628 1.267794 --0.005718534 0.2091628 1.267794 -0.0001755984 0.2091628 1.267794 -0.006069731 0.2091628 1.267794 -0.01197402 0.2091628 1.267794 -0.01903886 0.2091628 1.267794 -0.02852504 0.2091628 1.267794 -0.04126244 0.2091628 1.267794 -0.05836535 0.2091628 1.267794 -0.08132997 0.2091628 1.267794 -0.1121653 0.2091628 1.267794 -0.1535689 0.2091628 1.267794 -0.2091628 0.2091628 1.267794 -0.2838106 0.2091628 1.267794 -0.3840425 0.2091628 1.267794 -0.518627 0.2091628 1.267794 -0.6993381 0.2091628 1.267794 -0.9419845 0.2091628 1.267794 -1.267794 0.2091628 1.267794 -1.705268 0.2091628 1.267794 -2.292679 0.2091628 1.267794 -3.081414 0.2091628 1.267794 -4.140474 0.2091628 1.267794 -5.562508 0.2091628 1.267794 -7.471917 0.2091628 1.267794 -10.03574 0.2091628 1.267794 -13.47828 0.2091628 1.267794 -18.10068 0.2091628 1.267794 -24.30731 0.2091628 1.267794 -32.64117 0.2091628 1.267794 -43.83129 0.2091628 1.267794 -58.85664 0.2091628 1.267794 --0.0175068 0.2838106 1.267794 --0.01161267 0.2838106 1.267794 --0.005718534 0.2838106 1.267794 -0.0001755984 0.2838106 1.267794 -0.006069731 0.2838106 1.267794 -0.01197402 0.2838106 1.267794 -0.01903886 0.2838106 1.267794 -0.02852504 0.2838106 1.267794 -0.04126244 0.2838106 1.267794 -0.05836535 0.2838106 1.267794 -0.08132997 0.2838106 1.267794 -0.1121653 0.2838106 1.267794 -0.1535689 0.2838106 1.267794 -0.2091628 0.2838106 1.267794 -0.2838106 0.2838106 1.267794 -0.3840425 0.2838106 1.267794 -0.518627 0.2838106 1.267794 -0.6993381 0.2838106 1.267794 -0.9419845 0.2838106 1.267794 -1.267794 0.2838106 1.267794 -1.705268 0.2838106 1.267794 -2.292679 0.2838106 1.267794 -3.081414 0.2838106 1.267794 -4.140474 0.2838106 1.267794 -5.562508 0.2838106 1.267794 -7.471917 0.2838106 1.267794 -10.03574 0.2838106 1.267794 -13.47828 0.2838106 1.267794 -18.10068 0.2838106 1.267794 -24.30731 0.2838106 1.267794 -32.64117 0.2838106 1.267794 -43.83129 0.2838106 1.267794 -58.85664 0.2838106 1.267794 --0.0175068 0.3840425 1.267794 --0.01161267 0.3840425 1.267794 --0.005718534 0.3840425 1.267794 -0.0001755984 0.3840425 1.267794 -0.006069731 0.3840425 1.267794 -0.01197402 0.3840425 1.267794 -0.01903886 0.3840425 1.267794 -0.02852504 0.3840425 1.267794 -0.04126244 0.3840425 1.267794 -0.05836535 0.3840425 1.267794 -0.08132997 0.3840425 1.267794 -0.1121653 0.3840425 1.267794 -0.1535689 0.3840425 1.267794 -0.2091628 0.3840425 1.267794 -0.2838106 0.3840425 1.267794 -0.3840425 0.3840425 1.267794 -0.518627 0.3840425 1.267794 -0.6993381 0.3840425 1.267794 -0.9419845 0.3840425 1.267794 -1.267794 0.3840425 1.267794 -1.705268 0.3840425 1.267794 -2.292679 0.3840425 1.267794 -3.081414 0.3840425 1.267794 -4.140474 0.3840425 1.267794 -5.562508 0.3840425 1.267794 -7.471917 0.3840425 1.267794 -10.03574 0.3840425 1.267794 -13.47828 0.3840425 1.267794 -18.10068 0.3840425 1.267794 -24.30731 0.3840425 1.267794 -32.64117 0.3840425 1.267794 -43.83129 0.3840425 1.267794 -58.85664 0.3840425 1.267794 --0.0175068 0.518627 1.267794 --0.01161267 0.518627 1.267794 --0.005718534 0.518627 1.267794 -0.0001755984 0.518627 1.267794 -0.006069731 0.518627 1.267794 -0.01197402 0.518627 1.267794 -0.01903886 0.518627 1.267794 -0.02852504 0.518627 1.267794 -0.04126244 0.518627 1.267794 -0.05836535 0.518627 1.267794 -0.08132997 0.518627 1.267794 -0.1121653 0.518627 1.267794 -0.1535689 0.518627 1.267794 -0.2091628 0.518627 1.267794 -0.2838106 0.518627 1.267794 -0.3840425 0.518627 1.267794 -0.518627 0.518627 1.267794 -0.6993381 0.518627 1.267794 -0.9419845 0.518627 1.267794 -1.267794 0.518627 1.267794 -1.705268 0.518627 1.267794 -2.292679 0.518627 1.267794 -3.081414 0.518627 1.267794 -4.140474 0.518627 1.267794 -5.562508 0.518627 1.267794 -7.471917 0.518627 1.267794 -10.03574 0.518627 1.267794 -13.47828 0.518627 1.267794 -18.10068 0.518627 1.267794 -24.30731 0.518627 1.267794 -32.64117 0.518627 1.267794 -43.83129 0.518627 1.267794 -58.85664 0.518627 1.267794 --0.0175068 0.6993381 1.267794 --0.01161267 0.6993381 1.267794 --0.005718534 0.6993381 1.267794 -0.0001755984 0.6993381 1.267794 -0.006069731 0.6993381 1.267794 -0.01197402 0.6993381 1.267794 -0.01903886 0.6993381 1.267794 -0.02852504 0.6993381 1.267794 -0.04126244 0.6993381 1.267794 -0.05836535 0.6993381 1.267794 -0.08132997 0.6993381 1.267794 -0.1121653 0.6993381 1.267794 -0.1535689 0.6993381 1.267794 -0.2091628 0.6993381 1.267794 -0.2838106 0.6993381 1.267794 -0.3840425 0.6993381 1.267794 -0.518627 0.6993381 1.267794 -0.6993381 0.6993381 1.267794 -0.9419845 0.6993381 1.267794 -1.267794 0.6993381 1.267794 -1.705268 0.6993381 1.267794 -2.292679 0.6993381 1.267794 -3.081414 0.6993381 1.267794 -4.140474 0.6993381 1.267794 -5.562508 0.6993381 1.267794 -7.471917 0.6993381 1.267794 -10.03574 0.6993381 1.267794 -13.47828 0.6993381 1.267794 -18.10068 0.6993381 1.267794 -24.30731 0.6993381 1.267794 -32.64117 0.6993381 1.267794 -43.83129 0.6993381 1.267794 -58.85664 0.6993381 1.267794 --0.0175068 0.9419845 1.267794 --0.01161267 0.9419845 1.267794 --0.005718534 0.9419845 1.267794 -0.0001755984 0.9419845 1.267794 -0.006069731 0.9419845 1.267794 -0.01197402 0.9419845 1.267794 -0.01903886 0.9419845 1.267794 -0.02852504 0.9419845 1.267794 -0.04126244 0.9419845 1.267794 -0.05836535 0.9419845 1.267794 -0.08132997 0.9419845 1.267794 -0.1121653 0.9419845 1.267794 -0.1535689 0.9419845 1.267794 -0.2091628 0.9419845 1.267794 -0.2838106 0.9419845 1.267794 -0.3840425 0.9419845 1.267794 -0.518627 0.9419845 1.267794 -0.6993381 0.9419845 1.267794 -0.9419845 0.9419845 1.267794 -1.267794 0.9419845 1.267794 -1.705268 0.9419845 1.267794 -2.292679 0.9419845 1.267794 -3.081414 0.9419845 1.267794 -4.140474 0.9419845 1.267794 -5.562508 0.9419845 1.267794 -7.471917 0.9419845 1.267794 -10.03574 0.9419845 1.267794 -13.47828 0.9419845 1.267794 -18.10068 0.9419845 1.267794 -24.30731 0.9419845 1.267794 -32.64117 0.9419845 1.267794 -43.83129 0.9419845 1.267794 -58.85664 0.9419845 1.267794 --0.0175068 1.267794 1.267794 --0.01161267 1.267794 1.267794 --0.005718534 1.267794 1.267794 -0.0001755984 1.267794 1.267794 -0.006069731 1.267794 1.267794 -0.01197402 1.267794 1.267794 -0.01903886 1.267794 1.267794 -0.02852504 1.267794 1.267794 -0.04126244 1.267794 1.267794 -0.05836535 1.267794 1.267794 -0.08132997 1.267794 1.267794 -0.1121653 1.267794 1.267794 -0.1535689 1.267794 1.267794 -0.2091628 1.267794 1.267794 -0.2838106 1.267794 1.267794 -0.3840425 1.267794 1.267794 -0.518627 1.267794 1.267794 -0.6993381 1.267794 1.267794 -0.9419845 1.267794 1.267794 -1.267794 1.267794 1.267794 -1.705268 1.267794 1.267794 -2.292679 1.267794 1.267794 -3.081414 1.267794 1.267794 -4.140474 1.267794 1.267794 -5.562508 1.267794 1.267794 -7.471917 1.267794 1.267794 -10.03574 1.267794 1.267794 -13.47828 1.267794 1.267794 -18.10068 1.267794 1.267794 -24.30731 1.267794 1.267794 -32.64117 1.267794 1.267794 -43.83129 1.267794 1.267794 -58.85664 1.267794 1.267794 --0.0175068 1.705268 1.267794 --0.01161267 1.705268 1.267794 --0.005718534 1.705268 1.267794 -0.0001755984 1.705268 1.267794 -0.006069731 1.705268 1.267794 -0.01197402 1.705268 1.267794 -0.01903886 1.705268 1.267794 -0.02852504 1.705268 1.267794 -0.04126244 1.705268 1.267794 -0.05836535 1.705268 1.267794 -0.08132997 1.705268 1.267794 -0.1121653 1.705268 1.267794 -0.1535689 1.705268 1.267794 -0.2091628 1.705268 1.267794 -0.2838106 1.705268 1.267794 -0.3840425 1.705268 1.267794 -0.518627 1.705268 1.267794 -0.6993381 1.705268 1.267794 -0.9419845 1.705268 1.267794 -1.267794 1.705268 1.267794 -1.705268 1.705268 1.267794 -2.292679 1.705268 1.267794 -3.081414 1.705268 1.267794 -4.140474 1.705268 1.267794 -5.562508 1.705268 1.267794 -7.471917 1.705268 1.267794 -10.03574 1.705268 1.267794 -13.47828 1.705268 1.267794 -18.10068 1.705268 1.267794 -24.30731 1.705268 1.267794 -32.64117 1.705268 1.267794 -43.83129 1.705268 1.267794 -58.85664 1.705268 1.267794 --0.0175068 2.292679 1.267794 --0.01161267 2.292679 1.267794 --0.005718534 2.292679 1.267794 -0.0001755984 2.292679 1.267794 -0.006069731 2.292679 1.267794 -0.01197402 2.292679 1.267794 -0.01903886 2.292679 1.267794 -0.02852504 2.292679 1.267794 -0.04126244 2.292679 1.267794 -0.05836535 2.292679 1.267794 -0.08132997 2.292679 1.267794 -0.1121653 2.292679 1.267794 -0.1535689 2.292679 1.267794 -0.2091628 2.292679 1.267794 -0.2838106 2.292679 1.267794 -0.3840425 2.292679 1.267794 -0.518627 2.292679 1.267794 -0.6993381 2.292679 1.267794 -0.9419845 2.292679 1.267794 -1.267794 2.292679 1.267794 -1.705268 2.292679 1.267794 -2.292679 2.292679 1.267794 -3.081414 2.292679 1.267794 -4.140474 2.292679 1.267794 -5.562508 2.292679 1.267794 -7.471917 2.292679 1.267794 -10.03574 2.292679 1.267794 -13.47828 2.292679 1.267794 -18.10068 2.292679 1.267794 -24.30731 2.292679 1.267794 -32.64117 2.292679 1.267794 -43.83129 2.292679 1.267794 -58.85664 2.292679 1.267794 --0.0175068 3.081414 1.267794 --0.01161267 3.081414 1.267794 --0.005718534 3.081414 1.267794 -0.0001755984 3.081414 1.267794 -0.006069731 3.081414 1.267794 -0.01197402 3.081414 1.267794 -0.01903886 3.081414 1.267794 -0.02852504 3.081414 1.267794 -0.04126244 3.081414 1.267794 -0.05836535 3.081414 1.267794 -0.08132997 3.081414 1.267794 -0.1121653 3.081414 1.267794 -0.1535689 3.081414 1.267794 -0.2091628 3.081414 1.267794 -0.2838106 3.081414 1.267794 -0.3840425 3.081414 1.267794 -0.518627 3.081414 1.267794 -0.6993381 3.081414 1.267794 -0.9419845 3.081414 1.267794 -1.267794 3.081414 1.267794 -1.705268 3.081414 1.267794 -2.292679 3.081414 1.267794 -3.081414 3.081414 1.267794 -4.140474 3.081414 1.267794 -5.562508 3.081414 1.267794 -7.471917 3.081414 1.267794 -10.03574 3.081414 1.267794 -13.47828 3.081414 1.267794 -18.10068 3.081414 1.267794 -24.30731 3.081414 1.267794 -32.64117 3.081414 1.267794 -43.83129 3.081414 1.267794 -58.85664 3.081414 1.267794 --0.0175068 4.140474 1.267794 --0.01161267 4.140474 1.267794 --0.005718534 4.140474 1.267794 -0.0001755984 4.140474 1.267794 -0.006069731 4.140474 1.267794 -0.01197402 4.140474 1.267794 -0.01903886 4.140474 1.267794 -0.02852504 4.140474 1.267794 -0.04126244 4.140474 1.267794 -0.05836535 4.140474 1.267794 -0.08132997 4.140474 1.267794 -0.1121653 4.140474 1.267794 -0.1535689 4.140474 1.267794 -0.2091628 4.140474 1.267794 -0.2838106 4.140474 1.267794 -0.3840425 4.140474 1.267794 -0.518627 4.140474 1.267794 -0.6993381 4.140474 1.267794 -0.9419845 4.140474 1.267794 -1.267794 4.140474 1.267794 -1.705268 4.140474 1.267794 -2.292679 4.140474 1.267794 -3.081414 4.140474 1.267794 -4.140474 4.140474 1.267794 -5.562508 4.140474 1.267794 -7.471917 4.140474 1.267794 -10.03574 4.140474 1.267794 -13.47828 4.140474 1.267794 -18.10068 4.140474 1.267794 -24.30731 4.140474 1.267794 -32.64117 4.140474 1.267794 -43.83129 4.140474 1.267794 -58.85664 4.140474 1.267794 --0.0175068 5.562508 1.267794 --0.01161267 5.562508 1.267794 --0.005718534 5.562508 1.267794 -0.0001755984 5.562508 1.267794 -0.006069731 5.562508 1.267794 -0.01197402 5.562508 1.267794 -0.01903886 5.562508 1.267794 -0.02852504 5.562508 1.267794 -0.04126244 5.562508 1.267794 -0.05836535 5.562508 1.267794 -0.08132997 5.562508 1.267794 -0.1121653 5.562508 1.267794 -0.1535689 5.562508 1.267794 -0.2091628 5.562508 1.267794 -0.2838106 5.562508 1.267794 -0.3840425 5.562508 1.267794 -0.518627 5.562508 1.267794 -0.6993381 5.562508 1.267794 -0.9419845 5.562508 1.267794 -1.267794 5.562508 1.267794 -1.705268 5.562508 1.267794 -2.292679 5.562508 1.267794 -3.081414 5.562508 1.267794 -4.140474 5.562508 1.267794 -5.562508 5.562508 1.267794 -7.471917 5.562508 1.267794 -10.03574 5.562508 1.267794 -13.47828 5.562508 1.267794 -18.10068 5.562508 1.267794 -24.30731 5.562508 1.267794 -32.64117 5.562508 1.267794 -43.83129 5.562508 1.267794 -58.85664 5.562508 1.267794 --0.0175068 7.471917 1.267794 --0.01161267 7.471917 1.267794 --0.005718534 7.471917 1.267794 -0.0001755984 7.471917 1.267794 -0.006069731 7.471917 1.267794 -0.01197402 7.471917 1.267794 -0.01903886 7.471917 1.267794 -0.02852504 7.471917 1.267794 -0.04126244 7.471917 1.267794 -0.05836535 7.471917 1.267794 -0.08132997 7.471917 1.267794 -0.1121653 7.471917 1.267794 -0.1535689 7.471917 1.267794 -0.2091628 7.471917 1.267794 -0.2838106 7.471917 1.267794 -0.3840425 7.471917 1.267794 -0.518627 7.471917 1.267794 -0.6993381 7.471917 1.267794 -0.9419845 7.471917 1.267794 -1.267794 7.471917 1.267794 -1.705268 7.471917 1.267794 -2.292679 7.471917 1.267794 -3.081414 7.471917 1.267794 -4.140474 7.471917 1.267794 -5.562508 7.471917 1.267794 -7.471917 7.471917 1.267794 -10.03574 7.471917 1.267794 -13.47828 7.471917 1.267794 -18.10068 7.471917 1.267794 -24.30731 7.471917 1.267794 -32.64117 7.471917 1.267794 -43.83129 7.471917 1.267794 -58.85664 7.471917 1.267794 --0.0175068 10.03574 1.267794 --0.01161267 10.03574 1.267794 --0.005718534 10.03574 1.267794 -0.0001755984 10.03574 1.267794 -0.006069731 10.03574 1.267794 -0.01197402 10.03574 1.267794 -0.01903886 10.03574 1.267794 -0.02852504 10.03574 1.267794 -0.04126244 10.03574 1.267794 -0.05836535 10.03574 1.267794 -0.08132997 10.03574 1.267794 -0.1121653 10.03574 1.267794 -0.1535689 10.03574 1.267794 -0.2091628 10.03574 1.267794 -0.2838106 10.03574 1.267794 -0.3840425 10.03574 1.267794 -0.518627 10.03574 1.267794 -0.6993381 10.03574 1.267794 -0.9419845 10.03574 1.267794 -1.267794 10.03574 1.267794 -1.705268 10.03574 1.267794 -2.292679 10.03574 1.267794 -3.081414 10.03574 1.267794 -4.140474 10.03574 1.267794 -5.562508 10.03574 1.267794 -7.471917 10.03574 1.267794 -10.03574 10.03574 1.267794 -13.47828 10.03574 1.267794 -18.10068 10.03574 1.267794 -24.30731 10.03574 1.267794 -32.64117 10.03574 1.267794 -43.83129 10.03574 1.267794 -58.85664 10.03574 1.267794 --0.0175068 13.47828 1.267794 --0.01161267 13.47828 1.267794 --0.005718534 13.47828 1.267794 -0.0001755984 13.47828 1.267794 -0.006069731 13.47828 1.267794 -0.01197402 13.47828 1.267794 -0.01903886 13.47828 1.267794 -0.02852504 13.47828 1.267794 -0.04126244 13.47828 1.267794 -0.05836535 13.47828 1.267794 -0.08132997 13.47828 1.267794 -0.1121653 13.47828 1.267794 -0.1535689 13.47828 1.267794 -0.2091628 13.47828 1.267794 -0.2838106 13.47828 1.267794 -0.3840425 13.47828 1.267794 -0.518627 13.47828 1.267794 -0.6993381 13.47828 1.267794 -0.9419845 13.47828 1.267794 -1.267794 13.47828 1.267794 -1.705268 13.47828 1.267794 -2.292679 13.47828 1.267794 -3.081414 13.47828 1.267794 -4.140474 13.47828 1.267794 -5.562508 13.47828 1.267794 -7.471917 13.47828 1.267794 -10.03574 13.47828 1.267794 -13.47828 13.47828 1.267794 -18.10068 13.47828 1.267794 -24.30731 13.47828 1.267794 -32.64117 13.47828 1.267794 -43.83129 13.47828 1.267794 -58.85664 13.47828 1.267794 --0.0175068 18.10068 1.267794 --0.01161267 18.10068 1.267794 --0.005718534 18.10068 1.267794 -0.0001755984 18.10068 1.267794 -0.006069731 18.10068 1.267794 -0.01197402 18.10068 1.267794 -0.01903886 18.10068 1.267794 -0.02852504 18.10068 1.267794 -0.04126244 18.10068 1.267794 -0.05836535 18.10068 1.267794 -0.08132997 18.10068 1.267794 -0.1121653 18.10068 1.267794 -0.1535689 18.10068 1.267794 -0.2091628 18.10068 1.267794 -0.2838106 18.10068 1.267794 -0.3840425 18.10068 1.267794 -0.518627 18.10068 1.267794 -0.6993381 18.10068 1.267794 -0.9419845 18.10068 1.267794 -1.267794 18.10068 1.267794 -1.705268 18.10068 1.267794 -2.292679 18.10068 1.267794 -3.081414 18.10068 1.267794 -4.140474 18.10068 1.267794 -5.562508 18.10068 1.267794 -7.471917 18.10068 1.267794 -10.03574 18.10068 1.267794 -13.47828 18.10068 1.267794 -18.10068 18.10068 1.267794 -24.30731 18.10068 1.267794 -32.64117 18.10068 1.267794 -43.83129 18.10068 1.267794 -58.85664 18.10068 1.267794 --0.0175068 24.30731 1.267794 --0.01161267 24.30731 1.267794 --0.005718534 24.30731 1.267794 -0.0001755984 24.30731 1.267794 -0.006069731 24.30731 1.267794 -0.01197402 24.30731 1.267794 -0.01903886 24.30731 1.267794 -0.02852504 24.30731 1.267794 -0.04126244 24.30731 1.267794 -0.05836535 24.30731 1.267794 -0.08132997 24.30731 1.267794 -0.1121653 24.30731 1.267794 -0.1535689 24.30731 1.267794 -0.2091628 24.30731 1.267794 -0.2838106 24.30731 1.267794 -0.3840425 24.30731 1.267794 -0.518627 24.30731 1.267794 -0.6993381 24.30731 1.267794 -0.9419845 24.30731 1.267794 -1.267794 24.30731 1.267794 -1.705268 24.30731 1.267794 -2.292679 24.30731 1.267794 -3.081414 24.30731 1.267794 -4.140474 24.30731 1.267794 -5.562508 24.30731 1.267794 -7.471917 24.30731 1.267794 -10.03574 24.30731 1.267794 -13.47828 24.30731 1.267794 -18.10068 24.30731 1.267794 -24.30731 24.30731 1.267794 -32.64117 24.30731 1.267794 -43.83129 24.30731 1.267794 -58.85664 24.30731 1.267794 --0.0175068 32.64117 1.267794 --0.01161267 32.64117 1.267794 --0.005718534 32.64117 1.267794 -0.0001755984 32.64117 1.267794 -0.006069731 32.64117 1.267794 -0.01197402 32.64117 1.267794 -0.01903886 32.64117 1.267794 -0.02852504 32.64117 1.267794 -0.04126244 32.64117 1.267794 -0.05836535 32.64117 1.267794 -0.08132997 32.64117 1.267794 -0.1121653 32.64117 1.267794 -0.1535689 32.64117 1.267794 -0.2091628 32.64117 1.267794 -0.2838106 32.64117 1.267794 -0.3840425 32.64117 1.267794 -0.518627 32.64117 1.267794 -0.6993381 32.64117 1.267794 -0.9419845 32.64117 1.267794 -1.267794 32.64117 1.267794 -1.705268 32.64117 1.267794 -2.292679 32.64117 1.267794 -3.081414 32.64117 1.267794 -4.140474 32.64117 1.267794 -5.562508 32.64117 1.267794 -7.471917 32.64117 1.267794 -10.03574 32.64117 1.267794 -13.47828 32.64117 1.267794 -18.10068 32.64117 1.267794 -24.30731 32.64117 1.267794 -32.64117 32.64117 1.267794 -43.83129 32.64117 1.267794 -58.85664 32.64117 1.267794 --0.0175068 43.83129 1.267794 --0.01161267 43.83129 1.267794 --0.005718534 43.83129 1.267794 -0.0001755984 43.83129 1.267794 -0.006069731 43.83129 1.267794 -0.01197402 43.83129 1.267794 -0.01903886 43.83129 1.267794 -0.02852504 43.83129 1.267794 -0.04126244 43.83129 1.267794 -0.05836535 43.83129 1.267794 -0.08132997 43.83129 1.267794 -0.1121653 43.83129 1.267794 -0.1535689 43.83129 1.267794 -0.2091628 43.83129 1.267794 -0.2838106 43.83129 1.267794 -0.3840425 43.83129 1.267794 -0.518627 43.83129 1.267794 -0.6993381 43.83129 1.267794 -0.9419845 43.83129 1.267794 -1.267794 43.83129 1.267794 -1.705268 43.83129 1.267794 -2.292679 43.83129 1.267794 -3.081414 43.83129 1.267794 -4.140474 43.83129 1.267794 -5.562508 43.83129 1.267794 -7.471917 43.83129 1.267794 -10.03574 43.83129 1.267794 -13.47828 43.83129 1.267794 -18.10068 43.83129 1.267794 -24.30731 43.83129 1.267794 -32.64117 43.83129 1.267794 -43.83129 43.83129 1.267794 -58.85664 43.83129 1.267794 --0.0175068 58.85664 1.267794 --0.01161267 58.85664 1.267794 --0.005718534 58.85664 1.267794 -0.0001755984 58.85664 1.267794 -0.006069731 58.85664 1.267794 -0.01197402 58.85664 1.267794 -0.01903886 58.85664 1.267794 -0.02852504 58.85664 1.267794 -0.04126244 58.85664 1.267794 -0.05836535 58.85664 1.267794 -0.08132997 58.85664 1.267794 -0.1121653 58.85664 1.267794 -0.1535689 58.85664 1.267794 -0.2091628 58.85664 1.267794 -0.2838106 58.85664 1.267794 -0.3840425 58.85664 1.267794 -0.518627 58.85664 1.267794 -0.6993381 58.85664 1.267794 -0.9419845 58.85664 1.267794 -1.267794 58.85664 1.267794 -1.705268 58.85664 1.267794 -2.292679 58.85664 1.267794 -3.081414 58.85664 1.267794 -4.140474 58.85664 1.267794 -5.562508 58.85664 1.267794 -7.471917 58.85664 1.267794 -10.03574 58.85664 1.267794 -13.47828 58.85664 1.267794 -18.10068 58.85664 1.267794 -24.30731 58.85664 1.267794 -32.64117 58.85664 1.267794 -43.83129 58.85664 1.267794 -58.85664 58.85664 1.267794 --0.0175068 -0.0175068 1.705268 --0.01161267 -0.0175068 1.705268 --0.005718534 -0.0175068 1.705268 -0.0001755984 -0.0175068 1.705268 -0.006069731 -0.0175068 1.705268 -0.01197402 -0.0175068 1.705268 -0.01903886 -0.0175068 1.705268 -0.02852504 -0.0175068 1.705268 -0.04126244 -0.0175068 1.705268 -0.05836535 -0.0175068 1.705268 -0.08132997 -0.0175068 1.705268 -0.1121653 -0.0175068 1.705268 -0.1535689 -0.0175068 1.705268 -0.2091628 -0.0175068 1.705268 -0.2838106 -0.0175068 1.705268 -0.3840425 -0.0175068 1.705268 -0.518627 -0.0175068 1.705268 -0.6993381 -0.0175068 1.705268 -0.9419845 -0.0175068 1.705268 -1.267794 -0.0175068 1.705268 -1.705268 -0.0175068 1.705268 -2.292679 -0.0175068 1.705268 -3.081414 -0.0175068 1.705268 -4.140474 -0.0175068 1.705268 -5.562508 -0.0175068 1.705268 -7.471917 -0.0175068 1.705268 -10.03574 -0.0175068 1.705268 -13.47828 -0.0175068 1.705268 -18.10068 -0.0175068 1.705268 -24.30731 -0.0175068 1.705268 -32.64117 -0.0175068 1.705268 -43.83129 -0.0175068 1.705268 -58.85664 -0.0175068 1.705268 --0.0175068 -0.01161267 1.705268 --0.01161267 -0.01161267 1.705268 --0.005718534 -0.01161267 1.705268 -0.0001755984 -0.01161267 1.705268 -0.006069731 -0.01161267 1.705268 -0.01197402 -0.01161267 1.705268 -0.01903886 -0.01161267 1.705268 -0.02852504 -0.01161267 1.705268 -0.04126244 -0.01161267 1.705268 -0.05836535 -0.01161267 1.705268 -0.08132997 -0.01161267 1.705268 -0.1121653 -0.01161267 1.705268 -0.1535689 -0.01161267 1.705268 -0.2091628 -0.01161267 1.705268 -0.2838106 -0.01161267 1.705268 -0.3840425 -0.01161267 1.705268 -0.518627 -0.01161267 1.705268 -0.6993381 -0.01161267 1.705268 -0.9419845 -0.01161267 1.705268 -1.267794 -0.01161267 1.705268 -1.705268 -0.01161267 1.705268 -2.292679 -0.01161267 1.705268 -3.081414 -0.01161267 1.705268 -4.140474 -0.01161267 1.705268 -5.562508 -0.01161267 1.705268 -7.471917 -0.01161267 1.705268 -10.03574 -0.01161267 1.705268 -13.47828 -0.01161267 1.705268 -18.10068 -0.01161267 1.705268 -24.30731 -0.01161267 1.705268 -32.64117 -0.01161267 1.705268 -43.83129 -0.01161267 1.705268 -58.85664 -0.01161267 1.705268 --0.0175068 -0.005718534 1.705268 --0.01161267 -0.005718534 1.705268 --0.005718534 -0.005718534 1.705268 -0.0001755984 -0.005718534 1.705268 -0.006069731 -0.005718534 1.705268 -0.01197402 -0.005718534 1.705268 -0.01903886 -0.005718534 1.705268 -0.02852504 -0.005718534 1.705268 -0.04126244 -0.005718534 1.705268 -0.05836535 -0.005718534 1.705268 -0.08132997 -0.005718534 1.705268 -0.1121653 -0.005718534 1.705268 -0.1535689 -0.005718534 1.705268 -0.2091628 -0.005718534 1.705268 -0.2838106 -0.005718534 1.705268 -0.3840425 -0.005718534 1.705268 -0.518627 -0.005718534 1.705268 -0.6993381 -0.005718534 1.705268 -0.9419845 -0.005718534 1.705268 -1.267794 -0.005718534 1.705268 -1.705268 -0.005718534 1.705268 -2.292679 -0.005718534 1.705268 -3.081414 -0.005718534 1.705268 -4.140474 -0.005718534 1.705268 -5.562508 -0.005718534 1.705268 -7.471917 -0.005718534 1.705268 -10.03574 -0.005718534 1.705268 -13.47828 -0.005718534 1.705268 -18.10068 -0.005718534 1.705268 -24.30731 -0.005718534 1.705268 -32.64117 -0.005718534 1.705268 -43.83129 -0.005718534 1.705268 -58.85664 -0.005718534 1.705268 --0.0175068 0.0001755984 1.705268 --0.01161267 0.0001755984 1.705268 --0.005718534 0.0001755984 1.705268 -0.0001755984 0.0001755984 1.705268 -0.006069731 0.0001755984 1.705268 -0.01197402 0.0001755984 1.705268 -0.01903886 0.0001755984 1.705268 -0.02852504 0.0001755984 1.705268 -0.04126244 0.0001755984 1.705268 -0.05836535 0.0001755984 1.705268 -0.08132997 0.0001755984 1.705268 -0.1121653 0.0001755984 1.705268 -0.1535689 0.0001755984 1.705268 -0.2091628 0.0001755984 1.705268 -0.2838106 0.0001755984 1.705268 -0.3840425 0.0001755984 1.705268 -0.518627 0.0001755984 1.705268 -0.6993381 0.0001755984 1.705268 -0.9419845 0.0001755984 1.705268 -1.267794 0.0001755984 1.705268 -1.705268 0.0001755984 1.705268 -2.292679 0.0001755984 1.705268 -3.081414 0.0001755984 1.705268 -4.140474 0.0001755984 1.705268 -5.562508 0.0001755984 1.705268 -7.471917 0.0001755984 1.705268 -10.03574 0.0001755984 1.705268 -13.47828 0.0001755984 1.705268 -18.10068 0.0001755984 1.705268 -24.30731 0.0001755984 1.705268 -32.64117 0.0001755984 1.705268 -43.83129 0.0001755984 1.705268 -58.85664 0.0001755984 1.705268 --0.0175068 0.006069731 1.705268 --0.01161267 0.006069731 1.705268 --0.005718534 0.006069731 1.705268 -0.0001755984 0.006069731 1.705268 -0.006069731 0.006069731 1.705268 -0.01197402 0.006069731 1.705268 -0.01903886 0.006069731 1.705268 -0.02852504 0.006069731 1.705268 -0.04126244 0.006069731 1.705268 -0.05836535 0.006069731 1.705268 -0.08132997 0.006069731 1.705268 -0.1121653 0.006069731 1.705268 -0.1535689 0.006069731 1.705268 -0.2091628 0.006069731 1.705268 -0.2838106 0.006069731 1.705268 -0.3840425 0.006069731 1.705268 -0.518627 0.006069731 1.705268 -0.6993381 0.006069731 1.705268 -0.9419845 0.006069731 1.705268 -1.267794 0.006069731 1.705268 -1.705268 0.006069731 1.705268 -2.292679 0.006069731 1.705268 -3.081414 0.006069731 1.705268 -4.140474 0.006069731 1.705268 -5.562508 0.006069731 1.705268 -7.471917 0.006069731 1.705268 -10.03574 0.006069731 1.705268 -13.47828 0.006069731 1.705268 -18.10068 0.006069731 1.705268 -24.30731 0.006069731 1.705268 -32.64117 0.006069731 1.705268 -43.83129 0.006069731 1.705268 -58.85664 0.006069731 1.705268 --0.0175068 0.01197402 1.705268 --0.01161267 0.01197402 1.705268 --0.005718534 0.01197402 1.705268 -0.0001755984 0.01197402 1.705268 -0.006069731 0.01197402 1.705268 -0.01197402 0.01197402 1.705268 -0.01903886 0.01197402 1.705268 -0.02852504 0.01197402 1.705268 -0.04126244 0.01197402 1.705268 -0.05836535 0.01197402 1.705268 -0.08132997 0.01197402 1.705268 -0.1121653 0.01197402 1.705268 -0.1535689 0.01197402 1.705268 -0.2091628 0.01197402 1.705268 -0.2838106 0.01197402 1.705268 -0.3840425 0.01197402 1.705268 -0.518627 0.01197402 1.705268 -0.6993381 0.01197402 1.705268 -0.9419845 0.01197402 1.705268 -1.267794 0.01197402 1.705268 -1.705268 0.01197402 1.705268 -2.292679 0.01197402 1.705268 -3.081414 0.01197402 1.705268 -4.140474 0.01197402 1.705268 -5.562508 0.01197402 1.705268 -7.471917 0.01197402 1.705268 -10.03574 0.01197402 1.705268 -13.47828 0.01197402 1.705268 -18.10068 0.01197402 1.705268 -24.30731 0.01197402 1.705268 -32.64117 0.01197402 1.705268 -43.83129 0.01197402 1.705268 -58.85664 0.01197402 1.705268 --0.0175068 0.01903886 1.705268 --0.01161267 0.01903886 1.705268 --0.005718534 0.01903886 1.705268 -0.0001755984 0.01903886 1.705268 -0.006069731 0.01903886 1.705268 -0.01197402 0.01903886 1.705268 -0.01903886 0.01903886 1.705268 -0.02852504 0.01903886 1.705268 -0.04126244 0.01903886 1.705268 -0.05836535 0.01903886 1.705268 -0.08132997 0.01903886 1.705268 -0.1121653 0.01903886 1.705268 -0.1535689 0.01903886 1.705268 -0.2091628 0.01903886 1.705268 -0.2838106 0.01903886 1.705268 -0.3840425 0.01903886 1.705268 -0.518627 0.01903886 1.705268 -0.6993381 0.01903886 1.705268 -0.9419845 0.01903886 1.705268 -1.267794 0.01903886 1.705268 -1.705268 0.01903886 1.705268 -2.292679 0.01903886 1.705268 -3.081414 0.01903886 1.705268 -4.140474 0.01903886 1.705268 -5.562508 0.01903886 1.705268 -7.471917 0.01903886 1.705268 -10.03574 0.01903886 1.705268 -13.47828 0.01903886 1.705268 -18.10068 0.01903886 1.705268 -24.30731 0.01903886 1.705268 -32.64117 0.01903886 1.705268 -43.83129 0.01903886 1.705268 -58.85664 0.01903886 1.705268 --0.0175068 0.02852504 1.705268 --0.01161267 0.02852504 1.705268 --0.005718534 0.02852504 1.705268 -0.0001755984 0.02852504 1.705268 -0.006069731 0.02852504 1.705268 -0.01197402 0.02852504 1.705268 -0.01903886 0.02852504 1.705268 -0.02852504 0.02852504 1.705268 -0.04126244 0.02852504 1.705268 -0.05836535 0.02852504 1.705268 -0.08132997 0.02852504 1.705268 -0.1121653 0.02852504 1.705268 -0.1535689 0.02852504 1.705268 -0.2091628 0.02852504 1.705268 -0.2838106 0.02852504 1.705268 -0.3840425 0.02852504 1.705268 -0.518627 0.02852504 1.705268 -0.6993381 0.02852504 1.705268 -0.9419845 0.02852504 1.705268 -1.267794 0.02852504 1.705268 -1.705268 0.02852504 1.705268 -2.292679 0.02852504 1.705268 -3.081414 0.02852504 1.705268 -4.140474 0.02852504 1.705268 -5.562508 0.02852504 1.705268 -7.471917 0.02852504 1.705268 -10.03574 0.02852504 1.705268 -13.47828 0.02852504 1.705268 -18.10068 0.02852504 1.705268 -24.30731 0.02852504 1.705268 -32.64117 0.02852504 1.705268 -43.83129 0.02852504 1.705268 -58.85664 0.02852504 1.705268 --0.0175068 0.04126244 1.705268 --0.01161267 0.04126244 1.705268 --0.005718534 0.04126244 1.705268 -0.0001755984 0.04126244 1.705268 -0.006069731 0.04126244 1.705268 -0.01197402 0.04126244 1.705268 -0.01903886 0.04126244 1.705268 -0.02852504 0.04126244 1.705268 -0.04126244 0.04126244 1.705268 -0.05836535 0.04126244 1.705268 -0.08132997 0.04126244 1.705268 -0.1121653 0.04126244 1.705268 -0.1535689 0.04126244 1.705268 -0.2091628 0.04126244 1.705268 -0.2838106 0.04126244 1.705268 -0.3840425 0.04126244 1.705268 -0.518627 0.04126244 1.705268 -0.6993381 0.04126244 1.705268 -0.9419845 0.04126244 1.705268 -1.267794 0.04126244 1.705268 -1.705268 0.04126244 1.705268 -2.292679 0.04126244 1.705268 -3.081414 0.04126244 1.705268 -4.140474 0.04126244 1.705268 -5.562508 0.04126244 1.705268 -7.471917 0.04126244 1.705268 -10.03574 0.04126244 1.705268 -13.47828 0.04126244 1.705268 -18.10068 0.04126244 1.705268 -24.30731 0.04126244 1.705268 -32.64117 0.04126244 1.705268 -43.83129 0.04126244 1.705268 -58.85664 0.04126244 1.705268 --0.0175068 0.05836535 1.705268 --0.01161267 0.05836535 1.705268 --0.005718534 0.05836535 1.705268 -0.0001755984 0.05836535 1.705268 -0.006069731 0.05836535 1.705268 -0.01197402 0.05836535 1.705268 -0.01903886 0.05836535 1.705268 -0.02852504 0.05836535 1.705268 -0.04126244 0.05836535 1.705268 -0.05836535 0.05836535 1.705268 -0.08132997 0.05836535 1.705268 -0.1121653 0.05836535 1.705268 -0.1535689 0.05836535 1.705268 -0.2091628 0.05836535 1.705268 -0.2838106 0.05836535 1.705268 -0.3840425 0.05836535 1.705268 -0.518627 0.05836535 1.705268 -0.6993381 0.05836535 1.705268 -0.9419845 0.05836535 1.705268 -1.267794 0.05836535 1.705268 -1.705268 0.05836535 1.705268 -2.292679 0.05836535 1.705268 -3.081414 0.05836535 1.705268 -4.140474 0.05836535 1.705268 -5.562508 0.05836535 1.705268 -7.471917 0.05836535 1.705268 -10.03574 0.05836535 1.705268 -13.47828 0.05836535 1.705268 -18.10068 0.05836535 1.705268 -24.30731 0.05836535 1.705268 -32.64117 0.05836535 1.705268 -43.83129 0.05836535 1.705268 -58.85664 0.05836535 1.705268 --0.0175068 0.08132997 1.705268 --0.01161267 0.08132997 1.705268 --0.005718534 0.08132997 1.705268 -0.0001755984 0.08132997 1.705268 -0.006069731 0.08132997 1.705268 -0.01197402 0.08132997 1.705268 -0.01903886 0.08132997 1.705268 -0.02852504 0.08132997 1.705268 -0.04126244 0.08132997 1.705268 -0.05836535 0.08132997 1.705268 -0.08132997 0.08132997 1.705268 -0.1121653 0.08132997 1.705268 -0.1535689 0.08132997 1.705268 -0.2091628 0.08132997 1.705268 -0.2838106 0.08132997 1.705268 -0.3840425 0.08132997 1.705268 -0.518627 0.08132997 1.705268 -0.6993381 0.08132997 1.705268 -0.9419845 0.08132997 1.705268 -1.267794 0.08132997 1.705268 -1.705268 0.08132997 1.705268 -2.292679 0.08132997 1.705268 -3.081414 0.08132997 1.705268 -4.140474 0.08132997 1.705268 -5.562508 0.08132997 1.705268 -7.471917 0.08132997 1.705268 -10.03574 0.08132997 1.705268 -13.47828 0.08132997 1.705268 -18.10068 0.08132997 1.705268 -24.30731 0.08132997 1.705268 -32.64117 0.08132997 1.705268 -43.83129 0.08132997 1.705268 -58.85664 0.08132997 1.705268 --0.0175068 0.1121653 1.705268 --0.01161267 0.1121653 1.705268 --0.005718534 0.1121653 1.705268 -0.0001755984 0.1121653 1.705268 -0.006069731 0.1121653 1.705268 -0.01197402 0.1121653 1.705268 -0.01903886 0.1121653 1.705268 -0.02852504 0.1121653 1.705268 -0.04126244 0.1121653 1.705268 -0.05836535 0.1121653 1.705268 -0.08132997 0.1121653 1.705268 -0.1121653 0.1121653 1.705268 -0.1535689 0.1121653 1.705268 -0.2091628 0.1121653 1.705268 -0.2838106 0.1121653 1.705268 -0.3840425 0.1121653 1.705268 -0.518627 0.1121653 1.705268 -0.6993381 0.1121653 1.705268 -0.9419845 0.1121653 1.705268 -1.267794 0.1121653 1.705268 -1.705268 0.1121653 1.705268 -2.292679 0.1121653 1.705268 -3.081414 0.1121653 1.705268 -4.140474 0.1121653 1.705268 -5.562508 0.1121653 1.705268 -7.471917 0.1121653 1.705268 -10.03574 0.1121653 1.705268 -13.47828 0.1121653 1.705268 -18.10068 0.1121653 1.705268 -24.30731 0.1121653 1.705268 -32.64117 0.1121653 1.705268 -43.83129 0.1121653 1.705268 -58.85664 0.1121653 1.705268 --0.0175068 0.1535689 1.705268 --0.01161267 0.1535689 1.705268 --0.005718534 0.1535689 1.705268 -0.0001755984 0.1535689 1.705268 -0.006069731 0.1535689 1.705268 -0.01197402 0.1535689 1.705268 -0.01903886 0.1535689 1.705268 -0.02852504 0.1535689 1.705268 -0.04126244 0.1535689 1.705268 -0.05836535 0.1535689 1.705268 -0.08132997 0.1535689 1.705268 -0.1121653 0.1535689 1.705268 -0.1535689 0.1535689 1.705268 -0.2091628 0.1535689 1.705268 -0.2838106 0.1535689 1.705268 -0.3840425 0.1535689 1.705268 -0.518627 0.1535689 1.705268 -0.6993381 0.1535689 1.705268 -0.9419845 0.1535689 1.705268 -1.267794 0.1535689 1.705268 -1.705268 0.1535689 1.705268 -2.292679 0.1535689 1.705268 -3.081414 0.1535689 1.705268 -4.140474 0.1535689 1.705268 -5.562508 0.1535689 1.705268 -7.471917 0.1535689 1.705268 -10.03574 0.1535689 1.705268 -13.47828 0.1535689 1.705268 -18.10068 0.1535689 1.705268 -24.30731 0.1535689 1.705268 -32.64117 0.1535689 1.705268 -43.83129 0.1535689 1.705268 -58.85664 0.1535689 1.705268 --0.0175068 0.2091628 1.705268 --0.01161267 0.2091628 1.705268 --0.005718534 0.2091628 1.705268 -0.0001755984 0.2091628 1.705268 -0.006069731 0.2091628 1.705268 -0.01197402 0.2091628 1.705268 -0.01903886 0.2091628 1.705268 -0.02852504 0.2091628 1.705268 -0.04126244 0.2091628 1.705268 -0.05836535 0.2091628 1.705268 -0.08132997 0.2091628 1.705268 -0.1121653 0.2091628 1.705268 -0.1535689 0.2091628 1.705268 -0.2091628 0.2091628 1.705268 -0.2838106 0.2091628 1.705268 -0.3840425 0.2091628 1.705268 -0.518627 0.2091628 1.705268 -0.6993381 0.2091628 1.705268 -0.9419845 0.2091628 1.705268 -1.267794 0.2091628 1.705268 -1.705268 0.2091628 1.705268 -2.292679 0.2091628 1.705268 -3.081414 0.2091628 1.705268 -4.140474 0.2091628 1.705268 -5.562508 0.2091628 1.705268 -7.471917 0.2091628 1.705268 -10.03574 0.2091628 1.705268 -13.47828 0.2091628 1.705268 -18.10068 0.2091628 1.705268 -24.30731 0.2091628 1.705268 -32.64117 0.2091628 1.705268 -43.83129 0.2091628 1.705268 -58.85664 0.2091628 1.705268 --0.0175068 0.2838106 1.705268 --0.01161267 0.2838106 1.705268 --0.005718534 0.2838106 1.705268 -0.0001755984 0.2838106 1.705268 -0.006069731 0.2838106 1.705268 -0.01197402 0.2838106 1.705268 -0.01903886 0.2838106 1.705268 -0.02852504 0.2838106 1.705268 -0.04126244 0.2838106 1.705268 -0.05836535 0.2838106 1.705268 -0.08132997 0.2838106 1.705268 -0.1121653 0.2838106 1.705268 -0.1535689 0.2838106 1.705268 -0.2091628 0.2838106 1.705268 -0.2838106 0.2838106 1.705268 -0.3840425 0.2838106 1.705268 -0.518627 0.2838106 1.705268 -0.6993381 0.2838106 1.705268 -0.9419845 0.2838106 1.705268 -1.267794 0.2838106 1.705268 -1.705268 0.2838106 1.705268 -2.292679 0.2838106 1.705268 -3.081414 0.2838106 1.705268 -4.140474 0.2838106 1.705268 -5.562508 0.2838106 1.705268 -7.471917 0.2838106 1.705268 -10.03574 0.2838106 1.705268 -13.47828 0.2838106 1.705268 -18.10068 0.2838106 1.705268 -24.30731 0.2838106 1.705268 -32.64117 0.2838106 1.705268 -43.83129 0.2838106 1.705268 -58.85664 0.2838106 1.705268 --0.0175068 0.3840425 1.705268 --0.01161267 0.3840425 1.705268 --0.005718534 0.3840425 1.705268 -0.0001755984 0.3840425 1.705268 -0.006069731 0.3840425 1.705268 -0.01197402 0.3840425 1.705268 -0.01903886 0.3840425 1.705268 -0.02852504 0.3840425 1.705268 -0.04126244 0.3840425 1.705268 -0.05836535 0.3840425 1.705268 -0.08132997 0.3840425 1.705268 -0.1121653 0.3840425 1.705268 -0.1535689 0.3840425 1.705268 -0.2091628 0.3840425 1.705268 -0.2838106 0.3840425 1.705268 -0.3840425 0.3840425 1.705268 -0.518627 0.3840425 1.705268 -0.6993381 0.3840425 1.705268 -0.9419845 0.3840425 1.705268 -1.267794 0.3840425 1.705268 -1.705268 0.3840425 1.705268 -2.292679 0.3840425 1.705268 -3.081414 0.3840425 1.705268 -4.140474 0.3840425 1.705268 -5.562508 0.3840425 1.705268 -7.471917 0.3840425 1.705268 -10.03574 0.3840425 1.705268 -13.47828 0.3840425 1.705268 -18.10068 0.3840425 1.705268 -24.30731 0.3840425 1.705268 -32.64117 0.3840425 1.705268 -43.83129 0.3840425 1.705268 -58.85664 0.3840425 1.705268 --0.0175068 0.518627 1.705268 --0.01161267 0.518627 1.705268 --0.005718534 0.518627 1.705268 -0.0001755984 0.518627 1.705268 -0.006069731 0.518627 1.705268 -0.01197402 0.518627 1.705268 -0.01903886 0.518627 1.705268 -0.02852504 0.518627 1.705268 -0.04126244 0.518627 1.705268 -0.05836535 0.518627 1.705268 -0.08132997 0.518627 1.705268 -0.1121653 0.518627 1.705268 -0.1535689 0.518627 1.705268 -0.2091628 0.518627 1.705268 -0.2838106 0.518627 1.705268 -0.3840425 0.518627 1.705268 -0.518627 0.518627 1.705268 -0.6993381 0.518627 1.705268 -0.9419845 0.518627 1.705268 -1.267794 0.518627 1.705268 -1.705268 0.518627 1.705268 -2.292679 0.518627 1.705268 -3.081414 0.518627 1.705268 -4.140474 0.518627 1.705268 -5.562508 0.518627 1.705268 -7.471917 0.518627 1.705268 -10.03574 0.518627 1.705268 -13.47828 0.518627 1.705268 -18.10068 0.518627 1.705268 -24.30731 0.518627 1.705268 -32.64117 0.518627 1.705268 -43.83129 0.518627 1.705268 -58.85664 0.518627 1.705268 --0.0175068 0.6993381 1.705268 --0.01161267 0.6993381 1.705268 --0.005718534 0.6993381 1.705268 -0.0001755984 0.6993381 1.705268 -0.006069731 0.6993381 1.705268 -0.01197402 0.6993381 1.705268 -0.01903886 0.6993381 1.705268 -0.02852504 0.6993381 1.705268 -0.04126244 0.6993381 1.705268 -0.05836535 0.6993381 1.705268 -0.08132997 0.6993381 1.705268 -0.1121653 0.6993381 1.705268 -0.1535689 0.6993381 1.705268 -0.2091628 0.6993381 1.705268 -0.2838106 0.6993381 1.705268 -0.3840425 0.6993381 1.705268 -0.518627 0.6993381 1.705268 -0.6993381 0.6993381 1.705268 -0.9419845 0.6993381 1.705268 -1.267794 0.6993381 1.705268 -1.705268 0.6993381 1.705268 -2.292679 0.6993381 1.705268 -3.081414 0.6993381 1.705268 -4.140474 0.6993381 1.705268 -5.562508 0.6993381 1.705268 -7.471917 0.6993381 1.705268 -10.03574 0.6993381 1.705268 -13.47828 0.6993381 1.705268 -18.10068 0.6993381 1.705268 -24.30731 0.6993381 1.705268 -32.64117 0.6993381 1.705268 -43.83129 0.6993381 1.705268 -58.85664 0.6993381 1.705268 --0.0175068 0.9419845 1.705268 --0.01161267 0.9419845 1.705268 --0.005718534 0.9419845 1.705268 -0.0001755984 0.9419845 1.705268 -0.006069731 0.9419845 1.705268 -0.01197402 0.9419845 1.705268 -0.01903886 0.9419845 1.705268 -0.02852504 0.9419845 1.705268 -0.04126244 0.9419845 1.705268 -0.05836535 0.9419845 1.705268 -0.08132997 0.9419845 1.705268 -0.1121653 0.9419845 1.705268 -0.1535689 0.9419845 1.705268 -0.2091628 0.9419845 1.705268 -0.2838106 0.9419845 1.705268 -0.3840425 0.9419845 1.705268 -0.518627 0.9419845 1.705268 -0.6993381 0.9419845 1.705268 -0.9419845 0.9419845 1.705268 -1.267794 0.9419845 1.705268 -1.705268 0.9419845 1.705268 -2.292679 0.9419845 1.705268 -3.081414 0.9419845 1.705268 -4.140474 0.9419845 1.705268 -5.562508 0.9419845 1.705268 -7.471917 0.9419845 1.705268 -10.03574 0.9419845 1.705268 -13.47828 0.9419845 1.705268 -18.10068 0.9419845 1.705268 -24.30731 0.9419845 1.705268 -32.64117 0.9419845 1.705268 -43.83129 0.9419845 1.705268 -58.85664 0.9419845 1.705268 --0.0175068 1.267794 1.705268 --0.01161267 1.267794 1.705268 --0.005718534 1.267794 1.705268 -0.0001755984 1.267794 1.705268 -0.006069731 1.267794 1.705268 -0.01197402 1.267794 1.705268 -0.01903886 1.267794 1.705268 -0.02852504 1.267794 1.705268 -0.04126244 1.267794 1.705268 -0.05836535 1.267794 1.705268 -0.08132997 1.267794 1.705268 -0.1121653 1.267794 1.705268 -0.1535689 1.267794 1.705268 -0.2091628 1.267794 1.705268 -0.2838106 1.267794 1.705268 -0.3840425 1.267794 1.705268 -0.518627 1.267794 1.705268 -0.6993381 1.267794 1.705268 -0.9419845 1.267794 1.705268 -1.267794 1.267794 1.705268 -1.705268 1.267794 1.705268 -2.292679 1.267794 1.705268 -3.081414 1.267794 1.705268 -4.140474 1.267794 1.705268 -5.562508 1.267794 1.705268 -7.471917 1.267794 1.705268 -10.03574 1.267794 1.705268 -13.47828 1.267794 1.705268 -18.10068 1.267794 1.705268 -24.30731 1.267794 1.705268 -32.64117 1.267794 1.705268 -43.83129 1.267794 1.705268 -58.85664 1.267794 1.705268 --0.0175068 1.705268 1.705268 --0.01161267 1.705268 1.705268 --0.005718534 1.705268 1.705268 -0.0001755984 1.705268 1.705268 -0.006069731 1.705268 1.705268 -0.01197402 1.705268 1.705268 -0.01903886 1.705268 1.705268 -0.02852504 1.705268 1.705268 -0.04126244 1.705268 1.705268 -0.05836535 1.705268 1.705268 -0.08132997 1.705268 1.705268 -0.1121653 1.705268 1.705268 -0.1535689 1.705268 1.705268 -0.2091628 1.705268 1.705268 -0.2838106 1.705268 1.705268 -0.3840425 1.705268 1.705268 -0.518627 1.705268 1.705268 -0.6993381 1.705268 1.705268 -0.9419845 1.705268 1.705268 -1.267794 1.705268 1.705268 -1.705268 1.705268 1.705268 -2.292679 1.705268 1.705268 -3.081414 1.705268 1.705268 -4.140474 1.705268 1.705268 -5.562508 1.705268 1.705268 -7.471917 1.705268 1.705268 -10.03574 1.705268 1.705268 -13.47828 1.705268 1.705268 -18.10068 1.705268 1.705268 -24.30731 1.705268 1.705268 -32.64117 1.705268 1.705268 -43.83129 1.705268 1.705268 -58.85664 1.705268 1.705268 --0.0175068 2.292679 1.705268 --0.01161267 2.292679 1.705268 --0.005718534 2.292679 1.705268 -0.0001755984 2.292679 1.705268 -0.006069731 2.292679 1.705268 -0.01197402 2.292679 1.705268 -0.01903886 2.292679 1.705268 -0.02852504 2.292679 1.705268 -0.04126244 2.292679 1.705268 -0.05836535 2.292679 1.705268 -0.08132997 2.292679 1.705268 -0.1121653 2.292679 1.705268 -0.1535689 2.292679 1.705268 -0.2091628 2.292679 1.705268 -0.2838106 2.292679 1.705268 -0.3840425 2.292679 1.705268 -0.518627 2.292679 1.705268 -0.6993381 2.292679 1.705268 -0.9419845 2.292679 1.705268 -1.267794 2.292679 1.705268 -1.705268 2.292679 1.705268 -2.292679 2.292679 1.705268 -3.081414 2.292679 1.705268 -4.140474 2.292679 1.705268 -5.562508 2.292679 1.705268 -7.471917 2.292679 1.705268 -10.03574 2.292679 1.705268 -13.47828 2.292679 1.705268 -18.10068 2.292679 1.705268 -24.30731 2.292679 1.705268 -32.64117 2.292679 1.705268 -43.83129 2.292679 1.705268 -58.85664 2.292679 1.705268 --0.0175068 3.081414 1.705268 --0.01161267 3.081414 1.705268 --0.005718534 3.081414 1.705268 -0.0001755984 3.081414 1.705268 -0.006069731 3.081414 1.705268 -0.01197402 3.081414 1.705268 -0.01903886 3.081414 1.705268 -0.02852504 3.081414 1.705268 -0.04126244 3.081414 1.705268 -0.05836535 3.081414 1.705268 -0.08132997 3.081414 1.705268 -0.1121653 3.081414 1.705268 -0.1535689 3.081414 1.705268 -0.2091628 3.081414 1.705268 -0.2838106 3.081414 1.705268 -0.3840425 3.081414 1.705268 -0.518627 3.081414 1.705268 -0.6993381 3.081414 1.705268 -0.9419845 3.081414 1.705268 -1.267794 3.081414 1.705268 -1.705268 3.081414 1.705268 -2.292679 3.081414 1.705268 -3.081414 3.081414 1.705268 -4.140474 3.081414 1.705268 -5.562508 3.081414 1.705268 -7.471917 3.081414 1.705268 -10.03574 3.081414 1.705268 -13.47828 3.081414 1.705268 -18.10068 3.081414 1.705268 -24.30731 3.081414 1.705268 -32.64117 3.081414 1.705268 -43.83129 3.081414 1.705268 -58.85664 3.081414 1.705268 --0.0175068 4.140474 1.705268 --0.01161267 4.140474 1.705268 --0.005718534 4.140474 1.705268 -0.0001755984 4.140474 1.705268 -0.006069731 4.140474 1.705268 -0.01197402 4.140474 1.705268 -0.01903886 4.140474 1.705268 -0.02852504 4.140474 1.705268 -0.04126244 4.140474 1.705268 -0.05836535 4.140474 1.705268 -0.08132997 4.140474 1.705268 -0.1121653 4.140474 1.705268 -0.1535689 4.140474 1.705268 -0.2091628 4.140474 1.705268 -0.2838106 4.140474 1.705268 -0.3840425 4.140474 1.705268 -0.518627 4.140474 1.705268 -0.6993381 4.140474 1.705268 -0.9419845 4.140474 1.705268 -1.267794 4.140474 1.705268 -1.705268 4.140474 1.705268 -2.292679 4.140474 1.705268 -3.081414 4.140474 1.705268 -4.140474 4.140474 1.705268 -5.562508 4.140474 1.705268 -7.471917 4.140474 1.705268 -10.03574 4.140474 1.705268 -13.47828 4.140474 1.705268 -18.10068 4.140474 1.705268 -24.30731 4.140474 1.705268 -32.64117 4.140474 1.705268 -43.83129 4.140474 1.705268 -58.85664 4.140474 1.705268 --0.0175068 5.562508 1.705268 --0.01161267 5.562508 1.705268 --0.005718534 5.562508 1.705268 -0.0001755984 5.562508 1.705268 -0.006069731 5.562508 1.705268 -0.01197402 5.562508 1.705268 -0.01903886 5.562508 1.705268 -0.02852504 5.562508 1.705268 -0.04126244 5.562508 1.705268 -0.05836535 5.562508 1.705268 -0.08132997 5.562508 1.705268 -0.1121653 5.562508 1.705268 -0.1535689 5.562508 1.705268 -0.2091628 5.562508 1.705268 -0.2838106 5.562508 1.705268 -0.3840425 5.562508 1.705268 -0.518627 5.562508 1.705268 -0.6993381 5.562508 1.705268 -0.9419845 5.562508 1.705268 -1.267794 5.562508 1.705268 -1.705268 5.562508 1.705268 -2.292679 5.562508 1.705268 -3.081414 5.562508 1.705268 -4.140474 5.562508 1.705268 -5.562508 5.562508 1.705268 -7.471917 5.562508 1.705268 -10.03574 5.562508 1.705268 -13.47828 5.562508 1.705268 -18.10068 5.562508 1.705268 -24.30731 5.562508 1.705268 -32.64117 5.562508 1.705268 -43.83129 5.562508 1.705268 -58.85664 5.562508 1.705268 --0.0175068 7.471917 1.705268 --0.01161267 7.471917 1.705268 --0.005718534 7.471917 1.705268 -0.0001755984 7.471917 1.705268 -0.006069731 7.471917 1.705268 -0.01197402 7.471917 1.705268 -0.01903886 7.471917 1.705268 -0.02852504 7.471917 1.705268 -0.04126244 7.471917 1.705268 -0.05836535 7.471917 1.705268 -0.08132997 7.471917 1.705268 -0.1121653 7.471917 1.705268 -0.1535689 7.471917 1.705268 -0.2091628 7.471917 1.705268 -0.2838106 7.471917 1.705268 -0.3840425 7.471917 1.705268 -0.518627 7.471917 1.705268 -0.6993381 7.471917 1.705268 -0.9419845 7.471917 1.705268 -1.267794 7.471917 1.705268 -1.705268 7.471917 1.705268 -2.292679 7.471917 1.705268 -3.081414 7.471917 1.705268 -4.140474 7.471917 1.705268 -5.562508 7.471917 1.705268 -7.471917 7.471917 1.705268 -10.03574 7.471917 1.705268 -13.47828 7.471917 1.705268 -18.10068 7.471917 1.705268 -24.30731 7.471917 1.705268 -32.64117 7.471917 1.705268 -43.83129 7.471917 1.705268 -58.85664 7.471917 1.705268 --0.0175068 10.03574 1.705268 --0.01161267 10.03574 1.705268 --0.005718534 10.03574 1.705268 -0.0001755984 10.03574 1.705268 -0.006069731 10.03574 1.705268 -0.01197402 10.03574 1.705268 -0.01903886 10.03574 1.705268 -0.02852504 10.03574 1.705268 -0.04126244 10.03574 1.705268 -0.05836535 10.03574 1.705268 -0.08132997 10.03574 1.705268 -0.1121653 10.03574 1.705268 -0.1535689 10.03574 1.705268 -0.2091628 10.03574 1.705268 -0.2838106 10.03574 1.705268 -0.3840425 10.03574 1.705268 -0.518627 10.03574 1.705268 -0.6993381 10.03574 1.705268 -0.9419845 10.03574 1.705268 -1.267794 10.03574 1.705268 -1.705268 10.03574 1.705268 -2.292679 10.03574 1.705268 -3.081414 10.03574 1.705268 -4.140474 10.03574 1.705268 -5.562508 10.03574 1.705268 -7.471917 10.03574 1.705268 -10.03574 10.03574 1.705268 -13.47828 10.03574 1.705268 -18.10068 10.03574 1.705268 -24.30731 10.03574 1.705268 -32.64117 10.03574 1.705268 -43.83129 10.03574 1.705268 -58.85664 10.03574 1.705268 --0.0175068 13.47828 1.705268 --0.01161267 13.47828 1.705268 --0.005718534 13.47828 1.705268 -0.0001755984 13.47828 1.705268 -0.006069731 13.47828 1.705268 -0.01197402 13.47828 1.705268 -0.01903886 13.47828 1.705268 -0.02852504 13.47828 1.705268 -0.04126244 13.47828 1.705268 -0.05836535 13.47828 1.705268 -0.08132997 13.47828 1.705268 -0.1121653 13.47828 1.705268 -0.1535689 13.47828 1.705268 -0.2091628 13.47828 1.705268 -0.2838106 13.47828 1.705268 -0.3840425 13.47828 1.705268 -0.518627 13.47828 1.705268 -0.6993381 13.47828 1.705268 -0.9419845 13.47828 1.705268 -1.267794 13.47828 1.705268 -1.705268 13.47828 1.705268 -2.292679 13.47828 1.705268 -3.081414 13.47828 1.705268 -4.140474 13.47828 1.705268 -5.562508 13.47828 1.705268 -7.471917 13.47828 1.705268 -10.03574 13.47828 1.705268 -13.47828 13.47828 1.705268 -18.10068 13.47828 1.705268 -24.30731 13.47828 1.705268 -32.64117 13.47828 1.705268 -43.83129 13.47828 1.705268 -58.85664 13.47828 1.705268 --0.0175068 18.10068 1.705268 --0.01161267 18.10068 1.705268 --0.005718534 18.10068 1.705268 -0.0001755984 18.10068 1.705268 -0.006069731 18.10068 1.705268 -0.01197402 18.10068 1.705268 -0.01903886 18.10068 1.705268 -0.02852504 18.10068 1.705268 -0.04126244 18.10068 1.705268 -0.05836535 18.10068 1.705268 -0.08132997 18.10068 1.705268 -0.1121653 18.10068 1.705268 -0.1535689 18.10068 1.705268 -0.2091628 18.10068 1.705268 -0.2838106 18.10068 1.705268 -0.3840425 18.10068 1.705268 -0.518627 18.10068 1.705268 -0.6993381 18.10068 1.705268 -0.9419845 18.10068 1.705268 -1.267794 18.10068 1.705268 -1.705268 18.10068 1.705268 -2.292679 18.10068 1.705268 -3.081414 18.10068 1.705268 -4.140474 18.10068 1.705268 -5.562508 18.10068 1.705268 -7.471917 18.10068 1.705268 -10.03574 18.10068 1.705268 -13.47828 18.10068 1.705268 -18.10068 18.10068 1.705268 -24.30731 18.10068 1.705268 -32.64117 18.10068 1.705268 -43.83129 18.10068 1.705268 -58.85664 18.10068 1.705268 --0.0175068 24.30731 1.705268 --0.01161267 24.30731 1.705268 --0.005718534 24.30731 1.705268 -0.0001755984 24.30731 1.705268 -0.006069731 24.30731 1.705268 -0.01197402 24.30731 1.705268 -0.01903886 24.30731 1.705268 -0.02852504 24.30731 1.705268 -0.04126244 24.30731 1.705268 -0.05836535 24.30731 1.705268 -0.08132997 24.30731 1.705268 -0.1121653 24.30731 1.705268 -0.1535689 24.30731 1.705268 -0.2091628 24.30731 1.705268 -0.2838106 24.30731 1.705268 -0.3840425 24.30731 1.705268 -0.518627 24.30731 1.705268 -0.6993381 24.30731 1.705268 -0.9419845 24.30731 1.705268 -1.267794 24.30731 1.705268 -1.705268 24.30731 1.705268 -2.292679 24.30731 1.705268 -3.081414 24.30731 1.705268 -4.140474 24.30731 1.705268 -5.562508 24.30731 1.705268 -7.471917 24.30731 1.705268 -10.03574 24.30731 1.705268 -13.47828 24.30731 1.705268 -18.10068 24.30731 1.705268 -24.30731 24.30731 1.705268 -32.64117 24.30731 1.705268 -43.83129 24.30731 1.705268 -58.85664 24.30731 1.705268 --0.0175068 32.64117 1.705268 --0.01161267 32.64117 1.705268 --0.005718534 32.64117 1.705268 -0.0001755984 32.64117 1.705268 -0.006069731 32.64117 1.705268 -0.01197402 32.64117 1.705268 -0.01903886 32.64117 1.705268 -0.02852504 32.64117 1.705268 -0.04126244 32.64117 1.705268 -0.05836535 32.64117 1.705268 -0.08132997 32.64117 1.705268 -0.1121653 32.64117 1.705268 -0.1535689 32.64117 1.705268 -0.2091628 32.64117 1.705268 -0.2838106 32.64117 1.705268 -0.3840425 32.64117 1.705268 -0.518627 32.64117 1.705268 -0.6993381 32.64117 1.705268 -0.9419845 32.64117 1.705268 -1.267794 32.64117 1.705268 -1.705268 32.64117 1.705268 -2.292679 32.64117 1.705268 -3.081414 32.64117 1.705268 -4.140474 32.64117 1.705268 -5.562508 32.64117 1.705268 -7.471917 32.64117 1.705268 -10.03574 32.64117 1.705268 -13.47828 32.64117 1.705268 -18.10068 32.64117 1.705268 -24.30731 32.64117 1.705268 -32.64117 32.64117 1.705268 -43.83129 32.64117 1.705268 -58.85664 32.64117 1.705268 --0.0175068 43.83129 1.705268 --0.01161267 43.83129 1.705268 --0.005718534 43.83129 1.705268 -0.0001755984 43.83129 1.705268 -0.006069731 43.83129 1.705268 -0.01197402 43.83129 1.705268 -0.01903886 43.83129 1.705268 -0.02852504 43.83129 1.705268 -0.04126244 43.83129 1.705268 -0.05836535 43.83129 1.705268 -0.08132997 43.83129 1.705268 -0.1121653 43.83129 1.705268 -0.1535689 43.83129 1.705268 -0.2091628 43.83129 1.705268 -0.2838106 43.83129 1.705268 -0.3840425 43.83129 1.705268 -0.518627 43.83129 1.705268 -0.6993381 43.83129 1.705268 -0.9419845 43.83129 1.705268 -1.267794 43.83129 1.705268 -1.705268 43.83129 1.705268 -2.292679 43.83129 1.705268 -3.081414 43.83129 1.705268 -4.140474 43.83129 1.705268 -5.562508 43.83129 1.705268 -7.471917 43.83129 1.705268 -10.03574 43.83129 1.705268 -13.47828 43.83129 1.705268 -18.10068 43.83129 1.705268 -24.30731 43.83129 1.705268 -32.64117 43.83129 1.705268 -43.83129 43.83129 1.705268 -58.85664 43.83129 1.705268 --0.0175068 58.85664 1.705268 --0.01161267 58.85664 1.705268 --0.005718534 58.85664 1.705268 -0.0001755984 58.85664 1.705268 -0.006069731 58.85664 1.705268 -0.01197402 58.85664 1.705268 -0.01903886 58.85664 1.705268 -0.02852504 58.85664 1.705268 -0.04126244 58.85664 1.705268 -0.05836535 58.85664 1.705268 -0.08132997 58.85664 1.705268 -0.1121653 58.85664 1.705268 -0.1535689 58.85664 1.705268 -0.2091628 58.85664 1.705268 -0.2838106 58.85664 1.705268 -0.3840425 58.85664 1.705268 -0.518627 58.85664 1.705268 -0.6993381 58.85664 1.705268 -0.9419845 58.85664 1.705268 -1.267794 58.85664 1.705268 -1.705268 58.85664 1.705268 -2.292679 58.85664 1.705268 -3.081414 58.85664 1.705268 -4.140474 58.85664 1.705268 -5.562508 58.85664 1.705268 -7.471917 58.85664 1.705268 -10.03574 58.85664 1.705268 -13.47828 58.85664 1.705268 -18.10068 58.85664 1.705268 -24.30731 58.85664 1.705268 -32.64117 58.85664 1.705268 -43.83129 58.85664 1.705268 -58.85664 58.85664 1.705268 --0.0175068 -0.0175068 2.292679 --0.01161267 -0.0175068 2.292679 --0.005718534 -0.0175068 2.292679 -0.0001755984 -0.0175068 2.292679 -0.006069731 -0.0175068 2.292679 -0.01197402 -0.0175068 2.292679 -0.01903886 -0.0175068 2.292679 -0.02852504 -0.0175068 2.292679 -0.04126244 -0.0175068 2.292679 -0.05836535 -0.0175068 2.292679 -0.08132997 -0.0175068 2.292679 -0.1121653 -0.0175068 2.292679 -0.1535689 -0.0175068 2.292679 -0.2091628 -0.0175068 2.292679 -0.2838106 -0.0175068 2.292679 -0.3840425 -0.0175068 2.292679 -0.518627 -0.0175068 2.292679 -0.6993381 -0.0175068 2.292679 -0.9419845 -0.0175068 2.292679 -1.267794 -0.0175068 2.292679 -1.705268 -0.0175068 2.292679 -2.292679 -0.0175068 2.292679 -3.081414 -0.0175068 2.292679 -4.140474 -0.0175068 2.292679 -5.562508 -0.0175068 2.292679 -7.471917 -0.0175068 2.292679 -10.03574 -0.0175068 2.292679 -13.47828 -0.0175068 2.292679 -18.10068 -0.0175068 2.292679 -24.30731 -0.0175068 2.292679 -32.64117 -0.0175068 2.292679 -43.83129 -0.0175068 2.292679 -58.85664 -0.0175068 2.292679 --0.0175068 -0.01161267 2.292679 --0.01161267 -0.01161267 2.292679 --0.005718534 -0.01161267 2.292679 -0.0001755984 -0.01161267 2.292679 -0.006069731 -0.01161267 2.292679 -0.01197402 -0.01161267 2.292679 -0.01903886 -0.01161267 2.292679 -0.02852504 -0.01161267 2.292679 -0.04126244 -0.01161267 2.292679 -0.05836535 -0.01161267 2.292679 -0.08132997 -0.01161267 2.292679 -0.1121653 -0.01161267 2.292679 -0.1535689 -0.01161267 2.292679 -0.2091628 -0.01161267 2.292679 -0.2838106 -0.01161267 2.292679 -0.3840425 -0.01161267 2.292679 -0.518627 -0.01161267 2.292679 -0.6993381 -0.01161267 2.292679 -0.9419845 -0.01161267 2.292679 -1.267794 -0.01161267 2.292679 -1.705268 -0.01161267 2.292679 -2.292679 -0.01161267 2.292679 -3.081414 -0.01161267 2.292679 -4.140474 -0.01161267 2.292679 -5.562508 -0.01161267 2.292679 -7.471917 -0.01161267 2.292679 -10.03574 -0.01161267 2.292679 -13.47828 -0.01161267 2.292679 -18.10068 -0.01161267 2.292679 -24.30731 -0.01161267 2.292679 -32.64117 -0.01161267 2.292679 -43.83129 -0.01161267 2.292679 -58.85664 -0.01161267 2.292679 --0.0175068 -0.005718534 2.292679 --0.01161267 -0.005718534 2.292679 --0.005718534 -0.005718534 2.292679 -0.0001755984 -0.005718534 2.292679 -0.006069731 -0.005718534 2.292679 -0.01197402 -0.005718534 2.292679 -0.01903886 -0.005718534 2.292679 -0.02852504 -0.005718534 2.292679 -0.04126244 -0.005718534 2.292679 -0.05836535 -0.005718534 2.292679 -0.08132997 -0.005718534 2.292679 -0.1121653 -0.005718534 2.292679 -0.1535689 -0.005718534 2.292679 -0.2091628 -0.005718534 2.292679 -0.2838106 -0.005718534 2.292679 -0.3840425 -0.005718534 2.292679 -0.518627 -0.005718534 2.292679 -0.6993381 -0.005718534 2.292679 -0.9419845 -0.005718534 2.292679 -1.267794 -0.005718534 2.292679 -1.705268 -0.005718534 2.292679 -2.292679 -0.005718534 2.292679 -3.081414 -0.005718534 2.292679 -4.140474 -0.005718534 2.292679 -5.562508 -0.005718534 2.292679 -7.471917 -0.005718534 2.292679 -10.03574 -0.005718534 2.292679 -13.47828 -0.005718534 2.292679 -18.10068 -0.005718534 2.292679 -24.30731 -0.005718534 2.292679 -32.64117 -0.005718534 2.292679 -43.83129 -0.005718534 2.292679 -58.85664 -0.005718534 2.292679 --0.0175068 0.0001755984 2.292679 --0.01161267 0.0001755984 2.292679 --0.005718534 0.0001755984 2.292679 -0.0001755984 0.0001755984 2.292679 -0.006069731 0.0001755984 2.292679 -0.01197402 0.0001755984 2.292679 -0.01903886 0.0001755984 2.292679 -0.02852504 0.0001755984 2.292679 -0.04126244 0.0001755984 2.292679 -0.05836535 0.0001755984 2.292679 -0.08132997 0.0001755984 2.292679 -0.1121653 0.0001755984 2.292679 -0.1535689 0.0001755984 2.292679 -0.2091628 0.0001755984 2.292679 -0.2838106 0.0001755984 2.292679 -0.3840425 0.0001755984 2.292679 -0.518627 0.0001755984 2.292679 -0.6993381 0.0001755984 2.292679 -0.9419845 0.0001755984 2.292679 -1.267794 0.0001755984 2.292679 -1.705268 0.0001755984 2.292679 -2.292679 0.0001755984 2.292679 -3.081414 0.0001755984 2.292679 -4.140474 0.0001755984 2.292679 -5.562508 0.0001755984 2.292679 -7.471917 0.0001755984 2.292679 -10.03574 0.0001755984 2.292679 -13.47828 0.0001755984 2.292679 -18.10068 0.0001755984 2.292679 -24.30731 0.0001755984 2.292679 -32.64117 0.0001755984 2.292679 -43.83129 0.0001755984 2.292679 -58.85664 0.0001755984 2.292679 --0.0175068 0.006069731 2.292679 --0.01161267 0.006069731 2.292679 --0.005718534 0.006069731 2.292679 -0.0001755984 0.006069731 2.292679 -0.006069731 0.006069731 2.292679 -0.01197402 0.006069731 2.292679 -0.01903886 0.006069731 2.292679 -0.02852504 0.006069731 2.292679 -0.04126244 0.006069731 2.292679 -0.05836535 0.006069731 2.292679 -0.08132997 0.006069731 2.292679 -0.1121653 0.006069731 2.292679 -0.1535689 0.006069731 2.292679 -0.2091628 0.006069731 2.292679 -0.2838106 0.006069731 2.292679 -0.3840425 0.006069731 2.292679 -0.518627 0.006069731 2.292679 -0.6993381 0.006069731 2.292679 -0.9419845 0.006069731 2.292679 -1.267794 0.006069731 2.292679 -1.705268 0.006069731 2.292679 -2.292679 0.006069731 2.292679 -3.081414 0.006069731 2.292679 -4.140474 0.006069731 2.292679 -5.562508 0.006069731 2.292679 -7.471917 0.006069731 2.292679 -10.03574 0.006069731 2.292679 -13.47828 0.006069731 2.292679 -18.10068 0.006069731 2.292679 -24.30731 0.006069731 2.292679 -32.64117 0.006069731 2.292679 -43.83129 0.006069731 2.292679 -58.85664 0.006069731 2.292679 --0.0175068 0.01197402 2.292679 --0.01161267 0.01197402 2.292679 --0.005718534 0.01197402 2.292679 -0.0001755984 0.01197402 2.292679 -0.006069731 0.01197402 2.292679 -0.01197402 0.01197402 2.292679 -0.01903886 0.01197402 2.292679 -0.02852504 0.01197402 2.292679 -0.04126244 0.01197402 2.292679 -0.05836535 0.01197402 2.292679 -0.08132997 0.01197402 2.292679 -0.1121653 0.01197402 2.292679 -0.1535689 0.01197402 2.292679 -0.2091628 0.01197402 2.292679 -0.2838106 0.01197402 2.292679 -0.3840425 0.01197402 2.292679 -0.518627 0.01197402 2.292679 -0.6993381 0.01197402 2.292679 -0.9419845 0.01197402 2.292679 -1.267794 0.01197402 2.292679 -1.705268 0.01197402 2.292679 -2.292679 0.01197402 2.292679 -3.081414 0.01197402 2.292679 -4.140474 0.01197402 2.292679 -5.562508 0.01197402 2.292679 -7.471917 0.01197402 2.292679 -10.03574 0.01197402 2.292679 -13.47828 0.01197402 2.292679 -18.10068 0.01197402 2.292679 -24.30731 0.01197402 2.292679 -32.64117 0.01197402 2.292679 -43.83129 0.01197402 2.292679 -58.85664 0.01197402 2.292679 --0.0175068 0.01903886 2.292679 --0.01161267 0.01903886 2.292679 --0.005718534 0.01903886 2.292679 -0.0001755984 0.01903886 2.292679 -0.006069731 0.01903886 2.292679 -0.01197402 0.01903886 2.292679 -0.01903886 0.01903886 2.292679 -0.02852504 0.01903886 2.292679 -0.04126244 0.01903886 2.292679 -0.05836535 0.01903886 2.292679 -0.08132997 0.01903886 2.292679 -0.1121653 0.01903886 2.292679 -0.1535689 0.01903886 2.292679 -0.2091628 0.01903886 2.292679 -0.2838106 0.01903886 2.292679 -0.3840425 0.01903886 2.292679 -0.518627 0.01903886 2.292679 -0.6993381 0.01903886 2.292679 -0.9419845 0.01903886 2.292679 -1.267794 0.01903886 2.292679 -1.705268 0.01903886 2.292679 -2.292679 0.01903886 2.292679 -3.081414 0.01903886 2.292679 -4.140474 0.01903886 2.292679 -5.562508 0.01903886 2.292679 -7.471917 0.01903886 2.292679 -10.03574 0.01903886 2.292679 -13.47828 0.01903886 2.292679 -18.10068 0.01903886 2.292679 -24.30731 0.01903886 2.292679 -32.64117 0.01903886 2.292679 -43.83129 0.01903886 2.292679 -58.85664 0.01903886 2.292679 --0.0175068 0.02852504 2.292679 --0.01161267 0.02852504 2.292679 --0.005718534 0.02852504 2.292679 -0.0001755984 0.02852504 2.292679 -0.006069731 0.02852504 2.292679 -0.01197402 0.02852504 2.292679 -0.01903886 0.02852504 2.292679 -0.02852504 0.02852504 2.292679 -0.04126244 0.02852504 2.292679 -0.05836535 0.02852504 2.292679 -0.08132997 0.02852504 2.292679 -0.1121653 0.02852504 2.292679 -0.1535689 0.02852504 2.292679 -0.2091628 0.02852504 2.292679 -0.2838106 0.02852504 2.292679 -0.3840425 0.02852504 2.292679 -0.518627 0.02852504 2.292679 -0.6993381 0.02852504 2.292679 -0.9419845 0.02852504 2.292679 -1.267794 0.02852504 2.292679 -1.705268 0.02852504 2.292679 -2.292679 0.02852504 2.292679 -3.081414 0.02852504 2.292679 -4.140474 0.02852504 2.292679 -5.562508 0.02852504 2.292679 -7.471917 0.02852504 2.292679 -10.03574 0.02852504 2.292679 -13.47828 0.02852504 2.292679 -18.10068 0.02852504 2.292679 -24.30731 0.02852504 2.292679 -32.64117 0.02852504 2.292679 -43.83129 0.02852504 2.292679 -58.85664 0.02852504 2.292679 --0.0175068 0.04126244 2.292679 --0.01161267 0.04126244 2.292679 --0.005718534 0.04126244 2.292679 -0.0001755984 0.04126244 2.292679 -0.006069731 0.04126244 2.292679 -0.01197402 0.04126244 2.292679 -0.01903886 0.04126244 2.292679 -0.02852504 0.04126244 2.292679 -0.04126244 0.04126244 2.292679 -0.05836535 0.04126244 2.292679 -0.08132997 0.04126244 2.292679 -0.1121653 0.04126244 2.292679 -0.1535689 0.04126244 2.292679 -0.2091628 0.04126244 2.292679 -0.2838106 0.04126244 2.292679 -0.3840425 0.04126244 2.292679 -0.518627 0.04126244 2.292679 -0.6993381 0.04126244 2.292679 -0.9419845 0.04126244 2.292679 -1.267794 0.04126244 2.292679 -1.705268 0.04126244 2.292679 -2.292679 0.04126244 2.292679 -3.081414 0.04126244 2.292679 -4.140474 0.04126244 2.292679 -5.562508 0.04126244 2.292679 -7.471917 0.04126244 2.292679 -10.03574 0.04126244 2.292679 -13.47828 0.04126244 2.292679 -18.10068 0.04126244 2.292679 -24.30731 0.04126244 2.292679 -32.64117 0.04126244 2.292679 -43.83129 0.04126244 2.292679 -58.85664 0.04126244 2.292679 --0.0175068 0.05836535 2.292679 --0.01161267 0.05836535 2.292679 --0.005718534 0.05836535 2.292679 -0.0001755984 0.05836535 2.292679 -0.006069731 0.05836535 2.292679 -0.01197402 0.05836535 2.292679 -0.01903886 0.05836535 2.292679 -0.02852504 0.05836535 2.292679 -0.04126244 0.05836535 2.292679 -0.05836535 0.05836535 2.292679 -0.08132997 0.05836535 2.292679 -0.1121653 0.05836535 2.292679 -0.1535689 0.05836535 2.292679 -0.2091628 0.05836535 2.292679 -0.2838106 0.05836535 2.292679 -0.3840425 0.05836535 2.292679 -0.518627 0.05836535 2.292679 -0.6993381 0.05836535 2.292679 -0.9419845 0.05836535 2.292679 -1.267794 0.05836535 2.292679 -1.705268 0.05836535 2.292679 -2.292679 0.05836535 2.292679 -3.081414 0.05836535 2.292679 -4.140474 0.05836535 2.292679 -5.562508 0.05836535 2.292679 -7.471917 0.05836535 2.292679 -10.03574 0.05836535 2.292679 -13.47828 0.05836535 2.292679 -18.10068 0.05836535 2.292679 -24.30731 0.05836535 2.292679 -32.64117 0.05836535 2.292679 -43.83129 0.05836535 2.292679 -58.85664 0.05836535 2.292679 --0.0175068 0.08132997 2.292679 --0.01161267 0.08132997 2.292679 --0.005718534 0.08132997 2.292679 -0.0001755984 0.08132997 2.292679 -0.006069731 0.08132997 2.292679 -0.01197402 0.08132997 2.292679 -0.01903886 0.08132997 2.292679 -0.02852504 0.08132997 2.292679 -0.04126244 0.08132997 2.292679 -0.05836535 0.08132997 2.292679 -0.08132997 0.08132997 2.292679 -0.1121653 0.08132997 2.292679 -0.1535689 0.08132997 2.292679 -0.2091628 0.08132997 2.292679 -0.2838106 0.08132997 2.292679 -0.3840425 0.08132997 2.292679 -0.518627 0.08132997 2.292679 -0.6993381 0.08132997 2.292679 -0.9419845 0.08132997 2.292679 -1.267794 0.08132997 2.292679 -1.705268 0.08132997 2.292679 -2.292679 0.08132997 2.292679 -3.081414 0.08132997 2.292679 -4.140474 0.08132997 2.292679 -5.562508 0.08132997 2.292679 -7.471917 0.08132997 2.292679 -10.03574 0.08132997 2.292679 -13.47828 0.08132997 2.292679 -18.10068 0.08132997 2.292679 -24.30731 0.08132997 2.292679 -32.64117 0.08132997 2.292679 -43.83129 0.08132997 2.292679 -58.85664 0.08132997 2.292679 --0.0175068 0.1121653 2.292679 --0.01161267 0.1121653 2.292679 --0.005718534 0.1121653 2.292679 -0.0001755984 0.1121653 2.292679 -0.006069731 0.1121653 2.292679 -0.01197402 0.1121653 2.292679 -0.01903886 0.1121653 2.292679 -0.02852504 0.1121653 2.292679 -0.04126244 0.1121653 2.292679 -0.05836535 0.1121653 2.292679 -0.08132997 0.1121653 2.292679 -0.1121653 0.1121653 2.292679 -0.1535689 0.1121653 2.292679 -0.2091628 0.1121653 2.292679 -0.2838106 0.1121653 2.292679 -0.3840425 0.1121653 2.292679 -0.518627 0.1121653 2.292679 -0.6993381 0.1121653 2.292679 -0.9419845 0.1121653 2.292679 -1.267794 0.1121653 2.292679 -1.705268 0.1121653 2.292679 -2.292679 0.1121653 2.292679 -3.081414 0.1121653 2.292679 -4.140474 0.1121653 2.292679 -5.562508 0.1121653 2.292679 -7.471917 0.1121653 2.292679 -10.03574 0.1121653 2.292679 -13.47828 0.1121653 2.292679 -18.10068 0.1121653 2.292679 -24.30731 0.1121653 2.292679 -32.64117 0.1121653 2.292679 -43.83129 0.1121653 2.292679 -58.85664 0.1121653 2.292679 --0.0175068 0.1535689 2.292679 --0.01161267 0.1535689 2.292679 --0.005718534 0.1535689 2.292679 -0.0001755984 0.1535689 2.292679 -0.006069731 0.1535689 2.292679 -0.01197402 0.1535689 2.292679 -0.01903886 0.1535689 2.292679 -0.02852504 0.1535689 2.292679 -0.04126244 0.1535689 2.292679 -0.05836535 0.1535689 2.292679 -0.08132997 0.1535689 2.292679 -0.1121653 0.1535689 2.292679 -0.1535689 0.1535689 2.292679 -0.2091628 0.1535689 2.292679 -0.2838106 0.1535689 2.292679 -0.3840425 0.1535689 2.292679 -0.518627 0.1535689 2.292679 -0.6993381 0.1535689 2.292679 -0.9419845 0.1535689 2.292679 -1.267794 0.1535689 2.292679 -1.705268 0.1535689 2.292679 -2.292679 0.1535689 2.292679 -3.081414 0.1535689 2.292679 -4.140474 0.1535689 2.292679 -5.562508 0.1535689 2.292679 -7.471917 0.1535689 2.292679 -10.03574 0.1535689 2.292679 -13.47828 0.1535689 2.292679 -18.10068 0.1535689 2.292679 -24.30731 0.1535689 2.292679 -32.64117 0.1535689 2.292679 -43.83129 0.1535689 2.292679 -58.85664 0.1535689 2.292679 --0.0175068 0.2091628 2.292679 --0.01161267 0.2091628 2.292679 --0.005718534 0.2091628 2.292679 -0.0001755984 0.2091628 2.292679 -0.006069731 0.2091628 2.292679 -0.01197402 0.2091628 2.292679 -0.01903886 0.2091628 2.292679 -0.02852504 0.2091628 2.292679 -0.04126244 0.2091628 2.292679 -0.05836535 0.2091628 2.292679 -0.08132997 0.2091628 2.292679 -0.1121653 0.2091628 2.292679 -0.1535689 0.2091628 2.292679 -0.2091628 0.2091628 2.292679 -0.2838106 0.2091628 2.292679 -0.3840425 0.2091628 2.292679 -0.518627 0.2091628 2.292679 -0.6993381 0.2091628 2.292679 -0.9419845 0.2091628 2.292679 -1.267794 0.2091628 2.292679 -1.705268 0.2091628 2.292679 -2.292679 0.2091628 2.292679 -3.081414 0.2091628 2.292679 -4.140474 0.2091628 2.292679 -5.562508 0.2091628 2.292679 -7.471917 0.2091628 2.292679 -10.03574 0.2091628 2.292679 -13.47828 0.2091628 2.292679 -18.10068 0.2091628 2.292679 -24.30731 0.2091628 2.292679 -32.64117 0.2091628 2.292679 -43.83129 0.2091628 2.292679 -58.85664 0.2091628 2.292679 --0.0175068 0.2838106 2.292679 --0.01161267 0.2838106 2.292679 --0.005718534 0.2838106 2.292679 -0.0001755984 0.2838106 2.292679 -0.006069731 0.2838106 2.292679 -0.01197402 0.2838106 2.292679 -0.01903886 0.2838106 2.292679 -0.02852504 0.2838106 2.292679 -0.04126244 0.2838106 2.292679 -0.05836535 0.2838106 2.292679 -0.08132997 0.2838106 2.292679 -0.1121653 0.2838106 2.292679 -0.1535689 0.2838106 2.292679 -0.2091628 0.2838106 2.292679 -0.2838106 0.2838106 2.292679 -0.3840425 0.2838106 2.292679 -0.518627 0.2838106 2.292679 -0.6993381 0.2838106 2.292679 -0.9419845 0.2838106 2.292679 -1.267794 0.2838106 2.292679 -1.705268 0.2838106 2.292679 -2.292679 0.2838106 2.292679 -3.081414 0.2838106 2.292679 -4.140474 0.2838106 2.292679 -5.562508 0.2838106 2.292679 -7.471917 0.2838106 2.292679 -10.03574 0.2838106 2.292679 -13.47828 0.2838106 2.292679 -18.10068 0.2838106 2.292679 -24.30731 0.2838106 2.292679 -32.64117 0.2838106 2.292679 -43.83129 0.2838106 2.292679 -58.85664 0.2838106 2.292679 --0.0175068 0.3840425 2.292679 --0.01161267 0.3840425 2.292679 --0.005718534 0.3840425 2.292679 -0.0001755984 0.3840425 2.292679 -0.006069731 0.3840425 2.292679 -0.01197402 0.3840425 2.292679 -0.01903886 0.3840425 2.292679 -0.02852504 0.3840425 2.292679 -0.04126244 0.3840425 2.292679 -0.05836535 0.3840425 2.292679 -0.08132997 0.3840425 2.292679 -0.1121653 0.3840425 2.292679 -0.1535689 0.3840425 2.292679 -0.2091628 0.3840425 2.292679 -0.2838106 0.3840425 2.292679 -0.3840425 0.3840425 2.292679 -0.518627 0.3840425 2.292679 -0.6993381 0.3840425 2.292679 -0.9419845 0.3840425 2.292679 -1.267794 0.3840425 2.292679 -1.705268 0.3840425 2.292679 -2.292679 0.3840425 2.292679 -3.081414 0.3840425 2.292679 -4.140474 0.3840425 2.292679 -5.562508 0.3840425 2.292679 -7.471917 0.3840425 2.292679 -10.03574 0.3840425 2.292679 -13.47828 0.3840425 2.292679 -18.10068 0.3840425 2.292679 -24.30731 0.3840425 2.292679 -32.64117 0.3840425 2.292679 -43.83129 0.3840425 2.292679 -58.85664 0.3840425 2.292679 --0.0175068 0.518627 2.292679 --0.01161267 0.518627 2.292679 --0.005718534 0.518627 2.292679 -0.0001755984 0.518627 2.292679 -0.006069731 0.518627 2.292679 -0.01197402 0.518627 2.292679 -0.01903886 0.518627 2.292679 -0.02852504 0.518627 2.292679 -0.04126244 0.518627 2.292679 -0.05836535 0.518627 2.292679 -0.08132997 0.518627 2.292679 -0.1121653 0.518627 2.292679 -0.1535689 0.518627 2.292679 -0.2091628 0.518627 2.292679 -0.2838106 0.518627 2.292679 -0.3840425 0.518627 2.292679 -0.518627 0.518627 2.292679 -0.6993381 0.518627 2.292679 -0.9419845 0.518627 2.292679 -1.267794 0.518627 2.292679 -1.705268 0.518627 2.292679 -2.292679 0.518627 2.292679 -3.081414 0.518627 2.292679 -4.140474 0.518627 2.292679 -5.562508 0.518627 2.292679 -7.471917 0.518627 2.292679 -10.03574 0.518627 2.292679 -13.47828 0.518627 2.292679 -18.10068 0.518627 2.292679 -24.30731 0.518627 2.292679 -32.64117 0.518627 2.292679 -43.83129 0.518627 2.292679 -58.85664 0.518627 2.292679 --0.0175068 0.6993381 2.292679 --0.01161267 0.6993381 2.292679 --0.005718534 0.6993381 2.292679 -0.0001755984 0.6993381 2.292679 -0.006069731 0.6993381 2.292679 -0.01197402 0.6993381 2.292679 -0.01903886 0.6993381 2.292679 -0.02852504 0.6993381 2.292679 -0.04126244 0.6993381 2.292679 -0.05836535 0.6993381 2.292679 -0.08132997 0.6993381 2.292679 -0.1121653 0.6993381 2.292679 -0.1535689 0.6993381 2.292679 -0.2091628 0.6993381 2.292679 -0.2838106 0.6993381 2.292679 -0.3840425 0.6993381 2.292679 -0.518627 0.6993381 2.292679 -0.6993381 0.6993381 2.292679 -0.9419845 0.6993381 2.292679 -1.267794 0.6993381 2.292679 -1.705268 0.6993381 2.292679 -2.292679 0.6993381 2.292679 -3.081414 0.6993381 2.292679 -4.140474 0.6993381 2.292679 -5.562508 0.6993381 2.292679 -7.471917 0.6993381 2.292679 -10.03574 0.6993381 2.292679 -13.47828 0.6993381 2.292679 -18.10068 0.6993381 2.292679 -24.30731 0.6993381 2.292679 -32.64117 0.6993381 2.292679 -43.83129 0.6993381 2.292679 -58.85664 0.6993381 2.292679 --0.0175068 0.9419845 2.292679 --0.01161267 0.9419845 2.292679 --0.005718534 0.9419845 2.292679 -0.0001755984 0.9419845 2.292679 -0.006069731 0.9419845 2.292679 -0.01197402 0.9419845 2.292679 -0.01903886 0.9419845 2.292679 -0.02852504 0.9419845 2.292679 -0.04126244 0.9419845 2.292679 -0.05836535 0.9419845 2.292679 -0.08132997 0.9419845 2.292679 -0.1121653 0.9419845 2.292679 -0.1535689 0.9419845 2.292679 -0.2091628 0.9419845 2.292679 -0.2838106 0.9419845 2.292679 -0.3840425 0.9419845 2.292679 -0.518627 0.9419845 2.292679 -0.6993381 0.9419845 2.292679 -0.9419845 0.9419845 2.292679 -1.267794 0.9419845 2.292679 -1.705268 0.9419845 2.292679 -2.292679 0.9419845 2.292679 -3.081414 0.9419845 2.292679 -4.140474 0.9419845 2.292679 -5.562508 0.9419845 2.292679 -7.471917 0.9419845 2.292679 -10.03574 0.9419845 2.292679 -13.47828 0.9419845 2.292679 -18.10068 0.9419845 2.292679 -24.30731 0.9419845 2.292679 -32.64117 0.9419845 2.292679 -43.83129 0.9419845 2.292679 -58.85664 0.9419845 2.292679 --0.0175068 1.267794 2.292679 --0.01161267 1.267794 2.292679 --0.005718534 1.267794 2.292679 -0.0001755984 1.267794 2.292679 -0.006069731 1.267794 2.292679 -0.01197402 1.267794 2.292679 -0.01903886 1.267794 2.292679 -0.02852504 1.267794 2.292679 -0.04126244 1.267794 2.292679 -0.05836535 1.267794 2.292679 -0.08132997 1.267794 2.292679 -0.1121653 1.267794 2.292679 -0.1535689 1.267794 2.292679 -0.2091628 1.267794 2.292679 -0.2838106 1.267794 2.292679 -0.3840425 1.267794 2.292679 -0.518627 1.267794 2.292679 -0.6993381 1.267794 2.292679 -0.9419845 1.267794 2.292679 -1.267794 1.267794 2.292679 -1.705268 1.267794 2.292679 -2.292679 1.267794 2.292679 -3.081414 1.267794 2.292679 -4.140474 1.267794 2.292679 -5.562508 1.267794 2.292679 -7.471917 1.267794 2.292679 -10.03574 1.267794 2.292679 -13.47828 1.267794 2.292679 -18.10068 1.267794 2.292679 -24.30731 1.267794 2.292679 -32.64117 1.267794 2.292679 -43.83129 1.267794 2.292679 -58.85664 1.267794 2.292679 --0.0175068 1.705268 2.292679 --0.01161267 1.705268 2.292679 --0.005718534 1.705268 2.292679 -0.0001755984 1.705268 2.292679 -0.006069731 1.705268 2.292679 -0.01197402 1.705268 2.292679 -0.01903886 1.705268 2.292679 -0.02852504 1.705268 2.292679 -0.04126244 1.705268 2.292679 -0.05836535 1.705268 2.292679 -0.08132997 1.705268 2.292679 -0.1121653 1.705268 2.292679 -0.1535689 1.705268 2.292679 -0.2091628 1.705268 2.292679 -0.2838106 1.705268 2.292679 -0.3840425 1.705268 2.292679 -0.518627 1.705268 2.292679 -0.6993381 1.705268 2.292679 -0.9419845 1.705268 2.292679 -1.267794 1.705268 2.292679 -1.705268 1.705268 2.292679 -2.292679 1.705268 2.292679 -3.081414 1.705268 2.292679 -4.140474 1.705268 2.292679 -5.562508 1.705268 2.292679 -7.471917 1.705268 2.292679 -10.03574 1.705268 2.292679 -13.47828 1.705268 2.292679 -18.10068 1.705268 2.292679 -24.30731 1.705268 2.292679 -32.64117 1.705268 2.292679 -43.83129 1.705268 2.292679 -58.85664 1.705268 2.292679 --0.0175068 2.292679 2.292679 --0.01161267 2.292679 2.292679 --0.005718534 2.292679 2.292679 -0.0001755984 2.292679 2.292679 -0.006069731 2.292679 2.292679 -0.01197402 2.292679 2.292679 -0.01903886 2.292679 2.292679 -0.02852504 2.292679 2.292679 -0.04126244 2.292679 2.292679 -0.05836535 2.292679 2.292679 -0.08132997 2.292679 2.292679 -0.1121653 2.292679 2.292679 -0.1535689 2.292679 2.292679 -0.2091628 2.292679 2.292679 -0.2838106 2.292679 2.292679 -0.3840425 2.292679 2.292679 -0.518627 2.292679 2.292679 -0.6993381 2.292679 2.292679 -0.9419845 2.292679 2.292679 -1.267794 2.292679 2.292679 -1.705268 2.292679 2.292679 -2.292679 2.292679 2.292679 -3.081414 2.292679 2.292679 -4.140474 2.292679 2.292679 -5.562508 2.292679 2.292679 -7.471917 2.292679 2.292679 -10.03574 2.292679 2.292679 -13.47828 2.292679 2.292679 -18.10068 2.292679 2.292679 -24.30731 2.292679 2.292679 -32.64117 2.292679 2.292679 -43.83129 2.292679 2.292679 -58.85664 2.292679 2.292679 --0.0175068 3.081414 2.292679 --0.01161267 3.081414 2.292679 --0.005718534 3.081414 2.292679 -0.0001755984 3.081414 2.292679 -0.006069731 3.081414 2.292679 -0.01197402 3.081414 2.292679 -0.01903886 3.081414 2.292679 -0.02852504 3.081414 2.292679 -0.04126244 3.081414 2.292679 -0.05836535 3.081414 2.292679 -0.08132997 3.081414 2.292679 -0.1121653 3.081414 2.292679 -0.1535689 3.081414 2.292679 -0.2091628 3.081414 2.292679 -0.2838106 3.081414 2.292679 -0.3840425 3.081414 2.292679 -0.518627 3.081414 2.292679 -0.6993381 3.081414 2.292679 -0.9419845 3.081414 2.292679 -1.267794 3.081414 2.292679 -1.705268 3.081414 2.292679 -2.292679 3.081414 2.292679 -3.081414 3.081414 2.292679 -4.140474 3.081414 2.292679 -5.562508 3.081414 2.292679 -7.471917 3.081414 2.292679 -10.03574 3.081414 2.292679 -13.47828 3.081414 2.292679 -18.10068 3.081414 2.292679 -24.30731 3.081414 2.292679 -32.64117 3.081414 2.292679 -43.83129 3.081414 2.292679 -58.85664 3.081414 2.292679 --0.0175068 4.140474 2.292679 --0.01161267 4.140474 2.292679 --0.005718534 4.140474 2.292679 -0.0001755984 4.140474 2.292679 -0.006069731 4.140474 2.292679 -0.01197402 4.140474 2.292679 -0.01903886 4.140474 2.292679 -0.02852504 4.140474 2.292679 -0.04126244 4.140474 2.292679 -0.05836535 4.140474 2.292679 -0.08132997 4.140474 2.292679 -0.1121653 4.140474 2.292679 -0.1535689 4.140474 2.292679 -0.2091628 4.140474 2.292679 -0.2838106 4.140474 2.292679 -0.3840425 4.140474 2.292679 -0.518627 4.140474 2.292679 -0.6993381 4.140474 2.292679 -0.9419845 4.140474 2.292679 -1.267794 4.140474 2.292679 -1.705268 4.140474 2.292679 -2.292679 4.140474 2.292679 -3.081414 4.140474 2.292679 -4.140474 4.140474 2.292679 -5.562508 4.140474 2.292679 -7.471917 4.140474 2.292679 -10.03574 4.140474 2.292679 -13.47828 4.140474 2.292679 -18.10068 4.140474 2.292679 -24.30731 4.140474 2.292679 -32.64117 4.140474 2.292679 -43.83129 4.140474 2.292679 -58.85664 4.140474 2.292679 --0.0175068 5.562508 2.292679 --0.01161267 5.562508 2.292679 --0.005718534 5.562508 2.292679 -0.0001755984 5.562508 2.292679 -0.006069731 5.562508 2.292679 -0.01197402 5.562508 2.292679 -0.01903886 5.562508 2.292679 -0.02852504 5.562508 2.292679 -0.04126244 5.562508 2.292679 -0.05836535 5.562508 2.292679 -0.08132997 5.562508 2.292679 -0.1121653 5.562508 2.292679 -0.1535689 5.562508 2.292679 -0.2091628 5.562508 2.292679 -0.2838106 5.562508 2.292679 -0.3840425 5.562508 2.292679 -0.518627 5.562508 2.292679 -0.6993381 5.562508 2.292679 -0.9419845 5.562508 2.292679 -1.267794 5.562508 2.292679 -1.705268 5.562508 2.292679 -2.292679 5.562508 2.292679 -3.081414 5.562508 2.292679 -4.140474 5.562508 2.292679 -5.562508 5.562508 2.292679 -7.471917 5.562508 2.292679 -10.03574 5.562508 2.292679 -13.47828 5.562508 2.292679 -18.10068 5.562508 2.292679 -24.30731 5.562508 2.292679 -32.64117 5.562508 2.292679 -43.83129 5.562508 2.292679 -58.85664 5.562508 2.292679 --0.0175068 7.471917 2.292679 --0.01161267 7.471917 2.292679 --0.005718534 7.471917 2.292679 -0.0001755984 7.471917 2.292679 -0.006069731 7.471917 2.292679 -0.01197402 7.471917 2.292679 -0.01903886 7.471917 2.292679 -0.02852504 7.471917 2.292679 -0.04126244 7.471917 2.292679 -0.05836535 7.471917 2.292679 -0.08132997 7.471917 2.292679 -0.1121653 7.471917 2.292679 -0.1535689 7.471917 2.292679 -0.2091628 7.471917 2.292679 -0.2838106 7.471917 2.292679 -0.3840425 7.471917 2.292679 -0.518627 7.471917 2.292679 -0.6993381 7.471917 2.292679 -0.9419845 7.471917 2.292679 -1.267794 7.471917 2.292679 -1.705268 7.471917 2.292679 -2.292679 7.471917 2.292679 -3.081414 7.471917 2.292679 -4.140474 7.471917 2.292679 -5.562508 7.471917 2.292679 -7.471917 7.471917 2.292679 -10.03574 7.471917 2.292679 -13.47828 7.471917 2.292679 -18.10068 7.471917 2.292679 -24.30731 7.471917 2.292679 -32.64117 7.471917 2.292679 -43.83129 7.471917 2.292679 -58.85664 7.471917 2.292679 --0.0175068 10.03574 2.292679 --0.01161267 10.03574 2.292679 --0.005718534 10.03574 2.292679 -0.0001755984 10.03574 2.292679 -0.006069731 10.03574 2.292679 -0.01197402 10.03574 2.292679 -0.01903886 10.03574 2.292679 -0.02852504 10.03574 2.292679 -0.04126244 10.03574 2.292679 -0.05836535 10.03574 2.292679 -0.08132997 10.03574 2.292679 -0.1121653 10.03574 2.292679 -0.1535689 10.03574 2.292679 -0.2091628 10.03574 2.292679 -0.2838106 10.03574 2.292679 -0.3840425 10.03574 2.292679 -0.518627 10.03574 2.292679 -0.6993381 10.03574 2.292679 -0.9419845 10.03574 2.292679 -1.267794 10.03574 2.292679 -1.705268 10.03574 2.292679 -2.292679 10.03574 2.292679 -3.081414 10.03574 2.292679 -4.140474 10.03574 2.292679 -5.562508 10.03574 2.292679 -7.471917 10.03574 2.292679 -10.03574 10.03574 2.292679 -13.47828 10.03574 2.292679 -18.10068 10.03574 2.292679 -24.30731 10.03574 2.292679 -32.64117 10.03574 2.292679 -43.83129 10.03574 2.292679 -58.85664 10.03574 2.292679 --0.0175068 13.47828 2.292679 --0.01161267 13.47828 2.292679 --0.005718534 13.47828 2.292679 -0.0001755984 13.47828 2.292679 -0.006069731 13.47828 2.292679 -0.01197402 13.47828 2.292679 -0.01903886 13.47828 2.292679 -0.02852504 13.47828 2.292679 -0.04126244 13.47828 2.292679 -0.05836535 13.47828 2.292679 -0.08132997 13.47828 2.292679 -0.1121653 13.47828 2.292679 -0.1535689 13.47828 2.292679 -0.2091628 13.47828 2.292679 -0.2838106 13.47828 2.292679 -0.3840425 13.47828 2.292679 -0.518627 13.47828 2.292679 -0.6993381 13.47828 2.292679 -0.9419845 13.47828 2.292679 -1.267794 13.47828 2.292679 -1.705268 13.47828 2.292679 -2.292679 13.47828 2.292679 -3.081414 13.47828 2.292679 -4.140474 13.47828 2.292679 -5.562508 13.47828 2.292679 -7.471917 13.47828 2.292679 -10.03574 13.47828 2.292679 -13.47828 13.47828 2.292679 -18.10068 13.47828 2.292679 -24.30731 13.47828 2.292679 -32.64117 13.47828 2.292679 -43.83129 13.47828 2.292679 -58.85664 13.47828 2.292679 --0.0175068 18.10068 2.292679 --0.01161267 18.10068 2.292679 --0.005718534 18.10068 2.292679 -0.0001755984 18.10068 2.292679 -0.006069731 18.10068 2.292679 -0.01197402 18.10068 2.292679 -0.01903886 18.10068 2.292679 -0.02852504 18.10068 2.292679 -0.04126244 18.10068 2.292679 -0.05836535 18.10068 2.292679 -0.08132997 18.10068 2.292679 -0.1121653 18.10068 2.292679 -0.1535689 18.10068 2.292679 -0.2091628 18.10068 2.292679 -0.2838106 18.10068 2.292679 -0.3840425 18.10068 2.292679 -0.518627 18.10068 2.292679 -0.6993381 18.10068 2.292679 -0.9419845 18.10068 2.292679 -1.267794 18.10068 2.292679 -1.705268 18.10068 2.292679 -2.292679 18.10068 2.292679 -3.081414 18.10068 2.292679 -4.140474 18.10068 2.292679 -5.562508 18.10068 2.292679 -7.471917 18.10068 2.292679 -10.03574 18.10068 2.292679 -13.47828 18.10068 2.292679 -18.10068 18.10068 2.292679 -24.30731 18.10068 2.292679 -32.64117 18.10068 2.292679 -43.83129 18.10068 2.292679 -58.85664 18.10068 2.292679 --0.0175068 24.30731 2.292679 --0.01161267 24.30731 2.292679 --0.005718534 24.30731 2.292679 -0.0001755984 24.30731 2.292679 -0.006069731 24.30731 2.292679 -0.01197402 24.30731 2.292679 -0.01903886 24.30731 2.292679 -0.02852504 24.30731 2.292679 -0.04126244 24.30731 2.292679 -0.05836535 24.30731 2.292679 -0.08132997 24.30731 2.292679 -0.1121653 24.30731 2.292679 -0.1535689 24.30731 2.292679 -0.2091628 24.30731 2.292679 -0.2838106 24.30731 2.292679 -0.3840425 24.30731 2.292679 -0.518627 24.30731 2.292679 -0.6993381 24.30731 2.292679 -0.9419845 24.30731 2.292679 -1.267794 24.30731 2.292679 -1.705268 24.30731 2.292679 -2.292679 24.30731 2.292679 -3.081414 24.30731 2.292679 -4.140474 24.30731 2.292679 -5.562508 24.30731 2.292679 -7.471917 24.30731 2.292679 -10.03574 24.30731 2.292679 -13.47828 24.30731 2.292679 -18.10068 24.30731 2.292679 -24.30731 24.30731 2.292679 -32.64117 24.30731 2.292679 -43.83129 24.30731 2.292679 -58.85664 24.30731 2.292679 --0.0175068 32.64117 2.292679 --0.01161267 32.64117 2.292679 --0.005718534 32.64117 2.292679 -0.0001755984 32.64117 2.292679 -0.006069731 32.64117 2.292679 -0.01197402 32.64117 2.292679 -0.01903886 32.64117 2.292679 -0.02852504 32.64117 2.292679 -0.04126244 32.64117 2.292679 -0.05836535 32.64117 2.292679 -0.08132997 32.64117 2.292679 -0.1121653 32.64117 2.292679 -0.1535689 32.64117 2.292679 -0.2091628 32.64117 2.292679 -0.2838106 32.64117 2.292679 -0.3840425 32.64117 2.292679 -0.518627 32.64117 2.292679 -0.6993381 32.64117 2.292679 -0.9419845 32.64117 2.292679 -1.267794 32.64117 2.292679 -1.705268 32.64117 2.292679 -2.292679 32.64117 2.292679 -3.081414 32.64117 2.292679 -4.140474 32.64117 2.292679 -5.562508 32.64117 2.292679 -7.471917 32.64117 2.292679 -10.03574 32.64117 2.292679 -13.47828 32.64117 2.292679 -18.10068 32.64117 2.292679 -24.30731 32.64117 2.292679 -32.64117 32.64117 2.292679 -43.83129 32.64117 2.292679 -58.85664 32.64117 2.292679 --0.0175068 43.83129 2.292679 --0.01161267 43.83129 2.292679 --0.005718534 43.83129 2.292679 -0.0001755984 43.83129 2.292679 -0.006069731 43.83129 2.292679 -0.01197402 43.83129 2.292679 -0.01903886 43.83129 2.292679 -0.02852504 43.83129 2.292679 -0.04126244 43.83129 2.292679 -0.05836535 43.83129 2.292679 -0.08132997 43.83129 2.292679 -0.1121653 43.83129 2.292679 -0.1535689 43.83129 2.292679 -0.2091628 43.83129 2.292679 -0.2838106 43.83129 2.292679 -0.3840425 43.83129 2.292679 -0.518627 43.83129 2.292679 -0.6993381 43.83129 2.292679 -0.9419845 43.83129 2.292679 -1.267794 43.83129 2.292679 -1.705268 43.83129 2.292679 -2.292679 43.83129 2.292679 -3.081414 43.83129 2.292679 -4.140474 43.83129 2.292679 -5.562508 43.83129 2.292679 -7.471917 43.83129 2.292679 -10.03574 43.83129 2.292679 -13.47828 43.83129 2.292679 -18.10068 43.83129 2.292679 -24.30731 43.83129 2.292679 -32.64117 43.83129 2.292679 -43.83129 43.83129 2.292679 -58.85664 43.83129 2.292679 --0.0175068 58.85664 2.292679 --0.01161267 58.85664 2.292679 --0.005718534 58.85664 2.292679 -0.0001755984 58.85664 2.292679 -0.006069731 58.85664 2.292679 -0.01197402 58.85664 2.292679 -0.01903886 58.85664 2.292679 -0.02852504 58.85664 2.292679 -0.04126244 58.85664 2.292679 -0.05836535 58.85664 2.292679 -0.08132997 58.85664 2.292679 -0.1121653 58.85664 2.292679 -0.1535689 58.85664 2.292679 -0.2091628 58.85664 2.292679 -0.2838106 58.85664 2.292679 -0.3840425 58.85664 2.292679 -0.518627 58.85664 2.292679 -0.6993381 58.85664 2.292679 -0.9419845 58.85664 2.292679 -1.267794 58.85664 2.292679 -1.705268 58.85664 2.292679 -2.292679 58.85664 2.292679 -3.081414 58.85664 2.292679 -4.140474 58.85664 2.292679 -5.562508 58.85664 2.292679 -7.471917 58.85664 2.292679 -10.03574 58.85664 2.292679 -13.47828 58.85664 2.292679 -18.10068 58.85664 2.292679 -24.30731 58.85664 2.292679 -32.64117 58.85664 2.292679 -43.83129 58.85664 2.292679 -58.85664 58.85664 2.292679 --0.0175068 -0.0175068 3.081414 --0.01161267 -0.0175068 3.081414 --0.005718534 -0.0175068 3.081414 -0.0001755984 -0.0175068 3.081414 -0.006069731 -0.0175068 3.081414 -0.01197402 -0.0175068 3.081414 -0.01903886 -0.0175068 3.081414 -0.02852504 -0.0175068 3.081414 -0.04126244 -0.0175068 3.081414 -0.05836535 -0.0175068 3.081414 -0.08132997 -0.0175068 3.081414 -0.1121653 -0.0175068 3.081414 -0.1535689 -0.0175068 3.081414 -0.2091628 -0.0175068 3.081414 -0.2838106 -0.0175068 3.081414 -0.3840425 -0.0175068 3.081414 -0.518627 -0.0175068 3.081414 -0.6993381 -0.0175068 3.081414 -0.9419845 -0.0175068 3.081414 -1.267794 -0.0175068 3.081414 -1.705268 -0.0175068 3.081414 -2.292679 -0.0175068 3.081414 -3.081414 -0.0175068 3.081414 -4.140474 -0.0175068 3.081414 -5.562508 -0.0175068 3.081414 -7.471917 -0.0175068 3.081414 -10.03574 -0.0175068 3.081414 -13.47828 -0.0175068 3.081414 -18.10068 -0.0175068 3.081414 -24.30731 -0.0175068 3.081414 -32.64117 -0.0175068 3.081414 -43.83129 -0.0175068 3.081414 -58.85664 -0.0175068 3.081414 --0.0175068 -0.01161267 3.081414 --0.01161267 -0.01161267 3.081414 --0.005718534 -0.01161267 3.081414 -0.0001755984 -0.01161267 3.081414 -0.006069731 -0.01161267 3.081414 -0.01197402 -0.01161267 3.081414 -0.01903886 -0.01161267 3.081414 -0.02852504 -0.01161267 3.081414 -0.04126244 -0.01161267 3.081414 -0.05836535 -0.01161267 3.081414 -0.08132997 -0.01161267 3.081414 -0.1121653 -0.01161267 3.081414 -0.1535689 -0.01161267 3.081414 -0.2091628 -0.01161267 3.081414 -0.2838106 -0.01161267 3.081414 -0.3840425 -0.01161267 3.081414 -0.518627 -0.01161267 3.081414 -0.6993381 -0.01161267 3.081414 -0.9419845 -0.01161267 3.081414 -1.267794 -0.01161267 3.081414 -1.705268 -0.01161267 3.081414 -2.292679 -0.01161267 3.081414 -3.081414 -0.01161267 3.081414 -4.140474 -0.01161267 3.081414 -5.562508 -0.01161267 3.081414 -7.471917 -0.01161267 3.081414 -10.03574 -0.01161267 3.081414 -13.47828 -0.01161267 3.081414 -18.10068 -0.01161267 3.081414 -24.30731 -0.01161267 3.081414 -32.64117 -0.01161267 3.081414 -43.83129 -0.01161267 3.081414 -58.85664 -0.01161267 3.081414 --0.0175068 -0.005718534 3.081414 --0.01161267 -0.005718534 3.081414 --0.005718534 -0.005718534 3.081414 -0.0001755984 -0.005718534 3.081414 -0.006069731 -0.005718534 3.081414 -0.01197402 -0.005718534 3.081414 -0.01903886 -0.005718534 3.081414 -0.02852504 -0.005718534 3.081414 -0.04126244 -0.005718534 3.081414 -0.05836535 -0.005718534 3.081414 -0.08132997 -0.005718534 3.081414 -0.1121653 -0.005718534 3.081414 -0.1535689 -0.005718534 3.081414 -0.2091628 -0.005718534 3.081414 -0.2838106 -0.005718534 3.081414 -0.3840425 -0.005718534 3.081414 -0.518627 -0.005718534 3.081414 -0.6993381 -0.005718534 3.081414 -0.9419845 -0.005718534 3.081414 -1.267794 -0.005718534 3.081414 -1.705268 -0.005718534 3.081414 -2.292679 -0.005718534 3.081414 -3.081414 -0.005718534 3.081414 -4.140474 -0.005718534 3.081414 -5.562508 -0.005718534 3.081414 -7.471917 -0.005718534 3.081414 -10.03574 -0.005718534 3.081414 -13.47828 -0.005718534 3.081414 -18.10068 -0.005718534 3.081414 -24.30731 -0.005718534 3.081414 -32.64117 -0.005718534 3.081414 -43.83129 -0.005718534 3.081414 -58.85664 -0.005718534 3.081414 --0.0175068 0.0001755984 3.081414 --0.01161267 0.0001755984 3.081414 --0.005718534 0.0001755984 3.081414 -0.0001755984 0.0001755984 3.081414 -0.006069731 0.0001755984 3.081414 -0.01197402 0.0001755984 3.081414 -0.01903886 0.0001755984 3.081414 -0.02852504 0.0001755984 3.081414 -0.04126244 0.0001755984 3.081414 -0.05836535 0.0001755984 3.081414 -0.08132997 0.0001755984 3.081414 -0.1121653 0.0001755984 3.081414 -0.1535689 0.0001755984 3.081414 -0.2091628 0.0001755984 3.081414 -0.2838106 0.0001755984 3.081414 -0.3840425 0.0001755984 3.081414 -0.518627 0.0001755984 3.081414 -0.6993381 0.0001755984 3.081414 -0.9419845 0.0001755984 3.081414 -1.267794 0.0001755984 3.081414 -1.705268 0.0001755984 3.081414 -2.292679 0.0001755984 3.081414 -3.081414 0.0001755984 3.081414 -4.140474 0.0001755984 3.081414 -5.562508 0.0001755984 3.081414 -7.471917 0.0001755984 3.081414 -10.03574 0.0001755984 3.081414 -13.47828 0.0001755984 3.081414 -18.10068 0.0001755984 3.081414 -24.30731 0.0001755984 3.081414 -32.64117 0.0001755984 3.081414 -43.83129 0.0001755984 3.081414 -58.85664 0.0001755984 3.081414 --0.0175068 0.006069731 3.081414 --0.01161267 0.006069731 3.081414 --0.005718534 0.006069731 3.081414 -0.0001755984 0.006069731 3.081414 -0.006069731 0.006069731 3.081414 -0.01197402 0.006069731 3.081414 -0.01903886 0.006069731 3.081414 -0.02852504 0.006069731 3.081414 -0.04126244 0.006069731 3.081414 -0.05836535 0.006069731 3.081414 -0.08132997 0.006069731 3.081414 -0.1121653 0.006069731 3.081414 -0.1535689 0.006069731 3.081414 -0.2091628 0.006069731 3.081414 -0.2838106 0.006069731 3.081414 -0.3840425 0.006069731 3.081414 -0.518627 0.006069731 3.081414 -0.6993381 0.006069731 3.081414 -0.9419845 0.006069731 3.081414 -1.267794 0.006069731 3.081414 -1.705268 0.006069731 3.081414 -2.292679 0.006069731 3.081414 -3.081414 0.006069731 3.081414 -4.140474 0.006069731 3.081414 -5.562508 0.006069731 3.081414 -7.471917 0.006069731 3.081414 -10.03574 0.006069731 3.081414 -13.47828 0.006069731 3.081414 -18.10068 0.006069731 3.081414 -24.30731 0.006069731 3.081414 -32.64117 0.006069731 3.081414 -43.83129 0.006069731 3.081414 -58.85664 0.006069731 3.081414 --0.0175068 0.01197402 3.081414 --0.01161267 0.01197402 3.081414 --0.005718534 0.01197402 3.081414 -0.0001755984 0.01197402 3.081414 -0.006069731 0.01197402 3.081414 -0.01197402 0.01197402 3.081414 -0.01903886 0.01197402 3.081414 -0.02852504 0.01197402 3.081414 -0.04126244 0.01197402 3.081414 -0.05836535 0.01197402 3.081414 -0.08132997 0.01197402 3.081414 -0.1121653 0.01197402 3.081414 -0.1535689 0.01197402 3.081414 -0.2091628 0.01197402 3.081414 -0.2838106 0.01197402 3.081414 -0.3840425 0.01197402 3.081414 -0.518627 0.01197402 3.081414 -0.6993381 0.01197402 3.081414 -0.9419845 0.01197402 3.081414 -1.267794 0.01197402 3.081414 -1.705268 0.01197402 3.081414 -2.292679 0.01197402 3.081414 -3.081414 0.01197402 3.081414 -4.140474 0.01197402 3.081414 -5.562508 0.01197402 3.081414 -7.471917 0.01197402 3.081414 -10.03574 0.01197402 3.081414 -13.47828 0.01197402 3.081414 -18.10068 0.01197402 3.081414 -24.30731 0.01197402 3.081414 -32.64117 0.01197402 3.081414 -43.83129 0.01197402 3.081414 -58.85664 0.01197402 3.081414 --0.0175068 0.01903886 3.081414 --0.01161267 0.01903886 3.081414 --0.005718534 0.01903886 3.081414 -0.0001755984 0.01903886 3.081414 -0.006069731 0.01903886 3.081414 -0.01197402 0.01903886 3.081414 -0.01903886 0.01903886 3.081414 -0.02852504 0.01903886 3.081414 -0.04126244 0.01903886 3.081414 -0.05836535 0.01903886 3.081414 -0.08132997 0.01903886 3.081414 -0.1121653 0.01903886 3.081414 -0.1535689 0.01903886 3.081414 -0.2091628 0.01903886 3.081414 -0.2838106 0.01903886 3.081414 -0.3840425 0.01903886 3.081414 -0.518627 0.01903886 3.081414 -0.6993381 0.01903886 3.081414 -0.9419845 0.01903886 3.081414 -1.267794 0.01903886 3.081414 -1.705268 0.01903886 3.081414 -2.292679 0.01903886 3.081414 -3.081414 0.01903886 3.081414 -4.140474 0.01903886 3.081414 -5.562508 0.01903886 3.081414 -7.471917 0.01903886 3.081414 -10.03574 0.01903886 3.081414 -13.47828 0.01903886 3.081414 -18.10068 0.01903886 3.081414 -24.30731 0.01903886 3.081414 -32.64117 0.01903886 3.081414 -43.83129 0.01903886 3.081414 -58.85664 0.01903886 3.081414 --0.0175068 0.02852504 3.081414 --0.01161267 0.02852504 3.081414 --0.005718534 0.02852504 3.081414 -0.0001755984 0.02852504 3.081414 -0.006069731 0.02852504 3.081414 -0.01197402 0.02852504 3.081414 -0.01903886 0.02852504 3.081414 -0.02852504 0.02852504 3.081414 -0.04126244 0.02852504 3.081414 -0.05836535 0.02852504 3.081414 -0.08132997 0.02852504 3.081414 -0.1121653 0.02852504 3.081414 -0.1535689 0.02852504 3.081414 -0.2091628 0.02852504 3.081414 -0.2838106 0.02852504 3.081414 -0.3840425 0.02852504 3.081414 -0.518627 0.02852504 3.081414 -0.6993381 0.02852504 3.081414 -0.9419845 0.02852504 3.081414 -1.267794 0.02852504 3.081414 -1.705268 0.02852504 3.081414 -2.292679 0.02852504 3.081414 -3.081414 0.02852504 3.081414 -4.140474 0.02852504 3.081414 -5.562508 0.02852504 3.081414 -7.471917 0.02852504 3.081414 -10.03574 0.02852504 3.081414 -13.47828 0.02852504 3.081414 -18.10068 0.02852504 3.081414 -24.30731 0.02852504 3.081414 -32.64117 0.02852504 3.081414 -43.83129 0.02852504 3.081414 -58.85664 0.02852504 3.081414 --0.0175068 0.04126244 3.081414 --0.01161267 0.04126244 3.081414 --0.005718534 0.04126244 3.081414 -0.0001755984 0.04126244 3.081414 -0.006069731 0.04126244 3.081414 -0.01197402 0.04126244 3.081414 -0.01903886 0.04126244 3.081414 -0.02852504 0.04126244 3.081414 -0.04126244 0.04126244 3.081414 -0.05836535 0.04126244 3.081414 -0.08132997 0.04126244 3.081414 -0.1121653 0.04126244 3.081414 -0.1535689 0.04126244 3.081414 -0.2091628 0.04126244 3.081414 -0.2838106 0.04126244 3.081414 -0.3840425 0.04126244 3.081414 -0.518627 0.04126244 3.081414 -0.6993381 0.04126244 3.081414 -0.9419845 0.04126244 3.081414 -1.267794 0.04126244 3.081414 -1.705268 0.04126244 3.081414 -2.292679 0.04126244 3.081414 -3.081414 0.04126244 3.081414 -4.140474 0.04126244 3.081414 -5.562508 0.04126244 3.081414 -7.471917 0.04126244 3.081414 -10.03574 0.04126244 3.081414 -13.47828 0.04126244 3.081414 -18.10068 0.04126244 3.081414 -24.30731 0.04126244 3.081414 -32.64117 0.04126244 3.081414 -43.83129 0.04126244 3.081414 -58.85664 0.04126244 3.081414 --0.0175068 0.05836535 3.081414 --0.01161267 0.05836535 3.081414 --0.005718534 0.05836535 3.081414 -0.0001755984 0.05836535 3.081414 -0.006069731 0.05836535 3.081414 -0.01197402 0.05836535 3.081414 -0.01903886 0.05836535 3.081414 -0.02852504 0.05836535 3.081414 -0.04126244 0.05836535 3.081414 -0.05836535 0.05836535 3.081414 -0.08132997 0.05836535 3.081414 -0.1121653 0.05836535 3.081414 -0.1535689 0.05836535 3.081414 -0.2091628 0.05836535 3.081414 -0.2838106 0.05836535 3.081414 -0.3840425 0.05836535 3.081414 -0.518627 0.05836535 3.081414 -0.6993381 0.05836535 3.081414 -0.9419845 0.05836535 3.081414 -1.267794 0.05836535 3.081414 -1.705268 0.05836535 3.081414 -2.292679 0.05836535 3.081414 -3.081414 0.05836535 3.081414 -4.140474 0.05836535 3.081414 -5.562508 0.05836535 3.081414 -7.471917 0.05836535 3.081414 -10.03574 0.05836535 3.081414 -13.47828 0.05836535 3.081414 -18.10068 0.05836535 3.081414 -24.30731 0.05836535 3.081414 -32.64117 0.05836535 3.081414 -43.83129 0.05836535 3.081414 -58.85664 0.05836535 3.081414 --0.0175068 0.08132997 3.081414 --0.01161267 0.08132997 3.081414 --0.005718534 0.08132997 3.081414 -0.0001755984 0.08132997 3.081414 -0.006069731 0.08132997 3.081414 -0.01197402 0.08132997 3.081414 -0.01903886 0.08132997 3.081414 -0.02852504 0.08132997 3.081414 -0.04126244 0.08132997 3.081414 -0.05836535 0.08132997 3.081414 -0.08132997 0.08132997 3.081414 -0.1121653 0.08132997 3.081414 -0.1535689 0.08132997 3.081414 -0.2091628 0.08132997 3.081414 -0.2838106 0.08132997 3.081414 -0.3840425 0.08132997 3.081414 -0.518627 0.08132997 3.081414 -0.6993381 0.08132997 3.081414 -0.9419845 0.08132997 3.081414 -1.267794 0.08132997 3.081414 -1.705268 0.08132997 3.081414 -2.292679 0.08132997 3.081414 -3.081414 0.08132997 3.081414 -4.140474 0.08132997 3.081414 -5.562508 0.08132997 3.081414 -7.471917 0.08132997 3.081414 -10.03574 0.08132997 3.081414 -13.47828 0.08132997 3.081414 -18.10068 0.08132997 3.081414 -24.30731 0.08132997 3.081414 -32.64117 0.08132997 3.081414 -43.83129 0.08132997 3.081414 -58.85664 0.08132997 3.081414 --0.0175068 0.1121653 3.081414 --0.01161267 0.1121653 3.081414 --0.005718534 0.1121653 3.081414 -0.0001755984 0.1121653 3.081414 -0.006069731 0.1121653 3.081414 -0.01197402 0.1121653 3.081414 -0.01903886 0.1121653 3.081414 -0.02852504 0.1121653 3.081414 -0.04126244 0.1121653 3.081414 -0.05836535 0.1121653 3.081414 -0.08132997 0.1121653 3.081414 -0.1121653 0.1121653 3.081414 -0.1535689 0.1121653 3.081414 -0.2091628 0.1121653 3.081414 -0.2838106 0.1121653 3.081414 -0.3840425 0.1121653 3.081414 -0.518627 0.1121653 3.081414 -0.6993381 0.1121653 3.081414 -0.9419845 0.1121653 3.081414 -1.267794 0.1121653 3.081414 -1.705268 0.1121653 3.081414 -2.292679 0.1121653 3.081414 -3.081414 0.1121653 3.081414 -4.140474 0.1121653 3.081414 -5.562508 0.1121653 3.081414 -7.471917 0.1121653 3.081414 -10.03574 0.1121653 3.081414 -13.47828 0.1121653 3.081414 -18.10068 0.1121653 3.081414 -24.30731 0.1121653 3.081414 -32.64117 0.1121653 3.081414 -43.83129 0.1121653 3.081414 -58.85664 0.1121653 3.081414 --0.0175068 0.1535689 3.081414 --0.01161267 0.1535689 3.081414 --0.005718534 0.1535689 3.081414 -0.0001755984 0.1535689 3.081414 -0.006069731 0.1535689 3.081414 -0.01197402 0.1535689 3.081414 -0.01903886 0.1535689 3.081414 -0.02852504 0.1535689 3.081414 -0.04126244 0.1535689 3.081414 -0.05836535 0.1535689 3.081414 -0.08132997 0.1535689 3.081414 -0.1121653 0.1535689 3.081414 -0.1535689 0.1535689 3.081414 -0.2091628 0.1535689 3.081414 -0.2838106 0.1535689 3.081414 -0.3840425 0.1535689 3.081414 -0.518627 0.1535689 3.081414 -0.6993381 0.1535689 3.081414 -0.9419845 0.1535689 3.081414 -1.267794 0.1535689 3.081414 -1.705268 0.1535689 3.081414 -2.292679 0.1535689 3.081414 -3.081414 0.1535689 3.081414 -4.140474 0.1535689 3.081414 -5.562508 0.1535689 3.081414 -7.471917 0.1535689 3.081414 -10.03574 0.1535689 3.081414 -13.47828 0.1535689 3.081414 -18.10068 0.1535689 3.081414 -24.30731 0.1535689 3.081414 -32.64117 0.1535689 3.081414 -43.83129 0.1535689 3.081414 -58.85664 0.1535689 3.081414 --0.0175068 0.2091628 3.081414 --0.01161267 0.2091628 3.081414 --0.005718534 0.2091628 3.081414 -0.0001755984 0.2091628 3.081414 -0.006069731 0.2091628 3.081414 -0.01197402 0.2091628 3.081414 -0.01903886 0.2091628 3.081414 -0.02852504 0.2091628 3.081414 -0.04126244 0.2091628 3.081414 -0.05836535 0.2091628 3.081414 -0.08132997 0.2091628 3.081414 -0.1121653 0.2091628 3.081414 -0.1535689 0.2091628 3.081414 -0.2091628 0.2091628 3.081414 -0.2838106 0.2091628 3.081414 -0.3840425 0.2091628 3.081414 -0.518627 0.2091628 3.081414 -0.6993381 0.2091628 3.081414 -0.9419845 0.2091628 3.081414 -1.267794 0.2091628 3.081414 -1.705268 0.2091628 3.081414 -2.292679 0.2091628 3.081414 -3.081414 0.2091628 3.081414 -4.140474 0.2091628 3.081414 -5.562508 0.2091628 3.081414 -7.471917 0.2091628 3.081414 -10.03574 0.2091628 3.081414 -13.47828 0.2091628 3.081414 -18.10068 0.2091628 3.081414 -24.30731 0.2091628 3.081414 -32.64117 0.2091628 3.081414 -43.83129 0.2091628 3.081414 -58.85664 0.2091628 3.081414 --0.0175068 0.2838106 3.081414 --0.01161267 0.2838106 3.081414 --0.005718534 0.2838106 3.081414 -0.0001755984 0.2838106 3.081414 -0.006069731 0.2838106 3.081414 -0.01197402 0.2838106 3.081414 -0.01903886 0.2838106 3.081414 -0.02852504 0.2838106 3.081414 -0.04126244 0.2838106 3.081414 -0.05836535 0.2838106 3.081414 -0.08132997 0.2838106 3.081414 -0.1121653 0.2838106 3.081414 -0.1535689 0.2838106 3.081414 -0.2091628 0.2838106 3.081414 -0.2838106 0.2838106 3.081414 -0.3840425 0.2838106 3.081414 -0.518627 0.2838106 3.081414 -0.6993381 0.2838106 3.081414 -0.9419845 0.2838106 3.081414 -1.267794 0.2838106 3.081414 -1.705268 0.2838106 3.081414 -2.292679 0.2838106 3.081414 -3.081414 0.2838106 3.081414 -4.140474 0.2838106 3.081414 -5.562508 0.2838106 3.081414 -7.471917 0.2838106 3.081414 -10.03574 0.2838106 3.081414 -13.47828 0.2838106 3.081414 -18.10068 0.2838106 3.081414 -24.30731 0.2838106 3.081414 -32.64117 0.2838106 3.081414 -43.83129 0.2838106 3.081414 -58.85664 0.2838106 3.081414 --0.0175068 0.3840425 3.081414 --0.01161267 0.3840425 3.081414 --0.005718534 0.3840425 3.081414 -0.0001755984 0.3840425 3.081414 -0.006069731 0.3840425 3.081414 -0.01197402 0.3840425 3.081414 -0.01903886 0.3840425 3.081414 -0.02852504 0.3840425 3.081414 -0.04126244 0.3840425 3.081414 -0.05836535 0.3840425 3.081414 -0.08132997 0.3840425 3.081414 -0.1121653 0.3840425 3.081414 -0.1535689 0.3840425 3.081414 -0.2091628 0.3840425 3.081414 -0.2838106 0.3840425 3.081414 -0.3840425 0.3840425 3.081414 -0.518627 0.3840425 3.081414 -0.6993381 0.3840425 3.081414 -0.9419845 0.3840425 3.081414 -1.267794 0.3840425 3.081414 -1.705268 0.3840425 3.081414 -2.292679 0.3840425 3.081414 -3.081414 0.3840425 3.081414 -4.140474 0.3840425 3.081414 -5.562508 0.3840425 3.081414 -7.471917 0.3840425 3.081414 -10.03574 0.3840425 3.081414 -13.47828 0.3840425 3.081414 -18.10068 0.3840425 3.081414 -24.30731 0.3840425 3.081414 -32.64117 0.3840425 3.081414 -43.83129 0.3840425 3.081414 -58.85664 0.3840425 3.081414 --0.0175068 0.518627 3.081414 --0.01161267 0.518627 3.081414 --0.005718534 0.518627 3.081414 -0.0001755984 0.518627 3.081414 -0.006069731 0.518627 3.081414 -0.01197402 0.518627 3.081414 -0.01903886 0.518627 3.081414 -0.02852504 0.518627 3.081414 -0.04126244 0.518627 3.081414 -0.05836535 0.518627 3.081414 -0.08132997 0.518627 3.081414 -0.1121653 0.518627 3.081414 -0.1535689 0.518627 3.081414 -0.2091628 0.518627 3.081414 -0.2838106 0.518627 3.081414 -0.3840425 0.518627 3.081414 -0.518627 0.518627 3.081414 -0.6993381 0.518627 3.081414 -0.9419845 0.518627 3.081414 -1.267794 0.518627 3.081414 -1.705268 0.518627 3.081414 -2.292679 0.518627 3.081414 -3.081414 0.518627 3.081414 -4.140474 0.518627 3.081414 -5.562508 0.518627 3.081414 -7.471917 0.518627 3.081414 -10.03574 0.518627 3.081414 -13.47828 0.518627 3.081414 -18.10068 0.518627 3.081414 -24.30731 0.518627 3.081414 -32.64117 0.518627 3.081414 -43.83129 0.518627 3.081414 -58.85664 0.518627 3.081414 --0.0175068 0.6993381 3.081414 --0.01161267 0.6993381 3.081414 --0.005718534 0.6993381 3.081414 -0.0001755984 0.6993381 3.081414 -0.006069731 0.6993381 3.081414 -0.01197402 0.6993381 3.081414 -0.01903886 0.6993381 3.081414 -0.02852504 0.6993381 3.081414 -0.04126244 0.6993381 3.081414 -0.05836535 0.6993381 3.081414 -0.08132997 0.6993381 3.081414 -0.1121653 0.6993381 3.081414 -0.1535689 0.6993381 3.081414 -0.2091628 0.6993381 3.081414 -0.2838106 0.6993381 3.081414 -0.3840425 0.6993381 3.081414 -0.518627 0.6993381 3.081414 -0.6993381 0.6993381 3.081414 -0.9419845 0.6993381 3.081414 -1.267794 0.6993381 3.081414 -1.705268 0.6993381 3.081414 -2.292679 0.6993381 3.081414 -3.081414 0.6993381 3.081414 -4.140474 0.6993381 3.081414 -5.562508 0.6993381 3.081414 -7.471917 0.6993381 3.081414 -10.03574 0.6993381 3.081414 -13.47828 0.6993381 3.081414 -18.10068 0.6993381 3.081414 -24.30731 0.6993381 3.081414 -32.64117 0.6993381 3.081414 -43.83129 0.6993381 3.081414 -58.85664 0.6993381 3.081414 --0.0175068 0.9419845 3.081414 --0.01161267 0.9419845 3.081414 --0.005718534 0.9419845 3.081414 -0.0001755984 0.9419845 3.081414 -0.006069731 0.9419845 3.081414 -0.01197402 0.9419845 3.081414 -0.01903886 0.9419845 3.081414 -0.02852504 0.9419845 3.081414 -0.04126244 0.9419845 3.081414 -0.05836535 0.9419845 3.081414 -0.08132997 0.9419845 3.081414 -0.1121653 0.9419845 3.081414 -0.1535689 0.9419845 3.081414 -0.2091628 0.9419845 3.081414 -0.2838106 0.9419845 3.081414 -0.3840425 0.9419845 3.081414 -0.518627 0.9419845 3.081414 -0.6993381 0.9419845 3.081414 -0.9419845 0.9419845 3.081414 -1.267794 0.9419845 3.081414 -1.705268 0.9419845 3.081414 -2.292679 0.9419845 3.081414 -3.081414 0.9419845 3.081414 -4.140474 0.9419845 3.081414 -5.562508 0.9419845 3.081414 -7.471917 0.9419845 3.081414 -10.03574 0.9419845 3.081414 -13.47828 0.9419845 3.081414 -18.10068 0.9419845 3.081414 -24.30731 0.9419845 3.081414 -32.64117 0.9419845 3.081414 -43.83129 0.9419845 3.081414 -58.85664 0.9419845 3.081414 --0.0175068 1.267794 3.081414 --0.01161267 1.267794 3.081414 --0.005718534 1.267794 3.081414 -0.0001755984 1.267794 3.081414 -0.006069731 1.267794 3.081414 -0.01197402 1.267794 3.081414 -0.01903886 1.267794 3.081414 -0.02852504 1.267794 3.081414 -0.04126244 1.267794 3.081414 -0.05836535 1.267794 3.081414 -0.08132997 1.267794 3.081414 -0.1121653 1.267794 3.081414 -0.1535689 1.267794 3.081414 -0.2091628 1.267794 3.081414 -0.2838106 1.267794 3.081414 -0.3840425 1.267794 3.081414 -0.518627 1.267794 3.081414 -0.6993381 1.267794 3.081414 -0.9419845 1.267794 3.081414 -1.267794 1.267794 3.081414 -1.705268 1.267794 3.081414 -2.292679 1.267794 3.081414 -3.081414 1.267794 3.081414 -4.140474 1.267794 3.081414 -5.562508 1.267794 3.081414 -7.471917 1.267794 3.081414 -10.03574 1.267794 3.081414 -13.47828 1.267794 3.081414 -18.10068 1.267794 3.081414 -24.30731 1.267794 3.081414 -32.64117 1.267794 3.081414 -43.83129 1.267794 3.081414 -58.85664 1.267794 3.081414 --0.0175068 1.705268 3.081414 --0.01161267 1.705268 3.081414 --0.005718534 1.705268 3.081414 -0.0001755984 1.705268 3.081414 -0.006069731 1.705268 3.081414 -0.01197402 1.705268 3.081414 -0.01903886 1.705268 3.081414 -0.02852504 1.705268 3.081414 -0.04126244 1.705268 3.081414 -0.05836535 1.705268 3.081414 -0.08132997 1.705268 3.081414 -0.1121653 1.705268 3.081414 -0.1535689 1.705268 3.081414 -0.2091628 1.705268 3.081414 -0.2838106 1.705268 3.081414 -0.3840425 1.705268 3.081414 -0.518627 1.705268 3.081414 -0.6993381 1.705268 3.081414 -0.9419845 1.705268 3.081414 -1.267794 1.705268 3.081414 -1.705268 1.705268 3.081414 -2.292679 1.705268 3.081414 -3.081414 1.705268 3.081414 -4.140474 1.705268 3.081414 -5.562508 1.705268 3.081414 -7.471917 1.705268 3.081414 -10.03574 1.705268 3.081414 -13.47828 1.705268 3.081414 -18.10068 1.705268 3.081414 -24.30731 1.705268 3.081414 -32.64117 1.705268 3.081414 -43.83129 1.705268 3.081414 -58.85664 1.705268 3.081414 --0.0175068 2.292679 3.081414 --0.01161267 2.292679 3.081414 --0.005718534 2.292679 3.081414 -0.0001755984 2.292679 3.081414 -0.006069731 2.292679 3.081414 -0.01197402 2.292679 3.081414 -0.01903886 2.292679 3.081414 -0.02852504 2.292679 3.081414 -0.04126244 2.292679 3.081414 -0.05836535 2.292679 3.081414 -0.08132997 2.292679 3.081414 -0.1121653 2.292679 3.081414 -0.1535689 2.292679 3.081414 -0.2091628 2.292679 3.081414 -0.2838106 2.292679 3.081414 -0.3840425 2.292679 3.081414 -0.518627 2.292679 3.081414 -0.6993381 2.292679 3.081414 -0.9419845 2.292679 3.081414 -1.267794 2.292679 3.081414 -1.705268 2.292679 3.081414 -2.292679 2.292679 3.081414 -3.081414 2.292679 3.081414 -4.140474 2.292679 3.081414 -5.562508 2.292679 3.081414 -7.471917 2.292679 3.081414 -10.03574 2.292679 3.081414 -13.47828 2.292679 3.081414 -18.10068 2.292679 3.081414 -24.30731 2.292679 3.081414 -32.64117 2.292679 3.081414 -43.83129 2.292679 3.081414 -58.85664 2.292679 3.081414 --0.0175068 3.081414 3.081414 --0.01161267 3.081414 3.081414 --0.005718534 3.081414 3.081414 -0.0001755984 3.081414 3.081414 -0.006069731 3.081414 3.081414 -0.01197402 3.081414 3.081414 -0.01903886 3.081414 3.081414 -0.02852504 3.081414 3.081414 -0.04126244 3.081414 3.081414 -0.05836535 3.081414 3.081414 -0.08132997 3.081414 3.081414 -0.1121653 3.081414 3.081414 -0.1535689 3.081414 3.081414 -0.2091628 3.081414 3.081414 -0.2838106 3.081414 3.081414 -0.3840425 3.081414 3.081414 -0.518627 3.081414 3.081414 -0.6993381 3.081414 3.081414 -0.9419845 3.081414 3.081414 -1.267794 3.081414 3.081414 -1.705268 3.081414 3.081414 -2.292679 3.081414 3.081414 -3.081414 3.081414 3.081414 -4.140474 3.081414 3.081414 -5.562508 3.081414 3.081414 -7.471917 3.081414 3.081414 -10.03574 3.081414 3.081414 -13.47828 3.081414 3.081414 -18.10068 3.081414 3.081414 -24.30731 3.081414 3.081414 -32.64117 3.081414 3.081414 -43.83129 3.081414 3.081414 -58.85664 3.081414 3.081414 --0.0175068 4.140474 3.081414 --0.01161267 4.140474 3.081414 --0.005718534 4.140474 3.081414 -0.0001755984 4.140474 3.081414 -0.006069731 4.140474 3.081414 -0.01197402 4.140474 3.081414 -0.01903886 4.140474 3.081414 -0.02852504 4.140474 3.081414 -0.04126244 4.140474 3.081414 -0.05836535 4.140474 3.081414 -0.08132997 4.140474 3.081414 -0.1121653 4.140474 3.081414 -0.1535689 4.140474 3.081414 -0.2091628 4.140474 3.081414 -0.2838106 4.140474 3.081414 -0.3840425 4.140474 3.081414 -0.518627 4.140474 3.081414 -0.6993381 4.140474 3.081414 -0.9419845 4.140474 3.081414 -1.267794 4.140474 3.081414 -1.705268 4.140474 3.081414 -2.292679 4.140474 3.081414 -3.081414 4.140474 3.081414 -4.140474 4.140474 3.081414 -5.562508 4.140474 3.081414 -7.471917 4.140474 3.081414 -10.03574 4.140474 3.081414 -13.47828 4.140474 3.081414 -18.10068 4.140474 3.081414 -24.30731 4.140474 3.081414 -32.64117 4.140474 3.081414 -43.83129 4.140474 3.081414 -58.85664 4.140474 3.081414 --0.0175068 5.562508 3.081414 --0.01161267 5.562508 3.081414 --0.005718534 5.562508 3.081414 -0.0001755984 5.562508 3.081414 -0.006069731 5.562508 3.081414 -0.01197402 5.562508 3.081414 -0.01903886 5.562508 3.081414 -0.02852504 5.562508 3.081414 -0.04126244 5.562508 3.081414 -0.05836535 5.562508 3.081414 -0.08132997 5.562508 3.081414 -0.1121653 5.562508 3.081414 -0.1535689 5.562508 3.081414 -0.2091628 5.562508 3.081414 -0.2838106 5.562508 3.081414 -0.3840425 5.562508 3.081414 -0.518627 5.562508 3.081414 -0.6993381 5.562508 3.081414 -0.9419845 5.562508 3.081414 -1.267794 5.562508 3.081414 -1.705268 5.562508 3.081414 -2.292679 5.562508 3.081414 -3.081414 5.562508 3.081414 -4.140474 5.562508 3.081414 -5.562508 5.562508 3.081414 -7.471917 5.562508 3.081414 -10.03574 5.562508 3.081414 -13.47828 5.562508 3.081414 -18.10068 5.562508 3.081414 -24.30731 5.562508 3.081414 -32.64117 5.562508 3.081414 -43.83129 5.562508 3.081414 -58.85664 5.562508 3.081414 --0.0175068 7.471917 3.081414 --0.01161267 7.471917 3.081414 --0.005718534 7.471917 3.081414 -0.0001755984 7.471917 3.081414 -0.006069731 7.471917 3.081414 -0.01197402 7.471917 3.081414 -0.01903886 7.471917 3.081414 -0.02852504 7.471917 3.081414 -0.04126244 7.471917 3.081414 -0.05836535 7.471917 3.081414 -0.08132997 7.471917 3.081414 -0.1121653 7.471917 3.081414 -0.1535689 7.471917 3.081414 -0.2091628 7.471917 3.081414 -0.2838106 7.471917 3.081414 -0.3840425 7.471917 3.081414 -0.518627 7.471917 3.081414 -0.6993381 7.471917 3.081414 -0.9419845 7.471917 3.081414 -1.267794 7.471917 3.081414 -1.705268 7.471917 3.081414 -2.292679 7.471917 3.081414 -3.081414 7.471917 3.081414 -4.140474 7.471917 3.081414 -5.562508 7.471917 3.081414 -7.471917 7.471917 3.081414 -10.03574 7.471917 3.081414 -13.47828 7.471917 3.081414 -18.10068 7.471917 3.081414 -24.30731 7.471917 3.081414 -32.64117 7.471917 3.081414 -43.83129 7.471917 3.081414 -58.85664 7.471917 3.081414 --0.0175068 10.03574 3.081414 --0.01161267 10.03574 3.081414 --0.005718534 10.03574 3.081414 -0.0001755984 10.03574 3.081414 -0.006069731 10.03574 3.081414 -0.01197402 10.03574 3.081414 -0.01903886 10.03574 3.081414 -0.02852504 10.03574 3.081414 -0.04126244 10.03574 3.081414 -0.05836535 10.03574 3.081414 -0.08132997 10.03574 3.081414 -0.1121653 10.03574 3.081414 -0.1535689 10.03574 3.081414 -0.2091628 10.03574 3.081414 -0.2838106 10.03574 3.081414 -0.3840425 10.03574 3.081414 -0.518627 10.03574 3.081414 -0.6993381 10.03574 3.081414 -0.9419845 10.03574 3.081414 -1.267794 10.03574 3.081414 -1.705268 10.03574 3.081414 -2.292679 10.03574 3.081414 -3.081414 10.03574 3.081414 -4.140474 10.03574 3.081414 -5.562508 10.03574 3.081414 -7.471917 10.03574 3.081414 -10.03574 10.03574 3.081414 -13.47828 10.03574 3.081414 -18.10068 10.03574 3.081414 -24.30731 10.03574 3.081414 -32.64117 10.03574 3.081414 -43.83129 10.03574 3.081414 -58.85664 10.03574 3.081414 --0.0175068 13.47828 3.081414 --0.01161267 13.47828 3.081414 --0.005718534 13.47828 3.081414 -0.0001755984 13.47828 3.081414 -0.006069731 13.47828 3.081414 -0.01197402 13.47828 3.081414 -0.01903886 13.47828 3.081414 -0.02852504 13.47828 3.081414 -0.04126244 13.47828 3.081414 -0.05836535 13.47828 3.081414 -0.08132997 13.47828 3.081414 -0.1121653 13.47828 3.081414 -0.1535689 13.47828 3.081414 -0.2091628 13.47828 3.081414 -0.2838106 13.47828 3.081414 -0.3840425 13.47828 3.081414 -0.518627 13.47828 3.081414 -0.6993381 13.47828 3.081414 -0.9419845 13.47828 3.081414 -1.267794 13.47828 3.081414 -1.705268 13.47828 3.081414 -2.292679 13.47828 3.081414 -3.081414 13.47828 3.081414 -4.140474 13.47828 3.081414 -5.562508 13.47828 3.081414 -7.471917 13.47828 3.081414 -10.03574 13.47828 3.081414 -13.47828 13.47828 3.081414 -18.10068 13.47828 3.081414 -24.30731 13.47828 3.081414 -32.64117 13.47828 3.081414 -43.83129 13.47828 3.081414 -58.85664 13.47828 3.081414 --0.0175068 18.10068 3.081414 --0.01161267 18.10068 3.081414 --0.005718534 18.10068 3.081414 -0.0001755984 18.10068 3.081414 -0.006069731 18.10068 3.081414 -0.01197402 18.10068 3.081414 -0.01903886 18.10068 3.081414 -0.02852504 18.10068 3.081414 -0.04126244 18.10068 3.081414 -0.05836535 18.10068 3.081414 -0.08132997 18.10068 3.081414 -0.1121653 18.10068 3.081414 -0.1535689 18.10068 3.081414 -0.2091628 18.10068 3.081414 -0.2838106 18.10068 3.081414 -0.3840425 18.10068 3.081414 -0.518627 18.10068 3.081414 -0.6993381 18.10068 3.081414 -0.9419845 18.10068 3.081414 -1.267794 18.10068 3.081414 -1.705268 18.10068 3.081414 -2.292679 18.10068 3.081414 -3.081414 18.10068 3.081414 -4.140474 18.10068 3.081414 -5.562508 18.10068 3.081414 -7.471917 18.10068 3.081414 -10.03574 18.10068 3.081414 -13.47828 18.10068 3.081414 -18.10068 18.10068 3.081414 -24.30731 18.10068 3.081414 -32.64117 18.10068 3.081414 -43.83129 18.10068 3.081414 -58.85664 18.10068 3.081414 --0.0175068 24.30731 3.081414 --0.01161267 24.30731 3.081414 --0.005718534 24.30731 3.081414 -0.0001755984 24.30731 3.081414 -0.006069731 24.30731 3.081414 -0.01197402 24.30731 3.081414 -0.01903886 24.30731 3.081414 -0.02852504 24.30731 3.081414 -0.04126244 24.30731 3.081414 -0.05836535 24.30731 3.081414 -0.08132997 24.30731 3.081414 -0.1121653 24.30731 3.081414 -0.1535689 24.30731 3.081414 -0.2091628 24.30731 3.081414 -0.2838106 24.30731 3.081414 -0.3840425 24.30731 3.081414 -0.518627 24.30731 3.081414 -0.6993381 24.30731 3.081414 -0.9419845 24.30731 3.081414 -1.267794 24.30731 3.081414 -1.705268 24.30731 3.081414 -2.292679 24.30731 3.081414 -3.081414 24.30731 3.081414 -4.140474 24.30731 3.081414 -5.562508 24.30731 3.081414 -7.471917 24.30731 3.081414 -10.03574 24.30731 3.081414 -13.47828 24.30731 3.081414 -18.10068 24.30731 3.081414 -24.30731 24.30731 3.081414 -32.64117 24.30731 3.081414 -43.83129 24.30731 3.081414 -58.85664 24.30731 3.081414 --0.0175068 32.64117 3.081414 --0.01161267 32.64117 3.081414 --0.005718534 32.64117 3.081414 -0.0001755984 32.64117 3.081414 -0.006069731 32.64117 3.081414 -0.01197402 32.64117 3.081414 -0.01903886 32.64117 3.081414 -0.02852504 32.64117 3.081414 -0.04126244 32.64117 3.081414 -0.05836535 32.64117 3.081414 -0.08132997 32.64117 3.081414 -0.1121653 32.64117 3.081414 -0.1535689 32.64117 3.081414 -0.2091628 32.64117 3.081414 -0.2838106 32.64117 3.081414 -0.3840425 32.64117 3.081414 -0.518627 32.64117 3.081414 -0.6993381 32.64117 3.081414 -0.9419845 32.64117 3.081414 -1.267794 32.64117 3.081414 -1.705268 32.64117 3.081414 -2.292679 32.64117 3.081414 -3.081414 32.64117 3.081414 -4.140474 32.64117 3.081414 -5.562508 32.64117 3.081414 -7.471917 32.64117 3.081414 -10.03574 32.64117 3.081414 -13.47828 32.64117 3.081414 -18.10068 32.64117 3.081414 -24.30731 32.64117 3.081414 -32.64117 32.64117 3.081414 -43.83129 32.64117 3.081414 -58.85664 32.64117 3.081414 --0.0175068 43.83129 3.081414 --0.01161267 43.83129 3.081414 --0.005718534 43.83129 3.081414 -0.0001755984 43.83129 3.081414 -0.006069731 43.83129 3.081414 -0.01197402 43.83129 3.081414 -0.01903886 43.83129 3.081414 -0.02852504 43.83129 3.081414 -0.04126244 43.83129 3.081414 -0.05836535 43.83129 3.081414 -0.08132997 43.83129 3.081414 -0.1121653 43.83129 3.081414 -0.1535689 43.83129 3.081414 -0.2091628 43.83129 3.081414 -0.2838106 43.83129 3.081414 -0.3840425 43.83129 3.081414 -0.518627 43.83129 3.081414 -0.6993381 43.83129 3.081414 -0.9419845 43.83129 3.081414 -1.267794 43.83129 3.081414 -1.705268 43.83129 3.081414 -2.292679 43.83129 3.081414 -3.081414 43.83129 3.081414 -4.140474 43.83129 3.081414 -5.562508 43.83129 3.081414 -7.471917 43.83129 3.081414 -10.03574 43.83129 3.081414 -13.47828 43.83129 3.081414 -18.10068 43.83129 3.081414 -24.30731 43.83129 3.081414 -32.64117 43.83129 3.081414 -43.83129 43.83129 3.081414 -58.85664 43.83129 3.081414 --0.0175068 58.85664 3.081414 --0.01161267 58.85664 3.081414 --0.005718534 58.85664 3.081414 -0.0001755984 58.85664 3.081414 -0.006069731 58.85664 3.081414 -0.01197402 58.85664 3.081414 -0.01903886 58.85664 3.081414 -0.02852504 58.85664 3.081414 -0.04126244 58.85664 3.081414 -0.05836535 58.85664 3.081414 -0.08132997 58.85664 3.081414 -0.1121653 58.85664 3.081414 -0.1535689 58.85664 3.081414 -0.2091628 58.85664 3.081414 -0.2838106 58.85664 3.081414 -0.3840425 58.85664 3.081414 -0.518627 58.85664 3.081414 -0.6993381 58.85664 3.081414 -0.9419845 58.85664 3.081414 -1.267794 58.85664 3.081414 -1.705268 58.85664 3.081414 -2.292679 58.85664 3.081414 -3.081414 58.85664 3.081414 -4.140474 58.85664 3.081414 -5.562508 58.85664 3.081414 -7.471917 58.85664 3.081414 -10.03574 58.85664 3.081414 -13.47828 58.85664 3.081414 -18.10068 58.85664 3.081414 -24.30731 58.85664 3.081414 -32.64117 58.85664 3.081414 -43.83129 58.85664 3.081414 -58.85664 58.85664 3.081414 --0.0175068 -0.0175068 4.140474 --0.01161267 -0.0175068 4.140474 --0.005718534 -0.0175068 4.140474 -0.0001755984 -0.0175068 4.140474 -0.006069731 -0.0175068 4.140474 -0.01197402 -0.0175068 4.140474 -0.01903886 -0.0175068 4.140474 -0.02852504 -0.0175068 4.140474 -0.04126244 -0.0175068 4.140474 -0.05836535 -0.0175068 4.140474 -0.08132997 -0.0175068 4.140474 -0.1121653 -0.0175068 4.140474 -0.1535689 -0.0175068 4.140474 -0.2091628 -0.0175068 4.140474 -0.2838106 -0.0175068 4.140474 -0.3840425 -0.0175068 4.140474 -0.518627 -0.0175068 4.140474 -0.6993381 -0.0175068 4.140474 -0.9419845 -0.0175068 4.140474 -1.267794 -0.0175068 4.140474 -1.705268 -0.0175068 4.140474 -2.292679 -0.0175068 4.140474 -3.081414 -0.0175068 4.140474 -4.140474 -0.0175068 4.140474 -5.562508 -0.0175068 4.140474 -7.471917 -0.0175068 4.140474 -10.03574 -0.0175068 4.140474 -13.47828 -0.0175068 4.140474 -18.10068 -0.0175068 4.140474 -24.30731 -0.0175068 4.140474 -32.64117 -0.0175068 4.140474 -43.83129 -0.0175068 4.140474 -58.85664 -0.0175068 4.140474 --0.0175068 -0.01161267 4.140474 --0.01161267 -0.01161267 4.140474 --0.005718534 -0.01161267 4.140474 -0.0001755984 -0.01161267 4.140474 -0.006069731 -0.01161267 4.140474 -0.01197402 -0.01161267 4.140474 -0.01903886 -0.01161267 4.140474 -0.02852504 -0.01161267 4.140474 -0.04126244 -0.01161267 4.140474 -0.05836535 -0.01161267 4.140474 -0.08132997 -0.01161267 4.140474 -0.1121653 -0.01161267 4.140474 -0.1535689 -0.01161267 4.140474 -0.2091628 -0.01161267 4.140474 -0.2838106 -0.01161267 4.140474 -0.3840425 -0.01161267 4.140474 -0.518627 -0.01161267 4.140474 -0.6993381 -0.01161267 4.140474 -0.9419845 -0.01161267 4.140474 -1.267794 -0.01161267 4.140474 -1.705268 -0.01161267 4.140474 -2.292679 -0.01161267 4.140474 -3.081414 -0.01161267 4.140474 -4.140474 -0.01161267 4.140474 -5.562508 -0.01161267 4.140474 -7.471917 -0.01161267 4.140474 -10.03574 -0.01161267 4.140474 -13.47828 -0.01161267 4.140474 -18.10068 -0.01161267 4.140474 -24.30731 -0.01161267 4.140474 -32.64117 -0.01161267 4.140474 -43.83129 -0.01161267 4.140474 -58.85664 -0.01161267 4.140474 --0.0175068 -0.005718534 4.140474 --0.01161267 -0.005718534 4.140474 --0.005718534 -0.005718534 4.140474 -0.0001755984 -0.005718534 4.140474 -0.006069731 -0.005718534 4.140474 -0.01197402 -0.005718534 4.140474 -0.01903886 -0.005718534 4.140474 -0.02852504 -0.005718534 4.140474 -0.04126244 -0.005718534 4.140474 -0.05836535 -0.005718534 4.140474 -0.08132997 -0.005718534 4.140474 -0.1121653 -0.005718534 4.140474 -0.1535689 -0.005718534 4.140474 -0.2091628 -0.005718534 4.140474 -0.2838106 -0.005718534 4.140474 -0.3840425 -0.005718534 4.140474 -0.518627 -0.005718534 4.140474 -0.6993381 -0.005718534 4.140474 -0.9419845 -0.005718534 4.140474 -1.267794 -0.005718534 4.140474 -1.705268 -0.005718534 4.140474 -2.292679 -0.005718534 4.140474 -3.081414 -0.005718534 4.140474 -4.140474 -0.005718534 4.140474 -5.562508 -0.005718534 4.140474 -7.471917 -0.005718534 4.140474 -10.03574 -0.005718534 4.140474 -13.47828 -0.005718534 4.140474 -18.10068 -0.005718534 4.140474 -24.30731 -0.005718534 4.140474 -32.64117 -0.005718534 4.140474 -43.83129 -0.005718534 4.140474 -58.85664 -0.005718534 4.140474 --0.0175068 0.0001755984 4.140474 --0.01161267 0.0001755984 4.140474 --0.005718534 0.0001755984 4.140474 -0.0001755984 0.0001755984 4.140474 -0.006069731 0.0001755984 4.140474 -0.01197402 0.0001755984 4.140474 -0.01903886 0.0001755984 4.140474 -0.02852504 0.0001755984 4.140474 -0.04126244 0.0001755984 4.140474 -0.05836535 0.0001755984 4.140474 -0.08132997 0.0001755984 4.140474 -0.1121653 0.0001755984 4.140474 -0.1535689 0.0001755984 4.140474 -0.2091628 0.0001755984 4.140474 -0.2838106 0.0001755984 4.140474 -0.3840425 0.0001755984 4.140474 -0.518627 0.0001755984 4.140474 -0.6993381 0.0001755984 4.140474 -0.9419845 0.0001755984 4.140474 -1.267794 0.0001755984 4.140474 -1.705268 0.0001755984 4.140474 -2.292679 0.0001755984 4.140474 -3.081414 0.0001755984 4.140474 -4.140474 0.0001755984 4.140474 -5.562508 0.0001755984 4.140474 -7.471917 0.0001755984 4.140474 -10.03574 0.0001755984 4.140474 -13.47828 0.0001755984 4.140474 -18.10068 0.0001755984 4.140474 -24.30731 0.0001755984 4.140474 -32.64117 0.0001755984 4.140474 -43.83129 0.0001755984 4.140474 -58.85664 0.0001755984 4.140474 --0.0175068 0.006069731 4.140474 --0.01161267 0.006069731 4.140474 --0.005718534 0.006069731 4.140474 -0.0001755984 0.006069731 4.140474 -0.006069731 0.006069731 4.140474 -0.01197402 0.006069731 4.140474 -0.01903886 0.006069731 4.140474 -0.02852504 0.006069731 4.140474 -0.04126244 0.006069731 4.140474 -0.05836535 0.006069731 4.140474 -0.08132997 0.006069731 4.140474 -0.1121653 0.006069731 4.140474 -0.1535689 0.006069731 4.140474 -0.2091628 0.006069731 4.140474 -0.2838106 0.006069731 4.140474 -0.3840425 0.006069731 4.140474 -0.518627 0.006069731 4.140474 -0.6993381 0.006069731 4.140474 -0.9419845 0.006069731 4.140474 -1.267794 0.006069731 4.140474 -1.705268 0.006069731 4.140474 -2.292679 0.006069731 4.140474 -3.081414 0.006069731 4.140474 -4.140474 0.006069731 4.140474 -5.562508 0.006069731 4.140474 -7.471917 0.006069731 4.140474 -10.03574 0.006069731 4.140474 -13.47828 0.006069731 4.140474 -18.10068 0.006069731 4.140474 -24.30731 0.006069731 4.140474 -32.64117 0.006069731 4.140474 -43.83129 0.006069731 4.140474 -58.85664 0.006069731 4.140474 --0.0175068 0.01197402 4.140474 --0.01161267 0.01197402 4.140474 --0.005718534 0.01197402 4.140474 -0.0001755984 0.01197402 4.140474 -0.006069731 0.01197402 4.140474 -0.01197402 0.01197402 4.140474 -0.01903886 0.01197402 4.140474 -0.02852504 0.01197402 4.140474 -0.04126244 0.01197402 4.140474 -0.05836535 0.01197402 4.140474 -0.08132997 0.01197402 4.140474 -0.1121653 0.01197402 4.140474 -0.1535689 0.01197402 4.140474 -0.2091628 0.01197402 4.140474 -0.2838106 0.01197402 4.140474 -0.3840425 0.01197402 4.140474 -0.518627 0.01197402 4.140474 -0.6993381 0.01197402 4.140474 -0.9419845 0.01197402 4.140474 -1.267794 0.01197402 4.140474 -1.705268 0.01197402 4.140474 -2.292679 0.01197402 4.140474 -3.081414 0.01197402 4.140474 -4.140474 0.01197402 4.140474 -5.562508 0.01197402 4.140474 -7.471917 0.01197402 4.140474 -10.03574 0.01197402 4.140474 -13.47828 0.01197402 4.140474 -18.10068 0.01197402 4.140474 -24.30731 0.01197402 4.140474 -32.64117 0.01197402 4.140474 -43.83129 0.01197402 4.140474 -58.85664 0.01197402 4.140474 --0.0175068 0.01903886 4.140474 --0.01161267 0.01903886 4.140474 --0.005718534 0.01903886 4.140474 -0.0001755984 0.01903886 4.140474 -0.006069731 0.01903886 4.140474 -0.01197402 0.01903886 4.140474 -0.01903886 0.01903886 4.140474 -0.02852504 0.01903886 4.140474 -0.04126244 0.01903886 4.140474 -0.05836535 0.01903886 4.140474 -0.08132997 0.01903886 4.140474 -0.1121653 0.01903886 4.140474 -0.1535689 0.01903886 4.140474 -0.2091628 0.01903886 4.140474 -0.2838106 0.01903886 4.140474 -0.3840425 0.01903886 4.140474 -0.518627 0.01903886 4.140474 -0.6993381 0.01903886 4.140474 -0.9419845 0.01903886 4.140474 -1.267794 0.01903886 4.140474 -1.705268 0.01903886 4.140474 -2.292679 0.01903886 4.140474 -3.081414 0.01903886 4.140474 -4.140474 0.01903886 4.140474 -5.562508 0.01903886 4.140474 -7.471917 0.01903886 4.140474 -10.03574 0.01903886 4.140474 -13.47828 0.01903886 4.140474 -18.10068 0.01903886 4.140474 -24.30731 0.01903886 4.140474 -32.64117 0.01903886 4.140474 -43.83129 0.01903886 4.140474 -58.85664 0.01903886 4.140474 --0.0175068 0.02852504 4.140474 --0.01161267 0.02852504 4.140474 --0.005718534 0.02852504 4.140474 -0.0001755984 0.02852504 4.140474 -0.006069731 0.02852504 4.140474 -0.01197402 0.02852504 4.140474 -0.01903886 0.02852504 4.140474 -0.02852504 0.02852504 4.140474 -0.04126244 0.02852504 4.140474 -0.05836535 0.02852504 4.140474 -0.08132997 0.02852504 4.140474 -0.1121653 0.02852504 4.140474 -0.1535689 0.02852504 4.140474 -0.2091628 0.02852504 4.140474 -0.2838106 0.02852504 4.140474 -0.3840425 0.02852504 4.140474 -0.518627 0.02852504 4.140474 -0.6993381 0.02852504 4.140474 -0.9419845 0.02852504 4.140474 -1.267794 0.02852504 4.140474 -1.705268 0.02852504 4.140474 -2.292679 0.02852504 4.140474 -3.081414 0.02852504 4.140474 -4.140474 0.02852504 4.140474 -5.562508 0.02852504 4.140474 -7.471917 0.02852504 4.140474 -10.03574 0.02852504 4.140474 -13.47828 0.02852504 4.140474 -18.10068 0.02852504 4.140474 -24.30731 0.02852504 4.140474 -32.64117 0.02852504 4.140474 -43.83129 0.02852504 4.140474 -58.85664 0.02852504 4.140474 --0.0175068 0.04126244 4.140474 --0.01161267 0.04126244 4.140474 --0.005718534 0.04126244 4.140474 -0.0001755984 0.04126244 4.140474 -0.006069731 0.04126244 4.140474 -0.01197402 0.04126244 4.140474 -0.01903886 0.04126244 4.140474 -0.02852504 0.04126244 4.140474 -0.04126244 0.04126244 4.140474 -0.05836535 0.04126244 4.140474 -0.08132997 0.04126244 4.140474 -0.1121653 0.04126244 4.140474 -0.1535689 0.04126244 4.140474 -0.2091628 0.04126244 4.140474 -0.2838106 0.04126244 4.140474 -0.3840425 0.04126244 4.140474 -0.518627 0.04126244 4.140474 -0.6993381 0.04126244 4.140474 -0.9419845 0.04126244 4.140474 -1.267794 0.04126244 4.140474 -1.705268 0.04126244 4.140474 -2.292679 0.04126244 4.140474 -3.081414 0.04126244 4.140474 -4.140474 0.04126244 4.140474 -5.562508 0.04126244 4.140474 -7.471917 0.04126244 4.140474 -10.03574 0.04126244 4.140474 -13.47828 0.04126244 4.140474 -18.10068 0.04126244 4.140474 -24.30731 0.04126244 4.140474 -32.64117 0.04126244 4.140474 -43.83129 0.04126244 4.140474 -58.85664 0.04126244 4.140474 --0.0175068 0.05836535 4.140474 --0.01161267 0.05836535 4.140474 --0.005718534 0.05836535 4.140474 -0.0001755984 0.05836535 4.140474 -0.006069731 0.05836535 4.140474 -0.01197402 0.05836535 4.140474 -0.01903886 0.05836535 4.140474 -0.02852504 0.05836535 4.140474 -0.04126244 0.05836535 4.140474 -0.05836535 0.05836535 4.140474 -0.08132997 0.05836535 4.140474 -0.1121653 0.05836535 4.140474 -0.1535689 0.05836535 4.140474 -0.2091628 0.05836535 4.140474 -0.2838106 0.05836535 4.140474 -0.3840425 0.05836535 4.140474 -0.518627 0.05836535 4.140474 -0.6993381 0.05836535 4.140474 -0.9419845 0.05836535 4.140474 -1.267794 0.05836535 4.140474 -1.705268 0.05836535 4.140474 -2.292679 0.05836535 4.140474 -3.081414 0.05836535 4.140474 -4.140474 0.05836535 4.140474 -5.562508 0.05836535 4.140474 -7.471917 0.05836535 4.140474 -10.03574 0.05836535 4.140474 -13.47828 0.05836535 4.140474 -18.10068 0.05836535 4.140474 -24.30731 0.05836535 4.140474 -32.64117 0.05836535 4.140474 -43.83129 0.05836535 4.140474 -58.85664 0.05836535 4.140474 --0.0175068 0.08132997 4.140474 --0.01161267 0.08132997 4.140474 --0.005718534 0.08132997 4.140474 -0.0001755984 0.08132997 4.140474 -0.006069731 0.08132997 4.140474 -0.01197402 0.08132997 4.140474 -0.01903886 0.08132997 4.140474 -0.02852504 0.08132997 4.140474 -0.04126244 0.08132997 4.140474 -0.05836535 0.08132997 4.140474 -0.08132997 0.08132997 4.140474 -0.1121653 0.08132997 4.140474 -0.1535689 0.08132997 4.140474 -0.2091628 0.08132997 4.140474 -0.2838106 0.08132997 4.140474 -0.3840425 0.08132997 4.140474 -0.518627 0.08132997 4.140474 -0.6993381 0.08132997 4.140474 -0.9419845 0.08132997 4.140474 -1.267794 0.08132997 4.140474 -1.705268 0.08132997 4.140474 -2.292679 0.08132997 4.140474 -3.081414 0.08132997 4.140474 -4.140474 0.08132997 4.140474 -5.562508 0.08132997 4.140474 -7.471917 0.08132997 4.140474 -10.03574 0.08132997 4.140474 -13.47828 0.08132997 4.140474 -18.10068 0.08132997 4.140474 -24.30731 0.08132997 4.140474 -32.64117 0.08132997 4.140474 -43.83129 0.08132997 4.140474 -58.85664 0.08132997 4.140474 --0.0175068 0.1121653 4.140474 --0.01161267 0.1121653 4.140474 --0.005718534 0.1121653 4.140474 -0.0001755984 0.1121653 4.140474 -0.006069731 0.1121653 4.140474 -0.01197402 0.1121653 4.140474 -0.01903886 0.1121653 4.140474 -0.02852504 0.1121653 4.140474 -0.04126244 0.1121653 4.140474 -0.05836535 0.1121653 4.140474 -0.08132997 0.1121653 4.140474 -0.1121653 0.1121653 4.140474 -0.1535689 0.1121653 4.140474 -0.2091628 0.1121653 4.140474 -0.2838106 0.1121653 4.140474 -0.3840425 0.1121653 4.140474 -0.518627 0.1121653 4.140474 -0.6993381 0.1121653 4.140474 -0.9419845 0.1121653 4.140474 -1.267794 0.1121653 4.140474 -1.705268 0.1121653 4.140474 -2.292679 0.1121653 4.140474 -3.081414 0.1121653 4.140474 -4.140474 0.1121653 4.140474 -5.562508 0.1121653 4.140474 -7.471917 0.1121653 4.140474 -10.03574 0.1121653 4.140474 -13.47828 0.1121653 4.140474 -18.10068 0.1121653 4.140474 -24.30731 0.1121653 4.140474 -32.64117 0.1121653 4.140474 -43.83129 0.1121653 4.140474 -58.85664 0.1121653 4.140474 --0.0175068 0.1535689 4.140474 --0.01161267 0.1535689 4.140474 --0.005718534 0.1535689 4.140474 -0.0001755984 0.1535689 4.140474 -0.006069731 0.1535689 4.140474 -0.01197402 0.1535689 4.140474 -0.01903886 0.1535689 4.140474 -0.02852504 0.1535689 4.140474 -0.04126244 0.1535689 4.140474 -0.05836535 0.1535689 4.140474 -0.08132997 0.1535689 4.140474 -0.1121653 0.1535689 4.140474 -0.1535689 0.1535689 4.140474 -0.2091628 0.1535689 4.140474 -0.2838106 0.1535689 4.140474 -0.3840425 0.1535689 4.140474 -0.518627 0.1535689 4.140474 -0.6993381 0.1535689 4.140474 -0.9419845 0.1535689 4.140474 -1.267794 0.1535689 4.140474 -1.705268 0.1535689 4.140474 -2.292679 0.1535689 4.140474 -3.081414 0.1535689 4.140474 -4.140474 0.1535689 4.140474 -5.562508 0.1535689 4.140474 -7.471917 0.1535689 4.140474 -10.03574 0.1535689 4.140474 -13.47828 0.1535689 4.140474 -18.10068 0.1535689 4.140474 -24.30731 0.1535689 4.140474 -32.64117 0.1535689 4.140474 -43.83129 0.1535689 4.140474 -58.85664 0.1535689 4.140474 --0.0175068 0.2091628 4.140474 --0.01161267 0.2091628 4.140474 --0.005718534 0.2091628 4.140474 -0.0001755984 0.2091628 4.140474 -0.006069731 0.2091628 4.140474 -0.01197402 0.2091628 4.140474 -0.01903886 0.2091628 4.140474 -0.02852504 0.2091628 4.140474 -0.04126244 0.2091628 4.140474 -0.05836535 0.2091628 4.140474 -0.08132997 0.2091628 4.140474 -0.1121653 0.2091628 4.140474 -0.1535689 0.2091628 4.140474 -0.2091628 0.2091628 4.140474 -0.2838106 0.2091628 4.140474 -0.3840425 0.2091628 4.140474 -0.518627 0.2091628 4.140474 -0.6993381 0.2091628 4.140474 -0.9419845 0.2091628 4.140474 -1.267794 0.2091628 4.140474 -1.705268 0.2091628 4.140474 -2.292679 0.2091628 4.140474 -3.081414 0.2091628 4.140474 -4.140474 0.2091628 4.140474 -5.562508 0.2091628 4.140474 -7.471917 0.2091628 4.140474 -10.03574 0.2091628 4.140474 -13.47828 0.2091628 4.140474 -18.10068 0.2091628 4.140474 -24.30731 0.2091628 4.140474 -32.64117 0.2091628 4.140474 -43.83129 0.2091628 4.140474 -58.85664 0.2091628 4.140474 --0.0175068 0.2838106 4.140474 --0.01161267 0.2838106 4.140474 --0.005718534 0.2838106 4.140474 -0.0001755984 0.2838106 4.140474 -0.006069731 0.2838106 4.140474 -0.01197402 0.2838106 4.140474 -0.01903886 0.2838106 4.140474 -0.02852504 0.2838106 4.140474 -0.04126244 0.2838106 4.140474 -0.05836535 0.2838106 4.140474 -0.08132997 0.2838106 4.140474 -0.1121653 0.2838106 4.140474 -0.1535689 0.2838106 4.140474 -0.2091628 0.2838106 4.140474 -0.2838106 0.2838106 4.140474 -0.3840425 0.2838106 4.140474 -0.518627 0.2838106 4.140474 -0.6993381 0.2838106 4.140474 -0.9419845 0.2838106 4.140474 -1.267794 0.2838106 4.140474 -1.705268 0.2838106 4.140474 -2.292679 0.2838106 4.140474 -3.081414 0.2838106 4.140474 -4.140474 0.2838106 4.140474 -5.562508 0.2838106 4.140474 -7.471917 0.2838106 4.140474 -10.03574 0.2838106 4.140474 -13.47828 0.2838106 4.140474 -18.10068 0.2838106 4.140474 -24.30731 0.2838106 4.140474 -32.64117 0.2838106 4.140474 -43.83129 0.2838106 4.140474 -58.85664 0.2838106 4.140474 --0.0175068 0.3840425 4.140474 --0.01161267 0.3840425 4.140474 --0.005718534 0.3840425 4.140474 -0.0001755984 0.3840425 4.140474 -0.006069731 0.3840425 4.140474 -0.01197402 0.3840425 4.140474 -0.01903886 0.3840425 4.140474 -0.02852504 0.3840425 4.140474 -0.04126244 0.3840425 4.140474 -0.05836535 0.3840425 4.140474 -0.08132997 0.3840425 4.140474 -0.1121653 0.3840425 4.140474 -0.1535689 0.3840425 4.140474 -0.2091628 0.3840425 4.140474 -0.2838106 0.3840425 4.140474 -0.3840425 0.3840425 4.140474 -0.518627 0.3840425 4.140474 -0.6993381 0.3840425 4.140474 -0.9419845 0.3840425 4.140474 -1.267794 0.3840425 4.140474 -1.705268 0.3840425 4.140474 -2.292679 0.3840425 4.140474 -3.081414 0.3840425 4.140474 -4.140474 0.3840425 4.140474 -5.562508 0.3840425 4.140474 -7.471917 0.3840425 4.140474 -10.03574 0.3840425 4.140474 -13.47828 0.3840425 4.140474 -18.10068 0.3840425 4.140474 -24.30731 0.3840425 4.140474 -32.64117 0.3840425 4.140474 -43.83129 0.3840425 4.140474 -58.85664 0.3840425 4.140474 --0.0175068 0.518627 4.140474 --0.01161267 0.518627 4.140474 --0.005718534 0.518627 4.140474 -0.0001755984 0.518627 4.140474 -0.006069731 0.518627 4.140474 -0.01197402 0.518627 4.140474 -0.01903886 0.518627 4.140474 -0.02852504 0.518627 4.140474 -0.04126244 0.518627 4.140474 -0.05836535 0.518627 4.140474 -0.08132997 0.518627 4.140474 -0.1121653 0.518627 4.140474 -0.1535689 0.518627 4.140474 -0.2091628 0.518627 4.140474 -0.2838106 0.518627 4.140474 -0.3840425 0.518627 4.140474 -0.518627 0.518627 4.140474 -0.6993381 0.518627 4.140474 -0.9419845 0.518627 4.140474 -1.267794 0.518627 4.140474 -1.705268 0.518627 4.140474 -2.292679 0.518627 4.140474 -3.081414 0.518627 4.140474 -4.140474 0.518627 4.140474 -5.562508 0.518627 4.140474 -7.471917 0.518627 4.140474 -10.03574 0.518627 4.140474 -13.47828 0.518627 4.140474 -18.10068 0.518627 4.140474 -24.30731 0.518627 4.140474 -32.64117 0.518627 4.140474 -43.83129 0.518627 4.140474 -58.85664 0.518627 4.140474 --0.0175068 0.6993381 4.140474 --0.01161267 0.6993381 4.140474 --0.005718534 0.6993381 4.140474 -0.0001755984 0.6993381 4.140474 -0.006069731 0.6993381 4.140474 -0.01197402 0.6993381 4.140474 -0.01903886 0.6993381 4.140474 -0.02852504 0.6993381 4.140474 -0.04126244 0.6993381 4.140474 -0.05836535 0.6993381 4.140474 -0.08132997 0.6993381 4.140474 -0.1121653 0.6993381 4.140474 -0.1535689 0.6993381 4.140474 -0.2091628 0.6993381 4.140474 -0.2838106 0.6993381 4.140474 -0.3840425 0.6993381 4.140474 -0.518627 0.6993381 4.140474 -0.6993381 0.6993381 4.140474 -0.9419845 0.6993381 4.140474 -1.267794 0.6993381 4.140474 -1.705268 0.6993381 4.140474 -2.292679 0.6993381 4.140474 -3.081414 0.6993381 4.140474 -4.140474 0.6993381 4.140474 -5.562508 0.6993381 4.140474 -7.471917 0.6993381 4.140474 -10.03574 0.6993381 4.140474 -13.47828 0.6993381 4.140474 -18.10068 0.6993381 4.140474 -24.30731 0.6993381 4.140474 -32.64117 0.6993381 4.140474 -43.83129 0.6993381 4.140474 -58.85664 0.6993381 4.140474 --0.0175068 0.9419845 4.140474 --0.01161267 0.9419845 4.140474 --0.005718534 0.9419845 4.140474 -0.0001755984 0.9419845 4.140474 -0.006069731 0.9419845 4.140474 -0.01197402 0.9419845 4.140474 -0.01903886 0.9419845 4.140474 -0.02852504 0.9419845 4.140474 -0.04126244 0.9419845 4.140474 -0.05836535 0.9419845 4.140474 -0.08132997 0.9419845 4.140474 -0.1121653 0.9419845 4.140474 -0.1535689 0.9419845 4.140474 -0.2091628 0.9419845 4.140474 -0.2838106 0.9419845 4.140474 -0.3840425 0.9419845 4.140474 -0.518627 0.9419845 4.140474 -0.6993381 0.9419845 4.140474 -0.9419845 0.9419845 4.140474 -1.267794 0.9419845 4.140474 -1.705268 0.9419845 4.140474 -2.292679 0.9419845 4.140474 -3.081414 0.9419845 4.140474 -4.140474 0.9419845 4.140474 -5.562508 0.9419845 4.140474 -7.471917 0.9419845 4.140474 -10.03574 0.9419845 4.140474 -13.47828 0.9419845 4.140474 -18.10068 0.9419845 4.140474 -24.30731 0.9419845 4.140474 -32.64117 0.9419845 4.140474 -43.83129 0.9419845 4.140474 -58.85664 0.9419845 4.140474 --0.0175068 1.267794 4.140474 --0.01161267 1.267794 4.140474 --0.005718534 1.267794 4.140474 -0.0001755984 1.267794 4.140474 -0.006069731 1.267794 4.140474 -0.01197402 1.267794 4.140474 -0.01903886 1.267794 4.140474 -0.02852504 1.267794 4.140474 -0.04126244 1.267794 4.140474 -0.05836535 1.267794 4.140474 -0.08132997 1.267794 4.140474 -0.1121653 1.267794 4.140474 -0.1535689 1.267794 4.140474 -0.2091628 1.267794 4.140474 -0.2838106 1.267794 4.140474 -0.3840425 1.267794 4.140474 -0.518627 1.267794 4.140474 -0.6993381 1.267794 4.140474 -0.9419845 1.267794 4.140474 -1.267794 1.267794 4.140474 -1.705268 1.267794 4.140474 -2.292679 1.267794 4.140474 -3.081414 1.267794 4.140474 -4.140474 1.267794 4.140474 -5.562508 1.267794 4.140474 -7.471917 1.267794 4.140474 -10.03574 1.267794 4.140474 -13.47828 1.267794 4.140474 -18.10068 1.267794 4.140474 -24.30731 1.267794 4.140474 -32.64117 1.267794 4.140474 -43.83129 1.267794 4.140474 -58.85664 1.267794 4.140474 --0.0175068 1.705268 4.140474 --0.01161267 1.705268 4.140474 --0.005718534 1.705268 4.140474 -0.0001755984 1.705268 4.140474 -0.006069731 1.705268 4.140474 -0.01197402 1.705268 4.140474 -0.01903886 1.705268 4.140474 -0.02852504 1.705268 4.140474 -0.04126244 1.705268 4.140474 -0.05836535 1.705268 4.140474 -0.08132997 1.705268 4.140474 -0.1121653 1.705268 4.140474 -0.1535689 1.705268 4.140474 -0.2091628 1.705268 4.140474 -0.2838106 1.705268 4.140474 -0.3840425 1.705268 4.140474 -0.518627 1.705268 4.140474 -0.6993381 1.705268 4.140474 -0.9419845 1.705268 4.140474 -1.267794 1.705268 4.140474 -1.705268 1.705268 4.140474 -2.292679 1.705268 4.140474 -3.081414 1.705268 4.140474 -4.140474 1.705268 4.140474 -5.562508 1.705268 4.140474 -7.471917 1.705268 4.140474 -10.03574 1.705268 4.140474 -13.47828 1.705268 4.140474 -18.10068 1.705268 4.140474 -24.30731 1.705268 4.140474 -32.64117 1.705268 4.140474 -43.83129 1.705268 4.140474 -58.85664 1.705268 4.140474 --0.0175068 2.292679 4.140474 --0.01161267 2.292679 4.140474 --0.005718534 2.292679 4.140474 -0.0001755984 2.292679 4.140474 -0.006069731 2.292679 4.140474 -0.01197402 2.292679 4.140474 -0.01903886 2.292679 4.140474 -0.02852504 2.292679 4.140474 -0.04126244 2.292679 4.140474 -0.05836535 2.292679 4.140474 -0.08132997 2.292679 4.140474 -0.1121653 2.292679 4.140474 -0.1535689 2.292679 4.140474 -0.2091628 2.292679 4.140474 -0.2838106 2.292679 4.140474 -0.3840425 2.292679 4.140474 -0.518627 2.292679 4.140474 -0.6993381 2.292679 4.140474 -0.9419845 2.292679 4.140474 -1.267794 2.292679 4.140474 -1.705268 2.292679 4.140474 -2.292679 2.292679 4.140474 -3.081414 2.292679 4.140474 -4.140474 2.292679 4.140474 -5.562508 2.292679 4.140474 -7.471917 2.292679 4.140474 -10.03574 2.292679 4.140474 -13.47828 2.292679 4.140474 -18.10068 2.292679 4.140474 -24.30731 2.292679 4.140474 -32.64117 2.292679 4.140474 -43.83129 2.292679 4.140474 -58.85664 2.292679 4.140474 --0.0175068 3.081414 4.140474 --0.01161267 3.081414 4.140474 --0.005718534 3.081414 4.140474 -0.0001755984 3.081414 4.140474 -0.006069731 3.081414 4.140474 -0.01197402 3.081414 4.140474 -0.01903886 3.081414 4.140474 -0.02852504 3.081414 4.140474 -0.04126244 3.081414 4.140474 -0.05836535 3.081414 4.140474 -0.08132997 3.081414 4.140474 -0.1121653 3.081414 4.140474 -0.1535689 3.081414 4.140474 -0.2091628 3.081414 4.140474 -0.2838106 3.081414 4.140474 -0.3840425 3.081414 4.140474 -0.518627 3.081414 4.140474 -0.6993381 3.081414 4.140474 -0.9419845 3.081414 4.140474 -1.267794 3.081414 4.140474 -1.705268 3.081414 4.140474 -2.292679 3.081414 4.140474 -3.081414 3.081414 4.140474 -4.140474 3.081414 4.140474 -5.562508 3.081414 4.140474 -7.471917 3.081414 4.140474 -10.03574 3.081414 4.140474 -13.47828 3.081414 4.140474 -18.10068 3.081414 4.140474 -24.30731 3.081414 4.140474 -32.64117 3.081414 4.140474 -43.83129 3.081414 4.140474 -58.85664 3.081414 4.140474 --0.0175068 4.140474 4.140474 --0.01161267 4.140474 4.140474 --0.005718534 4.140474 4.140474 -0.0001755984 4.140474 4.140474 -0.006069731 4.140474 4.140474 -0.01197402 4.140474 4.140474 -0.01903886 4.140474 4.140474 -0.02852504 4.140474 4.140474 -0.04126244 4.140474 4.140474 -0.05836535 4.140474 4.140474 -0.08132997 4.140474 4.140474 -0.1121653 4.140474 4.140474 -0.1535689 4.140474 4.140474 -0.2091628 4.140474 4.140474 -0.2838106 4.140474 4.140474 -0.3840425 4.140474 4.140474 -0.518627 4.140474 4.140474 -0.6993381 4.140474 4.140474 -0.9419845 4.140474 4.140474 -1.267794 4.140474 4.140474 -1.705268 4.140474 4.140474 -2.292679 4.140474 4.140474 -3.081414 4.140474 4.140474 -4.140474 4.140474 4.140474 -5.562508 4.140474 4.140474 -7.471917 4.140474 4.140474 -10.03574 4.140474 4.140474 -13.47828 4.140474 4.140474 -18.10068 4.140474 4.140474 -24.30731 4.140474 4.140474 -32.64117 4.140474 4.140474 -43.83129 4.140474 4.140474 -58.85664 4.140474 4.140474 --0.0175068 5.562508 4.140474 --0.01161267 5.562508 4.140474 --0.005718534 5.562508 4.140474 -0.0001755984 5.562508 4.140474 -0.006069731 5.562508 4.140474 -0.01197402 5.562508 4.140474 -0.01903886 5.562508 4.140474 -0.02852504 5.562508 4.140474 -0.04126244 5.562508 4.140474 -0.05836535 5.562508 4.140474 -0.08132997 5.562508 4.140474 -0.1121653 5.562508 4.140474 -0.1535689 5.562508 4.140474 -0.2091628 5.562508 4.140474 -0.2838106 5.562508 4.140474 -0.3840425 5.562508 4.140474 -0.518627 5.562508 4.140474 -0.6993381 5.562508 4.140474 -0.9419845 5.562508 4.140474 -1.267794 5.562508 4.140474 -1.705268 5.562508 4.140474 -2.292679 5.562508 4.140474 -3.081414 5.562508 4.140474 -4.140474 5.562508 4.140474 -5.562508 5.562508 4.140474 -7.471917 5.562508 4.140474 -10.03574 5.562508 4.140474 -13.47828 5.562508 4.140474 -18.10068 5.562508 4.140474 -24.30731 5.562508 4.140474 -32.64117 5.562508 4.140474 -43.83129 5.562508 4.140474 -58.85664 5.562508 4.140474 --0.0175068 7.471917 4.140474 --0.01161267 7.471917 4.140474 --0.005718534 7.471917 4.140474 -0.0001755984 7.471917 4.140474 -0.006069731 7.471917 4.140474 -0.01197402 7.471917 4.140474 -0.01903886 7.471917 4.140474 -0.02852504 7.471917 4.140474 -0.04126244 7.471917 4.140474 -0.05836535 7.471917 4.140474 -0.08132997 7.471917 4.140474 -0.1121653 7.471917 4.140474 -0.1535689 7.471917 4.140474 -0.2091628 7.471917 4.140474 -0.2838106 7.471917 4.140474 -0.3840425 7.471917 4.140474 -0.518627 7.471917 4.140474 -0.6993381 7.471917 4.140474 -0.9419845 7.471917 4.140474 -1.267794 7.471917 4.140474 -1.705268 7.471917 4.140474 -2.292679 7.471917 4.140474 -3.081414 7.471917 4.140474 -4.140474 7.471917 4.140474 -5.562508 7.471917 4.140474 -7.471917 7.471917 4.140474 -10.03574 7.471917 4.140474 -13.47828 7.471917 4.140474 -18.10068 7.471917 4.140474 -24.30731 7.471917 4.140474 -32.64117 7.471917 4.140474 -43.83129 7.471917 4.140474 -58.85664 7.471917 4.140474 --0.0175068 10.03574 4.140474 --0.01161267 10.03574 4.140474 --0.005718534 10.03574 4.140474 -0.0001755984 10.03574 4.140474 -0.006069731 10.03574 4.140474 -0.01197402 10.03574 4.140474 -0.01903886 10.03574 4.140474 -0.02852504 10.03574 4.140474 -0.04126244 10.03574 4.140474 -0.05836535 10.03574 4.140474 -0.08132997 10.03574 4.140474 -0.1121653 10.03574 4.140474 -0.1535689 10.03574 4.140474 -0.2091628 10.03574 4.140474 -0.2838106 10.03574 4.140474 -0.3840425 10.03574 4.140474 -0.518627 10.03574 4.140474 -0.6993381 10.03574 4.140474 -0.9419845 10.03574 4.140474 -1.267794 10.03574 4.140474 -1.705268 10.03574 4.140474 -2.292679 10.03574 4.140474 -3.081414 10.03574 4.140474 -4.140474 10.03574 4.140474 -5.562508 10.03574 4.140474 -7.471917 10.03574 4.140474 -10.03574 10.03574 4.140474 -13.47828 10.03574 4.140474 -18.10068 10.03574 4.140474 -24.30731 10.03574 4.140474 -32.64117 10.03574 4.140474 -43.83129 10.03574 4.140474 -58.85664 10.03574 4.140474 --0.0175068 13.47828 4.140474 --0.01161267 13.47828 4.140474 --0.005718534 13.47828 4.140474 -0.0001755984 13.47828 4.140474 -0.006069731 13.47828 4.140474 -0.01197402 13.47828 4.140474 -0.01903886 13.47828 4.140474 -0.02852504 13.47828 4.140474 -0.04126244 13.47828 4.140474 -0.05836535 13.47828 4.140474 -0.08132997 13.47828 4.140474 -0.1121653 13.47828 4.140474 -0.1535689 13.47828 4.140474 -0.2091628 13.47828 4.140474 -0.2838106 13.47828 4.140474 -0.3840425 13.47828 4.140474 -0.518627 13.47828 4.140474 -0.6993381 13.47828 4.140474 -0.9419845 13.47828 4.140474 -1.267794 13.47828 4.140474 -1.705268 13.47828 4.140474 -2.292679 13.47828 4.140474 -3.081414 13.47828 4.140474 -4.140474 13.47828 4.140474 -5.562508 13.47828 4.140474 -7.471917 13.47828 4.140474 -10.03574 13.47828 4.140474 -13.47828 13.47828 4.140474 -18.10068 13.47828 4.140474 -24.30731 13.47828 4.140474 -32.64117 13.47828 4.140474 -43.83129 13.47828 4.140474 -58.85664 13.47828 4.140474 --0.0175068 18.10068 4.140474 --0.01161267 18.10068 4.140474 --0.005718534 18.10068 4.140474 -0.0001755984 18.10068 4.140474 -0.006069731 18.10068 4.140474 -0.01197402 18.10068 4.140474 -0.01903886 18.10068 4.140474 -0.02852504 18.10068 4.140474 -0.04126244 18.10068 4.140474 -0.05836535 18.10068 4.140474 -0.08132997 18.10068 4.140474 -0.1121653 18.10068 4.140474 -0.1535689 18.10068 4.140474 -0.2091628 18.10068 4.140474 -0.2838106 18.10068 4.140474 -0.3840425 18.10068 4.140474 -0.518627 18.10068 4.140474 -0.6993381 18.10068 4.140474 -0.9419845 18.10068 4.140474 -1.267794 18.10068 4.140474 -1.705268 18.10068 4.140474 -2.292679 18.10068 4.140474 -3.081414 18.10068 4.140474 -4.140474 18.10068 4.140474 -5.562508 18.10068 4.140474 -7.471917 18.10068 4.140474 -10.03574 18.10068 4.140474 -13.47828 18.10068 4.140474 -18.10068 18.10068 4.140474 -24.30731 18.10068 4.140474 -32.64117 18.10068 4.140474 -43.83129 18.10068 4.140474 -58.85664 18.10068 4.140474 --0.0175068 24.30731 4.140474 --0.01161267 24.30731 4.140474 --0.005718534 24.30731 4.140474 -0.0001755984 24.30731 4.140474 -0.006069731 24.30731 4.140474 -0.01197402 24.30731 4.140474 -0.01903886 24.30731 4.140474 -0.02852504 24.30731 4.140474 -0.04126244 24.30731 4.140474 -0.05836535 24.30731 4.140474 -0.08132997 24.30731 4.140474 -0.1121653 24.30731 4.140474 -0.1535689 24.30731 4.140474 -0.2091628 24.30731 4.140474 -0.2838106 24.30731 4.140474 -0.3840425 24.30731 4.140474 -0.518627 24.30731 4.140474 -0.6993381 24.30731 4.140474 -0.9419845 24.30731 4.140474 -1.267794 24.30731 4.140474 -1.705268 24.30731 4.140474 -2.292679 24.30731 4.140474 -3.081414 24.30731 4.140474 -4.140474 24.30731 4.140474 -5.562508 24.30731 4.140474 -7.471917 24.30731 4.140474 -10.03574 24.30731 4.140474 -13.47828 24.30731 4.140474 -18.10068 24.30731 4.140474 -24.30731 24.30731 4.140474 -32.64117 24.30731 4.140474 -43.83129 24.30731 4.140474 -58.85664 24.30731 4.140474 --0.0175068 32.64117 4.140474 --0.01161267 32.64117 4.140474 --0.005718534 32.64117 4.140474 -0.0001755984 32.64117 4.140474 -0.006069731 32.64117 4.140474 -0.01197402 32.64117 4.140474 -0.01903886 32.64117 4.140474 -0.02852504 32.64117 4.140474 -0.04126244 32.64117 4.140474 -0.05836535 32.64117 4.140474 -0.08132997 32.64117 4.140474 -0.1121653 32.64117 4.140474 -0.1535689 32.64117 4.140474 -0.2091628 32.64117 4.140474 -0.2838106 32.64117 4.140474 -0.3840425 32.64117 4.140474 -0.518627 32.64117 4.140474 -0.6993381 32.64117 4.140474 -0.9419845 32.64117 4.140474 -1.267794 32.64117 4.140474 -1.705268 32.64117 4.140474 -2.292679 32.64117 4.140474 -3.081414 32.64117 4.140474 -4.140474 32.64117 4.140474 -5.562508 32.64117 4.140474 -7.471917 32.64117 4.140474 -10.03574 32.64117 4.140474 -13.47828 32.64117 4.140474 -18.10068 32.64117 4.140474 -24.30731 32.64117 4.140474 -32.64117 32.64117 4.140474 -43.83129 32.64117 4.140474 -58.85664 32.64117 4.140474 --0.0175068 43.83129 4.140474 --0.01161267 43.83129 4.140474 --0.005718534 43.83129 4.140474 -0.0001755984 43.83129 4.140474 -0.006069731 43.83129 4.140474 -0.01197402 43.83129 4.140474 -0.01903886 43.83129 4.140474 -0.02852504 43.83129 4.140474 -0.04126244 43.83129 4.140474 -0.05836535 43.83129 4.140474 -0.08132997 43.83129 4.140474 -0.1121653 43.83129 4.140474 -0.1535689 43.83129 4.140474 -0.2091628 43.83129 4.140474 -0.2838106 43.83129 4.140474 -0.3840425 43.83129 4.140474 -0.518627 43.83129 4.140474 -0.6993381 43.83129 4.140474 -0.9419845 43.83129 4.140474 -1.267794 43.83129 4.140474 -1.705268 43.83129 4.140474 -2.292679 43.83129 4.140474 -3.081414 43.83129 4.140474 -4.140474 43.83129 4.140474 -5.562508 43.83129 4.140474 -7.471917 43.83129 4.140474 -10.03574 43.83129 4.140474 -13.47828 43.83129 4.140474 -18.10068 43.83129 4.140474 -24.30731 43.83129 4.140474 -32.64117 43.83129 4.140474 -43.83129 43.83129 4.140474 -58.85664 43.83129 4.140474 --0.0175068 58.85664 4.140474 --0.01161267 58.85664 4.140474 --0.005718534 58.85664 4.140474 -0.0001755984 58.85664 4.140474 -0.006069731 58.85664 4.140474 -0.01197402 58.85664 4.140474 -0.01903886 58.85664 4.140474 -0.02852504 58.85664 4.140474 -0.04126244 58.85664 4.140474 -0.05836535 58.85664 4.140474 -0.08132997 58.85664 4.140474 -0.1121653 58.85664 4.140474 -0.1535689 58.85664 4.140474 -0.2091628 58.85664 4.140474 -0.2838106 58.85664 4.140474 -0.3840425 58.85664 4.140474 -0.518627 58.85664 4.140474 -0.6993381 58.85664 4.140474 -0.9419845 58.85664 4.140474 -1.267794 58.85664 4.140474 -1.705268 58.85664 4.140474 -2.292679 58.85664 4.140474 -3.081414 58.85664 4.140474 -4.140474 58.85664 4.140474 -5.562508 58.85664 4.140474 -7.471917 58.85664 4.140474 -10.03574 58.85664 4.140474 -13.47828 58.85664 4.140474 -18.10068 58.85664 4.140474 -24.30731 58.85664 4.140474 -32.64117 58.85664 4.140474 -43.83129 58.85664 4.140474 -58.85664 58.85664 4.140474 --0.0175068 -0.0175068 5.562508 --0.01161267 -0.0175068 5.562508 --0.005718534 -0.0175068 5.562508 -0.0001755984 -0.0175068 5.562508 -0.006069731 -0.0175068 5.562508 -0.01197402 -0.0175068 5.562508 -0.01903886 -0.0175068 5.562508 -0.02852504 -0.0175068 5.562508 -0.04126244 -0.0175068 5.562508 -0.05836535 -0.0175068 5.562508 -0.08132997 -0.0175068 5.562508 -0.1121653 -0.0175068 5.562508 -0.1535689 -0.0175068 5.562508 -0.2091628 -0.0175068 5.562508 -0.2838106 -0.0175068 5.562508 -0.3840425 -0.0175068 5.562508 -0.518627 -0.0175068 5.562508 -0.6993381 -0.0175068 5.562508 -0.9419845 -0.0175068 5.562508 -1.267794 -0.0175068 5.562508 -1.705268 -0.0175068 5.562508 -2.292679 -0.0175068 5.562508 -3.081414 -0.0175068 5.562508 -4.140474 -0.0175068 5.562508 -5.562508 -0.0175068 5.562508 -7.471917 -0.0175068 5.562508 -10.03574 -0.0175068 5.562508 -13.47828 -0.0175068 5.562508 -18.10068 -0.0175068 5.562508 -24.30731 -0.0175068 5.562508 -32.64117 -0.0175068 5.562508 -43.83129 -0.0175068 5.562508 -58.85664 -0.0175068 5.562508 --0.0175068 -0.01161267 5.562508 --0.01161267 -0.01161267 5.562508 --0.005718534 -0.01161267 5.562508 -0.0001755984 -0.01161267 5.562508 -0.006069731 -0.01161267 5.562508 -0.01197402 -0.01161267 5.562508 -0.01903886 -0.01161267 5.562508 -0.02852504 -0.01161267 5.562508 -0.04126244 -0.01161267 5.562508 -0.05836535 -0.01161267 5.562508 -0.08132997 -0.01161267 5.562508 -0.1121653 -0.01161267 5.562508 -0.1535689 -0.01161267 5.562508 -0.2091628 -0.01161267 5.562508 -0.2838106 -0.01161267 5.562508 -0.3840425 -0.01161267 5.562508 -0.518627 -0.01161267 5.562508 -0.6993381 -0.01161267 5.562508 -0.9419845 -0.01161267 5.562508 -1.267794 -0.01161267 5.562508 -1.705268 -0.01161267 5.562508 -2.292679 -0.01161267 5.562508 -3.081414 -0.01161267 5.562508 -4.140474 -0.01161267 5.562508 -5.562508 -0.01161267 5.562508 -7.471917 -0.01161267 5.562508 -10.03574 -0.01161267 5.562508 -13.47828 -0.01161267 5.562508 -18.10068 -0.01161267 5.562508 -24.30731 -0.01161267 5.562508 -32.64117 -0.01161267 5.562508 -43.83129 -0.01161267 5.562508 -58.85664 -0.01161267 5.562508 --0.0175068 -0.005718534 5.562508 --0.01161267 -0.005718534 5.562508 --0.005718534 -0.005718534 5.562508 -0.0001755984 -0.005718534 5.562508 -0.006069731 -0.005718534 5.562508 -0.01197402 -0.005718534 5.562508 -0.01903886 -0.005718534 5.562508 -0.02852504 -0.005718534 5.562508 -0.04126244 -0.005718534 5.562508 -0.05836535 -0.005718534 5.562508 -0.08132997 -0.005718534 5.562508 -0.1121653 -0.005718534 5.562508 -0.1535689 -0.005718534 5.562508 -0.2091628 -0.005718534 5.562508 -0.2838106 -0.005718534 5.562508 -0.3840425 -0.005718534 5.562508 -0.518627 -0.005718534 5.562508 -0.6993381 -0.005718534 5.562508 -0.9419845 -0.005718534 5.562508 -1.267794 -0.005718534 5.562508 -1.705268 -0.005718534 5.562508 -2.292679 -0.005718534 5.562508 -3.081414 -0.005718534 5.562508 -4.140474 -0.005718534 5.562508 -5.562508 -0.005718534 5.562508 -7.471917 -0.005718534 5.562508 -10.03574 -0.005718534 5.562508 -13.47828 -0.005718534 5.562508 -18.10068 -0.005718534 5.562508 -24.30731 -0.005718534 5.562508 -32.64117 -0.005718534 5.562508 -43.83129 -0.005718534 5.562508 -58.85664 -0.005718534 5.562508 --0.0175068 0.0001755984 5.562508 --0.01161267 0.0001755984 5.562508 --0.005718534 0.0001755984 5.562508 -0.0001755984 0.0001755984 5.562508 -0.006069731 0.0001755984 5.562508 -0.01197402 0.0001755984 5.562508 -0.01903886 0.0001755984 5.562508 -0.02852504 0.0001755984 5.562508 -0.04126244 0.0001755984 5.562508 -0.05836535 0.0001755984 5.562508 -0.08132997 0.0001755984 5.562508 -0.1121653 0.0001755984 5.562508 -0.1535689 0.0001755984 5.562508 -0.2091628 0.0001755984 5.562508 -0.2838106 0.0001755984 5.562508 -0.3840425 0.0001755984 5.562508 -0.518627 0.0001755984 5.562508 -0.6993381 0.0001755984 5.562508 -0.9419845 0.0001755984 5.562508 -1.267794 0.0001755984 5.562508 -1.705268 0.0001755984 5.562508 -2.292679 0.0001755984 5.562508 -3.081414 0.0001755984 5.562508 -4.140474 0.0001755984 5.562508 -5.562508 0.0001755984 5.562508 -7.471917 0.0001755984 5.562508 -10.03574 0.0001755984 5.562508 -13.47828 0.0001755984 5.562508 -18.10068 0.0001755984 5.562508 -24.30731 0.0001755984 5.562508 -32.64117 0.0001755984 5.562508 -43.83129 0.0001755984 5.562508 -58.85664 0.0001755984 5.562508 --0.0175068 0.006069731 5.562508 --0.01161267 0.006069731 5.562508 --0.005718534 0.006069731 5.562508 -0.0001755984 0.006069731 5.562508 -0.006069731 0.006069731 5.562508 -0.01197402 0.006069731 5.562508 -0.01903886 0.006069731 5.562508 -0.02852504 0.006069731 5.562508 -0.04126244 0.006069731 5.562508 -0.05836535 0.006069731 5.562508 -0.08132997 0.006069731 5.562508 -0.1121653 0.006069731 5.562508 -0.1535689 0.006069731 5.562508 -0.2091628 0.006069731 5.562508 -0.2838106 0.006069731 5.562508 -0.3840425 0.006069731 5.562508 -0.518627 0.006069731 5.562508 -0.6993381 0.006069731 5.562508 -0.9419845 0.006069731 5.562508 -1.267794 0.006069731 5.562508 -1.705268 0.006069731 5.562508 -2.292679 0.006069731 5.562508 -3.081414 0.006069731 5.562508 -4.140474 0.006069731 5.562508 -5.562508 0.006069731 5.562508 -7.471917 0.006069731 5.562508 -10.03574 0.006069731 5.562508 -13.47828 0.006069731 5.562508 -18.10068 0.006069731 5.562508 -24.30731 0.006069731 5.562508 -32.64117 0.006069731 5.562508 -43.83129 0.006069731 5.562508 -58.85664 0.006069731 5.562508 --0.0175068 0.01197402 5.562508 --0.01161267 0.01197402 5.562508 --0.005718534 0.01197402 5.562508 -0.0001755984 0.01197402 5.562508 -0.006069731 0.01197402 5.562508 -0.01197402 0.01197402 5.562508 -0.01903886 0.01197402 5.562508 -0.02852504 0.01197402 5.562508 -0.04126244 0.01197402 5.562508 -0.05836535 0.01197402 5.562508 -0.08132997 0.01197402 5.562508 -0.1121653 0.01197402 5.562508 -0.1535689 0.01197402 5.562508 -0.2091628 0.01197402 5.562508 -0.2838106 0.01197402 5.562508 -0.3840425 0.01197402 5.562508 -0.518627 0.01197402 5.562508 -0.6993381 0.01197402 5.562508 -0.9419845 0.01197402 5.562508 -1.267794 0.01197402 5.562508 -1.705268 0.01197402 5.562508 -2.292679 0.01197402 5.562508 -3.081414 0.01197402 5.562508 -4.140474 0.01197402 5.562508 -5.562508 0.01197402 5.562508 -7.471917 0.01197402 5.562508 -10.03574 0.01197402 5.562508 -13.47828 0.01197402 5.562508 -18.10068 0.01197402 5.562508 -24.30731 0.01197402 5.562508 -32.64117 0.01197402 5.562508 -43.83129 0.01197402 5.562508 -58.85664 0.01197402 5.562508 --0.0175068 0.01903886 5.562508 --0.01161267 0.01903886 5.562508 --0.005718534 0.01903886 5.562508 -0.0001755984 0.01903886 5.562508 -0.006069731 0.01903886 5.562508 -0.01197402 0.01903886 5.562508 -0.01903886 0.01903886 5.562508 -0.02852504 0.01903886 5.562508 -0.04126244 0.01903886 5.562508 -0.05836535 0.01903886 5.562508 -0.08132997 0.01903886 5.562508 -0.1121653 0.01903886 5.562508 -0.1535689 0.01903886 5.562508 -0.2091628 0.01903886 5.562508 -0.2838106 0.01903886 5.562508 -0.3840425 0.01903886 5.562508 -0.518627 0.01903886 5.562508 -0.6993381 0.01903886 5.562508 -0.9419845 0.01903886 5.562508 -1.267794 0.01903886 5.562508 -1.705268 0.01903886 5.562508 -2.292679 0.01903886 5.562508 -3.081414 0.01903886 5.562508 -4.140474 0.01903886 5.562508 -5.562508 0.01903886 5.562508 -7.471917 0.01903886 5.562508 -10.03574 0.01903886 5.562508 -13.47828 0.01903886 5.562508 -18.10068 0.01903886 5.562508 -24.30731 0.01903886 5.562508 -32.64117 0.01903886 5.562508 -43.83129 0.01903886 5.562508 -58.85664 0.01903886 5.562508 --0.0175068 0.02852504 5.562508 --0.01161267 0.02852504 5.562508 --0.005718534 0.02852504 5.562508 -0.0001755984 0.02852504 5.562508 -0.006069731 0.02852504 5.562508 -0.01197402 0.02852504 5.562508 -0.01903886 0.02852504 5.562508 -0.02852504 0.02852504 5.562508 -0.04126244 0.02852504 5.562508 -0.05836535 0.02852504 5.562508 -0.08132997 0.02852504 5.562508 -0.1121653 0.02852504 5.562508 -0.1535689 0.02852504 5.562508 -0.2091628 0.02852504 5.562508 -0.2838106 0.02852504 5.562508 -0.3840425 0.02852504 5.562508 -0.518627 0.02852504 5.562508 -0.6993381 0.02852504 5.562508 -0.9419845 0.02852504 5.562508 -1.267794 0.02852504 5.562508 -1.705268 0.02852504 5.562508 -2.292679 0.02852504 5.562508 -3.081414 0.02852504 5.562508 -4.140474 0.02852504 5.562508 -5.562508 0.02852504 5.562508 -7.471917 0.02852504 5.562508 -10.03574 0.02852504 5.562508 -13.47828 0.02852504 5.562508 -18.10068 0.02852504 5.562508 -24.30731 0.02852504 5.562508 -32.64117 0.02852504 5.562508 -43.83129 0.02852504 5.562508 -58.85664 0.02852504 5.562508 --0.0175068 0.04126244 5.562508 --0.01161267 0.04126244 5.562508 --0.005718534 0.04126244 5.562508 -0.0001755984 0.04126244 5.562508 -0.006069731 0.04126244 5.562508 -0.01197402 0.04126244 5.562508 -0.01903886 0.04126244 5.562508 -0.02852504 0.04126244 5.562508 -0.04126244 0.04126244 5.562508 -0.05836535 0.04126244 5.562508 -0.08132997 0.04126244 5.562508 -0.1121653 0.04126244 5.562508 -0.1535689 0.04126244 5.562508 -0.2091628 0.04126244 5.562508 -0.2838106 0.04126244 5.562508 -0.3840425 0.04126244 5.562508 -0.518627 0.04126244 5.562508 -0.6993381 0.04126244 5.562508 -0.9419845 0.04126244 5.562508 -1.267794 0.04126244 5.562508 -1.705268 0.04126244 5.562508 -2.292679 0.04126244 5.562508 -3.081414 0.04126244 5.562508 -4.140474 0.04126244 5.562508 -5.562508 0.04126244 5.562508 -7.471917 0.04126244 5.562508 -10.03574 0.04126244 5.562508 -13.47828 0.04126244 5.562508 -18.10068 0.04126244 5.562508 -24.30731 0.04126244 5.562508 -32.64117 0.04126244 5.562508 -43.83129 0.04126244 5.562508 -58.85664 0.04126244 5.562508 --0.0175068 0.05836535 5.562508 --0.01161267 0.05836535 5.562508 --0.005718534 0.05836535 5.562508 -0.0001755984 0.05836535 5.562508 -0.006069731 0.05836535 5.562508 -0.01197402 0.05836535 5.562508 -0.01903886 0.05836535 5.562508 -0.02852504 0.05836535 5.562508 -0.04126244 0.05836535 5.562508 -0.05836535 0.05836535 5.562508 -0.08132997 0.05836535 5.562508 -0.1121653 0.05836535 5.562508 -0.1535689 0.05836535 5.562508 -0.2091628 0.05836535 5.562508 -0.2838106 0.05836535 5.562508 -0.3840425 0.05836535 5.562508 -0.518627 0.05836535 5.562508 -0.6993381 0.05836535 5.562508 -0.9419845 0.05836535 5.562508 -1.267794 0.05836535 5.562508 -1.705268 0.05836535 5.562508 -2.292679 0.05836535 5.562508 -3.081414 0.05836535 5.562508 -4.140474 0.05836535 5.562508 -5.562508 0.05836535 5.562508 -7.471917 0.05836535 5.562508 -10.03574 0.05836535 5.562508 -13.47828 0.05836535 5.562508 -18.10068 0.05836535 5.562508 -24.30731 0.05836535 5.562508 -32.64117 0.05836535 5.562508 -43.83129 0.05836535 5.562508 -58.85664 0.05836535 5.562508 --0.0175068 0.08132997 5.562508 --0.01161267 0.08132997 5.562508 --0.005718534 0.08132997 5.562508 -0.0001755984 0.08132997 5.562508 -0.006069731 0.08132997 5.562508 -0.01197402 0.08132997 5.562508 -0.01903886 0.08132997 5.562508 -0.02852504 0.08132997 5.562508 -0.04126244 0.08132997 5.562508 -0.05836535 0.08132997 5.562508 -0.08132997 0.08132997 5.562508 -0.1121653 0.08132997 5.562508 -0.1535689 0.08132997 5.562508 -0.2091628 0.08132997 5.562508 -0.2838106 0.08132997 5.562508 -0.3840425 0.08132997 5.562508 -0.518627 0.08132997 5.562508 -0.6993381 0.08132997 5.562508 -0.9419845 0.08132997 5.562508 -1.267794 0.08132997 5.562508 -1.705268 0.08132997 5.562508 -2.292679 0.08132997 5.562508 -3.081414 0.08132997 5.562508 -4.140474 0.08132997 5.562508 -5.562508 0.08132997 5.562508 -7.471917 0.08132997 5.562508 -10.03574 0.08132997 5.562508 -13.47828 0.08132997 5.562508 -18.10068 0.08132997 5.562508 -24.30731 0.08132997 5.562508 -32.64117 0.08132997 5.562508 -43.83129 0.08132997 5.562508 -58.85664 0.08132997 5.562508 --0.0175068 0.1121653 5.562508 --0.01161267 0.1121653 5.562508 --0.005718534 0.1121653 5.562508 -0.0001755984 0.1121653 5.562508 -0.006069731 0.1121653 5.562508 -0.01197402 0.1121653 5.562508 -0.01903886 0.1121653 5.562508 -0.02852504 0.1121653 5.562508 -0.04126244 0.1121653 5.562508 -0.05836535 0.1121653 5.562508 -0.08132997 0.1121653 5.562508 -0.1121653 0.1121653 5.562508 -0.1535689 0.1121653 5.562508 -0.2091628 0.1121653 5.562508 -0.2838106 0.1121653 5.562508 -0.3840425 0.1121653 5.562508 -0.518627 0.1121653 5.562508 -0.6993381 0.1121653 5.562508 -0.9419845 0.1121653 5.562508 -1.267794 0.1121653 5.562508 -1.705268 0.1121653 5.562508 -2.292679 0.1121653 5.562508 -3.081414 0.1121653 5.562508 -4.140474 0.1121653 5.562508 -5.562508 0.1121653 5.562508 -7.471917 0.1121653 5.562508 -10.03574 0.1121653 5.562508 -13.47828 0.1121653 5.562508 -18.10068 0.1121653 5.562508 -24.30731 0.1121653 5.562508 -32.64117 0.1121653 5.562508 -43.83129 0.1121653 5.562508 -58.85664 0.1121653 5.562508 --0.0175068 0.1535689 5.562508 --0.01161267 0.1535689 5.562508 --0.005718534 0.1535689 5.562508 -0.0001755984 0.1535689 5.562508 -0.006069731 0.1535689 5.562508 -0.01197402 0.1535689 5.562508 -0.01903886 0.1535689 5.562508 -0.02852504 0.1535689 5.562508 -0.04126244 0.1535689 5.562508 -0.05836535 0.1535689 5.562508 -0.08132997 0.1535689 5.562508 -0.1121653 0.1535689 5.562508 -0.1535689 0.1535689 5.562508 -0.2091628 0.1535689 5.562508 -0.2838106 0.1535689 5.562508 -0.3840425 0.1535689 5.562508 -0.518627 0.1535689 5.562508 -0.6993381 0.1535689 5.562508 -0.9419845 0.1535689 5.562508 -1.267794 0.1535689 5.562508 -1.705268 0.1535689 5.562508 -2.292679 0.1535689 5.562508 -3.081414 0.1535689 5.562508 -4.140474 0.1535689 5.562508 -5.562508 0.1535689 5.562508 -7.471917 0.1535689 5.562508 -10.03574 0.1535689 5.562508 -13.47828 0.1535689 5.562508 -18.10068 0.1535689 5.562508 -24.30731 0.1535689 5.562508 -32.64117 0.1535689 5.562508 -43.83129 0.1535689 5.562508 -58.85664 0.1535689 5.562508 --0.0175068 0.2091628 5.562508 --0.01161267 0.2091628 5.562508 --0.005718534 0.2091628 5.562508 -0.0001755984 0.2091628 5.562508 -0.006069731 0.2091628 5.562508 -0.01197402 0.2091628 5.562508 -0.01903886 0.2091628 5.562508 -0.02852504 0.2091628 5.562508 -0.04126244 0.2091628 5.562508 -0.05836535 0.2091628 5.562508 -0.08132997 0.2091628 5.562508 -0.1121653 0.2091628 5.562508 -0.1535689 0.2091628 5.562508 -0.2091628 0.2091628 5.562508 -0.2838106 0.2091628 5.562508 -0.3840425 0.2091628 5.562508 -0.518627 0.2091628 5.562508 -0.6993381 0.2091628 5.562508 -0.9419845 0.2091628 5.562508 -1.267794 0.2091628 5.562508 -1.705268 0.2091628 5.562508 -2.292679 0.2091628 5.562508 -3.081414 0.2091628 5.562508 -4.140474 0.2091628 5.562508 -5.562508 0.2091628 5.562508 -7.471917 0.2091628 5.562508 -10.03574 0.2091628 5.562508 -13.47828 0.2091628 5.562508 -18.10068 0.2091628 5.562508 -24.30731 0.2091628 5.562508 -32.64117 0.2091628 5.562508 -43.83129 0.2091628 5.562508 -58.85664 0.2091628 5.562508 --0.0175068 0.2838106 5.562508 --0.01161267 0.2838106 5.562508 --0.005718534 0.2838106 5.562508 -0.0001755984 0.2838106 5.562508 -0.006069731 0.2838106 5.562508 -0.01197402 0.2838106 5.562508 -0.01903886 0.2838106 5.562508 -0.02852504 0.2838106 5.562508 -0.04126244 0.2838106 5.562508 -0.05836535 0.2838106 5.562508 -0.08132997 0.2838106 5.562508 -0.1121653 0.2838106 5.562508 -0.1535689 0.2838106 5.562508 -0.2091628 0.2838106 5.562508 -0.2838106 0.2838106 5.562508 -0.3840425 0.2838106 5.562508 -0.518627 0.2838106 5.562508 -0.6993381 0.2838106 5.562508 -0.9419845 0.2838106 5.562508 -1.267794 0.2838106 5.562508 -1.705268 0.2838106 5.562508 -2.292679 0.2838106 5.562508 -3.081414 0.2838106 5.562508 -4.140474 0.2838106 5.562508 -5.562508 0.2838106 5.562508 -7.471917 0.2838106 5.562508 -10.03574 0.2838106 5.562508 -13.47828 0.2838106 5.562508 -18.10068 0.2838106 5.562508 -24.30731 0.2838106 5.562508 -32.64117 0.2838106 5.562508 -43.83129 0.2838106 5.562508 -58.85664 0.2838106 5.562508 --0.0175068 0.3840425 5.562508 --0.01161267 0.3840425 5.562508 --0.005718534 0.3840425 5.562508 -0.0001755984 0.3840425 5.562508 -0.006069731 0.3840425 5.562508 -0.01197402 0.3840425 5.562508 -0.01903886 0.3840425 5.562508 -0.02852504 0.3840425 5.562508 -0.04126244 0.3840425 5.562508 -0.05836535 0.3840425 5.562508 -0.08132997 0.3840425 5.562508 -0.1121653 0.3840425 5.562508 -0.1535689 0.3840425 5.562508 -0.2091628 0.3840425 5.562508 -0.2838106 0.3840425 5.562508 -0.3840425 0.3840425 5.562508 -0.518627 0.3840425 5.562508 -0.6993381 0.3840425 5.562508 -0.9419845 0.3840425 5.562508 -1.267794 0.3840425 5.562508 -1.705268 0.3840425 5.562508 -2.292679 0.3840425 5.562508 -3.081414 0.3840425 5.562508 -4.140474 0.3840425 5.562508 -5.562508 0.3840425 5.562508 -7.471917 0.3840425 5.562508 -10.03574 0.3840425 5.562508 -13.47828 0.3840425 5.562508 -18.10068 0.3840425 5.562508 -24.30731 0.3840425 5.562508 -32.64117 0.3840425 5.562508 -43.83129 0.3840425 5.562508 -58.85664 0.3840425 5.562508 --0.0175068 0.518627 5.562508 --0.01161267 0.518627 5.562508 --0.005718534 0.518627 5.562508 -0.0001755984 0.518627 5.562508 -0.006069731 0.518627 5.562508 -0.01197402 0.518627 5.562508 -0.01903886 0.518627 5.562508 -0.02852504 0.518627 5.562508 -0.04126244 0.518627 5.562508 -0.05836535 0.518627 5.562508 -0.08132997 0.518627 5.562508 -0.1121653 0.518627 5.562508 -0.1535689 0.518627 5.562508 -0.2091628 0.518627 5.562508 -0.2838106 0.518627 5.562508 -0.3840425 0.518627 5.562508 -0.518627 0.518627 5.562508 -0.6993381 0.518627 5.562508 -0.9419845 0.518627 5.562508 -1.267794 0.518627 5.562508 -1.705268 0.518627 5.562508 -2.292679 0.518627 5.562508 -3.081414 0.518627 5.562508 -4.140474 0.518627 5.562508 -5.562508 0.518627 5.562508 -7.471917 0.518627 5.562508 -10.03574 0.518627 5.562508 -13.47828 0.518627 5.562508 -18.10068 0.518627 5.562508 -24.30731 0.518627 5.562508 -32.64117 0.518627 5.562508 -43.83129 0.518627 5.562508 -58.85664 0.518627 5.562508 --0.0175068 0.6993381 5.562508 --0.01161267 0.6993381 5.562508 --0.005718534 0.6993381 5.562508 -0.0001755984 0.6993381 5.562508 -0.006069731 0.6993381 5.562508 -0.01197402 0.6993381 5.562508 -0.01903886 0.6993381 5.562508 -0.02852504 0.6993381 5.562508 -0.04126244 0.6993381 5.562508 -0.05836535 0.6993381 5.562508 -0.08132997 0.6993381 5.562508 -0.1121653 0.6993381 5.562508 -0.1535689 0.6993381 5.562508 -0.2091628 0.6993381 5.562508 -0.2838106 0.6993381 5.562508 -0.3840425 0.6993381 5.562508 -0.518627 0.6993381 5.562508 -0.6993381 0.6993381 5.562508 -0.9419845 0.6993381 5.562508 -1.267794 0.6993381 5.562508 -1.705268 0.6993381 5.562508 -2.292679 0.6993381 5.562508 -3.081414 0.6993381 5.562508 -4.140474 0.6993381 5.562508 -5.562508 0.6993381 5.562508 -7.471917 0.6993381 5.562508 -10.03574 0.6993381 5.562508 -13.47828 0.6993381 5.562508 -18.10068 0.6993381 5.562508 -24.30731 0.6993381 5.562508 -32.64117 0.6993381 5.562508 -43.83129 0.6993381 5.562508 -58.85664 0.6993381 5.562508 --0.0175068 0.9419845 5.562508 --0.01161267 0.9419845 5.562508 --0.005718534 0.9419845 5.562508 -0.0001755984 0.9419845 5.562508 -0.006069731 0.9419845 5.562508 -0.01197402 0.9419845 5.562508 -0.01903886 0.9419845 5.562508 -0.02852504 0.9419845 5.562508 -0.04126244 0.9419845 5.562508 -0.05836535 0.9419845 5.562508 -0.08132997 0.9419845 5.562508 -0.1121653 0.9419845 5.562508 -0.1535689 0.9419845 5.562508 -0.2091628 0.9419845 5.562508 -0.2838106 0.9419845 5.562508 -0.3840425 0.9419845 5.562508 -0.518627 0.9419845 5.562508 -0.6993381 0.9419845 5.562508 -0.9419845 0.9419845 5.562508 -1.267794 0.9419845 5.562508 -1.705268 0.9419845 5.562508 -2.292679 0.9419845 5.562508 -3.081414 0.9419845 5.562508 -4.140474 0.9419845 5.562508 -5.562508 0.9419845 5.562508 -7.471917 0.9419845 5.562508 -10.03574 0.9419845 5.562508 -13.47828 0.9419845 5.562508 -18.10068 0.9419845 5.562508 -24.30731 0.9419845 5.562508 -32.64117 0.9419845 5.562508 -43.83129 0.9419845 5.562508 -58.85664 0.9419845 5.562508 --0.0175068 1.267794 5.562508 --0.01161267 1.267794 5.562508 --0.005718534 1.267794 5.562508 -0.0001755984 1.267794 5.562508 -0.006069731 1.267794 5.562508 -0.01197402 1.267794 5.562508 -0.01903886 1.267794 5.562508 -0.02852504 1.267794 5.562508 -0.04126244 1.267794 5.562508 -0.05836535 1.267794 5.562508 -0.08132997 1.267794 5.562508 -0.1121653 1.267794 5.562508 -0.1535689 1.267794 5.562508 -0.2091628 1.267794 5.562508 -0.2838106 1.267794 5.562508 -0.3840425 1.267794 5.562508 -0.518627 1.267794 5.562508 -0.6993381 1.267794 5.562508 -0.9419845 1.267794 5.562508 -1.267794 1.267794 5.562508 -1.705268 1.267794 5.562508 -2.292679 1.267794 5.562508 -3.081414 1.267794 5.562508 -4.140474 1.267794 5.562508 -5.562508 1.267794 5.562508 -7.471917 1.267794 5.562508 -10.03574 1.267794 5.562508 -13.47828 1.267794 5.562508 -18.10068 1.267794 5.562508 -24.30731 1.267794 5.562508 -32.64117 1.267794 5.562508 -43.83129 1.267794 5.562508 -58.85664 1.267794 5.562508 --0.0175068 1.705268 5.562508 --0.01161267 1.705268 5.562508 --0.005718534 1.705268 5.562508 -0.0001755984 1.705268 5.562508 -0.006069731 1.705268 5.562508 -0.01197402 1.705268 5.562508 -0.01903886 1.705268 5.562508 -0.02852504 1.705268 5.562508 -0.04126244 1.705268 5.562508 -0.05836535 1.705268 5.562508 -0.08132997 1.705268 5.562508 -0.1121653 1.705268 5.562508 -0.1535689 1.705268 5.562508 -0.2091628 1.705268 5.562508 -0.2838106 1.705268 5.562508 -0.3840425 1.705268 5.562508 -0.518627 1.705268 5.562508 -0.6993381 1.705268 5.562508 -0.9419845 1.705268 5.562508 -1.267794 1.705268 5.562508 -1.705268 1.705268 5.562508 -2.292679 1.705268 5.562508 -3.081414 1.705268 5.562508 -4.140474 1.705268 5.562508 -5.562508 1.705268 5.562508 -7.471917 1.705268 5.562508 -10.03574 1.705268 5.562508 -13.47828 1.705268 5.562508 -18.10068 1.705268 5.562508 -24.30731 1.705268 5.562508 -32.64117 1.705268 5.562508 -43.83129 1.705268 5.562508 -58.85664 1.705268 5.562508 --0.0175068 2.292679 5.562508 --0.01161267 2.292679 5.562508 --0.005718534 2.292679 5.562508 -0.0001755984 2.292679 5.562508 -0.006069731 2.292679 5.562508 -0.01197402 2.292679 5.562508 -0.01903886 2.292679 5.562508 -0.02852504 2.292679 5.562508 -0.04126244 2.292679 5.562508 -0.05836535 2.292679 5.562508 -0.08132997 2.292679 5.562508 -0.1121653 2.292679 5.562508 -0.1535689 2.292679 5.562508 -0.2091628 2.292679 5.562508 -0.2838106 2.292679 5.562508 -0.3840425 2.292679 5.562508 -0.518627 2.292679 5.562508 -0.6993381 2.292679 5.562508 -0.9419845 2.292679 5.562508 -1.267794 2.292679 5.562508 -1.705268 2.292679 5.562508 -2.292679 2.292679 5.562508 -3.081414 2.292679 5.562508 -4.140474 2.292679 5.562508 -5.562508 2.292679 5.562508 -7.471917 2.292679 5.562508 -10.03574 2.292679 5.562508 -13.47828 2.292679 5.562508 -18.10068 2.292679 5.562508 -24.30731 2.292679 5.562508 -32.64117 2.292679 5.562508 -43.83129 2.292679 5.562508 -58.85664 2.292679 5.562508 --0.0175068 3.081414 5.562508 --0.01161267 3.081414 5.562508 --0.005718534 3.081414 5.562508 -0.0001755984 3.081414 5.562508 -0.006069731 3.081414 5.562508 -0.01197402 3.081414 5.562508 -0.01903886 3.081414 5.562508 -0.02852504 3.081414 5.562508 -0.04126244 3.081414 5.562508 -0.05836535 3.081414 5.562508 -0.08132997 3.081414 5.562508 -0.1121653 3.081414 5.562508 -0.1535689 3.081414 5.562508 -0.2091628 3.081414 5.562508 -0.2838106 3.081414 5.562508 -0.3840425 3.081414 5.562508 -0.518627 3.081414 5.562508 -0.6993381 3.081414 5.562508 -0.9419845 3.081414 5.562508 -1.267794 3.081414 5.562508 -1.705268 3.081414 5.562508 -2.292679 3.081414 5.562508 -3.081414 3.081414 5.562508 -4.140474 3.081414 5.562508 -5.562508 3.081414 5.562508 -7.471917 3.081414 5.562508 -10.03574 3.081414 5.562508 -13.47828 3.081414 5.562508 -18.10068 3.081414 5.562508 -24.30731 3.081414 5.562508 -32.64117 3.081414 5.562508 -43.83129 3.081414 5.562508 -58.85664 3.081414 5.562508 --0.0175068 4.140474 5.562508 --0.01161267 4.140474 5.562508 --0.005718534 4.140474 5.562508 -0.0001755984 4.140474 5.562508 -0.006069731 4.140474 5.562508 -0.01197402 4.140474 5.562508 -0.01903886 4.140474 5.562508 -0.02852504 4.140474 5.562508 -0.04126244 4.140474 5.562508 -0.05836535 4.140474 5.562508 -0.08132997 4.140474 5.562508 -0.1121653 4.140474 5.562508 -0.1535689 4.140474 5.562508 -0.2091628 4.140474 5.562508 -0.2838106 4.140474 5.562508 -0.3840425 4.140474 5.562508 -0.518627 4.140474 5.562508 -0.6993381 4.140474 5.562508 -0.9419845 4.140474 5.562508 -1.267794 4.140474 5.562508 -1.705268 4.140474 5.562508 -2.292679 4.140474 5.562508 -3.081414 4.140474 5.562508 -4.140474 4.140474 5.562508 -5.562508 4.140474 5.562508 -7.471917 4.140474 5.562508 -10.03574 4.140474 5.562508 -13.47828 4.140474 5.562508 -18.10068 4.140474 5.562508 -24.30731 4.140474 5.562508 -32.64117 4.140474 5.562508 -43.83129 4.140474 5.562508 -58.85664 4.140474 5.562508 --0.0175068 5.562508 5.562508 --0.01161267 5.562508 5.562508 --0.005718534 5.562508 5.562508 -0.0001755984 5.562508 5.562508 -0.006069731 5.562508 5.562508 -0.01197402 5.562508 5.562508 -0.01903886 5.562508 5.562508 -0.02852504 5.562508 5.562508 -0.04126244 5.562508 5.562508 -0.05836535 5.562508 5.562508 -0.08132997 5.562508 5.562508 -0.1121653 5.562508 5.562508 -0.1535689 5.562508 5.562508 -0.2091628 5.562508 5.562508 -0.2838106 5.562508 5.562508 -0.3840425 5.562508 5.562508 -0.518627 5.562508 5.562508 -0.6993381 5.562508 5.562508 -0.9419845 5.562508 5.562508 -1.267794 5.562508 5.562508 -1.705268 5.562508 5.562508 -2.292679 5.562508 5.562508 -3.081414 5.562508 5.562508 -4.140474 5.562508 5.562508 -5.562508 5.562508 5.562508 -7.471917 5.562508 5.562508 -10.03574 5.562508 5.562508 -13.47828 5.562508 5.562508 -18.10068 5.562508 5.562508 -24.30731 5.562508 5.562508 -32.64117 5.562508 5.562508 -43.83129 5.562508 5.562508 -58.85664 5.562508 5.562508 --0.0175068 7.471917 5.562508 --0.01161267 7.471917 5.562508 --0.005718534 7.471917 5.562508 -0.0001755984 7.471917 5.562508 -0.006069731 7.471917 5.562508 -0.01197402 7.471917 5.562508 -0.01903886 7.471917 5.562508 -0.02852504 7.471917 5.562508 -0.04126244 7.471917 5.562508 -0.05836535 7.471917 5.562508 -0.08132997 7.471917 5.562508 -0.1121653 7.471917 5.562508 -0.1535689 7.471917 5.562508 -0.2091628 7.471917 5.562508 -0.2838106 7.471917 5.562508 -0.3840425 7.471917 5.562508 -0.518627 7.471917 5.562508 -0.6993381 7.471917 5.562508 -0.9419845 7.471917 5.562508 -1.267794 7.471917 5.562508 -1.705268 7.471917 5.562508 -2.292679 7.471917 5.562508 -3.081414 7.471917 5.562508 -4.140474 7.471917 5.562508 -5.562508 7.471917 5.562508 -7.471917 7.471917 5.562508 -10.03574 7.471917 5.562508 -13.47828 7.471917 5.562508 -18.10068 7.471917 5.562508 -24.30731 7.471917 5.562508 -32.64117 7.471917 5.562508 -43.83129 7.471917 5.562508 -58.85664 7.471917 5.562508 --0.0175068 10.03574 5.562508 --0.01161267 10.03574 5.562508 --0.005718534 10.03574 5.562508 -0.0001755984 10.03574 5.562508 -0.006069731 10.03574 5.562508 -0.01197402 10.03574 5.562508 -0.01903886 10.03574 5.562508 -0.02852504 10.03574 5.562508 -0.04126244 10.03574 5.562508 -0.05836535 10.03574 5.562508 -0.08132997 10.03574 5.562508 -0.1121653 10.03574 5.562508 -0.1535689 10.03574 5.562508 -0.2091628 10.03574 5.562508 -0.2838106 10.03574 5.562508 -0.3840425 10.03574 5.562508 -0.518627 10.03574 5.562508 -0.6993381 10.03574 5.562508 -0.9419845 10.03574 5.562508 -1.267794 10.03574 5.562508 -1.705268 10.03574 5.562508 -2.292679 10.03574 5.562508 -3.081414 10.03574 5.562508 -4.140474 10.03574 5.562508 -5.562508 10.03574 5.562508 -7.471917 10.03574 5.562508 -10.03574 10.03574 5.562508 -13.47828 10.03574 5.562508 -18.10068 10.03574 5.562508 -24.30731 10.03574 5.562508 -32.64117 10.03574 5.562508 -43.83129 10.03574 5.562508 -58.85664 10.03574 5.562508 --0.0175068 13.47828 5.562508 --0.01161267 13.47828 5.562508 --0.005718534 13.47828 5.562508 -0.0001755984 13.47828 5.562508 -0.006069731 13.47828 5.562508 -0.01197402 13.47828 5.562508 -0.01903886 13.47828 5.562508 -0.02852504 13.47828 5.562508 -0.04126244 13.47828 5.562508 -0.05836535 13.47828 5.562508 -0.08132997 13.47828 5.562508 -0.1121653 13.47828 5.562508 -0.1535689 13.47828 5.562508 -0.2091628 13.47828 5.562508 -0.2838106 13.47828 5.562508 -0.3840425 13.47828 5.562508 -0.518627 13.47828 5.562508 -0.6993381 13.47828 5.562508 -0.9419845 13.47828 5.562508 -1.267794 13.47828 5.562508 -1.705268 13.47828 5.562508 -2.292679 13.47828 5.562508 -3.081414 13.47828 5.562508 -4.140474 13.47828 5.562508 -5.562508 13.47828 5.562508 -7.471917 13.47828 5.562508 -10.03574 13.47828 5.562508 -13.47828 13.47828 5.562508 -18.10068 13.47828 5.562508 -24.30731 13.47828 5.562508 -32.64117 13.47828 5.562508 -43.83129 13.47828 5.562508 -58.85664 13.47828 5.562508 --0.0175068 18.10068 5.562508 --0.01161267 18.10068 5.562508 --0.005718534 18.10068 5.562508 -0.0001755984 18.10068 5.562508 -0.006069731 18.10068 5.562508 -0.01197402 18.10068 5.562508 -0.01903886 18.10068 5.562508 -0.02852504 18.10068 5.562508 -0.04126244 18.10068 5.562508 -0.05836535 18.10068 5.562508 -0.08132997 18.10068 5.562508 -0.1121653 18.10068 5.562508 -0.1535689 18.10068 5.562508 -0.2091628 18.10068 5.562508 -0.2838106 18.10068 5.562508 -0.3840425 18.10068 5.562508 -0.518627 18.10068 5.562508 -0.6993381 18.10068 5.562508 -0.9419845 18.10068 5.562508 -1.267794 18.10068 5.562508 -1.705268 18.10068 5.562508 -2.292679 18.10068 5.562508 -3.081414 18.10068 5.562508 -4.140474 18.10068 5.562508 -5.562508 18.10068 5.562508 -7.471917 18.10068 5.562508 -10.03574 18.10068 5.562508 -13.47828 18.10068 5.562508 -18.10068 18.10068 5.562508 -24.30731 18.10068 5.562508 -32.64117 18.10068 5.562508 -43.83129 18.10068 5.562508 -58.85664 18.10068 5.562508 --0.0175068 24.30731 5.562508 --0.01161267 24.30731 5.562508 --0.005718534 24.30731 5.562508 -0.0001755984 24.30731 5.562508 -0.006069731 24.30731 5.562508 -0.01197402 24.30731 5.562508 -0.01903886 24.30731 5.562508 -0.02852504 24.30731 5.562508 -0.04126244 24.30731 5.562508 -0.05836535 24.30731 5.562508 -0.08132997 24.30731 5.562508 -0.1121653 24.30731 5.562508 -0.1535689 24.30731 5.562508 -0.2091628 24.30731 5.562508 -0.2838106 24.30731 5.562508 -0.3840425 24.30731 5.562508 -0.518627 24.30731 5.562508 -0.6993381 24.30731 5.562508 -0.9419845 24.30731 5.562508 -1.267794 24.30731 5.562508 -1.705268 24.30731 5.562508 -2.292679 24.30731 5.562508 -3.081414 24.30731 5.562508 -4.140474 24.30731 5.562508 -5.562508 24.30731 5.562508 -7.471917 24.30731 5.562508 -10.03574 24.30731 5.562508 -13.47828 24.30731 5.562508 -18.10068 24.30731 5.562508 -24.30731 24.30731 5.562508 -32.64117 24.30731 5.562508 -43.83129 24.30731 5.562508 -58.85664 24.30731 5.562508 --0.0175068 32.64117 5.562508 --0.01161267 32.64117 5.562508 --0.005718534 32.64117 5.562508 -0.0001755984 32.64117 5.562508 -0.006069731 32.64117 5.562508 -0.01197402 32.64117 5.562508 -0.01903886 32.64117 5.562508 -0.02852504 32.64117 5.562508 -0.04126244 32.64117 5.562508 -0.05836535 32.64117 5.562508 -0.08132997 32.64117 5.562508 -0.1121653 32.64117 5.562508 -0.1535689 32.64117 5.562508 -0.2091628 32.64117 5.562508 -0.2838106 32.64117 5.562508 -0.3840425 32.64117 5.562508 -0.518627 32.64117 5.562508 -0.6993381 32.64117 5.562508 -0.9419845 32.64117 5.562508 -1.267794 32.64117 5.562508 -1.705268 32.64117 5.562508 -2.292679 32.64117 5.562508 -3.081414 32.64117 5.562508 -4.140474 32.64117 5.562508 -5.562508 32.64117 5.562508 -7.471917 32.64117 5.562508 -10.03574 32.64117 5.562508 -13.47828 32.64117 5.562508 -18.10068 32.64117 5.562508 -24.30731 32.64117 5.562508 -32.64117 32.64117 5.562508 -43.83129 32.64117 5.562508 -58.85664 32.64117 5.562508 --0.0175068 43.83129 5.562508 --0.01161267 43.83129 5.562508 --0.005718534 43.83129 5.562508 -0.0001755984 43.83129 5.562508 -0.006069731 43.83129 5.562508 -0.01197402 43.83129 5.562508 -0.01903886 43.83129 5.562508 -0.02852504 43.83129 5.562508 -0.04126244 43.83129 5.562508 -0.05836535 43.83129 5.562508 -0.08132997 43.83129 5.562508 -0.1121653 43.83129 5.562508 -0.1535689 43.83129 5.562508 -0.2091628 43.83129 5.562508 -0.2838106 43.83129 5.562508 -0.3840425 43.83129 5.562508 -0.518627 43.83129 5.562508 -0.6993381 43.83129 5.562508 -0.9419845 43.83129 5.562508 -1.267794 43.83129 5.562508 -1.705268 43.83129 5.562508 -2.292679 43.83129 5.562508 -3.081414 43.83129 5.562508 -4.140474 43.83129 5.562508 -5.562508 43.83129 5.562508 -7.471917 43.83129 5.562508 -10.03574 43.83129 5.562508 -13.47828 43.83129 5.562508 -18.10068 43.83129 5.562508 -24.30731 43.83129 5.562508 -32.64117 43.83129 5.562508 -43.83129 43.83129 5.562508 -58.85664 43.83129 5.562508 --0.0175068 58.85664 5.562508 --0.01161267 58.85664 5.562508 --0.005718534 58.85664 5.562508 -0.0001755984 58.85664 5.562508 -0.006069731 58.85664 5.562508 -0.01197402 58.85664 5.562508 -0.01903886 58.85664 5.562508 -0.02852504 58.85664 5.562508 -0.04126244 58.85664 5.562508 -0.05836535 58.85664 5.562508 -0.08132997 58.85664 5.562508 -0.1121653 58.85664 5.562508 -0.1535689 58.85664 5.562508 -0.2091628 58.85664 5.562508 -0.2838106 58.85664 5.562508 -0.3840425 58.85664 5.562508 -0.518627 58.85664 5.562508 -0.6993381 58.85664 5.562508 -0.9419845 58.85664 5.562508 -1.267794 58.85664 5.562508 -1.705268 58.85664 5.562508 -2.292679 58.85664 5.562508 -3.081414 58.85664 5.562508 -4.140474 58.85664 5.562508 -5.562508 58.85664 5.562508 -7.471917 58.85664 5.562508 -10.03574 58.85664 5.562508 -13.47828 58.85664 5.562508 -18.10068 58.85664 5.562508 -24.30731 58.85664 5.562508 -32.64117 58.85664 5.562508 -43.83129 58.85664 5.562508 -58.85664 58.85664 5.562508 --0.0175068 -0.0175068 7.471917 --0.01161267 -0.0175068 7.471917 --0.005718534 -0.0175068 7.471917 -0.0001755984 -0.0175068 7.471917 -0.006069731 -0.0175068 7.471917 -0.01197402 -0.0175068 7.471917 -0.01903886 -0.0175068 7.471917 -0.02852504 -0.0175068 7.471917 -0.04126244 -0.0175068 7.471917 -0.05836535 -0.0175068 7.471917 -0.08132997 -0.0175068 7.471917 -0.1121653 -0.0175068 7.471917 -0.1535689 -0.0175068 7.471917 -0.2091628 -0.0175068 7.471917 -0.2838106 -0.0175068 7.471917 -0.3840425 -0.0175068 7.471917 -0.518627 -0.0175068 7.471917 -0.6993381 -0.0175068 7.471917 -0.9419845 -0.0175068 7.471917 -1.267794 -0.0175068 7.471917 -1.705268 -0.0175068 7.471917 -2.292679 -0.0175068 7.471917 -3.081414 -0.0175068 7.471917 -4.140474 -0.0175068 7.471917 -5.562508 -0.0175068 7.471917 -7.471917 -0.0175068 7.471917 -10.03574 -0.0175068 7.471917 -13.47828 -0.0175068 7.471917 -18.10068 -0.0175068 7.471917 -24.30731 -0.0175068 7.471917 -32.64117 -0.0175068 7.471917 -43.83129 -0.0175068 7.471917 -58.85664 -0.0175068 7.471917 --0.0175068 -0.01161267 7.471917 --0.01161267 -0.01161267 7.471917 --0.005718534 -0.01161267 7.471917 -0.0001755984 -0.01161267 7.471917 -0.006069731 -0.01161267 7.471917 -0.01197402 -0.01161267 7.471917 -0.01903886 -0.01161267 7.471917 -0.02852504 -0.01161267 7.471917 -0.04126244 -0.01161267 7.471917 -0.05836535 -0.01161267 7.471917 -0.08132997 -0.01161267 7.471917 -0.1121653 -0.01161267 7.471917 -0.1535689 -0.01161267 7.471917 -0.2091628 -0.01161267 7.471917 -0.2838106 -0.01161267 7.471917 -0.3840425 -0.01161267 7.471917 -0.518627 -0.01161267 7.471917 -0.6993381 -0.01161267 7.471917 -0.9419845 -0.01161267 7.471917 -1.267794 -0.01161267 7.471917 -1.705268 -0.01161267 7.471917 -2.292679 -0.01161267 7.471917 -3.081414 -0.01161267 7.471917 -4.140474 -0.01161267 7.471917 -5.562508 -0.01161267 7.471917 -7.471917 -0.01161267 7.471917 -10.03574 -0.01161267 7.471917 -13.47828 -0.01161267 7.471917 -18.10068 -0.01161267 7.471917 -24.30731 -0.01161267 7.471917 -32.64117 -0.01161267 7.471917 -43.83129 -0.01161267 7.471917 -58.85664 -0.01161267 7.471917 --0.0175068 -0.005718534 7.471917 --0.01161267 -0.005718534 7.471917 --0.005718534 -0.005718534 7.471917 -0.0001755984 -0.005718534 7.471917 -0.006069731 -0.005718534 7.471917 -0.01197402 -0.005718534 7.471917 -0.01903886 -0.005718534 7.471917 -0.02852504 -0.005718534 7.471917 -0.04126244 -0.005718534 7.471917 -0.05836535 -0.005718534 7.471917 -0.08132997 -0.005718534 7.471917 -0.1121653 -0.005718534 7.471917 -0.1535689 -0.005718534 7.471917 -0.2091628 -0.005718534 7.471917 -0.2838106 -0.005718534 7.471917 -0.3840425 -0.005718534 7.471917 -0.518627 -0.005718534 7.471917 -0.6993381 -0.005718534 7.471917 -0.9419845 -0.005718534 7.471917 -1.267794 -0.005718534 7.471917 -1.705268 -0.005718534 7.471917 -2.292679 -0.005718534 7.471917 -3.081414 -0.005718534 7.471917 -4.140474 -0.005718534 7.471917 -5.562508 -0.005718534 7.471917 -7.471917 -0.005718534 7.471917 -10.03574 -0.005718534 7.471917 -13.47828 -0.005718534 7.471917 -18.10068 -0.005718534 7.471917 -24.30731 -0.005718534 7.471917 -32.64117 -0.005718534 7.471917 -43.83129 -0.005718534 7.471917 -58.85664 -0.005718534 7.471917 --0.0175068 0.0001755984 7.471917 --0.01161267 0.0001755984 7.471917 --0.005718534 0.0001755984 7.471917 -0.0001755984 0.0001755984 7.471917 -0.006069731 0.0001755984 7.471917 -0.01197402 0.0001755984 7.471917 -0.01903886 0.0001755984 7.471917 -0.02852504 0.0001755984 7.471917 -0.04126244 0.0001755984 7.471917 -0.05836535 0.0001755984 7.471917 -0.08132997 0.0001755984 7.471917 -0.1121653 0.0001755984 7.471917 -0.1535689 0.0001755984 7.471917 -0.2091628 0.0001755984 7.471917 -0.2838106 0.0001755984 7.471917 -0.3840425 0.0001755984 7.471917 -0.518627 0.0001755984 7.471917 -0.6993381 0.0001755984 7.471917 -0.9419845 0.0001755984 7.471917 -1.267794 0.0001755984 7.471917 -1.705268 0.0001755984 7.471917 -2.292679 0.0001755984 7.471917 -3.081414 0.0001755984 7.471917 -4.140474 0.0001755984 7.471917 -5.562508 0.0001755984 7.471917 -7.471917 0.0001755984 7.471917 -10.03574 0.0001755984 7.471917 -13.47828 0.0001755984 7.471917 -18.10068 0.0001755984 7.471917 -24.30731 0.0001755984 7.471917 -32.64117 0.0001755984 7.471917 -43.83129 0.0001755984 7.471917 -58.85664 0.0001755984 7.471917 --0.0175068 0.006069731 7.471917 --0.01161267 0.006069731 7.471917 --0.005718534 0.006069731 7.471917 -0.0001755984 0.006069731 7.471917 -0.006069731 0.006069731 7.471917 -0.01197402 0.006069731 7.471917 -0.01903886 0.006069731 7.471917 -0.02852504 0.006069731 7.471917 -0.04126244 0.006069731 7.471917 -0.05836535 0.006069731 7.471917 -0.08132997 0.006069731 7.471917 -0.1121653 0.006069731 7.471917 -0.1535689 0.006069731 7.471917 -0.2091628 0.006069731 7.471917 -0.2838106 0.006069731 7.471917 -0.3840425 0.006069731 7.471917 -0.518627 0.006069731 7.471917 -0.6993381 0.006069731 7.471917 -0.9419845 0.006069731 7.471917 -1.267794 0.006069731 7.471917 -1.705268 0.006069731 7.471917 -2.292679 0.006069731 7.471917 -3.081414 0.006069731 7.471917 -4.140474 0.006069731 7.471917 -5.562508 0.006069731 7.471917 -7.471917 0.006069731 7.471917 -10.03574 0.006069731 7.471917 -13.47828 0.006069731 7.471917 -18.10068 0.006069731 7.471917 -24.30731 0.006069731 7.471917 -32.64117 0.006069731 7.471917 -43.83129 0.006069731 7.471917 -58.85664 0.006069731 7.471917 --0.0175068 0.01197402 7.471917 --0.01161267 0.01197402 7.471917 --0.005718534 0.01197402 7.471917 -0.0001755984 0.01197402 7.471917 -0.006069731 0.01197402 7.471917 -0.01197402 0.01197402 7.471917 -0.01903886 0.01197402 7.471917 -0.02852504 0.01197402 7.471917 -0.04126244 0.01197402 7.471917 -0.05836535 0.01197402 7.471917 -0.08132997 0.01197402 7.471917 -0.1121653 0.01197402 7.471917 -0.1535689 0.01197402 7.471917 -0.2091628 0.01197402 7.471917 -0.2838106 0.01197402 7.471917 -0.3840425 0.01197402 7.471917 -0.518627 0.01197402 7.471917 -0.6993381 0.01197402 7.471917 -0.9419845 0.01197402 7.471917 -1.267794 0.01197402 7.471917 -1.705268 0.01197402 7.471917 -2.292679 0.01197402 7.471917 -3.081414 0.01197402 7.471917 -4.140474 0.01197402 7.471917 -5.562508 0.01197402 7.471917 -7.471917 0.01197402 7.471917 -10.03574 0.01197402 7.471917 -13.47828 0.01197402 7.471917 -18.10068 0.01197402 7.471917 -24.30731 0.01197402 7.471917 -32.64117 0.01197402 7.471917 -43.83129 0.01197402 7.471917 -58.85664 0.01197402 7.471917 --0.0175068 0.01903886 7.471917 --0.01161267 0.01903886 7.471917 --0.005718534 0.01903886 7.471917 -0.0001755984 0.01903886 7.471917 -0.006069731 0.01903886 7.471917 -0.01197402 0.01903886 7.471917 -0.01903886 0.01903886 7.471917 -0.02852504 0.01903886 7.471917 -0.04126244 0.01903886 7.471917 -0.05836535 0.01903886 7.471917 -0.08132997 0.01903886 7.471917 -0.1121653 0.01903886 7.471917 -0.1535689 0.01903886 7.471917 -0.2091628 0.01903886 7.471917 -0.2838106 0.01903886 7.471917 -0.3840425 0.01903886 7.471917 -0.518627 0.01903886 7.471917 -0.6993381 0.01903886 7.471917 -0.9419845 0.01903886 7.471917 -1.267794 0.01903886 7.471917 -1.705268 0.01903886 7.471917 -2.292679 0.01903886 7.471917 -3.081414 0.01903886 7.471917 -4.140474 0.01903886 7.471917 -5.562508 0.01903886 7.471917 -7.471917 0.01903886 7.471917 -10.03574 0.01903886 7.471917 -13.47828 0.01903886 7.471917 -18.10068 0.01903886 7.471917 -24.30731 0.01903886 7.471917 -32.64117 0.01903886 7.471917 -43.83129 0.01903886 7.471917 -58.85664 0.01903886 7.471917 --0.0175068 0.02852504 7.471917 --0.01161267 0.02852504 7.471917 --0.005718534 0.02852504 7.471917 -0.0001755984 0.02852504 7.471917 -0.006069731 0.02852504 7.471917 -0.01197402 0.02852504 7.471917 -0.01903886 0.02852504 7.471917 -0.02852504 0.02852504 7.471917 -0.04126244 0.02852504 7.471917 -0.05836535 0.02852504 7.471917 -0.08132997 0.02852504 7.471917 -0.1121653 0.02852504 7.471917 -0.1535689 0.02852504 7.471917 -0.2091628 0.02852504 7.471917 -0.2838106 0.02852504 7.471917 -0.3840425 0.02852504 7.471917 -0.518627 0.02852504 7.471917 -0.6993381 0.02852504 7.471917 -0.9419845 0.02852504 7.471917 -1.267794 0.02852504 7.471917 -1.705268 0.02852504 7.471917 -2.292679 0.02852504 7.471917 -3.081414 0.02852504 7.471917 -4.140474 0.02852504 7.471917 -5.562508 0.02852504 7.471917 -7.471917 0.02852504 7.471917 -10.03574 0.02852504 7.471917 -13.47828 0.02852504 7.471917 -18.10068 0.02852504 7.471917 -24.30731 0.02852504 7.471917 -32.64117 0.02852504 7.471917 -43.83129 0.02852504 7.471917 -58.85664 0.02852504 7.471917 --0.0175068 0.04126244 7.471917 --0.01161267 0.04126244 7.471917 --0.005718534 0.04126244 7.471917 -0.0001755984 0.04126244 7.471917 -0.006069731 0.04126244 7.471917 -0.01197402 0.04126244 7.471917 -0.01903886 0.04126244 7.471917 -0.02852504 0.04126244 7.471917 -0.04126244 0.04126244 7.471917 -0.05836535 0.04126244 7.471917 -0.08132997 0.04126244 7.471917 -0.1121653 0.04126244 7.471917 -0.1535689 0.04126244 7.471917 -0.2091628 0.04126244 7.471917 -0.2838106 0.04126244 7.471917 -0.3840425 0.04126244 7.471917 -0.518627 0.04126244 7.471917 -0.6993381 0.04126244 7.471917 -0.9419845 0.04126244 7.471917 -1.267794 0.04126244 7.471917 -1.705268 0.04126244 7.471917 -2.292679 0.04126244 7.471917 -3.081414 0.04126244 7.471917 -4.140474 0.04126244 7.471917 -5.562508 0.04126244 7.471917 -7.471917 0.04126244 7.471917 -10.03574 0.04126244 7.471917 -13.47828 0.04126244 7.471917 -18.10068 0.04126244 7.471917 -24.30731 0.04126244 7.471917 -32.64117 0.04126244 7.471917 -43.83129 0.04126244 7.471917 -58.85664 0.04126244 7.471917 --0.0175068 0.05836535 7.471917 --0.01161267 0.05836535 7.471917 --0.005718534 0.05836535 7.471917 -0.0001755984 0.05836535 7.471917 -0.006069731 0.05836535 7.471917 -0.01197402 0.05836535 7.471917 -0.01903886 0.05836535 7.471917 -0.02852504 0.05836535 7.471917 -0.04126244 0.05836535 7.471917 -0.05836535 0.05836535 7.471917 -0.08132997 0.05836535 7.471917 -0.1121653 0.05836535 7.471917 -0.1535689 0.05836535 7.471917 -0.2091628 0.05836535 7.471917 -0.2838106 0.05836535 7.471917 -0.3840425 0.05836535 7.471917 -0.518627 0.05836535 7.471917 -0.6993381 0.05836535 7.471917 -0.9419845 0.05836535 7.471917 -1.267794 0.05836535 7.471917 -1.705268 0.05836535 7.471917 -2.292679 0.05836535 7.471917 -3.081414 0.05836535 7.471917 -4.140474 0.05836535 7.471917 -5.562508 0.05836535 7.471917 -7.471917 0.05836535 7.471917 -10.03574 0.05836535 7.471917 -13.47828 0.05836535 7.471917 -18.10068 0.05836535 7.471917 -24.30731 0.05836535 7.471917 -32.64117 0.05836535 7.471917 -43.83129 0.05836535 7.471917 -58.85664 0.05836535 7.471917 --0.0175068 0.08132997 7.471917 --0.01161267 0.08132997 7.471917 --0.005718534 0.08132997 7.471917 -0.0001755984 0.08132997 7.471917 -0.006069731 0.08132997 7.471917 -0.01197402 0.08132997 7.471917 -0.01903886 0.08132997 7.471917 -0.02852504 0.08132997 7.471917 -0.04126244 0.08132997 7.471917 -0.05836535 0.08132997 7.471917 -0.08132997 0.08132997 7.471917 -0.1121653 0.08132997 7.471917 -0.1535689 0.08132997 7.471917 -0.2091628 0.08132997 7.471917 -0.2838106 0.08132997 7.471917 -0.3840425 0.08132997 7.471917 -0.518627 0.08132997 7.471917 -0.6993381 0.08132997 7.471917 -0.9419845 0.08132997 7.471917 -1.267794 0.08132997 7.471917 -1.705268 0.08132997 7.471917 -2.292679 0.08132997 7.471917 -3.081414 0.08132997 7.471917 -4.140474 0.08132997 7.471917 -5.562508 0.08132997 7.471917 -7.471917 0.08132997 7.471917 -10.03574 0.08132997 7.471917 -13.47828 0.08132997 7.471917 -18.10068 0.08132997 7.471917 -24.30731 0.08132997 7.471917 -32.64117 0.08132997 7.471917 -43.83129 0.08132997 7.471917 -58.85664 0.08132997 7.471917 --0.0175068 0.1121653 7.471917 --0.01161267 0.1121653 7.471917 --0.005718534 0.1121653 7.471917 -0.0001755984 0.1121653 7.471917 -0.006069731 0.1121653 7.471917 -0.01197402 0.1121653 7.471917 -0.01903886 0.1121653 7.471917 -0.02852504 0.1121653 7.471917 -0.04126244 0.1121653 7.471917 -0.05836535 0.1121653 7.471917 -0.08132997 0.1121653 7.471917 -0.1121653 0.1121653 7.471917 -0.1535689 0.1121653 7.471917 -0.2091628 0.1121653 7.471917 -0.2838106 0.1121653 7.471917 -0.3840425 0.1121653 7.471917 -0.518627 0.1121653 7.471917 -0.6993381 0.1121653 7.471917 -0.9419845 0.1121653 7.471917 -1.267794 0.1121653 7.471917 -1.705268 0.1121653 7.471917 -2.292679 0.1121653 7.471917 -3.081414 0.1121653 7.471917 -4.140474 0.1121653 7.471917 -5.562508 0.1121653 7.471917 -7.471917 0.1121653 7.471917 -10.03574 0.1121653 7.471917 -13.47828 0.1121653 7.471917 -18.10068 0.1121653 7.471917 -24.30731 0.1121653 7.471917 -32.64117 0.1121653 7.471917 -43.83129 0.1121653 7.471917 -58.85664 0.1121653 7.471917 --0.0175068 0.1535689 7.471917 --0.01161267 0.1535689 7.471917 --0.005718534 0.1535689 7.471917 -0.0001755984 0.1535689 7.471917 -0.006069731 0.1535689 7.471917 -0.01197402 0.1535689 7.471917 -0.01903886 0.1535689 7.471917 -0.02852504 0.1535689 7.471917 -0.04126244 0.1535689 7.471917 -0.05836535 0.1535689 7.471917 -0.08132997 0.1535689 7.471917 -0.1121653 0.1535689 7.471917 -0.1535689 0.1535689 7.471917 -0.2091628 0.1535689 7.471917 -0.2838106 0.1535689 7.471917 -0.3840425 0.1535689 7.471917 -0.518627 0.1535689 7.471917 -0.6993381 0.1535689 7.471917 -0.9419845 0.1535689 7.471917 -1.267794 0.1535689 7.471917 -1.705268 0.1535689 7.471917 -2.292679 0.1535689 7.471917 -3.081414 0.1535689 7.471917 -4.140474 0.1535689 7.471917 -5.562508 0.1535689 7.471917 -7.471917 0.1535689 7.471917 -10.03574 0.1535689 7.471917 -13.47828 0.1535689 7.471917 -18.10068 0.1535689 7.471917 -24.30731 0.1535689 7.471917 -32.64117 0.1535689 7.471917 -43.83129 0.1535689 7.471917 -58.85664 0.1535689 7.471917 --0.0175068 0.2091628 7.471917 --0.01161267 0.2091628 7.471917 --0.005718534 0.2091628 7.471917 -0.0001755984 0.2091628 7.471917 -0.006069731 0.2091628 7.471917 -0.01197402 0.2091628 7.471917 -0.01903886 0.2091628 7.471917 -0.02852504 0.2091628 7.471917 -0.04126244 0.2091628 7.471917 -0.05836535 0.2091628 7.471917 -0.08132997 0.2091628 7.471917 -0.1121653 0.2091628 7.471917 -0.1535689 0.2091628 7.471917 -0.2091628 0.2091628 7.471917 -0.2838106 0.2091628 7.471917 -0.3840425 0.2091628 7.471917 -0.518627 0.2091628 7.471917 -0.6993381 0.2091628 7.471917 -0.9419845 0.2091628 7.471917 -1.267794 0.2091628 7.471917 -1.705268 0.2091628 7.471917 -2.292679 0.2091628 7.471917 -3.081414 0.2091628 7.471917 -4.140474 0.2091628 7.471917 -5.562508 0.2091628 7.471917 -7.471917 0.2091628 7.471917 -10.03574 0.2091628 7.471917 -13.47828 0.2091628 7.471917 -18.10068 0.2091628 7.471917 -24.30731 0.2091628 7.471917 -32.64117 0.2091628 7.471917 -43.83129 0.2091628 7.471917 -58.85664 0.2091628 7.471917 --0.0175068 0.2838106 7.471917 --0.01161267 0.2838106 7.471917 --0.005718534 0.2838106 7.471917 -0.0001755984 0.2838106 7.471917 -0.006069731 0.2838106 7.471917 -0.01197402 0.2838106 7.471917 -0.01903886 0.2838106 7.471917 -0.02852504 0.2838106 7.471917 -0.04126244 0.2838106 7.471917 -0.05836535 0.2838106 7.471917 -0.08132997 0.2838106 7.471917 -0.1121653 0.2838106 7.471917 -0.1535689 0.2838106 7.471917 -0.2091628 0.2838106 7.471917 -0.2838106 0.2838106 7.471917 -0.3840425 0.2838106 7.471917 -0.518627 0.2838106 7.471917 -0.6993381 0.2838106 7.471917 -0.9419845 0.2838106 7.471917 -1.267794 0.2838106 7.471917 -1.705268 0.2838106 7.471917 -2.292679 0.2838106 7.471917 -3.081414 0.2838106 7.471917 -4.140474 0.2838106 7.471917 -5.562508 0.2838106 7.471917 -7.471917 0.2838106 7.471917 -10.03574 0.2838106 7.471917 -13.47828 0.2838106 7.471917 -18.10068 0.2838106 7.471917 -24.30731 0.2838106 7.471917 -32.64117 0.2838106 7.471917 -43.83129 0.2838106 7.471917 -58.85664 0.2838106 7.471917 --0.0175068 0.3840425 7.471917 --0.01161267 0.3840425 7.471917 --0.005718534 0.3840425 7.471917 -0.0001755984 0.3840425 7.471917 -0.006069731 0.3840425 7.471917 -0.01197402 0.3840425 7.471917 -0.01903886 0.3840425 7.471917 -0.02852504 0.3840425 7.471917 -0.04126244 0.3840425 7.471917 -0.05836535 0.3840425 7.471917 -0.08132997 0.3840425 7.471917 -0.1121653 0.3840425 7.471917 -0.1535689 0.3840425 7.471917 -0.2091628 0.3840425 7.471917 -0.2838106 0.3840425 7.471917 -0.3840425 0.3840425 7.471917 -0.518627 0.3840425 7.471917 -0.6993381 0.3840425 7.471917 -0.9419845 0.3840425 7.471917 -1.267794 0.3840425 7.471917 -1.705268 0.3840425 7.471917 -2.292679 0.3840425 7.471917 -3.081414 0.3840425 7.471917 -4.140474 0.3840425 7.471917 -5.562508 0.3840425 7.471917 -7.471917 0.3840425 7.471917 -10.03574 0.3840425 7.471917 -13.47828 0.3840425 7.471917 -18.10068 0.3840425 7.471917 -24.30731 0.3840425 7.471917 -32.64117 0.3840425 7.471917 -43.83129 0.3840425 7.471917 -58.85664 0.3840425 7.471917 --0.0175068 0.518627 7.471917 --0.01161267 0.518627 7.471917 --0.005718534 0.518627 7.471917 -0.0001755984 0.518627 7.471917 -0.006069731 0.518627 7.471917 -0.01197402 0.518627 7.471917 -0.01903886 0.518627 7.471917 -0.02852504 0.518627 7.471917 -0.04126244 0.518627 7.471917 -0.05836535 0.518627 7.471917 -0.08132997 0.518627 7.471917 -0.1121653 0.518627 7.471917 -0.1535689 0.518627 7.471917 -0.2091628 0.518627 7.471917 -0.2838106 0.518627 7.471917 -0.3840425 0.518627 7.471917 -0.518627 0.518627 7.471917 -0.6993381 0.518627 7.471917 -0.9419845 0.518627 7.471917 -1.267794 0.518627 7.471917 -1.705268 0.518627 7.471917 -2.292679 0.518627 7.471917 -3.081414 0.518627 7.471917 -4.140474 0.518627 7.471917 -5.562508 0.518627 7.471917 -7.471917 0.518627 7.471917 -10.03574 0.518627 7.471917 -13.47828 0.518627 7.471917 -18.10068 0.518627 7.471917 -24.30731 0.518627 7.471917 -32.64117 0.518627 7.471917 -43.83129 0.518627 7.471917 -58.85664 0.518627 7.471917 --0.0175068 0.6993381 7.471917 --0.01161267 0.6993381 7.471917 --0.005718534 0.6993381 7.471917 -0.0001755984 0.6993381 7.471917 -0.006069731 0.6993381 7.471917 -0.01197402 0.6993381 7.471917 -0.01903886 0.6993381 7.471917 -0.02852504 0.6993381 7.471917 -0.04126244 0.6993381 7.471917 -0.05836535 0.6993381 7.471917 -0.08132997 0.6993381 7.471917 -0.1121653 0.6993381 7.471917 -0.1535689 0.6993381 7.471917 -0.2091628 0.6993381 7.471917 -0.2838106 0.6993381 7.471917 -0.3840425 0.6993381 7.471917 -0.518627 0.6993381 7.471917 -0.6993381 0.6993381 7.471917 -0.9419845 0.6993381 7.471917 -1.267794 0.6993381 7.471917 -1.705268 0.6993381 7.471917 -2.292679 0.6993381 7.471917 -3.081414 0.6993381 7.471917 -4.140474 0.6993381 7.471917 -5.562508 0.6993381 7.471917 -7.471917 0.6993381 7.471917 -10.03574 0.6993381 7.471917 -13.47828 0.6993381 7.471917 -18.10068 0.6993381 7.471917 -24.30731 0.6993381 7.471917 -32.64117 0.6993381 7.471917 -43.83129 0.6993381 7.471917 -58.85664 0.6993381 7.471917 --0.0175068 0.9419845 7.471917 --0.01161267 0.9419845 7.471917 --0.005718534 0.9419845 7.471917 -0.0001755984 0.9419845 7.471917 -0.006069731 0.9419845 7.471917 -0.01197402 0.9419845 7.471917 -0.01903886 0.9419845 7.471917 -0.02852504 0.9419845 7.471917 -0.04126244 0.9419845 7.471917 -0.05836535 0.9419845 7.471917 -0.08132997 0.9419845 7.471917 -0.1121653 0.9419845 7.471917 -0.1535689 0.9419845 7.471917 -0.2091628 0.9419845 7.471917 -0.2838106 0.9419845 7.471917 -0.3840425 0.9419845 7.471917 -0.518627 0.9419845 7.471917 -0.6993381 0.9419845 7.471917 -0.9419845 0.9419845 7.471917 -1.267794 0.9419845 7.471917 -1.705268 0.9419845 7.471917 -2.292679 0.9419845 7.471917 -3.081414 0.9419845 7.471917 -4.140474 0.9419845 7.471917 -5.562508 0.9419845 7.471917 -7.471917 0.9419845 7.471917 -10.03574 0.9419845 7.471917 -13.47828 0.9419845 7.471917 -18.10068 0.9419845 7.471917 -24.30731 0.9419845 7.471917 -32.64117 0.9419845 7.471917 -43.83129 0.9419845 7.471917 -58.85664 0.9419845 7.471917 --0.0175068 1.267794 7.471917 --0.01161267 1.267794 7.471917 --0.005718534 1.267794 7.471917 -0.0001755984 1.267794 7.471917 -0.006069731 1.267794 7.471917 -0.01197402 1.267794 7.471917 -0.01903886 1.267794 7.471917 -0.02852504 1.267794 7.471917 -0.04126244 1.267794 7.471917 -0.05836535 1.267794 7.471917 -0.08132997 1.267794 7.471917 -0.1121653 1.267794 7.471917 -0.1535689 1.267794 7.471917 -0.2091628 1.267794 7.471917 -0.2838106 1.267794 7.471917 -0.3840425 1.267794 7.471917 -0.518627 1.267794 7.471917 -0.6993381 1.267794 7.471917 -0.9419845 1.267794 7.471917 -1.267794 1.267794 7.471917 -1.705268 1.267794 7.471917 -2.292679 1.267794 7.471917 -3.081414 1.267794 7.471917 -4.140474 1.267794 7.471917 -5.562508 1.267794 7.471917 -7.471917 1.267794 7.471917 -10.03574 1.267794 7.471917 -13.47828 1.267794 7.471917 -18.10068 1.267794 7.471917 -24.30731 1.267794 7.471917 -32.64117 1.267794 7.471917 -43.83129 1.267794 7.471917 -58.85664 1.267794 7.471917 --0.0175068 1.705268 7.471917 --0.01161267 1.705268 7.471917 --0.005718534 1.705268 7.471917 -0.0001755984 1.705268 7.471917 -0.006069731 1.705268 7.471917 -0.01197402 1.705268 7.471917 -0.01903886 1.705268 7.471917 -0.02852504 1.705268 7.471917 -0.04126244 1.705268 7.471917 -0.05836535 1.705268 7.471917 -0.08132997 1.705268 7.471917 -0.1121653 1.705268 7.471917 -0.1535689 1.705268 7.471917 -0.2091628 1.705268 7.471917 -0.2838106 1.705268 7.471917 -0.3840425 1.705268 7.471917 -0.518627 1.705268 7.471917 -0.6993381 1.705268 7.471917 -0.9419845 1.705268 7.471917 -1.267794 1.705268 7.471917 -1.705268 1.705268 7.471917 -2.292679 1.705268 7.471917 -3.081414 1.705268 7.471917 -4.140474 1.705268 7.471917 -5.562508 1.705268 7.471917 -7.471917 1.705268 7.471917 -10.03574 1.705268 7.471917 -13.47828 1.705268 7.471917 -18.10068 1.705268 7.471917 -24.30731 1.705268 7.471917 -32.64117 1.705268 7.471917 -43.83129 1.705268 7.471917 -58.85664 1.705268 7.471917 --0.0175068 2.292679 7.471917 --0.01161267 2.292679 7.471917 --0.005718534 2.292679 7.471917 -0.0001755984 2.292679 7.471917 -0.006069731 2.292679 7.471917 -0.01197402 2.292679 7.471917 -0.01903886 2.292679 7.471917 -0.02852504 2.292679 7.471917 -0.04126244 2.292679 7.471917 -0.05836535 2.292679 7.471917 -0.08132997 2.292679 7.471917 -0.1121653 2.292679 7.471917 -0.1535689 2.292679 7.471917 -0.2091628 2.292679 7.471917 -0.2838106 2.292679 7.471917 -0.3840425 2.292679 7.471917 -0.518627 2.292679 7.471917 -0.6993381 2.292679 7.471917 -0.9419845 2.292679 7.471917 -1.267794 2.292679 7.471917 -1.705268 2.292679 7.471917 -2.292679 2.292679 7.471917 -3.081414 2.292679 7.471917 -4.140474 2.292679 7.471917 -5.562508 2.292679 7.471917 -7.471917 2.292679 7.471917 -10.03574 2.292679 7.471917 -13.47828 2.292679 7.471917 -18.10068 2.292679 7.471917 -24.30731 2.292679 7.471917 -32.64117 2.292679 7.471917 -43.83129 2.292679 7.471917 -58.85664 2.292679 7.471917 --0.0175068 3.081414 7.471917 --0.01161267 3.081414 7.471917 --0.005718534 3.081414 7.471917 -0.0001755984 3.081414 7.471917 -0.006069731 3.081414 7.471917 -0.01197402 3.081414 7.471917 -0.01903886 3.081414 7.471917 -0.02852504 3.081414 7.471917 -0.04126244 3.081414 7.471917 -0.05836535 3.081414 7.471917 -0.08132997 3.081414 7.471917 -0.1121653 3.081414 7.471917 -0.1535689 3.081414 7.471917 -0.2091628 3.081414 7.471917 -0.2838106 3.081414 7.471917 -0.3840425 3.081414 7.471917 -0.518627 3.081414 7.471917 -0.6993381 3.081414 7.471917 -0.9419845 3.081414 7.471917 -1.267794 3.081414 7.471917 -1.705268 3.081414 7.471917 -2.292679 3.081414 7.471917 -3.081414 3.081414 7.471917 -4.140474 3.081414 7.471917 -5.562508 3.081414 7.471917 -7.471917 3.081414 7.471917 -10.03574 3.081414 7.471917 -13.47828 3.081414 7.471917 -18.10068 3.081414 7.471917 -24.30731 3.081414 7.471917 -32.64117 3.081414 7.471917 -43.83129 3.081414 7.471917 -58.85664 3.081414 7.471917 --0.0175068 4.140474 7.471917 --0.01161267 4.140474 7.471917 --0.005718534 4.140474 7.471917 -0.0001755984 4.140474 7.471917 -0.006069731 4.140474 7.471917 -0.01197402 4.140474 7.471917 -0.01903886 4.140474 7.471917 -0.02852504 4.140474 7.471917 -0.04126244 4.140474 7.471917 -0.05836535 4.140474 7.471917 -0.08132997 4.140474 7.471917 -0.1121653 4.140474 7.471917 -0.1535689 4.140474 7.471917 -0.2091628 4.140474 7.471917 -0.2838106 4.140474 7.471917 -0.3840425 4.140474 7.471917 -0.518627 4.140474 7.471917 -0.6993381 4.140474 7.471917 -0.9419845 4.140474 7.471917 -1.267794 4.140474 7.471917 -1.705268 4.140474 7.471917 -2.292679 4.140474 7.471917 -3.081414 4.140474 7.471917 -4.140474 4.140474 7.471917 -5.562508 4.140474 7.471917 -7.471917 4.140474 7.471917 -10.03574 4.140474 7.471917 -13.47828 4.140474 7.471917 -18.10068 4.140474 7.471917 -24.30731 4.140474 7.471917 -32.64117 4.140474 7.471917 -43.83129 4.140474 7.471917 -58.85664 4.140474 7.471917 --0.0175068 5.562508 7.471917 --0.01161267 5.562508 7.471917 --0.005718534 5.562508 7.471917 -0.0001755984 5.562508 7.471917 -0.006069731 5.562508 7.471917 -0.01197402 5.562508 7.471917 -0.01903886 5.562508 7.471917 -0.02852504 5.562508 7.471917 -0.04126244 5.562508 7.471917 -0.05836535 5.562508 7.471917 -0.08132997 5.562508 7.471917 -0.1121653 5.562508 7.471917 -0.1535689 5.562508 7.471917 -0.2091628 5.562508 7.471917 -0.2838106 5.562508 7.471917 -0.3840425 5.562508 7.471917 -0.518627 5.562508 7.471917 -0.6993381 5.562508 7.471917 -0.9419845 5.562508 7.471917 -1.267794 5.562508 7.471917 -1.705268 5.562508 7.471917 -2.292679 5.562508 7.471917 -3.081414 5.562508 7.471917 -4.140474 5.562508 7.471917 -5.562508 5.562508 7.471917 -7.471917 5.562508 7.471917 -10.03574 5.562508 7.471917 -13.47828 5.562508 7.471917 -18.10068 5.562508 7.471917 -24.30731 5.562508 7.471917 -32.64117 5.562508 7.471917 -43.83129 5.562508 7.471917 -58.85664 5.562508 7.471917 --0.0175068 7.471917 7.471917 --0.01161267 7.471917 7.471917 --0.005718534 7.471917 7.471917 -0.0001755984 7.471917 7.471917 -0.006069731 7.471917 7.471917 -0.01197402 7.471917 7.471917 -0.01903886 7.471917 7.471917 -0.02852504 7.471917 7.471917 -0.04126244 7.471917 7.471917 -0.05836535 7.471917 7.471917 -0.08132997 7.471917 7.471917 -0.1121653 7.471917 7.471917 -0.1535689 7.471917 7.471917 -0.2091628 7.471917 7.471917 -0.2838106 7.471917 7.471917 -0.3840425 7.471917 7.471917 -0.518627 7.471917 7.471917 -0.6993381 7.471917 7.471917 -0.9419845 7.471917 7.471917 -1.267794 7.471917 7.471917 -1.705268 7.471917 7.471917 -2.292679 7.471917 7.471917 -3.081414 7.471917 7.471917 -4.140474 7.471917 7.471917 -5.562508 7.471917 7.471917 -7.471917 7.471917 7.471917 -10.03574 7.471917 7.471917 -13.47828 7.471917 7.471917 -18.10068 7.471917 7.471917 -24.30731 7.471917 7.471917 -32.64117 7.471917 7.471917 -43.83129 7.471917 7.471917 -58.85664 7.471917 7.471917 --0.0175068 10.03574 7.471917 --0.01161267 10.03574 7.471917 --0.005718534 10.03574 7.471917 -0.0001755984 10.03574 7.471917 -0.006069731 10.03574 7.471917 -0.01197402 10.03574 7.471917 -0.01903886 10.03574 7.471917 -0.02852504 10.03574 7.471917 -0.04126244 10.03574 7.471917 -0.05836535 10.03574 7.471917 -0.08132997 10.03574 7.471917 -0.1121653 10.03574 7.471917 -0.1535689 10.03574 7.471917 -0.2091628 10.03574 7.471917 -0.2838106 10.03574 7.471917 -0.3840425 10.03574 7.471917 -0.518627 10.03574 7.471917 -0.6993381 10.03574 7.471917 -0.9419845 10.03574 7.471917 -1.267794 10.03574 7.471917 -1.705268 10.03574 7.471917 -2.292679 10.03574 7.471917 -3.081414 10.03574 7.471917 -4.140474 10.03574 7.471917 -5.562508 10.03574 7.471917 -7.471917 10.03574 7.471917 -10.03574 10.03574 7.471917 -13.47828 10.03574 7.471917 -18.10068 10.03574 7.471917 -24.30731 10.03574 7.471917 -32.64117 10.03574 7.471917 -43.83129 10.03574 7.471917 -58.85664 10.03574 7.471917 --0.0175068 13.47828 7.471917 --0.01161267 13.47828 7.471917 --0.005718534 13.47828 7.471917 -0.0001755984 13.47828 7.471917 -0.006069731 13.47828 7.471917 -0.01197402 13.47828 7.471917 -0.01903886 13.47828 7.471917 -0.02852504 13.47828 7.471917 -0.04126244 13.47828 7.471917 -0.05836535 13.47828 7.471917 -0.08132997 13.47828 7.471917 -0.1121653 13.47828 7.471917 -0.1535689 13.47828 7.471917 -0.2091628 13.47828 7.471917 -0.2838106 13.47828 7.471917 -0.3840425 13.47828 7.471917 -0.518627 13.47828 7.471917 -0.6993381 13.47828 7.471917 -0.9419845 13.47828 7.471917 -1.267794 13.47828 7.471917 -1.705268 13.47828 7.471917 -2.292679 13.47828 7.471917 -3.081414 13.47828 7.471917 -4.140474 13.47828 7.471917 -5.562508 13.47828 7.471917 -7.471917 13.47828 7.471917 -10.03574 13.47828 7.471917 -13.47828 13.47828 7.471917 -18.10068 13.47828 7.471917 -24.30731 13.47828 7.471917 -32.64117 13.47828 7.471917 -43.83129 13.47828 7.471917 -58.85664 13.47828 7.471917 --0.0175068 18.10068 7.471917 --0.01161267 18.10068 7.471917 --0.005718534 18.10068 7.471917 -0.0001755984 18.10068 7.471917 -0.006069731 18.10068 7.471917 -0.01197402 18.10068 7.471917 -0.01903886 18.10068 7.471917 -0.02852504 18.10068 7.471917 -0.04126244 18.10068 7.471917 -0.05836535 18.10068 7.471917 -0.08132997 18.10068 7.471917 -0.1121653 18.10068 7.471917 -0.1535689 18.10068 7.471917 -0.2091628 18.10068 7.471917 -0.2838106 18.10068 7.471917 -0.3840425 18.10068 7.471917 -0.518627 18.10068 7.471917 -0.6993381 18.10068 7.471917 -0.9419845 18.10068 7.471917 -1.267794 18.10068 7.471917 -1.705268 18.10068 7.471917 -2.292679 18.10068 7.471917 -3.081414 18.10068 7.471917 -4.140474 18.10068 7.471917 -5.562508 18.10068 7.471917 -7.471917 18.10068 7.471917 -10.03574 18.10068 7.471917 -13.47828 18.10068 7.471917 -18.10068 18.10068 7.471917 -24.30731 18.10068 7.471917 -32.64117 18.10068 7.471917 -43.83129 18.10068 7.471917 -58.85664 18.10068 7.471917 --0.0175068 24.30731 7.471917 --0.01161267 24.30731 7.471917 --0.005718534 24.30731 7.471917 -0.0001755984 24.30731 7.471917 -0.006069731 24.30731 7.471917 -0.01197402 24.30731 7.471917 -0.01903886 24.30731 7.471917 -0.02852504 24.30731 7.471917 -0.04126244 24.30731 7.471917 -0.05836535 24.30731 7.471917 -0.08132997 24.30731 7.471917 -0.1121653 24.30731 7.471917 -0.1535689 24.30731 7.471917 -0.2091628 24.30731 7.471917 -0.2838106 24.30731 7.471917 -0.3840425 24.30731 7.471917 -0.518627 24.30731 7.471917 -0.6993381 24.30731 7.471917 -0.9419845 24.30731 7.471917 -1.267794 24.30731 7.471917 -1.705268 24.30731 7.471917 -2.292679 24.30731 7.471917 -3.081414 24.30731 7.471917 -4.140474 24.30731 7.471917 -5.562508 24.30731 7.471917 -7.471917 24.30731 7.471917 -10.03574 24.30731 7.471917 -13.47828 24.30731 7.471917 -18.10068 24.30731 7.471917 -24.30731 24.30731 7.471917 -32.64117 24.30731 7.471917 -43.83129 24.30731 7.471917 -58.85664 24.30731 7.471917 --0.0175068 32.64117 7.471917 --0.01161267 32.64117 7.471917 --0.005718534 32.64117 7.471917 -0.0001755984 32.64117 7.471917 -0.006069731 32.64117 7.471917 -0.01197402 32.64117 7.471917 -0.01903886 32.64117 7.471917 -0.02852504 32.64117 7.471917 -0.04126244 32.64117 7.471917 -0.05836535 32.64117 7.471917 -0.08132997 32.64117 7.471917 -0.1121653 32.64117 7.471917 -0.1535689 32.64117 7.471917 -0.2091628 32.64117 7.471917 -0.2838106 32.64117 7.471917 -0.3840425 32.64117 7.471917 -0.518627 32.64117 7.471917 -0.6993381 32.64117 7.471917 -0.9419845 32.64117 7.471917 -1.267794 32.64117 7.471917 -1.705268 32.64117 7.471917 -2.292679 32.64117 7.471917 -3.081414 32.64117 7.471917 -4.140474 32.64117 7.471917 -5.562508 32.64117 7.471917 -7.471917 32.64117 7.471917 -10.03574 32.64117 7.471917 -13.47828 32.64117 7.471917 -18.10068 32.64117 7.471917 -24.30731 32.64117 7.471917 -32.64117 32.64117 7.471917 -43.83129 32.64117 7.471917 -58.85664 32.64117 7.471917 --0.0175068 43.83129 7.471917 --0.01161267 43.83129 7.471917 --0.005718534 43.83129 7.471917 -0.0001755984 43.83129 7.471917 -0.006069731 43.83129 7.471917 -0.01197402 43.83129 7.471917 -0.01903886 43.83129 7.471917 -0.02852504 43.83129 7.471917 -0.04126244 43.83129 7.471917 -0.05836535 43.83129 7.471917 -0.08132997 43.83129 7.471917 -0.1121653 43.83129 7.471917 -0.1535689 43.83129 7.471917 -0.2091628 43.83129 7.471917 -0.2838106 43.83129 7.471917 -0.3840425 43.83129 7.471917 -0.518627 43.83129 7.471917 -0.6993381 43.83129 7.471917 -0.9419845 43.83129 7.471917 -1.267794 43.83129 7.471917 -1.705268 43.83129 7.471917 -2.292679 43.83129 7.471917 -3.081414 43.83129 7.471917 -4.140474 43.83129 7.471917 -5.562508 43.83129 7.471917 -7.471917 43.83129 7.471917 -10.03574 43.83129 7.471917 -13.47828 43.83129 7.471917 -18.10068 43.83129 7.471917 -24.30731 43.83129 7.471917 -32.64117 43.83129 7.471917 -43.83129 43.83129 7.471917 -58.85664 43.83129 7.471917 --0.0175068 58.85664 7.471917 --0.01161267 58.85664 7.471917 --0.005718534 58.85664 7.471917 -0.0001755984 58.85664 7.471917 -0.006069731 58.85664 7.471917 -0.01197402 58.85664 7.471917 -0.01903886 58.85664 7.471917 -0.02852504 58.85664 7.471917 -0.04126244 58.85664 7.471917 -0.05836535 58.85664 7.471917 -0.08132997 58.85664 7.471917 -0.1121653 58.85664 7.471917 -0.1535689 58.85664 7.471917 -0.2091628 58.85664 7.471917 -0.2838106 58.85664 7.471917 -0.3840425 58.85664 7.471917 -0.518627 58.85664 7.471917 -0.6993381 58.85664 7.471917 -0.9419845 58.85664 7.471917 -1.267794 58.85664 7.471917 -1.705268 58.85664 7.471917 -2.292679 58.85664 7.471917 -3.081414 58.85664 7.471917 -4.140474 58.85664 7.471917 -5.562508 58.85664 7.471917 -7.471917 58.85664 7.471917 -10.03574 58.85664 7.471917 -13.47828 58.85664 7.471917 -18.10068 58.85664 7.471917 -24.30731 58.85664 7.471917 -32.64117 58.85664 7.471917 -43.83129 58.85664 7.471917 -58.85664 58.85664 7.471917 --0.0175068 -0.0175068 10.03574 --0.01161267 -0.0175068 10.03574 --0.005718534 -0.0175068 10.03574 -0.0001755984 -0.0175068 10.03574 -0.006069731 -0.0175068 10.03574 -0.01197402 -0.0175068 10.03574 -0.01903886 -0.0175068 10.03574 -0.02852504 -0.0175068 10.03574 -0.04126244 -0.0175068 10.03574 -0.05836535 -0.0175068 10.03574 -0.08132997 -0.0175068 10.03574 -0.1121653 -0.0175068 10.03574 -0.1535689 -0.0175068 10.03574 -0.2091628 -0.0175068 10.03574 -0.2838106 -0.0175068 10.03574 -0.3840425 -0.0175068 10.03574 -0.518627 -0.0175068 10.03574 -0.6993381 -0.0175068 10.03574 -0.9419845 -0.0175068 10.03574 -1.267794 -0.0175068 10.03574 -1.705268 -0.0175068 10.03574 -2.292679 -0.0175068 10.03574 -3.081414 -0.0175068 10.03574 -4.140474 -0.0175068 10.03574 -5.562508 -0.0175068 10.03574 -7.471917 -0.0175068 10.03574 -10.03574 -0.0175068 10.03574 -13.47828 -0.0175068 10.03574 -18.10068 -0.0175068 10.03574 -24.30731 -0.0175068 10.03574 -32.64117 -0.0175068 10.03574 -43.83129 -0.0175068 10.03574 -58.85664 -0.0175068 10.03574 --0.0175068 -0.01161267 10.03574 --0.01161267 -0.01161267 10.03574 --0.005718534 -0.01161267 10.03574 -0.0001755984 -0.01161267 10.03574 -0.006069731 -0.01161267 10.03574 -0.01197402 -0.01161267 10.03574 -0.01903886 -0.01161267 10.03574 -0.02852504 -0.01161267 10.03574 -0.04126244 -0.01161267 10.03574 -0.05836535 -0.01161267 10.03574 -0.08132997 -0.01161267 10.03574 -0.1121653 -0.01161267 10.03574 -0.1535689 -0.01161267 10.03574 -0.2091628 -0.01161267 10.03574 -0.2838106 -0.01161267 10.03574 -0.3840425 -0.01161267 10.03574 -0.518627 -0.01161267 10.03574 -0.6993381 -0.01161267 10.03574 -0.9419845 -0.01161267 10.03574 -1.267794 -0.01161267 10.03574 -1.705268 -0.01161267 10.03574 -2.292679 -0.01161267 10.03574 -3.081414 -0.01161267 10.03574 -4.140474 -0.01161267 10.03574 -5.562508 -0.01161267 10.03574 -7.471917 -0.01161267 10.03574 -10.03574 -0.01161267 10.03574 -13.47828 -0.01161267 10.03574 -18.10068 -0.01161267 10.03574 -24.30731 -0.01161267 10.03574 -32.64117 -0.01161267 10.03574 -43.83129 -0.01161267 10.03574 -58.85664 -0.01161267 10.03574 --0.0175068 -0.005718534 10.03574 --0.01161267 -0.005718534 10.03574 --0.005718534 -0.005718534 10.03574 -0.0001755984 -0.005718534 10.03574 -0.006069731 -0.005718534 10.03574 -0.01197402 -0.005718534 10.03574 -0.01903886 -0.005718534 10.03574 -0.02852504 -0.005718534 10.03574 -0.04126244 -0.005718534 10.03574 -0.05836535 -0.005718534 10.03574 -0.08132997 -0.005718534 10.03574 -0.1121653 -0.005718534 10.03574 -0.1535689 -0.005718534 10.03574 -0.2091628 -0.005718534 10.03574 -0.2838106 -0.005718534 10.03574 -0.3840425 -0.005718534 10.03574 -0.518627 -0.005718534 10.03574 -0.6993381 -0.005718534 10.03574 -0.9419845 -0.005718534 10.03574 -1.267794 -0.005718534 10.03574 -1.705268 -0.005718534 10.03574 -2.292679 -0.005718534 10.03574 -3.081414 -0.005718534 10.03574 -4.140474 -0.005718534 10.03574 -5.562508 -0.005718534 10.03574 -7.471917 -0.005718534 10.03574 -10.03574 -0.005718534 10.03574 -13.47828 -0.005718534 10.03574 -18.10068 -0.005718534 10.03574 -24.30731 -0.005718534 10.03574 -32.64117 -0.005718534 10.03574 -43.83129 -0.005718534 10.03574 -58.85664 -0.005718534 10.03574 --0.0175068 0.0001755984 10.03574 --0.01161267 0.0001755984 10.03574 --0.005718534 0.0001755984 10.03574 -0.0001755984 0.0001755984 10.03574 -0.006069731 0.0001755984 10.03574 -0.01197402 0.0001755984 10.03574 -0.01903886 0.0001755984 10.03574 -0.02852504 0.0001755984 10.03574 -0.04126244 0.0001755984 10.03574 -0.05836535 0.0001755984 10.03574 -0.08132997 0.0001755984 10.03574 -0.1121653 0.0001755984 10.03574 -0.1535689 0.0001755984 10.03574 -0.2091628 0.0001755984 10.03574 -0.2838106 0.0001755984 10.03574 -0.3840425 0.0001755984 10.03574 -0.518627 0.0001755984 10.03574 -0.6993381 0.0001755984 10.03574 -0.9419845 0.0001755984 10.03574 -1.267794 0.0001755984 10.03574 -1.705268 0.0001755984 10.03574 -2.292679 0.0001755984 10.03574 -3.081414 0.0001755984 10.03574 -4.140474 0.0001755984 10.03574 -5.562508 0.0001755984 10.03574 -7.471917 0.0001755984 10.03574 -10.03574 0.0001755984 10.03574 -13.47828 0.0001755984 10.03574 -18.10068 0.0001755984 10.03574 -24.30731 0.0001755984 10.03574 -32.64117 0.0001755984 10.03574 -43.83129 0.0001755984 10.03574 -58.85664 0.0001755984 10.03574 --0.0175068 0.006069731 10.03574 --0.01161267 0.006069731 10.03574 --0.005718534 0.006069731 10.03574 -0.0001755984 0.006069731 10.03574 -0.006069731 0.006069731 10.03574 -0.01197402 0.006069731 10.03574 -0.01903886 0.006069731 10.03574 -0.02852504 0.006069731 10.03574 -0.04126244 0.006069731 10.03574 -0.05836535 0.006069731 10.03574 -0.08132997 0.006069731 10.03574 -0.1121653 0.006069731 10.03574 -0.1535689 0.006069731 10.03574 -0.2091628 0.006069731 10.03574 -0.2838106 0.006069731 10.03574 -0.3840425 0.006069731 10.03574 -0.518627 0.006069731 10.03574 -0.6993381 0.006069731 10.03574 -0.9419845 0.006069731 10.03574 -1.267794 0.006069731 10.03574 -1.705268 0.006069731 10.03574 -2.292679 0.006069731 10.03574 -3.081414 0.006069731 10.03574 -4.140474 0.006069731 10.03574 -5.562508 0.006069731 10.03574 -7.471917 0.006069731 10.03574 -10.03574 0.006069731 10.03574 -13.47828 0.006069731 10.03574 -18.10068 0.006069731 10.03574 -24.30731 0.006069731 10.03574 -32.64117 0.006069731 10.03574 -43.83129 0.006069731 10.03574 -58.85664 0.006069731 10.03574 --0.0175068 0.01197402 10.03574 --0.01161267 0.01197402 10.03574 --0.005718534 0.01197402 10.03574 -0.0001755984 0.01197402 10.03574 -0.006069731 0.01197402 10.03574 -0.01197402 0.01197402 10.03574 -0.01903886 0.01197402 10.03574 -0.02852504 0.01197402 10.03574 -0.04126244 0.01197402 10.03574 -0.05836535 0.01197402 10.03574 -0.08132997 0.01197402 10.03574 -0.1121653 0.01197402 10.03574 -0.1535689 0.01197402 10.03574 -0.2091628 0.01197402 10.03574 -0.2838106 0.01197402 10.03574 -0.3840425 0.01197402 10.03574 -0.518627 0.01197402 10.03574 -0.6993381 0.01197402 10.03574 -0.9419845 0.01197402 10.03574 -1.267794 0.01197402 10.03574 -1.705268 0.01197402 10.03574 -2.292679 0.01197402 10.03574 -3.081414 0.01197402 10.03574 -4.140474 0.01197402 10.03574 -5.562508 0.01197402 10.03574 -7.471917 0.01197402 10.03574 -10.03574 0.01197402 10.03574 -13.47828 0.01197402 10.03574 -18.10068 0.01197402 10.03574 -24.30731 0.01197402 10.03574 -32.64117 0.01197402 10.03574 -43.83129 0.01197402 10.03574 -58.85664 0.01197402 10.03574 --0.0175068 0.01903886 10.03574 --0.01161267 0.01903886 10.03574 --0.005718534 0.01903886 10.03574 -0.0001755984 0.01903886 10.03574 -0.006069731 0.01903886 10.03574 -0.01197402 0.01903886 10.03574 -0.01903886 0.01903886 10.03574 -0.02852504 0.01903886 10.03574 -0.04126244 0.01903886 10.03574 -0.05836535 0.01903886 10.03574 -0.08132997 0.01903886 10.03574 -0.1121653 0.01903886 10.03574 -0.1535689 0.01903886 10.03574 -0.2091628 0.01903886 10.03574 -0.2838106 0.01903886 10.03574 -0.3840425 0.01903886 10.03574 -0.518627 0.01903886 10.03574 -0.6993381 0.01903886 10.03574 -0.9419845 0.01903886 10.03574 -1.267794 0.01903886 10.03574 -1.705268 0.01903886 10.03574 -2.292679 0.01903886 10.03574 -3.081414 0.01903886 10.03574 -4.140474 0.01903886 10.03574 -5.562508 0.01903886 10.03574 -7.471917 0.01903886 10.03574 -10.03574 0.01903886 10.03574 -13.47828 0.01903886 10.03574 -18.10068 0.01903886 10.03574 -24.30731 0.01903886 10.03574 -32.64117 0.01903886 10.03574 -43.83129 0.01903886 10.03574 -58.85664 0.01903886 10.03574 --0.0175068 0.02852504 10.03574 --0.01161267 0.02852504 10.03574 --0.005718534 0.02852504 10.03574 -0.0001755984 0.02852504 10.03574 -0.006069731 0.02852504 10.03574 -0.01197402 0.02852504 10.03574 -0.01903886 0.02852504 10.03574 -0.02852504 0.02852504 10.03574 -0.04126244 0.02852504 10.03574 -0.05836535 0.02852504 10.03574 -0.08132997 0.02852504 10.03574 -0.1121653 0.02852504 10.03574 -0.1535689 0.02852504 10.03574 -0.2091628 0.02852504 10.03574 -0.2838106 0.02852504 10.03574 -0.3840425 0.02852504 10.03574 -0.518627 0.02852504 10.03574 -0.6993381 0.02852504 10.03574 -0.9419845 0.02852504 10.03574 -1.267794 0.02852504 10.03574 -1.705268 0.02852504 10.03574 -2.292679 0.02852504 10.03574 -3.081414 0.02852504 10.03574 -4.140474 0.02852504 10.03574 -5.562508 0.02852504 10.03574 -7.471917 0.02852504 10.03574 -10.03574 0.02852504 10.03574 -13.47828 0.02852504 10.03574 -18.10068 0.02852504 10.03574 -24.30731 0.02852504 10.03574 -32.64117 0.02852504 10.03574 -43.83129 0.02852504 10.03574 -58.85664 0.02852504 10.03574 --0.0175068 0.04126244 10.03574 --0.01161267 0.04126244 10.03574 --0.005718534 0.04126244 10.03574 -0.0001755984 0.04126244 10.03574 -0.006069731 0.04126244 10.03574 -0.01197402 0.04126244 10.03574 -0.01903886 0.04126244 10.03574 -0.02852504 0.04126244 10.03574 -0.04126244 0.04126244 10.03574 -0.05836535 0.04126244 10.03574 -0.08132997 0.04126244 10.03574 -0.1121653 0.04126244 10.03574 -0.1535689 0.04126244 10.03574 -0.2091628 0.04126244 10.03574 -0.2838106 0.04126244 10.03574 -0.3840425 0.04126244 10.03574 -0.518627 0.04126244 10.03574 -0.6993381 0.04126244 10.03574 -0.9419845 0.04126244 10.03574 -1.267794 0.04126244 10.03574 -1.705268 0.04126244 10.03574 -2.292679 0.04126244 10.03574 -3.081414 0.04126244 10.03574 -4.140474 0.04126244 10.03574 -5.562508 0.04126244 10.03574 -7.471917 0.04126244 10.03574 -10.03574 0.04126244 10.03574 -13.47828 0.04126244 10.03574 -18.10068 0.04126244 10.03574 -24.30731 0.04126244 10.03574 -32.64117 0.04126244 10.03574 -43.83129 0.04126244 10.03574 -58.85664 0.04126244 10.03574 --0.0175068 0.05836535 10.03574 --0.01161267 0.05836535 10.03574 --0.005718534 0.05836535 10.03574 -0.0001755984 0.05836535 10.03574 -0.006069731 0.05836535 10.03574 -0.01197402 0.05836535 10.03574 -0.01903886 0.05836535 10.03574 -0.02852504 0.05836535 10.03574 -0.04126244 0.05836535 10.03574 -0.05836535 0.05836535 10.03574 -0.08132997 0.05836535 10.03574 -0.1121653 0.05836535 10.03574 -0.1535689 0.05836535 10.03574 -0.2091628 0.05836535 10.03574 -0.2838106 0.05836535 10.03574 -0.3840425 0.05836535 10.03574 -0.518627 0.05836535 10.03574 -0.6993381 0.05836535 10.03574 -0.9419845 0.05836535 10.03574 -1.267794 0.05836535 10.03574 -1.705268 0.05836535 10.03574 -2.292679 0.05836535 10.03574 -3.081414 0.05836535 10.03574 -4.140474 0.05836535 10.03574 -5.562508 0.05836535 10.03574 -7.471917 0.05836535 10.03574 -10.03574 0.05836535 10.03574 -13.47828 0.05836535 10.03574 -18.10068 0.05836535 10.03574 -24.30731 0.05836535 10.03574 -32.64117 0.05836535 10.03574 -43.83129 0.05836535 10.03574 -58.85664 0.05836535 10.03574 --0.0175068 0.08132997 10.03574 --0.01161267 0.08132997 10.03574 --0.005718534 0.08132997 10.03574 -0.0001755984 0.08132997 10.03574 -0.006069731 0.08132997 10.03574 -0.01197402 0.08132997 10.03574 -0.01903886 0.08132997 10.03574 -0.02852504 0.08132997 10.03574 -0.04126244 0.08132997 10.03574 -0.05836535 0.08132997 10.03574 -0.08132997 0.08132997 10.03574 -0.1121653 0.08132997 10.03574 -0.1535689 0.08132997 10.03574 -0.2091628 0.08132997 10.03574 -0.2838106 0.08132997 10.03574 -0.3840425 0.08132997 10.03574 -0.518627 0.08132997 10.03574 -0.6993381 0.08132997 10.03574 -0.9419845 0.08132997 10.03574 -1.267794 0.08132997 10.03574 -1.705268 0.08132997 10.03574 -2.292679 0.08132997 10.03574 -3.081414 0.08132997 10.03574 -4.140474 0.08132997 10.03574 -5.562508 0.08132997 10.03574 -7.471917 0.08132997 10.03574 -10.03574 0.08132997 10.03574 -13.47828 0.08132997 10.03574 -18.10068 0.08132997 10.03574 -24.30731 0.08132997 10.03574 -32.64117 0.08132997 10.03574 -43.83129 0.08132997 10.03574 -58.85664 0.08132997 10.03574 --0.0175068 0.1121653 10.03574 --0.01161267 0.1121653 10.03574 --0.005718534 0.1121653 10.03574 -0.0001755984 0.1121653 10.03574 -0.006069731 0.1121653 10.03574 -0.01197402 0.1121653 10.03574 -0.01903886 0.1121653 10.03574 -0.02852504 0.1121653 10.03574 -0.04126244 0.1121653 10.03574 -0.05836535 0.1121653 10.03574 -0.08132997 0.1121653 10.03574 -0.1121653 0.1121653 10.03574 -0.1535689 0.1121653 10.03574 -0.2091628 0.1121653 10.03574 -0.2838106 0.1121653 10.03574 -0.3840425 0.1121653 10.03574 -0.518627 0.1121653 10.03574 -0.6993381 0.1121653 10.03574 -0.9419845 0.1121653 10.03574 -1.267794 0.1121653 10.03574 -1.705268 0.1121653 10.03574 -2.292679 0.1121653 10.03574 -3.081414 0.1121653 10.03574 -4.140474 0.1121653 10.03574 -5.562508 0.1121653 10.03574 -7.471917 0.1121653 10.03574 -10.03574 0.1121653 10.03574 -13.47828 0.1121653 10.03574 -18.10068 0.1121653 10.03574 -24.30731 0.1121653 10.03574 -32.64117 0.1121653 10.03574 -43.83129 0.1121653 10.03574 -58.85664 0.1121653 10.03574 --0.0175068 0.1535689 10.03574 --0.01161267 0.1535689 10.03574 --0.005718534 0.1535689 10.03574 -0.0001755984 0.1535689 10.03574 -0.006069731 0.1535689 10.03574 -0.01197402 0.1535689 10.03574 -0.01903886 0.1535689 10.03574 -0.02852504 0.1535689 10.03574 -0.04126244 0.1535689 10.03574 -0.05836535 0.1535689 10.03574 -0.08132997 0.1535689 10.03574 -0.1121653 0.1535689 10.03574 -0.1535689 0.1535689 10.03574 -0.2091628 0.1535689 10.03574 -0.2838106 0.1535689 10.03574 -0.3840425 0.1535689 10.03574 -0.518627 0.1535689 10.03574 -0.6993381 0.1535689 10.03574 -0.9419845 0.1535689 10.03574 -1.267794 0.1535689 10.03574 -1.705268 0.1535689 10.03574 -2.292679 0.1535689 10.03574 -3.081414 0.1535689 10.03574 -4.140474 0.1535689 10.03574 -5.562508 0.1535689 10.03574 -7.471917 0.1535689 10.03574 -10.03574 0.1535689 10.03574 -13.47828 0.1535689 10.03574 -18.10068 0.1535689 10.03574 -24.30731 0.1535689 10.03574 -32.64117 0.1535689 10.03574 -43.83129 0.1535689 10.03574 -58.85664 0.1535689 10.03574 --0.0175068 0.2091628 10.03574 --0.01161267 0.2091628 10.03574 --0.005718534 0.2091628 10.03574 -0.0001755984 0.2091628 10.03574 -0.006069731 0.2091628 10.03574 -0.01197402 0.2091628 10.03574 -0.01903886 0.2091628 10.03574 -0.02852504 0.2091628 10.03574 -0.04126244 0.2091628 10.03574 -0.05836535 0.2091628 10.03574 -0.08132997 0.2091628 10.03574 -0.1121653 0.2091628 10.03574 -0.1535689 0.2091628 10.03574 -0.2091628 0.2091628 10.03574 -0.2838106 0.2091628 10.03574 -0.3840425 0.2091628 10.03574 -0.518627 0.2091628 10.03574 -0.6993381 0.2091628 10.03574 -0.9419845 0.2091628 10.03574 -1.267794 0.2091628 10.03574 -1.705268 0.2091628 10.03574 -2.292679 0.2091628 10.03574 -3.081414 0.2091628 10.03574 -4.140474 0.2091628 10.03574 -5.562508 0.2091628 10.03574 -7.471917 0.2091628 10.03574 -10.03574 0.2091628 10.03574 -13.47828 0.2091628 10.03574 -18.10068 0.2091628 10.03574 -24.30731 0.2091628 10.03574 -32.64117 0.2091628 10.03574 -43.83129 0.2091628 10.03574 -58.85664 0.2091628 10.03574 --0.0175068 0.2838106 10.03574 --0.01161267 0.2838106 10.03574 --0.005718534 0.2838106 10.03574 -0.0001755984 0.2838106 10.03574 -0.006069731 0.2838106 10.03574 -0.01197402 0.2838106 10.03574 -0.01903886 0.2838106 10.03574 -0.02852504 0.2838106 10.03574 -0.04126244 0.2838106 10.03574 -0.05836535 0.2838106 10.03574 -0.08132997 0.2838106 10.03574 -0.1121653 0.2838106 10.03574 -0.1535689 0.2838106 10.03574 -0.2091628 0.2838106 10.03574 -0.2838106 0.2838106 10.03574 -0.3840425 0.2838106 10.03574 -0.518627 0.2838106 10.03574 -0.6993381 0.2838106 10.03574 -0.9419845 0.2838106 10.03574 -1.267794 0.2838106 10.03574 -1.705268 0.2838106 10.03574 -2.292679 0.2838106 10.03574 -3.081414 0.2838106 10.03574 -4.140474 0.2838106 10.03574 -5.562508 0.2838106 10.03574 -7.471917 0.2838106 10.03574 -10.03574 0.2838106 10.03574 -13.47828 0.2838106 10.03574 -18.10068 0.2838106 10.03574 -24.30731 0.2838106 10.03574 -32.64117 0.2838106 10.03574 -43.83129 0.2838106 10.03574 -58.85664 0.2838106 10.03574 --0.0175068 0.3840425 10.03574 --0.01161267 0.3840425 10.03574 --0.005718534 0.3840425 10.03574 -0.0001755984 0.3840425 10.03574 -0.006069731 0.3840425 10.03574 -0.01197402 0.3840425 10.03574 -0.01903886 0.3840425 10.03574 -0.02852504 0.3840425 10.03574 -0.04126244 0.3840425 10.03574 -0.05836535 0.3840425 10.03574 -0.08132997 0.3840425 10.03574 -0.1121653 0.3840425 10.03574 -0.1535689 0.3840425 10.03574 -0.2091628 0.3840425 10.03574 -0.2838106 0.3840425 10.03574 -0.3840425 0.3840425 10.03574 -0.518627 0.3840425 10.03574 -0.6993381 0.3840425 10.03574 -0.9419845 0.3840425 10.03574 -1.267794 0.3840425 10.03574 -1.705268 0.3840425 10.03574 -2.292679 0.3840425 10.03574 -3.081414 0.3840425 10.03574 -4.140474 0.3840425 10.03574 -5.562508 0.3840425 10.03574 -7.471917 0.3840425 10.03574 -10.03574 0.3840425 10.03574 -13.47828 0.3840425 10.03574 -18.10068 0.3840425 10.03574 -24.30731 0.3840425 10.03574 -32.64117 0.3840425 10.03574 -43.83129 0.3840425 10.03574 -58.85664 0.3840425 10.03574 --0.0175068 0.518627 10.03574 --0.01161267 0.518627 10.03574 --0.005718534 0.518627 10.03574 -0.0001755984 0.518627 10.03574 -0.006069731 0.518627 10.03574 -0.01197402 0.518627 10.03574 -0.01903886 0.518627 10.03574 -0.02852504 0.518627 10.03574 -0.04126244 0.518627 10.03574 -0.05836535 0.518627 10.03574 -0.08132997 0.518627 10.03574 -0.1121653 0.518627 10.03574 -0.1535689 0.518627 10.03574 -0.2091628 0.518627 10.03574 -0.2838106 0.518627 10.03574 -0.3840425 0.518627 10.03574 -0.518627 0.518627 10.03574 -0.6993381 0.518627 10.03574 -0.9419845 0.518627 10.03574 -1.267794 0.518627 10.03574 -1.705268 0.518627 10.03574 -2.292679 0.518627 10.03574 -3.081414 0.518627 10.03574 -4.140474 0.518627 10.03574 -5.562508 0.518627 10.03574 -7.471917 0.518627 10.03574 -10.03574 0.518627 10.03574 -13.47828 0.518627 10.03574 -18.10068 0.518627 10.03574 -24.30731 0.518627 10.03574 -32.64117 0.518627 10.03574 -43.83129 0.518627 10.03574 -58.85664 0.518627 10.03574 --0.0175068 0.6993381 10.03574 --0.01161267 0.6993381 10.03574 --0.005718534 0.6993381 10.03574 -0.0001755984 0.6993381 10.03574 -0.006069731 0.6993381 10.03574 -0.01197402 0.6993381 10.03574 -0.01903886 0.6993381 10.03574 -0.02852504 0.6993381 10.03574 -0.04126244 0.6993381 10.03574 -0.05836535 0.6993381 10.03574 -0.08132997 0.6993381 10.03574 -0.1121653 0.6993381 10.03574 -0.1535689 0.6993381 10.03574 -0.2091628 0.6993381 10.03574 -0.2838106 0.6993381 10.03574 -0.3840425 0.6993381 10.03574 -0.518627 0.6993381 10.03574 -0.6993381 0.6993381 10.03574 -0.9419845 0.6993381 10.03574 -1.267794 0.6993381 10.03574 -1.705268 0.6993381 10.03574 -2.292679 0.6993381 10.03574 -3.081414 0.6993381 10.03574 -4.140474 0.6993381 10.03574 -5.562508 0.6993381 10.03574 -7.471917 0.6993381 10.03574 -10.03574 0.6993381 10.03574 -13.47828 0.6993381 10.03574 -18.10068 0.6993381 10.03574 -24.30731 0.6993381 10.03574 -32.64117 0.6993381 10.03574 -43.83129 0.6993381 10.03574 -58.85664 0.6993381 10.03574 --0.0175068 0.9419845 10.03574 --0.01161267 0.9419845 10.03574 --0.005718534 0.9419845 10.03574 -0.0001755984 0.9419845 10.03574 -0.006069731 0.9419845 10.03574 -0.01197402 0.9419845 10.03574 -0.01903886 0.9419845 10.03574 -0.02852504 0.9419845 10.03574 -0.04126244 0.9419845 10.03574 -0.05836535 0.9419845 10.03574 -0.08132997 0.9419845 10.03574 -0.1121653 0.9419845 10.03574 -0.1535689 0.9419845 10.03574 -0.2091628 0.9419845 10.03574 -0.2838106 0.9419845 10.03574 -0.3840425 0.9419845 10.03574 -0.518627 0.9419845 10.03574 -0.6993381 0.9419845 10.03574 -0.9419845 0.9419845 10.03574 -1.267794 0.9419845 10.03574 -1.705268 0.9419845 10.03574 -2.292679 0.9419845 10.03574 -3.081414 0.9419845 10.03574 -4.140474 0.9419845 10.03574 -5.562508 0.9419845 10.03574 -7.471917 0.9419845 10.03574 -10.03574 0.9419845 10.03574 -13.47828 0.9419845 10.03574 -18.10068 0.9419845 10.03574 -24.30731 0.9419845 10.03574 -32.64117 0.9419845 10.03574 -43.83129 0.9419845 10.03574 -58.85664 0.9419845 10.03574 --0.0175068 1.267794 10.03574 --0.01161267 1.267794 10.03574 --0.005718534 1.267794 10.03574 -0.0001755984 1.267794 10.03574 -0.006069731 1.267794 10.03574 -0.01197402 1.267794 10.03574 -0.01903886 1.267794 10.03574 -0.02852504 1.267794 10.03574 -0.04126244 1.267794 10.03574 -0.05836535 1.267794 10.03574 -0.08132997 1.267794 10.03574 -0.1121653 1.267794 10.03574 -0.1535689 1.267794 10.03574 -0.2091628 1.267794 10.03574 -0.2838106 1.267794 10.03574 -0.3840425 1.267794 10.03574 -0.518627 1.267794 10.03574 -0.6993381 1.267794 10.03574 -0.9419845 1.267794 10.03574 -1.267794 1.267794 10.03574 -1.705268 1.267794 10.03574 -2.292679 1.267794 10.03574 -3.081414 1.267794 10.03574 -4.140474 1.267794 10.03574 -5.562508 1.267794 10.03574 -7.471917 1.267794 10.03574 -10.03574 1.267794 10.03574 -13.47828 1.267794 10.03574 -18.10068 1.267794 10.03574 -24.30731 1.267794 10.03574 -32.64117 1.267794 10.03574 -43.83129 1.267794 10.03574 -58.85664 1.267794 10.03574 --0.0175068 1.705268 10.03574 --0.01161267 1.705268 10.03574 --0.005718534 1.705268 10.03574 -0.0001755984 1.705268 10.03574 -0.006069731 1.705268 10.03574 -0.01197402 1.705268 10.03574 -0.01903886 1.705268 10.03574 -0.02852504 1.705268 10.03574 -0.04126244 1.705268 10.03574 -0.05836535 1.705268 10.03574 -0.08132997 1.705268 10.03574 -0.1121653 1.705268 10.03574 -0.1535689 1.705268 10.03574 -0.2091628 1.705268 10.03574 -0.2838106 1.705268 10.03574 -0.3840425 1.705268 10.03574 -0.518627 1.705268 10.03574 -0.6993381 1.705268 10.03574 -0.9419845 1.705268 10.03574 -1.267794 1.705268 10.03574 -1.705268 1.705268 10.03574 -2.292679 1.705268 10.03574 -3.081414 1.705268 10.03574 -4.140474 1.705268 10.03574 -5.562508 1.705268 10.03574 -7.471917 1.705268 10.03574 -10.03574 1.705268 10.03574 -13.47828 1.705268 10.03574 -18.10068 1.705268 10.03574 -24.30731 1.705268 10.03574 -32.64117 1.705268 10.03574 -43.83129 1.705268 10.03574 -58.85664 1.705268 10.03574 --0.0175068 2.292679 10.03574 --0.01161267 2.292679 10.03574 --0.005718534 2.292679 10.03574 -0.0001755984 2.292679 10.03574 -0.006069731 2.292679 10.03574 -0.01197402 2.292679 10.03574 -0.01903886 2.292679 10.03574 -0.02852504 2.292679 10.03574 -0.04126244 2.292679 10.03574 -0.05836535 2.292679 10.03574 -0.08132997 2.292679 10.03574 -0.1121653 2.292679 10.03574 -0.1535689 2.292679 10.03574 -0.2091628 2.292679 10.03574 -0.2838106 2.292679 10.03574 -0.3840425 2.292679 10.03574 -0.518627 2.292679 10.03574 -0.6993381 2.292679 10.03574 -0.9419845 2.292679 10.03574 -1.267794 2.292679 10.03574 -1.705268 2.292679 10.03574 -2.292679 2.292679 10.03574 -3.081414 2.292679 10.03574 -4.140474 2.292679 10.03574 -5.562508 2.292679 10.03574 -7.471917 2.292679 10.03574 -10.03574 2.292679 10.03574 -13.47828 2.292679 10.03574 -18.10068 2.292679 10.03574 -24.30731 2.292679 10.03574 -32.64117 2.292679 10.03574 -43.83129 2.292679 10.03574 -58.85664 2.292679 10.03574 --0.0175068 3.081414 10.03574 --0.01161267 3.081414 10.03574 --0.005718534 3.081414 10.03574 -0.0001755984 3.081414 10.03574 -0.006069731 3.081414 10.03574 -0.01197402 3.081414 10.03574 -0.01903886 3.081414 10.03574 -0.02852504 3.081414 10.03574 -0.04126244 3.081414 10.03574 -0.05836535 3.081414 10.03574 -0.08132997 3.081414 10.03574 -0.1121653 3.081414 10.03574 -0.1535689 3.081414 10.03574 -0.2091628 3.081414 10.03574 -0.2838106 3.081414 10.03574 -0.3840425 3.081414 10.03574 -0.518627 3.081414 10.03574 -0.6993381 3.081414 10.03574 -0.9419845 3.081414 10.03574 -1.267794 3.081414 10.03574 -1.705268 3.081414 10.03574 -2.292679 3.081414 10.03574 -3.081414 3.081414 10.03574 -4.140474 3.081414 10.03574 -5.562508 3.081414 10.03574 -7.471917 3.081414 10.03574 -10.03574 3.081414 10.03574 -13.47828 3.081414 10.03574 -18.10068 3.081414 10.03574 -24.30731 3.081414 10.03574 -32.64117 3.081414 10.03574 -43.83129 3.081414 10.03574 -58.85664 3.081414 10.03574 --0.0175068 4.140474 10.03574 --0.01161267 4.140474 10.03574 --0.005718534 4.140474 10.03574 -0.0001755984 4.140474 10.03574 -0.006069731 4.140474 10.03574 -0.01197402 4.140474 10.03574 -0.01903886 4.140474 10.03574 -0.02852504 4.140474 10.03574 -0.04126244 4.140474 10.03574 -0.05836535 4.140474 10.03574 -0.08132997 4.140474 10.03574 -0.1121653 4.140474 10.03574 -0.1535689 4.140474 10.03574 -0.2091628 4.140474 10.03574 -0.2838106 4.140474 10.03574 -0.3840425 4.140474 10.03574 -0.518627 4.140474 10.03574 -0.6993381 4.140474 10.03574 -0.9419845 4.140474 10.03574 -1.267794 4.140474 10.03574 -1.705268 4.140474 10.03574 -2.292679 4.140474 10.03574 -3.081414 4.140474 10.03574 -4.140474 4.140474 10.03574 -5.562508 4.140474 10.03574 -7.471917 4.140474 10.03574 -10.03574 4.140474 10.03574 -13.47828 4.140474 10.03574 -18.10068 4.140474 10.03574 -24.30731 4.140474 10.03574 -32.64117 4.140474 10.03574 -43.83129 4.140474 10.03574 -58.85664 4.140474 10.03574 --0.0175068 5.562508 10.03574 --0.01161267 5.562508 10.03574 --0.005718534 5.562508 10.03574 -0.0001755984 5.562508 10.03574 -0.006069731 5.562508 10.03574 -0.01197402 5.562508 10.03574 -0.01903886 5.562508 10.03574 -0.02852504 5.562508 10.03574 -0.04126244 5.562508 10.03574 -0.05836535 5.562508 10.03574 -0.08132997 5.562508 10.03574 -0.1121653 5.562508 10.03574 -0.1535689 5.562508 10.03574 -0.2091628 5.562508 10.03574 -0.2838106 5.562508 10.03574 -0.3840425 5.562508 10.03574 -0.518627 5.562508 10.03574 -0.6993381 5.562508 10.03574 -0.9419845 5.562508 10.03574 -1.267794 5.562508 10.03574 -1.705268 5.562508 10.03574 -2.292679 5.562508 10.03574 -3.081414 5.562508 10.03574 -4.140474 5.562508 10.03574 -5.562508 5.562508 10.03574 -7.471917 5.562508 10.03574 -10.03574 5.562508 10.03574 -13.47828 5.562508 10.03574 -18.10068 5.562508 10.03574 -24.30731 5.562508 10.03574 -32.64117 5.562508 10.03574 -43.83129 5.562508 10.03574 -58.85664 5.562508 10.03574 --0.0175068 7.471917 10.03574 --0.01161267 7.471917 10.03574 --0.005718534 7.471917 10.03574 -0.0001755984 7.471917 10.03574 -0.006069731 7.471917 10.03574 -0.01197402 7.471917 10.03574 -0.01903886 7.471917 10.03574 -0.02852504 7.471917 10.03574 -0.04126244 7.471917 10.03574 -0.05836535 7.471917 10.03574 -0.08132997 7.471917 10.03574 -0.1121653 7.471917 10.03574 -0.1535689 7.471917 10.03574 -0.2091628 7.471917 10.03574 -0.2838106 7.471917 10.03574 -0.3840425 7.471917 10.03574 -0.518627 7.471917 10.03574 -0.6993381 7.471917 10.03574 -0.9419845 7.471917 10.03574 -1.267794 7.471917 10.03574 -1.705268 7.471917 10.03574 -2.292679 7.471917 10.03574 -3.081414 7.471917 10.03574 -4.140474 7.471917 10.03574 -5.562508 7.471917 10.03574 -7.471917 7.471917 10.03574 -10.03574 7.471917 10.03574 -13.47828 7.471917 10.03574 -18.10068 7.471917 10.03574 -24.30731 7.471917 10.03574 -32.64117 7.471917 10.03574 -43.83129 7.471917 10.03574 -58.85664 7.471917 10.03574 --0.0175068 10.03574 10.03574 --0.01161267 10.03574 10.03574 --0.005718534 10.03574 10.03574 -0.0001755984 10.03574 10.03574 -0.006069731 10.03574 10.03574 -0.01197402 10.03574 10.03574 -0.01903886 10.03574 10.03574 -0.02852504 10.03574 10.03574 -0.04126244 10.03574 10.03574 -0.05836535 10.03574 10.03574 -0.08132997 10.03574 10.03574 -0.1121653 10.03574 10.03574 -0.1535689 10.03574 10.03574 -0.2091628 10.03574 10.03574 -0.2838106 10.03574 10.03574 -0.3840425 10.03574 10.03574 -0.518627 10.03574 10.03574 -0.6993381 10.03574 10.03574 -0.9419845 10.03574 10.03574 -1.267794 10.03574 10.03574 -1.705268 10.03574 10.03574 -2.292679 10.03574 10.03574 -3.081414 10.03574 10.03574 -4.140474 10.03574 10.03574 -5.562508 10.03574 10.03574 -7.471917 10.03574 10.03574 -10.03574 10.03574 10.03574 -13.47828 10.03574 10.03574 -18.10068 10.03574 10.03574 -24.30731 10.03574 10.03574 -32.64117 10.03574 10.03574 -43.83129 10.03574 10.03574 -58.85664 10.03574 10.03574 --0.0175068 13.47828 10.03574 --0.01161267 13.47828 10.03574 --0.005718534 13.47828 10.03574 -0.0001755984 13.47828 10.03574 -0.006069731 13.47828 10.03574 -0.01197402 13.47828 10.03574 -0.01903886 13.47828 10.03574 -0.02852504 13.47828 10.03574 -0.04126244 13.47828 10.03574 -0.05836535 13.47828 10.03574 -0.08132997 13.47828 10.03574 -0.1121653 13.47828 10.03574 -0.1535689 13.47828 10.03574 -0.2091628 13.47828 10.03574 -0.2838106 13.47828 10.03574 -0.3840425 13.47828 10.03574 -0.518627 13.47828 10.03574 -0.6993381 13.47828 10.03574 -0.9419845 13.47828 10.03574 -1.267794 13.47828 10.03574 -1.705268 13.47828 10.03574 -2.292679 13.47828 10.03574 -3.081414 13.47828 10.03574 -4.140474 13.47828 10.03574 -5.562508 13.47828 10.03574 -7.471917 13.47828 10.03574 -10.03574 13.47828 10.03574 -13.47828 13.47828 10.03574 -18.10068 13.47828 10.03574 -24.30731 13.47828 10.03574 -32.64117 13.47828 10.03574 -43.83129 13.47828 10.03574 -58.85664 13.47828 10.03574 --0.0175068 18.10068 10.03574 --0.01161267 18.10068 10.03574 --0.005718534 18.10068 10.03574 -0.0001755984 18.10068 10.03574 -0.006069731 18.10068 10.03574 -0.01197402 18.10068 10.03574 -0.01903886 18.10068 10.03574 -0.02852504 18.10068 10.03574 -0.04126244 18.10068 10.03574 -0.05836535 18.10068 10.03574 -0.08132997 18.10068 10.03574 -0.1121653 18.10068 10.03574 -0.1535689 18.10068 10.03574 -0.2091628 18.10068 10.03574 -0.2838106 18.10068 10.03574 -0.3840425 18.10068 10.03574 -0.518627 18.10068 10.03574 -0.6993381 18.10068 10.03574 -0.9419845 18.10068 10.03574 -1.267794 18.10068 10.03574 -1.705268 18.10068 10.03574 -2.292679 18.10068 10.03574 -3.081414 18.10068 10.03574 -4.140474 18.10068 10.03574 -5.562508 18.10068 10.03574 -7.471917 18.10068 10.03574 -10.03574 18.10068 10.03574 -13.47828 18.10068 10.03574 -18.10068 18.10068 10.03574 -24.30731 18.10068 10.03574 -32.64117 18.10068 10.03574 -43.83129 18.10068 10.03574 -58.85664 18.10068 10.03574 --0.0175068 24.30731 10.03574 --0.01161267 24.30731 10.03574 --0.005718534 24.30731 10.03574 -0.0001755984 24.30731 10.03574 -0.006069731 24.30731 10.03574 -0.01197402 24.30731 10.03574 -0.01903886 24.30731 10.03574 -0.02852504 24.30731 10.03574 -0.04126244 24.30731 10.03574 -0.05836535 24.30731 10.03574 -0.08132997 24.30731 10.03574 -0.1121653 24.30731 10.03574 -0.1535689 24.30731 10.03574 -0.2091628 24.30731 10.03574 -0.2838106 24.30731 10.03574 -0.3840425 24.30731 10.03574 -0.518627 24.30731 10.03574 -0.6993381 24.30731 10.03574 -0.9419845 24.30731 10.03574 -1.267794 24.30731 10.03574 -1.705268 24.30731 10.03574 -2.292679 24.30731 10.03574 -3.081414 24.30731 10.03574 -4.140474 24.30731 10.03574 -5.562508 24.30731 10.03574 -7.471917 24.30731 10.03574 -10.03574 24.30731 10.03574 -13.47828 24.30731 10.03574 -18.10068 24.30731 10.03574 -24.30731 24.30731 10.03574 -32.64117 24.30731 10.03574 -43.83129 24.30731 10.03574 -58.85664 24.30731 10.03574 --0.0175068 32.64117 10.03574 --0.01161267 32.64117 10.03574 --0.005718534 32.64117 10.03574 -0.0001755984 32.64117 10.03574 -0.006069731 32.64117 10.03574 -0.01197402 32.64117 10.03574 -0.01903886 32.64117 10.03574 -0.02852504 32.64117 10.03574 -0.04126244 32.64117 10.03574 -0.05836535 32.64117 10.03574 -0.08132997 32.64117 10.03574 -0.1121653 32.64117 10.03574 -0.1535689 32.64117 10.03574 -0.2091628 32.64117 10.03574 -0.2838106 32.64117 10.03574 -0.3840425 32.64117 10.03574 -0.518627 32.64117 10.03574 -0.6993381 32.64117 10.03574 -0.9419845 32.64117 10.03574 -1.267794 32.64117 10.03574 -1.705268 32.64117 10.03574 -2.292679 32.64117 10.03574 -3.081414 32.64117 10.03574 -4.140474 32.64117 10.03574 -5.562508 32.64117 10.03574 -7.471917 32.64117 10.03574 -10.03574 32.64117 10.03574 -13.47828 32.64117 10.03574 -18.10068 32.64117 10.03574 -24.30731 32.64117 10.03574 -32.64117 32.64117 10.03574 -43.83129 32.64117 10.03574 -58.85664 32.64117 10.03574 --0.0175068 43.83129 10.03574 --0.01161267 43.83129 10.03574 --0.005718534 43.83129 10.03574 -0.0001755984 43.83129 10.03574 -0.006069731 43.83129 10.03574 -0.01197402 43.83129 10.03574 -0.01903886 43.83129 10.03574 -0.02852504 43.83129 10.03574 -0.04126244 43.83129 10.03574 -0.05836535 43.83129 10.03574 -0.08132997 43.83129 10.03574 -0.1121653 43.83129 10.03574 -0.1535689 43.83129 10.03574 -0.2091628 43.83129 10.03574 -0.2838106 43.83129 10.03574 -0.3840425 43.83129 10.03574 -0.518627 43.83129 10.03574 -0.6993381 43.83129 10.03574 -0.9419845 43.83129 10.03574 -1.267794 43.83129 10.03574 -1.705268 43.83129 10.03574 -2.292679 43.83129 10.03574 -3.081414 43.83129 10.03574 -4.140474 43.83129 10.03574 -5.562508 43.83129 10.03574 -7.471917 43.83129 10.03574 -10.03574 43.83129 10.03574 -13.47828 43.83129 10.03574 -18.10068 43.83129 10.03574 -24.30731 43.83129 10.03574 -32.64117 43.83129 10.03574 -43.83129 43.83129 10.03574 -58.85664 43.83129 10.03574 --0.0175068 58.85664 10.03574 --0.01161267 58.85664 10.03574 --0.005718534 58.85664 10.03574 -0.0001755984 58.85664 10.03574 -0.006069731 58.85664 10.03574 -0.01197402 58.85664 10.03574 -0.01903886 58.85664 10.03574 -0.02852504 58.85664 10.03574 -0.04126244 58.85664 10.03574 -0.05836535 58.85664 10.03574 -0.08132997 58.85664 10.03574 -0.1121653 58.85664 10.03574 -0.1535689 58.85664 10.03574 -0.2091628 58.85664 10.03574 -0.2838106 58.85664 10.03574 -0.3840425 58.85664 10.03574 -0.518627 58.85664 10.03574 -0.6993381 58.85664 10.03574 -0.9419845 58.85664 10.03574 -1.267794 58.85664 10.03574 -1.705268 58.85664 10.03574 -2.292679 58.85664 10.03574 -3.081414 58.85664 10.03574 -4.140474 58.85664 10.03574 -5.562508 58.85664 10.03574 -7.471917 58.85664 10.03574 -10.03574 58.85664 10.03574 -13.47828 58.85664 10.03574 -18.10068 58.85664 10.03574 -24.30731 58.85664 10.03574 -32.64117 58.85664 10.03574 -43.83129 58.85664 10.03574 -58.85664 58.85664 10.03574 --0.0175068 -0.0175068 13.47828 --0.01161267 -0.0175068 13.47828 --0.005718534 -0.0175068 13.47828 -0.0001755984 -0.0175068 13.47828 -0.006069731 -0.0175068 13.47828 -0.01197402 -0.0175068 13.47828 -0.01903886 -0.0175068 13.47828 -0.02852504 -0.0175068 13.47828 -0.04126244 -0.0175068 13.47828 -0.05836535 -0.0175068 13.47828 -0.08132997 -0.0175068 13.47828 -0.1121653 -0.0175068 13.47828 -0.1535689 -0.0175068 13.47828 -0.2091628 -0.0175068 13.47828 -0.2838106 -0.0175068 13.47828 -0.3840425 -0.0175068 13.47828 -0.518627 -0.0175068 13.47828 -0.6993381 -0.0175068 13.47828 -0.9419845 -0.0175068 13.47828 -1.267794 -0.0175068 13.47828 -1.705268 -0.0175068 13.47828 -2.292679 -0.0175068 13.47828 -3.081414 -0.0175068 13.47828 -4.140474 -0.0175068 13.47828 -5.562508 -0.0175068 13.47828 -7.471917 -0.0175068 13.47828 -10.03574 -0.0175068 13.47828 -13.47828 -0.0175068 13.47828 -18.10068 -0.0175068 13.47828 -24.30731 -0.0175068 13.47828 -32.64117 -0.0175068 13.47828 -43.83129 -0.0175068 13.47828 -58.85664 -0.0175068 13.47828 --0.0175068 -0.01161267 13.47828 --0.01161267 -0.01161267 13.47828 --0.005718534 -0.01161267 13.47828 -0.0001755984 -0.01161267 13.47828 -0.006069731 -0.01161267 13.47828 -0.01197402 -0.01161267 13.47828 -0.01903886 -0.01161267 13.47828 -0.02852504 -0.01161267 13.47828 -0.04126244 -0.01161267 13.47828 -0.05836535 -0.01161267 13.47828 -0.08132997 -0.01161267 13.47828 -0.1121653 -0.01161267 13.47828 -0.1535689 -0.01161267 13.47828 -0.2091628 -0.01161267 13.47828 -0.2838106 -0.01161267 13.47828 -0.3840425 -0.01161267 13.47828 -0.518627 -0.01161267 13.47828 -0.6993381 -0.01161267 13.47828 -0.9419845 -0.01161267 13.47828 -1.267794 -0.01161267 13.47828 -1.705268 -0.01161267 13.47828 -2.292679 -0.01161267 13.47828 -3.081414 -0.01161267 13.47828 -4.140474 -0.01161267 13.47828 -5.562508 -0.01161267 13.47828 -7.471917 -0.01161267 13.47828 -10.03574 -0.01161267 13.47828 -13.47828 -0.01161267 13.47828 -18.10068 -0.01161267 13.47828 -24.30731 -0.01161267 13.47828 -32.64117 -0.01161267 13.47828 -43.83129 -0.01161267 13.47828 -58.85664 -0.01161267 13.47828 --0.0175068 -0.005718534 13.47828 --0.01161267 -0.005718534 13.47828 --0.005718534 -0.005718534 13.47828 -0.0001755984 -0.005718534 13.47828 -0.006069731 -0.005718534 13.47828 -0.01197402 -0.005718534 13.47828 -0.01903886 -0.005718534 13.47828 -0.02852504 -0.005718534 13.47828 -0.04126244 -0.005718534 13.47828 -0.05836535 -0.005718534 13.47828 -0.08132997 -0.005718534 13.47828 -0.1121653 -0.005718534 13.47828 -0.1535689 -0.005718534 13.47828 -0.2091628 -0.005718534 13.47828 -0.2838106 -0.005718534 13.47828 -0.3840425 -0.005718534 13.47828 -0.518627 -0.005718534 13.47828 -0.6993381 -0.005718534 13.47828 -0.9419845 -0.005718534 13.47828 -1.267794 -0.005718534 13.47828 -1.705268 -0.005718534 13.47828 -2.292679 -0.005718534 13.47828 -3.081414 -0.005718534 13.47828 -4.140474 -0.005718534 13.47828 -5.562508 -0.005718534 13.47828 -7.471917 -0.005718534 13.47828 -10.03574 -0.005718534 13.47828 -13.47828 -0.005718534 13.47828 -18.10068 -0.005718534 13.47828 -24.30731 -0.005718534 13.47828 -32.64117 -0.005718534 13.47828 -43.83129 -0.005718534 13.47828 -58.85664 -0.005718534 13.47828 --0.0175068 0.0001755984 13.47828 --0.01161267 0.0001755984 13.47828 --0.005718534 0.0001755984 13.47828 -0.0001755984 0.0001755984 13.47828 -0.006069731 0.0001755984 13.47828 -0.01197402 0.0001755984 13.47828 -0.01903886 0.0001755984 13.47828 -0.02852504 0.0001755984 13.47828 -0.04126244 0.0001755984 13.47828 -0.05836535 0.0001755984 13.47828 -0.08132997 0.0001755984 13.47828 -0.1121653 0.0001755984 13.47828 -0.1535689 0.0001755984 13.47828 -0.2091628 0.0001755984 13.47828 -0.2838106 0.0001755984 13.47828 -0.3840425 0.0001755984 13.47828 -0.518627 0.0001755984 13.47828 -0.6993381 0.0001755984 13.47828 -0.9419845 0.0001755984 13.47828 -1.267794 0.0001755984 13.47828 -1.705268 0.0001755984 13.47828 -2.292679 0.0001755984 13.47828 -3.081414 0.0001755984 13.47828 -4.140474 0.0001755984 13.47828 -5.562508 0.0001755984 13.47828 -7.471917 0.0001755984 13.47828 -10.03574 0.0001755984 13.47828 -13.47828 0.0001755984 13.47828 -18.10068 0.0001755984 13.47828 -24.30731 0.0001755984 13.47828 -32.64117 0.0001755984 13.47828 -43.83129 0.0001755984 13.47828 -58.85664 0.0001755984 13.47828 --0.0175068 0.006069731 13.47828 --0.01161267 0.006069731 13.47828 --0.005718534 0.006069731 13.47828 -0.0001755984 0.006069731 13.47828 -0.006069731 0.006069731 13.47828 -0.01197402 0.006069731 13.47828 -0.01903886 0.006069731 13.47828 -0.02852504 0.006069731 13.47828 -0.04126244 0.006069731 13.47828 -0.05836535 0.006069731 13.47828 -0.08132997 0.006069731 13.47828 -0.1121653 0.006069731 13.47828 -0.1535689 0.006069731 13.47828 -0.2091628 0.006069731 13.47828 -0.2838106 0.006069731 13.47828 -0.3840425 0.006069731 13.47828 -0.518627 0.006069731 13.47828 -0.6993381 0.006069731 13.47828 -0.9419845 0.006069731 13.47828 -1.267794 0.006069731 13.47828 -1.705268 0.006069731 13.47828 -2.292679 0.006069731 13.47828 -3.081414 0.006069731 13.47828 -4.140474 0.006069731 13.47828 -5.562508 0.006069731 13.47828 -7.471917 0.006069731 13.47828 -10.03574 0.006069731 13.47828 -13.47828 0.006069731 13.47828 -18.10068 0.006069731 13.47828 -24.30731 0.006069731 13.47828 -32.64117 0.006069731 13.47828 -43.83129 0.006069731 13.47828 -58.85664 0.006069731 13.47828 --0.0175068 0.01197402 13.47828 --0.01161267 0.01197402 13.47828 --0.005718534 0.01197402 13.47828 -0.0001755984 0.01197402 13.47828 -0.006069731 0.01197402 13.47828 -0.01197402 0.01197402 13.47828 -0.01903886 0.01197402 13.47828 -0.02852504 0.01197402 13.47828 -0.04126244 0.01197402 13.47828 -0.05836535 0.01197402 13.47828 -0.08132997 0.01197402 13.47828 -0.1121653 0.01197402 13.47828 -0.1535689 0.01197402 13.47828 -0.2091628 0.01197402 13.47828 -0.2838106 0.01197402 13.47828 -0.3840425 0.01197402 13.47828 -0.518627 0.01197402 13.47828 -0.6993381 0.01197402 13.47828 -0.9419845 0.01197402 13.47828 -1.267794 0.01197402 13.47828 -1.705268 0.01197402 13.47828 -2.292679 0.01197402 13.47828 -3.081414 0.01197402 13.47828 -4.140474 0.01197402 13.47828 -5.562508 0.01197402 13.47828 -7.471917 0.01197402 13.47828 -10.03574 0.01197402 13.47828 -13.47828 0.01197402 13.47828 -18.10068 0.01197402 13.47828 -24.30731 0.01197402 13.47828 -32.64117 0.01197402 13.47828 -43.83129 0.01197402 13.47828 -58.85664 0.01197402 13.47828 --0.0175068 0.01903886 13.47828 --0.01161267 0.01903886 13.47828 --0.005718534 0.01903886 13.47828 -0.0001755984 0.01903886 13.47828 -0.006069731 0.01903886 13.47828 -0.01197402 0.01903886 13.47828 -0.01903886 0.01903886 13.47828 -0.02852504 0.01903886 13.47828 -0.04126244 0.01903886 13.47828 -0.05836535 0.01903886 13.47828 -0.08132997 0.01903886 13.47828 -0.1121653 0.01903886 13.47828 -0.1535689 0.01903886 13.47828 -0.2091628 0.01903886 13.47828 -0.2838106 0.01903886 13.47828 -0.3840425 0.01903886 13.47828 -0.518627 0.01903886 13.47828 -0.6993381 0.01903886 13.47828 -0.9419845 0.01903886 13.47828 -1.267794 0.01903886 13.47828 -1.705268 0.01903886 13.47828 -2.292679 0.01903886 13.47828 -3.081414 0.01903886 13.47828 -4.140474 0.01903886 13.47828 -5.562508 0.01903886 13.47828 -7.471917 0.01903886 13.47828 -10.03574 0.01903886 13.47828 -13.47828 0.01903886 13.47828 -18.10068 0.01903886 13.47828 -24.30731 0.01903886 13.47828 -32.64117 0.01903886 13.47828 -43.83129 0.01903886 13.47828 -58.85664 0.01903886 13.47828 --0.0175068 0.02852504 13.47828 --0.01161267 0.02852504 13.47828 --0.005718534 0.02852504 13.47828 -0.0001755984 0.02852504 13.47828 -0.006069731 0.02852504 13.47828 -0.01197402 0.02852504 13.47828 -0.01903886 0.02852504 13.47828 -0.02852504 0.02852504 13.47828 -0.04126244 0.02852504 13.47828 -0.05836535 0.02852504 13.47828 -0.08132997 0.02852504 13.47828 -0.1121653 0.02852504 13.47828 -0.1535689 0.02852504 13.47828 -0.2091628 0.02852504 13.47828 -0.2838106 0.02852504 13.47828 -0.3840425 0.02852504 13.47828 -0.518627 0.02852504 13.47828 -0.6993381 0.02852504 13.47828 -0.9419845 0.02852504 13.47828 -1.267794 0.02852504 13.47828 -1.705268 0.02852504 13.47828 -2.292679 0.02852504 13.47828 -3.081414 0.02852504 13.47828 -4.140474 0.02852504 13.47828 -5.562508 0.02852504 13.47828 -7.471917 0.02852504 13.47828 -10.03574 0.02852504 13.47828 -13.47828 0.02852504 13.47828 -18.10068 0.02852504 13.47828 -24.30731 0.02852504 13.47828 -32.64117 0.02852504 13.47828 -43.83129 0.02852504 13.47828 -58.85664 0.02852504 13.47828 --0.0175068 0.04126244 13.47828 --0.01161267 0.04126244 13.47828 --0.005718534 0.04126244 13.47828 -0.0001755984 0.04126244 13.47828 -0.006069731 0.04126244 13.47828 -0.01197402 0.04126244 13.47828 -0.01903886 0.04126244 13.47828 -0.02852504 0.04126244 13.47828 -0.04126244 0.04126244 13.47828 -0.05836535 0.04126244 13.47828 -0.08132997 0.04126244 13.47828 -0.1121653 0.04126244 13.47828 -0.1535689 0.04126244 13.47828 -0.2091628 0.04126244 13.47828 -0.2838106 0.04126244 13.47828 -0.3840425 0.04126244 13.47828 -0.518627 0.04126244 13.47828 -0.6993381 0.04126244 13.47828 -0.9419845 0.04126244 13.47828 -1.267794 0.04126244 13.47828 -1.705268 0.04126244 13.47828 -2.292679 0.04126244 13.47828 -3.081414 0.04126244 13.47828 -4.140474 0.04126244 13.47828 -5.562508 0.04126244 13.47828 -7.471917 0.04126244 13.47828 -10.03574 0.04126244 13.47828 -13.47828 0.04126244 13.47828 -18.10068 0.04126244 13.47828 -24.30731 0.04126244 13.47828 -32.64117 0.04126244 13.47828 -43.83129 0.04126244 13.47828 -58.85664 0.04126244 13.47828 --0.0175068 0.05836535 13.47828 --0.01161267 0.05836535 13.47828 --0.005718534 0.05836535 13.47828 -0.0001755984 0.05836535 13.47828 -0.006069731 0.05836535 13.47828 -0.01197402 0.05836535 13.47828 -0.01903886 0.05836535 13.47828 -0.02852504 0.05836535 13.47828 -0.04126244 0.05836535 13.47828 -0.05836535 0.05836535 13.47828 -0.08132997 0.05836535 13.47828 -0.1121653 0.05836535 13.47828 -0.1535689 0.05836535 13.47828 -0.2091628 0.05836535 13.47828 -0.2838106 0.05836535 13.47828 -0.3840425 0.05836535 13.47828 -0.518627 0.05836535 13.47828 -0.6993381 0.05836535 13.47828 -0.9419845 0.05836535 13.47828 -1.267794 0.05836535 13.47828 -1.705268 0.05836535 13.47828 -2.292679 0.05836535 13.47828 -3.081414 0.05836535 13.47828 -4.140474 0.05836535 13.47828 -5.562508 0.05836535 13.47828 -7.471917 0.05836535 13.47828 -10.03574 0.05836535 13.47828 -13.47828 0.05836535 13.47828 -18.10068 0.05836535 13.47828 -24.30731 0.05836535 13.47828 -32.64117 0.05836535 13.47828 -43.83129 0.05836535 13.47828 -58.85664 0.05836535 13.47828 --0.0175068 0.08132997 13.47828 --0.01161267 0.08132997 13.47828 --0.005718534 0.08132997 13.47828 -0.0001755984 0.08132997 13.47828 -0.006069731 0.08132997 13.47828 -0.01197402 0.08132997 13.47828 -0.01903886 0.08132997 13.47828 -0.02852504 0.08132997 13.47828 -0.04126244 0.08132997 13.47828 -0.05836535 0.08132997 13.47828 -0.08132997 0.08132997 13.47828 -0.1121653 0.08132997 13.47828 -0.1535689 0.08132997 13.47828 -0.2091628 0.08132997 13.47828 -0.2838106 0.08132997 13.47828 -0.3840425 0.08132997 13.47828 -0.518627 0.08132997 13.47828 -0.6993381 0.08132997 13.47828 -0.9419845 0.08132997 13.47828 -1.267794 0.08132997 13.47828 -1.705268 0.08132997 13.47828 -2.292679 0.08132997 13.47828 -3.081414 0.08132997 13.47828 -4.140474 0.08132997 13.47828 -5.562508 0.08132997 13.47828 -7.471917 0.08132997 13.47828 -10.03574 0.08132997 13.47828 -13.47828 0.08132997 13.47828 -18.10068 0.08132997 13.47828 -24.30731 0.08132997 13.47828 -32.64117 0.08132997 13.47828 -43.83129 0.08132997 13.47828 -58.85664 0.08132997 13.47828 --0.0175068 0.1121653 13.47828 --0.01161267 0.1121653 13.47828 --0.005718534 0.1121653 13.47828 -0.0001755984 0.1121653 13.47828 -0.006069731 0.1121653 13.47828 -0.01197402 0.1121653 13.47828 -0.01903886 0.1121653 13.47828 -0.02852504 0.1121653 13.47828 -0.04126244 0.1121653 13.47828 -0.05836535 0.1121653 13.47828 -0.08132997 0.1121653 13.47828 -0.1121653 0.1121653 13.47828 -0.1535689 0.1121653 13.47828 -0.2091628 0.1121653 13.47828 -0.2838106 0.1121653 13.47828 -0.3840425 0.1121653 13.47828 -0.518627 0.1121653 13.47828 -0.6993381 0.1121653 13.47828 -0.9419845 0.1121653 13.47828 -1.267794 0.1121653 13.47828 -1.705268 0.1121653 13.47828 -2.292679 0.1121653 13.47828 -3.081414 0.1121653 13.47828 -4.140474 0.1121653 13.47828 -5.562508 0.1121653 13.47828 -7.471917 0.1121653 13.47828 -10.03574 0.1121653 13.47828 -13.47828 0.1121653 13.47828 -18.10068 0.1121653 13.47828 -24.30731 0.1121653 13.47828 -32.64117 0.1121653 13.47828 -43.83129 0.1121653 13.47828 -58.85664 0.1121653 13.47828 --0.0175068 0.1535689 13.47828 --0.01161267 0.1535689 13.47828 --0.005718534 0.1535689 13.47828 -0.0001755984 0.1535689 13.47828 -0.006069731 0.1535689 13.47828 -0.01197402 0.1535689 13.47828 -0.01903886 0.1535689 13.47828 -0.02852504 0.1535689 13.47828 -0.04126244 0.1535689 13.47828 -0.05836535 0.1535689 13.47828 -0.08132997 0.1535689 13.47828 -0.1121653 0.1535689 13.47828 -0.1535689 0.1535689 13.47828 -0.2091628 0.1535689 13.47828 -0.2838106 0.1535689 13.47828 -0.3840425 0.1535689 13.47828 -0.518627 0.1535689 13.47828 -0.6993381 0.1535689 13.47828 -0.9419845 0.1535689 13.47828 -1.267794 0.1535689 13.47828 -1.705268 0.1535689 13.47828 -2.292679 0.1535689 13.47828 -3.081414 0.1535689 13.47828 -4.140474 0.1535689 13.47828 -5.562508 0.1535689 13.47828 -7.471917 0.1535689 13.47828 -10.03574 0.1535689 13.47828 -13.47828 0.1535689 13.47828 -18.10068 0.1535689 13.47828 -24.30731 0.1535689 13.47828 -32.64117 0.1535689 13.47828 -43.83129 0.1535689 13.47828 -58.85664 0.1535689 13.47828 --0.0175068 0.2091628 13.47828 --0.01161267 0.2091628 13.47828 --0.005718534 0.2091628 13.47828 -0.0001755984 0.2091628 13.47828 -0.006069731 0.2091628 13.47828 -0.01197402 0.2091628 13.47828 -0.01903886 0.2091628 13.47828 -0.02852504 0.2091628 13.47828 -0.04126244 0.2091628 13.47828 -0.05836535 0.2091628 13.47828 -0.08132997 0.2091628 13.47828 -0.1121653 0.2091628 13.47828 -0.1535689 0.2091628 13.47828 -0.2091628 0.2091628 13.47828 -0.2838106 0.2091628 13.47828 -0.3840425 0.2091628 13.47828 -0.518627 0.2091628 13.47828 -0.6993381 0.2091628 13.47828 -0.9419845 0.2091628 13.47828 -1.267794 0.2091628 13.47828 -1.705268 0.2091628 13.47828 -2.292679 0.2091628 13.47828 -3.081414 0.2091628 13.47828 -4.140474 0.2091628 13.47828 -5.562508 0.2091628 13.47828 -7.471917 0.2091628 13.47828 -10.03574 0.2091628 13.47828 -13.47828 0.2091628 13.47828 -18.10068 0.2091628 13.47828 -24.30731 0.2091628 13.47828 -32.64117 0.2091628 13.47828 -43.83129 0.2091628 13.47828 -58.85664 0.2091628 13.47828 --0.0175068 0.2838106 13.47828 --0.01161267 0.2838106 13.47828 --0.005718534 0.2838106 13.47828 -0.0001755984 0.2838106 13.47828 -0.006069731 0.2838106 13.47828 -0.01197402 0.2838106 13.47828 -0.01903886 0.2838106 13.47828 -0.02852504 0.2838106 13.47828 -0.04126244 0.2838106 13.47828 -0.05836535 0.2838106 13.47828 -0.08132997 0.2838106 13.47828 -0.1121653 0.2838106 13.47828 -0.1535689 0.2838106 13.47828 -0.2091628 0.2838106 13.47828 -0.2838106 0.2838106 13.47828 -0.3840425 0.2838106 13.47828 -0.518627 0.2838106 13.47828 -0.6993381 0.2838106 13.47828 -0.9419845 0.2838106 13.47828 -1.267794 0.2838106 13.47828 -1.705268 0.2838106 13.47828 -2.292679 0.2838106 13.47828 -3.081414 0.2838106 13.47828 -4.140474 0.2838106 13.47828 -5.562508 0.2838106 13.47828 -7.471917 0.2838106 13.47828 -10.03574 0.2838106 13.47828 -13.47828 0.2838106 13.47828 -18.10068 0.2838106 13.47828 -24.30731 0.2838106 13.47828 -32.64117 0.2838106 13.47828 -43.83129 0.2838106 13.47828 -58.85664 0.2838106 13.47828 --0.0175068 0.3840425 13.47828 --0.01161267 0.3840425 13.47828 --0.005718534 0.3840425 13.47828 -0.0001755984 0.3840425 13.47828 -0.006069731 0.3840425 13.47828 -0.01197402 0.3840425 13.47828 -0.01903886 0.3840425 13.47828 -0.02852504 0.3840425 13.47828 -0.04126244 0.3840425 13.47828 -0.05836535 0.3840425 13.47828 -0.08132997 0.3840425 13.47828 -0.1121653 0.3840425 13.47828 -0.1535689 0.3840425 13.47828 -0.2091628 0.3840425 13.47828 -0.2838106 0.3840425 13.47828 -0.3840425 0.3840425 13.47828 -0.518627 0.3840425 13.47828 -0.6993381 0.3840425 13.47828 -0.9419845 0.3840425 13.47828 -1.267794 0.3840425 13.47828 -1.705268 0.3840425 13.47828 -2.292679 0.3840425 13.47828 -3.081414 0.3840425 13.47828 -4.140474 0.3840425 13.47828 -5.562508 0.3840425 13.47828 -7.471917 0.3840425 13.47828 -10.03574 0.3840425 13.47828 -13.47828 0.3840425 13.47828 -18.10068 0.3840425 13.47828 -24.30731 0.3840425 13.47828 -32.64117 0.3840425 13.47828 -43.83129 0.3840425 13.47828 -58.85664 0.3840425 13.47828 --0.0175068 0.518627 13.47828 --0.01161267 0.518627 13.47828 --0.005718534 0.518627 13.47828 -0.0001755984 0.518627 13.47828 -0.006069731 0.518627 13.47828 -0.01197402 0.518627 13.47828 -0.01903886 0.518627 13.47828 -0.02852504 0.518627 13.47828 -0.04126244 0.518627 13.47828 -0.05836535 0.518627 13.47828 -0.08132997 0.518627 13.47828 -0.1121653 0.518627 13.47828 -0.1535689 0.518627 13.47828 -0.2091628 0.518627 13.47828 -0.2838106 0.518627 13.47828 -0.3840425 0.518627 13.47828 -0.518627 0.518627 13.47828 -0.6993381 0.518627 13.47828 -0.9419845 0.518627 13.47828 -1.267794 0.518627 13.47828 -1.705268 0.518627 13.47828 -2.292679 0.518627 13.47828 -3.081414 0.518627 13.47828 -4.140474 0.518627 13.47828 -5.562508 0.518627 13.47828 -7.471917 0.518627 13.47828 -10.03574 0.518627 13.47828 -13.47828 0.518627 13.47828 -18.10068 0.518627 13.47828 -24.30731 0.518627 13.47828 -32.64117 0.518627 13.47828 -43.83129 0.518627 13.47828 -58.85664 0.518627 13.47828 --0.0175068 0.6993381 13.47828 --0.01161267 0.6993381 13.47828 --0.005718534 0.6993381 13.47828 -0.0001755984 0.6993381 13.47828 -0.006069731 0.6993381 13.47828 -0.01197402 0.6993381 13.47828 -0.01903886 0.6993381 13.47828 -0.02852504 0.6993381 13.47828 -0.04126244 0.6993381 13.47828 -0.05836535 0.6993381 13.47828 -0.08132997 0.6993381 13.47828 -0.1121653 0.6993381 13.47828 -0.1535689 0.6993381 13.47828 -0.2091628 0.6993381 13.47828 -0.2838106 0.6993381 13.47828 -0.3840425 0.6993381 13.47828 -0.518627 0.6993381 13.47828 -0.6993381 0.6993381 13.47828 -0.9419845 0.6993381 13.47828 -1.267794 0.6993381 13.47828 -1.705268 0.6993381 13.47828 -2.292679 0.6993381 13.47828 -3.081414 0.6993381 13.47828 -4.140474 0.6993381 13.47828 -5.562508 0.6993381 13.47828 -7.471917 0.6993381 13.47828 -10.03574 0.6993381 13.47828 -13.47828 0.6993381 13.47828 -18.10068 0.6993381 13.47828 -24.30731 0.6993381 13.47828 -32.64117 0.6993381 13.47828 -43.83129 0.6993381 13.47828 -58.85664 0.6993381 13.47828 --0.0175068 0.9419845 13.47828 --0.01161267 0.9419845 13.47828 --0.005718534 0.9419845 13.47828 -0.0001755984 0.9419845 13.47828 -0.006069731 0.9419845 13.47828 -0.01197402 0.9419845 13.47828 -0.01903886 0.9419845 13.47828 -0.02852504 0.9419845 13.47828 -0.04126244 0.9419845 13.47828 -0.05836535 0.9419845 13.47828 -0.08132997 0.9419845 13.47828 -0.1121653 0.9419845 13.47828 -0.1535689 0.9419845 13.47828 -0.2091628 0.9419845 13.47828 -0.2838106 0.9419845 13.47828 -0.3840425 0.9419845 13.47828 -0.518627 0.9419845 13.47828 -0.6993381 0.9419845 13.47828 -0.9419845 0.9419845 13.47828 -1.267794 0.9419845 13.47828 -1.705268 0.9419845 13.47828 -2.292679 0.9419845 13.47828 -3.081414 0.9419845 13.47828 -4.140474 0.9419845 13.47828 -5.562508 0.9419845 13.47828 -7.471917 0.9419845 13.47828 -10.03574 0.9419845 13.47828 -13.47828 0.9419845 13.47828 -18.10068 0.9419845 13.47828 -24.30731 0.9419845 13.47828 -32.64117 0.9419845 13.47828 -43.83129 0.9419845 13.47828 -58.85664 0.9419845 13.47828 --0.0175068 1.267794 13.47828 --0.01161267 1.267794 13.47828 --0.005718534 1.267794 13.47828 -0.0001755984 1.267794 13.47828 -0.006069731 1.267794 13.47828 -0.01197402 1.267794 13.47828 -0.01903886 1.267794 13.47828 -0.02852504 1.267794 13.47828 -0.04126244 1.267794 13.47828 -0.05836535 1.267794 13.47828 -0.08132997 1.267794 13.47828 -0.1121653 1.267794 13.47828 -0.1535689 1.267794 13.47828 -0.2091628 1.267794 13.47828 -0.2838106 1.267794 13.47828 -0.3840425 1.267794 13.47828 -0.518627 1.267794 13.47828 -0.6993381 1.267794 13.47828 -0.9419845 1.267794 13.47828 -1.267794 1.267794 13.47828 -1.705268 1.267794 13.47828 -2.292679 1.267794 13.47828 -3.081414 1.267794 13.47828 -4.140474 1.267794 13.47828 -5.562508 1.267794 13.47828 -7.471917 1.267794 13.47828 -10.03574 1.267794 13.47828 -13.47828 1.267794 13.47828 -18.10068 1.267794 13.47828 -24.30731 1.267794 13.47828 -32.64117 1.267794 13.47828 -43.83129 1.267794 13.47828 -58.85664 1.267794 13.47828 --0.0175068 1.705268 13.47828 --0.01161267 1.705268 13.47828 --0.005718534 1.705268 13.47828 -0.0001755984 1.705268 13.47828 -0.006069731 1.705268 13.47828 -0.01197402 1.705268 13.47828 -0.01903886 1.705268 13.47828 -0.02852504 1.705268 13.47828 -0.04126244 1.705268 13.47828 -0.05836535 1.705268 13.47828 -0.08132997 1.705268 13.47828 -0.1121653 1.705268 13.47828 -0.1535689 1.705268 13.47828 -0.2091628 1.705268 13.47828 -0.2838106 1.705268 13.47828 -0.3840425 1.705268 13.47828 -0.518627 1.705268 13.47828 -0.6993381 1.705268 13.47828 -0.9419845 1.705268 13.47828 -1.267794 1.705268 13.47828 -1.705268 1.705268 13.47828 -2.292679 1.705268 13.47828 -3.081414 1.705268 13.47828 -4.140474 1.705268 13.47828 -5.562508 1.705268 13.47828 -7.471917 1.705268 13.47828 -10.03574 1.705268 13.47828 -13.47828 1.705268 13.47828 -18.10068 1.705268 13.47828 -24.30731 1.705268 13.47828 -32.64117 1.705268 13.47828 -43.83129 1.705268 13.47828 -58.85664 1.705268 13.47828 --0.0175068 2.292679 13.47828 --0.01161267 2.292679 13.47828 --0.005718534 2.292679 13.47828 -0.0001755984 2.292679 13.47828 -0.006069731 2.292679 13.47828 -0.01197402 2.292679 13.47828 -0.01903886 2.292679 13.47828 -0.02852504 2.292679 13.47828 -0.04126244 2.292679 13.47828 -0.05836535 2.292679 13.47828 -0.08132997 2.292679 13.47828 -0.1121653 2.292679 13.47828 -0.1535689 2.292679 13.47828 -0.2091628 2.292679 13.47828 -0.2838106 2.292679 13.47828 -0.3840425 2.292679 13.47828 -0.518627 2.292679 13.47828 -0.6993381 2.292679 13.47828 -0.9419845 2.292679 13.47828 -1.267794 2.292679 13.47828 -1.705268 2.292679 13.47828 -2.292679 2.292679 13.47828 -3.081414 2.292679 13.47828 -4.140474 2.292679 13.47828 -5.562508 2.292679 13.47828 -7.471917 2.292679 13.47828 -10.03574 2.292679 13.47828 -13.47828 2.292679 13.47828 -18.10068 2.292679 13.47828 -24.30731 2.292679 13.47828 -32.64117 2.292679 13.47828 -43.83129 2.292679 13.47828 -58.85664 2.292679 13.47828 --0.0175068 3.081414 13.47828 --0.01161267 3.081414 13.47828 --0.005718534 3.081414 13.47828 -0.0001755984 3.081414 13.47828 -0.006069731 3.081414 13.47828 -0.01197402 3.081414 13.47828 -0.01903886 3.081414 13.47828 -0.02852504 3.081414 13.47828 -0.04126244 3.081414 13.47828 -0.05836535 3.081414 13.47828 -0.08132997 3.081414 13.47828 -0.1121653 3.081414 13.47828 -0.1535689 3.081414 13.47828 -0.2091628 3.081414 13.47828 -0.2838106 3.081414 13.47828 -0.3840425 3.081414 13.47828 -0.518627 3.081414 13.47828 -0.6993381 3.081414 13.47828 -0.9419845 3.081414 13.47828 -1.267794 3.081414 13.47828 -1.705268 3.081414 13.47828 -2.292679 3.081414 13.47828 -3.081414 3.081414 13.47828 -4.140474 3.081414 13.47828 -5.562508 3.081414 13.47828 -7.471917 3.081414 13.47828 -10.03574 3.081414 13.47828 -13.47828 3.081414 13.47828 -18.10068 3.081414 13.47828 -24.30731 3.081414 13.47828 -32.64117 3.081414 13.47828 -43.83129 3.081414 13.47828 -58.85664 3.081414 13.47828 --0.0175068 4.140474 13.47828 --0.01161267 4.140474 13.47828 --0.005718534 4.140474 13.47828 -0.0001755984 4.140474 13.47828 -0.006069731 4.140474 13.47828 -0.01197402 4.140474 13.47828 -0.01903886 4.140474 13.47828 -0.02852504 4.140474 13.47828 -0.04126244 4.140474 13.47828 -0.05836535 4.140474 13.47828 -0.08132997 4.140474 13.47828 -0.1121653 4.140474 13.47828 -0.1535689 4.140474 13.47828 -0.2091628 4.140474 13.47828 -0.2838106 4.140474 13.47828 -0.3840425 4.140474 13.47828 -0.518627 4.140474 13.47828 -0.6993381 4.140474 13.47828 -0.9419845 4.140474 13.47828 -1.267794 4.140474 13.47828 -1.705268 4.140474 13.47828 -2.292679 4.140474 13.47828 -3.081414 4.140474 13.47828 -4.140474 4.140474 13.47828 -5.562508 4.140474 13.47828 -7.471917 4.140474 13.47828 -10.03574 4.140474 13.47828 -13.47828 4.140474 13.47828 -18.10068 4.140474 13.47828 -24.30731 4.140474 13.47828 -32.64117 4.140474 13.47828 -43.83129 4.140474 13.47828 -58.85664 4.140474 13.47828 --0.0175068 5.562508 13.47828 --0.01161267 5.562508 13.47828 --0.005718534 5.562508 13.47828 -0.0001755984 5.562508 13.47828 -0.006069731 5.562508 13.47828 -0.01197402 5.562508 13.47828 -0.01903886 5.562508 13.47828 -0.02852504 5.562508 13.47828 -0.04126244 5.562508 13.47828 -0.05836535 5.562508 13.47828 -0.08132997 5.562508 13.47828 -0.1121653 5.562508 13.47828 -0.1535689 5.562508 13.47828 -0.2091628 5.562508 13.47828 -0.2838106 5.562508 13.47828 -0.3840425 5.562508 13.47828 -0.518627 5.562508 13.47828 -0.6993381 5.562508 13.47828 -0.9419845 5.562508 13.47828 -1.267794 5.562508 13.47828 -1.705268 5.562508 13.47828 -2.292679 5.562508 13.47828 -3.081414 5.562508 13.47828 -4.140474 5.562508 13.47828 -5.562508 5.562508 13.47828 -7.471917 5.562508 13.47828 -10.03574 5.562508 13.47828 -13.47828 5.562508 13.47828 -18.10068 5.562508 13.47828 -24.30731 5.562508 13.47828 -32.64117 5.562508 13.47828 -43.83129 5.562508 13.47828 -58.85664 5.562508 13.47828 --0.0175068 7.471917 13.47828 --0.01161267 7.471917 13.47828 --0.005718534 7.471917 13.47828 -0.0001755984 7.471917 13.47828 -0.006069731 7.471917 13.47828 -0.01197402 7.471917 13.47828 -0.01903886 7.471917 13.47828 -0.02852504 7.471917 13.47828 -0.04126244 7.471917 13.47828 -0.05836535 7.471917 13.47828 -0.08132997 7.471917 13.47828 -0.1121653 7.471917 13.47828 -0.1535689 7.471917 13.47828 -0.2091628 7.471917 13.47828 -0.2838106 7.471917 13.47828 -0.3840425 7.471917 13.47828 -0.518627 7.471917 13.47828 -0.6993381 7.471917 13.47828 -0.9419845 7.471917 13.47828 -1.267794 7.471917 13.47828 -1.705268 7.471917 13.47828 -2.292679 7.471917 13.47828 -3.081414 7.471917 13.47828 -4.140474 7.471917 13.47828 -5.562508 7.471917 13.47828 -7.471917 7.471917 13.47828 -10.03574 7.471917 13.47828 -13.47828 7.471917 13.47828 -18.10068 7.471917 13.47828 -24.30731 7.471917 13.47828 -32.64117 7.471917 13.47828 -43.83129 7.471917 13.47828 -58.85664 7.471917 13.47828 --0.0175068 10.03574 13.47828 --0.01161267 10.03574 13.47828 --0.005718534 10.03574 13.47828 -0.0001755984 10.03574 13.47828 -0.006069731 10.03574 13.47828 -0.01197402 10.03574 13.47828 -0.01903886 10.03574 13.47828 -0.02852504 10.03574 13.47828 -0.04126244 10.03574 13.47828 -0.05836535 10.03574 13.47828 -0.08132997 10.03574 13.47828 -0.1121653 10.03574 13.47828 -0.1535689 10.03574 13.47828 -0.2091628 10.03574 13.47828 -0.2838106 10.03574 13.47828 -0.3840425 10.03574 13.47828 -0.518627 10.03574 13.47828 -0.6993381 10.03574 13.47828 -0.9419845 10.03574 13.47828 -1.267794 10.03574 13.47828 -1.705268 10.03574 13.47828 -2.292679 10.03574 13.47828 -3.081414 10.03574 13.47828 -4.140474 10.03574 13.47828 -5.562508 10.03574 13.47828 -7.471917 10.03574 13.47828 -10.03574 10.03574 13.47828 -13.47828 10.03574 13.47828 -18.10068 10.03574 13.47828 -24.30731 10.03574 13.47828 -32.64117 10.03574 13.47828 -43.83129 10.03574 13.47828 -58.85664 10.03574 13.47828 --0.0175068 13.47828 13.47828 --0.01161267 13.47828 13.47828 --0.005718534 13.47828 13.47828 -0.0001755984 13.47828 13.47828 -0.006069731 13.47828 13.47828 -0.01197402 13.47828 13.47828 -0.01903886 13.47828 13.47828 -0.02852504 13.47828 13.47828 -0.04126244 13.47828 13.47828 -0.05836535 13.47828 13.47828 -0.08132997 13.47828 13.47828 -0.1121653 13.47828 13.47828 -0.1535689 13.47828 13.47828 -0.2091628 13.47828 13.47828 -0.2838106 13.47828 13.47828 -0.3840425 13.47828 13.47828 -0.518627 13.47828 13.47828 -0.6993381 13.47828 13.47828 -0.9419845 13.47828 13.47828 -1.267794 13.47828 13.47828 -1.705268 13.47828 13.47828 -2.292679 13.47828 13.47828 -3.081414 13.47828 13.47828 -4.140474 13.47828 13.47828 -5.562508 13.47828 13.47828 -7.471917 13.47828 13.47828 -10.03574 13.47828 13.47828 -13.47828 13.47828 13.47828 -18.10068 13.47828 13.47828 -24.30731 13.47828 13.47828 -32.64117 13.47828 13.47828 -43.83129 13.47828 13.47828 -58.85664 13.47828 13.47828 --0.0175068 18.10068 13.47828 --0.01161267 18.10068 13.47828 --0.005718534 18.10068 13.47828 -0.0001755984 18.10068 13.47828 -0.006069731 18.10068 13.47828 -0.01197402 18.10068 13.47828 -0.01903886 18.10068 13.47828 -0.02852504 18.10068 13.47828 -0.04126244 18.10068 13.47828 -0.05836535 18.10068 13.47828 -0.08132997 18.10068 13.47828 -0.1121653 18.10068 13.47828 -0.1535689 18.10068 13.47828 -0.2091628 18.10068 13.47828 -0.2838106 18.10068 13.47828 -0.3840425 18.10068 13.47828 -0.518627 18.10068 13.47828 -0.6993381 18.10068 13.47828 -0.9419845 18.10068 13.47828 -1.267794 18.10068 13.47828 -1.705268 18.10068 13.47828 -2.292679 18.10068 13.47828 -3.081414 18.10068 13.47828 -4.140474 18.10068 13.47828 -5.562508 18.10068 13.47828 -7.471917 18.10068 13.47828 -10.03574 18.10068 13.47828 -13.47828 18.10068 13.47828 -18.10068 18.10068 13.47828 -24.30731 18.10068 13.47828 -32.64117 18.10068 13.47828 -43.83129 18.10068 13.47828 -58.85664 18.10068 13.47828 --0.0175068 24.30731 13.47828 --0.01161267 24.30731 13.47828 --0.005718534 24.30731 13.47828 -0.0001755984 24.30731 13.47828 -0.006069731 24.30731 13.47828 -0.01197402 24.30731 13.47828 -0.01903886 24.30731 13.47828 -0.02852504 24.30731 13.47828 -0.04126244 24.30731 13.47828 -0.05836535 24.30731 13.47828 -0.08132997 24.30731 13.47828 -0.1121653 24.30731 13.47828 -0.1535689 24.30731 13.47828 -0.2091628 24.30731 13.47828 -0.2838106 24.30731 13.47828 -0.3840425 24.30731 13.47828 -0.518627 24.30731 13.47828 -0.6993381 24.30731 13.47828 -0.9419845 24.30731 13.47828 -1.267794 24.30731 13.47828 -1.705268 24.30731 13.47828 -2.292679 24.30731 13.47828 -3.081414 24.30731 13.47828 -4.140474 24.30731 13.47828 -5.562508 24.30731 13.47828 -7.471917 24.30731 13.47828 -10.03574 24.30731 13.47828 -13.47828 24.30731 13.47828 -18.10068 24.30731 13.47828 -24.30731 24.30731 13.47828 -32.64117 24.30731 13.47828 -43.83129 24.30731 13.47828 -58.85664 24.30731 13.47828 --0.0175068 32.64117 13.47828 --0.01161267 32.64117 13.47828 --0.005718534 32.64117 13.47828 -0.0001755984 32.64117 13.47828 -0.006069731 32.64117 13.47828 -0.01197402 32.64117 13.47828 -0.01903886 32.64117 13.47828 -0.02852504 32.64117 13.47828 -0.04126244 32.64117 13.47828 -0.05836535 32.64117 13.47828 -0.08132997 32.64117 13.47828 -0.1121653 32.64117 13.47828 -0.1535689 32.64117 13.47828 -0.2091628 32.64117 13.47828 -0.2838106 32.64117 13.47828 -0.3840425 32.64117 13.47828 -0.518627 32.64117 13.47828 -0.6993381 32.64117 13.47828 -0.9419845 32.64117 13.47828 -1.267794 32.64117 13.47828 -1.705268 32.64117 13.47828 -2.292679 32.64117 13.47828 -3.081414 32.64117 13.47828 -4.140474 32.64117 13.47828 -5.562508 32.64117 13.47828 -7.471917 32.64117 13.47828 -10.03574 32.64117 13.47828 -13.47828 32.64117 13.47828 -18.10068 32.64117 13.47828 -24.30731 32.64117 13.47828 -32.64117 32.64117 13.47828 -43.83129 32.64117 13.47828 -58.85664 32.64117 13.47828 --0.0175068 43.83129 13.47828 --0.01161267 43.83129 13.47828 --0.005718534 43.83129 13.47828 -0.0001755984 43.83129 13.47828 -0.006069731 43.83129 13.47828 -0.01197402 43.83129 13.47828 -0.01903886 43.83129 13.47828 -0.02852504 43.83129 13.47828 -0.04126244 43.83129 13.47828 -0.05836535 43.83129 13.47828 -0.08132997 43.83129 13.47828 -0.1121653 43.83129 13.47828 -0.1535689 43.83129 13.47828 -0.2091628 43.83129 13.47828 -0.2838106 43.83129 13.47828 -0.3840425 43.83129 13.47828 -0.518627 43.83129 13.47828 -0.6993381 43.83129 13.47828 -0.9419845 43.83129 13.47828 -1.267794 43.83129 13.47828 -1.705268 43.83129 13.47828 -2.292679 43.83129 13.47828 -3.081414 43.83129 13.47828 -4.140474 43.83129 13.47828 -5.562508 43.83129 13.47828 -7.471917 43.83129 13.47828 -10.03574 43.83129 13.47828 -13.47828 43.83129 13.47828 -18.10068 43.83129 13.47828 -24.30731 43.83129 13.47828 -32.64117 43.83129 13.47828 -43.83129 43.83129 13.47828 -58.85664 43.83129 13.47828 --0.0175068 58.85664 13.47828 --0.01161267 58.85664 13.47828 --0.005718534 58.85664 13.47828 -0.0001755984 58.85664 13.47828 -0.006069731 58.85664 13.47828 -0.01197402 58.85664 13.47828 -0.01903886 58.85664 13.47828 -0.02852504 58.85664 13.47828 -0.04126244 58.85664 13.47828 -0.05836535 58.85664 13.47828 -0.08132997 58.85664 13.47828 -0.1121653 58.85664 13.47828 -0.1535689 58.85664 13.47828 -0.2091628 58.85664 13.47828 -0.2838106 58.85664 13.47828 -0.3840425 58.85664 13.47828 -0.518627 58.85664 13.47828 -0.6993381 58.85664 13.47828 -0.9419845 58.85664 13.47828 -1.267794 58.85664 13.47828 -1.705268 58.85664 13.47828 -2.292679 58.85664 13.47828 -3.081414 58.85664 13.47828 -4.140474 58.85664 13.47828 -5.562508 58.85664 13.47828 -7.471917 58.85664 13.47828 -10.03574 58.85664 13.47828 -13.47828 58.85664 13.47828 -18.10068 58.85664 13.47828 -24.30731 58.85664 13.47828 -32.64117 58.85664 13.47828 -43.83129 58.85664 13.47828 -58.85664 58.85664 13.47828 --0.0175068 -0.0175068 18.10068 --0.01161267 -0.0175068 18.10068 --0.005718534 -0.0175068 18.10068 -0.0001755984 -0.0175068 18.10068 -0.006069731 -0.0175068 18.10068 -0.01197402 -0.0175068 18.10068 -0.01903886 -0.0175068 18.10068 -0.02852504 -0.0175068 18.10068 -0.04126244 -0.0175068 18.10068 -0.05836535 -0.0175068 18.10068 -0.08132997 -0.0175068 18.10068 -0.1121653 -0.0175068 18.10068 -0.1535689 -0.0175068 18.10068 -0.2091628 -0.0175068 18.10068 -0.2838106 -0.0175068 18.10068 -0.3840425 -0.0175068 18.10068 -0.518627 -0.0175068 18.10068 -0.6993381 -0.0175068 18.10068 -0.9419845 -0.0175068 18.10068 -1.267794 -0.0175068 18.10068 -1.705268 -0.0175068 18.10068 -2.292679 -0.0175068 18.10068 -3.081414 -0.0175068 18.10068 -4.140474 -0.0175068 18.10068 -5.562508 -0.0175068 18.10068 -7.471917 -0.0175068 18.10068 -10.03574 -0.0175068 18.10068 -13.47828 -0.0175068 18.10068 -18.10068 -0.0175068 18.10068 -24.30731 -0.0175068 18.10068 -32.64117 -0.0175068 18.10068 -43.83129 -0.0175068 18.10068 -58.85664 -0.0175068 18.10068 --0.0175068 -0.01161267 18.10068 --0.01161267 -0.01161267 18.10068 --0.005718534 -0.01161267 18.10068 -0.0001755984 -0.01161267 18.10068 -0.006069731 -0.01161267 18.10068 -0.01197402 -0.01161267 18.10068 -0.01903886 -0.01161267 18.10068 -0.02852504 -0.01161267 18.10068 -0.04126244 -0.01161267 18.10068 -0.05836535 -0.01161267 18.10068 -0.08132997 -0.01161267 18.10068 -0.1121653 -0.01161267 18.10068 -0.1535689 -0.01161267 18.10068 -0.2091628 -0.01161267 18.10068 -0.2838106 -0.01161267 18.10068 -0.3840425 -0.01161267 18.10068 -0.518627 -0.01161267 18.10068 -0.6993381 -0.01161267 18.10068 -0.9419845 -0.01161267 18.10068 -1.267794 -0.01161267 18.10068 -1.705268 -0.01161267 18.10068 -2.292679 -0.01161267 18.10068 -3.081414 -0.01161267 18.10068 -4.140474 -0.01161267 18.10068 -5.562508 -0.01161267 18.10068 -7.471917 -0.01161267 18.10068 -10.03574 -0.01161267 18.10068 -13.47828 -0.01161267 18.10068 -18.10068 -0.01161267 18.10068 -24.30731 -0.01161267 18.10068 -32.64117 -0.01161267 18.10068 -43.83129 -0.01161267 18.10068 -58.85664 -0.01161267 18.10068 --0.0175068 -0.005718534 18.10068 --0.01161267 -0.005718534 18.10068 --0.005718534 -0.005718534 18.10068 -0.0001755984 -0.005718534 18.10068 -0.006069731 -0.005718534 18.10068 -0.01197402 -0.005718534 18.10068 -0.01903886 -0.005718534 18.10068 -0.02852504 -0.005718534 18.10068 -0.04126244 -0.005718534 18.10068 -0.05836535 -0.005718534 18.10068 -0.08132997 -0.005718534 18.10068 -0.1121653 -0.005718534 18.10068 -0.1535689 -0.005718534 18.10068 -0.2091628 -0.005718534 18.10068 -0.2838106 -0.005718534 18.10068 -0.3840425 -0.005718534 18.10068 -0.518627 -0.005718534 18.10068 -0.6993381 -0.005718534 18.10068 -0.9419845 -0.005718534 18.10068 -1.267794 -0.005718534 18.10068 -1.705268 -0.005718534 18.10068 -2.292679 -0.005718534 18.10068 -3.081414 -0.005718534 18.10068 -4.140474 -0.005718534 18.10068 -5.562508 -0.005718534 18.10068 -7.471917 -0.005718534 18.10068 -10.03574 -0.005718534 18.10068 -13.47828 -0.005718534 18.10068 -18.10068 -0.005718534 18.10068 -24.30731 -0.005718534 18.10068 -32.64117 -0.005718534 18.10068 -43.83129 -0.005718534 18.10068 -58.85664 -0.005718534 18.10068 --0.0175068 0.0001755984 18.10068 --0.01161267 0.0001755984 18.10068 --0.005718534 0.0001755984 18.10068 -0.0001755984 0.0001755984 18.10068 -0.006069731 0.0001755984 18.10068 -0.01197402 0.0001755984 18.10068 -0.01903886 0.0001755984 18.10068 -0.02852504 0.0001755984 18.10068 -0.04126244 0.0001755984 18.10068 -0.05836535 0.0001755984 18.10068 -0.08132997 0.0001755984 18.10068 -0.1121653 0.0001755984 18.10068 -0.1535689 0.0001755984 18.10068 -0.2091628 0.0001755984 18.10068 -0.2838106 0.0001755984 18.10068 -0.3840425 0.0001755984 18.10068 -0.518627 0.0001755984 18.10068 -0.6993381 0.0001755984 18.10068 -0.9419845 0.0001755984 18.10068 -1.267794 0.0001755984 18.10068 -1.705268 0.0001755984 18.10068 -2.292679 0.0001755984 18.10068 -3.081414 0.0001755984 18.10068 -4.140474 0.0001755984 18.10068 -5.562508 0.0001755984 18.10068 -7.471917 0.0001755984 18.10068 -10.03574 0.0001755984 18.10068 -13.47828 0.0001755984 18.10068 -18.10068 0.0001755984 18.10068 -24.30731 0.0001755984 18.10068 -32.64117 0.0001755984 18.10068 -43.83129 0.0001755984 18.10068 -58.85664 0.0001755984 18.10068 --0.0175068 0.006069731 18.10068 --0.01161267 0.006069731 18.10068 --0.005718534 0.006069731 18.10068 -0.0001755984 0.006069731 18.10068 -0.006069731 0.006069731 18.10068 -0.01197402 0.006069731 18.10068 -0.01903886 0.006069731 18.10068 -0.02852504 0.006069731 18.10068 -0.04126244 0.006069731 18.10068 -0.05836535 0.006069731 18.10068 -0.08132997 0.006069731 18.10068 -0.1121653 0.006069731 18.10068 -0.1535689 0.006069731 18.10068 -0.2091628 0.006069731 18.10068 -0.2838106 0.006069731 18.10068 -0.3840425 0.006069731 18.10068 -0.518627 0.006069731 18.10068 -0.6993381 0.006069731 18.10068 -0.9419845 0.006069731 18.10068 -1.267794 0.006069731 18.10068 -1.705268 0.006069731 18.10068 -2.292679 0.006069731 18.10068 -3.081414 0.006069731 18.10068 -4.140474 0.006069731 18.10068 -5.562508 0.006069731 18.10068 -7.471917 0.006069731 18.10068 -10.03574 0.006069731 18.10068 -13.47828 0.006069731 18.10068 -18.10068 0.006069731 18.10068 -24.30731 0.006069731 18.10068 -32.64117 0.006069731 18.10068 -43.83129 0.006069731 18.10068 -58.85664 0.006069731 18.10068 --0.0175068 0.01197402 18.10068 --0.01161267 0.01197402 18.10068 --0.005718534 0.01197402 18.10068 -0.0001755984 0.01197402 18.10068 -0.006069731 0.01197402 18.10068 -0.01197402 0.01197402 18.10068 -0.01903886 0.01197402 18.10068 -0.02852504 0.01197402 18.10068 -0.04126244 0.01197402 18.10068 -0.05836535 0.01197402 18.10068 -0.08132997 0.01197402 18.10068 -0.1121653 0.01197402 18.10068 -0.1535689 0.01197402 18.10068 -0.2091628 0.01197402 18.10068 -0.2838106 0.01197402 18.10068 -0.3840425 0.01197402 18.10068 -0.518627 0.01197402 18.10068 -0.6993381 0.01197402 18.10068 -0.9419845 0.01197402 18.10068 -1.267794 0.01197402 18.10068 -1.705268 0.01197402 18.10068 -2.292679 0.01197402 18.10068 -3.081414 0.01197402 18.10068 -4.140474 0.01197402 18.10068 -5.562508 0.01197402 18.10068 -7.471917 0.01197402 18.10068 -10.03574 0.01197402 18.10068 -13.47828 0.01197402 18.10068 -18.10068 0.01197402 18.10068 -24.30731 0.01197402 18.10068 -32.64117 0.01197402 18.10068 -43.83129 0.01197402 18.10068 -58.85664 0.01197402 18.10068 --0.0175068 0.01903886 18.10068 --0.01161267 0.01903886 18.10068 --0.005718534 0.01903886 18.10068 -0.0001755984 0.01903886 18.10068 -0.006069731 0.01903886 18.10068 -0.01197402 0.01903886 18.10068 -0.01903886 0.01903886 18.10068 -0.02852504 0.01903886 18.10068 -0.04126244 0.01903886 18.10068 -0.05836535 0.01903886 18.10068 -0.08132997 0.01903886 18.10068 -0.1121653 0.01903886 18.10068 -0.1535689 0.01903886 18.10068 -0.2091628 0.01903886 18.10068 -0.2838106 0.01903886 18.10068 -0.3840425 0.01903886 18.10068 -0.518627 0.01903886 18.10068 -0.6993381 0.01903886 18.10068 -0.9419845 0.01903886 18.10068 -1.267794 0.01903886 18.10068 -1.705268 0.01903886 18.10068 -2.292679 0.01903886 18.10068 -3.081414 0.01903886 18.10068 -4.140474 0.01903886 18.10068 -5.562508 0.01903886 18.10068 -7.471917 0.01903886 18.10068 -10.03574 0.01903886 18.10068 -13.47828 0.01903886 18.10068 -18.10068 0.01903886 18.10068 -24.30731 0.01903886 18.10068 -32.64117 0.01903886 18.10068 -43.83129 0.01903886 18.10068 -58.85664 0.01903886 18.10068 --0.0175068 0.02852504 18.10068 --0.01161267 0.02852504 18.10068 --0.005718534 0.02852504 18.10068 -0.0001755984 0.02852504 18.10068 -0.006069731 0.02852504 18.10068 -0.01197402 0.02852504 18.10068 -0.01903886 0.02852504 18.10068 -0.02852504 0.02852504 18.10068 -0.04126244 0.02852504 18.10068 -0.05836535 0.02852504 18.10068 -0.08132997 0.02852504 18.10068 -0.1121653 0.02852504 18.10068 -0.1535689 0.02852504 18.10068 -0.2091628 0.02852504 18.10068 -0.2838106 0.02852504 18.10068 -0.3840425 0.02852504 18.10068 -0.518627 0.02852504 18.10068 -0.6993381 0.02852504 18.10068 -0.9419845 0.02852504 18.10068 -1.267794 0.02852504 18.10068 -1.705268 0.02852504 18.10068 -2.292679 0.02852504 18.10068 -3.081414 0.02852504 18.10068 -4.140474 0.02852504 18.10068 -5.562508 0.02852504 18.10068 -7.471917 0.02852504 18.10068 -10.03574 0.02852504 18.10068 -13.47828 0.02852504 18.10068 -18.10068 0.02852504 18.10068 -24.30731 0.02852504 18.10068 -32.64117 0.02852504 18.10068 -43.83129 0.02852504 18.10068 -58.85664 0.02852504 18.10068 --0.0175068 0.04126244 18.10068 --0.01161267 0.04126244 18.10068 --0.005718534 0.04126244 18.10068 -0.0001755984 0.04126244 18.10068 -0.006069731 0.04126244 18.10068 -0.01197402 0.04126244 18.10068 -0.01903886 0.04126244 18.10068 -0.02852504 0.04126244 18.10068 -0.04126244 0.04126244 18.10068 -0.05836535 0.04126244 18.10068 -0.08132997 0.04126244 18.10068 -0.1121653 0.04126244 18.10068 -0.1535689 0.04126244 18.10068 -0.2091628 0.04126244 18.10068 -0.2838106 0.04126244 18.10068 -0.3840425 0.04126244 18.10068 -0.518627 0.04126244 18.10068 -0.6993381 0.04126244 18.10068 -0.9419845 0.04126244 18.10068 -1.267794 0.04126244 18.10068 -1.705268 0.04126244 18.10068 -2.292679 0.04126244 18.10068 -3.081414 0.04126244 18.10068 -4.140474 0.04126244 18.10068 -5.562508 0.04126244 18.10068 -7.471917 0.04126244 18.10068 -10.03574 0.04126244 18.10068 -13.47828 0.04126244 18.10068 -18.10068 0.04126244 18.10068 -24.30731 0.04126244 18.10068 -32.64117 0.04126244 18.10068 -43.83129 0.04126244 18.10068 -58.85664 0.04126244 18.10068 --0.0175068 0.05836535 18.10068 --0.01161267 0.05836535 18.10068 --0.005718534 0.05836535 18.10068 -0.0001755984 0.05836535 18.10068 -0.006069731 0.05836535 18.10068 -0.01197402 0.05836535 18.10068 -0.01903886 0.05836535 18.10068 -0.02852504 0.05836535 18.10068 -0.04126244 0.05836535 18.10068 -0.05836535 0.05836535 18.10068 -0.08132997 0.05836535 18.10068 -0.1121653 0.05836535 18.10068 -0.1535689 0.05836535 18.10068 -0.2091628 0.05836535 18.10068 -0.2838106 0.05836535 18.10068 -0.3840425 0.05836535 18.10068 -0.518627 0.05836535 18.10068 -0.6993381 0.05836535 18.10068 -0.9419845 0.05836535 18.10068 -1.267794 0.05836535 18.10068 -1.705268 0.05836535 18.10068 -2.292679 0.05836535 18.10068 -3.081414 0.05836535 18.10068 -4.140474 0.05836535 18.10068 -5.562508 0.05836535 18.10068 -7.471917 0.05836535 18.10068 -10.03574 0.05836535 18.10068 -13.47828 0.05836535 18.10068 -18.10068 0.05836535 18.10068 -24.30731 0.05836535 18.10068 -32.64117 0.05836535 18.10068 -43.83129 0.05836535 18.10068 -58.85664 0.05836535 18.10068 --0.0175068 0.08132997 18.10068 --0.01161267 0.08132997 18.10068 --0.005718534 0.08132997 18.10068 -0.0001755984 0.08132997 18.10068 -0.006069731 0.08132997 18.10068 -0.01197402 0.08132997 18.10068 -0.01903886 0.08132997 18.10068 -0.02852504 0.08132997 18.10068 -0.04126244 0.08132997 18.10068 -0.05836535 0.08132997 18.10068 -0.08132997 0.08132997 18.10068 -0.1121653 0.08132997 18.10068 -0.1535689 0.08132997 18.10068 -0.2091628 0.08132997 18.10068 -0.2838106 0.08132997 18.10068 -0.3840425 0.08132997 18.10068 -0.518627 0.08132997 18.10068 -0.6993381 0.08132997 18.10068 -0.9419845 0.08132997 18.10068 -1.267794 0.08132997 18.10068 -1.705268 0.08132997 18.10068 -2.292679 0.08132997 18.10068 -3.081414 0.08132997 18.10068 -4.140474 0.08132997 18.10068 -5.562508 0.08132997 18.10068 -7.471917 0.08132997 18.10068 -10.03574 0.08132997 18.10068 -13.47828 0.08132997 18.10068 -18.10068 0.08132997 18.10068 -24.30731 0.08132997 18.10068 -32.64117 0.08132997 18.10068 -43.83129 0.08132997 18.10068 -58.85664 0.08132997 18.10068 --0.0175068 0.1121653 18.10068 --0.01161267 0.1121653 18.10068 --0.005718534 0.1121653 18.10068 -0.0001755984 0.1121653 18.10068 -0.006069731 0.1121653 18.10068 -0.01197402 0.1121653 18.10068 -0.01903886 0.1121653 18.10068 -0.02852504 0.1121653 18.10068 -0.04126244 0.1121653 18.10068 -0.05836535 0.1121653 18.10068 -0.08132997 0.1121653 18.10068 -0.1121653 0.1121653 18.10068 -0.1535689 0.1121653 18.10068 -0.2091628 0.1121653 18.10068 -0.2838106 0.1121653 18.10068 -0.3840425 0.1121653 18.10068 -0.518627 0.1121653 18.10068 -0.6993381 0.1121653 18.10068 -0.9419845 0.1121653 18.10068 -1.267794 0.1121653 18.10068 -1.705268 0.1121653 18.10068 -2.292679 0.1121653 18.10068 -3.081414 0.1121653 18.10068 -4.140474 0.1121653 18.10068 -5.562508 0.1121653 18.10068 -7.471917 0.1121653 18.10068 -10.03574 0.1121653 18.10068 -13.47828 0.1121653 18.10068 -18.10068 0.1121653 18.10068 -24.30731 0.1121653 18.10068 -32.64117 0.1121653 18.10068 -43.83129 0.1121653 18.10068 -58.85664 0.1121653 18.10068 --0.0175068 0.1535689 18.10068 --0.01161267 0.1535689 18.10068 --0.005718534 0.1535689 18.10068 -0.0001755984 0.1535689 18.10068 -0.006069731 0.1535689 18.10068 -0.01197402 0.1535689 18.10068 -0.01903886 0.1535689 18.10068 -0.02852504 0.1535689 18.10068 -0.04126244 0.1535689 18.10068 -0.05836535 0.1535689 18.10068 -0.08132997 0.1535689 18.10068 -0.1121653 0.1535689 18.10068 -0.1535689 0.1535689 18.10068 -0.2091628 0.1535689 18.10068 -0.2838106 0.1535689 18.10068 -0.3840425 0.1535689 18.10068 -0.518627 0.1535689 18.10068 -0.6993381 0.1535689 18.10068 -0.9419845 0.1535689 18.10068 -1.267794 0.1535689 18.10068 -1.705268 0.1535689 18.10068 -2.292679 0.1535689 18.10068 -3.081414 0.1535689 18.10068 -4.140474 0.1535689 18.10068 -5.562508 0.1535689 18.10068 -7.471917 0.1535689 18.10068 -10.03574 0.1535689 18.10068 -13.47828 0.1535689 18.10068 -18.10068 0.1535689 18.10068 -24.30731 0.1535689 18.10068 -32.64117 0.1535689 18.10068 -43.83129 0.1535689 18.10068 -58.85664 0.1535689 18.10068 --0.0175068 0.2091628 18.10068 --0.01161267 0.2091628 18.10068 --0.005718534 0.2091628 18.10068 -0.0001755984 0.2091628 18.10068 -0.006069731 0.2091628 18.10068 -0.01197402 0.2091628 18.10068 -0.01903886 0.2091628 18.10068 -0.02852504 0.2091628 18.10068 -0.04126244 0.2091628 18.10068 -0.05836535 0.2091628 18.10068 -0.08132997 0.2091628 18.10068 -0.1121653 0.2091628 18.10068 -0.1535689 0.2091628 18.10068 -0.2091628 0.2091628 18.10068 -0.2838106 0.2091628 18.10068 -0.3840425 0.2091628 18.10068 -0.518627 0.2091628 18.10068 -0.6993381 0.2091628 18.10068 -0.9419845 0.2091628 18.10068 -1.267794 0.2091628 18.10068 -1.705268 0.2091628 18.10068 -2.292679 0.2091628 18.10068 -3.081414 0.2091628 18.10068 -4.140474 0.2091628 18.10068 -5.562508 0.2091628 18.10068 -7.471917 0.2091628 18.10068 -10.03574 0.2091628 18.10068 -13.47828 0.2091628 18.10068 -18.10068 0.2091628 18.10068 -24.30731 0.2091628 18.10068 -32.64117 0.2091628 18.10068 -43.83129 0.2091628 18.10068 -58.85664 0.2091628 18.10068 --0.0175068 0.2838106 18.10068 --0.01161267 0.2838106 18.10068 --0.005718534 0.2838106 18.10068 -0.0001755984 0.2838106 18.10068 -0.006069731 0.2838106 18.10068 -0.01197402 0.2838106 18.10068 -0.01903886 0.2838106 18.10068 -0.02852504 0.2838106 18.10068 -0.04126244 0.2838106 18.10068 -0.05836535 0.2838106 18.10068 -0.08132997 0.2838106 18.10068 -0.1121653 0.2838106 18.10068 -0.1535689 0.2838106 18.10068 -0.2091628 0.2838106 18.10068 -0.2838106 0.2838106 18.10068 -0.3840425 0.2838106 18.10068 -0.518627 0.2838106 18.10068 -0.6993381 0.2838106 18.10068 -0.9419845 0.2838106 18.10068 -1.267794 0.2838106 18.10068 -1.705268 0.2838106 18.10068 -2.292679 0.2838106 18.10068 -3.081414 0.2838106 18.10068 -4.140474 0.2838106 18.10068 -5.562508 0.2838106 18.10068 -7.471917 0.2838106 18.10068 -10.03574 0.2838106 18.10068 -13.47828 0.2838106 18.10068 -18.10068 0.2838106 18.10068 -24.30731 0.2838106 18.10068 -32.64117 0.2838106 18.10068 -43.83129 0.2838106 18.10068 -58.85664 0.2838106 18.10068 --0.0175068 0.3840425 18.10068 --0.01161267 0.3840425 18.10068 --0.005718534 0.3840425 18.10068 -0.0001755984 0.3840425 18.10068 -0.006069731 0.3840425 18.10068 -0.01197402 0.3840425 18.10068 -0.01903886 0.3840425 18.10068 -0.02852504 0.3840425 18.10068 -0.04126244 0.3840425 18.10068 -0.05836535 0.3840425 18.10068 -0.08132997 0.3840425 18.10068 -0.1121653 0.3840425 18.10068 -0.1535689 0.3840425 18.10068 -0.2091628 0.3840425 18.10068 -0.2838106 0.3840425 18.10068 -0.3840425 0.3840425 18.10068 -0.518627 0.3840425 18.10068 -0.6993381 0.3840425 18.10068 -0.9419845 0.3840425 18.10068 -1.267794 0.3840425 18.10068 -1.705268 0.3840425 18.10068 -2.292679 0.3840425 18.10068 -3.081414 0.3840425 18.10068 -4.140474 0.3840425 18.10068 -5.562508 0.3840425 18.10068 -7.471917 0.3840425 18.10068 -10.03574 0.3840425 18.10068 -13.47828 0.3840425 18.10068 -18.10068 0.3840425 18.10068 -24.30731 0.3840425 18.10068 -32.64117 0.3840425 18.10068 -43.83129 0.3840425 18.10068 -58.85664 0.3840425 18.10068 --0.0175068 0.518627 18.10068 --0.01161267 0.518627 18.10068 --0.005718534 0.518627 18.10068 -0.0001755984 0.518627 18.10068 -0.006069731 0.518627 18.10068 -0.01197402 0.518627 18.10068 -0.01903886 0.518627 18.10068 -0.02852504 0.518627 18.10068 -0.04126244 0.518627 18.10068 -0.05836535 0.518627 18.10068 -0.08132997 0.518627 18.10068 -0.1121653 0.518627 18.10068 -0.1535689 0.518627 18.10068 -0.2091628 0.518627 18.10068 -0.2838106 0.518627 18.10068 -0.3840425 0.518627 18.10068 -0.518627 0.518627 18.10068 -0.6993381 0.518627 18.10068 -0.9419845 0.518627 18.10068 -1.267794 0.518627 18.10068 -1.705268 0.518627 18.10068 -2.292679 0.518627 18.10068 -3.081414 0.518627 18.10068 -4.140474 0.518627 18.10068 -5.562508 0.518627 18.10068 -7.471917 0.518627 18.10068 -10.03574 0.518627 18.10068 -13.47828 0.518627 18.10068 -18.10068 0.518627 18.10068 -24.30731 0.518627 18.10068 -32.64117 0.518627 18.10068 -43.83129 0.518627 18.10068 -58.85664 0.518627 18.10068 --0.0175068 0.6993381 18.10068 --0.01161267 0.6993381 18.10068 --0.005718534 0.6993381 18.10068 -0.0001755984 0.6993381 18.10068 -0.006069731 0.6993381 18.10068 -0.01197402 0.6993381 18.10068 -0.01903886 0.6993381 18.10068 -0.02852504 0.6993381 18.10068 -0.04126244 0.6993381 18.10068 -0.05836535 0.6993381 18.10068 -0.08132997 0.6993381 18.10068 -0.1121653 0.6993381 18.10068 -0.1535689 0.6993381 18.10068 -0.2091628 0.6993381 18.10068 -0.2838106 0.6993381 18.10068 -0.3840425 0.6993381 18.10068 -0.518627 0.6993381 18.10068 -0.6993381 0.6993381 18.10068 -0.9419845 0.6993381 18.10068 -1.267794 0.6993381 18.10068 -1.705268 0.6993381 18.10068 -2.292679 0.6993381 18.10068 -3.081414 0.6993381 18.10068 -4.140474 0.6993381 18.10068 -5.562508 0.6993381 18.10068 -7.471917 0.6993381 18.10068 -10.03574 0.6993381 18.10068 -13.47828 0.6993381 18.10068 -18.10068 0.6993381 18.10068 -24.30731 0.6993381 18.10068 -32.64117 0.6993381 18.10068 -43.83129 0.6993381 18.10068 -58.85664 0.6993381 18.10068 --0.0175068 0.9419845 18.10068 --0.01161267 0.9419845 18.10068 --0.005718534 0.9419845 18.10068 -0.0001755984 0.9419845 18.10068 -0.006069731 0.9419845 18.10068 -0.01197402 0.9419845 18.10068 -0.01903886 0.9419845 18.10068 -0.02852504 0.9419845 18.10068 -0.04126244 0.9419845 18.10068 -0.05836535 0.9419845 18.10068 -0.08132997 0.9419845 18.10068 -0.1121653 0.9419845 18.10068 -0.1535689 0.9419845 18.10068 -0.2091628 0.9419845 18.10068 -0.2838106 0.9419845 18.10068 -0.3840425 0.9419845 18.10068 -0.518627 0.9419845 18.10068 -0.6993381 0.9419845 18.10068 -0.9419845 0.9419845 18.10068 -1.267794 0.9419845 18.10068 -1.705268 0.9419845 18.10068 -2.292679 0.9419845 18.10068 -3.081414 0.9419845 18.10068 -4.140474 0.9419845 18.10068 -5.562508 0.9419845 18.10068 -7.471917 0.9419845 18.10068 -10.03574 0.9419845 18.10068 -13.47828 0.9419845 18.10068 -18.10068 0.9419845 18.10068 -24.30731 0.9419845 18.10068 -32.64117 0.9419845 18.10068 -43.83129 0.9419845 18.10068 -58.85664 0.9419845 18.10068 --0.0175068 1.267794 18.10068 --0.01161267 1.267794 18.10068 --0.005718534 1.267794 18.10068 -0.0001755984 1.267794 18.10068 -0.006069731 1.267794 18.10068 -0.01197402 1.267794 18.10068 -0.01903886 1.267794 18.10068 -0.02852504 1.267794 18.10068 -0.04126244 1.267794 18.10068 -0.05836535 1.267794 18.10068 -0.08132997 1.267794 18.10068 -0.1121653 1.267794 18.10068 -0.1535689 1.267794 18.10068 -0.2091628 1.267794 18.10068 -0.2838106 1.267794 18.10068 -0.3840425 1.267794 18.10068 -0.518627 1.267794 18.10068 -0.6993381 1.267794 18.10068 -0.9419845 1.267794 18.10068 -1.267794 1.267794 18.10068 -1.705268 1.267794 18.10068 -2.292679 1.267794 18.10068 -3.081414 1.267794 18.10068 -4.140474 1.267794 18.10068 -5.562508 1.267794 18.10068 -7.471917 1.267794 18.10068 -10.03574 1.267794 18.10068 -13.47828 1.267794 18.10068 -18.10068 1.267794 18.10068 -24.30731 1.267794 18.10068 -32.64117 1.267794 18.10068 -43.83129 1.267794 18.10068 -58.85664 1.267794 18.10068 --0.0175068 1.705268 18.10068 --0.01161267 1.705268 18.10068 --0.005718534 1.705268 18.10068 -0.0001755984 1.705268 18.10068 -0.006069731 1.705268 18.10068 -0.01197402 1.705268 18.10068 -0.01903886 1.705268 18.10068 -0.02852504 1.705268 18.10068 -0.04126244 1.705268 18.10068 -0.05836535 1.705268 18.10068 -0.08132997 1.705268 18.10068 -0.1121653 1.705268 18.10068 -0.1535689 1.705268 18.10068 -0.2091628 1.705268 18.10068 -0.2838106 1.705268 18.10068 -0.3840425 1.705268 18.10068 -0.518627 1.705268 18.10068 -0.6993381 1.705268 18.10068 -0.9419845 1.705268 18.10068 -1.267794 1.705268 18.10068 -1.705268 1.705268 18.10068 -2.292679 1.705268 18.10068 -3.081414 1.705268 18.10068 -4.140474 1.705268 18.10068 -5.562508 1.705268 18.10068 -7.471917 1.705268 18.10068 -10.03574 1.705268 18.10068 -13.47828 1.705268 18.10068 -18.10068 1.705268 18.10068 -24.30731 1.705268 18.10068 -32.64117 1.705268 18.10068 -43.83129 1.705268 18.10068 -58.85664 1.705268 18.10068 --0.0175068 2.292679 18.10068 --0.01161267 2.292679 18.10068 --0.005718534 2.292679 18.10068 -0.0001755984 2.292679 18.10068 -0.006069731 2.292679 18.10068 -0.01197402 2.292679 18.10068 -0.01903886 2.292679 18.10068 -0.02852504 2.292679 18.10068 -0.04126244 2.292679 18.10068 -0.05836535 2.292679 18.10068 -0.08132997 2.292679 18.10068 -0.1121653 2.292679 18.10068 -0.1535689 2.292679 18.10068 -0.2091628 2.292679 18.10068 -0.2838106 2.292679 18.10068 -0.3840425 2.292679 18.10068 -0.518627 2.292679 18.10068 -0.6993381 2.292679 18.10068 -0.9419845 2.292679 18.10068 -1.267794 2.292679 18.10068 -1.705268 2.292679 18.10068 -2.292679 2.292679 18.10068 -3.081414 2.292679 18.10068 -4.140474 2.292679 18.10068 -5.562508 2.292679 18.10068 -7.471917 2.292679 18.10068 -10.03574 2.292679 18.10068 -13.47828 2.292679 18.10068 -18.10068 2.292679 18.10068 -24.30731 2.292679 18.10068 -32.64117 2.292679 18.10068 -43.83129 2.292679 18.10068 -58.85664 2.292679 18.10068 --0.0175068 3.081414 18.10068 --0.01161267 3.081414 18.10068 --0.005718534 3.081414 18.10068 -0.0001755984 3.081414 18.10068 -0.006069731 3.081414 18.10068 -0.01197402 3.081414 18.10068 -0.01903886 3.081414 18.10068 -0.02852504 3.081414 18.10068 -0.04126244 3.081414 18.10068 -0.05836535 3.081414 18.10068 -0.08132997 3.081414 18.10068 -0.1121653 3.081414 18.10068 -0.1535689 3.081414 18.10068 -0.2091628 3.081414 18.10068 -0.2838106 3.081414 18.10068 -0.3840425 3.081414 18.10068 -0.518627 3.081414 18.10068 -0.6993381 3.081414 18.10068 -0.9419845 3.081414 18.10068 -1.267794 3.081414 18.10068 -1.705268 3.081414 18.10068 -2.292679 3.081414 18.10068 -3.081414 3.081414 18.10068 -4.140474 3.081414 18.10068 -5.562508 3.081414 18.10068 -7.471917 3.081414 18.10068 -10.03574 3.081414 18.10068 -13.47828 3.081414 18.10068 -18.10068 3.081414 18.10068 -24.30731 3.081414 18.10068 -32.64117 3.081414 18.10068 -43.83129 3.081414 18.10068 -58.85664 3.081414 18.10068 --0.0175068 4.140474 18.10068 --0.01161267 4.140474 18.10068 --0.005718534 4.140474 18.10068 -0.0001755984 4.140474 18.10068 -0.006069731 4.140474 18.10068 -0.01197402 4.140474 18.10068 -0.01903886 4.140474 18.10068 -0.02852504 4.140474 18.10068 -0.04126244 4.140474 18.10068 -0.05836535 4.140474 18.10068 -0.08132997 4.140474 18.10068 -0.1121653 4.140474 18.10068 -0.1535689 4.140474 18.10068 -0.2091628 4.140474 18.10068 -0.2838106 4.140474 18.10068 -0.3840425 4.140474 18.10068 -0.518627 4.140474 18.10068 -0.6993381 4.140474 18.10068 -0.9419845 4.140474 18.10068 -1.267794 4.140474 18.10068 -1.705268 4.140474 18.10068 -2.292679 4.140474 18.10068 -3.081414 4.140474 18.10068 -4.140474 4.140474 18.10068 -5.562508 4.140474 18.10068 -7.471917 4.140474 18.10068 -10.03574 4.140474 18.10068 -13.47828 4.140474 18.10068 -18.10068 4.140474 18.10068 -24.30731 4.140474 18.10068 -32.64117 4.140474 18.10068 -43.83129 4.140474 18.10068 -58.85664 4.140474 18.10068 --0.0175068 5.562508 18.10068 --0.01161267 5.562508 18.10068 --0.005718534 5.562508 18.10068 -0.0001755984 5.562508 18.10068 -0.006069731 5.562508 18.10068 -0.01197402 5.562508 18.10068 -0.01903886 5.562508 18.10068 -0.02852504 5.562508 18.10068 -0.04126244 5.562508 18.10068 -0.05836535 5.562508 18.10068 -0.08132997 5.562508 18.10068 -0.1121653 5.562508 18.10068 -0.1535689 5.562508 18.10068 -0.2091628 5.562508 18.10068 -0.2838106 5.562508 18.10068 -0.3840425 5.562508 18.10068 -0.518627 5.562508 18.10068 -0.6993381 5.562508 18.10068 -0.9419845 5.562508 18.10068 -1.267794 5.562508 18.10068 -1.705268 5.562508 18.10068 -2.292679 5.562508 18.10068 -3.081414 5.562508 18.10068 -4.140474 5.562508 18.10068 -5.562508 5.562508 18.10068 -7.471917 5.562508 18.10068 -10.03574 5.562508 18.10068 -13.47828 5.562508 18.10068 -18.10068 5.562508 18.10068 -24.30731 5.562508 18.10068 -32.64117 5.562508 18.10068 -43.83129 5.562508 18.10068 -58.85664 5.562508 18.10068 --0.0175068 7.471917 18.10068 --0.01161267 7.471917 18.10068 --0.005718534 7.471917 18.10068 -0.0001755984 7.471917 18.10068 -0.006069731 7.471917 18.10068 -0.01197402 7.471917 18.10068 -0.01903886 7.471917 18.10068 -0.02852504 7.471917 18.10068 -0.04126244 7.471917 18.10068 -0.05836535 7.471917 18.10068 -0.08132997 7.471917 18.10068 -0.1121653 7.471917 18.10068 -0.1535689 7.471917 18.10068 -0.2091628 7.471917 18.10068 -0.2838106 7.471917 18.10068 -0.3840425 7.471917 18.10068 -0.518627 7.471917 18.10068 -0.6993381 7.471917 18.10068 -0.9419845 7.471917 18.10068 -1.267794 7.471917 18.10068 -1.705268 7.471917 18.10068 -2.292679 7.471917 18.10068 -3.081414 7.471917 18.10068 -4.140474 7.471917 18.10068 -5.562508 7.471917 18.10068 -7.471917 7.471917 18.10068 -10.03574 7.471917 18.10068 -13.47828 7.471917 18.10068 -18.10068 7.471917 18.10068 -24.30731 7.471917 18.10068 -32.64117 7.471917 18.10068 -43.83129 7.471917 18.10068 -58.85664 7.471917 18.10068 --0.0175068 10.03574 18.10068 --0.01161267 10.03574 18.10068 --0.005718534 10.03574 18.10068 -0.0001755984 10.03574 18.10068 -0.006069731 10.03574 18.10068 -0.01197402 10.03574 18.10068 -0.01903886 10.03574 18.10068 -0.02852504 10.03574 18.10068 -0.04126244 10.03574 18.10068 -0.05836535 10.03574 18.10068 -0.08132997 10.03574 18.10068 -0.1121653 10.03574 18.10068 -0.1535689 10.03574 18.10068 -0.2091628 10.03574 18.10068 -0.2838106 10.03574 18.10068 -0.3840425 10.03574 18.10068 -0.518627 10.03574 18.10068 -0.6993381 10.03574 18.10068 -0.9419845 10.03574 18.10068 -1.267794 10.03574 18.10068 -1.705268 10.03574 18.10068 -2.292679 10.03574 18.10068 -3.081414 10.03574 18.10068 -4.140474 10.03574 18.10068 -5.562508 10.03574 18.10068 -7.471917 10.03574 18.10068 -10.03574 10.03574 18.10068 -13.47828 10.03574 18.10068 -18.10068 10.03574 18.10068 -24.30731 10.03574 18.10068 -32.64117 10.03574 18.10068 -43.83129 10.03574 18.10068 -58.85664 10.03574 18.10068 --0.0175068 13.47828 18.10068 --0.01161267 13.47828 18.10068 --0.005718534 13.47828 18.10068 -0.0001755984 13.47828 18.10068 -0.006069731 13.47828 18.10068 -0.01197402 13.47828 18.10068 -0.01903886 13.47828 18.10068 -0.02852504 13.47828 18.10068 -0.04126244 13.47828 18.10068 -0.05836535 13.47828 18.10068 -0.08132997 13.47828 18.10068 -0.1121653 13.47828 18.10068 -0.1535689 13.47828 18.10068 -0.2091628 13.47828 18.10068 -0.2838106 13.47828 18.10068 -0.3840425 13.47828 18.10068 -0.518627 13.47828 18.10068 -0.6993381 13.47828 18.10068 -0.9419845 13.47828 18.10068 -1.267794 13.47828 18.10068 -1.705268 13.47828 18.10068 -2.292679 13.47828 18.10068 -3.081414 13.47828 18.10068 -4.140474 13.47828 18.10068 -5.562508 13.47828 18.10068 -7.471917 13.47828 18.10068 -10.03574 13.47828 18.10068 -13.47828 13.47828 18.10068 -18.10068 13.47828 18.10068 -24.30731 13.47828 18.10068 -32.64117 13.47828 18.10068 -43.83129 13.47828 18.10068 -58.85664 13.47828 18.10068 --0.0175068 18.10068 18.10068 --0.01161267 18.10068 18.10068 --0.005718534 18.10068 18.10068 -0.0001755984 18.10068 18.10068 -0.006069731 18.10068 18.10068 -0.01197402 18.10068 18.10068 -0.01903886 18.10068 18.10068 -0.02852504 18.10068 18.10068 -0.04126244 18.10068 18.10068 -0.05836535 18.10068 18.10068 -0.08132997 18.10068 18.10068 -0.1121653 18.10068 18.10068 -0.1535689 18.10068 18.10068 -0.2091628 18.10068 18.10068 -0.2838106 18.10068 18.10068 -0.3840425 18.10068 18.10068 -0.518627 18.10068 18.10068 -0.6993381 18.10068 18.10068 -0.9419845 18.10068 18.10068 -1.267794 18.10068 18.10068 -1.705268 18.10068 18.10068 -2.292679 18.10068 18.10068 -3.081414 18.10068 18.10068 -4.140474 18.10068 18.10068 -5.562508 18.10068 18.10068 -7.471917 18.10068 18.10068 -10.03574 18.10068 18.10068 -13.47828 18.10068 18.10068 -18.10068 18.10068 18.10068 -24.30731 18.10068 18.10068 -32.64117 18.10068 18.10068 -43.83129 18.10068 18.10068 -58.85664 18.10068 18.10068 --0.0175068 24.30731 18.10068 --0.01161267 24.30731 18.10068 --0.005718534 24.30731 18.10068 -0.0001755984 24.30731 18.10068 -0.006069731 24.30731 18.10068 -0.01197402 24.30731 18.10068 -0.01903886 24.30731 18.10068 -0.02852504 24.30731 18.10068 -0.04126244 24.30731 18.10068 -0.05836535 24.30731 18.10068 -0.08132997 24.30731 18.10068 -0.1121653 24.30731 18.10068 -0.1535689 24.30731 18.10068 -0.2091628 24.30731 18.10068 -0.2838106 24.30731 18.10068 -0.3840425 24.30731 18.10068 -0.518627 24.30731 18.10068 -0.6993381 24.30731 18.10068 -0.9419845 24.30731 18.10068 -1.267794 24.30731 18.10068 -1.705268 24.30731 18.10068 -2.292679 24.30731 18.10068 -3.081414 24.30731 18.10068 -4.140474 24.30731 18.10068 -5.562508 24.30731 18.10068 -7.471917 24.30731 18.10068 -10.03574 24.30731 18.10068 -13.47828 24.30731 18.10068 -18.10068 24.30731 18.10068 -24.30731 24.30731 18.10068 -32.64117 24.30731 18.10068 -43.83129 24.30731 18.10068 -58.85664 24.30731 18.10068 --0.0175068 32.64117 18.10068 --0.01161267 32.64117 18.10068 --0.005718534 32.64117 18.10068 -0.0001755984 32.64117 18.10068 -0.006069731 32.64117 18.10068 -0.01197402 32.64117 18.10068 -0.01903886 32.64117 18.10068 -0.02852504 32.64117 18.10068 -0.04126244 32.64117 18.10068 -0.05836535 32.64117 18.10068 -0.08132997 32.64117 18.10068 -0.1121653 32.64117 18.10068 -0.1535689 32.64117 18.10068 -0.2091628 32.64117 18.10068 -0.2838106 32.64117 18.10068 -0.3840425 32.64117 18.10068 -0.518627 32.64117 18.10068 -0.6993381 32.64117 18.10068 -0.9419845 32.64117 18.10068 -1.267794 32.64117 18.10068 -1.705268 32.64117 18.10068 -2.292679 32.64117 18.10068 -3.081414 32.64117 18.10068 -4.140474 32.64117 18.10068 -5.562508 32.64117 18.10068 -7.471917 32.64117 18.10068 -10.03574 32.64117 18.10068 -13.47828 32.64117 18.10068 -18.10068 32.64117 18.10068 -24.30731 32.64117 18.10068 -32.64117 32.64117 18.10068 -43.83129 32.64117 18.10068 -58.85664 32.64117 18.10068 --0.0175068 43.83129 18.10068 --0.01161267 43.83129 18.10068 --0.005718534 43.83129 18.10068 -0.0001755984 43.83129 18.10068 -0.006069731 43.83129 18.10068 -0.01197402 43.83129 18.10068 -0.01903886 43.83129 18.10068 -0.02852504 43.83129 18.10068 -0.04126244 43.83129 18.10068 -0.05836535 43.83129 18.10068 -0.08132997 43.83129 18.10068 -0.1121653 43.83129 18.10068 -0.1535689 43.83129 18.10068 -0.2091628 43.83129 18.10068 -0.2838106 43.83129 18.10068 -0.3840425 43.83129 18.10068 -0.518627 43.83129 18.10068 -0.6993381 43.83129 18.10068 -0.9419845 43.83129 18.10068 -1.267794 43.83129 18.10068 -1.705268 43.83129 18.10068 -2.292679 43.83129 18.10068 -3.081414 43.83129 18.10068 -4.140474 43.83129 18.10068 -5.562508 43.83129 18.10068 -7.471917 43.83129 18.10068 -10.03574 43.83129 18.10068 -13.47828 43.83129 18.10068 -18.10068 43.83129 18.10068 -24.30731 43.83129 18.10068 -32.64117 43.83129 18.10068 -43.83129 43.83129 18.10068 -58.85664 43.83129 18.10068 --0.0175068 58.85664 18.10068 --0.01161267 58.85664 18.10068 --0.005718534 58.85664 18.10068 -0.0001755984 58.85664 18.10068 -0.006069731 58.85664 18.10068 -0.01197402 58.85664 18.10068 -0.01903886 58.85664 18.10068 -0.02852504 58.85664 18.10068 -0.04126244 58.85664 18.10068 -0.05836535 58.85664 18.10068 -0.08132997 58.85664 18.10068 -0.1121653 58.85664 18.10068 -0.1535689 58.85664 18.10068 -0.2091628 58.85664 18.10068 -0.2838106 58.85664 18.10068 -0.3840425 58.85664 18.10068 -0.518627 58.85664 18.10068 -0.6993381 58.85664 18.10068 -0.9419845 58.85664 18.10068 -1.267794 58.85664 18.10068 -1.705268 58.85664 18.10068 -2.292679 58.85664 18.10068 -3.081414 58.85664 18.10068 -4.140474 58.85664 18.10068 -5.562508 58.85664 18.10068 -7.471917 58.85664 18.10068 -10.03574 58.85664 18.10068 -13.47828 58.85664 18.10068 -18.10068 58.85664 18.10068 -24.30731 58.85664 18.10068 -32.64117 58.85664 18.10068 -43.83129 58.85664 18.10068 -58.85664 58.85664 18.10068 --0.0175068 -0.0175068 24.30731 --0.01161267 -0.0175068 24.30731 --0.005718534 -0.0175068 24.30731 -0.0001755984 -0.0175068 24.30731 -0.006069731 -0.0175068 24.30731 -0.01197402 -0.0175068 24.30731 -0.01903886 -0.0175068 24.30731 -0.02852504 -0.0175068 24.30731 -0.04126244 -0.0175068 24.30731 -0.05836535 -0.0175068 24.30731 -0.08132997 -0.0175068 24.30731 -0.1121653 -0.0175068 24.30731 -0.1535689 -0.0175068 24.30731 -0.2091628 -0.0175068 24.30731 -0.2838106 -0.0175068 24.30731 -0.3840425 -0.0175068 24.30731 -0.518627 -0.0175068 24.30731 -0.6993381 -0.0175068 24.30731 -0.9419845 -0.0175068 24.30731 -1.267794 -0.0175068 24.30731 -1.705268 -0.0175068 24.30731 -2.292679 -0.0175068 24.30731 -3.081414 -0.0175068 24.30731 -4.140474 -0.0175068 24.30731 -5.562508 -0.0175068 24.30731 -7.471917 -0.0175068 24.30731 -10.03574 -0.0175068 24.30731 -13.47828 -0.0175068 24.30731 -18.10068 -0.0175068 24.30731 -24.30731 -0.0175068 24.30731 -32.64117 -0.0175068 24.30731 -43.83129 -0.0175068 24.30731 -58.85664 -0.0175068 24.30731 --0.0175068 -0.01161267 24.30731 --0.01161267 -0.01161267 24.30731 --0.005718534 -0.01161267 24.30731 -0.0001755984 -0.01161267 24.30731 -0.006069731 -0.01161267 24.30731 -0.01197402 -0.01161267 24.30731 -0.01903886 -0.01161267 24.30731 -0.02852504 -0.01161267 24.30731 -0.04126244 -0.01161267 24.30731 -0.05836535 -0.01161267 24.30731 -0.08132997 -0.01161267 24.30731 -0.1121653 -0.01161267 24.30731 -0.1535689 -0.01161267 24.30731 -0.2091628 -0.01161267 24.30731 -0.2838106 -0.01161267 24.30731 -0.3840425 -0.01161267 24.30731 -0.518627 -0.01161267 24.30731 -0.6993381 -0.01161267 24.30731 -0.9419845 -0.01161267 24.30731 -1.267794 -0.01161267 24.30731 -1.705268 -0.01161267 24.30731 -2.292679 -0.01161267 24.30731 -3.081414 -0.01161267 24.30731 -4.140474 -0.01161267 24.30731 -5.562508 -0.01161267 24.30731 -7.471917 -0.01161267 24.30731 -10.03574 -0.01161267 24.30731 -13.47828 -0.01161267 24.30731 -18.10068 -0.01161267 24.30731 -24.30731 -0.01161267 24.30731 -32.64117 -0.01161267 24.30731 -43.83129 -0.01161267 24.30731 -58.85664 -0.01161267 24.30731 --0.0175068 -0.005718534 24.30731 --0.01161267 -0.005718534 24.30731 --0.005718534 -0.005718534 24.30731 -0.0001755984 -0.005718534 24.30731 -0.006069731 -0.005718534 24.30731 -0.01197402 -0.005718534 24.30731 -0.01903886 -0.005718534 24.30731 -0.02852504 -0.005718534 24.30731 -0.04126244 -0.005718534 24.30731 -0.05836535 -0.005718534 24.30731 -0.08132997 -0.005718534 24.30731 -0.1121653 -0.005718534 24.30731 -0.1535689 -0.005718534 24.30731 -0.2091628 -0.005718534 24.30731 -0.2838106 -0.005718534 24.30731 -0.3840425 -0.005718534 24.30731 -0.518627 -0.005718534 24.30731 -0.6993381 -0.005718534 24.30731 -0.9419845 -0.005718534 24.30731 -1.267794 -0.005718534 24.30731 -1.705268 -0.005718534 24.30731 -2.292679 -0.005718534 24.30731 -3.081414 -0.005718534 24.30731 -4.140474 -0.005718534 24.30731 -5.562508 -0.005718534 24.30731 -7.471917 -0.005718534 24.30731 -10.03574 -0.005718534 24.30731 -13.47828 -0.005718534 24.30731 -18.10068 -0.005718534 24.30731 -24.30731 -0.005718534 24.30731 -32.64117 -0.005718534 24.30731 -43.83129 -0.005718534 24.30731 -58.85664 -0.005718534 24.30731 --0.0175068 0.0001755984 24.30731 --0.01161267 0.0001755984 24.30731 --0.005718534 0.0001755984 24.30731 -0.0001755984 0.0001755984 24.30731 -0.006069731 0.0001755984 24.30731 -0.01197402 0.0001755984 24.30731 -0.01903886 0.0001755984 24.30731 -0.02852504 0.0001755984 24.30731 -0.04126244 0.0001755984 24.30731 -0.05836535 0.0001755984 24.30731 -0.08132997 0.0001755984 24.30731 -0.1121653 0.0001755984 24.30731 -0.1535689 0.0001755984 24.30731 -0.2091628 0.0001755984 24.30731 -0.2838106 0.0001755984 24.30731 -0.3840425 0.0001755984 24.30731 -0.518627 0.0001755984 24.30731 -0.6993381 0.0001755984 24.30731 -0.9419845 0.0001755984 24.30731 -1.267794 0.0001755984 24.30731 -1.705268 0.0001755984 24.30731 -2.292679 0.0001755984 24.30731 -3.081414 0.0001755984 24.30731 -4.140474 0.0001755984 24.30731 -5.562508 0.0001755984 24.30731 -7.471917 0.0001755984 24.30731 -10.03574 0.0001755984 24.30731 -13.47828 0.0001755984 24.30731 -18.10068 0.0001755984 24.30731 -24.30731 0.0001755984 24.30731 -32.64117 0.0001755984 24.30731 -43.83129 0.0001755984 24.30731 -58.85664 0.0001755984 24.30731 --0.0175068 0.006069731 24.30731 --0.01161267 0.006069731 24.30731 --0.005718534 0.006069731 24.30731 -0.0001755984 0.006069731 24.30731 -0.006069731 0.006069731 24.30731 -0.01197402 0.006069731 24.30731 -0.01903886 0.006069731 24.30731 -0.02852504 0.006069731 24.30731 -0.04126244 0.006069731 24.30731 -0.05836535 0.006069731 24.30731 -0.08132997 0.006069731 24.30731 -0.1121653 0.006069731 24.30731 -0.1535689 0.006069731 24.30731 -0.2091628 0.006069731 24.30731 -0.2838106 0.006069731 24.30731 -0.3840425 0.006069731 24.30731 -0.518627 0.006069731 24.30731 -0.6993381 0.006069731 24.30731 -0.9419845 0.006069731 24.30731 -1.267794 0.006069731 24.30731 -1.705268 0.006069731 24.30731 -2.292679 0.006069731 24.30731 -3.081414 0.006069731 24.30731 -4.140474 0.006069731 24.30731 -5.562508 0.006069731 24.30731 -7.471917 0.006069731 24.30731 -10.03574 0.006069731 24.30731 -13.47828 0.006069731 24.30731 -18.10068 0.006069731 24.30731 -24.30731 0.006069731 24.30731 -32.64117 0.006069731 24.30731 -43.83129 0.006069731 24.30731 -58.85664 0.006069731 24.30731 --0.0175068 0.01197402 24.30731 --0.01161267 0.01197402 24.30731 --0.005718534 0.01197402 24.30731 -0.0001755984 0.01197402 24.30731 -0.006069731 0.01197402 24.30731 -0.01197402 0.01197402 24.30731 -0.01903886 0.01197402 24.30731 -0.02852504 0.01197402 24.30731 -0.04126244 0.01197402 24.30731 -0.05836535 0.01197402 24.30731 -0.08132997 0.01197402 24.30731 -0.1121653 0.01197402 24.30731 -0.1535689 0.01197402 24.30731 -0.2091628 0.01197402 24.30731 -0.2838106 0.01197402 24.30731 -0.3840425 0.01197402 24.30731 -0.518627 0.01197402 24.30731 -0.6993381 0.01197402 24.30731 -0.9419845 0.01197402 24.30731 -1.267794 0.01197402 24.30731 -1.705268 0.01197402 24.30731 -2.292679 0.01197402 24.30731 -3.081414 0.01197402 24.30731 -4.140474 0.01197402 24.30731 -5.562508 0.01197402 24.30731 -7.471917 0.01197402 24.30731 -10.03574 0.01197402 24.30731 -13.47828 0.01197402 24.30731 -18.10068 0.01197402 24.30731 -24.30731 0.01197402 24.30731 -32.64117 0.01197402 24.30731 -43.83129 0.01197402 24.30731 -58.85664 0.01197402 24.30731 --0.0175068 0.01903886 24.30731 --0.01161267 0.01903886 24.30731 --0.005718534 0.01903886 24.30731 -0.0001755984 0.01903886 24.30731 -0.006069731 0.01903886 24.30731 -0.01197402 0.01903886 24.30731 -0.01903886 0.01903886 24.30731 -0.02852504 0.01903886 24.30731 -0.04126244 0.01903886 24.30731 -0.05836535 0.01903886 24.30731 -0.08132997 0.01903886 24.30731 -0.1121653 0.01903886 24.30731 -0.1535689 0.01903886 24.30731 -0.2091628 0.01903886 24.30731 -0.2838106 0.01903886 24.30731 -0.3840425 0.01903886 24.30731 -0.518627 0.01903886 24.30731 -0.6993381 0.01903886 24.30731 -0.9419845 0.01903886 24.30731 -1.267794 0.01903886 24.30731 -1.705268 0.01903886 24.30731 -2.292679 0.01903886 24.30731 -3.081414 0.01903886 24.30731 -4.140474 0.01903886 24.30731 -5.562508 0.01903886 24.30731 -7.471917 0.01903886 24.30731 -10.03574 0.01903886 24.30731 -13.47828 0.01903886 24.30731 -18.10068 0.01903886 24.30731 -24.30731 0.01903886 24.30731 -32.64117 0.01903886 24.30731 -43.83129 0.01903886 24.30731 -58.85664 0.01903886 24.30731 --0.0175068 0.02852504 24.30731 --0.01161267 0.02852504 24.30731 --0.005718534 0.02852504 24.30731 -0.0001755984 0.02852504 24.30731 -0.006069731 0.02852504 24.30731 -0.01197402 0.02852504 24.30731 -0.01903886 0.02852504 24.30731 -0.02852504 0.02852504 24.30731 -0.04126244 0.02852504 24.30731 -0.05836535 0.02852504 24.30731 -0.08132997 0.02852504 24.30731 -0.1121653 0.02852504 24.30731 -0.1535689 0.02852504 24.30731 -0.2091628 0.02852504 24.30731 -0.2838106 0.02852504 24.30731 -0.3840425 0.02852504 24.30731 -0.518627 0.02852504 24.30731 -0.6993381 0.02852504 24.30731 -0.9419845 0.02852504 24.30731 -1.267794 0.02852504 24.30731 -1.705268 0.02852504 24.30731 -2.292679 0.02852504 24.30731 -3.081414 0.02852504 24.30731 -4.140474 0.02852504 24.30731 -5.562508 0.02852504 24.30731 -7.471917 0.02852504 24.30731 -10.03574 0.02852504 24.30731 -13.47828 0.02852504 24.30731 -18.10068 0.02852504 24.30731 -24.30731 0.02852504 24.30731 -32.64117 0.02852504 24.30731 -43.83129 0.02852504 24.30731 -58.85664 0.02852504 24.30731 --0.0175068 0.04126244 24.30731 --0.01161267 0.04126244 24.30731 --0.005718534 0.04126244 24.30731 -0.0001755984 0.04126244 24.30731 -0.006069731 0.04126244 24.30731 -0.01197402 0.04126244 24.30731 -0.01903886 0.04126244 24.30731 -0.02852504 0.04126244 24.30731 -0.04126244 0.04126244 24.30731 -0.05836535 0.04126244 24.30731 -0.08132997 0.04126244 24.30731 -0.1121653 0.04126244 24.30731 -0.1535689 0.04126244 24.30731 -0.2091628 0.04126244 24.30731 -0.2838106 0.04126244 24.30731 -0.3840425 0.04126244 24.30731 -0.518627 0.04126244 24.30731 -0.6993381 0.04126244 24.30731 -0.9419845 0.04126244 24.30731 -1.267794 0.04126244 24.30731 -1.705268 0.04126244 24.30731 -2.292679 0.04126244 24.30731 -3.081414 0.04126244 24.30731 -4.140474 0.04126244 24.30731 -5.562508 0.04126244 24.30731 -7.471917 0.04126244 24.30731 -10.03574 0.04126244 24.30731 -13.47828 0.04126244 24.30731 -18.10068 0.04126244 24.30731 -24.30731 0.04126244 24.30731 -32.64117 0.04126244 24.30731 -43.83129 0.04126244 24.30731 -58.85664 0.04126244 24.30731 --0.0175068 0.05836535 24.30731 --0.01161267 0.05836535 24.30731 --0.005718534 0.05836535 24.30731 -0.0001755984 0.05836535 24.30731 -0.006069731 0.05836535 24.30731 -0.01197402 0.05836535 24.30731 -0.01903886 0.05836535 24.30731 -0.02852504 0.05836535 24.30731 -0.04126244 0.05836535 24.30731 -0.05836535 0.05836535 24.30731 -0.08132997 0.05836535 24.30731 -0.1121653 0.05836535 24.30731 -0.1535689 0.05836535 24.30731 -0.2091628 0.05836535 24.30731 -0.2838106 0.05836535 24.30731 -0.3840425 0.05836535 24.30731 -0.518627 0.05836535 24.30731 -0.6993381 0.05836535 24.30731 -0.9419845 0.05836535 24.30731 -1.267794 0.05836535 24.30731 -1.705268 0.05836535 24.30731 -2.292679 0.05836535 24.30731 -3.081414 0.05836535 24.30731 -4.140474 0.05836535 24.30731 -5.562508 0.05836535 24.30731 -7.471917 0.05836535 24.30731 -10.03574 0.05836535 24.30731 -13.47828 0.05836535 24.30731 -18.10068 0.05836535 24.30731 -24.30731 0.05836535 24.30731 -32.64117 0.05836535 24.30731 -43.83129 0.05836535 24.30731 -58.85664 0.05836535 24.30731 --0.0175068 0.08132997 24.30731 --0.01161267 0.08132997 24.30731 --0.005718534 0.08132997 24.30731 -0.0001755984 0.08132997 24.30731 -0.006069731 0.08132997 24.30731 -0.01197402 0.08132997 24.30731 -0.01903886 0.08132997 24.30731 -0.02852504 0.08132997 24.30731 -0.04126244 0.08132997 24.30731 -0.05836535 0.08132997 24.30731 -0.08132997 0.08132997 24.30731 -0.1121653 0.08132997 24.30731 -0.1535689 0.08132997 24.30731 -0.2091628 0.08132997 24.30731 -0.2838106 0.08132997 24.30731 -0.3840425 0.08132997 24.30731 -0.518627 0.08132997 24.30731 -0.6993381 0.08132997 24.30731 -0.9419845 0.08132997 24.30731 -1.267794 0.08132997 24.30731 -1.705268 0.08132997 24.30731 -2.292679 0.08132997 24.30731 -3.081414 0.08132997 24.30731 -4.140474 0.08132997 24.30731 -5.562508 0.08132997 24.30731 -7.471917 0.08132997 24.30731 -10.03574 0.08132997 24.30731 -13.47828 0.08132997 24.30731 -18.10068 0.08132997 24.30731 -24.30731 0.08132997 24.30731 -32.64117 0.08132997 24.30731 -43.83129 0.08132997 24.30731 -58.85664 0.08132997 24.30731 --0.0175068 0.1121653 24.30731 --0.01161267 0.1121653 24.30731 --0.005718534 0.1121653 24.30731 -0.0001755984 0.1121653 24.30731 -0.006069731 0.1121653 24.30731 -0.01197402 0.1121653 24.30731 -0.01903886 0.1121653 24.30731 -0.02852504 0.1121653 24.30731 -0.04126244 0.1121653 24.30731 -0.05836535 0.1121653 24.30731 -0.08132997 0.1121653 24.30731 -0.1121653 0.1121653 24.30731 -0.1535689 0.1121653 24.30731 -0.2091628 0.1121653 24.30731 -0.2838106 0.1121653 24.30731 -0.3840425 0.1121653 24.30731 -0.518627 0.1121653 24.30731 -0.6993381 0.1121653 24.30731 -0.9419845 0.1121653 24.30731 -1.267794 0.1121653 24.30731 -1.705268 0.1121653 24.30731 -2.292679 0.1121653 24.30731 -3.081414 0.1121653 24.30731 -4.140474 0.1121653 24.30731 -5.562508 0.1121653 24.30731 -7.471917 0.1121653 24.30731 -10.03574 0.1121653 24.30731 -13.47828 0.1121653 24.30731 -18.10068 0.1121653 24.30731 -24.30731 0.1121653 24.30731 -32.64117 0.1121653 24.30731 -43.83129 0.1121653 24.30731 -58.85664 0.1121653 24.30731 --0.0175068 0.1535689 24.30731 --0.01161267 0.1535689 24.30731 --0.005718534 0.1535689 24.30731 -0.0001755984 0.1535689 24.30731 -0.006069731 0.1535689 24.30731 -0.01197402 0.1535689 24.30731 -0.01903886 0.1535689 24.30731 -0.02852504 0.1535689 24.30731 -0.04126244 0.1535689 24.30731 -0.05836535 0.1535689 24.30731 -0.08132997 0.1535689 24.30731 -0.1121653 0.1535689 24.30731 -0.1535689 0.1535689 24.30731 -0.2091628 0.1535689 24.30731 -0.2838106 0.1535689 24.30731 -0.3840425 0.1535689 24.30731 -0.518627 0.1535689 24.30731 -0.6993381 0.1535689 24.30731 -0.9419845 0.1535689 24.30731 -1.267794 0.1535689 24.30731 -1.705268 0.1535689 24.30731 -2.292679 0.1535689 24.30731 -3.081414 0.1535689 24.30731 -4.140474 0.1535689 24.30731 -5.562508 0.1535689 24.30731 -7.471917 0.1535689 24.30731 -10.03574 0.1535689 24.30731 -13.47828 0.1535689 24.30731 -18.10068 0.1535689 24.30731 -24.30731 0.1535689 24.30731 -32.64117 0.1535689 24.30731 -43.83129 0.1535689 24.30731 -58.85664 0.1535689 24.30731 --0.0175068 0.2091628 24.30731 --0.01161267 0.2091628 24.30731 --0.005718534 0.2091628 24.30731 -0.0001755984 0.2091628 24.30731 -0.006069731 0.2091628 24.30731 -0.01197402 0.2091628 24.30731 -0.01903886 0.2091628 24.30731 -0.02852504 0.2091628 24.30731 -0.04126244 0.2091628 24.30731 -0.05836535 0.2091628 24.30731 -0.08132997 0.2091628 24.30731 -0.1121653 0.2091628 24.30731 -0.1535689 0.2091628 24.30731 -0.2091628 0.2091628 24.30731 -0.2838106 0.2091628 24.30731 -0.3840425 0.2091628 24.30731 -0.518627 0.2091628 24.30731 -0.6993381 0.2091628 24.30731 -0.9419845 0.2091628 24.30731 -1.267794 0.2091628 24.30731 -1.705268 0.2091628 24.30731 -2.292679 0.2091628 24.30731 -3.081414 0.2091628 24.30731 -4.140474 0.2091628 24.30731 -5.562508 0.2091628 24.30731 -7.471917 0.2091628 24.30731 -10.03574 0.2091628 24.30731 -13.47828 0.2091628 24.30731 -18.10068 0.2091628 24.30731 -24.30731 0.2091628 24.30731 -32.64117 0.2091628 24.30731 -43.83129 0.2091628 24.30731 -58.85664 0.2091628 24.30731 --0.0175068 0.2838106 24.30731 --0.01161267 0.2838106 24.30731 --0.005718534 0.2838106 24.30731 -0.0001755984 0.2838106 24.30731 -0.006069731 0.2838106 24.30731 -0.01197402 0.2838106 24.30731 -0.01903886 0.2838106 24.30731 -0.02852504 0.2838106 24.30731 -0.04126244 0.2838106 24.30731 -0.05836535 0.2838106 24.30731 -0.08132997 0.2838106 24.30731 -0.1121653 0.2838106 24.30731 -0.1535689 0.2838106 24.30731 -0.2091628 0.2838106 24.30731 -0.2838106 0.2838106 24.30731 -0.3840425 0.2838106 24.30731 -0.518627 0.2838106 24.30731 -0.6993381 0.2838106 24.30731 -0.9419845 0.2838106 24.30731 -1.267794 0.2838106 24.30731 -1.705268 0.2838106 24.30731 -2.292679 0.2838106 24.30731 -3.081414 0.2838106 24.30731 -4.140474 0.2838106 24.30731 -5.562508 0.2838106 24.30731 -7.471917 0.2838106 24.30731 -10.03574 0.2838106 24.30731 -13.47828 0.2838106 24.30731 -18.10068 0.2838106 24.30731 -24.30731 0.2838106 24.30731 -32.64117 0.2838106 24.30731 -43.83129 0.2838106 24.30731 -58.85664 0.2838106 24.30731 --0.0175068 0.3840425 24.30731 --0.01161267 0.3840425 24.30731 --0.005718534 0.3840425 24.30731 -0.0001755984 0.3840425 24.30731 -0.006069731 0.3840425 24.30731 -0.01197402 0.3840425 24.30731 -0.01903886 0.3840425 24.30731 -0.02852504 0.3840425 24.30731 -0.04126244 0.3840425 24.30731 -0.05836535 0.3840425 24.30731 -0.08132997 0.3840425 24.30731 -0.1121653 0.3840425 24.30731 -0.1535689 0.3840425 24.30731 -0.2091628 0.3840425 24.30731 -0.2838106 0.3840425 24.30731 -0.3840425 0.3840425 24.30731 -0.518627 0.3840425 24.30731 -0.6993381 0.3840425 24.30731 -0.9419845 0.3840425 24.30731 -1.267794 0.3840425 24.30731 -1.705268 0.3840425 24.30731 -2.292679 0.3840425 24.30731 -3.081414 0.3840425 24.30731 -4.140474 0.3840425 24.30731 -5.562508 0.3840425 24.30731 -7.471917 0.3840425 24.30731 -10.03574 0.3840425 24.30731 -13.47828 0.3840425 24.30731 -18.10068 0.3840425 24.30731 -24.30731 0.3840425 24.30731 -32.64117 0.3840425 24.30731 -43.83129 0.3840425 24.30731 -58.85664 0.3840425 24.30731 --0.0175068 0.518627 24.30731 --0.01161267 0.518627 24.30731 --0.005718534 0.518627 24.30731 -0.0001755984 0.518627 24.30731 -0.006069731 0.518627 24.30731 -0.01197402 0.518627 24.30731 -0.01903886 0.518627 24.30731 -0.02852504 0.518627 24.30731 -0.04126244 0.518627 24.30731 -0.05836535 0.518627 24.30731 -0.08132997 0.518627 24.30731 -0.1121653 0.518627 24.30731 -0.1535689 0.518627 24.30731 -0.2091628 0.518627 24.30731 -0.2838106 0.518627 24.30731 -0.3840425 0.518627 24.30731 -0.518627 0.518627 24.30731 -0.6993381 0.518627 24.30731 -0.9419845 0.518627 24.30731 -1.267794 0.518627 24.30731 -1.705268 0.518627 24.30731 -2.292679 0.518627 24.30731 -3.081414 0.518627 24.30731 -4.140474 0.518627 24.30731 -5.562508 0.518627 24.30731 -7.471917 0.518627 24.30731 -10.03574 0.518627 24.30731 -13.47828 0.518627 24.30731 -18.10068 0.518627 24.30731 -24.30731 0.518627 24.30731 -32.64117 0.518627 24.30731 -43.83129 0.518627 24.30731 -58.85664 0.518627 24.30731 --0.0175068 0.6993381 24.30731 --0.01161267 0.6993381 24.30731 --0.005718534 0.6993381 24.30731 -0.0001755984 0.6993381 24.30731 -0.006069731 0.6993381 24.30731 -0.01197402 0.6993381 24.30731 -0.01903886 0.6993381 24.30731 -0.02852504 0.6993381 24.30731 -0.04126244 0.6993381 24.30731 -0.05836535 0.6993381 24.30731 -0.08132997 0.6993381 24.30731 -0.1121653 0.6993381 24.30731 -0.1535689 0.6993381 24.30731 -0.2091628 0.6993381 24.30731 -0.2838106 0.6993381 24.30731 -0.3840425 0.6993381 24.30731 -0.518627 0.6993381 24.30731 -0.6993381 0.6993381 24.30731 -0.9419845 0.6993381 24.30731 -1.267794 0.6993381 24.30731 -1.705268 0.6993381 24.30731 -2.292679 0.6993381 24.30731 -3.081414 0.6993381 24.30731 -4.140474 0.6993381 24.30731 -5.562508 0.6993381 24.30731 -7.471917 0.6993381 24.30731 -10.03574 0.6993381 24.30731 -13.47828 0.6993381 24.30731 -18.10068 0.6993381 24.30731 -24.30731 0.6993381 24.30731 -32.64117 0.6993381 24.30731 -43.83129 0.6993381 24.30731 -58.85664 0.6993381 24.30731 --0.0175068 0.9419845 24.30731 --0.01161267 0.9419845 24.30731 --0.005718534 0.9419845 24.30731 -0.0001755984 0.9419845 24.30731 -0.006069731 0.9419845 24.30731 -0.01197402 0.9419845 24.30731 -0.01903886 0.9419845 24.30731 -0.02852504 0.9419845 24.30731 -0.04126244 0.9419845 24.30731 -0.05836535 0.9419845 24.30731 -0.08132997 0.9419845 24.30731 -0.1121653 0.9419845 24.30731 -0.1535689 0.9419845 24.30731 -0.2091628 0.9419845 24.30731 -0.2838106 0.9419845 24.30731 -0.3840425 0.9419845 24.30731 -0.518627 0.9419845 24.30731 -0.6993381 0.9419845 24.30731 -0.9419845 0.9419845 24.30731 -1.267794 0.9419845 24.30731 -1.705268 0.9419845 24.30731 -2.292679 0.9419845 24.30731 -3.081414 0.9419845 24.30731 -4.140474 0.9419845 24.30731 -5.562508 0.9419845 24.30731 -7.471917 0.9419845 24.30731 -10.03574 0.9419845 24.30731 -13.47828 0.9419845 24.30731 -18.10068 0.9419845 24.30731 -24.30731 0.9419845 24.30731 -32.64117 0.9419845 24.30731 -43.83129 0.9419845 24.30731 -58.85664 0.9419845 24.30731 --0.0175068 1.267794 24.30731 --0.01161267 1.267794 24.30731 --0.005718534 1.267794 24.30731 -0.0001755984 1.267794 24.30731 -0.006069731 1.267794 24.30731 -0.01197402 1.267794 24.30731 -0.01903886 1.267794 24.30731 -0.02852504 1.267794 24.30731 -0.04126244 1.267794 24.30731 -0.05836535 1.267794 24.30731 -0.08132997 1.267794 24.30731 -0.1121653 1.267794 24.30731 -0.1535689 1.267794 24.30731 -0.2091628 1.267794 24.30731 -0.2838106 1.267794 24.30731 -0.3840425 1.267794 24.30731 -0.518627 1.267794 24.30731 -0.6993381 1.267794 24.30731 -0.9419845 1.267794 24.30731 -1.267794 1.267794 24.30731 -1.705268 1.267794 24.30731 -2.292679 1.267794 24.30731 -3.081414 1.267794 24.30731 -4.140474 1.267794 24.30731 -5.562508 1.267794 24.30731 -7.471917 1.267794 24.30731 -10.03574 1.267794 24.30731 -13.47828 1.267794 24.30731 -18.10068 1.267794 24.30731 -24.30731 1.267794 24.30731 -32.64117 1.267794 24.30731 -43.83129 1.267794 24.30731 -58.85664 1.267794 24.30731 --0.0175068 1.705268 24.30731 --0.01161267 1.705268 24.30731 --0.005718534 1.705268 24.30731 -0.0001755984 1.705268 24.30731 -0.006069731 1.705268 24.30731 -0.01197402 1.705268 24.30731 -0.01903886 1.705268 24.30731 -0.02852504 1.705268 24.30731 -0.04126244 1.705268 24.30731 -0.05836535 1.705268 24.30731 -0.08132997 1.705268 24.30731 -0.1121653 1.705268 24.30731 -0.1535689 1.705268 24.30731 -0.2091628 1.705268 24.30731 -0.2838106 1.705268 24.30731 -0.3840425 1.705268 24.30731 -0.518627 1.705268 24.30731 -0.6993381 1.705268 24.30731 -0.9419845 1.705268 24.30731 -1.267794 1.705268 24.30731 -1.705268 1.705268 24.30731 -2.292679 1.705268 24.30731 -3.081414 1.705268 24.30731 -4.140474 1.705268 24.30731 -5.562508 1.705268 24.30731 -7.471917 1.705268 24.30731 -10.03574 1.705268 24.30731 -13.47828 1.705268 24.30731 -18.10068 1.705268 24.30731 -24.30731 1.705268 24.30731 -32.64117 1.705268 24.30731 -43.83129 1.705268 24.30731 -58.85664 1.705268 24.30731 --0.0175068 2.292679 24.30731 --0.01161267 2.292679 24.30731 --0.005718534 2.292679 24.30731 -0.0001755984 2.292679 24.30731 -0.006069731 2.292679 24.30731 -0.01197402 2.292679 24.30731 -0.01903886 2.292679 24.30731 -0.02852504 2.292679 24.30731 -0.04126244 2.292679 24.30731 -0.05836535 2.292679 24.30731 -0.08132997 2.292679 24.30731 -0.1121653 2.292679 24.30731 -0.1535689 2.292679 24.30731 -0.2091628 2.292679 24.30731 -0.2838106 2.292679 24.30731 -0.3840425 2.292679 24.30731 -0.518627 2.292679 24.30731 -0.6993381 2.292679 24.30731 -0.9419845 2.292679 24.30731 -1.267794 2.292679 24.30731 -1.705268 2.292679 24.30731 -2.292679 2.292679 24.30731 -3.081414 2.292679 24.30731 -4.140474 2.292679 24.30731 -5.562508 2.292679 24.30731 -7.471917 2.292679 24.30731 -10.03574 2.292679 24.30731 -13.47828 2.292679 24.30731 -18.10068 2.292679 24.30731 -24.30731 2.292679 24.30731 -32.64117 2.292679 24.30731 -43.83129 2.292679 24.30731 -58.85664 2.292679 24.30731 --0.0175068 3.081414 24.30731 --0.01161267 3.081414 24.30731 --0.005718534 3.081414 24.30731 -0.0001755984 3.081414 24.30731 -0.006069731 3.081414 24.30731 -0.01197402 3.081414 24.30731 -0.01903886 3.081414 24.30731 -0.02852504 3.081414 24.30731 -0.04126244 3.081414 24.30731 -0.05836535 3.081414 24.30731 -0.08132997 3.081414 24.30731 -0.1121653 3.081414 24.30731 -0.1535689 3.081414 24.30731 -0.2091628 3.081414 24.30731 -0.2838106 3.081414 24.30731 -0.3840425 3.081414 24.30731 -0.518627 3.081414 24.30731 -0.6993381 3.081414 24.30731 -0.9419845 3.081414 24.30731 -1.267794 3.081414 24.30731 -1.705268 3.081414 24.30731 -2.292679 3.081414 24.30731 -3.081414 3.081414 24.30731 -4.140474 3.081414 24.30731 -5.562508 3.081414 24.30731 -7.471917 3.081414 24.30731 -10.03574 3.081414 24.30731 -13.47828 3.081414 24.30731 -18.10068 3.081414 24.30731 -24.30731 3.081414 24.30731 -32.64117 3.081414 24.30731 -43.83129 3.081414 24.30731 -58.85664 3.081414 24.30731 --0.0175068 4.140474 24.30731 --0.01161267 4.140474 24.30731 --0.005718534 4.140474 24.30731 -0.0001755984 4.140474 24.30731 -0.006069731 4.140474 24.30731 -0.01197402 4.140474 24.30731 -0.01903886 4.140474 24.30731 -0.02852504 4.140474 24.30731 -0.04126244 4.140474 24.30731 -0.05836535 4.140474 24.30731 -0.08132997 4.140474 24.30731 -0.1121653 4.140474 24.30731 -0.1535689 4.140474 24.30731 -0.2091628 4.140474 24.30731 -0.2838106 4.140474 24.30731 -0.3840425 4.140474 24.30731 -0.518627 4.140474 24.30731 -0.6993381 4.140474 24.30731 -0.9419845 4.140474 24.30731 -1.267794 4.140474 24.30731 -1.705268 4.140474 24.30731 -2.292679 4.140474 24.30731 -3.081414 4.140474 24.30731 -4.140474 4.140474 24.30731 -5.562508 4.140474 24.30731 -7.471917 4.140474 24.30731 -10.03574 4.140474 24.30731 -13.47828 4.140474 24.30731 -18.10068 4.140474 24.30731 -24.30731 4.140474 24.30731 -32.64117 4.140474 24.30731 -43.83129 4.140474 24.30731 -58.85664 4.140474 24.30731 --0.0175068 5.562508 24.30731 --0.01161267 5.562508 24.30731 --0.005718534 5.562508 24.30731 -0.0001755984 5.562508 24.30731 -0.006069731 5.562508 24.30731 -0.01197402 5.562508 24.30731 -0.01903886 5.562508 24.30731 -0.02852504 5.562508 24.30731 -0.04126244 5.562508 24.30731 -0.05836535 5.562508 24.30731 -0.08132997 5.562508 24.30731 -0.1121653 5.562508 24.30731 -0.1535689 5.562508 24.30731 -0.2091628 5.562508 24.30731 -0.2838106 5.562508 24.30731 -0.3840425 5.562508 24.30731 -0.518627 5.562508 24.30731 -0.6993381 5.562508 24.30731 -0.9419845 5.562508 24.30731 -1.267794 5.562508 24.30731 -1.705268 5.562508 24.30731 -2.292679 5.562508 24.30731 -3.081414 5.562508 24.30731 -4.140474 5.562508 24.30731 -5.562508 5.562508 24.30731 -7.471917 5.562508 24.30731 -10.03574 5.562508 24.30731 -13.47828 5.562508 24.30731 -18.10068 5.562508 24.30731 -24.30731 5.562508 24.30731 -32.64117 5.562508 24.30731 -43.83129 5.562508 24.30731 -58.85664 5.562508 24.30731 --0.0175068 7.471917 24.30731 --0.01161267 7.471917 24.30731 --0.005718534 7.471917 24.30731 -0.0001755984 7.471917 24.30731 -0.006069731 7.471917 24.30731 -0.01197402 7.471917 24.30731 -0.01903886 7.471917 24.30731 -0.02852504 7.471917 24.30731 -0.04126244 7.471917 24.30731 -0.05836535 7.471917 24.30731 -0.08132997 7.471917 24.30731 -0.1121653 7.471917 24.30731 -0.1535689 7.471917 24.30731 -0.2091628 7.471917 24.30731 -0.2838106 7.471917 24.30731 -0.3840425 7.471917 24.30731 -0.518627 7.471917 24.30731 -0.6993381 7.471917 24.30731 -0.9419845 7.471917 24.30731 -1.267794 7.471917 24.30731 -1.705268 7.471917 24.30731 -2.292679 7.471917 24.30731 -3.081414 7.471917 24.30731 -4.140474 7.471917 24.30731 -5.562508 7.471917 24.30731 -7.471917 7.471917 24.30731 -10.03574 7.471917 24.30731 -13.47828 7.471917 24.30731 -18.10068 7.471917 24.30731 -24.30731 7.471917 24.30731 -32.64117 7.471917 24.30731 -43.83129 7.471917 24.30731 -58.85664 7.471917 24.30731 --0.0175068 10.03574 24.30731 --0.01161267 10.03574 24.30731 --0.005718534 10.03574 24.30731 -0.0001755984 10.03574 24.30731 -0.006069731 10.03574 24.30731 -0.01197402 10.03574 24.30731 -0.01903886 10.03574 24.30731 -0.02852504 10.03574 24.30731 -0.04126244 10.03574 24.30731 -0.05836535 10.03574 24.30731 -0.08132997 10.03574 24.30731 -0.1121653 10.03574 24.30731 -0.1535689 10.03574 24.30731 -0.2091628 10.03574 24.30731 -0.2838106 10.03574 24.30731 -0.3840425 10.03574 24.30731 -0.518627 10.03574 24.30731 -0.6993381 10.03574 24.30731 -0.9419845 10.03574 24.30731 -1.267794 10.03574 24.30731 -1.705268 10.03574 24.30731 -2.292679 10.03574 24.30731 -3.081414 10.03574 24.30731 -4.140474 10.03574 24.30731 -5.562508 10.03574 24.30731 -7.471917 10.03574 24.30731 -10.03574 10.03574 24.30731 -13.47828 10.03574 24.30731 -18.10068 10.03574 24.30731 -24.30731 10.03574 24.30731 -32.64117 10.03574 24.30731 -43.83129 10.03574 24.30731 -58.85664 10.03574 24.30731 --0.0175068 13.47828 24.30731 --0.01161267 13.47828 24.30731 --0.005718534 13.47828 24.30731 -0.0001755984 13.47828 24.30731 -0.006069731 13.47828 24.30731 -0.01197402 13.47828 24.30731 -0.01903886 13.47828 24.30731 -0.02852504 13.47828 24.30731 -0.04126244 13.47828 24.30731 -0.05836535 13.47828 24.30731 -0.08132997 13.47828 24.30731 -0.1121653 13.47828 24.30731 -0.1535689 13.47828 24.30731 -0.2091628 13.47828 24.30731 -0.2838106 13.47828 24.30731 -0.3840425 13.47828 24.30731 -0.518627 13.47828 24.30731 -0.6993381 13.47828 24.30731 -0.9419845 13.47828 24.30731 -1.267794 13.47828 24.30731 -1.705268 13.47828 24.30731 -2.292679 13.47828 24.30731 -3.081414 13.47828 24.30731 -4.140474 13.47828 24.30731 -5.562508 13.47828 24.30731 -7.471917 13.47828 24.30731 -10.03574 13.47828 24.30731 -13.47828 13.47828 24.30731 -18.10068 13.47828 24.30731 -24.30731 13.47828 24.30731 -32.64117 13.47828 24.30731 -43.83129 13.47828 24.30731 -58.85664 13.47828 24.30731 --0.0175068 18.10068 24.30731 --0.01161267 18.10068 24.30731 --0.005718534 18.10068 24.30731 -0.0001755984 18.10068 24.30731 -0.006069731 18.10068 24.30731 -0.01197402 18.10068 24.30731 -0.01903886 18.10068 24.30731 -0.02852504 18.10068 24.30731 -0.04126244 18.10068 24.30731 -0.05836535 18.10068 24.30731 -0.08132997 18.10068 24.30731 -0.1121653 18.10068 24.30731 -0.1535689 18.10068 24.30731 -0.2091628 18.10068 24.30731 -0.2838106 18.10068 24.30731 -0.3840425 18.10068 24.30731 -0.518627 18.10068 24.30731 -0.6993381 18.10068 24.30731 -0.9419845 18.10068 24.30731 -1.267794 18.10068 24.30731 -1.705268 18.10068 24.30731 -2.292679 18.10068 24.30731 -3.081414 18.10068 24.30731 -4.140474 18.10068 24.30731 -5.562508 18.10068 24.30731 -7.471917 18.10068 24.30731 -10.03574 18.10068 24.30731 -13.47828 18.10068 24.30731 -18.10068 18.10068 24.30731 -24.30731 18.10068 24.30731 -32.64117 18.10068 24.30731 -43.83129 18.10068 24.30731 -58.85664 18.10068 24.30731 --0.0175068 24.30731 24.30731 --0.01161267 24.30731 24.30731 --0.005718534 24.30731 24.30731 -0.0001755984 24.30731 24.30731 -0.006069731 24.30731 24.30731 -0.01197402 24.30731 24.30731 -0.01903886 24.30731 24.30731 -0.02852504 24.30731 24.30731 -0.04126244 24.30731 24.30731 -0.05836535 24.30731 24.30731 -0.08132997 24.30731 24.30731 -0.1121653 24.30731 24.30731 -0.1535689 24.30731 24.30731 -0.2091628 24.30731 24.30731 -0.2838106 24.30731 24.30731 -0.3840425 24.30731 24.30731 -0.518627 24.30731 24.30731 -0.6993381 24.30731 24.30731 -0.9419845 24.30731 24.30731 -1.267794 24.30731 24.30731 -1.705268 24.30731 24.30731 -2.292679 24.30731 24.30731 -3.081414 24.30731 24.30731 -4.140474 24.30731 24.30731 -5.562508 24.30731 24.30731 -7.471917 24.30731 24.30731 -10.03574 24.30731 24.30731 -13.47828 24.30731 24.30731 -18.10068 24.30731 24.30731 -24.30731 24.30731 24.30731 -32.64117 24.30731 24.30731 -43.83129 24.30731 24.30731 -58.85664 24.30731 24.30731 --0.0175068 32.64117 24.30731 --0.01161267 32.64117 24.30731 --0.005718534 32.64117 24.30731 -0.0001755984 32.64117 24.30731 -0.006069731 32.64117 24.30731 -0.01197402 32.64117 24.30731 -0.01903886 32.64117 24.30731 -0.02852504 32.64117 24.30731 -0.04126244 32.64117 24.30731 -0.05836535 32.64117 24.30731 -0.08132997 32.64117 24.30731 -0.1121653 32.64117 24.30731 -0.1535689 32.64117 24.30731 -0.2091628 32.64117 24.30731 -0.2838106 32.64117 24.30731 -0.3840425 32.64117 24.30731 -0.518627 32.64117 24.30731 -0.6993381 32.64117 24.30731 -0.9419845 32.64117 24.30731 -1.267794 32.64117 24.30731 -1.705268 32.64117 24.30731 -2.292679 32.64117 24.30731 -3.081414 32.64117 24.30731 -4.140474 32.64117 24.30731 -5.562508 32.64117 24.30731 -7.471917 32.64117 24.30731 -10.03574 32.64117 24.30731 -13.47828 32.64117 24.30731 -18.10068 32.64117 24.30731 -24.30731 32.64117 24.30731 -32.64117 32.64117 24.30731 -43.83129 32.64117 24.30731 -58.85664 32.64117 24.30731 --0.0175068 43.83129 24.30731 --0.01161267 43.83129 24.30731 --0.005718534 43.83129 24.30731 -0.0001755984 43.83129 24.30731 -0.006069731 43.83129 24.30731 -0.01197402 43.83129 24.30731 -0.01903886 43.83129 24.30731 -0.02852504 43.83129 24.30731 -0.04126244 43.83129 24.30731 -0.05836535 43.83129 24.30731 -0.08132997 43.83129 24.30731 -0.1121653 43.83129 24.30731 -0.1535689 43.83129 24.30731 -0.2091628 43.83129 24.30731 -0.2838106 43.83129 24.30731 -0.3840425 43.83129 24.30731 -0.518627 43.83129 24.30731 -0.6993381 43.83129 24.30731 -0.9419845 43.83129 24.30731 -1.267794 43.83129 24.30731 -1.705268 43.83129 24.30731 -2.292679 43.83129 24.30731 -3.081414 43.83129 24.30731 -4.140474 43.83129 24.30731 -5.562508 43.83129 24.30731 -7.471917 43.83129 24.30731 -10.03574 43.83129 24.30731 -13.47828 43.83129 24.30731 -18.10068 43.83129 24.30731 -24.30731 43.83129 24.30731 -32.64117 43.83129 24.30731 -43.83129 43.83129 24.30731 -58.85664 43.83129 24.30731 --0.0175068 58.85664 24.30731 --0.01161267 58.85664 24.30731 --0.005718534 58.85664 24.30731 -0.0001755984 58.85664 24.30731 -0.006069731 58.85664 24.30731 -0.01197402 58.85664 24.30731 -0.01903886 58.85664 24.30731 -0.02852504 58.85664 24.30731 -0.04126244 58.85664 24.30731 -0.05836535 58.85664 24.30731 -0.08132997 58.85664 24.30731 -0.1121653 58.85664 24.30731 -0.1535689 58.85664 24.30731 -0.2091628 58.85664 24.30731 -0.2838106 58.85664 24.30731 -0.3840425 58.85664 24.30731 -0.518627 58.85664 24.30731 -0.6993381 58.85664 24.30731 -0.9419845 58.85664 24.30731 -1.267794 58.85664 24.30731 -1.705268 58.85664 24.30731 -2.292679 58.85664 24.30731 -3.081414 58.85664 24.30731 -4.140474 58.85664 24.30731 -5.562508 58.85664 24.30731 -7.471917 58.85664 24.30731 -10.03574 58.85664 24.30731 -13.47828 58.85664 24.30731 -18.10068 58.85664 24.30731 -24.30731 58.85664 24.30731 -32.64117 58.85664 24.30731 -43.83129 58.85664 24.30731 -58.85664 58.85664 24.30731 --0.0175068 -0.0175068 32.64117 --0.01161267 -0.0175068 32.64117 --0.005718534 -0.0175068 32.64117 -0.0001755984 -0.0175068 32.64117 -0.006069731 -0.0175068 32.64117 -0.01197402 -0.0175068 32.64117 -0.01903886 -0.0175068 32.64117 -0.02852504 -0.0175068 32.64117 -0.04126244 -0.0175068 32.64117 -0.05836535 -0.0175068 32.64117 -0.08132997 -0.0175068 32.64117 -0.1121653 -0.0175068 32.64117 -0.1535689 -0.0175068 32.64117 -0.2091628 -0.0175068 32.64117 -0.2838106 -0.0175068 32.64117 -0.3840425 -0.0175068 32.64117 -0.518627 -0.0175068 32.64117 -0.6993381 -0.0175068 32.64117 -0.9419845 -0.0175068 32.64117 -1.267794 -0.0175068 32.64117 -1.705268 -0.0175068 32.64117 -2.292679 -0.0175068 32.64117 -3.081414 -0.0175068 32.64117 -4.140474 -0.0175068 32.64117 -5.562508 -0.0175068 32.64117 -7.471917 -0.0175068 32.64117 -10.03574 -0.0175068 32.64117 -13.47828 -0.0175068 32.64117 -18.10068 -0.0175068 32.64117 -24.30731 -0.0175068 32.64117 -32.64117 -0.0175068 32.64117 -43.83129 -0.0175068 32.64117 -58.85664 -0.0175068 32.64117 --0.0175068 -0.01161267 32.64117 --0.01161267 -0.01161267 32.64117 --0.005718534 -0.01161267 32.64117 -0.0001755984 -0.01161267 32.64117 -0.006069731 -0.01161267 32.64117 -0.01197402 -0.01161267 32.64117 -0.01903886 -0.01161267 32.64117 -0.02852504 -0.01161267 32.64117 -0.04126244 -0.01161267 32.64117 -0.05836535 -0.01161267 32.64117 -0.08132997 -0.01161267 32.64117 -0.1121653 -0.01161267 32.64117 -0.1535689 -0.01161267 32.64117 -0.2091628 -0.01161267 32.64117 -0.2838106 -0.01161267 32.64117 -0.3840425 -0.01161267 32.64117 -0.518627 -0.01161267 32.64117 -0.6993381 -0.01161267 32.64117 -0.9419845 -0.01161267 32.64117 -1.267794 -0.01161267 32.64117 -1.705268 -0.01161267 32.64117 -2.292679 -0.01161267 32.64117 -3.081414 -0.01161267 32.64117 -4.140474 -0.01161267 32.64117 -5.562508 -0.01161267 32.64117 -7.471917 -0.01161267 32.64117 -10.03574 -0.01161267 32.64117 -13.47828 -0.01161267 32.64117 -18.10068 -0.01161267 32.64117 -24.30731 -0.01161267 32.64117 -32.64117 -0.01161267 32.64117 -43.83129 -0.01161267 32.64117 -58.85664 -0.01161267 32.64117 --0.0175068 -0.005718534 32.64117 --0.01161267 -0.005718534 32.64117 --0.005718534 -0.005718534 32.64117 -0.0001755984 -0.005718534 32.64117 -0.006069731 -0.005718534 32.64117 -0.01197402 -0.005718534 32.64117 -0.01903886 -0.005718534 32.64117 -0.02852504 -0.005718534 32.64117 -0.04126244 -0.005718534 32.64117 -0.05836535 -0.005718534 32.64117 -0.08132997 -0.005718534 32.64117 -0.1121653 -0.005718534 32.64117 -0.1535689 -0.005718534 32.64117 -0.2091628 -0.005718534 32.64117 -0.2838106 -0.005718534 32.64117 -0.3840425 -0.005718534 32.64117 -0.518627 -0.005718534 32.64117 -0.6993381 -0.005718534 32.64117 -0.9419845 -0.005718534 32.64117 -1.267794 -0.005718534 32.64117 -1.705268 -0.005718534 32.64117 -2.292679 -0.005718534 32.64117 -3.081414 -0.005718534 32.64117 -4.140474 -0.005718534 32.64117 -5.562508 -0.005718534 32.64117 -7.471917 -0.005718534 32.64117 -10.03574 -0.005718534 32.64117 -13.47828 -0.005718534 32.64117 -18.10068 -0.005718534 32.64117 -24.30731 -0.005718534 32.64117 -32.64117 -0.005718534 32.64117 -43.83129 -0.005718534 32.64117 -58.85664 -0.005718534 32.64117 --0.0175068 0.0001755984 32.64117 --0.01161267 0.0001755984 32.64117 --0.005718534 0.0001755984 32.64117 -0.0001755984 0.0001755984 32.64117 -0.006069731 0.0001755984 32.64117 -0.01197402 0.0001755984 32.64117 -0.01903886 0.0001755984 32.64117 -0.02852504 0.0001755984 32.64117 -0.04126244 0.0001755984 32.64117 -0.05836535 0.0001755984 32.64117 -0.08132997 0.0001755984 32.64117 -0.1121653 0.0001755984 32.64117 -0.1535689 0.0001755984 32.64117 -0.2091628 0.0001755984 32.64117 -0.2838106 0.0001755984 32.64117 -0.3840425 0.0001755984 32.64117 -0.518627 0.0001755984 32.64117 -0.6993381 0.0001755984 32.64117 -0.9419845 0.0001755984 32.64117 -1.267794 0.0001755984 32.64117 -1.705268 0.0001755984 32.64117 -2.292679 0.0001755984 32.64117 -3.081414 0.0001755984 32.64117 -4.140474 0.0001755984 32.64117 -5.562508 0.0001755984 32.64117 -7.471917 0.0001755984 32.64117 -10.03574 0.0001755984 32.64117 -13.47828 0.0001755984 32.64117 -18.10068 0.0001755984 32.64117 -24.30731 0.0001755984 32.64117 -32.64117 0.0001755984 32.64117 -43.83129 0.0001755984 32.64117 -58.85664 0.0001755984 32.64117 --0.0175068 0.006069731 32.64117 --0.01161267 0.006069731 32.64117 --0.005718534 0.006069731 32.64117 -0.0001755984 0.006069731 32.64117 -0.006069731 0.006069731 32.64117 -0.01197402 0.006069731 32.64117 -0.01903886 0.006069731 32.64117 -0.02852504 0.006069731 32.64117 -0.04126244 0.006069731 32.64117 -0.05836535 0.006069731 32.64117 -0.08132997 0.006069731 32.64117 -0.1121653 0.006069731 32.64117 -0.1535689 0.006069731 32.64117 -0.2091628 0.006069731 32.64117 -0.2838106 0.006069731 32.64117 -0.3840425 0.006069731 32.64117 -0.518627 0.006069731 32.64117 -0.6993381 0.006069731 32.64117 -0.9419845 0.006069731 32.64117 -1.267794 0.006069731 32.64117 -1.705268 0.006069731 32.64117 -2.292679 0.006069731 32.64117 -3.081414 0.006069731 32.64117 -4.140474 0.006069731 32.64117 -5.562508 0.006069731 32.64117 -7.471917 0.006069731 32.64117 -10.03574 0.006069731 32.64117 -13.47828 0.006069731 32.64117 -18.10068 0.006069731 32.64117 -24.30731 0.006069731 32.64117 -32.64117 0.006069731 32.64117 -43.83129 0.006069731 32.64117 -58.85664 0.006069731 32.64117 --0.0175068 0.01197402 32.64117 --0.01161267 0.01197402 32.64117 --0.005718534 0.01197402 32.64117 -0.0001755984 0.01197402 32.64117 -0.006069731 0.01197402 32.64117 -0.01197402 0.01197402 32.64117 -0.01903886 0.01197402 32.64117 -0.02852504 0.01197402 32.64117 -0.04126244 0.01197402 32.64117 -0.05836535 0.01197402 32.64117 -0.08132997 0.01197402 32.64117 -0.1121653 0.01197402 32.64117 -0.1535689 0.01197402 32.64117 -0.2091628 0.01197402 32.64117 -0.2838106 0.01197402 32.64117 -0.3840425 0.01197402 32.64117 -0.518627 0.01197402 32.64117 -0.6993381 0.01197402 32.64117 -0.9419845 0.01197402 32.64117 -1.267794 0.01197402 32.64117 -1.705268 0.01197402 32.64117 -2.292679 0.01197402 32.64117 -3.081414 0.01197402 32.64117 -4.140474 0.01197402 32.64117 -5.562508 0.01197402 32.64117 -7.471917 0.01197402 32.64117 -10.03574 0.01197402 32.64117 -13.47828 0.01197402 32.64117 -18.10068 0.01197402 32.64117 -24.30731 0.01197402 32.64117 -32.64117 0.01197402 32.64117 -43.83129 0.01197402 32.64117 -58.85664 0.01197402 32.64117 --0.0175068 0.01903886 32.64117 --0.01161267 0.01903886 32.64117 --0.005718534 0.01903886 32.64117 -0.0001755984 0.01903886 32.64117 -0.006069731 0.01903886 32.64117 -0.01197402 0.01903886 32.64117 -0.01903886 0.01903886 32.64117 -0.02852504 0.01903886 32.64117 -0.04126244 0.01903886 32.64117 -0.05836535 0.01903886 32.64117 -0.08132997 0.01903886 32.64117 -0.1121653 0.01903886 32.64117 -0.1535689 0.01903886 32.64117 -0.2091628 0.01903886 32.64117 -0.2838106 0.01903886 32.64117 -0.3840425 0.01903886 32.64117 -0.518627 0.01903886 32.64117 -0.6993381 0.01903886 32.64117 -0.9419845 0.01903886 32.64117 -1.267794 0.01903886 32.64117 -1.705268 0.01903886 32.64117 -2.292679 0.01903886 32.64117 -3.081414 0.01903886 32.64117 -4.140474 0.01903886 32.64117 -5.562508 0.01903886 32.64117 -7.471917 0.01903886 32.64117 -10.03574 0.01903886 32.64117 -13.47828 0.01903886 32.64117 -18.10068 0.01903886 32.64117 -24.30731 0.01903886 32.64117 -32.64117 0.01903886 32.64117 -43.83129 0.01903886 32.64117 -58.85664 0.01903886 32.64117 --0.0175068 0.02852504 32.64117 --0.01161267 0.02852504 32.64117 --0.005718534 0.02852504 32.64117 -0.0001755984 0.02852504 32.64117 -0.006069731 0.02852504 32.64117 -0.01197402 0.02852504 32.64117 -0.01903886 0.02852504 32.64117 -0.02852504 0.02852504 32.64117 -0.04126244 0.02852504 32.64117 -0.05836535 0.02852504 32.64117 -0.08132997 0.02852504 32.64117 -0.1121653 0.02852504 32.64117 -0.1535689 0.02852504 32.64117 -0.2091628 0.02852504 32.64117 -0.2838106 0.02852504 32.64117 -0.3840425 0.02852504 32.64117 -0.518627 0.02852504 32.64117 -0.6993381 0.02852504 32.64117 -0.9419845 0.02852504 32.64117 -1.267794 0.02852504 32.64117 -1.705268 0.02852504 32.64117 -2.292679 0.02852504 32.64117 -3.081414 0.02852504 32.64117 -4.140474 0.02852504 32.64117 -5.562508 0.02852504 32.64117 -7.471917 0.02852504 32.64117 -10.03574 0.02852504 32.64117 -13.47828 0.02852504 32.64117 -18.10068 0.02852504 32.64117 -24.30731 0.02852504 32.64117 -32.64117 0.02852504 32.64117 -43.83129 0.02852504 32.64117 -58.85664 0.02852504 32.64117 --0.0175068 0.04126244 32.64117 --0.01161267 0.04126244 32.64117 --0.005718534 0.04126244 32.64117 -0.0001755984 0.04126244 32.64117 -0.006069731 0.04126244 32.64117 -0.01197402 0.04126244 32.64117 -0.01903886 0.04126244 32.64117 -0.02852504 0.04126244 32.64117 -0.04126244 0.04126244 32.64117 -0.05836535 0.04126244 32.64117 -0.08132997 0.04126244 32.64117 -0.1121653 0.04126244 32.64117 -0.1535689 0.04126244 32.64117 -0.2091628 0.04126244 32.64117 -0.2838106 0.04126244 32.64117 -0.3840425 0.04126244 32.64117 -0.518627 0.04126244 32.64117 -0.6993381 0.04126244 32.64117 -0.9419845 0.04126244 32.64117 -1.267794 0.04126244 32.64117 -1.705268 0.04126244 32.64117 -2.292679 0.04126244 32.64117 -3.081414 0.04126244 32.64117 -4.140474 0.04126244 32.64117 -5.562508 0.04126244 32.64117 -7.471917 0.04126244 32.64117 -10.03574 0.04126244 32.64117 -13.47828 0.04126244 32.64117 -18.10068 0.04126244 32.64117 -24.30731 0.04126244 32.64117 -32.64117 0.04126244 32.64117 -43.83129 0.04126244 32.64117 -58.85664 0.04126244 32.64117 --0.0175068 0.05836535 32.64117 --0.01161267 0.05836535 32.64117 --0.005718534 0.05836535 32.64117 -0.0001755984 0.05836535 32.64117 -0.006069731 0.05836535 32.64117 -0.01197402 0.05836535 32.64117 -0.01903886 0.05836535 32.64117 -0.02852504 0.05836535 32.64117 -0.04126244 0.05836535 32.64117 -0.05836535 0.05836535 32.64117 -0.08132997 0.05836535 32.64117 -0.1121653 0.05836535 32.64117 -0.1535689 0.05836535 32.64117 -0.2091628 0.05836535 32.64117 -0.2838106 0.05836535 32.64117 -0.3840425 0.05836535 32.64117 -0.518627 0.05836535 32.64117 -0.6993381 0.05836535 32.64117 -0.9419845 0.05836535 32.64117 -1.267794 0.05836535 32.64117 -1.705268 0.05836535 32.64117 -2.292679 0.05836535 32.64117 -3.081414 0.05836535 32.64117 -4.140474 0.05836535 32.64117 -5.562508 0.05836535 32.64117 -7.471917 0.05836535 32.64117 -10.03574 0.05836535 32.64117 -13.47828 0.05836535 32.64117 -18.10068 0.05836535 32.64117 -24.30731 0.05836535 32.64117 -32.64117 0.05836535 32.64117 -43.83129 0.05836535 32.64117 -58.85664 0.05836535 32.64117 --0.0175068 0.08132997 32.64117 --0.01161267 0.08132997 32.64117 --0.005718534 0.08132997 32.64117 -0.0001755984 0.08132997 32.64117 -0.006069731 0.08132997 32.64117 -0.01197402 0.08132997 32.64117 -0.01903886 0.08132997 32.64117 -0.02852504 0.08132997 32.64117 -0.04126244 0.08132997 32.64117 -0.05836535 0.08132997 32.64117 -0.08132997 0.08132997 32.64117 -0.1121653 0.08132997 32.64117 -0.1535689 0.08132997 32.64117 -0.2091628 0.08132997 32.64117 -0.2838106 0.08132997 32.64117 -0.3840425 0.08132997 32.64117 -0.518627 0.08132997 32.64117 -0.6993381 0.08132997 32.64117 -0.9419845 0.08132997 32.64117 -1.267794 0.08132997 32.64117 -1.705268 0.08132997 32.64117 -2.292679 0.08132997 32.64117 -3.081414 0.08132997 32.64117 -4.140474 0.08132997 32.64117 -5.562508 0.08132997 32.64117 -7.471917 0.08132997 32.64117 -10.03574 0.08132997 32.64117 -13.47828 0.08132997 32.64117 -18.10068 0.08132997 32.64117 -24.30731 0.08132997 32.64117 -32.64117 0.08132997 32.64117 -43.83129 0.08132997 32.64117 -58.85664 0.08132997 32.64117 --0.0175068 0.1121653 32.64117 --0.01161267 0.1121653 32.64117 --0.005718534 0.1121653 32.64117 -0.0001755984 0.1121653 32.64117 -0.006069731 0.1121653 32.64117 -0.01197402 0.1121653 32.64117 -0.01903886 0.1121653 32.64117 -0.02852504 0.1121653 32.64117 -0.04126244 0.1121653 32.64117 -0.05836535 0.1121653 32.64117 -0.08132997 0.1121653 32.64117 -0.1121653 0.1121653 32.64117 -0.1535689 0.1121653 32.64117 -0.2091628 0.1121653 32.64117 -0.2838106 0.1121653 32.64117 -0.3840425 0.1121653 32.64117 -0.518627 0.1121653 32.64117 -0.6993381 0.1121653 32.64117 -0.9419845 0.1121653 32.64117 -1.267794 0.1121653 32.64117 -1.705268 0.1121653 32.64117 -2.292679 0.1121653 32.64117 -3.081414 0.1121653 32.64117 -4.140474 0.1121653 32.64117 -5.562508 0.1121653 32.64117 -7.471917 0.1121653 32.64117 -10.03574 0.1121653 32.64117 -13.47828 0.1121653 32.64117 -18.10068 0.1121653 32.64117 -24.30731 0.1121653 32.64117 -32.64117 0.1121653 32.64117 -43.83129 0.1121653 32.64117 -58.85664 0.1121653 32.64117 --0.0175068 0.1535689 32.64117 --0.01161267 0.1535689 32.64117 --0.005718534 0.1535689 32.64117 -0.0001755984 0.1535689 32.64117 -0.006069731 0.1535689 32.64117 -0.01197402 0.1535689 32.64117 -0.01903886 0.1535689 32.64117 -0.02852504 0.1535689 32.64117 -0.04126244 0.1535689 32.64117 -0.05836535 0.1535689 32.64117 -0.08132997 0.1535689 32.64117 -0.1121653 0.1535689 32.64117 -0.1535689 0.1535689 32.64117 -0.2091628 0.1535689 32.64117 -0.2838106 0.1535689 32.64117 -0.3840425 0.1535689 32.64117 -0.518627 0.1535689 32.64117 -0.6993381 0.1535689 32.64117 -0.9419845 0.1535689 32.64117 -1.267794 0.1535689 32.64117 -1.705268 0.1535689 32.64117 -2.292679 0.1535689 32.64117 -3.081414 0.1535689 32.64117 -4.140474 0.1535689 32.64117 -5.562508 0.1535689 32.64117 -7.471917 0.1535689 32.64117 -10.03574 0.1535689 32.64117 -13.47828 0.1535689 32.64117 -18.10068 0.1535689 32.64117 -24.30731 0.1535689 32.64117 -32.64117 0.1535689 32.64117 -43.83129 0.1535689 32.64117 -58.85664 0.1535689 32.64117 --0.0175068 0.2091628 32.64117 --0.01161267 0.2091628 32.64117 --0.005718534 0.2091628 32.64117 -0.0001755984 0.2091628 32.64117 -0.006069731 0.2091628 32.64117 -0.01197402 0.2091628 32.64117 -0.01903886 0.2091628 32.64117 -0.02852504 0.2091628 32.64117 -0.04126244 0.2091628 32.64117 -0.05836535 0.2091628 32.64117 -0.08132997 0.2091628 32.64117 -0.1121653 0.2091628 32.64117 -0.1535689 0.2091628 32.64117 -0.2091628 0.2091628 32.64117 -0.2838106 0.2091628 32.64117 -0.3840425 0.2091628 32.64117 -0.518627 0.2091628 32.64117 -0.6993381 0.2091628 32.64117 -0.9419845 0.2091628 32.64117 -1.267794 0.2091628 32.64117 -1.705268 0.2091628 32.64117 -2.292679 0.2091628 32.64117 -3.081414 0.2091628 32.64117 -4.140474 0.2091628 32.64117 -5.562508 0.2091628 32.64117 -7.471917 0.2091628 32.64117 -10.03574 0.2091628 32.64117 -13.47828 0.2091628 32.64117 -18.10068 0.2091628 32.64117 -24.30731 0.2091628 32.64117 -32.64117 0.2091628 32.64117 -43.83129 0.2091628 32.64117 -58.85664 0.2091628 32.64117 --0.0175068 0.2838106 32.64117 --0.01161267 0.2838106 32.64117 --0.005718534 0.2838106 32.64117 -0.0001755984 0.2838106 32.64117 -0.006069731 0.2838106 32.64117 -0.01197402 0.2838106 32.64117 -0.01903886 0.2838106 32.64117 -0.02852504 0.2838106 32.64117 -0.04126244 0.2838106 32.64117 -0.05836535 0.2838106 32.64117 -0.08132997 0.2838106 32.64117 -0.1121653 0.2838106 32.64117 -0.1535689 0.2838106 32.64117 -0.2091628 0.2838106 32.64117 -0.2838106 0.2838106 32.64117 -0.3840425 0.2838106 32.64117 -0.518627 0.2838106 32.64117 -0.6993381 0.2838106 32.64117 -0.9419845 0.2838106 32.64117 -1.267794 0.2838106 32.64117 -1.705268 0.2838106 32.64117 -2.292679 0.2838106 32.64117 -3.081414 0.2838106 32.64117 -4.140474 0.2838106 32.64117 -5.562508 0.2838106 32.64117 -7.471917 0.2838106 32.64117 -10.03574 0.2838106 32.64117 -13.47828 0.2838106 32.64117 -18.10068 0.2838106 32.64117 -24.30731 0.2838106 32.64117 -32.64117 0.2838106 32.64117 -43.83129 0.2838106 32.64117 -58.85664 0.2838106 32.64117 --0.0175068 0.3840425 32.64117 --0.01161267 0.3840425 32.64117 --0.005718534 0.3840425 32.64117 -0.0001755984 0.3840425 32.64117 -0.006069731 0.3840425 32.64117 -0.01197402 0.3840425 32.64117 -0.01903886 0.3840425 32.64117 -0.02852504 0.3840425 32.64117 -0.04126244 0.3840425 32.64117 -0.05836535 0.3840425 32.64117 -0.08132997 0.3840425 32.64117 -0.1121653 0.3840425 32.64117 -0.1535689 0.3840425 32.64117 -0.2091628 0.3840425 32.64117 -0.2838106 0.3840425 32.64117 -0.3840425 0.3840425 32.64117 -0.518627 0.3840425 32.64117 -0.6993381 0.3840425 32.64117 -0.9419845 0.3840425 32.64117 -1.267794 0.3840425 32.64117 -1.705268 0.3840425 32.64117 -2.292679 0.3840425 32.64117 -3.081414 0.3840425 32.64117 -4.140474 0.3840425 32.64117 -5.562508 0.3840425 32.64117 -7.471917 0.3840425 32.64117 -10.03574 0.3840425 32.64117 -13.47828 0.3840425 32.64117 -18.10068 0.3840425 32.64117 -24.30731 0.3840425 32.64117 -32.64117 0.3840425 32.64117 -43.83129 0.3840425 32.64117 -58.85664 0.3840425 32.64117 --0.0175068 0.518627 32.64117 --0.01161267 0.518627 32.64117 --0.005718534 0.518627 32.64117 -0.0001755984 0.518627 32.64117 -0.006069731 0.518627 32.64117 -0.01197402 0.518627 32.64117 -0.01903886 0.518627 32.64117 -0.02852504 0.518627 32.64117 -0.04126244 0.518627 32.64117 -0.05836535 0.518627 32.64117 -0.08132997 0.518627 32.64117 -0.1121653 0.518627 32.64117 -0.1535689 0.518627 32.64117 -0.2091628 0.518627 32.64117 -0.2838106 0.518627 32.64117 -0.3840425 0.518627 32.64117 -0.518627 0.518627 32.64117 -0.6993381 0.518627 32.64117 -0.9419845 0.518627 32.64117 -1.267794 0.518627 32.64117 -1.705268 0.518627 32.64117 -2.292679 0.518627 32.64117 -3.081414 0.518627 32.64117 -4.140474 0.518627 32.64117 -5.562508 0.518627 32.64117 -7.471917 0.518627 32.64117 -10.03574 0.518627 32.64117 -13.47828 0.518627 32.64117 -18.10068 0.518627 32.64117 -24.30731 0.518627 32.64117 -32.64117 0.518627 32.64117 -43.83129 0.518627 32.64117 -58.85664 0.518627 32.64117 --0.0175068 0.6993381 32.64117 --0.01161267 0.6993381 32.64117 --0.005718534 0.6993381 32.64117 -0.0001755984 0.6993381 32.64117 -0.006069731 0.6993381 32.64117 -0.01197402 0.6993381 32.64117 -0.01903886 0.6993381 32.64117 -0.02852504 0.6993381 32.64117 -0.04126244 0.6993381 32.64117 -0.05836535 0.6993381 32.64117 -0.08132997 0.6993381 32.64117 -0.1121653 0.6993381 32.64117 -0.1535689 0.6993381 32.64117 -0.2091628 0.6993381 32.64117 -0.2838106 0.6993381 32.64117 -0.3840425 0.6993381 32.64117 -0.518627 0.6993381 32.64117 -0.6993381 0.6993381 32.64117 -0.9419845 0.6993381 32.64117 -1.267794 0.6993381 32.64117 -1.705268 0.6993381 32.64117 -2.292679 0.6993381 32.64117 -3.081414 0.6993381 32.64117 -4.140474 0.6993381 32.64117 -5.562508 0.6993381 32.64117 -7.471917 0.6993381 32.64117 -10.03574 0.6993381 32.64117 -13.47828 0.6993381 32.64117 -18.10068 0.6993381 32.64117 -24.30731 0.6993381 32.64117 -32.64117 0.6993381 32.64117 -43.83129 0.6993381 32.64117 -58.85664 0.6993381 32.64117 --0.0175068 0.9419845 32.64117 --0.01161267 0.9419845 32.64117 --0.005718534 0.9419845 32.64117 -0.0001755984 0.9419845 32.64117 -0.006069731 0.9419845 32.64117 -0.01197402 0.9419845 32.64117 -0.01903886 0.9419845 32.64117 -0.02852504 0.9419845 32.64117 -0.04126244 0.9419845 32.64117 -0.05836535 0.9419845 32.64117 -0.08132997 0.9419845 32.64117 -0.1121653 0.9419845 32.64117 -0.1535689 0.9419845 32.64117 -0.2091628 0.9419845 32.64117 -0.2838106 0.9419845 32.64117 -0.3840425 0.9419845 32.64117 -0.518627 0.9419845 32.64117 -0.6993381 0.9419845 32.64117 -0.9419845 0.9419845 32.64117 -1.267794 0.9419845 32.64117 -1.705268 0.9419845 32.64117 -2.292679 0.9419845 32.64117 -3.081414 0.9419845 32.64117 -4.140474 0.9419845 32.64117 -5.562508 0.9419845 32.64117 -7.471917 0.9419845 32.64117 -10.03574 0.9419845 32.64117 -13.47828 0.9419845 32.64117 -18.10068 0.9419845 32.64117 -24.30731 0.9419845 32.64117 -32.64117 0.9419845 32.64117 -43.83129 0.9419845 32.64117 -58.85664 0.9419845 32.64117 --0.0175068 1.267794 32.64117 --0.01161267 1.267794 32.64117 --0.005718534 1.267794 32.64117 -0.0001755984 1.267794 32.64117 -0.006069731 1.267794 32.64117 -0.01197402 1.267794 32.64117 -0.01903886 1.267794 32.64117 -0.02852504 1.267794 32.64117 -0.04126244 1.267794 32.64117 -0.05836535 1.267794 32.64117 -0.08132997 1.267794 32.64117 -0.1121653 1.267794 32.64117 -0.1535689 1.267794 32.64117 -0.2091628 1.267794 32.64117 -0.2838106 1.267794 32.64117 -0.3840425 1.267794 32.64117 -0.518627 1.267794 32.64117 -0.6993381 1.267794 32.64117 -0.9419845 1.267794 32.64117 -1.267794 1.267794 32.64117 -1.705268 1.267794 32.64117 -2.292679 1.267794 32.64117 -3.081414 1.267794 32.64117 -4.140474 1.267794 32.64117 -5.562508 1.267794 32.64117 -7.471917 1.267794 32.64117 -10.03574 1.267794 32.64117 -13.47828 1.267794 32.64117 -18.10068 1.267794 32.64117 -24.30731 1.267794 32.64117 -32.64117 1.267794 32.64117 -43.83129 1.267794 32.64117 -58.85664 1.267794 32.64117 --0.0175068 1.705268 32.64117 --0.01161267 1.705268 32.64117 --0.005718534 1.705268 32.64117 -0.0001755984 1.705268 32.64117 -0.006069731 1.705268 32.64117 -0.01197402 1.705268 32.64117 -0.01903886 1.705268 32.64117 -0.02852504 1.705268 32.64117 -0.04126244 1.705268 32.64117 -0.05836535 1.705268 32.64117 -0.08132997 1.705268 32.64117 -0.1121653 1.705268 32.64117 -0.1535689 1.705268 32.64117 -0.2091628 1.705268 32.64117 -0.2838106 1.705268 32.64117 -0.3840425 1.705268 32.64117 -0.518627 1.705268 32.64117 -0.6993381 1.705268 32.64117 -0.9419845 1.705268 32.64117 -1.267794 1.705268 32.64117 -1.705268 1.705268 32.64117 -2.292679 1.705268 32.64117 -3.081414 1.705268 32.64117 -4.140474 1.705268 32.64117 -5.562508 1.705268 32.64117 -7.471917 1.705268 32.64117 -10.03574 1.705268 32.64117 -13.47828 1.705268 32.64117 -18.10068 1.705268 32.64117 -24.30731 1.705268 32.64117 -32.64117 1.705268 32.64117 -43.83129 1.705268 32.64117 -58.85664 1.705268 32.64117 --0.0175068 2.292679 32.64117 --0.01161267 2.292679 32.64117 --0.005718534 2.292679 32.64117 -0.0001755984 2.292679 32.64117 -0.006069731 2.292679 32.64117 -0.01197402 2.292679 32.64117 -0.01903886 2.292679 32.64117 -0.02852504 2.292679 32.64117 -0.04126244 2.292679 32.64117 -0.05836535 2.292679 32.64117 -0.08132997 2.292679 32.64117 -0.1121653 2.292679 32.64117 -0.1535689 2.292679 32.64117 -0.2091628 2.292679 32.64117 -0.2838106 2.292679 32.64117 -0.3840425 2.292679 32.64117 -0.518627 2.292679 32.64117 -0.6993381 2.292679 32.64117 -0.9419845 2.292679 32.64117 -1.267794 2.292679 32.64117 -1.705268 2.292679 32.64117 -2.292679 2.292679 32.64117 -3.081414 2.292679 32.64117 -4.140474 2.292679 32.64117 -5.562508 2.292679 32.64117 -7.471917 2.292679 32.64117 -10.03574 2.292679 32.64117 -13.47828 2.292679 32.64117 -18.10068 2.292679 32.64117 -24.30731 2.292679 32.64117 -32.64117 2.292679 32.64117 -43.83129 2.292679 32.64117 -58.85664 2.292679 32.64117 --0.0175068 3.081414 32.64117 --0.01161267 3.081414 32.64117 --0.005718534 3.081414 32.64117 -0.0001755984 3.081414 32.64117 -0.006069731 3.081414 32.64117 -0.01197402 3.081414 32.64117 -0.01903886 3.081414 32.64117 -0.02852504 3.081414 32.64117 -0.04126244 3.081414 32.64117 -0.05836535 3.081414 32.64117 -0.08132997 3.081414 32.64117 -0.1121653 3.081414 32.64117 -0.1535689 3.081414 32.64117 -0.2091628 3.081414 32.64117 -0.2838106 3.081414 32.64117 -0.3840425 3.081414 32.64117 -0.518627 3.081414 32.64117 -0.6993381 3.081414 32.64117 -0.9419845 3.081414 32.64117 -1.267794 3.081414 32.64117 -1.705268 3.081414 32.64117 -2.292679 3.081414 32.64117 -3.081414 3.081414 32.64117 -4.140474 3.081414 32.64117 -5.562508 3.081414 32.64117 -7.471917 3.081414 32.64117 -10.03574 3.081414 32.64117 -13.47828 3.081414 32.64117 -18.10068 3.081414 32.64117 -24.30731 3.081414 32.64117 -32.64117 3.081414 32.64117 -43.83129 3.081414 32.64117 -58.85664 3.081414 32.64117 --0.0175068 4.140474 32.64117 --0.01161267 4.140474 32.64117 --0.005718534 4.140474 32.64117 -0.0001755984 4.140474 32.64117 -0.006069731 4.140474 32.64117 -0.01197402 4.140474 32.64117 -0.01903886 4.140474 32.64117 -0.02852504 4.140474 32.64117 -0.04126244 4.140474 32.64117 -0.05836535 4.140474 32.64117 -0.08132997 4.140474 32.64117 -0.1121653 4.140474 32.64117 -0.1535689 4.140474 32.64117 -0.2091628 4.140474 32.64117 -0.2838106 4.140474 32.64117 -0.3840425 4.140474 32.64117 -0.518627 4.140474 32.64117 -0.6993381 4.140474 32.64117 -0.9419845 4.140474 32.64117 -1.267794 4.140474 32.64117 -1.705268 4.140474 32.64117 -2.292679 4.140474 32.64117 -3.081414 4.140474 32.64117 -4.140474 4.140474 32.64117 -5.562508 4.140474 32.64117 -7.471917 4.140474 32.64117 -10.03574 4.140474 32.64117 -13.47828 4.140474 32.64117 -18.10068 4.140474 32.64117 -24.30731 4.140474 32.64117 -32.64117 4.140474 32.64117 -43.83129 4.140474 32.64117 -58.85664 4.140474 32.64117 --0.0175068 5.562508 32.64117 --0.01161267 5.562508 32.64117 --0.005718534 5.562508 32.64117 -0.0001755984 5.562508 32.64117 -0.006069731 5.562508 32.64117 -0.01197402 5.562508 32.64117 -0.01903886 5.562508 32.64117 -0.02852504 5.562508 32.64117 -0.04126244 5.562508 32.64117 -0.05836535 5.562508 32.64117 -0.08132997 5.562508 32.64117 -0.1121653 5.562508 32.64117 -0.1535689 5.562508 32.64117 -0.2091628 5.562508 32.64117 -0.2838106 5.562508 32.64117 -0.3840425 5.562508 32.64117 -0.518627 5.562508 32.64117 -0.6993381 5.562508 32.64117 -0.9419845 5.562508 32.64117 -1.267794 5.562508 32.64117 -1.705268 5.562508 32.64117 -2.292679 5.562508 32.64117 -3.081414 5.562508 32.64117 -4.140474 5.562508 32.64117 -5.562508 5.562508 32.64117 -7.471917 5.562508 32.64117 -10.03574 5.562508 32.64117 -13.47828 5.562508 32.64117 -18.10068 5.562508 32.64117 -24.30731 5.562508 32.64117 -32.64117 5.562508 32.64117 -43.83129 5.562508 32.64117 -58.85664 5.562508 32.64117 --0.0175068 7.471917 32.64117 --0.01161267 7.471917 32.64117 --0.005718534 7.471917 32.64117 -0.0001755984 7.471917 32.64117 -0.006069731 7.471917 32.64117 -0.01197402 7.471917 32.64117 -0.01903886 7.471917 32.64117 -0.02852504 7.471917 32.64117 -0.04126244 7.471917 32.64117 -0.05836535 7.471917 32.64117 -0.08132997 7.471917 32.64117 -0.1121653 7.471917 32.64117 -0.1535689 7.471917 32.64117 -0.2091628 7.471917 32.64117 -0.2838106 7.471917 32.64117 -0.3840425 7.471917 32.64117 -0.518627 7.471917 32.64117 -0.6993381 7.471917 32.64117 -0.9419845 7.471917 32.64117 -1.267794 7.471917 32.64117 -1.705268 7.471917 32.64117 -2.292679 7.471917 32.64117 -3.081414 7.471917 32.64117 -4.140474 7.471917 32.64117 -5.562508 7.471917 32.64117 -7.471917 7.471917 32.64117 -10.03574 7.471917 32.64117 -13.47828 7.471917 32.64117 -18.10068 7.471917 32.64117 -24.30731 7.471917 32.64117 -32.64117 7.471917 32.64117 -43.83129 7.471917 32.64117 -58.85664 7.471917 32.64117 --0.0175068 10.03574 32.64117 --0.01161267 10.03574 32.64117 --0.005718534 10.03574 32.64117 -0.0001755984 10.03574 32.64117 -0.006069731 10.03574 32.64117 -0.01197402 10.03574 32.64117 -0.01903886 10.03574 32.64117 -0.02852504 10.03574 32.64117 -0.04126244 10.03574 32.64117 -0.05836535 10.03574 32.64117 -0.08132997 10.03574 32.64117 -0.1121653 10.03574 32.64117 -0.1535689 10.03574 32.64117 -0.2091628 10.03574 32.64117 -0.2838106 10.03574 32.64117 -0.3840425 10.03574 32.64117 -0.518627 10.03574 32.64117 -0.6993381 10.03574 32.64117 -0.9419845 10.03574 32.64117 -1.267794 10.03574 32.64117 -1.705268 10.03574 32.64117 -2.292679 10.03574 32.64117 -3.081414 10.03574 32.64117 -4.140474 10.03574 32.64117 -5.562508 10.03574 32.64117 -7.471917 10.03574 32.64117 -10.03574 10.03574 32.64117 -13.47828 10.03574 32.64117 -18.10068 10.03574 32.64117 -24.30731 10.03574 32.64117 -32.64117 10.03574 32.64117 -43.83129 10.03574 32.64117 -58.85664 10.03574 32.64117 --0.0175068 13.47828 32.64117 --0.01161267 13.47828 32.64117 --0.005718534 13.47828 32.64117 -0.0001755984 13.47828 32.64117 -0.006069731 13.47828 32.64117 -0.01197402 13.47828 32.64117 -0.01903886 13.47828 32.64117 -0.02852504 13.47828 32.64117 -0.04126244 13.47828 32.64117 -0.05836535 13.47828 32.64117 -0.08132997 13.47828 32.64117 -0.1121653 13.47828 32.64117 -0.1535689 13.47828 32.64117 -0.2091628 13.47828 32.64117 -0.2838106 13.47828 32.64117 -0.3840425 13.47828 32.64117 -0.518627 13.47828 32.64117 -0.6993381 13.47828 32.64117 -0.9419845 13.47828 32.64117 -1.267794 13.47828 32.64117 -1.705268 13.47828 32.64117 -2.292679 13.47828 32.64117 -3.081414 13.47828 32.64117 -4.140474 13.47828 32.64117 -5.562508 13.47828 32.64117 -7.471917 13.47828 32.64117 -10.03574 13.47828 32.64117 -13.47828 13.47828 32.64117 -18.10068 13.47828 32.64117 -24.30731 13.47828 32.64117 -32.64117 13.47828 32.64117 -43.83129 13.47828 32.64117 -58.85664 13.47828 32.64117 --0.0175068 18.10068 32.64117 --0.01161267 18.10068 32.64117 --0.005718534 18.10068 32.64117 -0.0001755984 18.10068 32.64117 -0.006069731 18.10068 32.64117 -0.01197402 18.10068 32.64117 -0.01903886 18.10068 32.64117 -0.02852504 18.10068 32.64117 -0.04126244 18.10068 32.64117 -0.05836535 18.10068 32.64117 -0.08132997 18.10068 32.64117 -0.1121653 18.10068 32.64117 -0.1535689 18.10068 32.64117 -0.2091628 18.10068 32.64117 -0.2838106 18.10068 32.64117 -0.3840425 18.10068 32.64117 -0.518627 18.10068 32.64117 -0.6993381 18.10068 32.64117 -0.9419845 18.10068 32.64117 -1.267794 18.10068 32.64117 -1.705268 18.10068 32.64117 -2.292679 18.10068 32.64117 -3.081414 18.10068 32.64117 -4.140474 18.10068 32.64117 -5.562508 18.10068 32.64117 -7.471917 18.10068 32.64117 -10.03574 18.10068 32.64117 -13.47828 18.10068 32.64117 -18.10068 18.10068 32.64117 -24.30731 18.10068 32.64117 -32.64117 18.10068 32.64117 -43.83129 18.10068 32.64117 -58.85664 18.10068 32.64117 --0.0175068 24.30731 32.64117 --0.01161267 24.30731 32.64117 --0.005718534 24.30731 32.64117 -0.0001755984 24.30731 32.64117 -0.006069731 24.30731 32.64117 -0.01197402 24.30731 32.64117 -0.01903886 24.30731 32.64117 -0.02852504 24.30731 32.64117 -0.04126244 24.30731 32.64117 -0.05836535 24.30731 32.64117 -0.08132997 24.30731 32.64117 -0.1121653 24.30731 32.64117 -0.1535689 24.30731 32.64117 -0.2091628 24.30731 32.64117 -0.2838106 24.30731 32.64117 -0.3840425 24.30731 32.64117 -0.518627 24.30731 32.64117 -0.6993381 24.30731 32.64117 -0.9419845 24.30731 32.64117 -1.267794 24.30731 32.64117 -1.705268 24.30731 32.64117 -2.292679 24.30731 32.64117 -3.081414 24.30731 32.64117 -4.140474 24.30731 32.64117 -5.562508 24.30731 32.64117 -7.471917 24.30731 32.64117 -10.03574 24.30731 32.64117 -13.47828 24.30731 32.64117 -18.10068 24.30731 32.64117 -24.30731 24.30731 32.64117 -32.64117 24.30731 32.64117 -43.83129 24.30731 32.64117 -58.85664 24.30731 32.64117 --0.0175068 32.64117 32.64117 --0.01161267 32.64117 32.64117 --0.005718534 32.64117 32.64117 -0.0001755984 32.64117 32.64117 -0.006069731 32.64117 32.64117 -0.01197402 32.64117 32.64117 -0.01903886 32.64117 32.64117 -0.02852504 32.64117 32.64117 -0.04126244 32.64117 32.64117 -0.05836535 32.64117 32.64117 -0.08132997 32.64117 32.64117 -0.1121653 32.64117 32.64117 -0.1535689 32.64117 32.64117 -0.2091628 32.64117 32.64117 -0.2838106 32.64117 32.64117 -0.3840425 32.64117 32.64117 -0.518627 32.64117 32.64117 -0.6993381 32.64117 32.64117 -0.9419845 32.64117 32.64117 -1.267794 32.64117 32.64117 -1.705268 32.64117 32.64117 -2.292679 32.64117 32.64117 -3.081414 32.64117 32.64117 -4.140474 32.64117 32.64117 -5.562508 32.64117 32.64117 -7.471917 32.64117 32.64117 -10.03574 32.64117 32.64117 -13.47828 32.64117 32.64117 -18.10068 32.64117 32.64117 -24.30731 32.64117 32.64117 -32.64117 32.64117 32.64117 -43.83129 32.64117 32.64117 -58.85664 32.64117 32.64117 --0.0175068 43.83129 32.64117 --0.01161267 43.83129 32.64117 --0.005718534 43.83129 32.64117 -0.0001755984 43.83129 32.64117 -0.006069731 43.83129 32.64117 -0.01197402 43.83129 32.64117 -0.01903886 43.83129 32.64117 -0.02852504 43.83129 32.64117 -0.04126244 43.83129 32.64117 -0.05836535 43.83129 32.64117 -0.08132997 43.83129 32.64117 -0.1121653 43.83129 32.64117 -0.1535689 43.83129 32.64117 -0.2091628 43.83129 32.64117 -0.2838106 43.83129 32.64117 -0.3840425 43.83129 32.64117 -0.518627 43.83129 32.64117 -0.6993381 43.83129 32.64117 -0.9419845 43.83129 32.64117 -1.267794 43.83129 32.64117 -1.705268 43.83129 32.64117 -2.292679 43.83129 32.64117 -3.081414 43.83129 32.64117 -4.140474 43.83129 32.64117 -5.562508 43.83129 32.64117 -7.471917 43.83129 32.64117 -10.03574 43.83129 32.64117 -13.47828 43.83129 32.64117 -18.10068 43.83129 32.64117 -24.30731 43.83129 32.64117 -32.64117 43.83129 32.64117 -43.83129 43.83129 32.64117 -58.85664 43.83129 32.64117 --0.0175068 58.85664 32.64117 --0.01161267 58.85664 32.64117 --0.005718534 58.85664 32.64117 -0.0001755984 58.85664 32.64117 -0.006069731 58.85664 32.64117 -0.01197402 58.85664 32.64117 -0.01903886 58.85664 32.64117 -0.02852504 58.85664 32.64117 -0.04126244 58.85664 32.64117 -0.05836535 58.85664 32.64117 -0.08132997 58.85664 32.64117 -0.1121653 58.85664 32.64117 -0.1535689 58.85664 32.64117 -0.2091628 58.85664 32.64117 -0.2838106 58.85664 32.64117 -0.3840425 58.85664 32.64117 -0.518627 58.85664 32.64117 -0.6993381 58.85664 32.64117 -0.9419845 58.85664 32.64117 -1.267794 58.85664 32.64117 -1.705268 58.85664 32.64117 -2.292679 58.85664 32.64117 -3.081414 58.85664 32.64117 -4.140474 58.85664 32.64117 -5.562508 58.85664 32.64117 -7.471917 58.85664 32.64117 -10.03574 58.85664 32.64117 -13.47828 58.85664 32.64117 -18.10068 58.85664 32.64117 -24.30731 58.85664 32.64117 -32.64117 58.85664 32.64117 -43.83129 58.85664 32.64117 -58.85664 58.85664 32.64117 --0.0175068 -0.0175068 43.83129 --0.01161267 -0.0175068 43.83129 --0.005718534 -0.0175068 43.83129 -0.0001755984 -0.0175068 43.83129 -0.006069731 -0.0175068 43.83129 -0.01197402 -0.0175068 43.83129 -0.01903886 -0.0175068 43.83129 -0.02852504 -0.0175068 43.83129 -0.04126244 -0.0175068 43.83129 -0.05836535 -0.0175068 43.83129 -0.08132997 -0.0175068 43.83129 -0.1121653 -0.0175068 43.83129 -0.1535689 -0.0175068 43.83129 -0.2091628 -0.0175068 43.83129 -0.2838106 -0.0175068 43.83129 -0.3840425 -0.0175068 43.83129 -0.518627 -0.0175068 43.83129 -0.6993381 -0.0175068 43.83129 -0.9419845 -0.0175068 43.83129 -1.267794 -0.0175068 43.83129 -1.705268 -0.0175068 43.83129 -2.292679 -0.0175068 43.83129 -3.081414 -0.0175068 43.83129 -4.140474 -0.0175068 43.83129 -5.562508 -0.0175068 43.83129 -7.471917 -0.0175068 43.83129 -10.03574 -0.0175068 43.83129 -13.47828 -0.0175068 43.83129 -18.10068 -0.0175068 43.83129 -24.30731 -0.0175068 43.83129 -32.64117 -0.0175068 43.83129 -43.83129 -0.0175068 43.83129 -58.85664 -0.0175068 43.83129 --0.0175068 -0.01161267 43.83129 --0.01161267 -0.01161267 43.83129 --0.005718534 -0.01161267 43.83129 -0.0001755984 -0.01161267 43.83129 -0.006069731 -0.01161267 43.83129 -0.01197402 -0.01161267 43.83129 -0.01903886 -0.01161267 43.83129 -0.02852504 -0.01161267 43.83129 -0.04126244 -0.01161267 43.83129 -0.05836535 -0.01161267 43.83129 -0.08132997 -0.01161267 43.83129 -0.1121653 -0.01161267 43.83129 -0.1535689 -0.01161267 43.83129 -0.2091628 -0.01161267 43.83129 -0.2838106 -0.01161267 43.83129 -0.3840425 -0.01161267 43.83129 -0.518627 -0.01161267 43.83129 -0.6993381 -0.01161267 43.83129 -0.9419845 -0.01161267 43.83129 -1.267794 -0.01161267 43.83129 -1.705268 -0.01161267 43.83129 -2.292679 -0.01161267 43.83129 -3.081414 -0.01161267 43.83129 -4.140474 -0.01161267 43.83129 -5.562508 -0.01161267 43.83129 -7.471917 -0.01161267 43.83129 -10.03574 -0.01161267 43.83129 -13.47828 -0.01161267 43.83129 -18.10068 -0.01161267 43.83129 -24.30731 -0.01161267 43.83129 -32.64117 -0.01161267 43.83129 -43.83129 -0.01161267 43.83129 -58.85664 -0.01161267 43.83129 --0.0175068 -0.005718534 43.83129 --0.01161267 -0.005718534 43.83129 --0.005718534 -0.005718534 43.83129 -0.0001755984 -0.005718534 43.83129 -0.006069731 -0.005718534 43.83129 -0.01197402 -0.005718534 43.83129 -0.01903886 -0.005718534 43.83129 -0.02852504 -0.005718534 43.83129 -0.04126244 -0.005718534 43.83129 -0.05836535 -0.005718534 43.83129 -0.08132997 -0.005718534 43.83129 -0.1121653 -0.005718534 43.83129 -0.1535689 -0.005718534 43.83129 -0.2091628 -0.005718534 43.83129 -0.2838106 -0.005718534 43.83129 -0.3840425 -0.005718534 43.83129 -0.518627 -0.005718534 43.83129 -0.6993381 -0.005718534 43.83129 -0.9419845 -0.005718534 43.83129 -1.267794 -0.005718534 43.83129 -1.705268 -0.005718534 43.83129 -2.292679 -0.005718534 43.83129 -3.081414 -0.005718534 43.83129 -4.140474 -0.005718534 43.83129 -5.562508 -0.005718534 43.83129 -7.471917 -0.005718534 43.83129 -10.03574 -0.005718534 43.83129 -13.47828 -0.005718534 43.83129 -18.10068 -0.005718534 43.83129 -24.30731 -0.005718534 43.83129 -32.64117 -0.005718534 43.83129 -43.83129 -0.005718534 43.83129 -58.85664 -0.005718534 43.83129 --0.0175068 0.0001755984 43.83129 --0.01161267 0.0001755984 43.83129 --0.005718534 0.0001755984 43.83129 -0.0001755984 0.0001755984 43.83129 -0.006069731 0.0001755984 43.83129 -0.01197402 0.0001755984 43.83129 -0.01903886 0.0001755984 43.83129 -0.02852504 0.0001755984 43.83129 -0.04126244 0.0001755984 43.83129 -0.05836535 0.0001755984 43.83129 -0.08132997 0.0001755984 43.83129 -0.1121653 0.0001755984 43.83129 -0.1535689 0.0001755984 43.83129 -0.2091628 0.0001755984 43.83129 -0.2838106 0.0001755984 43.83129 -0.3840425 0.0001755984 43.83129 -0.518627 0.0001755984 43.83129 -0.6993381 0.0001755984 43.83129 -0.9419845 0.0001755984 43.83129 -1.267794 0.0001755984 43.83129 -1.705268 0.0001755984 43.83129 -2.292679 0.0001755984 43.83129 -3.081414 0.0001755984 43.83129 -4.140474 0.0001755984 43.83129 -5.562508 0.0001755984 43.83129 -7.471917 0.0001755984 43.83129 -10.03574 0.0001755984 43.83129 -13.47828 0.0001755984 43.83129 -18.10068 0.0001755984 43.83129 -24.30731 0.0001755984 43.83129 -32.64117 0.0001755984 43.83129 -43.83129 0.0001755984 43.83129 -58.85664 0.0001755984 43.83129 --0.0175068 0.006069731 43.83129 --0.01161267 0.006069731 43.83129 --0.005718534 0.006069731 43.83129 -0.0001755984 0.006069731 43.83129 -0.006069731 0.006069731 43.83129 -0.01197402 0.006069731 43.83129 -0.01903886 0.006069731 43.83129 -0.02852504 0.006069731 43.83129 -0.04126244 0.006069731 43.83129 -0.05836535 0.006069731 43.83129 -0.08132997 0.006069731 43.83129 -0.1121653 0.006069731 43.83129 -0.1535689 0.006069731 43.83129 -0.2091628 0.006069731 43.83129 -0.2838106 0.006069731 43.83129 -0.3840425 0.006069731 43.83129 -0.518627 0.006069731 43.83129 -0.6993381 0.006069731 43.83129 -0.9419845 0.006069731 43.83129 -1.267794 0.006069731 43.83129 -1.705268 0.006069731 43.83129 -2.292679 0.006069731 43.83129 -3.081414 0.006069731 43.83129 -4.140474 0.006069731 43.83129 -5.562508 0.006069731 43.83129 -7.471917 0.006069731 43.83129 -10.03574 0.006069731 43.83129 -13.47828 0.006069731 43.83129 -18.10068 0.006069731 43.83129 -24.30731 0.006069731 43.83129 -32.64117 0.006069731 43.83129 -43.83129 0.006069731 43.83129 -58.85664 0.006069731 43.83129 --0.0175068 0.01197402 43.83129 --0.01161267 0.01197402 43.83129 --0.005718534 0.01197402 43.83129 -0.0001755984 0.01197402 43.83129 -0.006069731 0.01197402 43.83129 -0.01197402 0.01197402 43.83129 -0.01903886 0.01197402 43.83129 -0.02852504 0.01197402 43.83129 -0.04126244 0.01197402 43.83129 -0.05836535 0.01197402 43.83129 -0.08132997 0.01197402 43.83129 -0.1121653 0.01197402 43.83129 -0.1535689 0.01197402 43.83129 -0.2091628 0.01197402 43.83129 -0.2838106 0.01197402 43.83129 -0.3840425 0.01197402 43.83129 -0.518627 0.01197402 43.83129 -0.6993381 0.01197402 43.83129 -0.9419845 0.01197402 43.83129 -1.267794 0.01197402 43.83129 -1.705268 0.01197402 43.83129 -2.292679 0.01197402 43.83129 -3.081414 0.01197402 43.83129 -4.140474 0.01197402 43.83129 -5.562508 0.01197402 43.83129 -7.471917 0.01197402 43.83129 -10.03574 0.01197402 43.83129 -13.47828 0.01197402 43.83129 -18.10068 0.01197402 43.83129 -24.30731 0.01197402 43.83129 -32.64117 0.01197402 43.83129 -43.83129 0.01197402 43.83129 -58.85664 0.01197402 43.83129 --0.0175068 0.01903886 43.83129 --0.01161267 0.01903886 43.83129 --0.005718534 0.01903886 43.83129 -0.0001755984 0.01903886 43.83129 -0.006069731 0.01903886 43.83129 -0.01197402 0.01903886 43.83129 -0.01903886 0.01903886 43.83129 -0.02852504 0.01903886 43.83129 -0.04126244 0.01903886 43.83129 -0.05836535 0.01903886 43.83129 -0.08132997 0.01903886 43.83129 -0.1121653 0.01903886 43.83129 -0.1535689 0.01903886 43.83129 -0.2091628 0.01903886 43.83129 -0.2838106 0.01903886 43.83129 -0.3840425 0.01903886 43.83129 -0.518627 0.01903886 43.83129 -0.6993381 0.01903886 43.83129 -0.9419845 0.01903886 43.83129 -1.267794 0.01903886 43.83129 -1.705268 0.01903886 43.83129 -2.292679 0.01903886 43.83129 -3.081414 0.01903886 43.83129 -4.140474 0.01903886 43.83129 -5.562508 0.01903886 43.83129 -7.471917 0.01903886 43.83129 -10.03574 0.01903886 43.83129 -13.47828 0.01903886 43.83129 -18.10068 0.01903886 43.83129 -24.30731 0.01903886 43.83129 -32.64117 0.01903886 43.83129 -43.83129 0.01903886 43.83129 -58.85664 0.01903886 43.83129 --0.0175068 0.02852504 43.83129 --0.01161267 0.02852504 43.83129 --0.005718534 0.02852504 43.83129 -0.0001755984 0.02852504 43.83129 -0.006069731 0.02852504 43.83129 -0.01197402 0.02852504 43.83129 -0.01903886 0.02852504 43.83129 -0.02852504 0.02852504 43.83129 -0.04126244 0.02852504 43.83129 -0.05836535 0.02852504 43.83129 -0.08132997 0.02852504 43.83129 -0.1121653 0.02852504 43.83129 -0.1535689 0.02852504 43.83129 -0.2091628 0.02852504 43.83129 -0.2838106 0.02852504 43.83129 -0.3840425 0.02852504 43.83129 -0.518627 0.02852504 43.83129 -0.6993381 0.02852504 43.83129 -0.9419845 0.02852504 43.83129 -1.267794 0.02852504 43.83129 -1.705268 0.02852504 43.83129 -2.292679 0.02852504 43.83129 -3.081414 0.02852504 43.83129 -4.140474 0.02852504 43.83129 -5.562508 0.02852504 43.83129 -7.471917 0.02852504 43.83129 -10.03574 0.02852504 43.83129 -13.47828 0.02852504 43.83129 -18.10068 0.02852504 43.83129 -24.30731 0.02852504 43.83129 -32.64117 0.02852504 43.83129 -43.83129 0.02852504 43.83129 -58.85664 0.02852504 43.83129 --0.0175068 0.04126244 43.83129 --0.01161267 0.04126244 43.83129 --0.005718534 0.04126244 43.83129 -0.0001755984 0.04126244 43.83129 -0.006069731 0.04126244 43.83129 -0.01197402 0.04126244 43.83129 -0.01903886 0.04126244 43.83129 -0.02852504 0.04126244 43.83129 -0.04126244 0.04126244 43.83129 -0.05836535 0.04126244 43.83129 -0.08132997 0.04126244 43.83129 -0.1121653 0.04126244 43.83129 -0.1535689 0.04126244 43.83129 -0.2091628 0.04126244 43.83129 -0.2838106 0.04126244 43.83129 -0.3840425 0.04126244 43.83129 -0.518627 0.04126244 43.83129 -0.6993381 0.04126244 43.83129 -0.9419845 0.04126244 43.83129 -1.267794 0.04126244 43.83129 -1.705268 0.04126244 43.83129 -2.292679 0.04126244 43.83129 -3.081414 0.04126244 43.83129 -4.140474 0.04126244 43.83129 -5.562508 0.04126244 43.83129 -7.471917 0.04126244 43.83129 -10.03574 0.04126244 43.83129 -13.47828 0.04126244 43.83129 -18.10068 0.04126244 43.83129 -24.30731 0.04126244 43.83129 -32.64117 0.04126244 43.83129 -43.83129 0.04126244 43.83129 -58.85664 0.04126244 43.83129 --0.0175068 0.05836535 43.83129 --0.01161267 0.05836535 43.83129 --0.005718534 0.05836535 43.83129 -0.0001755984 0.05836535 43.83129 -0.006069731 0.05836535 43.83129 -0.01197402 0.05836535 43.83129 -0.01903886 0.05836535 43.83129 -0.02852504 0.05836535 43.83129 -0.04126244 0.05836535 43.83129 -0.05836535 0.05836535 43.83129 -0.08132997 0.05836535 43.83129 -0.1121653 0.05836535 43.83129 -0.1535689 0.05836535 43.83129 -0.2091628 0.05836535 43.83129 -0.2838106 0.05836535 43.83129 -0.3840425 0.05836535 43.83129 -0.518627 0.05836535 43.83129 -0.6993381 0.05836535 43.83129 -0.9419845 0.05836535 43.83129 -1.267794 0.05836535 43.83129 -1.705268 0.05836535 43.83129 -2.292679 0.05836535 43.83129 -3.081414 0.05836535 43.83129 -4.140474 0.05836535 43.83129 -5.562508 0.05836535 43.83129 -7.471917 0.05836535 43.83129 -10.03574 0.05836535 43.83129 -13.47828 0.05836535 43.83129 -18.10068 0.05836535 43.83129 -24.30731 0.05836535 43.83129 -32.64117 0.05836535 43.83129 -43.83129 0.05836535 43.83129 -58.85664 0.05836535 43.83129 --0.0175068 0.08132997 43.83129 --0.01161267 0.08132997 43.83129 --0.005718534 0.08132997 43.83129 -0.0001755984 0.08132997 43.83129 -0.006069731 0.08132997 43.83129 -0.01197402 0.08132997 43.83129 -0.01903886 0.08132997 43.83129 -0.02852504 0.08132997 43.83129 -0.04126244 0.08132997 43.83129 -0.05836535 0.08132997 43.83129 -0.08132997 0.08132997 43.83129 -0.1121653 0.08132997 43.83129 -0.1535689 0.08132997 43.83129 -0.2091628 0.08132997 43.83129 -0.2838106 0.08132997 43.83129 -0.3840425 0.08132997 43.83129 -0.518627 0.08132997 43.83129 -0.6993381 0.08132997 43.83129 -0.9419845 0.08132997 43.83129 -1.267794 0.08132997 43.83129 -1.705268 0.08132997 43.83129 -2.292679 0.08132997 43.83129 -3.081414 0.08132997 43.83129 -4.140474 0.08132997 43.83129 -5.562508 0.08132997 43.83129 -7.471917 0.08132997 43.83129 -10.03574 0.08132997 43.83129 -13.47828 0.08132997 43.83129 -18.10068 0.08132997 43.83129 -24.30731 0.08132997 43.83129 -32.64117 0.08132997 43.83129 -43.83129 0.08132997 43.83129 -58.85664 0.08132997 43.83129 --0.0175068 0.1121653 43.83129 --0.01161267 0.1121653 43.83129 --0.005718534 0.1121653 43.83129 -0.0001755984 0.1121653 43.83129 -0.006069731 0.1121653 43.83129 -0.01197402 0.1121653 43.83129 -0.01903886 0.1121653 43.83129 -0.02852504 0.1121653 43.83129 -0.04126244 0.1121653 43.83129 -0.05836535 0.1121653 43.83129 -0.08132997 0.1121653 43.83129 -0.1121653 0.1121653 43.83129 -0.1535689 0.1121653 43.83129 -0.2091628 0.1121653 43.83129 -0.2838106 0.1121653 43.83129 -0.3840425 0.1121653 43.83129 -0.518627 0.1121653 43.83129 -0.6993381 0.1121653 43.83129 -0.9419845 0.1121653 43.83129 -1.267794 0.1121653 43.83129 -1.705268 0.1121653 43.83129 -2.292679 0.1121653 43.83129 -3.081414 0.1121653 43.83129 -4.140474 0.1121653 43.83129 -5.562508 0.1121653 43.83129 -7.471917 0.1121653 43.83129 -10.03574 0.1121653 43.83129 -13.47828 0.1121653 43.83129 -18.10068 0.1121653 43.83129 -24.30731 0.1121653 43.83129 -32.64117 0.1121653 43.83129 -43.83129 0.1121653 43.83129 -58.85664 0.1121653 43.83129 --0.0175068 0.1535689 43.83129 --0.01161267 0.1535689 43.83129 --0.005718534 0.1535689 43.83129 -0.0001755984 0.1535689 43.83129 -0.006069731 0.1535689 43.83129 -0.01197402 0.1535689 43.83129 -0.01903886 0.1535689 43.83129 -0.02852504 0.1535689 43.83129 -0.04126244 0.1535689 43.83129 -0.05836535 0.1535689 43.83129 -0.08132997 0.1535689 43.83129 -0.1121653 0.1535689 43.83129 -0.1535689 0.1535689 43.83129 -0.2091628 0.1535689 43.83129 -0.2838106 0.1535689 43.83129 -0.3840425 0.1535689 43.83129 -0.518627 0.1535689 43.83129 -0.6993381 0.1535689 43.83129 -0.9419845 0.1535689 43.83129 -1.267794 0.1535689 43.83129 -1.705268 0.1535689 43.83129 -2.292679 0.1535689 43.83129 -3.081414 0.1535689 43.83129 -4.140474 0.1535689 43.83129 -5.562508 0.1535689 43.83129 -7.471917 0.1535689 43.83129 -10.03574 0.1535689 43.83129 -13.47828 0.1535689 43.83129 -18.10068 0.1535689 43.83129 -24.30731 0.1535689 43.83129 -32.64117 0.1535689 43.83129 -43.83129 0.1535689 43.83129 -58.85664 0.1535689 43.83129 --0.0175068 0.2091628 43.83129 --0.01161267 0.2091628 43.83129 --0.005718534 0.2091628 43.83129 -0.0001755984 0.2091628 43.83129 -0.006069731 0.2091628 43.83129 -0.01197402 0.2091628 43.83129 -0.01903886 0.2091628 43.83129 -0.02852504 0.2091628 43.83129 -0.04126244 0.2091628 43.83129 -0.05836535 0.2091628 43.83129 -0.08132997 0.2091628 43.83129 -0.1121653 0.2091628 43.83129 -0.1535689 0.2091628 43.83129 -0.2091628 0.2091628 43.83129 -0.2838106 0.2091628 43.83129 -0.3840425 0.2091628 43.83129 -0.518627 0.2091628 43.83129 -0.6993381 0.2091628 43.83129 -0.9419845 0.2091628 43.83129 -1.267794 0.2091628 43.83129 -1.705268 0.2091628 43.83129 -2.292679 0.2091628 43.83129 -3.081414 0.2091628 43.83129 -4.140474 0.2091628 43.83129 -5.562508 0.2091628 43.83129 -7.471917 0.2091628 43.83129 -10.03574 0.2091628 43.83129 -13.47828 0.2091628 43.83129 -18.10068 0.2091628 43.83129 -24.30731 0.2091628 43.83129 -32.64117 0.2091628 43.83129 -43.83129 0.2091628 43.83129 -58.85664 0.2091628 43.83129 --0.0175068 0.2838106 43.83129 --0.01161267 0.2838106 43.83129 --0.005718534 0.2838106 43.83129 -0.0001755984 0.2838106 43.83129 -0.006069731 0.2838106 43.83129 -0.01197402 0.2838106 43.83129 -0.01903886 0.2838106 43.83129 -0.02852504 0.2838106 43.83129 -0.04126244 0.2838106 43.83129 -0.05836535 0.2838106 43.83129 -0.08132997 0.2838106 43.83129 -0.1121653 0.2838106 43.83129 -0.1535689 0.2838106 43.83129 -0.2091628 0.2838106 43.83129 -0.2838106 0.2838106 43.83129 -0.3840425 0.2838106 43.83129 -0.518627 0.2838106 43.83129 -0.6993381 0.2838106 43.83129 -0.9419845 0.2838106 43.83129 -1.267794 0.2838106 43.83129 -1.705268 0.2838106 43.83129 -2.292679 0.2838106 43.83129 -3.081414 0.2838106 43.83129 -4.140474 0.2838106 43.83129 -5.562508 0.2838106 43.83129 -7.471917 0.2838106 43.83129 -10.03574 0.2838106 43.83129 -13.47828 0.2838106 43.83129 -18.10068 0.2838106 43.83129 -24.30731 0.2838106 43.83129 -32.64117 0.2838106 43.83129 -43.83129 0.2838106 43.83129 -58.85664 0.2838106 43.83129 --0.0175068 0.3840425 43.83129 --0.01161267 0.3840425 43.83129 --0.005718534 0.3840425 43.83129 -0.0001755984 0.3840425 43.83129 -0.006069731 0.3840425 43.83129 -0.01197402 0.3840425 43.83129 -0.01903886 0.3840425 43.83129 -0.02852504 0.3840425 43.83129 -0.04126244 0.3840425 43.83129 -0.05836535 0.3840425 43.83129 -0.08132997 0.3840425 43.83129 -0.1121653 0.3840425 43.83129 -0.1535689 0.3840425 43.83129 -0.2091628 0.3840425 43.83129 -0.2838106 0.3840425 43.83129 -0.3840425 0.3840425 43.83129 -0.518627 0.3840425 43.83129 -0.6993381 0.3840425 43.83129 -0.9419845 0.3840425 43.83129 -1.267794 0.3840425 43.83129 -1.705268 0.3840425 43.83129 -2.292679 0.3840425 43.83129 -3.081414 0.3840425 43.83129 -4.140474 0.3840425 43.83129 -5.562508 0.3840425 43.83129 -7.471917 0.3840425 43.83129 -10.03574 0.3840425 43.83129 -13.47828 0.3840425 43.83129 -18.10068 0.3840425 43.83129 -24.30731 0.3840425 43.83129 -32.64117 0.3840425 43.83129 -43.83129 0.3840425 43.83129 -58.85664 0.3840425 43.83129 --0.0175068 0.518627 43.83129 --0.01161267 0.518627 43.83129 --0.005718534 0.518627 43.83129 -0.0001755984 0.518627 43.83129 -0.006069731 0.518627 43.83129 -0.01197402 0.518627 43.83129 -0.01903886 0.518627 43.83129 -0.02852504 0.518627 43.83129 -0.04126244 0.518627 43.83129 -0.05836535 0.518627 43.83129 -0.08132997 0.518627 43.83129 -0.1121653 0.518627 43.83129 -0.1535689 0.518627 43.83129 -0.2091628 0.518627 43.83129 -0.2838106 0.518627 43.83129 -0.3840425 0.518627 43.83129 -0.518627 0.518627 43.83129 -0.6993381 0.518627 43.83129 -0.9419845 0.518627 43.83129 -1.267794 0.518627 43.83129 -1.705268 0.518627 43.83129 -2.292679 0.518627 43.83129 -3.081414 0.518627 43.83129 -4.140474 0.518627 43.83129 -5.562508 0.518627 43.83129 -7.471917 0.518627 43.83129 -10.03574 0.518627 43.83129 -13.47828 0.518627 43.83129 -18.10068 0.518627 43.83129 -24.30731 0.518627 43.83129 -32.64117 0.518627 43.83129 -43.83129 0.518627 43.83129 -58.85664 0.518627 43.83129 --0.0175068 0.6993381 43.83129 --0.01161267 0.6993381 43.83129 --0.005718534 0.6993381 43.83129 -0.0001755984 0.6993381 43.83129 -0.006069731 0.6993381 43.83129 -0.01197402 0.6993381 43.83129 -0.01903886 0.6993381 43.83129 -0.02852504 0.6993381 43.83129 -0.04126244 0.6993381 43.83129 -0.05836535 0.6993381 43.83129 -0.08132997 0.6993381 43.83129 -0.1121653 0.6993381 43.83129 -0.1535689 0.6993381 43.83129 -0.2091628 0.6993381 43.83129 -0.2838106 0.6993381 43.83129 -0.3840425 0.6993381 43.83129 -0.518627 0.6993381 43.83129 -0.6993381 0.6993381 43.83129 -0.9419845 0.6993381 43.83129 -1.267794 0.6993381 43.83129 -1.705268 0.6993381 43.83129 -2.292679 0.6993381 43.83129 -3.081414 0.6993381 43.83129 -4.140474 0.6993381 43.83129 -5.562508 0.6993381 43.83129 -7.471917 0.6993381 43.83129 -10.03574 0.6993381 43.83129 -13.47828 0.6993381 43.83129 -18.10068 0.6993381 43.83129 -24.30731 0.6993381 43.83129 -32.64117 0.6993381 43.83129 -43.83129 0.6993381 43.83129 -58.85664 0.6993381 43.83129 --0.0175068 0.9419845 43.83129 --0.01161267 0.9419845 43.83129 --0.005718534 0.9419845 43.83129 -0.0001755984 0.9419845 43.83129 -0.006069731 0.9419845 43.83129 -0.01197402 0.9419845 43.83129 -0.01903886 0.9419845 43.83129 -0.02852504 0.9419845 43.83129 -0.04126244 0.9419845 43.83129 -0.05836535 0.9419845 43.83129 -0.08132997 0.9419845 43.83129 -0.1121653 0.9419845 43.83129 -0.1535689 0.9419845 43.83129 -0.2091628 0.9419845 43.83129 -0.2838106 0.9419845 43.83129 -0.3840425 0.9419845 43.83129 -0.518627 0.9419845 43.83129 -0.6993381 0.9419845 43.83129 -0.9419845 0.9419845 43.83129 -1.267794 0.9419845 43.83129 -1.705268 0.9419845 43.83129 -2.292679 0.9419845 43.83129 -3.081414 0.9419845 43.83129 -4.140474 0.9419845 43.83129 -5.562508 0.9419845 43.83129 -7.471917 0.9419845 43.83129 -10.03574 0.9419845 43.83129 -13.47828 0.9419845 43.83129 -18.10068 0.9419845 43.83129 -24.30731 0.9419845 43.83129 -32.64117 0.9419845 43.83129 -43.83129 0.9419845 43.83129 -58.85664 0.9419845 43.83129 --0.0175068 1.267794 43.83129 --0.01161267 1.267794 43.83129 --0.005718534 1.267794 43.83129 -0.0001755984 1.267794 43.83129 -0.006069731 1.267794 43.83129 -0.01197402 1.267794 43.83129 -0.01903886 1.267794 43.83129 -0.02852504 1.267794 43.83129 -0.04126244 1.267794 43.83129 -0.05836535 1.267794 43.83129 -0.08132997 1.267794 43.83129 -0.1121653 1.267794 43.83129 -0.1535689 1.267794 43.83129 -0.2091628 1.267794 43.83129 -0.2838106 1.267794 43.83129 -0.3840425 1.267794 43.83129 -0.518627 1.267794 43.83129 -0.6993381 1.267794 43.83129 -0.9419845 1.267794 43.83129 -1.267794 1.267794 43.83129 -1.705268 1.267794 43.83129 -2.292679 1.267794 43.83129 -3.081414 1.267794 43.83129 -4.140474 1.267794 43.83129 -5.562508 1.267794 43.83129 -7.471917 1.267794 43.83129 -10.03574 1.267794 43.83129 -13.47828 1.267794 43.83129 -18.10068 1.267794 43.83129 -24.30731 1.267794 43.83129 -32.64117 1.267794 43.83129 -43.83129 1.267794 43.83129 -58.85664 1.267794 43.83129 --0.0175068 1.705268 43.83129 --0.01161267 1.705268 43.83129 --0.005718534 1.705268 43.83129 -0.0001755984 1.705268 43.83129 -0.006069731 1.705268 43.83129 -0.01197402 1.705268 43.83129 -0.01903886 1.705268 43.83129 -0.02852504 1.705268 43.83129 -0.04126244 1.705268 43.83129 -0.05836535 1.705268 43.83129 -0.08132997 1.705268 43.83129 -0.1121653 1.705268 43.83129 -0.1535689 1.705268 43.83129 -0.2091628 1.705268 43.83129 -0.2838106 1.705268 43.83129 -0.3840425 1.705268 43.83129 -0.518627 1.705268 43.83129 -0.6993381 1.705268 43.83129 -0.9419845 1.705268 43.83129 -1.267794 1.705268 43.83129 -1.705268 1.705268 43.83129 -2.292679 1.705268 43.83129 -3.081414 1.705268 43.83129 -4.140474 1.705268 43.83129 -5.562508 1.705268 43.83129 -7.471917 1.705268 43.83129 -10.03574 1.705268 43.83129 -13.47828 1.705268 43.83129 -18.10068 1.705268 43.83129 -24.30731 1.705268 43.83129 -32.64117 1.705268 43.83129 -43.83129 1.705268 43.83129 -58.85664 1.705268 43.83129 --0.0175068 2.292679 43.83129 --0.01161267 2.292679 43.83129 --0.005718534 2.292679 43.83129 -0.0001755984 2.292679 43.83129 -0.006069731 2.292679 43.83129 -0.01197402 2.292679 43.83129 -0.01903886 2.292679 43.83129 -0.02852504 2.292679 43.83129 -0.04126244 2.292679 43.83129 -0.05836535 2.292679 43.83129 -0.08132997 2.292679 43.83129 -0.1121653 2.292679 43.83129 -0.1535689 2.292679 43.83129 -0.2091628 2.292679 43.83129 -0.2838106 2.292679 43.83129 -0.3840425 2.292679 43.83129 -0.518627 2.292679 43.83129 -0.6993381 2.292679 43.83129 -0.9419845 2.292679 43.83129 -1.267794 2.292679 43.83129 -1.705268 2.292679 43.83129 -2.292679 2.292679 43.83129 -3.081414 2.292679 43.83129 -4.140474 2.292679 43.83129 -5.562508 2.292679 43.83129 -7.471917 2.292679 43.83129 -10.03574 2.292679 43.83129 -13.47828 2.292679 43.83129 -18.10068 2.292679 43.83129 -24.30731 2.292679 43.83129 -32.64117 2.292679 43.83129 -43.83129 2.292679 43.83129 -58.85664 2.292679 43.83129 --0.0175068 3.081414 43.83129 --0.01161267 3.081414 43.83129 --0.005718534 3.081414 43.83129 -0.0001755984 3.081414 43.83129 -0.006069731 3.081414 43.83129 -0.01197402 3.081414 43.83129 -0.01903886 3.081414 43.83129 -0.02852504 3.081414 43.83129 -0.04126244 3.081414 43.83129 -0.05836535 3.081414 43.83129 -0.08132997 3.081414 43.83129 -0.1121653 3.081414 43.83129 -0.1535689 3.081414 43.83129 -0.2091628 3.081414 43.83129 -0.2838106 3.081414 43.83129 -0.3840425 3.081414 43.83129 -0.518627 3.081414 43.83129 -0.6993381 3.081414 43.83129 -0.9419845 3.081414 43.83129 -1.267794 3.081414 43.83129 -1.705268 3.081414 43.83129 -2.292679 3.081414 43.83129 -3.081414 3.081414 43.83129 -4.140474 3.081414 43.83129 -5.562508 3.081414 43.83129 -7.471917 3.081414 43.83129 -10.03574 3.081414 43.83129 -13.47828 3.081414 43.83129 -18.10068 3.081414 43.83129 -24.30731 3.081414 43.83129 -32.64117 3.081414 43.83129 -43.83129 3.081414 43.83129 -58.85664 3.081414 43.83129 --0.0175068 4.140474 43.83129 --0.01161267 4.140474 43.83129 --0.005718534 4.140474 43.83129 -0.0001755984 4.140474 43.83129 -0.006069731 4.140474 43.83129 -0.01197402 4.140474 43.83129 -0.01903886 4.140474 43.83129 -0.02852504 4.140474 43.83129 -0.04126244 4.140474 43.83129 -0.05836535 4.140474 43.83129 -0.08132997 4.140474 43.83129 -0.1121653 4.140474 43.83129 -0.1535689 4.140474 43.83129 -0.2091628 4.140474 43.83129 -0.2838106 4.140474 43.83129 -0.3840425 4.140474 43.83129 -0.518627 4.140474 43.83129 -0.6993381 4.140474 43.83129 -0.9419845 4.140474 43.83129 -1.267794 4.140474 43.83129 -1.705268 4.140474 43.83129 -2.292679 4.140474 43.83129 -3.081414 4.140474 43.83129 -4.140474 4.140474 43.83129 -5.562508 4.140474 43.83129 -7.471917 4.140474 43.83129 -10.03574 4.140474 43.83129 -13.47828 4.140474 43.83129 -18.10068 4.140474 43.83129 -24.30731 4.140474 43.83129 -32.64117 4.140474 43.83129 -43.83129 4.140474 43.83129 -58.85664 4.140474 43.83129 --0.0175068 5.562508 43.83129 --0.01161267 5.562508 43.83129 --0.005718534 5.562508 43.83129 -0.0001755984 5.562508 43.83129 -0.006069731 5.562508 43.83129 -0.01197402 5.562508 43.83129 -0.01903886 5.562508 43.83129 -0.02852504 5.562508 43.83129 -0.04126244 5.562508 43.83129 -0.05836535 5.562508 43.83129 -0.08132997 5.562508 43.83129 -0.1121653 5.562508 43.83129 -0.1535689 5.562508 43.83129 -0.2091628 5.562508 43.83129 -0.2838106 5.562508 43.83129 -0.3840425 5.562508 43.83129 -0.518627 5.562508 43.83129 -0.6993381 5.562508 43.83129 -0.9419845 5.562508 43.83129 -1.267794 5.562508 43.83129 -1.705268 5.562508 43.83129 -2.292679 5.562508 43.83129 -3.081414 5.562508 43.83129 -4.140474 5.562508 43.83129 -5.562508 5.562508 43.83129 -7.471917 5.562508 43.83129 -10.03574 5.562508 43.83129 -13.47828 5.562508 43.83129 -18.10068 5.562508 43.83129 -24.30731 5.562508 43.83129 -32.64117 5.562508 43.83129 -43.83129 5.562508 43.83129 -58.85664 5.562508 43.83129 --0.0175068 7.471917 43.83129 --0.01161267 7.471917 43.83129 --0.005718534 7.471917 43.83129 -0.0001755984 7.471917 43.83129 -0.006069731 7.471917 43.83129 -0.01197402 7.471917 43.83129 -0.01903886 7.471917 43.83129 -0.02852504 7.471917 43.83129 -0.04126244 7.471917 43.83129 -0.05836535 7.471917 43.83129 -0.08132997 7.471917 43.83129 -0.1121653 7.471917 43.83129 -0.1535689 7.471917 43.83129 -0.2091628 7.471917 43.83129 -0.2838106 7.471917 43.83129 -0.3840425 7.471917 43.83129 -0.518627 7.471917 43.83129 -0.6993381 7.471917 43.83129 -0.9419845 7.471917 43.83129 -1.267794 7.471917 43.83129 -1.705268 7.471917 43.83129 -2.292679 7.471917 43.83129 -3.081414 7.471917 43.83129 -4.140474 7.471917 43.83129 -5.562508 7.471917 43.83129 -7.471917 7.471917 43.83129 -10.03574 7.471917 43.83129 -13.47828 7.471917 43.83129 -18.10068 7.471917 43.83129 -24.30731 7.471917 43.83129 -32.64117 7.471917 43.83129 -43.83129 7.471917 43.83129 -58.85664 7.471917 43.83129 --0.0175068 10.03574 43.83129 --0.01161267 10.03574 43.83129 --0.005718534 10.03574 43.83129 -0.0001755984 10.03574 43.83129 -0.006069731 10.03574 43.83129 -0.01197402 10.03574 43.83129 -0.01903886 10.03574 43.83129 -0.02852504 10.03574 43.83129 -0.04126244 10.03574 43.83129 -0.05836535 10.03574 43.83129 -0.08132997 10.03574 43.83129 -0.1121653 10.03574 43.83129 -0.1535689 10.03574 43.83129 -0.2091628 10.03574 43.83129 -0.2838106 10.03574 43.83129 -0.3840425 10.03574 43.83129 -0.518627 10.03574 43.83129 -0.6993381 10.03574 43.83129 -0.9419845 10.03574 43.83129 -1.267794 10.03574 43.83129 -1.705268 10.03574 43.83129 -2.292679 10.03574 43.83129 -3.081414 10.03574 43.83129 -4.140474 10.03574 43.83129 -5.562508 10.03574 43.83129 -7.471917 10.03574 43.83129 -10.03574 10.03574 43.83129 -13.47828 10.03574 43.83129 -18.10068 10.03574 43.83129 -24.30731 10.03574 43.83129 -32.64117 10.03574 43.83129 -43.83129 10.03574 43.83129 -58.85664 10.03574 43.83129 --0.0175068 13.47828 43.83129 --0.01161267 13.47828 43.83129 --0.005718534 13.47828 43.83129 -0.0001755984 13.47828 43.83129 -0.006069731 13.47828 43.83129 -0.01197402 13.47828 43.83129 -0.01903886 13.47828 43.83129 -0.02852504 13.47828 43.83129 -0.04126244 13.47828 43.83129 -0.05836535 13.47828 43.83129 -0.08132997 13.47828 43.83129 -0.1121653 13.47828 43.83129 -0.1535689 13.47828 43.83129 -0.2091628 13.47828 43.83129 -0.2838106 13.47828 43.83129 -0.3840425 13.47828 43.83129 -0.518627 13.47828 43.83129 -0.6993381 13.47828 43.83129 -0.9419845 13.47828 43.83129 -1.267794 13.47828 43.83129 -1.705268 13.47828 43.83129 -2.292679 13.47828 43.83129 -3.081414 13.47828 43.83129 -4.140474 13.47828 43.83129 -5.562508 13.47828 43.83129 -7.471917 13.47828 43.83129 -10.03574 13.47828 43.83129 -13.47828 13.47828 43.83129 -18.10068 13.47828 43.83129 -24.30731 13.47828 43.83129 -32.64117 13.47828 43.83129 -43.83129 13.47828 43.83129 -58.85664 13.47828 43.83129 --0.0175068 18.10068 43.83129 --0.01161267 18.10068 43.83129 --0.005718534 18.10068 43.83129 -0.0001755984 18.10068 43.83129 -0.006069731 18.10068 43.83129 -0.01197402 18.10068 43.83129 -0.01903886 18.10068 43.83129 -0.02852504 18.10068 43.83129 -0.04126244 18.10068 43.83129 -0.05836535 18.10068 43.83129 -0.08132997 18.10068 43.83129 -0.1121653 18.10068 43.83129 -0.1535689 18.10068 43.83129 -0.2091628 18.10068 43.83129 -0.2838106 18.10068 43.83129 -0.3840425 18.10068 43.83129 -0.518627 18.10068 43.83129 -0.6993381 18.10068 43.83129 -0.9419845 18.10068 43.83129 -1.267794 18.10068 43.83129 -1.705268 18.10068 43.83129 -2.292679 18.10068 43.83129 -3.081414 18.10068 43.83129 -4.140474 18.10068 43.83129 -5.562508 18.10068 43.83129 -7.471917 18.10068 43.83129 -10.03574 18.10068 43.83129 -13.47828 18.10068 43.83129 -18.10068 18.10068 43.83129 -24.30731 18.10068 43.83129 -32.64117 18.10068 43.83129 -43.83129 18.10068 43.83129 -58.85664 18.10068 43.83129 --0.0175068 24.30731 43.83129 --0.01161267 24.30731 43.83129 --0.005718534 24.30731 43.83129 -0.0001755984 24.30731 43.83129 -0.006069731 24.30731 43.83129 -0.01197402 24.30731 43.83129 -0.01903886 24.30731 43.83129 -0.02852504 24.30731 43.83129 -0.04126244 24.30731 43.83129 -0.05836535 24.30731 43.83129 -0.08132997 24.30731 43.83129 -0.1121653 24.30731 43.83129 -0.1535689 24.30731 43.83129 -0.2091628 24.30731 43.83129 -0.2838106 24.30731 43.83129 -0.3840425 24.30731 43.83129 -0.518627 24.30731 43.83129 -0.6993381 24.30731 43.83129 -0.9419845 24.30731 43.83129 -1.267794 24.30731 43.83129 -1.705268 24.30731 43.83129 -2.292679 24.30731 43.83129 -3.081414 24.30731 43.83129 -4.140474 24.30731 43.83129 -5.562508 24.30731 43.83129 -7.471917 24.30731 43.83129 -10.03574 24.30731 43.83129 -13.47828 24.30731 43.83129 -18.10068 24.30731 43.83129 -24.30731 24.30731 43.83129 -32.64117 24.30731 43.83129 -43.83129 24.30731 43.83129 -58.85664 24.30731 43.83129 --0.0175068 32.64117 43.83129 --0.01161267 32.64117 43.83129 --0.005718534 32.64117 43.83129 -0.0001755984 32.64117 43.83129 -0.006069731 32.64117 43.83129 -0.01197402 32.64117 43.83129 -0.01903886 32.64117 43.83129 -0.02852504 32.64117 43.83129 -0.04126244 32.64117 43.83129 -0.05836535 32.64117 43.83129 -0.08132997 32.64117 43.83129 -0.1121653 32.64117 43.83129 -0.1535689 32.64117 43.83129 -0.2091628 32.64117 43.83129 -0.2838106 32.64117 43.83129 -0.3840425 32.64117 43.83129 -0.518627 32.64117 43.83129 -0.6993381 32.64117 43.83129 -0.9419845 32.64117 43.83129 -1.267794 32.64117 43.83129 -1.705268 32.64117 43.83129 -2.292679 32.64117 43.83129 -3.081414 32.64117 43.83129 -4.140474 32.64117 43.83129 -5.562508 32.64117 43.83129 -7.471917 32.64117 43.83129 -10.03574 32.64117 43.83129 -13.47828 32.64117 43.83129 -18.10068 32.64117 43.83129 -24.30731 32.64117 43.83129 -32.64117 32.64117 43.83129 -43.83129 32.64117 43.83129 -58.85664 32.64117 43.83129 --0.0175068 43.83129 43.83129 --0.01161267 43.83129 43.83129 --0.005718534 43.83129 43.83129 -0.0001755984 43.83129 43.83129 -0.006069731 43.83129 43.83129 -0.01197402 43.83129 43.83129 -0.01903886 43.83129 43.83129 -0.02852504 43.83129 43.83129 -0.04126244 43.83129 43.83129 -0.05836535 43.83129 43.83129 -0.08132997 43.83129 43.83129 -0.1121653 43.83129 43.83129 -0.1535689 43.83129 43.83129 -0.2091628 43.83129 43.83129 -0.2838106 43.83129 43.83129 -0.3840425 43.83129 43.83129 -0.518627 43.83129 43.83129 -0.6993381 43.83129 43.83129 -0.9419845 43.83129 43.83129 -1.267794 43.83129 43.83129 -1.705268 43.83129 43.83129 -2.292679 43.83129 43.83129 -3.081414 43.83129 43.83129 -4.140474 43.83129 43.83129 -5.562508 43.83129 43.83129 -7.471917 43.83129 43.83129 -10.03574 43.83129 43.83129 -13.47828 43.83129 43.83129 -18.10068 43.83129 43.83129 -24.30731 43.83129 43.83129 -32.64117 43.83129 43.83129 -43.83129 43.83129 43.83129 -58.85664 43.83129 43.83129 --0.0175068 58.85664 43.83129 --0.01161267 58.85664 43.83129 --0.005718534 58.85664 43.83129 -0.0001755984 58.85664 43.83129 -0.006069731 58.85664 43.83129 -0.01197402 58.85664 43.83129 -0.01903886 58.85664 43.83129 -0.02852504 58.85664 43.83129 -0.04126244 58.85664 43.83129 -0.05836535 58.85664 43.83129 -0.08132997 58.85664 43.83129 -0.1121653 58.85664 43.83129 -0.1535689 58.85664 43.83129 -0.2091628 58.85664 43.83129 -0.2838106 58.85664 43.83129 -0.3840425 58.85664 43.83129 -0.518627 58.85664 43.83129 -0.6993381 58.85664 43.83129 -0.9419845 58.85664 43.83129 -1.267794 58.85664 43.83129 -1.705268 58.85664 43.83129 -2.292679 58.85664 43.83129 -3.081414 58.85664 43.83129 -4.140474 58.85664 43.83129 -5.562508 58.85664 43.83129 -7.471917 58.85664 43.83129 -10.03574 58.85664 43.83129 -13.47828 58.85664 43.83129 -18.10068 58.85664 43.83129 -24.30731 58.85664 43.83129 -32.64117 58.85664 43.83129 -43.83129 58.85664 43.83129 -58.85664 58.85664 43.83129 --0.0175068 -0.0175068 58.85664 --0.01161267 -0.0175068 58.85664 --0.005718534 -0.0175068 58.85664 -0.0001755984 -0.0175068 58.85664 -0.006069731 -0.0175068 58.85664 -0.01197402 -0.0175068 58.85664 -0.01903886 -0.0175068 58.85664 -0.02852504 -0.0175068 58.85664 -0.04126244 -0.0175068 58.85664 -0.05836535 -0.0175068 58.85664 -0.08132997 -0.0175068 58.85664 -0.1121653 -0.0175068 58.85664 -0.1535689 -0.0175068 58.85664 -0.2091628 -0.0175068 58.85664 -0.2838106 -0.0175068 58.85664 -0.3840425 -0.0175068 58.85664 -0.518627 -0.0175068 58.85664 -0.6993381 -0.0175068 58.85664 -0.9419845 -0.0175068 58.85664 -1.267794 -0.0175068 58.85664 -1.705268 -0.0175068 58.85664 -2.292679 -0.0175068 58.85664 -3.081414 -0.0175068 58.85664 -4.140474 -0.0175068 58.85664 -5.562508 -0.0175068 58.85664 -7.471917 -0.0175068 58.85664 -10.03574 -0.0175068 58.85664 -13.47828 -0.0175068 58.85664 -18.10068 -0.0175068 58.85664 -24.30731 -0.0175068 58.85664 -32.64117 -0.0175068 58.85664 -43.83129 -0.0175068 58.85664 -58.85664 -0.0175068 58.85664 --0.0175068 -0.01161267 58.85664 --0.01161267 -0.01161267 58.85664 --0.005718534 -0.01161267 58.85664 -0.0001755984 -0.01161267 58.85664 -0.006069731 -0.01161267 58.85664 -0.01197402 -0.01161267 58.85664 -0.01903886 -0.01161267 58.85664 -0.02852504 -0.01161267 58.85664 -0.04126244 -0.01161267 58.85664 -0.05836535 -0.01161267 58.85664 -0.08132997 -0.01161267 58.85664 -0.1121653 -0.01161267 58.85664 -0.1535689 -0.01161267 58.85664 -0.2091628 -0.01161267 58.85664 -0.2838106 -0.01161267 58.85664 -0.3840425 -0.01161267 58.85664 -0.518627 -0.01161267 58.85664 -0.6993381 -0.01161267 58.85664 -0.9419845 -0.01161267 58.85664 -1.267794 -0.01161267 58.85664 -1.705268 -0.01161267 58.85664 -2.292679 -0.01161267 58.85664 -3.081414 -0.01161267 58.85664 -4.140474 -0.01161267 58.85664 -5.562508 -0.01161267 58.85664 -7.471917 -0.01161267 58.85664 -10.03574 -0.01161267 58.85664 -13.47828 -0.01161267 58.85664 -18.10068 -0.01161267 58.85664 -24.30731 -0.01161267 58.85664 -32.64117 -0.01161267 58.85664 -43.83129 -0.01161267 58.85664 -58.85664 -0.01161267 58.85664 --0.0175068 -0.005718534 58.85664 --0.01161267 -0.005718534 58.85664 --0.005718534 -0.005718534 58.85664 -0.0001755984 -0.005718534 58.85664 -0.006069731 -0.005718534 58.85664 -0.01197402 -0.005718534 58.85664 -0.01903886 -0.005718534 58.85664 -0.02852504 -0.005718534 58.85664 -0.04126244 -0.005718534 58.85664 -0.05836535 -0.005718534 58.85664 -0.08132997 -0.005718534 58.85664 -0.1121653 -0.005718534 58.85664 -0.1535689 -0.005718534 58.85664 -0.2091628 -0.005718534 58.85664 -0.2838106 -0.005718534 58.85664 -0.3840425 -0.005718534 58.85664 -0.518627 -0.005718534 58.85664 -0.6993381 -0.005718534 58.85664 -0.9419845 -0.005718534 58.85664 -1.267794 -0.005718534 58.85664 -1.705268 -0.005718534 58.85664 -2.292679 -0.005718534 58.85664 -3.081414 -0.005718534 58.85664 -4.140474 -0.005718534 58.85664 -5.562508 -0.005718534 58.85664 -7.471917 -0.005718534 58.85664 -10.03574 -0.005718534 58.85664 -13.47828 -0.005718534 58.85664 -18.10068 -0.005718534 58.85664 -24.30731 -0.005718534 58.85664 -32.64117 -0.005718534 58.85664 -43.83129 -0.005718534 58.85664 -58.85664 -0.005718534 58.85664 --0.0175068 0.0001755984 58.85664 --0.01161267 0.0001755984 58.85664 --0.005718534 0.0001755984 58.85664 -0.0001755984 0.0001755984 58.85664 -0.006069731 0.0001755984 58.85664 -0.01197402 0.0001755984 58.85664 -0.01903886 0.0001755984 58.85664 -0.02852504 0.0001755984 58.85664 -0.04126244 0.0001755984 58.85664 -0.05836535 0.0001755984 58.85664 -0.08132997 0.0001755984 58.85664 -0.1121653 0.0001755984 58.85664 -0.1535689 0.0001755984 58.85664 -0.2091628 0.0001755984 58.85664 -0.2838106 0.0001755984 58.85664 -0.3840425 0.0001755984 58.85664 -0.518627 0.0001755984 58.85664 -0.6993381 0.0001755984 58.85664 -0.9419845 0.0001755984 58.85664 -1.267794 0.0001755984 58.85664 -1.705268 0.0001755984 58.85664 -2.292679 0.0001755984 58.85664 -3.081414 0.0001755984 58.85664 -4.140474 0.0001755984 58.85664 -5.562508 0.0001755984 58.85664 -7.471917 0.0001755984 58.85664 -10.03574 0.0001755984 58.85664 -13.47828 0.0001755984 58.85664 -18.10068 0.0001755984 58.85664 -24.30731 0.0001755984 58.85664 -32.64117 0.0001755984 58.85664 -43.83129 0.0001755984 58.85664 -58.85664 0.0001755984 58.85664 --0.0175068 0.006069731 58.85664 --0.01161267 0.006069731 58.85664 --0.005718534 0.006069731 58.85664 -0.0001755984 0.006069731 58.85664 -0.006069731 0.006069731 58.85664 -0.01197402 0.006069731 58.85664 -0.01903886 0.006069731 58.85664 -0.02852504 0.006069731 58.85664 -0.04126244 0.006069731 58.85664 -0.05836535 0.006069731 58.85664 -0.08132997 0.006069731 58.85664 -0.1121653 0.006069731 58.85664 -0.1535689 0.006069731 58.85664 -0.2091628 0.006069731 58.85664 -0.2838106 0.006069731 58.85664 -0.3840425 0.006069731 58.85664 -0.518627 0.006069731 58.85664 -0.6993381 0.006069731 58.85664 -0.9419845 0.006069731 58.85664 -1.267794 0.006069731 58.85664 -1.705268 0.006069731 58.85664 -2.292679 0.006069731 58.85664 -3.081414 0.006069731 58.85664 -4.140474 0.006069731 58.85664 -5.562508 0.006069731 58.85664 -7.471917 0.006069731 58.85664 -10.03574 0.006069731 58.85664 -13.47828 0.006069731 58.85664 -18.10068 0.006069731 58.85664 -24.30731 0.006069731 58.85664 -32.64117 0.006069731 58.85664 -43.83129 0.006069731 58.85664 -58.85664 0.006069731 58.85664 --0.0175068 0.01197402 58.85664 --0.01161267 0.01197402 58.85664 --0.005718534 0.01197402 58.85664 -0.0001755984 0.01197402 58.85664 -0.006069731 0.01197402 58.85664 -0.01197402 0.01197402 58.85664 -0.01903886 0.01197402 58.85664 -0.02852504 0.01197402 58.85664 -0.04126244 0.01197402 58.85664 -0.05836535 0.01197402 58.85664 -0.08132997 0.01197402 58.85664 -0.1121653 0.01197402 58.85664 -0.1535689 0.01197402 58.85664 -0.2091628 0.01197402 58.85664 -0.2838106 0.01197402 58.85664 -0.3840425 0.01197402 58.85664 -0.518627 0.01197402 58.85664 -0.6993381 0.01197402 58.85664 -0.9419845 0.01197402 58.85664 -1.267794 0.01197402 58.85664 -1.705268 0.01197402 58.85664 -2.292679 0.01197402 58.85664 -3.081414 0.01197402 58.85664 -4.140474 0.01197402 58.85664 -5.562508 0.01197402 58.85664 -7.471917 0.01197402 58.85664 -10.03574 0.01197402 58.85664 -13.47828 0.01197402 58.85664 -18.10068 0.01197402 58.85664 -24.30731 0.01197402 58.85664 -32.64117 0.01197402 58.85664 -43.83129 0.01197402 58.85664 -58.85664 0.01197402 58.85664 --0.0175068 0.01903886 58.85664 --0.01161267 0.01903886 58.85664 --0.005718534 0.01903886 58.85664 -0.0001755984 0.01903886 58.85664 -0.006069731 0.01903886 58.85664 -0.01197402 0.01903886 58.85664 -0.01903886 0.01903886 58.85664 -0.02852504 0.01903886 58.85664 -0.04126244 0.01903886 58.85664 -0.05836535 0.01903886 58.85664 -0.08132997 0.01903886 58.85664 -0.1121653 0.01903886 58.85664 -0.1535689 0.01903886 58.85664 -0.2091628 0.01903886 58.85664 -0.2838106 0.01903886 58.85664 -0.3840425 0.01903886 58.85664 -0.518627 0.01903886 58.85664 -0.6993381 0.01903886 58.85664 -0.9419845 0.01903886 58.85664 -1.267794 0.01903886 58.85664 -1.705268 0.01903886 58.85664 -2.292679 0.01903886 58.85664 -3.081414 0.01903886 58.85664 -4.140474 0.01903886 58.85664 -5.562508 0.01903886 58.85664 -7.471917 0.01903886 58.85664 -10.03574 0.01903886 58.85664 -13.47828 0.01903886 58.85664 -18.10068 0.01903886 58.85664 -24.30731 0.01903886 58.85664 -32.64117 0.01903886 58.85664 -43.83129 0.01903886 58.85664 -58.85664 0.01903886 58.85664 --0.0175068 0.02852504 58.85664 --0.01161267 0.02852504 58.85664 --0.005718534 0.02852504 58.85664 -0.0001755984 0.02852504 58.85664 -0.006069731 0.02852504 58.85664 -0.01197402 0.02852504 58.85664 -0.01903886 0.02852504 58.85664 -0.02852504 0.02852504 58.85664 -0.04126244 0.02852504 58.85664 -0.05836535 0.02852504 58.85664 -0.08132997 0.02852504 58.85664 -0.1121653 0.02852504 58.85664 -0.1535689 0.02852504 58.85664 -0.2091628 0.02852504 58.85664 -0.2838106 0.02852504 58.85664 -0.3840425 0.02852504 58.85664 -0.518627 0.02852504 58.85664 -0.6993381 0.02852504 58.85664 -0.9419845 0.02852504 58.85664 -1.267794 0.02852504 58.85664 -1.705268 0.02852504 58.85664 -2.292679 0.02852504 58.85664 -3.081414 0.02852504 58.85664 -4.140474 0.02852504 58.85664 -5.562508 0.02852504 58.85664 -7.471917 0.02852504 58.85664 -10.03574 0.02852504 58.85664 -13.47828 0.02852504 58.85664 -18.10068 0.02852504 58.85664 -24.30731 0.02852504 58.85664 -32.64117 0.02852504 58.85664 -43.83129 0.02852504 58.85664 -58.85664 0.02852504 58.85664 --0.0175068 0.04126244 58.85664 --0.01161267 0.04126244 58.85664 --0.005718534 0.04126244 58.85664 -0.0001755984 0.04126244 58.85664 -0.006069731 0.04126244 58.85664 -0.01197402 0.04126244 58.85664 -0.01903886 0.04126244 58.85664 -0.02852504 0.04126244 58.85664 -0.04126244 0.04126244 58.85664 -0.05836535 0.04126244 58.85664 -0.08132997 0.04126244 58.85664 -0.1121653 0.04126244 58.85664 -0.1535689 0.04126244 58.85664 -0.2091628 0.04126244 58.85664 -0.2838106 0.04126244 58.85664 -0.3840425 0.04126244 58.85664 -0.518627 0.04126244 58.85664 -0.6993381 0.04126244 58.85664 -0.9419845 0.04126244 58.85664 -1.267794 0.04126244 58.85664 -1.705268 0.04126244 58.85664 -2.292679 0.04126244 58.85664 -3.081414 0.04126244 58.85664 -4.140474 0.04126244 58.85664 -5.562508 0.04126244 58.85664 -7.471917 0.04126244 58.85664 -10.03574 0.04126244 58.85664 -13.47828 0.04126244 58.85664 -18.10068 0.04126244 58.85664 -24.30731 0.04126244 58.85664 -32.64117 0.04126244 58.85664 -43.83129 0.04126244 58.85664 -58.85664 0.04126244 58.85664 --0.0175068 0.05836535 58.85664 --0.01161267 0.05836535 58.85664 --0.005718534 0.05836535 58.85664 -0.0001755984 0.05836535 58.85664 -0.006069731 0.05836535 58.85664 -0.01197402 0.05836535 58.85664 -0.01903886 0.05836535 58.85664 -0.02852504 0.05836535 58.85664 -0.04126244 0.05836535 58.85664 -0.05836535 0.05836535 58.85664 -0.08132997 0.05836535 58.85664 -0.1121653 0.05836535 58.85664 -0.1535689 0.05836535 58.85664 -0.2091628 0.05836535 58.85664 -0.2838106 0.05836535 58.85664 -0.3840425 0.05836535 58.85664 -0.518627 0.05836535 58.85664 -0.6993381 0.05836535 58.85664 -0.9419845 0.05836535 58.85664 -1.267794 0.05836535 58.85664 -1.705268 0.05836535 58.85664 -2.292679 0.05836535 58.85664 -3.081414 0.05836535 58.85664 -4.140474 0.05836535 58.85664 -5.562508 0.05836535 58.85664 -7.471917 0.05836535 58.85664 -10.03574 0.05836535 58.85664 -13.47828 0.05836535 58.85664 -18.10068 0.05836535 58.85664 -24.30731 0.05836535 58.85664 -32.64117 0.05836535 58.85664 -43.83129 0.05836535 58.85664 -58.85664 0.05836535 58.85664 --0.0175068 0.08132997 58.85664 --0.01161267 0.08132997 58.85664 --0.005718534 0.08132997 58.85664 -0.0001755984 0.08132997 58.85664 -0.006069731 0.08132997 58.85664 -0.01197402 0.08132997 58.85664 -0.01903886 0.08132997 58.85664 -0.02852504 0.08132997 58.85664 -0.04126244 0.08132997 58.85664 -0.05836535 0.08132997 58.85664 -0.08132997 0.08132997 58.85664 -0.1121653 0.08132997 58.85664 -0.1535689 0.08132997 58.85664 -0.2091628 0.08132997 58.85664 -0.2838106 0.08132997 58.85664 -0.3840425 0.08132997 58.85664 -0.518627 0.08132997 58.85664 -0.6993381 0.08132997 58.85664 -0.9419845 0.08132997 58.85664 -1.267794 0.08132997 58.85664 -1.705268 0.08132997 58.85664 -2.292679 0.08132997 58.85664 -3.081414 0.08132997 58.85664 -4.140474 0.08132997 58.85664 -5.562508 0.08132997 58.85664 -7.471917 0.08132997 58.85664 -10.03574 0.08132997 58.85664 -13.47828 0.08132997 58.85664 -18.10068 0.08132997 58.85664 -24.30731 0.08132997 58.85664 -32.64117 0.08132997 58.85664 -43.83129 0.08132997 58.85664 -58.85664 0.08132997 58.85664 --0.0175068 0.1121653 58.85664 --0.01161267 0.1121653 58.85664 --0.005718534 0.1121653 58.85664 -0.0001755984 0.1121653 58.85664 -0.006069731 0.1121653 58.85664 -0.01197402 0.1121653 58.85664 -0.01903886 0.1121653 58.85664 -0.02852504 0.1121653 58.85664 -0.04126244 0.1121653 58.85664 -0.05836535 0.1121653 58.85664 -0.08132997 0.1121653 58.85664 -0.1121653 0.1121653 58.85664 -0.1535689 0.1121653 58.85664 -0.2091628 0.1121653 58.85664 -0.2838106 0.1121653 58.85664 -0.3840425 0.1121653 58.85664 -0.518627 0.1121653 58.85664 -0.6993381 0.1121653 58.85664 -0.9419845 0.1121653 58.85664 -1.267794 0.1121653 58.85664 -1.705268 0.1121653 58.85664 -2.292679 0.1121653 58.85664 -3.081414 0.1121653 58.85664 -4.140474 0.1121653 58.85664 -5.562508 0.1121653 58.85664 -7.471917 0.1121653 58.85664 -10.03574 0.1121653 58.85664 -13.47828 0.1121653 58.85664 -18.10068 0.1121653 58.85664 -24.30731 0.1121653 58.85664 -32.64117 0.1121653 58.85664 -43.83129 0.1121653 58.85664 -58.85664 0.1121653 58.85664 --0.0175068 0.1535689 58.85664 --0.01161267 0.1535689 58.85664 --0.005718534 0.1535689 58.85664 -0.0001755984 0.1535689 58.85664 -0.006069731 0.1535689 58.85664 -0.01197402 0.1535689 58.85664 -0.01903886 0.1535689 58.85664 -0.02852504 0.1535689 58.85664 -0.04126244 0.1535689 58.85664 -0.05836535 0.1535689 58.85664 -0.08132997 0.1535689 58.85664 -0.1121653 0.1535689 58.85664 -0.1535689 0.1535689 58.85664 -0.2091628 0.1535689 58.85664 -0.2838106 0.1535689 58.85664 -0.3840425 0.1535689 58.85664 -0.518627 0.1535689 58.85664 -0.6993381 0.1535689 58.85664 -0.9419845 0.1535689 58.85664 -1.267794 0.1535689 58.85664 -1.705268 0.1535689 58.85664 -2.292679 0.1535689 58.85664 -3.081414 0.1535689 58.85664 -4.140474 0.1535689 58.85664 -5.562508 0.1535689 58.85664 -7.471917 0.1535689 58.85664 -10.03574 0.1535689 58.85664 -13.47828 0.1535689 58.85664 -18.10068 0.1535689 58.85664 -24.30731 0.1535689 58.85664 -32.64117 0.1535689 58.85664 -43.83129 0.1535689 58.85664 -58.85664 0.1535689 58.85664 --0.0175068 0.2091628 58.85664 --0.01161267 0.2091628 58.85664 --0.005718534 0.2091628 58.85664 -0.0001755984 0.2091628 58.85664 -0.006069731 0.2091628 58.85664 -0.01197402 0.2091628 58.85664 -0.01903886 0.2091628 58.85664 -0.02852504 0.2091628 58.85664 -0.04126244 0.2091628 58.85664 -0.05836535 0.2091628 58.85664 -0.08132997 0.2091628 58.85664 -0.1121653 0.2091628 58.85664 -0.1535689 0.2091628 58.85664 -0.2091628 0.2091628 58.85664 -0.2838106 0.2091628 58.85664 -0.3840425 0.2091628 58.85664 -0.518627 0.2091628 58.85664 -0.6993381 0.2091628 58.85664 -0.9419845 0.2091628 58.85664 -1.267794 0.2091628 58.85664 -1.705268 0.2091628 58.85664 -2.292679 0.2091628 58.85664 -3.081414 0.2091628 58.85664 -4.140474 0.2091628 58.85664 -5.562508 0.2091628 58.85664 -7.471917 0.2091628 58.85664 -10.03574 0.2091628 58.85664 -13.47828 0.2091628 58.85664 -18.10068 0.2091628 58.85664 -24.30731 0.2091628 58.85664 -32.64117 0.2091628 58.85664 -43.83129 0.2091628 58.85664 -58.85664 0.2091628 58.85664 --0.0175068 0.2838106 58.85664 --0.01161267 0.2838106 58.85664 --0.005718534 0.2838106 58.85664 -0.0001755984 0.2838106 58.85664 -0.006069731 0.2838106 58.85664 -0.01197402 0.2838106 58.85664 -0.01903886 0.2838106 58.85664 -0.02852504 0.2838106 58.85664 -0.04126244 0.2838106 58.85664 -0.05836535 0.2838106 58.85664 -0.08132997 0.2838106 58.85664 -0.1121653 0.2838106 58.85664 -0.1535689 0.2838106 58.85664 -0.2091628 0.2838106 58.85664 -0.2838106 0.2838106 58.85664 -0.3840425 0.2838106 58.85664 -0.518627 0.2838106 58.85664 -0.6993381 0.2838106 58.85664 -0.9419845 0.2838106 58.85664 -1.267794 0.2838106 58.85664 -1.705268 0.2838106 58.85664 -2.292679 0.2838106 58.85664 -3.081414 0.2838106 58.85664 -4.140474 0.2838106 58.85664 -5.562508 0.2838106 58.85664 -7.471917 0.2838106 58.85664 -10.03574 0.2838106 58.85664 -13.47828 0.2838106 58.85664 -18.10068 0.2838106 58.85664 -24.30731 0.2838106 58.85664 -32.64117 0.2838106 58.85664 -43.83129 0.2838106 58.85664 -58.85664 0.2838106 58.85664 --0.0175068 0.3840425 58.85664 --0.01161267 0.3840425 58.85664 --0.005718534 0.3840425 58.85664 -0.0001755984 0.3840425 58.85664 -0.006069731 0.3840425 58.85664 -0.01197402 0.3840425 58.85664 -0.01903886 0.3840425 58.85664 -0.02852504 0.3840425 58.85664 -0.04126244 0.3840425 58.85664 -0.05836535 0.3840425 58.85664 -0.08132997 0.3840425 58.85664 -0.1121653 0.3840425 58.85664 -0.1535689 0.3840425 58.85664 -0.2091628 0.3840425 58.85664 -0.2838106 0.3840425 58.85664 -0.3840425 0.3840425 58.85664 -0.518627 0.3840425 58.85664 -0.6993381 0.3840425 58.85664 -0.9419845 0.3840425 58.85664 -1.267794 0.3840425 58.85664 -1.705268 0.3840425 58.85664 -2.292679 0.3840425 58.85664 -3.081414 0.3840425 58.85664 -4.140474 0.3840425 58.85664 -5.562508 0.3840425 58.85664 -7.471917 0.3840425 58.85664 -10.03574 0.3840425 58.85664 -13.47828 0.3840425 58.85664 -18.10068 0.3840425 58.85664 -24.30731 0.3840425 58.85664 -32.64117 0.3840425 58.85664 -43.83129 0.3840425 58.85664 -58.85664 0.3840425 58.85664 --0.0175068 0.518627 58.85664 --0.01161267 0.518627 58.85664 --0.005718534 0.518627 58.85664 -0.0001755984 0.518627 58.85664 -0.006069731 0.518627 58.85664 -0.01197402 0.518627 58.85664 -0.01903886 0.518627 58.85664 -0.02852504 0.518627 58.85664 -0.04126244 0.518627 58.85664 -0.05836535 0.518627 58.85664 -0.08132997 0.518627 58.85664 -0.1121653 0.518627 58.85664 -0.1535689 0.518627 58.85664 -0.2091628 0.518627 58.85664 -0.2838106 0.518627 58.85664 -0.3840425 0.518627 58.85664 -0.518627 0.518627 58.85664 -0.6993381 0.518627 58.85664 -0.9419845 0.518627 58.85664 -1.267794 0.518627 58.85664 -1.705268 0.518627 58.85664 -2.292679 0.518627 58.85664 -3.081414 0.518627 58.85664 -4.140474 0.518627 58.85664 -5.562508 0.518627 58.85664 -7.471917 0.518627 58.85664 -10.03574 0.518627 58.85664 -13.47828 0.518627 58.85664 -18.10068 0.518627 58.85664 -24.30731 0.518627 58.85664 -32.64117 0.518627 58.85664 -43.83129 0.518627 58.85664 -58.85664 0.518627 58.85664 --0.0175068 0.6993381 58.85664 --0.01161267 0.6993381 58.85664 --0.005718534 0.6993381 58.85664 -0.0001755984 0.6993381 58.85664 -0.006069731 0.6993381 58.85664 -0.01197402 0.6993381 58.85664 -0.01903886 0.6993381 58.85664 -0.02852504 0.6993381 58.85664 -0.04126244 0.6993381 58.85664 -0.05836535 0.6993381 58.85664 -0.08132997 0.6993381 58.85664 -0.1121653 0.6993381 58.85664 -0.1535689 0.6993381 58.85664 -0.2091628 0.6993381 58.85664 -0.2838106 0.6993381 58.85664 -0.3840425 0.6993381 58.85664 -0.518627 0.6993381 58.85664 -0.6993381 0.6993381 58.85664 -0.9419845 0.6993381 58.85664 -1.267794 0.6993381 58.85664 -1.705268 0.6993381 58.85664 -2.292679 0.6993381 58.85664 -3.081414 0.6993381 58.85664 -4.140474 0.6993381 58.85664 -5.562508 0.6993381 58.85664 -7.471917 0.6993381 58.85664 -10.03574 0.6993381 58.85664 -13.47828 0.6993381 58.85664 -18.10068 0.6993381 58.85664 -24.30731 0.6993381 58.85664 -32.64117 0.6993381 58.85664 -43.83129 0.6993381 58.85664 -58.85664 0.6993381 58.85664 --0.0175068 0.9419845 58.85664 --0.01161267 0.9419845 58.85664 --0.005718534 0.9419845 58.85664 -0.0001755984 0.9419845 58.85664 -0.006069731 0.9419845 58.85664 -0.01197402 0.9419845 58.85664 -0.01903886 0.9419845 58.85664 -0.02852504 0.9419845 58.85664 -0.04126244 0.9419845 58.85664 -0.05836535 0.9419845 58.85664 -0.08132997 0.9419845 58.85664 -0.1121653 0.9419845 58.85664 -0.1535689 0.9419845 58.85664 -0.2091628 0.9419845 58.85664 -0.2838106 0.9419845 58.85664 -0.3840425 0.9419845 58.85664 -0.518627 0.9419845 58.85664 -0.6993381 0.9419845 58.85664 -0.9419845 0.9419845 58.85664 -1.267794 0.9419845 58.85664 -1.705268 0.9419845 58.85664 -2.292679 0.9419845 58.85664 -3.081414 0.9419845 58.85664 -4.140474 0.9419845 58.85664 -5.562508 0.9419845 58.85664 -7.471917 0.9419845 58.85664 -10.03574 0.9419845 58.85664 -13.47828 0.9419845 58.85664 -18.10068 0.9419845 58.85664 -24.30731 0.9419845 58.85664 -32.64117 0.9419845 58.85664 -43.83129 0.9419845 58.85664 -58.85664 0.9419845 58.85664 --0.0175068 1.267794 58.85664 --0.01161267 1.267794 58.85664 --0.005718534 1.267794 58.85664 -0.0001755984 1.267794 58.85664 -0.006069731 1.267794 58.85664 -0.01197402 1.267794 58.85664 -0.01903886 1.267794 58.85664 -0.02852504 1.267794 58.85664 -0.04126244 1.267794 58.85664 -0.05836535 1.267794 58.85664 -0.08132997 1.267794 58.85664 -0.1121653 1.267794 58.85664 -0.1535689 1.267794 58.85664 -0.2091628 1.267794 58.85664 -0.2838106 1.267794 58.85664 -0.3840425 1.267794 58.85664 -0.518627 1.267794 58.85664 -0.6993381 1.267794 58.85664 -0.9419845 1.267794 58.85664 -1.267794 1.267794 58.85664 -1.705268 1.267794 58.85664 -2.292679 1.267794 58.85664 -3.081414 1.267794 58.85664 -4.140474 1.267794 58.85664 -5.562508 1.267794 58.85664 -7.471917 1.267794 58.85664 -10.03574 1.267794 58.85664 -13.47828 1.267794 58.85664 -18.10068 1.267794 58.85664 -24.30731 1.267794 58.85664 -32.64117 1.267794 58.85664 -43.83129 1.267794 58.85664 -58.85664 1.267794 58.85664 --0.0175068 1.705268 58.85664 --0.01161267 1.705268 58.85664 --0.005718534 1.705268 58.85664 -0.0001755984 1.705268 58.85664 -0.006069731 1.705268 58.85664 -0.01197402 1.705268 58.85664 -0.01903886 1.705268 58.85664 -0.02852504 1.705268 58.85664 -0.04126244 1.705268 58.85664 -0.05836535 1.705268 58.85664 -0.08132997 1.705268 58.85664 -0.1121653 1.705268 58.85664 -0.1535689 1.705268 58.85664 -0.2091628 1.705268 58.85664 -0.2838106 1.705268 58.85664 -0.3840425 1.705268 58.85664 -0.518627 1.705268 58.85664 -0.6993381 1.705268 58.85664 -0.9419845 1.705268 58.85664 -1.267794 1.705268 58.85664 -1.705268 1.705268 58.85664 -2.292679 1.705268 58.85664 -3.081414 1.705268 58.85664 -4.140474 1.705268 58.85664 -5.562508 1.705268 58.85664 -7.471917 1.705268 58.85664 -10.03574 1.705268 58.85664 -13.47828 1.705268 58.85664 -18.10068 1.705268 58.85664 -24.30731 1.705268 58.85664 -32.64117 1.705268 58.85664 -43.83129 1.705268 58.85664 -58.85664 1.705268 58.85664 --0.0175068 2.292679 58.85664 --0.01161267 2.292679 58.85664 --0.005718534 2.292679 58.85664 -0.0001755984 2.292679 58.85664 -0.006069731 2.292679 58.85664 -0.01197402 2.292679 58.85664 -0.01903886 2.292679 58.85664 -0.02852504 2.292679 58.85664 -0.04126244 2.292679 58.85664 -0.05836535 2.292679 58.85664 -0.08132997 2.292679 58.85664 -0.1121653 2.292679 58.85664 -0.1535689 2.292679 58.85664 -0.2091628 2.292679 58.85664 -0.2838106 2.292679 58.85664 -0.3840425 2.292679 58.85664 -0.518627 2.292679 58.85664 -0.6993381 2.292679 58.85664 -0.9419845 2.292679 58.85664 -1.267794 2.292679 58.85664 -1.705268 2.292679 58.85664 -2.292679 2.292679 58.85664 -3.081414 2.292679 58.85664 -4.140474 2.292679 58.85664 -5.562508 2.292679 58.85664 -7.471917 2.292679 58.85664 -10.03574 2.292679 58.85664 -13.47828 2.292679 58.85664 -18.10068 2.292679 58.85664 -24.30731 2.292679 58.85664 -32.64117 2.292679 58.85664 -43.83129 2.292679 58.85664 -58.85664 2.292679 58.85664 --0.0175068 3.081414 58.85664 --0.01161267 3.081414 58.85664 --0.005718534 3.081414 58.85664 -0.0001755984 3.081414 58.85664 -0.006069731 3.081414 58.85664 -0.01197402 3.081414 58.85664 -0.01903886 3.081414 58.85664 -0.02852504 3.081414 58.85664 -0.04126244 3.081414 58.85664 -0.05836535 3.081414 58.85664 -0.08132997 3.081414 58.85664 -0.1121653 3.081414 58.85664 -0.1535689 3.081414 58.85664 -0.2091628 3.081414 58.85664 -0.2838106 3.081414 58.85664 -0.3840425 3.081414 58.85664 -0.518627 3.081414 58.85664 -0.6993381 3.081414 58.85664 -0.9419845 3.081414 58.85664 -1.267794 3.081414 58.85664 -1.705268 3.081414 58.85664 -2.292679 3.081414 58.85664 -3.081414 3.081414 58.85664 -4.140474 3.081414 58.85664 -5.562508 3.081414 58.85664 -7.471917 3.081414 58.85664 -10.03574 3.081414 58.85664 -13.47828 3.081414 58.85664 -18.10068 3.081414 58.85664 -24.30731 3.081414 58.85664 -32.64117 3.081414 58.85664 -43.83129 3.081414 58.85664 -58.85664 3.081414 58.85664 --0.0175068 4.140474 58.85664 --0.01161267 4.140474 58.85664 --0.005718534 4.140474 58.85664 -0.0001755984 4.140474 58.85664 -0.006069731 4.140474 58.85664 -0.01197402 4.140474 58.85664 -0.01903886 4.140474 58.85664 -0.02852504 4.140474 58.85664 -0.04126244 4.140474 58.85664 -0.05836535 4.140474 58.85664 -0.08132997 4.140474 58.85664 -0.1121653 4.140474 58.85664 -0.1535689 4.140474 58.85664 -0.2091628 4.140474 58.85664 -0.2838106 4.140474 58.85664 -0.3840425 4.140474 58.85664 -0.518627 4.140474 58.85664 -0.6993381 4.140474 58.85664 -0.9419845 4.140474 58.85664 -1.267794 4.140474 58.85664 -1.705268 4.140474 58.85664 -2.292679 4.140474 58.85664 -3.081414 4.140474 58.85664 -4.140474 4.140474 58.85664 -5.562508 4.140474 58.85664 -7.471917 4.140474 58.85664 -10.03574 4.140474 58.85664 -13.47828 4.140474 58.85664 -18.10068 4.140474 58.85664 -24.30731 4.140474 58.85664 -32.64117 4.140474 58.85664 -43.83129 4.140474 58.85664 -58.85664 4.140474 58.85664 --0.0175068 5.562508 58.85664 --0.01161267 5.562508 58.85664 --0.005718534 5.562508 58.85664 -0.0001755984 5.562508 58.85664 -0.006069731 5.562508 58.85664 -0.01197402 5.562508 58.85664 -0.01903886 5.562508 58.85664 -0.02852504 5.562508 58.85664 -0.04126244 5.562508 58.85664 -0.05836535 5.562508 58.85664 -0.08132997 5.562508 58.85664 -0.1121653 5.562508 58.85664 -0.1535689 5.562508 58.85664 -0.2091628 5.562508 58.85664 -0.2838106 5.562508 58.85664 -0.3840425 5.562508 58.85664 -0.518627 5.562508 58.85664 -0.6993381 5.562508 58.85664 -0.9419845 5.562508 58.85664 -1.267794 5.562508 58.85664 -1.705268 5.562508 58.85664 -2.292679 5.562508 58.85664 -3.081414 5.562508 58.85664 -4.140474 5.562508 58.85664 -5.562508 5.562508 58.85664 -7.471917 5.562508 58.85664 -10.03574 5.562508 58.85664 -13.47828 5.562508 58.85664 -18.10068 5.562508 58.85664 -24.30731 5.562508 58.85664 -32.64117 5.562508 58.85664 -43.83129 5.562508 58.85664 -58.85664 5.562508 58.85664 --0.0175068 7.471917 58.85664 --0.01161267 7.471917 58.85664 --0.005718534 7.471917 58.85664 -0.0001755984 7.471917 58.85664 -0.006069731 7.471917 58.85664 -0.01197402 7.471917 58.85664 -0.01903886 7.471917 58.85664 -0.02852504 7.471917 58.85664 -0.04126244 7.471917 58.85664 -0.05836535 7.471917 58.85664 -0.08132997 7.471917 58.85664 -0.1121653 7.471917 58.85664 -0.1535689 7.471917 58.85664 -0.2091628 7.471917 58.85664 -0.2838106 7.471917 58.85664 -0.3840425 7.471917 58.85664 -0.518627 7.471917 58.85664 -0.6993381 7.471917 58.85664 -0.9419845 7.471917 58.85664 -1.267794 7.471917 58.85664 -1.705268 7.471917 58.85664 -2.292679 7.471917 58.85664 -3.081414 7.471917 58.85664 -4.140474 7.471917 58.85664 -5.562508 7.471917 58.85664 -7.471917 7.471917 58.85664 -10.03574 7.471917 58.85664 -13.47828 7.471917 58.85664 -18.10068 7.471917 58.85664 -24.30731 7.471917 58.85664 -32.64117 7.471917 58.85664 -43.83129 7.471917 58.85664 -58.85664 7.471917 58.85664 --0.0175068 10.03574 58.85664 --0.01161267 10.03574 58.85664 --0.005718534 10.03574 58.85664 -0.0001755984 10.03574 58.85664 -0.006069731 10.03574 58.85664 -0.01197402 10.03574 58.85664 -0.01903886 10.03574 58.85664 -0.02852504 10.03574 58.85664 -0.04126244 10.03574 58.85664 -0.05836535 10.03574 58.85664 -0.08132997 10.03574 58.85664 -0.1121653 10.03574 58.85664 -0.1535689 10.03574 58.85664 -0.2091628 10.03574 58.85664 -0.2838106 10.03574 58.85664 -0.3840425 10.03574 58.85664 -0.518627 10.03574 58.85664 -0.6993381 10.03574 58.85664 -0.9419845 10.03574 58.85664 -1.267794 10.03574 58.85664 -1.705268 10.03574 58.85664 -2.292679 10.03574 58.85664 -3.081414 10.03574 58.85664 -4.140474 10.03574 58.85664 -5.562508 10.03574 58.85664 -7.471917 10.03574 58.85664 -10.03574 10.03574 58.85664 -13.47828 10.03574 58.85664 -18.10068 10.03574 58.85664 -24.30731 10.03574 58.85664 -32.64117 10.03574 58.85664 -43.83129 10.03574 58.85664 -58.85664 10.03574 58.85664 --0.0175068 13.47828 58.85664 --0.01161267 13.47828 58.85664 --0.005718534 13.47828 58.85664 -0.0001755984 13.47828 58.85664 -0.006069731 13.47828 58.85664 -0.01197402 13.47828 58.85664 -0.01903886 13.47828 58.85664 -0.02852504 13.47828 58.85664 -0.04126244 13.47828 58.85664 -0.05836535 13.47828 58.85664 -0.08132997 13.47828 58.85664 -0.1121653 13.47828 58.85664 -0.1535689 13.47828 58.85664 -0.2091628 13.47828 58.85664 -0.2838106 13.47828 58.85664 -0.3840425 13.47828 58.85664 -0.518627 13.47828 58.85664 -0.6993381 13.47828 58.85664 -0.9419845 13.47828 58.85664 -1.267794 13.47828 58.85664 -1.705268 13.47828 58.85664 -2.292679 13.47828 58.85664 -3.081414 13.47828 58.85664 -4.140474 13.47828 58.85664 -5.562508 13.47828 58.85664 -7.471917 13.47828 58.85664 -10.03574 13.47828 58.85664 -13.47828 13.47828 58.85664 -18.10068 13.47828 58.85664 -24.30731 13.47828 58.85664 -32.64117 13.47828 58.85664 -43.83129 13.47828 58.85664 -58.85664 13.47828 58.85664 --0.0175068 18.10068 58.85664 --0.01161267 18.10068 58.85664 --0.005718534 18.10068 58.85664 -0.0001755984 18.10068 58.85664 -0.006069731 18.10068 58.85664 -0.01197402 18.10068 58.85664 -0.01903886 18.10068 58.85664 -0.02852504 18.10068 58.85664 -0.04126244 18.10068 58.85664 -0.05836535 18.10068 58.85664 -0.08132997 18.10068 58.85664 -0.1121653 18.10068 58.85664 -0.1535689 18.10068 58.85664 -0.2091628 18.10068 58.85664 -0.2838106 18.10068 58.85664 -0.3840425 18.10068 58.85664 -0.518627 18.10068 58.85664 -0.6993381 18.10068 58.85664 -0.9419845 18.10068 58.85664 -1.267794 18.10068 58.85664 -1.705268 18.10068 58.85664 -2.292679 18.10068 58.85664 -3.081414 18.10068 58.85664 -4.140474 18.10068 58.85664 -5.562508 18.10068 58.85664 -7.471917 18.10068 58.85664 -10.03574 18.10068 58.85664 -13.47828 18.10068 58.85664 -18.10068 18.10068 58.85664 -24.30731 18.10068 58.85664 -32.64117 18.10068 58.85664 -43.83129 18.10068 58.85664 -58.85664 18.10068 58.85664 --0.0175068 24.30731 58.85664 --0.01161267 24.30731 58.85664 --0.005718534 24.30731 58.85664 -0.0001755984 24.30731 58.85664 -0.006069731 24.30731 58.85664 -0.01197402 24.30731 58.85664 -0.01903886 24.30731 58.85664 -0.02852504 24.30731 58.85664 -0.04126244 24.30731 58.85664 -0.05836535 24.30731 58.85664 -0.08132997 24.30731 58.85664 -0.1121653 24.30731 58.85664 -0.1535689 24.30731 58.85664 -0.2091628 24.30731 58.85664 -0.2838106 24.30731 58.85664 -0.3840425 24.30731 58.85664 -0.518627 24.30731 58.85664 -0.6993381 24.30731 58.85664 -0.9419845 24.30731 58.85664 -1.267794 24.30731 58.85664 -1.705268 24.30731 58.85664 -2.292679 24.30731 58.85664 -3.081414 24.30731 58.85664 -4.140474 24.30731 58.85664 -5.562508 24.30731 58.85664 -7.471917 24.30731 58.85664 -10.03574 24.30731 58.85664 -13.47828 24.30731 58.85664 -18.10068 24.30731 58.85664 -24.30731 24.30731 58.85664 -32.64117 24.30731 58.85664 -43.83129 24.30731 58.85664 -58.85664 24.30731 58.85664 --0.0175068 32.64117 58.85664 --0.01161267 32.64117 58.85664 --0.005718534 32.64117 58.85664 -0.0001755984 32.64117 58.85664 -0.006069731 32.64117 58.85664 -0.01197402 32.64117 58.85664 -0.01903886 32.64117 58.85664 -0.02852504 32.64117 58.85664 -0.04126244 32.64117 58.85664 -0.05836535 32.64117 58.85664 -0.08132997 32.64117 58.85664 -0.1121653 32.64117 58.85664 -0.1535689 32.64117 58.85664 -0.2091628 32.64117 58.85664 -0.2838106 32.64117 58.85664 -0.3840425 32.64117 58.85664 -0.518627 32.64117 58.85664 -0.6993381 32.64117 58.85664 -0.9419845 32.64117 58.85664 -1.267794 32.64117 58.85664 -1.705268 32.64117 58.85664 -2.292679 32.64117 58.85664 -3.081414 32.64117 58.85664 -4.140474 32.64117 58.85664 -5.562508 32.64117 58.85664 -7.471917 32.64117 58.85664 -10.03574 32.64117 58.85664 -13.47828 32.64117 58.85664 -18.10068 32.64117 58.85664 -24.30731 32.64117 58.85664 -32.64117 32.64117 58.85664 -43.83129 32.64117 58.85664 -58.85664 32.64117 58.85664 --0.0175068 43.83129 58.85664 --0.01161267 43.83129 58.85664 --0.005718534 43.83129 58.85664 -0.0001755984 43.83129 58.85664 -0.006069731 43.83129 58.85664 -0.01197402 43.83129 58.85664 -0.01903886 43.83129 58.85664 -0.02852504 43.83129 58.85664 -0.04126244 43.83129 58.85664 -0.05836535 43.83129 58.85664 -0.08132997 43.83129 58.85664 -0.1121653 43.83129 58.85664 -0.1535689 43.83129 58.85664 -0.2091628 43.83129 58.85664 -0.2838106 43.83129 58.85664 -0.3840425 43.83129 58.85664 -0.518627 43.83129 58.85664 -0.6993381 43.83129 58.85664 -0.9419845 43.83129 58.85664 -1.267794 43.83129 58.85664 -1.705268 43.83129 58.85664 -2.292679 43.83129 58.85664 -3.081414 43.83129 58.85664 -4.140474 43.83129 58.85664 -5.562508 43.83129 58.85664 -7.471917 43.83129 58.85664 -10.03574 43.83129 58.85664 -13.47828 43.83129 58.85664 -18.10068 43.83129 58.85664 -24.30731 43.83129 58.85664 -32.64117 43.83129 58.85664 -43.83129 43.83129 58.85664 -58.85664 43.83129 58.85664 --0.0175068 58.85664 58.85664 --0.01161267 58.85664 58.85664 --0.005718534 58.85664 58.85664 -0.0001755984 58.85664 58.85664 -0.006069731 58.85664 58.85664 -0.01197402 58.85664 58.85664 -0.01903886 58.85664 58.85664 -0.02852504 58.85664 58.85664 -0.04126244 58.85664 58.85664 -0.05836535 58.85664 58.85664 -0.08132997 58.85664 58.85664 -0.1121653 58.85664 58.85664 -0.1535689 58.85664 58.85664 -0.2091628 58.85664 58.85664 -0.2838106 58.85664 58.85664 -0.3840425 58.85664 58.85664 -0.518627 58.85664 58.85664 -0.6993381 58.85664 58.85664 -0.9419845 58.85664 58.85664 -1.267794 58.85664 58.85664 -1.705268 58.85664 58.85664 -2.292679 58.85664 58.85664 -3.081414 58.85664 58.85664 -4.140474 58.85664 58.85664 -5.562508 58.85664 58.85664 -7.471917 58.85664 58.85664 -10.03574 58.85664 58.85664 -13.47828 58.85664 58.85664 -18.10068 58.85664 58.85664 -24.30731 58.85664 58.85664 -32.64117 58.85664 58.85664 -43.83129 58.85664 58.85664 -58.85664 58.85664 58.85664 diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/Unity Log to Linear r1.cube.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/Unity Log to Linear r1.cube.meta deleted file mode 100644 index 805fe9ccc..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/Unity Log to Linear r1.cube.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 9b853726bb222aa4e86ef5f7633d2c15 -timeCreated: 1496826837 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/Unity Log to sRGB r1.cube b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/Unity Log to sRGB r1.cube deleted file mode 100644 index 351ef50b1..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/Unity Log to sRGB r1.cube +++ /dev/null @@ -1,35941 +0,0 @@ -TITLE "Unity Log to sRGB r1" -LUT_3D_SIZE 33 -DOMAIN_MIN 0 0 0 -DOMAIN_MAX 1 1 1 -0 0 0 -0 0 0 -0 0 0 -0.002268731 0 0 -0.07076883 0 0 -0.1119241 0 0 -0.1475052 0 0 -0.1846606 0 0 -0.2245119 0 0 -0.2679612 0 0 -0.3158431 0 0 -0.3689944 0 0 -0.4282948 0 0 -0.494694 0 0 -0.5692344 0 0 -0.6530715 0 0 -0.7474945 0 0 -0.8539475 0 0 -0.974052 0 0 -1.113885 0 0 -1.27456 0 0 -1.458117 0 0 -1.667858 0 0 -1.907556 0 0 -2.181521 0 0 -2.494678 0 0 -2.852659 0 0 -3.261896 0 0 -3.729748 0 0 -4.264621 0 0 -4.876131 0 0 -5.575266 0 0 -6.374593 0 0 -0 0 0 -0 0 0 -0 0 0 -0.002268731 0 0 -0.07076883 0 0 -0.1119241 0 0 -0.1475052 0 0 -0.1846606 0 0 -0.2245119 0 0 -0.2679612 0 0 -0.3158431 0 0 -0.3689944 0 0 -0.4282948 0 0 -0.494694 0 0 -0.5692344 0 0 -0.6530715 0 0 -0.7474945 0 0 -0.8539475 0 0 -0.974052 0 0 -1.113885 0 0 -1.27456 0 0 -1.458117 0 0 -1.667858 0 0 -1.907556 0 0 -2.181521 0 0 -2.494678 0 0 -2.852659 0 0 -3.261896 0 0 -3.729748 0 0 -4.264621 0 0 -4.876131 0 0 -5.575266 0 0 -6.374593 0 0 -0 0 0 -0 0 0 -0 0 0 -0.002268731 0 0 -0.07076883 0 0 -0.1119241 0 0 -0.1475052 0 0 -0.1846606 0 0 -0.2245119 0 0 -0.2679612 0 0 -0.3158431 0 0 -0.3689944 0 0 -0.4282948 0 0 -0.494694 0 0 -0.5692344 0 0 -0.6530715 0 0 -0.7474945 0 0 -0.8539475 0 0 -0.974052 0 0 -1.113885 0 0 -1.27456 0 0 -1.458117 0 0 -1.667858 0 0 -1.907556 0 0 -2.181521 0 0 -2.494678 0 0 -2.852659 0 0 -3.261896 0 0 -3.729748 0 0 -4.264621 0 0 -4.876131 0 0 -5.575266 0 0 -6.374593 0 0 -0 0.002268731 0 -0 0.002268731 0 -0 0.002268731 0 -0.002268731 0.002268731 0 -0.07076883 0.002268731 0 -0.1119241 0.002268731 0 -0.1475052 0.002268731 0 -0.1846606 0.002268731 0 -0.2245119 0.002268731 0 -0.2679612 0.002268731 0 -0.3158431 0.002268731 0 -0.3689944 0.002268731 0 -0.4282948 0.002268731 0 -0.494694 0.002268731 0 -0.5692344 0.002268731 0 -0.6530715 0.002268731 0 -0.7474945 0.002268731 0 -0.8539475 0.002268731 0 -0.974052 0.002268731 0 -1.113885 0.002268731 0 -1.27456 0.002268731 0 -1.458117 0.002268731 0 -1.667858 0.002268731 0 -1.907556 0.002268731 0 -2.181521 0.002268731 0 -2.494678 0.002268731 0 -2.852659 0.002268731 0 -3.261896 0.002268731 0 -3.729748 0.002268731 0 -4.264621 0.002268731 0 -4.876131 0.002268731 0 -5.575266 0.002268731 0 -6.374593 0.002268731 0 -0 0.07076883 0 -0 0.07076883 0 -0 0.07076883 0 -0.002268731 0.07076883 0 -0.07076883 0.07076883 0 -0.1119241 0.07076883 0 -0.1475052 0.07076883 0 -0.1846606 0.07076883 0 -0.2245119 0.07076883 0 -0.2679612 0.07076883 0 -0.3158431 0.07076883 0 -0.3689944 0.07076883 0 -0.4282948 0.07076883 0 -0.494694 0.07076883 0 -0.5692344 0.07076883 0 -0.6530715 0.07076883 0 -0.7474945 0.07076883 0 -0.8539475 0.07076883 0 -0.974052 0.07076883 0 -1.113885 0.07076883 0 -1.27456 0.07076883 0 -1.458117 0.07076883 0 -1.667858 0.07076883 0 -1.907556 0.07076883 0 -2.181521 0.07076883 0 -2.494678 0.07076883 0 -2.852659 0.07076883 0 -3.261896 0.07076883 0 -3.729748 0.07076883 0 -4.264621 0.07076883 0 -4.876131 0.07076883 0 -5.575266 0.07076883 0 -6.374593 0.07076883 0 -0 0.1119241 0 -0 0.1119241 0 -0 0.1119241 0 -0.002268731 0.1119241 0 -0.07076883 0.1119241 0 -0.1119241 0.1119241 0 -0.1475052 0.1119241 0 -0.1846606 0.1119241 0 -0.2245119 0.1119241 0 -0.2679612 0.1119241 0 -0.3158431 0.1119241 0 -0.3689944 0.1119241 0 -0.4282948 0.1119241 0 -0.494694 0.1119241 0 -0.5692344 0.1119241 0 -0.6530715 0.1119241 0 -0.7474945 0.1119241 0 -0.8539475 0.1119241 0 -0.974052 0.1119241 0 -1.113885 0.1119241 0 -1.27456 0.1119241 0 -1.458117 0.1119241 0 -1.667858 0.1119241 0 -1.907556 0.1119241 0 -2.181521 0.1119241 0 -2.494678 0.1119241 0 -2.852659 0.1119241 0 -3.261896 0.1119241 0 -3.729748 0.1119241 0 -4.264621 0.1119241 0 -4.876131 0.1119241 0 -5.575266 0.1119241 0 -6.374593 0.1119241 0 -0 0.1475052 0 -0 0.1475052 0 -0 0.1475052 0 -0.002268731 0.1475052 0 -0.07076883 0.1475052 0 -0.1119241 0.1475052 0 -0.1475052 0.1475052 0 -0.1846606 0.1475052 0 -0.2245119 0.1475052 0 -0.2679612 0.1475052 0 -0.3158431 0.1475052 0 -0.3689944 0.1475052 0 -0.4282948 0.1475052 0 -0.494694 0.1475052 0 -0.5692344 0.1475052 0 -0.6530715 0.1475052 0 -0.7474945 0.1475052 0 -0.8539475 0.1475052 0 -0.974052 0.1475052 0 -1.113885 0.1475052 0 -1.27456 0.1475052 0 -1.458117 0.1475052 0 -1.667858 0.1475052 0 -1.907556 0.1475052 0 -2.181521 0.1475052 0 -2.494678 0.1475052 0 -2.852659 0.1475052 0 -3.261896 0.1475052 0 -3.729748 0.1475052 0 -4.264621 0.1475052 0 -4.876131 0.1475052 0 -5.575266 0.1475052 0 -6.374593 0.1475052 0 -0 0.1846606 0 -0 0.1846606 0 -0 0.1846606 0 -0.002268731 0.1846606 0 -0.07076883 0.1846606 0 -0.1119241 0.1846606 0 -0.1475052 0.1846606 0 -0.1846606 0.1846606 0 -0.2245119 0.1846606 0 -0.2679612 0.1846606 0 -0.3158431 0.1846606 0 -0.3689944 0.1846606 0 -0.4282948 0.1846606 0 -0.494694 0.1846606 0 -0.5692344 0.1846606 0 -0.6530715 0.1846606 0 -0.7474945 0.1846606 0 -0.8539475 0.1846606 0 -0.974052 0.1846606 0 -1.113885 0.1846606 0 -1.27456 0.1846606 0 -1.458117 0.1846606 0 -1.667858 0.1846606 0 -1.907556 0.1846606 0 -2.181521 0.1846606 0 -2.494678 0.1846606 0 -2.852659 0.1846606 0 -3.261896 0.1846606 0 -3.729748 0.1846606 0 -4.264621 0.1846606 0 -4.876131 0.1846606 0 -5.575266 0.1846606 0 -6.374593 0.1846606 0 -0 0.2245119 0 -0 0.2245119 0 -0 0.2245119 0 -0.002268731 0.2245119 0 -0.07076883 0.2245119 0 -0.1119241 0.2245119 0 -0.1475052 0.2245119 0 -0.1846606 0.2245119 0 -0.2245119 0.2245119 0 -0.2679612 0.2245119 0 -0.3158431 0.2245119 0 -0.3689944 0.2245119 0 -0.4282948 0.2245119 0 -0.494694 0.2245119 0 -0.5692344 0.2245119 0 -0.6530715 0.2245119 0 -0.7474945 0.2245119 0 -0.8539475 0.2245119 0 -0.974052 0.2245119 0 -1.113885 0.2245119 0 -1.27456 0.2245119 0 -1.458117 0.2245119 0 -1.667858 0.2245119 0 -1.907556 0.2245119 0 -2.181521 0.2245119 0 -2.494678 0.2245119 0 -2.852659 0.2245119 0 -3.261896 0.2245119 0 -3.729748 0.2245119 0 -4.264621 0.2245119 0 -4.876131 0.2245119 0 -5.575266 0.2245119 0 -6.374593 0.2245119 0 -0 0.2679612 0 -0 0.2679612 0 -0 0.2679612 0 -0.002268731 0.2679612 0 -0.07076883 0.2679612 0 -0.1119241 0.2679612 0 -0.1475052 0.2679612 0 -0.1846606 0.2679612 0 -0.2245119 0.2679612 0 -0.2679612 0.2679612 0 -0.3158431 0.2679612 0 -0.3689944 0.2679612 0 -0.4282948 0.2679612 0 -0.494694 0.2679612 0 -0.5692344 0.2679612 0 -0.6530715 0.2679612 0 -0.7474945 0.2679612 0 -0.8539475 0.2679612 0 -0.974052 0.2679612 0 -1.113885 0.2679612 0 -1.27456 0.2679612 0 -1.458117 0.2679612 0 -1.667858 0.2679612 0 -1.907556 0.2679612 0 -2.181521 0.2679612 0 -2.494678 0.2679612 0 -2.852659 0.2679612 0 -3.261896 0.2679612 0 -3.729748 0.2679612 0 -4.264621 0.2679612 0 -4.876131 0.2679612 0 -5.575266 0.2679612 0 -6.374593 0.2679612 0 -0 0.3158431 0 -0 0.3158431 0 -0 0.3158431 0 -0.002268731 0.3158431 0 -0.07076883 0.3158431 0 -0.1119241 0.3158431 0 -0.1475052 0.3158431 0 -0.1846606 0.3158431 0 -0.2245119 0.3158431 0 -0.2679612 0.3158431 0 -0.3158431 0.3158431 0 -0.3689944 0.3158431 0 -0.4282948 0.3158431 0 -0.494694 0.3158431 0 -0.5692344 0.3158431 0 -0.6530715 0.3158431 0 -0.7474945 0.3158431 0 -0.8539475 0.3158431 0 -0.974052 0.3158431 0 -1.113885 0.3158431 0 -1.27456 0.3158431 0 -1.458117 0.3158431 0 -1.667858 0.3158431 0 -1.907556 0.3158431 0 -2.181521 0.3158431 0 -2.494678 0.3158431 0 -2.852659 0.3158431 0 -3.261896 0.3158431 0 -3.729748 0.3158431 0 -4.264621 0.3158431 0 -4.876131 0.3158431 0 -5.575266 0.3158431 0 -6.374593 0.3158431 0 -0 0.3689944 0 -0 0.3689944 0 -0 0.3689944 0 -0.002268731 0.3689944 0 -0.07076883 0.3689944 0 -0.1119241 0.3689944 0 -0.1475052 0.3689944 0 -0.1846606 0.3689944 0 -0.2245119 0.3689944 0 -0.2679612 0.3689944 0 -0.3158431 0.3689944 0 -0.3689944 0.3689944 0 -0.4282948 0.3689944 0 -0.494694 0.3689944 0 -0.5692344 0.3689944 0 -0.6530715 0.3689944 0 -0.7474945 0.3689944 0 -0.8539475 0.3689944 0 -0.974052 0.3689944 0 -1.113885 0.3689944 0 -1.27456 0.3689944 0 -1.458117 0.3689944 0 -1.667858 0.3689944 0 -1.907556 0.3689944 0 -2.181521 0.3689944 0 -2.494678 0.3689944 0 -2.852659 0.3689944 0 -3.261896 0.3689944 0 -3.729748 0.3689944 0 -4.264621 0.3689944 0 -4.876131 0.3689944 0 -5.575266 0.3689944 0 -6.374593 0.3689944 0 -0 0.4282948 0 -0 0.4282948 0 -0 0.4282948 0 -0.002268731 0.4282948 0 -0.07076883 0.4282948 0 -0.1119241 0.4282948 0 -0.1475052 0.4282948 0 -0.1846606 0.4282948 0 -0.2245119 0.4282948 0 -0.2679612 0.4282948 0 -0.3158431 0.4282948 0 -0.3689944 0.4282948 0 -0.4282948 0.4282948 0 -0.494694 0.4282948 0 -0.5692344 0.4282948 0 -0.6530715 0.4282948 0 -0.7474945 0.4282948 0 -0.8539475 0.4282948 0 -0.974052 0.4282948 0 -1.113885 0.4282948 0 -1.27456 0.4282948 0 -1.458117 0.4282948 0 -1.667858 0.4282948 0 -1.907556 0.4282948 0 -2.181521 0.4282948 0 -2.494678 0.4282948 0 -2.852659 0.4282948 0 -3.261896 0.4282948 0 -3.729748 0.4282948 0 -4.264621 0.4282948 0 -4.876131 0.4282948 0 -5.575266 0.4282948 0 -6.374593 0.4282948 0 -0 0.494694 0 -0 0.494694 0 -0 0.494694 0 -0.002268731 0.494694 0 -0.07076883 0.494694 0 -0.1119241 0.494694 0 -0.1475052 0.494694 0 -0.1846606 0.494694 0 -0.2245119 0.494694 0 -0.2679612 0.494694 0 -0.3158431 0.494694 0 -0.3689944 0.494694 0 -0.4282948 0.494694 0 -0.494694 0.494694 0 -0.5692344 0.494694 0 -0.6530715 0.494694 0 -0.7474945 0.494694 0 -0.8539475 0.494694 0 -0.974052 0.494694 0 -1.113885 0.494694 0 -1.27456 0.494694 0 -1.458117 0.494694 0 -1.667858 0.494694 0 -1.907556 0.494694 0 -2.181521 0.494694 0 -2.494678 0.494694 0 -2.852659 0.494694 0 -3.261896 0.494694 0 -3.729748 0.494694 0 -4.264621 0.494694 0 -4.876131 0.494694 0 -5.575266 0.494694 0 -6.374593 0.494694 0 -0 0.5692344 0 -0 0.5692344 0 -0 0.5692344 0 -0.002268731 0.5692344 0 -0.07076883 0.5692344 0 -0.1119241 0.5692344 0 -0.1475052 0.5692344 0 -0.1846606 0.5692344 0 -0.2245119 0.5692344 0 -0.2679612 0.5692344 0 -0.3158431 0.5692344 0 -0.3689944 0.5692344 0 -0.4282948 0.5692344 0 -0.494694 0.5692344 0 -0.5692344 0.5692344 0 -0.6530715 0.5692344 0 -0.7474945 0.5692344 0 -0.8539475 0.5692344 0 -0.974052 0.5692344 0 -1.113885 0.5692344 0 -1.27456 0.5692344 0 -1.458117 0.5692344 0 -1.667858 0.5692344 0 -1.907556 0.5692344 0 -2.181521 0.5692344 0 -2.494678 0.5692344 0 -2.852659 0.5692344 0 -3.261896 0.5692344 0 -3.729748 0.5692344 0 -4.264621 0.5692344 0 -4.876131 0.5692344 0 -5.575266 0.5692344 0 -6.374593 0.5692344 0 -0 0.6530715 0 -0 0.6530715 0 -0 0.6530715 0 -0.002268731 0.6530715 0 -0.07076883 0.6530715 0 -0.1119241 0.6530715 0 -0.1475052 0.6530715 0 -0.1846606 0.6530715 0 -0.2245119 0.6530715 0 -0.2679612 0.6530715 0 -0.3158431 0.6530715 0 -0.3689944 0.6530715 0 -0.4282948 0.6530715 0 -0.494694 0.6530715 0 -0.5692344 0.6530715 0 -0.6530715 0.6530715 0 -0.7474945 0.6530715 0 -0.8539475 0.6530715 0 -0.974052 0.6530715 0 -1.113885 0.6530715 0 -1.27456 0.6530715 0 -1.458117 0.6530715 0 -1.667858 0.6530715 0 -1.907556 0.6530715 0 -2.181521 0.6530715 0 -2.494678 0.6530715 0 -2.852659 0.6530715 0 -3.261896 0.6530715 0 -3.729748 0.6530715 0 -4.264621 0.6530715 0 -4.876131 0.6530715 0 -5.575266 0.6530715 0 -6.374593 0.6530715 0 -0 0.7474945 0 -0 0.7474945 0 -0 0.7474945 0 -0.002268731 0.7474945 0 -0.07076883 0.7474945 0 -0.1119241 0.7474945 0 -0.1475052 0.7474945 0 -0.1846606 0.7474945 0 -0.2245119 0.7474945 0 -0.2679612 0.7474945 0 -0.3158431 0.7474945 0 -0.3689944 0.7474945 0 -0.4282948 0.7474945 0 -0.494694 0.7474945 0 -0.5692344 0.7474945 0 -0.6530715 0.7474945 0 -0.7474945 0.7474945 0 -0.8539475 0.7474945 0 -0.974052 0.7474945 0 -1.113885 0.7474945 0 -1.27456 0.7474945 0 -1.458117 0.7474945 0 -1.667858 0.7474945 0 -1.907556 0.7474945 0 -2.181521 0.7474945 0 -2.494678 0.7474945 0 -2.852659 0.7474945 0 -3.261896 0.7474945 0 -3.729748 0.7474945 0 -4.264621 0.7474945 0 -4.876131 0.7474945 0 -5.575266 0.7474945 0 -6.374593 0.7474945 0 -0 0.8539475 0 -0 0.8539475 0 -0 0.8539475 0 -0.002268731 0.8539475 0 -0.07076883 0.8539475 0 -0.1119241 0.8539475 0 -0.1475052 0.8539475 0 -0.1846606 0.8539475 0 -0.2245119 0.8539475 0 -0.2679612 0.8539475 0 -0.3158431 0.8539475 0 -0.3689944 0.8539475 0 -0.4282948 0.8539475 0 -0.494694 0.8539475 0 -0.5692344 0.8539475 0 -0.6530715 0.8539475 0 -0.7474945 0.8539475 0 -0.8539475 0.8539475 0 -0.974052 0.8539475 0 -1.113885 0.8539475 0 -1.27456 0.8539475 0 -1.458117 0.8539475 0 -1.667858 0.8539475 0 -1.907556 0.8539475 0 -2.181521 0.8539475 0 -2.494678 0.8539475 0 -2.852659 0.8539475 0 -3.261896 0.8539475 0 -3.729748 0.8539475 0 -4.264621 0.8539475 0 -4.876131 0.8539475 0 -5.575266 0.8539475 0 -6.374593 0.8539475 0 -0 0.974052 0 -0 0.974052 0 -0 0.974052 0 -0.002268731 0.974052 0 -0.07076883 0.974052 0 -0.1119241 0.974052 0 -0.1475052 0.974052 0 -0.1846606 0.974052 0 -0.2245119 0.974052 0 -0.2679612 0.974052 0 -0.3158431 0.974052 0 -0.3689944 0.974052 0 -0.4282948 0.974052 0 -0.494694 0.974052 0 -0.5692344 0.974052 0 -0.6530715 0.974052 0 -0.7474945 0.974052 0 -0.8539475 0.974052 0 -0.974052 0.974052 0 -1.113885 0.974052 0 -1.27456 0.974052 0 -1.458117 0.974052 0 -1.667858 0.974052 0 -1.907556 0.974052 0 -2.181521 0.974052 0 -2.494678 0.974052 0 -2.852659 0.974052 0 -3.261896 0.974052 0 -3.729748 0.974052 0 -4.264621 0.974052 0 -4.876131 0.974052 0 -5.575266 0.974052 0 -6.374593 0.974052 0 -0 1.113885 0 -0 1.113885 0 -0 1.113885 0 -0.002268731 1.113885 0 -0.07076883 1.113885 0 -0.1119241 1.113885 0 -0.1475052 1.113885 0 -0.1846606 1.113885 0 -0.2245119 1.113885 0 -0.2679612 1.113885 0 -0.3158431 1.113885 0 -0.3689944 1.113885 0 -0.4282948 1.113885 0 -0.494694 1.113885 0 -0.5692344 1.113885 0 -0.6530715 1.113885 0 -0.7474945 1.113885 0 -0.8539475 1.113885 0 -0.974052 1.113885 0 -1.113885 1.113885 0 -1.27456 1.113885 0 -1.458117 1.113885 0 -1.667858 1.113885 0 -1.907556 1.113885 0 -2.181521 1.113885 0 -2.494678 1.113885 0 -2.852659 1.113885 0 -3.261896 1.113885 0 -3.729748 1.113885 0 -4.264621 1.113885 0 -4.876131 1.113885 0 -5.575266 1.113885 0 -6.374593 1.113885 0 -0 1.27456 0 -0 1.27456 0 -0 1.27456 0 -0.002268731 1.27456 0 -0.07076883 1.27456 0 -0.1119241 1.27456 0 -0.1475052 1.27456 0 -0.1846606 1.27456 0 -0.2245119 1.27456 0 -0.2679612 1.27456 0 -0.3158431 1.27456 0 -0.3689944 1.27456 0 -0.4282948 1.27456 0 -0.494694 1.27456 0 -0.5692344 1.27456 0 -0.6530715 1.27456 0 -0.7474945 1.27456 0 -0.8539475 1.27456 0 -0.974052 1.27456 0 -1.113885 1.27456 0 -1.27456 1.27456 0 -1.458117 1.27456 0 -1.667858 1.27456 0 -1.907556 1.27456 0 -2.181521 1.27456 0 -2.494678 1.27456 0 -2.852659 1.27456 0 -3.261896 1.27456 0 -3.729748 1.27456 0 -4.264621 1.27456 0 -4.876131 1.27456 0 -5.575266 1.27456 0 -6.374593 1.27456 0 -0 1.458117 0 -0 1.458117 0 -0 1.458117 0 -0.002268731 1.458117 0 -0.07076883 1.458117 0 -0.1119241 1.458117 0 -0.1475052 1.458117 0 -0.1846606 1.458117 0 -0.2245119 1.458117 0 -0.2679612 1.458117 0 -0.3158431 1.458117 0 -0.3689944 1.458117 0 -0.4282948 1.458117 0 -0.494694 1.458117 0 -0.5692344 1.458117 0 -0.6530715 1.458117 0 -0.7474945 1.458117 0 -0.8539475 1.458117 0 -0.974052 1.458117 0 -1.113885 1.458117 0 -1.27456 1.458117 0 -1.458117 1.458117 0 -1.667858 1.458117 0 -1.907556 1.458117 0 -2.181521 1.458117 0 -2.494678 1.458117 0 -2.852659 1.458117 0 -3.261896 1.458117 0 -3.729748 1.458117 0 -4.264621 1.458117 0 -4.876131 1.458117 0 -5.575266 1.458117 0 -6.374593 1.458117 0 -0 1.667858 0 -0 1.667858 0 -0 1.667858 0 -0.002268731 1.667858 0 -0.07076883 1.667858 0 -0.1119241 1.667858 0 -0.1475052 1.667858 0 -0.1846606 1.667858 0 -0.2245119 1.667858 0 -0.2679612 1.667858 0 -0.3158431 1.667858 0 -0.3689944 1.667858 0 -0.4282948 1.667858 0 -0.494694 1.667858 0 -0.5692344 1.667858 0 -0.6530715 1.667858 0 -0.7474945 1.667858 0 -0.8539475 1.667858 0 -0.974052 1.667858 0 -1.113885 1.667858 0 -1.27456 1.667858 0 -1.458117 1.667858 0 -1.667858 1.667858 0 -1.907556 1.667858 0 -2.181521 1.667858 0 -2.494678 1.667858 0 -2.852659 1.667858 0 -3.261896 1.667858 0 -3.729748 1.667858 0 -4.264621 1.667858 0 -4.876131 1.667858 0 -5.575266 1.667858 0 -6.374593 1.667858 0 -0 1.907556 0 -0 1.907556 0 -0 1.907556 0 -0.002268731 1.907556 0 -0.07076883 1.907556 0 -0.1119241 1.907556 0 -0.1475052 1.907556 0 -0.1846606 1.907556 0 -0.2245119 1.907556 0 -0.2679612 1.907556 0 -0.3158431 1.907556 0 -0.3689944 1.907556 0 -0.4282948 1.907556 0 -0.494694 1.907556 0 -0.5692344 1.907556 0 -0.6530715 1.907556 0 -0.7474945 1.907556 0 -0.8539475 1.907556 0 -0.974052 1.907556 0 -1.113885 1.907556 0 -1.27456 1.907556 0 -1.458117 1.907556 0 -1.667858 1.907556 0 -1.907556 1.907556 0 -2.181521 1.907556 0 -2.494678 1.907556 0 -2.852659 1.907556 0 -3.261896 1.907556 0 -3.729748 1.907556 0 -4.264621 1.907556 0 -4.876131 1.907556 0 -5.575266 1.907556 0 -6.374593 1.907556 0 -0 2.181521 0 -0 2.181521 0 -0 2.181521 0 -0.002268731 2.181521 0 -0.07076883 2.181521 0 -0.1119241 2.181521 0 -0.1475052 2.181521 0 -0.1846606 2.181521 0 -0.2245119 2.181521 0 -0.2679612 2.181521 0 -0.3158431 2.181521 0 -0.3689944 2.181521 0 -0.4282948 2.181521 0 -0.494694 2.181521 0 -0.5692344 2.181521 0 -0.6530715 2.181521 0 -0.7474945 2.181521 0 -0.8539475 2.181521 0 -0.974052 2.181521 0 -1.113885 2.181521 0 -1.27456 2.181521 0 -1.458117 2.181521 0 -1.667858 2.181521 0 -1.907556 2.181521 0 -2.181521 2.181521 0 -2.494678 2.181521 0 -2.852659 2.181521 0 -3.261896 2.181521 0 -3.729748 2.181521 0 -4.264621 2.181521 0 -4.876131 2.181521 0 -5.575266 2.181521 0 -6.374593 2.181521 0 -0 2.494678 0 -0 2.494678 0 -0 2.494678 0 -0.002268731 2.494678 0 -0.07076883 2.494678 0 -0.1119241 2.494678 0 -0.1475052 2.494678 0 -0.1846606 2.494678 0 -0.2245119 2.494678 0 -0.2679612 2.494678 0 -0.3158431 2.494678 0 -0.3689944 2.494678 0 -0.4282948 2.494678 0 -0.494694 2.494678 0 -0.5692344 2.494678 0 -0.6530715 2.494678 0 -0.7474945 2.494678 0 -0.8539475 2.494678 0 -0.974052 2.494678 0 -1.113885 2.494678 0 -1.27456 2.494678 0 -1.458117 2.494678 0 -1.667858 2.494678 0 -1.907556 2.494678 0 -2.181521 2.494678 0 -2.494678 2.494678 0 -2.852659 2.494678 0 -3.261896 2.494678 0 -3.729748 2.494678 0 -4.264621 2.494678 0 -4.876131 2.494678 0 -5.575266 2.494678 0 -6.374593 2.494678 0 -0 2.852659 0 -0 2.852659 0 -0 2.852659 0 -0.002268731 2.852659 0 -0.07076883 2.852659 0 -0.1119241 2.852659 0 -0.1475052 2.852659 0 -0.1846606 2.852659 0 -0.2245119 2.852659 0 -0.2679612 2.852659 0 -0.3158431 2.852659 0 -0.3689944 2.852659 0 -0.4282948 2.852659 0 -0.494694 2.852659 0 -0.5692344 2.852659 0 -0.6530715 2.852659 0 -0.7474945 2.852659 0 -0.8539475 2.852659 0 -0.974052 2.852659 0 -1.113885 2.852659 0 -1.27456 2.852659 0 -1.458117 2.852659 0 -1.667858 2.852659 0 -1.907556 2.852659 0 -2.181521 2.852659 0 -2.494678 2.852659 0 -2.852659 2.852659 0 -3.261896 2.852659 0 -3.729748 2.852659 0 -4.264621 2.852659 0 -4.876131 2.852659 0 -5.575266 2.852659 0 -6.374593 2.852659 0 -0 3.261896 0 -0 3.261896 0 -0 3.261896 0 -0.002268731 3.261896 0 -0.07076883 3.261896 0 -0.1119241 3.261896 0 -0.1475052 3.261896 0 -0.1846606 3.261896 0 -0.2245119 3.261896 0 -0.2679612 3.261896 0 -0.3158431 3.261896 0 -0.3689944 3.261896 0 -0.4282948 3.261896 0 -0.494694 3.261896 0 -0.5692344 3.261896 0 -0.6530715 3.261896 0 -0.7474945 3.261896 0 -0.8539475 3.261896 0 -0.974052 3.261896 0 -1.113885 3.261896 0 -1.27456 3.261896 0 -1.458117 3.261896 0 -1.667858 3.261896 0 -1.907556 3.261896 0 -2.181521 3.261896 0 -2.494678 3.261896 0 -2.852659 3.261896 0 -3.261896 3.261896 0 -3.729748 3.261896 0 -4.264621 3.261896 0 -4.876131 3.261896 0 -5.575266 3.261896 0 -6.374593 3.261896 0 -0 3.729748 0 -0 3.729748 0 -0 3.729748 0 -0.002268731 3.729748 0 -0.07076883 3.729748 0 -0.1119241 3.729748 0 -0.1475052 3.729748 0 -0.1846606 3.729748 0 -0.2245119 3.729748 0 -0.2679612 3.729748 0 -0.3158431 3.729748 0 -0.3689944 3.729748 0 -0.4282948 3.729748 0 -0.494694 3.729748 0 -0.5692344 3.729748 0 -0.6530715 3.729748 0 -0.7474945 3.729748 0 -0.8539475 3.729748 0 -0.974052 3.729748 0 -1.113885 3.729748 0 -1.27456 3.729748 0 -1.458117 3.729748 0 -1.667858 3.729748 0 -1.907556 3.729748 0 -2.181521 3.729748 0 -2.494678 3.729748 0 -2.852659 3.729748 0 -3.261896 3.729748 0 -3.729748 3.729748 0 -4.264621 3.729748 0 -4.876131 3.729748 0 -5.575266 3.729748 0 -6.374593 3.729748 0 -0 4.264621 0 -0 4.264621 0 -0 4.264621 0 -0.002268731 4.264621 0 -0.07076883 4.264621 0 -0.1119241 4.264621 0 -0.1475052 4.264621 0 -0.1846606 4.264621 0 -0.2245119 4.264621 0 -0.2679612 4.264621 0 -0.3158431 4.264621 0 -0.3689944 4.264621 0 -0.4282948 4.264621 0 -0.494694 4.264621 0 -0.5692344 4.264621 0 -0.6530715 4.264621 0 -0.7474945 4.264621 0 -0.8539475 4.264621 0 -0.974052 4.264621 0 -1.113885 4.264621 0 -1.27456 4.264621 0 -1.458117 4.264621 0 -1.667858 4.264621 0 -1.907556 4.264621 0 -2.181521 4.264621 0 -2.494678 4.264621 0 -2.852659 4.264621 0 -3.261896 4.264621 0 -3.729748 4.264621 0 -4.264621 4.264621 0 -4.876131 4.264621 0 -5.575266 4.264621 0 -6.374593 4.264621 0 -0 4.876131 0 -0 4.876131 0 -0 4.876131 0 -0.002268731 4.876131 0 -0.07076883 4.876131 0 -0.1119241 4.876131 0 -0.1475052 4.876131 0 -0.1846606 4.876131 0 -0.2245119 4.876131 0 -0.2679612 4.876131 0 -0.3158431 4.876131 0 -0.3689944 4.876131 0 -0.4282948 4.876131 0 -0.494694 4.876131 0 -0.5692344 4.876131 0 -0.6530715 4.876131 0 -0.7474945 4.876131 0 -0.8539475 4.876131 0 -0.974052 4.876131 0 -1.113885 4.876131 0 -1.27456 4.876131 0 -1.458117 4.876131 0 -1.667858 4.876131 0 -1.907556 4.876131 0 -2.181521 4.876131 0 -2.494678 4.876131 0 -2.852659 4.876131 0 -3.261896 4.876131 0 -3.729748 4.876131 0 -4.264621 4.876131 0 -4.876131 4.876131 0 -5.575266 4.876131 0 -6.374593 4.876131 0 -0 5.575266 0 -0 5.575266 0 -0 5.575266 0 -0.002268731 5.575266 0 -0.07076883 5.575266 0 -0.1119241 5.575266 0 -0.1475052 5.575266 0 -0.1846606 5.575266 0 -0.2245119 5.575266 0 -0.2679612 5.575266 0 -0.3158431 5.575266 0 -0.3689944 5.575266 0 -0.4282948 5.575266 0 -0.494694 5.575266 0 -0.5692344 5.575266 0 -0.6530715 5.575266 0 -0.7474945 5.575266 0 -0.8539475 5.575266 0 -0.974052 5.575266 0 -1.113885 5.575266 0 -1.27456 5.575266 0 -1.458117 5.575266 0 -1.667858 5.575266 0 -1.907556 5.575266 0 -2.181521 5.575266 0 -2.494678 5.575266 0 -2.852659 5.575266 0 -3.261896 5.575266 0 -3.729748 5.575266 0 -4.264621 5.575266 0 -4.876131 5.575266 0 -5.575266 5.575266 0 -6.374593 5.575266 0 -0 6.374593 0 -0 6.374593 0 -0 6.374593 0 -0.002268731 6.374593 0 -0.07076883 6.374593 0 -0.1119241 6.374593 0 -0.1475052 6.374593 0 -0.1846606 6.374593 0 -0.2245119 6.374593 0 -0.2679612 6.374593 0 -0.3158431 6.374593 0 -0.3689944 6.374593 0 -0.4282948 6.374593 0 -0.494694 6.374593 0 -0.5692344 6.374593 0 -0.6530715 6.374593 0 -0.7474945 6.374593 0 -0.8539475 6.374593 0 -0.974052 6.374593 0 -1.113885 6.374593 0 -1.27456 6.374593 0 -1.458117 6.374593 0 -1.667858 6.374593 0 -1.907556 6.374593 0 -2.181521 6.374593 0 -2.494678 6.374593 0 -2.852659 6.374593 0 -3.261896 6.374593 0 -3.729748 6.374593 0 -4.264621 6.374593 0 -4.876131 6.374593 0 -5.575266 6.374593 0 -6.374593 6.374593 0 -0 0 0 -0 0 0 -0 0 0 -0.002268731 0 0 -0.07076883 0 0 -0.1119241 0 0 -0.1475052 0 0 -0.1846606 0 0 -0.2245119 0 0 -0.2679612 0 0 -0.3158431 0 0 -0.3689944 0 0 -0.4282948 0 0 -0.494694 0 0 -0.5692344 0 0 -0.6530715 0 0 -0.7474945 0 0 -0.8539475 0 0 -0.974052 0 0 -1.113885 0 0 -1.27456 0 0 -1.458117 0 0 -1.667858 0 0 -1.907556 0 0 -2.181521 0 0 -2.494678 0 0 -2.852659 0 0 -3.261896 0 0 -3.729748 0 0 -4.264621 0 0 -4.876131 0 0 -5.575266 0 0 -6.374593 0 0 -0 0 0 -0 0 0 -0 0 0 -0.002268731 0 0 -0.07076883 0 0 -0.1119241 0 0 -0.1475052 0 0 -0.1846606 0 0 -0.2245119 0 0 -0.2679612 0 0 -0.3158431 0 0 -0.3689944 0 0 -0.4282948 0 0 -0.494694 0 0 -0.5692344 0 0 -0.6530715 0 0 -0.7474945 0 0 -0.8539475 0 0 -0.974052 0 0 -1.113885 0 0 -1.27456 0 0 -1.458117 0 0 -1.667858 0 0 -1.907556 0 0 -2.181521 0 0 -2.494678 0 0 -2.852659 0 0 -3.261896 0 0 -3.729748 0 0 -4.264621 0 0 -4.876131 0 0 -5.575266 0 0 -6.374593 0 0 -0 0 0 -0 0 0 -0 0 0 -0.002268731 0 0 -0.07076883 0 0 -0.1119241 0 0 -0.1475052 0 0 -0.1846606 0 0 -0.2245119 0 0 -0.2679612 0 0 -0.3158431 0 0 -0.3689944 0 0 -0.4282948 0 0 -0.494694 0 0 -0.5692344 0 0 -0.6530715 0 0 -0.7474945 0 0 -0.8539475 0 0 -0.974052 0 0 -1.113885 0 0 -1.27456 0 0 -1.458117 0 0 -1.667858 0 0 -1.907556 0 0 -2.181521 0 0 -2.494678 0 0 -2.852659 0 0 -3.261896 0 0 -3.729748 0 0 -4.264621 0 0 -4.876131 0 0 -5.575266 0 0 -6.374593 0 0 -0 0.002268731 0 -0 0.002268731 0 -0 0.002268731 0 -0.002268731 0.002268731 0 -0.07076883 0.002268731 0 -0.1119241 0.002268731 0 -0.1475052 0.002268731 0 -0.1846606 0.002268731 0 -0.2245119 0.002268731 0 -0.2679612 0.002268731 0 -0.3158431 0.002268731 0 -0.3689944 0.002268731 0 -0.4282948 0.002268731 0 -0.494694 0.002268731 0 -0.5692344 0.002268731 0 -0.6530715 0.002268731 0 -0.7474945 0.002268731 0 -0.8539475 0.002268731 0 -0.974052 0.002268731 0 -1.113885 0.002268731 0 -1.27456 0.002268731 0 -1.458117 0.002268731 0 -1.667858 0.002268731 0 -1.907556 0.002268731 0 -2.181521 0.002268731 0 -2.494678 0.002268731 0 -2.852659 0.002268731 0 -3.261896 0.002268731 0 -3.729748 0.002268731 0 -4.264621 0.002268731 0 -4.876131 0.002268731 0 -5.575266 0.002268731 0 -6.374593 0.002268731 0 -0 0.07076883 0 -0 0.07076883 0 -0 0.07076883 0 -0.002268731 0.07076883 0 -0.07076883 0.07076883 0 -0.1119241 0.07076883 0 -0.1475052 0.07076883 0 -0.1846606 0.07076883 0 -0.2245119 0.07076883 0 -0.2679612 0.07076883 0 -0.3158431 0.07076883 0 -0.3689944 0.07076883 0 -0.4282948 0.07076883 0 -0.494694 0.07076883 0 -0.5692344 0.07076883 0 -0.6530715 0.07076883 0 -0.7474945 0.07076883 0 -0.8539475 0.07076883 0 -0.974052 0.07076883 0 -1.113885 0.07076883 0 -1.27456 0.07076883 0 -1.458117 0.07076883 0 -1.667858 0.07076883 0 -1.907556 0.07076883 0 -2.181521 0.07076883 0 -2.494678 0.07076883 0 -2.852659 0.07076883 0 -3.261896 0.07076883 0 -3.729748 0.07076883 0 -4.264621 0.07076883 0 -4.876131 0.07076883 0 -5.575266 0.07076883 0 -6.374593 0.07076883 0 -0 0.1119241 0 -0 0.1119241 0 -0 0.1119241 0 -0.002268731 0.1119241 0 -0.07076883 0.1119241 0 -0.1119241 0.1119241 0 -0.1475052 0.1119241 0 -0.1846606 0.1119241 0 -0.2245119 0.1119241 0 -0.2679612 0.1119241 0 -0.3158431 0.1119241 0 -0.3689944 0.1119241 0 -0.4282948 0.1119241 0 -0.494694 0.1119241 0 -0.5692344 0.1119241 0 -0.6530715 0.1119241 0 -0.7474945 0.1119241 0 -0.8539475 0.1119241 0 -0.974052 0.1119241 0 -1.113885 0.1119241 0 -1.27456 0.1119241 0 -1.458117 0.1119241 0 -1.667858 0.1119241 0 -1.907556 0.1119241 0 -2.181521 0.1119241 0 -2.494678 0.1119241 0 -2.852659 0.1119241 0 -3.261896 0.1119241 0 -3.729748 0.1119241 0 -4.264621 0.1119241 0 -4.876131 0.1119241 0 -5.575266 0.1119241 0 -6.374593 0.1119241 0 -0 0.1475052 0 -0 0.1475052 0 -0 0.1475052 0 -0.002268731 0.1475052 0 -0.07076883 0.1475052 0 -0.1119241 0.1475052 0 -0.1475052 0.1475052 0 -0.1846606 0.1475052 0 -0.2245119 0.1475052 0 -0.2679612 0.1475052 0 -0.3158431 0.1475052 0 -0.3689944 0.1475052 0 -0.4282948 0.1475052 0 -0.494694 0.1475052 0 -0.5692344 0.1475052 0 -0.6530715 0.1475052 0 -0.7474945 0.1475052 0 -0.8539475 0.1475052 0 -0.974052 0.1475052 0 -1.113885 0.1475052 0 -1.27456 0.1475052 0 -1.458117 0.1475052 0 -1.667858 0.1475052 0 -1.907556 0.1475052 0 -2.181521 0.1475052 0 -2.494678 0.1475052 0 -2.852659 0.1475052 0 -3.261896 0.1475052 0 -3.729748 0.1475052 0 -4.264621 0.1475052 0 -4.876131 0.1475052 0 -5.575266 0.1475052 0 -6.374593 0.1475052 0 -0 0.1846606 0 -0 0.1846606 0 -0 0.1846606 0 -0.002268731 0.1846606 0 -0.07076883 0.1846606 0 -0.1119241 0.1846606 0 -0.1475052 0.1846606 0 -0.1846606 0.1846606 0 -0.2245119 0.1846606 0 -0.2679612 0.1846606 0 -0.3158431 0.1846606 0 -0.3689944 0.1846606 0 -0.4282948 0.1846606 0 -0.494694 0.1846606 0 -0.5692344 0.1846606 0 -0.6530715 0.1846606 0 -0.7474945 0.1846606 0 -0.8539475 0.1846606 0 -0.974052 0.1846606 0 -1.113885 0.1846606 0 -1.27456 0.1846606 0 -1.458117 0.1846606 0 -1.667858 0.1846606 0 -1.907556 0.1846606 0 -2.181521 0.1846606 0 -2.494678 0.1846606 0 -2.852659 0.1846606 0 -3.261896 0.1846606 0 -3.729748 0.1846606 0 -4.264621 0.1846606 0 -4.876131 0.1846606 0 -5.575266 0.1846606 0 -6.374593 0.1846606 0 -0 0.2245119 0 -0 0.2245119 0 -0 0.2245119 0 -0.002268731 0.2245119 0 -0.07076883 0.2245119 0 -0.1119241 0.2245119 0 -0.1475052 0.2245119 0 -0.1846606 0.2245119 0 -0.2245119 0.2245119 0 -0.2679612 0.2245119 0 -0.3158431 0.2245119 0 -0.3689944 0.2245119 0 -0.4282948 0.2245119 0 -0.494694 0.2245119 0 -0.5692344 0.2245119 0 -0.6530715 0.2245119 0 -0.7474945 0.2245119 0 -0.8539475 0.2245119 0 -0.974052 0.2245119 0 -1.113885 0.2245119 0 -1.27456 0.2245119 0 -1.458117 0.2245119 0 -1.667858 0.2245119 0 -1.907556 0.2245119 0 -2.181521 0.2245119 0 -2.494678 0.2245119 0 -2.852659 0.2245119 0 -3.261896 0.2245119 0 -3.729748 0.2245119 0 -4.264621 0.2245119 0 -4.876131 0.2245119 0 -5.575266 0.2245119 0 -6.374593 0.2245119 0 -0 0.2679612 0 -0 0.2679612 0 -0 0.2679612 0 -0.002268731 0.2679612 0 -0.07076883 0.2679612 0 -0.1119241 0.2679612 0 -0.1475052 0.2679612 0 -0.1846606 0.2679612 0 -0.2245119 0.2679612 0 -0.2679612 0.2679612 0 -0.3158431 0.2679612 0 -0.3689944 0.2679612 0 -0.4282948 0.2679612 0 -0.494694 0.2679612 0 -0.5692344 0.2679612 0 -0.6530715 0.2679612 0 -0.7474945 0.2679612 0 -0.8539475 0.2679612 0 -0.974052 0.2679612 0 -1.113885 0.2679612 0 -1.27456 0.2679612 0 -1.458117 0.2679612 0 -1.667858 0.2679612 0 -1.907556 0.2679612 0 -2.181521 0.2679612 0 -2.494678 0.2679612 0 -2.852659 0.2679612 0 -3.261896 0.2679612 0 -3.729748 0.2679612 0 -4.264621 0.2679612 0 -4.876131 0.2679612 0 -5.575266 0.2679612 0 -6.374593 0.2679612 0 -0 0.3158431 0 -0 0.3158431 0 -0 0.3158431 0 -0.002268731 0.3158431 0 -0.07076883 0.3158431 0 -0.1119241 0.3158431 0 -0.1475052 0.3158431 0 -0.1846606 0.3158431 0 -0.2245119 0.3158431 0 -0.2679612 0.3158431 0 -0.3158431 0.3158431 0 -0.3689944 0.3158431 0 -0.4282948 0.3158431 0 -0.494694 0.3158431 0 -0.5692344 0.3158431 0 -0.6530715 0.3158431 0 -0.7474945 0.3158431 0 -0.8539475 0.3158431 0 -0.974052 0.3158431 0 -1.113885 0.3158431 0 -1.27456 0.3158431 0 -1.458117 0.3158431 0 -1.667858 0.3158431 0 -1.907556 0.3158431 0 -2.181521 0.3158431 0 -2.494678 0.3158431 0 -2.852659 0.3158431 0 -3.261896 0.3158431 0 -3.729748 0.3158431 0 -4.264621 0.3158431 0 -4.876131 0.3158431 0 -5.575266 0.3158431 0 -6.374593 0.3158431 0 -0 0.3689944 0 -0 0.3689944 0 -0 0.3689944 0 -0.002268731 0.3689944 0 -0.07076883 0.3689944 0 -0.1119241 0.3689944 0 -0.1475052 0.3689944 0 -0.1846606 0.3689944 0 -0.2245119 0.3689944 0 -0.2679612 0.3689944 0 -0.3158431 0.3689944 0 -0.3689944 0.3689944 0 -0.4282948 0.3689944 0 -0.494694 0.3689944 0 -0.5692344 0.3689944 0 -0.6530715 0.3689944 0 -0.7474945 0.3689944 0 -0.8539475 0.3689944 0 -0.974052 0.3689944 0 -1.113885 0.3689944 0 -1.27456 0.3689944 0 -1.458117 0.3689944 0 -1.667858 0.3689944 0 -1.907556 0.3689944 0 -2.181521 0.3689944 0 -2.494678 0.3689944 0 -2.852659 0.3689944 0 -3.261896 0.3689944 0 -3.729748 0.3689944 0 -4.264621 0.3689944 0 -4.876131 0.3689944 0 -5.575266 0.3689944 0 -6.374593 0.3689944 0 -0 0.4282948 0 -0 0.4282948 0 -0 0.4282948 0 -0.002268731 0.4282948 0 -0.07076883 0.4282948 0 -0.1119241 0.4282948 0 -0.1475052 0.4282948 0 -0.1846606 0.4282948 0 -0.2245119 0.4282948 0 -0.2679612 0.4282948 0 -0.3158431 0.4282948 0 -0.3689944 0.4282948 0 -0.4282948 0.4282948 0 -0.494694 0.4282948 0 -0.5692344 0.4282948 0 -0.6530715 0.4282948 0 -0.7474945 0.4282948 0 -0.8539475 0.4282948 0 -0.974052 0.4282948 0 -1.113885 0.4282948 0 -1.27456 0.4282948 0 -1.458117 0.4282948 0 -1.667858 0.4282948 0 -1.907556 0.4282948 0 -2.181521 0.4282948 0 -2.494678 0.4282948 0 -2.852659 0.4282948 0 -3.261896 0.4282948 0 -3.729748 0.4282948 0 -4.264621 0.4282948 0 -4.876131 0.4282948 0 -5.575266 0.4282948 0 -6.374593 0.4282948 0 -0 0.494694 0 -0 0.494694 0 -0 0.494694 0 -0.002268731 0.494694 0 -0.07076883 0.494694 0 -0.1119241 0.494694 0 -0.1475052 0.494694 0 -0.1846606 0.494694 0 -0.2245119 0.494694 0 -0.2679612 0.494694 0 -0.3158431 0.494694 0 -0.3689944 0.494694 0 -0.4282948 0.494694 0 -0.494694 0.494694 0 -0.5692344 0.494694 0 -0.6530715 0.494694 0 -0.7474945 0.494694 0 -0.8539475 0.494694 0 -0.974052 0.494694 0 -1.113885 0.494694 0 -1.27456 0.494694 0 -1.458117 0.494694 0 -1.667858 0.494694 0 -1.907556 0.494694 0 -2.181521 0.494694 0 -2.494678 0.494694 0 -2.852659 0.494694 0 -3.261896 0.494694 0 -3.729748 0.494694 0 -4.264621 0.494694 0 -4.876131 0.494694 0 -5.575266 0.494694 0 -6.374593 0.494694 0 -0 0.5692344 0 -0 0.5692344 0 -0 0.5692344 0 -0.002268731 0.5692344 0 -0.07076883 0.5692344 0 -0.1119241 0.5692344 0 -0.1475052 0.5692344 0 -0.1846606 0.5692344 0 -0.2245119 0.5692344 0 -0.2679612 0.5692344 0 -0.3158431 0.5692344 0 -0.3689944 0.5692344 0 -0.4282948 0.5692344 0 -0.494694 0.5692344 0 -0.5692344 0.5692344 0 -0.6530715 0.5692344 0 -0.7474945 0.5692344 0 -0.8539475 0.5692344 0 -0.974052 0.5692344 0 -1.113885 0.5692344 0 -1.27456 0.5692344 0 -1.458117 0.5692344 0 -1.667858 0.5692344 0 -1.907556 0.5692344 0 -2.181521 0.5692344 0 -2.494678 0.5692344 0 -2.852659 0.5692344 0 -3.261896 0.5692344 0 -3.729748 0.5692344 0 -4.264621 0.5692344 0 -4.876131 0.5692344 0 -5.575266 0.5692344 0 -6.374593 0.5692344 0 -0 0.6530715 0 -0 0.6530715 0 -0 0.6530715 0 -0.002268731 0.6530715 0 -0.07076883 0.6530715 0 -0.1119241 0.6530715 0 -0.1475052 0.6530715 0 -0.1846606 0.6530715 0 -0.2245119 0.6530715 0 -0.2679612 0.6530715 0 -0.3158431 0.6530715 0 -0.3689944 0.6530715 0 -0.4282948 0.6530715 0 -0.494694 0.6530715 0 -0.5692344 0.6530715 0 -0.6530715 0.6530715 0 -0.7474945 0.6530715 0 -0.8539475 0.6530715 0 -0.974052 0.6530715 0 -1.113885 0.6530715 0 -1.27456 0.6530715 0 -1.458117 0.6530715 0 -1.667858 0.6530715 0 -1.907556 0.6530715 0 -2.181521 0.6530715 0 -2.494678 0.6530715 0 -2.852659 0.6530715 0 -3.261896 0.6530715 0 -3.729748 0.6530715 0 -4.264621 0.6530715 0 -4.876131 0.6530715 0 -5.575266 0.6530715 0 -6.374593 0.6530715 0 -0 0.7474945 0 -0 0.7474945 0 -0 0.7474945 0 -0.002268731 0.7474945 0 -0.07076883 0.7474945 0 -0.1119241 0.7474945 0 -0.1475052 0.7474945 0 -0.1846606 0.7474945 0 -0.2245119 0.7474945 0 -0.2679612 0.7474945 0 -0.3158431 0.7474945 0 -0.3689944 0.7474945 0 -0.4282948 0.7474945 0 -0.494694 0.7474945 0 -0.5692344 0.7474945 0 -0.6530715 0.7474945 0 -0.7474945 0.7474945 0 -0.8539475 0.7474945 0 -0.974052 0.7474945 0 -1.113885 0.7474945 0 -1.27456 0.7474945 0 -1.458117 0.7474945 0 -1.667858 0.7474945 0 -1.907556 0.7474945 0 -2.181521 0.7474945 0 -2.494678 0.7474945 0 -2.852659 0.7474945 0 -3.261896 0.7474945 0 -3.729748 0.7474945 0 -4.264621 0.7474945 0 -4.876131 0.7474945 0 -5.575266 0.7474945 0 -6.374593 0.7474945 0 -0 0.8539475 0 -0 0.8539475 0 -0 0.8539475 0 -0.002268731 0.8539475 0 -0.07076883 0.8539475 0 -0.1119241 0.8539475 0 -0.1475052 0.8539475 0 -0.1846606 0.8539475 0 -0.2245119 0.8539475 0 -0.2679612 0.8539475 0 -0.3158431 0.8539475 0 -0.3689944 0.8539475 0 -0.4282948 0.8539475 0 -0.494694 0.8539475 0 -0.5692344 0.8539475 0 -0.6530715 0.8539475 0 -0.7474945 0.8539475 0 -0.8539475 0.8539475 0 -0.974052 0.8539475 0 -1.113885 0.8539475 0 -1.27456 0.8539475 0 -1.458117 0.8539475 0 -1.667858 0.8539475 0 -1.907556 0.8539475 0 -2.181521 0.8539475 0 -2.494678 0.8539475 0 -2.852659 0.8539475 0 -3.261896 0.8539475 0 -3.729748 0.8539475 0 -4.264621 0.8539475 0 -4.876131 0.8539475 0 -5.575266 0.8539475 0 -6.374593 0.8539475 0 -0 0.974052 0 -0 0.974052 0 -0 0.974052 0 -0.002268731 0.974052 0 -0.07076883 0.974052 0 -0.1119241 0.974052 0 -0.1475052 0.974052 0 -0.1846606 0.974052 0 -0.2245119 0.974052 0 -0.2679612 0.974052 0 -0.3158431 0.974052 0 -0.3689944 0.974052 0 -0.4282948 0.974052 0 -0.494694 0.974052 0 -0.5692344 0.974052 0 -0.6530715 0.974052 0 -0.7474945 0.974052 0 -0.8539475 0.974052 0 -0.974052 0.974052 0 -1.113885 0.974052 0 -1.27456 0.974052 0 -1.458117 0.974052 0 -1.667858 0.974052 0 -1.907556 0.974052 0 -2.181521 0.974052 0 -2.494678 0.974052 0 -2.852659 0.974052 0 -3.261896 0.974052 0 -3.729748 0.974052 0 -4.264621 0.974052 0 -4.876131 0.974052 0 -5.575266 0.974052 0 -6.374593 0.974052 0 -0 1.113885 0 -0 1.113885 0 -0 1.113885 0 -0.002268731 1.113885 0 -0.07076883 1.113885 0 -0.1119241 1.113885 0 -0.1475052 1.113885 0 -0.1846606 1.113885 0 -0.2245119 1.113885 0 -0.2679612 1.113885 0 -0.3158431 1.113885 0 -0.3689944 1.113885 0 -0.4282948 1.113885 0 -0.494694 1.113885 0 -0.5692344 1.113885 0 -0.6530715 1.113885 0 -0.7474945 1.113885 0 -0.8539475 1.113885 0 -0.974052 1.113885 0 -1.113885 1.113885 0 -1.27456 1.113885 0 -1.458117 1.113885 0 -1.667858 1.113885 0 -1.907556 1.113885 0 -2.181521 1.113885 0 -2.494678 1.113885 0 -2.852659 1.113885 0 -3.261896 1.113885 0 -3.729748 1.113885 0 -4.264621 1.113885 0 -4.876131 1.113885 0 -5.575266 1.113885 0 -6.374593 1.113885 0 -0 1.27456 0 -0 1.27456 0 -0 1.27456 0 -0.002268731 1.27456 0 -0.07076883 1.27456 0 -0.1119241 1.27456 0 -0.1475052 1.27456 0 -0.1846606 1.27456 0 -0.2245119 1.27456 0 -0.2679612 1.27456 0 -0.3158431 1.27456 0 -0.3689944 1.27456 0 -0.4282948 1.27456 0 -0.494694 1.27456 0 -0.5692344 1.27456 0 -0.6530715 1.27456 0 -0.7474945 1.27456 0 -0.8539475 1.27456 0 -0.974052 1.27456 0 -1.113885 1.27456 0 -1.27456 1.27456 0 -1.458117 1.27456 0 -1.667858 1.27456 0 -1.907556 1.27456 0 -2.181521 1.27456 0 -2.494678 1.27456 0 -2.852659 1.27456 0 -3.261896 1.27456 0 -3.729748 1.27456 0 -4.264621 1.27456 0 -4.876131 1.27456 0 -5.575266 1.27456 0 -6.374593 1.27456 0 -0 1.458117 0 -0 1.458117 0 -0 1.458117 0 -0.002268731 1.458117 0 -0.07076883 1.458117 0 -0.1119241 1.458117 0 -0.1475052 1.458117 0 -0.1846606 1.458117 0 -0.2245119 1.458117 0 -0.2679612 1.458117 0 -0.3158431 1.458117 0 -0.3689944 1.458117 0 -0.4282948 1.458117 0 -0.494694 1.458117 0 -0.5692344 1.458117 0 -0.6530715 1.458117 0 -0.7474945 1.458117 0 -0.8539475 1.458117 0 -0.974052 1.458117 0 -1.113885 1.458117 0 -1.27456 1.458117 0 -1.458117 1.458117 0 -1.667858 1.458117 0 -1.907556 1.458117 0 -2.181521 1.458117 0 -2.494678 1.458117 0 -2.852659 1.458117 0 -3.261896 1.458117 0 -3.729748 1.458117 0 -4.264621 1.458117 0 -4.876131 1.458117 0 -5.575266 1.458117 0 -6.374593 1.458117 0 -0 1.667858 0 -0 1.667858 0 -0 1.667858 0 -0.002268731 1.667858 0 -0.07076883 1.667858 0 -0.1119241 1.667858 0 -0.1475052 1.667858 0 -0.1846606 1.667858 0 -0.2245119 1.667858 0 -0.2679612 1.667858 0 -0.3158431 1.667858 0 -0.3689944 1.667858 0 -0.4282948 1.667858 0 -0.494694 1.667858 0 -0.5692344 1.667858 0 -0.6530715 1.667858 0 -0.7474945 1.667858 0 -0.8539475 1.667858 0 -0.974052 1.667858 0 -1.113885 1.667858 0 -1.27456 1.667858 0 -1.458117 1.667858 0 -1.667858 1.667858 0 -1.907556 1.667858 0 -2.181521 1.667858 0 -2.494678 1.667858 0 -2.852659 1.667858 0 -3.261896 1.667858 0 -3.729748 1.667858 0 -4.264621 1.667858 0 -4.876131 1.667858 0 -5.575266 1.667858 0 -6.374593 1.667858 0 -0 1.907556 0 -0 1.907556 0 -0 1.907556 0 -0.002268731 1.907556 0 -0.07076883 1.907556 0 -0.1119241 1.907556 0 -0.1475052 1.907556 0 -0.1846606 1.907556 0 -0.2245119 1.907556 0 -0.2679612 1.907556 0 -0.3158431 1.907556 0 -0.3689944 1.907556 0 -0.4282948 1.907556 0 -0.494694 1.907556 0 -0.5692344 1.907556 0 -0.6530715 1.907556 0 -0.7474945 1.907556 0 -0.8539475 1.907556 0 -0.974052 1.907556 0 -1.113885 1.907556 0 -1.27456 1.907556 0 -1.458117 1.907556 0 -1.667858 1.907556 0 -1.907556 1.907556 0 -2.181521 1.907556 0 -2.494678 1.907556 0 -2.852659 1.907556 0 -3.261896 1.907556 0 -3.729748 1.907556 0 -4.264621 1.907556 0 -4.876131 1.907556 0 -5.575266 1.907556 0 -6.374593 1.907556 0 -0 2.181521 0 -0 2.181521 0 -0 2.181521 0 -0.002268731 2.181521 0 -0.07076883 2.181521 0 -0.1119241 2.181521 0 -0.1475052 2.181521 0 -0.1846606 2.181521 0 -0.2245119 2.181521 0 -0.2679612 2.181521 0 -0.3158431 2.181521 0 -0.3689944 2.181521 0 -0.4282948 2.181521 0 -0.494694 2.181521 0 -0.5692344 2.181521 0 -0.6530715 2.181521 0 -0.7474945 2.181521 0 -0.8539475 2.181521 0 -0.974052 2.181521 0 -1.113885 2.181521 0 -1.27456 2.181521 0 -1.458117 2.181521 0 -1.667858 2.181521 0 -1.907556 2.181521 0 -2.181521 2.181521 0 -2.494678 2.181521 0 -2.852659 2.181521 0 -3.261896 2.181521 0 -3.729748 2.181521 0 -4.264621 2.181521 0 -4.876131 2.181521 0 -5.575266 2.181521 0 -6.374593 2.181521 0 -0 2.494678 0 -0 2.494678 0 -0 2.494678 0 -0.002268731 2.494678 0 -0.07076883 2.494678 0 -0.1119241 2.494678 0 -0.1475052 2.494678 0 -0.1846606 2.494678 0 -0.2245119 2.494678 0 -0.2679612 2.494678 0 -0.3158431 2.494678 0 -0.3689944 2.494678 0 -0.4282948 2.494678 0 -0.494694 2.494678 0 -0.5692344 2.494678 0 -0.6530715 2.494678 0 -0.7474945 2.494678 0 -0.8539475 2.494678 0 -0.974052 2.494678 0 -1.113885 2.494678 0 -1.27456 2.494678 0 -1.458117 2.494678 0 -1.667858 2.494678 0 -1.907556 2.494678 0 -2.181521 2.494678 0 -2.494678 2.494678 0 -2.852659 2.494678 0 -3.261896 2.494678 0 -3.729748 2.494678 0 -4.264621 2.494678 0 -4.876131 2.494678 0 -5.575266 2.494678 0 -6.374593 2.494678 0 -0 2.852659 0 -0 2.852659 0 -0 2.852659 0 -0.002268731 2.852659 0 -0.07076883 2.852659 0 -0.1119241 2.852659 0 -0.1475052 2.852659 0 -0.1846606 2.852659 0 -0.2245119 2.852659 0 -0.2679612 2.852659 0 -0.3158431 2.852659 0 -0.3689944 2.852659 0 -0.4282948 2.852659 0 -0.494694 2.852659 0 -0.5692344 2.852659 0 -0.6530715 2.852659 0 -0.7474945 2.852659 0 -0.8539475 2.852659 0 -0.974052 2.852659 0 -1.113885 2.852659 0 -1.27456 2.852659 0 -1.458117 2.852659 0 -1.667858 2.852659 0 -1.907556 2.852659 0 -2.181521 2.852659 0 -2.494678 2.852659 0 -2.852659 2.852659 0 -3.261896 2.852659 0 -3.729748 2.852659 0 -4.264621 2.852659 0 -4.876131 2.852659 0 -5.575266 2.852659 0 -6.374593 2.852659 0 -0 3.261896 0 -0 3.261896 0 -0 3.261896 0 -0.002268731 3.261896 0 -0.07076883 3.261896 0 -0.1119241 3.261896 0 -0.1475052 3.261896 0 -0.1846606 3.261896 0 -0.2245119 3.261896 0 -0.2679612 3.261896 0 -0.3158431 3.261896 0 -0.3689944 3.261896 0 -0.4282948 3.261896 0 -0.494694 3.261896 0 -0.5692344 3.261896 0 -0.6530715 3.261896 0 -0.7474945 3.261896 0 -0.8539475 3.261896 0 -0.974052 3.261896 0 -1.113885 3.261896 0 -1.27456 3.261896 0 -1.458117 3.261896 0 -1.667858 3.261896 0 -1.907556 3.261896 0 -2.181521 3.261896 0 -2.494678 3.261896 0 -2.852659 3.261896 0 -3.261896 3.261896 0 -3.729748 3.261896 0 -4.264621 3.261896 0 -4.876131 3.261896 0 -5.575266 3.261896 0 -6.374593 3.261896 0 -0 3.729748 0 -0 3.729748 0 -0 3.729748 0 -0.002268731 3.729748 0 -0.07076883 3.729748 0 -0.1119241 3.729748 0 -0.1475052 3.729748 0 -0.1846606 3.729748 0 -0.2245119 3.729748 0 -0.2679612 3.729748 0 -0.3158431 3.729748 0 -0.3689944 3.729748 0 -0.4282948 3.729748 0 -0.494694 3.729748 0 -0.5692344 3.729748 0 -0.6530715 3.729748 0 -0.7474945 3.729748 0 -0.8539475 3.729748 0 -0.974052 3.729748 0 -1.113885 3.729748 0 -1.27456 3.729748 0 -1.458117 3.729748 0 -1.667858 3.729748 0 -1.907556 3.729748 0 -2.181521 3.729748 0 -2.494678 3.729748 0 -2.852659 3.729748 0 -3.261896 3.729748 0 -3.729748 3.729748 0 -4.264621 3.729748 0 -4.876131 3.729748 0 -5.575266 3.729748 0 -6.374593 3.729748 0 -0 4.264621 0 -0 4.264621 0 -0 4.264621 0 -0.002268731 4.264621 0 -0.07076883 4.264621 0 -0.1119241 4.264621 0 -0.1475052 4.264621 0 -0.1846606 4.264621 0 -0.2245119 4.264621 0 -0.2679612 4.264621 0 -0.3158431 4.264621 0 -0.3689944 4.264621 0 -0.4282948 4.264621 0 -0.494694 4.264621 0 -0.5692344 4.264621 0 -0.6530715 4.264621 0 -0.7474945 4.264621 0 -0.8539475 4.264621 0 -0.974052 4.264621 0 -1.113885 4.264621 0 -1.27456 4.264621 0 -1.458117 4.264621 0 -1.667858 4.264621 0 -1.907556 4.264621 0 -2.181521 4.264621 0 -2.494678 4.264621 0 -2.852659 4.264621 0 -3.261896 4.264621 0 -3.729748 4.264621 0 -4.264621 4.264621 0 -4.876131 4.264621 0 -5.575266 4.264621 0 -6.374593 4.264621 0 -0 4.876131 0 -0 4.876131 0 -0 4.876131 0 -0.002268731 4.876131 0 -0.07076883 4.876131 0 -0.1119241 4.876131 0 -0.1475052 4.876131 0 -0.1846606 4.876131 0 -0.2245119 4.876131 0 -0.2679612 4.876131 0 -0.3158431 4.876131 0 -0.3689944 4.876131 0 -0.4282948 4.876131 0 -0.494694 4.876131 0 -0.5692344 4.876131 0 -0.6530715 4.876131 0 -0.7474945 4.876131 0 -0.8539475 4.876131 0 -0.974052 4.876131 0 -1.113885 4.876131 0 -1.27456 4.876131 0 -1.458117 4.876131 0 -1.667858 4.876131 0 -1.907556 4.876131 0 -2.181521 4.876131 0 -2.494678 4.876131 0 -2.852659 4.876131 0 -3.261896 4.876131 0 -3.729748 4.876131 0 -4.264621 4.876131 0 -4.876131 4.876131 0 -5.575266 4.876131 0 -6.374593 4.876131 0 -0 5.575266 0 -0 5.575266 0 -0 5.575266 0 -0.002268731 5.575266 0 -0.07076883 5.575266 0 -0.1119241 5.575266 0 -0.1475052 5.575266 0 -0.1846606 5.575266 0 -0.2245119 5.575266 0 -0.2679612 5.575266 0 -0.3158431 5.575266 0 -0.3689944 5.575266 0 -0.4282948 5.575266 0 -0.494694 5.575266 0 -0.5692344 5.575266 0 -0.6530715 5.575266 0 -0.7474945 5.575266 0 -0.8539475 5.575266 0 -0.974052 5.575266 0 -1.113885 5.575266 0 -1.27456 5.575266 0 -1.458117 5.575266 0 -1.667858 5.575266 0 -1.907556 5.575266 0 -2.181521 5.575266 0 -2.494678 5.575266 0 -2.852659 5.575266 0 -3.261896 5.575266 0 -3.729748 5.575266 0 -4.264621 5.575266 0 -4.876131 5.575266 0 -5.575266 5.575266 0 -6.374593 5.575266 0 -0 6.374593 0 -0 6.374593 0 -0 6.374593 0 -0.002268731 6.374593 0 -0.07076883 6.374593 0 -0.1119241 6.374593 0 -0.1475052 6.374593 0 -0.1846606 6.374593 0 -0.2245119 6.374593 0 -0.2679612 6.374593 0 -0.3158431 6.374593 0 -0.3689944 6.374593 0 -0.4282948 6.374593 0 -0.494694 6.374593 0 -0.5692344 6.374593 0 -0.6530715 6.374593 0 -0.7474945 6.374593 0 -0.8539475 6.374593 0 -0.974052 6.374593 0 -1.113885 6.374593 0 -1.27456 6.374593 0 -1.458117 6.374593 0 -1.667858 6.374593 0 -1.907556 6.374593 0 -2.181521 6.374593 0 -2.494678 6.374593 0 -2.852659 6.374593 0 -3.261896 6.374593 0 -3.729748 6.374593 0 -4.264621 6.374593 0 -4.876131 6.374593 0 -5.575266 6.374593 0 -6.374593 6.374593 0 -0 0 0 -0 0 0 -0 0 0 -0.002268731 0 0 -0.07076883 0 0 -0.1119241 0 0 -0.1475052 0 0 -0.1846606 0 0 -0.2245119 0 0 -0.2679612 0 0 -0.3158431 0 0 -0.3689944 0 0 -0.4282948 0 0 -0.494694 0 0 -0.5692344 0 0 -0.6530715 0 0 -0.7474945 0 0 -0.8539475 0 0 -0.974052 0 0 -1.113885 0 0 -1.27456 0 0 -1.458117 0 0 -1.667858 0 0 -1.907556 0 0 -2.181521 0 0 -2.494678 0 0 -2.852659 0 0 -3.261896 0 0 -3.729748 0 0 -4.264621 0 0 -4.876131 0 0 -5.575266 0 0 -6.374593 0 0 -0 0 0 -0 0 0 -0 0 0 -0.002268731 0 0 -0.07076883 0 0 -0.1119241 0 0 -0.1475052 0 0 -0.1846606 0 0 -0.2245119 0 0 -0.2679612 0 0 -0.3158431 0 0 -0.3689944 0 0 -0.4282948 0 0 -0.494694 0 0 -0.5692344 0 0 -0.6530715 0 0 -0.7474945 0 0 -0.8539475 0 0 -0.974052 0 0 -1.113885 0 0 -1.27456 0 0 -1.458117 0 0 -1.667858 0 0 -1.907556 0 0 -2.181521 0 0 -2.494678 0 0 -2.852659 0 0 -3.261896 0 0 -3.729748 0 0 -4.264621 0 0 -4.876131 0 0 -5.575266 0 0 -6.374593 0 0 -0 0 0 -0 0 0 -0 0 0 -0.002268731 0 0 -0.07076883 0 0 -0.1119241 0 0 -0.1475052 0 0 -0.1846606 0 0 -0.2245119 0 0 -0.2679612 0 0 -0.3158431 0 0 -0.3689944 0 0 -0.4282948 0 0 -0.494694 0 0 -0.5692344 0 0 -0.6530715 0 0 -0.7474945 0 0 -0.8539475 0 0 -0.974052 0 0 -1.113885 0 0 -1.27456 0 0 -1.458117 0 0 -1.667858 0 0 -1.907556 0 0 -2.181521 0 0 -2.494678 0 0 -2.852659 0 0 -3.261896 0 0 -3.729748 0 0 -4.264621 0 0 -4.876131 0 0 -5.575266 0 0 -6.374593 0 0 -0 0.002268731 0 -0 0.002268731 0 -0 0.002268731 0 -0.002268731 0.002268731 0 -0.07076883 0.002268731 0 -0.1119241 0.002268731 0 -0.1475052 0.002268731 0 -0.1846606 0.002268731 0 -0.2245119 0.002268731 0 -0.2679612 0.002268731 0 -0.3158431 0.002268731 0 -0.3689944 0.002268731 0 -0.4282948 0.002268731 0 -0.494694 0.002268731 0 -0.5692344 0.002268731 0 -0.6530715 0.002268731 0 -0.7474945 0.002268731 0 -0.8539475 0.002268731 0 -0.974052 0.002268731 0 -1.113885 0.002268731 0 -1.27456 0.002268731 0 -1.458117 0.002268731 0 -1.667858 0.002268731 0 -1.907556 0.002268731 0 -2.181521 0.002268731 0 -2.494678 0.002268731 0 -2.852659 0.002268731 0 -3.261896 0.002268731 0 -3.729748 0.002268731 0 -4.264621 0.002268731 0 -4.876131 0.002268731 0 -5.575266 0.002268731 0 -6.374593 0.002268731 0 -0 0.07076883 0 -0 0.07076883 0 -0 0.07076883 0 -0.002268731 0.07076883 0 -0.07076883 0.07076883 0 -0.1119241 0.07076883 0 -0.1475052 0.07076883 0 -0.1846606 0.07076883 0 -0.2245119 0.07076883 0 -0.2679612 0.07076883 0 -0.3158431 0.07076883 0 -0.3689944 0.07076883 0 -0.4282948 0.07076883 0 -0.494694 0.07076883 0 -0.5692344 0.07076883 0 -0.6530715 0.07076883 0 -0.7474945 0.07076883 0 -0.8539475 0.07076883 0 -0.974052 0.07076883 0 -1.113885 0.07076883 0 -1.27456 0.07076883 0 -1.458117 0.07076883 0 -1.667858 0.07076883 0 -1.907556 0.07076883 0 -2.181521 0.07076883 0 -2.494678 0.07076883 0 -2.852659 0.07076883 0 -3.261896 0.07076883 0 -3.729748 0.07076883 0 -4.264621 0.07076883 0 -4.876131 0.07076883 0 -5.575266 0.07076883 0 -6.374593 0.07076883 0 -0 0.1119241 0 -0 0.1119241 0 -0 0.1119241 0 -0.002268731 0.1119241 0 -0.07076883 0.1119241 0 -0.1119241 0.1119241 0 -0.1475052 0.1119241 0 -0.1846606 0.1119241 0 -0.2245119 0.1119241 0 -0.2679612 0.1119241 0 -0.3158431 0.1119241 0 -0.3689944 0.1119241 0 -0.4282948 0.1119241 0 -0.494694 0.1119241 0 -0.5692344 0.1119241 0 -0.6530715 0.1119241 0 -0.7474945 0.1119241 0 -0.8539475 0.1119241 0 -0.974052 0.1119241 0 -1.113885 0.1119241 0 -1.27456 0.1119241 0 -1.458117 0.1119241 0 -1.667858 0.1119241 0 -1.907556 0.1119241 0 -2.181521 0.1119241 0 -2.494678 0.1119241 0 -2.852659 0.1119241 0 -3.261896 0.1119241 0 -3.729748 0.1119241 0 -4.264621 0.1119241 0 -4.876131 0.1119241 0 -5.575266 0.1119241 0 -6.374593 0.1119241 0 -0 0.1475052 0 -0 0.1475052 0 -0 0.1475052 0 -0.002268731 0.1475052 0 -0.07076883 0.1475052 0 -0.1119241 0.1475052 0 -0.1475052 0.1475052 0 -0.1846606 0.1475052 0 -0.2245119 0.1475052 0 -0.2679612 0.1475052 0 -0.3158431 0.1475052 0 -0.3689944 0.1475052 0 -0.4282948 0.1475052 0 -0.494694 0.1475052 0 -0.5692344 0.1475052 0 -0.6530715 0.1475052 0 -0.7474945 0.1475052 0 -0.8539475 0.1475052 0 -0.974052 0.1475052 0 -1.113885 0.1475052 0 -1.27456 0.1475052 0 -1.458117 0.1475052 0 -1.667858 0.1475052 0 -1.907556 0.1475052 0 -2.181521 0.1475052 0 -2.494678 0.1475052 0 -2.852659 0.1475052 0 -3.261896 0.1475052 0 -3.729748 0.1475052 0 -4.264621 0.1475052 0 -4.876131 0.1475052 0 -5.575266 0.1475052 0 -6.374593 0.1475052 0 -0 0.1846606 0 -0 0.1846606 0 -0 0.1846606 0 -0.002268731 0.1846606 0 -0.07076883 0.1846606 0 -0.1119241 0.1846606 0 -0.1475052 0.1846606 0 -0.1846606 0.1846606 0 -0.2245119 0.1846606 0 -0.2679612 0.1846606 0 -0.3158431 0.1846606 0 -0.3689944 0.1846606 0 -0.4282948 0.1846606 0 -0.494694 0.1846606 0 -0.5692344 0.1846606 0 -0.6530715 0.1846606 0 -0.7474945 0.1846606 0 -0.8539475 0.1846606 0 -0.974052 0.1846606 0 -1.113885 0.1846606 0 -1.27456 0.1846606 0 -1.458117 0.1846606 0 -1.667858 0.1846606 0 -1.907556 0.1846606 0 -2.181521 0.1846606 0 -2.494678 0.1846606 0 -2.852659 0.1846606 0 -3.261896 0.1846606 0 -3.729748 0.1846606 0 -4.264621 0.1846606 0 -4.876131 0.1846606 0 -5.575266 0.1846606 0 -6.374593 0.1846606 0 -0 0.2245119 0 -0 0.2245119 0 -0 0.2245119 0 -0.002268731 0.2245119 0 -0.07076883 0.2245119 0 -0.1119241 0.2245119 0 -0.1475052 0.2245119 0 -0.1846606 0.2245119 0 -0.2245119 0.2245119 0 -0.2679612 0.2245119 0 -0.3158431 0.2245119 0 -0.3689944 0.2245119 0 -0.4282948 0.2245119 0 -0.494694 0.2245119 0 -0.5692344 0.2245119 0 -0.6530715 0.2245119 0 -0.7474945 0.2245119 0 -0.8539475 0.2245119 0 -0.974052 0.2245119 0 -1.113885 0.2245119 0 -1.27456 0.2245119 0 -1.458117 0.2245119 0 -1.667858 0.2245119 0 -1.907556 0.2245119 0 -2.181521 0.2245119 0 -2.494678 0.2245119 0 -2.852659 0.2245119 0 -3.261896 0.2245119 0 -3.729748 0.2245119 0 -4.264621 0.2245119 0 -4.876131 0.2245119 0 -5.575266 0.2245119 0 -6.374593 0.2245119 0 -0 0.2679612 0 -0 0.2679612 0 -0 0.2679612 0 -0.002268731 0.2679612 0 -0.07076883 0.2679612 0 -0.1119241 0.2679612 0 -0.1475052 0.2679612 0 -0.1846606 0.2679612 0 -0.2245119 0.2679612 0 -0.2679612 0.2679612 0 -0.3158431 0.2679612 0 -0.3689944 0.2679612 0 -0.4282948 0.2679612 0 -0.494694 0.2679612 0 -0.5692344 0.2679612 0 -0.6530715 0.2679612 0 -0.7474945 0.2679612 0 -0.8539475 0.2679612 0 -0.974052 0.2679612 0 -1.113885 0.2679612 0 -1.27456 0.2679612 0 -1.458117 0.2679612 0 -1.667858 0.2679612 0 -1.907556 0.2679612 0 -2.181521 0.2679612 0 -2.494678 0.2679612 0 -2.852659 0.2679612 0 -3.261896 0.2679612 0 -3.729748 0.2679612 0 -4.264621 0.2679612 0 -4.876131 0.2679612 0 -5.575266 0.2679612 0 -6.374593 0.2679612 0 -0 0.3158431 0 -0 0.3158431 0 -0 0.3158431 0 -0.002268731 0.3158431 0 -0.07076883 0.3158431 0 -0.1119241 0.3158431 0 -0.1475052 0.3158431 0 -0.1846606 0.3158431 0 -0.2245119 0.3158431 0 -0.2679612 0.3158431 0 -0.3158431 0.3158431 0 -0.3689944 0.3158431 0 -0.4282948 0.3158431 0 -0.494694 0.3158431 0 -0.5692344 0.3158431 0 -0.6530715 0.3158431 0 -0.7474945 0.3158431 0 -0.8539475 0.3158431 0 -0.974052 0.3158431 0 -1.113885 0.3158431 0 -1.27456 0.3158431 0 -1.458117 0.3158431 0 -1.667858 0.3158431 0 -1.907556 0.3158431 0 -2.181521 0.3158431 0 -2.494678 0.3158431 0 -2.852659 0.3158431 0 -3.261896 0.3158431 0 -3.729748 0.3158431 0 -4.264621 0.3158431 0 -4.876131 0.3158431 0 -5.575266 0.3158431 0 -6.374593 0.3158431 0 -0 0.3689944 0 -0 0.3689944 0 -0 0.3689944 0 -0.002268731 0.3689944 0 -0.07076883 0.3689944 0 -0.1119241 0.3689944 0 -0.1475052 0.3689944 0 -0.1846606 0.3689944 0 -0.2245119 0.3689944 0 -0.2679612 0.3689944 0 -0.3158431 0.3689944 0 -0.3689944 0.3689944 0 -0.4282948 0.3689944 0 -0.494694 0.3689944 0 -0.5692344 0.3689944 0 -0.6530715 0.3689944 0 -0.7474945 0.3689944 0 -0.8539475 0.3689944 0 -0.974052 0.3689944 0 -1.113885 0.3689944 0 -1.27456 0.3689944 0 -1.458117 0.3689944 0 -1.667858 0.3689944 0 -1.907556 0.3689944 0 -2.181521 0.3689944 0 -2.494678 0.3689944 0 -2.852659 0.3689944 0 -3.261896 0.3689944 0 -3.729748 0.3689944 0 -4.264621 0.3689944 0 -4.876131 0.3689944 0 -5.575266 0.3689944 0 -6.374593 0.3689944 0 -0 0.4282948 0 -0 0.4282948 0 -0 0.4282948 0 -0.002268731 0.4282948 0 -0.07076883 0.4282948 0 -0.1119241 0.4282948 0 -0.1475052 0.4282948 0 -0.1846606 0.4282948 0 -0.2245119 0.4282948 0 -0.2679612 0.4282948 0 -0.3158431 0.4282948 0 -0.3689944 0.4282948 0 -0.4282948 0.4282948 0 -0.494694 0.4282948 0 -0.5692344 0.4282948 0 -0.6530715 0.4282948 0 -0.7474945 0.4282948 0 -0.8539475 0.4282948 0 -0.974052 0.4282948 0 -1.113885 0.4282948 0 -1.27456 0.4282948 0 -1.458117 0.4282948 0 -1.667858 0.4282948 0 -1.907556 0.4282948 0 -2.181521 0.4282948 0 -2.494678 0.4282948 0 -2.852659 0.4282948 0 -3.261896 0.4282948 0 -3.729748 0.4282948 0 -4.264621 0.4282948 0 -4.876131 0.4282948 0 -5.575266 0.4282948 0 -6.374593 0.4282948 0 -0 0.494694 0 -0 0.494694 0 -0 0.494694 0 -0.002268731 0.494694 0 -0.07076883 0.494694 0 -0.1119241 0.494694 0 -0.1475052 0.494694 0 -0.1846606 0.494694 0 -0.2245119 0.494694 0 -0.2679612 0.494694 0 -0.3158431 0.494694 0 -0.3689944 0.494694 0 -0.4282948 0.494694 0 -0.494694 0.494694 0 -0.5692344 0.494694 0 -0.6530715 0.494694 0 -0.7474945 0.494694 0 -0.8539475 0.494694 0 -0.974052 0.494694 0 -1.113885 0.494694 0 -1.27456 0.494694 0 -1.458117 0.494694 0 -1.667858 0.494694 0 -1.907556 0.494694 0 -2.181521 0.494694 0 -2.494678 0.494694 0 -2.852659 0.494694 0 -3.261896 0.494694 0 -3.729748 0.494694 0 -4.264621 0.494694 0 -4.876131 0.494694 0 -5.575266 0.494694 0 -6.374593 0.494694 0 -0 0.5692344 0 -0 0.5692344 0 -0 0.5692344 0 -0.002268731 0.5692344 0 -0.07076883 0.5692344 0 -0.1119241 0.5692344 0 -0.1475052 0.5692344 0 -0.1846606 0.5692344 0 -0.2245119 0.5692344 0 -0.2679612 0.5692344 0 -0.3158431 0.5692344 0 -0.3689944 0.5692344 0 -0.4282948 0.5692344 0 -0.494694 0.5692344 0 -0.5692344 0.5692344 0 -0.6530715 0.5692344 0 -0.7474945 0.5692344 0 -0.8539475 0.5692344 0 -0.974052 0.5692344 0 -1.113885 0.5692344 0 -1.27456 0.5692344 0 -1.458117 0.5692344 0 -1.667858 0.5692344 0 -1.907556 0.5692344 0 -2.181521 0.5692344 0 -2.494678 0.5692344 0 -2.852659 0.5692344 0 -3.261896 0.5692344 0 -3.729748 0.5692344 0 -4.264621 0.5692344 0 -4.876131 0.5692344 0 -5.575266 0.5692344 0 -6.374593 0.5692344 0 -0 0.6530715 0 -0 0.6530715 0 -0 0.6530715 0 -0.002268731 0.6530715 0 -0.07076883 0.6530715 0 -0.1119241 0.6530715 0 -0.1475052 0.6530715 0 -0.1846606 0.6530715 0 -0.2245119 0.6530715 0 -0.2679612 0.6530715 0 -0.3158431 0.6530715 0 -0.3689944 0.6530715 0 -0.4282948 0.6530715 0 -0.494694 0.6530715 0 -0.5692344 0.6530715 0 -0.6530715 0.6530715 0 -0.7474945 0.6530715 0 -0.8539475 0.6530715 0 -0.974052 0.6530715 0 -1.113885 0.6530715 0 -1.27456 0.6530715 0 -1.458117 0.6530715 0 -1.667858 0.6530715 0 -1.907556 0.6530715 0 -2.181521 0.6530715 0 -2.494678 0.6530715 0 -2.852659 0.6530715 0 -3.261896 0.6530715 0 -3.729748 0.6530715 0 -4.264621 0.6530715 0 -4.876131 0.6530715 0 -5.575266 0.6530715 0 -6.374593 0.6530715 0 -0 0.7474945 0 -0 0.7474945 0 -0 0.7474945 0 -0.002268731 0.7474945 0 -0.07076883 0.7474945 0 -0.1119241 0.7474945 0 -0.1475052 0.7474945 0 -0.1846606 0.7474945 0 -0.2245119 0.7474945 0 -0.2679612 0.7474945 0 -0.3158431 0.7474945 0 -0.3689944 0.7474945 0 -0.4282948 0.7474945 0 -0.494694 0.7474945 0 -0.5692344 0.7474945 0 -0.6530715 0.7474945 0 -0.7474945 0.7474945 0 -0.8539475 0.7474945 0 -0.974052 0.7474945 0 -1.113885 0.7474945 0 -1.27456 0.7474945 0 -1.458117 0.7474945 0 -1.667858 0.7474945 0 -1.907556 0.7474945 0 -2.181521 0.7474945 0 -2.494678 0.7474945 0 -2.852659 0.7474945 0 -3.261896 0.7474945 0 -3.729748 0.7474945 0 -4.264621 0.7474945 0 -4.876131 0.7474945 0 -5.575266 0.7474945 0 -6.374593 0.7474945 0 -0 0.8539475 0 -0 0.8539475 0 -0 0.8539475 0 -0.002268731 0.8539475 0 -0.07076883 0.8539475 0 -0.1119241 0.8539475 0 -0.1475052 0.8539475 0 -0.1846606 0.8539475 0 -0.2245119 0.8539475 0 -0.2679612 0.8539475 0 -0.3158431 0.8539475 0 -0.3689944 0.8539475 0 -0.4282948 0.8539475 0 -0.494694 0.8539475 0 -0.5692344 0.8539475 0 -0.6530715 0.8539475 0 -0.7474945 0.8539475 0 -0.8539475 0.8539475 0 -0.974052 0.8539475 0 -1.113885 0.8539475 0 -1.27456 0.8539475 0 -1.458117 0.8539475 0 -1.667858 0.8539475 0 -1.907556 0.8539475 0 -2.181521 0.8539475 0 -2.494678 0.8539475 0 -2.852659 0.8539475 0 -3.261896 0.8539475 0 -3.729748 0.8539475 0 -4.264621 0.8539475 0 -4.876131 0.8539475 0 -5.575266 0.8539475 0 -6.374593 0.8539475 0 -0 0.974052 0 -0 0.974052 0 -0 0.974052 0 -0.002268731 0.974052 0 -0.07076883 0.974052 0 -0.1119241 0.974052 0 -0.1475052 0.974052 0 -0.1846606 0.974052 0 -0.2245119 0.974052 0 -0.2679612 0.974052 0 -0.3158431 0.974052 0 -0.3689944 0.974052 0 -0.4282948 0.974052 0 -0.494694 0.974052 0 -0.5692344 0.974052 0 -0.6530715 0.974052 0 -0.7474945 0.974052 0 -0.8539475 0.974052 0 -0.974052 0.974052 0 -1.113885 0.974052 0 -1.27456 0.974052 0 -1.458117 0.974052 0 -1.667858 0.974052 0 -1.907556 0.974052 0 -2.181521 0.974052 0 -2.494678 0.974052 0 -2.852659 0.974052 0 -3.261896 0.974052 0 -3.729748 0.974052 0 -4.264621 0.974052 0 -4.876131 0.974052 0 -5.575266 0.974052 0 -6.374593 0.974052 0 -0 1.113885 0 -0 1.113885 0 -0 1.113885 0 -0.002268731 1.113885 0 -0.07076883 1.113885 0 -0.1119241 1.113885 0 -0.1475052 1.113885 0 -0.1846606 1.113885 0 -0.2245119 1.113885 0 -0.2679612 1.113885 0 -0.3158431 1.113885 0 -0.3689944 1.113885 0 -0.4282948 1.113885 0 -0.494694 1.113885 0 -0.5692344 1.113885 0 -0.6530715 1.113885 0 -0.7474945 1.113885 0 -0.8539475 1.113885 0 -0.974052 1.113885 0 -1.113885 1.113885 0 -1.27456 1.113885 0 -1.458117 1.113885 0 -1.667858 1.113885 0 -1.907556 1.113885 0 -2.181521 1.113885 0 -2.494678 1.113885 0 -2.852659 1.113885 0 -3.261896 1.113885 0 -3.729748 1.113885 0 -4.264621 1.113885 0 -4.876131 1.113885 0 -5.575266 1.113885 0 -6.374593 1.113885 0 -0 1.27456 0 -0 1.27456 0 -0 1.27456 0 -0.002268731 1.27456 0 -0.07076883 1.27456 0 -0.1119241 1.27456 0 -0.1475052 1.27456 0 -0.1846606 1.27456 0 -0.2245119 1.27456 0 -0.2679612 1.27456 0 -0.3158431 1.27456 0 -0.3689944 1.27456 0 -0.4282948 1.27456 0 -0.494694 1.27456 0 -0.5692344 1.27456 0 -0.6530715 1.27456 0 -0.7474945 1.27456 0 -0.8539475 1.27456 0 -0.974052 1.27456 0 -1.113885 1.27456 0 -1.27456 1.27456 0 -1.458117 1.27456 0 -1.667858 1.27456 0 -1.907556 1.27456 0 -2.181521 1.27456 0 -2.494678 1.27456 0 -2.852659 1.27456 0 -3.261896 1.27456 0 -3.729748 1.27456 0 -4.264621 1.27456 0 -4.876131 1.27456 0 -5.575266 1.27456 0 -6.374593 1.27456 0 -0 1.458117 0 -0 1.458117 0 -0 1.458117 0 -0.002268731 1.458117 0 -0.07076883 1.458117 0 -0.1119241 1.458117 0 -0.1475052 1.458117 0 -0.1846606 1.458117 0 -0.2245119 1.458117 0 -0.2679612 1.458117 0 -0.3158431 1.458117 0 -0.3689944 1.458117 0 -0.4282948 1.458117 0 -0.494694 1.458117 0 -0.5692344 1.458117 0 -0.6530715 1.458117 0 -0.7474945 1.458117 0 -0.8539475 1.458117 0 -0.974052 1.458117 0 -1.113885 1.458117 0 -1.27456 1.458117 0 -1.458117 1.458117 0 -1.667858 1.458117 0 -1.907556 1.458117 0 -2.181521 1.458117 0 -2.494678 1.458117 0 -2.852659 1.458117 0 -3.261896 1.458117 0 -3.729748 1.458117 0 -4.264621 1.458117 0 -4.876131 1.458117 0 -5.575266 1.458117 0 -6.374593 1.458117 0 -0 1.667858 0 -0 1.667858 0 -0 1.667858 0 -0.002268731 1.667858 0 -0.07076883 1.667858 0 -0.1119241 1.667858 0 -0.1475052 1.667858 0 -0.1846606 1.667858 0 -0.2245119 1.667858 0 -0.2679612 1.667858 0 -0.3158431 1.667858 0 -0.3689944 1.667858 0 -0.4282948 1.667858 0 -0.494694 1.667858 0 -0.5692344 1.667858 0 -0.6530715 1.667858 0 -0.7474945 1.667858 0 -0.8539475 1.667858 0 -0.974052 1.667858 0 -1.113885 1.667858 0 -1.27456 1.667858 0 -1.458117 1.667858 0 -1.667858 1.667858 0 -1.907556 1.667858 0 -2.181521 1.667858 0 -2.494678 1.667858 0 -2.852659 1.667858 0 -3.261896 1.667858 0 -3.729748 1.667858 0 -4.264621 1.667858 0 -4.876131 1.667858 0 -5.575266 1.667858 0 -6.374593 1.667858 0 -0 1.907556 0 -0 1.907556 0 -0 1.907556 0 -0.002268731 1.907556 0 -0.07076883 1.907556 0 -0.1119241 1.907556 0 -0.1475052 1.907556 0 -0.1846606 1.907556 0 -0.2245119 1.907556 0 -0.2679612 1.907556 0 -0.3158431 1.907556 0 -0.3689944 1.907556 0 -0.4282948 1.907556 0 -0.494694 1.907556 0 -0.5692344 1.907556 0 -0.6530715 1.907556 0 -0.7474945 1.907556 0 -0.8539475 1.907556 0 -0.974052 1.907556 0 -1.113885 1.907556 0 -1.27456 1.907556 0 -1.458117 1.907556 0 -1.667858 1.907556 0 -1.907556 1.907556 0 -2.181521 1.907556 0 -2.494678 1.907556 0 -2.852659 1.907556 0 -3.261896 1.907556 0 -3.729748 1.907556 0 -4.264621 1.907556 0 -4.876131 1.907556 0 -5.575266 1.907556 0 -6.374593 1.907556 0 -0 2.181521 0 -0 2.181521 0 -0 2.181521 0 -0.002268731 2.181521 0 -0.07076883 2.181521 0 -0.1119241 2.181521 0 -0.1475052 2.181521 0 -0.1846606 2.181521 0 -0.2245119 2.181521 0 -0.2679612 2.181521 0 -0.3158431 2.181521 0 -0.3689944 2.181521 0 -0.4282948 2.181521 0 -0.494694 2.181521 0 -0.5692344 2.181521 0 -0.6530715 2.181521 0 -0.7474945 2.181521 0 -0.8539475 2.181521 0 -0.974052 2.181521 0 -1.113885 2.181521 0 -1.27456 2.181521 0 -1.458117 2.181521 0 -1.667858 2.181521 0 -1.907556 2.181521 0 -2.181521 2.181521 0 -2.494678 2.181521 0 -2.852659 2.181521 0 -3.261896 2.181521 0 -3.729748 2.181521 0 -4.264621 2.181521 0 -4.876131 2.181521 0 -5.575266 2.181521 0 -6.374593 2.181521 0 -0 2.494678 0 -0 2.494678 0 -0 2.494678 0 -0.002268731 2.494678 0 -0.07076883 2.494678 0 -0.1119241 2.494678 0 -0.1475052 2.494678 0 -0.1846606 2.494678 0 -0.2245119 2.494678 0 -0.2679612 2.494678 0 -0.3158431 2.494678 0 -0.3689944 2.494678 0 -0.4282948 2.494678 0 -0.494694 2.494678 0 -0.5692344 2.494678 0 -0.6530715 2.494678 0 -0.7474945 2.494678 0 -0.8539475 2.494678 0 -0.974052 2.494678 0 -1.113885 2.494678 0 -1.27456 2.494678 0 -1.458117 2.494678 0 -1.667858 2.494678 0 -1.907556 2.494678 0 -2.181521 2.494678 0 -2.494678 2.494678 0 -2.852659 2.494678 0 -3.261896 2.494678 0 -3.729748 2.494678 0 -4.264621 2.494678 0 -4.876131 2.494678 0 -5.575266 2.494678 0 -6.374593 2.494678 0 -0 2.852659 0 -0 2.852659 0 -0 2.852659 0 -0.002268731 2.852659 0 -0.07076883 2.852659 0 -0.1119241 2.852659 0 -0.1475052 2.852659 0 -0.1846606 2.852659 0 -0.2245119 2.852659 0 -0.2679612 2.852659 0 -0.3158431 2.852659 0 -0.3689944 2.852659 0 -0.4282948 2.852659 0 -0.494694 2.852659 0 -0.5692344 2.852659 0 -0.6530715 2.852659 0 -0.7474945 2.852659 0 -0.8539475 2.852659 0 -0.974052 2.852659 0 -1.113885 2.852659 0 -1.27456 2.852659 0 -1.458117 2.852659 0 -1.667858 2.852659 0 -1.907556 2.852659 0 -2.181521 2.852659 0 -2.494678 2.852659 0 -2.852659 2.852659 0 -3.261896 2.852659 0 -3.729748 2.852659 0 -4.264621 2.852659 0 -4.876131 2.852659 0 -5.575266 2.852659 0 -6.374593 2.852659 0 -0 3.261896 0 -0 3.261896 0 -0 3.261896 0 -0.002268731 3.261896 0 -0.07076883 3.261896 0 -0.1119241 3.261896 0 -0.1475052 3.261896 0 -0.1846606 3.261896 0 -0.2245119 3.261896 0 -0.2679612 3.261896 0 -0.3158431 3.261896 0 -0.3689944 3.261896 0 -0.4282948 3.261896 0 -0.494694 3.261896 0 -0.5692344 3.261896 0 -0.6530715 3.261896 0 -0.7474945 3.261896 0 -0.8539475 3.261896 0 -0.974052 3.261896 0 -1.113885 3.261896 0 -1.27456 3.261896 0 -1.458117 3.261896 0 -1.667858 3.261896 0 -1.907556 3.261896 0 -2.181521 3.261896 0 -2.494678 3.261896 0 -2.852659 3.261896 0 -3.261896 3.261896 0 -3.729748 3.261896 0 -4.264621 3.261896 0 -4.876131 3.261896 0 -5.575266 3.261896 0 -6.374593 3.261896 0 -0 3.729748 0 -0 3.729748 0 -0 3.729748 0 -0.002268731 3.729748 0 -0.07076883 3.729748 0 -0.1119241 3.729748 0 -0.1475052 3.729748 0 -0.1846606 3.729748 0 -0.2245119 3.729748 0 -0.2679612 3.729748 0 -0.3158431 3.729748 0 -0.3689944 3.729748 0 -0.4282948 3.729748 0 -0.494694 3.729748 0 -0.5692344 3.729748 0 -0.6530715 3.729748 0 -0.7474945 3.729748 0 -0.8539475 3.729748 0 -0.974052 3.729748 0 -1.113885 3.729748 0 -1.27456 3.729748 0 -1.458117 3.729748 0 -1.667858 3.729748 0 -1.907556 3.729748 0 -2.181521 3.729748 0 -2.494678 3.729748 0 -2.852659 3.729748 0 -3.261896 3.729748 0 -3.729748 3.729748 0 -4.264621 3.729748 0 -4.876131 3.729748 0 -5.575266 3.729748 0 -6.374593 3.729748 0 -0 4.264621 0 -0 4.264621 0 -0 4.264621 0 -0.002268731 4.264621 0 -0.07076883 4.264621 0 -0.1119241 4.264621 0 -0.1475052 4.264621 0 -0.1846606 4.264621 0 -0.2245119 4.264621 0 -0.2679612 4.264621 0 -0.3158431 4.264621 0 -0.3689944 4.264621 0 -0.4282948 4.264621 0 -0.494694 4.264621 0 -0.5692344 4.264621 0 -0.6530715 4.264621 0 -0.7474945 4.264621 0 -0.8539475 4.264621 0 -0.974052 4.264621 0 -1.113885 4.264621 0 -1.27456 4.264621 0 -1.458117 4.264621 0 -1.667858 4.264621 0 -1.907556 4.264621 0 -2.181521 4.264621 0 -2.494678 4.264621 0 -2.852659 4.264621 0 -3.261896 4.264621 0 -3.729748 4.264621 0 -4.264621 4.264621 0 -4.876131 4.264621 0 -5.575266 4.264621 0 -6.374593 4.264621 0 -0 4.876131 0 -0 4.876131 0 -0 4.876131 0 -0.002268731 4.876131 0 -0.07076883 4.876131 0 -0.1119241 4.876131 0 -0.1475052 4.876131 0 -0.1846606 4.876131 0 -0.2245119 4.876131 0 -0.2679612 4.876131 0 -0.3158431 4.876131 0 -0.3689944 4.876131 0 -0.4282948 4.876131 0 -0.494694 4.876131 0 -0.5692344 4.876131 0 -0.6530715 4.876131 0 -0.7474945 4.876131 0 -0.8539475 4.876131 0 -0.974052 4.876131 0 -1.113885 4.876131 0 -1.27456 4.876131 0 -1.458117 4.876131 0 -1.667858 4.876131 0 -1.907556 4.876131 0 -2.181521 4.876131 0 -2.494678 4.876131 0 -2.852659 4.876131 0 -3.261896 4.876131 0 -3.729748 4.876131 0 -4.264621 4.876131 0 -4.876131 4.876131 0 -5.575266 4.876131 0 -6.374593 4.876131 0 -0 5.575266 0 -0 5.575266 0 -0 5.575266 0 -0.002268731 5.575266 0 -0.07076883 5.575266 0 -0.1119241 5.575266 0 -0.1475052 5.575266 0 -0.1846606 5.575266 0 -0.2245119 5.575266 0 -0.2679612 5.575266 0 -0.3158431 5.575266 0 -0.3689944 5.575266 0 -0.4282948 5.575266 0 -0.494694 5.575266 0 -0.5692344 5.575266 0 -0.6530715 5.575266 0 -0.7474945 5.575266 0 -0.8539475 5.575266 0 -0.974052 5.575266 0 -1.113885 5.575266 0 -1.27456 5.575266 0 -1.458117 5.575266 0 -1.667858 5.575266 0 -1.907556 5.575266 0 -2.181521 5.575266 0 -2.494678 5.575266 0 -2.852659 5.575266 0 -3.261896 5.575266 0 -3.729748 5.575266 0 -4.264621 5.575266 0 -4.876131 5.575266 0 -5.575266 5.575266 0 -6.374593 5.575266 0 -0 6.374593 0 -0 6.374593 0 -0 6.374593 0 -0.002268731 6.374593 0 -0.07076883 6.374593 0 -0.1119241 6.374593 0 -0.1475052 6.374593 0 -0.1846606 6.374593 0 -0.2245119 6.374593 0 -0.2679612 6.374593 0 -0.3158431 6.374593 0 -0.3689944 6.374593 0 -0.4282948 6.374593 0 -0.494694 6.374593 0 -0.5692344 6.374593 0 -0.6530715 6.374593 0 -0.7474945 6.374593 0 -0.8539475 6.374593 0 -0.974052 6.374593 0 -1.113885 6.374593 0 -1.27456 6.374593 0 -1.458117 6.374593 0 -1.667858 6.374593 0 -1.907556 6.374593 0 -2.181521 6.374593 0 -2.494678 6.374593 0 -2.852659 6.374593 0 -3.261896 6.374593 0 -3.729748 6.374593 0 -4.264621 6.374593 0 -4.876131 6.374593 0 -5.575266 6.374593 0 -6.374593 6.374593 0 -0 0 0.002268731 -0 0 0.002268731 -0 0 0.002268731 -0.002268731 0 0.002268731 -0.07076883 0 0.002268731 -0.1119241 0 0.002268731 -0.1475052 0 0.002268731 -0.1846606 0 0.002268731 -0.2245119 0 0.002268731 -0.2679612 0 0.002268731 -0.3158431 0 0.002268731 -0.3689944 0 0.002268731 -0.4282948 0 0.002268731 -0.494694 0 0.002268731 -0.5692344 0 0.002268731 -0.6530715 0 0.002268731 -0.7474945 0 0.002268731 -0.8539475 0 0.002268731 -0.974052 0 0.002268731 -1.113885 0 0.002268731 -1.27456 0 0.002268731 -1.458117 0 0.002268731 -1.667858 0 0.002268731 -1.907556 0 0.002268731 -2.181521 0 0.002268731 -2.494678 0 0.002268731 -2.852659 0 0.002268731 -3.261896 0 0.002268731 -3.729748 0 0.002268731 -4.264621 0 0.002268731 -4.876131 0 0.002268731 -5.575266 0 0.002268731 -6.374593 0 0.002268731 -0 0 0.002268731 -0 0 0.002268731 -0 0 0.002268731 -0.002268731 0 0.002268731 -0.07076883 0 0.002268731 -0.1119241 0 0.002268731 -0.1475052 0 0.002268731 -0.1846606 0 0.002268731 -0.2245119 0 0.002268731 -0.2679612 0 0.002268731 -0.3158431 0 0.002268731 -0.3689944 0 0.002268731 -0.4282948 0 0.002268731 -0.494694 0 0.002268731 -0.5692344 0 0.002268731 -0.6530715 0 0.002268731 -0.7474945 0 0.002268731 -0.8539475 0 0.002268731 -0.974052 0 0.002268731 -1.113885 0 0.002268731 -1.27456 0 0.002268731 -1.458117 0 0.002268731 -1.667858 0 0.002268731 -1.907556 0 0.002268731 -2.181521 0 0.002268731 -2.494678 0 0.002268731 -2.852659 0 0.002268731 -3.261896 0 0.002268731 -3.729748 0 0.002268731 -4.264621 0 0.002268731 -4.876131 0 0.002268731 -5.575266 0 0.002268731 -6.374593 0 0.002268731 -0 0 0.002268731 -0 0 0.002268731 -0 0 0.002268731 -0.002268731 0 0.002268731 -0.07076883 0 0.002268731 -0.1119241 0 0.002268731 -0.1475052 0 0.002268731 -0.1846606 0 0.002268731 -0.2245119 0 0.002268731 -0.2679612 0 0.002268731 -0.3158431 0 0.002268731 -0.3689944 0 0.002268731 -0.4282948 0 0.002268731 -0.494694 0 0.002268731 -0.5692344 0 0.002268731 -0.6530715 0 0.002268731 -0.7474945 0 0.002268731 -0.8539475 0 0.002268731 -0.974052 0 0.002268731 -1.113885 0 0.002268731 -1.27456 0 0.002268731 -1.458117 0 0.002268731 -1.667858 0 0.002268731 -1.907556 0 0.002268731 -2.181521 0 0.002268731 -2.494678 0 0.002268731 -2.852659 0 0.002268731 -3.261896 0 0.002268731 -3.729748 0 0.002268731 -4.264621 0 0.002268731 -4.876131 0 0.002268731 -5.575266 0 0.002268731 -6.374593 0 0.002268731 -0 0.002268731 0.002268731 -0 0.002268731 0.002268731 -0 0.002268731 0.002268731 -0.002268731 0.002268731 0.002268731 -0.07076883 0.002268731 0.002268731 -0.1119241 0.002268731 0.002268731 -0.1475052 0.002268731 0.002268731 -0.1846606 0.002268731 0.002268731 -0.2245119 0.002268731 0.002268731 -0.2679612 0.002268731 0.002268731 -0.3158431 0.002268731 0.002268731 -0.3689944 0.002268731 0.002268731 -0.4282948 0.002268731 0.002268731 -0.494694 0.002268731 0.002268731 -0.5692344 0.002268731 0.002268731 -0.6530715 0.002268731 0.002268731 -0.7474945 0.002268731 0.002268731 -0.8539475 0.002268731 0.002268731 -0.974052 0.002268731 0.002268731 -1.113885 0.002268731 0.002268731 -1.27456 0.002268731 0.002268731 -1.458117 0.002268731 0.002268731 -1.667858 0.002268731 0.002268731 -1.907556 0.002268731 0.002268731 -2.181521 0.002268731 0.002268731 -2.494678 0.002268731 0.002268731 -2.852659 0.002268731 0.002268731 -3.261896 0.002268731 0.002268731 -3.729748 0.002268731 0.002268731 -4.264621 0.002268731 0.002268731 -4.876131 0.002268731 0.002268731 -5.575266 0.002268731 0.002268731 -6.374593 0.002268731 0.002268731 -0 0.07076883 0.002268731 -0 0.07076883 0.002268731 -0 0.07076883 0.002268731 -0.002268731 0.07076883 0.002268731 -0.07076883 0.07076883 0.002268731 -0.1119241 0.07076883 0.002268731 -0.1475052 0.07076883 0.002268731 -0.1846606 0.07076883 0.002268731 -0.2245119 0.07076883 0.002268731 -0.2679612 0.07076883 0.002268731 -0.3158431 0.07076883 0.002268731 -0.3689944 0.07076883 0.002268731 -0.4282948 0.07076883 0.002268731 -0.494694 0.07076883 0.002268731 -0.5692344 0.07076883 0.002268731 -0.6530715 0.07076883 0.002268731 -0.7474945 0.07076883 0.002268731 -0.8539475 0.07076883 0.002268731 -0.974052 0.07076883 0.002268731 -1.113885 0.07076883 0.002268731 -1.27456 0.07076883 0.002268731 -1.458117 0.07076883 0.002268731 -1.667858 0.07076883 0.002268731 -1.907556 0.07076883 0.002268731 -2.181521 0.07076883 0.002268731 -2.494678 0.07076883 0.002268731 -2.852659 0.07076883 0.002268731 -3.261896 0.07076883 0.002268731 -3.729748 0.07076883 0.002268731 -4.264621 0.07076883 0.002268731 -4.876131 0.07076883 0.002268731 -5.575266 0.07076883 0.002268731 -6.374593 0.07076883 0.002268731 -0 0.1119241 0.002268731 -0 0.1119241 0.002268731 -0 0.1119241 0.002268731 -0.002268731 0.1119241 0.002268731 -0.07076883 0.1119241 0.002268731 -0.1119241 0.1119241 0.002268731 -0.1475052 0.1119241 0.002268731 -0.1846606 0.1119241 0.002268731 -0.2245119 0.1119241 0.002268731 -0.2679612 0.1119241 0.002268731 -0.3158431 0.1119241 0.002268731 -0.3689944 0.1119241 0.002268731 -0.4282948 0.1119241 0.002268731 -0.494694 0.1119241 0.002268731 -0.5692344 0.1119241 0.002268731 -0.6530715 0.1119241 0.002268731 -0.7474945 0.1119241 0.002268731 -0.8539475 0.1119241 0.002268731 -0.974052 0.1119241 0.002268731 -1.113885 0.1119241 0.002268731 -1.27456 0.1119241 0.002268731 -1.458117 0.1119241 0.002268731 -1.667858 0.1119241 0.002268731 -1.907556 0.1119241 0.002268731 -2.181521 0.1119241 0.002268731 -2.494678 0.1119241 0.002268731 -2.852659 0.1119241 0.002268731 -3.261896 0.1119241 0.002268731 -3.729748 0.1119241 0.002268731 -4.264621 0.1119241 0.002268731 -4.876131 0.1119241 0.002268731 -5.575266 0.1119241 0.002268731 -6.374593 0.1119241 0.002268731 -0 0.1475052 0.002268731 -0 0.1475052 0.002268731 -0 0.1475052 0.002268731 -0.002268731 0.1475052 0.002268731 -0.07076883 0.1475052 0.002268731 -0.1119241 0.1475052 0.002268731 -0.1475052 0.1475052 0.002268731 -0.1846606 0.1475052 0.002268731 -0.2245119 0.1475052 0.002268731 -0.2679612 0.1475052 0.002268731 -0.3158431 0.1475052 0.002268731 -0.3689944 0.1475052 0.002268731 -0.4282948 0.1475052 0.002268731 -0.494694 0.1475052 0.002268731 -0.5692344 0.1475052 0.002268731 -0.6530715 0.1475052 0.002268731 -0.7474945 0.1475052 0.002268731 -0.8539475 0.1475052 0.002268731 -0.974052 0.1475052 0.002268731 -1.113885 0.1475052 0.002268731 -1.27456 0.1475052 0.002268731 -1.458117 0.1475052 0.002268731 -1.667858 0.1475052 0.002268731 -1.907556 0.1475052 0.002268731 -2.181521 0.1475052 0.002268731 -2.494678 0.1475052 0.002268731 -2.852659 0.1475052 0.002268731 -3.261896 0.1475052 0.002268731 -3.729748 0.1475052 0.002268731 -4.264621 0.1475052 0.002268731 -4.876131 0.1475052 0.002268731 -5.575266 0.1475052 0.002268731 -6.374593 0.1475052 0.002268731 -0 0.1846606 0.002268731 -0 0.1846606 0.002268731 -0 0.1846606 0.002268731 -0.002268731 0.1846606 0.002268731 -0.07076883 0.1846606 0.002268731 -0.1119241 0.1846606 0.002268731 -0.1475052 0.1846606 0.002268731 -0.1846606 0.1846606 0.002268731 -0.2245119 0.1846606 0.002268731 -0.2679612 0.1846606 0.002268731 -0.3158431 0.1846606 0.002268731 -0.3689944 0.1846606 0.002268731 -0.4282948 0.1846606 0.002268731 -0.494694 0.1846606 0.002268731 -0.5692344 0.1846606 0.002268731 -0.6530715 0.1846606 0.002268731 -0.7474945 0.1846606 0.002268731 -0.8539475 0.1846606 0.002268731 -0.974052 0.1846606 0.002268731 -1.113885 0.1846606 0.002268731 -1.27456 0.1846606 0.002268731 -1.458117 0.1846606 0.002268731 -1.667858 0.1846606 0.002268731 -1.907556 0.1846606 0.002268731 -2.181521 0.1846606 0.002268731 -2.494678 0.1846606 0.002268731 -2.852659 0.1846606 0.002268731 -3.261896 0.1846606 0.002268731 -3.729748 0.1846606 0.002268731 -4.264621 0.1846606 0.002268731 -4.876131 0.1846606 0.002268731 -5.575266 0.1846606 0.002268731 -6.374593 0.1846606 0.002268731 -0 0.2245119 0.002268731 -0 0.2245119 0.002268731 -0 0.2245119 0.002268731 -0.002268731 0.2245119 0.002268731 -0.07076883 0.2245119 0.002268731 -0.1119241 0.2245119 0.002268731 -0.1475052 0.2245119 0.002268731 -0.1846606 0.2245119 0.002268731 -0.2245119 0.2245119 0.002268731 -0.2679612 0.2245119 0.002268731 -0.3158431 0.2245119 0.002268731 -0.3689944 0.2245119 0.002268731 -0.4282948 0.2245119 0.002268731 -0.494694 0.2245119 0.002268731 -0.5692344 0.2245119 0.002268731 -0.6530715 0.2245119 0.002268731 -0.7474945 0.2245119 0.002268731 -0.8539475 0.2245119 0.002268731 -0.974052 0.2245119 0.002268731 -1.113885 0.2245119 0.002268731 -1.27456 0.2245119 0.002268731 -1.458117 0.2245119 0.002268731 -1.667858 0.2245119 0.002268731 -1.907556 0.2245119 0.002268731 -2.181521 0.2245119 0.002268731 -2.494678 0.2245119 0.002268731 -2.852659 0.2245119 0.002268731 -3.261896 0.2245119 0.002268731 -3.729748 0.2245119 0.002268731 -4.264621 0.2245119 0.002268731 -4.876131 0.2245119 0.002268731 -5.575266 0.2245119 0.002268731 -6.374593 0.2245119 0.002268731 -0 0.2679612 0.002268731 -0 0.2679612 0.002268731 -0 0.2679612 0.002268731 -0.002268731 0.2679612 0.002268731 -0.07076883 0.2679612 0.002268731 -0.1119241 0.2679612 0.002268731 -0.1475052 0.2679612 0.002268731 -0.1846606 0.2679612 0.002268731 -0.2245119 0.2679612 0.002268731 -0.2679612 0.2679612 0.002268731 -0.3158431 0.2679612 0.002268731 -0.3689944 0.2679612 0.002268731 -0.4282948 0.2679612 0.002268731 -0.494694 0.2679612 0.002268731 -0.5692344 0.2679612 0.002268731 -0.6530715 0.2679612 0.002268731 -0.7474945 0.2679612 0.002268731 -0.8539475 0.2679612 0.002268731 -0.974052 0.2679612 0.002268731 -1.113885 0.2679612 0.002268731 -1.27456 0.2679612 0.002268731 -1.458117 0.2679612 0.002268731 -1.667858 0.2679612 0.002268731 -1.907556 0.2679612 0.002268731 -2.181521 0.2679612 0.002268731 -2.494678 0.2679612 0.002268731 -2.852659 0.2679612 0.002268731 -3.261896 0.2679612 0.002268731 -3.729748 0.2679612 0.002268731 -4.264621 0.2679612 0.002268731 -4.876131 0.2679612 0.002268731 -5.575266 0.2679612 0.002268731 -6.374593 0.2679612 0.002268731 -0 0.3158431 0.002268731 -0 0.3158431 0.002268731 -0 0.3158431 0.002268731 -0.002268731 0.3158431 0.002268731 -0.07076883 0.3158431 0.002268731 -0.1119241 0.3158431 0.002268731 -0.1475052 0.3158431 0.002268731 -0.1846606 0.3158431 0.002268731 -0.2245119 0.3158431 0.002268731 -0.2679612 0.3158431 0.002268731 -0.3158431 0.3158431 0.002268731 -0.3689944 0.3158431 0.002268731 -0.4282948 0.3158431 0.002268731 -0.494694 0.3158431 0.002268731 -0.5692344 0.3158431 0.002268731 -0.6530715 0.3158431 0.002268731 -0.7474945 0.3158431 0.002268731 -0.8539475 0.3158431 0.002268731 -0.974052 0.3158431 0.002268731 -1.113885 0.3158431 0.002268731 -1.27456 0.3158431 0.002268731 -1.458117 0.3158431 0.002268731 -1.667858 0.3158431 0.002268731 -1.907556 0.3158431 0.002268731 -2.181521 0.3158431 0.002268731 -2.494678 0.3158431 0.002268731 -2.852659 0.3158431 0.002268731 -3.261896 0.3158431 0.002268731 -3.729748 0.3158431 0.002268731 -4.264621 0.3158431 0.002268731 -4.876131 0.3158431 0.002268731 -5.575266 0.3158431 0.002268731 -6.374593 0.3158431 0.002268731 -0 0.3689944 0.002268731 -0 0.3689944 0.002268731 -0 0.3689944 0.002268731 -0.002268731 0.3689944 0.002268731 -0.07076883 0.3689944 0.002268731 -0.1119241 0.3689944 0.002268731 -0.1475052 0.3689944 0.002268731 -0.1846606 0.3689944 0.002268731 -0.2245119 0.3689944 0.002268731 -0.2679612 0.3689944 0.002268731 -0.3158431 0.3689944 0.002268731 -0.3689944 0.3689944 0.002268731 -0.4282948 0.3689944 0.002268731 -0.494694 0.3689944 0.002268731 -0.5692344 0.3689944 0.002268731 -0.6530715 0.3689944 0.002268731 -0.7474945 0.3689944 0.002268731 -0.8539475 0.3689944 0.002268731 -0.974052 0.3689944 0.002268731 -1.113885 0.3689944 0.002268731 -1.27456 0.3689944 0.002268731 -1.458117 0.3689944 0.002268731 -1.667858 0.3689944 0.002268731 -1.907556 0.3689944 0.002268731 -2.181521 0.3689944 0.002268731 -2.494678 0.3689944 0.002268731 -2.852659 0.3689944 0.002268731 -3.261896 0.3689944 0.002268731 -3.729748 0.3689944 0.002268731 -4.264621 0.3689944 0.002268731 -4.876131 0.3689944 0.002268731 -5.575266 0.3689944 0.002268731 -6.374593 0.3689944 0.002268731 -0 0.4282948 0.002268731 -0 0.4282948 0.002268731 -0 0.4282948 0.002268731 -0.002268731 0.4282948 0.002268731 -0.07076883 0.4282948 0.002268731 -0.1119241 0.4282948 0.002268731 -0.1475052 0.4282948 0.002268731 -0.1846606 0.4282948 0.002268731 -0.2245119 0.4282948 0.002268731 -0.2679612 0.4282948 0.002268731 -0.3158431 0.4282948 0.002268731 -0.3689944 0.4282948 0.002268731 -0.4282948 0.4282948 0.002268731 -0.494694 0.4282948 0.002268731 -0.5692344 0.4282948 0.002268731 -0.6530715 0.4282948 0.002268731 -0.7474945 0.4282948 0.002268731 -0.8539475 0.4282948 0.002268731 -0.974052 0.4282948 0.002268731 -1.113885 0.4282948 0.002268731 -1.27456 0.4282948 0.002268731 -1.458117 0.4282948 0.002268731 -1.667858 0.4282948 0.002268731 -1.907556 0.4282948 0.002268731 -2.181521 0.4282948 0.002268731 -2.494678 0.4282948 0.002268731 -2.852659 0.4282948 0.002268731 -3.261896 0.4282948 0.002268731 -3.729748 0.4282948 0.002268731 -4.264621 0.4282948 0.002268731 -4.876131 0.4282948 0.002268731 -5.575266 0.4282948 0.002268731 -6.374593 0.4282948 0.002268731 -0 0.494694 0.002268731 -0 0.494694 0.002268731 -0 0.494694 0.002268731 -0.002268731 0.494694 0.002268731 -0.07076883 0.494694 0.002268731 -0.1119241 0.494694 0.002268731 -0.1475052 0.494694 0.002268731 -0.1846606 0.494694 0.002268731 -0.2245119 0.494694 0.002268731 -0.2679612 0.494694 0.002268731 -0.3158431 0.494694 0.002268731 -0.3689944 0.494694 0.002268731 -0.4282948 0.494694 0.002268731 -0.494694 0.494694 0.002268731 -0.5692344 0.494694 0.002268731 -0.6530715 0.494694 0.002268731 -0.7474945 0.494694 0.002268731 -0.8539475 0.494694 0.002268731 -0.974052 0.494694 0.002268731 -1.113885 0.494694 0.002268731 -1.27456 0.494694 0.002268731 -1.458117 0.494694 0.002268731 -1.667858 0.494694 0.002268731 -1.907556 0.494694 0.002268731 -2.181521 0.494694 0.002268731 -2.494678 0.494694 0.002268731 -2.852659 0.494694 0.002268731 -3.261896 0.494694 0.002268731 -3.729748 0.494694 0.002268731 -4.264621 0.494694 0.002268731 -4.876131 0.494694 0.002268731 -5.575266 0.494694 0.002268731 -6.374593 0.494694 0.002268731 -0 0.5692344 0.002268731 -0 0.5692344 0.002268731 -0 0.5692344 0.002268731 -0.002268731 0.5692344 0.002268731 -0.07076883 0.5692344 0.002268731 -0.1119241 0.5692344 0.002268731 -0.1475052 0.5692344 0.002268731 -0.1846606 0.5692344 0.002268731 -0.2245119 0.5692344 0.002268731 -0.2679612 0.5692344 0.002268731 -0.3158431 0.5692344 0.002268731 -0.3689944 0.5692344 0.002268731 -0.4282948 0.5692344 0.002268731 -0.494694 0.5692344 0.002268731 -0.5692344 0.5692344 0.002268731 -0.6530715 0.5692344 0.002268731 -0.7474945 0.5692344 0.002268731 -0.8539475 0.5692344 0.002268731 -0.974052 0.5692344 0.002268731 -1.113885 0.5692344 0.002268731 -1.27456 0.5692344 0.002268731 -1.458117 0.5692344 0.002268731 -1.667858 0.5692344 0.002268731 -1.907556 0.5692344 0.002268731 -2.181521 0.5692344 0.002268731 -2.494678 0.5692344 0.002268731 -2.852659 0.5692344 0.002268731 -3.261896 0.5692344 0.002268731 -3.729748 0.5692344 0.002268731 -4.264621 0.5692344 0.002268731 -4.876131 0.5692344 0.002268731 -5.575266 0.5692344 0.002268731 -6.374593 0.5692344 0.002268731 -0 0.6530715 0.002268731 -0 0.6530715 0.002268731 -0 0.6530715 0.002268731 -0.002268731 0.6530715 0.002268731 -0.07076883 0.6530715 0.002268731 -0.1119241 0.6530715 0.002268731 -0.1475052 0.6530715 0.002268731 -0.1846606 0.6530715 0.002268731 -0.2245119 0.6530715 0.002268731 -0.2679612 0.6530715 0.002268731 -0.3158431 0.6530715 0.002268731 -0.3689944 0.6530715 0.002268731 -0.4282948 0.6530715 0.002268731 -0.494694 0.6530715 0.002268731 -0.5692344 0.6530715 0.002268731 -0.6530715 0.6530715 0.002268731 -0.7474945 0.6530715 0.002268731 -0.8539475 0.6530715 0.002268731 -0.974052 0.6530715 0.002268731 -1.113885 0.6530715 0.002268731 -1.27456 0.6530715 0.002268731 -1.458117 0.6530715 0.002268731 -1.667858 0.6530715 0.002268731 -1.907556 0.6530715 0.002268731 -2.181521 0.6530715 0.002268731 -2.494678 0.6530715 0.002268731 -2.852659 0.6530715 0.002268731 -3.261896 0.6530715 0.002268731 -3.729748 0.6530715 0.002268731 -4.264621 0.6530715 0.002268731 -4.876131 0.6530715 0.002268731 -5.575266 0.6530715 0.002268731 -6.374593 0.6530715 0.002268731 -0 0.7474945 0.002268731 -0 0.7474945 0.002268731 -0 0.7474945 0.002268731 -0.002268731 0.7474945 0.002268731 -0.07076883 0.7474945 0.002268731 -0.1119241 0.7474945 0.002268731 -0.1475052 0.7474945 0.002268731 -0.1846606 0.7474945 0.002268731 -0.2245119 0.7474945 0.002268731 -0.2679612 0.7474945 0.002268731 -0.3158431 0.7474945 0.002268731 -0.3689944 0.7474945 0.002268731 -0.4282948 0.7474945 0.002268731 -0.494694 0.7474945 0.002268731 -0.5692344 0.7474945 0.002268731 -0.6530715 0.7474945 0.002268731 -0.7474945 0.7474945 0.002268731 -0.8539475 0.7474945 0.002268731 -0.974052 0.7474945 0.002268731 -1.113885 0.7474945 0.002268731 -1.27456 0.7474945 0.002268731 -1.458117 0.7474945 0.002268731 -1.667858 0.7474945 0.002268731 -1.907556 0.7474945 0.002268731 -2.181521 0.7474945 0.002268731 -2.494678 0.7474945 0.002268731 -2.852659 0.7474945 0.002268731 -3.261896 0.7474945 0.002268731 -3.729748 0.7474945 0.002268731 -4.264621 0.7474945 0.002268731 -4.876131 0.7474945 0.002268731 -5.575266 0.7474945 0.002268731 -6.374593 0.7474945 0.002268731 -0 0.8539475 0.002268731 -0 0.8539475 0.002268731 -0 0.8539475 0.002268731 -0.002268731 0.8539475 0.002268731 -0.07076883 0.8539475 0.002268731 -0.1119241 0.8539475 0.002268731 -0.1475052 0.8539475 0.002268731 -0.1846606 0.8539475 0.002268731 -0.2245119 0.8539475 0.002268731 -0.2679612 0.8539475 0.002268731 -0.3158431 0.8539475 0.002268731 -0.3689944 0.8539475 0.002268731 -0.4282948 0.8539475 0.002268731 -0.494694 0.8539475 0.002268731 -0.5692344 0.8539475 0.002268731 -0.6530715 0.8539475 0.002268731 -0.7474945 0.8539475 0.002268731 -0.8539475 0.8539475 0.002268731 -0.974052 0.8539475 0.002268731 -1.113885 0.8539475 0.002268731 -1.27456 0.8539475 0.002268731 -1.458117 0.8539475 0.002268731 -1.667858 0.8539475 0.002268731 -1.907556 0.8539475 0.002268731 -2.181521 0.8539475 0.002268731 -2.494678 0.8539475 0.002268731 -2.852659 0.8539475 0.002268731 -3.261896 0.8539475 0.002268731 -3.729748 0.8539475 0.002268731 -4.264621 0.8539475 0.002268731 -4.876131 0.8539475 0.002268731 -5.575266 0.8539475 0.002268731 -6.374593 0.8539475 0.002268731 -0 0.974052 0.002268731 -0 0.974052 0.002268731 -0 0.974052 0.002268731 -0.002268731 0.974052 0.002268731 -0.07076883 0.974052 0.002268731 -0.1119241 0.974052 0.002268731 -0.1475052 0.974052 0.002268731 -0.1846606 0.974052 0.002268731 -0.2245119 0.974052 0.002268731 -0.2679612 0.974052 0.002268731 -0.3158431 0.974052 0.002268731 -0.3689944 0.974052 0.002268731 -0.4282948 0.974052 0.002268731 -0.494694 0.974052 0.002268731 -0.5692344 0.974052 0.002268731 -0.6530715 0.974052 0.002268731 -0.7474945 0.974052 0.002268731 -0.8539475 0.974052 0.002268731 -0.974052 0.974052 0.002268731 -1.113885 0.974052 0.002268731 -1.27456 0.974052 0.002268731 -1.458117 0.974052 0.002268731 -1.667858 0.974052 0.002268731 -1.907556 0.974052 0.002268731 -2.181521 0.974052 0.002268731 -2.494678 0.974052 0.002268731 -2.852659 0.974052 0.002268731 -3.261896 0.974052 0.002268731 -3.729748 0.974052 0.002268731 -4.264621 0.974052 0.002268731 -4.876131 0.974052 0.002268731 -5.575266 0.974052 0.002268731 -6.374593 0.974052 0.002268731 -0 1.113885 0.002268731 -0 1.113885 0.002268731 -0 1.113885 0.002268731 -0.002268731 1.113885 0.002268731 -0.07076883 1.113885 0.002268731 -0.1119241 1.113885 0.002268731 -0.1475052 1.113885 0.002268731 -0.1846606 1.113885 0.002268731 -0.2245119 1.113885 0.002268731 -0.2679612 1.113885 0.002268731 -0.3158431 1.113885 0.002268731 -0.3689944 1.113885 0.002268731 -0.4282948 1.113885 0.002268731 -0.494694 1.113885 0.002268731 -0.5692344 1.113885 0.002268731 -0.6530715 1.113885 0.002268731 -0.7474945 1.113885 0.002268731 -0.8539475 1.113885 0.002268731 -0.974052 1.113885 0.002268731 -1.113885 1.113885 0.002268731 -1.27456 1.113885 0.002268731 -1.458117 1.113885 0.002268731 -1.667858 1.113885 0.002268731 -1.907556 1.113885 0.002268731 -2.181521 1.113885 0.002268731 -2.494678 1.113885 0.002268731 -2.852659 1.113885 0.002268731 -3.261896 1.113885 0.002268731 -3.729748 1.113885 0.002268731 -4.264621 1.113885 0.002268731 -4.876131 1.113885 0.002268731 -5.575266 1.113885 0.002268731 -6.374593 1.113885 0.002268731 -0 1.27456 0.002268731 -0 1.27456 0.002268731 -0 1.27456 0.002268731 -0.002268731 1.27456 0.002268731 -0.07076883 1.27456 0.002268731 -0.1119241 1.27456 0.002268731 -0.1475052 1.27456 0.002268731 -0.1846606 1.27456 0.002268731 -0.2245119 1.27456 0.002268731 -0.2679612 1.27456 0.002268731 -0.3158431 1.27456 0.002268731 -0.3689944 1.27456 0.002268731 -0.4282948 1.27456 0.002268731 -0.494694 1.27456 0.002268731 -0.5692344 1.27456 0.002268731 -0.6530715 1.27456 0.002268731 -0.7474945 1.27456 0.002268731 -0.8539475 1.27456 0.002268731 -0.974052 1.27456 0.002268731 -1.113885 1.27456 0.002268731 -1.27456 1.27456 0.002268731 -1.458117 1.27456 0.002268731 -1.667858 1.27456 0.002268731 -1.907556 1.27456 0.002268731 -2.181521 1.27456 0.002268731 -2.494678 1.27456 0.002268731 -2.852659 1.27456 0.002268731 -3.261896 1.27456 0.002268731 -3.729748 1.27456 0.002268731 -4.264621 1.27456 0.002268731 -4.876131 1.27456 0.002268731 -5.575266 1.27456 0.002268731 -6.374593 1.27456 0.002268731 -0 1.458117 0.002268731 -0 1.458117 0.002268731 -0 1.458117 0.002268731 -0.002268731 1.458117 0.002268731 -0.07076883 1.458117 0.002268731 -0.1119241 1.458117 0.002268731 -0.1475052 1.458117 0.002268731 -0.1846606 1.458117 0.002268731 -0.2245119 1.458117 0.002268731 -0.2679612 1.458117 0.002268731 -0.3158431 1.458117 0.002268731 -0.3689944 1.458117 0.002268731 -0.4282948 1.458117 0.002268731 -0.494694 1.458117 0.002268731 -0.5692344 1.458117 0.002268731 -0.6530715 1.458117 0.002268731 -0.7474945 1.458117 0.002268731 -0.8539475 1.458117 0.002268731 -0.974052 1.458117 0.002268731 -1.113885 1.458117 0.002268731 -1.27456 1.458117 0.002268731 -1.458117 1.458117 0.002268731 -1.667858 1.458117 0.002268731 -1.907556 1.458117 0.002268731 -2.181521 1.458117 0.002268731 -2.494678 1.458117 0.002268731 -2.852659 1.458117 0.002268731 -3.261896 1.458117 0.002268731 -3.729748 1.458117 0.002268731 -4.264621 1.458117 0.002268731 -4.876131 1.458117 0.002268731 -5.575266 1.458117 0.002268731 -6.374593 1.458117 0.002268731 -0 1.667858 0.002268731 -0 1.667858 0.002268731 -0 1.667858 0.002268731 -0.002268731 1.667858 0.002268731 -0.07076883 1.667858 0.002268731 -0.1119241 1.667858 0.002268731 -0.1475052 1.667858 0.002268731 -0.1846606 1.667858 0.002268731 -0.2245119 1.667858 0.002268731 -0.2679612 1.667858 0.002268731 -0.3158431 1.667858 0.002268731 -0.3689944 1.667858 0.002268731 -0.4282948 1.667858 0.002268731 -0.494694 1.667858 0.002268731 -0.5692344 1.667858 0.002268731 -0.6530715 1.667858 0.002268731 -0.7474945 1.667858 0.002268731 -0.8539475 1.667858 0.002268731 -0.974052 1.667858 0.002268731 -1.113885 1.667858 0.002268731 -1.27456 1.667858 0.002268731 -1.458117 1.667858 0.002268731 -1.667858 1.667858 0.002268731 -1.907556 1.667858 0.002268731 -2.181521 1.667858 0.002268731 -2.494678 1.667858 0.002268731 -2.852659 1.667858 0.002268731 -3.261896 1.667858 0.002268731 -3.729748 1.667858 0.002268731 -4.264621 1.667858 0.002268731 -4.876131 1.667858 0.002268731 -5.575266 1.667858 0.002268731 -6.374593 1.667858 0.002268731 -0 1.907556 0.002268731 -0 1.907556 0.002268731 -0 1.907556 0.002268731 -0.002268731 1.907556 0.002268731 -0.07076883 1.907556 0.002268731 -0.1119241 1.907556 0.002268731 -0.1475052 1.907556 0.002268731 -0.1846606 1.907556 0.002268731 -0.2245119 1.907556 0.002268731 -0.2679612 1.907556 0.002268731 -0.3158431 1.907556 0.002268731 -0.3689944 1.907556 0.002268731 -0.4282948 1.907556 0.002268731 -0.494694 1.907556 0.002268731 -0.5692344 1.907556 0.002268731 -0.6530715 1.907556 0.002268731 -0.7474945 1.907556 0.002268731 -0.8539475 1.907556 0.002268731 -0.974052 1.907556 0.002268731 -1.113885 1.907556 0.002268731 -1.27456 1.907556 0.002268731 -1.458117 1.907556 0.002268731 -1.667858 1.907556 0.002268731 -1.907556 1.907556 0.002268731 -2.181521 1.907556 0.002268731 -2.494678 1.907556 0.002268731 -2.852659 1.907556 0.002268731 -3.261896 1.907556 0.002268731 -3.729748 1.907556 0.002268731 -4.264621 1.907556 0.002268731 -4.876131 1.907556 0.002268731 -5.575266 1.907556 0.002268731 -6.374593 1.907556 0.002268731 -0 2.181521 0.002268731 -0 2.181521 0.002268731 -0 2.181521 0.002268731 -0.002268731 2.181521 0.002268731 -0.07076883 2.181521 0.002268731 -0.1119241 2.181521 0.002268731 -0.1475052 2.181521 0.002268731 -0.1846606 2.181521 0.002268731 -0.2245119 2.181521 0.002268731 -0.2679612 2.181521 0.002268731 -0.3158431 2.181521 0.002268731 -0.3689944 2.181521 0.002268731 -0.4282948 2.181521 0.002268731 -0.494694 2.181521 0.002268731 -0.5692344 2.181521 0.002268731 -0.6530715 2.181521 0.002268731 -0.7474945 2.181521 0.002268731 -0.8539475 2.181521 0.002268731 -0.974052 2.181521 0.002268731 -1.113885 2.181521 0.002268731 -1.27456 2.181521 0.002268731 -1.458117 2.181521 0.002268731 -1.667858 2.181521 0.002268731 -1.907556 2.181521 0.002268731 -2.181521 2.181521 0.002268731 -2.494678 2.181521 0.002268731 -2.852659 2.181521 0.002268731 -3.261896 2.181521 0.002268731 -3.729748 2.181521 0.002268731 -4.264621 2.181521 0.002268731 -4.876131 2.181521 0.002268731 -5.575266 2.181521 0.002268731 -6.374593 2.181521 0.002268731 -0 2.494678 0.002268731 -0 2.494678 0.002268731 -0 2.494678 0.002268731 -0.002268731 2.494678 0.002268731 -0.07076883 2.494678 0.002268731 -0.1119241 2.494678 0.002268731 -0.1475052 2.494678 0.002268731 -0.1846606 2.494678 0.002268731 -0.2245119 2.494678 0.002268731 -0.2679612 2.494678 0.002268731 -0.3158431 2.494678 0.002268731 -0.3689944 2.494678 0.002268731 -0.4282948 2.494678 0.002268731 -0.494694 2.494678 0.002268731 -0.5692344 2.494678 0.002268731 -0.6530715 2.494678 0.002268731 -0.7474945 2.494678 0.002268731 -0.8539475 2.494678 0.002268731 -0.974052 2.494678 0.002268731 -1.113885 2.494678 0.002268731 -1.27456 2.494678 0.002268731 -1.458117 2.494678 0.002268731 -1.667858 2.494678 0.002268731 -1.907556 2.494678 0.002268731 -2.181521 2.494678 0.002268731 -2.494678 2.494678 0.002268731 -2.852659 2.494678 0.002268731 -3.261896 2.494678 0.002268731 -3.729748 2.494678 0.002268731 -4.264621 2.494678 0.002268731 -4.876131 2.494678 0.002268731 -5.575266 2.494678 0.002268731 -6.374593 2.494678 0.002268731 -0 2.852659 0.002268731 -0 2.852659 0.002268731 -0 2.852659 0.002268731 -0.002268731 2.852659 0.002268731 -0.07076883 2.852659 0.002268731 -0.1119241 2.852659 0.002268731 -0.1475052 2.852659 0.002268731 -0.1846606 2.852659 0.002268731 -0.2245119 2.852659 0.002268731 -0.2679612 2.852659 0.002268731 -0.3158431 2.852659 0.002268731 -0.3689944 2.852659 0.002268731 -0.4282948 2.852659 0.002268731 -0.494694 2.852659 0.002268731 -0.5692344 2.852659 0.002268731 -0.6530715 2.852659 0.002268731 -0.7474945 2.852659 0.002268731 -0.8539475 2.852659 0.002268731 -0.974052 2.852659 0.002268731 -1.113885 2.852659 0.002268731 -1.27456 2.852659 0.002268731 -1.458117 2.852659 0.002268731 -1.667858 2.852659 0.002268731 -1.907556 2.852659 0.002268731 -2.181521 2.852659 0.002268731 -2.494678 2.852659 0.002268731 -2.852659 2.852659 0.002268731 -3.261896 2.852659 0.002268731 -3.729748 2.852659 0.002268731 -4.264621 2.852659 0.002268731 -4.876131 2.852659 0.002268731 -5.575266 2.852659 0.002268731 -6.374593 2.852659 0.002268731 -0 3.261896 0.002268731 -0 3.261896 0.002268731 -0 3.261896 0.002268731 -0.002268731 3.261896 0.002268731 -0.07076883 3.261896 0.002268731 -0.1119241 3.261896 0.002268731 -0.1475052 3.261896 0.002268731 -0.1846606 3.261896 0.002268731 -0.2245119 3.261896 0.002268731 -0.2679612 3.261896 0.002268731 -0.3158431 3.261896 0.002268731 -0.3689944 3.261896 0.002268731 -0.4282948 3.261896 0.002268731 -0.494694 3.261896 0.002268731 -0.5692344 3.261896 0.002268731 -0.6530715 3.261896 0.002268731 -0.7474945 3.261896 0.002268731 -0.8539475 3.261896 0.002268731 -0.974052 3.261896 0.002268731 -1.113885 3.261896 0.002268731 -1.27456 3.261896 0.002268731 -1.458117 3.261896 0.002268731 -1.667858 3.261896 0.002268731 -1.907556 3.261896 0.002268731 -2.181521 3.261896 0.002268731 -2.494678 3.261896 0.002268731 -2.852659 3.261896 0.002268731 -3.261896 3.261896 0.002268731 -3.729748 3.261896 0.002268731 -4.264621 3.261896 0.002268731 -4.876131 3.261896 0.002268731 -5.575266 3.261896 0.002268731 -6.374593 3.261896 0.002268731 -0 3.729748 0.002268731 -0 3.729748 0.002268731 -0 3.729748 0.002268731 -0.002268731 3.729748 0.002268731 -0.07076883 3.729748 0.002268731 -0.1119241 3.729748 0.002268731 -0.1475052 3.729748 0.002268731 -0.1846606 3.729748 0.002268731 -0.2245119 3.729748 0.002268731 -0.2679612 3.729748 0.002268731 -0.3158431 3.729748 0.002268731 -0.3689944 3.729748 0.002268731 -0.4282948 3.729748 0.002268731 -0.494694 3.729748 0.002268731 -0.5692344 3.729748 0.002268731 -0.6530715 3.729748 0.002268731 -0.7474945 3.729748 0.002268731 -0.8539475 3.729748 0.002268731 -0.974052 3.729748 0.002268731 -1.113885 3.729748 0.002268731 -1.27456 3.729748 0.002268731 -1.458117 3.729748 0.002268731 -1.667858 3.729748 0.002268731 -1.907556 3.729748 0.002268731 -2.181521 3.729748 0.002268731 -2.494678 3.729748 0.002268731 -2.852659 3.729748 0.002268731 -3.261896 3.729748 0.002268731 -3.729748 3.729748 0.002268731 -4.264621 3.729748 0.002268731 -4.876131 3.729748 0.002268731 -5.575266 3.729748 0.002268731 -6.374593 3.729748 0.002268731 -0 4.264621 0.002268731 -0 4.264621 0.002268731 -0 4.264621 0.002268731 -0.002268731 4.264621 0.002268731 -0.07076883 4.264621 0.002268731 -0.1119241 4.264621 0.002268731 -0.1475052 4.264621 0.002268731 -0.1846606 4.264621 0.002268731 -0.2245119 4.264621 0.002268731 -0.2679612 4.264621 0.002268731 -0.3158431 4.264621 0.002268731 -0.3689944 4.264621 0.002268731 -0.4282948 4.264621 0.002268731 -0.494694 4.264621 0.002268731 -0.5692344 4.264621 0.002268731 -0.6530715 4.264621 0.002268731 -0.7474945 4.264621 0.002268731 -0.8539475 4.264621 0.002268731 -0.974052 4.264621 0.002268731 -1.113885 4.264621 0.002268731 -1.27456 4.264621 0.002268731 -1.458117 4.264621 0.002268731 -1.667858 4.264621 0.002268731 -1.907556 4.264621 0.002268731 -2.181521 4.264621 0.002268731 -2.494678 4.264621 0.002268731 -2.852659 4.264621 0.002268731 -3.261896 4.264621 0.002268731 -3.729748 4.264621 0.002268731 -4.264621 4.264621 0.002268731 -4.876131 4.264621 0.002268731 -5.575266 4.264621 0.002268731 -6.374593 4.264621 0.002268731 -0 4.876131 0.002268731 -0 4.876131 0.002268731 -0 4.876131 0.002268731 -0.002268731 4.876131 0.002268731 -0.07076883 4.876131 0.002268731 -0.1119241 4.876131 0.002268731 -0.1475052 4.876131 0.002268731 -0.1846606 4.876131 0.002268731 -0.2245119 4.876131 0.002268731 -0.2679612 4.876131 0.002268731 -0.3158431 4.876131 0.002268731 -0.3689944 4.876131 0.002268731 -0.4282948 4.876131 0.002268731 -0.494694 4.876131 0.002268731 -0.5692344 4.876131 0.002268731 -0.6530715 4.876131 0.002268731 -0.7474945 4.876131 0.002268731 -0.8539475 4.876131 0.002268731 -0.974052 4.876131 0.002268731 -1.113885 4.876131 0.002268731 -1.27456 4.876131 0.002268731 -1.458117 4.876131 0.002268731 -1.667858 4.876131 0.002268731 -1.907556 4.876131 0.002268731 -2.181521 4.876131 0.002268731 -2.494678 4.876131 0.002268731 -2.852659 4.876131 0.002268731 -3.261896 4.876131 0.002268731 -3.729748 4.876131 0.002268731 -4.264621 4.876131 0.002268731 -4.876131 4.876131 0.002268731 -5.575266 4.876131 0.002268731 -6.374593 4.876131 0.002268731 -0 5.575266 0.002268731 -0 5.575266 0.002268731 -0 5.575266 0.002268731 -0.002268731 5.575266 0.002268731 -0.07076883 5.575266 0.002268731 -0.1119241 5.575266 0.002268731 -0.1475052 5.575266 0.002268731 -0.1846606 5.575266 0.002268731 -0.2245119 5.575266 0.002268731 -0.2679612 5.575266 0.002268731 -0.3158431 5.575266 0.002268731 -0.3689944 5.575266 0.002268731 -0.4282948 5.575266 0.002268731 -0.494694 5.575266 0.002268731 -0.5692344 5.575266 0.002268731 -0.6530715 5.575266 0.002268731 -0.7474945 5.575266 0.002268731 -0.8539475 5.575266 0.002268731 -0.974052 5.575266 0.002268731 -1.113885 5.575266 0.002268731 -1.27456 5.575266 0.002268731 -1.458117 5.575266 0.002268731 -1.667858 5.575266 0.002268731 -1.907556 5.575266 0.002268731 -2.181521 5.575266 0.002268731 -2.494678 5.575266 0.002268731 -2.852659 5.575266 0.002268731 -3.261896 5.575266 0.002268731 -3.729748 5.575266 0.002268731 -4.264621 5.575266 0.002268731 -4.876131 5.575266 0.002268731 -5.575266 5.575266 0.002268731 -6.374593 5.575266 0.002268731 -0 6.374593 0.002268731 -0 6.374593 0.002268731 -0 6.374593 0.002268731 -0.002268731 6.374593 0.002268731 -0.07076883 6.374593 0.002268731 -0.1119241 6.374593 0.002268731 -0.1475052 6.374593 0.002268731 -0.1846606 6.374593 0.002268731 -0.2245119 6.374593 0.002268731 -0.2679612 6.374593 0.002268731 -0.3158431 6.374593 0.002268731 -0.3689944 6.374593 0.002268731 -0.4282948 6.374593 0.002268731 -0.494694 6.374593 0.002268731 -0.5692344 6.374593 0.002268731 -0.6530715 6.374593 0.002268731 -0.7474945 6.374593 0.002268731 -0.8539475 6.374593 0.002268731 -0.974052 6.374593 0.002268731 -1.113885 6.374593 0.002268731 -1.27456 6.374593 0.002268731 -1.458117 6.374593 0.002268731 -1.667858 6.374593 0.002268731 -1.907556 6.374593 0.002268731 -2.181521 6.374593 0.002268731 -2.494678 6.374593 0.002268731 -2.852659 6.374593 0.002268731 -3.261896 6.374593 0.002268731 -3.729748 6.374593 0.002268731 -4.264621 6.374593 0.002268731 -4.876131 6.374593 0.002268731 -5.575266 6.374593 0.002268731 -6.374593 6.374593 0.002268731 -0 0 0.07076883 -0 0 0.07076883 -0 0 0.07076883 -0.002268731 0 0.07076883 -0.07076883 0 0.07076883 -0.1119241 0 0.07076883 -0.1475052 0 0.07076883 -0.1846606 0 0.07076883 -0.2245119 0 0.07076883 -0.2679612 0 0.07076883 -0.3158431 0 0.07076883 -0.3689944 0 0.07076883 -0.4282948 0 0.07076883 -0.494694 0 0.07076883 -0.5692344 0 0.07076883 -0.6530715 0 0.07076883 -0.7474945 0 0.07076883 -0.8539475 0 0.07076883 -0.974052 0 0.07076883 -1.113885 0 0.07076883 -1.27456 0 0.07076883 -1.458117 0 0.07076883 -1.667858 0 0.07076883 -1.907556 0 0.07076883 -2.181521 0 0.07076883 -2.494678 0 0.07076883 -2.852659 0 0.07076883 -3.261896 0 0.07076883 -3.729748 0 0.07076883 -4.264621 0 0.07076883 -4.876131 0 0.07076883 -5.575266 0 0.07076883 -6.374593 0 0.07076883 -0 0 0.07076883 -0 0 0.07076883 -0 0 0.07076883 -0.002268731 0 0.07076883 -0.07076883 0 0.07076883 -0.1119241 0 0.07076883 -0.1475052 0 0.07076883 -0.1846606 0 0.07076883 -0.2245119 0 0.07076883 -0.2679612 0 0.07076883 -0.3158431 0 0.07076883 -0.3689944 0 0.07076883 -0.4282948 0 0.07076883 -0.494694 0 0.07076883 -0.5692344 0 0.07076883 -0.6530715 0 0.07076883 -0.7474945 0 0.07076883 -0.8539475 0 0.07076883 -0.974052 0 0.07076883 -1.113885 0 0.07076883 -1.27456 0 0.07076883 -1.458117 0 0.07076883 -1.667858 0 0.07076883 -1.907556 0 0.07076883 -2.181521 0 0.07076883 -2.494678 0 0.07076883 -2.852659 0 0.07076883 -3.261896 0 0.07076883 -3.729748 0 0.07076883 -4.264621 0 0.07076883 -4.876131 0 0.07076883 -5.575266 0 0.07076883 -6.374593 0 0.07076883 -0 0 0.07076883 -0 0 0.07076883 -0 0 0.07076883 -0.002268731 0 0.07076883 -0.07076883 0 0.07076883 -0.1119241 0 0.07076883 -0.1475052 0 0.07076883 -0.1846606 0 0.07076883 -0.2245119 0 0.07076883 -0.2679612 0 0.07076883 -0.3158431 0 0.07076883 -0.3689944 0 0.07076883 -0.4282948 0 0.07076883 -0.494694 0 0.07076883 -0.5692344 0 0.07076883 -0.6530715 0 0.07076883 -0.7474945 0 0.07076883 -0.8539475 0 0.07076883 -0.974052 0 0.07076883 -1.113885 0 0.07076883 -1.27456 0 0.07076883 -1.458117 0 0.07076883 -1.667858 0 0.07076883 -1.907556 0 0.07076883 -2.181521 0 0.07076883 -2.494678 0 0.07076883 -2.852659 0 0.07076883 -3.261896 0 0.07076883 -3.729748 0 0.07076883 -4.264621 0 0.07076883 -4.876131 0 0.07076883 -5.575266 0 0.07076883 -6.374593 0 0.07076883 -0 0.002268731 0.07076883 -0 0.002268731 0.07076883 -0 0.002268731 0.07076883 -0.002268731 0.002268731 0.07076883 -0.07076883 0.002268731 0.07076883 -0.1119241 0.002268731 0.07076883 -0.1475052 0.002268731 0.07076883 -0.1846606 0.002268731 0.07076883 -0.2245119 0.002268731 0.07076883 -0.2679612 0.002268731 0.07076883 -0.3158431 0.002268731 0.07076883 -0.3689944 0.002268731 0.07076883 -0.4282948 0.002268731 0.07076883 -0.494694 0.002268731 0.07076883 -0.5692344 0.002268731 0.07076883 -0.6530715 0.002268731 0.07076883 -0.7474945 0.002268731 0.07076883 -0.8539475 0.002268731 0.07076883 -0.974052 0.002268731 0.07076883 -1.113885 0.002268731 0.07076883 -1.27456 0.002268731 0.07076883 -1.458117 0.002268731 0.07076883 -1.667858 0.002268731 0.07076883 -1.907556 0.002268731 0.07076883 -2.181521 0.002268731 0.07076883 -2.494678 0.002268731 0.07076883 -2.852659 0.002268731 0.07076883 -3.261896 0.002268731 0.07076883 -3.729748 0.002268731 0.07076883 -4.264621 0.002268731 0.07076883 -4.876131 0.002268731 0.07076883 -5.575266 0.002268731 0.07076883 -6.374593 0.002268731 0.07076883 -0 0.07076883 0.07076883 -0 0.07076883 0.07076883 -0 0.07076883 0.07076883 -0.002268731 0.07076883 0.07076883 -0.07076883 0.07076883 0.07076883 -0.1119241 0.07076883 0.07076883 -0.1475052 0.07076883 0.07076883 -0.1846606 0.07076883 0.07076883 -0.2245119 0.07076883 0.07076883 -0.2679612 0.07076883 0.07076883 -0.3158431 0.07076883 0.07076883 -0.3689944 0.07076883 0.07076883 -0.4282948 0.07076883 0.07076883 -0.494694 0.07076883 0.07076883 -0.5692344 0.07076883 0.07076883 -0.6530715 0.07076883 0.07076883 -0.7474945 0.07076883 0.07076883 -0.8539475 0.07076883 0.07076883 -0.974052 0.07076883 0.07076883 -1.113885 0.07076883 0.07076883 -1.27456 0.07076883 0.07076883 -1.458117 0.07076883 0.07076883 -1.667858 0.07076883 0.07076883 -1.907556 0.07076883 0.07076883 -2.181521 0.07076883 0.07076883 -2.494678 0.07076883 0.07076883 -2.852659 0.07076883 0.07076883 -3.261896 0.07076883 0.07076883 -3.729748 0.07076883 0.07076883 -4.264621 0.07076883 0.07076883 -4.876131 0.07076883 0.07076883 -5.575266 0.07076883 0.07076883 -6.374593 0.07076883 0.07076883 -0 0.1119241 0.07076883 -0 0.1119241 0.07076883 -0 0.1119241 0.07076883 -0.002268731 0.1119241 0.07076883 -0.07076883 0.1119241 0.07076883 -0.1119241 0.1119241 0.07076883 -0.1475052 0.1119241 0.07076883 -0.1846606 0.1119241 0.07076883 -0.2245119 0.1119241 0.07076883 -0.2679612 0.1119241 0.07076883 -0.3158431 0.1119241 0.07076883 -0.3689944 0.1119241 0.07076883 -0.4282948 0.1119241 0.07076883 -0.494694 0.1119241 0.07076883 -0.5692344 0.1119241 0.07076883 -0.6530715 0.1119241 0.07076883 -0.7474945 0.1119241 0.07076883 -0.8539475 0.1119241 0.07076883 -0.974052 0.1119241 0.07076883 -1.113885 0.1119241 0.07076883 -1.27456 0.1119241 0.07076883 -1.458117 0.1119241 0.07076883 -1.667858 0.1119241 0.07076883 -1.907556 0.1119241 0.07076883 -2.181521 0.1119241 0.07076883 -2.494678 0.1119241 0.07076883 -2.852659 0.1119241 0.07076883 -3.261896 0.1119241 0.07076883 -3.729748 0.1119241 0.07076883 -4.264621 0.1119241 0.07076883 -4.876131 0.1119241 0.07076883 -5.575266 0.1119241 0.07076883 -6.374593 0.1119241 0.07076883 -0 0.1475052 0.07076883 -0 0.1475052 0.07076883 -0 0.1475052 0.07076883 -0.002268731 0.1475052 0.07076883 -0.07076883 0.1475052 0.07076883 -0.1119241 0.1475052 0.07076883 -0.1475052 0.1475052 0.07076883 -0.1846606 0.1475052 0.07076883 -0.2245119 0.1475052 0.07076883 -0.2679612 0.1475052 0.07076883 -0.3158431 0.1475052 0.07076883 -0.3689944 0.1475052 0.07076883 -0.4282948 0.1475052 0.07076883 -0.494694 0.1475052 0.07076883 -0.5692344 0.1475052 0.07076883 -0.6530715 0.1475052 0.07076883 -0.7474945 0.1475052 0.07076883 -0.8539475 0.1475052 0.07076883 -0.974052 0.1475052 0.07076883 -1.113885 0.1475052 0.07076883 -1.27456 0.1475052 0.07076883 -1.458117 0.1475052 0.07076883 -1.667858 0.1475052 0.07076883 -1.907556 0.1475052 0.07076883 -2.181521 0.1475052 0.07076883 -2.494678 0.1475052 0.07076883 -2.852659 0.1475052 0.07076883 -3.261896 0.1475052 0.07076883 -3.729748 0.1475052 0.07076883 -4.264621 0.1475052 0.07076883 -4.876131 0.1475052 0.07076883 -5.575266 0.1475052 0.07076883 -6.374593 0.1475052 0.07076883 -0 0.1846606 0.07076883 -0 0.1846606 0.07076883 -0 0.1846606 0.07076883 -0.002268731 0.1846606 0.07076883 -0.07076883 0.1846606 0.07076883 -0.1119241 0.1846606 0.07076883 -0.1475052 0.1846606 0.07076883 -0.1846606 0.1846606 0.07076883 -0.2245119 0.1846606 0.07076883 -0.2679612 0.1846606 0.07076883 -0.3158431 0.1846606 0.07076883 -0.3689944 0.1846606 0.07076883 -0.4282948 0.1846606 0.07076883 -0.494694 0.1846606 0.07076883 -0.5692344 0.1846606 0.07076883 -0.6530715 0.1846606 0.07076883 -0.7474945 0.1846606 0.07076883 -0.8539475 0.1846606 0.07076883 -0.974052 0.1846606 0.07076883 -1.113885 0.1846606 0.07076883 -1.27456 0.1846606 0.07076883 -1.458117 0.1846606 0.07076883 -1.667858 0.1846606 0.07076883 -1.907556 0.1846606 0.07076883 -2.181521 0.1846606 0.07076883 -2.494678 0.1846606 0.07076883 -2.852659 0.1846606 0.07076883 -3.261896 0.1846606 0.07076883 -3.729748 0.1846606 0.07076883 -4.264621 0.1846606 0.07076883 -4.876131 0.1846606 0.07076883 -5.575266 0.1846606 0.07076883 -6.374593 0.1846606 0.07076883 -0 0.2245119 0.07076883 -0 0.2245119 0.07076883 -0 0.2245119 0.07076883 -0.002268731 0.2245119 0.07076883 -0.07076883 0.2245119 0.07076883 -0.1119241 0.2245119 0.07076883 -0.1475052 0.2245119 0.07076883 -0.1846606 0.2245119 0.07076883 -0.2245119 0.2245119 0.07076883 -0.2679612 0.2245119 0.07076883 -0.3158431 0.2245119 0.07076883 -0.3689944 0.2245119 0.07076883 -0.4282948 0.2245119 0.07076883 -0.494694 0.2245119 0.07076883 -0.5692344 0.2245119 0.07076883 -0.6530715 0.2245119 0.07076883 -0.7474945 0.2245119 0.07076883 -0.8539475 0.2245119 0.07076883 -0.974052 0.2245119 0.07076883 -1.113885 0.2245119 0.07076883 -1.27456 0.2245119 0.07076883 -1.458117 0.2245119 0.07076883 -1.667858 0.2245119 0.07076883 -1.907556 0.2245119 0.07076883 -2.181521 0.2245119 0.07076883 -2.494678 0.2245119 0.07076883 -2.852659 0.2245119 0.07076883 -3.261896 0.2245119 0.07076883 -3.729748 0.2245119 0.07076883 -4.264621 0.2245119 0.07076883 -4.876131 0.2245119 0.07076883 -5.575266 0.2245119 0.07076883 -6.374593 0.2245119 0.07076883 -0 0.2679612 0.07076883 -0 0.2679612 0.07076883 -0 0.2679612 0.07076883 -0.002268731 0.2679612 0.07076883 -0.07076883 0.2679612 0.07076883 -0.1119241 0.2679612 0.07076883 -0.1475052 0.2679612 0.07076883 -0.1846606 0.2679612 0.07076883 -0.2245119 0.2679612 0.07076883 -0.2679612 0.2679612 0.07076883 -0.3158431 0.2679612 0.07076883 -0.3689944 0.2679612 0.07076883 -0.4282948 0.2679612 0.07076883 -0.494694 0.2679612 0.07076883 -0.5692344 0.2679612 0.07076883 -0.6530715 0.2679612 0.07076883 -0.7474945 0.2679612 0.07076883 -0.8539475 0.2679612 0.07076883 -0.974052 0.2679612 0.07076883 -1.113885 0.2679612 0.07076883 -1.27456 0.2679612 0.07076883 -1.458117 0.2679612 0.07076883 -1.667858 0.2679612 0.07076883 -1.907556 0.2679612 0.07076883 -2.181521 0.2679612 0.07076883 -2.494678 0.2679612 0.07076883 -2.852659 0.2679612 0.07076883 -3.261896 0.2679612 0.07076883 -3.729748 0.2679612 0.07076883 -4.264621 0.2679612 0.07076883 -4.876131 0.2679612 0.07076883 -5.575266 0.2679612 0.07076883 -6.374593 0.2679612 0.07076883 -0 0.3158431 0.07076883 -0 0.3158431 0.07076883 -0 0.3158431 0.07076883 -0.002268731 0.3158431 0.07076883 -0.07076883 0.3158431 0.07076883 -0.1119241 0.3158431 0.07076883 -0.1475052 0.3158431 0.07076883 -0.1846606 0.3158431 0.07076883 -0.2245119 0.3158431 0.07076883 -0.2679612 0.3158431 0.07076883 -0.3158431 0.3158431 0.07076883 -0.3689944 0.3158431 0.07076883 -0.4282948 0.3158431 0.07076883 -0.494694 0.3158431 0.07076883 -0.5692344 0.3158431 0.07076883 -0.6530715 0.3158431 0.07076883 -0.7474945 0.3158431 0.07076883 -0.8539475 0.3158431 0.07076883 -0.974052 0.3158431 0.07076883 -1.113885 0.3158431 0.07076883 -1.27456 0.3158431 0.07076883 -1.458117 0.3158431 0.07076883 -1.667858 0.3158431 0.07076883 -1.907556 0.3158431 0.07076883 -2.181521 0.3158431 0.07076883 -2.494678 0.3158431 0.07076883 -2.852659 0.3158431 0.07076883 -3.261896 0.3158431 0.07076883 -3.729748 0.3158431 0.07076883 -4.264621 0.3158431 0.07076883 -4.876131 0.3158431 0.07076883 -5.575266 0.3158431 0.07076883 -6.374593 0.3158431 0.07076883 -0 0.3689944 0.07076883 -0 0.3689944 0.07076883 -0 0.3689944 0.07076883 -0.002268731 0.3689944 0.07076883 -0.07076883 0.3689944 0.07076883 -0.1119241 0.3689944 0.07076883 -0.1475052 0.3689944 0.07076883 -0.1846606 0.3689944 0.07076883 -0.2245119 0.3689944 0.07076883 -0.2679612 0.3689944 0.07076883 -0.3158431 0.3689944 0.07076883 -0.3689944 0.3689944 0.07076883 -0.4282948 0.3689944 0.07076883 -0.494694 0.3689944 0.07076883 -0.5692344 0.3689944 0.07076883 -0.6530715 0.3689944 0.07076883 -0.7474945 0.3689944 0.07076883 -0.8539475 0.3689944 0.07076883 -0.974052 0.3689944 0.07076883 -1.113885 0.3689944 0.07076883 -1.27456 0.3689944 0.07076883 -1.458117 0.3689944 0.07076883 -1.667858 0.3689944 0.07076883 -1.907556 0.3689944 0.07076883 -2.181521 0.3689944 0.07076883 -2.494678 0.3689944 0.07076883 -2.852659 0.3689944 0.07076883 -3.261896 0.3689944 0.07076883 -3.729748 0.3689944 0.07076883 -4.264621 0.3689944 0.07076883 -4.876131 0.3689944 0.07076883 -5.575266 0.3689944 0.07076883 -6.374593 0.3689944 0.07076883 -0 0.4282948 0.07076883 -0 0.4282948 0.07076883 -0 0.4282948 0.07076883 -0.002268731 0.4282948 0.07076883 -0.07076883 0.4282948 0.07076883 -0.1119241 0.4282948 0.07076883 -0.1475052 0.4282948 0.07076883 -0.1846606 0.4282948 0.07076883 -0.2245119 0.4282948 0.07076883 -0.2679612 0.4282948 0.07076883 -0.3158431 0.4282948 0.07076883 -0.3689944 0.4282948 0.07076883 -0.4282948 0.4282948 0.07076883 -0.494694 0.4282948 0.07076883 -0.5692344 0.4282948 0.07076883 -0.6530715 0.4282948 0.07076883 -0.7474945 0.4282948 0.07076883 -0.8539475 0.4282948 0.07076883 -0.974052 0.4282948 0.07076883 -1.113885 0.4282948 0.07076883 -1.27456 0.4282948 0.07076883 -1.458117 0.4282948 0.07076883 -1.667858 0.4282948 0.07076883 -1.907556 0.4282948 0.07076883 -2.181521 0.4282948 0.07076883 -2.494678 0.4282948 0.07076883 -2.852659 0.4282948 0.07076883 -3.261896 0.4282948 0.07076883 -3.729748 0.4282948 0.07076883 -4.264621 0.4282948 0.07076883 -4.876131 0.4282948 0.07076883 -5.575266 0.4282948 0.07076883 -6.374593 0.4282948 0.07076883 -0 0.494694 0.07076883 -0 0.494694 0.07076883 -0 0.494694 0.07076883 -0.002268731 0.494694 0.07076883 -0.07076883 0.494694 0.07076883 -0.1119241 0.494694 0.07076883 -0.1475052 0.494694 0.07076883 -0.1846606 0.494694 0.07076883 -0.2245119 0.494694 0.07076883 -0.2679612 0.494694 0.07076883 -0.3158431 0.494694 0.07076883 -0.3689944 0.494694 0.07076883 -0.4282948 0.494694 0.07076883 -0.494694 0.494694 0.07076883 -0.5692344 0.494694 0.07076883 -0.6530715 0.494694 0.07076883 -0.7474945 0.494694 0.07076883 -0.8539475 0.494694 0.07076883 -0.974052 0.494694 0.07076883 -1.113885 0.494694 0.07076883 -1.27456 0.494694 0.07076883 -1.458117 0.494694 0.07076883 -1.667858 0.494694 0.07076883 -1.907556 0.494694 0.07076883 -2.181521 0.494694 0.07076883 -2.494678 0.494694 0.07076883 -2.852659 0.494694 0.07076883 -3.261896 0.494694 0.07076883 -3.729748 0.494694 0.07076883 -4.264621 0.494694 0.07076883 -4.876131 0.494694 0.07076883 -5.575266 0.494694 0.07076883 -6.374593 0.494694 0.07076883 -0 0.5692344 0.07076883 -0 0.5692344 0.07076883 -0 0.5692344 0.07076883 -0.002268731 0.5692344 0.07076883 -0.07076883 0.5692344 0.07076883 -0.1119241 0.5692344 0.07076883 -0.1475052 0.5692344 0.07076883 -0.1846606 0.5692344 0.07076883 -0.2245119 0.5692344 0.07076883 -0.2679612 0.5692344 0.07076883 -0.3158431 0.5692344 0.07076883 -0.3689944 0.5692344 0.07076883 -0.4282948 0.5692344 0.07076883 -0.494694 0.5692344 0.07076883 -0.5692344 0.5692344 0.07076883 -0.6530715 0.5692344 0.07076883 -0.7474945 0.5692344 0.07076883 -0.8539475 0.5692344 0.07076883 -0.974052 0.5692344 0.07076883 -1.113885 0.5692344 0.07076883 -1.27456 0.5692344 0.07076883 -1.458117 0.5692344 0.07076883 -1.667858 0.5692344 0.07076883 -1.907556 0.5692344 0.07076883 -2.181521 0.5692344 0.07076883 -2.494678 0.5692344 0.07076883 -2.852659 0.5692344 0.07076883 -3.261896 0.5692344 0.07076883 -3.729748 0.5692344 0.07076883 -4.264621 0.5692344 0.07076883 -4.876131 0.5692344 0.07076883 -5.575266 0.5692344 0.07076883 -6.374593 0.5692344 0.07076883 -0 0.6530715 0.07076883 -0 0.6530715 0.07076883 -0 0.6530715 0.07076883 -0.002268731 0.6530715 0.07076883 -0.07076883 0.6530715 0.07076883 -0.1119241 0.6530715 0.07076883 -0.1475052 0.6530715 0.07076883 -0.1846606 0.6530715 0.07076883 -0.2245119 0.6530715 0.07076883 -0.2679612 0.6530715 0.07076883 -0.3158431 0.6530715 0.07076883 -0.3689944 0.6530715 0.07076883 -0.4282948 0.6530715 0.07076883 -0.494694 0.6530715 0.07076883 -0.5692344 0.6530715 0.07076883 -0.6530715 0.6530715 0.07076883 -0.7474945 0.6530715 0.07076883 -0.8539475 0.6530715 0.07076883 -0.974052 0.6530715 0.07076883 -1.113885 0.6530715 0.07076883 -1.27456 0.6530715 0.07076883 -1.458117 0.6530715 0.07076883 -1.667858 0.6530715 0.07076883 -1.907556 0.6530715 0.07076883 -2.181521 0.6530715 0.07076883 -2.494678 0.6530715 0.07076883 -2.852659 0.6530715 0.07076883 -3.261896 0.6530715 0.07076883 -3.729748 0.6530715 0.07076883 -4.264621 0.6530715 0.07076883 -4.876131 0.6530715 0.07076883 -5.575266 0.6530715 0.07076883 -6.374593 0.6530715 0.07076883 -0 0.7474945 0.07076883 -0 0.7474945 0.07076883 -0 0.7474945 0.07076883 -0.002268731 0.7474945 0.07076883 -0.07076883 0.7474945 0.07076883 -0.1119241 0.7474945 0.07076883 -0.1475052 0.7474945 0.07076883 -0.1846606 0.7474945 0.07076883 -0.2245119 0.7474945 0.07076883 -0.2679612 0.7474945 0.07076883 -0.3158431 0.7474945 0.07076883 -0.3689944 0.7474945 0.07076883 -0.4282948 0.7474945 0.07076883 -0.494694 0.7474945 0.07076883 -0.5692344 0.7474945 0.07076883 -0.6530715 0.7474945 0.07076883 -0.7474945 0.7474945 0.07076883 -0.8539475 0.7474945 0.07076883 -0.974052 0.7474945 0.07076883 -1.113885 0.7474945 0.07076883 -1.27456 0.7474945 0.07076883 -1.458117 0.7474945 0.07076883 -1.667858 0.7474945 0.07076883 -1.907556 0.7474945 0.07076883 -2.181521 0.7474945 0.07076883 -2.494678 0.7474945 0.07076883 -2.852659 0.7474945 0.07076883 -3.261896 0.7474945 0.07076883 -3.729748 0.7474945 0.07076883 -4.264621 0.7474945 0.07076883 -4.876131 0.7474945 0.07076883 -5.575266 0.7474945 0.07076883 -6.374593 0.7474945 0.07076883 -0 0.8539475 0.07076883 -0 0.8539475 0.07076883 -0 0.8539475 0.07076883 -0.002268731 0.8539475 0.07076883 -0.07076883 0.8539475 0.07076883 -0.1119241 0.8539475 0.07076883 -0.1475052 0.8539475 0.07076883 -0.1846606 0.8539475 0.07076883 -0.2245119 0.8539475 0.07076883 -0.2679612 0.8539475 0.07076883 -0.3158431 0.8539475 0.07076883 -0.3689944 0.8539475 0.07076883 -0.4282948 0.8539475 0.07076883 -0.494694 0.8539475 0.07076883 -0.5692344 0.8539475 0.07076883 -0.6530715 0.8539475 0.07076883 -0.7474945 0.8539475 0.07076883 -0.8539475 0.8539475 0.07076883 -0.974052 0.8539475 0.07076883 -1.113885 0.8539475 0.07076883 -1.27456 0.8539475 0.07076883 -1.458117 0.8539475 0.07076883 -1.667858 0.8539475 0.07076883 -1.907556 0.8539475 0.07076883 -2.181521 0.8539475 0.07076883 -2.494678 0.8539475 0.07076883 -2.852659 0.8539475 0.07076883 -3.261896 0.8539475 0.07076883 -3.729748 0.8539475 0.07076883 -4.264621 0.8539475 0.07076883 -4.876131 0.8539475 0.07076883 -5.575266 0.8539475 0.07076883 -6.374593 0.8539475 0.07076883 -0 0.974052 0.07076883 -0 0.974052 0.07076883 -0 0.974052 0.07076883 -0.002268731 0.974052 0.07076883 -0.07076883 0.974052 0.07076883 -0.1119241 0.974052 0.07076883 -0.1475052 0.974052 0.07076883 -0.1846606 0.974052 0.07076883 -0.2245119 0.974052 0.07076883 -0.2679612 0.974052 0.07076883 -0.3158431 0.974052 0.07076883 -0.3689944 0.974052 0.07076883 -0.4282948 0.974052 0.07076883 -0.494694 0.974052 0.07076883 -0.5692344 0.974052 0.07076883 -0.6530715 0.974052 0.07076883 -0.7474945 0.974052 0.07076883 -0.8539475 0.974052 0.07076883 -0.974052 0.974052 0.07076883 -1.113885 0.974052 0.07076883 -1.27456 0.974052 0.07076883 -1.458117 0.974052 0.07076883 -1.667858 0.974052 0.07076883 -1.907556 0.974052 0.07076883 -2.181521 0.974052 0.07076883 -2.494678 0.974052 0.07076883 -2.852659 0.974052 0.07076883 -3.261896 0.974052 0.07076883 -3.729748 0.974052 0.07076883 -4.264621 0.974052 0.07076883 -4.876131 0.974052 0.07076883 -5.575266 0.974052 0.07076883 -6.374593 0.974052 0.07076883 -0 1.113885 0.07076883 -0 1.113885 0.07076883 -0 1.113885 0.07076883 -0.002268731 1.113885 0.07076883 -0.07076883 1.113885 0.07076883 -0.1119241 1.113885 0.07076883 -0.1475052 1.113885 0.07076883 -0.1846606 1.113885 0.07076883 -0.2245119 1.113885 0.07076883 -0.2679612 1.113885 0.07076883 -0.3158431 1.113885 0.07076883 -0.3689944 1.113885 0.07076883 -0.4282948 1.113885 0.07076883 -0.494694 1.113885 0.07076883 -0.5692344 1.113885 0.07076883 -0.6530715 1.113885 0.07076883 -0.7474945 1.113885 0.07076883 -0.8539475 1.113885 0.07076883 -0.974052 1.113885 0.07076883 -1.113885 1.113885 0.07076883 -1.27456 1.113885 0.07076883 -1.458117 1.113885 0.07076883 -1.667858 1.113885 0.07076883 -1.907556 1.113885 0.07076883 -2.181521 1.113885 0.07076883 -2.494678 1.113885 0.07076883 -2.852659 1.113885 0.07076883 -3.261896 1.113885 0.07076883 -3.729748 1.113885 0.07076883 -4.264621 1.113885 0.07076883 -4.876131 1.113885 0.07076883 -5.575266 1.113885 0.07076883 -6.374593 1.113885 0.07076883 -0 1.27456 0.07076883 -0 1.27456 0.07076883 -0 1.27456 0.07076883 -0.002268731 1.27456 0.07076883 -0.07076883 1.27456 0.07076883 -0.1119241 1.27456 0.07076883 -0.1475052 1.27456 0.07076883 -0.1846606 1.27456 0.07076883 -0.2245119 1.27456 0.07076883 -0.2679612 1.27456 0.07076883 -0.3158431 1.27456 0.07076883 -0.3689944 1.27456 0.07076883 -0.4282948 1.27456 0.07076883 -0.494694 1.27456 0.07076883 -0.5692344 1.27456 0.07076883 -0.6530715 1.27456 0.07076883 -0.7474945 1.27456 0.07076883 -0.8539475 1.27456 0.07076883 -0.974052 1.27456 0.07076883 -1.113885 1.27456 0.07076883 -1.27456 1.27456 0.07076883 -1.458117 1.27456 0.07076883 -1.667858 1.27456 0.07076883 -1.907556 1.27456 0.07076883 -2.181521 1.27456 0.07076883 -2.494678 1.27456 0.07076883 -2.852659 1.27456 0.07076883 -3.261896 1.27456 0.07076883 -3.729748 1.27456 0.07076883 -4.264621 1.27456 0.07076883 -4.876131 1.27456 0.07076883 -5.575266 1.27456 0.07076883 -6.374593 1.27456 0.07076883 -0 1.458117 0.07076883 -0 1.458117 0.07076883 -0 1.458117 0.07076883 -0.002268731 1.458117 0.07076883 -0.07076883 1.458117 0.07076883 -0.1119241 1.458117 0.07076883 -0.1475052 1.458117 0.07076883 -0.1846606 1.458117 0.07076883 -0.2245119 1.458117 0.07076883 -0.2679612 1.458117 0.07076883 -0.3158431 1.458117 0.07076883 -0.3689944 1.458117 0.07076883 -0.4282948 1.458117 0.07076883 -0.494694 1.458117 0.07076883 -0.5692344 1.458117 0.07076883 -0.6530715 1.458117 0.07076883 -0.7474945 1.458117 0.07076883 -0.8539475 1.458117 0.07076883 -0.974052 1.458117 0.07076883 -1.113885 1.458117 0.07076883 -1.27456 1.458117 0.07076883 -1.458117 1.458117 0.07076883 -1.667858 1.458117 0.07076883 -1.907556 1.458117 0.07076883 -2.181521 1.458117 0.07076883 -2.494678 1.458117 0.07076883 -2.852659 1.458117 0.07076883 -3.261896 1.458117 0.07076883 -3.729748 1.458117 0.07076883 -4.264621 1.458117 0.07076883 -4.876131 1.458117 0.07076883 -5.575266 1.458117 0.07076883 -6.374593 1.458117 0.07076883 -0 1.667858 0.07076883 -0 1.667858 0.07076883 -0 1.667858 0.07076883 -0.002268731 1.667858 0.07076883 -0.07076883 1.667858 0.07076883 -0.1119241 1.667858 0.07076883 -0.1475052 1.667858 0.07076883 -0.1846606 1.667858 0.07076883 -0.2245119 1.667858 0.07076883 -0.2679612 1.667858 0.07076883 -0.3158431 1.667858 0.07076883 -0.3689944 1.667858 0.07076883 -0.4282948 1.667858 0.07076883 -0.494694 1.667858 0.07076883 -0.5692344 1.667858 0.07076883 -0.6530715 1.667858 0.07076883 -0.7474945 1.667858 0.07076883 -0.8539475 1.667858 0.07076883 -0.974052 1.667858 0.07076883 -1.113885 1.667858 0.07076883 -1.27456 1.667858 0.07076883 -1.458117 1.667858 0.07076883 -1.667858 1.667858 0.07076883 -1.907556 1.667858 0.07076883 -2.181521 1.667858 0.07076883 -2.494678 1.667858 0.07076883 -2.852659 1.667858 0.07076883 -3.261896 1.667858 0.07076883 -3.729748 1.667858 0.07076883 -4.264621 1.667858 0.07076883 -4.876131 1.667858 0.07076883 -5.575266 1.667858 0.07076883 -6.374593 1.667858 0.07076883 -0 1.907556 0.07076883 -0 1.907556 0.07076883 -0 1.907556 0.07076883 -0.002268731 1.907556 0.07076883 -0.07076883 1.907556 0.07076883 -0.1119241 1.907556 0.07076883 -0.1475052 1.907556 0.07076883 -0.1846606 1.907556 0.07076883 -0.2245119 1.907556 0.07076883 -0.2679612 1.907556 0.07076883 -0.3158431 1.907556 0.07076883 -0.3689944 1.907556 0.07076883 -0.4282948 1.907556 0.07076883 -0.494694 1.907556 0.07076883 -0.5692344 1.907556 0.07076883 -0.6530715 1.907556 0.07076883 -0.7474945 1.907556 0.07076883 -0.8539475 1.907556 0.07076883 -0.974052 1.907556 0.07076883 -1.113885 1.907556 0.07076883 -1.27456 1.907556 0.07076883 -1.458117 1.907556 0.07076883 -1.667858 1.907556 0.07076883 -1.907556 1.907556 0.07076883 -2.181521 1.907556 0.07076883 -2.494678 1.907556 0.07076883 -2.852659 1.907556 0.07076883 -3.261896 1.907556 0.07076883 -3.729748 1.907556 0.07076883 -4.264621 1.907556 0.07076883 -4.876131 1.907556 0.07076883 -5.575266 1.907556 0.07076883 -6.374593 1.907556 0.07076883 -0 2.181521 0.07076883 -0 2.181521 0.07076883 -0 2.181521 0.07076883 -0.002268731 2.181521 0.07076883 -0.07076883 2.181521 0.07076883 -0.1119241 2.181521 0.07076883 -0.1475052 2.181521 0.07076883 -0.1846606 2.181521 0.07076883 -0.2245119 2.181521 0.07076883 -0.2679612 2.181521 0.07076883 -0.3158431 2.181521 0.07076883 -0.3689944 2.181521 0.07076883 -0.4282948 2.181521 0.07076883 -0.494694 2.181521 0.07076883 -0.5692344 2.181521 0.07076883 -0.6530715 2.181521 0.07076883 -0.7474945 2.181521 0.07076883 -0.8539475 2.181521 0.07076883 -0.974052 2.181521 0.07076883 -1.113885 2.181521 0.07076883 -1.27456 2.181521 0.07076883 -1.458117 2.181521 0.07076883 -1.667858 2.181521 0.07076883 -1.907556 2.181521 0.07076883 -2.181521 2.181521 0.07076883 -2.494678 2.181521 0.07076883 -2.852659 2.181521 0.07076883 -3.261896 2.181521 0.07076883 -3.729748 2.181521 0.07076883 -4.264621 2.181521 0.07076883 -4.876131 2.181521 0.07076883 -5.575266 2.181521 0.07076883 -6.374593 2.181521 0.07076883 -0 2.494678 0.07076883 -0 2.494678 0.07076883 -0 2.494678 0.07076883 -0.002268731 2.494678 0.07076883 -0.07076883 2.494678 0.07076883 -0.1119241 2.494678 0.07076883 -0.1475052 2.494678 0.07076883 -0.1846606 2.494678 0.07076883 -0.2245119 2.494678 0.07076883 -0.2679612 2.494678 0.07076883 -0.3158431 2.494678 0.07076883 -0.3689944 2.494678 0.07076883 -0.4282948 2.494678 0.07076883 -0.494694 2.494678 0.07076883 -0.5692344 2.494678 0.07076883 -0.6530715 2.494678 0.07076883 -0.7474945 2.494678 0.07076883 -0.8539475 2.494678 0.07076883 -0.974052 2.494678 0.07076883 -1.113885 2.494678 0.07076883 -1.27456 2.494678 0.07076883 -1.458117 2.494678 0.07076883 -1.667858 2.494678 0.07076883 -1.907556 2.494678 0.07076883 -2.181521 2.494678 0.07076883 -2.494678 2.494678 0.07076883 -2.852659 2.494678 0.07076883 -3.261896 2.494678 0.07076883 -3.729748 2.494678 0.07076883 -4.264621 2.494678 0.07076883 -4.876131 2.494678 0.07076883 -5.575266 2.494678 0.07076883 -6.374593 2.494678 0.07076883 -0 2.852659 0.07076883 -0 2.852659 0.07076883 -0 2.852659 0.07076883 -0.002268731 2.852659 0.07076883 -0.07076883 2.852659 0.07076883 -0.1119241 2.852659 0.07076883 -0.1475052 2.852659 0.07076883 -0.1846606 2.852659 0.07076883 -0.2245119 2.852659 0.07076883 -0.2679612 2.852659 0.07076883 -0.3158431 2.852659 0.07076883 -0.3689944 2.852659 0.07076883 -0.4282948 2.852659 0.07076883 -0.494694 2.852659 0.07076883 -0.5692344 2.852659 0.07076883 -0.6530715 2.852659 0.07076883 -0.7474945 2.852659 0.07076883 -0.8539475 2.852659 0.07076883 -0.974052 2.852659 0.07076883 -1.113885 2.852659 0.07076883 -1.27456 2.852659 0.07076883 -1.458117 2.852659 0.07076883 -1.667858 2.852659 0.07076883 -1.907556 2.852659 0.07076883 -2.181521 2.852659 0.07076883 -2.494678 2.852659 0.07076883 -2.852659 2.852659 0.07076883 -3.261896 2.852659 0.07076883 -3.729748 2.852659 0.07076883 -4.264621 2.852659 0.07076883 -4.876131 2.852659 0.07076883 -5.575266 2.852659 0.07076883 -6.374593 2.852659 0.07076883 -0 3.261896 0.07076883 -0 3.261896 0.07076883 -0 3.261896 0.07076883 -0.002268731 3.261896 0.07076883 -0.07076883 3.261896 0.07076883 -0.1119241 3.261896 0.07076883 -0.1475052 3.261896 0.07076883 -0.1846606 3.261896 0.07076883 -0.2245119 3.261896 0.07076883 -0.2679612 3.261896 0.07076883 -0.3158431 3.261896 0.07076883 -0.3689944 3.261896 0.07076883 -0.4282948 3.261896 0.07076883 -0.494694 3.261896 0.07076883 -0.5692344 3.261896 0.07076883 -0.6530715 3.261896 0.07076883 -0.7474945 3.261896 0.07076883 -0.8539475 3.261896 0.07076883 -0.974052 3.261896 0.07076883 -1.113885 3.261896 0.07076883 -1.27456 3.261896 0.07076883 -1.458117 3.261896 0.07076883 -1.667858 3.261896 0.07076883 -1.907556 3.261896 0.07076883 -2.181521 3.261896 0.07076883 -2.494678 3.261896 0.07076883 -2.852659 3.261896 0.07076883 -3.261896 3.261896 0.07076883 -3.729748 3.261896 0.07076883 -4.264621 3.261896 0.07076883 -4.876131 3.261896 0.07076883 -5.575266 3.261896 0.07076883 -6.374593 3.261896 0.07076883 -0 3.729748 0.07076883 -0 3.729748 0.07076883 -0 3.729748 0.07076883 -0.002268731 3.729748 0.07076883 -0.07076883 3.729748 0.07076883 -0.1119241 3.729748 0.07076883 -0.1475052 3.729748 0.07076883 -0.1846606 3.729748 0.07076883 -0.2245119 3.729748 0.07076883 -0.2679612 3.729748 0.07076883 -0.3158431 3.729748 0.07076883 -0.3689944 3.729748 0.07076883 -0.4282948 3.729748 0.07076883 -0.494694 3.729748 0.07076883 -0.5692344 3.729748 0.07076883 -0.6530715 3.729748 0.07076883 -0.7474945 3.729748 0.07076883 -0.8539475 3.729748 0.07076883 -0.974052 3.729748 0.07076883 -1.113885 3.729748 0.07076883 -1.27456 3.729748 0.07076883 -1.458117 3.729748 0.07076883 -1.667858 3.729748 0.07076883 -1.907556 3.729748 0.07076883 -2.181521 3.729748 0.07076883 -2.494678 3.729748 0.07076883 -2.852659 3.729748 0.07076883 -3.261896 3.729748 0.07076883 -3.729748 3.729748 0.07076883 -4.264621 3.729748 0.07076883 -4.876131 3.729748 0.07076883 -5.575266 3.729748 0.07076883 -6.374593 3.729748 0.07076883 -0 4.264621 0.07076883 -0 4.264621 0.07076883 -0 4.264621 0.07076883 -0.002268731 4.264621 0.07076883 -0.07076883 4.264621 0.07076883 -0.1119241 4.264621 0.07076883 -0.1475052 4.264621 0.07076883 -0.1846606 4.264621 0.07076883 -0.2245119 4.264621 0.07076883 -0.2679612 4.264621 0.07076883 -0.3158431 4.264621 0.07076883 -0.3689944 4.264621 0.07076883 -0.4282948 4.264621 0.07076883 -0.494694 4.264621 0.07076883 -0.5692344 4.264621 0.07076883 -0.6530715 4.264621 0.07076883 -0.7474945 4.264621 0.07076883 -0.8539475 4.264621 0.07076883 -0.974052 4.264621 0.07076883 -1.113885 4.264621 0.07076883 -1.27456 4.264621 0.07076883 -1.458117 4.264621 0.07076883 -1.667858 4.264621 0.07076883 -1.907556 4.264621 0.07076883 -2.181521 4.264621 0.07076883 -2.494678 4.264621 0.07076883 -2.852659 4.264621 0.07076883 -3.261896 4.264621 0.07076883 -3.729748 4.264621 0.07076883 -4.264621 4.264621 0.07076883 -4.876131 4.264621 0.07076883 -5.575266 4.264621 0.07076883 -6.374593 4.264621 0.07076883 -0 4.876131 0.07076883 -0 4.876131 0.07076883 -0 4.876131 0.07076883 -0.002268731 4.876131 0.07076883 -0.07076883 4.876131 0.07076883 -0.1119241 4.876131 0.07076883 -0.1475052 4.876131 0.07076883 -0.1846606 4.876131 0.07076883 -0.2245119 4.876131 0.07076883 -0.2679612 4.876131 0.07076883 -0.3158431 4.876131 0.07076883 -0.3689944 4.876131 0.07076883 -0.4282948 4.876131 0.07076883 -0.494694 4.876131 0.07076883 -0.5692344 4.876131 0.07076883 -0.6530715 4.876131 0.07076883 -0.7474945 4.876131 0.07076883 -0.8539475 4.876131 0.07076883 -0.974052 4.876131 0.07076883 -1.113885 4.876131 0.07076883 -1.27456 4.876131 0.07076883 -1.458117 4.876131 0.07076883 -1.667858 4.876131 0.07076883 -1.907556 4.876131 0.07076883 -2.181521 4.876131 0.07076883 -2.494678 4.876131 0.07076883 -2.852659 4.876131 0.07076883 -3.261896 4.876131 0.07076883 -3.729748 4.876131 0.07076883 -4.264621 4.876131 0.07076883 -4.876131 4.876131 0.07076883 -5.575266 4.876131 0.07076883 -6.374593 4.876131 0.07076883 -0 5.575266 0.07076883 -0 5.575266 0.07076883 -0 5.575266 0.07076883 -0.002268731 5.575266 0.07076883 -0.07076883 5.575266 0.07076883 -0.1119241 5.575266 0.07076883 -0.1475052 5.575266 0.07076883 -0.1846606 5.575266 0.07076883 -0.2245119 5.575266 0.07076883 -0.2679612 5.575266 0.07076883 -0.3158431 5.575266 0.07076883 -0.3689944 5.575266 0.07076883 -0.4282948 5.575266 0.07076883 -0.494694 5.575266 0.07076883 -0.5692344 5.575266 0.07076883 -0.6530715 5.575266 0.07076883 -0.7474945 5.575266 0.07076883 -0.8539475 5.575266 0.07076883 -0.974052 5.575266 0.07076883 -1.113885 5.575266 0.07076883 -1.27456 5.575266 0.07076883 -1.458117 5.575266 0.07076883 -1.667858 5.575266 0.07076883 -1.907556 5.575266 0.07076883 -2.181521 5.575266 0.07076883 -2.494678 5.575266 0.07076883 -2.852659 5.575266 0.07076883 -3.261896 5.575266 0.07076883 -3.729748 5.575266 0.07076883 -4.264621 5.575266 0.07076883 -4.876131 5.575266 0.07076883 -5.575266 5.575266 0.07076883 -6.374593 5.575266 0.07076883 -0 6.374593 0.07076883 -0 6.374593 0.07076883 -0 6.374593 0.07076883 -0.002268731 6.374593 0.07076883 -0.07076883 6.374593 0.07076883 -0.1119241 6.374593 0.07076883 -0.1475052 6.374593 0.07076883 -0.1846606 6.374593 0.07076883 -0.2245119 6.374593 0.07076883 -0.2679612 6.374593 0.07076883 -0.3158431 6.374593 0.07076883 -0.3689944 6.374593 0.07076883 -0.4282948 6.374593 0.07076883 -0.494694 6.374593 0.07076883 -0.5692344 6.374593 0.07076883 -0.6530715 6.374593 0.07076883 -0.7474945 6.374593 0.07076883 -0.8539475 6.374593 0.07076883 -0.974052 6.374593 0.07076883 -1.113885 6.374593 0.07076883 -1.27456 6.374593 0.07076883 -1.458117 6.374593 0.07076883 -1.667858 6.374593 0.07076883 -1.907556 6.374593 0.07076883 -2.181521 6.374593 0.07076883 -2.494678 6.374593 0.07076883 -2.852659 6.374593 0.07076883 -3.261896 6.374593 0.07076883 -3.729748 6.374593 0.07076883 -4.264621 6.374593 0.07076883 -4.876131 6.374593 0.07076883 -5.575266 6.374593 0.07076883 -6.374593 6.374593 0.07076883 -0 0 0.1119241 -0 0 0.1119241 -0 0 0.1119241 -0.002268731 0 0.1119241 -0.07076883 0 0.1119241 -0.1119241 0 0.1119241 -0.1475052 0 0.1119241 -0.1846606 0 0.1119241 -0.2245119 0 0.1119241 -0.2679612 0 0.1119241 -0.3158431 0 0.1119241 -0.3689944 0 0.1119241 -0.4282948 0 0.1119241 -0.494694 0 0.1119241 -0.5692344 0 0.1119241 -0.6530715 0 0.1119241 -0.7474945 0 0.1119241 -0.8539475 0 0.1119241 -0.974052 0 0.1119241 -1.113885 0 0.1119241 -1.27456 0 0.1119241 -1.458117 0 0.1119241 -1.667858 0 0.1119241 -1.907556 0 0.1119241 -2.181521 0 0.1119241 -2.494678 0 0.1119241 -2.852659 0 0.1119241 -3.261896 0 0.1119241 -3.729748 0 0.1119241 -4.264621 0 0.1119241 -4.876131 0 0.1119241 -5.575266 0 0.1119241 -6.374593 0 0.1119241 -0 0 0.1119241 -0 0 0.1119241 -0 0 0.1119241 -0.002268731 0 0.1119241 -0.07076883 0 0.1119241 -0.1119241 0 0.1119241 -0.1475052 0 0.1119241 -0.1846606 0 0.1119241 -0.2245119 0 0.1119241 -0.2679612 0 0.1119241 -0.3158431 0 0.1119241 -0.3689944 0 0.1119241 -0.4282948 0 0.1119241 -0.494694 0 0.1119241 -0.5692344 0 0.1119241 -0.6530715 0 0.1119241 -0.7474945 0 0.1119241 -0.8539475 0 0.1119241 -0.974052 0 0.1119241 -1.113885 0 0.1119241 -1.27456 0 0.1119241 -1.458117 0 0.1119241 -1.667858 0 0.1119241 -1.907556 0 0.1119241 -2.181521 0 0.1119241 -2.494678 0 0.1119241 -2.852659 0 0.1119241 -3.261896 0 0.1119241 -3.729748 0 0.1119241 -4.264621 0 0.1119241 -4.876131 0 0.1119241 -5.575266 0 0.1119241 -6.374593 0 0.1119241 -0 0 0.1119241 -0 0 0.1119241 -0 0 0.1119241 -0.002268731 0 0.1119241 -0.07076883 0 0.1119241 -0.1119241 0 0.1119241 -0.1475052 0 0.1119241 -0.1846606 0 0.1119241 -0.2245119 0 0.1119241 -0.2679612 0 0.1119241 -0.3158431 0 0.1119241 -0.3689944 0 0.1119241 -0.4282948 0 0.1119241 -0.494694 0 0.1119241 -0.5692344 0 0.1119241 -0.6530715 0 0.1119241 -0.7474945 0 0.1119241 -0.8539475 0 0.1119241 -0.974052 0 0.1119241 -1.113885 0 0.1119241 -1.27456 0 0.1119241 -1.458117 0 0.1119241 -1.667858 0 0.1119241 -1.907556 0 0.1119241 -2.181521 0 0.1119241 -2.494678 0 0.1119241 -2.852659 0 0.1119241 -3.261896 0 0.1119241 -3.729748 0 0.1119241 -4.264621 0 0.1119241 -4.876131 0 0.1119241 -5.575266 0 0.1119241 -6.374593 0 0.1119241 -0 0.002268731 0.1119241 -0 0.002268731 0.1119241 -0 0.002268731 0.1119241 -0.002268731 0.002268731 0.1119241 -0.07076883 0.002268731 0.1119241 -0.1119241 0.002268731 0.1119241 -0.1475052 0.002268731 0.1119241 -0.1846606 0.002268731 0.1119241 -0.2245119 0.002268731 0.1119241 -0.2679612 0.002268731 0.1119241 -0.3158431 0.002268731 0.1119241 -0.3689944 0.002268731 0.1119241 -0.4282948 0.002268731 0.1119241 -0.494694 0.002268731 0.1119241 -0.5692344 0.002268731 0.1119241 -0.6530715 0.002268731 0.1119241 -0.7474945 0.002268731 0.1119241 -0.8539475 0.002268731 0.1119241 -0.974052 0.002268731 0.1119241 -1.113885 0.002268731 0.1119241 -1.27456 0.002268731 0.1119241 -1.458117 0.002268731 0.1119241 -1.667858 0.002268731 0.1119241 -1.907556 0.002268731 0.1119241 -2.181521 0.002268731 0.1119241 -2.494678 0.002268731 0.1119241 -2.852659 0.002268731 0.1119241 -3.261896 0.002268731 0.1119241 -3.729748 0.002268731 0.1119241 -4.264621 0.002268731 0.1119241 -4.876131 0.002268731 0.1119241 -5.575266 0.002268731 0.1119241 -6.374593 0.002268731 0.1119241 -0 0.07076883 0.1119241 -0 0.07076883 0.1119241 -0 0.07076883 0.1119241 -0.002268731 0.07076883 0.1119241 -0.07076883 0.07076883 0.1119241 -0.1119241 0.07076883 0.1119241 -0.1475052 0.07076883 0.1119241 -0.1846606 0.07076883 0.1119241 -0.2245119 0.07076883 0.1119241 -0.2679612 0.07076883 0.1119241 -0.3158431 0.07076883 0.1119241 -0.3689944 0.07076883 0.1119241 -0.4282948 0.07076883 0.1119241 -0.494694 0.07076883 0.1119241 -0.5692344 0.07076883 0.1119241 -0.6530715 0.07076883 0.1119241 -0.7474945 0.07076883 0.1119241 -0.8539475 0.07076883 0.1119241 -0.974052 0.07076883 0.1119241 -1.113885 0.07076883 0.1119241 -1.27456 0.07076883 0.1119241 -1.458117 0.07076883 0.1119241 -1.667858 0.07076883 0.1119241 -1.907556 0.07076883 0.1119241 -2.181521 0.07076883 0.1119241 -2.494678 0.07076883 0.1119241 -2.852659 0.07076883 0.1119241 -3.261896 0.07076883 0.1119241 -3.729748 0.07076883 0.1119241 -4.264621 0.07076883 0.1119241 -4.876131 0.07076883 0.1119241 -5.575266 0.07076883 0.1119241 -6.374593 0.07076883 0.1119241 -0 0.1119241 0.1119241 -0 0.1119241 0.1119241 -0 0.1119241 0.1119241 -0.002268731 0.1119241 0.1119241 -0.07076883 0.1119241 0.1119241 -0.1119241 0.1119241 0.1119241 -0.1475052 0.1119241 0.1119241 -0.1846606 0.1119241 0.1119241 -0.2245119 0.1119241 0.1119241 -0.2679612 0.1119241 0.1119241 -0.3158431 0.1119241 0.1119241 -0.3689944 0.1119241 0.1119241 -0.4282948 0.1119241 0.1119241 -0.494694 0.1119241 0.1119241 -0.5692344 0.1119241 0.1119241 -0.6530715 0.1119241 0.1119241 -0.7474945 0.1119241 0.1119241 -0.8539475 0.1119241 0.1119241 -0.974052 0.1119241 0.1119241 -1.113885 0.1119241 0.1119241 -1.27456 0.1119241 0.1119241 -1.458117 0.1119241 0.1119241 -1.667858 0.1119241 0.1119241 -1.907556 0.1119241 0.1119241 -2.181521 0.1119241 0.1119241 -2.494678 0.1119241 0.1119241 -2.852659 0.1119241 0.1119241 -3.261896 0.1119241 0.1119241 -3.729748 0.1119241 0.1119241 -4.264621 0.1119241 0.1119241 -4.876131 0.1119241 0.1119241 -5.575266 0.1119241 0.1119241 -6.374593 0.1119241 0.1119241 -0 0.1475052 0.1119241 -0 0.1475052 0.1119241 -0 0.1475052 0.1119241 -0.002268731 0.1475052 0.1119241 -0.07076883 0.1475052 0.1119241 -0.1119241 0.1475052 0.1119241 -0.1475052 0.1475052 0.1119241 -0.1846606 0.1475052 0.1119241 -0.2245119 0.1475052 0.1119241 -0.2679612 0.1475052 0.1119241 -0.3158431 0.1475052 0.1119241 -0.3689944 0.1475052 0.1119241 -0.4282948 0.1475052 0.1119241 -0.494694 0.1475052 0.1119241 -0.5692344 0.1475052 0.1119241 -0.6530715 0.1475052 0.1119241 -0.7474945 0.1475052 0.1119241 -0.8539475 0.1475052 0.1119241 -0.974052 0.1475052 0.1119241 -1.113885 0.1475052 0.1119241 -1.27456 0.1475052 0.1119241 -1.458117 0.1475052 0.1119241 -1.667858 0.1475052 0.1119241 -1.907556 0.1475052 0.1119241 -2.181521 0.1475052 0.1119241 -2.494678 0.1475052 0.1119241 -2.852659 0.1475052 0.1119241 -3.261896 0.1475052 0.1119241 -3.729748 0.1475052 0.1119241 -4.264621 0.1475052 0.1119241 -4.876131 0.1475052 0.1119241 -5.575266 0.1475052 0.1119241 -6.374593 0.1475052 0.1119241 -0 0.1846606 0.1119241 -0 0.1846606 0.1119241 -0 0.1846606 0.1119241 -0.002268731 0.1846606 0.1119241 -0.07076883 0.1846606 0.1119241 -0.1119241 0.1846606 0.1119241 -0.1475052 0.1846606 0.1119241 -0.1846606 0.1846606 0.1119241 -0.2245119 0.1846606 0.1119241 -0.2679612 0.1846606 0.1119241 -0.3158431 0.1846606 0.1119241 -0.3689944 0.1846606 0.1119241 -0.4282948 0.1846606 0.1119241 -0.494694 0.1846606 0.1119241 -0.5692344 0.1846606 0.1119241 -0.6530715 0.1846606 0.1119241 -0.7474945 0.1846606 0.1119241 -0.8539475 0.1846606 0.1119241 -0.974052 0.1846606 0.1119241 -1.113885 0.1846606 0.1119241 -1.27456 0.1846606 0.1119241 -1.458117 0.1846606 0.1119241 -1.667858 0.1846606 0.1119241 -1.907556 0.1846606 0.1119241 -2.181521 0.1846606 0.1119241 -2.494678 0.1846606 0.1119241 -2.852659 0.1846606 0.1119241 -3.261896 0.1846606 0.1119241 -3.729748 0.1846606 0.1119241 -4.264621 0.1846606 0.1119241 -4.876131 0.1846606 0.1119241 -5.575266 0.1846606 0.1119241 -6.374593 0.1846606 0.1119241 -0 0.2245119 0.1119241 -0 0.2245119 0.1119241 -0 0.2245119 0.1119241 -0.002268731 0.2245119 0.1119241 -0.07076883 0.2245119 0.1119241 -0.1119241 0.2245119 0.1119241 -0.1475052 0.2245119 0.1119241 -0.1846606 0.2245119 0.1119241 -0.2245119 0.2245119 0.1119241 -0.2679612 0.2245119 0.1119241 -0.3158431 0.2245119 0.1119241 -0.3689944 0.2245119 0.1119241 -0.4282948 0.2245119 0.1119241 -0.494694 0.2245119 0.1119241 -0.5692344 0.2245119 0.1119241 -0.6530715 0.2245119 0.1119241 -0.7474945 0.2245119 0.1119241 -0.8539475 0.2245119 0.1119241 -0.974052 0.2245119 0.1119241 -1.113885 0.2245119 0.1119241 -1.27456 0.2245119 0.1119241 -1.458117 0.2245119 0.1119241 -1.667858 0.2245119 0.1119241 -1.907556 0.2245119 0.1119241 -2.181521 0.2245119 0.1119241 -2.494678 0.2245119 0.1119241 -2.852659 0.2245119 0.1119241 -3.261896 0.2245119 0.1119241 -3.729748 0.2245119 0.1119241 -4.264621 0.2245119 0.1119241 -4.876131 0.2245119 0.1119241 -5.575266 0.2245119 0.1119241 -6.374593 0.2245119 0.1119241 -0 0.2679612 0.1119241 -0 0.2679612 0.1119241 -0 0.2679612 0.1119241 -0.002268731 0.2679612 0.1119241 -0.07076883 0.2679612 0.1119241 -0.1119241 0.2679612 0.1119241 -0.1475052 0.2679612 0.1119241 -0.1846606 0.2679612 0.1119241 -0.2245119 0.2679612 0.1119241 -0.2679612 0.2679612 0.1119241 -0.3158431 0.2679612 0.1119241 -0.3689944 0.2679612 0.1119241 -0.4282948 0.2679612 0.1119241 -0.494694 0.2679612 0.1119241 -0.5692344 0.2679612 0.1119241 -0.6530715 0.2679612 0.1119241 -0.7474945 0.2679612 0.1119241 -0.8539475 0.2679612 0.1119241 -0.974052 0.2679612 0.1119241 -1.113885 0.2679612 0.1119241 -1.27456 0.2679612 0.1119241 -1.458117 0.2679612 0.1119241 -1.667858 0.2679612 0.1119241 -1.907556 0.2679612 0.1119241 -2.181521 0.2679612 0.1119241 -2.494678 0.2679612 0.1119241 -2.852659 0.2679612 0.1119241 -3.261896 0.2679612 0.1119241 -3.729748 0.2679612 0.1119241 -4.264621 0.2679612 0.1119241 -4.876131 0.2679612 0.1119241 -5.575266 0.2679612 0.1119241 -6.374593 0.2679612 0.1119241 -0 0.3158431 0.1119241 -0 0.3158431 0.1119241 -0 0.3158431 0.1119241 -0.002268731 0.3158431 0.1119241 -0.07076883 0.3158431 0.1119241 -0.1119241 0.3158431 0.1119241 -0.1475052 0.3158431 0.1119241 -0.1846606 0.3158431 0.1119241 -0.2245119 0.3158431 0.1119241 -0.2679612 0.3158431 0.1119241 -0.3158431 0.3158431 0.1119241 -0.3689944 0.3158431 0.1119241 -0.4282948 0.3158431 0.1119241 -0.494694 0.3158431 0.1119241 -0.5692344 0.3158431 0.1119241 -0.6530715 0.3158431 0.1119241 -0.7474945 0.3158431 0.1119241 -0.8539475 0.3158431 0.1119241 -0.974052 0.3158431 0.1119241 -1.113885 0.3158431 0.1119241 -1.27456 0.3158431 0.1119241 -1.458117 0.3158431 0.1119241 -1.667858 0.3158431 0.1119241 -1.907556 0.3158431 0.1119241 -2.181521 0.3158431 0.1119241 -2.494678 0.3158431 0.1119241 -2.852659 0.3158431 0.1119241 -3.261896 0.3158431 0.1119241 -3.729748 0.3158431 0.1119241 -4.264621 0.3158431 0.1119241 -4.876131 0.3158431 0.1119241 -5.575266 0.3158431 0.1119241 -6.374593 0.3158431 0.1119241 -0 0.3689944 0.1119241 -0 0.3689944 0.1119241 -0 0.3689944 0.1119241 -0.002268731 0.3689944 0.1119241 -0.07076883 0.3689944 0.1119241 -0.1119241 0.3689944 0.1119241 -0.1475052 0.3689944 0.1119241 -0.1846606 0.3689944 0.1119241 -0.2245119 0.3689944 0.1119241 -0.2679612 0.3689944 0.1119241 -0.3158431 0.3689944 0.1119241 -0.3689944 0.3689944 0.1119241 -0.4282948 0.3689944 0.1119241 -0.494694 0.3689944 0.1119241 -0.5692344 0.3689944 0.1119241 -0.6530715 0.3689944 0.1119241 -0.7474945 0.3689944 0.1119241 -0.8539475 0.3689944 0.1119241 -0.974052 0.3689944 0.1119241 -1.113885 0.3689944 0.1119241 -1.27456 0.3689944 0.1119241 -1.458117 0.3689944 0.1119241 -1.667858 0.3689944 0.1119241 -1.907556 0.3689944 0.1119241 -2.181521 0.3689944 0.1119241 -2.494678 0.3689944 0.1119241 -2.852659 0.3689944 0.1119241 -3.261896 0.3689944 0.1119241 -3.729748 0.3689944 0.1119241 -4.264621 0.3689944 0.1119241 -4.876131 0.3689944 0.1119241 -5.575266 0.3689944 0.1119241 -6.374593 0.3689944 0.1119241 -0 0.4282948 0.1119241 -0 0.4282948 0.1119241 -0 0.4282948 0.1119241 -0.002268731 0.4282948 0.1119241 -0.07076883 0.4282948 0.1119241 -0.1119241 0.4282948 0.1119241 -0.1475052 0.4282948 0.1119241 -0.1846606 0.4282948 0.1119241 -0.2245119 0.4282948 0.1119241 -0.2679612 0.4282948 0.1119241 -0.3158431 0.4282948 0.1119241 -0.3689944 0.4282948 0.1119241 -0.4282948 0.4282948 0.1119241 -0.494694 0.4282948 0.1119241 -0.5692344 0.4282948 0.1119241 -0.6530715 0.4282948 0.1119241 -0.7474945 0.4282948 0.1119241 -0.8539475 0.4282948 0.1119241 -0.974052 0.4282948 0.1119241 -1.113885 0.4282948 0.1119241 -1.27456 0.4282948 0.1119241 -1.458117 0.4282948 0.1119241 -1.667858 0.4282948 0.1119241 -1.907556 0.4282948 0.1119241 -2.181521 0.4282948 0.1119241 -2.494678 0.4282948 0.1119241 -2.852659 0.4282948 0.1119241 -3.261896 0.4282948 0.1119241 -3.729748 0.4282948 0.1119241 -4.264621 0.4282948 0.1119241 -4.876131 0.4282948 0.1119241 -5.575266 0.4282948 0.1119241 -6.374593 0.4282948 0.1119241 -0 0.494694 0.1119241 -0 0.494694 0.1119241 -0 0.494694 0.1119241 -0.002268731 0.494694 0.1119241 -0.07076883 0.494694 0.1119241 -0.1119241 0.494694 0.1119241 -0.1475052 0.494694 0.1119241 -0.1846606 0.494694 0.1119241 -0.2245119 0.494694 0.1119241 -0.2679612 0.494694 0.1119241 -0.3158431 0.494694 0.1119241 -0.3689944 0.494694 0.1119241 -0.4282948 0.494694 0.1119241 -0.494694 0.494694 0.1119241 -0.5692344 0.494694 0.1119241 -0.6530715 0.494694 0.1119241 -0.7474945 0.494694 0.1119241 -0.8539475 0.494694 0.1119241 -0.974052 0.494694 0.1119241 -1.113885 0.494694 0.1119241 -1.27456 0.494694 0.1119241 -1.458117 0.494694 0.1119241 -1.667858 0.494694 0.1119241 -1.907556 0.494694 0.1119241 -2.181521 0.494694 0.1119241 -2.494678 0.494694 0.1119241 -2.852659 0.494694 0.1119241 -3.261896 0.494694 0.1119241 -3.729748 0.494694 0.1119241 -4.264621 0.494694 0.1119241 -4.876131 0.494694 0.1119241 -5.575266 0.494694 0.1119241 -6.374593 0.494694 0.1119241 -0 0.5692344 0.1119241 -0 0.5692344 0.1119241 -0 0.5692344 0.1119241 -0.002268731 0.5692344 0.1119241 -0.07076883 0.5692344 0.1119241 -0.1119241 0.5692344 0.1119241 -0.1475052 0.5692344 0.1119241 -0.1846606 0.5692344 0.1119241 -0.2245119 0.5692344 0.1119241 -0.2679612 0.5692344 0.1119241 -0.3158431 0.5692344 0.1119241 -0.3689944 0.5692344 0.1119241 -0.4282948 0.5692344 0.1119241 -0.494694 0.5692344 0.1119241 -0.5692344 0.5692344 0.1119241 -0.6530715 0.5692344 0.1119241 -0.7474945 0.5692344 0.1119241 -0.8539475 0.5692344 0.1119241 -0.974052 0.5692344 0.1119241 -1.113885 0.5692344 0.1119241 -1.27456 0.5692344 0.1119241 -1.458117 0.5692344 0.1119241 -1.667858 0.5692344 0.1119241 -1.907556 0.5692344 0.1119241 -2.181521 0.5692344 0.1119241 -2.494678 0.5692344 0.1119241 -2.852659 0.5692344 0.1119241 -3.261896 0.5692344 0.1119241 -3.729748 0.5692344 0.1119241 -4.264621 0.5692344 0.1119241 -4.876131 0.5692344 0.1119241 -5.575266 0.5692344 0.1119241 -6.374593 0.5692344 0.1119241 -0 0.6530715 0.1119241 -0 0.6530715 0.1119241 -0 0.6530715 0.1119241 -0.002268731 0.6530715 0.1119241 -0.07076883 0.6530715 0.1119241 -0.1119241 0.6530715 0.1119241 -0.1475052 0.6530715 0.1119241 -0.1846606 0.6530715 0.1119241 -0.2245119 0.6530715 0.1119241 -0.2679612 0.6530715 0.1119241 -0.3158431 0.6530715 0.1119241 -0.3689944 0.6530715 0.1119241 -0.4282948 0.6530715 0.1119241 -0.494694 0.6530715 0.1119241 -0.5692344 0.6530715 0.1119241 -0.6530715 0.6530715 0.1119241 -0.7474945 0.6530715 0.1119241 -0.8539475 0.6530715 0.1119241 -0.974052 0.6530715 0.1119241 -1.113885 0.6530715 0.1119241 -1.27456 0.6530715 0.1119241 -1.458117 0.6530715 0.1119241 -1.667858 0.6530715 0.1119241 -1.907556 0.6530715 0.1119241 -2.181521 0.6530715 0.1119241 -2.494678 0.6530715 0.1119241 -2.852659 0.6530715 0.1119241 -3.261896 0.6530715 0.1119241 -3.729748 0.6530715 0.1119241 -4.264621 0.6530715 0.1119241 -4.876131 0.6530715 0.1119241 -5.575266 0.6530715 0.1119241 -6.374593 0.6530715 0.1119241 -0 0.7474945 0.1119241 -0 0.7474945 0.1119241 -0 0.7474945 0.1119241 -0.002268731 0.7474945 0.1119241 -0.07076883 0.7474945 0.1119241 -0.1119241 0.7474945 0.1119241 -0.1475052 0.7474945 0.1119241 -0.1846606 0.7474945 0.1119241 -0.2245119 0.7474945 0.1119241 -0.2679612 0.7474945 0.1119241 -0.3158431 0.7474945 0.1119241 -0.3689944 0.7474945 0.1119241 -0.4282948 0.7474945 0.1119241 -0.494694 0.7474945 0.1119241 -0.5692344 0.7474945 0.1119241 -0.6530715 0.7474945 0.1119241 -0.7474945 0.7474945 0.1119241 -0.8539475 0.7474945 0.1119241 -0.974052 0.7474945 0.1119241 -1.113885 0.7474945 0.1119241 -1.27456 0.7474945 0.1119241 -1.458117 0.7474945 0.1119241 -1.667858 0.7474945 0.1119241 -1.907556 0.7474945 0.1119241 -2.181521 0.7474945 0.1119241 -2.494678 0.7474945 0.1119241 -2.852659 0.7474945 0.1119241 -3.261896 0.7474945 0.1119241 -3.729748 0.7474945 0.1119241 -4.264621 0.7474945 0.1119241 -4.876131 0.7474945 0.1119241 -5.575266 0.7474945 0.1119241 -6.374593 0.7474945 0.1119241 -0 0.8539475 0.1119241 -0 0.8539475 0.1119241 -0 0.8539475 0.1119241 -0.002268731 0.8539475 0.1119241 -0.07076883 0.8539475 0.1119241 -0.1119241 0.8539475 0.1119241 -0.1475052 0.8539475 0.1119241 -0.1846606 0.8539475 0.1119241 -0.2245119 0.8539475 0.1119241 -0.2679612 0.8539475 0.1119241 -0.3158431 0.8539475 0.1119241 -0.3689944 0.8539475 0.1119241 -0.4282948 0.8539475 0.1119241 -0.494694 0.8539475 0.1119241 -0.5692344 0.8539475 0.1119241 -0.6530715 0.8539475 0.1119241 -0.7474945 0.8539475 0.1119241 -0.8539475 0.8539475 0.1119241 -0.974052 0.8539475 0.1119241 -1.113885 0.8539475 0.1119241 -1.27456 0.8539475 0.1119241 -1.458117 0.8539475 0.1119241 -1.667858 0.8539475 0.1119241 -1.907556 0.8539475 0.1119241 -2.181521 0.8539475 0.1119241 -2.494678 0.8539475 0.1119241 -2.852659 0.8539475 0.1119241 -3.261896 0.8539475 0.1119241 -3.729748 0.8539475 0.1119241 -4.264621 0.8539475 0.1119241 -4.876131 0.8539475 0.1119241 -5.575266 0.8539475 0.1119241 -6.374593 0.8539475 0.1119241 -0 0.974052 0.1119241 -0 0.974052 0.1119241 -0 0.974052 0.1119241 -0.002268731 0.974052 0.1119241 -0.07076883 0.974052 0.1119241 -0.1119241 0.974052 0.1119241 -0.1475052 0.974052 0.1119241 -0.1846606 0.974052 0.1119241 -0.2245119 0.974052 0.1119241 -0.2679612 0.974052 0.1119241 -0.3158431 0.974052 0.1119241 -0.3689944 0.974052 0.1119241 -0.4282948 0.974052 0.1119241 -0.494694 0.974052 0.1119241 -0.5692344 0.974052 0.1119241 -0.6530715 0.974052 0.1119241 -0.7474945 0.974052 0.1119241 -0.8539475 0.974052 0.1119241 -0.974052 0.974052 0.1119241 -1.113885 0.974052 0.1119241 -1.27456 0.974052 0.1119241 -1.458117 0.974052 0.1119241 -1.667858 0.974052 0.1119241 -1.907556 0.974052 0.1119241 -2.181521 0.974052 0.1119241 -2.494678 0.974052 0.1119241 -2.852659 0.974052 0.1119241 -3.261896 0.974052 0.1119241 -3.729748 0.974052 0.1119241 -4.264621 0.974052 0.1119241 -4.876131 0.974052 0.1119241 -5.575266 0.974052 0.1119241 -6.374593 0.974052 0.1119241 -0 1.113885 0.1119241 -0 1.113885 0.1119241 -0 1.113885 0.1119241 -0.002268731 1.113885 0.1119241 -0.07076883 1.113885 0.1119241 -0.1119241 1.113885 0.1119241 -0.1475052 1.113885 0.1119241 -0.1846606 1.113885 0.1119241 -0.2245119 1.113885 0.1119241 -0.2679612 1.113885 0.1119241 -0.3158431 1.113885 0.1119241 -0.3689944 1.113885 0.1119241 -0.4282948 1.113885 0.1119241 -0.494694 1.113885 0.1119241 -0.5692344 1.113885 0.1119241 -0.6530715 1.113885 0.1119241 -0.7474945 1.113885 0.1119241 -0.8539475 1.113885 0.1119241 -0.974052 1.113885 0.1119241 -1.113885 1.113885 0.1119241 -1.27456 1.113885 0.1119241 -1.458117 1.113885 0.1119241 -1.667858 1.113885 0.1119241 -1.907556 1.113885 0.1119241 -2.181521 1.113885 0.1119241 -2.494678 1.113885 0.1119241 -2.852659 1.113885 0.1119241 -3.261896 1.113885 0.1119241 -3.729748 1.113885 0.1119241 -4.264621 1.113885 0.1119241 -4.876131 1.113885 0.1119241 -5.575266 1.113885 0.1119241 -6.374593 1.113885 0.1119241 -0 1.27456 0.1119241 -0 1.27456 0.1119241 -0 1.27456 0.1119241 -0.002268731 1.27456 0.1119241 -0.07076883 1.27456 0.1119241 -0.1119241 1.27456 0.1119241 -0.1475052 1.27456 0.1119241 -0.1846606 1.27456 0.1119241 -0.2245119 1.27456 0.1119241 -0.2679612 1.27456 0.1119241 -0.3158431 1.27456 0.1119241 -0.3689944 1.27456 0.1119241 -0.4282948 1.27456 0.1119241 -0.494694 1.27456 0.1119241 -0.5692344 1.27456 0.1119241 -0.6530715 1.27456 0.1119241 -0.7474945 1.27456 0.1119241 -0.8539475 1.27456 0.1119241 -0.974052 1.27456 0.1119241 -1.113885 1.27456 0.1119241 -1.27456 1.27456 0.1119241 -1.458117 1.27456 0.1119241 -1.667858 1.27456 0.1119241 -1.907556 1.27456 0.1119241 -2.181521 1.27456 0.1119241 -2.494678 1.27456 0.1119241 -2.852659 1.27456 0.1119241 -3.261896 1.27456 0.1119241 -3.729748 1.27456 0.1119241 -4.264621 1.27456 0.1119241 -4.876131 1.27456 0.1119241 -5.575266 1.27456 0.1119241 -6.374593 1.27456 0.1119241 -0 1.458117 0.1119241 -0 1.458117 0.1119241 -0 1.458117 0.1119241 -0.002268731 1.458117 0.1119241 -0.07076883 1.458117 0.1119241 -0.1119241 1.458117 0.1119241 -0.1475052 1.458117 0.1119241 -0.1846606 1.458117 0.1119241 -0.2245119 1.458117 0.1119241 -0.2679612 1.458117 0.1119241 -0.3158431 1.458117 0.1119241 -0.3689944 1.458117 0.1119241 -0.4282948 1.458117 0.1119241 -0.494694 1.458117 0.1119241 -0.5692344 1.458117 0.1119241 -0.6530715 1.458117 0.1119241 -0.7474945 1.458117 0.1119241 -0.8539475 1.458117 0.1119241 -0.974052 1.458117 0.1119241 -1.113885 1.458117 0.1119241 -1.27456 1.458117 0.1119241 -1.458117 1.458117 0.1119241 -1.667858 1.458117 0.1119241 -1.907556 1.458117 0.1119241 -2.181521 1.458117 0.1119241 -2.494678 1.458117 0.1119241 -2.852659 1.458117 0.1119241 -3.261896 1.458117 0.1119241 -3.729748 1.458117 0.1119241 -4.264621 1.458117 0.1119241 -4.876131 1.458117 0.1119241 -5.575266 1.458117 0.1119241 -6.374593 1.458117 0.1119241 -0 1.667858 0.1119241 -0 1.667858 0.1119241 -0 1.667858 0.1119241 -0.002268731 1.667858 0.1119241 -0.07076883 1.667858 0.1119241 -0.1119241 1.667858 0.1119241 -0.1475052 1.667858 0.1119241 -0.1846606 1.667858 0.1119241 -0.2245119 1.667858 0.1119241 -0.2679612 1.667858 0.1119241 -0.3158431 1.667858 0.1119241 -0.3689944 1.667858 0.1119241 -0.4282948 1.667858 0.1119241 -0.494694 1.667858 0.1119241 -0.5692344 1.667858 0.1119241 -0.6530715 1.667858 0.1119241 -0.7474945 1.667858 0.1119241 -0.8539475 1.667858 0.1119241 -0.974052 1.667858 0.1119241 -1.113885 1.667858 0.1119241 -1.27456 1.667858 0.1119241 -1.458117 1.667858 0.1119241 -1.667858 1.667858 0.1119241 -1.907556 1.667858 0.1119241 -2.181521 1.667858 0.1119241 -2.494678 1.667858 0.1119241 -2.852659 1.667858 0.1119241 -3.261896 1.667858 0.1119241 -3.729748 1.667858 0.1119241 -4.264621 1.667858 0.1119241 -4.876131 1.667858 0.1119241 -5.575266 1.667858 0.1119241 -6.374593 1.667858 0.1119241 -0 1.907556 0.1119241 -0 1.907556 0.1119241 -0 1.907556 0.1119241 -0.002268731 1.907556 0.1119241 -0.07076883 1.907556 0.1119241 -0.1119241 1.907556 0.1119241 -0.1475052 1.907556 0.1119241 -0.1846606 1.907556 0.1119241 -0.2245119 1.907556 0.1119241 -0.2679612 1.907556 0.1119241 -0.3158431 1.907556 0.1119241 -0.3689944 1.907556 0.1119241 -0.4282948 1.907556 0.1119241 -0.494694 1.907556 0.1119241 -0.5692344 1.907556 0.1119241 -0.6530715 1.907556 0.1119241 -0.7474945 1.907556 0.1119241 -0.8539475 1.907556 0.1119241 -0.974052 1.907556 0.1119241 -1.113885 1.907556 0.1119241 -1.27456 1.907556 0.1119241 -1.458117 1.907556 0.1119241 -1.667858 1.907556 0.1119241 -1.907556 1.907556 0.1119241 -2.181521 1.907556 0.1119241 -2.494678 1.907556 0.1119241 -2.852659 1.907556 0.1119241 -3.261896 1.907556 0.1119241 -3.729748 1.907556 0.1119241 -4.264621 1.907556 0.1119241 -4.876131 1.907556 0.1119241 -5.575266 1.907556 0.1119241 -6.374593 1.907556 0.1119241 -0 2.181521 0.1119241 -0 2.181521 0.1119241 -0 2.181521 0.1119241 -0.002268731 2.181521 0.1119241 -0.07076883 2.181521 0.1119241 -0.1119241 2.181521 0.1119241 -0.1475052 2.181521 0.1119241 -0.1846606 2.181521 0.1119241 -0.2245119 2.181521 0.1119241 -0.2679612 2.181521 0.1119241 -0.3158431 2.181521 0.1119241 -0.3689944 2.181521 0.1119241 -0.4282948 2.181521 0.1119241 -0.494694 2.181521 0.1119241 -0.5692344 2.181521 0.1119241 -0.6530715 2.181521 0.1119241 -0.7474945 2.181521 0.1119241 -0.8539475 2.181521 0.1119241 -0.974052 2.181521 0.1119241 -1.113885 2.181521 0.1119241 -1.27456 2.181521 0.1119241 -1.458117 2.181521 0.1119241 -1.667858 2.181521 0.1119241 -1.907556 2.181521 0.1119241 -2.181521 2.181521 0.1119241 -2.494678 2.181521 0.1119241 -2.852659 2.181521 0.1119241 -3.261896 2.181521 0.1119241 -3.729748 2.181521 0.1119241 -4.264621 2.181521 0.1119241 -4.876131 2.181521 0.1119241 -5.575266 2.181521 0.1119241 -6.374593 2.181521 0.1119241 -0 2.494678 0.1119241 -0 2.494678 0.1119241 -0 2.494678 0.1119241 -0.002268731 2.494678 0.1119241 -0.07076883 2.494678 0.1119241 -0.1119241 2.494678 0.1119241 -0.1475052 2.494678 0.1119241 -0.1846606 2.494678 0.1119241 -0.2245119 2.494678 0.1119241 -0.2679612 2.494678 0.1119241 -0.3158431 2.494678 0.1119241 -0.3689944 2.494678 0.1119241 -0.4282948 2.494678 0.1119241 -0.494694 2.494678 0.1119241 -0.5692344 2.494678 0.1119241 -0.6530715 2.494678 0.1119241 -0.7474945 2.494678 0.1119241 -0.8539475 2.494678 0.1119241 -0.974052 2.494678 0.1119241 -1.113885 2.494678 0.1119241 -1.27456 2.494678 0.1119241 -1.458117 2.494678 0.1119241 -1.667858 2.494678 0.1119241 -1.907556 2.494678 0.1119241 -2.181521 2.494678 0.1119241 -2.494678 2.494678 0.1119241 -2.852659 2.494678 0.1119241 -3.261896 2.494678 0.1119241 -3.729748 2.494678 0.1119241 -4.264621 2.494678 0.1119241 -4.876131 2.494678 0.1119241 -5.575266 2.494678 0.1119241 -6.374593 2.494678 0.1119241 -0 2.852659 0.1119241 -0 2.852659 0.1119241 -0 2.852659 0.1119241 -0.002268731 2.852659 0.1119241 -0.07076883 2.852659 0.1119241 -0.1119241 2.852659 0.1119241 -0.1475052 2.852659 0.1119241 -0.1846606 2.852659 0.1119241 -0.2245119 2.852659 0.1119241 -0.2679612 2.852659 0.1119241 -0.3158431 2.852659 0.1119241 -0.3689944 2.852659 0.1119241 -0.4282948 2.852659 0.1119241 -0.494694 2.852659 0.1119241 -0.5692344 2.852659 0.1119241 -0.6530715 2.852659 0.1119241 -0.7474945 2.852659 0.1119241 -0.8539475 2.852659 0.1119241 -0.974052 2.852659 0.1119241 -1.113885 2.852659 0.1119241 -1.27456 2.852659 0.1119241 -1.458117 2.852659 0.1119241 -1.667858 2.852659 0.1119241 -1.907556 2.852659 0.1119241 -2.181521 2.852659 0.1119241 -2.494678 2.852659 0.1119241 -2.852659 2.852659 0.1119241 -3.261896 2.852659 0.1119241 -3.729748 2.852659 0.1119241 -4.264621 2.852659 0.1119241 -4.876131 2.852659 0.1119241 -5.575266 2.852659 0.1119241 -6.374593 2.852659 0.1119241 -0 3.261896 0.1119241 -0 3.261896 0.1119241 -0 3.261896 0.1119241 -0.002268731 3.261896 0.1119241 -0.07076883 3.261896 0.1119241 -0.1119241 3.261896 0.1119241 -0.1475052 3.261896 0.1119241 -0.1846606 3.261896 0.1119241 -0.2245119 3.261896 0.1119241 -0.2679612 3.261896 0.1119241 -0.3158431 3.261896 0.1119241 -0.3689944 3.261896 0.1119241 -0.4282948 3.261896 0.1119241 -0.494694 3.261896 0.1119241 -0.5692344 3.261896 0.1119241 -0.6530715 3.261896 0.1119241 -0.7474945 3.261896 0.1119241 -0.8539475 3.261896 0.1119241 -0.974052 3.261896 0.1119241 -1.113885 3.261896 0.1119241 -1.27456 3.261896 0.1119241 -1.458117 3.261896 0.1119241 -1.667858 3.261896 0.1119241 -1.907556 3.261896 0.1119241 -2.181521 3.261896 0.1119241 -2.494678 3.261896 0.1119241 -2.852659 3.261896 0.1119241 -3.261896 3.261896 0.1119241 -3.729748 3.261896 0.1119241 -4.264621 3.261896 0.1119241 -4.876131 3.261896 0.1119241 -5.575266 3.261896 0.1119241 -6.374593 3.261896 0.1119241 -0 3.729748 0.1119241 -0 3.729748 0.1119241 -0 3.729748 0.1119241 -0.002268731 3.729748 0.1119241 -0.07076883 3.729748 0.1119241 -0.1119241 3.729748 0.1119241 -0.1475052 3.729748 0.1119241 -0.1846606 3.729748 0.1119241 -0.2245119 3.729748 0.1119241 -0.2679612 3.729748 0.1119241 -0.3158431 3.729748 0.1119241 -0.3689944 3.729748 0.1119241 -0.4282948 3.729748 0.1119241 -0.494694 3.729748 0.1119241 -0.5692344 3.729748 0.1119241 -0.6530715 3.729748 0.1119241 -0.7474945 3.729748 0.1119241 -0.8539475 3.729748 0.1119241 -0.974052 3.729748 0.1119241 -1.113885 3.729748 0.1119241 -1.27456 3.729748 0.1119241 -1.458117 3.729748 0.1119241 -1.667858 3.729748 0.1119241 -1.907556 3.729748 0.1119241 -2.181521 3.729748 0.1119241 -2.494678 3.729748 0.1119241 -2.852659 3.729748 0.1119241 -3.261896 3.729748 0.1119241 -3.729748 3.729748 0.1119241 -4.264621 3.729748 0.1119241 -4.876131 3.729748 0.1119241 -5.575266 3.729748 0.1119241 -6.374593 3.729748 0.1119241 -0 4.264621 0.1119241 -0 4.264621 0.1119241 -0 4.264621 0.1119241 -0.002268731 4.264621 0.1119241 -0.07076883 4.264621 0.1119241 -0.1119241 4.264621 0.1119241 -0.1475052 4.264621 0.1119241 -0.1846606 4.264621 0.1119241 -0.2245119 4.264621 0.1119241 -0.2679612 4.264621 0.1119241 -0.3158431 4.264621 0.1119241 -0.3689944 4.264621 0.1119241 -0.4282948 4.264621 0.1119241 -0.494694 4.264621 0.1119241 -0.5692344 4.264621 0.1119241 -0.6530715 4.264621 0.1119241 -0.7474945 4.264621 0.1119241 -0.8539475 4.264621 0.1119241 -0.974052 4.264621 0.1119241 -1.113885 4.264621 0.1119241 -1.27456 4.264621 0.1119241 -1.458117 4.264621 0.1119241 -1.667858 4.264621 0.1119241 -1.907556 4.264621 0.1119241 -2.181521 4.264621 0.1119241 -2.494678 4.264621 0.1119241 -2.852659 4.264621 0.1119241 -3.261896 4.264621 0.1119241 -3.729748 4.264621 0.1119241 -4.264621 4.264621 0.1119241 -4.876131 4.264621 0.1119241 -5.575266 4.264621 0.1119241 -6.374593 4.264621 0.1119241 -0 4.876131 0.1119241 -0 4.876131 0.1119241 -0 4.876131 0.1119241 -0.002268731 4.876131 0.1119241 -0.07076883 4.876131 0.1119241 -0.1119241 4.876131 0.1119241 -0.1475052 4.876131 0.1119241 -0.1846606 4.876131 0.1119241 -0.2245119 4.876131 0.1119241 -0.2679612 4.876131 0.1119241 -0.3158431 4.876131 0.1119241 -0.3689944 4.876131 0.1119241 -0.4282948 4.876131 0.1119241 -0.494694 4.876131 0.1119241 -0.5692344 4.876131 0.1119241 -0.6530715 4.876131 0.1119241 -0.7474945 4.876131 0.1119241 -0.8539475 4.876131 0.1119241 -0.974052 4.876131 0.1119241 -1.113885 4.876131 0.1119241 -1.27456 4.876131 0.1119241 -1.458117 4.876131 0.1119241 -1.667858 4.876131 0.1119241 -1.907556 4.876131 0.1119241 -2.181521 4.876131 0.1119241 -2.494678 4.876131 0.1119241 -2.852659 4.876131 0.1119241 -3.261896 4.876131 0.1119241 -3.729748 4.876131 0.1119241 -4.264621 4.876131 0.1119241 -4.876131 4.876131 0.1119241 -5.575266 4.876131 0.1119241 -6.374593 4.876131 0.1119241 -0 5.575266 0.1119241 -0 5.575266 0.1119241 -0 5.575266 0.1119241 -0.002268731 5.575266 0.1119241 -0.07076883 5.575266 0.1119241 -0.1119241 5.575266 0.1119241 -0.1475052 5.575266 0.1119241 -0.1846606 5.575266 0.1119241 -0.2245119 5.575266 0.1119241 -0.2679612 5.575266 0.1119241 -0.3158431 5.575266 0.1119241 -0.3689944 5.575266 0.1119241 -0.4282948 5.575266 0.1119241 -0.494694 5.575266 0.1119241 -0.5692344 5.575266 0.1119241 -0.6530715 5.575266 0.1119241 -0.7474945 5.575266 0.1119241 -0.8539475 5.575266 0.1119241 -0.974052 5.575266 0.1119241 -1.113885 5.575266 0.1119241 -1.27456 5.575266 0.1119241 -1.458117 5.575266 0.1119241 -1.667858 5.575266 0.1119241 -1.907556 5.575266 0.1119241 -2.181521 5.575266 0.1119241 -2.494678 5.575266 0.1119241 -2.852659 5.575266 0.1119241 -3.261896 5.575266 0.1119241 -3.729748 5.575266 0.1119241 -4.264621 5.575266 0.1119241 -4.876131 5.575266 0.1119241 -5.575266 5.575266 0.1119241 -6.374593 5.575266 0.1119241 -0 6.374593 0.1119241 -0 6.374593 0.1119241 -0 6.374593 0.1119241 -0.002268731 6.374593 0.1119241 -0.07076883 6.374593 0.1119241 -0.1119241 6.374593 0.1119241 -0.1475052 6.374593 0.1119241 -0.1846606 6.374593 0.1119241 -0.2245119 6.374593 0.1119241 -0.2679612 6.374593 0.1119241 -0.3158431 6.374593 0.1119241 -0.3689944 6.374593 0.1119241 -0.4282948 6.374593 0.1119241 -0.494694 6.374593 0.1119241 -0.5692344 6.374593 0.1119241 -0.6530715 6.374593 0.1119241 -0.7474945 6.374593 0.1119241 -0.8539475 6.374593 0.1119241 -0.974052 6.374593 0.1119241 -1.113885 6.374593 0.1119241 -1.27456 6.374593 0.1119241 -1.458117 6.374593 0.1119241 -1.667858 6.374593 0.1119241 -1.907556 6.374593 0.1119241 -2.181521 6.374593 0.1119241 -2.494678 6.374593 0.1119241 -2.852659 6.374593 0.1119241 -3.261896 6.374593 0.1119241 -3.729748 6.374593 0.1119241 -4.264621 6.374593 0.1119241 -4.876131 6.374593 0.1119241 -5.575266 6.374593 0.1119241 -6.374593 6.374593 0.1119241 -0 0 0.1475052 -0 0 0.1475052 -0 0 0.1475052 -0.002268731 0 0.1475052 -0.07076883 0 0.1475052 -0.1119241 0 0.1475052 -0.1475052 0 0.1475052 -0.1846606 0 0.1475052 -0.2245119 0 0.1475052 -0.2679612 0 0.1475052 -0.3158431 0 0.1475052 -0.3689944 0 0.1475052 -0.4282948 0 0.1475052 -0.494694 0 0.1475052 -0.5692344 0 0.1475052 -0.6530715 0 0.1475052 -0.7474945 0 0.1475052 -0.8539475 0 0.1475052 -0.974052 0 0.1475052 -1.113885 0 0.1475052 -1.27456 0 0.1475052 -1.458117 0 0.1475052 -1.667858 0 0.1475052 -1.907556 0 0.1475052 -2.181521 0 0.1475052 -2.494678 0 0.1475052 -2.852659 0 0.1475052 -3.261896 0 0.1475052 -3.729748 0 0.1475052 -4.264621 0 0.1475052 -4.876131 0 0.1475052 -5.575266 0 0.1475052 -6.374593 0 0.1475052 -0 0 0.1475052 -0 0 0.1475052 -0 0 0.1475052 -0.002268731 0 0.1475052 -0.07076883 0 0.1475052 -0.1119241 0 0.1475052 -0.1475052 0 0.1475052 -0.1846606 0 0.1475052 -0.2245119 0 0.1475052 -0.2679612 0 0.1475052 -0.3158431 0 0.1475052 -0.3689944 0 0.1475052 -0.4282948 0 0.1475052 -0.494694 0 0.1475052 -0.5692344 0 0.1475052 -0.6530715 0 0.1475052 -0.7474945 0 0.1475052 -0.8539475 0 0.1475052 -0.974052 0 0.1475052 -1.113885 0 0.1475052 -1.27456 0 0.1475052 -1.458117 0 0.1475052 -1.667858 0 0.1475052 -1.907556 0 0.1475052 -2.181521 0 0.1475052 -2.494678 0 0.1475052 -2.852659 0 0.1475052 -3.261896 0 0.1475052 -3.729748 0 0.1475052 -4.264621 0 0.1475052 -4.876131 0 0.1475052 -5.575266 0 0.1475052 -6.374593 0 0.1475052 -0 0 0.1475052 -0 0 0.1475052 -0 0 0.1475052 -0.002268731 0 0.1475052 -0.07076883 0 0.1475052 -0.1119241 0 0.1475052 -0.1475052 0 0.1475052 -0.1846606 0 0.1475052 -0.2245119 0 0.1475052 -0.2679612 0 0.1475052 -0.3158431 0 0.1475052 -0.3689944 0 0.1475052 -0.4282948 0 0.1475052 -0.494694 0 0.1475052 -0.5692344 0 0.1475052 -0.6530715 0 0.1475052 -0.7474945 0 0.1475052 -0.8539475 0 0.1475052 -0.974052 0 0.1475052 -1.113885 0 0.1475052 -1.27456 0 0.1475052 -1.458117 0 0.1475052 -1.667858 0 0.1475052 -1.907556 0 0.1475052 -2.181521 0 0.1475052 -2.494678 0 0.1475052 -2.852659 0 0.1475052 -3.261896 0 0.1475052 -3.729748 0 0.1475052 -4.264621 0 0.1475052 -4.876131 0 0.1475052 -5.575266 0 0.1475052 -6.374593 0 0.1475052 -0 0.002268731 0.1475052 -0 0.002268731 0.1475052 -0 0.002268731 0.1475052 -0.002268731 0.002268731 0.1475052 -0.07076883 0.002268731 0.1475052 -0.1119241 0.002268731 0.1475052 -0.1475052 0.002268731 0.1475052 -0.1846606 0.002268731 0.1475052 -0.2245119 0.002268731 0.1475052 -0.2679612 0.002268731 0.1475052 -0.3158431 0.002268731 0.1475052 -0.3689944 0.002268731 0.1475052 -0.4282948 0.002268731 0.1475052 -0.494694 0.002268731 0.1475052 -0.5692344 0.002268731 0.1475052 -0.6530715 0.002268731 0.1475052 -0.7474945 0.002268731 0.1475052 -0.8539475 0.002268731 0.1475052 -0.974052 0.002268731 0.1475052 -1.113885 0.002268731 0.1475052 -1.27456 0.002268731 0.1475052 -1.458117 0.002268731 0.1475052 -1.667858 0.002268731 0.1475052 -1.907556 0.002268731 0.1475052 -2.181521 0.002268731 0.1475052 -2.494678 0.002268731 0.1475052 -2.852659 0.002268731 0.1475052 -3.261896 0.002268731 0.1475052 -3.729748 0.002268731 0.1475052 -4.264621 0.002268731 0.1475052 -4.876131 0.002268731 0.1475052 -5.575266 0.002268731 0.1475052 -6.374593 0.002268731 0.1475052 -0 0.07076883 0.1475052 -0 0.07076883 0.1475052 -0 0.07076883 0.1475052 -0.002268731 0.07076883 0.1475052 -0.07076883 0.07076883 0.1475052 -0.1119241 0.07076883 0.1475052 -0.1475052 0.07076883 0.1475052 -0.1846606 0.07076883 0.1475052 -0.2245119 0.07076883 0.1475052 -0.2679612 0.07076883 0.1475052 -0.3158431 0.07076883 0.1475052 -0.3689944 0.07076883 0.1475052 -0.4282948 0.07076883 0.1475052 -0.494694 0.07076883 0.1475052 -0.5692344 0.07076883 0.1475052 -0.6530715 0.07076883 0.1475052 -0.7474945 0.07076883 0.1475052 -0.8539475 0.07076883 0.1475052 -0.974052 0.07076883 0.1475052 -1.113885 0.07076883 0.1475052 -1.27456 0.07076883 0.1475052 -1.458117 0.07076883 0.1475052 -1.667858 0.07076883 0.1475052 -1.907556 0.07076883 0.1475052 -2.181521 0.07076883 0.1475052 -2.494678 0.07076883 0.1475052 -2.852659 0.07076883 0.1475052 -3.261896 0.07076883 0.1475052 -3.729748 0.07076883 0.1475052 -4.264621 0.07076883 0.1475052 -4.876131 0.07076883 0.1475052 -5.575266 0.07076883 0.1475052 -6.374593 0.07076883 0.1475052 -0 0.1119241 0.1475052 -0 0.1119241 0.1475052 -0 0.1119241 0.1475052 -0.002268731 0.1119241 0.1475052 -0.07076883 0.1119241 0.1475052 -0.1119241 0.1119241 0.1475052 -0.1475052 0.1119241 0.1475052 -0.1846606 0.1119241 0.1475052 -0.2245119 0.1119241 0.1475052 -0.2679612 0.1119241 0.1475052 -0.3158431 0.1119241 0.1475052 -0.3689944 0.1119241 0.1475052 -0.4282948 0.1119241 0.1475052 -0.494694 0.1119241 0.1475052 -0.5692344 0.1119241 0.1475052 -0.6530715 0.1119241 0.1475052 -0.7474945 0.1119241 0.1475052 -0.8539475 0.1119241 0.1475052 -0.974052 0.1119241 0.1475052 -1.113885 0.1119241 0.1475052 -1.27456 0.1119241 0.1475052 -1.458117 0.1119241 0.1475052 -1.667858 0.1119241 0.1475052 -1.907556 0.1119241 0.1475052 -2.181521 0.1119241 0.1475052 -2.494678 0.1119241 0.1475052 -2.852659 0.1119241 0.1475052 -3.261896 0.1119241 0.1475052 -3.729748 0.1119241 0.1475052 -4.264621 0.1119241 0.1475052 -4.876131 0.1119241 0.1475052 -5.575266 0.1119241 0.1475052 -6.374593 0.1119241 0.1475052 -0 0.1475052 0.1475052 -0 0.1475052 0.1475052 -0 0.1475052 0.1475052 -0.002268731 0.1475052 0.1475052 -0.07076883 0.1475052 0.1475052 -0.1119241 0.1475052 0.1475052 -0.1475052 0.1475052 0.1475052 -0.1846606 0.1475052 0.1475052 -0.2245119 0.1475052 0.1475052 -0.2679612 0.1475052 0.1475052 -0.3158431 0.1475052 0.1475052 -0.3689944 0.1475052 0.1475052 -0.4282948 0.1475052 0.1475052 -0.494694 0.1475052 0.1475052 -0.5692344 0.1475052 0.1475052 -0.6530715 0.1475052 0.1475052 -0.7474945 0.1475052 0.1475052 -0.8539475 0.1475052 0.1475052 -0.974052 0.1475052 0.1475052 -1.113885 0.1475052 0.1475052 -1.27456 0.1475052 0.1475052 -1.458117 0.1475052 0.1475052 -1.667858 0.1475052 0.1475052 -1.907556 0.1475052 0.1475052 -2.181521 0.1475052 0.1475052 -2.494678 0.1475052 0.1475052 -2.852659 0.1475052 0.1475052 -3.261896 0.1475052 0.1475052 -3.729748 0.1475052 0.1475052 -4.264621 0.1475052 0.1475052 -4.876131 0.1475052 0.1475052 -5.575266 0.1475052 0.1475052 -6.374593 0.1475052 0.1475052 -0 0.1846606 0.1475052 -0 0.1846606 0.1475052 -0 0.1846606 0.1475052 -0.002268731 0.1846606 0.1475052 -0.07076883 0.1846606 0.1475052 -0.1119241 0.1846606 0.1475052 -0.1475052 0.1846606 0.1475052 -0.1846606 0.1846606 0.1475052 -0.2245119 0.1846606 0.1475052 -0.2679612 0.1846606 0.1475052 -0.3158431 0.1846606 0.1475052 -0.3689944 0.1846606 0.1475052 -0.4282948 0.1846606 0.1475052 -0.494694 0.1846606 0.1475052 -0.5692344 0.1846606 0.1475052 -0.6530715 0.1846606 0.1475052 -0.7474945 0.1846606 0.1475052 -0.8539475 0.1846606 0.1475052 -0.974052 0.1846606 0.1475052 -1.113885 0.1846606 0.1475052 -1.27456 0.1846606 0.1475052 -1.458117 0.1846606 0.1475052 -1.667858 0.1846606 0.1475052 -1.907556 0.1846606 0.1475052 -2.181521 0.1846606 0.1475052 -2.494678 0.1846606 0.1475052 -2.852659 0.1846606 0.1475052 -3.261896 0.1846606 0.1475052 -3.729748 0.1846606 0.1475052 -4.264621 0.1846606 0.1475052 -4.876131 0.1846606 0.1475052 -5.575266 0.1846606 0.1475052 -6.374593 0.1846606 0.1475052 -0 0.2245119 0.1475052 -0 0.2245119 0.1475052 -0 0.2245119 0.1475052 -0.002268731 0.2245119 0.1475052 -0.07076883 0.2245119 0.1475052 -0.1119241 0.2245119 0.1475052 -0.1475052 0.2245119 0.1475052 -0.1846606 0.2245119 0.1475052 -0.2245119 0.2245119 0.1475052 -0.2679612 0.2245119 0.1475052 -0.3158431 0.2245119 0.1475052 -0.3689944 0.2245119 0.1475052 -0.4282948 0.2245119 0.1475052 -0.494694 0.2245119 0.1475052 -0.5692344 0.2245119 0.1475052 -0.6530715 0.2245119 0.1475052 -0.7474945 0.2245119 0.1475052 -0.8539475 0.2245119 0.1475052 -0.974052 0.2245119 0.1475052 -1.113885 0.2245119 0.1475052 -1.27456 0.2245119 0.1475052 -1.458117 0.2245119 0.1475052 -1.667858 0.2245119 0.1475052 -1.907556 0.2245119 0.1475052 -2.181521 0.2245119 0.1475052 -2.494678 0.2245119 0.1475052 -2.852659 0.2245119 0.1475052 -3.261896 0.2245119 0.1475052 -3.729748 0.2245119 0.1475052 -4.264621 0.2245119 0.1475052 -4.876131 0.2245119 0.1475052 -5.575266 0.2245119 0.1475052 -6.374593 0.2245119 0.1475052 -0 0.2679612 0.1475052 -0 0.2679612 0.1475052 -0 0.2679612 0.1475052 -0.002268731 0.2679612 0.1475052 -0.07076883 0.2679612 0.1475052 -0.1119241 0.2679612 0.1475052 -0.1475052 0.2679612 0.1475052 -0.1846606 0.2679612 0.1475052 -0.2245119 0.2679612 0.1475052 -0.2679612 0.2679612 0.1475052 -0.3158431 0.2679612 0.1475052 -0.3689944 0.2679612 0.1475052 -0.4282948 0.2679612 0.1475052 -0.494694 0.2679612 0.1475052 -0.5692344 0.2679612 0.1475052 -0.6530715 0.2679612 0.1475052 -0.7474945 0.2679612 0.1475052 -0.8539475 0.2679612 0.1475052 -0.974052 0.2679612 0.1475052 -1.113885 0.2679612 0.1475052 -1.27456 0.2679612 0.1475052 -1.458117 0.2679612 0.1475052 -1.667858 0.2679612 0.1475052 -1.907556 0.2679612 0.1475052 -2.181521 0.2679612 0.1475052 -2.494678 0.2679612 0.1475052 -2.852659 0.2679612 0.1475052 -3.261896 0.2679612 0.1475052 -3.729748 0.2679612 0.1475052 -4.264621 0.2679612 0.1475052 -4.876131 0.2679612 0.1475052 -5.575266 0.2679612 0.1475052 -6.374593 0.2679612 0.1475052 -0 0.3158431 0.1475052 -0 0.3158431 0.1475052 -0 0.3158431 0.1475052 -0.002268731 0.3158431 0.1475052 -0.07076883 0.3158431 0.1475052 -0.1119241 0.3158431 0.1475052 -0.1475052 0.3158431 0.1475052 -0.1846606 0.3158431 0.1475052 -0.2245119 0.3158431 0.1475052 -0.2679612 0.3158431 0.1475052 -0.3158431 0.3158431 0.1475052 -0.3689944 0.3158431 0.1475052 -0.4282948 0.3158431 0.1475052 -0.494694 0.3158431 0.1475052 -0.5692344 0.3158431 0.1475052 -0.6530715 0.3158431 0.1475052 -0.7474945 0.3158431 0.1475052 -0.8539475 0.3158431 0.1475052 -0.974052 0.3158431 0.1475052 -1.113885 0.3158431 0.1475052 -1.27456 0.3158431 0.1475052 -1.458117 0.3158431 0.1475052 -1.667858 0.3158431 0.1475052 -1.907556 0.3158431 0.1475052 -2.181521 0.3158431 0.1475052 -2.494678 0.3158431 0.1475052 -2.852659 0.3158431 0.1475052 -3.261896 0.3158431 0.1475052 -3.729748 0.3158431 0.1475052 -4.264621 0.3158431 0.1475052 -4.876131 0.3158431 0.1475052 -5.575266 0.3158431 0.1475052 -6.374593 0.3158431 0.1475052 -0 0.3689944 0.1475052 -0 0.3689944 0.1475052 -0 0.3689944 0.1475052 -0.002268731 0.3689944 0.1475052 -0.07076883 0.3689944 0.1475052 -0.1119241 0.3689944 0.1475052 -0.1475052 0.3689944 0.1475052 -0.1846606 0.3689944 0.1475052 -0.2245119 0.3689944 0.1475052 -0.2679612 0.3689944 0.1475052 -0.3158431 0.3689944 0.1475052 -0.3689944 0.3689944 0.1475052 -0.4282948 0.3689944 0.1475052 -0.494694 0.3689944 0.1475052 -0.5692344 0.3689944 0.1475052 -0.6530715 0.3689944 0.1475052 -0.7474945 0.3689944 0.1475052 -0.8539475 0.3689944 0.1475052 -0.974052 0.3689944 0.1475052 -1.113885 0.3689944 0.1475052 -1.27456 0.3689944 0.1475052 -1.458117 0.3689944 0.1475052 -1.667858 0.3689944 0.1475052 -1.907556 0.3689944 0.1475052 -2.181521 0.3689944 0.1475052 -2.494678 0.3689944 0.1475052 -2.852659 0.3689944 0.1475052 -3.261896 0.3689944 0.1475052 -3.729748 0.3689944 0.1475052 -4.264621 0.3689944 0.1475052 -4.876131 0.3689944 0.1475052 -5.575266 0.3689944 0.1475052 -6.374593 0.3689944 0.1475052 -0 0.4282948 0.1475052 -0 0.4282948 0.1475052 -0 0.4282948 0.1475052 -0.002268731 0.4282948 0.1475052 -0.07076883 0.4282948 0.1475052 -0.1119241 0.4282948 0.1475052 -0.1475052 0.4282948 0.1475052 -0.1846606 0.4282948 0.1475052 -0.2245119 0.4282948 0.1475052 -0.2679612 0.4282948 0.1475052 -0.3158431 0.4282948 0.1475052 -0.3689944 0.4282948 0.1475052 -0.4282948 0.4282948 0.1475052 -0.494694 0.4282948 0.1475052 -0.5692344 0.4282948 0.1475052 -0.6530715 0.4282948 0.1475052 -0.7474945 0.4282948 0.1475052 -0.8539475 0.4282948 0.1475052 -0.974052 0.4282948 0.1475052 -1.113885 0.4282948 0.1475052 -1.27456 0.4282948 0.1475052 -1.458117 0.4282948 0.1475052 -1.667858 0.4282948 0.1475052 -1.907556 0.4282948 0.1475052 -2.181521 0.4282948 0.1475052 -2.494678 0.4282948 0.1475052 -2.852659 0.4282948 0.1475052 -3.261896 0.4282948 0.1475052 -3.729748 0.4282948 0.1475052 -4.264621 0.4282948 0.1475052 -4.876131 0.4282948 0.1475052 -5.575266 0.4282948 0.1475052 -6.374593 0.4282948 0.1475052 -0 0.494694 0.1475052 -0 0.494694 0.1475052 -0 0.494694 0.1475052 -0.002268731 0.494694 0.1475052 -0.07076883 0.494694 0.1475052 -0.1119241 0.494694 0.1475052 -0.1475052 0.494694 0.1475052 -0.1846606 0.494694 0.1475052 -0.2245119 0.494694 0.1475052 -0.2679612 0.494694 0.1475052 -0.3158431 0.494694 0.1475052 -0.3689944 0.494694 0.1475052 -0.4282948 0.494694 0.1475052 -0.494694 0.494694 0.1475052 -0.5692344 0.494694 0.1475052 -0.6530715 0.494694 0.1475052 -0.7474945 0.494694 0.1475052 -0.8539475 0.494694 0.1475052 -0.974052 0.494694 0.1475052 -1.113885 0.494694 0.1475052 -1.27456 0.494694 0.1475052 -1.458117 0.494694 0.1475052 -1.667858 0.494694 0.1475052 -1.907556 0.494694 0.1475052 -2.181521 0.494694 0.1475052 -2.494678 0.494694 0.1475052 -2.852659 0.494694 0.1475052 -3.261896 0.494694 0.1475052 -3.729748 0.494694 0.1475052 -4.264621 0.494694 0.1475052 -4.876131 0.494694 0.1475052 -5.575266 0.494694 0.1475052 -6.374593 0.494694 0.1475052 -0 0.5692344 0.1475052 -0 0.5692344 0.1475052 -0 0.5692344 0.1475052 -0.002268731 0.5692344 0.1475052 -0.07076883 0.5692344 0.1475052 -0.1119241 0.5692344 0.1475052 -0.1475052 0.5692344 0.1475052 -0.1846606 0.5692344 0.1475052 -0.2245119 0.5692344 0.1475052 -0.2679612 0.5692344 0.1475052 -0.3158431 0.5692344 0.1475052 -0.3689944 0.5692344 0.1475052 -0.4282948 0.5692344 0.1475052 -0.494694 0.5692344 0.1475052 -0.5692344 0.5692344 0.1475052 -0.6530715 0.5692344 0.1475052 -0.7474945 0.5692344 0.1475052 -0.8539475 0.5692344 0.1475052 -0.974052 0.5692344 0.1475052 -1.113885 0.5692344 0.1475052 -1.27456 0.5692344 0.1475052 -1.458117 0.5692344 0.1475052 -1.667858 0.5692344 0.1475052 -1.907556 0.5692344 0.1475052 -2.181521 0.5692344 0.1475052 -2.494678 0.5692344 0.1475052 -2.852659 0.5692344 0.1475052 -3.261896 0.5692344 0.1475052 -3.729748 0.5692344 0.1475052 -4.264621 0.5692344 0.1475052 -4.876131 0.5692344 0.1475052 -5.575266 0.5692344 0.1475052 -6.374593 0.5692344 0.1475052 -0 0.6530715 0.1475052 -0 0.6530715 0.1475052 -0 0.6530715 0.1475052 -0.002268731 0.6530715 0.1475052 -0.07076883 0.6530715 0.1475052 -0.1119241 0.6530715 0.1475052 -0.1475052 0.6530715 0.1475052 -0.1846606 0.6530715 0.1475052 -0.2245119 0.6530715 0.1475052 -0.2679612 0.6530715 0.1475052 -0.3158431 0.6530715 0.1475052 -0.3689944 0.6530715 0.1475052 -0.4282948 0.6530715 0.1475052 -0.494694 0.6530715 0.1475052 -0.5692344 0.6530715 0.1475052 -0.6530715 0.6530715 0.1475052 -0.7474945 0.6530715 0.1475052 -0.8539475 0.6530715 0.1475052 -0.974052 0.6530715 0.1475052 -1.113885 0.6530715 0.1475052 -1.27456 0.6530715 0.1475052 -1.458117 0.6530715 0.1475052 -1.667858 0.6530715 0.1475052 -1.907556 0.6530715 0.1475052 -2.181521 0.6530715 0.1475052 -2.494678 0.6530715 0.1475052 -2.852659 0.6530715 0.1475052 -3.261896 0.6530715 0.1475052 -3.729748 0.6530715 0.1475052 -4.264621 0.6530715 0.1475052 -4.876131 0.6530715 0.1475052 -5.575266 0.6530715 0.1475052 -6.374593 0.6530715 0.1475052 -0 0.7474945 0.1475052 -0 0.7474945 0.1475052 -0 0.7474945 0.1475052 -0.002268731 0.7474945 0.1475052 -0.07076883 0.7474945 0.1475052 -0.1119241 0.7474945 0.1475052 -0.1475052 0.7474945 0.1475052 -0.1846606 0.7474945 0.1475052 -0.2245119 0.7474945 0.1475052 -0.2679612 0.7474945 0.1475052 -0.3158431 0.7474945 0.1475052 -0.3689944 0.7474945 0.1475052 -0.4282948 0.7474945 0.1475052 -0.494694 0.7474945 0.1475052 -0.5692344 0.7474945 0.1475052 -0.6530715 0.7474945 0.1475052 -0.7474945 0.7474945 0.1475052 -0.8539475 0.7474945 0.1475052 -0.974052 0.7474945 0.1475052 -1.113885 0.7474945 0.1475052 -1.27456 0.7474945 0.1475052 -1.458117 0.7474945 0.1475052 -1.667858 0.7474945 0.1475052 -1.907556 0.7474945 0.1475052 -2.181521 0.7474945 0.1475052 -2.494678 0.7474945 0.1475052 -2.852659 0.7474945 0.1475052 -3.261896 0.7474945 0.1475052 -3.729748 0.7474945 0.1475052 -4.264621 0.7474945 0.1475052 -4.876131 0.7474945 0.1475052 -5.575266 0.7474945 0.1475052 -6.374593 0.7474945 0.1475052 -0 0.8539475 0.1475052 -0 0.8539475 0.1475052 -0 0.8539475 0.1475052 -0.002268731 0.8539475 0.1475052 -0.07076883 0.8539475 0.1475052 -0.1119241 0.8539475 0.1475052 -0.1475052 0.8539475 0.1475052 -0.1846606 0.8539475 0.1475052 -0.2245119 0.8539475 0.1475052 -0.2679612 0.8539475 0.1475052 -0.3158431 0.8539475 0.1475052 -0.3689944 0.8539475 0.1475052 -0.4282948 0.8539475 0.1475052 -0.494694 0.8539475 0.1475052 -0.5692344 0.8539475 0.1475052 -0.6530715 0.8539475 0.1475052 -0.7474945 0.8539475 0.1475052 -0.8539475 0.8539475 0.1475052 -0.974052 0.8539475 0.1475052 -1.113885 0.8539475 0.1475052 -1.27456 0.8539475 0.1475052 -1.458117 0.8539475 0.1475052 -1.667858 0.8539475 0.1475052 -1.907556 0.8539475 0.1475052 -2.181521 0.8539475 0.1475052 -2.494678 0.8539475 0.1475052 -2.852659 0.8539475 0.1475052 -3.261896 0.8539475 0.1475052 -3.729748 0.8539475 0.1475052 -4.264621 0.8539475 0.1475052 -4.876131 0.8539475 0.1475052 -5.575266 0.8539475 0.1475052 -6.374593 0.8539475 0.1475052 -0 0.974052 0.1475052 -0 0.974052 0.1475052 -0 0.974052 0.1475052 -0.002268731 0.974052 0.1475052 -0.07076883 0.974052 0.1475052 -0.1119241 0.974052 0.1475052 -0.1475052 0.974052 0.1475052 -0.1846606 0.974052 0.1475052 -0.2245119 0.974052 0.1475052 -0.2679612 0.974052 0.1475052 -0.3158431 0.974052 0.1475052 -0.3689944 0.974052 0.1475052 -0.4282948 0.974052 0.1475052 -0.494694 0.974052 0.1475052 -0.5692344 0.974052 0.1475052 -0.6530715 0.974052 0.1475052 -0.7474945 0.974052 0.1475052 -0.8539475 0.974052 0.1475052 -0.974052 0.974052 0.1475052 -1.113885 0.974052 0.1475052 -1.27456 0.974052 0.1475052 -1.458117 0.974052 0.1475052 -1.667858 0.974052 0.1475052 -1.907556 0.974052 0.1475052 -2.181521 0.974052 0.1475052 -2.494678 0.974052 0.1475052 -2.852659 0.974052 0.1475052 -3.261896 0.974052 0.1475052 -3.729748 0.974052 0.1475052 -4.264621 0.974052 0.1475052 -4.876131 0.974052 0.1475052 -5.575266 0.974052 0.1475052 -6.374593 0.974052 0.1475052 -0 1.113885 0.1475052 -0 1.113885 0.1475052 -0 1.113885 0.1475052 -0.002268731 1.113885 0.1475052 -0.07076883 1.113885 0.1475052 -0.1119241 1.113885 0.1475052 -0.1475052 1.113885 0.1475052 -0.1846606 1.113885 0.1475052 -0.2245119 1.113885 0.1475052 -0.2679612 1.113885 0.1475052 -0.3158431 1.113885 0.1475052 -0.3689944 1.113885 0.1475052 -0.4282948 1.113885 0.1475052 -0.494694 1.113885 0.1475052 -0.5692344 1.113885 0.1475052 -0.6530715 1.113885 0.1475052 -0.7474945 1.113885 0.1475052 -0.8539475 1.113885 0.1475052 -0.974052 1.113885 0.1475052 -1.113885 1.113885 0.1475052 -1.27456 1.113885 0.1475052 -1.458117 1.113885 0.1475052 -1.667858 1.113885 0.1475052 -1.907556 1.113885 0.1475052 -2.181521 1.113885 0.1475052 -2.494678 1.113885 0.1475052 -2.852659 1.113885 0.1475052 -3.261896 1.113885 0.1475052 -3.729748 1.113885 0.1475052 -4.264621 1.113885 0.1475052 -4.876131 1.113885 0.1475052 -5.575266 1.113885 0.1475052 -6.374593 1.113885 0.1475052 -0 1.27456 0.1475052 -0 1.27456 0.1475052 -0 1.27456 0.1475052 -0.002268731 1.27456 0.1475052 -0.07076883 1.27456 0.1475052 -0.1119241 1.27456 0.1475052 -0.1475052 1.27456 0.1475052 -0.1846606 1.27456 0.1475052 -0.2245119 1.27456 0.1475052 -0.2679612 1.27456 0.1475052 -0.3158431 1.27456 0.1475052 -0.3689944 1.27456 0.1475052 -0.4282948 1.27456 0.1475052 -0.494694 1.27456 0.1475052 -0.5692344 1.27456 0.1475052 -0.6530715 1.27456 0.1475052 -0.7474945 1.27456 0.1475052 -0.8539475 1.27456 0.1475052 -0.974052 1.27456 0.1475052 -1.113885 1.27456 0.1475052 -1.27456 1.27456 0.1475052 -1.458117 1.27456 0.1475052 -1.667858 1.27456 0.1475052 -1.907556 1.27456 0.1475052 -2.181521 1.27456 0.1475052 -2.494678 1.27456 0.1475052 -2.852659 1.27456 0.1475052 -3.261896 1.27456 0.1475052 -3.729748 1.27456 0.1475052 -4.264621 1.27456 0.1475052 -4.876131 1.27456 0.1475052 -5.575266 1.27456 0.1475052 -6.374593 1.27456 0.1475052 -0 1.458117 0.1475052 -0 1.458117 0.1475052 -0 1.458117 0.1475052 -0.002268731 1.458117 0.1475052 -0.07076883 1.458117 0.1475052 -0.1119241 1.458117 0.1475052 -0.1475052 1.458117 0.1475052 -0.1846606 1.458117 0.1475052 -0.2245119 1.458117 0.1475052 -0.2679612 1.458117 0.1475052 -0.3158431 1.458117 0.1475052 -0.3689944 1.458117 0.1475052 -0.4282948 1.458117 0.1475052 -0.494694 1.458117 0.1475052 -0.5692344 1.458117 0.1475052 -0.6530715 1.458117 0.1475052 -0.7474945 1.458117 0.1475052 -0.8539475 1.458117 0.1475052 -0.974052 1.458117 0.1475052 -1.113885 1.458117 0.1475052 -1.27456 1.458117 0.1475052 -1.458117 1.458117 0.1475052 -1.667858 1.458117 0.1475052 -1.907556 1.458117 0.1475052 -2.181521 1.458117 0.1475052 -2.494678 1.458117 0.1475052 -2.852659 1.458117 0.1475052 -3.261896 1.458117 0.1475052 -3.729748 1.458117 0.1475052 -4.264621 1.458117 0.1475052 -4.876131 1.458117 0.1475052 -5.575266 1.458117 0.1475052 -6.374593 1.458117 0.1475052 -0 1.667858 0.1475052 -0 1.667858 0.1475052 -0 1.667858 0.1475052 -0.002268731 1.667858 0.1475052 -0.07076883 1.667858 0.1475052 -0.1119241 1.667858 0.1475052 -0.1475052 1.667858 0.1475052 -0.1846606 1.667858 0.1475052 -0.2245119 1.667858 0.1475052 -0.2679612 1.667858 0.1475052 -0.3158431 1.667858 0.1475052 -0.3689944 1.667858 0.1475052 -0.4282948 1.667858 0.1475052 -0.494694 1.667858 0.1475052 -0.5692344 1.667858 0.1475052 -0.6530715 1.667858 0.1475052 -0.7474945 1.667858 0.1475052 -0.8539475 1.667858 0.1475052 -0.974052 1.667858 0.1475052 -1.113885 1.667858 0.1475052 -1.27456 1.667858 0.1475052 -1.458117 1.667858 0.1475052 -1.667858 1.667858 0.1475052 -1.907556 1.667858 0.1475052 -2.181521 1.667858 0.1475052 -2.494678 1.667858 0.1475052 -2.852659 1.667858 0.1475052 -3.261896 1.667858 0.1475052 -3.729748 1.667858 0.1475052 -4.264621 1.667858 0.1475052 -4.876131 1.667858 0.1475052 -5.575266 1.667858 0.1475052 -6.374593 1.667858 0.1475052 -0 1.907556 0.1475052 -0 1.907556 0.1475052 -0 1.907556 0.1475052 -0.002268731 1.907556 0.1475052 -0.07076883 1.907556 0.1475052 -0.1119241 1.907556 0.1475052 -0.1475052 1.907556 0.1475052 -0.1846606 1.907556 0.1475052 -0.2245119 1.907556 0.1475052 -0.2679612 1.907556 0.1475052 -0.3158431 1.907556 0.1475052 -0.3689944 1.907556 0.1475052 -0.4282948 1.907556 0.1475052 -0.494694 1.907556 0.1475052 -0.5692344 1.907556 0.1475052 -0.6530715 1.907556 0.1475052 -0.7474945 1.907556 0.1475052 -0.8539475 1.907556 0.1475052 -0.974052 1.907556 0.1475052 -1.113885 1.907556 0.1475052 -1.27456 1.907556 0.1475052 -1.458117 1.907556 0.1475052 -1.667858 1.907556 0.1475052 -1.907556 1.907556 0.1475052 -2.181521 1.907556 0.1475052 -2.494678 1.907556 0.1475052 -2.852659 1.907556 0.1475052 -3.261896 1.907556 0.1475052 -3.729748 1.907556 0.1475052 -4.264621 1.907556 0.1475052 -4.876131 1.907556 0.1475052 -5.575266 1.907556 0.1475052 -6.374593 1.907556 0.1475052 -0 2.181521 0.1475052 -0 2.181521 0.1475052 -0 2.181521 0.1475052 -0.002268731 2.181521 0.1475052 -0.07076883 2.181521 0.1475052 -0.1119241 2.181521 0.1475052 -0.1475052 2.181521 0.1475052 -0.1846606 2.181521 0.1475052 -0.2245119 2.181521 0.1475052 -0.2679612 2.181521 0.1475052 -0.3158431 2.181521 0.1475052 -0.3689944 2.181521 0.1475052 -0.4282948 2.181521 0.1475052 -0.494694 2.181521 0.1475052 -0.5692344 2.181521 0.1475052 -0.6530715 2.181521 0.1475052 -0.7474945 2.181521 0.1475052 -0.8539475 2.181521 0.1475052 -0.974052 2.181521 0.1475052 -1.113885 2.181521 0.1475052 -1.27456 2.181521 0.1475052 -1.458117 2.181521 0.1475052 -1.667858 2.181521 0.1475052 -1.907556 2.181521 0.1475052 -2.181521 2.181521 0.1475052 -2.494678 2.181521 0.1475052 -2.852659 2.181521 0.1475052 -3.261896 2.181521 0.1475052 -3.729748 2.181521 0.1475052 -4.264621 2.181521 0.1475052 -4.876131 2.181521 0.1475052 -5.575266 2.181521 0.1475052 -6.374593 2.181521 0.1475052 -0 2.494678 0.1475052 -0 2.494678 0.1475052 -0 2.494678 0.1475052 -0.002268731 2.494678 0.1475052 -0.07076883 2.494678 0.1475052 -0.1119241 2.494678 0.1475052 -0.1475052 2.494678 0.1475052 -0.1846606 2.494678 0.1475052 -0.2245119 2.494678 0.1475052 -0.2679612 2.494678 0.1475052 -0.3158431 2.494678 0.1475052 -0.3689944 2.494678 0.1475052 -0.4282948 2.494678 0.1475052 -0.494694 2.494678 0.1475052 -0.5692344 2.494678 0.1475052 -0.6530715 2.494678 0.1475052 -0.7474945 2.494678 0.1475052 -0.8539475 2.494678 0.1475052 -0.974052 2.494678 0.1475052 -1.113885 2.494678 0.1475052 -1.27456 2.494678 0.1475052 -1.458117 2.494678 0.1475052 -1.667858 2.494678 0.1475052 -1.907556 2.494678 0.1475052 -2.181521 2.494678 0.1475052 -2.494678 2.494678 0.1475052 -2.852659 2.494678 0.1475052 -3.261896 2.494678 0.1475052 -3.729748 2.494678 0.1475052 -4.264621 2.494678 0.1475052 -4.876131 2.494678 0.1475052 -5.575266 2.494678 0.1475052 -6.374593 2.494678 0.1475052 -0 2.852659 0.1475052 -0 2.852659 0.1475052 -0 2.852659 0.1475052 -0.002268731 2.852659 0.1475052 -0.07076883 2.852659 0.1475052 -0.1119241 2.852659 0.1475052 -0.1475052 2.852659 0.1475052 -0.1846606 2.852659 0.1475052 -0.2245119 2.852659 0.1475052 -0.2679612 2.852659 0.1475052 -0.3158431 2.852659 0.1475052 -0.3689944 2.852659 0.1475052 -0.4282948 2.852659 0.1475052 -0.494694 2.852659 0.1475052 -0.5692344 2.852659 0.1475052 -0.6530715 2.852659 0.1475052 -0.7474945 2.852659 0.1475052 -0.8539475 2.852659 0.1475052 -0.974052 2.852659 0.1475052 -1.113885 2.852659 0.1475052 -1.27456 2.852659 0.1475052 -1.458117 2.852659 0.1475052 -1.667858 2.852659 0.1475052 -1.907556 2.852659 0.1475052 -2.181521 2.852659 0.1475052 -2.494678 2.852659 0.1475052 -2.852659 2.852659 0.1475052 -3.261896 2.852659 0.1475052 -3.729748 2.852659 0.1475052 -4.264621 2.852659 0.1475052 -4.876131 2.852659 0.1475052 -5.575266 2.852659 0.1475052 -6.374593 2.852659 0.1475052 -0 3.261896 0.1475052 -0 3.261896 0.1475052 -0 3.261896 0.1475052 -0.002268731 3.261896 0.1475052 -0.07076883 3.261896 0.1475052 -0.1119241 3.261896 0.1475052 -0.1475052 3.261896 0.1475052 -0.1846606 3.261896 0.1475052 -0.2245119 3.261896 0.1475052 -0.2679612 3.261896 0.1475052 -0.3158431 3.261896 0.1475052 -0.3689944 3.261896 0.1475052 -0.4282948 3.261896 0.1475052 -0.494694 3.261896 0.1475052 -0.5692344 3.261896 0.1475052 -0.6530715 3.261896 0.1475052 -0.7474945 3.261896 0.1475052 -0.8539475 3.261896 0.1475052 -0.974052 3.261896 0.1475052 -1.113885 3.261896 0.1475052 -1.27456 3.261896 0.1475052 -1.458117 3.261896 0.1475052 -1.667858 3.261896 0.1475052 -1.907556 3.261896 0.1475052 -2.181521 3.261896 0.1475052 -2.494678 3.261896 0.1475052 -2.852659 3.261896 0.1475052 -3.261896 3.261896 0.1475052 -3.729748 3.261896 0.1475052 -4.264621 3.261896 0.1475052 -4.876131 3.261896 0.1475052 -5.575266 3.261896 0.1475052 -6.374593 3.261896 0.1475052 -0 3.729748 0.1475052 -0 3.729748 0.1475052 -0 3.729748 0.1475052 -0.002268731 3.729748 0.1475052 -0.07076883 3.729748 0.1475052 -0.1119241 3.729748 0.1475052 -0.1475052 3.729748 0.1475052 -0.1846606 3.729748 0.1475052 -0.2245119 3.729748 0.1475052 -0.2679612 3.729748 0.1475052 -0.3158431 3.729748 0.1475052 -0.3689944 3.729748 0.1475052 -0.4282948 3.729748 0.1475052 -0.494694 3.729748 0.1475052 -0.5692344 3.729748 0.1475052 -0.6530715 3.729748 0.1475052 -0.7474945 3.729748 0.1475052 -0.8539475 3.729748 0.1475052 -0.974052 3.729748 0.1475052 -1.113885 3.729748 0.1475052 -1.27456 3.729748 0.1475052 -1.458117 3.729748 0.1475052 -1.667858 3.729748 0.1475052 -1.907556 3.729748 0.1475052 -2.181521 3.729748 0.1475052 -2.494678 3.729748 0.1475052 -2.852659 3.729748 0.1475052 -3.261896 3.729748 0.1475052 -3.729748 3.729748 0.1475052 -4.264621 3.729748 0.1475052 -4.876131 3.729748 0.1475052 -5.575266 3.729748 0.1475052 -6.374593 3.729748 0.1475052 -0 4.264621 0.1475052 -0 4.264621 0.1475052 -0 4.264621 0.1475052 -0.002268731 4.264621 0.1475052 -0.07076883 4.264621 0.1475052 -0.1119241 4.264621 0.1475052 -0.1475052 4.264621 0.1475052 -0.1846606 4.264621 0.1475052 -0.2245119 4.264621 0.1475052 -0.2679612 4.264621 0.1475052 -0.3158431 4.264621 0.1475052 -0.3689944 4.264621 0.1475052 -0.4282948 4.264621 0.1475052 -0.494694 4.264621 0.1475052 -0.5692344 4.264621 0.1475052 -0.6530715 4.264621 0.1475052 -0.7474945 4.264621 0.1475052 -0.8539475 4.264621 0.1475052 -0.974052 4.264621 0.1475052 -1.113885 4.264621 0.1475052 -1.27456 4.264621 0.1475052 -1.458117 4.264621 0.1475052 -1.667858 4.264621 0.1475052 -1.907556 4.264621 0.1475052 -2.181521 4.264621 0.1475052 -2.494678 4.264621 0.1475052 -2.852659 4.264621 0.1475052 -3.261896 4.264621 0.1475052 -3.729748 4.264621 0.1475052 -4.264621 4.264621 0.1475052 -4.876131 4.264621 0.1475052 -5.575266 4.264621 0.1475052 -6.374593 4.264621 0.1475052 -0 4.876131 0.1475052 -0 4.876131 0.1475052 -0 4.876131 0.1475052 -0.002268731 4.876131 0.1475052 -0.07076883 4.876131 0.1475052 -0.1119241 4.876131 0.1475052 -0.1475052 4.876131 0.1475052 -0.1846606 4.876131 0.1475052 -0.2245119 4.876131 0.1475052 -0.2679612 4.876131 0.1475052 -0.3158431 4.876131 0.1475052 -0.3689944 4.876131 0.1475052 -0.4282948 4.876131 0.1475052 -0.494694 4.876131 0.1475052 -0.5692344 4.876131 0.1475052 -0.6530715 4.876131 0.1475052 -0.7474945 4.876131 0.1475052 -0.8539475 4.876131 0.1475052 -0.974052 4.876131 0.1475052 -1.113885 4.876131 0.1475052 -1.27456 4.876131 0.1475052 -1.458117 4.876131 0.1475052 -1.667858 4.876131 0.1475052 -1.907556 4.876131 0.1475052 -2.181521 4.876131 0.1475052 -2.494678 4.876131 0.1475052 -2.852659 4.876131 0.1475052 -3.261896 4.876131 0.1475052 -3.729748 4.876131 0.1475052 -4.264621 4.876131 0.1475052 -4.876131 4.876131 0.1475052 -5.575266 4.876131 0.1475052 -6.374593 4.876131 0.1475052 -0 5.575266 0.1475052 -0 5.575266 0.1475052 -0 5.575266 0.1475052 -0.002268731 5.575266 0.1475052 -0.07076883 5.575266 0.1475052 -0.1119241 5.575266 0.1475052 -0.1475052 5.575266 0.1475052 -0.1846606 5.575266 0.1475052 -0.2245119 5.575266 0.1475052 -0.2679612 5.575266 0.1475052 -0.3158431 5.575266 0.1475052 -0.3689944 5.575266 0.1475052 -0.4282948 5.575266 0.1475052 -0.494694 5.575266 0.1475052 -0.5692344 5.575266 0.1475052 -0.6530715 5.575266 0.1475052 -0.7474945 5.575266 0.1475052 -0.8539475 5.575266 0.1475052 -0.974052 5.575266 0.1475052 -1.113885 5.575266 0.1475052 -1.27456 5.575266 0.1475052 -1.458117 5.575266 0.1475052 -1.667858 5.575266 0.1475052 -1.907556 5.575266 0.1475052 -2.181521 5.575266 0.1475052 -2.494678 5.575266 0.1475052 -2.852659 5.575266 0.1475052 -3.261896 5.575266 0.1475052 -3.729748 5.575266 0.1475052 -4.264621 5.575266 0.1475052 -4.876131 5.575266 0.1475052 -5.575266 5.575266 0.1475052 -6.374593 5.575266 0.1475052 -0 6.374593 0.1475052 -0 6.374593 0.1475052 -0 6.374593 0.1475052 -0.002268731 6.374593 0.1475052 -0.07076883 6.374593 0.1475052 -0.1119241 6.374593 0.1475052 -0.1475052 6.374593 0.1475052 -0.1846606 6.374593 0.1475052 -0.2245119 6.374593 0.1475052 -0.2679612 6.374593 0.1475052 -0.3158431 6.374593 0.1475052 -0.3689944 6.374593 0.1475052 -0.4282948 6.374593 0.1475052 -0.494694 6.374593 0.1475052 -0.5692344 6.374593 0.1475052 -0.6530715 6.374593 0.1475052 -0.7474945 6.374593 0.1475052 -0.8539475 6.374593 0.1475052 -0.974052 6.374593 0.1475052 -1.113885 6.374593 0.1475052 -1.27456 6.374593 0.1475052 -1.458117 6.374593 0.1475052 -1.667858 6.374593 0.1475052 -1.907556 6.374593 0.1475052 -2.181521 6.374593 0.1475052 -2.494678 6.374593 0.1475052 -2.852659 6.374593 0.1475052 -3.261896 6.374593 0.1475052 -3.729748 6.374593 0.1475052 -4.264621 6.374593 0.1475052 -4.876131 6.374593 0.1475052 -5.575266 6.374593 0.1475052 -6.374593 6.374593 0.1475052 -0 0 0.1846606 -0 0 0.1846606 -0 0 0.1846606 -0.002268731 0 0.1846606 -0.07076883 0 0.1846606 -0.1119241 0 0.1846606 -0.1475052 0 0.1846606 -0.1846606 0 0.1846606 -0.2245119 0 0.1846606 -0.2679612 0 0.1846606 -0.3158431 0 0.1846606 -0.3689944 0 0.1846606 -0.4282948 0 0.1846606 -0.494694 0 0.1846606 -0.5692344 0 0.1846606 -0.6530715 0 0.1846606 -0.7474945 0 0.1846606 -0.8539475 0 0.1846606 -0.974052 0 0.1846606 -1.113885 0 0.1846606 -1.27456 0 0.1846606 -1.458117 0 0.1846606 -1.667858 0 0.1846606 -1.907556 0 0.1846606 -2.181521 0 0.1846606 -2.494678 0 0.1846606 -2.852659 0 0.1846606 -3.261896 0 0.1846606 -3.729748 0 0.1846606 -4.264621 0 0.1846606 -4.876131 0 0.1846606 -5.575266 0 0.1846606 -6.374593 0 0.1846606 -0 0 0.1846606 -0 0 0.1846606 -0 0 0.1846606 -0.002268731 0 0.1846606 -0.07076883 0 0.1846606 -0.1119241 0 0.1846606 -0.1475052 0 0.1846606 -0.1846606 0 0.1846606 -0.2245119 0 0.1846606 -0.2679612 0 0.1846606 -0.3158431 0 0.1846606 -0.3689944 0 0.1846606 -0.4282948 0 0.1846606 -0.494694 0 0.1846606 -0.5692344 0 0.1846606 -0.6530715 0 0.1846606 -0.7474945 0 0.1846606 -0.8539475 0 0.1846606 -0.974052 0 0.1846606 -1.113885 0 0.1846606 -1.27456 0 0.1846606 -1.458117 0 0.1846606 -1.667858 0 0.1846606 -1.907556 0 0.1846606 -2.181521 0 0.1846606 -2.494678 0 0.1846606 -2.852659 0 0.1846606 -3.261896 0 0.1846606 -3.729748 0 0.1846606 -4.264621 0 0.1846606 -4.876131 0 0.1846606 -5.575266 0 0.1846606 -6.374593 0 0.1846606 -0 0 0.1846606 -0 0 0.1846606 -0 0 0.1846606 -0.002268731 0 0.1846606 -0.07076883 0 0.1846606 -0.1119241 0 0.1846606 -0.1475052 0 0.1846606 -0.1846606 0 0.1846606 -0.2245119 0 0.1846606 -0.2679612 0 0.1846606 -0.3158431 0 0.1846606 -0.3689944 0 0.1846606 -0.4282948 0 0.1846606 -0.494694 0 0.1846606 -0.5692344 0 0.1846606 -0.6530715 0 0.1846606 -0.7474945 0 0.1846606 -0.8539475 0 0.1846606 -0.974052 0 0.1846606 -1.113885 0 0.1846606 -1.27456 0 0.1846606 -1.458117 0 0.1846606 -1.667858 0 0.1846606 -1.907556 0 0.1846606 -2.181521 0 0.1846606 -2.494678 0 0.1846606 -2.852659 0 0.1846606 -3.261896 0 0.1846606 -3.729748 0 0.1846606 -4.264621 0 0.1846606 -4.876131 0 0.1846606 -5.575266 0 0.1846606 -6.374593 0 0.1846606 -0 0.002268731 0.1846606 -0 0.002268731 0.1846606 -0 0.002268731 0.1846606 -0.002268731 0.002268731 0.1846606 -0.07076883 0.002268731 0.1846606 -0.1119241 0.002268731 0.1846606 -0.1475052 0.002268731 0.1846606 -0.1846606 0.002268731 0.1846606 -0.2245119 0.002268731 0.1846606 -0.2679612 0.002268731 0.1846606 -0.3158431 0.002268731 0.1846606 -0.3689944 0.002268731 0.1846606 -0.4282948 0.002268731 0.1846606 -0.494694 0.002268731 0.1846606 -0.5692344 0.002268731 0.1846606 -0.6530715 0.002268731 0.1846606 -0.7474945 0.002268731 0.1846606 -0.8539475 0.002268731 0.1846606 -0.974052 0.002268731 0.1846606 -1.113885 0.002268731 0.1846606 -1.27456 0.002268731 0.1846606 -1.458117 0.002268731 0.1846606 -1.667858 0.002268731 0.1846606 -1.907556 0.002268731 0.1846606 -2.181521 0.002268731 0.1846606 -2.494678 0.002268731 0.1846606 -2.852659 0.002268731 0.1846606 -3.261896 0.002268731 0.1846606 -3.729748 0.002268731 0.1846606 -4.264621 0.002268731 0.1846606 -4.876131 0.002268731 0.1846606 -5.575266 0.002268731 0.1846606 -6.374593 0.002268731 0.1846606 -0 0.07076883 0.1846606 -0 0.07076883 0.1846606 -0 0.07076883 0.1846606 -0.002268731 0.07076883 0.1846606 -0.07076883 0.07076883 0.1846606 -0.1119241 0.07076883 0.1846606 -0.1475052 0.07076883 0.1846606 -0.1846606 0.07076883 0.1846606 -0.2245119 0.07076883 0.1846606 -0.2679612 0.07076883 0.1846606 -0.3158431 0.07076883 0.1846606 -0.3689944 0.07076883 0.1846606 -0.4282948 0.07076883 0.1846606 -0.494694 0.07076883 0.1846606 -0.5692344 0.07076883 0.1846606 -0.6530715 0.07076883 0.1846606 -0.7474945 0.07076883 0.1846606 -0.8539475 0.07076883 0.1846606 -0.974052 0.07076883 0.1846606 -1.113885 0.07076883 0.1846606 -1.27456 0.07076883 0.1846606 -1.458117 0.07076883 0.1846606 -1.667858 0.07076883 0.1846606 -1.907556 0.07076883 0.1846606 -2.181521 0.07076883 0.1846606 -2.494678 0.07076883 0.1846606 -2.852659 0.07076883 0.1846606 -3.261896 0.07076883 0.1846606 -3.729748 0.07076883 0.1846606 -4.264621 0.07076883 0.1846606 -4.876131 0.07076883 0.1846606 -5.575266 0.07076883 0.1846606 -6.374593 0.07076883 0.1846606 -0 0.1119241 0.1846606 -0 0.1119241 0.1846606 -0 0.1119241 0.1846606 -0.002268731 0.1119241 0.1846606 -0.07076883 0.1119241 0.1846606 -0.1119241 0.1119241 0.1846606 -0.1475052 0.1119241 0.1846606 -0.1846606 0.1119241 0.1846606 -0.2245119 0.1119241 0.1846606 -0.2679612 0.1119241 0.1846606 -0.3158431 0.1119241 0.1846606 -0.3689944 0.1119241 0.1846606 -0.4282948 0.1119241 0.1846606 -0.494694 0.1119241 0.1846606 -0.5692344 0.1119241 0.1846606 -0.6530715 0.1119241 0.1846606 -0.7474945 0.1119241 0.1846606 -0.8539475 0.1119241 0.1846606 -0.974052 0.1119241 0.1846606 -1.113885 0.1119241 0.1846606 -1.27456 0.1119241 0.1846606 -1.458117 0.1119241 0.1846606 -1.667858 0.1119241 0.1846606 -1.907556 0.1119241 0.1846606 -2.181521 0.1119241 0.1846606 -2.494678 0.1119241 0.1846606 -2.852659 0.1119241 0.1846606 -3.261896 0.1119241 0.1846606 -3.729748 0.1119241 0.1846606 -4.264621 0.1119241 0.1846606 -4.876131 0.1119241 0.1846606 -5.575266 0.1119241 0.1846606 -6.374593 0.1119241 0.1846606 -0 0.1475052 0.1846606 -0 0.1475052 0.1846606 -0 0.1475052 0.1846606 -0.002268731 0.1475052 0.1846606 -0.07076883 0.1475052 0.1846606 -0.1119241 0.1475052 0.1846606 -0.1475052 0.1475052 0.1846606 -0.1846606 0.1475052 0.1846606 -0.2245119 0.1475052 0.1846606 -0.2679612 0.1475052 0.1846606 -0.3158431 0.1475052 0.1846606 -0.3689944 0.1475052 0.1846606 -0.4282948 0.1475052 0.1846606 -0.494694 0.1475052 0.1846606 -0.5692344 0.1475052 0.1846606 -0.6530715 0.1475052 0.1846606 -0.7474945 0.1475052 0.1846606 -0.8539475 0.1475052 0.1846606 -0.974052 0.1475052 0.1846606 -1.113885 0.1475052 0.1846606 -1.27456 0.1475052 0.1846606 -1.458117 0.1475052 0.1846606 -1.667858 0.1475052 0.1846606 -1.907556 0.1475052 0.1846606 -2.181521 0.1475052 0.1846606 -2.494678 0.1475052 0.1846606 -2.852659 0.1475052 0.1846606 -3.261896 0.1475052 0.1846606 -3.729748 0.1475052 0.1846606 -4.264621 0.1475052 0.1846606 -4.876131 0.1475052 0.1846606 -5.575266 0.1475052 0.1846606 -6.374593 0.1475052 0.1846606 -0 0.1846606 0.1846606 -0 0.1846606 0.1846606 -0 0.1846606 0.1846606 -0.002268731 0.1846606 0.1846606 -0.07076883 0.1846606 0.1846606 -0.1119241 0.1846606 0.1846606 -0.1475052 0.1846606 0.1846606 -0.1846606 0.1846606 0.1846606 -0.2245119 0.1846606 0.1846606 -0.2679612 0.1846606 0.1846606 -0.3158431 0.1846606 0.1846606 -0.3689944 0.1846606 0.1846606 -0.4282948 0.1846606 0.1846606 -0.494694 0.1846606 0.1846606 -0.5692344 0.1846606 0.1846606 -0.6530715 0.1846606 0.1846606 -0.7474945 0.1846606 0.1846606 -0.8539475 0.1846606 0.1846606 -0.974052 0.1846606 0.1846606 -1.113885 0.1846606 0.1846606 -1.27456 0.1846606 0.1846606 -1.458117 0.1846606 0.1846606 -1.667858 0.1846606 0.1846606 -1.907556 0.1846606 0.1846606 -2.181521 0.1846606 0.1846606 -2.494678 0.1846606 0.1846606 -2.852659 0.1846606 0.1846606 -3.261896 0.1846606 0.1846606 -3.729748 0.1846606 0.1846606 -4.264621 0.1846606 0.1846606 -4.876131 0.1846606 0.1846606 -5.575266 0.1846606 0.1846606 -6.374593 0.1846606 0.1846606 -0 0.2245119 0.1846606 -0 0.2245119 0.1846606 -0 0.2245119 0.1846606 -0.002268731 0.2245119 0.1846606 -0.07076883 0.2245119 0.1846606 -0.1119241 0.2245119 0.1846606 -0.1475052 0.2245119 0.1846606 -0.1846606 0.2245119 0.1846606 -0.2245119 0.2245119 0.1846606 -0.2679612 0.2245119 0.1846606 -0.3158431 0.2245119 0.1846606 -0.3689944 0.2245119 0.1846606 -0.4282948 0.2245119 0.1846606 -0.494694 0.2245119 0.1846606 -0.5692344 0.2245119 0.1846606 -0.6530715 0.2245119 0.1846606 -0.7474945 0.2245119 0.1846606 -0.8539475 0.2245119 0.1846606 -0.974052 0.2245119 0.1846606 -1.113885 0.2245119 0.1846606 -1.27456 0.2245119 0.1846606 -1.458117 0.2245119 0.1846606 -1.667858 0.2245119 0.1846606 -1.907556 0.2245119 0.1846606 -2.181521 0.2245119 0.1846606 -2.494678 0.2245119 0.1846606 -2.852659 0.2245119 0.1846606 -3.261896 0.2245119 0.1846606 -3.729748 0.2245119 0.1846606 -4.264621 0.2245119 0.1846606 -4.876131 0.2245119 0.1846606 -5.575266 0.2245119 0.1846606 -6.374593 0.2245119 0.1846606 -0 0.2679612 0.1846606 -0 0.2679612 0.1846606 -0 0.2679612 0.1846606 -0.002268731 0.2679612 0.1846606 -0.07076883 0.2679612 0.1846606 -0.1119241 0.2679612 0.1846606 -0.1475052 0.2679612 0.1846606 -0.1846606 0.2679612 0.1846606 -0.2245119 0.2679612 0.1846606 -0.2679612 0.2679612 0.1846606 -0.3158431 0.2679612 0.1846606 -0.3689944 0.2679612 0.1846606 -0.4282948 0.2679612 0.1846606 -0.494694 0.2679612 0.1846606 -0.5692344 0.2679612 0.1846606 -0.6530715 0.2679612 0.1846606 -0.7474945 0.2679612 0.1846606 -0.8539475 0.2679612 0.1846606 -0.974052 0.2679612 0.1846606 -1.113885 0.2679612 0.1846606 -1.27456 0.2679612 0.1846606 -1.458117 0.2679612 0.1846606 -1.667858 0.2679612 0.1846606 -1.907556 0.2679612 0.1846606 -2.181521 0.2679612 0.1846606 -2.494678 0.2679612 0.1846606 -2.852659 0.2679612 0.1846606 -3.261896 0.2679612 0.1846606 -3.729748 0.2679612 0.1846606 -4.264621 0.2679612 0.1846606 -4.876131 0.2679612 0.1846606 -5.575266 0.2679612 0.1846606 -6.374593 0.2679612 0.1846606 -0 0.3158431 0.1846606 -0 0.3158431 0.1846606 -0 0.3158431 0.1846606 -0.002268731 0.3158431 0.1846606 -0.07076883 0.3158431 0.1846606 -0.1119241 0.3158431 0.1846606 -0.1475052 0.3158431 0.1846606 -0.1846606 0.3158431 0.1846606 -0.2245119 0.3158431 0.1846606 -0.2679612 0.3158431 0.1846606 -0.3158431 0.3158431 0.1846606 -0.3689944 0.3158431 0.1846606 -0.4282948 0.3158431 0.1846606 -0.494694 0.3158431 0.1846606 -0.5692344 0.3158431 0.1846606 -0.6530715 0.3158431 0.1846606 -0.7474945 0.3158431 0.1846606 -0.8539475 0.3158431 0.1846606 -0.974052 0.3158431 0.1846606 -1.113885 0.3158431 0.1846606 -1.27456 0.3158431 0.1846606 -1.458117 0.3158431 0.1846606 -1.667858 0.3158431 0.1846606 -1.907556 0.3158431 0.1846606 -2.181521 0.3158431 0.1846606 -2.494678 0.3158431 0.1846606 -2.852659 0.3158431 0.1846606 -3.261896 0.3158431 0.1846606 -3.729748 0.3158431 0.1846606 -4.264621 0.3158431 0.1846606 -4.876131 0.3158431 0.1846606 -5.575266 0.3158431 0.1846606 -6.374593 0.3158431 0.1846606 -0 0.3689944 0.1846606 -0 0.3689944 0.1846606 -0 0.3689944 0.1846606 -0.002268731 0.3689944 0.1846606 -0.07076883 0.3689944 0.1846606 -0.1119241 0.3689944 0.1846606 -0.1475052 0.3689944 0.1846606 -0.1846606 0.3689944 0.1846606 -0.2245119 0.3689944 0.1846606 -0.2679612 0.3689944 0.1846606 -0.3158431 0.3689944 0.1846606 -0.3689944 0.3689944 0.1846606 -0.4282948 0.3689944 0.1846606 -0.494694 0.3689944 0.1846606 -0.5692344 0.3689944 0.1846606 -0.6530715 0.3689944 0.1846606 -0.7474945 0.3689944 0.1846606 -0.8539475 0.3689944 0.1846606 -0.974052 0.3689944 0.1846606 -1.113885 0.3689944 0.1846606 -1.27456 0.3689944 0.1846606 -1.458117 0.3689944 0.1846606 -1.667858 0.3689944 0.1846606 -1.907556 0.3689944 0.1846606 -2.181521 0.3689944 0.1846606 -2.494678 0.3689944 0.1846606 -2.852659 0.3689944 0.1846606 -3.261896 0.3689944 0.1846606 -3.729748 0.3689944 0.1846606 -4.264621 0.3689944 0.1846606 -4.876131 0.3689944 0.1846606 -5.575266 0.3689944 0.1846606 -6.374593 0.3689944 0.1846606 -0 0.4282948 0.1846606 -0 0.4282948 0.1846606 -0 0.4282948 0.1846606 -0.002268731 0.4282948 0.1846606 -0.07076883 0.4282948 0.1846606 -0.1119241 0.4282948 0.1846606 -0.1475052 0.4282948 0.1846606 -0.1846606 0.4282948 0.1846606 -0.2245119 0.4282948 0.1846606 -0.2679612 0.4282948 0.1846606 -0.3158431 0.4282948 0.1846606 -0.3689944 0.4282948 0.1846606 -0.4282948 0.4282948 0.1846606 -0.494694 0.4282948 0.1846606 -0.5692344 0.4282948 0.1846606 -0.6530715 0.4282948 0.1846606 -0.7474945 0.4282948 0.1846606 -0.8539475 0.4282948 0.1846606 -0.974052 0.4282948 0.1846606 -1.113885 0.4282948 0.1846606 -1.27456 0.4282948 0.1846606 -1.458117 0.4282948 0.1846606 -1.667858 0.4282948 0.1846606 -1.907556 0.4282948 0.1846606 -2.181521 0.4282948 0.1846606 -2.494678 0.4282948 0.1846606 -2.852659 0.4282948 0.1846606 -3.261896 0.4282948 0.1846606 -3.729748 0.4282948 0.1846606 -4.264621 0.4282948 0.1846606 -4.876131 0.4282948 0.1846606 -5.575266 0.4282948 0.1846606 -6.374593 0.4282948 0.1846606 -0 0.494694 0.1846606 -0 0.494694 0.1846606 -0 0.494694 0.1846606 -0.002268731 0.494694 0.1846606 -0.07076883 0.494694 0.1846606 -0.1119241 0.494694 0.1846606 -0.1475052 0.494694 0.1846606 -0.1846606 0.494694 0.1846606 -0.2245119 0.494694 0.1846606 -0.2679612 0.494694 0.1846606 -0.3158431 0.494694 0.1846606 -0.3689944 0.494694 0.1846606 -0.4282948 0.494694 0.1846606 -0.494694 0.494694 0.1846606 -0.5692344 0.494694 0.1846606 -0.6530715 0.494694 0.1846606 -0.7474945 0.494694 0.1846606 -0.8539475 0.494694 0.1846606 -0.974052 0.494694 0.1846606 -1.113885 0.494694 0.1846606 -1.27456 0.494694 0.1846606 -1.458117 0.494694 0.1846606 -1.667858 0.494694 0.1846606 -1.907556 0.494694 0.1846606 -2.181521 0.494694 0.1846606 -2.494678 0.494694 0.1846606 -2.852659 0.494694 0.1846606 -3.261896 0.494694 0.1846606 -3.729748 0.494694 0.1846606 -4.264621 0.494694 0.1846606 -4.876131 0.494694 0.1846606 -5.575266 0.494694 0.1846606 -6.374593 0.494694 0.1846606 -0 0.5692344 0.1846606 -0 0.5692344 0.1846606 -0 0.5692344 0.1846606 -0.002268731 0.5692344 0.1846606 -0.07076883 0.5692344 0.1846606 -0.1119241 0.5692344 0.1846606 -0.1475052 0.5692344 0.1846606 -0.1846606 0.5692344 0.1846606 -0.2245119 0.5692344 0.1846606 -0.2679612 0.5692344 0.1846606 -0.3158431 0.5692344 0.1846606 -0.3689944 0.5692344 0.1846606 -0.4282948 0.5692344 0.1846606 -0.494694 0.5692344 0.1846606 -0.5692344 0.5692344 0.1846606 -0.6530715 0.5692344 0.1846606 -0.7474945 0.5692344 0.1846606 -0.8539475 0.5692344 0.1846606 -0.974052 0.5692344 0.1846606 -1.113885 0.5692344 0.1846606 -1.27456 0.5692344 0.1846606 -1.458117 0.5692344 0.1846606 -1.667858 0.5692344 0.1846606 -1.907556 0.5692344 0.1846606 -2.181521 0.5692344 0.1846606 -2.494678 0.5692344 0.1846606 -2.852659 0.5692344 0.1846606 -3.261896 0.5692344 0.1846606 -3.729748 0.5692344 0.1846606 -4.264621 0.5692344 0.1846606 -4.876131 0.5692344 0.1846606 -5.575266 0.5692344 0.1846606 -6.374593 0.5692344 0.1846606 -0 0.6530715 0.1846606 -0 0.6530715 0.1846606 -0 0.6530715 0.1846606 -0.002268731 0.6530715 0.1846606 -0.07076883 0.6530715 0.1846606 -0.1119241 0.6530715 0.1846606 -0.1475052 0.6530715 0.1846606 -0.1846606 0.6530715 0.1846606 -0.2245119 0.6530715 0.1846606 -0.2679612 0.6530715 0.1846606 -0.3158431 0.6530715 0.1846606 -0.3689944 0.6530715 0.1846606 -0.4282948 0.6530715 0.1846606 -0.494694 0.6530715 0.1846606 -0.5692344 0.6530715 0.1846606 -0.6530715 0.6530715 0.1846606 -0.7474945 0.6530715 0.1846606 -0.8539475 0.6530715 0.1846606 -0.974052 0.6530715 0.1846606 -1.113885 0.6530715 0.1846606 -1.27456 0.6530715 0.1846606 -1.458117 0.6530715 0.1846606 -1.667858 0.6530715 0.1846606 -1.907556 0.6530715 0.1846606 -2.181521 0.6530715 0.1846606 -2.494678 0.6530715 0.1846606 -2.852659 0.6530715 0.1846606 -3.261896 0.6530715 0.1846606 -3.729748 0.6530715 0.1846606 -4.264621 0.6530715 0.1846606 -4.876131 0.6530715 0.1846606 -5.575266 0.6530715 0.1846606 -6.374593 0.6530715 0.1846606 -0 0.7474945 0.1846606 -0 0.7474945 0.1846606 -0 0.7474945 0.1846606 -0.002268731 0.7474945 0.1846606 -0.07076883 0.7474945 0.1846606 -0.1119241 0.7474945 0.1846606 -0.1475052 0.7474945 0.1846606 -0.1846606 0.7474945 0.1846606 -0.2245119 0.7474945 0.1846606 -0.2679612 0.7474945 0.1846606 -0.3158431 0.7474945 0.1846606 -0.3689944 0.7474945 0.1846606 -0.4282948 0.7474945 0.1846606 -0.494694 0.7474945 0.1846606 -0.5692344 0.7474945 0.1846606 -0.6530715 0.7474945 0.1846606 -0.7474945 0.7474945 0.1846606 -0.8539475 0.7474945 0.1846606 -0.974052 0.7474945 0.1846606 -1.113885 0.7474945 0.1846606 -1.27456 0.7474945 0.1846606 -1.458117 0.7474945 0.1846606 -1.667858 0.7474945 0.1846606 -1.907556 0.7474945 0.1846606 -2.181521 0.7474945 0.1846606 -2.494678 0.7474945 0.1846606 -2.852659 0.7474945 0.1846606 -3.261896 0.7474945 0.1846606 -3.729748 0.7474945 0.1846606 -4.264621 0.7474945 0.1846606 -4.876131 0.7474945 0.1846606 -5.575266 0.7474945 0.1846606 -6.374593 0.7474945 0.1846606 -0 0.8539475 0.1846606 -0 0.8539475 0.1846606 -0 0.8539475 0.1846606 -0.002268731 0.8539475 0.1846606 -0.07076883 0.8539475 0.1846606 -0.1119241 0.8539475 0.1846606 -0.1475052 0.8539475 0.1846606 -0.1846606 0.8539475 0.1846606 -0.2245119 0.8539475 0.1846606 -0.2679612 0.8539475 0.1846606 -0.3158431 0.8539475 0.1846606 -0.3689944 0.8539475 0.1846606 -0.4282948 0.8539475 0.1846606 -0.494694 0.8539475 0.1846606 -0.5692344 0.8539475 0.1846606 -0.6530715 0.8539475 0.1846606 -0.7474945 0.8539475 0.1846606 -0.8539475 0.8539475 0.1846606 -0.974052 0.8539475 0.1846606 -1.113885 0.8539475 0.1846606 -1.27456 0.8539475 0.1846606 -1.458117 0.8539475 0.1846606 -1.667858 0.8539475 0.1846606 -1.907556 0.8539475 0.1846606 -2.181521 0.8539475 0.1846606 -2.494678 0.8539475 0.1846606 -2.852659 0.8539475 0.1846606 -3.261896 0.8539475 0.1846606 -3.729748 0.8539475 0.1846606 -4.264621 0.8539475 0.1846606 -4.876131 0.8539475 0.1846606 -5.575266 0.8539475 0.1846606 -6.374593 0.8539475 0.1846606 -0 0.974052 0.1846606 -0 0.974052 0.1846606 -0 0.974052 0.1846606 -0.002268731 0.974052 0.1846606 -0.07076883 0.974052 0.1846606 -0.1119241 0.974052 0.1846606 -0.1475052 0.974052 0.1846606 -0.1846606 0.974052 0.1846606 -0.2245119 0.974052 0.1846606 -0.2679612 0.974052 0.1846606 -0.3158431 0.974052 0.1846606 -0.3689944 0.974052 0.1846606 -0.4282948 0.974052 0.1846606 -0.494694 0.974052 0.1846606 -0.5692344 0.974052 0.1846606 -0.6530715 0.974052 0.1846606 -0.7474945 0.974052 0.1846606 -0.8539475 0.974052 0.1846606 -0.974052 0.974052 0.1846606 -1.113885 0.974052 0.1846606 -1.27456 0.974052 0.1846606 -1.458117 0.974052 0.1846606 -1.667858 0.974052 0.1846606 -1.907556 0.974052 0.1846606 -2.181521 0.974052 0.1846606 -2.494678 0.974052 0.1846606 -2.852659 0.974052 0.1846606 -3.261896 0.974052 0.1846606 -3.729748 0.974052 0.1846606 -4.264621 0.974052 0.1846606 -4.876131 0.974052 0.1846606 -5.575266 0.974052 0.1846606 -6.374593 0.974052 0.1846606 -0 1.113885 0.1846606 -0 1.113885 0.1846606 -0 1.113885 0.1846606 -0.002268731 1.113885 0.1846606 -0.07076883 1.113885 0.1846606 -0.1119241 1.113885 0.1846606 -0.1475052 1.113885 0.1846606 -0.1846606 1.113885 0.1846606 -0.2245119 1.113885 0.1846606 -0.2679612 1.113885 0.1846606 -0.3158431 1.113885 0.1846606 -0.3689944 1.113885 0.1846606 -0.4282948 1.113885 0.1846606 -0.494694 1.113885 0.1846606 -0.5692344 1.113885 0.1846606 -0.6530715 1.113885 0.1846606 -0.7474945 1.113885 0.1846606 -0.8539475 1.113885 0.1846606 -0.974052 1.113885 0.1846606 -1.113885 1.113885 0.1846606 -1.27456 1.113885 0.1846606 -1.458117 1.113885 0.1846606 -1.667858 1.113885 0.1846606 -1.907556 1.113885 0.1846606 -2.181521 1.113885 0.1846606 -2.494678 1.113885 0.1846606 -2.852659 1.113885 0.1846606 -3.261896 1.113885 0.1846606 -3.729748 1.113885 0.1846606 -4.264621 1.113885 0.1846606 -4.876131 1.113885 0.1846606 -5.575266 1.113885 0.1846606 -6.374593 1.113885 0.1846606 -0 1.27456 0.1846606 -0 1.27456 0.1846606 -0 1.27456 0.1846606 -0.002268731 1.27456 0.1846606 -0.07076883 1.27456 0.1846606 -0.1119241 1.27456 0.1846606 -0.1475052 1.27456 0.1846606 -0.1846606 1.27456 0.1846606 -0.2245119 1.27456 0.1846606 -0.2679612 1.27456 0.1846606 -0.3158431 1.27456 0.1846606 -0.3689944 1.27456 0.1846606 -0.4282948 1.27456 0.1846606 -0.494694 1.27456 0.1846606 -0.5692344 1.27456 0.1846606 -0.6530715 1.27456 0.1846606 -0.7474945 1.27456 0.1846606 -0.8539475 1.27456 0.1846606 -0.974052 1.27456 0.1846606 -1.113885 1.27456 0.1846606 -1.27456 1.27456 0.1846606 -1.458117 1.27456 0.1846606 -1.667858 1.27456 0.1846606 -1.907556 1.27456 0.1846606 -2.181521 1.27456 0.1846606 -2.494678 1.27456 0.1846606 -2.852659 1.27456 0.1846606 -3.261896 1.27456 0.1846606 -3.729748 1.27456 0.1846606 -4.264621 1.27456 0.1846606 -4.876131 1.27456 0.1846606 -5.575266 1.27456 0.1846606 -6.374593 1.27456 0.1846606 -0 1.458117 0.1846606 -0 1.458117 0.1846606 -0 1.458117 0.1846606 -0.002268731 1.458117 0.1846606 -0.07076883 1.458117 0.1846606 -0.1119241 1.458117 0.1846606 -0.1475052 1.458117 0.1846606 -0.1846606 1.458117 0.1846606 -0.2245119 1.458117 0.1846606 -0.2679612 1.458117 0.1846606 -0.3158431 1.458117 0.1846606 -0.3689944 1.458117 0.1846606 -0.4282948 1.458117 0.1846606 -0.494694 1.458117 0.1846606 -0.5692344 1.458117 0.1846606 -0.6530715 1.458117 0.1846606 -0.7474945 1.458117 0.1846606 -0.8539475 1.458117 0.1846606 -0.974052 1.458117 0.1846606 -1.113885 1.458117 0.1846606 -1.27456 1.458117 0.1846606 -1.458117 1.458117 0.1846606 -1.667858 1.458117 0.1846606 -1.907556 1.458117 0.1846606 -2.181521 1.458117 0.1846606 -2.494678 1.458117 0.1846606 -2.852659 1.458117 0.1846606 -3.261896 1.458117 0.1846606 -3.729748 1.458117 0.1846606 -4.264621 1.458117 0.1846606 -4.876131 1.458117 0.1846606 -5.575266 1.458117 0.1846606 -6.374593 1.458117 0.1846606 -0 1.667858 0.1846606 -0 1.667858 0.1846606 -0 1.667858 0.1846606 -0.002268731 1.667858 0.1846606 -0.07076883 1.667858 0.1846606 -0.1119241 1.667858 0.1846606 -0.1475052 1.667858 0.1846606 -0.1846606 1.667858 0.1846606 -0.2245119 1.667858 0.1846606 -0.2679612 1.667858 0.1846606 -0.3158431 1.667858 0.1846606 -0.3689944 1.667858 0.1846606 -0.4282948 1.667858 0.1846606 -0.494694 1.667858 0.1846606 -0.5692344 1.667858 0.1846606 -0.6530715 1.667858 0.1846606 -0.7474945 1.667858 0.1846606 -0.8539475 1.667858 0.1846606 -0.974052 1.667858 0.1846606 -1.113885 1.667858 0.1846606 -1.27456 1.667858 0.1846606 -1.458117 1.667858 0.1846606 -1.667858 1.667858 0.1846606 -1.907556 1.667858 0.1846606 -2.181521 1.667858 0.1846606 -2.494678 1.667858 0.1846606 -2.852659 1.667858 0.1846606 -3.261896 1.667858 0.1846606 -3.729748 1.667858 0.1846606 -4.264621 1.667858 0.1846606 -4.876131 1.667858 0.1846606 -5.575266 1.667858 0.1846606 -6.374593 1.667858 0.1846606 -0 1.907556 0.1846606 -0 1.907556 0.1846606 -0 1.907556 0.1846606 -0.002268731 1.907556 0.1846606 -0.07076883 1.907556 0.1846606 -0.1119241 1.907556 0.1846606 -0.1475052 1.907556 0.1846606 -0.1846606 1.907556 0.1846606 -0.2245119 1.907556 0.1846606 -0.2679612 1.907556 0.1846606 -0.3158431 1.907556 0.1846606 -0.3689944 1.907556 0.1846606 -0.4282948 1.907556 0.1846606 -0.494694 1.907556 0.1846606 -0.5692344 1.907556 0.1846606 -0.6530715 1.907556 0.1846606 -0.7474945 1.907556 0.1846606 -0.8539475 1.907556 0.1846606 -0.974052 1.907556 0.1846606 -1.113885 1.907556 0.1846606 -1.27456 1.907556 0.1846606 -1.458117 1.907556 0.1846606 -1.667858 1.907556 0.1846606 -1.907556 1.907556 0.1846606 -2.181521 1.907556 0.1846606 -2.494678 1.907556 0.1846606 -2.852659 1.907556 0.1846606 -3.261896 1.907556 0.1846606 -3.729748 1.907556 0.1846606 -4.264621 1.907556 0.1846606 -4.876131 1.907556 0.1846606 -5.575266 1.907556 0.1846606 -6.374593 1.907556 0.1846606 -0 2.181521 0.1846606 -0 2.181521 0.1846606 -0 2.181521 0.1846606 -0.002268731 2.181521 0.1846606 -0.07076883 2.181521 0.1846606 -0.1119241 2.181521 0.1846606 -0.1475052 2.181521 0.1846606 -0.1846606 2.181521 0.1846606 -0.2245119 2.181521 0.1846606 -0.2679612 2.181521 0.1846606 -0.3158431 2.181521 0.1846606 -0.3689944 2.181521 0.1846606 -0.4282948 2.181521 0.1846606 -0.494694 2.181521 0.1846606 -0.5692344 2.181521 0.1846606 -0.6530715 2.181521 0.1846606 -0.7474945 2.181521 0.1846606 -0.8539475 2.181521 0.1846606 -0.974052 2.181521 0.1846606 -1.113885 2.181521 0.1846606 -1.27456 2.181521 0.1846606 -1.458117 2.181521 0.1846606 -1.667858 2.181521 0.1846606 -1.907556 2.181521 0.1846606 -2.181521 2.181521 0.1846606 -2.494678 2.181521 0.1846606 -2.852659 2.181521 0.1846606 -3.261896 2.181521 0.1846606 -3.729748 2.181521 0.1846606 -4.264621 2.181521 0.1846606 -4.876131 2.181521 0.1846606 -5.575266 2.181521 0.1846606 -6.374593 2.181521 0.1846606 -0 2.494678 0.1846606 -0 2.494678 0.1846606 -0 2.494678 0.1846606 -0.002268731 2.494678 0.1846606 -0.07076883 2.494678 0.1846606 -0.1119241 2.494678 0.1846606 -0.1475052 2.494678 0.1846606 -0.1846606 2.494678 0.1846606 -0.2245119 2.494678 0.1846606 -0.2679612 2.494678 0.1846606 -0.3158431 2.494678 0.1846606 -0.3689944 2.494678 0.1846606 -0.4282948 2.494678 0.1846606 -0.494694 2.494678 0.1846606 -0.5692344 2.494678 0.1846606 -0.6530715 2.494678 0.1846606 -0.7474945 2.494678 0.1846606 -0.8539475 2.494678 0.1846606 -0.974052 2.494678 0.1846606 -1.113885 2.494678 0.1846606 -1.27456 2.494678 0.1846606 -1.458117 2.494678 0.1846606 -1.667858 2.494678 0.1846606 -1.907556 2.494678 0.1846606 -2.181521 2.494678 0.1846606 -2.494678 2.494678 0.1846606 -2.852659 2.494678 0.1846606 -3.261896 2.494678 0.1846606 -3.729748 2.494678 0.1846606 -4.264621 2.494678 0.1846606 -4.876131 2.494678 0.1846606 -5.575266 2.494678 0.1846606 -6.374593 2.494678 0.1846606 -0 2.852659 0.1846606 -0 2.852659 0.1846606 -0 2.852659 0.1846606 -0.002268731 2.852659 0.1846606 -0.07076883 2.852659 0.1846606 -0.1119241 2.852659 0.1846606 -0.1475052 2.852659 0.1846606 -0.1846606 2.852659 0.1846606 -0.2245119 2.852659 0.1846606 -0.2679612 2.852659 0.1846606 -0.3158431 2.852659 0.1846606 -0.3689944 2.852659 0.1846606 -0.4282948 2.852659 0.1846606 -0.494694 2.852659 0.1846606 -0.5692344 2.852659 0.1846606 -0.6530715 2.852659 0.1846606 -0.7474945 2.852659 0.1846606 -0.8539475 2.852659 0.1846606 -0.974052 2.852659 0.1846606 -1.113885 2.852659 0.1846606 -1.27456 2.852659 0.1846606 -1.458117 2.852659 0.1846606 -1.667858 2.852659 0.1846606 -1.907556 2.852659 0.1846606 -2.181521 2.852659 0.1846606 -2.494678 2.852659 0.1846606 -2.852659 2.852659 0.1846606 -3.261896 2.852659 0.1846606 -3.729748 2.852659 0.1846606 -4.264621 2.852659 0.1846606 -4.876131 2.852659 0.1846606 -5.575266 2.852659 0.1846606 -6.374593 2.852659 0.1846606 -0 3.261896 0.1846606 -0 3.261896 0.1846606 -0 3.261896 0.1846606 -0.002268731 3.261896 0.1846606 -0.07076883 3.261896 0.1846606 -0.1119241 3.261896 0.1846606 -0.1475052 3.261896 0.1846606 -0.1846606 3.261896 0.1846606 -0.2245119 3.261896 0.1846606 -0.2679612 3.261896 0.1846606 -0.3158431 3.261896 0.1846606 -0.3689944 3.261896 0.1846606 -0.4282948 3.261896 0.1846606 -0.494694 3.261896 0.1846606 -0.5692344 3.261896 0.1846606 -0.6530715 3.261896 0.1846606 -0.7474945 3.261896 0.1846606 -0.8539475 3.261896 0.1846606 -0.974052 3.261896 0.1846606 -1.113885 3.261896 0.1846606 -1.27456 3.261896 0.1846606 -1.458117 3.261896 0.1846606 -1.667858 3.261896 0.1846606 -1.907556 3.261896 0.1846606 -2.181521 3.261896 0.1846606 -2.494678 3.261896 0.1846606 -2.852659 3.261896 0.1846606 -3.261896 3.261896 0.1846606 -3.729748 3.261896 0.1846606 -4.264621 3.261896 0.1846606 -4.876131 3.261896 0.1846606 -5.575266 3.261896 0.1846606 -6.374593 3.261896 0.1846606 -0 3.729748 0.1846606 -0 3.729748 0.1846606 -0 3.729748 0.1846606 -0.002268731 3.729748 0.1846606 -0.07076883 3.729748 0.1846606 -0.1119241 3.729748 0.1846606 -0.1475052 3.729748 0.1846606 -0.1846606 3.729748 0.1846606 -0.2245119 3.729748 0.1846606 -0.2679612 3.729748 0.1846606 -0.3158431 3.729748 0.1846606 -0.3689944 3.729748 0.1846606 -0.4282948 3.729748 0.1846606 -0.494694 3.729748 0.1846606 -0.5692344 3.729748 0.1846606 -0.6530715 3.729748 0.1846606 -0.7474945 3.729748 0.1846606 -0.8539475 3.729748 0.1846606 -0.974052 3.729748 0.1846606 -1.113885 3.729748 0.1846606 -1.27456 3.729748 0.1846606 -1.458117 3.729748 0.1846606 -1.667858 3.729748 0.1846606 -1.907556 3.729748 0.1846606 -2.181521 3.729748 0.1846606 -2.494678 3.729748 0.1846606 -2.852659 3.729748 0.1846606 -3.261896 3.729748 0.1846606 -3.729748 3.729748 0.1846606 -4.264621 3.729748 0.1846606 -4.876131 3.729748 0.1846606 -5.575266 3.729748 0.1846606 -6.374593 3.729748 0.1846606 -0 4.264621 0.1846606 -0 4.264621 0.1846606 -0 4.264621 0.1846606 -0.002268731 4.264621 0.1846606 -0.07076883 4.264621 0.1846606 -0.1119241 4.264621 0.1846606 -0.1475052 4.264621 0.1846606 -0.1846606 4.264621 0.1846606 -0.2245119 4.264621 0.1846606 -0.2679612 4.264621 0.1846606 -0.3158431 4.264621 0.1846606 -0.3689944 4.264621 0.1846606 -0.4282948 4.264621 0.1846606 -0.494694 4.264621 0.1846606 -0.5692344 4.264621 0.1846606 -0.6530715 4.264621 0.1846606 -0.7474945 4.264621 0.1846606 -0.8539475 4.264621 0.1846606 -0.974052 4.264621 0.1846606 -1.113885 4.264621 0.1846606 -1.27456 4.264621 0.1846606 -1.458117 4.264621 0.1846606 -1.667858 4.264621 0.1846606 -1.907556 4.264621 0.1846606 -2.181521 4.264621 0.1846606 -2.494678 4.264621 0.1846606 -2.852659 4.264621 0.1846606 -3.261896 4.264621 0.1846606 -3.729748 4.264621 0.1846606 -4.264621 4.264621 0.1846606 -4.876131 4.264621 0.1846606 -5.575266 4.264621 0.1846606 -6.374593 4.264621 0.1846606 -0 4.876131 0.1846606 -0 4.876131 0.1846606 -0 4.876131 0.1846606 -0.002268731 4.876131 0.1846606 -0.07076883 4.876131 0.1846606 -0.1119241 4.876131 0.1846606 -0.1475052 4.876131 0.1846606 -0.1846606 4.876131 0.1846606 -0.2245119 4.876131 0.1846606 -0.2679612 4.876131 0.1846606 -0.3158431 4.876131 0.1846606 -0.3689944 4.876131 0.1846606 -0.4282948 4.876131 0.1846606 -0.494694 4.876131 0.1846606 -0.5692344 4.876131 0.1846606 -0.6530715 4.876131 0.1846606 -0.7474945 4.876131 0.1846606 -0.8539475 4.876131 0.1846606 -0.974052 4.876131 0.1846606 -1.113885 4.876131 0.1846606 -1.27456 4.876131 0.1846606 -1.458117 4.876131 0.1846606 -1.667858 4.876131 0.1846606 -1.907556 4.876131 0.1846606 -2.181521 4.876131 0.1846606 -2.494678 4.876131 0.1846606 -2.852659 4.876131 0.1846606 -3.261896 4.876131 0.1846606 -3.729748 4.876131 0.1846606 -4.264621 4.876131 0.1846606 -4.876131 4.876131 0.1846606 -5.575266 4.876131 0.1846606 -6.374593 4.876131 0.1846606 -0 5.575266 0.1846606 -0 5.575266 0.1846606 -0 5.575266 0.1846606 -0.002268731 5.575266 0.1846606 -0.07076883 5.575266 0.1846606 -0.1119241 5.575266 0.1846606 -0.1475052 5.575266 0.1846606 -0.1846606 5.575266 0.1846606 -0.2245119 5.575266 0.1846606 -0.2679612 5.575266 0.1846606 -0.3158431 5.575266 0.1846606 -0.3689944 5.575266 0.1846606 -0.4282948 5.575266 0.1846606 -0.494694 5.575266 0.1846606 -0.5692344 5.575266 0.1846606 -0.6530715 5.575266 0.1846606 -0.7474945 5.575266 0.1846606 -0.8539475 5.575266 0.1846606 -0.974052 5.575266 0.1846606 -1.113885 5.575266 0.1846606 -1.27456 5.575266 0.1846606 -1.458117 5.575266 0.1846606 -1.667858 5.575266 0.1846606 -1.907556 5.575266 0.1846606 -2.181521 5.575266 0.1846606 -2.494678 5.575266 0.1846606 -2.852659 5.575266 0.1846606 -3.261896 5.575266 0.1846606 -3.729748 5.575266 0.1846606 -4.264621 5.575266 0.1846606 -4.876131 5.575266 0.1846606 -5.575266 5.575266 0.1846606 -6.374593 5.575266 0.1846606 -0 6.374593 0.1846606 -0 6.374593 0.1846606 -0 6.374593 0.1846606 -0.002268731 6.374593 0.1846606 -0.07076883 6.374593 0.1846606 -0.1119241 6.374593 0.1846606 -0.1475052 6.374593 0.1846606 -0.1846606 6.374593 0.1846606 -0.2245119 6.374593 0.1846606 -0.2679612 6.374593 0.1846606 -0.3158431 6.374593 0.1846606 -0.3689944 6.374593 0.1846606 -0.4282948 6.374593 0.1846606 -0.494694 6.374593 0.1846606 -0.5692344 6.374593 0.1846606 -0.6530715 6.374593 0.1846606 -0.7474945 6.374593 0.1846606 -0.8539475 6.374593 0.1846606 -0.974052 6.374593 0.1846606 -1.113885 6.374593 0.1846606 -1.27456 6.374593 0.1846606 -1.458117 6.374593 0.1846606 -1.667858 6.374593 0.1846606 -1.907556 6.374593 0.1846606 -2.181521 6.374593 0.1846606 -2.494678 6.374593 0.1846606 -2.852659 6.374593 0.1846606 -3.261896 6.374593 0.1846606 -3.729748 6.374593 0.1846606 -4.264621 6.374593 0.1846606 -4.876131 6.374593 0.1846606 -5.575266 6.374593 0.1846606 -6.374593 6.374593 0.1846606 -0 0 0.2245119 -0 0 0.2245119 -0 0 0.2245119 -0.002268731 0 0.2245119 -0.07076883 0 0.2245119 -0.1119241 0 0.2245119 -0.1475052 0 0.2245119 -0.1846606 0 0.2245119 -0.2245119 0 0.2245119 -0.2679612 0 0.2245119 -0.3158431 0 0.2245119 -0.3689944 0 0.2245119 -0.4282948 0 0.2245119 -0.494694 0 0.2245119 -0.5692344 0 0.2245119 -0.6530715 0 0.2245119 -0.7474945 0 0.2245119 -0.8539475 0 0.2245119 -0.974052 0 0.2245119 -1.113885 0 0.2245119 -1.27456 0 0.2245119 -1.458117 0 0.2245119 -1.667858 0 0.2245119 -1.907556 0 0.2245119 -2.181521 0 0.2245119 -2.494678 0 0.2245119 -2.852659 0 0.2245119 -3.261896 0 0.2245119 -3.729748 0 0.2245119 -4.264621 0 0.2245119 -4.876131 0 0.2245119 -5.575266 0 0.2245119 -6.374593 0 0.2245119 -0 0 0.2245119 -0 0 0.2245119 -0 0 0.2245119 -0.002268731 0 0.2245119 -0.07076883 0 0.2245119 -0.1119241 0 0.2245119 -0.1475052 0 0.2245119 -0.1846606 0 0.2245119 -0.2245119 0 0.2245119 -0.2679612 0 0.2245119 -0.3158431 0 0.2245119 -0.3689944 0 0.2245119 -0.4282948 0 0.2245119 -0.494694 0 0.2245119 -0.5692344 0 0.2245119 -0.6530715 0 0.2245119 -0.7474945 0 0.2245119 -0.8539475 0 0.2245119 -0.974052 0 0.2245119 -1.113885 0 0.2245119 -1.27456 0 0.2245119 -1.458117 0 0.2245119 -1.667858 0 0.2245119 -1.907556 0 0.2245119 -2.181521 0 0.2245119 -2.494678 0 0.2245119 -2.852659 0 0.2245119 -3.261896 0 0.2245119 -3.729748 0 0.2245119 -4.264621 0 0.2245119 -4.876131 0 0.2245119 -5.575266 0 0.2245119 -6.374593 0 0.2245119 -0 0 0.2245119 -0 0 0.2245119 -0 0 0.2245119 -0.002268731 0 0.2245119 -0.07076883 0 0.2245119 -0.1119241 0 0.2245119 -0.1475052 0 0.2245119 -0.1846606 0 0.2245119 -0.2245119 0 0.2245119 -0.2679612 0 0.2245119 -0.3158431 0 0.2245119 -0.3689944 0 0.2245119 -0.4282948 0 0.2245119 -0.494694 0 0.2245119 -0.5692344 0 0.2245119 -0.6530715 0 0.2245119 -0.7474945 0 0.2245119 -0.8539475 0 0.2245119 -0.974052 0 0.2245119 -1.113885 0 0.2245119 -1.27456 0 0.2245119 -1.458117 0 0.2245119 -1.667858 0 0.2245119 -1.907556 0 0.2245119 -2.181521 0 0.2245119 -2.494678 0 0.2245119 -2.852659 0 0.2245119 -3.261896 0 0.2245119 -3.729748 0 0.2245119 -4.264621 0 0.2245119 -4.876131 0 0.2245119 -5.575266 0 0.2245119 -6.374593 0 0.2245119 -0 0.002268731 0.2245119 -0 0.002268731 0.2245119 -0 0.002268731 0.2245119 -0.002268731 0.002268731 0.2245119 -0.07076883 0.002268731 0.2245119 -0.1119241 0.002268731 0.2245119 -0.1475052 0.002268731 0.2245119 -0.1846606 0.002268731 0.2245119 -0.2245119 0.002268731 0.2245119 -0.2679612 0.002268731 0.2245119 -0.3158431 0.002268731 0.2245119 -0.3689944 0.002268731 0.2245119 -0.4282948 0.002268731 0.2245119 -0.494694 0.002268731 0.2245119 -0.5692344 0.002268731 0.2245119 -0.6530715 0.002268731 0.2245119 -0.7474945 0.002268731 0.2245119 -0.8539475 0.002268731 0.2245119 -0.974052 0.002268731 0.2245119 -1.113885 0.002268731 0.2245119 -1.27456 0.002268731 0.2245119 -1.458117 0.002268731 0.2245119 -1.667858 0.002268731 0.2245119 -1.907556 0.002268731 0.2245119 -2.181521 0.002268731 0.2245119 -2.494678 0.002268731 0.2245119 -2.852659 0.002268731 0.2245119 -3.261896 0.002268731 0.2245119 -3.729748 0.002268731 0.2245119 -4.264621 0.002268731 0.2245119 -4.876131 0.002268731 0.2245119 -5.575266 0.002268731 0.2245119 -6.374593 0.002268731 0.2245119 -0 0.07076883 0.2245119 -0 0.07076883 0.2245119 -0 0.07076883 0.2245119 -0.002268731 0.07076883 0.2245119 -0.07076883 0.07076883 0.2245119 -0.1119241 0.07076883 0.2245119 -0.1475052 0.07076883 0.2245119 -0.1846606 0.07076883 0.2245119 -0.2245119 0.07076883 0.2245119 -0.2679612 0.07076883 0.2245119 -0.3158431 0.07076883 0.2245119 -0.3689944 0.07076883 0.2245119 -0.4282948 0.07076883 0.2245119 -0.494694 0.07076883 0.2245119 -0.5692344 0.07076883 0.2245119 -0.6530715 0.07076883 0.2245119 -0.7474945 0.07076883 0.2245119 -0.8539475 0.07076883 0.2245119 -0.974052 0.07076883 0.2245119 -1.113885 0.07076883 0.2245119 -1.27456 0.07076883 0.2245119 -1.458117 0.07076883 0.2245119 -1.667858 0.07076883 0.2245119 -1.907556 0.07076883 0.2245119 -2.181521 0.07076883 0.2245119 -2.494678 0.07076883 0.2245119 -2.852659 0.07076883 0.2245119 -3.261896 0.07076883 0.2245119 -3.729748 0.07076883 0.2245119 -4.264621 0.07076883 0.2245119 -4.876131 0.07076883 0.2245119 -5.575266 0.07076883 0.2245119 -6.374593 0.07076883 0.2245119 -0 0.1119241 0.2245119 -0 0.1119241 0.2245119 -0 0.1119241 0.2245119 -0.002268731 0.1119241 0.2245119 -0.07076883 0.1119241 0.2245119 -0.1119241 0.1119241 0.2245119 -0.1475052 0.1119241 0.2245119 -0.1846606 0.1119241 0.2245119 -0.2245119 0.1119241 0.2245119 -0.2679612 0.1119241 0.2245119 -0.3158431 0.1119241 0.2245119 -0.3689944 0.1119241 0.2245119 -0.4282948 0.1119241 0.2245119 -0.494694 0.1119241 0.2245119 -0.5692344 0.1119241 0.2245119 -0.6530715 0.1119241 0.2245119 -0.7474945 0.1119241 0.2245119 -0.8539475 0.1119241 0.2245119 -0.974052 0.1119241 0.2245119 -1.113885 0.1119241 0.2245119 -1.27456 0.1119241 0.2245119 -1.458117 0.1119241 0.2245119 -1.667858 0.1119241 0.2245119 -1.907556 0.1119241 0.2245119 -2.181521 0.1119241 0.2245119 -2.494678 0.1119241 0.2245119 -2.852659 0.1119241 0.2245119 -3.261896 0.1119241 0.2245119 -3.729748 0.1119241 0.2245119 -4.264621 0.1119241 0.2245119 -4.876131 0.1119241 0.2245119 -5.575266 0.1119241 0.2245119 -6.374593 0.1119241 0.2245119 -0 0.1475052 0.2245119 -0 0.1475052 0.2245119 -0 0.1475052 0.2245119 -0.002268731 0.1475052 0.2245119 -0.07076883 0.1475052 0.2245119 -0.1119241 0.1475052 0.2245119 -0.1475052 0.1475052 0.2245119 -0.1846606 0.1475052 0.2245119 -0.2245119 0.1475052 0.2245119 -0.2679612 0.1475052 0.2245119 -0.3158431 0.1475052 0.2245119 -0.3689944 0.1475052 0.2245119 -0.4282948 0.1475052 0.2245119 -0.494694 0.1475052 0.2245119 -0.5692344 0.1475052 0.2245119 -0.6530715 0.1475052 0.2245119 -0.7474945 0.1475052 0.2245119 -0.8539475 0.1475052 0.2245119 -0.974052 0.1475052 0.2245119 -1.113885 0.1475052 0.2245119 -1.27456 0.1475052 0.2245119 -1.458117 0.1475052 0.2245119 -1.667858 0.1475052 0.2245119 -1.907556 0.1475052 0.2245119 -2.181521 0.1475052 0.2245119 -2.494678 0.1475052 0.2245119 -2.852659 0.1475052 0.2245119 -3.261896 0.1475052 0.2245119 -3.729748 0.1475052 0.2245119 -4.264621 0.1475052 0.2245119 -4.876131 0.1475052 0.2245119 -5.575266 0.1475052 0.2245119 -6.374593 0.1475052 0.2245119 -0 0.1846606 0.2245119 -0 0.1846606 0.2245119 -0 0.1846606 0.2245119 -0.002268731 0.1846606 0.2245119 -0.07076883 0.1846606 0.2245119 -0.1119241 0.1846606 0.2245119 -0.1475052 0.1846606 0.2245119 -0.1846606 0.1846606 0.2245119 -0.2245119 0.1846606 0.2245119 -0.2679612 0.1846606 0.2245119 -0.3158431 0.1846606 0.2245119 -0.3689944 0.1846606 0.2245119 -0.4282948 0.1846606 0.2245119 -0.494694 0.1846606 0.2245119 -0.5692344 0.1846606 0.2245119 -0.6530715 0.1846606 0.2245119 -0.7474945 0.1846606 0.2245119 -0.8539475 0.1846606 0.2245119 -0.974052 0.1846606 0.2245119 -1.113885 0.1846606 0.2245119 -1.27456 0.1846606 0.2245119 -1.458117 0.1846606 0.2245119 -1.667858 0.1846606 0.2245119 -1.907556 0.1846606 0.2245119 -2.181521 0.1846606 0.2245119 -2.494678 0.1846606 0.2245119 -2.852659 0.1846606 0.2245119 -3.261896 0.1846606 0.2245119 -3.729748 0.1846606 0.2245119 -4.264621 0.1846606 0.2245119 -4.876131 0.1846606 0.2245119 -5.575266 0.1846606 0.2245119 -6.374593 0.1846606 0.2245119 -0 0.2245119 0.2245119 -0 0.2245119 0.2245119 -0 0.2245119 0.2245119 -0.002268731 0.2245119 0.2245119 -0.07076883 0.2245119 0.2245119 -0.1119241 0.2245119 0.2245119 -0.1475052 0.2245119 0.2245119 -0.1846606 0.2245119 0.2245119 -0.2245119 0.2245119 0.2245119 -0.2679612 0.2245119 0.2245119 -0.3158431 0.2245119 0.2245119 -0.3689944 0.2245119 0.2245119 -0.4282948 0.2245119 0.2245119 -0.494694 0.2245119 0.2245119 -0.5692344 0.2245119 0.2245119 -0.6530715 0.2245119 0.2245119 -0.7474945 0.2245119 0.2245119 -0.8539475 0.2245119 0.2245119 -0.974052 0.2245119 0.2245119 -1.113885 0.2245119 0.2245119 -1.27456 0.2245119 0.2245119 -1.458117 0.2245119 0.2245119 -1.667858 0.2245119 0.2245119 -1.907556 0.2245119 0.2245119 -2.181521 0.2245119 0.2245119 -2.494678 0.2245119 0.2245119 -2.852659 0.2245119 0.2245119 -3.261896 0.2245119 0.2245119 -3.729748 0.2245119 0.2245119 -4.264621 0.2245119 0.2245119 -4.876131 0.2245119 0.2245119 -5.575266 0.2245119 0.2245119 -6.374593 0.2245119 0.2245119 -0 0.2679612 0.2245119 -0 0.2679612 0.2245119 -0 0.2679612 0.2245119 -0.002268731 0.2679612 0.2245119 -0.07076883 0.2679612 0.2245119 -0.1119241 0.2679612 0.2245119 -0.1475052 0.2679612 0.2245119 -0.1846606 0.2679612 0.2245119 -0.2245119 0.2679612 0.2245119 -0.2679612 0.2679612 0.2245119 -0.3158431 0.2679612 0.2245119 -0.3689944 0.2679612 0.2245119 -0.4282948 0.2679612 0.2245119 -0.494694 0.2679612 0.2245119 -0.5692344 0.2679612 0.2245119 -0.6530715 0.2679612 0.2245119 -0.7474945 0.2679612 0.2245119 -0.8539475 0.2679612 0.2245119 -0.974052 0.2679612 0.2245119 -1.113885 0.2679612 0.2245119 -1.27456 0.2679612 0.2245119 -1.458117 0.2679612 0.2245119 -1.667858 0.2679612 0.2245119 -1.907556 0.2679612 0.2245119 -2.181521 0.2679612 0.2245119 -2.494678 0.2679612 0.2245119 -2.852659 0.2679612 0.2245119 -3.261896 0.2679612 0.2245119 -3.729748 0.2679612 0.2245119 -4.264621 0.2679612 0.2245119 -4.876131 0.2679612 0.2245119 -5.575266 0.2679612 0.2245119 -6.374593 0.2679612 0.2245119 -0 0.3158431 0.2245119 -0 0.3158431 0.2245119 -0 0.3158431 0.2245119 -0.002268731 0.3158431 0.2245119 -0.07076883 0.3158431 0.2245119 -0.1119241 0.3158431 0.2245119 -0.1475052 0.3158431 0.2245119 -0.1846606 0.3158431 0.2245119 -0.2245119 0.3158431 0.2245119 -0.2679612 0.3158431 0.2245119 -0.3158431 0.3158431 0.2245119 -0.3689944 0.3158431 0.2245119 -0.4282948 0.3158431 0.2245119 -0.494694 0.3158431 0.2245119 -0.5692344 0.3158431 0.2245119 -0.6530715 0.3158431 0.2245119 -0.7474945 0.3158431 0.2245119 -0.8539475 0.3158431 0.2245119 -0.974052 0.3158431 0.2245119 -1.113885 0.3158431 0.2245119 -1.27456 0.3158431 0.2245119 -1.458117 0.3158431 0.2245119 -1.667858 0.3158431 0.2245119 -1.907556 0.3158431 0.2245119 -2.181521 0.3158431 0.2245119 -2.494678 0.3158431 0.2245119 -2.852659 0.3158431 0.2245119 -3.261896 0.3158431 0.2245119 -3.729748 0.3158431 0.2245119 -4.264621 0.3158431 0.2245119 -4.876131 0.3158431 0.2245119 -5.575266 0.3158431 0.2245119 -6.374593 0.3158431 0.2245119 -0 0.3689944 0.2245119 -0 0.3689944 0.2245119 -0 0.3689944 0.2245119 -0.002268731 0.3689944 0.2245119 -0.07076883 0.3689944 0.2245119 -0.1119241 0.3689944 0.2245119 -0.1475052 0.3689944 0.2245119 -0.1846606 0.3689944 0.2245119 -0.2245119 0.3689944 0.2245119 -0.2679612 0.3689944 0.2245119 -0.3158431 0.3689944 0.2245119 -0.3689944 0.3689944 0.2245119 -0.4282948 0.3689944 0.2245119 -0.494694 0.3689944 0.2245119 -0.5692344 0.3689944 0.2245119 -0.6530715 0.3689944 0.2245119 -0.7474945 0.3689944 0.2245119 -0.8539475 0.3689944 0.2245119 -0.974052 0.3689944 0.2245119 -1.113885 0.3689944 0.2245119 -1.27456 0.3689944 0.2245119 -1.458117 0.3689944 0.2245119 -1.667858 0.3689944 0.2245119 -1.907556 0.3689944 0.2245119 -2.181521 0.3689944 0.2245119 -2.494678 0.3689944 0.2245119 -2.852659 0.3689944 0.2245119 -3.261896 0.3689944 0.2245119 -3.729748 0.3689944 0.2245119 -4.264621 0.3689944 0.2245119 -4.876131 0.3689944 0.2245119 -5.575266 0.3689944 0.2245119 -6.374593 0.3689944 0.2245119 -0 0.4282948 0.2245119 -0 0.4282948 0.2245119 -0 0.4282948 0.2245119 -0.002268731 0.4282948 0.2245119 -0.07076883 0.4282948 0.2245119 -0.1119241 0.4282948 0.2245119 -0.1475052 0.4282948 0.2245119 -0.1846606 0.4282948 0.2245119 -0.2245119 0.4282948 0.2245119 -0.2679612 0.4282948 0.2245119 -0.3158431 0.4282948 0.2245119 -0.3689944 0.4282948 0.2245119 -0.4282948 0.4282948 0.2245119 -0.494694 0.4282948 0.2245119 -0.5692344 0.4282948 0.2245119 -0.6530715 0.4282948 0.2245119 -0.7474945 0.4282948 0.2245119 -0.8539475 0.4282948 0.2245119 -0.974052 0.4282948 0.2245119 -1.113885 0.4282948 0.2245119 -1.27456 0.4282948 0.2245119 -1.458117 0.4282948 0.2245119 -1.667858 0.4282948 0.2245119 -1.907556 0.4282948 0.2245119 -2.181521 0.4282948 0.2245119 -2.494678 0.4282948 0.2245119 -2.852659 0.4282948 0.2245119 -3.261896 0.4282948 0.2245119 -3.729748 0.4282948 0.2245119 -4.264621 0.4282948 0.2245119 -4.876131 0.4282948 0.2245119 -5.575266 0.4282948 0.2245119 -6.374593 0.4282948 0.2245119 -0 0.494694 0.2245119 -0 0.494694 0.2245119 -0 0.494694 0.2245119 -0.002268731 0.494694 0.2245119 -0.07076883 0.494694 0.2245119 -0.1119241 0.494694 0.2245119 -0.1475052 0.494694 0.2245119 -0.1846606 0.494694 0.2245119 -0.2245119 0.494694 0.2245119 -0.2679612 0.494694 0.2245119 -0.3158431 0.494694 0.2245119 -0.3689944 0.494694 0.2245119 -0.4282948 0.494694 0.2245119 -0.494694 0.494694 0.2245119 -0.5692344 0.494694 0.2245119 -0.6530715 0.494694 0.2245119 -0.7474945 0.494694 0.2245119 -0.8539475 0.494694 0.2245119 -0.974052 0.494694 0.2245119 -1.113885 0.494694 0.2245119 -1.27456 0.494694 0.2245119 -1.458117 0.494694 0.2245119 -1.667858 0.494694 0.2245119 -1.907556 0.494694 0.2245119 -2.181521 0.494694 0.2245119 -2.494678 0.494694 0.2245119 -2.852659 0.494694 0.2245119 -3.261896 0.494694 0.2245119 -3.729748 0.494694 0.2245119 -4.264621 0.494694 0.2245119 -4.876131 0.494694 0.2245119 -5.575266 0.494694 0.2245119 -6.374593 0.494694 0.2245119 -0 0.5692344 0.2245119 -0 0.5692344 0.2245119 -0 0.5692344 0.2245119 -0.002268731 0.5692344 0.2245119 -0.07076883 0.5692344 0.2245119 -0.1119241 0.5692344 0.2245119 -0.1475052 0.5692344 0.2245119 -0.1846606 0.5692344 0.2245119 -0.2245119 0.5692344 0.2245119 -0.2679612 0.5692344 0.2245119 -0.3158431 0.5692344 0.2245119 -0.3689944 0.5692344 0.2245119 -0.4282948 0.5692344 0.2245119 -0.494694 0.5692344 0.2245119 -0.5692344 0.5692344 0.2245119 -0.6530715 0.5692344 0.2245119 -0.7474945 0.5692344 0.2245119 -0.8539475 0.5692344 0.2245119 -0.974052 0.5692344 0.2245119 -1.113885 0.5692344 0.2245119 -1.27456 0.5692344 0.2245119 -1.458117 0.5692344 0.2245119 -1.667858 0.5692344 0.2245119 -1.907556 0.5692344 0.2245119 -2.181521 0.5692344 0.2245119 -2.494678 0.5692344 0.2245119 -2.852659 0.5692344 0.2245119 -3.261896 0.5692344 0.2245119 -3.729748 0.5692344 0.2245119 -4.264621 0.5692344 0.2245119 -4.876131 0.5692344 0.2245119 -5.575266 0.5692344 0.2245119 -6.374593 0.5692344 0.2245119 -0 0.6530715 0.2245119 -0 0.6530715 0.2245119 -0 0.6530715 0.2245119 -0.002268731 0.6530715 0.2245119 -0.07076883 0.6530715 0.2245119 -0.1119241 0.6530715 0.2245119 -0.1475052 0.6530715 0.2245119 -0.1846606 0.6530715 0.2245119 -0.2245119 0.6530715 0.2245119 -0.2679612 0.6530715 0.2245119 -0.3158431 0.6530715 0.2245119 -0.3689944 0.6530715 0.2245119 -0.4282948 0.6530715 0.2245119 -0.494694 0.6530715 0.2245119 -0.5692344 0.6530715 0.2245119 -0.6530715 0.6530715 0.2245119 -0.7474945 0.6530715 0.2245119 -0.8539475 0.6530715 0.2245119 -0.974052 0.6530715 0.2245119 -1.113885 0.6530715 0.2245119 -1.27456 0.6530715 0.2245119 -1.458117 0.6530715 0.2245119 -1.667858 0.6530715 0.2245119 -1.907556 0.6530715 0.2245119 -2.181521 0.6530715 0.2245119 -2.494678 0.6530715 0.2245119 -2.852659 0.6530715 0.2245119 -3.261896 0.6530715 0.2245119 -3.729748 0.6530715 0.2245119 -4.264621 0.6530715 0.2245119 -4.876131 0.6530715 0.2245119 -5.575266 0.6530715 0.2245119 -6.374593 0.6530715 0.2245119 -0 0.7474945 0.2245119 -0 0.7474945 0.2245119 -0 0.7474945 0.2245119 -0.002268731 0.7474945 0.2245119 -0.07076883 0.7474945 0.2245119 -0.1119241 0.7474945 0.2245119 -0.1475052 0.7474945 0.2245119 -0.1846606 0.7474945 0.2245119 -0.2245119 0.7474945 0.2245119 -0.2679612 0.7474945 0.2245119 -0.3158431 0.7474945 0.2245119 -0.3689944 0.7474945 0.2245119 -0.4282948 0.7474945 0.2245119 -0.494694 0.7474945 0.2245119 -0.5692344 0.7474945 0.2245119 -0.6530715 0.7474945 0.2245119 -0.7474945 0.7474945 0.2245119 -0.8539475 0.7474945 0.2245119 -0.974052 0.7474945 0.2245119 -1.113885 0.7474945 0.2245119 -1.27456 0.7474945 0.2245119 -1.458117 0.7474945 0.2245119 -1.667858 0.7474945 0.2245119 -1.907556 0.7474945 0.2245119 -2.181521 0.7474945 0.2245119 -2.494678 0.7474945 0.2245119 -2.852659 0.7474945 0.2245119 -3.261896 0.7474945 0.2245119 -3.729748 0.7474945 0.2245119 -4.264621 0.7474945 0.2245119 -4.876131 0.7474945 0.2245119 -5.575266 0.7474945 0.2245119 -6.374593 0.7474945 0.2245119 -0 0.8539475 0.2245119 -0 0.8539475 0.2245119 -0 0.8539475 0.2245119 -0.002268731 0.8539475 0.2245119 -0.07076883 0.8539475 0.2245119 -0.1119241 0.8539475 0.2245119 -0.1475052 0.8539475 0.2245119 -0.1846606 0.8539475 0.2245119 -0.2245119 0.8539475 0.2245119 -0.2679612 0.8539475 0.2245119 -0.3158431 0.8539475 0.2245119 -0.3689944 0.8539475 0.2245119 -0.4282948 0.8539475 0.2245119 -0.494694 0.8539475 0.2245119 -0.5692344 0.8539475 0.2245119 -0.6530715 0.8539475 0.2245119 -0.7474945 0.8539475 0.2245119 -0.8539475 0.8539475 0.2245119 -0.974052 0.8539475 0.2245119 -1.113885 0.8539475 0.2245119 -1.27456 0.8539475 0.2245119 -1.458117 0.8539475 0.2245119 -1.667858 0.8539475 0.2245119 -1.907556 0.8539475 0.2245119 -2.181521 0.8539475 0.2245119 -2.494678 0.8539475 0.2245119 -2.852659 0.8539475 0.2245119 -3.261896 0.8539475 0.2245119 -3.729748 0.8539475 0.2245119 -4.264621 0.8539475 0.2245119 -4.876131 0.8539475 0.2245119 -5.575266 0.8539475 0.2245119 -6.374593 0.8539475 0.2245119 -0 0.974052 0.2245119 -0 0.974052 0.2245119 -0 0.974052 0.2245119 -0.002268731 0.974052 0.2245119 -0.07076883 0.974052 0.2245119 -0.1119241 0.974052 0.2245119 -0.1475052 0.974052 0.2245119 -0.1846606 0.974052 0.2245119 -0.2245119 0.974052 0.2245119 -0.2679612 0.974052 0.2245119 -0.3158431 0.974052 0.2245119 -0.3689944 0.974052 0.2245119 -0.4282948 0.974052 0.2245119 -0.494694 0.974052 0.2245119 -0.5692344 0.974052 0.2245119 -0.6530715 0.974052 0.2245119 -0.7474945 0.974052 0.2245119 -0.8539475 0.974052 0.2245119 -0.974052 0.974052 0.2245119 -1.113885 0.974052 0.2245119 -1.27456 0.974052 0.2245119 -1.458117 0.974052 0.2245119 -1.667858 0.974052 0.2245119 -1.907556 0.974052 0.2245119 -2.181521 0.974052 0.2245119 -2.494678 0.974052 0.2245119 -2.852659 0.974052 0.2245119 -3.261896 0.974052 0.2245119 -3.729748 0.974052 0.2245119 -4.264621 0.974052 0.2245119 -4.876131 0.974052 0.2245119 -5.575266 0.974052 0.2245119 -6.374593 0.974052 0.2245119 -0 1.113885 0.2245119 -0 1.113885 0.2245119 -0 1.113885 0.2245119 -0.002268731 1.113885 0.2245119 -0.07076883 1.113885 0.2245119 -0.1119241 1.113885 0.2245119 -0.1475052 1.113885 0.2245119 -0.1846606 1.113885 0.2245119 -0.2245119 1.113885 0.2245119 -0.2679612 1.113885 0.2245119 -0.3158431 1.113885 0.2245119 -0.3689944 1.113885 0.2245119 -0.4282948 1.113885 0.2245119 -0.494694 1.113885 0.2245119 -0.5692344 1.113885 0.2245119 -0.6530715 1.113885 0.2245119 -0.7474945 1.113885 0.2245119 -0.8539475 1.113885 0.2245119 -0.974052 1.113885 0.2245119 -1.113885 1.113885 0.2245119 -1.27456 1.113885 0.2245119 -1.458117 1.113885 0.2245119 -1.667858 1.113885 0.2245119 -1.907556 1.113885 0.2245119 -2.181521 1.113885 0.2245119 -2.494678 1.113885 0.2245119 -2.852659 1.113885 0.2245119 -3.261896 1.113885 0.2245119 -3.729748 1.113885 0.2245119 -4.264621 1.113885 0.2245119 -4.876131 1.113885 0.2245119 -5.575266 1.113885 0.2245119 -6.374593 1.113885 0.2245119 -0 1.27456 0.2245119 -0 1.27456 0.2245119 -0 1.27456 0.2245119 -0.002268731 1.27456 0.2245119 -0.07076883 1.27456 0.2245119 -0.1119241 1.27456 0.2245119 -0.1475052 1.27456 0.2245119 -0.1846606 1.27456 0.2245119 -0.2245119 1.27456 0.2245119 -0.2679612 1.27456 0.2245119 -0.3158431 1.27456 0.2245119 -0.3689944 1.27456 0.2245119 -0.4282948 1.27456 0.2245119 -0.494694 1.27456 0.2245119 -0.5692344 1.27456 0.2245119 -0.6530715 1.27456 0.2245119 -0.7474945 1.27456 0.2245119 -0.8539475 1.27456 0.2245119 -0.974052 1.27456 0.2245119 -1.113885 1.27456 0.2245119 -1.27456 1.27456 0.2245119 -1.458117 1.27456 0.2245119 -1.667858 1.27456 0.2245119 -1.907556 1.27456 0.2245119 -2.181521 1.27456 0.2245119 -2.494678 1.27456 0.2245119 -2.852659 1.27456 0.2245119 -3.261896 1.27456 0.2245119 -3.729748 1.27456 0.2245119 -4.264621 1.27456 0.2245119 -4.876131 1.27456 0.2245119 -5.575266 1.27456 0.2245119 -6.374593 1.27456 0.2245119 -0 1.458117 0.2245119 -0 1.458117 0.2245119 -0 1.458117 0.2245119 -0.002268731 1.458117 0.2245119 -0.07076883 1.458117 0.2245119 -0.1119241 1.458117 0.2245119 -0.1475052 1.458117 0.2245119 -0.1846606 1.458117 0.2245119 -0.2245119 1.458117 0.2245119 -0.2679612 1.458117 0.2245119 -0.3158431 1.458117 0.2245119 -0.3689944 1.458117 0.2245119 -0.4282948 1.458117 0.2245119 -0.494694 1.458117 0.2245119 -0.5692344 1.458117 0.2245119 -0.6530715 1.458117 0.2245119 -0.7474945 1.458117 0.2245119 -0.8539475 1.458117 0.2245119 -0.974052 1.458117 0.2245119 -1.113885 1.458117 0.2245119 -1.27456 1.458117 0.2245119 -1.458117 1.458117 0.2245119 -1.667858 1.458117 0.2245119 -1.907556 1.458117 0.2245119 -2.181521 1.458117 0.2245119 -2.494678 1.458117 0.2245119 -2.852659 1.458117 0.2245119 -3.261896 1.458117 0.2245119 -3.729748 1.458117 0.2245119 -4.264621 1.458117 0.2245119 -4.876131 1.458117 0.2245119 -5.575266 1.458117 0.2245119 -6.374593 1.458117 0.2245119 -0 1.667858 0.2245119 -0 1.667858 0.2245119 -0 1.667858 0.2245119 -0.002268731 1.667858 0.2245119 -0.07076883 1.667858 0.2245119 -0.1119241 1.667858 0.2245119 -0.1475052 1.667858 0.2245119 -0.1846606 1.667858 0.2245119 -0.2245119 1.667858 0.2245119 -0.2679612 1.667858 0.2245119 -0.3158431 1.667858 0.2245119 -0.3689944 1.667858 0.2245119 -0.4282948 1.667858 0.2245119 -0.494694 1.667858 0.2245119 -0.5692344 1.667858 0.2245119 -0.6530715 1.667858 0.2245119 -0.7474945 1.667858 0.2245119 -0.8539475 1.667858 0.2245119 -0.974052 1.667858 0.2245119 -1.113885 1.667858 0.2245119 -1.27456 1.667858 0.2245119 -1.458117 1.667858 0.2245119 -1.667858 1.667858 0.2245119 -1.907556 1.667858 0.2245119 -2.181521 1.667858 0.2245119 -2.494678 1.667858 0.2245119 -2.852659 1.667858 0.2245119 -3.261896 1.667858 0.2245119 -3.729748 1.667858 0.2245119 -4.264621 1.667858 0.2245119 -4.876131 1.667858 0.2245119 -5.575266 1.667858 0.2245119 -6.374593 1.667858 0.2245119 -0 1.907556 0.2245119 -0 1.907556 0.2245119 -0 1.907556 0.2245119 -0.002268731 1.907556 0.2245119 -0.07076883 1.907556 0.2245119 -0.1119241 1.907556 0.2245119 -0.1475052 1.907556 0.2245119 -0.1846606 1.907556 0.2245119 -0.2245119 1.907556 0.2245119 -0.2679612 1.907556 0.2245119 -0.3158431 1.907556 0.2245119 -0.3689944 1.907556 0.2245119 -0.4282948 1.907556 0.2245119 -0.494694 1.907556 0.2245119 -0.5692344 1.907556 0.2245119 -0.6530715 1.907556 0.2245119 -0.7474945 1.907556 0.2245119 -0.8539475 1.907556 0.2245119 -0.974052 1.907556 0.2245119 -1.113885 1.907556 0.2245119 -1.27456 1.907556 0.2245119 -1.458117 1.907556 0.2245119 -1.667858 1.907556 0.2245119 -1.907556 1.907556 0.2245119 -2.181521 1.907556 0.2245119 -2.494678 1.907556 0.2245119 -2.852659 1.907556 0.2245119 -3.261896 1.907556 0.2245119 -3.729748 1.907556 0.2245119 -4.264621 1.907556 0.2245119 -4.876131 1.907556 0.2245119 -5.575266 1.907556 0.2245119 -6.374593 1.907556 0.2245119 -0 2.181521 0.2245119 -0 2.181521 0.2245119 -0 2.181521 0.2245119 -0.002268731 2.181521 0.2245119 -0.07076883 2.181521 0.2245119 -0.1119241 2.181521 0.2245119 -0.1475052 2.181521 0.2245119 -0.1846606 2.181521 0.2245119 -0.2245119 2.181521 0.2245119 -0.2679612 2.181521 0.2245119 -0.3158431 2.181521 0.2245119 -0.3689944 2.181521 0.2245119 -0.4282948 2.181521 0.2245119 -0.494694 2.181521 0.2245119 -0.5692344 2.181521 0.2245119 -0.6530715 2.181521 0.2245119 -0.7474945 2.181521 0.2245119 -0.8539475 2.181521 0.2245119 -0.974052 2.181521 0.2245119 -1.113885 2.181521 0.2245119 -1.27456 2.181521 0.2245119 -1.458117 2.181521 0.2245119 -1.667858 2.181521 0.2245119 -1.907556 2.181521 0.2245119 -2.181521 2.181521 0.2245119 -2.494678 2.181521 0.2245119 -2.852659 2.181521 0.2245119 -3.261896 2.181521 0.2245119 -3.729748 2.181521 0.2245119 -4.264621 2.181521 0.2245119 -4.876131 2.181521 0.2245119 -5.575266 2.181521 0.2245119 -6.374593 2.181521 0.2245119 -0 2.494678 0.2245119 -0 2.494678 0.2245119 -0 2.494678 0.2245119 -0.002268731 2.494678 0.2245119 -0.07076883 2.494678 0.2245119 -0.1119241 2.494678 0.2245119 -0.1475052 2.494678 0.2245119 -0.1846606 2.494678 0.2245119 -0.2245119 2.494678 0.2245119 -0.2679612 2.494678 0.2245119 -0.3158431 2.494678 0.2245119 -0.3689944 2.494678 0.2245119 -0.4282948 2.494678 0.2245119 -0.494694 2.494678 0.2245119 -0.5692344 2.494678 0.2245119 -0.6530715 2.494678 0.2245119 -0.7474945 2.494678 0.2245119 -0.8539475 2.494678 0.2245119 -0.974052 2.494678 0.2245119 -1.113885 2.494678 0.2245119 -1.27456 2.494678 0.2245119 -1.458117 2.494678 0.2245119 -1.667858 2.494678 0.2245119 -1.907556 2.494678 0.2245119 -2.181521 2.494678 0.2245119 -2.494678 2.494678 0.2245119 -2.852659 2.494678 0.2245119 -3.261896 2.494678 0.2245119 -3.729748 2.494678 0.2245119 -4.264621 2.494678 0.2245119 -4.876131 2.494678 0.2245119 -5.575266 2.494678 0.2245119 -6.374593 2.494678 0.2245119 -0 2.852659 0.2245119 -0 2.852659 0.2245119 -0 2.852659 0.2245119 -0.002268731 2.852659 0.2245119 -0.07076883 2.852659 0.2245119 -0.1119241 2.852659 0.2245119 -0.1475052 2.852659 0.2245119 -0.1846606 2.852659 0.2245119 -0.2245119 2.852659 0.2245119 -0.2679612 2.852659 0.2245119 -0.3158431 2.852659 0.2245119 -0.3689944 2.852659 0.2245119 -0.4282948 2.852659 0.2245119 -0.494694 2.852659 0.2245119 -0.5692344 2.852659 0.2245119 -0.6530715 2.852659 0.2245119 -0.7474945 2.852659 0.2245119 -0.8539475 2.852659 0.2245119 -0.974052 2.852659 0.2245119 -1.113885 2.852659 0.2245119 -1.27456 2.852659 0.2245119 -1.458117 2.852659 0.2245119 -1.667858 2.852659 0.2245119 -1.907556 2.852659 0.2245119 -2.181521 2.852659 0.2245119 -2.494678 2.852659 0.2245119 -2.852659 2.852659 0.2245119 -3.261896 2.852659 0.2245119 -3.729748 2.852659 0.2245119 -4.264621 2.852659 0.2245119 -4.876131 2.852659 0.2245119 -5.575266 2.852659 0.2245119 -6.374593 2.852659 0.2245119 -0 3.261896 0.2245119 -0 3.261896 0.2245119 -0 3.261896 0.2245119 -0.002268731 3.261896 0.2245119 -0.07076883 3.261896 0.2245119 -0.1119241 3.261896 0.2245119 -0.1475052 3.261896 0.2245119 -0.1846606 3.261896 0.2245119 -0.2245119 3.261896 0.2245119 -0.2679612 3.261896 0.2245119 -0.3158431 3.261896 0.2245119 -0.3689944 3.261896 0.2245119 -0.4282948 3.261896 0.2245119 -0.494694 3.261896 0.2245119 -0.5692344 3.261896 0.2245119 -0.6530715 3.261896 0.2245119 -0.7474945 3.261896 0.2245119 -0.8539475 3.261896 0.2245119 -0.974052 3.261896 0.2245119 -1.113885 3.261896 0.2245119 -1.27456 3.261896 0.2245119 -1.458117 3.261896 0.2245119 -1.667858 3.261896 0.2245119 -1.907556 3.261896 0.2245119 -2.181521 3.261896 0.2245119 -2.494678 3.261896 0.2245119 -2.852659 3.261896 0.2245119 -3.261896 3.261896 0.2245119 -3.729748 3.261896 0.2245119 -4.264621 3.261896 0.2245119 -4.876131 3.261896 0.2245119 -5.575266 3.261896 0.2245119 -6.374593 3.261896 0.2245119 -0 3.729748 0.2245119 -0 3.729748 0.2245119 -0 3.729748 0.2245119 -0.002268731 3.729748 0.2245119 -0.07076883 3.729748 0.2245119 -0.1119241 3.729748 0.2245119 -0.1475052 3.729748 0.2245119 -0.1846606 3.729748 0.2245119 -0.2245119 3.729748 0.2245119 -0.2679612 3.729748 0.2245119 -0.3158431 3.729748 0.2245119 -0.3689944 3.729748 0.2245119 -0.4282948 3.729748 0.2245119 -0.494694 3.729748 0.2245119 -0.5692344 3.729748 0.2245119 -0.6530715 3.729748 0.2245119 -0.7474945 3.729748 0.2245119 -0.8539475 3.729748 0.2245119 -0.974052 3.729748 0.2245119 -1.113885 3.729748 0.2245119 -1.27456 3.729748 0.2245119 -1.458117 3.729748 0.2245119 -1.667858 3.729748 0.2245119 -1.907556 3.729748 0.2245119 -2.181521 3.729748 0.2245119 -2.494678 3.729748 0.2245119 -2.852659 3.729748 0.2245119 -3.261896 3.729748 0.2245119 -3.729748 3.729748 0.2245119 -4.264621 3.729748 0.2245119 -4.876131 3.729748 0.2245119 -5.575266 3.729748 0.2245119 -6.374593 3.729748 0.2245119 -0 4.264621 0.2245119 -0 4.264621 0.2245119 -0 4.264621 0.2245119 -0.002268731 4.264621 0.2245119 -0.07076883 4.264621 0.2245119 -0.1119241 4.264621 0.2245119 -0.1475052 4.264621 0.2245119 -0.1846606 4.264621 0.2245119 -0.2245119 4.264621 0.2245119 -0.2679612 4.264621 0.2245119 -0.3158431 4.264621 0.2245119 -0.3689944 4.264621 0.2245119 -0.4282948 4.264621 0.2245119 -0.494694 4.264621 0.2245119 -0.5692344 4.264621 0.2245119 -0.6530715 4.264621 0.2245119 -0.7474945 4.264621 0.2245119 -0.8539475 4.264621 0.2245119 -0.974052 4.264621 0.2245119 -1.113885 4.264621 0.2245119 -1.27456 4.264621 0.2245119 -1.458117 4.264621 0.2245119 -1.667858 4.264621 0.2245119 -1.907556 4.264621 0.2245119 -2.181521 4.264621 0.2245119 -2.494678 4.264621 0.2245119 -2.852659 4.264621 0.2245119 -3.261896 4.264621 0.2245119 -3.729748 4.264621 0.2245119 -4.264621 4.264621 0.2245119 -4.876131 4.264621 0.2245119 -5.575266 4.264621 0.2245119 -6.374593 4.264621 0.2245119 -0 4.876131 0.2245119 -0 4.876131 0.2245119 -0 4.876131 0.2245119 -0.002268731 4.876131 0.2245119 -0.07076883 4.876131 0.2245119 -0.1119241 4.876131 0.2245119 -0.1475052 4.876131 0.2245119 -0.1846606 4.876131 0.2245119 -0.2245119 4.876131 0.2245119 -0.2679612 4.876131 0.2245119 -0.3158431 4.876131 0.2245119 -0.3689944 4.876131 0.2245119 -0.4282948 4.876131 0.2245119 -0.494694 4.876131 0.2245119 -0.5692344 4.876131 0.2245119 -0.6530715 4.876131 0.2245119 -0.7474945 4.876131 0.2245119 -0.8539475 4.876131 0.2245119 -0.974052 4.876131 0.2245119 -1.113885 4.876131 0.2245119 -1.27456 4.876131 0.2245119 -1.458117 4.876131 0.2245119 -1.667858 4.876131 0.2245119 -1.907556 4.876131 0.2245119 -2.181521 4.876131 0.2245119 -2.494678 4.876131 0.2245119 -2.852659 4.876131 0.2245119 -3.261896 4.876131 0.2245119 -3.729748 4.876131 0.2245119 -4.264621 4.876131 0.2245119 -4.876131 4.876131 0.2245119 -5.575266 4.876131 0.2245119 -6.374593 4.876131 0.2245119 -0 5.575266 0.2245119 -0 5.575266 0.2245119 -0 5.575266 0.2245119 -0.002268731 5.575266 0.2245119 -0.07076883 5.575266 0.2245119 -0.1119241 5.575266 0.2245119 -0.1475052 5.575266 0.2245119 -0.1846606 5.575266 0.2245119 -0.2245119 5.575266 0.2245119 -0.2679612 5.575266 0.2245119 -0.3158431 5.575266 0.2245119 -0.3689944 5.575266 0.2245119 -0.4282948 5.575266 0.2245119 -0.494694 5.575266 0.2245119 -0.5692344 5.575266 0.2245119 -0.6530715 5.575266 0.2245119 -0.7474945 5.575266 0.2245119 -0.8539475 5.575266 0.2245119 -0.974052 5.575266 0.2245119 -1.113885 5.575266 0.2245119 -1.27456 5.575266 0.2245119 -1.458117 5.575266 0.2245119 -1.667858 5.575266 0.2245119 -1.907556 5.575266 0.2245119 -2.181521 5.575266 0.2245119 -2.494678 5.575266 0.2245119 -2.852659 5.575266 0.2245119 -3.261896 5.575266 0.2245119 -3.729748 5.575266 0.2245119 -4.264621 5.575266 0.2245119 -4.876131 5.575266 0.2245119 -5.575266 5.575266 0.2245119 -6.374593 5.575266 0.2245119 -0 6.374593 0.2245119 -0 6.374593 0.2245119 -0 6.374593 0.2245119 -0.002268731 6.374593 0.2245119 -0.07076883 6.374593 0.2245119 -0.1119241 6.374593 0.2245119 -0.1475052 6.374593 0.2245119 -0.1846606 6.374593 0.2245119 -0.2245119 6.374593 0.2245119 -0.2679612 6.374593 0.2245119 -0.3158431 6.374593 0.2245119 -0.3689944 6.374593 0.2245119 -0.4282948 6.374593 0.2245119 -0.494694 6.374593 0.2245119 -0.5692344 6.374593 0.2245119 -0.6530715 6.374593 0.2245119 -0.7474945 6.374593 0.2245119 -0.8539475 6.374593 0.2245119 -0.974052 6.374593 0.2245119 -1.113885 6.374593 0.2245119 -1.27456 6.374593 0.2245119 -1.458117 6.374593 0.2245119 -1.667858 6.374593 0.2245119 -1.907556 6.374593 0.2245119 -2.181521 6.374593 0.2245119 -2.494678 6.374593 0.2245119 -2.852659 6.374593 0.2245119 -3.261896 6.374593 0.2245119 -3.729748 6.374593 0.2245119 -4.264621 6.374593 0.2245119 -4.876131 6.374593 0.2245119 -5.575266 6.374593 0.2245119 -6.374593 6.374593 0.2245119 -0 0 0.2679612 -0 0 0.2679612 -0 0 0.2679612 -0.002268731 0 0.2679612 -0.07076883 0 0.2679612 -0.1119241 0 0.2679612 -0.1475052 0 0.2679612 -0.1846606 0 0.2679612 -0.2245119 0 0.2679612 -0.2679612 0 0.2679612 -0.3158431 0 0.2679612 -0.3689944 0 0.2679612 -0.4282948 0 0.2679612 -0.494694 0 0.2679612 -0.5692344 0 0.2679612 -0.6530715 0 0.2679612 -0.7474945 0 0.2679612 -0.8539475 0 0.2679612 -0.974052 0 0.2679612 -1.113885 0 0.2679612 -1.27456 0 0.2679612 -1.458117 0 0.2679612 -1.667858 0 0.2679612 -1.907556 0 0.2679612 -2.181521 0 0.2679612 -2.494678 0 0.2679612 -2.852659 0 0.2679612 -3.261896 0 0.2679612 -3.729748 0 0.2679612 -4.264621 0 0.2679612 -4.876131 0 0.2679612 -5.575266 0 0.2679612 -6.374593 0 0.2679612 -0 0 0.2679612 -0 0 0.2679612 -0 0 0.2679612 -0.002268731 0 0.2679612 -0.07076883 0 0.2679612 -0.1119241 0 0.2679612 -0.1475052 0 0.2679612 -0.1846606 0 0.2679612 -0.2245119 0 0.2679612 -0.2679612 0 0.2679612 -0.3158431 0 0.2679612 -0.3689944 0 0.2679612 -0.4282948 0 0.2679612 -0.494694 0 0.2679612 -0.5692344 0 0.2679612 -0.6530715 0 0.2679612 -0.7474945 0 0.2679612 -0.8539475 0 0.2679612 -0.974052 0 0.2679612 -1.113885 0 0.2679612 -1.27456 0 0.2679612 -1.458117 0 0.2679612 -1.667858 0 0.2679612 -1.907556 0 0.2679612 -2.181521 0 0.2679612 -2.494678 0 0.2679612 -2.852659 0 0.2679612 -3.261896 0 0.2679612 -3.729748 0 0.2679612 -4.264621 0 0.2679612 -4.876131 0 0.2679612 -5.575266 0 0.2679612 -6.374593 0 0.2679612 -0 0 0.2679612 -0 0 0.2679612 -0 0 0.2679612 -0.002268731 0 0.2679612 -0.07076883 0 0.2679612 -0.1119241 0 0.2679612 -0.1475052 0 0.2679612 -0.1846606 0 0.2679612 -0.2245119 0 0.2679612 -0.2679612 0 0.2679612 -0.3158431 0 0.2679612 -0.3689944 0 0.2679612 -0.4282948 0 0.2679612 -0.494694 0 0.2679612 -0.5692344 0 0.2679612 -0.6530715 0 0.2679612 -0.7474945 0 0.2679612 -0.8539475 0 0.2679612 -0.974052 0 0.2679612 -1.113885 0 0.2679612 -1.27456 0 0.2679612 -1.458117 0 0.2679612 -1.667858 0 0.2679612 -1.907556 0 0.2679612 -2.181521 0 0.2679612 -2.494678 0 0.2679612 -2.852659 0 0.2679612 -3.261896 0 0.2679612 -3.729748 0 0.2679612 -4.264621 0 0.2679612 -4.876131 0 0.2679612 -5.575266 0 0.2679612 -6.374593 0 0.2679612 -0 0.002268731 0.2679612 -0 0.002268731 0.2679612 -0 0.002268731 0.2679612 -0.002268731 0.002268731 0.2679612 -0.07076883 0.002268731 0.2679612 -0.1119241 0.002268731 0.2679612 -0.1475052 0.002268731 0.2679612 -0.1846606 0.002268731 0.2679612 -0.2245119 0.002268731 0.2679612 -0.2679612 0.002268731 0.2679612 -0.3158431 0.002268731 0.2679612 -0.3689944 0.002268731 0.2679612 -0.4282948 0.002268731 0.2679612 -0.494694 0.002268731 0.2679612 -0.5692344 0.002268731 0.2679612 -0.6530715 0.002268731 0.2679612 -0.7474945 0.002268731 0.2679612 -0.8539475 0.002268731 0.2679612 -0.974052 0.002268731 0.2679612 -1.113885 0.002268731 0.2679612 -1.27456 0.002268731 0.2679612 -1.458117 0.002268731 0.2679612 -1.667858 0.002268731 0.2679612 -1.907556 0.002268731 0.2679612 -2.181521 0.002268731 0.2679612 -2.494678 0.002268731 0.2679612 -2.852659 0.002268731 0.2679612 -3.261896 0.002268731 0.2679612 -3.729748 0.002268731 0.2679612 -4.264621 0.002268731 0.2679612 -4.876131 0.002268731 0.2679612 -5.575266 0.002268731 0.2679612 -6.374593 0.002268731 0.2679612 -0 0.07076883 0.2679612 -0 0.07076883 0.2679612 -0 0.07076883 0.2679612 -0.002268731 0.07076883 0.2679612 -0.07076883 0.07076883 0.2679612 -0.1119241 0.07076883 0.2679612 -0.1475052 0.07076883 0.2679612 -0.1846606 0.07076883 0.2679612 -0.2245119 0.07076883 0.2679612 -0.2679612 0.07076883 0.2679612 -0.3158431 0.07076883 0.2679612 -0.3689944 0.07076883 0.2679612 -0.4282948 0.07076883 0.2679612 -0.494694 0.07076883 0.2679612 -0.5692344 0.07076883 0.2679612 -0.6530715 0.07076883 0.2679612 -0.7474945 0.07076883 0.2679612 -0.8539475 0.07076883 0.2679612 -0.974052 0.07076883 0.2679612 -1.113885 0.07076883 0.2679612 -1.27456 0.07076883 0.2679612 -1.458117 0.07076883 0.2679612 -1.667858 0.07076883 0.2679612 -1.907556 0.07076883 0.2679612 -2.181521 0.07076883 0.2679612 -2.494678 0.07076883 0.2679612 -2.852659 0.07076883 0.2679612 -3.261896 0.07076883 0.2679612 -3.729748 0.07076883 0.2679612 -4.264621 0.07076883 0.2679612 -4.876131 0.07076883 0.2679612 -5.575266 0.07076883 0.2679612 -6.374593 0.07076883 0.2679612 -0 0.1119241 0.2679612 -0 0.1119241 0.2679612 -0 0.1119241 0.2679612 -0.002268731 0.1119241 0.2679612 -0.07076883 0.1119241 0.2679612 -0.1119241 0.1119241 0.2679612 -0.1475052 0.1119241 0.2679612 -0.1846606 0.1119241 0.2679612 -0.2245119 0.1119241 0.2679612 -0.2679612 0.1119241 0.2679612 -0.3158431 0.1119241 0.2679612 -0.3689944 0.1119241 0.2679612 -0.4282948 0.1119241 0.2679612 -0.494694 0.1119241 0.2679612 -0.5692344 0.1119241 0.2679612 -0.6530715 0.1119241 0.2679612 -0.7474945 0.1119241 0.2679612 -0.8539475 0.1119241 0.2679612 -0.974052 0.1119241 0.2679612 -1.113885 0.1119241 0.2679612 -1.27456 0.1119241 0.2679612 -1.458117 0.1119241 0.2679612 -1.667858 0.1119241 0.2679612 -1.907556 0.1119241 0.2679612 -2.181521 0.1119241 0.2679612 -2.494678 0.1119241 0.2679612 -2.852659 0.1119241 0.2679612 -3.261896 0.1119241 0.2679612 -3.729748 0.1119241 0.2679612 -4.264621 0.1119241 0.2679612 -4.876131 0.1119241 0.2679612 -5.575266 0.1119241 0.2679612 -6.374593 0.1119241 0.2679612 -0 0.1475052 0.2679612 -0 0.1475052 0.2679612 -0 0.1475052 0.2679612 -0.002268731 0.1475052 0.2679612 -0.07076883 0.1475052 0.2679612 -0.1119241 0.1475052 0.2679612 -0.1475052 0.1475052 0.2679612 -0.1846606 0.1475052 0.2679612 -0.2245119 0.1475052 0.2679612 -0.2679612 0.1475052 0.2679612 -0.3158431 0.1475052 0.2679612 -0.3689944 0.1475052 0.2679612 -0.4282948 0.1475052 0.2679612 -0.494694 0.1475052 0.2679612 -0.5692344 0.1475052 0.2679612 -0.6530715 0.1475052 0.2679612 -0.7474945 0.1475052 0.2679612 -0.8539475 0.1475052 0.2679612 -0.974052 0.1475052 0.2679612 -1.113885 0.1475052 0.2679612 -1.27456 0.1475052 0.2679612 -1.458117 0.1475052 0.2679612 -1.667858 0.1475052 0.2679612 -1.907556 0.1475052 0.2679612 -2.181521 0.1475052 0.2679612 -2.494678 0.1475052 0.2679612 -2.852659 0.1475052 0.2679612 -3.261896 0.1475052 0.2679612 -3.729748 0.1475052 0.2679612 -4.264621 0.1475052 0.2679612 -4.876131 0.1475052 0.2679612 -5.575266 0.1475052 0.2679612 -6.374593 0.1475052 0.2679612 -0 0.1846606 0.2679612 -0 0.1846606 0.2679612 -0 0.1846606 0.2679612 -0.002268731 0.1846606 0.2679612 -0.07076883 0.1846606 0.2679612 -0.1119241 0.1846606 0.2679612 -0.1475052 0.1846606 0.2679612 -0.1846606 0.1846606 0.2679612 -0.2245119 0.1846606 0.2679612 -0.2679612 0.1846606 0.2679612 -0.3158431 0.1846606 0.2679612 -0.3689944 0.1846606 0.2679612 -0.4282948 0.1846606 0.2679612 -0.494694 0.1846606 0.2679612 -0.5692344 0.1846606 0.2679612 -0.6530715 0.1846606 0.2679612 -0.7474945 0.1846606 0.2679612 -0.8539475 0.1846606 0.2679612 -0.974052 0.1846606 0.2679612 -1.113885 0.1846606 0.2679612 -1.27456 0.1846606 0.2679612 -1.458117 0.1846606 0.2679612 -1.667858 0.1846606 0.2679612 -1.907556 0.1846606 0.2679612 -2.181521 0.1846606 0.2679612 -2.494678 0.1846606 0.2679612 -2.852659 0.1846606 0.2679612 -3.261896 0.1846606 0.2679612 -3.729748 0.1846606 0.2679612 -4.264621 0.1846606 0.2679612 -4.876131 0.1846606 0.2679612 -5.575266 0.1846606 0.2679612 -6.374593 0.1846606 0.2679612 -0 0.2245119 0.2679612 -0 0.2245119 0.2679612 -0 0.2245119 0.2679612 -0.002268731 0.2245119 0.2679612 -0.07076883 0.2245119 0.2679612 -0.1119241 0.2245119 0.2679612 -0.1475052 0.2245119 0.2679612 -0.1846606 0.2245119 0.2679612 -0.2245119 0.2245119 0.2679612 -0.2679612 0.2245119 0.2679612 -0.3158431 0.2245119 0.2679612 -0.3689944 0.2245119 0.2679612 -0.4282948 0.2245119 0.2679612 -0.494694 0.2245119 0.2679612 -0.5692344 0.2245119 0.2679612 -0.6530715 0.2245119 0.2679612 -0.7474945 0.2245119 0.2679612 -0.8539475 0.2245119 0.2679612 -0.974052 0.2245119 0.2679612 -1.113885 0.2245119 0.2679612 -1.27456 0.2245119 0.2679612 -1.458117 0.2245119 0.2679612 -1.667858 0.2245119 0.2679612 -1.907556 0.2245119 0.2679612 -2.181521 0.2245119 0.2679612 -2.494678 0.2245119 0.2679612 -2.852659 0.2245119 0.2679612 -3.261896 0.2245119 0.2679612 -3.729748 0.2245119 0.2679612 -4.264621 0.2245119 0.2679612 -4.876131 0.2245119 0.2679612 -5.575266 0.2245119 0.2679612 -6.374593 0.2245119 0.2679612 -0 0.2679612 0.2679612 -0 0.2679612 0.2679612 -0 0.2679612 0.2679612 -0.002268731 0.2679612 0.2679612 -0.07076883 0.2679612 0.2679612 -0.1119241 0.2679612 0.2679612 -0.1475052 0.2679612 0.2679612 -0.1846606 0.2679612 0.2679612 -0.2245119 0.2679612 0.2679612 -0.2679612 0.2679612 0.2679612 -0.3158431 0.2679612 0.2679612 -0.3689944 0.2679612 0.2679612 -0.4282948 0.2679612 0.2679612 -0.494694 0.2679612 0.2679612 -0.5692344 0.2679612 0.2679612 -0.6530715 0.2679612 0.2679612 -0.7474945 0.2679612 0.2679612 -0.8539475 0.2679612 0.2679612 -0.974052 0.2679612 0.2679612 -1.113885 0.2679612 0.2679612 -1.27456 0.2679612 0.2679612 -1.458117 0.2679612 0.2679612 -1.667858 0.2679612 0.2679612 -1.907556 0.2679612 0.2679612 -2.181521 0.2679612 0.2679612 -2.494678 0.2679612 0.2679612 -2.852659 0.2679612 0.2679612 -3.261896 0.2679612 0.2679612 -3.729748 0.2679612 0.2679612 -4.264621 0.2679612 0.2679612 -4.876131 0.2679612 0.2679612 -5.575266 0.2679612 0.2679612 -6.374593 0.2679612 0.2679612 -0 0.3158431 0.2679612 -0 0.3158431 0.2679612 -0 0.3158431 0.2679612 -0.002268731 0.3158431 0.2679612 -0.07076883 0.3158431 0.2679612 -0.1119241 0.3158431 0.2679612 -0.1475052 0.3158431 0.2679612 -0.1846606 0.3158431 0.2679612 -0.2245119 0.3158431 0.2679612 -0.2679612 0.3158431 0.2679612 -0.3158431 0.3158431 0.2679612 -0.3689944 0.3158431 0.2679612 -0.4282948 0.3158431 0.2679612 -0.494694 0.3158431 0.2679612 -0.5692344 0.3158431 0.2679612 -0.6530715 0.3158431 0.2679612 -0.7474945 0.3158431 0.2679612 -0.8539475 0.3158431 0.2679612 -0.974052 0.3158431 0.2679612 -1.113885 0.3158431 0.2679612 -1.27456 0.3158431 0.2679612 -1.458117 0.3158431 0.2679612 -1.667858 0.3158431 0.2679612 -1.907556 0.3158431 0.2679612 -2.181521 0.3158431 0.2679612 -2.494678 0.3158431 0.2679612 -2.852659 0.3158431 0.2679612 -3.261896 0.3158431 0.2679612 -3.729748 0.3158431 0.2679612 -4.264621 0.3158431 0.2679612 -4.876131 0.3158431 0.2679612 -5.575266 0.3158431 0.2679612 -6.374593 0.3158431 0.2679612 -0 0.3689944 0.2679612 -0 0.3689944 0.2679612 -0 0.3689944 0.2679612 -0.002268731 0.3689944 0.2679612 -0.07076883 0.3689944 0.2679612 -0.1119241 0.3689944 0.2679612 -0.1475052 0.3689944 0.2679612 -0.1846606 0.3689944 0.2679612 -0.2245119 0.3689944 0.2679612 -0.2679612 0.3689944 0.2679612 -0.3158431 0.3689944 0.2679612 -0.3689944 0.3689944 0.2679612 -0.4282948 0.3689944 0.2679612 -0.494694 0.3689944 0.2679612 -0.5692344 0.3689944 0.2679612 -0.6530715 0.3689944 0.2679612 -0.7474945 0.3689944 0.2679612 -0.8539475 0.3689944 0.2679612 -0.974052 0.3689944 0.2679612 -1.113885 0.3689944 0.2679612 -1.27456 0.3689944 0.2679612 -1.458117 0.3689944 0.2679612 -1.667858 0.3689944 0.2679612 -1.907556 0.3689944 0.2679612 -2.181521 0.3689944 0.2679612 -2.494678 0.3689944 0.2679612 -2.852659 0.3689944 0.2679612 -3.261896 0.3689944 0.2679612 -3.729748 0.3689944 0.2679612 -4.264621 0.3689944 0.2679612 -4.876131 0.3689944 0.2679612 -5.575266 0.3689944 0.2679612 -6.374593 0.3689944 0.2679612 -0 0.4282948 0.2679612 -0 0.4282948 0.2679612 -0 0.4282948 0.2679612 -0.002268731 0.4282948 0.2679612 -0.07076883 0.4282948 0.2679612 -0.1119241 0.4282948 0.2679612 -0.1475052 0.4282948 0.2679612 -0.1846606 0.4282948 0.2679612 -0.2245119 0.4282948 0.2679612 -0.2679612 0.4282948 0.2679612 -0.3158431 0.4282948 0.2679612 -0.3689944 0.4282948 0.2679612 -0.4282948 0.4282948 0.2679612 -0.494694 0.4282948 0.2679612 -0.5692344 0.4282948 0.2679612 -0.6530715 0.4282948 0.2679612 -0.7474945 0.4282948 0.2679612 -0.8539475 0.4282948 0.2679612 -0.974052 0.4282948 0.2679612 -1.113885 0.4282948 0.2679612 -1.27456 0.4282948 0.2679612 -1.458117 0.4282948 0.2679612 -1.667858 0.4282948 0.2679612 -1.907556 0.4282948 0.2679612 -2.181521 0.4282948 0.2679612 -2.494678 0.4282948 0.2679612 -2.852659 0.4282948 0.2679612 -3.261896 0.4282948 0.2679612 -3.729748 0.4282948 0.2679612 -4.264621 0.4282948 0.2679612 -4.876131 0.4282948 0.2679612 -5.575266 0.4282948 0.2679612 -6.374593 0.4282948 0.2679612 -0 0.494694 0.2679612 -0 0.494694 0.2679612 -0 0.494694 0.2679612 -0.002268731 0.494694 0.2679612 -0.07076883 0.494694 0.2679612 -0.1119241 0.494694 0.2679612 -0.1475052 0.494694 0.2679612 -0.1846606 0.494694 0.2679612 -0.2245119 0.494694 0.2679612 -0.2679612 0.494694 0.2679612 -0.3158431 0.494694 0.2679612 -0.3689944 0.494694 0.2679612 -0.4282948 0.494694 0.2679612 -0.494694 0.494694 0.2679612 -0.5692344 0.494694 0.2679612 -0.6530715 0.494694 0.2679612 -0.7474945 0.494694 0.2679612 -0.8539475 0.494694 0.2679612 -0.974052 0.494694 0.2679612 -1.113885 0.494694 0.2679612 -1.27456 0.494694 0.2679612 -1.458117 0.494694 0.2679612 -1.667858 0.494694 0.2679612 -1.907556 0.494694 0.2679612 -2.181521 0.494694 0.2679612 -2.494678 0.494694 0.2679612 -2.852659 0.494694 0.2679612 -3.261896 0.494694 0.2679612 -3.729748 0.494694 0.2679612 -4.264621 0.494694 0.2679612 -4.876131 0.494694 0.2679612 -5.575266 0.494694 0.2679612 -6.374593 0.494694 0.2679612 -0 0.5692344 0.2679612 -0 0.5692344 0.2679612 -0 0.5692344 0.2679612 -0.002268731 0.5692344 0.2679612 -0.07076883 0.5692344 0.2679612 -0.1119241 0.5692344 0.2679612 -0.1475052 0.5692344 0.2679612 -0.1846606 0.5692344 0.2679612 -0.2245119 0.5692344 0.2679612 -0.2679612 0.5692344 0.2679612 -0.3158431 0.5692344 0.2679612 -0.3689944 0.5692344 0.2679612 -0.4282948 0.5692344 0.2679612 -0.494694 0.5692344 0.2679612 -0.5692344 0.5692344 0.2679612 -0.6530715 0.5692344 0.2679612 -0.7474945 0.5692344 0.2679612 -0.8539475 0.5692344 0.2679612 -0.974052 0.5692344 0.2679612 -1.113885 0.5692344 0.2679612 -1.27456 0.5692344 0.2679612 -1.458117 0.5692344 0.2679612 -1.667858 0.5692344 0.2679612 -1.907556 0.5692344 0.2679612 -2.181521 0.5692344 0.2679612 -2.494678 0.5692344 0.2679612 -2.852659 0.5692344 0.2679612 -3.261896 0.5692344 0.2679612 -3.729748 0.5692344 0.2679612 -4.264621 0.5692344 0.2679612 -4.876131 0.5692344 0.2679612 -5.575266 0.5692344 0.2679612 -6.374593 0.5692344 0.2679612 -0 0.6530715 0.2679612 -0 0.6530715 0.2679612 -0 0.6530715 0.2679612 -0.002268731 0.6530715 0.2679612 -0.07076883 0.6530715 0.2679612 -0.1119241 0.6530715 0.2679612 -0.1475052 0.6530715 0.2679612 -0.1846606 0.6530715 0.2679612 -0.2245119 0.6530715 0.2679612 -0.2679612 0.6530715 0.2679612 -0.3158431 0.6530715 0.2679612 -0.3689944 0.6530715 0.2679612 -0.4282948 0.6530715 0.2679612 -0.494694 0.6530715 0.2679612 -0.5692344 0.6530715 0.2679612 -0.6530715 0.6530715 0.2679612 -0.7474945 0.6530715 0.2679612 -0.8539475 0.6530715 0.2679612 -0.974052 0.6530715 0.2679612 -1.113885 0.6530715 0.2679612 -1.27456 0.6530715 0.2679612 -1.458117 0.6530715 0.2679612 -1.667858 0.6530715 0.2679612 -1.907556 0.6530715 0.2679612 -2.181521 0.6530715 0.2679612 -2.494678 0.6530715 0.2679612 -2.852659 0.6530715 0.2679612 -3.261896 0.6530715 0.2679612 -3.729748 0.6530715 0.2679612 -4.264621 0.6530715 0.2679612 -4.876131 0.6530715 0.2679612 -5.575266 0.6530715 0.2679612 -6.374593 0.6530715 0.2679612 -0 0.7474945 0.2679612 -0 0.7474945 0.2679612 -0 0.7474945 0.2679612 -0.002268731 0.7474945 0.2679612 -0.07076883 0.7474945 0.2679612 -0.1119241 0.7474945 0.2679612 -0.1475052 0.7474945 0.2679612 -0.1846606 0.7474945 0.2679612 -0.2245119 0.7474945 0.2679612 -0.2679612 0.7474945 0.2679612 -0.3158431 0.7474945 0.2679612 -0.3689944 0.7474945 0.2679612 -0.4282948 0.7474945 0.2679612 -0.494694 0.7474945 0.2679612 -0.5692344 0.7474945 0.2679612 -0.6530715 0.7474945 0.2679612 -0.7474945 0.7474945 0.2679612 -0.8539475 0.7474945 0.2679612 -0.974052 0.7474945 0.2679612 -1.113885 0.7474945 0.2679612 -1.27456 0.7474945 0.2679612 -1.458117 0.7474945 0.2679612 -1.667858 0.7474945 0.2679612 -1.907556 0.7474945 0.2679612 -2.181521 0.7474945 0.2679612 -2.494678 0.7474945 0.2679612 -2.852659 0.7474945 0.2679612 -3.261896 0.7474945 0.2679612 -3.729748 0.7474945 0.2679612 -4.264621 0.7474945 0.2679612 -4.876131 0.7474945 0.2679612 -5.575266 0.7474945 0.2679612 -6.374593 0.7474945 0.2679612 -0 0.8539475 0.2679612 -0 0.8539475 0.2679612 -0 0.8539475 0.2679612 -0.002268731 0.8539475 0.2679612 -0.07076883 0.8539475 0.2679612 -0.1119241 0.8539475 0.2679612 -0.1475052 0.8539475 0.2679612 -0.1846606 0.8539475 0.2679612 -0.2245119 0.8539475 0.2679612 -0.2679612 0.8539475 0.2679612 -0.3158431 0.8539475 0.2679612 -0.3689944 0.8539475 0.2679612 -0.4282948 0.8539475 0.2679612 -0.494694 0.8539475 0.2679612 -0.5692344 0.8539475 0.2679612 -0.6530715 0.8539475 0.2679612 -0.7474945 0.8539475 0.2679612 -0.8539475 0.8539475 0.2679612 -0.974052 0.8539475 0.2679612 -1.113885 0.8539475 0.2679612 -1.27456 0.8539475 0.2679612 -1.458117 0.8539475 0.2679612 -1.667858 0.8539475 0.2679612 -1.907556 0.8539475 0.2679612 -2.181521 0.8539475 0.2679612 -2.494678 0.8539475 0.2679612 -2.852659 0.8539475 0.2679612 -3.261896 0.8539475 0.2679612 -3.729748 0.8539475 0.2679612 -4.264621 0.8539475 0.2679612 -4.876131 0.8539475 0.2679612 -5.575266 0.8539475 0.2679612 -6.374593 0.8539475 0.2679612 -0 0.974052 0.2679612 -0 0.974052 0.2679612 -0 0.974052 0.2679612 -0.002268731 0.974052 0.2679612 -0.07076883 0.974052 0.2679612 -0.1119241 0.974052 0.2679612 -0.1475052 0.974052 0.2679612 -0.1846606 0.974052 0.2679612 -0.2245119 0.974052 0.2679612 -0.2679612 0.974052 0.2679612 -0.3158431 0.974052 0.2679612 -0.3689944 0.974052 0.2679612 -0.4282948 0.974052 0.2679612 -0.494694 0.974052 0.2679612 -0.5692344 0.974052 0.2679612 -0.6530715 0.974052 0.2679612 -0.7474945 0.974052 0.2679612 -0.8539475 0.974052 0.2679612 -0.974052 0.974052 0.2679612 -1.113885 0.974052 0.2679612 -1.27456 0.974052 0.2679612 -1.458117 0.974052 0.2679612 -1.667858 0.974052 0.2679612 -1.907556 0.974052 0.2679612 -2.181521 0.974052 0.2679612 -2.494678 0.974052 0.2679612 -2.852659 0.974052 0.2679612 -3.261896 0.974052 0.2679612 -3.729748 0.974052 0.2679612 -4.264621 0.974052 0.2679612 -4.876131 0.974052 0.2679612 -5.575266 0.974052 0.2679612 -6.374593 0.974052 0.2679612 -0 1.113885 0.2679612 -0 1.113885 0.2679612 -0 1.113885 0.2679612 -0.002268731 1.113885 0.2679612 -0.07076883 1.113885 0.2679612 -0.1119241 1.113885 0.2679612 -0.1475052 1.113885 0.2679612 -0.1846606 1.113885 0.2679612 -0.2245119 1.113885 0.2679612 -0.2679612 1.113885 0.2679612 -0.3158431 1.113885 0.2679612 -0.3689944 1.113885 0.2679612 -0.4282948 1.113885 0.2679612 -0.494694 1.113885 0.2679612 -0.5692344 1.113885 0.2679612 -0.6530715 1.113885 0.2679612 -0.7474945 1.113885 0.2679612 -0.8539475 1.113885 0.2679612 -0.974052 1.113885 0.2679612 -1.113885 1.113885 0.2679612 -1.27456 1.113885 0.2679612 -1.458117 1.113885 0.2679612 -1.667858 1.113885 0.2679612 -1.907556 1.113885 0.2679612 -2.181521 1.113885 0.2679612 -2.494678 1.113885 0.2679612 -2.852659 1.113885 0.2679612 -3.261896 1.113885 0.2679612 -3.729748 1.113885 0.2679612 -4.264621 1.113885 0.2679612 -4.876131 1.113885 0.2679612 -5.575266 1.113885 0.2679612 -6.374593 1.113885 0.2679612 -0 1.27456 0.2679612 -0 1.27456 0.2679612 -0 1.27456 0.2679612 -0.002268731 1.27456 0.2679612 -0.07076883 1.27456 0.2679612 -0.1119241 1.27456 0.2679612 -0.1475052 1.27456 0.2679612 -0.1846606 1.27456 0.2679612 -0.2245119 1.27456 0.2679612 -0.2679612 1.27456 0.2679612 -0.3158431 1.27456 0.2679612 -0.3689944 1.27456 0.2679612 -0.4282948 1.27456 0.2679612 -0.494694 1.27456 0.2679612 -0.5692344 1.27456 0.2679612 -0.6530715 1.27456 0.2679612 -0.7474945 1.27456 0.2679612 -0.8539475 1.27456 0.2679612 -0.974052 1.27456 0.2679612 -1.113885 1.27456 0.2679612 -1.27456 1.27456 0.2679612 -1.458117 1.27456 0.2679612 -1.667858 1.27456 0.2679612 -1.907556 1.27456 0.2679612 -2.181521 1.27456 0.2679612 -2.494678 1.27456 0.2679612 -2.852659 1.27456 0.2679612 -3.261896 1.27456 0.2679612 -3.729748 1.27456 0.2679612 -4.264621 1.27456 0.2679612 -4.876131 1.27456 0.2679612 -5.575266 1.27456 0.2679612 -6.374593 1.27456 0.2679612 -0 1.458117 0.2679612 -0 1.458117 0.2679612 -0 1.458117 0.2679612 -0.002268731 1.458117 0.2679612 -0.07076883 1.458117 0.2679612 -0.1119241 1.458117 0.2679612 -0.1475052 1.458117 0.2679612 -0.1846606 1.458117 0.2679612 -0.2245119 1.458117 0.2679612 -0.2679612 1.458117 0.2679612 -0.3158431 1.458117 0.2679612 -0.3689944 1.458117 0.2679612 -0.4282948 1.458117 0.2679612 -0.494694 1.458117 0.2679612 -0.5692344 1.458117 0.2679612 -0.6530715 1.458117 0.2679612 -0.7474945 1.458117 0.2679612 -0.8539475 1.458117 0.2679612 -0.974052 1.458117 0.2679612 -1.113885 1.458117 0.2679612 -1.27456 1.458117 0.2679612 -1.458117 1.458117 0.2679612 -1.667858 1.458117 0.2679612 -1.907556 1.458117 0.2679612 -2.181521 1.458117 0.2679612 -2.494678 1.458117 0.2679612 -2.852659 1.458117 0.2679612 -3.261896 1.458117 0.2679612 -3.729748 1.458117 0.2679612 -4.264621 1.458117 0.2679612 -4.876131 1.458117 0.2679612 -5.575266 1.458117 0.2679612 -6.374593 1.458117 0.2679612 -0 1.667858 0.2679612 -0 1.667858 0.2679612 -0 1.667858 0.2679612 -0.002268731 1.667858 0.2679612 -0.07076883 1.667858 0.2679612 -0.1119241 1.667858 0.2679612 -0.1475052 1.667858 0.2679612 -0.1846606 1.667858 0.2679612 -0.2245119 1.667858 0.2679612 -0.2679612 1.667858 0.2679612 -0.3158431 1.667858 0.2679612 -0.3689944 1.667858 0.2679612 -0.4282948 1.667858 0.2679612 -0.494694 1.667858 0.2679612 -0.5692344 1.667858 0.2679612 -0.6530715 1.667858 0.2679612 -0.7474945 1.667858 0.2679612 -0.8539475 1.667858 0.2679612 -0.974052 1.667858 0.2679612 -1.113885 1.667858 0.2679612 -1.27456 1.667858 0.2679612 -1.458117 1.667858 0.2679612 -1.667858 1.667858 0.2679612 -1.907556 1.667858 0.2679612 -2.181521 1.667858 0.2679612 -2.494678 1.667858 0.2679612 -2.852659 1.667858 0.2679612 -3.261896 1.667858 0.2679612 -3.729748 1.667858 0.2679612 -4.264621 1.667858 0.2679612 -4.876131 1.667858 0.2679612 -5.575266 1.667858 0.2679612 -6.374593 1.667858 0.2679612 -0 1.907556 0.2679612 -0 1.907556 0.2679612 -0 1.907556 0.2679612 -0.002268731 1.907556 0.2679612 -0.07076883 1.907556 0.2679612 -0.1119241 1.907556 0.2679612 -0.1475052 1.907556 0.2679612 -0.1846606 1.907556 0.2679612 -0.2245119 1.907556 0.2679612 -0.2679612 1.907556 0.2679612 -0.3158431 1.907556 0.2679612 -0.3689944 1.907556 0.2679612 -0.4282948 1.907556 0.2679612 -0.494694 1.907556 0.2679612 -0.5692344 1.907556 0.2679612 -0.6530715 1.907556 0.2679612 -0.7474945 1.907556 0.2679612 -0.8539475 1.907556 0.2679612 -0.974052 1.907556 0.2679612 -1.113885 1.907556 0.2679612 -1.27456 1.907556 0.2679612 -1.458117 1.907556 0.2679612 -1.667858 1.907556 0.2679612 -1.907556 1.907556 0.2679612 -2.181521 1.907556 0.2679612 -2.494678 1.907556 0.2679612 -2.852659 1.907556 0.2679612 -3.261896 1.907556 0.2679612 -3.729748 1.907556 0.2679612 -4.264621 1.907556 0.2679612 -4.876131 1.907556 0.2679612 -5.575266 1.907556 0.2679612 -6.374593 1.907556 0.2679612 -0 2.181521 0.2679612 -0 2.181521 0.2679612 -0 2.181521 0.2679612 -0.002268731 2.181521 0.2679612 -0.07076883 2.181521 0.2679612 -0.1119241 2.181521 0.2679612 -0.1475052 2.181521 0.2679612 -0.1846606 2.181521 0.2679612 -0.2245119 2.181521 0.2679612 -0.2679612 2.181521 0.2679612 -0.3158431 2.181521 0.2679612 -0.3689944 2.181521 0.2679612 -0.4282948 2.181521 0.2679612 -0.494694 2.181521 0.2679612 -0.5692344 2.181521 0.2679612 -0.6530715 2.181521 0.2679612 -0.7474945 2.181521 0.2679612 -0.8539475 2.181521 0.2679612 -0.974052 2.181521 0.2679612 -1.113885 2.181521 0.2679612 -1.27456 2.181521 0.2679612 -1.458117 2.181521 0.2679612 -1.667858 2.181521 0.2679612 -1.907556 2.181521 0.2679612 -2.181521 2.181521 0.2679612 -2.494678 2.181521 0.2679612 -2.852659 2.181521 0.2679612 -3.261896 2.181521 0.2679612 -3.729748 2.181521 0.2679612 -4.264621 2.181521 0.2679612 -4.876131 2.181521 0.2679612 -5.575266 2.181521 0.2679612 -6.374593 2.181521 0.2679612 -0 2.494678 0.2679612 -0 2.494678 0.2679612 -0 2.494678 0.2679612 -0.002268731 2.494678 0.2679612 -0.07076883 2.494678 0.2679612 -0.1119241 2.494678 0.2679612 -0.1475052 2.494678 0.2679612 -0.1846606 2.494678 0.2679612 -0.2245119 2.494678 0.2679612 -0.2679612 2.494678 0.2679612 -0.3158431 2.494678 0.2679612 -0.3689944 2.494678 0.2679612 -0.4282948 2.494678 0.2679612 -0.494694 2.494678 0.2679612 -0.5692344 2.494678 0.2679612 -0.6530715 2.494678 0.2679612 -0.7474945 2.494678 0.2679612 -0.8539475 2.494678 0.2679612 -0.974052 2.494678 0.2679612 -1.113885 2.494678 0.2679612 -1.27456 2.494678 0.2679612 -1.458117 2.494678 0.2679612 -1.667858 2.494678 0.2679612 -1.907556 2.494678 0.2679612 -2.181521 2.494678 0.2679612 -2.494678 2.494678 0.2679612 -2.852659 2.494678 0.2679612 -3.261896 2.494678 0.2679612 -3.729748 2.494678 0.2679612 -4.264621 2.494678 0.2679612 -4.876131 2.494678 0.2679612 -5.575266 2.494678 0.2679612 -6.374593 2.494678 0.2679612 -0 2.852659 0.2679612 -0 2.852659 0.2679612 -0 2.852659 0.2679612 -0.002268731 2.852659 0.2679612 -0.07076883 2.852659 0.2679612 -0.1119241 2.852659 0.2679612 -0.1475052 2.852659 0.2679612 -0.1846606 2.852659 0.2679612 -0.2245119 2.852659 0.2679612 -0.2679612 2.852659 0.2679612 -0.3158431 2.852659 0.2679612 -0.3689944 2.852659 0.2679612 -0.4282948 2.852659 0.2679612 -0.494694 2.852659 0.2679612 -0.5692344 2.852659 0.2679612 -0.6530715 2.852659 0.2679612 -0.7474945 2.852659 0.2679612 -0.8539475 2.852659 0.2679612 -0.974052 2.852659 0.2679612 -1.113885 2.852659 0.2679612 -1.27456 2.852659 0.2679612 -1.458117 2.852659 0.2679612 -1.667858 2.852659 0.2679612 -1.907556 2.852659 0.2679612 -2.181521 2.852659 0.2679612 -2.494678 2.852659 0.2679612 -2.852659 2.852659 0.2679612 -3.261896 2.852659 0.2679612 -3.729748 2.852659 0.2679612 -4.264621 2.852659 0.2679612 -4.876131 2.852659 0.2679612 -5.575266 2.852659 0.2679612 -6.374593 2.852659 0.2679612 -0 3.261896 0.2679612 -0 3.261896 0.2679612 -0 3.261896 0.2679612 -0.002268731 3.261896 0.2679612 -0.07076883 3.261896 0.2679612 -0.1119241 3.261896 0.2679612 -0.1475052 3.261896 0.2679612 -0.1846606 3.261896 0.2679612 -0.2245119 3.261896 0.2679612 -0.2679612 3.261896 0.2679612 -0.3158431 3.261896 0.2679612 -0.3689944 3.261896 0.2679612 -0.4282948 3.261896 0.2679612 -0.494694 3.261896 0.2679612 -0.5692344 3.261896 0.2679612 -0.6530715 3.261896 0.2679612 -0.7474945 3.261896 0.2679612 -0.8539475 3.261896 0.2679612 -0.974052 3.261896 0.2679612 -1.113885 3.261896 0.2679612 -1.27456 3.261896 0.2679612 -1.458117 3.261896 0.2679612 -1.667858 3.261896 0.2679612 -1.907556 3.261896 0.2679612 -2.181521 3.261896 0.2679612 -2.494678 3.261896 0.2679612 -2.852659 3.261896 0.2679612 -3.261896 3.261896 0.2679612 -3.729748 3.261896 0.2679612 -4.264621 3.261896 0.2679612 -4.876131 3.261896 0.2679612 -5.575266 3.261896 0.2679612 -6.374593 3.261896 0.2679612 -0 3.729748 0.2679612 -0 3.729748 0.2679612 -0 3.729748 0.2679612 -0.002268731 3.729748 0.2679612 -0.07076883 3.729748 0.2679612 -0.1119241 3.729748 0.2679612 -0.1475052 3.729748 0.2679612 -0.1846606 3.729748 0.2679612 -0.2245119 3.729748 0.2679612 -0.2679612 3.729748 0.2679612 -0.3158431 3.729748 0.2679612 -0.3689944 3.729748 0.2679612 -0.4282948 3.729748 0.2679612 -0.494694 3.729748 0.2679612 -0.5692344 3.729748 0.2679612 -0.6530715 3.729748 0.2679612 -0.7474945 3.729748 0.2679612 -0.8539475 3.729748 0.2679612 -0.974052 3.729748 0.2679612 -1.113885 3.729748 0.2679612 -1.27456 3.729748 0.2679612 -1.458117 3.729748 0.2679612 -1.667858 3.729748 0.2679612 -1.907556 3.729748 0.2679612 -2.181521 3.729748 0.2679612 -2.494678 3.729748 0.2679612 -2.852659 3.729748 0.2679612 -3.261896 3.729748 0.2679612 -3.729748 3.729748 0.2679612 -4.264621 3.729748 0.2679612 -4.876131 3.729748 0.2679612 -5.575266 3.729748 0.2679612 -6.374593 3.729748 0.2679612 -0 4.264621 0.2679612 -0 4.264621 0.2679612 -0 4.264621 0.2679612 -0.002268731 4.264621 0.2679612 -0.07076883 4.264621 0.2679612 -0.1119241 4.264621 0.2679612 -0.1475052 4.264621 0.2679612 -0.1846606 4.264621 0.2679612 -0.2245119 4.264621 0.2679612 -0.2679612 4.264621 0.2679612 -0.3158431 4.264621 0.2679612 -0.3689944 4.264621 0.2679612 -0.4282948 4.264621 0.2679612 -0.494694 4.264621 0.2679612 -0.5692344 4.264621 0.2679612 -0.6530715 4.264621 0.2679612 -0.7474945 4.264621 0.2679612 -0.8539475 4.264621 0.2679612 -0.974052 4.264621 0.2679612 -1.113885 4.264621 0.2679612 -1.27456 4.264621 0.2679612 -1.458117 4.264621 0.2679612 -1.667858 4.264621 0.2679612 -1.907556 4.264621 0.2679612 -2.181521 4.264621 0.2679612 -2.494678 4.264621 0.2679612 -2.852659 4.264621 0.2679612 -3.261896 4.264621 0.2679612 -3.729748 4.264621 0.2679612 -4.264621 4.264621 0.2679612 -4.876131 4.264621 0.2679612 -5.575266 4.264621 0.2679612 -6.374593 4.264621 0.2679612 -0 4.876131 0.2679612 -0 4.876131 0.2679612 -0 4.876131 0.2679612 -0.002268731 4.876131 0.2679612 -0.07076883 4.876131 0.2679612 -0.1119241 4.876131 0.2679612 -0.1475052 4.876131 0.2679612 -0.1846606 4.876131 0.2679612 -0.2245119 4.876131 0.2679612 -0.2679612 4.876131 0.2679612 -0.3158431 4.876131 0.2679612 -0.3689944 4.876131 0.2679612 -0.4282948 4.876131 0.2679612 -0.494694 4.876131 0.2679612 -0.5692344 4.876131 0.2679612 -0.6530715 4.876131 0.2679612 -0.7474945 4.876131 0.2679612 -0.8539475 4.876131 0.2679612 -0.974052 4.876131 0.2679612 -1.113885 4.876131 0.2679612 -1.27456 4.876131 0.2679612 -1.458117 4.876131 0.2679612 -1.667858 4.876131 0.2679612 -1.907556 4.876131 0.2679612 -2.181521 4.876131 0.2679612 -2.494678 4.876131 0.2679612 -2.852659 4.876131 0.2679612 -3.261896 4.876131 0.2679612 -3.729748 4.876131 0.2679612 -4.264621 4.876131 0.2679612 -4.876131 4.876131 0.2679612 -5.575266 4.876131 0.2679612 -6.374593 4.876131 0.2679612 -0 5.575266 0.2679612 -0 5.575266 0.2679612 -0 5.575266 0.2679612 -0.002268731 5.575266 0.2679612 -0.07076883 5.575266 0.2679612 -0.1119241 5.575266 0.2679612 -0.1475052 5.575266 0.2679612 -0.1846606 5.575266 0.2679612 -0.2245119 5.575266 0.2679612 -0.2679612 5.575266 0.2679612 -0.3158431 5.575266 0.2679612 -0.3689944 5.575266 0.2679612 -0.4282948 5.575266 0.2679612 -0.494694 5.575266 0.2679612 -0.5692344 5.575266 0.2679612 -0.6530715 5.575266 0.2679612 -0.7474945 5.575266 0.2679612 -0.8539475 5.575266 0.2679612 -0.974052 5.575266 0.2679612 -1.113885 5.575266 0.2679612 -1.27456 5.575266 0.2679612 -1.458117 5.575266 0.2679612 -1.667858 5.575266 0.2679612 -1.907556 5.575266 0.2679612 -2.181521 5.575266 0.2679612 -2.494678 5.575266 0.2679612 -2.852659 5.575266 0.2679612 -3.261896 5.575266 0.2679612 -3.729748 5.575266 0.2679612 -4.264621 5.575266 0.2679612 -4.876131 5.575266 0.2679612 -5.575266 5.575266 0.2679612 -6.374593 5.575266 0.2679612 -0 6.374593 0.2679612 -0 6.374593 0.2679612 -0 6.374593 0.2679612 -0.002268731 6.374593 0.2679612 -0.07076883 6.374593 0.2679612 -0.1119241 6.374593 0.2679612 -0.1475052 6.374593 0.2679612 -0.1846606 6.374593 0.2679612 -0.2245119 6.374593 0.2679612 -0.2679612 6.374593 0.2679612 -0.3158431 6.374593 0.2679612 -0.3689944 6.374593 0.2679612 -0.4282948 6.374593 0.2679612 -0.494694 6.374593 0.2679612 -0.5692344 6.374593 0.2679612 -0.6530715 6.374593 0.2679612 -0.7474945 6.374593 0.2679612 -0.8539475 6.374593 0.2679612 -0.974052 6.374593 0.2679612 -1.113885 6.374593 0.2679612 -1.27456 6.374593 0.2679612 -1.458117 6.374593 0.2679612 -1.667858 6.374593 0.2679612 -1.907556 6.374593 0.2679612 -2.181521 6.374593 0.2679612 -2.494678 6.374593 0.2679612 -2.852659 6.374593 0.2679612 -3.261896 6.374593 0.2679612 -3.729748 6.374593 0.2679612 -4.264621 6.374593 0.2679612 -4.876131 6.374593 0.2679612 -5.575266 6.374593 0.2679612 -6.374593 6.374593 0.2679612 -0 0 0.3158431 -0 0 0.3158431 -0 0 0.3158431 -0.002268731 0 0.3158431 -0.07076883 0 0.3158431 -0.1119241 0 0.3158431 -0.1475052 0 0.3158431 -0.1846606 0 0.3158431 -0.2245119 0 0.3158431 -0.2679612 0 0.3158431 -0.3158431 0 0.3158431 -0.3689944 0 0.3158431 -0.4282948 0 0.3158431 -0.494694 0 0.3158431 -0.5692344 0 0.3158431 -0.6530715 0 0.3158431 -0.7474945 0 0.3158431 -0.8539475 0 0.3158431 -0.974052 0 0.3158431 -1.113885 0 0.3158431 -1.27456 0 0.3158431 -1.458117 0 0.3158431 -1.667858 0 0.3158431 -1.907556 0 0.3158431 -2.181521 0 0.3158431 -2.494678 0 0.3158431 -2.852659 0 0.3158431 -3.261896 0 0.3158431 -3.729748 0 0.3158431 -4.264621 0 0.3158431 -4.876131 0 0.3158431 -5.575266 0 0.3158431 -6.374593 0 0.3158431 -0 0 0.3158431 -0 0 0.3158431 -0 0 0.3158431 -0.002268731 0 0.3158431 -0.07076883 0 0.3158431 -0.1119241 0 0.3158431 -0.1475052 0 0.3158431 -0.1846606 0 0.3158431 -0.2245119 0 0.3158431 -0.2679612 0 0.3158431 -0.3158431 0 0.3158431 -0.3689944 0 0.3158431 -0.4282948 0 0.3158431 -0.494694 0 0.3158431 -0.5692344 0 0.3158431 -0.6530715 0 0.3158431 -0.7474945 0 0.3158431 -0.8539475 0 0.3158431 -0.974052 0 0.3158431 -1.113885 0 0.3158431 -1.27456 0 0.3158431 -1.458117 0 0.3158431 -1.667858 0 0.3158431 -1.907556 0 0.3158431 -2.181521 0 0.3158431 -2.494678 0 0.3158431 -2.852659 0 0.3158431 -3.261896 0 0.3158431 -3.729748 0 0.3158431 -4.264621 0 0.3158431 -4.876131 0 0.3158431 -5.575266 0 0.3158431 -6.374593 0 0.3158431 -0 0 0.3158431 -0 0 0.3158431 -0 0 0.3158431 -0.002268731 0 0.3158431 -0.07076883 0 0.3158431 -0.1119241 0 0.3158431 -0.1475052 0 0.3158431 -0.1846606 0 0.3158431 -0.2245119 0 0.3158431 -0.2679612 0 0.3158431 -0.3158431 0 0.3158431 -0.3689944 0 0.3158431 -0.4282948 0 0.3158431 -0.494694 0 0.3158431 -0.5692344 0 0.3158431 -0.6530715 0 0.3158431 -0.7474945 0 0.3158431 -0.8539475 0 0.3158431 -0.974052 0 0.3158431 -1.113885 0 0.3158431 -1.27456 0 0.3158431 -1.458117 0 0.3158431 -1.667858 0 0.3158431 -1.907556 0 0.3158431 -2.181521 0 0.3158431 -2.494678 0 0.3158431 -2.852659 0 0.3158431 -3.261896 0 0.3158431 -3.729748 0 0.3158431 -4.264621 0 0.3158431 -4.876131 0 0.3158431 -5.575266 0 0.3158431 -6.374593 0 0.3158431 -0 0.002268731 0.3158431 -0 0.002268731 0.3158431 -0 0.002268731 0.3158431 -0.002268731 0.002268731 0.3158431 -0.07076883 0.002268731 0.3158431 -0.1119241 0.002268731 0.3158431 -0.1475052 0.002268731 0.3158431 -0.1846606 0.002268731 0.3158431 -0.2245119 0.002268731 0.3158431 -0.2679612 0.002268731 0.3158431 -0.3158431 0.002268731 0.3158431 -0.3689944 0.002268731 0.3158431 -0.4282948 0.002268731 0.3158431 -0.494694 0.002268731 0.3158431 -0.5692344 0.002268731 0.3158431 -0.6530715 0.002268731 0.3158431 -0.7474945 0.002268731 0.3158431 -0.8539475 0.002268731 0.3158431 -0.974052 0.002268731 0.3158431 -1.113885 0.002268731 0.3158431 -1.27456 0.002268731 0.3158431 -1.458117 0.002268731 0.3158431 -1.667858 0.002268731 0.3158431 -1.907556 0.002268731 0.3158431 -2.181521 0.002268731 0.3158431 -2.494678 0.002268731 0.3158431 -2.852659 0.002268731 0.3158431 -3.261896 0.002268731 0.3158431 -3.729748 0.002268731 0.3158431 -4.264621 0.002268731 0.3158431 -4.876131 0.002268731 0.3158431 -5.575266 0.002268731 0.3158431 -6.374593 0.002268731 0.3158431 -0 0.07076883 0.3158431 -0 0.07076883 0.3158431 -0 0.07076883 0.3158431 -0.002268731 0.07076883 0.3158431 -0.07076883 0.07076883 0.3158431 -0.1119241 0.07076883 0.3158431 -0.1475052 0.07076883 0.3158431 -0.1846606 0.07076883 0.3158431 -0.2245119 0.07076883 0.3158431 -0.2679612 0.07076883 0.3158431 -0.3158431 0.07076883 0.3158431 -0.3689944 0.07076883 0.3158431 -0.4282948 0.07076883 0.3158431 -0.494694 0.07076883 0.3158431 -0.5692344 0.07076883 0.3158431 -0.6530715 0.07076883 0.3158431 -0.7474945 0.07076883 0.3158431 -0.8539475 0.07076883 0.3158431 -0.974052 0.07076883 0.3158431 -1.113885 0.07076883 0.3158431 -1.27456 0.07076883 0.3158431 -1.458117 0.07076883 0.3158431 -1.667858 0.07076883 0.3158431 -1.907556 0.07076883 0.3158431 -2.181521 0.07076883 0.3158431 -2.494678 0.07076883 0.3158431 -2.852659 0.07076883 0.3158431 -3.261896 0.07076883 0.3158431 -3.729748 0.07076883 0.3158431 -4.264621 0.07076883 0.3158431 -4.876131 0.07076883 0.3158431 -5.575266 0.07076883 0.3158431 -6.374593 0.07076883 0.3158431 -0 0.1119241 0.3158431 -0 0.1119241 0.3158431 -0 0.1119241 0.3158431 -0.002268731 0.1119241 0.3158431 -0.07076883 0.1119241 0.3158431 -0.1119241 0.1119241 0.3158431 -0.1475052 0.1119241 0.3158431 -0.1846606 0.1119241 0.3158431 -0.2245119 0.1119241 0.3158431 -0.2679612 0.1119241 0.3158431 -0.3158431 0.1119241 0.3158431 -0.3689944 0.1119241 0.3158431 -0.4282948 0.1119241 0.3158431 -0.494694 0.1119241 0.3158431 -0.5692344 0.1119241 0.3158431 -0.6530715 0.1119241 0.3158431 -0.7474945 0.1119241 0.3158431 -0.8539475 0.1119241 0.3158431 -0.974052 0.1119241 0.3158431 -1.113885 0.1119241 0.3158431 -1.27456 0.1119241 0.3158431 -1.458117 0.1119241 0.3158431 -1.667858 0.1119241 0.3158431 -1.907556 0.1119241 0.3158431 -2.181521 0.1119241 0.3158431 -2.494678 0.1119241 0.3158431 -2.852659 0.1119241 0.3158431 -3.261896 0.1119241 0.3158431 -3.729748 0.1119241 0.3158431 -4.264621 0.1119241 0.3158431 -4.876131 0.1119241 0.3158431 -5.575266 0.1119241 0.3158431 -6.374593 0.1119241 0.3158431 -0 0.1475052 0.3158431 -0 0.1475052 0.3158431 -0 0.1475052 0.3158431 -0.002268731 0.1475052 0.3158431 -0.07076883 0.1475052 0.3158431 -0.1119241 0.1475052 0.3158431 -0.1475052 0.1475052 0.3158431 -0.1846606 0.1475052 0.3158431 -0.2245119 0.1475052 0.3158431 -0.2679612 0.1475052 0.3158431 -0.3158431 0.1475052 0.3158431 -0.3689944 0.1475052 0.3158431 -0.4282948 0.1475052 0.3158431 -0.494694 0.1475052 0.3158431 -0.5692344 0.1475052 0.3158431 -0.6530715 0.1475052 0.3158431 -0.7474945 0.1475052 0.3158431 -0.8539475 0.1475052 0.3158431 -0.974052 0.1475052 0.3158431 -1.113885 0.1475052 0.3158431 -1.27456 0.1475052 0.3158431 -1.458117 0.1475052 0.3158431 -1.667858 0.1475052 0.3158431 -1.907556 0.1475052 0.3158431 -2.181521 0.1475052 0.3158431 -2.494678 0.1475052 0.3158431 -2.852659 0.1475052 0.3158431 -3.261896 0.1475052 0.3158431 -3.729748 0.1475052 0.3158431 -4.264621 0.1475052 0.3158431 -4.876131 0.1475052 0.3158431 -5.575266 0.1475052 0.3158431 -6.374593 0.1475052 0.3158431 -0 0.1846606 0.3158431 -0 0.1846606 0.3158431 -0 0.1846606 0.3158431 -0.002268731 0.1846606 0.3158431 -0.07076883 0.1846606 0.3158431 -0.1119241 0.1846606 0.3158431 -0.1475052 0.1846606 0.3158431 -0.1846606 0.1846606 0.3158431 -0.2245119 0.1846606 0.3158431 -0.2679612 0.1846606 0.3158431 -0.3158431 0.1846606 0.3158431 -0.3689944 0.1846606 0.3158431 -0.4282948 0.1846606 0.3158431 -0.494694 0.1846606 0.3158431 -0.5692344 0.1846606 0.3158431 -0.6530715 0.1846606 0.3158431 -0.7474945 0.1846606 0.3158431 -0.8539475 0.1846606 0.3158431 -0.974052 0.1846606 0.3158431 -1.113885 0.1846606 0.3158431 -1.27456 0.1846606 0.3158431 -1.458117 0.1846606 0.3158431 -1.667858 0.1846606 0.3158431 -1.907556 0.1846606 0.3158431 -2.181521 0.1846606 0.3158431 -2.494678 0.1846606 0.3158431 -2.852659 0.1846606 0.3158431 -3.261896 0.1846606 0.3158431 -3.729748 0.1846606 0.3158431 -4.264621 0.1846606 0.3158431 -4.876131 0.1846606 0.3158431 -5.575266 0.1846606 0.3158431 -6.374593 0.1846606 0.3158431 -0 0.2245119 0.3158431 -0 0.2245119 0.3158431 -0 0.2245119 0.3158431 -0.002268731 0.2245119 0.3158431 -0.07076883 0.2245119 0.3158431 -0.1119241 0.2245119 0.3158431 -0.1475052 0.2245119 0.3158431 -0.1846606 0.2245119 0.3158431 -0.2245119 0.2245119 0.3158431 -0.2679612 0.2245119 0.3158431 -0.3158431 0.2245119 0.3158431 -0.3689944 0.2245119 0.3158431 -0.4282948 0.2245119 0.3158431 -0.494694 0.2245119 0.3158431 -0.5692344 0.2245119 0.3158431 -0.6530715 0.2245119 0.3158431 -0.7474945 0.2245119 0.3158431 -0.8539475 0.2245119 0.3158431 -0.974052 0.2245119 0.3158431 -1.113885 0.2245119 0.3158431 -1.27456 0.2245119 0.3158431 -1.458117 0.2245119 0.3158431 -1.667858 0.2245119 0.3158431 -1.907556 0.2245119 0.3158431 -2.181521 0.2245119 0.3158431 -2.494678 0.2245119 0.3158431 -2.852659 0.2245119 0.3158431 -3.261896 0.2245119 0.3158431 -3.729748 0.2245119 0.3158431 -4.264621 0.2245119 0.3158431 -4.876131 0.2245119 0.3158431 -5.575266 0.2245119 0.3158431 -6.374593 0.2245119 0.3158431 -0 0.2679612 0.3158431 -0 0.2679612 0.3158431 -0 0.2679612 0.3158431 -0.002268731 0.2679612 0.3158431 -0.07076883 0.2679612 0.3158431 -0.1119241 0.2679612 0.3158431 -0.1475052 0.2679612 0.3158431 -0.1846606 0.2679612 0.3158431 -0.2245119 0.2679612 0.3158431 -0.2679612 0.2679612 0.3158431 -0.3158431 0.2679612 0.3158431 -0.3689944 0.2679612 0.3158431 -0.4282948 0.2679612 0.3158431 -0.494694 0.2679612 0.3158431 -0.5692344 0.2679612 0.3158431 -0.6530715 0.2679612 0.3158431 -0.7474945 0.2679612 0.3158431 -0.8539475 0.2679612 0.3158431 -0.974052 0.2679612 0.3158431 -1.113885 0.2679612 0.3158431 -1.27456 0.2679612 0.3158431 -1.458117 0.2679612 0.3158431 -1.667858 0.2679612 0.3158431 -1.907556 0.2679612 0.3158431 -2.181521 0.2679612 0.3158431 -2.494678 0.2679612 0.3158431 -2.852659 0.2679612 0.3158431 -3.261896 0.2679612 0.3158431 -3.729748 0.2679612 0.3158431 -4.264621 0.2679612 0.3158431 -4.876131 0.2679612 0.3158431 -5.575266 0.2679612 0.3158431 -6.374593 0.2679612 0.3158431 -0 0.3158431 0.3158431 -0 0.3158431 0.3158431 -0 0.3158431 0.3158431 -0.002268731 0.3158431 0.3158431 -0.07076883 0.3158431 0.3158431 -0.1119241 0.3158431 0.3158431 -0.1475052 0.3158431 0.3158431 -0.1846606 0.3158431 0.3158431 -0.2245119 0.3158431 0.3158431 -0.2679612 0.3158431 0.3158431 -0.3158431 0.3158431 0.3158431 -0.3689944 0.3158431 0.3158431 -0.4282948 0.3158431 0.3158431 -0.494694 0.3158431 0.3158431 -0.5692344 0.3158431 0.3158431 -0.6530715 0.3158431 0.3158431 -0.7474945 0.3158431 0.3158431 -0.8539475 0.3158431 0.3158431 -0.974052 0.3158431 0.3158431 -1.113885 0.3158431 0.3158431 -1.27456 0.3158431 0.3158431 -1.458117 0.3158431 0.3158431 -1.667858 0.3158431 0.3158431 -1.907556 0.3158431 0.3158431 -2.181521 0.3158431 0.3158431 -2.494678 0.3158431 0.3158431 -2.852659 0.3158431 0.3158431 -3.261896 0.3158431 0.3158431 -3.729748 0.3158431 0.3158431 -4.264621 0.3158431 0.3158431 -4.876131 0.3158431 0.3158431 -5.575266 0.3158431 0.3158431 -6.374593 0.3158431 0.3158431 -0 0.3689944 0.3158431 -0 0.3689944 0.3158431 -0 0.3689944 0.3158431 -0.002268731 0.3689944 0.3158431 -0.07076883 0.3689944 0.3158431 -0.1119241 0.3689944 0.3158431 -0.1475052 0.3689944 0.3158431 -0.1846606 0.3689944 0.3158431 -0.2245119 0.3689944 0.3158431 -0.2679612 0.3689944 0.3158431 -0.3158431 0.3689944 0.3158431 -0.3689944 0.3689944 0.3158431 -0.4282948 0.3689944 0.3158431 -0.494694 0.3689944 0.3158431 -0.5692344 0.3689944 0.3158431 -0.6530715 0.3689944 0.3158431 -0.7474945 0.3689944 0.3158431 -0.8539475 0.3689944 0.3158431 -0.974052 0.3689944 0.3158431 -1.113885 0.3689944 0.3158431 -1.27456 0.3689944 0.3158431 -1.458117 0.3689944 0.3158431 -1.667858 0.3689944 0.3158431 -1.907556 0.3689944 0.3158431 -2.181521 0.3689944 0.3158431 -2.494678 0.3689944 0.3158431 -2.852659 0.3689944 0.3158431 -3.261896 0.3689944 0.3158431 -3.729748 0.3689944 0.3158431 -4.264621 0.3689944 0.3158431 -4.876131 0.3689944 0.3158431 -5.575266 0.3689944 0.3158431 -6.374593 0.3689944 0.3158431 -0 0.4282948 0.3158431 -0 0.4282948 0.3158431 -0 0.4282948 0.3158431 -0.002268731 0.4282948 0.3158431 -0.07076883 0.4282948 0.3158431 -0.1119241 0.4282948 0.3158431 -0.1475052 0.4282948 0.3158431 -0.1846606 0.4282948 0.3158431 -0.2245119 0.4282948 0.3158431 -0.2679612 0.4282948 0.3158431 -0.3158431 0.4282948 0.3158431 -0.3689944 0.4282948 0.3158431 -0.4282948 0.4282948 0.3158431 -0.494694 0.4282948 0.3158431 -0.5692344 0.4282948 0.3158431 -0.6530715 0.4282948 0.3158431 -0.7474945 0.4282948 0.3158431 -0.8539475 0.4282948 0.3158431 -0.974052 0.4282948 0.3158431 -1.113885 0.4282948 0.3158431 -1.27456 0.4282948 0.3158431 -1.458117 0.4282948 0.3158431 -1.667858 0.4282948 0.3158431 -1.907556 0.4282948 0.3158431 -2.181521 0.4282948 0.3158431 -2.494678 0.4282948 0.3158431 -2.852659 0.4282948 0.3158431 -3.261896 0.4282948 0.3158431 -3.729748 0.4282948 0.3158431 -4.264621 0.4282948 0.3158431 -4.876131 0.4282948 0.3158431 -5.575266 0.4282948 0.3158431 -6.374593 0.4282948 0.3158431 -0 0.494694 0.3158431 -0 0.494694 0.3158431 -0 0.494694 0.3158431 -0.002268731 0.494694 0.3158431 -0.07076883 0.494694 0.3158431 -0.1119241 0.494694 0.3158431 -0.1475052 0.494694 0.3158431 -0.1846606 0.494694 0.3158431 -0.2245119 0.494694 0.3158431 -0.2679612 0.494694 0.3158431 -0.3158431 0.494694 0.3158431 -0.3689944 0.494694 0.3158431 -0.4282948 0.494694 0.3158431 -0.494694 0.494694 0.3158431 -0.5692344 0.494694 0.3158431 -0.6530715 0.494694 0.3158431 -0.7474945 0.494694 0.3158431 -0.8539475 0.494694 0.3158431 -0.974052 0.494694 0.3158431 -1.113885 0.494694 0.3158431 -1.27456 0.494694 0.3158431 -1.458117 0.494694 0.3158431 -1.667858 0.494694 0.3158431 -1.907556 0.494694 0.3158431 -2.181521 0.494694 0.3158431 -2.494678 0.494694 0.3158431 -2.852659 0.494694 0.3158431 -3.261896 0.494694 0.3158431 -3.729748 0.494694 0.3158431 -4.264621 0.494694 0.3158431 -4.876131 0.494694 0.3158431 -5.575266 0.494694 0.3158431 -6.374593 0.494694 0.3158431 -0 0.5692344 0.3158431 -0 0.5692344 0.3158431 -0 0.5692344 0.3158431 -0.002268731 0.5692344 0.3158431 -0.07076883 0.5692344 0.3158431 -0.1119241 0.5692344 0.3158431 -0.1475052 0.5692344 0.3158431 -0.1846606 0.5692344 0.3158431 -0.2245119 0.5692344 0.3158431 -0.2679612 0.5692344 0.3158431 -0.3158431 0.5692344 0.3158431 -0.3689944 0.5692344 0.3158431 -0.4282948 0.5692344 0.3158431 -0.494694 0.5692344 0.3158431 -0.5692344 0.5692344 0.3158431 -0.6530715 0.5692344 0.3158431 -0.7474945 0.5692344 0.3158431 -0.8539475 0.5692344 0.3158431 -0.974052 0.5692344 0.3158431 -1.113885 0.5692344 0.3158431 -1.27456 0.5692344 0.3158431 -1.458117 0.5692344 0.3158431 -1.667858 0.5692344 0.3158431 -1.907556 0.5692344 0.3158431 -2.181521 0.5692344 0.3158431 -2.494678 0.5692344 0.3158431 -2.852659 0.5692344 0.3158431 -3.261896 0.5692344 0.3158431 -3.729748 0.5692344 0.3158431 -4.264621 0.5692344 0.3158431 -4.876131 0.5692344 0.3158431 -5.575266 0.5692344 0.3158431 -6.374593 0.5692344 0.3158431 -0 0.6530715 0.3158431 -0 0.6530715 0.3158431 -0 0.6530715 0.3158431 -0.002268731 0.6530715 0.3158431 -0.07076883 0.6530715 0.3158431 -0.1119241 0.6530715 0.3158431 -0.1475052 0.6530715 0.3158431 -0.1846606 0.6530715 0.3158431 -0.2245119 0.6530715 0.3158431 -0.2679612 0.6530715 0.3158431 -0.3158431 0.6530715 0.3158431 -0.3689944 0.6530715 0.3158431 -0.4282948 0.6530715 0.3158431 -0.494694 0.6530715 0.3158431 -0.5692344 0.6530715 0.3158431 -0.6530715 0.6530715 0.3158431 -0.7474945 0.6530715 0.3158431 -0.8539475 0.6530715 0.3158431 -0.974052 0.6530715 0.3158431 -1.113885 0.6530715 0.3158431 -1.27456 0.6530715 0.3158431 -1.458117 0.6530715 0.3158431 -1.667858 0.6530715 0.3158431 -1.907556 0.6530715 0.3158431 -2.181521 0.6530715 0.3158431 -2.494678 0.6530715 0.3158431 -2.852659 0.6530715 0.3158431 -3.261896 0.6530715 0.3158431 -3.729748 0.6530715 0.3158431 -4.264621 0.6530715 0.3158431 -4.876131 0.6530715 0.3158431 -5.575266 0.6530715 0.3158431 -6.374593 0.6530715 0.3158431 -0 0.7474945 0.3158431 -0 0.7474945 0.3158431 -0 0.7474945 0.3158431 -0.002268731 0.7474945 0.3158431 -0.07076883 0.7474945 0.3158431 -0.1119241 0.7474945 0.3158431 -0.1475052 0.7474945 0.3158431 -0.1846606 0.7474945 0.3158431 -0.2245119 0.7474945 0.3158431 -0.2679612 0.7474945 0.3158431 -0.3158431 0.7474945 0.3158431 -0.3689944 0.7474945 0.3158431 -0.4282948 0.7474945 0.3158431 -0.494694 0.7474945 0.3158431 -0.5692344 0.7474945 0.3158431 -0.6530715 0.7474945 0.3158431 -0.7474945 0.7474945 0.3158431 -0.8539475 0.7474945 0.3158431 -0.974052 0.7474945 0.3158431 -1.113885 0.7474945 0.3158431 -1.27456 0.7474945 0.3158431 -1.458117 0.7474945 0.3158431 -1.667858 0.7474945 0.3158431 -1.907556 0.7474945 0.3158431 -2.181521 0.7474945 0.3158431 -2.494678 0.7474945 0.3158431 -2.852659 0.7474945 0.3158431 -3.261896 0.7474945 0.3158431 -3.729748 0.7474945 0.3158431 -4.264621 0.7474945 0.3158431 -4.876131 0.7474945 0.3158431 -5.575266 0.7474945 0.3158431 -6.374593 0.7474945 0.3158431 -0 0.8539475 0.3158431 -0 0.8539475 0.3158431 -0 0.8539475 0.3158431 -0.002268731 0.8539475 0.3158431 -0.07076883 0.8539475 0.3158431 -0.1119241 0.8539475 0.3158431 -0.1475052 0.8539475 0.3158431 -0.1846606 0.8539475 0.3158431 -0.2245119 0.8539475 0.3158431 -0.2679612 0.8539475 0.3158431 -0.3158431 0.8539475 0.3158431 -0.3689944 0.8539475 0.3158431 -0.4282948 0.8539475 0.3158431 -0.494694 0.8539475 0.3158431 -0.5692344 0.8539475 0.3158431 -0.6530715 0.8539475 0.3158431 -0.7474945 0.8539475 0.3158431 -0.8539475 0.8539475 0.3158431 -0.974052 0.8539475 0.3158431 -1.113885 0.8539475 0.3158431 -1.27456 0.8539475 0.3158431 -1.458117 0.8539475 0.3158431 -1.667858 0.8539475 0.3158431 -1.907556 0.8539475 0.3158431 -2.181521 0.8539475 0.3158431 -2.494678 0.8539475 0.3158431 -2.852659 0.8539475 0.3158431 -3.261896 0.8539475 0.3158431 -3.729748 0.8539475 0.3158431 -4.264621 0.8539475 0.3158431 -4.876131 0.8539475 0.3158431 -5.575266 0.8539475 0.3158431 -6.374593 0.8539475 0.3158431 -0 0.974052 0.3158431 -0 0.974052 0.3158431 -0 0.974052 0.3158431 -0.002268731 0.974052 0.3158431 -0.07076883 0.974052 0.3158431 -0.1119241 0.974052 0.3158431 -0.1475052 0.974052 0.3158431 -0.1846606 0.974052 0.3158431 -0.2245119 0.974052 0.3158431 -0.2679612 0.974052 0.3158431 -0.3158431 0.974052 0.3158431 -0.3689944 0.974052 0.3158431 -0.4282948 0.974052 0.3158431 -0.494694 0.974052 0.3158431 -0.5692344 0.974052 0.3158431 -0.6530715 0.974052 0.3158431 -0.7474945 0.974052 0.3158431 -0.8539475 0.974052 0.3158431 -0.974052 0.974052 0.3158431 -1.113885 0.974052 0.3158431 -1.27456 0.974052 0.3158431 -1.458117 0.974052 0.3158431 -1.667858 0.974052 0.3158431 -1.907556 0.974052 0.3158431 -2.181521 0.974052 0.3158431 -2.494678 0.974052 0.3158431 -2.852659 0.974052 0.3158431 -3.261896 0.974052 0.3158431 -3.729748 0.974052 0.3158431 -4.264621 0.974052 0.3158431 -4.876131 0.974052 0.3158431 -5.575266 0.974052 0.3158431 -6.374593 0.974052 0.3158431 -0 1.113885 0.3158431 -0 1.113885 0.3158431 -0 1.113885 0.3158431 -0.002268731 1.113885 0.3158431 -0.07076883 1.113885 0.3158431 -0.1119241 1.113885 0.3158431 -0.1475052 1.113885 0.3158431 -0.1846606 1.113885 0.3158431 -0.2245119 1.113885 0.3158431 -0.2679612 1.113885 0.3158431 -0.3158431 1.113885 0.3158431 -0.3689944 1.113885 0.3158431 -0.4282948 1.113885 0.3158431 -0.494694 1.113885 0.3158431 -0.5692344 1.113885 0.3158431 -0.6530715 1.113885 0.3158431 -0.7474945 1.113885 0.3158431 -0.8539475 1.113885 0.3158431 -0.974052 1.113885 0.3158431 -1.113885 1.113885 0.3158431 -1.27456 1.113885 0.3158431 -1.458117 1.113885 0.3158431 -1.667858 1.113885 0.3158431 -1.907556 1.113885 0.3158431 -2.181521 1.113885 0.3158431 -2.494678 1.113885 0.3158431 -2.852659 1.113885 0.3158431 -3.261896 1.113885 0.3158431 -3.729748 1.113885 0.3158431 -4.264621 1.113885 0.3158431 -4.876131 1.113885 0.3158431 -5.575266 1.113885 0.3158431 -6.374593 1.113885 0.3158431 -0 1.27456 0.3158431 -0 1.27456 0.3158431 -0 1.27456 0.3158431 -0.002268731 1.27456 0.3158431 -0.07076883 1.27456 0.3158431 -0.1119241 1.27456 0.3158431 -0.1475052 1.27456 0.3158431 -0.1846606 1.27456 0.3158431 -0.2245119 1.27456 0.3158431 -0.2679612 1.27456 0.3158431 -0.3158431 1.27456 0.3158431 -0.3689944 1.27456 0.3158431 -0.4282948 1.27456 0.3158431 -0.494694 1.27456 0.3158431 -0.5692344 1.27456 0.3158431 -0.6530715 1.27456 0.3158431 -0.7474945 1.27456 0.3158431 -0.8539475 1.27456 0.3158431 -0.974052 1.27456 0.3158431 -1.113885 1.27456 0.3158431 -1.27456 1.27456 0.3158431 -1.458117 1.27456 0.3158431 -1.667858 1.27456 0.3158431 -1.907556 1.27456 0.3158431 -2.181521 1.27456 0.3158431 -2.494678 1.27456 0.3158431 -2.852659 1.27456 0.3158431 -3.261896 1.27456 0.3158431 -3.729748 1.27456 0.3158431 -4.264621 1.27456 0.3158431 -4.876131 1.27456 0.3158431 -5.575266 1.27456 0.3158431 -6.374593 1.27456 0.3158431 -0 1.458117 0.3158431 -0 1.458117 0.3158431 -0 1.458117 0.3158431 -0.002268731 1.458117 0.3158431 -0.07076883 1.458117 0.3158431 -0.1119241 1.458117 0.3158431 -0.1475052 1.458117 0.3158431 -0.1846606 1.458117 0.3158431 -0.2245119 1.458117 0.3158431 -0.2679612 1.458117 0.3158431 -0.3158431 1.458117 0.3158431 -0.3689944 1.458117 0.3158431 -0.4282948 1.458117 0.3158431 -0.494694 1.458117 0.3158431 -0.5692344 1.458117 0.3158431 -0.6530715 1.458117 0.3158431 -0.7474945 1.458117 0.3158431 -0.8539475 1.458117 0.3158431 -0.974052 1.458117 0.3158431 -1.113885 1.458117 0.3158431 -1.27456 1.458117 0.3158431 -1.458117 1.458117 0.3158431 -1.667858 1.458117 0.3158431 -1.907556 1.458117 0.3158431 -2.181521 1.458117 0.3158431 -2.494678 1.458117 0.3158431 -2.852659 1.458117 0.3158431 -3.261896 1.458117 0.3158431 -3.729748 1.458117 0.3158431 -4.264621 1.458117 0.3158431 -4.876131 1.458117 0.3158431 -5.575266 1.458117 0.3158431 -6.374593 1.458117 0.3158431 -0 1.667858 0.3158431 -0 1.667858 0.3158431 -0 1.667858 0.3158431 -0.002268731 1.667858 0.3158431 -0.07076883 1.667858 0.3158431 -0.1119241 1.667858 0.3158431 -0.1475052 1.667858 0.3158431 -0.1846606 1.667858 0.3158431 -0.2245119 1.667858 0.3158431 -0.2679612 1.667858 0.3158431 -0.3158431 1.667858 0.3158431 -0.3689944 1.667858 0.3158431 -0.4282948 1.667858 0.3158431 -0.494694 1.667858 0.3158431 -0.5692344 1.667858 0.3158431 -0.6530715 1.667858 0.3158431 -0.7474945 1.667858 0.3158431 -0.8539475 1.667858 0.3158431 -0.974052 1.667858 0.3158431 -1.113885 1.667858 0.3158431 -1.27456 1.667858 0.3158431 -1.458117 1.667858 0.3158431 -1.667858 1.667858 0.3158431 -1.907556 1.667858 0.3158431 -2.181521 1.667858 0.3158431 -2.494678 1.667858 0.3158431 -2.852659 1.667858 0.3158431 -3.261896 1.667858 0.3158431 -3.729748 1.667858 0.3158431 -4.264621 1.667858 0.3158431 -4.876131 1.667858 0.3158431 -5.575266 1.667858 0.3158431 -6.374593 1.667858 0.3158431 -0 1.907556 0.3158431 -0 1.907556 0.3158431 -0 1.907556 0.3158431 -0.002268731 1.907556 0.3158431 -0.07076883 1.907556 0.3158431 -0.1119241 1.907556 0.3158431 -0.1475052 1.907556 0.3158431 -0.1846606 1.907556 0.3158431 -0.2245119 1.907556 0.3158431 -0.2679612 1.907556 0.3158431 -0.3158431 1.907556 0.3158431 -0.3689944 1.907556 0.3158431 -0.4282948 1.907556 0.3158431 -0.494694 1.907556 0.3158431 -0.5692344 1.907556 0.3158431 -0.6530715 1.907556 0.3158431 -0.7474945 1.907556 0.3158431 -0.8539475 1.907556 0.3158431 -0.974052 1.907556 0.3158431 -1.113885 1.907556 0.3158431 -1.27456 1.907556 0.3158431 -1.458117 1.907556 0.3158431 -1.667858 1.907556 0.3158431 -1.907556 1.907556 0.3158431 -2.181521 1.907556 0.3158431 -2.494678 1.907556 0.3158431 -2.852659 1.907556 0.3158431 -3.261896 1.907556 0.3158431 -3.729748 1.907556 0.3158431 -4.264621 1.907556 0.3158431 -4.876131 1.907556 0.3158431 -5.575266 1.907556 0.3158431 -6.374593 1.907556 0.3158431 -0 2.181521 0.3158431 -0 2.181521 0.3158431 -0 2.181521 0.3158431 -0.002268731 2.181521 0.3158431 -0.07076883 2.181521 0.3158431 -0.1119241 2.181521 0.3158431 -0.1475052 2.181521 0.3158431 -0.1846606 2.181521 0.3158431 -0.2245119 2.181521 0.3158431 -0.2679612 2.181521 0.3158431 -0.3158431 2.181521 0.3158431 -0.3689944 2.181521 0.3158431 -0.4282948 2.181521 0.3158431 -0.494694 2.181521 0.3158431 -0.5692344 2.181521 0.3158431 -0.6530715 2.181521 0.3158431 -0.7474945 2.181521 0.3158431 -0.8539475 2.181521 0.3158431 -0.974052 2.181521 0.3158431 -1.113885 2.181521 0.3158431 -1.27456 2.181521 0.3158431 -1.458117 2.181521 0.3158431 -1.667858 2.181521 0.3158431 -1.907556 2.181521 0.3158431 -2.181521 2.181521 0.3158431 -2.494678 2.181521 0.3158431 -2.852659 2.181521 0.3158431 -3.261896 2.181521 0.3158431 -3.729748 2.181521 0.3158431 -4.264621 2.181521 0.3158431 -4.876131 2.181521 0.3158431 -5.575266 2.181521 0.3158431 -6.374593 2.181521 0.3158431 -0 2.494678 0.3158431 -0 2.494678 0.3158431 -0 2.494678 0.3158431 -0.002268731 2.494678 0.3158431 -0.07076883 2.494678 0.3158431 -0.1119241 2.494678 0.3158431 -0.1475052 2.494678 0.3158431 -0.1846606 2.494678 0.3158431 -0.2245119 2.494678 0.3158431 -0.2679612 2.494678 0.3158431 -0.3158431 2.494678 0.3158431 -0.3689944 2.494678 0.3158431 -0.4282948 2.494678 0.3158431 -0.494694 2.494678 0.3158431 -0.5692344 2.494678 0.3158431 -0.6530715 2.494678 0.3158431 -0.7474945 2.494678 0.3158431 -0.8539475 2.494678 0.3158431 -0.974052 2.494678 0.3158431 -1.113885 2.494678 0.3158431 -1.27456 2.494678 0.3158431 -1.458117 2.494678 0.3158431 -1.667858 2.494678 0.3158431 -1.907556 2.494678 0.3158431 -2.181521 2.494678 0.3158431 -2.494678 2.494678 0.3158431 -2.852659 2.494678 0.3158431 -3.261896 2.494678 0.3158431 -3.729748 2.494678 0.3158431 -4.264621 2.494678 0.3158431 -4.876131 2.494678 0.3158431 -5.575266 2.494678 0.3158431 -6.374593 2.494678 0.3158431 -0 2.852659 0.3158431 -0 2.852659 0.3158431 -0 2.852659 0.3158431 -0.002268731 2.852659 0.3158431 -0.07076883 2.852659 0.3158431 -0.1119241 2.852659 0.3158431 -0.1475052 2.852659 0.3158431 -0.1846606 2.852659 0.3158431 -0.2245119 2.852659 0.3158431 -0.2679612 2.852659 0.3158431 -0.3158431 2.852659 0.3158431 -0.3689944 2.852659 0.3158431 -0.4282948 2.852659 0.3158431 -0.494694 2.852659 0.3158431 -0.5692344 2.852659 0.3158431 -0.6530715 2.852659 0.3158431 -0.7474945 2.852659 0.3158431 -0.8539475 2.852659 0.3158431 -0.974052 2.852659 0.3158431 -1.113885 2.852659 0.3158431 -1.27456 2.852659 0.3158431 -1.458117 2.852659 0.3158431 -1.667858 2.852659 0.3158431 -1.907556 2.852659 0.3158431 -2.181521 2.852659 0.3158431 -2.494678 2.852659 0.3158431 -2.852659 2.852659 0.3158431 -3.261896 2.852659 0.3158431 -3.729748 2.852659 0.3158431 -4.264621 2.852659 0.3158431 -4.876131 2.852659 0.3158431 -5.575266 2.852659 0.3158431 -6.374593 2.852659 0.3158431 -0 3.261896 0.3158431 -0 3.261896 0.3158431 -0 3.261896 0.3158431 -0.002268731 3.261896 0.3158431 -0.07076883 3.261896 0.3158431 -0.1119241 3.261896 0.3158431 -0.1475052 3.261896 0.3158431 -0.1846606 3.261896 0.3158431 -0.2245119 3.261896 0.3158431 -0.2679612 3.261896 0.3158431 -0.3158431 3.261896 0.3158431 -0.3689944 3.261896 0.3158431 -0.4282948 3.261896 0.3158431 -0.494694 3.261896 0.3158431 -0.5692344 3.261896 0.3158431 -0.6530715 3.261896 0.3158431 -0.7474945 3.261896 0.3158431 -0.8539475 3.261896 0.3158431 -0.974052 3.261896 0.3158431 -1.113885 3.261896 0.3158431 -1.27456 3.261896 0.3158431 -1.458117 3.261896 0.3158431 -1.667858 3.261896 0.3158431 -1.907556 3.261896 0.3158431 -2.181521 3.261896 0.3158431 -2.494678 3.261896 0.3158431 -2.852659 3.261896 0.3158431 -3.261896 3.261896 0.3158431 -3.729748 3.261896 0.3158431 -4.264621 3.261896 0.3158431 -4.876131 3.261896 0.3158431 -5.575266 3.261896 0.3158431 -6.374593 3.261896 0.3158431 -0 3.729748 0.3158431 -0 3.729748 0.3158431 -0 3.729748 0.3158431 -0.002268731 3.729748 0.3158431 -0.07076883 3.729748 0.3158431 -0.1119241 3.729748 0.3158431 -0.1475052 3.729748 0.3158431 -0.1846606 3.729748 0.3158431 -0.2245119 3.729748 0.3158431 -0.2679612 3.729748 0.3158431 -0.3158431 3.729748 0.3158431 -0.3689944 3.729748 0.3158431 -0.4282948 3.729748 0.3158431 -0.494694 3.729748 0.3158431 -0.5692344 3.729748 0.3158431 -0.6530715 3.729748 0.3158431 -0.7474945 3.729748 0.3158431 -0.8539475 3.729748 0.3158431 -0.974052 3.729748 0.3158431 -1.113885 3.729748 0.3158431 -1.27456 3.729748 0.3158431 -1.458117 3.729748 0.3158431 -1.667858 3.729748 0.3158431 -1.907556 3.729748 0.3158431 -2.181521 3.729748 0.3158431 -2.494678 3.729748 0.3158431 -2.852659 3.729748 0.3158431 -3.261896 3.729748 0.3158431 -3.729748 3.729748 0.3158431 -4.264621 3.729748 0.3158431 -4.876131 3.729748 0.3158431 -5.575266 3.729748 0.3158431 -6.374593 3.729748 0.3158431 -0 4.264621 0.3158431 -0 4.264621 0.3158431 -0 4.264621 0.3158431 -0.002268731 4.264621 0.3158431 -0.07076883 4.264621 0.3158431 -0.1119241 4.264621 0.3158431 -0.1475052 4.264621 0.3158431 -0.1846606 4.264621 0.3158431 -0.2245119 4.264621 0.3158431 -0.2679612 4.264621 0.3158431 -0.3158431 4.264621 0.3158431 -0.3689944 4.264621 0.3158431 -0.4282948 4.264621 0.3158431 -0.494694 4.264621 0.3158431 -0.5692344 4.264621 0.3158431 -0.6530715 4.264621 0.3158431 -0.7474945 4.264621 0.3158431 -0.8539475 4.264621 0.3158431 -0.974052 4.264621 0.3158431 -1.113885 4.264621 0.3158431 -1.27456 4.264621 0.3158431 -1.458117 4.264621 0.3158431 -1.667858 4.264621 0.3158431 -1.907556 4.264621 0.3158431 -2.181521 4.264621 0.3158431 -2.494678 4.264621 0.3158431 -2.852659 4.264621 0.3158431 -3.261896 4.264621 0.3158431 -3.729748 4.264621 0.3158431 -4.264621 4.264621 0.3158431 -4.876131 4.264621 0.3158431 -5.575266 4.264621 0.3158431 -6.374593 4.264621 0.3158431 -0 4.876131 0.3158431 -0 4.876131 0.3158431 -0 4.876131 0.3158431 -0.002268731 4.876131 0.3158431 -0.07076883 4.876131 0.3158431 -0.1119241 4.876131 0.3158431 -0.1475052 4.876131 0.3158431 -0.1846606 4.876131 0.3158431 -0.2245119 4.876131 0.3158431 -0.2679612 4.876131 0.3158431 -0.3158431 4.876131 0.3158431 -0.3689944 4.876131 0.3158431 -0.4282948 4.876131 0.3158431 -0.494694 4.876131 0.3158431 -0.5692344 4.876131 0.3158431 -0.6530715 4.876131 0.3158431 -0.7474945 4.876131 0.3158431 -0.8539475 4.876131 0.3158431 -0.974052 4.876131 0.3158431 -1.113885 4.876131 0.3158431 -1.27456 4.876131 0.3158431 -1.458117 4.876131 0.3158431 -1.667858 4.876131 0.3158431 -1.907556 4.876131 0.3158431 -2.181521 4.876131 0.3158431 -2.494678 4.876131 0.3158431 -2.852659 4.876131 0.3158431 -3.261896 4.876131 0.3158431 -3.729748 4.876131 0.3158431 -4.264621 4.876131 0.3158431 -4.876131 4.876131 0.3158431 -5.575266 4.876131 0.3158431 -6.374593 4.876131 0.3158431 -0 5.575266 0.3158431 -0 5.575266 0.3158431 -0 5.575266 0.3158431 -0.002268731 5.575266 0.3158431 -0.07076883 5.575266 0.3158431 -0.1119241 5.575266 0.3158431 -0.1475052 5.575266 0.3158431 -0.1846606 5.575266 0.3158431 -0.2245119 5.575266 0.3158431 -0.2679612 5.575266 0.3158431 -0.3158431 5.575266 0.3158431 -0.3689944 5.575266 0.3158431 -0.4282948 5.575266 0.3158431 -0.494694 5.575266 0.3158431 -0.5692344 5.575266 0.3158431 -0.6530715 5.575266 0.3158431 -0.7474945 5.575266 0.3158431 -0.8539475 5.575266 0.3158431 -0.974052 5.575266 0.3158431 -1.113885 5.575266 0.3158431 -1.27456 5.575266 0.3158431 -1.458117 5.575266 0.3158431 -1.667858 5.575266 0.3158431 -1.907556 5.575266 0.3158431 -2.181521 5.575266 0.3158431 -2.494678 5.575266 0.3158431 -2.852659 5.575266 0.3158431 -3.261896 5.575266 0.3158431 -3.729748 5.575266 0.3158431 -4.264621 5.575266 0.3158431 -4.876131 5.575266 0.3158431 -5.575266 5.575266 0.3158431 -6.374593 5.575266 0.3158431 -0 6.374593 0.3158431 -0 6.374593 0.3158431 -0 6.374593 0.3158431 -0.002268731 6.374593 0.3158431 -0.07076883 6.374593 0.3158431 -0.1119241 6.374593 0.3158431 -0.1475052 6.374593 0.3158431 -0.1846606 6.374593 0.3158431 -0.2245119 6.374593 0.3158431 -0.2679612 6.374593 0.3158431 -0.3158431 6.374593 0.3158431 -0.3689944 6.374593 0.3158431 -0.4282948 6.374593 0.3158431 -0.494694 6.374593 0.3158431 -0.5692344 6.374593 0.3158431 -0.6530715 6.374593 0.3158431 -0.7474945 6.374593 0.3158431 -0.8539475 6.374593 0.3158431 -0.974052 6.374593 0.3158431 -1.113885 6.374593 0.3158431 -1.27456 6.374593 0.3158431 -1.458117 6.374593 0.3158431 -1.667858 6.374593 0.3158431 -1.907556 6.374593 0.3158431 -2.181521 6.374593 0.3158431 -2.494678 6.374593 0.3158431 -2.852659 6.374593 0.3158431 -3.261896 6.374593 0.3158431 -3.729748 6.374593 0.3158431 -4.264621 6.374593 0.3158431 -4.876131 6.374593 0.3158431 -5.575266 6.374593 0.3158431 -6.374593 6.374593 0.3158431 -0 0 0.3689944 -0 0 0.3689944 -0 0 0.3689944 -0.002268731 0 0.3689944 -0.07076883 0 0.3689944 -0.1119241 0 0.3689944 -0.1475052 0 0.3689944 -0.1846606 0 0.3689944 -0.2245119 0 0.3689944 -0.2679612 0 0.3689944 -0.3158431 0 0.3689944 -0.3689944 0 0.3689944 -0.4282948 0 0.3689944 -0.494694 0 0.3689944 -0.5692344 0 0.3689944 -0.6530715 0 0.3689944 -0.7474945 0 0.3689944 -0.8539475 0 0.3689944 -0.974052 0 0.3689944 -1.113885 0 0.3689944 -1.27456 0 0.3689944 -1.458117 0 0.3689944 -1.667858 0 0.3689944 -1.907556 0 0.3689944 -2.181521 0 0.3689944 -2.494678 0 0.3689944 -2.852659 0 0.3689944 -3.261896 0 0.3689944 -3.729748 0 0.3689944 -4.264621 0 0.3689944 -4.876131 0 0.3689944 -5.575266 0 0.3689944 -6.374593 0 0.3689944 -0 0 0.3689944 -0 0 0.3689944 -0 0 0.3689944 -0.002268731 0 0.3689944 -0.07076883 0 0.3689944 -0.1119241 0 0.3689944 -0.1475052 0 0.3689944 -0.1846606 0 0.3689944 -0.2245119 0 0.3689944 -0.2679612 0 0.3689944 -0.3158431 0 0.3689944 -0.3689944 0 0.3689944 -0.4282948 0 0.3689944 -0.494694 0 0.3689944 -0.5692344 0 0.3689944 -0.6530715 0 0.3689944 -0.7474945 0 0.3689944 -0.8539475 0 0.3689944 -0.974052 0 0.3689944 -1.113885 0 0.3689944 -1.27456 0 0.3689944 -1.458117 0 0.3689944 -1.667858 0 0.3689944 -1.907556 0 0.3689944 -2.181521 0 0.3689944 -2.494678 0 0.3689944 -2.852659 0 0.3689944 -3.261896 0 0.3689944 -3.729748 0 0.3689944 -4.264621 0 0.3689944 -4.876131 0 0.3689944 -5.575266 0 0.3689944 -6.374593 0 0.3689944 -0 0 0.3689944 -0 0 0.3689944 -0 0 0.3689944 -0.002268731 0 0.3689944 -0.07076883 0 0.3689944 -0.1119241 0 0.3689944 -0.1475052 0 0.3689944 -0.1846606 0 0.3689944 -0.2245119 0 0.3689944 -0.2679612 0 0.3689944 -0.3158431 0 0.3689944 -0.3689944 0 0.3689944 -0.4282948 0 0.3689944 -0.494694 0 0.3689944 -0.5692344 0 0.3689944 -0.6530715 0 0.3689944 -0.7474945 0 0.3689944 -0.8539475 0 0.3689944 -0.974052 0 0.3689944 -1.113885 0 0.3689944 -1.27456 0 0.3689944 -1.458117 0 0.3689944 -1.667858 0 0.3689944 -1.907556 0 0.3689944 -2.181521 0 0.3689944 -2.494678 0 0.3689944 -2.852659 0 0.3689944 -3.261896 0 0.3689944 -3.729748 0 0.3689944 -4.264621 0 0.3689944 -4.876131 0 0.3689944 -5.575266 0 0.3689944 -6.374593 0 0.3689944 -0 0.002268731 0.3689944 -0 0.002268731 0.3689944 -0 0.002268731 0.3689944 -0.002268731 0.002268731 0.3689944 -0.07076883 0.002268731 0.3689944 -0.1119241 0.002268731 0.3689944 -0.1475052 0.002268731 0.3689944 -0.1846606 0.002268731 0.3689944 -0.2245119 0.002268731 0.3689944 -0.2679612 0.002268731 0.3689944 -0.3158431 0.002268731 0.3689944 -0.3689944 0.002268731 0.3689944 -0.4282948 0.002268731 0.3689944 -0.494694 0.002268731 0.3689944 -0.5692344 0.002268731 0.3689944 -0.6530715 0.002268731 0.3689944 -0.7474945 0.002268731 0.3689944 -0.8539475 0.002268731 0.3689944 -0.974052 0.002268731 0.3689944 -1.113885 0.002268731 0.3689944 -1.27456 0.002268731 0.3689944 -1.458117 0.002268731 0.3689944 -1.667858 0.002268731 0.3689944 -1.907556 0.002268731 0.3689944 -2.181521 0.002268731 0.3689944 -2.494678 0.002268731 0.3689944 -2.852659 0.002268731 0.3689944 -3.261896 0.002268731 0.3689944 -3.729748 0.002268731 0.3689944 -4.264621 0.002268731 0.3689944 -4.876131 0.002268731 0.3689944 -5.575266 0.002268731 0.3689944 -6.374593 0.002268731 0.3689944 -0 0.07076883 0.3689944 -0 0.07076883 0.3689944 -0 0.07076883 0.3689944 -0.002268731 0.07076883 0.3689944 -0.07076883 0.07076883 0.3689944 -0.1119241 0.07076883 0.3689944 -0.1475052 0.07076883 0.3689944 -0.1846606 0.07076883 0.3689944 -0.2245119 0.07076883 0.3689944 -0.2679612 0.07076883 0.3689944 -0.3158431 0.07076883 0.3689944 -0.3689944 0.07076883 0.3689944 -0.4282948 0.07076883 0.3689944 -0.494694 0.07076883 0.3689944 -0.5692344 0.07076883 0.3689944 -0.6530715 0.07076883 0.3689944 -0.7474945 0.07076883 0.3689944 -0.8539475 0.07076883 0.3689944 -0.974052 0.07076883 0.3689944 -1.113885 0.07076883 0.3689944 -1.27456 0.07076883 0.3689944 -1.458117 0.07076883 0.3689944 -1.667858 0.07076883 0.3689944 -1.907556 0.07076883 0.3689944 -2.181521 0.07076883 0.3689944 -2.494678 0.07076883 0.3689944 -2.852659 0.07076883 0.3689944 -3.261896 0.07076883 0.3689944 -3.729748 0.07076883 0.3689944 -4.264621 0.07076883 0.3689944 -4.876131 0.07076883 0.3689944 -5.575266 0.07076883 0.3689944 -6.374593 0.07076883 0.3689944 -0 0.1119241 0.3689944 -0 0.1119241 0.3689944 -0 0.1119241 0.3689944 -0.002268731 0.1119241 0.3689944 -0.07076883 0.1119241 0.3689944 -0.1119241 0.1119241 0.3689944 -0.1475052 0.1119241 0.3689944 -0.1846606 0.1119241 0.3689944 -0.2245119 0.1119241 0.3689944 -0.2679612 0.1119241 0.3689944 -0.3158431 0.1119241 0.3689944 -0.3689944 0.1119241 0.3689944 -0.4282948 0.1119241 0.3689944 -0.494694 0.1119241 0.3689944 -0.5692344 0.1119241 0.3689944 -0.6530715 0.1119241 0.3689944 -0.7474945 0.1119241 0.3689944 -0.8539475 0.1119241 0.3689944 -0.974052 0.1119241 0.3689944 -1.113885 0.1119241 0.3689944 -1.27456 0.1119241 0.3689944 -1.458117 0.1119241 0.3689944 -1.667858 0.1119241 0.3689944 -1.907556 0.1119241 0.3689944 -2.181521 0.1119241 0.3689944 -2.494678 0.1119241 0.3689944 -2.852659 0.1119241 0.3689944 -3.261896 0.1119241 0.3689944 -3.729748 0.1119241 0.3689944 -4.264621 0.1119241 0.3689944 -4.876131 0.1119241 0.3689944 -5.575266 0.1119241 0.3689944 -6.374593 0.1119241 0.3689944 -0 0.1475052 0.3689944 -0 0.1475052 0.3689944 -0 0.1475052 0.3689944 -0.002268731 0.1475052 0.3689944 -0.07076883 0.1475052 0.3689944 -0.1119241 0.1475052 0.3689944 -0.1475052 0.1475052 0.3689944 -0.1846606 0.1475052 0.3689944 -0.2245119 0.1475052 0.3689944 -0.2679612 0.1475052 0.3689944 -0.3158431 0.1475052 0.3689944 -0.3689944 0.1475052 0.3689944 -0.4282948 0.1475052 0.3689944 -0.494694 0.1475052 0.3689944 -0.5692344 0.1475052 0.3689944 -0.6530715 0.1475052 0.3689944 -0.7474945 0.1475052 0.3689944 -0.8539475 0.1475052 0.3689944 -0.974052 0.1475052 0.3689944 -1.113885 0.1475052 0.3689944 -1.27456 0.1475052 0.3689944 -1.458117 0.1475052 0.3689944 -1.667858 0.1475052 0.3689944 -1.907556 0.1475052 0.3689944 -2.181521 0.1475052 0.3689944 -2.494678 0.1475052 0.3689944 -2.852659 0.1475052 0.3689944 -3.261896 0.1475052 0.3689944 -3.729748 0.1475052 0.3689944 -4.264621 0.1475052 0.3689944 -4.876131 0.1475052 0.3689944 -5.575266 0.1475052 0.3689944 -6.374593 0.1475052 0.3689944 -0 0.1846606 0.3689944 -0 0.1846606 0.3689944 -0 0.1846606 0.3689944 -0.002268731 0.1846606 0.3689944 -0.07076883 0.1846606 0.3689944 -0.1119241 0.1846606 0.3689944 -0.1475052 0.1846606 0.3689944 -0.1846606 0.1846606 0.3689944 -0.2245119 0.1846606 0.3689944 -0.2679612 0.1846606 0.3689944 -0.3158431 0.1846606 0.3689944 -0.3689944 0.1846606 0.3689944 -0.4282948 0.1846606 0.3689944 -0.494694 0.1846606 0.3689944 -0.5692344 0.1846606 0.3689944 -0.6530715 0.1846606 0.3689944 -0.7474945 0.1846606 0.3689944 -0.8539475 0.1846606 0.3689944 -0.974052 0.1846606 0.3689944 -1.113885 0.1846606 0.3689944 -1.27456 0.1846606 0.3689944 -1.458117 0.1846606 0.3689944 -1.667858 0.1846606 0.3689944 -1.907556 0.1846606 0.3689944 -2.181521 0.1846606 0.3689944 -2.494678 0.1846606 0.3689944 -2.852659 0.1846606 0.3689944 -3.261896 0.1846606 0.3689944 -3.729748 0.1846606 0.3689944 -4.264621 0.1846606 0.3689944 -4.876131 0.1846606 0.3689944 -5.575266 0.1846606 0.3689944 -6.374593 0.1846606 0.3689944 -0 0.2245119 0.3689944 -0 0.2245119 0.3689944 -0 0.2245119 0.3689944 -0.002268731 0.2245119 0.3689944 -0.07076883 0.2245119 0.3689944 -0.1119241 0.2245119 0.3689944 -0.1475052 0.2245119 0.3689944 -0.1846606 0.2245119 0.3689944 -0.2245119 0.2245119 0.3689944 -0.2679612 0.2245119 0.3689944 -0.3158431 0.2245119 0.3689944 -0.3689944 0.2245119 0.3689944 -0.4282948 0.2245119 0.3689944 -0.494694 0.2245119 0.3689944 -0.5692344 0.2245119 0.3689944 -0.6530715 0.2245119 0.3689944 -0.7474945 0.2245119 0.3689944 -0.8539475 0.2245119 0.3689944 -0.974052 0.2245119 0.3689944 -1.113885 0.2245119 0.3689944 -1.27456 0.2245119 0.3689944 -1.458117 0.2245119 0.3689944 -1.667858 0.2245119 0.3689944 -1.907556 0.2245119 0.3689944 -2.181521 0.2245119 0.3689944 -2.494678 0.2245119 0.3689944 -2.852659 0.2245119 0.3689944 -3.261896 0.2245119 0.3689944 -3.729748 0.2245119 0.3689944 -4.264621 0.2245119 0.3689944 -4.876131 0.2245119 0.3689944 -5.575266 0.2245119 0.3689944 -6.374593 0.2245119 0.3689944 -0 0.2679612 0.3689944 -0 0.2679612 0.3689944 -0 0.2679612 0.3689944 -0.002268731 0.2679612 0.3689944 -0.07076883 0.2679612 0.3689944 -0.1119241 0.2679612 0.3689944 -0.1475052 0.2679612 0.3689944 -0.1846606 0.2679612 0.3689944 -0.2245119 0.2679612 0.3689944 -0.2679612 0.2679612 0.3689944 -0.3158431 0.2679612 0.3689944 -0.3689944 0.2679612 0.3689944 -0.4282948 0.2679612 0.3689944 -0.494694 0.2679612 0.3689944 -0.5692344 0.2679612 0.3689944 -0.6530715 0.2679612 0.3689944 -0.7474945 0.2679612 0.3689944 -0.8539475 0.2679612 0.3689944 -0.974052 0.2679612 0.3689944 -1.113885 0.2679612 0.3689944 -1.27456 0.2679612 0.3689944 -1.458117 0.2679612 0.3689944 -1.667858 0.2679612 0.3689944 -1.907556 0.2679612 0.3689944 -2.181521 0.2679612 0.3689944 -2.494678 0.2679612 0.3689944 -2.852659 0.2679612 0.3689944 -3.261896 0.2679612 0.3689944 -3.729748 0.2679612 0.3689944 -4.264621 0.2679612 0.3689944 -4.876131 0.2679612 0.3689944 -5.575266 0.2679612 0.3689944 -6.374593 0.2679612 0.3689944 -0 0.3158431 0.3689944 -0 0.3158431 0.3689944 -0 0.3158431 0.3689944 -0.002268731 0.3158431 0.3689944 -0.07076883 0.3158431 0.3689944 -0.1119241 0.3158431 0.3689944 -0.1475052 0.3158431 0.3689944 -0.1846606 0.3158431 0.3689944 -0.2245119 0.3158431 0.3689944 -0.2679612 0.3158431 0.3689944 -0.3158431 0.3158431 0.3689944 -0.3689944 0.3158431 0.3689944 -0.4282948 0.3158431 0.3689944 -0.494694 0.3158431 0.3689944 -0.5692344 0.3158431 0.3689944 -0.6530715 0.3158431 0.3689944 -0.7474945 0.3158431 0.3689944 -0.8539475 0.3158431 0.3689944 -0.974052 0.3158431 0.3689944 -1.113885 0.3158431 0.3689944 -1.27456 0.3158431 0.3689944 -1.458117 0.3158431 0.3689944 -1.667858 0.3158431 0.3689944 -1.907556 0.3158431 0.3689944 -2.181521 0.3158431 0.3689944 -2.494678 0.3158431 0.3689944 -2.852659 0.3158431 0.3689944 -3.261896 0.3158431 0.3689944 -3.729748 0.3158431 0.3689944 -4.264621 0.3158431 0.3689944 -4.876131 0.3158431 0.3689944 -5.575266 0.3158431 0.3689944 -6.374593 0.3158431 0.3689944 -0 0.3689944 0.3689944 -0 0.3689944 0.3689944 -0 0.3689944 0.3689944 -0.002268731 0.3689944 0.3689944 -0.07076883 0.3689944 0.3689944 -0.1119241 0.3689944 0.3689944 -0.1475052 0.3689944 0.3689944 -0.1846606 0.3689944 0.3689944 -0.2245119 0.3689944 0.3689944 -0.2679612 0.3689944 0.3689944 -0.3158431 0.3689944 0.3689944 -0.3689944 0.3689944 0.3689944 -0.4282948 0.3689944 0.3689944 -0.494694 0.3689944 0.3689944 -0.5692344 0.3689944 0.3689944 -0.6530715 0.3689944 0.3689944 -0.7474945 0.3689944 0.3689944 -0.8539475 0.3689944 0.3689944 -0.974052 0.3689944 0.3689944 -1.113885 0.3689944 0.3689944 -1.27456 0.3689944 0.3689944 -1.458117 0.3689944 0.3689944 -1.667858 0.3689944 0.3689944 -1.907556 0.3689944 0.3689944 -2.181521 0.3689944 0.3689944 -2.494678 0.3689944 0.3689944 -2.852659 0.3689944 0.3689944 -3.261896 0.3689944 0.3689944 -3.729748 0.3689944 0.3689944 -4.264621 0.3689944 0.3689944 -4.876131 0.3689944 0.3689944 -5.575266 0.3689944 0.3689944 -6.374593 0.3689944 0.3689944 -0 0.4282948 0.3689944 -0 0.4282948 0.3689944 -0 0.4282948 0.3689944 -0.002268731 0.4282948 0.3689944 -0.07076883 0.4282948 0.3689944 -0.1119241 0.4282948 0.3689944 -0.1475052 0.4282948 0.3689944 -0.1846606 0.4282948 0.3689944 -0.2245119 0.4282948 0.3689944 -0.2679612 0.4282948 0.3689944 -0.3158431 0.4282948 0.3689944 -0.3689944 0.4282948 0.3689944 -0.4282948 0.4282948 0.3689944 -0.494694 0.4282948 0.3689944 -0.5692344 0.4282948 0.3689944 -0.6530715 0.4282948 0.3689944 -0.7474945 0.4282948 0.3689944 -0.8539475 0.4282948 0.3689944 -0.974052 0.4282948 0.3689944 -1.113885 0.4282948 0.3689944 -1.27456 0.4282948 0.3689944 -1.458117 0.4282948 0.3689944 -1.667858 0.4282948 0.3689944 -1.907556 0.4282948 0.3689944 -2.181521 0.4282948 0.3689944 -2.494678 0.4282948 0.3689944 -2.852659 0.4282948 0.3689944 -3.261896 0.4282948 0.3689944 -3.729748 0.4282948 0.3689944 -4.264621 0.4282948 0.3689944 -4.876131 0.4282948 0.3689944 -5.575266 0.4282948 0.3689944 -6.374593 0.4282948 0.3689944 -0 0.494694 0.3689944 -0 0.494694 0.3689944 -0 0.494694 0.3689944 -0.002268731 0.494694 0.3689944 -0.07076883 0.494694 0.3689944 -0.1119241 0.494694 0.3689944 -0.1475052 0.494694 0.3689944 -0.1846606 0.494694 0.3689944 -0.2245119 0.494694 0.3689944 -0.2679612 0.494694 0.3689944 -0.3158431 0.494694 0.3689944 -0.3689944 0.494694 0.3689944 -0.4282948 0.494694 0.3689944 -0.494694 0.494694 0.3689944 -0.5692344 0.494694 0.3689944 -0.6530715 0.494694 0.3689944 -0.7474945 0.494694 0.3689944 -0.8539475 0.494694 0.3689944 -0.974052 0.494694 0.3689944 -1.113885 0.494694 0.3689944 -1.27456 0.494694 0.3689944 -1.458117 0.494694 0.3689944 -1.667858 0.494694 0.3689944 -1.907556 0.494694 0.3689944 -2.181521 0.494694 0.3689944 -2.494678 0.494694 0.3689944 -2.852659 0.494694 0.3689944 -3.261896 0.494694 0.3689944 -3.729748 0.494694 0.3689944 -4.264621 0.494694 0.3689944 -4.876131 0.494694 0.3689944 -5.575266 0.494694 0.3689944 -6.374593 0.494694 0.3689944 -0 0.5692344 0.3689944 -0 0.5692344 0.3689944 -0 0.5692344 0.3689944 -0.002268731 0.5692344 0.3689944 -0.07076883 0.5692344 0.3689944 -0.1119241 0.5692344 0.3689944 -0.1475052 0.5692344 0.3689944 -0.1846606 0.5692344 0.3689944 -0.2245119 0.5692344 0.3689944 -0.2679612 0.5692344 0.3689944 -0.3158431 0.5692344 0.3689944 -0.3689944 0.5692344 0.3689944 -0.4282948 0.5692344 0.3689944 -0.494694 0.5692344 0.3689944 -0.5692344 0.5692344 0.3689944 -0.6530715 0.5692344 0.3689944 -0.7474945 0.5692344 0.3689944 -0.8539475 0.5692344 0.3689944 -0.974052 0.5692344 0.3689944 -1.113885 0.5692344 0.3689944 -1.27456 0.5692344 0.3689944 -1.458117 0.5692344 0.3689944 -1.667858 0.5692344 0.3689944 -1.907556 0.5692344 0.3689944 -2.181521 0.5692344 0.3689944 -2.494678 0.5692344 0.3689944 -2.852659 0.5692344 0.3689944 -3.261896 0.5692344 0.3689944 -3.729748 0.5692344 0.3689944 -4.264621 0.5692344 0.3689944 -4.876131 0.5692344 0.3689944 -5.575266 0.5692344 0.3689944 -6.374593 0.5692344 0.3689944 -0 0.6530715 0.3689944 -0 0.6530715 0.3689944 -0 0.6530715 0.3689944 -0.002268731 0.6530715 0.3689944 -0.07076883 0.6530715 0.3689944 -0.1119241 0.6530715 0.3689944 -0.1475052 0.6530715 0.3689944 -0.1846606 0.6530715 0.3689944 -0.2245119 0.6530715 0.3689944 -0.2679612 0.6530715 0.3689944 -0.3158431 0.6530715 0.3689944 -0.3689944 0.6530715 0.3689944 -0.4282948 0.6530715 0.3689944 -0.494694 0.6530715 0.3689944 -0.5692344 0.6530715 0.3689944 -0.6530715 0.6530715 0.3689944 -0.7474945 0.6530715 0.3689944 -0.8539475 0.6530715 0.3689944 -0.974052 0.6530715 0.3689944 -1.113885 0.6530715 0.3689944 -1.27456 0.6530715 0.3689944 -1.458117 0.6530715 0.3689944 -1.667858 0.6530715 0.3689944 -1.907556 0.6530715 0.3689944 -2.181521 0.6530715 0.3689944 -2.494678 0.6530715 0.3689944 -2.852659 0.6530715 0.3689944 -3.261896 0.6530715 0.3689944 -3.729748 0.6530715 0.3689944 -4.264621 0.6530715 0.3689944 -4.876131 0.6530715 0.3689944 -5.575266 0.6530715 0.3689944 -6.374593 0.6530715 0.3689944 -0 0.7474945 0.3689944 -0 0.7474945 0.3689944 -0 0.7474945 0.3689944 -0.002268731 0.7474945 0.3689944 -0.07076883 0.7474945 0.3689944 -0.1119241 0.7474945 0.3689944 -0.1475052 0.7474945 0.3689944 -0.1846606 0.7474945 0.3689944 -0.2245119 0.7474945 0.3689944 -0.2679612 0.7474945 0.3689944 -0.3158431 0.7474945 0.3689944 -0.3689944 0.7474945 0.3689944 -0.4282948 0.7474945 0.3689944 -0.494694 0.7474945 0.3689944 -0.5692344 0.7474945 0.3689944 -0.6530715 0.7474945 0.3689944 -0.7474945 0.7474945 0.3689944 -0.8539475 0.7474945 0.3689944 -0.974052 0.7474945 0.3689944 -1.113885 0.7474945 0.3689944 -1.27456 0.7474945 0.3689944 -1.458117 0.7474945 0.3689944 -1.667858 0.7474945 0.3689944 -1.907556 0.7474945 0.3689944 -2.181521 0.7474945 0.3689944 -2.494678 0.7474945 0.3689944 -2.852659 0.7474945 0.3689944 -3.261896 0.7474945 0.3689944 -3.729748 0.7474945 0.3689944 -4.264621 0.7474945 0.3689944 -4.876131 0.7474945 0.3689944 -5.575266 0.7474945 0.3689944 -6.374593 0.7474945 0.3689944 -0 0.8539475 0.3689944 -0 0.8539475 0.3689944 -0 0.8539475 0.3689944 -0.002268731 0.8539475 0.3689944 -0.07076883 0.8539475 0.3689944 -0.1119241 0.8539475 0.3689944 -0.1475052 0.8539475 0.3689944 -0.1846606 0.8539475 0.3689944 -0.2245119 0.8539475 0.3689944 -0.2679612 0.8539475 0.3689944 -0.3158431 0.8539475 0.3689944 -0.3689944 0.8539475 0.3689944 -0.4282948 0.8539475 0.3689944 -0.494694 0.8539475 0.3689944 -0.5692344 0.8539475 0.3689944 -0.6530715 0.8539475 0.3689944 -0.7474945 0.8539475 0.3689944 -0.8539475 0.8539475 0.3689944 -0.974052 0.8539475 0.3689944 -1.113885 0.8539475 0.3689944 -1.27456 0.8539475 0.3689944 -1.458117 0.8539475 0.3689944 -1.667858 0.8539475 0.3689944 -1.907556 0.8539475 0.3689944 -2.181521 0.8539475 0.3689944 -2.494678 0.8539475 0.3689944 -2.852659 0.8539475 0.3689944 -3.261896 0.8539475 0.3689944 -3.729748 0.8539475 0.3689944 -4.264621 0.8539475 0.3689944 -4.876131 0.8539475 0.3689944 -5.575266 0.8539475 0.3689944 -6.374593 0.8539475 0.3689944 -0 0.974052 0.3689944 -0 0.974052 0.3689944 -0 0.974052 0.3689944 -0.002268731 0.974052 0.3689944 -0.07076883 0.974052 0.3689944 -0.1119241 0.974052 0.3689944 -0.1475052 0.974052 0.3689944 -0.1846606 0.974052 0.3689944 -0.2245119 0.974052 0.3689944 -0.2679612 0.974052 0.3689944 -0.3158431 0.974052 0.3689944 -0.3689944 0.974052 0.3689944 -0.4282948 0.974052 0.3689944 -0.494694 0.974052 0.3689944 -0.5692344 0.974052 0.3689944 -0.6530715 0.974052 0.3689944 -0.7474945 0.974052 0.3689944 -0.8539475 0.974052 0.3689944 -0.974052 0.974052 0.3689944 -1.113885 0.974052 0.3689944 -1.27456 0.974052 0.3689944 -1.458117 0.974052 0.3689944 -1.667858 0.974052 0.3689944 -1.907556 0.974052 0.3689944 -2.181521 0.974052 0.3689944 -2.494678 0.974052 0.3689944 -2.852659 0.974052 0.3689944 -3.261896 0.974052 0.3689944 -3.729748 0.974052 0.3689944 -4.264621 0.974052 0.3689944 -4.876131 0.974052 0.3689944 -5.575266 0.974052 0.3689944 -6.374593 0.974052 0.3689944 -0 1.113885 0.3689944 -0 1.113885 0.3689944 -0 1.113885 0.3689944 -0.002268731 1.113885 0.3689944 -0.07076883 1.113885 0.3689944 -0.1119241 1.113885 0.3689944 -0.1475052 1.113885 0.3689944 -0.1846606 1.113885 0.3689944 -0.2245119 1.113885 0.3689944 -0.2679612 1.113885 0.3689944 -0.3158431 1.113885 0.3689944 -0.3689944 1.113885 0.3689944 -0.4282948 1.113885 0.3689944 -0.494694 1.113885 0.3689944 -0.5692344 1.113885 0.3689944 -0.6530715 1.113885 0.3689944 -0.7474945 1.113885 0.3689944 -0.8539475 1.113885 0.3689944 -0.974052 1.113885 0.3689944 -1.113885 1.113885 0.3689944 -1.27456 1.113885 0.3689944 -1.458117 1.113885 0.3689944 -1.667858 1.113885 0.3689944 -1.907556 1.113885 0.3689944 -2.181521 1.113885 0.3689944 -2.494678 1.113885 0.3689944 -2.852659 1.113885 0.3689944 -3.261896 1.113885 0.3689944 -3.729748 1.113885 0.3689944 -4.264621 1.113885 0.3689944 -4.876131 1.113885 0.3689944 -5.575266 1.113885 0.3689944 -6.374593 1.113885 0.3689944 -0 1.27456 0.3689944 -0 1.27456 0.3689944 -0 1.27456 0.3689944 -0.002268731 1.27456 0.3689944 -0.07076883 1.27456 0.3689944 -0.1119241 1.27456 0.3689944 -0.1475052 1.27456 0.3689944 -0.1846606 1.27456 0.3689944 -0.2245119 1.27456 0.3689944 -0.2679612 1.27456 0.3689944 -0.3158431 1.27456 0.3689944 -0.3689944 1.27456 0.3689944 -0.4282948 1.27456 0.3689944 -0.494694 1.27456 0.3689944 -0.5692344 1.27456 0.3689944 -0.6530715 1.27456 0.3689944 -0.7474945 1.27456 0.3689944 -0.8539475 1.27456 0.3689944 -0.974052 1.27456 0.3689944 -1.113885 1.27456 0.3689944 -1.27456 1.27456 0.3689944 -1.458117 1.27456 0.3689944 -1.667858 1.27456 0.3689944 -1.907556 1.27456 0.3689944 -2.181521 1.27456 0.3689944 -2.494678 1.27456 0.3689944 -2.852659 1.27456 0.3689944 -3.261896 1.27456 0.3689944 -3.729748 1.27456 0.3689944 -4.264621 1.27456 0.3689944 -4.876131 1.27456 0.3689944 -5.575266 1.27456 0.3689944 -6.374593 1.27456 0.3689944 -0 1.458117 0.3689944 -0 1.458117 0.3689944 -0 1.458117 0.3689944 -0.002268731 1.458117 0.3689944 -0.07076883 1.458117 0.3689944 -0.1119241 1.458117 0.3689944 -0.1475052 1.458117 0.3689944 -0.1846606 1.458117 0.3689944 -0.2245119 1.458117 0.3689944 -0.2679612 1.458117 0.3689944 -0.3158431 1.458117 0.3689944 -0.3689944 1.458117 0.3689944 -0.4282948 1.458117 0.3689944 -0.494694 1.458117 0.3689944 -0.5692344 1.458117 0.3689944 -0.6530715 1.458117 0.3689944 -0.7474945 1.458117 0.3689944 -0.8539475 1.458117 0.3689944 -0.974052 1.458117 0.3689944 -1.113885 1.458117 0.3689944 -1.27456 1.458117 0.3689944 -1.458117 1.458117 0.3689944 -1.667858 1.458117 0.3689944 -1.907556 1.458117 0.3689944 -2.181521 1.458117 0.3689944 -2.494678 1.458117 0.3689944 -2.852659 1.458117 0.3689944 -3.261896 1.458117 0.3689944 -3.729748 1.458117 0.3689944 -4.264621 1.458117 0.3689944 -4.876131 1.458117 0.3689944 -5.575266 1.458117 0.3689944 -6.374593 1.458117 0.3689944 -0 1.667858 0.3689944 -0 1.667858 0.3689944 -0 1.667858 0.3689944 -0.002268731 1.667858 0.3689944 -0.07076883 1.667858 0.3689944 -0.1119241 1.667858 0.3689944 -0.1475052 1.667858 0.3689944 -0.1846606 1.667858 0.3689944 -0.2245119 1.667858 0.3689944 -0.2679612 1.667858 0.3689944 -0.3158431 1.667858 0.3689944 -0.3689944 1.667858 0.3689944 -0.4282948 1.667858 0.3689944 -0.494694 1.667858 0.3689944 -0.5692344 1.667858 0.3689944 -0.6530715 1.667858 0.3689944 -0.7474945 1.667858 0.3689944 -0.8539475 1.667858 0.3689944 -0.974052 1.667858 0.3689944 -1.113885 1.667858 0.3689944 -1.27456 1.667858 0.3689944 -1.458117 1.667858 0.3689944 -1.667858 1.667858 0.3689944 -1.907556 1.667858 0.3689944 -2.181521 1.667858 0.3689944 -2.494678 1.667858 0.3689944 -2.852659 1.667858 0.3689944 -3.261896 1.667858 0.3689944 -3.729748 1.667858 0.3689944 -4.264621 1.667858 0.3689944 -4.876131 1.667858 0.3689944 -5.575266 1.667858 0.3689944 -6.374593 1.667858 0.3689944 -0 1.907556 0.3689944 -0 1.907556 0.3689944 -0 1.907556 0.3689944 -0.002268731 1.907556 0.3689944 -0.07076883 1.907556 0.3689944 -0.1119241 1.907556 0.3689944 -0.1475052 1.907556 0.3689944 -0.1846606 1.907556 0.3689944 -0.2245119 1.907556 0.3689944 -0.2679612 1.907556 0.3689944 -0.3158431 1.907556 0.3689944 -0.3689944 1.907556 0.3689944 -0.4282948 1.907556 0.3689944 -0.494694 1.907556 0.3689944 -0.5692344 1.907556 0.3689944 -0.6530715 1.907556 0.3689944 -0.7474945 1.907556 0.3689944 -0.8539475 1.907556 0.3689944 -0.974052 1.907556 0.3689944 -1.113885 1.907556 0.3689944 -1.27456 1.907556 0.3689944 -1.458117 1.907556 0.3689944 -1.667858 1.907556 0.3689944 -1.907556 1.907556 0.3689944 -2.181521 1.907556 0.3689944 -2.494678 1.907556 0.3689944 -2.852659 1.907556 0.3689944 -3.261896 1.907556 0.3689944 -3.729748 1.907556 0.3689944 -4.264621 1.907556 0.3689944 -4.876131 1.907556 0.3689944 -5.575266 1.907556 0.3689944 -6.374593 1.907556 0.3689944 -0 2.181521 0.3689944 -0 2.181521 0.3689944 -0 2.181521 0.3689944 -0.002268731 2.181521 0.3689944 -0.07076883 2.181521 0.3689944 -0.1119241 2.181521 0.3689944 -0.1475052 2.181521 0.3689944 -0.1846606 2.181521 0.3689944 -0.2245119 2.181521 0.3689944 -0.2679612 2.181521 0.3689944 -0.3158431 2.181521 0.3689944 -0.3689944 2.181521 0.3689944 -0.4282948 2.181521 0.3689944 -0.494694 2.181521 0.3689944 -0.5692344 2.181521 0.3689944 -0.6530715 2.181521 0.3689944 -0.7474945 2.181521 0.3689944 -0.8539475 2.181521 0.3689944 -0.974052 2.181521 0.3689944 -1.113885 2.181521 0.3689944 -1.27456 2.181521 0.3689944 -1.458117 2.181521 0.3689944 -1.667858 2.181521 0.3689944 -1.907556 2.181521 0.3689944 -2.181521 2.181521 0.3689944 -2.494678 2.181521 0.3689944 -2.852659 2.181521 0.3689944 -3.261896 2.181521 0.3689944 -3.729748 2.181521 0.3689944 -4.264621 2.181521 0.3689944 -4.876131 2.181521 0.3689944 -5.575266 2.181521 0.3689944 -6.374593 2.181521 0.3689944 -0 2.494678 0.3689944 -0 2.494678 0.3689944 -0 2.494678 0.3689944 -0.002268731 2.494678 0.3689944 -0.07076883 2.494678 0.3689944 -0.1119241 2.494678 0.3689944 -0.1475052 2.494678 0.3689944 -0.1846606 2.494678 0.3689944 -0.2245119 2.494678 0.3689944 -0.2679612 2.494678 0.3689944 -0.3158431 2.494678 0.3689944 -0.3689944 2.494678 0.3689944 -0.4282948 2.494678 0.3689944 -0.494694 2.494678 0.3689944 -0.5692344 2.494678 0.3689944 -0.6530715 2.494678 0.3689944 -0.7474945 2.494678 0.3689944 -0.8539475 2.494678 0.3689944 -0.974052 2.494678 0.3689944 -1.113885 2.494678 0.3689944 -1.27456 2.494678 0.3689944 -1.458117 2.494678 0.3689944 -1.667858 2.494678 0.3689944 -1.907556 2.494678 0.3689944 -2.181521 2.494678 0.3689944 -2.494678 2.494678 0.3689944 -2.852659 2.494678 0.3689944 -3.261896 2.494678 0.3689944 -3.729748 2.494678 0.3689944 -4.264621 2.494678 0.3689944 -4.876131 2.494678 0.3689944 -5.575266 2.494678 0.3689944 -6.374593 2.494678 0.3689944 -0 2.852659 0.3689944 -0 2.852659 0.3689944 -0 2.852659 0.3689944 -0.002268731 2.852659 0.3689944 -0.07076883 2.852659 0.3689944 -0.1119241 2.852659 0.3689944 -0.1475052 2.852659 0.3689944 -0.1846606 2.852659 0.3689944 -0.2245119 2.852659 0.3689944 -0.2679612 2.852659 0.3689944 -0.3158431 2.852659 0.3689944 -0.3689944 2.852659 0.3689944 -0.4282948 2.852659 0.3689944 -0.494694 2.852659 0.3689944 -0.5692344 2.852659 0.3689944 -0.6530715 2.852659 0.3689944 -0.7474945 2.852659 0.3689944 -0.8539475 2.852659 0.3689944 -0.974052 2.852659 0.3689944 -1.113885 2.852659 0.3689944 -1.27456 2.852659 0.3689944 -1.458117 2.852659 0.3689944 -1.667858 2.852659 0.3689944 -1.907556 2.852659 0.3689944 -2.181521 2.852659 0.3689944 -2.494678 2.852659 0.3689944 -2.852659 2.852659 0.3689944 -3.261896 2.852659 0.3689944 -3.729748 2.852659 0.3689944 -4.264621 2.852659 0.3689944 -4.876131 2.852659 0.3689944 -5.575266 2.852659 0.3689944 -6.374593 2.852659 0.3689944 -0 3.261896 0.3689944 -0 3.261896 0.3689944 -0 3.261896 0.3689944 -0.002268731 3.261896 0.3689944 -0.07076883 3.261896 0.3689944 -0.1119241 3.261896 0.3689944 -0.1475052 3.261896 0.3689944 -0.1846606 3.261896 0.3689944 -0.2245119 3.261896 0.3689944 -0.2679612 3.261896 0.3689944 -0.3158431 3.261896 0.3689944 -0.3689944 3.261896 0.3689944 -0.4282948 3.261896 0.3689944 -0.494694 3.261896 0.3689944 -0.5692344 3.261896 0.3689944 -0.6530715 3.261896 0.3689944 -0.7474945 3.261896 0.3689944 -0.8539475 3.261896 0.3689944 -0.974052 3.261896 0.3689944 -1.113885 3.261896 0.3689944 -1.27456 3.261896 0.3689944 -1.458117 3.261896 0.3689944 -1.667858 3.261896 0.3689944 -1.907556 3.261896 0.3689944 -2.181521 3.261896 0.3689944 -2.494678 3.261896 0.3689944 -2.852659 3.261896 0.3689944 -3.261896 3.261896 0.3689944 -3.729748 3.261896 0.3689944 -4.264621 3.261896 0.3689944 -4.876131 3.261896 0.3689944 -5.575266 3.261896 0.3689944 -6.374593 3.261896 0.3689944 -0 3.729748 0.3689944 -0 3.729748 0.3689944 -0 3.729748 0.3689944 -0.002268731 3.729748 0.3689944 -0.07076883 3.729748 0.3689944 -0.1119241 3.729748 0.3689944 -0.1475052 3.729748 0.3689944 -0.1846606 3.729748 0.3689944 -0.2245119 3.729748 0.3689944 -0.2679612 3.729748 0.3689944 -0.3158431 3.729748 0.3689944 -0.3689944 3.729748 0.3689944 -0.4282948 3.729748 0.3689944 -0.494694 3.729748 0.3689944 -0.5692344 3.729748 0.3689944 -0.6530715 3.729748 0.3689944 -0.7474945 3.729748 0.3689944 -0.8539475 3.729748 0.3689944 -0.974052 3.729748 0.3689944 -1.113885 3.729748 0.3689944 -1.27456 3.729748 0.3689944 -1.458117 3.729748 0.3689944 -1.667858 3.729748 0.3689944 -1.907556 3.729748 0.3689944 -2.181521 3.729748 0.3689944 -2.494678 3.729748 0.3689944 -2.852659 3.729748 0.3689944 -3.261896 3.729748 0.3689944 -3.729748 3.729748 0.3689944 -4.264621 3.729748 0.3689944 -4.876131 3.729748 0.3689944 -5.575266 3.729748 0.3689944 -6.374593 3.729748 0.3689944 -0 4.264621 0.3689944 -0 4.264621 0.3689944 -0 4.264621 0.3689944 -0.002268731 4.264621 0.3689944 -0.07076883 4.264621 0.3689944 -0.1119241 4.264621 0.3689944 -0.1475052 4.264621 0.3689944 -0.1846606 4.264621 0.3689944 -0.2245119 4.264621 0.3689944 -0.2679612 4.264621 0.3689944 -0.3158431 4.264621 0.3689944 -0.3689944 4.264621 0.3689944 -0.4282948 4.264621 0.3689944 -0.494694 4.264621 0.3689944 -0.5692344 4.264621 0.3689944 -0.6530715 4.264621 0.3689944 -0.7474945 4.264621 0.3689944 -0.8539475 4.264621 0.3689944 -0.974052 4.264621 0.3689944 -1.113885 4.264621 0.3689944 -1.27456 4.264621 0.3689944 -1.458117 4.264621 0.3689944 -1.667858 4.264621 0.3689944 -1.907556 4.264621 0.3689944 -2.181521 4.264621 0.3689944 -2.494678 4.264621 0.3689944 -2.852659 4.264621 0.3689944 -3.261896 4.264621 0.3689944 -3.729748 4.264621 0.3689944 -4.264621 4.264621 0.3689944 -4.876131 4.264621 0.3689944 -5.575266 4.264621 0.3689944 -6.374593 4.264621 0.3689944 -0 4.876131 0.3689944 -0 4.876131 0.3689944 -0 4.876131 0.3689944 -0.002268731 4.876131 0.3689944 -0.07076883 4.876131 0.3689944 -0.1119241 4.876131 0.3689944 -0.1475052 4.876131 0.3689944 -0.1846606 4.876131 0.3689944 -0.2245119 4.876131 0.3689944 -0.2679612 4.876131 0.3689944 -0.3158431 4.876131 0.3689944 -0.3689944 4.876131 0.3689944 -0.4282948 4.876131 0.3689944 -0.494694 4.876131 0.3689944 -0.5692344 4.876131 0.3689944 -0.6530715 4.876131 0.3689944 -0.7474945 4.876131 0.3689944 -0.8539475 4.876131 0.3689944 -0.974052 4.876131 0.3689944 -1.113885 4.876131 0.3689944 -1.27456 4.876131 0.3689944 -1.458117 4.876131 0.3689944 -1.667858 4.876131 0.3689944 -1.907556 4.876131 0.3689944 -2.181521 4.876131 0.3689944 -2.494678 4.876131 0.3689944 -2.852659 4.876131 0.3689944 -3.261896 4.876131 0.3689944 -3.729748 4.876131 0.3689944 -4.264621 4.876131 0.3689944 -4.876131 4.876131 0.3689944 -5.575266 4.876131 0.3689944 -6.374593 4.876131 0.3689944 -0 5.575266 0.3689944 -0 5.575266 0.3689944 -0 5.575266 0.3689944 -0.002268731 5.575266 0.3689944 -0.07076883 5.575266 0.3689944 -0.1119241 5.575266 0.3689944 -0.1475052 5.575266 0.3689944 -0.1846606 5.575266 0.3689944 -0.2245119 5.575266 0.3689944 -0.2679612 5.575266 0.3689944 -0.3158431 5.575266 0.3689944 -0.3689944 5.575266 0.3689944 -0.4282948 5.575266 0.3689944 -0.494694 5.575266 0.3689944 -0.5692344 5.575266 0.3689944 -0.6530715 5.575266 0.3689944 -0.7474945 5.575266 0.3689944 -0.8539475 5.575266 0.3689944 -0.974052 5.575266 0.3689944 -1.113885 5.575266 0.3689944 -1.27456 5.575266 0.3689944 -1.458117 5.575266 0.3689944 -1.667858 5.575266 0.3689944 -1.907556 5.575266 0.3689944 -2.181521 5.575266 0.3689944 -2.494678 5.575266 0.3689944 -2.852659 5.575266 0.3689944 -3.261896 5.575266 0.3689944 -3.729748 5.575266 0.3689944 -4.264621 5.575266 0.3689944 -4.876131 5.575266 0.3689944 -5.575266 5.575266 0.3689944 -6.374593 5.575266 0.3689944 -0 6.374593 0.3689944 -0 6.374593 0.3689944 -0 6.374593 0.3689944 -0.002268731 6.374593 0.3689944 -0.07076883 6.374593 0.3689944 -0.1119241 6.374593 0.3689944 -0.1475052 6.374593 0.3689944 -0.1846606 6.374593 0.3689944 -0.2245119 6.374593 0.3689944 -0.2679612 6.374593 0.3689944 -0.3158431 6.374593 0.3689944 -0.3689944 6.374593 0.3689944 -0.4282948 6.374593 0.3689944 -0.494694 6.374593 0.3689944 -0.5692344 6.374593 0.3689944 -0.6530715 6.374593 0.3689944 -0.7474945 6.374593 0.3689944 -0.8539475 6.374593 0.3689944 -0.974052 6.374593 0.3689944 -1.113885 6.374593 0.3689944 -1.27456 6.374593 0.3689944 -1.458117 6.374593 0.3689944 -1.667858 6.374593 0.3689944 -1.907556 6.374593 0.3689944 -2.181521 6.374593 0.3689944 -2.494678 6.374593 0.3689944 -2.852659 6.374593 0.3689944 -3.261896 6.374593 0.3689944 -3.729748 6.374593 0.3689944 -4.264621 6.374593 0.3689944 -4.876131 6.374593 0.3689944 -5.575266 6.374593 0.3689944 -6.374593 6.374593 0.3689944 -0 0 0.4282948 -0 0 0.4282948 -0 0 0.4282948 -0.002268731 0 0.4282948 -0.07076883 0 0.4282948 -0.1119241 0 0.4282948 -0.1475052 0 0.4282948 -0.1846606 0 0.4282948 -0.2245119 0 0.4282948 -0.2679612 0 0.4282948 -0.3158431 0 0.4282948 -0.3689944 0 0.4282948 -0.4282948 0 0.4282948 -0.494694 0 0.4282948 -0.5692344 0 0.4282948 -0.6530715 0 0.4282948 -0.7474945 0 0.4282948 -0.8539475 0 0.4282948 -0.974052 0 0.4282948 -1.113885 0 0.4282948 -1.27456 0 0.4282948 -1.458117 0 0.4282948 -1.667858 0 0.4282948 -1.907556 0 0.4282948 -2.181521 0 0.4282948 -2.494678 0 0.4282948 -2.852659 0 0.4282948 -3.261896 0 0.4282948 -3.729748 0 0.4282948 -4.264621 0 0.4282948 -4.876131 0 0.4282948 -5.575266 0 0.4282948 -6.374593 0 0.4282948 -0 0 0.4282948 -0 0 0.4282948 -0 0 0.4282948 -0.002268731 0 0.4282948 -0.07076883 0 0.4282948 -0.1119241 0 0.4282948 -0.1475052 0 0.4282948 -0.1846606 0 0.4282948 -0.2245119 0 0.4282948 -0.2679612 0 0.4282948 -0.3158431 0 0.4282948 -0.3689944 0 0.4282948 -0.4282948 0 0.4282948 -0.494694 0 0.4282948 -0.5692344 0 0.4282948 -0.6530715 0 0.4282948 -0.7474945 0 0.4282948 -0.8539475 0 0.4282948 -0.974052 0 0.4282948 -1.113885 0 0.4282948 -1.27456 0 0.4282948 -1.458117 0 0.4282948 -1.667858 0 0.4282948 -1.907556 0 0.4282948 -2.181521 0 0.4282948 -2.494678 0 0.4282948 -2.852659 0 0.4282948 -3.261896 0 0.4282948 -3.729748 0 0.4282948 -4.264621 0 0.4282948 -4.876131 0 0.4282948 -5.575266 0 0.4282948 -6.374593 0 0.4282948 -0 0 0.4282948 -0 0 0.4282948 -0 0 0.4282948 -0.002268731 0 0.4282948 -0.07076883 0 0.4282948 -0.1119241 0 0.4282948 -0.1475052 0 0.4282948 -0.1846606 0 0.4282948 -0.2245119 0 0.4282948 -0.2679612 0 0.4282948 -0.3158431 0 0.4282948 -0.3689944 0 0.4282948 -0.4282948 0 0.4282948 -0.494694 0 0.4282948 -0.5692344 0 0.4282948 -0.6530715 0 0.4282948 -0.7474945 0 0.4282948 -0.8539475 0 0.4282948 -0.974052 0 0.4282948 -1.113885 0 0.4282948 -1.27456 0 0.4282948 -1.458117 0 0.4282948 -1.667858 0 0.4282948 -1.907556 0 0.4282948 -2.181521 0 0.4282948 -2.494678 0 0.4282948 -2.852659 0 0.4282948 -3.261896 0 0.4282948 -3.729748 0 0.4282948 -4.264621 0 0.4282948 -4.876131 0 0.4282948 -5.575266 0 0.4282948 -6.374593 0 0.4282948 -0 0.002268731 0.4282948 -0 0.002268731 0.4282948 -0 0.002268731 0.4282948 -0.002268731 0.002268731 0.4282948 -0.07076883 0.002268731 0.4282948 -0.1119241 0.002268731 0.4282948 -0.1475052 0.002268731 0.4282948 -0.1846606 0.002268731 0.4282948 -0.2245119 0.002268731 0.4282948 -0.2679612 0.002268731 0.4282948 -0.3158431 0.002268731 0.4282948 -0.3689944 0.002268731 0.4282948 -0.4282948 0.002268731 0.4282948 -0.494694 0.002268731 0.4282948 -0.5692344 0.002268731 0.4282948 -0.6530715 0.002268731 0.4282948 -0.7474945 0.002268731 0.4282948 -0.8539475 0.002268731 0.4282948 -0.974052 0.002268731 0.4282948 -1.113885 0.002268731 0.4282948 -1.27456 0.002268731 0.4282948 -1.458117 0.002268731 0.4282948 -1.667858 0.002268731 0.4282948 -1.907556 0.002268731 0.4282948 -2.181521 0.002268731 0.4282948 -2.494678 0.002268731 0.4282948 -2.852659 0.002268731 0.4282948 -3.261896 0.002268731 0.4282948 -3.729748 0.002268731 0.4282948 -4.264621 0.002268731 0.4282948 -4.876131 0.002268731 0.4282948 -5.575266 0.002268731 0.4282948 -6.374593 0.002268731 0.4282948 -0 0.07076883 0.4282948 -0 0.07076883 0.4282948 -0 0.07076883 0.4282948 -0.002268731 0.07076883 0.4282948 -0.07076883 0.07076883 0.4282948 -0.1119241 0.07076883 0.4282948 -0.1475052 0.07076883 0.4282948 -0.1846606 0.07076883 0.4282948 -0.2245119 0.07076883 0.4282948 -0.2679612 0.07076883 0.4282948 -0.3158431 0.07076883 0.4282948 -0.3689944 0.07076883 0.4282948 -0.4282948 0.07076883 0.4282948 -0.494694 0.07076883 0.4282948 -0.5692344 0.07076883 0.4282948 -0.6530715 0.07076883 0.4282948 -0.7474945 0.07076883 0.4282948 -0.8539475 0.07076883 0.4282948 -0.974052 0.07076883 0.4282948 -1.113885 0.07076883 0.4282948 -1.27456 0.07076883 0.4282948 -1.458117 0.07076883 0.4282948 -1.667858 0.07076883 0.4282948 -1.907556 0.07076883 0.4282948 -2.181521 0.07076883 0.4282948 -2.494678 0.07076883 0.4282948 -2.852659 0.07076883 0.4282948 -3.261896 0.07076883 0.4282948 -3.729748 0.07076883 0.4282948 -4.264621 0.07076883 0.4282948 -4.876131 0.07076883 0.4282948 -5.575266 0.07076883 0.4282948 -6.374593 0.07076883 0.4282948 -0 0.1119241 0.4282948 -0 0.1119241 0.4282948 -0 0.1119241 0.4282948 -0.002268731 0.1119241 0.4282948 -0.07076883 0.1119241 0.4282948 -0.1119241 0.1119241 0.4282948 -0.1475052 0.1119241 0.4282948 -0.1846606 0.1119241 0.4282948 -0.2245119 0.1119241 0.4282948 -0.2679612 0.1119241 0.4282948 -0.3158431 0.1119241 0.4282948 -0.3689944 0.1119241 0.4282948 -0.4282948 0.1119241 0.4282948 -0.494694 0.1119241 0.4282948 -0.5692344 0.1119241 0.4282948 -0.6530715 0.1119241 0.4282948 -0.7474945 0.1119241 0.4282948 -0.8539475 0.1119241 0.4282948 -0.974052 0.1119241 0.4282948 -1.113885 0.1119241 0.4282948 -1.27456 0.1119241 0.4282948 -1.458117 0.1119241 0.4282948 -1.667858 0.1119241 0.4282948 -1.907556 0.1119241 0.4282948 -2.181521 0.1119241 0.4282948 -2.494678 0.1119241 0.4282948 -2.852659 0.1119241 0.4282948 -3.261896 0.1119241 0.4282948 -3.729748 0.1119241 0.4282948 -4.264621 0.1119241 0.4282948 -4.876131 0.1119241 0.4282948 -5.575266 0.1119241 0.4282948 -6.374593 0.1119241 0.4282948 -0 0.1475052 0.4282948 -0 0.1475052 0.4282948 -0 0.1475052 0.4282948 -0.002268731 0.1475052 0.4282948 -0.07076883 0.1475052 0.4282948 -0.1119241 0.1475052 0.4282948 -0.1475052 0.1475052 0.4282948 -0.1846606 0.1475052 0.4282948 -0.2245119 0.1475052 0.4282948 -0.2679612 0.1475052 0.4282948 -0.3158431 0.1475052 0.4282948 -0.3689944 0.1475052 0.4282948 -0.4282948 0.1475052 0.4282948 -0.494694 0.1475052 0.4282948 -0.5692344 0.1475052 0.4282948 -0.6530715 0.1475052 0.4282948 -0.7474945 0.1475052 0.4282948 -0.8539475 0.1475052 0.4282948 -0.974052 0.1475052 0.4282948 -1.113885 0.1475052 0.4282948 -1.27456 0.1475052 0.4282948 -1.458117 0.1475052 0.4282948 -1.667858 0.1475052 0.4282948 -1.907556 0.1475052 0.4282948 -2.181521 0.1475052 0.4282948 -2.494678 0.1475052 0.4282948 -2.852659 0.1475052 0.4282948 -3.261896 0.1475052 0.4282948 -3.729748 0.1475052 0.4282948 -4.264621 0.1475052 0.4282948 -4.876131 0.1475052 0.4282948 -5.575266 0.1475052 0.4282948 -6.374593 0.1475052 0.4282948 -0 0.1846606 0.4282948 -0 0.1846606 0.4282948 -0 0.1846606 0.4282948 -0.002268731 0.1846606 0.4282948 -0.07076883 0.1846606 0.4282948 -0.1119241 0.1846606 0.4282948 -0.1475052 0.1846606 0.4282948 -0.1846606 0.1846606 0.4282948 -0.2245119 0.1846606 0.4282948 -0.2679612 0.1846606 0.4282948 -0.3158431 0.1846606 0.4282948 -0.3689944 0.1846606 0.4282948 -0.4282948 0.1846606 0.4282948 -0.494694 0.1846606 0.4282948 -0.5692344 0.1846606 0.4282948 -0.6530715 0.1846606 0.4282948 -0.7474945 0.1846606 0.4282948 -0.8539475 0.1846606 0.4282948 -0.974052 0.1846606 0.4282948 -1.113885 0.1846606 0.4282948 -1.27456 0.1846606 0.4282948 -1.458117 0.1846606 0.4282948 -1.667858 0.1846606 0.4282948 -1.907556 0.1846606 0.4282948 -2.181521 0.1846606 0.4282948 -2.494678 0.1846606 0.4282948 -2.852659 0.1846606 0.4282948 -3.261896 0.1846606 0.4282948 -3.729748 0.1846606 0.4282948 -4.264621 0.1846606 0.4282948 -4.876131 0.1846606 0.4282948 -5.575266 0.1846606 0.4282948 -6.374593 0.1846606 0.4282948 -0 0.2245119 0.4282948 -0 0.2245119 0.4282948 -0 0.2245119 0.4282948 -0.002268731 0.2245119 0.4282948 -0.07076883 0.2245119 0.4282948 -0.1119241 0.2245119 0.4282948 -0.1475052 0.2245119 0.4282948 -0.1846606 0.2245119 0.4282948 -0.2245119 0.2245119 0.4282948 -0.2679612 0.2245119 0.4282948 -0.3158431 0.2245119 0.4282948 -0.3689944 0.2245119 0.4282948 -0.4282948 0.2245119 0.4282948 -0.494694 0.2245119 0.4282948 -0.5692344 0.2245119 0.4282948 -0.6530715 0.2245119 0.4282948 -0.7474945 0.2245119 0.4282948 -0.8539475 0.2245119 0.4282948 -0.974052 0.2245119 0.4282948 -1.113885 0.2245119 0.4282948 -1.27456 0.2245119 0.4282948 -1.458117 0.2245119 0.4282948 -1.667858 0.2245119 0.4282948 -1.907556 0.2245119 0.4282948 -2.181521 0.2245119 0.4282948 -2.494678 0.2245119 0.4282948 -2.852659 0.2245119 0.4282948 -3.261896 0.2245119 0.4282948 -3.729748 0.2245119 0.4282948 -4.264621 0.2245119 0.4282948 -4.876131 0.2245119 0.4282948 -5.575266 0.2245119 0.4282948 -6.374593 0.2245119 0.4282948 -0 0.2679612 0.4282948 -0 0.2679612 0.4282948 -0 0.2679612 0.4282948 -0.002268731 0.2679612 0.4282948 -0.07076883 0.2679612 0.4282948 -0.1119241 0.2679612 0.4282948 -0.1475052 0.2679612 0.4282948 -0.1846606 0.2679612 0.4282948 -0.2245119 0.2679612 0.4282948 -0.2679612 0.2679612 0.4282948 -0.3158431 0.2679612 0.4282948 -0.3689944 0.2679612 0.4282948 -0.4282948 0.2679612 0.4282948 -0.494694 0.2679612 0.4282948 -0.5692344 0.2679612 0.4282948 -0.6530715 0.2679612 0.4282948 -0.7474945 0.2679612 0.4282948 -0.8539475 0.2679612 0.4282948 -0.974052 0.2679612 0.4282948 -1.113885 0.2679612 0.4282948 -1.27456 0.2679612 0.4282948 -1.458117 0.2679612 0.4282948 -1.667858 0.2679612 0.4282948 -1.907556 0.2679612 0.4282948 -2.181521 0.2679612 0.4282948 -2.494678 0.2679612 0.4282948 -2.852659 0.2679612 0.4282948 -3.261896 0.2679612 0.4282948 -3.729748 0.2679612 0.4282948 -4.264621 0.2679612 0.4282948 -4.876131 0.2679612 0.4282948 -5.575266 0.2679612 0.4282948 -6.374593 0.2679612 0.4282948 -0 0.3158431 0.4282948 -0 0.3158431 0.4282948 -0 0.3158431 0.4282948 -0.002268731 0.3158431 0.4282948 -0.07076883 0.3158431 0.4282948 -0.1119241 0.3158431 0.4282948 -0.1475052 0.3158431 0.4282948 -0.1846606 0.3158431 0.4282948 -0.2245119 0.3158431 0.4282948 -0.2679612 0.3158431 0.4282948 -0.3158431 0.3158431 0.4282948 -0.3689944 0.3158431 0.4282948 -0.4282948 0.3158431 0.4282948 -0.494694 0.3158431 0.4282948 -0.5692344 0.3158431 0.4282948 -0.6530715 0.3158431 0.4282948 -0.7474945 0.3158431 0.4282948 -0.8539475 0.3158431 0.4282948 -0.974052 0.3158431 0.4282948 -1.113885 0.3158431 0.4282948 -1.27456 0.3158431 0.4282948 -1.458117 0.3158431 0.4282948 -1.667858 0.3158431 0.4282948 -1.907556 0.3158431 0.4282948 -2.181521 0.3158431 0.4282948 -2.494678 0.3158431 0.4282948 -2.852659 0.3158431 0.4282948 -3.261896 0.3158431 0.4282948 -3.729748 0.3158431 0.4282948 -4.264621 0.3158431 0.4282948 -4.876131 0.3158431 0.4282948 -5.575266 0.3158431 0.4282948 -6.374593 0.3158431 0.4282948 -0 0.3689944 0.4282948 -0 0.3689944 0.4282948 -0 0.3689944 0.4282948 -0.002268731 0.3689944 0.4282948 -0.07076883 0.3689944 0.4282948 -0.1119241 0.3689944 0.4282948 -0.1475052 0.3689944 0.4282948 -0.1846606 0.3689944 0.4282948 -0.2245119 0.3689944 0.4282948 -0.2679612 0.3689944 0.4282948 -0.3158431 0.3689944 0.4282948 -0.3689944 0.3689944 0.4282948 -0.4282948 0.3689944 0.4282948 -0.494694 0.3689944 0.4282948 -0.5692344 0.3689944 0.4282948 -0.6530715 0.3689944 0.4282948 -0.7474945 0.3689944 0.4282948 -0.8539475 0.3689944 0.4282948 -0.974052 0.3689944 0.4282948 -1.113885 0.3689944 0.4282948 -1.27456 0.3689944 0.4282948 -1.458117 0.3689944 0.4282948 -1.667858 0.3689944 0.4282948 -1.907556 0.3689944 0.4282948 -2.181521 0.3689944 0.4282948 -2.494678 0.3689944 0.4282948 -2.852659 0.3689944 0.4282948 -3.261896 0.3689944 0.4282948 -3.729748 0.3689944 0.4282948 -4.264621 0.3689944 0.4282948 -4.876131 0.3689944 0.4282948 -5.575266 0.3689944 0.4282948 -6.374593 0.3689944 0.4282948 -0 0.4282948 0.4282948 -0 0.4282948 0.4282948 -0 0.4282948 0.4282948 -0.002268731 0.4282948 0.4282948 -0.07076883 0.4282948 0.4282948 -0.1119241 0.4282948 0.4282948 -0.1475052 0.4282948 0.4282948 -0.1846606 0.4282948 0.4282948 -0.2245119 0.4282948 0.4282948 -0.2679612 0.4282948 0.4282948 -0.3158431 0.4282948 0.4282948 -0.3689944 0.4282948 0.4282948 -0.4282948 0.4282948 0.4282948 -0.494694 0.4282948 0.4282948 -0.5692344 0.4282948 0.4282948 -0.6530715 0.4282948 0.4282948 -0.7474945 0.4282948 0.4282948 -0.8539475 0.4282948 0.4282948 -0.974052 0.4282948 0.4282948 -1.113885 0.4282948 0.4282948 -1.27456 0.4282948 0.4282948 -1.458117 0.4282948 0.4282948 -1.667858 0.4282948 0.4282948 -1.907556 0.4282948 0.4282948 -2.181521 0.4282948 0.4282948 -2.494678 0.4282948 0.4282948 -2.852659 0.4282948 0.4282948 -3.261896 0.4282948 0.4282948 -3.729748 0.4282948 0.4282948 -4.264621 0.4282948 0.4282948 -4.876131 0.4282948 0.4282948 -5.575266 0.4282948 0.4282948 -6.374593 0.4282948 0.4282948 -0 0.494694 0.4282948 -0 0.494694 0.4282948 -0 0.494694 0.4282948 -0.002268731 0.494694 0.4282948 -0.07076883 0.494694 0.4282948 -0.1119241 0.494694 0.4282948 -0.1475052 0.494694 0.4282948 -0.1846606 0.494694 0.4282948 -0.2245119 0.494694 0.4282948 -0.2679612 0.494694 0.4282948 -0.3158431 0.494694 0.4282948 -0.3689944 0.494694 0.4282948 -0.4282948 0.494694 0.4282948 -0.494694 0.494694 0.4282948 -0.5692344 0.494694 0.4282948 -0.6530715 0.494694 0.4282948 -0.7474945 0.494694 0.4282948 -0.8539475 0.494694 0.4282948 -0.974052 0.494694 0.4282948 -1.113885 0.494694 0.4282948 -1.27456 0.494694 0.4282948 -1.458117 0.494694 0.4282948 -1.667858 0.494694 0.4282948 -1.907556 0.494694 0.4282948 -2.181521 0.494694 0.4282948 -2.494678 0.494694 0.4282948 -2.852659 0.494694 0.4282948 -3.261896 0.494694 0.4282948 -3.729748 0.494694 0.4282948 -4.264621 0.494694 0.4282948 -4.876131 0.494694 0.4282948 -5.575266 0.494694 0.4282948 -6.374593 0.494694 0.4282948 -0 0.5692344 0.4282948 -0 0.5692344 0.4282948 -0 0.5692344 0.4282948 -0.002268731 0.5692344 0.4282948 -0.07076883 0.5692344 0.4282948 -0.1119241 0.5692344 0.4282948 -0.1475052 0.5692344 0.4282948 -0.1846606 0.5692344 0.4282948 -0.2245119 0.5692344 0.4282948 -0.2679612 0.5692344 0.4282948 -0.3158431 0.5692344 0.4282948 -0.3689944 0.5692344 0.4282948 -0.4282948 0.5692344 0.4282948 -0.494694 0.5692344 0.4282948 -0.5692344 0.5692344 0.4282948 -0.6530715 0.5692344 0.4282948 -0.7474945 0.5692344 0.4282948 -0.8539475 0.5692344 0.4282948 -0.974052 0.5692344 0.4282948 -1.113885 0.5692344 0.4282948 -1.27456 0.5692344 0.4282948 -1.458117 0.5692344 0.4282948 -1.667858 0.5692344 0.4282948 -1.907556 0.5692344 0.4282948 -2.181521 0.5692344 0.4282948 -2.494678 0.5692344 0.4282948 -2.852659 0.5692344 0.4282948 -3.261896 0.5692344 0.4282948 -3.729748 0.5692344 0.4282948 -4.264621 0.5692344 0.4282948 -4.876131 0.5692344 0.4282948 -5.575266 0.5692344 0.4282948 -6.374593 0.5692344 0.4282948 -0 0.6530715 0.4282948 -0 0.6530715 0.4282948 -0 0.6530715 0.4282948 -0.002268731 0.6530715 0.4282948 -0.07076883 0.6530715 0.4282948 -0.1119241 0.6530715 0.4282948 -0.1475052 0.6530715 0.4282948 -0.1846606 0.6530715 0.4282948 -0.2245119 0.6530715 0.4282948 -0.2679612 0.6530715 0.4282948 -0.3158431 0.6530715 0.4282948 -0.3689944 0.6530715 0.4282948 -0.4282948 0.6530715 0.4282948 -0.494694 0.6530715 0.4282948 -0.5692344 0.6530715 0.4282948 -0.6530715 0.6530715 0.4282948 -0.7474945 0.6530715 0.4282948 -0.8539475 0.6530715 0.4282948 -0.974052 0.6530715 0.4282948 -1.113885 0.6530715 0.4282948 -1.27456 0.6530715 0.4282948 -1.458117 0.6530715 0.4282948 -1.667858 0.6530715 0.4282948 -1.907556 0.6530715 0.4282948 -2.181521 0.6530715 0.4282948 -2.494678 0.6530715 0.4282948 -2.852659 0.6530715 0.4282948 -3.261896 0.6530715 0.4282948 -3.729748 0.6530715 0.4282948 -4.264621 0.6530715 0.4282948 -4.876131 0.6530715 0.4282948 -5.575266 0.6530715 0.4282948 -6.374593 0.6530715 0.4282948 -0 0.7474945 0.4282948 -0 0.7474945 0.4282948 -0 0.7474945 0.4282948 -0.002268731 0.7474945 0.4282948 -0.07076883 0.7474945 0.4282948 -0.1119241 0.7474945 0.4282948 -0.1475052 0.7474945 0.4282948 -0.1846606 0.7474945 0.4282948 -0.2245119 0.7474945 0.4282948 -0.2679612 0.7474945 0.4282948 -0.3158431 0.7474945 0.4282948 -0.3689944 0.7474945 0.4282948 -0.4282948 0.7474945 0.4282948 -0.494694 0.7474945 0.4282948 -0.5692344 0.7474945 0.4282948 -0.6530715 0.7474945 0.4282948 -0.7474945 0.7474945 0.4282948 -0.8539475 0.7474945 0.4282948 -0.974052 0.7474945 0.4282948 -1.113885 0.7474945 0.4282948 -1.27456 0.7474945 0.4282948 -1.458117 0.7474945 0.4282948 -1.667858 0.7474945 0.4282948 -1.907556 0.7474945 0.4282948 -2.181521 0.7474945 0.4282948 -2.494678 0.7474945 0.4282948 -2.852659 0.7474945 0.4282948 -3.261896 0.7474945 0.4282948 -3.729748 0.7474945 0.4282948 -4.264621 0.7474945 0.4282948 -4.876131 0.7474945 0.4282948 -5.575266 0.7474945 0.4282948 -6.374593 0.7474945 0.4282948 -0 0.8539475 0.4282948 -0 0.8539475 0.4282948 -0 0.8539475 0.4282948 -0.002268731 0.8539475 0.4282948 -0.07076883 0.8539475 0.4282948 -0.1119241 0.8539475 0.4282948 -0.1475052 0.8539475 0.4282948 -0.1846606 0.8539475 0.4282948 -0.2245119 0.8539475 0.4282948 -0.2679612 0.8539475 0.4282948 -0.3158431 0.8539475 0.4282948 -0.3689944 0.8539475 0.4282948 -0.4282948 0.8539475 0.4282948 -0.494694 0.8539475 0.4282948 -0.5692344 0.8539475 0.4282948 -0.6530715 0.8539475 0.4282948 -0.7474945 0.8539475 0.4282948 -0.8539475 0.8539475 0.4282948 -0.974052 0.8539475 0.4282948 -1.113885 0.8539475 0.4282948 -1.27456 0.8539475 0.4282948 -1.458117 0.8539475 0.4282948 -1.667858 0.8539475 0.4282948 -1.907556 0.8539475 0.4282948 -2.181521 0.8539475 0.4282948 -2.494678 0.8539475 0.4282948 -2.852659 0.8539475 0.4282948 -3.261896 0.8539475 0.4282948 -3.729748 0.8539475 0.4282948 -4.264621 0.8539475 0.4282948 -4.876131 0.8539475 0.4282948 -5.575266 0.8539475 0.4282948 -6.374593 0.8539475 0.4282948 -0 0.974052 0.4282948 -0 0.974052 0.4282948 -0 0.974052 0.4282948 -0.002268731 0.974052 0.4282948 -0.07076883 0.974052 0.4282948 -0.1119241 0.974052 0.4282948 -0.1475052 0.974052 0.4282948 -0.1846606 0.974052 0.4282948 -0.2245119 0.974052 0.4282948 -0.2679612 0.974052 0.4282948 -0.3158431 0.974052 0.4282948 -0.3689944 0.974052 0.4282948 -0.4282948 0.974052 0.4282948 -0.494694 0.974052 0.4282948 -0.5692344 0.974052 0.4282948 -0.6530715 0.974052 0.4282948 -0.7474945 0.974052 0.4282948 -0.8539475 0.974052 0.4282948 -0.974052 0.974052 0.4282948 -1.113885 0.974052 0.4282948 -1.27456 0.974052 0.4282948 -1.458117 0.974052 0.4282948 -1.667858 0.974052 0.4282948 -1.907556 0.974052 0.4282948 -2.181521 0.974052 0.4282948 -2.494678 0.974052 0.4282948 -2.852659 0.974052 0.4282948 -3.261896 0.974052 0.4282948 -3.729748 0.974052 0.4282948 -4.264621 0.974052 0.4282948 -4.876131 0.974052 0.4282948 -5.575266 0.974052 0.4282948 -6.374593 0.974052 0.4282948 -0 1.113885 0.4282948 -0 1.113885 0.4282948 -0 1.113885 0.4282948 -0.002268731 1.113885 0.4282948 -0.07076883 1.113885 0.4282948 -0.1119241 1.113885 0.4282948 -0.1475052 1.113885 0.4282948 -0.1846606 1.113885 0.4282948 -0.2245119 1.113885 0.4282948 -0.2679612 1.113885 0.4282948 -0.3158431 1.113885 0.4282948 -0.3689944 1.113885 0.4282948 -0.4282948 1.113885 0.4282948 -0.494694 1.113885 0.4282948 -0.5692344 1.113885 0.4282948 -0.6530715 1.113885 0.4282948 -0.7474945 1.113885 0.4282948 -0.8539475 1.113885 0.4282948 -0.974052 1.113885 0.4282948 -1.113885 1.113885 0.4282948 -1.27456 1.113885 0.4282948 -1.458117 1.113885 0.4282948 -1.667858 1.113885 0.4282948 -1.907556 1.113885 0.4282948 -2.181521 1.113885 0.4282948 -2.494678 1.113885 0.4282948 -2.852659 1.113885 0.4282948 -3.261896 1.113885 0.4282948 -3.729748 1.113885 0.4282948 -4.264621 1.113885 0.4282948 -4.876131 1.113885 0.4282948 -5.575266 1.113885 0.4282948 -6.374593 1.113885 0.4282948 -0 1.27456 0.4282948 -0 1.27456 0.4282948 -0 1.27456 0.4282948 -0.002268731 1.27456 0.4282948 -0.07076883 1.27456 0.4282948 -0.1119241 1.27456 0.4282948 -0.1475052 1.27456 0.4282948 -0.1846606 1.27456 0.4282948 -0.2245119 1.27456 0.4282948 -0.2679612 1.27456 0.4282948 -0.3158431 1.27456 0.4282948 -0.3689944 1.27456 0.4282948 -0.4282948 1.27456 0.4282948 -0.494694 1.27456 0.4282948 -0.5692344 1.27456 0.4282948 -0.6530715 1.27456 0.4282948 -0.7474945 1.27456 0.4282948 -0.8539475 1.27456 0.4282948 -0.974052 1.27456 0.4282948 -1.113885 1.27456 0.4282948 -1.27456 1.27456 0.4282948 -1.458117 1.27456 0.4282948 -1.667858 1.27456 0.4282948 -1.907556 1.27456 0.4282948 -2.181521 1.27456 0.4282948 -2.494678 1.27456 0.4282948 -2.852659 1.27456 0.4282948 -3.261896 1.27456 0.4282948 -3.729748 1.27456 0.4282948 -4.264621 1.27456 0.4282948 -4.876131 1.27456 0.4282948 -5.575266 1.27456 0.4282948 -6.374593 1.27456 0.4282948 -0 1.458117 0.4282948 -0 1.458117 0.4282948 -0 1.458117 0.4282948 -0.002268731 1.458117 0.4282948 -0.07076883 1.458117 0.4282948 -0.1119241 1.458117 0.4282948 -0.1475052 1.458117 0.4282948 -0.1846606 1.458117 0.4282948 -0.2245119 1.458117 0.4282948 -0.2679612 1.458117 0.4282948 -0.3158431 1.458117 0.4282948 -0.3689944 1.458117 0.4282948 -0.4282948 1.458117 0.4282948 -0.494694 1.458117 0.4282948 -0.5692344 1.458117 0.4282948 -0.6530715 1.458117 0.4282948 -0.7474945 1.458117 0.4282948 -0.8539475 1.458117 0.4282948 -0.974052 1.458117 0.4282948 -1.113885 1.458117 0.4282948 -1.27456 1.458117 0.4282948 -1.458117 1.458117 0.4282948 -1.667858 1.458117 0.4282948 -1.907556 1.458117 0.4282948 -2.181521 1.458117 0.4282948 -2.494678 1.458117 0.4282948 -2.852659 1.458117 0.4282948 -3.261896 1.458117 0.4282948 -3.729748 1.458117 0.4282948 -4.264621 1.458117 0.4282948 -4.876131 1.458117 0.4282948 -5.575266 1.458117 0.4282948 -6.374593 1.458117 0.4282948 -0 1.667858 0.4282948 -0 1.667858 0.4282948 -0 1.667858 0.4282948 -0.002268731 1.667858 0.4282948 -0.07076883 1.667858 0.4282948 -0.1119241 1.667858 0.4282948 -0.1475052 1.667858 0.4282948 -0.1846606 1.667858 0.4282948 -0.2245119 1.667858 0.4282948 -0.2679612 1.667858 0.4282948 -0.3158431 1.667858 0.4282948 -0.3689944 1.667858 0.4282948 -0.4282948 1.667858 0.4282948 -0.494694 1.667858 0.4282948 -0.5692344 1.667858 0.4282948 -0.6530715 1.667858 0.4282948 -0.7474945 1.667858 0.4282948 -0.8539475 1.667858 0.4282948 -0.974052 1.667858 0.4282948 -1.113885 1.667858 0.4282948 -1.27456 1.667858 0.4282948 -1.458117 1.667858 0.4282948 -1.667858 1.667858 0.4282948 -1.907556 1.667858 0.4282948 -2.181521 1.667858 0.4282948 -2.494678 1.667858 0.4282948 -2.852659 1.667858 0.4282948 -3.261896 1.667858 0.4282948 -3.729748 1.667858 0.4282948 -4.264621 1.667858 0.4282948 -4.876131 1.667858 0.4282948 -5.575266 1.667858 0.4282948 -6.374593 1.667858 0.4282948 -0 1.907556 0.4282948 -0 1.907556 0.4282948 -0 1.907556 0.4282948 -0.002268731 1.907556 0.4282948 -0.07076883 1.907556 0.4282948 -0.1119241 1.907556 0.4282948 -0.1475052 1.907556 0.4282948 -0.1846606 1.907556 0.4282948 -0.2245119 1.907556 0.4282948 -0.2679612 1.907556 0.4282948 -0.3158431 1.907556 0.4282948 -0.3689944 1.907556 0.4282948 -0.4282948 1.907556 0.4282948 -0.494694 1.907556 0.4282948 -0.5692344 1.907556 0.4282948 -0.6530715 1.907556 0.4282948 -0.7474945 1.907556 0.4282948 -0.8539475 1.907556 0.4282948 -0.974052 1.907556 0.4282948 -1.113885 1.907556 0.4282948 -1.27456 1.907556 0.4282948 -1.458117 1.907556 0.4282948 -1.667858 1.907556 0.4282948 -1.907556 1.907556 0.4282948 -2.181521 1.907556 0.4282948 -2.494678 1.907556 0.4282948 -2.852659 1.907556 0.4282948 -3.261896 1.907556 0.4282948 -3.729748 1.907556 0.4282948 -4.264621 1.907556 0.4282948 -4.876131 1.907556 0.4282948 -5.575266 1.907556 0.4282948 -6.374593 1.907556 0.4282948 -0 2.181521 0.4282948 -0 2.181521 0.4282948 -0 2.181521 0.4282948 -0.002268731 2.181521 0.4282948 -0.07076883 2.181521 0.4282948 -0.1119241 2.181521 0.4282948 -0.1475052 2.181521 0.4282948 -0.1846606 2.181521 0.4282948 -0.2245119 2.181521 0.4282948 -0.2679612 2.181521 0.4282948 -0.3158431 2.181521 0.4282948 -0.3689944 2.181521 0.4282948 -0.4282948 2.181521 0.4282948 -0.494694 2.181521 0.4282948 -0.5692344 2.181521 0.4282948 -0.6530715 2.181521 0.4282948 -0.7474945 2.181521 0.4282948 -0.8539475 2.181521 0.4282948 -0.974052 2.181521 0.4282948 -1.113885 2.181521 0.4282948 -1.27456 2.181521 0.4282948 -1.458117 2.181521 0.4282948 -1.667858 2.181521 0.4282948 -1.907556 2.181521 0.4282948 -2.181521 2.181521 0.4282948 -2.494678 2.181521 0.4282948 -2.852659 2.181521 0.4282948 -3.261896 2.181521 0.4282948 -3.729748 2.181521 0.4282948 -4.264621 2.181521 0.4282948 -4.876131 2.181521 0.4282948 -5.575266 2.181521 0.4282948 -6.374593 2.181521 0.4282948 -0 2.494678 0.4282948 -0 2.494678 0.4282948 -0 2.494678 0.4282948 -0.002268731 2.494678 0.4282948 -0.07076883 2.494678 0.4282948 -0.1119241 2.494678 0.4282948 -0.1475052 2.494678 0.4282948 -0.1846606 2.494678 0.4282948 -0.2245119 2.494678 0.4282948 -0.2679612 2.494678 0.4282948 -0.3158431 2.494678 0.4282948 -0.3689944 2.494678 0.4282948 -0.4282948 2.494678 0.4282948 -0.494694 2.494678 0.4282948 -0.5692344 2.494678 0.4282948 -0.6530715 2.494678 0.4282948 -0.7474945 2.494678 0.4282948 -0.8539475 2.494678 0.4282948 -0.974052 2.494678 0.4282948 -1.113885 2.494678 0.4282948 -1.27456 2.494678 0.4282948 -1.458117 2.494678 0.4282948 -1.667858 2.494678 0.4282948 -1.907556 2.494678 0.4282948 -2.181521 2.494678 0.4282948 -2.494678 2.494678 0.4282948 -2.852659 2.494678 0.4282948 -3.261896 2.494678 0.4282948 -3.729748 2.494678 0.4282948 -4.264621 2.494678 0.4282948 -4.876131 2.494678 0.4282948 -5.575266 2.494678 0.4282948 -6.374593 2.494678 0.4282948 -0 2.852659 0.4282948 -0 2.852659 0.4282948 -0 2.852659 0.4282948 -0.002268731 2.852659 0.4282948 -0.07076883 2.852659 0.4282948 -0.1119241 2.852659 0.4282948 -0.1475052 2.852659 0.4282948 -0.1846606 2.852659 0.4282948 -0.2245119 2.852659 0.4282948 -0.2679612 2.852659 0.4282948 -0.3158431 2.852659 0.4282948 -0.3689944 2.852659 0.4282948 -0.4282948 2.852659 0.4282948 -0.494694 2.852659 0.4282948 -0.5692344 2.852659 0.4282948 -0.6530715 2.852659 0.4282948 -0.7474945 2.852659 0.4282948 -0.8539475 2.852659 0.4282948 -0.974052 2.852659 0.4282948 -1.113885 2.852659 0.4282948 -1.27456 2.852659 0.4282948 -1.458117 2.852659 0.4282948 -1.667858 2.852659 0.4282948 -1.907556 2.852659 0.4282948 -2.181521 2.852659 0.4282948 -2.494678 2.852659 0.4282948 -2.852659 2.852659 0.4282948 -3.261896 2.852659 0.4282948 -3.729748 2.852659 0.4282948 -4.264621 2.852659 0.4282948 -4.876131 2.852659 0.4282948 -5.575266 2.852659 0.4282948 -6.374593 2.852659 0.4282948 -0 3.261896 0.4282948 -0 3.261896 0.4282948 -0 3.261896 0.4282948 -0.002268731 3.261896 0.4282948 -0.07076883 3.261896 0.4282948 -0.1119241 3.261896 0.4282948 -0.1475052 3.261896 0.4282948 -0.1846606 3.261896 0.4282948 -0.2245119 3.261896 0.4282948 -0.2679612 3.261896 0.4282948 -0.3158431 3.261896 0.4282948 -0.3689944 3.261896 0.4282948 -0.4282948 3.261896 0.4282948 -0.494694 3.261896 0.4282948 -0.5692344 3.261896 0.4282948 -0.6530715 3.261896 0.4282948 -0.7474945 3.261896 0.4282948 -0.8539475 3.261896 0.4282948 -0.974052 3.261896 0.4282948 -1.113885 3.261896 0.4282948 -1.27456 3.261896 0.4282948 -1.458117 3.261896 0.4282948 -1.667858 3.261896 0.4282948 -1.907556 3.261896 0.4282948 -2.181521 3.261896 0.4282948 -2.494678 3.261896 0.4282948 -2.852659 3.261896 0.4282948 -3.261896 3.261896 0.4282948 -3.729748 3.261896 0.4282948 -4.264621 3.261896 0.4282948 -4.876131 3.261896 0.4282948 -5.575266 3.261896 0.4282948 -6.374593 3.261896 0.4282948 -0 3.729748 0.4282948 -0 3.729748 0.4282948 -0 3.729748 0.4282948 -0.002268731 3.729748 0.4282948 -0.07076883 3.729748 0.4282948 -0.1119241 3.729748 0.4282948 -0.1475052 3.729748 0.4282948 -0.1846606 3.729748 0.4282948 -0.2245119 3.729748 0.4282948 -0.2679612 3.729748 0.4282948 -0.3158431 3.729748 0.4282948 -0.3689944 3.729748 0.4282948 -0.4282948 3.729748 0.4282948 -0.494694 3.729748 0.4282948 -0.5692344 3.729748 0.4282948 -0.6530715 3.729748 0.4282948 -0.7474945 3.729748 0.4282948 -0.8539475 3.729748 0.4282948 -0.974052 3.729748 0.4282948 -1.113885 3.729748 0.4282948 -1.27456 3.729748 0.4282948 -1.458117 3.729748 0.4282948 -1.667858 3.729748 0.4282948 -1.907556 3.729748 0.4282948 -2.181521 3.729748 0.4282948 -2.494678 3.729748 0.4282948 -2.852659 3.729748 0.4282948 -3.261896 3.729748 0.4282948 -3.729748 3.729748 0.4282948 -4.264621 3.729748 0.4282948 -4.876131 3.729748 0.4282948 -5.575266 3.729748 0.4282948 -6.374593 3.729748 0.4282948 -0 4.264621 0.4282948 -0 4.264621 0.4282948 -0 4.264621 0.4282948 -0.002268731 4.264621 0.4282948 -0.07076883 4.264621 0.4282948 -0.1119241 4.264621 0.4282948 -0.1475052 4.264621 0.4282948 -0.1846606 4.264621 0.4282948 -0.2245119 4.264621 0.4282948 -0.2679612 4.264621 0.4282948 -0.3158431 4.264621 0.4282948 -0.3689944 4.264621 0.4282948 -0.4282948 4.264621 0.4282948 -0.494694 4.264621 0.4282948 -0.5692344 4.264621 0.4282948 -0.6530715 4.264621 0.4282948 -0.7474945 4.264621 0.4282948 -0.8539475 4.264621 0.4282948 -0.974052 4.264621 0.4282948 -1.113885 4.264621 0.4282948 -1.27456 4.264621 0.4282948 -1.458117 4.264621 0.4282948 -1.667858 4.264621 0.4282948 -1.907556 4.264621 0.4282948 -2.181521 4.264621 0.4282948 -2.494678 4.264621 0.4282948 -2.852659 4.264621 0.4282948 -3.261896 4.264621 0.4282948 -3.729748 4.264621 0.4282948 -4.264621 4.264621 0.4282948 -4.876131 4.264621 0.4282948 -5.575266 4.264621 0.4282948 -6.374593 4.264621 0.4282948 -0 4.876131 0.4282948 -0 4.876131 0.4282948 -0 4.876131 0.4282948 -0.002268731 4.876131 0.4282948 -0.07076883 4.876131 0.4282948 -0.1119241 4.876131 0.4282948 -0.1475052 4.876131 0.4282948 -0.1846606 4.876131 0.4282948 -0.2245119 4.876131 0.4282948 -0.2679612 4.876131 0.4282948 -0.3158431 4.876131 0.4282948 -0.3689944 4.876131 0.4282948 -0.4282948 4.876131 0.4282948 -0.494694 4.876131 0.4282948 -0.5692344 4.876131 0.4282948 -0.6530715 4.876131 0.4282948 -0.7474945 4.876131 0.4282948 -0.8539475 4.876131 0.4282948 -0.974052 4.876131 0.4282948 -1.113885 4.876131 0.4282948 -1.27456 4.876131 0.4282948 -1.458117 4.876131 0.4282948 -1.667858 4.876131 0.4282948 -1.907556 4.876131 0.4282948 -2.181521 4.876131 0.4282948 -2.494678 4.876131 0.4282948 -2.852659 4.876131 0.4282948 -3.261896 4.876131 0.4282948 -3.729748 4.876131 0.4282948 -4.264621 4.876131 0.4282948 -4.876131 4.876131 0.4282948 -5.575266 4.876131 0.4282948 -6.374593 4.876131 0.4282948 -0 5.575266 0.4282948 -0 5.575266 0.4282948 -0 5.575266 0.4282948 -0.002268731 5.575266 0.4282948 -0.07076883 5.575266 0.4282948 -0.1119241 5.575266 0.4282948 -0.1475052 5.575266 0.4282948 -0.1846606 5.575266 0.4282948 -0.2245119 5.575266 0.4282948 -0.2679612 5.575266 0.4282948 -0.3158431 5.575266 0.4282948 -0.3689944 5.575266 0.4282948 -0.4282948 5.575266 0.4282948 -0.494694 5.575266 0.4282948 -0.5692344 5.575266 0.4282948 -0.6530715 5.575266 0.4282948 -0.7474945 5.575266 0.4282948 -0.8539475 5.575266 0.4282948 -0.974052 5.575266 0.4282948 -1.113885 5.575266 0.4282948 -1.27456 5.575266 0.4282948 -1.458117 5.575266 0.4282948 -1.667858 5.575266 0.4282948 -1.907556 5.575266 0.4282948 -2.181521 5.575266 0.4282948 -2.494678 5.575266 0.4282948 -2.852659 5.575266 0.4282948 -3.261896 5.575266 0.4282948 -3.729748 5.575266 0.4282948 -4.264621 5.575266 0.4282948 -4.876131 5.575266 0.4282948 -5.575266 5.575266 0.4282948 -6.374593 5.575266 0.4282948 -0 6.374593 0.4282948 -0 6.374593 0.4282948 -0 6.374593 0.4282948 -0.002268731 6.374593 0.4282948 -0.07076883 6.374593 0.4282948 -0.1119241 6.374593 0.4282948 -0.1475052 6.374593 0.4282948 -0.1846606 6.374593 0.4282948 -0.2245119 6.374593 0.4282948 -0.2679612 6.374593 0.4282948 -0.3158431 6.374593 0.4282948 -0.3689944 6.374593 0.4282948 -0.4282948 6.374593 0.4282948 -0.494694 6.374593 0.4282948 -0.5692344 6.374593 0.4282948 -0.6530715 6.374593 0.4282948 -0.7474945 6.374593 0.4282948 -0.8539475 6.374593 0.4282948 -0.974052 6.374593 0.4282948 -1.113885 6.374593 0.4282948 -1.27456 6.374593 0.4282948 -1.458117 6.374593 0.4282948 -1.667858 6.374593 0.4282948 -1.907556 6.374593 0.4282948 -2.181521 6.374593 0.4282948 -2.494678 6.374593 0.4282948 -2.852659 6.374593 0.4282948 -3.261896 6.374593 0.4282948 -3.729748 6.374593 0.4282948 -4.264621 6.374593 0.4282948 -4.876131 6.374593 0.4282948 -5.575266 6.374593 0.4282948 -6.374593 6.374593 0.4282948 -0 0 0.494694 -0 0 0.494694 -0 0 0.494694 -0.002268731 0 0.494694 -0.07076883 0 0.494694 -0.1119241 0 0.494694 -0.1475052 0 0.494694 -0.1846606 0 0.494694 -0.2245119 0 0.494694 -0.2679612 0 0.494694 -0.3158431 0 0.494694 -0.3689944 0 0.494694 -0.4282948 0 0.494694 -0.494694 0 0.494694 -0.5692344 0 0.494694 -0.6530715 0 0.494694 -0.7474945 0 0.494694 -0.8539475 0 0.494694 -0.974052 0 0.494694 -1.113885 0 0.494694 -1.27456 0 0.494694 -1.458117 0 0.494694 -1.667858 0 0.494694 -1.907556 0 0.494694 -2.181521 0 0.494694 -2.494678 0 0.494694 -2.852659 0 0.494694 -3.261896 0 0.494694 -3.729748 0 0.494694 -4.264621 0 0.494694 -4.876131 0 0.494694 -5.575266 0 0.494694 -6.374593 0 0.494694 -0 0 0.494694 -0 0 0.494694 -0 0 0.494694 -0.002268731 0 0.494694 -0.07076883 0 0.494694 -0.1119241 0 0.494694 -0.1475052 0 0.494694 -0.1846606 0 0.494694 -0.2245119 0 0.494694 -0.2679612 0 0.494694 -0.3158431 0 0.494694 -0.3689944 0 0.494694 -0.4282948 0 0.494694 -0.494694 0 0.494694 -0.5692344 0 0.494694 -0.6530715 0 0.494694 -0.7474945 0 0.494694 -0.8539475 0 0.494694 -0.974052 0 0.494694 -1.113885 0 0.494694 -1.27456 0 0.494694 -1.458117 0 0.494694 -1.667858 0 0.494694 -1.907556 0 0.494694 -2.181521 0 0.494694 -2.494678 0 0.494694 -2.852659 0 0.494694 -3.261896 0 0.494694 -3.729748 0 0.494694 -4.264621 0 0.494694 -4.876131 0 0.494694 -5.575266 0 0.494694 -6.374593 0 0.494694 -0 0 0.494694 -0 0 0.494694 -0 0 0.494694 -0.002268731 0 0.494694 -0.07076883 0 0.494694 -0.1119241 0 0.494694 -0.1475052 0 0.494694 -0.1846606 0 0.494694 -0.2245119 0 0.494694 -0.2679612 0 0.494694 -0.3158431 0 0.494694 -0.3689944 0 0.494694 -0.4282948 0 0.494694 -0.494694 0 0.494694 -0.5692344 0 0.494694 -0.6530715 0 0.494694 -0.7474945 0 0.494694 -0.8539475 0 0.494694 -0.974052 0 0.494694 -1.113885 0 0.494694 -1.27456 0 0.494694 -1.458117 0 0.494694 -1.667858 0 0.494694 -1.907556 0 0.494694 -2.181521 0 0.494694 -2.494678 0 0.494694 -2.852659 0 0.494694 -3.261896 0 0.494694 -3.729748 0 0.494694 -4.264621 0 0.494694 -4.876131 0 0.494694 -5.575266 0 0.494694 -6.374593 0 0.494694 -0 0.002268731 0.494694 -0 0.002268731 0.494694 -0 0.002268731 0.494694 -0.002268731 0.002268731 0.494694 -0.07076883 0.002268731 0.494694 -0.1119241 0.002268731 0.494694 -0.1475052 0.002268731 0.494694 -0.1846606 0.002268731 0.494694 -0.2245119 0.002268731 0.494694 -0.2679612 0.002268731 0.494694 -0.3158431 0.002268731 0.494694 -0.3689944 0.002268731 0.494694 -0.4282948 0.002268731 0.494694 -0.494694 0.002268731 0.494694 -0.5692344 0.002268731 0.494694 -0.6530715 0.002268731 0.494694 -0.7474945 0.002268731 0.494694 -0.8539475 0.002268731 0.494694 -0.974052 0.002268731 0.494694 -1.113885 0.002268731 0.494694 -1.27456 0.002268731 0.494694 -1.458117 0.002268731 0.494694 -1.667858 0.002268731 0.494694 -1.907556 0.002268731 0.494694 -2.181521 0.002268731 0.494694 -2.494678 0.002268731 0.494694 -2.852659 0.002268731 0.494694 -3.261896 0.002268731 0.494694 -3.729748 0.002268731 0.494694 -4.264621 0.002268731 0.494694 -4.876131 0.002268731 0.494694 -5.575266 0.002268731 0.494694 -6.374593 0.002268731 0.494694 -0 0.07076883 0.494694 -0 0.07076883 0.494694 -0 0.07076883 0.494694 -0.002268731 0.07076883 0.494694 -0.07076883 0.07076883 0.494694 -0.1119241 0.07076883 0.494694 -0.1475052 0.07076883 0.494694 -0.1846606 0.07076883 0.494694 -0.2245119 0.07076883 0.494694 -0.2679612 0.07076883 0.494694 -0.3158431 0.07076883 0.494694 -0.3689944 0.07076883 0.494694 -0.4282948 0.07076883 0.494694 -0.494694 0.07076883 0.494694 -0.5692344 0.07076883 0.494694 -0.6530715 0.07076883 0.494694 -0.7474945 0.07076883 0.494694 -0.8539475 0.07076883 0.494694 -0.974052 0.07076883 0.494694 -1.113885 0.07076883 0.494694 -1.27456 0.07076883 0.494694 -1.458117 0.07076883 0.494694 -1.667858 0.07076883 0.494694 -1.907556 0.07076883 0.494694 -2.181521 0.07076883 0.494694 -2.494678 0.07076883 0.494694 -2.852659 0.07076883 0.494694 -3.261896 0.07076883 0.494694 -3.729748 0.07076883 0.494694 -4.264621 0.07076883 0.494694 -4.876131 0.07076883 0.494694 -5.575266 0.07076883 0.494694 -6.374593 0.07076883 0.494694 -0 0.1119241 0.494694 -0 0.1119241 0.494694 -0 0.1119241 0.494694 -0.002268731 0.1119241 0.494694 -0.07076883 0.1119241 0.494694 -0.1119241 0.1119241 0.494694 -0.1475052 0.1119241 0.494694 -0.1846606 0.1119241 0.494694 -0.2245119 0.1119241 0.494694 -0.2679612 0.1119241 0.494694 -0.3158431 0.1119241 0.494694 -0.3689944 0.1119241 0.494694 -0.4282948 0.1119241 0.494694 -0.494694 0.1119241 0.494694 -0.5692344 0.1119241 0.494694 -0.6530715 0.1119241 0.494694 -0.7474945 0.1119241 0.494694 -0.8539475 0.1119241 0.494694 -0.974052 0.1119241 0.494694 -1.113885 0.1119241 0.494694 -1.27456 0.1119241 0.494694 -1.458117 0.1119241 0.494694 -1.667858 0.1119241 0.494694 -1.907556 0.1119241 0.494694 -2.181521 0.1119241 0.494694 -2.494678 0.1119241 0.494694 -2.852659 0.1119241 0.494694 -3.261896 0.1119241 0.494694 -3.729748 0.1119241 0.494694 -4.264621 0.1119241 0.494694 -4.876131 0.1119241 0.494694 -5.575266 0.1119241 0.494694 -6.374593 0.1119241 0.494694 -0 0.1475052 0.494694 -0 0.1475052 0.494694 -0 0.1475052 0.494694 -0.002268731 0.1475052 0.494694 -0.07076883 0.1475052 0.494694 -0.1119241 0.1475052 0.494694 -0.1475052 0.1475052 0.494694 -0.1846606 0.1475052 0.494694 -0.2245119 0.1475052 0.494694 -0.2679612 0.1475052 0.494694 -0.3158431 0.1475052 0.494694 -0.3689944 0.1475052 0.494694 -0.4282948 0.1475052 0.494694 -0.494694 0.1475052 0.494694 -0.5692344 0.1475052 0.494694 -0.6530715 0.1475052 0.494694 -0.7474945 0.1475052 0.494694 -0.8539475 0.1475052 0.494694 -0.974052 0.1475052 0.494694 -1.113885 0.1475052 0.494694 -1.27456 0.1475052 0.494694 -1.458117 0.1475052 0.494694 -1.667858 0.1475052 0.494694 -1.907556 0.1475052 0.494694 -2.181521 0.1475052 0.494694 -2.494678 0.1475052 0.494694 -2.852659 0.1475052 0.494694 -3.261896 0.1475052 0.494694 -3.729748 0.1475052 0.494694 -4.264621 0.1475052 0.494694 -4.876131 0.1475052 0.494694 -5.575266 0.1475052 0.494694 -6.374593 0.1475052 0.494694 -0 0.1846606 0.494694 -0 0.1846606 0.494694 -0 0.1846606 0.494694 -0.002268731 0.1846606 0.494694 -0.07076883 0.1846606 0.494694 -0.1119241 0.1846606 0.494694 -0.1475052 0.1846606 0.494694 -0.1846606 0.1846606 0.494694 -0.2245119 0.1846606 0.494694 -0.2679612 0.1846606 0.494694 -0.3158431 0.1846606 0.494694 -0.3689944 0.1846606 0.494694 -0.4282948 0.1846606 0.494694 -0.494694 0.1846606 0.494694 -0.5692344 0.1846606 0.494694 -0.6530715 0.1846606 0.494694 -0.7474945 0.1846606 0.494694 -0.8539475 0.1846606 0.494694 -0.974052 0.1846606 0.494694 -1.113885 0.1846606 0.494694 -1.27456 0.1846606 0.494694 -1.458117 0.1846606 0.494694 -1.667858 0.1846606 0.494694 -1.907556 0.1846606 0.494694 -2.181521 0.1846606 0.494694 -2.494678 0.1846606 0.494694 -2.852659 0.1846606 0.494694 -3.261896 0.1846606 0.494694 -3.729748 0.1846606 0.494694 -4.264621 0.1846606 0.494694 -4.876131 0.1846606 0.494694 -5.575266 0.1846606 0.494694 -6.374593 0.1846606 0.494694 -0 0.2245119 0.494694 -0 0.2245119 0.494694 -0 0.2245119 0.494694 -0.002268731 0.2245119 0.494694 -0.07076883 0.2245119 0.494694 -0.1119241 0.2245119 0.494694 -0.1475052 0.2245119 0.494694 -0.1846606 0.2245119 0.494694 -0.2245119 0.2245119 0.494694 -0.2679612 0.2245119 0.494694 -0.3158431 0.2245119 0.494694 -0.3689944 0.2245119 0.494694 -0.4282948 0.2245119 0.494694 -0.494694 0.2245119 0.494694 -0.5692344 0.2245119 0.494694 -0.6530715 0.2245119 0.494694 -0.7474945 0.2245119 0.494694 -0.8539475 0.2245119 0.494694 -0.974052 0.2245119 0.494694 -1.113885 0.2245119 0.494694 -1.27456 0.2245119 0.494694 -1.458117 0.2245119 0.494694 -1.667858 0.2245119 0.494694 -1.907556 0.2245119 0.494694 -2.181521 0.2245119 0.494694 -2.494678 0.2245119 0.494694 -2.852659 0.2245119 0.494694 -3.261896 0.2245119 0.494694 -3.729748 0.2245119 0.494694 -4.264621 0.2245119 0.494694 -4.876131 0.2245119 0.494694 -5.575266 0.2245119 0.494694 -6.374593 0.2245119 0.494694 -0 0.2679612 0.494694 -0 0.2679612 0.494694 -0 0.2679612 0.494694 -0.002268731 0.2679612 0.494694 -0.07076883 0.2679612 0.494694 -0.1119241 0.2679612 0.494694 -0.1475052 0.2679612 0.494694 -0.1846606 0.2679612 0.494694 -0.2245119 0.2679612 0.494694 -0.2679612 0.2679612 0.494694 -0.3158431 0.2679612 0.494694 -0.3689944 0.2679612 0.494694 -0.4282948 0.2679612 0.494694 -0.494694 0.2679612 0.494694 -0.5692344 0.2679612 0.494694 -0.6530715 0.2679612 0.494694 -0.7474945 0.2679612 0.494694 -0.8539475 0.2679612 0.494694 -0.974052 0.2679612 0.494694 -1.113885 0.2679612 0.494694 -1.27456 0.2679612 0.494694 -1.458117 0.2679612 0.494694 -1.667858 0.2679612 0.494694 -1.907556 0.2679612 0.494694 -2.181521 0.2679612 0.494694 -2.494678 0.2679612 0.494694 -2.852659 0.2679612 0.494694 -3.261896 0.2679612 0.494694 -3.729748 0.2679612 0.494694 -4.264621 0.2679612 0.494694 -4.876131 0.2679612 0.494694 -5.575266 0.2679612 0.494694 -6.374593 0.2679612 0.494694 -0 0.3158431 0.494694 -0 0.3158431 0.494694 -0 0.3158431 0.494694 -0.002268731 0.3158431 0.494694 -0.07076883 0.3158431 0.494694 -0.1119241 0.3158431 0.494694 -0.1475052 0.3158431 0.494694 -0.1846606 0.3158431 0.494694 -0.2245119 0.3158431 0.494694 -0.2679612 0.3158431 0.494694 -0.3158431 0.3158431 0.494694 -0.3689944 0.3158431 0.494694 -0.4282948 0.3158431 0.494694 -0.494694 0.3158431 0.494694 -0.5692344 0.3158431 0.494694 -0.6530715 0.3158431 0.494694 -0.7474945 0.3158431 0.494694 -0.8539475 0.3158431 0.494694 -0.974052 0.3158431 0.494694 -1.113885 0.3158431 0.494694 -1.27456 0.3158431 0.494694 -1.458117 0.3158431 0.494694 -1.667858 0.3158431 0.494694 -1.907556 0.3158431 0.494694 -2.181521 0.3158431 0.494694 -2.494678 0.3158431 0.494694 -2.852659 0.3158431 0.494694 -3.261896 0.3158431 0.494694 -3.729748 0.3158431 0.494694 -4.264621 0.3158431 0.494694 -4.876131 0.3158431 0.494694 -5.575266 0.3158431 0.494694 -6.374593 0.3158431 0.494694 -0 0.3689944 0.494694 -0 0.3689944 0.494694 -0 0.3689944 0.494694 -0.002268731 0.3689944 0.494694 -0.07076883 0.3689944 0.494694 -0.1119241 0.3689944 0.494694 -0.1475052 0.3689944 0.494694 -0.1846606 0.3689944 0.494694 -0.2245119 0.3689944 0.494694 -0.2679612 0.3689944 0.494694 -0.3158431 0.3689944 0.494694 -0.3689944 0.3689944 0.494694 -0.4282948 0.3689944 0.494694 -0.494694 0.3689944 0.494694 -0.5692344 0.3689944 0.494694 -0.6530715 0.3689944 0.494694 -0.7474945 0.3689944 0.494694 -0.8539475 0.3689944 0.494694 -0.974052 0.3689944 0.494694 -1.113885 0.3689944 0.494694 -1.27456 0.3689944 0.494694 -1.458117 0.3689944 0.494694 -1.667858 0.3689944 0.494694 -1.907556 0.3689944 0.494694 -2.181521 0.3689944 0.494694 -2.494678 0.3689944 0.494694 -2.852659 0.3689944 0.494694 -3.261896 0.3689944 0.494694 -3.729748 0.3689944 0.494694 -4.264621 0.3689944 0.494694 -4.876131 0.3689944 0.494694 -5.575266 0.3689944 0.494694 -6.374593 0.3689944 0.494694 -0 0.4282948 0.494694 -0 0.4282948 0.494694 -0 0.4282948 0.494694 -0.002268731 0.4282948 0.494694 -0.07076883 0.4282948 0.494694 -0.1119241 0.4282948 0.494694 -0.1475052 0.4282948 0.494694 -0.1846606 0.4282948 0.494694 -0.2245119 0.4282948 0.494694 -0.2679612 0.4282948 0.494694 -0.3158431 0.4282948 0.494694 -0.3689944 0.4282948 0.494694 -0.4282948 0.4282948 0.494694 -0.494694 0.4282948 0.494694 -0.5692344 0.4282948 0.494694 -0.6530715 0.4282948 0.494694 -0.7474945 0.4282948 0.494694 -0.8539475 0.4282948 0.494694 -0.974052 0.4282948 0.494694 -1.113885 0.4282948 0.494694 -1.27456 0.4282948 0.494694 -1.458117 0.4282948 0.494694 -1.667858 0.4282948 0.494694 -1.907556 0.4282948 0.494694 -2.181521 0.4282948 0.494694 -2.494678 0.4282948 0.494694 -2.852659 0.4282948 0.494694 -3.261896 0.4282948 0.494694 -3.729748 0.4282948 0.494694 -4.264621 0.4282948 0.494694 -4.876131 0.4282948 0.494694 -5.575266 0.4282948 0.494694 -6.374593 0.4282948 0.494694 -0 0.494694 0.494694 -0 0.494694 0.494694 -0 0.494694 0.494694 -0.002268731 0.494694 0.494694 -0.07076883 0.494694 0.494694 -0.1119241 0.494694 0.494694 -0.1475052 0.494694 0.494694 -0.1846606 0.494694 0.494694 -0.2245119 0.494694 0.494694 -0.2679612 0.494694 0.494694 -0.3158431 0.494694 0.494694 -0.3689944 0.494694 0.494694 -0.4282948 0.494694 0.494694 -0.494694 0.494694 0.494694 -0.5692344 0.494694 0.494694 -0.6530715 0.494694 0.494694 -0.7474945 0.494694 0.494694 -0.8539475 0.494694 0.494694 -0.974052 0.494694 0.494694 -1.113885 0.494694 0.494694 -1.27456 0.494694 0.494694 -1.458117 0.494694 0.494694 -1.667858 0.494694 0.494694 -1.907556 0.494694 0.494694 -2.181521 0.494694 0.494694 -2.494678 0.494694 0.494694 -2.852659 0.494694 0.494694 -3.261896 0.494694 0.494694 -3.729748 0.494694 0.494694 -4.264621 0.494694 0.494694 -4.876131 0.494694 0.494694 -5.575266 0.494694 0.494694 -6.374593 0.494694 0.494694 -0 0.5692344 0.494694 -0 0.5692344 0.494694 -0 0.5692344 0.494694 -0.002268731 0.5692344 0.494694 -0.07076883 0.5692344 0.494694 -0.1119241 0.5692344 0.494694 -0.1475052 0.5692344 0.494694 -0.1846606 0.5692344 0.494694 -0.2245119 0.5692344 0.494694 -0.2679612 0.5692344 0.494694 -0.3158431 0.5692344 0.494694 -0.3689944 0.5692344 0.494694 -0.4282948 0.5692344 0.494694 -0.494694 0.5692344 0.494694 -0.5692344 0.5692344 0.494694 -0.6530715 0.5692344 0.494694 -0.7474945 0.5692344 0.494694 -0.8539475 0.5692344 0.494694 -0.974052 0.5692344 0.494694 -1.113885 0.5692344 0.494694 -1.27456 0.5692344 0.494694 -1.458117 0.5692344 0.494694 -1.667858 0.5692344 0.494694 -1.907556 0.5692344 0.494694 -2.181521 0.5692344 0.494694 -2.494678 0.5692344 0.494694 -2.852659 0.5692344 0.494694 -3.261896 0.5692344 0.494694 -3.729748 0.5692344 0.494694 -4.264621 0.5692344 0.494694 -4.876131 0.5692344 0.494694 -5.575266 0.5692344 0.494694 -6.374593 0.5692344 0.494694 -0 0.6530715 0.494694 -0 0.6530715 0.494694 -0 0.6530715 0.494694 -0.002268731 0.6530715 0.494694 -0.07076883 0.6530715 0.494694 -0.1119241 0.6530715 0.494694 -0.1475052 0.6530715 0.494694 -0.1846606 0.6530715 0.494694 -0.2245119 0.6530715 0.494694 -0.2679612 0.6530715 0.494694 -0.3158431 0.6530715 0.494694 -0.3689944 0.6530715 0.494694 -0.4282948 0.6530715 0.494694 -0.494694 0.6530715 0.494694 -0.5692344 0.6530715 0.494694 -0.6530715 0.6530715 0.494694 -0.7474945 0.6530715 0.494694 -0.8539475 0.6530715 0.494694 -0.974052 0.6530715 0.494694 -1.113885 0.6530715 0.494694 -1.27456 0.6530715 0.494694 -1.458117 0.6530715 0.494694 -1.667858 0.6530715 0.494694 -1.907556 0.6530715 0.494694 -2.181521 0.6530715 0.494694 -2.494678 0.6530715 0.494694 -2.852659 0.6530715 0.494694 -3.261896 0.6530715 0.494694 -3.729748 0.6530715 0.494694 -4.264621 0.6530715 0.494694 -4.876131 0.6530715 0.494694 -5.575266 0.6530715 0.494694 -6.374593 0.6530715 0.494694 -0 0.7474945 0.494694 -0 0.7474945 0.494694 -0 0.7474945 0.494694 -0.002268731 0.7474945 0.494694 -0.07076883 0.7474945 0.494694 -0.1119241 0.7474945 0.494694 -0.1475052 0.7474945 0.494694 -0.1846606 0.7474945 0.494694 -0.2245119 0.7474945 0.494694 -0.2679612 0.7474945 0.494694 -0.3158431 0.7474945 0.494694 -0.3689944 0.7474945 0.494694 -0.4282948 0.7474945 0.494694 -0.494694 0.7474945 0.494694 -0.5692344 0.7474945 0.494694 -0.6530715 0.7474945 0.494694 -0.7474945 0.7474945 0.494694 -0.8539475 0.7474945 0.494694 -0.974052 0.7474945 0.494694 -1.113885 0.7474945 0.494694 -1.27456 0.7474945 0.494694 -1.458117 0.7474945 0.494694 -1.667858 0.7474945 0.494694 -1.907556 0.7474945 0.494694 -2.181521 0.7474945 0.494694 -2.494678 0.7474945 0.494694 -2.852659 0.7474945 0.494694 -3.261896 0.7474945 0.494694 -3.729748 0.7474945 0.494694 -4.264621 0.7474945 0.494694 -4.876131 0.7474945 0.494694 -5.575266 0.7474945 0.494694 -6.374593 0.7474945 0.494694 -0 0.8539475 0.494694 -0 0.8539475 0.494694 -0 0.8539475 0.494694 -0.002268731 0.8539475 0.494694 -0.07076883 0.8539475 0.494694 -0.1119241 0.8539475 0.494694 -0.1475052 0.8539475 0.494694 -0.1846606 0.8539475 0.494694 -0.2245119 0.8539475 0.494694 -0.2679612 0.8539475 0.494694 -0.3158431 0.8539475 0.494694 -0.3689944 0.8539475 0.494694 -0.4282948 0.8539475 0.494694 -0.494694 0.8539475 0.494694 -0.5692344 0.8539475 0.494694 -0.6530715 0.8539475 0.494694 -0.7474945 0.8539475 0.494694 -0.8539475 0.8539475 0.494694 -0.974052 0.8539475 0.494694 -1.113885 0.8539475 0.494694 -1.27456 0.8539475 0.494694 -1.458117 0.8539475 0.494694 -1.667858 0.8539475 0.494694 -1.907556 0.8539475 0.494694 -2.181521 0.8539475 0.494694 -2.494678 0.8539475 0.494694 -2.852659 0.8539475 0.494694 -3.261896 0.8539475 0.494694 -3.729748 0.8539475 0.494694 -4.264621 0.8539475 0.494694 -4.876131 0.8539475 0.494694 -5.575266 0.8539475 0.494694 -6.374593 0.8539475 0.494694 -0 0.974052 0.494694 -0 0.974052 0.494694 -0 0.974052 0.494694 -0.002268731 0.974052 0.494694 -0.07076883 0.974052 0.494694 -0.1119241 0.974052 0.494694 -0.1475052 0.974052 0.494694 -0.1846606 0.974052 0.494694 -0.2245119 0.974052 0.494694 -0.2679612 0.974052 0.494694 -0.3158431 0.974052 0.494694 -0.3689944 0.974052 0.494694 -0.4282948 0.974052 0.494694 -0.494694 0.974052 0.494694 -0.5692344 0.974052 0.494694 -0.6530715 0.974052 0.494694 -0.7474945 0.974052 0.494694 -0.8539475 0.974052 0.494694 -0.974052 0.974052 0.494694 -1.113885 0.974052 0.494694 -1.27456 0.974052 0.494694 -1.458117 0.974052 0.494694 -1.667858 0.974052 0.494694 -1.907556 0.974052 0.494694 -2.181521 0.974052 0.494694 -2.494678 0.974052 0.494694 -2.852659 0.974052 0.494694 -3.261896 0.974052 0.494694 -3.729748 0.974052 0.494694 -4.264621 0.974052 0.494694 -4.876131 0.974052 0.494694 -5.575266 0.974052 0.494694 -6.374593 0.974052 0.494694 -0 1.113885 0.494694 -0 1.113885 0.494694 -0 1.113885 0.494694 -0.002268731 1.113885 0.494694 -0.07076883 1.113885 0.494694 -0.1119241 1.113885 0.494694 -0.1475052 1.113885 0.494694 -0.1846606 1.113885 0.494694 -0.2245119 1.113885 0.494694 -0.2679612 1.113885 0.494694 -0.3158431 1.113885 0.494694 -0.3689944 1.113885 0.494694 -0.4282948 1.113885 0.494694 -0.494694 1.113885 0.494694 -0.5692344 1.113885 0.494694 -0.6530715 1.113885 0.494694 -0.7474945 1.113885 0.494694 -0.8539475 1.113885 0.494694 -0.974052 1.113885 0.494694 -1.113885 1.113885 0.494694 -1.27456 1.113885 0.494694 -1.458117 1.113885 0.494694 -1.667858 1.113885 0.494694 -1.907556 1.113885 0.494694 -2.181521 1.113885 0.494694 -2.494678 1.113885 0.494694 -2.852659 1.113885 0.494694 -3.261896 1.113885 0.494694 -3.729748 1.113885 0.494694 -4.264621 1.113885 0.494694 -4.876131 1.113885 0.494694 -5.575266 1.113885 0.494694 -6.374593 1.113885 0.494694 -0 1.27456 0.494694 -0 1.27456 0.494694 -0 1.27456 0.494694 -0.002268731 1.27456 0.494694 -0.07076883 1.27456 0.494694 -0.1119241 1.27456 0.494694 -0.1475052 1.27456 0.494694 -0.1846606 1.27456 0.494694 -0.2245119 1.27456 0.494694 -0.2679612 1.27456 0.494694 -0.3158431 1.27456 0.494694 -0.3689944 1.27456 0.494694 -0.4282948 1.27456 0.494694 -0.494694 1.27456 0.494694 -0.5692344 1.27456 0.494694 -0.6530715 1.27456 0.494694 -0.7474945 1.27456 0.494694 -0.8539475 1.27456 0.494694 -0.974052 1.27456 0.494694 -1.113885 1.27456 0.494694 -1.27456 1.27456 0.494694 -1.458117 1.27456 0.494694 -1.667858 1.27456 0.494694 -1.907556 1.27456 0.494694 -2.181521 1.27456 0.494694 -2.494678 1.27456 0.494694 -2.852659 1.27456 0.494694 -3.261896 1.27456 0.494694 -3.729748 1.27456 0.494694 -4.264621 1.27456 0.494694 -4.876131 1.27456 0.494694 -5.575266 1.27456 0.494694 -6.374593 1.27456 0.494694 -0 1.458117 0.494694 -0 1.458117 0.494694 -0 1.458117 0.494694 -0.002268731 1.458117 0.494694 -0.07076883 1.458117 0.494694 -0.1119241 1.458117 0.494694 -0.1475052 1.458117 0.494694 -0.1846606 1.458117 0.494694 -0.2245119 1.458117 0.494694 -0.2679612 1.458117 0.494694 -0.3158431 1.458117 0.494694 -0.3689944 1.458117 0.494694 -0.4282948 1.458117 0.494694 -0.494694 1.458117 0.494694 -0.5692344 1.458117 0.494694 -0.6530715 1.458117 0.494694 -0.7474945 1.458117 0.494694 -0.8539475 1.458117 0.494694 -0.974052 1.458117 0.494694 -1.113885 1.458117 0.494694 -1.27456 1.458117 0.494694 -1.458117 1.458117 0.494694 -1.667858 1.458117 0.494694 -1.907556 1.458117 0.494694 -2.181521 1.458117 0.494694 -2.494678 1.458117 0.494694 -2.852659 1.458117 0.494694 -3.261896 1.458117 0.494694 -3.729748 1.458117 0.494694 -4.264621 1.458117 0.494694 -4.876131 1.458117 0.494694 -5.575266 1.458117 0.494694 -6.374593 1.458117 0.494694 -0 1.667858 0.494694 -0 1.667858 0.494694 -0 1.667858 0.494694 -0.002268731 1.667858 0.494694 -0.07076883 1.667858 0.494694 -0.1119241 1.667858 0.494694 -0.1475052 1.667858 0.494694 -0.1846606 1.667858 0.494694 -0.2245119 1.667858 0.494694 -0.2679612 1.667858 0.494694 -0.3158431 1.667858 0.494694 -0.3689944 1.667858 0.494694 -0.4282948 1.667858 0.494694 -0.494694 1.667858 0.494694 -0.5692344 1.667858 0.494694 -0.6530715 1.667858 0.494694 -0.7474945 1.667858 0.494694 -0.8539475 1.667858 0.494694 -0.974052 1.667858 0.494694 -1.113885 1.667858 0.494694 -1.27456 1.667858 0.494694 -1.458117 1.667858 0.494694 -1.667858 1.667858 0.494694 -1.907556 1.667858 0.494694 -2.181521 1.667858 0.494694 -2.494678 1.667858 0.494694 -2.852659 1.667858 0.494694 -3.261896 1.667858 0.494694 -3.729748 1.667858 0.494694 -4.264621 1.667858 0.494694 -4.876131 1.667858 0.494694 -5.575266 1.667858 0.494694 -6.374593 1.667858 0.494694 -0 1.907556 0.494694 -0 1.907556 0.494694 -0 1.907556 0.494694 -0.002268731 1.907556 0.494694 -0.07076883 1.907556 0.494694 -0.1119241 1.907556 0.494694 -0.1475052 1.907556 0.494694 -0.1846606 1.907556 0.494694 -0.2245119 1.907556 0.494694 -0.2679612 1.907556 0.494694 -0.3158431 1.907556 0.494694 -0.3689944 1.907556 0.494694 -0.4282948 1.907556 0.494694 -0.494694 1.907556 0.494694 -0.5692344 1.907556 0.494694 -0.6530715 1.907556 0.494694 -0.7474945 1.907556 0.494694 -0.8539475 1.907556 0.494694 -0.974052 1.907556 0.494694 -1.113885 1.907556 0.494694 -1.27456 1.907556 0.494694 -1.458117 1.907556 0.494694 -1.667858 1.907556 0.494694 -1.907556 1.907556 0.494694 -2.181521 1.907556 0.494694 -2.494678 1.907556 0.494694 -2.852659 1.907556 0.494694 -3.261896 1.907556 0.494694 -3.729748 1.907556 0.494694 -4.264621 1.907556 0.494694 -4.876131 1.907556 0.494694 -5.575266 1.907556 0.494694 -6.374593 1.907556 0.494694 -0 2.181521 0.494694 -0 2.181521 0.494694 -0 2.181521 0.494694 -0.002268731 2.181521 0.494694 -0.07076883 2.181521 0.494694 -0.1119241 2.181521 0.494694 -0.1475052 2.181521 0.494694 -0.1846606 2.181521 0.494694 -0.2245119 2.181521 0.494694 -0.2679612 2.181521 0.494694 -0.3158431 2.181521 0.494694 -0.3689944 2.181521 0.494694 -0.4282948 2.181521 0.494694 -0.494694 2.181521 0.494694 -0.5692344 2.181521 0.494694 -0.6530715 2.181521 0.494694 -0.7474945 2.181521 0.494694 -0.8539475 2.181521 0.494694 -0.974052 2.181521 0.494694 -1.113885 2.181521 0.494694 -1.27456 2.181521 0.494694 -1.458117 2.181521 0.494694 -1.667858 2.181521 0.494694 -1.907556 2.181521 0.494694 -2.181521 2.181521 0.494694 -2.494678 2.181521 0.494694 -2.852659 2.181521 0.494694 -3.261896 2.181521 0.494694 -3.729748 2.181521 0.494694 -4.264621 2.181521 0.494694 -4.876131 2.181521 0.494694 -5.575266 2.181521 0.494694 -6.374593 2.181521 0.494694 -0 2.494678 0.494694 -0 2.494678 0.494694 -0 2.494678 0.494694 -0.002268731 2.494678 0.494694 -0.07076883 2.494678 0.494694 -0.1119241 2.494678 0.494694 -0.1475052 2.494678 0.494694 -0.1846606 2.494678 0.494694 -0.2245119 2.494678 0.494694 -0.2679612 2.494678 0.494694 -0.3158431 2.494678 0.494694 -0.3689944 2.494678 0.494694 -0.4282948 2.494678 0.494694 -0.494694 2.494678 0.494694 -0.5692344 2.494678 0.494694 -0.6530715 2.494678 0.494694 -0.7474945 2.494678 0.494694 -0.8539475 2.494678 0.494694 -0.974052 2.494678 0.494694 -1.113885 2.494678 0.494694 -1.27456 2.494678 0.494694 -1.458117 2.494678 0.494694 -1.667858 2.494678 0.494694 -1.907556 2.494678 0.494694 -2.181521 2.494678 0.494694 -2.494678 2.494678 0.494694 -2.852659 2.494678 0.494694 -3.261896 2.494678 0.494694 -3.729748 2.494678 0.494694 -4.264621 2.494678 0.494694 -4.876131 2.494678 0.494694 -5.575266 2.494678 0.494694 -6.374593 2.494678 0.494694 -0 2.852659 0.494694 -0 2.852659 0.494694 -0 2.852659 0.494694 -0.002268731 2.852659 0.494694 -0.07076883 2.852659 0.494694 -0.1119241 2.852659 0.494694 -0.1475052 2.852659 0.494694 -0.1846606 2.852659 0.494694 -0.2245119 2.852659 0.494694 -0.2679612 2.852659 0.494694 -0.3158431 2.852659 0.494694 -0.3689944 2.852659 0.494694 -0.4282948 2.852659 0.494694 -0.494694 2.852659 0.494694 -0.5692344 2.852659 0.494694 -0.6530715 2.852659 0.494694 -0.7474945 2.852659 0.494694 -0.8539475 2.852659 0.494694 -0.974052 2.852659 0.494694 -1.113885 2.852659 0.494694 -1.27456 2.852659 0.494694 -1.458117 2.852659 0.494694 -1.667858 2.852659 0.494694 -1.907556 2.852659 0.494694 -2.181521 2.852659 0.494694 -2.494678 2.852659 0.494694 -2.852659 2.852659 0.494694 -3.261896 2.852659 0.494694 -3.729748 2.852659 0.494694 -4.264621 2.852659 0.494694 -4.876131 2.852659 0.494694 -5.575266 2.852659 0.494694 -6.374593 2.852659 0.494694 -0 3.261896 0.494694 -0 3.261896 0.494694 -0 3.261896 0.494694 -0.002268731 3.261896 0.494694 -0.07076883 3.261896 0.494694 -0.1119241 3.261896 0.494694 -0.1475052 3.261896 0.494694 -0.1846606 3.261896 0.494694 -0.2245119 3.261896 0.494694 -0.2679612 3.261896 0.494694 -0.3158431 3.261896 0.494694 -0.3689944 3.261896 0.494694 -0.4282948 3.261896 0.494694 -0.494694 3.261896 0.494694 -0.5692344 3.261896 0.494694 -0.6530715 3.261896 0.494694 -0.7474945 3.261896 0.494694 -0.8539475 3.261896 0.494694 -0.974052 3.261896 0.494694 -1.113885 3.261896 0.494694 -1.27456 3.261896 0.494694 -1.458117 3.261896 0.494694 -1.667858 3.261896 0.494694 -1.907556 3.261896 0.494694 -2.181521 3.261896 0.494694 -2.494678 3.261896 0.494694 -2.852659 3.261896 0.494694 -3.261896 3.261896 0.494694 -3.729748 3.261896 0.494694 -4.264621 3.261896 0.494694 -4.876131 3.261896 0.494694 -5.575266 3.261896 0.494694 -6.374593 3.261896 0.494694 -0 3.729748 0.494694 -0 3.729748 0.494694 -0 3.729748 0.494694 -0.002268731 3.729748 0.494694 -0.07076883 3.729748 0.494694 -0.1119241 3.729748 0.494694 -0.1475052 3.729748 0.494694 -0.1846606 3.729748 0.494694 -0.2245119 3.729748 0.494694 -0.2679612 3.729748 0.494694 -0.3158431 3.729748 0.494694 -0.3689944 3.729748 0.494694 -0.4282948 3.729748 0.494694 -0.494694 3.729748 0.494694 -0.5692344 3.729748 0.494694 -0.6530715 3.729748 0.494694 -0.7474945 3.729748 0.494694 -0.8539475 3.729748 0.494694 -0.974052 3.729748 0.494694 -1.113885 3.729748 0.494694 -1.27456 3.729748 0.494694 -1.458117 3.729748 0.494694 -1.667858 3.729748 0.494694 -1.907556 3.729748 0.494694 -2.181521 3.729748 0.494694 -2.494678 3.729748 0.494694 -2.852659 3.729748 0.494694 -3.261896 3.729748 0.494694 -3.729748 3.729748 0.494694 -4.264621 3.729748 0.494694 -4.876131 3.729748 0.494694 -5.575266 3.729748 0.494694 -6.374593 3.729748 0.494694 -0 4.264621 0.494694 -0 4.264621 0.494694 -0 4.264621 0.494694 -0.002268731 4.264621 0.494694 -0.07076883 4.264621 0.494694 -0.1119241 4.264621 0.494694 -0.1475052 4.264621 0.494694 -0.1846606 4.264621 0.494694 -0.2245119 4.264621 0.494694 -0.2679612 4.264621 0.494694 -0.3158431 4.264621 0.494694 -0.3689944 4.264621 0.494694 -0.4282948 4.264621 0.494694 -0.494694 4.264621 0.494694 -0.5692344 4.264621 0.494694 -0.6530715 4.264621 0.494694 -0.7474945 4.264621 0.494694 -0.8539475 4.264621 0.494694 -0.974052 4.264621 0.494694 -1.113885 4.264621 0.494694 -1.27456 4.264621 0.494694 -1.458117 4.264621 0.494694 -1.667858 4.264621 0.494694 -1.907556 4.264621 0.494694 -2.181521 4.264621 0.494694 -2.494678 4.264621 0.494694 -2.852659 4.264621 0.494694 -3.261896 4.264621 0.494694 -3.729748 4.264621 0.494694 -4.264621 4.264621 0.494694 -4.876131 4.264621 0.494694 -5.575266 4.264621 0.494694 -6.374593 4.264621 0.494694 -0 4.876131 0.494694 -0 4.876131 0.494694 -0 4.876131 0.494694 -0.002268731 4.876131 0.494694 -0.07076883 4.876131 0.494694 -0.1119241 4.876131 0.494694 -0.1475052 4.876131 0.494694 -0.1846606 4.876131 0.494694 -0.2245119 4.876131 0.494694 -0.2679612 4.876131 0.494694 -0.3158431 4.876131 0.494694 -0.3689944 4.876131 0.494694 -0.4282948 4.876131 0.494694 -0.494694 4.876131 0.494694 -0.5692344 4.876131 0.494694 -0.6530715 4.876131 0.494694 -0.7474945 4.876131 0.494694 -0.8539475 4.876131 0.494694 -0.974052 4.876131 0.494694 -1.113885 4.876131 0.494694 -1.27456 4.876131 0.494694 -1.458117 4.876131 0.494694 -1.667858 4.876131 0.494694 -1.907556 4.876131 0.494694 -2.181521 4.876131 0.494694 -2.494678 4.876131 0.494694 -2.852659 4.876131 0.494694 -3.261896 4.876131 0.494694 -3.729748 4.876131 0.494694 -4.264621 4.876131 0.494694 -4.876131 4.876131 0.494694 -5.575266 4.876131 0.494694 -6.374593 4.876131 0.494694 -0 5.575266 0.494694 -0 5.575266 0.494694 -0 5.575266 0.494694 -0.002268731 5.575266 0.494694 -0.07076883 5.575266 0.494694 -0.1119241 5.575266 0.494694 -0.1475052 5.575266 0.494694 -0.1846606 5.575266 0.494694 -0.2245119 5.575266 0.494694 -0.2679612 5.575266 0.494694 -0.3158431 5.575266 0.494694 -0.3689944 5.575266 0.494694 -0.4282948 5.575266 0.494694 -0.494694 5.575266 0.494694 -0.5692344 5.575266 0.494694 -0.6530715 5.575266 0.494694 -0.7474945 5.575266 0.494694 -0.8539475 5.575266 0.494694 -0.974052 5.575266 0.494694 -1.113885 5.575266 0.494694 -1.27456 5.575266 0.494694 -1.458117 5.575266 0.494694 -1.667858 5.575266 0.494694 -1.907556 5.575266 0.494694 -2.181521 5.575266 0.494694 -2.494678 5.575266 0.494694 -2.852659 5.575266 0.494694 -3.261896 5.575266 0.494694 -3.729748 5.575266 0.494694 -4.264621 5.575266 0.494694 -4.876131 5.575266 0.494694 -5.575266 5.575266 0.494694 -6.374593 5.575266 0.494694 -0 6.374593 0.494694 -0 6.374593 0.494694 -0 6.374593 0.494694 -0.002268731 6.374593 0.494694 -0.07076883 6.374593 0.494694 -0.1119241 6.374593 0.494694 -0.1475052 6.374593 0.494694 -0.1846606 6.374593 0.494694 -0.2245119 6.374593 0.494694 -0.2679612 6.374593 0.494694 -0.3158431 6.374593 0.494694 -0.3689944 6.374593 0.494694 -0.4282948 6.374593 0.494694 -0.494694 6.374593 0.494694 -0.5692344 6.374593 0.494694 -0.6530715 6.374593 0.494694 -0.7474945 6.374593 0.494694 -0.8539475 6.374593 0.494694 -0.974052 6.374593 0.494694 -1.113885 6.374593 0.494694 -1.27456 6.374593 0.494694 -1.458117 6.374593 0.494694 -1.667858 6.374593 0.494694 -1.907556 6.374593 0.494694 -2.181521 6.374593 0.494694 -2.494678 6.374593 0.494694 -2.852659 6.374593 0.494694 -3.261896 6.374593 0.494694 -3.729748 6.374593 0.494694 -4.264621 6.374593 0.494694 -4.876131 6.374593 0.494694 -5.575266 6.374593 0.494694 -6.374593 6.374593 0.494694 -0 0 0.5692344 -0 0 0.5692344 -0 0 0.5692344 -0.002268731 0 0.5692344 -0.07076883 0 0.5692344 -0.1119241 0 0.5692344 -0.1475052 0 0.5692344 -0.1846606 0 0.5692344 -0.2245119 0 0.5692344 -0.2679612 0 0.5692344 -0.3158431 0 0.5692344 -0.3689944 0 0.5692344 -0.4282948 0 0.5692344 -0.494694 0 0.5692344 -0.5692344 0 0.5692344 -0.6530715 0 0.5692344 -0.7474945 0 0.5692344 -0.8539475 0 0.5692344 -0.974052 0 0.5692344 -1.113885 0 0.5692344 -1.27456 0 0.5692344 -1.458117 0 0.5692344 -1.667858 0 0.5692344 -1.907556 0 0.5692344 -2.181521 0 0.5692344 -2.494678 0 0.5692344 -2.852659 0 0.5692344 -3.261896 0 0.5692344 -3.729748 0 0.5692344 -4.264621 0 0.5692344 -4.876131 0 0.5692344 -5.575266 0 0.5692344 -6.374593 0 0.5692344 -0 0 0.5692344 -0 0 0.5692344 -0 0 0.5692344 -0.002268731 0 0.5692344 -0.07076883 0 0.5692344 -0.1119241 0 0.5692344 -0.1475052 0 0.5692344 -0.1846606 0 0.5692344 -0.2245119 0 0.5692344 -0.2679612 0 0.5692344 -0.3158431 0 0.5692344 -0.3689944 0 0.5692344 -0.4282948 0 0.5692344 -0.494694 0 0.5692344 -0.5692344 0 0.5692344 -0.6530715 0 0.5692344 -0.7474945 0 0.5692344 -0.8539475 0 0.5692344 -0.974052 0 0.5692344 -1.113885 0 0.5692344 -1.27456 0 0.5692344 -1.458117 0 0.5692344 -1.667858 0 0.5692344 -1.907556 0 0.5692344 -2.181521 0 0.5692344 -2.494678 0 0.5692344 -2.852659 0 0.5692344 -3.261896 0 0.5692344 -3.729748 0 0.5692344 -4.264621 0 0.5692344 -4.876131 0 0.5692344 -5.575266 0 0.5692344 -6.374593 0 0.5692344 -0 0 0.5692344 -0 0 0.5692344 -0 0 0.5692344 -0.002268731 0 0.5692344 -0.07076883 0 0.5692344 -0.1119241 0 0.5692344 -0.1475052 0 0.5692344 -0.1846606 0 0.5692344 -0.2245119 0 0.5692344 -0.2679612 0 0.5692344 -0.3158431 0 0.5692344 -0.3689944 0 0.5692344 -0.4282948 0 0.5692344 -0.494694 0 0.5692344 -0.5692344 0 0.5692344 -0.6530715 0 0.5692344 -0.7474945 0 0.5692344 -0.8539475 0 0.5692344 -0.974052 0 0.5692344 -1.113885 0 0.5692344 -1.27456 0 0.5692344 -1.458117 0 0.5692344 -1.667858 0 0.5692344 -1.907556 0 0.5692344 -2.181521 0 0.5692344 -2.494678 0 0.5692344 -2.852659 0 0.5692344 -3.261896 0 0.5692344 -3.729748 0 0.5692344 -4.264621 0 0.5692344 -4.876131 0 0.5692344 -5.575266 0 0.5692344 -6.374593 0 0.5692344 -0 0.002268731 0.5692344 -0 0.002268731 0.5692344 -0 0.002268731 0.5692344 -0.002268731 0.002268731 0.5692344 -0.07076883 0.002268731 0.5692344 -0.1119241 0.002268731 0.5692344 -0.1475052 0.002268731 0.5692344 -0.1846606 0.002268731 0.5692344 -0.2245119 0.002268731 0.5692344 -0.2679612 0.002268731 0.5692344 -0.3158431 0.002268731 0.5692344 -0.3689944 0.002268731 0.5692344 -0.4282948 0.002268731 0.5692344 -0.494694 0.002268731 0.5692344 -0.5692344 0.002268731 0.5692344 -0.6530715 0.002268731 0.5692344 -0.7474945 0.002268731 0.5692344 -0.8539475 0.002268731 0.5692344 -0.974052 0.002268731 0.5692344 -1.113885 0.002268731 0.5692344 -1.27456 0.002268731 0.5692344 -1.458117 0.002268731 0.5692344 -1.667858 0.002268731 0.5692344 -1.907556 0.002268731 0.5692344 -2.181521 0.002268731 0.5692344 -2.494678 0.002268731 0.5692344 -2.852659 0.002268731 0.5692344 -3.261896 0.002268731 0.5692344 -3.729748 0.002268731 0.5692344 -4.264621 0.002268731 0.5692344 -4.876131 0.002268731 0.5692344 -5.575266 0.002268731 0.5692344 -6.374593 0.002268731 0.5692344 -0 0.07076883 0.5692344 -0 0.07076883 0.5692344 -0 0.07076883 0.5692344 -0.002268731 0.07076883 0.5692344 -0.07076883 0.07076883 0.5692344 -0.1119241 0.07076883 0.5692344 -0.1475052 0.07076883 0.5692344 -0.1846606 0.07076883 0.5692344 -0.2245119 0.07076883 0.5692344 -0.2679612 0.07076883 0.5692344 -0.3158431 0.07076883 0.5692344 -0.3689944 0.07076883 0.5692344 -0.4282948 0.07076883 0.5692344 -0.494694 0.07076883 0.5692344 -0.5692344 0.07076883 0.5692344 -0.6530715 0.07076883 0.5692344 -0.7474945 0.07076883 0.5692344 -0.8539475 0.07076883 0.5692344 -0.974052 0.07076883 0.5692344 -1.113885 0.07076883 0.5692344 -1.27456 0.07076883 0.5692344 -1.458117 0.07076883 0.5692344 -1.667858 0.07076883 0.5692344 -1.907556 0.07076883 0.5692344 -2.181521 0.07076883 0.5692344 -2.494678 0.07076883 0.5692344 -2.852659 0.07076883 0.5692344 -3.261896 0.07076883 0.5692344 -3.729748 0.07076883 0.5692344 -4.264621 0.07076883 0.5692344 -4.876131 0.07076883 0.5692344 -5.575266 0.07076883 0.5692344 -6.374593 0.07076883 0.5692344 -0 0.1119241 0.5692344 -0 0.1119241 0.5692344 -0 0.1119241 0.5692344 -0.002268731 0.1119241 0.5692344 -0.07076883 0.1119241 0.5692344 -0.1119241 0.1119241 0.5692344 -0.1475052 0.1119241 0.5692344 -0.1846606 0.1119241 0.5692344 -0.2245119 0.1119241 0.5692344 -0.2679612 0.1119241 0.5692344 -0.3158431 0.1119241 0.5692344 -0.3689944 0.1119241 0.5692344 -0.4282948 0.1119241 0.5692344 -0.494694 0.1119241 0.5692344 -0.5692344 0.1119241 0.5692344 -0.6530715 0.1119241 0.5692344 -0.7474945 0.1119241 0.5692344 -0.8539475 0.1119241 0.5692344 -0.974052 0.1119241 0.5692344 -1.113885 0.1119241 0.5692344 -1.27456 0.1119241 0.5692344 -1.458117 0.1119241 0.5692344 -1.667858 0.1119241 0.5692344 -1.907556 0.1119241 0.5692344 -2.181521 0.1119241 0.5692344 -2.494678 0.1119241 0.5692344 -2.852659 0.1119241 0.5692344 -3.261896 0.1119241 0.5692344 -3.729748 0.1119241 0.5692344 -4.264621 0.1119241 0.5692344 -4.876131 0.1119241 0.5692344 -5.575266 0.1119241 0.5692344 -6.374593 0.1119241 0.5692344 -0 0.1475052 0.5692344 -0 0.1475052 0.5692344 -0 0.1475052 0.5692344 -0.002268731 0.1475052 0.5692344 -0.07076883 0.1475052 0.5692344 -0.1119241 0.1475052 0.5692344 -0.1475052 0.1475052 0.5692344 -0.1846606 0.1475052 0.5692344 -0.2245119 0.1475052 0.5692344 -0.2679612 0.1475052 0.5692344 -0.3158431 0.1475052 0.5692344 -0.3689944 0.1475052 0.5692344 -0.4282948 0.1475052 0.5692344 -0.494694 0.1475052 0.5692344 -0.5692344 0.1475052 0.5692344 -0.6530715 0.1475052 0.5692344 -0.7474945 0.1475052 0.5692344 -0.8539475 0.1475052 0.5692344 -0.974052 0.1475052 0.5692344 -1.113885 0.1475052 0.5692344 -1.27456 0.1475052 0.5692344 -1.458117 0.1475052 0.5692344 -1.667858 0.1475052 0.5692344 -1.907556 0.1475052 0.5692344 -2.181521 0.1475052 0.5692344 -2.494678 0.1475052 0.5692344 -2.852659 0.1475052 0.5692344 -3.261896 0.1475052 0.5692344 -3.729748 0.1475052 0.5692344 -4.264621 0.1475052 0.5692344 -4.876131 0.1475052 0.5692344 -5.575266 0.1475052 0.5692344 -6.374593 0.1475052 0.5692344 -0 0.1846606 0.5692344 -0 0.1846606 0.5692344 -0 0.1846606 0.5692344 -0.002268731 0.1846606 0.5692344 -0.07076883 0.1846606 0.5692344 -0.1119241 0.1846606 0.5692344 -0.1475052 0.1846606 0.5692344 -0.1846606 0.1846606 0.5692344 -0.2245119 0.1846606 0.5692344 -0.2679612 0.1846606 0.5692344 -0.3158431 0.1846606 0.5692344 -0.3689944 0.1846606 0.5692344 -0.4282948 0.1846606 0.5692344 -0.494694 0.1846606 0.5692344 -0.5692344 0.1846606 0.5692344 -0.6530715 0.1846606 0.5692344 -0.7474945 0.1846606 0.5692344 -0.8539475 0.1846606 0.5692344 -0.974052 0.1846606 0.5692344 -1.113885 0.1846606 0.5692344 -1.27456 0.1846606 0.5692344 -1.458117 0.1846606 0.5692344 -1.667858 0.1846606 0.5692344 -1.907556 0.1846606 0.5692344 -2.181521 0.1846606 0.5692344 -2.494678 0.1846606 0.5692344 -2.852659 0.1846606 0.5692344 -3.261896 0.1846606 0.5692344 -3.729748 0.1846606 0.5692344 -4.264621 0.1846606 0.5692344 -4.876131 0.1846606 0.5692344 -5.575266 0.1846606 0.5692344 -6.374593 0.1846606 0.5692344 -0 0.2245119 0.5692344 -0 0.2245119 0.5692344 -0 0.2245119 0.5692344 -0.002268731 0.2245119 0.5692344 -0.07076883 0.2245119 0.5692344 -0.1119241 0.2245119 0.5692344 -0.1475052 0.2245119 0.5692344 -0.1846606 0.2245119 0.5692344 -0.2245119 0.2245119 0.5692344 -0.2679612 0.2245119 0.5692344 -0.3158431 0.2245119 0.5692344 -0.3689944 0.2245119 0.5692344 -0.4282948 0.2245119 0.5692344 -0.494694 0.2245119 0.5692344 -0.5692344 0.2245119 0.5692344 -0.6530715 0.2245119 0.5692344 -0.7474945 0.2245119 0.5692344 -0.8539475 0.2245119 0.5692344 -0.974052 0.2245119 0.5692344 -1.113885 0.2245119 0.5692344 -1.27456 0.2245119 0.5692344 -1.458117 0.2245119 0.5692344 -1.667858 0.2245119 0.5692344 -1.907556 0.2245119 0.5692344 -2.181521 0.2245119 0.5692344 -2.494678 0.2245119 0.5692344 -2.852659 0.2245119 0.5692344 -3.261896 0.2245119 0.5692344 -3.729748 0.2245119 0.5692344 -4.264621 0.2245119 0.5692344 -4.876131 0.2245119 0.5692344 -5.575266 0.2245119 0.5692344 -6.374593 0.2245119 0.5692344 -0 0.2679612 0.5692344 -0 0.2679612 0.5692344 -0 0.2679612 0.5692344 -0.002268731 0.2679612 0.5692344 -0.07076883 0.2679612 0.5692344 -0.1119241 0.2679612 0.5692344 -0.1475052 0.2679612 0.5692344 -0.1846606 0.2679612 0.5692344 -0.2245119 0.2679612 0.5692344 -0.2679612 0.2679612 0.5692344 -0.3158431 0.2679612 0.5692344 -0.3689944 0.2679612 0.5692344 -0.4282948 0.2679612 0.5692344 -0.494694 0.2679612 0.5692344 -0.5692344 0.2679612 0.5692344 -0.6530715 0.2679612 0.5692344 -0.7474945 0.2679612 0.5692344 -0.8539475 0.2679612 0.5692344 -0.974052 0.2679612 0.5692344 -1.113885 0.2679612 0.5692344 -1.27456 0.2679612 0.5692344 -1.458117 0.2679612 0.5692344 -1.667858 0.2679612 0.5692344 -1.907556 0.2679612 0.5692344 -2.181521 0.2679612 0.5692344 -2.494678 0.2679612 0.5692344 -2.852659 0.2679612 0.5692344 -3.261896 0.2679612 0.5692344 -3.729748 0.2679612 0.5692344 -4.264621 0.2679612 0.5692344 -4.876131 0.2679612 0.5692344 -5.575266 0.2679612 0.5692344 -6.374593 0.2679612 0.5692344 -0 0.3158431 0.5692344 -0 0.3158431 0.5692344 -0 0.3158431 0.5692344 -0.002268731 0.3158431 0.5692344 -0.07076883 0.3158431 0.5692344 -0.1119241 0.3158431 0.5692344 -0.1475052 0.3158431 0.5692344 -0.1846606 0.3158431 0.5692344 -0.2245119 0.3158431 0.5692344 -0.2679612 0.3158431 0.5692344 -0.3158431 0.3158431 0.5692344 -0.3689944 0.3158431 0.5692344 -0.4282948 0.3158431 0.5692344 -0.494694 0.3158431 0.5692344 -0.5692344 0.3158431 0.5692344 -0.6530715 0.3158431 0.5692344 -0.7474945 0.3158431 0.5692344 -0.8539475 0.3158431 0.5692344 -0.974052 0.3158431 0.5692344 -1.113885 0.3158431 0.5692344 -1.27456 0.3158431 0.5692344 -1.458117 0.3158431 0.5692344 -1.667858 0.3158431 0.5692344 -1.907556 0.3158431 0.5692344 -2.181521 0.3158431 0.5692344 -2.494678 0.3158431 0.5692344 -2.852659 0.3158431 0.5692344 -3.261896 0.3158431 0.5692344 -3.729748 0.3158431 0.5692344 -4.264621 0.3158431 0.5692344 -4.876131 0.3158431 0.5692344 -5.575266 0.3158431 0.5692344 -6.374593 0.3158431 0.5692344 -0 0.3689944 0.5692344 -0 0.3689944 0.5692344 -0 0.3689944 0.5692344 -0.002268731 0.3689944 0.5692344 -0.07076883 0.3689944 0.5692344 -0.1119241 0.3689944 0.5692344 -0.1475052 0.3689944 0.5692344 -0.1846606 0.3689944 0.5692344 -0.2245119 0.3689944 0.5692344 -0.2679612 0.3689944 0.5692344 -0.3158431 0.3689944 0.5692344 -0.3689944 0.3689944 0.5692344 -0.4282948 0.3689944 0.5692344 -0.494694 0.3689944 0.5692344 -0.5692344 0.3689944 0.5692344 -0.6530715 0.3689944 0.5692344 -0.7474945 0.3689944 0.5692344 -0.8539475 0.3689944 0.5692344 -0.974052 0.3689944 0.5692344 -1.113885 0.3689944 0.5692344 -1.27456 0.3689944 0.5692344 -1.458117 0.3689944 0.5692344 -1.667858 0.3689944 0.5692344 -1.907556 0.3689944 0.5692344 -2.181521 0.3689944 0.5692344 -2.494678 0.3689944 0.5692344 -2.852659 0.3689944 0.5692344 -3.261896 0.3689944 0.5692344 -3.729748 0.3689944 0.5692344 -4.264621 0.3689944 0.5692344 -4.876131 0.3689944 0.5692344 -5.575266 0.3689944 0.5692344 -6.374593 0.3689944 0.5692344 -0 0.4282948 0.5692344 -0 0.4282948 0.5692344 -0 0.4282948 0.5692344 -0.002268731 0.4282948 0.5692344 -0.07076883 0.4282948 0.5692344 -0.1119241 0.4282948 0.5692344 -0.1475052 0.4282948 0.5692344 -0.1846606 0.4282948 0.5692344 -0.2245119 0.4282948 0.5692344 -0.2679612 0.4282948 0.5692344 -0.3158431 0.4282948 0.5692344 -0.3689944 0.4282948 0.5692344 -0.4282948 0.4282948 0.5692344 -0.494694 0.4282948 0.5692344 -0.5692344 0.4282948 0.5692344 -0.6530715 0.4282948 0.5692344 -0.7474945 0.4282948 0.5692344 -0.8539475 0.4282948 0.5692344 -0.974052 0.4282948 0.5692344 -1.113885 0.4282948 0.5692344 -1.27456 0.4282948 0.5692344 -1.458117 0.4282948 0.5692344 -1.667858 0.4282948 0.5692344 -1.907556 0.4282948 0.5692344 -2.181521 0.4282948 0.5692344 -2.494678 0.4282948 0.5692344 -2.852659 0.4282948 0.5692344 -3.261896 0.4282948 0.5692344 -3.729748 0.4282948 0.5692344 -4.264621 0.4282948 0.5692344 -4.876131 0.4282948 0.5692344 -5.575266 0.4282948 0.5692344 -6.374593 0.4282948 0.5692344 -0 0.494694 0.5692344 -0 0.494694 0.5692344 -0 0.494694 0.5692344 -0.002268731 0.494694 0.5692344 -0.07076883 0.494694 0.5692344 -0.1119241 0.494694 0.5692344 -0.1475052 0.494694 0.5692344 -0.1846606 0.494694 0.5692344 -0.2245119 0.494694 0.5692344 -0.2679612 0.494694 0.5692344 -0.3158431 0.494694 0.5692344 -0.3689944 0.494694 0.5692344 -0.4282948 0.494694 0.5692344 -0.494694 0.494694 0.5692344 -0.5692344 0.494694 0.5692344 -0.6530715 0.494694 0.5692344 -0.7474945 0.494694 0.5692344 -0.8539475 0.494694 0.5692344 -0.974052 0.494694 0.5692344 -1.113885 0.494694 0.5692344 -1.27456 0.494694 0.5692344 -1.458117 0.494694 0.5692344 -1.667858 0.494694 0.5692344 -1.907556 0.494694 0.5692344 -2.181521 0.494694 0.5692344 -2.494678 0.494694 0.5692344 -2.852659 0.494694 0.5692344 -3.261896 0.494694 0.5692344 -3.729748 0.494694 0.5692344 -4.264621 0.494694 0.5692344 -4.876131 0.494694 0.5692344 -5.575266 0.494694 0.5692344 -6.374593 0.494694 0.5692344 -0 0.5692344 0.5692344 -0 0.5692344 0.5692344 -0 0.5692344 0.5692344 -0.002268731 0.5692344 0.5692344 -0.07076883 0.5692344 0.5692344 -0.1119241 0.5692344 0.5692344 -0.1475052 0.5692344 0.5692344 -0.1846606 0.5692344 0.5692344 -0.2245119 0.5692344 0.5692344 -0.2679612 0.5692344 0.5692344 -0.3158431 0.5692344 0.5692344 -0.3689944 0.5692344 0.5692344 -0.4282948 0.5692344 0.5692344 -0.494694 0.5692344 0.5692344 -0.5692344 0.5692344 0.5692344 -0.6530715 0.5692344 0.5692344 -0.7474945 0.5692344 0.5692344 -0.8539475 0.5692344 0.5692344 -0.974052 0.5692344 0.5692344 -1.113885 0.5692344 0.5692344 -1.27456 0.5692344 0.5692344 -1.458117 0.5692344 0.5692344 -1.667858 0.5692344 0.5692344 -1.907556 0.5692344 0.5692344 -2.181521 0.5692344 0.5692344 -2.494678 0.5692344 0.5692344 -2.852659 0.5692344 0.5692344 -3.261896 0.5692344 0.5692344 -3.729748 0.5692344 0.5692344 -4.264621 0.5692344 0.5692344 -4.876131 0.5692344 0.5692344 -5.575266 0.5692344 0.5692344 -6.374593 0.5692344 0.5692344 -0 0.6530715 0.5692344 -0 0.6530715 0.5692344 -0 0.6530715 0.5692344 -0.002268731 0.6530715 0.5692344 -0.07076883 0.6530715 0.5692344 -0.1119241 0.6530715 0.5692344 -0.1475052 0.6530715 0.5692344 -0.1846606 0.6530715 0.5692344 -0.2245119 0.6530715 0.5692344 -0.2679612 0.6530715 0.5692344 -0.3158431 0.6530715 0.5692344 -0.3689944 0.6530715 0.5692344 -0.4282948 0.6530715 0.5692344 -0.494694 0.6530715 0.5692344 -0.5692344 0.6530715 0.5692344 -0.6530715 0.6530715 0.5692344 -0.7474945 0.6530715 0.5692344 -0.8539475 0.6530715 0.5692344 -0.974052 0.6530715 0.5692344 -1.113885 0.6530715 0.5692344 -1.27456 0.6530715 0.5692344 -1.458117 0.6530715 0.5692344 -1.667858 0.6530715 0.5692344 -1.907556 0.6530715 0.5692344 -2.181521 0.6530715 0.5692344 -2.494678 0.6530715 0.5692344 -2.852659 0.6530715 0.5692344 -3.261896 0.6530715 0.5692344 -3.729748 0.6530715 0.5692344 -4.264621 0.6530715 0.5692344 -4.876131 0.6530715 0.5692344 -5.575266 0.6530715 0.5692344 -6.374593 0.6530715 0.5692344 -0 0.7474945 0.5692344 -0 0.7474945 0.5692344 -0 0.7474945 0.5692344 -0.002268731 0.7474945 0.5692344 -0.07076883 0.7474945 0.5692344 -0.1119241 0.7474945 0.5692344 -0.1475052 0.7474945 0.5692344 -0.1846606 0.7474945 0.5692344 -0.2245119 0.7474945 0.5692344 -0.2679612 0.7474945 0.5692344 -0.3158431 0.7474945 0.5692344 -0.3689944 0.7474945 0.5692344 -0.4282948 0.7474945 0.5692344 -0.494694 0.7474945 0.5692344 -0.5692344 0.7474945 0.5692344 -0.6530715 0.7474945 0.5692344 -0.7474945 0.7474945 0.5692344 -0.8539475 0.7474945 0.5692344 -0.974052 0.7474945 0.5692344 -1.113885 0.7474945 0.5692344 -1.27456 0.7474945 0.5692344 -1.458117 0.7474945 0.5692344 -1.667858 0.7474945 0.5692344 -1.907556 0.7474945 0.5692344 -2.181521 0.7474945 0.5692344 -2.494678 0.7474945 0.5692344 -2.852659 0.7474945 0.5692344 -3.261896 0.7474945 0.5692344 -3.729748 0.7474945 0.5692344 -4.264621 0.7474945 0.5692344 -4.876131 0.7474945 0.5692344 -5.575266 0.7474945 0.5692344 -6.374593 0.7474945 0.5692344 -0 0.8539475 0.5692344 -0 0.8539475 0.5692344 -0 0.8539475 0.5692344 -0.002268731 0.8539475 0.5692344 -0.07076883 0.8539475 0.5692344 -0.1119241 0.8539475 0.5692344 -0.1475052 0.8539475 0.5692344 -0.1846606 0.8539475 0.5692344 -0.2245119 0.8539475 0.5692344 -0.2679612 0.8539475 0.5692344 -0.3158431 0.8539475 0.5692344 -0.3689944 0.8539475 0.5692344 -0.4282948 0.8539475 0.5692344 -0.494694 0.8539475 0.5692344 -0.5692344 0.8539475 0.5692344 -0.6530715 0.8539475 0.5692344 -0.7474945 0.8539475 0.5692344 -0.8539475 0.8539475 0.5692344 -0.974052 0.8539475 0.5692344 -1.113885 0.8539475 0.5692344 -1.27456 0.8539475 0.5692344 -1.458117 0.8539475 0.5692344 -1.667858 0.8539475 0.5692344 -1.907556 0.8539475 0.5692344 -2.181521 0.8539475 0.5692344 -2.494678 0.8539475 0.5692344 -2.852659 0.8539475 0.5692344 -3.261896 0.8539475 0.5692344 -3.729748 0.8539475 0.5692344 -4.264621 0.8539475 0.5692344 -4.876131 0.8539475 0.5692344 -5.575266 0.8539475 0.5692344 -6.374593 0.8539475 0.5692344 -0 0.974052 0.5692344 -0 0.974052 0.5692344 -0 0.974052 0.5692344 -0.002268731 0.974052 0.5692344 -0.07076883 0.974052 0.5692344 -0.1119241 0.974052 0.5692344 -0.1475052 0.974052 0.5692344 -0.1846606 0.974052 0.5692344 -0.2245119 0.974052 0.5692344 -0.2679612 0.974052 0.5692344 -0.3158431 0.974052 0.5692344 -0.3689944 0.974052 0.5692344 -0.4282948 0.974052 0.5692344 -0.494694 0.974052 0.5692344 -0.5692344 0.974052 0.5692344 -0.6530715 0.974052 0.5692344 -0.7474945 0.974052 0.5692344 -0.8539475 0.974052 0.5692344 -0.974052 0.974052 0.5692344 -1.113885 0.974052 0.5692344 -1.27456 0.974052 0.5692344 -1.458117 0.974052 0.5692344 -1.667858 0.974052 0.5692344 -1.907556 0.974052 0.5692344 -2.181521 0.974052 0.5692344 -2.494678 0.974052 0.5692344 -2.852659 0.974052 0.5692344 -3.261896 0.974052 0.5692344 -3.729748 0.974052 0.5692344 -4.264621 0.974052 0.5692344 -4.876131 0.974052 0.5692344 -5.575266 0.974052 0.5692344 -6.374593 0.974052 0.5692344 -0 1.113885 0.5692344 -0 1.113885 0.5692344 -0 1.113885 0.5692344 -0.002268731 1.113885 0.5692344 -0.07076883 1.113885 0.5692344 -0.1119241 1.113885 0.5692344 -0.1475052 1.113885 0.5692344 -0.1846606 1.113885 0.5692344 -0.2245119 1.113885 0.5692344 -0.2679612 1.113885 0.5692344 -0.3158431 1.113885 0.5692344 -0.3689944 1.113885 0.5692344 -0.4282948 1.113885 0.5692344 -0.494694 1.113885 0.5692344 -0.5692344 1.113885 0.5692344 -0.6530715 1.113885 0.5692344 -0.7474945 1.113885 0.5692344 -0.8539475 1.113885 0.5692344 -0.974052 1.113885 0.5692344 -1.113885 1.113885 0.5692344 -1.27456 1.113885 0.5692344 -1.458117 1.113885 0.5692344 -1.667858 1.113885 0.5692344 -1.907556 1.113885 0.5692344 -2.181521 1.113885 0.5692344 -2.494678 1.113885 0.5692344 -2.852659 1.113885 0.5692344 -3.261896 1.113885 0.5692344 -3.729748 1.113885 0.5692344 -4.264621 1.113885 0.5692344 -4.876131 1.113885 0.5692344 -5.575266 1.113885 0.5692344 -6.374593 1.113885 0.5692344 -0 1.27456 0.5692344 -0 1.27456 0.5692344 -0 1.27456 0.5692344 -0.002268731 1.27456 0.5692344 -0.07076883 1.27456 0.5692344 -0.1119241 1.27456 0.5692344 -0.1475052 1.27456 0.5692344 -0.1846606 1.27456 0.5692344 -0.2245119 1.27456 0.5692344 -0.2679612 1.27456 0.5692344 -0.3158431 1.27456 0.5692344 -0.3689944 1.27456 0.5692344 -0.4282948 1.27456 0.5692344 -0.494694 1.27456 0.5692344 -0.5692344 1.27456 0.5692344 -0.6530715 1.27456 0.5692344 -0.7474945 1.27456 0.5692344 -0.8539475 1.27456 0.5692344 -0.974052 1.27456 0.5692344 -1.113885 1.27456 0.5692344 -1.27456 1.27456 0.5692344 -1.458117 1.27456 0.5692344 -1.667858 1.27456 0.5692344 -1.907556 1.27456 0.5692344 -2.181521 1.27456 0.5692344 -2.494678 1.27456 0.5692344 -2.852659 1.27456 0.5692344 -3.261896 1.27456 0.5692344 -3.729748 1.27456 0.5692344 -4.264621 1.27456 0.5692344 -4.876131 1.27456 0.5692344 -5.575266 1.27456 0.5692344 -6.374593 1.27456 0.5692344 -0 1.458117 0.5692344 -0 1.458117 0.5692344 -0 1.458117 0.5692344 -0.002268731 1.458117 0.5692344 -0.07076883 1.458117 0.5692344 -0.1119241 1.458117 0.5692344 -0.1475052 1.458117 0.5692344 -0.1846606 1.458117 0.5692344 -0.2245119 1.458117 0.5692344 -0.2679612 1.458117 0.5692344 -0.3158431 1.458117 0.5692344 -0.3689944 1.458117 0.5692344 -0.4282948 1.458117 0.5692344 -0.494694 1.458117 0.5692344 -0.5692344 1.458117 0.5692344 -0.6530715 1.458117 0.5692344 -0.7474945 1.458117 0.5692344 -0.8539475 1.458117 0.5692344 -0.974052 1.458117 0.5692344 -1.113885 1.458117 0.5692344 -1.27456 1.458117 0.5692344 -1.458117 1.458117 0.5692344 -1.667858 1.458117 0.5692344 -1.907556 1.458117 0.5692344 -2.181521 1.458117 0.5692344 -2.494678 1.458117 0.5692344 -2.852659 1.458117 0.5692344 -3.261896 1.458117 0.5692344 -3.729748 1.458117 0.5692344 -4.264621 1.458117 0.5692344 -4.876131 1.458117 0.5692344 -5.575266 1.458117 0.5692344 -6.374593 1.458117 0.5692344 -0 1.667858 0.5692344 -0 1.667858 0.5692344 -0 1.667858 0.5692344 -0.002268731 1.667858 0.5692344 -0.07076883 1.667858 0.5692344 -0.1119241 1.667858 0.5692344 -0.1475052 1.667858 0.5692344 -0.1846606 1.667858 0.5692344 -0.2245119 1.667858 0.5692344 -0.2679612 1.667858 0.5692344 -0.3158431 1.667858 0.5692344 -0.3689944 1.667858 0.5692344 -0.4282948 1.667858 0.5692344 -0.494694 1.667858 0.5692344 -0.5692344 1.667858 0.5692344 -0.6530715 1.667858 0.5692344 -0.7474945 1.667858 0.5692344 -0.8539475 1.667858 0.5692344 -0.974052 1.667858 0.5692344 -1.113885 1.667858 0.5692344 -1.27456 1.667858 0.5692344 -1.458117 1.667858 0.5692344 -1.667858 1.667858 0.5692344 -1.907556 1.667858 0.5692344 -2.181521 1.667858 0.5692344 -2.494678 1.667858 0.5692344 -2.852659 1.667858 0.5692344 -3.261896 1.667858 0.5692344 -3.729748 1.667858 0.5692344 -4.264621 1.667858 0.5692344 -4.876131 1.667858 0.5692344 -5.575266 1.667858 0.5692344 -6.374593 1.667858 0.5692344 -0 1.907556 0.5692344 -0 1.907556 0.5692344 -0 1.907556 0.5692344 -0.002268731 1.907556 0.5692344 -0.07076883 1.907556 0.5692344 -0.1119241 1.907556 0.5692344 -0.1475052 1.907556 0.5692344 -0.1846606 1.907556 0.5692344 -0.2245119 1.907556 0.5692344 -0.2679612 1.907556 0.5692344 -0.3158431 1.907556 0.5692344 -0.3689944 1.907556 0.5692344 -0.4282948 1.907556 0.5692344 -0.494694 1.907556 0.5692344 -0.5692344 1.907556 0.5692344 -0.6530715 1.907556 0.5692344 -0.7474945 1.907556 0.5692344 -0.8539475 1.907556 0.5692344 -0.974052 1.907556 0.5692344 -1.113885 1.907556 0.5692344 -1.27456 1.907556 0.5692344 -1.458117 1.907556 0.5692344 -1.667858 1.907556 0.5692344 -1.907556 1.907556 0.5692344 -2.181521 1.907556 0.5692344 -2.494678 1.907556 0.5692344 -2.852659 1.907556 0.5692344 -3.261896 1.907556 0.5692344 -3.729748 1.907556 0.5692344 -4.264621 1.907556 0.5692344 -4.876131 1.907556 0.5692344 -5.575266 1.907556 0.5692344 -6.374593 1.907556 0.5692344 -0 2.181521 0.5692344 -0 2.181521 0.5692344 -0 2.181521 0.5692344 -0.002268731 2.181521 0.5692344 -0.07076883 2.181521 0.5692344 -0.1119241 2.181521 0.5692344 -0.1475052 2.181521 0.5692344 -0.1846606 2.181521 0.5692344 -0.2245119 2.181521 0.5692344 -0.2679612 2.181521 0.5692344 -0.3158431 2.181521 0.5692344 -0.3689944 2.181521 0.5692344 -0.4282948 2.181521 0.5692344 -0.494694 2.181521 0.5692344 -0.5692344 2.181521 0.5692344 -0.6530715 2.181521 0.5692344 -0.7474945 2.181521 0.5692344 -0.8539475 2.181521 0.5692344 -0.974052 2.181521 0.5692344 -1.113885 2.181521 0.5692344 -1.27456 2.181521 0.5692344 -1.458117 2.181521 0.5692344 -1.667858 2.181521 0.5692344 -1.907556 2.181521 0.5692344 -2.181521 2.181521 0.5692344 -2.494678 2.181521 0.5692344 -2.852659 2.181521 0.5692344 -3.261896 2.181521 0.5692344 -3.729748 2.181521 0.5692344 -4.264621 2.181521 0.5692344 -4.876131 2.181521 0.5692344 -5.575266 2.181521 0.5692344 -6.374593 2.181521 0.5692344 -0 2.494678 0.5692344 -0 2.494678 0.5692344 -0 2.494678 0.5692344 -0.002268731 2.494678 0.5692344 -0.07076883 2.494678 0.5692344 -0.1119241 2.494678 0.5692344 -0.1475052 2.494678 0.5692344 -0.1846606 2.494678 0.5692344 -0.2245119 2.494678 0.5692344 -0.2679612 2.494678 0.5692344 -0.3158431 2.494678 0.5692344 -0.3689944 2.494678 0.5692344 -0.4282948 2.494678 0.5692344 -0.494694 2.494678 0.5692344 -0.5692344 2.494678 0.5692344 -0.6530715 2.494678 0.5692344 -0.7474945 2.494678 0.5692344 -0.8539475 2.494678 0.5692344 -0.974052 2.494678 0.5692344 -1.113885 2.494678 0.5692344 -1.27456 2.494678 0.5692344 -1.458117 2.494678 0.5692344 -1.667858 2.494678 0.5692344 -1.907556 2.494678 0.5692344 -2.181521 2.494678 0.5692344 -2.494678 2.494678 0.5692344 -2.852659 2.494678 0.5692344 -3.261896 2.494678 0.5692344 -3.729748 2.494678 0.5692344 -4.264621 2.494678 0.5692344 -4.876131 2.494678 0.5692344 -5.575266 2.494678 0.5692344 -6.374593 2.494678 0.5692344 -0 2.852659 0.5692344 -0 2.852659 0.5692344 -0 2.852659 0.5692344 -0.002268731 2.852659 0.5692344 -0.07076883 2.852659 0.5692344 -0.1119241 2.852659 0.5692344 -0.1475052 2.852659 0.5692344 -0.1846606 2.852659 0.5692344 -0.2245119 2.852659 0.5692344 -0.2679612 2.852659 0.5692344 -0.3158431 2.852659 0.5692344 -0.3689944 2.852659 0.5692344 -0.4282948 2.852659 0.5692344 -0.494694 2.852659 0.5692344 -0.5692344 2.852659 0.5692344 -0.6530715 2.852659 0.5692344 -0.7474945 2.852659 0.5692344 -0.8539475 2.852659 0.5692344 -0.974052 2.852659 0.5692344 -1.113885 2.852659 0.5692344 -1.27456 2.852659 0.5692344 -1.458117 2.852659 0.5692344 -1.667858 2.852659 0.5692344 -1.907556 2.852659 0.5692344 -2.181521 2.852659 0.5692344 -2.494678 2.852659 0.5692344 -2.852659 2.852659 0.5692344 -3.261896 2.852659 0.5692344 -3.729748 2.852659 0.5692344 -4.264621 2.852659 0.5692344 -4.876131 2.852659 0.5692344 -5.575266 2.852659 0.5692344 -6.374593 2.852659 0.5692344 -0 3.261896 0.5692344 -0 3.261896 0.5692344 -0 3.261896 0.5692344 -0.002268731 3.261896 0.5692344 -0.07076883 3.261896 0.5692344 -0.1119241 3.261896 0.5692344 -0.1475052 3.261896 0.5692344 -0.1846606 3.261896 0.5692344 -0.2245119 3.261896 0.5692344 -0.2679612 3.261896 0.5692344 -0.3158431 3.261896 0.5692344 -0.3689944 3.261896 0.5692344 -0.4282948 3.261896 0.5692344 -0.494694 3.261896 0.5692344 -0.5692344 3.261896 0.5692344 -0.6530715 3.261896 0.5692344 -0.7474945 3.261896 0.5692344 -0.8539475 3.261896 0.5692344 -0.974052 3.261896 0.5692344 -1.113885 3.261896 0.5692344 -1.27456 3.261896 0.5692344 -1.458117 3.261896 0.5692344 -1.667858 3.261896 0.5692344 -1.907556 3.261896 0.5692344 -2.181521 3.261896 0.5692344 -2.494678 3.261896 0.5692344 -2.852659 3.261896 0.5692344 -3.261896 3.261896 0.5692344 -3.729748 3.261896 0.5692344 -4.264621 3.261896 0.5692344 -4.876131 3.261896 0.5692344 -5.575266 3.261896 0.5692344 -6.374593 3.261896 0.5692344 -0 3.729748 0.5692344 -0 3.729748 0.5692344 -0 3.729748 0.5692344 -0.002268731 3.729748 0.5692344 -0.07076883 3.729748 0.5692344 -0.1119241 3.729748 0.5692344 -0.1475052 3.729748 0.5692344 -0.1846606 3.729748 0.5692344 -0.2245119 3.729748 0.5692344 -0.2679612 3.729748 0.5692344 -0.3158431 3.729748 0.5692344 -0.3689944 3.729748 0.5692344 -0.4282948 3.729748 0.5692344 -0.494694 3.729748 0.5692344 -0.5692344 3.729748 0.5692344 -0.6530715 3.729748 0.5692344 -0.7474945 3.729748 0.5692344 -0.8539475 3.729748 0.5692344 -0.974052 3.729748 0.5692344 -1.113885 3.729748 0.5692344 -1.27456 3.729748 0.5692344 -1.458117 3.729748 0.5692344 -1.667858 3.729748 0.5692344 -1.907556 3.729748 0.5692344 -2.181521 3.729748 0.5692344 -2.494678 3.729748 0.5692344 -2.852659 3.729748 0.5692344 -3.261896 3.729748 0.5692344 -3.729748 3.729748 0.5692344 -4.264621 3.729748 0.5692344 -4.876131 3.729748 0.5692344 -5.575266 3.729748 0.5692344 -6.374593 3.729748 0.5692344 -0 4.264621 0.5692344 -0 4.264621 0.5692344 -0 4.264621 0.5692344 -0.002268731 4.264621 0.5692344 -0.07076883 4.264621 0.5692344 -0.1119241 4.264621 0.5692344 -0.1475052 4.264621 0.5692344 -0.1846606 4.264621 0.5692344 -0.2245119 4.264621 0.5692344 -0.2679612 4.264621 0.5692344 -0.3158431 4.264621 0.5692344 -0.3689944 4.264621 0.5692344 -0.4282948 4.264621 0.5692344 -0.494694 4.264621 0.5692344 -0.5692344 4.264621 0.5692344 -0.6530715 4.264621 0.5692344 -0.7474945 4.264621 0.5692344 -0.8539475 4.264621 0.5692344 -0.974052 4.264621 0.5692344 -1.113885 4.264621 0.5692344 -1.27456 4.264621 0.5692344 -1.458117 4.264621 0.5692344 -1.667858 4.264621 0.5692344 -1.907556 4.264621 0.5692344 -2.181521 4.264621 0.5692344 -2.494678 4.264621 0.5692344 -2.852659 4.264621 0.5692344 -3.261896 4.264621 0.5692344 -3.729748 4.264621 0.5692344 -4.264621 4.264621 0.5692344 -4.876131 4.264621 0.5692344 -5.575266 4.264621 0.5692344 -6.374593 4.264621 0.5692344 -0 4.876131 0.5692344 -0 4.876131 0.5692344 -0 4.876131 0.5692344 -0.002268731 4.876131 0.5692344 -0.07076883 4.876131 0.5692344 -0.1119241 4.876131 0.5692344 -0.1475052 4.876131 0.5692344 -0.1846606 4.876131 0.5692344 -0.2245119 4.876131 0.5692344 -0.2679612 4.876131 0.5692344 -0.3158431 4.876131 0.5692344 -0.3689944 4.876131 0.5692344 -0.4282948 4.876131 0.5692344 -0.494694 4.876131 0.5692344 -0.5692344 4.876131 0.5692344 -0.6530715 4.876131 0.5692344 -0.7474945 4.876131 0.5692344 -0.8539475 4.876131 0.5692344 -0.974052 4.876131 0.5692344 -1.113885 4.876131 0.5692344 -1.27456 4.876131 0.5692344 -1.458117 4.876131 0.5692344 -1.667858 4.876131 0.5692344 -1.907556 4.876131 0.5692344 -2.181521 4.876131 0.5692344 -2.494678 4.876131 0.5692344 -2.852659 4.876131 0.5692344 -3.261896 4.876131 0.5692344 -3.729748 4.876131 0.5692344 -4.264621 4.876131 0.5692344 -4.876131 4.876131 0.5692344 -5.575266 4.876131 0.5692344 -6.374593 4.876131 0.5692344 -0 5.575266 0.5692344 -0 5.575266 0.5692344 -0 5.575266 0.5692344 -0.002268731 5.575266 0.5692344 -0.07076883 5.575266 0.5692344 -0.1119241 5.575266 0.5692344 -0.1475052 5.575266 0.5692344 -0.1846606 5.575266 0.5692344 -0.2245119 5.575266 0.5692344 -0.2679612 5.575266 0.5692344 -0.3158431 5.575266 0.5692344 -0.3689944 5.575266 0.5692344 -0.4282948 5.575266 0.5692344 -0.494694 5.575266 0.5692344 -0.5692344 5.575266 0.5692344 -0.6530715 5.575266 0.5692344 -0.7474945 5.575266 0.5692344 -0.8539475 5.575266 0.5692344 -0.974052 5.575266 0.5692344 -1.113885 5.575266 0.5692344 -1.27456 5.575266 0.5692344 -1.458117 5.575266 0.5692344 -1.667858 5.575266 0.5692344 -1.907556 5.575266 0.5692344 -2.181521 5.575266 0.5692344 -2.494678 5.575266 0.5692344 -2.852659 5.575266 0.5692344 -3.261896 5.575266 0.5692344 -3.729748 5.575266 0.5692344 -4.264621 5.575266 0.5692344 -4.876131 5.575266 0.5692344 -5.575266 5.575266 0.5692344 -6.374593 5.575266 0.5692344 -0 6.374593 0.5692344 -0 6.374593 0.5692344 -0 6.374593 0.5692344 -0.002268731 6.374593 0.5692344 -0.07076883 6.374593 0.5692344 -0.1119241 6.374593 0.5692344 -0.1475052 6.374593 0.5692344 -0.1846606 6.374593 0.5692344 -0.2245119 6.374593 0.5692344 -0.2679612 6.374593 0.5692344 -0.3158431 6.374593 0.5692344 -0.3689944 6.374593 0.5692344 -0.4282948 6.374593 0.5692344 -0.494694 6.374593 0.5692344 -0.5692344 6.374593 0.5692344 -0.6530715 6.374593 0.5692344 -0.7474945 6.374593 0.5692344 -0.8539475 6.374593 0.5692344 -0.974052 6.374593 0.5692344 -1.113885 6.374593 0.5692344 -1.27456 6.374593 0.5692344 -1.458117 6.374593 0.5692344 -1.667858 6.374593 0.5692344 -1.907556 6.374593 0.5692344 -2.181521 6.374593 0.5692344 -2.494678 6.374593 0.5692344 -2.852659 6.374593 0.5692344 -3.261896 6.374593 0.5692344 -3.729748 6.374593 0.5692344 -4.264621 6.374593 0.5692344 -4.876131 6.374593 0.5692344 -5.575266 6.374593 0.5692344 -6.374593 6.374593 0.5692344 -0 0 0.6530715 -0 0 0.6530715 -0 0 0.6530715 -0.002268731 0 0.6530715 -0.07076883 0 0.6530715 -0.1119241 0 0.6530715 -0.1475052 0 0.6530715 -0.1846606 0 0.6530715 -0.2245119 0 0.6530715 -0.2679612 0 0.6530715 -0.3158431 0 0.6530715 -0.3689944 0 0.6530715 -0.4282948 0 0.6530715 -0.494694 0 0.6530715 -0.5692344 0 0.6530715 -0.6530715 0 0.6530715 -0.7474945 0 0.6530715 -0.8539475 0 0.6530715 -0.974052 0 0.6530715 -1.113885 0 0.6530715 -1.27456 0 0.6530715 -1.458117 0 0.6530715 -1.667858 0 0.6530715 -1.907556 0 0.6530715 -2.181521 0 0.6530715 -2.494678 0 0.6530715 -2.852659 0 0.6530715 -3.261896 0 0.6530715 -3.729748 0 0.6530715 -4.264621 0 0.6530715 -4.876131 0 0.6530715 -5.575266 0 0.6530715 -6.374593 0 0.6530715 -0 0 0.6530715 -0 0 0.6530715 -0 0 0.6530715 -0.002268731 0 0.6530715 -0.07076883 0 0.6530715 -0.1119241 0 0.6530715 -0.1475052 0 0.6530715 -0.1846606 0 0.6530715 -0.2245119 0 0.6530715 -0.2679612 0 0.6530715 -0.3158431 0 0.6530715 -0.3689944 0 0.6530715 -0.4282948 0 0.6530715 -0.494694 0 0.6530715 -0.5692344 0 0.6530715 -0.6530715 0 0.6530715 -0.7474945 0 0.6530715 -0.8539475 0 0.6530715 -0.974052 0 0.6530715 -1.113885 0 0.6530715 -1.27456 0 0.6530715 -1.458117 0 0.6530715 -1.667858 0 0.6530715 -1.907556 0 0.6530715 -2.181521 0 0.6530715 -2.494678 0 0.6530715 -2.852659 0 0.6530715 -3.261896 0 0.6530715 -3.729748 0 0.6530715 -4.264621 0 0.6530715 -4.876131 0 0.6530715 -5.575266 0 0.6530715 -6.374593 0 0.6530715 -0 0 0.6530715 -0 0 0.6530715 -0 0 0.6530715 -0.002268731 0 0.6530715 -0.07076883 0 0.6530715 -0.1119241 0 0.6530715 -0.1475052 0 0.6530715 -0.1846606 0 0.6530715 -0.2245119 0 0.6530715 -0.2679612 0 0.6530715 -0.3158431 0 0.6530715 -0.3689944 0 0.6530715 -0.4282948 0 0.6530715 -0.494694 0 0.6530715 -0.5692344 0 0.6530715 -0.6530715 0 0.6530715 -0.7474945 0 0.6530715 -0.8539475 0 0.6530715 -0.974052 0 0.6530715 -1.113885 0 0.6530715 -1.27456 0 0.6530715 -1.458117 0 0.6530715 -1.667858 0 0.6530715 -1.907556 0 0.6530715 -2.181521 0 0.6530715 -2.494678 0 0.6530715 -2.852659 0 0.6530715 -3.261896 0 0.6530715 -3.729748 0 0.6530715 -4.264621 0 0.6530715 -4.876131 0 0.6530715 -5.575266 0 0.6530715 -6.374593 0 0.6530715 -0 0.002268731 0.6530715 -0 0.002268731 0.6530715 -0 0.002268731 0.6530715 -0.002268731 0.002268731 0.6530715 -0.07076883 0.002268731 0.6530715 -0.1119241 0.002268731 0.6530715 -0.1475052 0.002268731 0.6530715 -0.1846606 0.002268731 0.6530715 -0.2245119 0.002268731 0.6530715 -0.2679612 0.002268731 0.6530715 -0.3158431 0.002268731 0.6530715 -0.3689944 0.002268731 0.6530715 -0.4282948 0.002268731 0.6530715 -0.494694 0.002268731 0.6530715 -0.5692344 0.002268731 0.6530715 -0.6530715 0.002268731 0.6530715 -0.7474945 0.002268731 0.6530715 -0.8539475 0.002268731 0.6530715 -0.974052 0.002268731 0.6530715 -1.113885 0.002268731 0.6530715 -1.27456 0.002268731 0.6530715 -1.458117 0.002268731 0.6530715 -1.667858 0.002268731 0.6530715 -1.907556 0.002268731 0.6530715 -2.181521 0.002268731 0.6530715 -2.494678 0.002268731 0.6530715 -2.852659 0.002268731 0.6530715 -3.261896 0.002268731 0.6530715 -3.729748 0.002268731 0.6530715 -4.264621 0.002268731 0.6530715 -4.876131 0.002268731 0.6530715 -5.575266 0.002268731 0.6530715 -6.374593 0.002268731 0.6530715 -0 0.07076883 0.6530715 -0 0.07076883 0.6530715 -0 0.07076883 0.6530715 -0.002268731 0.07076883 0.6530715 -0.07076883 0.07076883 0.6530715 -0.1119241 0.07076883 0.6530715 -0.1475052 0.07076883 0.6530715 -0.1846606 0.07076883 0.6530715 -0.2245119 0.07076883 0.6530715 -0.2679612 0.07076883 0.6530715 -0.3158431 0.07076883 0.6530715 -0.3689944 0.07076883 0.6530715 -0.4282948 0.07076883 0.6530715 -0.494694 0.07076883 0.6530715 -0.5692344 0.07076883 0.6530715 -0.6530715 0.07076883 0.6530715 -0.7474945 0.07076883 0.6530715 -0.8539475 0.07076883 0.6530715 -0.974052 0.07076883 0.6530715 -1.113885 0.07076883 0.6530715 -1.27456 0.07076883 0.6530715 -1.458117 0.07076883 0.6530715 -1.667858 0.07076883 0.6530715 -1.907556 0.07076883 0.6530715 -2.181521 0.07076883 0.6530715 -2.494678 0.07076883 0.6530715 -2.852659 0.07076883 0.6530715 -3.261896 0.07076883 0.6530715 -3.729748 0.07076883 0.6530715 -4.264621 0.07076883 0.6530715 -4.876131 0.07076883 0.6530715 -5.575266 0.07076883 0.6530715 -6.374593 0.07076883 0.6530715 -0 0.1119241 0.6530715 -0 0.1119241 0.6530715 -0 0.1119241 0.6530715 -0.002268731 0.1119241 0.6530715 -0.07076883 0.1119241 0.6530715 -0.1119241 0.1119241 0.6530715 -0.1475052 0.1119241 0.6530715 -0.1846606 0.1119241 0.6530715 -0.2245119 0.1119241 0.6530715 -0.2679612 0.1119241 0.6530715 -0.3158431 0.1119241 0.6530715 -0.3689944 0.1119241 0.6530715 -0.4282948 0.1119241 0.6530715 -0.494694 0.1119241 0.6530715 -0.5692344 0.1119241 0.6530715 -0.6530715 0.1119241 0.6530715 -0.7474945 0.1119241 0.6530715 -0.8539475 0.1119241 0.6530715 -0.974052 0.1119241 0.6530715 -1.113885 0.1119241 0.6530715 -1.27456 0.1119241 0.6530715 -1.458117 0.1119241 0.6530715 -1.667858 0.1119241 0.6530715 -1.907556 0.1119241 0.6530715 -2.181521 0.1119241 0.6530715 -2.494678 0.1119241 0.6530715 -2.852659 0.1119241 0.6530715 -3.261896 0.1119241 0.6530715 -3.729748 0.1119241 0.6530715 -4.264621 0.1119241 0.6530715 -4.876131 0.1119241 0.6530715 -5.575266 0.1119241 0.6530715 -6.374593 0.1119241 0.6530715 -0 0.1475052 0.6530715 -0 0.1475052 0.6530715 -0 0.1475052 0.6530715 -0.002268731 0.1475052 0.6530715 -0.07076883 0.1475052 0.6530715 -0.1119241 0.1475052 0.6530715 -0.1475052 0.1475052 0.6530715 -0.1846606 0.1475052 0.6530715 -0.2245119 0.1475052 0.6530715 -0.2679612 0.1475052 0.6530715 -0.3158431 0.1475052 0.6530715 -0.3689944 0.1475052 0.6530715 -0.4282948 0.1475052 0.6530715 -0.494694 0.1475052 0.6530715 -0.5692344 0.1475052 0.6530715 -0.6530715 0.1475052 0.6530715 -0.7474945 0.1475052 0.6530715 -0.8539475 0.1475052 0.6530715 -0.974052 0.1475052 0.6530715 -1.113885 0.1475052 0.6530715 -1.27456 0.1475052 0.6530715 -1.458117 0.1475052 0.6530715 -1.667858 0.1475052 0.6530715 -1.907556 0.1475052 0.6530715 -2.181521 0.1475052 0.6530715 -2.494678 0.1475052 0.6530715 -2.852659 0.1475052 0.6530715 -3.261896 0.1475052 0.6530715 -3.729748 0.1475052 0.6530715 -4.264621 0.1475052 0.6530715 -4.876131 0.1475052 0.6530715 -5.575266 0.1475052 0.6530715 -6.374593 0.1475052 0.6530715 -0 0.1846606 0.6530715 -0 0.1846606 0.6530715 -0 0.1846606 0.6530715 -0.002268731 0.1846606 0.6530715 -0.07076883 0.1846606 0.6530715 -0.1119241 0.1846606 0.6530715 -0.1475052 0.1846606 0.6530715 -0.1846606 0.1846606 0.6530715 -0.2245119 0.1846606 0.6530715 -0.2679612 0.1846606 0.6530715 -0.3158431 0.1846606 0.6530715 -0.3689944 0.1846606 0.6530715 -0.4282948 0.1846606 0.6530715 -0.494694 0.1846606 0.6530715 -0.5692344 0.1846606 0.6530715 -0.6530715 0.1846606 0.6530715 -0.7474945 0.1846606 0.6530715 -0.8539475 0.1846606 0.6530715 -0.974052 0.1846606 0.6530715 -1.113885 0.1846606 0.6530715 -1.27456 0.1846606 0.6530715 -1.458117 0.1846606 0.6530715 -1.667858 0.1846606 0.6530715 -1.907556 0.1846606 0.6530715 -2.181521 0.1846606 0.6530715 -2.494678 0.1846606 0.6530715 -2.852659 0.1846606 0.6530715 -3.261896 0.1846606 0.6530715 -3.729748 0.1846606 0.6530715 -4.264621 0.1846606 0.6530715 -4.876131 0.1846606 0.6530715 -5.575266 0.1846606 0.6530715 -6.374593 0.1846606 0.6530715 -0 0.2245119 0.6530715 -0 0.2245119 0.6530715 -0 0.2245119 0.6530715 -0.002268731 0.2245119 0.6530715 -0.07076883 0.2245119 0.6530715 -0.1119241 0.2245119 0.6530715 -0.1475052 0.2245119 0.6530715 -0.1846606 0.2245119 0.6530715 -0.2245119 0.2245119 0.6530715 -0.2679612 0.2245119 0.6530715 -0.3158431 0.2245119 0.6530715 -0.3689944 0.2245119 0.6530715 -0.4282948 0.2245119 0.6530715 -0.494694 0.2245119 0.6530715 -0.5692344 0.2245119 0.6530715 -0.6530715 0.2245119 0.6530715 -0.7474945 0.2245119 0.6530715 -0.8539475 0.2245119 0.6530715 -0.974052 0.2245119 0.6530715 -1.113885 0.2245119 0.6530715 -1.27456 0.2245119 0.6530715 -1.458117 0.2245119 0.6530715 -1.667858 0.2245119 0.6530715 -1.907556 0.2245119 0.6530715 -2.181521 0.2245119 0.6530715 -2.494678 0.2245119 0.6530715 -2.852659 0.2245119 0.6530715 -3.261896 0.2245119 0.6530715 -3.729748 0.2245119 0.6530715 -4.264621 0.2245119 0.6530715 -4.876131 0.2245119 0.6530715 -5.575266 0.2245119 0.6530715 -6.374593 0.2245119 0.6530715 -0 0.2679612 0.6530715 -0 0.2679612 0.6530715 -0 0.2679612 0.6530715 -0.002268731 0.2679612 0.6530715 -0.07076883 0.2679612 0.6530715 -0.1119241 0.2679612 0.6530715 -0.1475052 0.2679612 0.6530715 -0.1846606 0.2679612 0.6530715 -0.2245119 0.2679612 0.6530715 -0.2679612 0.2679612 0.6530715 -0.3158431 0.2679612 0.6530715 -0.3689944 0.2679612 0.6530715 -0.4282948 0.2679612 0.6530715 -0.494694 0.2679612 0.6530715 -0.5692344 0.2679612 0.6530715 -0.6530715 0.2679612 0.6530715 -0.7474945 0.2679612 0.6530715 -0.8539475 0.2679612 0.6530715 -0.974052 0.2679612 0.6530715 -1.113885 0.2679612 0.6530715 -1.27456 0.2679612 0.6530715 -1.458117 0.2679612 0.6530715 -1.667858 0.2679612 0.6530715 -1.907556 0.2679612 0.6530715 -2.181521 0.2679612 0.6530715 -2.494678 0.2679612 0.6530715 -2.852659 0.2679612 0.6530715 -3.261896 0.2679612 0.6530715 -3.729748 0.2679612 0.6530715 -4.264621 0.2679612 0.6530715 -4.876131 0.2679612 0.6530715 -5.575266 0.2679612 0.6530715 -6.374593 0.2679612 0.6530715 -0 0.3158431 0.6530715 -0 0.3158431 0.6530715 -0 0.3158431 0.6530715 -0.002268731 0.3158431 0.6530715 -0.07076883 0.3158431 0.6530715 -0.1119241 0.3158431 0.6530715 -0.1475052 0.3158431 0.6530715 -0.1846606 0.3158431 0.6530715 -0.2245119 0.3158431 0.6530715 -0.2679612 0.3158431 0.6530715 -0.3158431 0.3158431 0.6530715 -0.3689944 0.3158431 0.6530715 -0.4282948 0.3158431 0.6530715 -0.494694 0.3158431 0.6530715 -0.5692344 0.3158431 0.6530715 -0.6530715 0.3158431 0.6530715 -0.7474945 0.3158431 0.6530715 -0.8539475 0.3158431 0.6530715 -0.974052 0.3158431 0.6530715 -1.113885 0.3158431 0.6530715 -1.27456 0.3158431 0.6530715 -1.458117 0.3158431 0.6530715 -1.667858 0.3158431 0.6530715 -1.907556 0.3158431 0.6530715 -2.181521 0.3158431 0.6530715 -2.494678 0.3158431 0.6530715 -2.852659 0.3158431 0.6530715 -3.261896 0.3158431 0.6530715 -3.729748 0.3158431 0.6530715 -4.264621 0.3158431 0.6530715 -4.876131 0.3158431 0.6530715 -5.575266 0.3158431 0.6530715 -6.374593 0.3158431 0.6530715 -0 0.3689944 0.6530715 -0 0.3689944 0.6530715 -0 0.3689944 0.6530715 -0.002268731 0.3689944 0.6530715 -0.07076883 0.3689944 0.6530715 -0.1119241 0.3689944 0.6530715 -0.1475052 0.3689944 0.6530715 -0.1846606 0.3689944 0.6530715 -0.2245119 0.3689944 0.6530715 -0.2679612 0.3689944 0.6530715 -0.3158431 0.3689944 0.6530715 -0.3689944 0.3689944 0.6530715 -0.4282948 0.3689944 0.6530715 -0.494694 0.3689944 0.6530715 -0.5692344 0.3689944 0.6530715 -0.6530715 0.3689944 0.6530715 -0.7474945 0.3689944 0.6530715 -0.8539475 0.3689944 0.6530715 -0.974052 0.3689944 0.6530715 -1.113885 0.3689944 0.6530715 -1.27456 0.3689944 0.6530715 -1.458117 0.3689944 0.6530715 -1.667858 0.3689944 0.6530715 -1.907556 0.3689944 0.6530715 -2.181521 0.3689944 0.6530715 -2.494678 0.3689944 0.6530715 -2.852659 0.3689944 0.6530715 -3.261896 0.3689944 0.6530715 -3.729748 0.3689944 0.6530715 -4.264621 0.3689944 0.6530715 -4.876131 0.3689944 0.6530715 -5.575266 0.3689944 0.6530715 -6.374593 0.3689944 0.6530715 -0 0.4282948 0.6530715 -0 0.4282948 0.6530715 -0 0.4282948 0.6530715 -0.002268731 0.4282948 0.6530715 -0.07076883 0.4282948 0.6530715 -0.1119241 0.4282948 0.6530715 -0.1475052 0.4282948 0.6530715 -0.1846606 0.4282948 0.6530715 -0.2245119 0.4282948 0.6530715 -0.2679612 0.4282948 0.6530715 -0.3158431 0.4282948 0.6530715 -0.3689944 0.4282948 0.6530715 -0.4282948 0.4282948 0.6530715 -0.494694 0.4282948 0.6530715 -0.5692344 0.4282948 0.6530715 -0.6530715 0.4282948 0.6530715 -0.7474945 0.4282948 0.6530715 -0.8539475 0.4282948 0.6530715 -0.974052 0.4282948 0.6530715 -1.113885 0.4282948 0.6530715 -1.27456 0.4282948 0.6530715 -1.458117 0.4282948 0.6530715 -1.667858 0.4282948 0.6530715 -1.907556 0.4282948 0.6530715 -2.181521 0.4282948 0.6530715 -2.494678 0.4282948 0.6530715 -2.852659 0.4282948 0.6530715 -3.261896 0.4282948 0.6530715 -3.729748 0.4282948 0.6530715 -4.264621 0.4282948 0.6530715 -4.876131 0.4282948 0.6530715 -5.575266 0.4282948 0.6530715 -6.374593 0.4282948 0.6530715 -0 0.494694 0.6530715 -0 0.494694 0.6530715 -0 0.494694 0.6530715 -0.002268731 0.494694 0.6530715 -0.07076883 0.494694 0.6530715 -0.1119241 0.494694 0.6530715 -0.1475052 0.494694 0.6530715 -0.1846606 0.494694 0.6530715 -0.2245119 0.494694 0.6530715 -0.2679612 0.494694 0.6530715 -0.3158431 0.494694 0.6530715 -0.3689944 0.494694 0.6530715 -0.4282948 0.494694 0.6530715 -0.494694 0.494694 0.6530715 -0.5692344 0.494694 0.6530715 -0.6530715 0.494694 0.6530715 -0.7474945 0.494694 0.6530715 -0.8539475 0.494694 0.6530715 -0.974052 0.494694 0.6530715 -1.113885 0.494694 0.6530715 -1.27456 0.494694 0.6530715 -1.458117 0.494694 0.6530715 -1.667858 0.494694 0.6530715 -1.907556 0.494694 0.6530715 -2.181521 0.494694 0.6530715 -2.494678 0.494694 0.6530715 -2.852659 0.494694 0.6530715 -3.261896 0.494694 0.6530715 -3.729748 0.494694 0.6530715 -4.264621 0.494694 0.6530715 -4.876131 0.494694 0.6530715 -5.575266 0.494694 0.6530715 -6.374593 0.494694 0.6530715 -0 0.5692344 0.6530715 -0 0.5692344 0.6530715 -0 0.5692344 0.6530715 -0.002268731 0.5692344 0.6530715 -0.07076883 0.5692344 0.6530715 -0.1119241 0.5692344 0.6530715 -0.1475052 0.5692344 0.6530715 -0.1846606 0.5692344 0.6530715 -0.2245119 0.5692344 0.6530715 -0.2679612 0.5692344 0.6530715 -0.3158431 0.5692344 0.6530715 -0.3689944 0.5692344 0.6530715 -0.4282948 0.5692344 0.6530715 -0.494694 0.5692344 0.6530715 -0.5692344 0.5692344 0.6530715 -0.6530715 0.5692344 0.6530715 -0.7474945 0.5692344 0.6530715 -0.8539475 0.5692344 0.6530715 -0.974052 0.5692344 0.6530715 -1.113885 0.5692344 0.6530715 -1.27456 0.5692344 0.6530715 -1.458117 0.5692344 0.6530715 -1.667858 0.5692344 0.6530715 -1.907556 0.5692344 0.6530715 -2.181521 0.5692344 0.6530715 -2.494678 0.5692344 0.6530715 -2.852659 0.5692344 0.6530715 -3.261896 0.5692344 0.6530715 -3.729748 0.5692344 0.6530715 -4.264621 0.5692344 0.6530715 -4.876131 0.5692344 0.6530715 -5.575266 0.5692344 0.6530715 -6.374593 0.5692344 0.6530715 -0 0.6530715 0.6530715 -0 0.6530715 0.6530715 -0 0.6530715 0.6530715 -0.002268731 0.6530715 0.6530715 -0.07076883 0.6530715 0.6530715 -0.1119241 0.6530715 0.6530715 -0.1475052 0.6530715 0.6530715 -0.1846606 0.6530715 0.6530715 -0.2245119 0.6530715 0.6530715 -0.2679612 0.6530715 0.6530715 -0.3158431 0.6530715 0.6530715 -0.3689944 0.6530715 0.6530715 -0.4282948 0.6530715 0.6530715 -0.494694 0.6530715 0.6530715 -0.5692344 0.6530715 0.6530715 -0.6530715 0.6530715 0.6530715 -0.7474945 0.6530715 0.6530715 -0.8539475 0.6530715 0.6530715 -0.974052 0.6530715 0.6530715 -1.113885 0.6530715 0.6530715 -1.27456 0.6530715 0.6530715 -1.458117 0.6530715 0.6530715 -1.667858 0.6530715 0.6530715 -1.907556 0.6530715 0.6530715 -2.181521 0.6530715 0.6530715 -2.494678 0.6530715 0.6530715 -2.852659 0.6530715 0.6530715 -3.261896 0.6530715 0.6530715 -3.729748 0.6530715 0.6530715 -4.264621 0.6530715 0.6530715 -4.876131 0.6530715 0.6530715 -5.575266 0.6530715 0.6530715 -6.374593 0.6530715 0.6530715 -0 0.7474945 0.6530715 -0 0.7474945 0.6530715 -0 0.7474945 0.6530715 -0.002268731 0.7474945 0.6530715 -0.07076883 0.7474945 0.6530715 -0.1119241 0.7474945 0.6530715 -0.1475052 0.7474945 0.6530715 -0.1846606 0.7474945 0.6530715 -0.2245119 0.7474945 0.6530715 -0.2679612 0.7474945 0.6530715 -0.3158431 0.7474945 0.6530715 -0.3689944 0.7474945 0.6530715 -0.4282948 0.7474945 0.6530715 -0.494694 0.7474945 0.6530715 -0.5692344 0.7474945 0.6530715 -0.6530715 0.7474945 0.6530715 -0.7474945 0.7474945 0.6530715 -0.8539475 0.7474945 0.6530715 -0.974052 0.7474945 0.6530715 -1.113885 0.7474945 0.6530715 -1.27456 0.7474945 0.6530715 -1.458117 0.7474945 0.6530715 -1.667858 0.7474945 0.6530715 -1.907556 0.7474945 0.6530715 -2.181521 0.7474945 0.6530715 -2.494678 0.7474945 0.6530715 -2.852659 0.7474945 0.6530715 -3.261896 0.7474945 0.6530715 -3.729748 0.7474945 0.6530715 -4.264621 0.7474945 0.6530715 -4.876131 0.7474945 0.6530715 -5.575266 0.7474945 0.6530715 -6.374593 0.7474945 0.6530715 -0 0.8539475 0.6530715 -0 0.8539475 0.6530715 -0 0.8539475 0.6530715 -0.002268731 0.8539475 0.6530715 -0.07076883 0.8539475 0.6530715 -0.1119241 0.8539475 0.6530715 -0.1475052 0.8539475 0.6530715 -0.1846606 0.8539475 0.6530715 -0.2245119 0.8539475 0.6530715 -0.2679612 0.8539475 0.6530715 -0.3158431 0.8539475 0.6530715 -0.3689944 0.8539475 0.6530715 -0.4282948 0.8539475 0.6530715 -0.494694 0.8539475 0.6530715 -0.5692344 0.8539475 0.6530715 -0.6530715 0.8539475 0.6530715 -0.7474945 0.8539475 0.6530715 -0.8539475 0.8539475 0.6530715 -0.974052 0.8539475 0.6530715 -1.113885 0.8539475 0.6530715 -1.27456 0.8539475 0.6530715 -1.458117 0.8539475 0.6530715 -1.667858 0.8539475 0.6530715 -1.907556 0.8539475 0.6530715 -2.181521 0.8539475 0.6530715 -2.494678 0.8539475 0.6530715 -2.852659 0.8539475 0.6530715 -3.261896 0.8539475 0.6530715 -3.729748 0.8539475 0.6530715 -4.264621 0.8539475 0.6530715 -4.876131 0.8539475 0.6530715 -5.575266 0.8539475 0.6530715 -6.374593 0.8539475 0.6530715 -0 0.974052 0.6530715 -0 0.974052 0.6530715 -0 0.974052 0.6530715 -0.002268731 0.974052 0.6530715 -0.07076883 0.974052 0.6530715 -0.1119241 0.974052 0.6530715 -0.1475052 0.974052 0.6530715 -0.1846606 0.974052 0.6530715 -0.2245119 0.974052 0.6530715 -0.2679612 0.974052 0.6530715 -0.3158431 0.974052 0.6530715 -0.3689944 0.974052 0.6530715 -0.4282948 0.974052 0.6530715 -0.494694 0.974052 0.6530715 -0.5692344 0.974052 0.6530715 -0.6530715 0.974052 0.6530715 -0.7474945 0.974052 0.6530715 -0.8539475 0.974052 0.6530715 -0.974052 0.974052 0.6530715 -1.113885 0.974052 0.6530715 -1.27456 0.974052 0.6530715 -1.458117 0.974052 0.6530715 -1.667858 0.974052 0.6530715 -1.907556 0.974052 0.6530715 -2.181521 0.974052 0.6530715 -2.494678 0.974052 0.6530715 -2.852659 0.974052 0.6530715 -3.261896 0.974052 0.6530715 -3.729748 0.974052 0.6530715 -4.264621 0.974052 0.6530715 -4.876131 0.974052 0.6530715 -5.575266 0.974052 0.6530715 -6.374593 0.974052 0.6530715 -0 1.113885 0.6530715 -0 1.113885 0.6530715 -0 1.113885 0.6530715 -0.002268731 1.113885 0.6530715 -0.07076883 1.113885 0.6530715 -0.1119241 1.113885 0.6530715 -0.1475052 1.113885 0.6530715 -0.1846606 1.113885 0.6530715 -0.2245119 1.113885 0.6530715 -0.2679612 1.113885 0.6530715 -0.3158431 1.113885 0.6530715 -0.3689944 1.113885 0.6530715 -0.4282948 1.113885 0.6530715 -0.494694 1.113885 0.6530715 -0.5692344 1.113885 0.6530715 -0.6530715 1.113885 0.6530715 -0.7474945 1.113885 0.6530715 -0.8539475 1.113885 0.6530715 -0.974052 1.113885 0.6530715 -1.113885 1.113885 0.6530715 -1.27456 1.113885 0.6530715 -1.458117 1.113885 0.6530715 -1.667858 1.113885 0.6530715 -1.907556 1.113885 0.6530715 -2.181521 1.113885 0.6530715 -2.494678 1.113885 0.6530715 -2.852659 1.113885 0.6530715 -3.261896 1.113885 0.6530715 -3.729748 1.113885 0.6530715 -4.264621 1.113885 0.6530715 -4.876131 1.113885 0.6530715 -5.575266 1.113885 0.6530715 -6.374593 1.113885 0.6530715 -0 1.27456 0.6530715 -0 1.27456 0.6530715 -0 1.27456 0.6530715 -0.002268731 1.27456 0.6530715 -0.07076883 1.27456 0.6530715 -0.1119241 1.27456 0.6530715 -0.1475052 1.27456 0.6530715 -0.1846606 1.27456 0.6530715 -0.2245119 1.27456 0.6530715 -0.2679612 1.27456 0.6530715 -0.3158431 1.27456 0.6530715 -0.3689944 1.27456 0.6530715 -0.4282948 1.27456 0.6530715 -0.494694 1.27456 0.6530715 -0.5692344 1.27456 0.6530715 -0.6530715 1.27456 0.6530715 -0.7474945 1.27456 0.6530715 -0.8539475 1.27456 0.6530715 -0.974052 1.27456 0.6530715 -1.113885 1.27456 0.6530715 -1.27456 1.27456 0.6530715 -1.458117 1.27456 0.6530715 -1.667858 1.27456 0.6530715 -1.907556 1.27456 0.6530715 -2.181521 1.27456 0.6530715 -2.494678 1.27456 0.6530715 -2.852659 1.27456 0.6530715 -3.261896 1.27456 0.6530715 -3.729748 1.27456 0.6530715 -4.264621 1.27456 0.6530715 -4.876131 1.27456 0.6530715 -5.575266 1.27456 0.6530715 -6.374593 1.27456 0.6530715 -0 1.458117 0.6530715 -0 1.458117 0.6530715 -0 1.458117 0.6530715 -0.002268731 1.458117 0.6530715 -0.07076883 1.458117 0.6530715 -0.1119241 1.458117 0.6530715 -0.1475052 1.458117 0.6530715 -0.1846606 1.458117 0.6530715 -0.2245119 1.458117 0.6530715 -0.2679612 1.458117 0.6530715 -0.3158431 1.458117 0.6530715 -0.3689944 1.458117 0.6530715 -0.4282948 1.458117 0.6530715 -0.494694 1.458117 0.6530715 -0.5692344 1.458117 0.6530715 -0.6530715 1.458117 0.6530715 -0.7474945 1.458117 0.6530715 -0.8539475 1.458117 0.6530715 -0.974052 1.458117 0.6530715 -1.113885 1.458117 0.6530715 -1.27456 1.458117 0.6530715 -1.458117 1.458117 0.6530715 -1.667858 1.458117 0.6530715 -1.907556 1.458117 0.6530715 -2.181521 1.458117 0.6530715 -2.494678 1.458117 0.6530715 -2.852659 1.458117 0.6530715 -3.261896 1.458117 0.6530715 -3.729748 1.458117 0.6530715 -4.264621 1.458117 0.6530715 -4.876131 1.458117 0.6530715 -5.575266 1.458117 0.6530715 -6.374593 1.458117 0.6530715 -0 1.667858 0.6530715 -0 1.667858 0.6530715 -0 1.667858 0.6530715 -0.002268731 1.667858 0.6530715 -0.07076883 1.667858 0.6530715 -0.1119241 1.667858 0.6530715 -0.1475052 1.667858 0.6530715 -0.1846606 1.667858 0.6530715 -0.2245119 1.667858 0.6530715 -0.2679612 1.667858 0.6530715 -0.3158431 1.667858 0.6530715 -0.3689944 1.667858 0.6530715 -0.4282948 1.667858 0.6530715 -0.494694 1.667858 0.6530715 -0.5692344 1.667858 0.6530715 -0.6530715 1.667858 0.6530715 -0.7474945 1.667858 0.6530715 -0.8539475 1.667858 0.6530715 -0.974052 1.667858 0.6530715 -1.113885 1.667858 0.6530715 -1.27456 1.667858 0.6530715 -1.458117 1.667858 0.6530715 -1.667858 1.667858 0.6530715 -1.907556 1.667858 0.6530715 -2.181521 1.667858 0.6530715 -2.494678 1.667858 0.6530715 -2.852659 1.667858 0.6530715 -3.261896 1.667858 0.6530715 -3.729748 1.667858 0.6530715 -4.264621 1.667858 0.6530715 -4.876131 1.667858 0.6530715 -5.575266 1.667858 0.6530715 -6.374593 1.667858 0.6530715 -0 1.907556 0.6530715 -0 1.907556 0.6530715 -0 1.907556 0.6530715 -0.002268731 1.907556 0.6530715 -0.07076883 1.907556 0.6530715 -0.1119241 1.907556 0.6530715 -0.1475052 1.907556 0.6530715 -0.1846606 1.907556 0.6530715 -0.2245119 1.907556 0.6530715 -0.2679612 1.907556 0.6530715 -0.3158431 1.907556 0.6530715 -0.3689944 1.907556 0.6530715 -0.4282948 1.907556 0.6530715 -0.494694 1.907556 0.6530715 -0.5692344 1.907556 0.6530715 -0.6530715 1.907556 0.6530715 -0.7474945 1.907556 0.6530715 -0.8539475 1.907556 0.6530715 -0.974052 1.907556 0.6530715 -1.113885 1.907556 0.6530715 -1.27456 1.907556 0.6530715 -1.458117 1.907556 0.6530715 -1.667858 1.907556 0.6530715 -1.907556 1.907556 0.6530715 -2.181521 1.907556 0.6530715 -2.494678 1.907556 0.6530715 -2.852659 1.907556 0.6530715 -3.261896 1.907556 0.6530715 -3.729748 1.907556 0.6530715 -4.264621 1.907556 0.6530715 -4.876131 1.907556 0.6530715 -5.575266 1.907556 0.6530715 -6.374593 1.907556 0.6530715 -0 2.181521 0.6530715 -0 2.181521 0.6530715 -0 2.181521 0.6530715 -0.002268731 2.181521 0.6530715 -0.07076883 2.181521 0.6530715 -0.1119241 2.181521 0.6530715 -0.1475052 2.181521 0.6530715 -0.1846606 2.181521 0.6530715 -0.2245119 2.181521 0.6530715 -0.2679612 2.181521 0.6530715 -0.3158431 2.181521 0.6530715 -0.3689944 2.181521 0.6530715 -0.4282948 2.181521 0.6530715 -0.494694 2.181521 0.6530715 -0.5692344 2.181521 0.6530715 -0.6530715 2.181521 0.6530715 -0.7474945 2.181521 0.6530715 -0.8539475 2.181521 0.6530715 -0.974052 2.181521 0.6530715 -1.113885 2.181521 0.6530715 -1.27456 2.181521 0.6530715 -1.458117 2.181521 0.6530715 -1.667858 2.181521 0.6530715 -1.907556 2.181521 0.6530715 -2.181521 2.181521 0.6530715 -2.494678 2.181521 0.6530715 -2.852659 2.181521 0.6530715 -3.261896 2.181521 0.6530715 -3.729748 2.181521 0.6530715 -4.264621 2.181521 0.6530715 -4.876131 2.181521 0.6530715 -5.575266 2.181521 0.6530715 -6.374593 2.181521 0.6530715 -0 2.494678 0.6530715 -0 2.494678 0.6530715 -0 2.494678 0.6530715 -0.002268731 2.494678 0.6530715 -0.07076883 2.494678 0.6530715 -0.1119241 2.494678 0.6530715 -0.1475052 2.494678 0.6530715 -0.1846606 2.494678 0.6530715 -0.2245119 2.494678 0.6530715 -0.2679612 2.494678 0.6530715 -0.3158431 2.494678 0.6530715 -0.3689944 2.494678 0.6530715 -0.4282948 2.494678 0.6530715 -0.494694 2.494678 0.6530715 -0.5692344 2.494678 0.6530715 -0.6530715 2.494678 0.6530715 -0.7474945 2.494678 0.6530715 -0.8539475 2.494678 0.6530715 -0.974052 2.494678 0.6530715 -1.113885 2.494678 0.6530715 -1.27456 2.494678 0.6530715 -1.458117 2.494678 0.6530715 -1.667858 2.494678 0.6530715 -1.907556 2.494678 0.6530715 -2.181521 2.494678 0.6530715 -2.494678 2.494678 0.6530715 -2.852659 2.494678 0.6530715 -3.261896 2.494678 0.6530715 -3.729748 2.494678 0.6530715 -4.264621 2.494678 0.6530715 -4.876131 2.494678 0.6530715 -5.575266 2.494678 0.6530715 -6.374593 2.494678 0.6530715 -0 2.852659 0.6530715 -0 2.852659 0.6530715 -0 2.852659 0.6530715 -0.002268731 2.852659 0.6530715 -0.07076883 2.852659 0.6530715 -0.1119241 2.852659 0.6530715 -0.1475052 2.852659 0.6530715 -0.1846606 2.852659 0.6530715 -0.2245119 2.852659 0.6530715 -0.2679612 2.852659 0.6530715 -0.3158431 2.852659 0.6530715 -0.3689944 2.852659 0.6530715 -0.4282948 2.852659 0.6530715 -0.494694 2.852659 0.6530715 -0.5692344 2.852659 0.6530715 -0.6530715 2.852659 0.6530715 -0.7474945 2.852659 0.6530715 -0.8539475 2.852659 0.6530715 -0.974052 2.852659 0.6530715 -1.113885 2.852659 0.6530715 -1.27456 2.852659 0.6530715 -1.458117 2.852659 0.6530715 -1.667858 2.852659 0.6530715 -1.907556 2.852659 0.6530715 -2.181521 2.852659 0.6530715 -2.494678 2.852659 0.6530715 -2.852659 2.852659 0.6530715 -3.261896 2.852659 0.6530715 -3.729748 2.852659 0.6530715 -4.264621 2.852659 0.6530715 -4.876131 2.852659 0.6530715 -5.575266 2.852659 0.6530715 -6.374593 2.852659 0.6530715 -0 3.261896 0.6530715 -0 3.261896 0.6530715 -0 3.261896 0.6530715 -0.002268731 3.261896 0.6530715 -0.07076883 3.261896 0.6530715 -0.1119241 3.261896 0.6530715 -0.1475052 3.261896 0.6530715 -0.1846606 3.261896 0.6530715 -0.2245119 3.261896 0.6530715 -0.2679612 3.261896 0.6530715 -0.3158431 3.261896 0.6530715 -0.3689944 3.261896 0.6530715 -0.4282948 3.261896 0.6530715 -0.494694 3.261896 0.6530715 -0.5692344 3.261896 0.6530715 -0.6530715 3.261896 0.6530715 -0.7474945 3.261896 0.6530715 -0.8539475 3.261896 0.6530715 -0.974052 3.261896 0.6530715 -1.113885 3.261896 0.6530715 -1.27456 3.261896 0.6530715 -1.458117 3.261896 0.6530715 -1.667858 3.261896 0.6530715 -1.907556 3.261896 0.6530715 -2.181521 3.261896 0.6530715 -2.494678 3.261896 0.6530715 -2.852659 3.261896 0.6530715 -3.261896 3.261896 0.6530715 -3.729748 3.261896 0.6530715 -4.264621 3.261896 0.6530715 -4.876131 3.261896 0.6530715 -5.575266 3.261896 0.6530715 -6.374593 3.261896 0.6530715 -0 3.729748 0.6530715 -0 3.729748 0.6530715 -0 3.729748 0.6530715 -0.002268731 3.729748 0.6530715 -0.07076883 3.729748 0.6530715 -0.1119241 3.729748 0.6530715 -0.1475052 3.729748 0.6530715 -0.1846606 3.729748 0.6530715 -0.2245119 3.729748 0.6530715 -0.2679612 3.729748 0.6530715 -0.3158431 3.729748 0.6530715 -0.3689944 3.729748 0.6530715 -0.4282948 3.729748 0.6530715 -0.494694 3.729748 0.6530715 -0.5692344 3.729748 0.6530715 -0.6530715 3.729748 0.6530715 -0.7474945 3.729748 0.6530715 -0.8539475 3.729748 0.6530715 -0.974052 3.729748 0.6530715 -1.113885 3.729748 0.6530715 -1.27456 3.729748 0.6530715 -1.458117 3.729748 0.6530715 -1.667858 3.729748 0.6530715 -1.907556 3.729748 0.6530715 -2.181521 3.729748 0.6530715 -2.494678 3.729748 0.6530715 -2.852659 3.729748 0.6530715 -3.261896 3.729748 0.6530715 -3.729748 3.729748 0.6530715 -4.264621 3.729748 0.6530715 -4.876131 3.729748 0.6530715 -5.575266 3.729748 0.6530715 -6.374593 3.729748 0.6530715 -0 4.264621 0.6530715 -0 4.264621 0.6530715 -0 4.264621 0.6530715 -0.002268731 4.264621 0.6530715 -0.07076883 4.264621 0.6530715 -0.1119241 4.264621 0.6530715 -0.1475052 4.264621 0.6530715 -0.1846606 4.264621 0.6530715 -0.2245119 4.264621 0.6530715 -0.2679612 4.264621 0.6530715 -0.3158431 4.264621 0.6530715 -0.3689944 4.264621 0.6530715 -0.4282948 4.264621 0.6530715 -0.494694 4.264621 0.6530715 -0.5692344 4.264621 0.6530715 -0.6530715 4.264621 0.6530715 -0.7474945 4.264621 0.6530715 -0.8539475 4.264621 0.6530715 -0.974052 4.264621 0.6530715 -1.113885 4.264621 0.6530715 -1.27456 4.264621 0.6530715 -1.458117 4.264621 0.6530715 -1.667858 4.264621 0.6530715 -1.907556 4.264621 0.6530715 -2.181521 4.264621 0.6530715 -2.494678 4.264621 0.6530715 -2.852659 4.264621 0.6530715 -3.261896 4.264621 0.6530715 -3.729748 4.264621 0.6530715 -4.264621 4.264621 0.6530715 -4.876131 4.264621 0.6530715 -5.575266 4.264621 0.6530715 -6.374593 4.264621 0.6530715 -0 4.876131 0.6530715 -0 4.876131 0.6530715 -0 4.876131 0.6530715 -0.002268731 4.876131 0.6530715 -0.07076883 4.876131 0.6530715 -0.1119241 4.876131 0.6530715 -0.1475052 4.876131 0.6530715 -0.1846606 4.876131 0.6530715 -0.2245119 4.876131 0.6530715 -0.2679612 4.876131 0.6530715 -0.3158431 4.876131 0.6530715 -0.3689944 4.876131 0.6530715 -0.4282948 4.876131 0.6530715 -0.494694 4.876131 0.6530715 -0.5692344 4.876131 0.6530715 -0.6530715 4.876131 0.6530715 -0.7474945 4.876131 0.6530715 -0.8539475 4.876131 0.6530715 -0.974052 4.876131 0.6530715 -1.113885 4.876131 0.6530715 -1.27456 4.876131 0.6530715 -1.458117 4.876131 0.6530715 -1.667858 4.876131 0.6530715 -1.907556 4.876131 0.6530715 -2.181521 4.876131 0.6530715 -2.494678 4.876131 0.6530715 -2.852659 4.876131 0.6530715 -3.261896 4.876131 0.6530715 -3.729748 4.876131 0.6530715 -4.264621 4.876131 0.6530715 -4.876131 4.876131 0.6530715 -5.575266 4.876131 0.6530715 -6.374593 4.876131 0.6530715 -0 5.575266 0.6530715 -0 5.575266 0.6530715 -0 5.575266 0.6530715 -0.002268731 5.575266 0.6530715 -0.07076883 5.575266 0.6530715 -0.1119241 5.575266 0.6530715 -0.1475052 5.575266 0.6530715 -0.1846606 5.575266 0.6530715 -0.2245119 5.575266 0.6530715 -0.2679612 5.575266 0.6530715 -0.3158431 5.575266 0.6530715 -0.3689944 5.575266 0.6530715 -0.4282948 5.575266 0.6530715 -0.494694 5.575266 0.6530715 -0.5692344 5.575266 0.6530715 -0.6530715 5.575266 0.6530715 -0.7474945 5.575266 0.6530715 -0.8539475 5.575266 0.6530715 -0.974052 5.575266 0.6530715 -1.113885 5.575266 0.6530715 -1.27456 5.575266 0.6530715 -1.458117 5.575266 0.6530715 -1.667858 5.575266 0.6530715 -1.907556 5.575266 0.6530715 -2.181521 5.575266 0.6530715 -2.494678 5.575266 0.6530715 -2.852659 5.575266 0.6530715 -3.261896 5.575266 0.6530715 -3.729748 5.575266 0.6530715 -4.264621 5.575266 0.6530715 -4.876131 5.575266 0.6530715 -5.575266 5.575266 0.6530715 -6.374593 5.575266 0.6530715 -0 6.374593 0.6530715 -0 6.374593 0.6530715 -0 6.374593 0.6530715 -0.002268731 6.374593 0.6530715 -0.07076883 6.374593 0.6530715 -0.1119241 6.374593 0.6530715 -0.1475052 6.374593 0.6530715 -0.1846606 6.374593 0.6530715 -0.2245119 6.374593 0.6530715 -0.2679612 6.374593 0.6530715 -0.3158431 6.374593 0.6530715 -0.3689944 6.374593 0.6530715 -0.4282948 6.374593 0.6530715 -0.494694 6.374593 0.6530715 -0.5692344 6.374593 0.6530715 -0.6530715 6.374593 0.6530715 -0.7474945 6.374593 0.6530715 -0.8539475 6.374593 0.6530715 -0.974052 6.374593 0.6530715 -1.113885 6.374593 0.6530715 -1.27456 6.374593 0.6530715 -1.458117 6.374593 0.6530715 -1.667858 6.374593 0.6530715 -1.907556 6.374593 0.6530715 -2.181521 6.374593 0.6530715 -2.494678 6.374593 0.6530715 -2.852659 6.374593 0.6530715 -3.261896 6.374593 0.6530715 -3.729748 6.374593 0.6530715 -4.264621 6.374593 0.6530715 -4.876131 6.374593 0.6530715 -5.575266 6.374593 0.6530715 -6.374593 6.374593 0.6530715 -0 0 0.7474945 -0 0 0.7474945 -0 0 0.7474945 -0.002268731 0 0.7474945 -0.07076883 0 0.7474945 -0.1119241 0 0.7474945 -0.1475052 0 0.7474945 -0.1846606 0 0.7474945 -0.2245119 0 0.7474945 -0.2679612 0 0.7474945 -0.3158431 0 0.7474945 -0.3689944 0 0.7474945 -0.4282948 0 0.7474945 -0.494694 0 0.7474945 -0.5692344 0 0.7474945 -0.6530715 0 0.7474945 -0.7474945 0 0.7474945 -0.8539475 0 0.7474945 -0.974052 0 0.7474945 -1.113885 0 0.7474945 -1.27456 0 0.7474945 -1.458117 0 0.7474945 -1.667858 0 0.7474945 -1.907556 0 0.7474945 -2.181521 0 0.7474945 -2.494678 0 0.7474945 -2.852659 0 0.7474945 -3.261896 0 0.7474945 -3.729748 0 0.7474945 -4.264621 0 0.7474945 -4.876131 0 0.7474945 -5.575266 0 0.7474945 -6.374593 0 0.7474945 -0 0 0.7474945 -0 0 0.7474945 -0 0 0.7474945 -0.002268731 0 0.7474945 -0.07076883 0 0.7474945 -0.1119241 0 0.7474945 -0.1475052 0 0.7474945 -0.1846606 0 0.7474945 -0.2245119 0 0.7474945 -0.2679612 0 0.7474945 -0.3158431 0 0.7474945 -0.3689944 0 0.7474945 -0.4282948 0 0.7474945 -0.494694 0 0.7474945 -0.5692344 0 0.7474945 -0.6530715 0 0.7474945 -0.7474945 0 0.7474945 -0.8539475 0 0.7474945 -0.974052 0 0.7474945 -1.113885 0 0.7474945 -1.27456 0 0.7474945 -1.458117 0 0.7474945 -1.667858 0 0.7474945 -1.907556 0 0.7474945 -2.181521 0 0.7474945 -2.494678 0 0.7474945 -2.852659 0 0.7474945 -3.261896 0 0.7474945 -3.729748 0 0.7474945 -4.264621 0 0.7474945 -4.876131 0 0.7474945 -5.575266 0 0.7474945 -6.374593 0 0.7474945 -0 0 0.7474945 -0 0 0.7474945 -0 0 0.7474945 -0.002268731 0 0.7474945 -0.07076883 0 0.7474945 -0.1119241 0 0.7474945 -0.1475052 0 0.7474945 -0.1846606 0 0.7474945 -0.2245119 0 0.7474945 -0.2679612 0 0.7474945 -0.3158431 0 0.7474945 -0.3689944 0 0.7474945 -0.4282948 0 0.7474945 -0.494694 0 0.7474945 -0.5692344 0 0.7474945 -0.6530715 0 0.7474945 -0.7474945 0 0.7474945 -0.8539475 0 0.7474945 -0.974052 0 0.7474945 -1.113885 0 0.7474945 -1.27456 0 0.7474945 -1.458117 0 0.7474945 -1.667858 0 0.7474945 -1.907556 0 0.7474945 -2.181521 0 0.7474945 -2.494678 0 0.7474945 -2.852659 0 0.7474945 -3.261896 0 0.7474945 -3.729748 0 0.7474945 -4.264621 0 0.7474945 -4.876131 0 0.7474945 -5.575266 0 0.7474945 -6.374593 0 0.7474945 -0 0.002268731 0.7474945 -0 0.002268731 0.7474945 -0 0.002268731 0.7474945 -0.002268731 0.002268731 0.7474945 -0.07076883 0.002268731 0.7474945 -0.1119241 0.002268731 0.7474945 -0.1475052 0.002268731 0.7474945 -0.1846606 0.002268731 0.7474945 -0.2245119 0.002268731 0.7474945 -0.2679612 0.002268731 0.7474945 -0.3158431 0.002268731 0.7474945 -0.3689944 0.002268731 0.7474945 -0.4282948 0.002268731 0.7474945 -0.494694 0.002268731 0.7474945 -0.5692344 0.002268731 0.7474945 -0.6530715 0.002268731 0.7474945 -0.7474945 0.002268731 0.7474945 -0.8539475 0.002268731 0.7474945 -0.974052 0.002268731 0.7474945 -1.113885 0.002268731 0.7474945 -1.27456 0.002268731 0.7474945 -1.458117 0.002268731 0.7474945 -1.667858 0.002268731 0.7474945 -1.907556 0.002268731 0.7474945 -2.181521 0.002268731 0.7474945 -2.494678 0.002268731 0.7474945 -2.852659 0.002268731 0.7474945 -3.261896 0.002268731 0.7474945 -3.729748 0.002268731 0.7474945 -4.264621 0.002268731 0.7474945 -4.876131 0.002268731 0.7474945 -5.575266 0.002268731 0.7474945 -6.374593 0.002268731 0.7474945 -0 0.07076883 0.7474945 -0 0.07076883 0.7474945 -0 0.07076883 0.7474945 -0.002268731 0.07076883 0.7474945 -0.07076883 0.07076883 0.7474945 -0.1119241 0.07076883 0.7474945 -0.1475052 0.07076883 0.7474945 -0.1846606 0.07076883 0.7474945 -0.2245119 0.07076883 0.7474945 -0.2679612 0.07076883 0.7474945 -0.3158431 0.07076883 0.7474945 -0.3689944 0.07076883 0.7474945 -0.4282948 0.07076883 0.7474945 -0.494694 0.07076883 0.7474945 -0.5692344 0.07076883 0.7474945 -0.6530715 0.07076883 0.7474945 -0.7474945 0.07076883 0.7474945 -0.8539475 0.07076883 0.7474945 -0.974052 0.07076883 0.7474945 -1.113885 0.07076883 0.7474945 -1.27456 0.07076883 0.7474945 -1.458117 0.07076883 0.7474945 -1.667858 0.07076883 0.7474945 -1.907556 0.07076883 0.7474945 -2.181521 0.07076883 0.7474945 -2.494678 0.07076883 0.7474945 -2.852659 0.07076883 0.7474945 -3.261896 0.07076883 0.7474945 -3.729748 0.07076883 0.7474945 -4.264621 0.07076883 0.7474945 -4.876131 0.07076883 0.7474945 -5.575266 0.07076883 0.7474945 -6.374593 0.07076883 0.7474945 -0 0.1119241 0.7474945 -0 0.1119241 0.7474945 -0 0.1119241 0.7474945 -0.002268731 0.1119241 0.7474945 -0.07076883 0.1119241 0.7474945 -0.1119241 0.1119241 0.7474945 -0.1475052 0.1119241 0.7474945 -0.1846606 0.1119241 0.7474945 -0.2245119 0.1119241 0.7474945 -0.2679612 0.1119241 0.7474945 -0.3158431 0.1119241 0.7474945 -0.3689944 0.1119241 0.7474945 -0.4282948 0.1119241 0.7474945 -0.494694 0.1119241 0.7474945 -0.5692344 0.1119241 0.7474945 -0.6530715 0.1119241 0.7474945 -0.7474945 0.1119241 0.7474945 -0.8539475 0.1119241 0.7474945 -0.974052 0.1119241 0.7474945 -1.113885 0.1119241 0.7474945 -1.27456 0.1119241 0.7474945 -1.458117 0.1119241 0.7474945 -1.667858 0.1119241 0.7474945 -1.907556 0.1119241 0.7474945 -2.181521 0.1119241 0.7474945 -2.494678 0.1119241 0.7474945 -2.852659 0.1119241 0.7474945 -3.261896 0.1119241 0.7474945 -3.729748 0.1119241 0.7474945 -4.264621 0.1119241 0.7474945 -4.876131 0.1119241 0.7474945 -5.575266 0.1119241 0.7474945 -6.374593 0.1119241 0.7474945 -0 0.1475052 0.7474945 -0 0.1475052 0.7474945 -0 0.1475052 0.7474945 -0.002268731 0.1475052 0.7474945 -0.07076883 0.1475052 0.7474945 -0.1119241 0.1475052 0.7474945 -0.1475052 0.1475052 0.7474945 -0.1846606 0.1475052 0.7474945 -0.2245119 0.1475052 0.7474945 -0.2679612 0.1475052 0.7474945 -0.3158431 0.1475052 0.7474945 -0.3689944 0.1475052 0.7474945 -0.4282948 0.1475052 0.7474945 -0.494694 0.1475052 0.7474945 -0.5692344 0.1475052 0.7474945 -0.6530715 0.1475052 0.7474945 -0.7474945 0.1475052 0.7474945 -0.8539475 0.1475052 0.7474945 -0.974052 0.1475052 0.7474945 -1.113885 0.1475052 0.7474945 -1.27456 0.1475052 0.7474945 -1.458117 0.1475052 0.7474945 -1.667858 0.1475052 0.7474945 -1.907556 0.1475052 0.7474945 -2.181521 0.1475052 0.7474945 -2.494678 0.1475052 0.7474945 -2.852659 0.1475052 0.7474945 -3.261896 0.1475052 0.7474945 -3.729748 0.1475052 0.7474945 -4.264621 0.1475052 0.7474945 -4.876131 0.1475052 0.7474945 -5.575266 0.1475052 0.7474945 -6.374593 0.1475052 0.7474945 -0 0.1846606 0.7474945 -0 0.1846606 0.7474945 -0 0.1846606 0.7474945 -0.002268731 0.1846606 0.7474945 -0.07076883 0.1846606 0.7474945 -0.1119241 0.1846606 0.7474945 -0.1475052 0.1846606 0.7474945 -0.1846606 0.1846606 0.7474945 -0.2245119 0.1846606 0.7474945 -0.2679612 0.1846606 0.7474945 -0.3158431 0.1846606 0.7474945 -0.3689944 0.1846606 0.7474945 -0.4282948 0.1846606 0.7474945 -0.494694 0.1846606 0.7474945 -0.5692344 0.1846606 0.7474945 -0.6530715 0.1846606 0.7474945 -0.7474945 0.1846606 0.7474945 -0.8539475 0.1846606 0.7474945 -0.974052 0.1846606 0.7474945 -1.113885 0.1846606 0.7474945 -1.27456 0.1846606 0.7474945 -1.458117 0.1846606 0.7474945 -1.667858 0.1846606 0.7474945 -1.907556 0.1846606 0.7474945 -2.181521 0.1846606 0.7474945 -2.494678 0.1846606 0.7474945 -2.852659 0.1846606 0.7474945 -3.261896 0.1846606 0.7474945 -3.729748 0.1846606 0.7474945 -4.264621 0.1846606 0.7474945 -4.876131 0.1846606 0.7474945 -5.575266 0.1846606 0.7474945 -6.374593 0.1846606 0.7474945 -0 0.2245119 0.7474945 -0 0.2245119 0.7474945 -0 0.2245119 0.7474945 -0.002268731 0.2245119 0.7474945 -0.07076883 0.2245119 0.7474945 -0.1119241 0.2245119 0.7474945 -0.1475052 0.2245119 0.7474945 -0.1846606 0.2245119 0.7474945 -0.2245119 0.2245119 0.7474945 -0.2679612 0.2245119 0.7474945 -0.3158431 0.2245119 0.7474945 -0.3689944 0.2245119 0.7474945 -0.4282948 0.2245119 0.7474945 -0.494694 0.2245119 0.7474945 -0.5692344 0.2245119 0.7474945 -0.6530715 0.2245119 0.7474945 -0.7474945 0.2245119 0.7474945 -0.8539475 0.2245119 0.7474945 -0.974052 0.2245119 0.7474945 -1.113885 0.2245119 0.7474945 -1.27456 0.2245119 0.7474945 -1.458117 0.2245119 0.7474945 -1.667858 0.2245119 0.7474945 -1.907556 0.2245119 0.7474945 -2.181521 0.2245119 0.7474945 -2.494678 0.2245119 0.7474945 -2.852659 0.2245119 0.7474945 -3.261896 0.2245119 0.7474945 -3.729748 0.2245119 0.7474945 -4.264621 0.2245119 0.7474945 -4.876131 0.2245119 0.7474945 -5.575266 0.2245119 0.7474945 -6.374593 0.2245119 0.7474945 -0 0.2679612 0.7474945 -0 0.2679612 0.7474945 -0 0.2679612 0.7474945 -0.002268731 0.2679612 0.7474945 -0.07076883 0.2679612 0.7474945 -0.1119241 0.2679612 0.7474945 -0.1475052 0.2679612 0.7474945 -0.1846606 0.2679612 0.7474945 -0.2245119 0.2679612 0.7474945 -0.2679612 0.2679612 0.7474945 -0.3158431 0.2679612 0.7474945 -0.3689944 0.2679612 0.7474945 -0.4282948 0.2679612 0.7474945 -0.494694 0.2679612 0.7474945 -0.5692344 0.2679612 0.7474945 -0.6530715 0.2679612 0.7474945 -0.7474945 0.2679612 0.7474945 -0.8539475 0.2679612 0.7474945 -0.974052 0.2679612 0.7474945 -1.113885 0.2679612 0.7474945 -1.27456 0.2679612 0.7474945 -1.458117 0.2679612 0.7474945 -1.667858 0.2679612 0.7474945 -1.907556 0.2679612 0.7474945 -2.181521 0.2679612 0.7474945 -2.494678 0.2679612 0.7474945 -2.852659 0.2679612 0.7474945 -3.261896 0.2679612 0.7474945 -3.729748 0.2679612 0.7474945 -4.264621 0.2679612 0.7474945 -4.876131 0.2679612 0.7474945 -5.575266 0.2679612 0.7474945 -6.374593 0.2679612 0.7474945 -0 0.3158431 0.7474945 -0 0.3158431 0.7474945 -0 0.3158431 0.7474945 -0.002268731 0.3158431 0.7474945 -0.07076883 0.3158431 0.7474945 -0.1119241 0.3158431 0.7474945 -0.1475052 0.3158431 0.7474945 -0.1846606 0.3158431 0.7474945 -0.2245119 0.3158431 0.7474945 -0.2679612 0.3158431 0.7474945 -0.3158431 0.3158431 0.7474945 -0.3689944 0.3158431 0.7474945 -0.4282948 0.3158431 0.7474945 -0.494694 0.3158431 0.7474945 -0.5692344 0.3158431 0.7474945 -0.6530715 0.3158431 0.7474945 -0.7474945 0.3158431 0.7474945 -0.8539475 0.3158431 0.7474945 -0.974052 0.3158431 0.7474945 -1.113885 0.3158431 0.7474945 -1.27456 0.3158431 0.7474945 -1.458117 0.3158431 0.7474945 -1.667858 0.3158431 0.7474945 -1.907556 0.3158431 0.7474945 -2.181521 0.3158431 0.7474945 -2.494678 0.3158431 0.7474945 -2.852659 0.3158431 0.7474945 -3.261896 0.3158431 0.7474945 -3.729748 0.3158431 0.7474945 -4.264621 0.3158431 0.7474945 -4.876131 0.3158431 0.7474945 -5.575266 0.3158431 0.7474945 -6.374593 0.3158431 0.7474945 -0 0.3689944 0.7474945 -0 0.3689944 0.7474945 -0 0.3689944 0.7474945 -0.002268731 0.3689944 0.7474945 -0.07076883 0.3689944 0.7474945 -0.1119241 0.3689944 0.7474945 -0.1475052 0.3689944 0.7474945 -0.1846606 0.3689944 0.7474945 -0.2245119 0.3689944 0.7474945 -0.2679612 0.3689944 0.7474945 -0.3158431 0.3689944 0.7474945 -0.3689944 0.3689944 0.7474945 -0.4282948 0.3689944 0.7474945 -0.494694 0.3689944 0.7474945 -0.5692344 0.3689944 0.7474945 -0.6530715 0.3689944 0.7474945 -0.7474945 0.3689944 0.7474945 -0.8539475 0.3689944 0.7474945 -0.974052 0.3689944 0.7474945 -1.113885 0.3689944 0.7474945 -1.27456 0.3689944 0.7474945 -1.458117 0.3689944 0.7474945 -1.667858 0.3689944 0.7474945 -1.907556 0.3689944 0.7474945 -2.181521 0.3689944 0.7474945 -2.494678 0.3689944 0.7474945 -2.852659 0.3689944 0.7474945 -3.261896 0.3689944 0.7474945 -3.729748 0.3689944 0.7474945 -4.264621 0.3689944 0.7474945 -4.876131 0.3689944 0.7474945 -5.575266 0.3689944 0.7474945 -6.374593 0.3689944 0.7474945 -0 0.4282948 0.7474945 -0 0.4282948 0.7474945 -0 0.4282948 0.7474945 -0.002268731 0.4282948 0.7474945 -0.07076883 0.4282948 0.7474945 -0.1119241 0.4282948 0.7474945 -0.1475052 0.4282948 0.7474945 -0.1846606 0.4282948 0.7474945 -0.2245119 0.4282948 0.7474945 -0.2679612 0.4282948 0.7474945 -0.3158431 0.4282948 0.7474945 -0.3689944 0.4282948 0.7474945 -0.4282948 0.4282948 0.7474945 -0.494694 0.4282948 0.7474945 -0.5692344 0.4282948 0.7474945 -0.6530715 0.4282948 0.7474945 -0.7474945 0.4282948 0.7474945 -0.8539475 0.4282948 0.7474945 -0.974052 0.4282948 0.7474945 -1.113885 0.4282948 0.7474945 -1.27456 0.4282948 0.7474945 -1.458117 0.4282948 0.7474945 -1.667858 0.4282948 0.7474945 -1.907556 0.4282948 0.7474945 -2.181521 0.4282948 0.7474945 -2.494678 0.4282948 0.7474945 -2.852659 0.4282948 0.7474945 -3.261896 0.4282948 0.7474945 -3.729748 0.4282948 0.7474945 -4.264621 0.4282948 0.7474945 -4.876131 0.4282948 0.7474945 -5.575266 0.4282948 0.7474945 -6.374593 0.4282948 0.7474945 -0 0.494694 0.7474945 -0 0.494694 0.7474945 -0 0.494694 0.7474945 -0.002268731 0.494694 0.7474945 -0.07076883 0.494694 0.7474945 -0.1119241 0.494694 0.7474945 -0.1475052 0.494694 0.7474945 -0.1846606 0.494694 0.7474945 -0.2245119 0.494694 0.7474945 -0.2679612 0.494694 0.7474945 -0.3158431 0.494694 0.7474945 -0.3689944 0.494694 0.7474945 -0.4282948 0.494694 0.7474945 -0.494694 0.494694 0.7474945 -0.5692344 0.494694 0.7474945 -0.6530715 0.494694 0.7474945 -0.7474945 0.494694 0.7474945 -0.8539475 0.494694 0.7474945 -0.974052 0.494694 0.7474945 -1.113885 0.494694 0.7474945 -1.27456 0.494694 0.7474945 -1.458117 0.494694 0.7474945 -1.667858 0.494694 0.7474945 -1.907556 0.494694 0.7474945 -2.181521 0.494694 0.7474945 -2.494678 0.494694 0.7474945 -2.852659 0.494694 0.7474945 -3.261896 0.494694 0.7474945 -3.729748 0.494694 0.7474945 -4.264621 0.494694 0.7474945 -4.876131 0.494694 0.7474945 -5.575266 0.494694 0.7474945 -6.374593 0.494694 0.7474945 -0 0.5692344 0.7474945 -0 0.5692344 0.7474945 -0 0.5692344 0.7474945 -0.002268731 0.5692344 0.7474945 -0.07076883 0.5692344 0.7474945 -0.1119241 0.5692344 0.7474945 -0.1475052 0.5692344 0.7474945 -0.1846606 0.5692344 0.7474945 -0.2245119 0.5692344 0.7474945 -0.2679612 0.5692344 0.7474945 -0.3158431 0.5692344 0.7474945 -0.3689944 0.5692344 0.7474945 -0.4282948 0.5692344 0.7474945 -0.494694 0.5692344 0.7474945 -0.5692344 0.5692344 0.7474945 -0.6530715 0.5692344 0.7474945 -0.7474945 0.5692344 0.7474945 -0.8539475 0.5692344 0.7474945 -0.974052 0.5692344 0.7474945 -1.113885 0.5692344 0.7474945 -1.27456 0.5692344 0.7474945 -1.458117 0.5692344 0.7474945 -1.667858 0.5692344 0.7474945 -1.907556 0.5692344 0.7474945 -2.181521 0.5692344 0.7474945 -2.494678 0.5692344 0.7474945 -2.852659 0.5692344 0.7474945 -3.261896 0.5692344 0.7474945 -3.729748 0.5692344 0.7474945 -4.264621 0.5692344 0.7474945 -4.876131 0.5692344 0.7474945 -5.575266 0.5692344 0.7474945 -6.374593 0.5692344 0.7474945 -0 0.6530715 0.7474945 -0 0.6530715 0.7474945 -0 0.6530715 0.7474945 -0.002268731 0.6530715 0.7474945 -0.07076883 0.6530715 0.7474945 -0.1119241 0.6530715 0.7474945 -0.1475052 0.6530715 0.7474945 -0.1846606 0.6530715 0.7474945 -0.2245119 0.6530715 0.7474945 -0.2679612 0.6530715 0.7474945 -0.3158431 0.6530715 0.7474945 -0.3689944 0.6530715 0.7474945 -0.4282948 0.6530715 0.7474945 -0.494694 0.6530715 0.7474945 -0.5692344 0.6530715 0.7474945 -0.6530715 0.6530715 0.7474945 -0.7474945 0.6530715 0.7474945 -0.8539475 0.6530715 0.7474945 -0.974052 0.6530715 0.7474945 -1.113885 0.6530715 0.7474945 -1.27456 0.6530715 0.7474945 -1.458117 0.6530715 0.7474945 -1.667858 0.6530715 0.7474945 -1.907556 0.6530715 0.7474945 -2.181521 0.6530715 0.7474945 -2.494678 0.6530715 0.7474945 -2.852659 0.6530715 0.7474945 -3.261896 0.6530715 0.7474945 -3.729748 0.6530715 0.7474945 -4.264621 0.6530715 0.7474945 -4.876131 0.6530715 0.7474945 -5.575266 0.6530715 0.7474945 -6.374593 0.6530715 0.7474945 -0 0.7474945 0.7474945 -0 0.7474945 0.7474945 -0 0.7474945 0.7474945 -0.002268731 0.7474945 0.7474945 -0.07076883 0.7474945 0.7474945 -0.1119241 0.7474945 0.7474945 -0.1475052 0.7474945 0.7474945 -0.1846606 0.7474945 0.7474945 -0.2245119 0.7474945 0.7474945 -0.2679612 0.7474945 0.7474945 -0.3158431 0.7474945 0.7474945 -0.3689944 0.7474945 0.7474945 -0.4282948 0.7474945 0.7474945 -0.494694 0.7474945 0.7474945 -0.5692344 0.7474945 0.7474945 -0.6530715 0.7474945 0.7474945 -0.7474945 0.7474945 0.7474945 -0.8539475 0.7474945 0.7474945 -0.974052 0.7474945 0.7474945 -1.113885 0.7474945 0.7474945 -1.27456 0.7474945 0.7474945 -1.458117 0.7474945 0.7474945 -1.667858 0.7474945 0.7474945 -1.907556 0.7474945 0.7474945 -2.181521 0.7474945 0.7474945 -2.494678 0.7474945 0.7474945 -2.852659 0.7474945 0.7474945 -3.261896 0.7474945 0.7474945 -3.729748 0.7474945 0.7474945 -4.264621 0.7474945 0.7474945 -4.876131 0.7474945 0.7474945 -5.575266 0.7474945 0.7474945 -6.374593 0.7474945 0.7474945 -0 0.8539475 0.7474945 -0 0.8539475 0.7474945 -0 0.8539475 0.7474945 -0.002268731 0.8539475 0.7474945 -0.07076883 0.8539475 0.7474945 -0.1119241 0.8539475 0.7474945 -0.1475052 0.8539475 0.7474945 -0.1846606 0.8539475 0.7474945 -0.2245119 0.8539475 0.7474945 -0.2679612 0.8539475 0.7474945 -0.3158431 0.8539475 0.7474945 -0.3689944 0.8539475 0.7474945 -0.4282948 0.8539475 0.7474945 -0.494694 0.8539475 0.7474945 -0.5692344 0.8539475 0.7474945 -0.6530715 0.8539475 0.7474945 -0.7474945 0.8539475 0.7474945 -0.8539475 0.8539475 0.7474945 -0.974052 0.8539475 0.7474945 -1.113885 0.8539475 0.7474945 -1.27456 0.8539475 0.7474945 -1.458117 0.8539475 0.7474945 -1.667858 0.8539475 0.7474945 -1.907556 0.8539475 0.7474945 -2.181521 0.8539475 0.7474945 -2.494678 0.8539475 0.7474945 -2.852659 0.8539475 0.7474945 -3.261896 0.8539475 0.7474945 -3.729748 0.8539475 0.7474945 -4.264621 0.8539475 0.7474945 -4.876131 0.8539475 0.7474945 -5.575266 0.8539475 0.7474945 -6.374593 0.8539475 0.7474945 -0 0.974052 0.7474945 -0 0.974052 0.7474945 -0 0.974052 0.7474945 -0.002268731 0.974052 0.7474945 -0.07076883 0.974052 0.7474945 -0.1119241 0.974052 0.7474945 -0.1475052 0.974052 0.7474945 -0.1846606 0.974052 0.7474945 -0.2245119 0.974052 0.7474945 -0.2679612 0.974052 0.7474945 -0.3158431 0.974052 0.7474945 -0.3689944 0.974052 0.7474945 -0.4282948 0.974052 0.7474945 -0.494694 0.974052 0.7474945 -0.5692344 0.974052 0.7474945 -0.6530715 0.974052 0.7474945 -0.7474945 0.974052 0.7474945 -0.8539475 0.974052 0.7474945 -0.974052 0.974052 0.7474945 -1.113885 0.974052 0.7474945 -1.27456 0.974052 0.7474945 -1.458117 0.974052 0.7474945 -1.667858 0.974052 0.7474945 -1.907556 0.974052 0.7474945 -2.181521 0.974052 0.7474945 -2.494678 0.974052 0.7474945 -2.852659 0.974052 0.7474945 -3.261896 0.974052 0.7474945 -3.729748 0.974052 0.7474945 -4.264621 0.974052 0.7474945 -4.876131 0.974052 0.7474945 -5.575266 0.974052 0.7474945 -6.374593 0.974052 0.7474945 -0 1.113885 0.7474945 -0 1.113885 0.7474945 -0 1.113885 0.7474945 -0.002268731 1.113885 0.7474945 -0.07076883 1.113885 0.7474945 -0.1119241 1.113885 0.7474945 -0.1475052 1.113885 0.7474945 -0.1846606 1.113885 0.7474945 -0.2245119 1.113885 0.7474945 -0.2679612 1.113885 0.7474945 -0.3158431 1.113885 0.7474945 -0.3689944 1.113885 0.7474945 -0.4282948 1.113885 0.7474945 -0.494694 1.113885 0.7474945 -0.5692344 1.113885 0.7474945 -0.6530715 1.113885 0.7474945 -0.7474945 1.113885 0.7474945 -0.8539475 1.113885 0.7474945 -0.974052 1.113885 0.7474945 -1.113885 1.113885 0.7474945 -1.27456 1.113885 0.7474945 -1.458117 1.113885 0.7474945 -1.667858 1.113885 0.7474945 -1.907556 1.113885 0.7474945 -2.181521 1.113885 0.7474945 -2.494678 1.113885 0.7474945 -2.852659 1.113885 0.7474945 -3.261896 1.113885 0.7474945 -3.729748 1.113885 0.7474945 -4.264621 1.113885 0.7474945 -4.876131 1.113885 0.7474945 -5.575266 1.113885 0.7474945 -6.374593 1.113885 0.7474945 -0 1.27456 0.7474945 -0 1.27456 0.7474945 -0 1.27456 0.7474945 -0.002268731 1.27456 0.7474945 -0.07076883 1.27456 0.7474945 -0.1119241 1.27456 0.7474945 -0.1475052 1.27456 0.7474945 -0.1846606 1.27456 0.7474945 -0.2245119 1.27456 0.7474945 -0.2679612 1.27456 0.7474945 -0.3158431 1.27456 0.7474945 -0.3689944 1.27456 0.7474945 -0.4282948 1.27456 0.7474945 -0.494694 1.27456 0.7474945 -0.5692344 1.27456 0.7474945 -0.6530715 1.27456 0.7474945 -0.7474945 1.27456 0.7474945 -0.8539475 1.27456 0.7474945 -0.974052 1.27456 0.7474945 -1.113885 1.27456 0.7474945 -1.27456 1.27456 0.7474945 -1.458117 1.27456 0.7474945 -1.667858 1.27456 0.7474945 -1.907556 1.27456 0.7474945 -2.181521 1.27456 0.7474945 -2.494678 1.27456 0.7474945 -2.852659 1.27456 0.7474945 -3.261896 1.27456 0.7474945 -3.729748 1.27456 0.7474945 -4.264621 1.27456 0.7474945 -4.876131 1.27456 0.7474945 -5.575266 1.27456 0.7474945 -6.374593 1.27456 0.7474945 -0 1.458117 0.7474945 -0 1.458117 0.7474945 -0 1.458117 0.7474945 -0.002268731 1.458117 0.7474945 -0.07076883 1.458117 0.7474945 -0.1119241 1.458117 0.7474945 -0.1475052 1.458117 0.7474945 -0.1846606 1.458117 0.7474945 -0.2245119 1.458117 0.7474945 -0.2679612 1.458117 0.7474945 -0.3158431 1.458117 0.7474945 -0.3689944 1.458117 0.7474945 -0.4282948 1.458117 0.7474945 -0.494694 1.458117 0.7474945 -0.5692344 1.458117 0.7474945 -0.6530715 1.458117 0.7474945 -0.7474945 1.458117 0.7474945 -0.8539475 1.458117 0.7474945 -0.974052 1.458117 0.7474945 -1.113885 1.458117 0.7474945 -1.27456 1.458117 0.7474945 -1.458117 1.458117 0.7474945 -1.667858 1.458117 0.7474945 -1.907556 1.458117 0.7474945 -2.181521 1.458117 0.7474945 -2.494678 1.458117 0.7474945 -2.852659 1.458117 0.7474945 -3.261896 1.458117 0.7474945 -3.729748 1.458117 0.7474945 -4.264621 1.458117 0.7474945 -4.876131 1.458117 0.7474945 -5.575266 1.458117 0.7474945 -6.374593 1.458117 0.7474945 -0 1.667858 0.7474945 -0 1.667858 0.7474945 -0 1.667858 0.7474945 -0.002268731 1.667858 0.7474945 -0.07076883 1.667858 0.7474945 -0.1119241 1.667858 0.7474945 -0.1475052 1.667858 0.7474945 -0.1846606 1.667858 0.7474945 -0.2245119 1.667858 0.7474945 -0.2679612 1.667858 0.7474945 -0.3158431 1.667858 0.7474945 -0.3689944 1.667858 0.7474945 -0.4282948 1.667858 0.7474945 -0.494694 1.667858 0.7474945 -0.5692344 1.667858 0.7474945 -0.6530715 1.667858 0.7474945 -0.7474945 1.667858 0.7474945 -0.8539475 1.667858 0.7474945 -0.974052 1.667858 0.7474945 -1.113885 1.667858 0.7474945 -1.27456 1.667858 0.7474945 -1.458117 1.667858 0.7474945 -1.667858 1.667858 0.7474945 -1.907556 1.667858 0.7474945 -2.181521 1.667858 0.7474945 -2.494678 1.667858 0.7474945 -2.852659 1.667858 0.7474945 -3.261896 1.667858 0.7474945 -3.729748 1.667858 0.7474945 -4.264621 1.667858 0.7474945 -4.876131 1.667858 0.7474945 -5.575266 1.667858 0.7474945 -6.374593 1.667858 0.7474945 -0 1.907556 0.7474945 -0 1.907556 0.7474945 -0 1.907556 0.7474945 -0.002268731 1.907556 0.7474945 -0.07076883 1.907556 0.7474945 -0.1119241 1.907556 0.7474945 -0.1475052 1.907556 0.7474945 -0.1846606 1.907556 0.7474945 -0.2245119 1.907556 0.7474945 -0.2679612 1.907556 0.7474945 -0.3158431 1.907556 0.7474945 -0.3689944 1.907556 0.7474945 -0.4282948 1.907556 0.7474945 -0.494694 1.907556 0.7474945 -0.5692344 1.907556 0.7474945 -0.6530715 1.907556 0.7474945 -0.7474945 1.907556 0.7474945 -0.8539475 1.907556 0.7474945 -0.974052 1.907556 0.7474945 -1.113885 1.907556 0.7474945 -1.27456 1.907556 0.7474945 -1.458117 1.907556 0.7474945 -1.667858 1.907556 0.7474945 -1.907556 1.907556 0.7474945 -2.181521 1.907556 0.7474945 -2.494678 1.907556 0.7474945 -2.852659 1.907556 0.7474945 -3.261896 1.907556 0.7474945 -3.729748 1.907556 0.7474945 -4.264621 1.907556 0.7474945 -4.876131 1.907556 0.7474945 -5.575266 1.907556 0.7474945 -6.374593 1.907556 0.7474945 -0 2.181521 0.7474945 -0 2.181521 0.7474945 -0 2.181521 0.7474945 -0.002268731 2.181521 0.7474945 -0.07076883 2.181521 0.7474945 -0.1119241 2.181521 0.7474945 -0.1475052 2.181521 0.7474945 -0.1846606 2.181521 0.7474945 -0.2245119 2.181521 0.7474945 -0.2679612 2.181521 0.7474945 -0.3158431 2.181521 0.7474945 -0.3689944 2.181521 0.7474945 -0.4282948 2.181521 0.7474945 -0.494694 2.181521 0.7474945 -0.5692344 2.181521 0.7474945 -0.6530715 2.181521 0.7474945 -0.7474945 2.181521 0.7474945 -0.8539475 2.181521 0.7474945 -0.974052 2.181521 0.7474945 -1.113885 2.181521 0.7474945 -1.27456 2.181521 0.7474945 -1.458117 2.181521 0.7474945 -1.667858 2.181521 0.7474945 -1.907556 2.181521 0.7474945 -2.181521 2.181521 0.7474945 -2.494678 2.181521 0.7474945 -2.852659 2.181521 0.7474945 -3.261896 2.181521 0.7474945 -3.729748 2.181521 0.7474945 -4.264621 2.181521 0.7474945 -4.876131 2.181521 0.7474945 -5.575266 2.181521 0.7474945 -6.374593 2.181521 0.7474945 -0 2.494678 0.7474945 -0 2.494678 0.7474945 -0 2.494678 0.7474945 -0.002268731 2.494678 0.7474945 -0.07076883 2.494678 0.7474945 -0.1119241 2.494678 0.7474945 -0.1475052 2.494678 0.7474945 -0.1846606 2.494678 0.7474945 -0.2245119 2.494678 0.7474945 -0.2679612 2.494678 0.7474945 -0.3158431 2.494678 0.7474945 -0.3689944 2.494678 0.7474945 -0.4282948 2.494678 0.7474945 -0.494694 2.494678 0.7474945 -0.5692344 2.494678 0.7474945 -0.6530715 2.494678 0.7474945 -0.7474945 2.494678 0.7474945 -0.8539475 2.494678 0.7474945 -0.974052 2.494678 0.7474945 -1.113885 2.494678 0.7474945 -1.27456 2.494678 0.7474945 -1.458117 2.494678 0.7474945 -1.667858 2.494678 0.7474945 -1.907556 2.494678 0.7474945 -2.181521 2.494678 0.7474945 -2.494678 2.494678 0.7474945 -2.852659 2.494678 0.7474945 -3.261896 2.494678 0.7474945 -3.729748 2.494678 0.7474945 -4.264621 2.494678 0.7474945 -4.876131 2.494678 0.7474945 -5.575266 2.494678 0.7474945 -6.374593 2.494678 0.7474945 -0 2.852659 0.7474945 -0 2.852659 0.7474945 -0 2.852659 0.7474945 -0.002268731 2.852659 0.7474945 -0.07076883 2.852659 0.7474945 -0.1119241 2.852659 0.7474945 -0.1475052 2.852659 0.7474945 -0.1846606 2.852659 0.7474945 -0.2245119 2.852659 0.7474945 -0.2679612 2.852659 0.7474945 -0.3158431 2.852659 0.7474945 -0.3689944 2.852659 0.7474945 -0.4282948 2.852659 0.7474945 -0.494694 2.852659 0.7474945 -0.5692344 2.852659 0.7474945 -0.6530715 2.852659 0.7474945 -0.7474945 2.852659 0.7474945 -0.8539475 2.852659 0.7474945 -0.974052 2.852659 0.7474945 -1.113885 2.852659 0.7474945 -1.27456 2.852659 0.7474945 -1.458117 2.852659 0.7474945 -1.667858 2.852659 0.7474945 -1.907556 2.852659 0.7474945 -2.181521 2.852659 0.7474945 -2.494678 2.852659 0.7474945 -2.852659 2.852659 0.7474945 -3.261896 2.852659 0.7474945 -3.729748 2.852659 0.7474945 -4.264621 2.852659 0.7474945 -4.876131 2.852659 0.7474945 -5.575266 2.852659 0.7474945 -6.374593 2.852659 0.7474945 -0 3.261896 0.7474945 -0 3.261896 0.7474945 -0 3.261896 0.7474945 -0.002268731 3.261896 0.7474945 -0.07076883 3.261896 0.7474945 -0.1119241 3.261896 0.7474945 -0.1475052 3.261896 0.7474945 -0.1846606 3.261896 0.7474945 -0.2245119 3.261896 0.7474945 -0.2679612 3.261896 0.7474945 -0.3158431 3.261896 0.7474945 -0.3689944 3.261896 0.7474945 -0.4282948 3.261896 0.7474945 -0.494694 3.261896 0.7474945 -0.5692344 3.261896 0.7474945 -0.6530715 3.261896 0.7474945 -0.7474945 3.261896 0.7474945 -0.8539475 3.261896 0.7474945 -0.974052 3.261896 0.7474945 -1.113885 3.261896 0.7474945 -1.27456 3.261896 0.7474945 -1.458117 3.261896 0.7474945 -1.667858 3.261896 0.7474945 -1.907556 3.261896 0.7474945 -2.181521 3.261896 0.7474945 -2.494678 3.261896 0.7474945 -2.852659 3.261896 0.7474945 -3.261896 3.261896 0.7474945 -3.729748 3.261896 0.7474945 -4.264621 3.261896 0.7474945 -4.876131 3.261896 0.7474945 -5.575266 3.261896 0.7474945 -6.374593 3.261896 0.7474945 -0 3.729748 0.7474945 -0 3.729748 0.7474945 -0 3.729748 0.7474945 -0.002268731 3.729748 0.7474945 -0.07076883 3.729748 0.7474945 -0.1119241 3.729748 0.7474945 -0.1475052 3.729748 0.7474945 -0.1846606 3.729748 0.7474945 -0.2245119 3.729748 0.7474945 -0.2679612 3.729748 0.7474945 -0.3158431 3.729748 0.7474945 -0.3689944 3.729748 0.7474945 -0.4282948 3.729748 0.7474945 -0.494694 3.729748 0.7474945 -0.5692344 3.729748 0.7474945 -0.6530715 3.729748 0.7474945 -0.7474945 3.729748 0.7474945 -0.8539475 3.729748 0.7474945 -0.974052 3.729748 0.7474945 -1.113885 3.729748 0.7474945 -1.27456 3.729748 0.7474945 -1.458117 3.729748 0.7474945 -1.667858 3.729748 0.7474945 -1.907556 3.729748 0.7474945 -2.181521 3.729748 0.7474945 -2.494678 3.729748 0.7474945 -2.852659 3.729748 0.7474945 -3.261896 3.729748 0.7474945 -3.729748 3.729748 0.7474945 -4.264621 3.729748 0.7474945 -4.876131 3.729748 0.7474945 -5.575266 3.729748 0.7474945 -6.374593 3.729748 0.7474945 -0 4.264621 0.7474945 -0 4.264621 0.7474945 -0 4.264621 0.7474945 -0.002268731 4.264621 0.7474945 -0.07076883 4.264621 0.7474945 -0.1119241 4.264621 0.7474945 -0.1475052 4.264621 0.7474945 -0.1846606 4.264621 0.7474945 -0.2245119 4.264621 0.7474945 -0.2679612 4.264621 0.7474945 -0.3158431 4.264621 0.7474945 -0.3689944 4.264621 0.7474945 -0.4282948 4.264621 0.7474945 -0.494694 4.264621 0.7474945 -0.5692344 4.264621 0.7474945 -0.6530715 4.264621 0.7474945 -0.7474945 4.264621 0.7474945 -0.8539475 4.264621 0.7474945 -0.974052 4.264621 0.7474945 -1.113885 4.264621 0.7474945 -1.27456 4.264621 0.7474945 -1.458117 4.264621 0.7474945 -1.667858 4.264621 0.7474945 -1.907556 4.264621 0.7474945 -2.181521 4.264621 0.7474945 -2.494678 4.264621 0.7474945 -2.852659 4.264621 0.7474945 -3.261896 4.264621 0.7474945 -3.729748 4.264621 0.7474945 -4.264621 4.264621 0.7474945 -4.876131 4.264621 0.7474945 -5.575266 4.264621 0.7474945 -6.374593 4.264621 0.7474945 -0 4.876131 0.7474945 -0 4.876131 0.7474945 -0 4.876131 0.7474945 -0.002268731 4.876131 0.7474945 -0.07076883 4.876131 0.7474945 -0.1119241 4.876131 0.7474945 -0.1475052 4.876131 0.7474945 -0.1846606 4.876131 0.7474945 -0.2245119 4.876131 0.7474945 -0.2679612 4.876131 0.7474945 -0.3158431 4.876131 0.7474945 -0.3689944 4.876131 0.7474945 -0.4282948 4.876131 0.7474945 -0.494694 4.876131 0.7474945 -0.5692344 4.876131 0.7474945 -0.6530715 4.876131 0.7474945 -0.7474945 4.876131 0.7474945 -0.8539475 4.876131 0.7474945 -0.974052 4.876131 0.7474945 -1.113885 4.876131 0.7474945 -1.27456 4.876131 0.7474945 -1.458117 4.876131 0.7474945 -1.667858 4.876131 0.7474945 -1.907556 4.876131 0.7474945 -2.181521 4.876131 0.7474945 -2.494678 4.876131 0.7474945 -2.852659 4.876131 0.7474945 -3.261896 4.876131 0.7474945 -3.729748 4.876131 0.7474945 -4.264621 4.876131 0.7474945 -4.876131 4.876131 0.7474945 -5.575266 4.876131 0.7474945 -6.374593 4.876131 0.7474945 -0 5.575266 0.7474945 -0 5.575266 0.7474945 -0 5.575266 0.7474945 -0.002268731 5.575266 0.7474945 -0.07076883 5.575266 0.7474945 -0.1119241 5.575266 0.7474945 -0.1475052 5.575266 0.7474945 -0.1846606 5.575266 0.7474945 -0.2245119 5.575266 0.7474945 -0.2679612 5.575266 0.7474945 -0.3158431 5.575266 0.7474945 -0.3689944 5.575266 0.7474945 -0.4282948 5.575266 0.7474945 -0.494694 5.575266 0.7474945 -0.5692344 5.575266 0.7474945 -0.6530715 5.575266 0.7474945 -0.7474945 5.575266 0.7474945 -0.8539475 5.575266 0.7474945 -0.974052 5.575266 0.7474945 -1.113885 5.575266 0.7474945 -1.27456 5.575266 0.7474945 -1.458117 5.575266 0.7474945 -1.667858 5.575266 0.7474945 -1.907556 5.575266 0.7474945 -2.181521 5.575266 0.7474945 -2.494678 5.575266 0.7474945 -2.852659 5.575266 0.7474945 -3.261896 5.575266 0.7474945 -3.729748 5.575266 0.7474945 -4.264621 5.575266 0.7474945 -4.876131 5.575266 0.7474945 -5.575266 5.575266 0.7474945 -6.374593 5.575266 0.7474945 -0 6.374593 0.7474945 -0 6.374593 0.7474945 -0 6.374593 0.7474945 -0.002268731 6.374593 0.7474945 -0.07076883 6.374593 0.7474945 -0.1119241 6.374593 0.7474945 -0.1475052 6.374593 0.7474945 -0.1846606 6.374593 0.7474945 -0.2245119 6.374593 0.7474945 -0.2679612 6.374593 0.7474945 -0.3158431 6.374593 0.7474945 -0.3689944 6.374593 0.7474945 -0.4282948 6.374593 0.7474945 -0.494694 6.374593 0.7474945 -0.5692344 6.374593 0.7474945 -0.6530715 6.374593 0.7474945 -0.7474945 6.374593 0.7474945 -0.8539475 6.374593 0.7474945 -0.974052 6.374593 0.7474945 -1.113885 6.374593 0.7474945 -1.27456 6.374593 0.7474945 -1.458117 6.374593 0.7474945 -1.667858 6.374593 0.7474945 -1.907556 6.374593 0.7474945 -2.181521 6.374593 0.7474945 -2.494678 6.374593 0.7474945 -2.852659 6.374593 0.7474945 -3.261896 6.374593 0.7474945 -3.729748 6.374593 0.7474945 -4.264621 6.374593 0.7474945 -4.876131 6.374593 0.7474945 -5.575266 6.374593 0.7474945 -6.374593 6.374593 0.7474945 -0 0 0.8539475 -0 0 0.8539475 -0 0 0.8539475 -0.002268731 0 0.8539475 -0.07076883 0 0.8539475 -0.1119241 0 0.8539475 -0.1475052 0 0.8539475 -0.1846606 0 0.8539475 -0.2245119 0 0.8539475 -0.2679612 0 0.8539475 -0.3158431 0 0.8539475 -0.3689944 0 0.8539475 -0.4282948 0 0.8539475 -0.494694 0 0.8539475 -0.5692344 0 0.8539475 -0.6530715 0 0.8539475 -0.7474945 0 0.8539475 -0.8539475 0 0.8539475 -0.974052 0 0.8539475 -1.113885 0 0.8539475 -1.27456 0 0.8539475 -1.458117 0 0.8539475 -1.667858 0 0.8539475 -1.907556 0 0.8539475 -2.181521 0 0.8539475 -2.494678 0 0.8539475 -2.852659 0 0.8539475 -3.261896 0 0.8539475 -3.729748 0 0.8539475 -4.264621 0 0.8539475 -4.876131 0 0.8539475 -5.575266 0 0.8539475 -6.374593 0 0.8539475 -0 0 0.8539475 -0 0 0.8539475 -0 0 0.8539475 -0.002268731 0 0.8539475 -0.07076883 0 0.8539475 -0.1119241 0 0.8539475 -0.1475052 0 0.8539475 -0.1846606 0 0.8539475 -0.2245119 0 0.8539475 -0.2679612 0 0.8539475 -0.3158431 0 0.8539475 -0.3689944 0 0.8539475 -0.4282948 0 0.8539475 -0.494694 0 0.8539475 -0.5692344 0 0.8539475 -0.6530715 0 0.8539475 -0.7474945 0 0.8539475 -0.8539475 0 0.8539475 -0.974052 0 0.8539475 -1.113885 0 0.8539475 -1.27456 0 0.8539475 -1.458117 0 0.8539475 -1.667858 0 0.8539475 -1.907556 0 0.8539475 -2.181521 0 0.8539475 -2.494678 0 0.8539475 -2.852659 0 0.8539475 -3.261896 0 0.8539475 -3.729748 0 0.8539475 -4.264621 0 0.8539475 -4.876131 0 0.8539475 -5.575266 0 0.8539475 -6.374593 0 0.8539475 -0 0 0.8539475 -0 0 0.8539475 -0 0 0.8539475 -0.002268731 0 0.8539475 -0.07076883 0 0.8539475 -0.1119241 0 0.8539475 -0.1475052 0 0.8539475 -0.1846606 0 0.8539475 -0.2245119 0 0.8539475 -0.2679612 0 0.8539475 -0.3158431 0 0.8539475 -0.3689944 0 0.8539475 -0.4282948 0 0.8539475 -0.494694 0 0.8539475 -0.5692344 0 0.8539475 -0.6530715 0 0.8539475 -0.7474945 0 0.8539475 -0.8539475 0 0.8539475 -0.974052 0 0.8539475 -1.113885 0 0.8539475 -1.27456 0 0.8539475 -1.458117 0 0.8539475 -1.667858 0 0.8539475 -1.907556 0 0.8539475 -2.181521 0 0.8539475 -2.494678 0 0.8539475 -2.852659 0 0.8539475 -3.261896 0 0.8539475 -3.729748 0 0.8539475 -4.264621 0 0.8539475 -4.876131 0 0.8539475 -5.575266 0 0.8539475 -6.374593 0 0.8539475 -0 0.002268731 0.8539475 -0 0.002268731 0.8539475 -0 0.002268731 0.8539475 -0.002268731 0.002268731 0.8539475 -0.07076883 0.002268731 0.8539475 -0.1119241 0.002268731 0.8539475 -0.1475052 0.002268731 0.8539475 -0.1846606 0.002268731 0.8539475 -0.2245119 0.002268731 0.8539475 -0.2679612 0.002268731 0.8539475 -0.3158431 0.002268731 0.8539475 -0.3689944 0.002268731 0.8539475 -0.4282948 0.002268731 0.8539475 -0.494694 0.002268731 0.8539475 -0.5692344 0.002268731 0.8539475 -0.6530715 0.002268731 0.8539475 -0.7474945 0.002268731 0.8539475 -0.8539475 0.002268731 0.8539475 -0.974052 0.002268731 0.8539475 -1.113885 0.002268731 0.8539475 -1.27456 0.002268731 0.8539475 -1.458117 0.002268731 0.8539475 -1.667858 0.002268731 0.8539475 -1.907556 0.002268731 0.8539475 -2.181521 0.002268731 0.8539475 -2.494678 0.002268731 0.8539475 -2.852659 0.002268731 0.8539475 -3.261896 0.002268731 0.8539475 -3.729748 0.002268731 0.8539475 -4.264621 0.002268731 0.8539475 -4.876131 0.002268731 0.8539475 -5.575266 0.002268731 0.8539475 -6.374593 0.002268731 0.8539475 -0 0.07076883 0.8539475 -0 0.07076883 0.8539475 -0 0.07076883 0.8539475 -0.002268731 0.07076883 0.8539475 -0.07076883 0.07076883 0.8539475 -0.1119241 0.07076883 0.8539475 -0.1475052 0.07076883 0.8539475 -0.1846606 0.07076883 0.8539475 -0.2245119 0.07076883 0.8539475 -0.2679612 0.07076883 0.8539475 -0.3158431 0.07076883 0.8539475 -0.3689944 0.07076883 0.8539475 -0.4282948 0.07076883 0.8539475 -0.494694 0.07076883 0.8539475 -0.5692344 0.07076883 0.8539475 -0.6530715 0.07076883 0.8539475 -0.7474945 0.07076883 0.8539475 -0.8539475 0.07076883 0.8539475 -0.974052 0.07076883 0.8539475 -1.113885 0.07076883 0.8539475 -1.27456 0.07076883 0.8539475 -1.458117 0.07076883 0.8539475 -1.667858 0.07076883 0.8539475 -1.907556 0.07076883 0.8539475 -2.181521 0.07076883 0.8539475 -2.494678 0.07076883 0.8539475 -2.852659 0.07076883 0.8539475 -3.261896 0.07076883 0.8539475 -3.729748 0.07076883 0.8539475 -4.264621 0.07076883 0.8539475 -4.876131 0.07076883 0.8539475 -5.575266 0.07076883 0.8539475 -6.374593 0.07076883 0.8539475 -0 0.1119241 0.8539475 -0 0.1119241 0.8539475 -0 0.1119241 0.8539475 -0.002268731 0.1119241 0.8539475 -0.07076883 0.1119241 0.8539475 -0.1119241 0.1119241 0.8539475 -0.1475052 0.1119241 0.8539475 -0.1846606 0.1119241 0.8539475 -0.2245119 0.1119241 0.8539475 -0.2679612 0.1119241 0.8539475 -0.3158431 0.1119241 0.8539475 -0.3689944 0.1119241 0.8539475 -0.4282948 0.1119241 0.8539475 -0.494694 0.1119241 0.8539475 -0.5692344 0.1119241 0.8539475 -0.6530715 0.1119241 0.8539475 -0.7474945 0.1119241 0.8539475 -0.8539475 0.1119241 0.8539475 -0.974052 0.1119241 0.8539475 -1.113885 0.1119241 0.8539475 -1.27456 0.1119241 0.8539475 -1.458117 0.1119241 0.8539475 -1.667858 0.1119241 0.8539475 -1.907556 0.1119241 0.8539475 -2.181521 0.1119241 0.8539475 -2.494678 0.1119241 0.8539475 -2.852659 0.1119241 0.8539475 -3.261896 0.1119241 0.8539475 -3.729748 0.1119241 0.8539475 -4.264621 0.1119241 0.8539475 -4.876131 0.1119241 0.8539475 -5.575266 0.1119241 0.8539475 -6.374593 0.1119241 0.8539475 -0 0.1475052 0.8539475 -0 0.1475052 0.8539475 -0 0.1475052 0.8539475 -0.002268731 0.1475052 0.8539475 -0.07076883 0.1475052 0.8539475 -0.1119241 0.1475052 0.8539475 -0.1475052 0.1475052 0.8539475 -0.1846606 0.1475052 0.8539475 -0.2245119 0.1475052 0.8539475 -0.2679612 0.1475052 0.8539475 -0.3158431 0.1475052 0.8539475 -0.3689944 0.1475052 0.8539475 -0.4282948 0.1475052 0.8539475 -0.494694 0.1475052 0.8539475 -0.5692344 0.1475052 0.8539475 -0.6530715 0.1475052 0.8539475 -0.7474945 0.1475052 0.8539475 -0.8539475 0.1475052 0.8539475 -0.974052 0.1475052 0.8539475 -1.113885 0.1475052 0.8539475 -1.27456 0.1475052 0.8539475 -1.458117 0.1475052 0.8539475 -1.667858 0.1475052 0.8539475 -1.907556 0.1475052 0.8539475 -2.181521 0.1475052 0.8539475 -2.494678 0.1475052 0.8539475 -2.852659 0.1475052 0.8539475 -3.261896 0.1475052 0.8539475 -3.729748 0.1475052 0.8539475 -4.264621 0.1475052 0.8539475 -4.876131 0.1475052 0.8539475 -5.575266 0.1475052 0.8539475 -6.374593 0.1475052 0.8539475 -0 0.1846606 0.8539475 -0 0.1846606 0.8539475 -0 0.1846606 0.8539475 -0.002268731 0.1846606 0.8539475 -0.07076883 0.1846606 0.8539475 -0.1119241 0.1846606 0.8539475 -0.1475052 0.1846606 0.8539475 -0.1846606 0.1846606 0.8539475 -0.2245119 0.1846606 0.8539475 -0.2679612 0.1846606 0.8539475 -0.3158431 0.1846606 0.8539475 -0.3689944 0.1846606 0.8539475 -0.4282948 0.1846606 0.8539475 -0.494694 0.1846606 0.8539475 -0.5692344 0.1846606 0.8539475 -0.6530715 0.1846606 0.8539475 -0.7474945 0.1846606 0.8539475 -0.8539475 0.1846606 0.8539475 -0.974052 0.1846606 0.8539475 -1.113885 0.1846606 0.8539475 -1.27456 0.1846606 0.8539475 -1.458117 0.1846606 0.8539475 -1.667858 0.1846606 0.8539475 -1.907556 0.1846606 0.8539475 -2.181521 0.1846606 0.8539475 -2.494678 0.1846606 0.8539475 -2.852659 0.1846606 0.8539475 -3.261896 0.1846606 0.8539475 -3.729748 0.1846606 0.8539475 -4.264621 0.1846606 0.8539475 -4.876131 0.1846606 0.8539475 -5.575266 0.1846606 0.8539475 -6.374593 0.1846606 0.8539475 -0 0.2245119 0.8539475 -0 0.2245119 0.8539475 -0 0.2245119 0.8539475 -0.002268731 0.2245119 0.8539475 -0.07076883 0.2245119 0.8539475 -0.1119241 0.2245119 0.8539475 -0.1475052 0.2245119 0.8539475 -0.1846606 0.2245119 0.8539475 -0.2245119 0.2245119 0.8539475 -0.2679612 0.2245119 0.8539475 -0.3158431 0.2245119 0.8539475 -0.3689944 0.2245119 0.8539475 -0.4282948 0.2245119 0.8539475 -0.494694 0.2245119 0.8539475 -0.5692344 0.2245119 0.8539475 -0.6530715 0.2245119 0.8539475 -0.7474945 0.2245119 0.8539475 -0.8539475 0.2245119 0.8539475 -0.974052 0.2245119 0.8539475 -1.113885 0.2245119 0.8539475 -1.27456 0.2245119 0.8539475 -1.458117 0.2245119 0.8539475 -1.667858 0.2245119 0.8539475 -1.907556 0.2245119 0.8539475 -2.181521 0.2245119 0.8539475 -2.494678 0.2245119 0.8539475 -2.852659 0.2245119 0.8539475 -3.261896 0.2245119 0.8539475 -3.729748 0.2245119 0.8539475 -4.264621 0.2245119 0.8539475 -4.876131 0.2245119 0.8539475 -5.575266 0.2245119 0.8539475 -6.374593 0.2245119 0.8539475 -0 0.2679612 0.8539475 -0 0.2679612 0.8539475 -0 0.2679612 0.8539475 -0.002268731 0.2679612 0.8539475 -0.07076883 0.2679612 0.8539475 -0.1119241 0.2679612 0.8539475 -0.1475052 0.2679612 0.8539475 -0.1846606 0.2679612 0.8539475 -0.2245119 0.2679612 0.8539475 -0.2679612 0.2679612 0.8539475 -0.3158431 0.2679612 0.8539475 -0.3689944 0.2679612 0.8539475 -0.4282948 0.2679612 0.8539475 -0.494694 0.2679612 0.8539475 -0.5692344 0.2679612 0.8539475 -0.6530715 0.2679612 0.8539475 -0.7474945 0.2679612 0.8539475 -0.8539475 0.2679612 0.8539475 -0.974052 0.2679612 0.8539475 -1.113885 0.2679612 0.8539475 -1.27456 0.2679612 0.8539475 -1.458117 0.2679612 0.8539475 -1.667858 0.2679612 0.8539475 -1.907556 0.2679612 0.8539475 -2.181521 0.2679612 0.8539475 -2.494678 0.2679612 0.8539475 -2.852659 0.2679612 0.8539475 -3.261896 0.2679612 0.8539475 -3.729748 0.2679612 0.8539475 -4.264621 0.2679612 0.8539475 -4.876131 0.2679612 0.8539475 -5.575266 0.2679612 0.8539475 -6.374593 0.2679612 0.8539475 -0 0.3158431 0.8539475 -0 0.3158431 0.8539475 -0 0.3158431 0.8539475 -0.002268731 0.3158431 0.8539475 -0.07076883 0.3158431 0.8539475 -0.1119241 0.3158431 0.8539475 -0.1475052 0.3158431 0.8539475 -0.1846606 0.3158431 0.8539475 -0.2245119 0.3158431 0.8539475 -0.2679612 0.3158431 0.8539475 -0.3158431 0.3158431 0.8539475 -0.3689944 0.3158431 0.8539475 -0.4282948 0.3158431 0.8539475 -0.494694 0.3158431 0.8539475 -0.5692344 0.3158431 0.8539475 -0.6530715 0.3158431 0.8539475 -0.7474945 0.3158431 0.8539475 -0.8539475 0.3158431 0.8539475 -0.974052 0.3158431 0.8539475 -1.113885 0.3158431 0.8539475 -1.27456 0.3158431 0.8539475 -1.458117 0.3158431 0.8539475 -1.667858 0.3158431 0.8539475 -1.907556 0.3158431 0.8539475 -2.181521 0.3158431 0.8539475 -2.494678 0.3158431 0.8539475 -2.852659 0.3158431 0.8539475 -3.261896 0.3158431 0.8539475 -3.729748 0.3158431 0.8539475 -4.264621 0.3158431 0.8539475 -4.876131 0.3158431 0.8539475 -5.575266 0.3158431 0.8539475 -6.374593 0.3158431 0.8539475 -0 0.3689944 0.8539475 -0 0.3689944 0.8539475 -0 0.3689944 0.8539475 -0.002268731 0.3689944 0.8539475 -0.07076883 0.3689944 0.8539475 -0.1119241 0.3689944 0.8539475 -0.1475052 0.3689944 0.8539475 -0.1846606 0.3689944 0.8539475 -0.2245119 0.3689944 0.8539475 -0.2679612 0.3689944 0.8539475 -0.3158431 0.3689944 0.8539475 -0.3689944 0.3689944 0.8539475 -0.4282948 0.3689944 0.8539475 -0.494694 0.3689944 0.8539475 -0.5692344 0.3689944 0.8539475 -0.6530715 0.3689944 0.8539475 -0.7474945 0.3689944 0.8539475 -0.8539475 0.3689944 0.8539475 -0.974052 0.3689944 0.8539475 -1.113885 0.3689944 0.8539475 -1.27456 0.3689944 0.8539475 -1.458117 0.3689944 0.8539475 -1.667858 0.3689944 0.8539475 -1.907556 0.3689944 0.8539475 -2.181521 0.3689944 0.8539475 -2.494678 0.3689944 0.8539475 -2.852659 0.3689944 0.8539475 -3.261896 0.3689944 0.8539475 -3.729748 0.3689944 0.8539475 -4.264621 0.3689944 0.8539475 -4.876131 0.3689944 0.8539475 -5.575266 0.3689944 0.8539475 -6.374593 0.3689944 0.8539475 -0 0.4282948 0.8539475 -0 0.4282948 0.8539475 -0 0.4282948 0.8539475 -0.002268731 0.4282948 0.8539475 -0.07076883 0.4282948 0.8539475 -0.1119241 0.4282948 0.8539475 -0.1475052 0.4282948 0.8539475 -0.1846606 0.4282948 0.8539475 -0.2245119 0.4282948 0.8539475 -0.2679612 0.4282948 0.8539475 -0.3158431 0.4282948 0.8539475 -0.3689944 0.4282948 0.8539475 -0.4282948 0.4282948 0.8539475 -0.494694 0.4282948 0.8539475 -0.5692344 0.4282948 0.8539475 -0.6530715 0.4282948 0.8539475 -0.7474945 0.4282948 0.8539475 -0.8539475 0.4282948 0.8539475 -0.974052 0.4282948 0.8539475 -1.113885 0.4282948 0.8539475 -1.27456 0.4282948 0.8539475 -1.458117 0.4282948 0.8539475 -1.667858 0.4282948 0.8539475 -1.907556 0.4282948 0.8539475 -2.181521 0.4282948 0.8539475 -2.494678 0.4282948 0.8539475 -2.852659 0.4282948 0.8539475 -3.261896 0.4282948 0.8539475 -3.729748 0.4282948 0.8539475 -4.264621 0.4282948 0.8539475 -4.876131 0.4282948 0.8539475 -5.575266 0.4282948 0.8539475 -6.374593 0.4282948 0.8539475 -0 0.494694 0.8539475 -0 0.494694 0.8539475 -0 0.494694 0.8539475 -0.002268731 0.494694 0.8539475 -0.07076883 0.494694 0.8539475 -0.1119241 0.494694 0.8539475 -0.1475052 0.494694 0.8539475 -0.1846606 0.494694 0.8539475 -0.2245119 0.494694 0.8539475 -0.2679612 0.494694 0.8539475 -0.3158431 0.494694 0.8539475 -0.3689944 0.494694 0.8539475 -0.4282948 0.494694 0.8539475 -0.494694 0.494694 0.8539475 -0.5692344 0.494694 0.8539475 -0.6530715 0.494694 0.8539475 -0.7474945 0.494694 0.8539475 -0.8539475 0.494694 0.8539475 -0.974052 0.494694 0.8539475 -1.113885 0.494694 0.8539475 -1.27456 0.494694 0.8539475 -1.458117 0.494694 0.8539475 -1.667858 0.494694 0.8539475 -1.907556 0.494694 0.8539475 -2.181521 0.494694 0.8539475 -2.494678 0.494694 0.8539475 -2.852659 0.494694 0.8539475 -3.261896 0.494694 0.8539475 -3.729748 0.494694 0.8539475 -4.264621 0.494694 0.8539475 -4.876131 0.494694 0.8539475 -5.575266 0.494694 0.8539475 -6.374593 0.494694 0.8539475 -0 0.5692344 0.8539475 -0 0.5692344 0.8539475 -0 0.5692344 0.8539475 -0.002268731 0.5692344 0.8539475 -0.07076883 0.5692344 0.8539475 -0.1119241 0.5692344 0.8539475 -0.1475052 0.5692344 0.8539475 -0.1846606 0.5692344 0.8539475 -0.2245119 0.5692344 0.8539475 -0.2679612 0.5692344 0.8539475 -0.3158431 0.5692344 0.8539475 -0.3689944 0.5692344 0.8539475 -0.4282948 0.5692344 0.8539475 -0.494694 0.5692344 0.8539475 -0.5692344 0.5692344 0.8539475 -0.6530715 0.5692344 0.8539475 -0.7474945 0.5692344 0.8539475 -0.8539475 0.5692344 0.8539475 -0.974052 0.5692344 0.8539475 -1.113885 0.5692344 0.8539475 -1.27456 0.5692344 0.8539475 -1.458117 0.5692344 0.8539475 -1.667858 0.5692344 0.8539475 -1.907556 0.5692344 0.8539475 -2.181521 0.5692344 0.8539475 -2.494678 0.5692344 0.8539475 -2.852659 0.5692344 0.8539475 -3.261896 0.5692344 0.8539475 -3.729748 0.5692344 0.8539475 -4.264621 0.5692344 0.8539475 -4.876131 0.5692344 0.8539475 -5.575266 0.5692344 0.8539475 -6.374593 0.5692344 0.8539475 -0 0.6530715 0.8539475 -0 0.6530715 0.8539475 -0 0.6530715 0.8539475 -0.002268731 0.6530715 0.8539475 -0.07076883 0.6530715 0.8539475 -0.1119241 0.6530715 0.8539475 -0.1475052 0.6530715 0.8539475 -0.1846606 0.6530715 0.8539475 -0.2245119 0.6530715 0.8539475 -0.2679612 0.6530715 0.8539475 -0.3158431 0.6530715 0.8539475 -0.3689944 0.6530715 0.8539475 -0.4282948 0.6530715 0.8539475 -0.494694 0.6530715 0.8539475 -0.5692344 0.6530715 0.8539475 -0.6530715 0.6530715 0.8539475 -0.7474945 0.6530715 0.8539475 -0.8539475 0.6530715 0.8539475 -0.974052 0.6530715 0.8539475 -1.113885 0.6530715 0.8539475 -1.27456 0.6530715 0.8539475 -1.458117 0.6530715 0.8539475 -1.667858 0.6530715 0.8539475 -1.907556 0.6530715 0.8539475 -2.181521 0.6530715 0.8539475 -2.494678 0.6530715 0.8539475 -2.852659 0.6530715 0.8539475 -3.261896 0.6530715 0.8539475 -3.729748 0.6530715 0.8539475 -4.264621 0.6530715 0.8539475 -4.876131 0.6530715 0.8539475 -5.575266 0.6530715 0.8539475 -6.374593 0.6530715 0.8539475 -0 0.7474945 0.8539475 -0 0.7474945 0.8539475 -0 0.7474945 0.8539475 -0.002268731 0.7474945 0.8539475 -0.07076883 0.7474945 0.8539475 -0.1119241 0.7474945 0.8539475 -0.1475052 0.7474945 0.8539475 -0.1846606 0.7474945 0.8539475 -0.2245119 0.7474945 0.8539475 -0.2679612 0.7474945 0.8539475 -0.3158431 0.7474945 0.8539475 -0.3689944 0.7474945 0.8539475 -0.4282948 0.7474945 0.8539475 -0.494694 0.7474945 0.8539475 -0.5692344 0.7474945 0.8539475 -0.6530715 0.7474945 0.8539475 -0.7474945 0.7474945 0.8539475 -0.8539475 0.7474945 0.8539475 -0.974052 0.7474945 0.8539475 -1.113885 0.7474945 0.8539475 -1.27456 0.7474945 0.8539475 -1.458117 0.7474945 0.8539475 -1.667858 0.7474945 0.8539475 -1.907556 0.7474945 0.8539475 -2.181521 0.7474945 0.8539475 -2.494678 0.7474945 0.8539475 -2.852659 0.7474945 0.8539475 -3.261896 0.7474945 0.8539475 -3.729748 0.7474945 0.8539475 -4.264621 0.7474945 0.8539475 -4.876131 0.7474945 0.8539475 -5.575266 0.7474945 0.8539475 -6.374593 0.7474945 0.8539475 -0 0.8539475 0.8539475 -0 0.8539475 0.8539475 -0 0.8539475 0.8539475 -0.002268731 0.8539475 0.8539475 -0.07076883 0.8539475 0.8539475 -0.1119241 0.8539475 0.8539475 -0.1475052 0.8539475 0.8539475 -0.1846606 0.8539475 0.8539475 -0.2245119 0.8539475 0.8539475 -0.2679612 0.8539475 0.8539475 -0.3158431 0.8539475 0.8539475 -0.3689944 0.8539475 0.8539475 -0.4282948 0.8539475 0.8539475 -0.494694 0.8539475 0.8539475 -0.5692344 0.8539475 0.8539475 -0.6530715 0.8539475 0.8539475 -0.7474945 0.8539475 0.8539475 -0.8539475 0.8539475 0.8539475 -0.974052 0.8539475 0.8539475 -1.113885 0.8539475 0.8539475 -1.27456 0.8539475 0.8539475 -1.458117 0.8539475 0.8539475 -1.667858 0.8539475 0.8539475 -1.907556 0.8539475 0.8539475 -2.181521 0.8539475 0.8539475 -2.494678 0.8539475 0.8539475 -2.852659 0.8539475 0.8539475 -3.261896 0.8539475 0.8539475 -3.729748 0.8539475 0.8539475 -4.264621 0.8539475 0.8539475 -4.876131 0.8539475 0.8539475 -5.575266 0.8539475 0.8539475 -6.374593 0.8539475 0.8539475 -0 0.974052 0.8539475 -0 0.974052 0.8539475 -0 0.974052 0.8539475 -0.002268731 0.974052 0.8539475 -0.07076883 0.974052 0.8539475 -0.1119241 0.974052 0.8539475 -0.1475052 0.974052 0.8539475 -0.1846606 0.974052 0.8539475 -0.2245119 0.974052 0.8539475 -0.2679612 0.974052 0.8539475 -0.3158431 0.974052 0.8539475 -0.3689944 0.974052 0.8539475 -0.4282948 0.974052 0.8539475 -0.494694 0.974052 0.8539475 -0.5692344 0.974052 0.8539475 -0.6530715 0.974052 0.8539475 -0.7474945 0.974052 0.8539475 -0.8539475 0.974052 0.8539475 -0.974052 0.974052 0.8539475 -1.113885 0.974052 0.8539475 -1.27456 0.974052 0.8539475 -1.458117 0.974052 0.8539475 -1.667858 0.974052 0.8539475 -1.907556 0.974052 0.8539475 -2.181521 0.974052 0.8539475 -2.494678 0.974052 0.8539475 -2.852659 0.974052 0.8539475 -3.261896 0.974052 0.8539475 -3.729748 0.974052 0.8539475 -4.264621 0.974052 0.8539475 -4.876131 0.974052 0.8539475 -5.575266 0.974052 0.8539475 -6.374593 0.974052 0.8539475 -0 1.113885 0.8539475 -0 1.113885 0.8539475 -0 1.113885 0.8539475 -0.002268731 1.113885 0.8539475 -0.07076883 1.113885 0.8539475 -0.1119241 1.113885 0.8539475 -0.1475052 1.113885 0.8539475 -0.1846606 1.113885 0.8539475 -0.2245119 1.113885 0.8539475 -0.2679612 1.113885 0.8539475 -0.3158431 1.113885 0.8539475 -0.3689944 1.113885 0.8539475 -0.4282948 1.113885 0.8539475 -0.494694 1.113885 0.8539475 -0.5692344 1.113885 0.8539475 -0.6530715 1.113885 0.8539475 -0.7474945 1.113885 0.8539475 -0.8539475 1.113885 0.8539475 -0.974052 1.113885 0.8539475 -1.113885 1.113885 0.8539475 -1.27456 1.113885 0.8539475 -1.458117 1.113885 0.8539475 -1.667858 1.113885 0.8539475 -1.907556 1.113885 0.8539475 -2.181521 1.113885 0.8539475 -2.494678 1.113885 0.8539475 -2.852659 1.113885 0.8539475 -3.261896 1.113885 0.8539475 -3.729748 1.113885 0.8539475 -4.264621 1.113885 0.8539475 -4.876131 1.113885 0.8539475 -5.575266 1.113885 0.8539475 -6.374593 1.113885 0.8539475 -0 1.27456 0.8539475 -0 1.27456 0.8539475 -0 1.27456 0.8539475 -0.002268731 1.27456 0.8539475 -0.07076883 1.27456 0.8539475 -0.1119241 1.27456 0.8539475 -0.1475052 1.27456 0.8539475 -0.1846606 1.27456 0.8539475 -0.2245119 1.27456 0.8539475 -0.2679612 1.27456 0.8539475 -0.3158431 1.27456 0.8539475 -0.3689944 1.27456 0.8539475 -0.4282948 1.27456 0.8539475 -0.494694 1.27456 0.8539475 -0.5692344 1.27456 0.8539475 -0.6530715 1.27456 0.8539475 -0.7474945 1.27456 0.8539475 -0.8539475 1.27456 0.8539475 -0.974052 1.27456 0.8539475 -1.113885 1.27456 0.8539475 -1.27456 1.27456 0.8539475 -1.458117 1.27456 0.8539475 -1.667858 1.27456 0.8539475 -1.907556 1.27456 0.8539475 -2.181521 1.27456 0.8539475 -2.494678 1.27456 0.8539475 -2.852659 1.27456 0.8539475 -3.261896 1.27456 0.8539475 -3.729748 1.27456 0.8539475 -4.264621 1.27456 0.8539475 -4.876131 1.27456 0.8539475 -5.575266 1.27456 0.8539475 -6.374593 1.27456 0.8539475 -0 1.458117 0.8539475 -0 1.458117 0.8539475 -0 1.458117 0.8539475 -0.002268731 1.458117 0.8539475 -0.07076883 1.458117 0.8539475 -0.1119241 1.458117 0.8539475 -0.1475052 1.458117 0.8539475 -0.1846606 1.458117 0.8539475 -0.2245119 1.458117 0.8539475 -0.2679612 1.458117 0.8539475 -0.3158431 1.458117 0.8539475 -0.3689944 1.458117 0.8539475 -0.4282948 1.458117 0.8539475 -0.494694 1.458117 0.8539475 -0.5692344 1.458117 0.8539475 -0.6530715 1.458117 0.8539475 -0.7474945 1.458117 0.8539475 -0.8539475 1.458117 0.8539475 -0.974052 1.458117 0.8539475 -1.113885 1.458117 0.8539475 -1.27456 1.458117 0.8539475 -1.458117 1.458117 0.8539475 -1.667858 1.458117 0.8539475 -1.907556 1.458117 0.8539475 -2.181521 1.458117 0.8539475 -2.494678 1.458117 0.8539475 -2.852659 1.458117 0.8539475 -3.261896 1.458117 0.8539475 -3.729748 1.458117 0.8539475 -4.264621 1.458117 0.8539475 -4.876131 1.458117 0.8539475 -5.575266 1.458117 0.8539475 -6.374593 1.458117 0.8539475 -0 1.667858 0.8539475 -0 1.667858 0.8539475 -0 1.667858 0.8539475 -0.002268731 1.667858 0.8539475 -0.07076883 1.667858 0.8539475 -0.1119241 1.667858 0.8539475 -0.1475052 1.667858 0.8539475 -0.1846606 1.667858 0.8539475 -0.2245119 1.667858 0.8539475 -0.2679612 1.667858 0.8539475 -0.3158431 1.667858 0.8539475 -0.3689944 1.667858 0.8539475 -0.4282948 1.667858 0.8539475 -0.494694 1.667858 0.8539475 -0.5692344 1.667858 0.8539475 -0.6530715 1.667858 0.8539475 -0.7474945 1.667858 0.8539475 -0.8539475 1.667858 0.8539475 -0.974052 1.667858 0.8539475 -1.113885 1.667858 0.8539475 -1.27456 1.667858 0.8539475 -1.458117 1.667858 0.8539475 -1.667858 1.667858 0.8539475 -1.907556 1.667858 0.8539475 -2.181521 1.667858 0.8539475 -2.494678 1.667858 0.8539475 -2.852659 1.667858 0.8539475 -3.261896 1.667858 0.8539475 -3.729748 1.667858 0.8539475 -4.264621 1.667858 0.8539475 -4.876131 1.667858 0.8539475 -5.575266 1.667858 0.8539475 -6.374593 1.667858 0.8539475 -0 1.907556 0.8539475 -0 1.907556 0.8539475 -0 1.907556 0.8539475 -0.002268731 1.907556 0.8539475 -0.07076883 1.907556 0.8539475 -0.1119241 1.907556 0.8539475 -0.1475052 1.907556 0.8539475 -0.1846606 1.907556 0.8539475 -0.2245119 1.907556 0.8539475 -0.2679612 1.907556 0.8539475 -0.3158431 1.907556 0.8539475 -0.3689944 1.907556 0.8539475 -0.4282948 1.907556 0.8539475 -0.494694 1.907556 0.8539475 -0.5692344 1.907556 0.8539475 -0.6530715 1.907556 0.8539475 -0.7474945 1.907556 0.8539475 -0.8539475 1.907556 0.8539475 -0.974052 1.907556 0.8539475 -1.113885 1.907556 0.8539475 -1.27456 1.907556 0.8539475 -1.458117 1.907556 0.8539475 -1.667858 1.907556 0.8539475 -1.907556 1.907556 0.8539475 -2.181521 1.907556 0.8539475 -2.494678 1.907556 0.8539475 -2.852659 1.907556 0.8539475 -3.261896 1.907556 0.8539475 -3.729748 1.907556 0.8539475 -4.264621 1.907556 0.8539475 -4.876131 1.907556 0.8539475 -5.575266 1.907556 0.8539475 -6.374593 1.907556 0.8539475 -0 2.181521 0.8539475 -0 2.181521 0.8539475 -0 2.181521 0.8539475 -0.002268731 2.181521 0.8539475 -0.07076883 2.181521 0.8539475 -0.1119241 2.181521 0.8539475 -0.1475052 2.181521 0.8539475 -0.1846606 2.181521 0.8539475 -0.2245119 2.181521 0.8539475 -0.2679612 2.181521 0.8539475 -0.3158431 2.181521 0.8539475 -0.3689944 2.181521 0.8539475 -0.4282948 2.181521 0.8539475 -0.494694 2.181521 0.8539475 -0.5692344 2.181521 0.8539475 -0.6530715 2.181521 0.8539475 -0.7474945 2.181521 0.8539475 -0.8539475 2.181521 0.8539475 -0.974052 2.181521 0.8539475 -1.113885 2.181521 0.8539475 -1.27456 2.181521 0.8539475 -1.458117 2.181521 0.8539475 -1.667858 2.181521 0.8539475 -1.907556 2.181521 0.8539475 -2.181521 2.181521 0.8539475 -2.494678 2.181521 0.8539475 -2.852659 2.181521 0.8539475 -3.261896 2.181521 0.8539475 -3.729748 2.181521 0.8539475 -4.264621 2.181521 0.8539475 -4.876131 2.181521 0.8539475 -5.575266 2.181521 0.8539475 -6.374593 2.181521 0.8539475 -0 2.494678 0.8539475 -0 2.494678 0.8539475 -0 2.494678 0.8539475 -0.002268731 2.494678 0.8539475 -0.07076883 2.494678 0.8539475 -0.1119241 2.494678 0.8539475 -0.1475052 2.494678 0.8539475 -0.1846606 2.494678 0.8539475 -0.2245119 2.494678 0.8539475 -0.2679612 2.494678 0.8539475 -0.3158431 2.494678 0.8539475 -0.3689944 2.494678 0.8539475 -0.4282948 2.494678 0.8539475 -0.494694 2.494678 0.8539475 -0.5692344 2.494678 0.8539475 -0.6530715 2.494678 0.8539475 -0.7474945 2.494678 0.8539475 -0.8539475 2.494678 0.8539475 -0.974052 2.494678 0.8539475 -1.113885 2.494678 0.8539475 -1.27456 2.494678 0.8539475 -1.458117 2.494678 0.8539475 -1.667858 2.494678 0.8539475 -1.907556 2.494678 0.8539475 -2.181521 2.494678 0.8539475 -2.494678 2.494678 0.8539475 -2.852659 2.494678 0.8539475 -3.261896 2.494678 0.8539475 -3.729748 2.494678 0.8539475 -4.264621 2.494678 0.8539475 -4.876131 2.494678 0.8539475 -5.575266 2.494678 0.8539475 -6.374593 2.494678 0.8539475 -0 2.852659 0.8539475 -0 2.852659 0.8539475 -0 2.852659 0.8539475 -0.002268731 2.852659 0.8539475 -0.07076883 2.852659 0.8539475 -0.1119241 2.852659 0.8539475 -0.1475052 2.852659 0.8539475 -0.1846606 2.852659 0.8539475 -0.2245119 2.852659 0.8539475 -0.2679612 2.852659 0.8539475 -0.3158431 2.852659 0.8539475 -0.3689944 2.852659 0.8539475 -0.4282948 2.852659 0.8539475 -0.494694 2.852659 0.8539475 -0.5692344 2.852659 0.8539475 -0.6530715 2.852659 0.8539475 -0.7474945 2.852659 0.8539475 -0.8539475 2.852659 0.8539475 -0.974052 2.852659 0.8539475 -1.113885 2.852659 0.8539475 -1.27456 2.852659 0.8539475 -1.458117 2.852659 0.8539475 -1.667858 2.852659 0.8539475 -1.907556 2.852659 0.8539475 -2.181521 2.852659 0.8539475 -2.494678 2.852659 0.8539475 -2.852659 2.852659 0.8539475 -3.261896 2.852659 0.8539475 -3.729748 2.852659 0.8539475 -4.264621 2.852659 0.8539475 -4.876131 2.852659 0.8539475 -5.575266 2.852659 0.8539475 -6.374593 2.852659 0.8539475 -0 3.261896 0.8539475 -0 3.261896 0.8539475 -0 3.261896 0.8539475 -0.002268731 3.261896 0.8539475 -0.07076883 3.261896 0.8539475 -0.1119241 3.261896 0.8539475 -0.1475052 3.261896 0.8539475 -0.1846606 3.261896 0.8539475 -0.2245119 3.261896 0.8539475 -0.2679612 3.261896 0.8539475 -0.3158431 3.261896 0.8539475 -0.3689944 3.261896 0.8539475 -0.4282948 3.261896 0.8539475 -0.494694 3.261896 0.8539475 -0.5692344 3.261896 0.8539475 -0.6530715 3.261896 0.8539475 -0.7474945 3.261896 0.8539475 -0.8539475 3.261896 0.8539475 -0.974052 3.261896 0.8539475 -1.113885 3.261896 0.8539475 -1.27456 3.261896 0.8539475 -1.458117 3.261896 0.8539475 -1.667858 3.261896 0.8539475 -1.907556 3.261896 0.8539475 -2.181521 3.261896 0.8539475 -2.494678 3.261896 0.8539475 -2.852659 3.261896 0.8539475 -3.261896 3.261896 0.8539475 -3.729748 3.261896 0.8539475 -4.264621 3.261896 0.8539475 -4.876131 3.261896 0.8539475 -5.575266 3.261896 0.8539475 -6.374593 3.261896 0.8539475 -0 3.729748 0.8539475 -0 3.729748 0.8539475 -0 3.729748 0.8539475 -0.002268731 3.729748 0.8539475 -0.07076883 3.729748 0.8539475 -0.1119241 3.729748 0.8539475 -0.1475052 3.729748 0.8539475 -0.1846606 3.729748 0.8539475 -0.2245119 3.729748 0.8539475 -0.2679612 3.729748 0.8539475 -0.3158431 3.729748 0.8539475 -0.3689944 3.729748 0.8539475 -0.4282948 3.729748 0.8539475 -0.494694 3.729748 0.8539475 -0.5692344 3.729748 0.8539475 -0.6530715 3.729748 0.8539475 -0.7474945 3.729748 0.8539475 -0.8539475 3.729748 0.8539475 -0.974052 3.729748 0.8539475 -1.113885 3.729748 0.8539475 -1.27456 3.729748 0.8539475 -1.458117 3.729748 0.8539475 -1.667858 3.729748 0.8539475 -1.907556 3.729748 0.8539475 -2.181521 3.729748 0.8539475 -2.494678 3.729748 0.8539475 -2.852659 3.729748 0.8539475 -3.261896 3.729748 0.8539475 -3.729748 3.729748 0.8539475 -4.264621 3.729748 0.8539475 -4.876131 3.729748 0.8539475 -5.575266 3.729748 0.8539475 -6.374593 3.729748 0.8539475 -0 4.264621 0.8539475 -0 4.264621 0.8539475 -0 4.264621 0.8539475 -0.002268731 4.264621 0.8539475 -0.07076883 4.264621 0.8539475 -0.1119241 4.264621 0.8539475 -0.1475052 4.264621 0.8539475 -0.1846606 4.264621 0.8539475 -0.2245119 4.264621 0.8539475 -0.2679612 4.264621 0.8539475 -0.3158431 4.264621 0.8539475 -0.3689944 4.264621 0.8539475 -0.4282948 4.264621 0.8539475 -0.494694 4.264621 0.8539475 -0.5692344 4.264621 0.8539475 -0.6530715 4.264621 0.8539475 -0.7474945 4.264621 0.8539475 -0.8539475 4.264621 0.8539475 -0.974052 4.264621 0.8539475 -1.113885 4.264621 0.8539475 -1.27456 4.264621 0.8539475 -1.458117 4.264621 0.8539475 -1.667858 4.264621 0.8539475 -1.907556 4.264621 0.8539475 -2.181521 4.264621 0.8539475 -2.494678 4.264621 0.8539475 -2.852659 4.264621 0.8539475 -3.261896 4.264621 0.8539475 -3.729748 4.264621 0.8539475 -4.264621 4.264621 0.8539475 -4.876131 4.264621 0.8539475 -5.575266 4.264621 0.8539475 -6.374593 4.264621 0.8539475 -0 4.876131 0.8539475 -0 4.876131 0.8539475 -0 4.876131 0.8539475 -0.002268731 4.876131 0.8539475 -0.07076883 4.876131 0.8539475 -0.1119241 4.876131 0.8539475 -0.1475052 4.876131 0.8539475 -0.1846606 4.876131 0.8539475 -0.2245119 4.876131 0.8539475 -0.2679612 4.876131 0.8539475 -0.3158431 4.876131 0.8539475 -0.3689944 4.876131 0.8539475 -0.4282948 4.876131 0.8539475 -0.494694 4.876131 0.8539475 -0.5692344 4.876131 0.8539475 -0.6530715 4.876131 0.8539475 -0.7474945 4.876131 0.8539475 -0.8539475 4.876131 0.8539475 -0.974052 4.876131 0.8539475 -1.113885 4.876131 0.8539475 -1.27456 4.876131 0.8539475 -1.458117 4.876131 0.8539475 -1.667858 4.876131 0.8539475 -1.907556 4.876131 0.8539475 -2.181521 4.876131 0.8539475 -2.494678 4.876131 0.8539475 -2.852659 4.876131 0.8539475 -3.261896 4.876131 0.8539475 -3.729748 4.876131 0.8539475 -4.264621 4.876131 0.8539475 -4.876131 4.876131 0.8539475 -5.575266 4.876131 0.8539475 -6.374593 4.876131 0.8539475 -0 5.575266 0.8539475 -0 5.575266 0.8539475 -0 5.575266 0.8539475 -0.002268731 5.575266 0.8539475 -0.07076883 5.575266 0.8539475 -0.1119241 5.575266 0.8539475 -0.1475052 5.575266 0.8539475 -0.1846606 5.575266 0.8539475 -0.2245119 5.575266 0.8539475 -0.2679612 5.575266 0.8539475 -0.3158431 5.575266 0.8539475 -0.3689944 5.575266 0.8539475 -0.4282948 5.575266 0.8539475 -0.494694 5.575266 0.8539475 -0.5692344 5.575266 0.8539475 -0.6530715 5.575266 0.8539475 -0.7474945 5.575266 0.8539475 -0.8539475 5.575266 0.8539475 -0.974052 5.575266 0.8539475 -1.113885 5.575266 0.8539475 -1.27456 5.575266 0.8539475 -1.458117 5.575266 0.8539475 -1.667858 5.575266 0.8539475 -1.907556 5.575266 0.8539475 -2.181521 5.575266 0.8539475 -2.494678 5.575266 0.8539475 -2.852659 5.575266 0.8539475 -3.261896 5.575266 0.8539475 -3.729748 5.575266 0.8539475 -4.264621 5.575266 0.8539475 -4.876131 5.575266 0.8539475 -5.575266 5.575266 0.8539475 -6.374593 5.575266 0.8539475 -0 6.374593 0.8539475 -0 6.374593 0.8539475 -0 6.374593 0.8539475 -0.002268731 6.374593 0.8539475 -0.07076883 6.374593 0.8539475 -0.1119241 6.374593 0.8539475 -0.1475052 6.374593 0.8539475 -0.1846606 6.374593 0.8539475 -0.2245119 6.374593 0.8539475 -0.2679612 6.374593 0.8539475 -0.3158431 6.374593 0.8539475 -0.3689944 6.374593 0.8539475 -0.4282948 6.374593 0.8539475 -0.494694 6.374593 0.8539475 -0.5692344 6.374593 0.8539475 -0.6530715 6.374593 0.8539475 -0.7474945 6.374593 0.8539475 -0.8539475 6.374593 0.8539475 -0.974052 6.374593 0.8539475 -1.113885 6.374593 0.8539475 -1.27456 6.374593 0.8539475 -1.458117 6.374593 0.8539475 -1.667858 6.374593 0.8539475 -1.907556 6.374593 0.8539475 -2.181521 6.374593 0.8539475 -2.494678 6.374593 0.8539475 -2.852659 6.374593 0.8539475 -3.261896 6.374593 0.8539475 -3.729748 6.374593 0.8539475 -4.264621 6.374593 0.8539475 -4.876131 6.374593 0.8539475 -5.575266 6.374593 0.8539475 -6.374593 6.374593 0.8539475 -0 0 0.974052 -0 0 0.974052 -0 0 0.974052 -0.002268731 0 0.974052 -0.07076883 0 0.974052 -0.1119241 0 0.974052 -0.1475052 0 0.974052 -0.1846606 0 0.974052 -0.2245119 0 0.974052 -0.2679612 0 0.974052 -0.3158431 0 0.974052 -0.3689944 0 0.974052 -0.4282948 0 0.974052 -0.494694 0 0.974052 -0.5692344 0 0.974052 -0.6530715 0 0.974052 -0.7474945 0 0.974052 -0.8539475 0 0.974052 -0.974052 0 0.974052 -1.113885 0 0.974052 -1.27456 0 0.974052 -1.458117 0 0.974052 -1.667858 0 0.974052 -1.907556 0 0.974052 -2.181521 0 0.974052 -2.494678 0 0.974052 -2.852659 0 0.974052 -3.261896 0 0.974052 -3.729748 0 0.974052 -4.264621 0 0.974052 -4.876131 0 0.974052 -5.575266 0 0.974052 -6.374593 0 0.974052 -0 0 0.974052 -0 0 0.974052 -0 0 0.974052 -0.002268731 0 0.974052 -0.07076883 0 0.974052 -0.1119241 0 0.974052 -0.1475052 0 0.974052 -0.1846606 0 0.974052 -0.2245119 0 0.974052 -0.2679612 0 0.974052 -0.3158431 0 0.974052 -0.3689944 0 0.974052 -0.4282948 0 0.974052 -0.494694 0 0.974052 -0.5692344 0 0.974052 -0.6530715 0 0.974052 -0.7474945 0 0.974052 -0.8539475 0 0.974052 -0.974052 0 0.974052 -1.113885 0 0.974052 -1.27456 0 0.974052 -1.458117 0 0.974052 -1.667858 0 0.974052 -1.907556 0 0.974052 -2.181521 0 0.974052 -2.494678 0 0.974052 -2.852659 0 0.974052 -3.261896 0 0.974052 -3.729748 0 0.974052 -4.264621 0 0.974052 -4.876131 0 0.974052 -5.575266 0 0.974052 -6.374593 0 0.974052 -0 0 0.974052 -0 0 0.974052 -0 0 0.974052 -0.002268731 0 0.974052 -0.07076883 0 0.974052 -0.1119241 0 0.974052 -0.1475052 0 0.974052 -0.1846606 0 0.974052 -0.2245119 0 0.974052 -0.2679612 0 0.974052 -0.3158431 0 0.974052 -0.3689944 0 0.974052 -0.4282948 0 0.974052 -0.494694 0 0.974052 -0.5692344 0 0.974052 -0.6530715 0 0.974052 -0.7474945 0 0.974052 -0.8539475 0 0.974052 -0.974052 0 0.974052 -1.113885 0 0.974052 -1.27456 0 0.974052 -1.458117 0 0.974052 -1.667858 0 0.974052 -1.907556 0 0.974052 -2.181521 0 0.974052 -2.494678 0 0.974052 -2.852659 0 0.974052 -3.261896 0 0.974052 -3.729748 0 0.974052 -4.264621 0 0.974052 -4.876131 0 0.974052 -5.575266 0 0.974052 -6.374593 0 0.974052 -0 0.002268731 0.974052 -0 0.002268731 0.974052 -0 0.002268731 0.974052 -0.002268731 0.002268731 0.974052 -0.07076883 0.002268731 0.974052 -0.1119241 0.002268731 0.974052 -0.1475052 0.002268731 0.974052 -0.1846606 0.002268731 0.974052 -0.2245119 0.002268731 0.974052 -0.2679612 0.002268731 0.974052 -0.3158431 0.002268731 0.974052 -0.3689944 0.002268731 0.974052 -0.4282948 0.002268731 0.974052 -0.494694 0.002268731 0.974052 -0.5692344 0.002268731 0.974052 -0.6530715 0.002268731 0.974052 -0.7474945 0.002268731 0.974052 -0.8539475 0.002268731 0.974052 -0.974052 0.002268731 0.974052 -1.113885 0.002268731 0.974052 -1.27456 0.002268731 0.974052 -1.458117 0.002268731 0.974052 -1.667858 0.002268731 0.974052 -1.907556 0.002268731 0.974052 -2.181521 0.002268731 0.974052 -2.494678 0.002268731 0.974052 -2.852659 0.002268731 0.974052 -3.261896 0.002268731 0.974052 -3.729748 0.002268731 0.974052 -4.264621 0.002268731 0.974052 -4.876131 0.002268731 0.974052 -5.575266 0.002268731 0.974052 -6.374593 0.002268731 0.974052 -0 0.07076883 0.974052 -0 0.07076883 0.974052 -0 0.07076883 0.974052 -0.002268731 0.07076883 0.974052 -0.07076883 0.07076883 0.974052 -0.1119241 0.07076883 0.974052 -0.1475052 0.07076883 0.974052 -0.1846606 0.07076883 0.974052 -0.2245119 0.07076883 0.974052 -0.2679612 0.07076883 0.974052 -0.3158431 0.07076883 0.974052 -0.3689944 0.07076883 0.974052 -0.4282948 0.07076883 0.974052 -0.494694 0.07076883 0.974052 -0.5692344 0.07076883 0.974052 -0.6530715 0.07076883 0.974052 -0.7474945 0.07076883 0.974052 -0.8539475 0.07076883 0.974052 -0.974052 0.07076883 0.974052 -1.113885 0.07076883 0.974052 -1.27456 0.07076883 0.974052 -1.458117 0.07076883 0.974052 -1.667858 0.07076883 0.974052 -1.907556 0.07076883 0.974052 -2.181521 0.07076883 0.974052 -2.494678 0.07076883 0.974052 -2.852659 0.07076883 0.974052 -3.261896 0.07076883 0.974052 -3.729748 0.07076883 0.974052 -4.264621 0.07076883 0.974052 -4.876131 0.07076883 0.974052 -5.575266 0.07076883 0.974052 -6.374593 0.07076883 0.974052 -0 0.1119241 0.974052 -0 0.1119241 0.974052 -0 0.1119241 0.974052 -0.002268731 0.1119241 0.974052 -0.07076883 0.1119241 0.974052 -0.1119241 0.1119241 0.974052 -0.1475052 0.1119241 0.974052 -0.1846606 0.1119241 0.974052 -0.2245119 0.1119241 0.974052 -0.2679612 0.1119241 0.974052 -0.3158431 0.1119241 0.974052 -0.3689944 0.1119241 0.974052 -0.4282948 0.1119241 0.974052 -0.494694 0.1119241 0.974052 -0.5692344 0.1119241 0.974052 -0.6530715 0.1119241 0.974052 -0.7474945 0.1119241 0.974052 -0.8539475 0.1119241 0.974052 -0.974052 0.1119241 0.974052 -1.113885 0.1119241 0.974052 -1.27456 0.1119241 0.974052 -1.458117 0.1119241 0.974052 -1.667858 0.1119241 0.974052 -1.907556 0.1119241 0.974052 -2.181521 0.1119241 0.974052 -2.494678 0.1119241 0.974052 -2.852659 0.1119241 0.974052 -3.261896 0.1119241 0.974052 -3.729748 0.1119241 0.974052 -4.264621 0.1119241 0.974052 -4.876131 0.1119241 0.974052 -5.575266 0.1119241 0.974052 -6.374593 0.1119241 0.974052 -0 0.1475052 0.974052 -0 0.1475052 0.974052 -0 0.1475052 0.974052 -0.002268731 0.1475052 0.974052 -0.07076883 0.1475052 0.974052 -0.1119241 0.1475052 0.974052 -0.1475052 0.1475052 0.974052 -0.1846606 0.1475052 0.974052 -0.2245119 0.1475052 0.974052 -0.2679612 0.1475052 0.974052 -0.3158431 0.1475052 0.974052 -0.3689944 0.1475052 0.974052 -0.4282948 0.1475052 0.974052 -0.494694 0.1475052 0.974052 -0.5692344 0.1475052 0.974052 -0.6530715 0.1475052 0.974052 -0.7474945 0.1475052 0.974052 -0.8539475 0.1475052 0.974052 -0.974052 0.1475052 0.974052 -1.113885 0.1475052 0.974052 -1.27456 0.1475052 0.974052 -1.458117 0.1475052 0.974052 -1.667858 0.1475052 0.974052 -1.907556 0.1475052 0.974052 -2.181521 0.1475052 0.974052 -2.494678 0.1475052 0.974052 -2.852659 0.1475052 0.974052 -3.261896 0.1475052 0.974052 -3.729748 0.1475052 0.974052 -4.264621 0.1475052 0.974052 -4.876131 0.1475052 0.974052 -5.575266 0.1475052 0.974052 -6.374593 0.1475052 0.974052 -0 0.1846606 0.974052 -0 0.1846606 0.974052 -0 0.1846606 0.974052 -0.002268731 0.1846606 0.974052 -0.07076883 0.1846606 0.974052 -0.1119241 0.1846606 0.974052 -0.1475052 0.1846606 0.974052 -0.1846606 0.1846606 0.974052 -0.2245119 0.1846606 0.974052 -0.2679612 0.1846606 0.974052 -0.3158431 0.1846606 0.974052 -0.3689944 0.1846606 0.974052 -0.4282948 0.1846606 0.974052 -0.494694 0.1846606 0.974052 -0.5692344 0.1846606 0.974052 -0.6530715 0.1846606 0.974052 -0.7474945 0.1846606 0.974052 -0.8539475 0.1846606 0.974052 -0.974052 0.1846606 0.974052 -1.113885 0.1846606 0.974052 -1.27456 0.1846606 0.974052 -1.458117 0.1846606 0.974052 -1.667858 0.1846606 0.974052 -1.907556 0.1846606 0.974052 -2.181521 0.1846606 0.974052 -2.494678 0.1846606 0.974052 -2.852659 0.1846606 0.974052 -3.261896 0.1846606 0.974052 -3.729748 0.1846606 0.974052 -4.264621 0.1846606 0.974052 -4.876131 0.1846606 0.974052 -5.575266 0.1846606 0.974052 -6.374593 0.1846606 0.974052 -0 0.2245119 0.974052 -0 0.2245119 0.974052 -0 0.2245119 0.974052 -0.002268731 0.2245119 0.974052 -0.07076883 0.2245119 0.974052 -0.1119241 0.2245119 0.974052 -0.1475052 0.2245119 0.974052 -0.1846606 0.2245119 0.974052 -0.2245119 0.2245119 0.974052 -0.2679612 0.2245119 0.974052 -0.3158431 0.2245119 0.974052 -0.3689944 0.2245119 0.974052 -0.4282948 0.2245119 0.974052 -0.494694 0.2245119 0.974052 -0.5692344 0.2245119 0.974052 -0.6530715 0.2245119 0.974052 -0.7474945 0.2245119 0.974052 -0.8539475 0.2245119 0.974052 -0.974052 0.2245119 0.974052 -1.113885 0.2245119 0.974052 -1.27456 0.2245119 0.974052 -1.458117 0.2245119 0.974052 -1.667858 0.2245119 0.974052 -1.907556 0.2245119 0.974052 -2.181521 0.2245119 0.974052 -2.494678 0.2245119 0.974052 -2.852659 0.2245119 0.974052 -3.261896 0.2245119 0.974052 -3.729748 0.2245119 0.974052 -4.264621 0.2245119 0.974052 -4.876131 0.2245119 0.974052 -5.575266 0.2245119 0.974052 -6.374593 0.2245119 0.974052 -0 0.2679612 0.974052 -0 0.2679612 0.974052 -0 0.2679612 0.974052 -0.002268731 0.2679612 0.974052 -0.07076883 0.2679612 0.974052 -0.1119241 0.2679612 0.974052 -0.1475052 0.2679612 0.974052 -0.1846606 0.2679612 0.974052 -0.2245119 0.2679612 0.974052 -0.2679612 0.2679612 0.974052 -0.3158431 0.2679612 0.974052 -0.3689944 0.2679612 0.974052 -0.4282948 0.2679612 0.974052 -0.494694 0.2679612 0.974052 -0.5692344 0.2679612 0.974052 -0.6530715 0.2679612 0.974052 -0.7474945 0.2679612 0.974052 -0.8539475 0.2679612 0.974052 -0.974052 0.2679612 0.974052 -1.113885 0.2679612 0.974052 -1.27456 0.2679612 0.974052 -1.458117 0.2679612 0.974052 -1.667858 0.2679612 0.974052 -1.907556 0.2679612 0.974052 -2.181521 0.2679612 0.974052 -2.494678 0.2679612 0.974052 -2.852659 0.2679612 0.974052 -3.261896 0.2679612 0.974052 -3.729748 0.2679612 0.974052 -4.264621 0.2679612 0.974052 -4.876131 0.2679612 0.974052 -5.575266 0.2679612 0.974052 -6.374593 0.2679612 0.974052 -0 0.3158431 0.974052 -0 0.3158431 0.974052 -0 0.3158431 0.974052 -0.002268731 0.3158431 0.974052 -0.07076883 0.3158431 0.974052 -0.1119241 0.3158431 0.974052 -0.1475052 0.3158431 0.974052 -0.1846606 0.3158431 0.974052 -0.2245119 0.3158431 0.974052 -0.2679612 0.3158431 0.974052 -0.3158431 0.3158431 0.974052 -0.3689944 0.3158431 0.974052 -0.4282948 0.3158431 0.974052 -0.494694 0.3158431 0.974052 -0.5692344 0.3158431 0.974052 -0.6530715 0.3158431 0.974052 -0.7474945 0.3158431 0.974052 -0.8539475 0.3158431 0.974052 -0.974052 0.3158431 0.974052 -1.113885 0.3158431 0.974052 -1.27456 0.3158431 0.974052 -1.458117 0.3158431 0.974052 -1.667858 0.3158431 0.974052 -1.907556 0.3158431 0.974052 -2.181521 0.3158431 0.974052 -2.494678 0.3158431 0.974052 -2.852659 0.3158431 0.974052 -3.261896 0.3158431 0.974052 -3.729748 0.3158431 0.974052 -4.264621 0.3158431 0.974052 -4.876131 0.3158431 0.974052 -5.575266 0.3158431 0.974052 -6.374593 0.3158431 0.974052 -0 0.3689944 0.974052 -0 0.3689944 0.974052 -0 0.3689944 0.974052 -0.002268731 0.3689944 0.974052 -0.07076883 0.3689944 0.974052 -0.1119241 0.3689944 0.974052 -0.1475052 0.3689944 0.974052 -0.1846606 0.3689944 0.974052 -0.2245119 0.3689944 0.974052 -0.2679612 0.3689944 0.974052 -0.3158431 0.3689944 0.974052 -0.3689944 0.3689944 0.974052 -0.4282948 0.3689944 0.974052 -0.494694 0.3689944 0.974052 -0.5692344 0.3689944 0.974052 -0.6530715 0.3689944 0.974052 -0.7474945 0.3689944 0.974052 -0.8539475 0.3689944 0.974052 -0.974052 0.3689944 0.974052 -1.113885 0.3689944 0.974052 -1.27456 0.3689944 0.974052 -1.458117 0.3689944 0.974052 -1.667858 0.3689944 0.974052 -1.907556 0.3689944 0.974052 -2.181521 0.3689944 0.974052 -2.494678 0.3689944 0.974052 -2.852659 0.3689944 0.974052 -3.261896 0.3689944 0.974052 -3.729748 0.3689944 0.974052 -4.264621 0.3689944 0.974052 -4.876131 0.3689944 0.974052 -5.575266 0.3689944 0.974052 -6.374593 0.3689944 0.974052 -0 0.4282948 0.974052 -0 0.4282948 0.974052 -0 0.4282948 0.974052 -0.002268731 0.4282948 0.974052 -0.07076883 0.4282948 0.974052 -0.1119241 0.4282948 0.974052 -0.1475052 0.4282948 0.974052 -0.1846606 0.4282948 0.974052 -0.2245119 0.4282948 0.974052 -0.2679612 0.4282948 0.974052 -0.3158431 0.4282948 0.974052 -0.3689944 0.4282948 0.974052 -0.4282948 0.4282948 0.974052 -0.494694 0.4282948 0.974052 -0.5692344 0.4282948 0.974052 -0.6530715 0.4282948 0.974052 -0.7474945 0.4282948 0.974052 -0.8539475 0.4282948 0.974052 -0.974052 0.4282948 0.974052 -1.113885 0.4282948 0.974052 -1.27456 0.4282948 0.974052 -1.458117 0.4282948 0.974052 -1.667858 0.4282948 0.974052 -1.907556 0.4282948 0.974052 -2.181521 0.4282948 0.974052 -2.494678 0.4282948 0.974052 -2.852659 0.4282948 0.974052 -3.261896 0.4282948 0.974052 -3.729748 0.4282948 0.974052 -4.264621 0.4282948 0.974052 -4.876131 0.4282948 0.974052 -5.575266 0.4282948 0.974052 -6.374593 0.4282948 0.974052 -0 0.494694 0.974052 -0 0.494694 0.974052 -0 0.494694 0.974052 -0.002268731 0.494694 0.974052 -0.07076883 0.494694 0.974052 -0.1119241 0.494694 0.974052 -0.1475052 0.494694 0.974052 -0.1846606 0.494694 0.974052 -0.2245119 0.494694 0.974052 -0.2679612 0.494694 0.974052 -0.3158431 0.494694 0.974052 -0.3689944 0.494694 0.974052 -0.4282948 0.494694 0.974052 -0.494694 0.494694 0.974052 -0.5692344 0.494694 0.974052 -0.6530715 0.494694 0.974052 -0.7474945 0.494694 0.974052 -0.8539475 0.494694 0.974052 -0.974052 0.494694 0.974052 -1.113885 0.494694 0.974052 -1.27456 0.494694 0.974052 -1.458117 0.494694 0.974052 -1.667858 0.494694 0.974052 -1.907556 0.494694 0.974052 -2.181521 0.494694 0.974052 -2.494678 0.494694 0.974052 -2.852659 0.494694 0.974052 -3.261896 0.494694 0.974052 -3.729748 0.494694 0.974052 -4.264621 0.494694 0.974052 -4.876131 0.494694 0.974052 -5.575266 0.494694 0.974052 -6.374593 0.494694 0.974052 -0 0.5692344 0.974052 -0 0.5692344 0.974052 -0 0.5692344 0.974052 -0.002268731 0.5692344 0.974052 -0.07076883 0.5692344 0.974052 -0.1119241 0.5692344 0.974052 -0.1475052 0.5692344 0.974052 -0.1846606 0.5692344 0.974052 -0.2245119 0.5692344 0.974052 -0.2679612 0.5692344 0.974052 -0.3158431 0.5692344 0.974052 -0.3689944 0.5692344 0.974052 -0.4282948 0.5692344 0.974052 -0.494694 0.5692344 0.974052 -0.5692344 0.5692344 0.974052 -0.6530715 0.5692344 0.974052 -0.7474945 0.5692344 0.974052 -0.8539475 0.5692344 0.974052 -0.974052 0.5692344 0.974052 -1.113885 0.5692344 0.974052 -1.27456 0.5692344 0.974052 -1.458117 0.5692344 0.974052 -1.667858 0.5692344 0.974052 -1.907556 0.5692344 0.974052 -2.181521 0.5692344 0.974052 -2.494678 0.5692344 0.974052 -2.852659 0.5692344 0.974052 -3.261896 0.5692344 0.974052 -3.729748 0.5692344 0.974052 -4.264621 0.5692344 0.974052 -4.876131 0.5692344 0.974052 -5.575266 0.5692344 0.974052 -6.374593 0.5692344 0.974052 -0 0.6530715 0.974052 -0 0.6530715 0.974052 -0 0.6530715 0.974052 -0.002268731 0.6530715 0.974052 -0.07076883 0.6530715 0.974052 -0.1119241 0.6530715 0.974052 -0.1475052 0.6530715 0.974052 -0.1846606 0.6530715 0.974052 -0.2245119 0.6530715 0.974052 -0.2679612 0.6530715 0.974052 -0.3158431 0.6530715 0.974052 -0.3689944 0.6530715 0.974052 -0.4282948 0.6530715 0.974052 -0.494694 0.6530715 0.974052 -0.5692344 0.6530715 0.974052 -0.6530715 0.6530715 0.974052 -0.7474945 0.6530715 0.974052 -0.8539475 0.6530715 0.974052 -0.974052 0.6530715 0.974052 -1.113885 0.6530715 0.974052 -1.27456 0.6530715 0.974052 -1.458117 0.6530715 0.974052 -1.667858 0.6530715 0.974052 -1.907556 0.6530715 0.974052 -2.181521 0.6530715 0.974052 -2.494678 0.6530715 0.974052 -2.852659 0.6530715 0.974052 -3.261896 0.6530715 0.974052 -3.729748 0.6530715 0.974052 -4.264621 0.6530715 0.974052 -4.876131 0.6530715 0.974052 -5.575266 0.6530715 0.974052 -6.374593 0.6530715 0.974052 -0 0.7474945 0.974052 -0 0.7474945 0.974052 -0 0.7474945 0.974052 -0.002268731 0.7474945 0.974052 -0.07076883 0.7474945 0.974052 -0.1119241 0.7474945 0.974052 -0.1475052 0.7474945 0.974052 -0.1846606 0.7474945 0.974052 -0.2245119 0.7474945 0.974052 -0.2679612 0.7474945 0.974052 -0.3158431 0.7474945 0.974052 -0.3689944 0.7474945 0.974052 -0.4282948 0.7474945 0.974052 -0.494694 0.7474945 0.974052 -0.5692344 0.7474945 0.974052 -0.6530715 0.7474945 0.974052 -0.7474945 0.7474945 0.974052 -0.8539475 0.7474945 0.974052 -0.974052 0.7474945 0.974052 -1.113885 0.7474945 0.974052 -1.27456 0.7474945 0.974052 -1.458117 0.7474945 0.974052 -1.667858 0.7474945 0.974052 -1.907556 0.7474945 0.974052 -2.181521 0.7474945 0.974052 -2.494678 0.7474945 0.974052 -2.852659 0.7474945 0.974052 -3.261896 0.7474945 0.974052 -3.729748 0.7474945 0.974052 -4.264621 0.7474945 0.974052 -4.876131 0.7474945 0.974052 -5.575266 0.7474945 0.974052 -6.374593 0.7474945 0.974052 -0 0.8539475 0.974052 -0 0.8539475 0.974052 -0 0.8539475 0.974052 -0.002268731 0.8539475 0.974052 -0.07076883 0.8539475 0.974052 -0.1119241 0.8539475 0.974052 -0.1475052 0.8539475 0.974052 -0.1846606 0.8539475 0.974052 -0.2245119 0.8539475 0.974052 -0.2679612 0.8539475 0.974052 -0.3158431 0.8539475 0.974052 -0.3689944 0.8539475 0.974052 -0.4282948 0.8539475 0.974052 -0.494694 0.8539475 0.974052 -0.5692344 0.8539475 0.974052 -0.6530715 0.8539475 0.974052 -0.7474945 0.8539475 0.974052 -0.8539475 0.8539475 0.974052 -0.974052 0.8539475 0.974052 -1.113885 0.8539475 0.974052 -1.27456 0.8539475 0.974052 -1.458117 0.8539475 0.974052 -1.667858 0.8539475 0.974052 -1.907556 0.8539475 0.974052 -2.181521 0.8539475 0.974052 -2.494678 0.8539475 0.974052 -2.852659 0.8539475 0.974052 -3.261896 0.8539475 0.974052 -3.729748 0.8539475 0.974052 -4.264621 0.8539475 0.974052 -4.876131 0.8539475 0.974052 -5.575266 0.8539475 0.974052 -6.374593 0.8539475 0.974052 -0 0.974052 0.974052 -0 0.974052 0.974052 -0 0.974052 0.974052 -0.002268731 0.974052 0.974052 -0.07076883 0.974052 0.974052 -0.1119241 0.974052 0.974052 -0.1475052 0.974052 0.974052 -0.1846606 0.974052 0.974052 -0.2245119 0.974052 0.974052 -0.2679612 0.974052 0.974052 -0.3158431 0.974052 0.974052 -0.3689944 0.974052 0.974052 -0.4282948 0.974052 0.974052 -0.494694 0.974052 0.974052 -0.5692344 0.974052 0.974052 -0.6530715 0.974052 0.974052 -0.7474945 0.974052 0.974052 -0.8539475 0.974052 0.974052 -0.974052 0.974052 0.974052 -1.113885 0.974052 0.974052 -1.27456 0.974052 0.974052 -1.458117 0.974052 0.974052 -1.667858 0.974052 0.974052 -1.907556 0.974052 0.974052 -2.181521 0.974052 0.974052 -2.494678 0.974052 0.974052 -2.852659 0.974052 0.974052 -3.261896 0.974052 0.974052 -3.729748 0.974052 0.974052 -4.264621 0.974052 0.974052 -4.876131 0.974052 0.974052 -5.575266 0.974052 0.974052 -6.374593 0.974052 0.974052 -0 1.113885 0.974052 -0 1.113885 0.974052 -0 1.113885 0.974052 -0.002268731 1.113885 0.974052 -0.07076883 1.113885 0.974052 -0.1119241 1.113885 0.974052 -0.1475052 1.113885 0.974052 -0.1846606 1.113885 0.974052 -0.2245119 1.113885 0.974052 -0.2679612 1.113885 0.974052 -0.3158431 1.113885 0.974052 -0.3689944 1.113885 0.974052 -0.4282948 1.113885 0.974052 -0.494694 1.113885 0.974052 -0.5692344 1.113885 0.974052 -0.6530715 1.113885 0.974052 -0.7474945 1.113885 0.974052 -0.8539475 1.113885 0.974052 -0.974052 1.113885 0.974052 -1.113885 1.113885 0.974052 -1.27456 1.113885 0.974052 -1.458117 1.113885 0.974052 -1.667858 1.113885 0.974052 -1.907556 1.113885 0.974052 -2.181521 1.113885 0.974052 -2.494678 1.113885 0.974052 -2.852659 1.113885 0.974052 -3.261896 1.113885 0.974052 -3.729748 1.113885 0.974052 -4.264621 1.113885 0.974052 -4.876131 1.113885 0.974052 -5.575266 1.113885 0.974052 -6.374593 1.113885 0.974052 -0 1.27456 0.974052 -0 1.27456 0.974052 -0 1.27456 0.974052 -0.002268731 1.27456 0.974052 -0.07076883 1.27456 0.974052 -0.1119241 1.27456 0.974052 -0.1475052 1.27456 0.974052 -0.1846606 1.27456 0.974052 -0.2245119 1.27456 0.974052 -0.2679612 1.27456 0.974052 -0.3158431 1.27456 0.974052 -0.3689944 1.27456 0.974052 -0.4282948 1.27456 0.974052 -0.494694 1.27456 0.974052 -0.5692344 1.27456 0.974052 -0.6530715 1.27456 0.974052 -0.7474945 1.27456 0.974052 -0.8539475 1.27456 0.974052 -0.974052 1.27456 0.974052 -1.113885 1.27456 0.974052 -1.27456 1.27456 0.974052 -1.458117 1.27456 0.974052 -1.667858 1.27456 0.974052 -1.907556 1.27456 0.974052 -2.181521 1.27456 0.974052 -2.494678 1.27456 0.974052 -2.852659 1.27456 0.974052 -3.261896 1.27456 0.974052 -3.729748 1.27456 0.974052 -4.264621 1.27456 0.974052 -4.876131 1.27456 0.974052 -5.575266 1.27456 0.974052 -6.374593 1.27456 0.974052 -0 1.458117 0.974052 -0 1.458117 0.974052 -0 1.458117 0.974052 -0.002268731 1.458117 0.974052 -0.07076883 1.458117 0.974052 -0.1119241 1.458117 0.974052 -0.1475052 1.458117 0.974052 -0.1846606 1.458117 0.974052 -0.2245119 1.458117 0.974052 -0.2679612 1.458117 0.974052 -0.3158431 1.458117 0.974052 -0.3689944 1.458117 0.974052 -0.4282948 1.458117 0.974052 -0.494694 1.458117 0.974052 -0.5692344 1.458117 0.974052 -0.6530715 1.458117 0.974052 -0.7474945 1.458117 0.974052 -0.8539475 1.458117 0.974052 -0.974052 1.458117 0.974052 -1.113885 1.458117 0.974052 -1.27456 1.458117 0.974052 -1.458117 1.458117 0.974052 -1.667858 1.458117 0.974052 -1.907556 1.458117 0.974052 -2.181521 1.458117 0.974052 -2.494678 1.458117 0.974052 -2.852659 1.458117 0.974052 -3.261896 1.458117 0.974052 -3.729748 1.458117 0.974052 -4.264621 1.458117 0.974052 -4.876131 1.458117 0.974052 -5.575266 1.458117 0.974052 -6.374593 1.458117 0.974052 -0 1.667858 0.974052 -0 1.667858 0.974052 -0 1.667858 0.974052 -0.002268731 1.667858 0.974052 -0.07076883 1.667858 0.974052 -0.1119241 1.667858 0.974052 -0.1475052 1.667858 0.974052 -0.1846606 1.667858 0.974052 -0.2245119 1.667858 0.974052 -0.2679612 1.667858 0.974052 -0.3158431 1.667858 0.974052 -0.3689944 1.667858 0.974052 -0.4282948 1.667858 0.974052 -0.494694 1.667858 0.974052 -0.5692344 1.667858 0.974052 -0.6530715 1.667858 0.974052 -0.7474945 1.667858 0.974052 -0.8539475 1.667858 0.974052 -0.974052 1.667858 0.974052 -1.113885 1.667858 0.974052 -1.27456 1.667858 0.974052 -1.458117 1.667858 0.974052 -1.667858 1.667858 0.974052 -1.907556 1.667858 0.974052 -2.181521 1.667858 0.974052 -2.494678 1.667858 0.974052 -2.852659 1.667858 0.974052 -3.261896 1.667858 0.974052 -3.729748 1.667858 0.974052 -4.264621 1.667858 0.974052 -4.876131 1.667858 0.974052 -5.575266 1.667858 0.974052 -6.374593 1.667858 0.974052 -0 1.907556 0.974052 -0 1.907556 0.974052 -0 1.907556 0.974052 -0.002268731 1.907556 0.974052 -0.07076883 1.907556 0.974052 -0.1119241 1.907556 0.974052 -0.1475052 1.907556 0.974052 -0.1846606 1.907556 0.974052 -0.2245119 1.907556 0.974052 -0.2679612 1.907556 0.974052 -0.3158431 1.907556 0.974052 -0.3689944 1.907556 0.974052 -0.4282948 1.907556 0.974052 -0.494694 1.907556 0.974052 -0.5692344 1.907556 0.974052 -0.6530715 1.907556 0.974052 -0.7474945 1.907556 0.974052 -0.8539475 1.907556 0.974052 -0.974052 1.907556 0.974052 -1.113885 1.907556 0.974052 -1.27456 1.907556 0.974052 -1.458117 1.907556 0.974052 -1.667858 1.907556 0.974052 -1.907556 1.907556 0.974052 -2.181521 1.907556 0.974052 -2.494678 1.907556 0.974052 -2.852659 1.907556 0.974052 -3.261896 1.907556 0.974052 -3.729748 1.907556 0.974052 -4.264621 1.907556 0.974052 -4.876131 1.907556 0.974052 -5.575266 1.907556 0.974052 -6.374593 1.907556 0.974052 -0 2.181521 0.974052 -0 2.181521 0.974052 -0 2.181521 0.974052 -0.002268731 2.181521 0.974052 -0.07076883 2.181521 0.974052 -0.1119241 2.181521 0.974052 -0.1475052 2.181521 0.974052 -0.1846606 2.181521 0.974052 -0.2245119 2.181521 0.974052 -0.2679612 2.181521 0.974052 -0.3158431 2.181521 0.974052 -0.3689944 2.181521 0.974052 -0.4282948 2.181521 0.974052 -0.494694 2.181521 0.974052 -0.5692344 2.181521 0.974052 -0.6530715 2.181521 0.974052 -0.7474945 2.181521 0.974052 -0.8539475 2.181521 0.974052 -0.974052 2.181521 0.974052 -1.113885 2.181521 0.974052 -1.27456 2.181521 0.974052 -1.458117 2.181521 0.974052 -1.667858 2.181521 0.974052 -1.907556 2.181521 0.974052 -2.181521 2.181521 0.974052 -2.494678 2.181521 0.974052 -2.852659 2.181521 0.974052 -3.261896 2.181521 0.974052 -3.729748 2.181521 0.974052 -4.264621 2.181521 0.974052 -4.876131 2.181521 0.974052 -5.575266 2.181521 0.974052 -6.374593 2.181521 0.974052 -0 2.494678 0.974052 -0 2.494678 0.974052 -0 2.494678 0.974052 -0.002268731 2.494678 0.974052 -0.07076883 2.494678 0.974052 -0.1119241 2.494678 0.974052 -0.1475052 2.494678 0.974052 -0.1846606 2.494678 0.974052 -0.2245119 2.494678 0.974052 -0.2679612 2.494678 0.974052 -0.3158431 2.494678 0.974052 -0.3689944 2.494678 0.974052 -0.4282948 2.494678 0.974052 -0.494694 2.494678 0.974052 -0.5692344 2.494678 0.974052 -0.6530715 2.494678 0.974052 -0.7474945 2.494678 0.974052 -0.8539475 2.494678 0.974052 -0.974052 2.494678 0.974052 -1.113885 2.494678 0.974052 -1.27456 2.494678 0.974052 -1.458117 2.494678 0.974052 -1.667858 2.494678 0.974052 -1.907556 2.494678 0.974052 -2.181521 2.494678 0.974052 -2.494678 2.494678 0.974052 -2.852659 2.494678 0.974052 -3.261896 2.494678 0.974052 -3.729748 2.494678 0.974052 -4.264621 2.494678 0.974052 -4.876131 2.494678 0.974052 -5.575266 2.494678 0.974052 -6.374593 2.494678 0.974052 -0 2.852659 0.974052 -0 2.852659 0.974052 -0 2.852659 0.974052 -0.002268731 2.852659 0.974052 -0.07076883 2.852659 0.974052 -0.1119241 2.852659 0.974052 -0.1475052 2.852659 0.974052 -0.1846606 2.852659 0.974052 -0.2245119 2.852659 0.974052 -0.2679612 2.852659 0.974052 -0.3158431 2.852659 0.974052 -0.3689944 2.852659 0.974052 -0.4282948 2.852659 0.974052 -0.494694 2.852659 0.974052 -0.5692344 2.852659 0.974052 -0.6530715 2.852659 0.974052 -0.7474945 2.852659 0.974052 -0.8539475 2.852659 0.974052 -0.974052 2.852659 0.974052 -1.113885 2.852659 0.974052 -1.27456 2.852659 0.974052 -1.458117 2.852659 0.974052 -1.667858 2.852659 0.974052 -1.907556 2.852659 0.974052 -2.181521 2.852659 0.974052 -2.494678 2.852659 0.974052 -2.852659 2.852659 0.974052 -3.261896 2.852659 0.974052 -3.729748 2.852659 0.974052 -4.264621 2.852659 0.974052 -4.876131 2.852659 0.974052 -5.575266 2.852659 0.974052 -6.374593 2.852659 0.974052 -0 3.261896 0.974052 -0 3.261896 0.974052 -0 3.261896 0.974052 -0.002268731 3.261896 0.974052 -0.07076883 3.261896 0.974052 -0.1119241 3.261896 0.974052 -0.1475052 3.261896 0.974052 -0.1846606 3.261896 0.974052 -0.2245119 3.261896 0.974052 -0.2679612 3.261896 0.974052 -0.3158431 3.261896 0.974052 -0.3689944 3.261896 0.974052 -0.4282948 3.261896 0.974052 -0.494694 3.261896 0.974052 -0.5692344 3.261896 0.974052 -0.6530715 3.261896 0.974052 -0.7474945 3.261896 0.974052 -0.8539475 3.261896 0.974052 -0.974052 3.261896 0.974052 -1.113885 3.261896 0.974052 -1.27456 3.261896 0.974052 -1.458117 3.261896 0.974052 -1.667858 3.261896 0.974052 -1.907556 3.261896 0.974052 -2.181521 3.261896 0.974052 -2.494678 3.261896 0.974052 -2.852659 3.261896 0.974052 -3.261896 3.261896 0.974052 -3.729748 3.261896 0.974052 -4.264621 3.261896 0.974052 -4.876131 3.261896 0.974052 -5.575266 3.261896 0.974052 -6.374593 3.261896 0.974052 -0 3.729748 0.974052 -0 3.729748 0.974052 -0 3.729748 0.974052 -0.002268731 3.729748 0.974052 -0.07076883 3.729748 0.974052 -0.1119241 3.729748 0.974052 -0.1475052 3.729748 0.974052 -0.1846606 3.729748 0.974052 -0.2245119 3.729748 0.974052 -0.2679612 3.729748 0.974052 -0.3158431 3.729748 0.974052 -0.3689944 3.729748 0.974052 -0.4282948 3.729748 0.974052 -0.494694 3.729748 0.974052 -0.5692344 3.729748 0.974052 -0.6530715 3.729748 0.974052 -0.7474945 3.729748 0.974052 -0.8539475 3.729748 0.974052 -0.974052 3.729748 0.974052 -1.113885 3.729748 0.974052 -1.27456 3.729748 0.974052 -1.458117 3.729748 0.974052 -1.667858 3.729748 0.974052 -1.907556 3.729748 0.974052 -2.181521 3.729748 0.974052 -2.494678 3.729748 0.974052 -2.852659 3.729748 0.974052 -3.261896 3.729748 0.974052 -3.729748 3.729748 0.974052 -4.264621 3.729748 0.974052 -4.876131 3.729748 0.974052 -5.575266 3.729748 0.974052 -6.374593 3.729748 0.974052 -0 4.264621 0.974052 -0 4.264621 0.974052 -0 4.264621 0.974052 -0.002268731 4.264621 0.974052 -0.07076883 4.264621 0.974052 -0.1119241 4.264621 0.974052 -0.1475052 4.264621 0.974052 -0.1846606 4.264621 0.974052 -0.2245119 4.264621 0.974052 -0.2679612 4.264621 0.974052 -0.3158431 4.264621 0.974052 -0.3689944 4.264621 0.974052 -0.4282948 4.264621 0.974052 -0.494694 4.264621 0.974052 -0.5692344 4.264621 0.974052 -0.6530715 4.264621 0.974052 -0.7474945 4.264621 0.974052 -0.8539475 4.264621 0.974052 -0.974052 4.264621 0.974052 -1.113885 4.264621 0.974052 -1.27456 4.264621 0.974052 -1.458117 4.264621 0.974052 -1.667858 4.264621 0.974052 -1.907556 4.264621 0.974052 -2.181521 4.264621 0.974052 -2.494678 4.264621 0.974052 -2.852659 4.264621 0.974052 -3.261896 4.264621 0.974052 -3.729748 4.264621 0.974052 -4.264621 4.264621 0.974052 -4.876131 4.264621 0.974052 -5.575266 4.264621 0.974052 -6.374593 4.264621 0.974052 -0 4.876131 0.974052 -0 4.876131 0.974052 -0 4.876131 0.974052 -0.002268731 4.876131 0.974052 -0.07076883 4.876131 0.974052 -0.1119241 4.876131 0.974052 -0.1475052 4.876131 0.974052 -0.1846606 4.876131 0.974052 -0.2245119 4.876131 0.974052 -0.2679612 4.876131 0.974052 -0.3158431 4.876131 0.974052 -0.3689944 4.876131 0.974052 -0.4282948 4.876131 0.974052 -0.494694 4.876131 0.974052 -0.5692344 4.876131 0.974052 -0.6530715 4.876131 0.974052 -0.7474945 4.876131 0.974052 -0.8539475 4.876131 0.974052 -0.974052 4.876131 0.974052 -1.113885 4.876131 0.974052 -1.27456 4.876131 0.974052 -1.458117 4.876131 0.974052 -1.667858 4.876131 0.974052 -1.907556 4.876131 0.974052 -2.181521 4.876131 0.974052 -2.494678 4.876131 0.974052 -2.852659 4.876131 0.974052 -3.261896 4.876131 0.974052 -3.729748 4.876131 0.974052 -4.264621 4.876131 0.974052 -4.876131 4.876131 0.974052 -5.575266 4.876131 0.974052 -6.374593 4.876131 0.974052 -0 5.575266 0.974052 -0 5.575266 0.974052 -0 5.575266 0.974052 -0.002268731 5.575266 0.974052 -0.07076883 5.575266 0.974052 -0.1119241 5.575266 0.974052 -0.1475052 5.575266 0.974052 -0.1846606 5.575266 0.974052 -0.2245119 5.575266 0.974052 -0.2679612 5.575266 0.974052 -0.3158431 5.575266 0.974052 -0.3689944 5.575266 0.974052 -0.4282948 5.575266 0.974052 -0.494694 5.575266 0.974052 -0.5692344 5.575266 0.974052 -0.6530715 5.575266 0.974052 -0.7474945 5.575266 0.974052 -0.8539475 5.575266 0.974052 -0.974052 5.575266 0.974052 -1.113885 5.575266 0.974052 -1.27456 5.575266 0.974052 -1.458117 5.575266 0.974052 -1.667858 5.575266 0.974052 -1.907556 5.575266 0.974052 -2.181521 5.575266 0.974052 -2.494678 5.575266 0.974052 -2.852659 5.575266 0.974052 -3.261896 5.575266 0.974052 -3.729748 5.575266 0.974052 -4.264621 5.575266 0.974052 -4.876131 5.575266 0.974052 -5.575266 5.575266 0.974052 -6.374593 5.575266 0.974052 -0 6.374593 0.974052 -0 6.374593 0.974052 -0 6.374593 0.974052 -0.002268731 6.374593 0.974052 -0.07076883 6.374593 0.974052 -0.1119241 6.374593 0.974052 -0.1475052 6.374593 0.974052 -0.1846606 6.374593 0.974052 -0.2245119 6.374593 0.974052 -0.2679612 6.374593 0.974052 -0.3158431 6.374593 0.974052 -0.3689944 6.374593 0.974052 -0.4282948 6.374593 0.974052 -0.494694 6.374593 0.974052 -0.5692344 6.374593 0.974052 -0.6530715 6.374593 0.974052 -0.7474945 6.374593 0.974052 -0.8539475 6.374593 0.974052 -0.974052 6.374593 0.974052 -1.113885 6.374593 0.974052 -1.27456 6.374593 0.974052 -1.458117 6.374593 0.974052 -1.667858 6.374593 0.974052 -1.907556 6.374593 0.974052 -2.181521 6.374593 0.974052 -2.494678 6.374593 0.974052 -2.852659 6.374593 0.974052 -3.261896 6.374593 0.974052 -3.729748 6.374593 0.974052 -4.264621 6.374593 0.974052 -4.876131 6.374593 0.974052 -5.575266 6.374593 0.974052 -6.374593 6.374593 0.974052 -0 0 1.113885 -0 0 1.113885 -0 0 1.113885 -0.002268731 0 1.113885 -0.07076883 0 1.113885 -0.1119241 0 1.113885 -0.1475052 0 1.113885 -0.1846606 0 1.113885 -0.2245119 0 1.113885 -0.2679612 0 1.113885 -0.3158431 0 1.113885 -0.3689944 0 1.113885 -0.4282948 0 1.113885 -0.494694 0 1.113885 -0.5692344 0 1.113885 -0.6530715 0 1.113885 -0.7474945 0 1.113885 -0.8539475 0 1.113885 -0.974052 0 1.113885 -1.113885 0 1.113885 -1.27456 0 1.113885 -1.458117 0 1.113885 -1.667858 0 1.113885 -1.907556 0 1.113885 -2.181521 0 1.113885 -2.494678 0 1.113885 -2.852659 0 1.113885 -3.261896 0 1.113885 -3.729748 0 1.113885 -4.264621 0 1.113885 -4.876131 0 1.113885 -5.575266 0 1.113885 -6.374593 0 1.113885 -0 0 1.113885 -0 0 1.113885 -0 0 1.113885 -0.002268731 0 1.113885 -0.07076883 0 1.113885 -0.1119241 0 1.113885 -0.1475052 0 1.113885 -0.1846606 0 1.113885 -0.2245119 0 1.113885 -0.2679612 0 1.113885 -0.3158431 0 1.113885 -0.3689944 0 1.113885 -0.4282948 0 1.113885 -0.494694 0 1.113885 -0.5692344 0 1.113885 -0.6530715 0 1.113885 -0.7474945 0 1.113885 -0.8539475 0 1.113885 -0.974052 0 1.113885 -1.113885 0 1.113885 -1.27456 0 1.113885 -1.458117 0 1.113885 -1.667858 0 1.113885 -1.907556 0 1.113885 -2.181521 0 1.113885 -2.494678 0 1.113885 -2.852659 0 1.113885 -3.261896 0 1.113885 -3.729748 0 1.113885 -4.264621 0 1.113885 -4.876131 0 1.113885 -5.575266 0 1.113885 -6.374593 0 1.113885 -0 0 1.113885 -0 0 1.113885 -0 0 1.113885 -0.002268731 0 1.113885 -0.07076883 0 1.113885 -0.1119241 0 1.113885 -0.1475052 0 1.113885 -0.1846606 0 1.113885 -0.2245119 0 1.113885 -0.2679612 0 1.113885 -0.3158431 0 1.113885 -0.3689944 0 1.113885 -0.4282948 0 1.113885 -0.494694 0 1.113885 -0.5692344 0 1.113885 -0.6530715 0 1.113885 -0.7474945 0 1.113885 -0.8539475 0 1.113885 -0.974052 0 1.113885 -1.113885 0 1.113885 -1.27456 0 1.113885 -1.458117 0 1.113885 -1.667858 0 1.113885 -1.907556 0 1.113885 -2.181521 0 1.113885 -2.494678 0 1.113885 -2.852659 0 1.113885 -3.261896 0 1.113885 -3.729748 0 1.113885 -4.264621 0 1.113885 -4.876131 0 1.113885 -5.575266 0 1.113885 -6.374593 0 1.113885 -0 0.002268731 1.113885 -0 0.002268731 1.113885 -0 0.002268731 1.113885 -0.002268731 0.002268731 1.113885 -0.07076883 0.002268731 1.113885 -0.1119241 0.002268731 1.113885 -0.1475052 0.002268731 1.113885 -0.1846606 0.002268731 1.113885 -0.2245119 0.002268731 1.113885 -0.2679612 0.002268731 1.113885 -0.3158431 0.002268731 1.113885 -0.3689944 0.002268731 1.113885 -0.4282948 0.002268731 1.113885 -0.494694 0.002268731 1.113885 -0.5692344 0.002268731 1.113885 -0.6530715 0.002268731 1.113885 -0.7474945 0.002268731 1.113885 -0.8539475 0.002268731 1.113885 -0.974052 0.002268731 1.113885 -1.113885 0.002268731 1.113885 -1.27456 0.002268731 1.113885 -1.458117 0.002268731 1.113885 -1.667858 0.002268731 1.113885 -1.907556 0.002268731 1.113885 -2.181521 0.002268731 1.113885 -2.494678 0.002268731 1.113885 -2.852659 0.002268731 1.113885 -3.261896 0.002268731 1.113885 -3.729748 0.002268731 1.113885 -4.264621 0.002268731 1.113885 -4.876131 0.002268731 1.113885 -5.575266 0.002268731 1.113885 -6.374593 0.002268731 1.113885 -0 0.07076883 1.113885 -0 0.07076883 1.113885 -0 0.07076883 1.113885 -0.002268731 0.07076883 1.113885 -0.07076883 0.07076883 1.113885 -0.1119241 0.07076883 1.113885 -0.1475052 0.07076883 1.113885 -0.1846606 0.07076883 1.113885 -0.2245119 0.07076883 1.113885 -0.2679612 0.07076883 1.113885 -0.3158431 0.07076883 1.113885 -0.3689944 0.07076883 1.113885 -0.4282948 0.07076883 1.113885 -0.494694 0.07076883 1.113885 -0.5692344 0.07076883 1.113885 -0.6530715 0.07076883 1.113885 -0.7474945 0.07076883 1.113885 -0.8539475 0.07076883 1.113885 -0.974052 0.07076883 1.113885 -1.113885 0.07076883 1.113885 -1.27456 0.07076883 1.113885 -1.458117 0.07076883 1.113885 -1.667858 0.07076883 1.113885 -1.907556 0.07076883 1.113885 -2.181521 0.07076883 1.113885 -2.494678 0.07076883 1.113885 -2.852659 0.07076883 1.113885 -3.261896 0.07076883 1.113885 -3.729748 0.07076883 1.113885 -4.264621 0.07076883 1.113885 -4.876131 0.07076883 1.113885 -5.575266 0.07076883 1.113885 -6.374593 0.07076883 1.113885 -0 0.1119241 1.113885 -0 0.1119241 1.113885 -0 0.1119241 1.113885 -0.002268731 0.1119241 1.113885 -0.07076883 0.1119241 1.113885 -0.1119241 0.1119241 1.113885 -0.1475052 0.1119241 1.113885 -0.1846606 0.1119241 1.113885 -0.2245119 0.1119241 1.113885 -0.2679612 0.1119241 1.113885 -0.3158431 0.1119241 1.113885 -0.3689944 0.1119241 1.113885 -0.4282948 0.1119241 1.113885 -0.494694 0.1119241 1.113885 -0.5692344 0.1119241 1.113885 -0.6530715 0.1119241 1.113885 -0.7474945 0.1119241 1.113885 -0.8539475 0.1119241 1.113885 -0.974052 0.1119241 1.113885 -1.113885 0.1119241 1.113885 -1.27456 0.1119241 1.113885 -1.458117 0.1119241 1.113885 -1.667858 0.1119241 1.113885 -1.907556 0.1119241 1.113885 -2.181521 0.1119241 1.113885 -2.494678 0.1119241 1.113885 -2.852659 0.1119241 1.113885 -3.261896 0.1119241 1.113885 -3.729748 0.1119241 1.113885 -4.264621 0.1119241 1.113885 -4.876131 0.1119241 1.113885 -5.575266 0.1119241 1.113885 -6.374593 0.1119241 1.113885 -0 0.1475052 1.113885 -0 0.1475052 1.113885 -0 0.1475052 1.113885 -0.002268731 0.1475052 1.113885 -0.07076883 0.1475052 1.113885 -0.1119241 0.1475052 1.113885 -0.1475052 0.1475052 1.113885 -0.1846606 0.1475052 1.113885 -0.2245119 0.1475052 1.113885 -0.2679612 0.1475052 1.113885 -0.3158431 0.1475052 1.113885 -0.3689944 0.1475052 1.113885 -0.4282948 0.1475052 1.113885 -0.494694 0.1475052 1.113885 -0.5692344 0.1475052 1.113885 -0.6530715 0.1475052 1.113885 -0.7474945 0.1475052 1.113885 -0.8539475 0.1475052 1.113885 -0.974052 0.1475052 1.113885 -1.113885 0.1475052 1.113885 -1.27456 0.1475052 1.113885 -1.458117 0.1475052 1.113885 -1.667858 0.1475052 1.113885 -1.907556 0.1475052 1.113885 -2.181521 0.1475052 1.113885 -2.494678 0.1475052 1.113885 -2.852659 0.1475052 1.113885 -3.261896 0.1475052 1.113885 -3.729748 0.1475052 1.113885 -4.264621 0.1475052 1.113885 -4.876131 0.1475052 1.113885 -5.575266 0.1475052 1.113885 -6.374593 0.1475052 1.113885 -0 0.1846606 1.113885 -0 0.1846606 1.113885 -0 0.1846606 1.113885 -0.002268731 0.1846606 1.113885 -0.07076883 0.1846606 1.113885 -0.1119241 0.1846606 1.113885 -0.1475052 0.1846606 1.113885 -0.1846606 0.1846606 1.113885 -0.2245119 0.1846606 1.113885 -0.2679612 0.1846606 1.113885 -0.3158431 0.1846606 1.113885 -0.3689944 0.1846606 1.113885 -0.4282948 0.1846606 1.113885 -0.494694 0.1846606 1.113885 -0.5692344 0.1846606 1.113885 -0.6530715 0.1846606 1.113885 -0.7474945 0.1846606 1.113885 -0.8539475 0.1846606 1.113885 -0.974052 0.1846606 1.113885 -1.113885 0.1846606 1.113885 -1.27456 0.1846606 1.113885 -1.458117 0.1846606 1.113885 -1.667858 0.1846606 1.113885 -1.907556 0.1846606 1.113885 -2.181521 0.1846606 1.113885 -2.494678 0.1846606 1.113885 -2.852659 0.1846606 1.113885 -3.261896 0.1846606 1.113885 -3.729748 0.1846606 1.113885 -4.264621 0.1846606 1.113885 -4.876131 0.1846606 1.113885 -5.575266 0.1846606 1.113885 -6.374593 0.1846606 1.113885 -0 0.2245119 1.113885 -0 0.2245119 1.113885 -0 0.2245119 1.113885 -0.002268731 0.2245119 1.113885 -0.07076883 0.2245119 1.113885 -0.1119241 0.2245119 1.113885 -0.1475052 0.2245119 1.113885 -0.1846606 0.2245119 1.113885 -0.2245119 0.2245119 1.113885 -0.2679612 0.2245119 1.113885 -0.3158431 0.2245119 1.113885 -0.3689944 0.2245119 1.113885 -0.4282948 0.2245119 1.113885 -0.494694 0.2245119 1.113885 -0.5692344 0.2245119 1.113885 -0.6530715 0.2245119 1.113885 -0.7474945 0.2245119 1.113885 -0.8539475 0.2245119 1.113885 -0.974052 0.2245119 1.113885 -1.113885 0.2245119 1.113885 -1.27456 0.2245119 1.113885 -1.458117 0.2245119 1.113885 -1.667858 0.2245119 1.113885 -1.907556 0.2245119 1.113885 -2.181521 0.2245119 1.113885 -2.494678 0.2245119 1.113885 -2.852659 0.2245119 1.113885 -3.261896 0.2245119 1.113885 -3.729748 0.2245119 1.113885 -4.264621 0.2245119 1.113885 -4.876131 0.2245119 1.113885 -5.575266 0.2245119 1.113885 -6.374593 0.2245119 1.113885 -0 0.2679612 1.113885 -0 0.2679612 1.113885 -0 0.2679612 1.113885 -0.002268731 0.2679612 1.113885 -0.07076883 0.2679612 1.113885 -0.1119241 0.2679612 1.113885 -0.1475052 0.2679612 1.113885 -0.1846606 0.2679612 1.113885 -0.2245119 0.2679612 1.113885 -0.2679612 0.2679612 1.113885 -0.3158431 0.2679612 1.113885 -0.3689944 0.2679612 1.113885 -0.4282948 0.2679612 1.113885 -0.494694 0.2679612 1.113885 -0.5692344 0.2679612 1.113885 -0.6530715 0.2679612 1.113885 -0.7474945 0.2679612 1.113885 -0.8539475 0.2679612 1.113885 -0.974052 0.2679612 1.113885 -1.113885 0.2679612 1.113885 -1.27456 0.2679612 1.113885 -1.458117 0.2679612 1.113885 -1.667858 0.2679612 1.113885 -1.907556 0.2679612 1.113885 -2.181521 0.2679612 1.113885 -2.494678 0.2679612 1.113885 -2.852659 0.2679612 1.113885 -3.261896 0.2679612 1.113885 -3.729748 0.2679612 1.113885 -4.264621 0.2679612 1.113885 -4.876131 0.2679612 1.113885 -5.575266 0.2679612 1.113885 -6.374593 0.2679612 1.113885 -0 0.3158431 1.113885 -0 0.3158431 1.113885 -0 0.3158431 1.113885 -0.002268731 0.3158431 1.113885 -0.07076883 0.3158431 1.113885 -0.1119241 0.3158431 1.113885 -0.1475052 0.3158431 1.113885 -0.1846606 0.3158431 1.113885 -0.2245119 0.3158431 1.113885 -0.2679612 0.3158431 1.113885 -0.3158431 0.3158431 1.113885 -0.3689944 0.3158431 1.113885 -0.4282948 0.3158431 1.113885 -0.494694 0.3158431 1.113885 -0.5692344 0.3158431 1.113885 -0.6530715 0.3158431 1.113885 -0.7474945 0.3158431 1.113885 -0.8539475 0.3158431 1.113885 -0.974052 0.3158431 1.113885 -1.113885 0.3158431 1.113885 -1.27456 0.3158431 1.113885 -1.458117 0.3158431 1.113885 -1.667858 0.3158431 1.113885 -1.907556 0.3158431 1.113885 -2.181521 0.3158431 1.113885 -2.494678 0.3158431 1.113885 -2.852659 0.3158431 1.113885 -3.261896 0.3158431 1.113885 -3.729748 0.3158431 1.113885 -4.264621 0.3158431 1.113885 -4.876131 0.3158431 1.113885 -5.575266 0.3158431 1.113885 -6.374593 0.3158431 1.113885 -0 0.3689944 1.113885 -0 0.3689944 1.113885 -0 0.3689944 1.113885 -0.002268731 0.3689944 1.113885 -0.07076883 0.3689944 1.113885 -0.1119241 0.3689944 1.113885 -0.1475052 0.3689944 1.113885 -0.1846606 0.3689944 1.113885 -0.2245119 0.3689944 1.113885 -0.2679612 0.3689944 1.113885 -0.3158431 0.3689944 1.113885 -0.3689944 0.3689944 1.113885 -0.4282948 0.3689944 1.113885 -0.494694 0.3689944 1.113885 -0.5692344 0.3689944 1.113885 -0.6530715 0.3689944 1.113885 -0.7474945 0.3689944 1.113885 -0.8539475 0.3689944 1.113885 -0.974052 0.3689944 1.113885 -1.113885 0.3689944 1.113885 -1.27456 0.3689944 1.113885 -1.458117 0.3689944 1.113885 -1.667858 0.3689944 1.113885 -1.907556 0.3689944 1.113885 -2.181521 0.3689944 1.113885 -2.494678 0.3689944 1.113885 -2.852659 0.3689944 1.113885 -3.261896 0.3689944 1.113885 -3.729748 0.3689944 1.113885 -4.264621 0.3689944 1.113885 -4.876131 0.3689944 1.113885 -5.575266 0.3689944 1.113885 -6.374593 0.3689944 1.113885 -0 0.4282948 1.113885 -0 0.4282948 1.113885 -0 0.4282948 1.113885 -0.002268731 0.4282948 1.113885 -0.07076883 0.4282948 1.113885 -0.1119241 0.4282948 1.113885 -0.1475052 0.4282948 1.113885 -0.1846606 0.4282948 1.113885 -0.2245119 0.4282948 1.113885 -0.2679612 0.4282948 1.113885 -0.3158431 0.4282948 1.113885 -0.3689944 0.4282948 1.113885 -0.4282948 0.4282948 1.113885 -0.494694 0.4282948 1.113885 -0.5692344 0.4282948 1.113885 -0.6530715 0.4282948 1.113885 -0.7474945 0.4282948 1.113885 -0.8539475 0.4282948 1.113885 -0.974052 0.4282948 1.113885 -1.113885 0.4282948 1.113885 -1.27456 0.4282948 1.113885 -1.458117 0.4282948 1.113885 -1.667858 0.4282948 1.113885 -1.907556 0.4282948 1.113885 -2.181521 0.4282948 1.113885 -2.494678 0.4282948 1.113885 -2.852659 0.4282948 1.113885 -3.261896 0.4282948 1.113885 -3.729748 0.4282948 1.113885 -4.264621 0.4282948 1.113885 -4.876131 0.4282948 1.113885 -5.575266 0.4282948 1.113885 -6.374593 0.4282948 1.113885 -0 0.494694 1.113885 -0 0.494694 1.113885 -0 0.494694 1.113885 -0.002268731 0.494694 1.113885 -0.07076883 0.494694 1.113885 -0.1119241 0.494694 1.113885 -0.1475052 0.494694 1.113885 -0.1846606 0.494694 1.113885 -0.2245119 0.494694 1.113885 -0.2679612 0.494694 1.113885 -0.3158431 0.494694 1.113885 -0.3689944 0.494694 1.113885 -0.4282948 0.494694 1.113885 -0.494694 0.494694 1.113885 -0.5692344 0.494694 1.113885 -0.6530715 0.494694 1.113885 -0.7474945 0.494694 1.113885 -0.8539475 0.494694 1.113885 -0.974052 0.494694 1.113885 -1.113885 0.494694 1.113885 -1.27456 0.494694 1.113885 -1.458117 0.494694 1.113885 -1.667858 0.494694 1.113885 -1.907556 0.494694 1.113885 -2.181521 0.494694 1.113885 -2.494678 0.494694 1.113885 -2.852659 0.494694 1.113885 -3.261896 0.494694 1.113885 -3.729748 0.494694 1.113885 -4.264621 0.494694 1.113885 -4.876131 0.494694 1.113885 -5.575266 0.494694 1.113885 -6.374593 0.494694 1.113885 -0 0.5692344 1.113885 -0 0.5692344 1.113885 -0 0.5692344 1.113885 -0.002268731 0.5692344 1.113885 -0.07076883 0.5692344 1.113885 -0.1119241 0.5692344 1.113885 -0.1475052 0.5692344 1.113885 -0.1846606 0.5692344 1.113885 -0.2245119 0.5692344 1.113885 -0.2679612 0.5692344 1.113885 -0.3158431 0.5692344 1.113885 -0.3689944 0.5692344 1.113885 -0.4282948 0.5692344 1.113885 -0.494694 0.5692344 1.113885 -0.5692344 0.5692344 1.113885 -0.6530715 0.5692344 1.113885 -0.7474945 0.5692344 1.113885 -0.8539475 0.5692344 1.113885 -0.974052 0.5692344 1.113885 -1.113885 0.5692344 1.113885 -1.27456 0.5692344 1.113885 -1.458117 0.5692344 1.113885 -1.667858 0.5692344 1.113885 -1.907556 0.5692344 1.113885 -2.181521 0.5692344 1.113885 -2.494678 0.5692344 1.113885 -2.852659 0.5692344 1.113885 -3.261896 0.5692344 1.113885 -3.729748 0.5692344 1.113885 -4.264621 0.5692344 1.113885 -4.876131 0.5692344 1.113885 -5.575266 0.5692344 1.113885 -6.374593 0.5692344 1.113885 -0 0.6530715 1.113885 -0 0.6530715 1.113885 -0 0.6530715 1.113885 -0.002268731 0.6530715 1.113885 -0.07076883 0.6530715 1.113885 -0.1119241 0.6530715 1.113885 -0.1475052 0.6530715 1.113885 -0.1846606 0.6530715 1.113885 -0.2245119 0.6530715 1.113885 -0.2679612 0.6530715 1.113885 -0.3158431 0.6530715 1.113885 -0.3689944 0.6530715 1.113885 -0.4282948 0.6530715 1.113885 -0.494694 0.6530715 1.113885 -0.5692344 0.6530715 1.113885 -0.6530715 0.6530715 1.113885 -0.7474945 0.6530715 1.113885 -0.8539475 0.6530715 1.113885 -0.974052 0.6530715 1.113885 -1.113885 0.6530715 1.113885 -1.27456 0.6530715 1.113885 -1.458117 0.6530715 1.113885 -1.667858 0.6530715 1.113885 -1.907556 0.6530715 1.113885 -2.181521 0.6530715 1.113885 -2.494678 0.6530715 1.113885 -2.852659 0.6530715 1.113885 -3.261896 0.6530715 1.113885 -3.729748 0.6530715 1.113885 -4.264621 0.6530715 1.113885 -4.876131 0.6530715 1.113885 -5.575266 0.6530715 1.113885 -6.374593 0.6530715 1.113885 -0 0.7474945 1.113885 -0 0.7474945 1.113885 -0 0.7474945 1.113885 -0.002268731 0.7474945 1.113885 -0.07076883 0.7474945 1.113885 -0.1119241 0.7474945 1.113885 -0.1475052 0.7474945 1.113885 -0.1846606 0.7474945 1.113885 -0.2245119 0.7474945 1.113885 -0.2679612 0.7474945 1.113885 -0.3158431 0.7474945 1.113885 -0.3689944 0.7474945 1.113885 -0.4282948 0.7474945 1.113885 -0.494694 0.7474945 1.113885 -0.5692344 0.7474945 1.113885 -0.6530715 0.7474945 1.113885 -0.7474945 0.7474945 1.113885 -0.8539475 0.7474945 1.113885 -0.974052 0.7474945 1.113885 -1.113885 0.7474945 1.113885 -1.27456 0.7474945 1.113885 -1.458117 0.7474945 1.113885 -1.667858 0.7474945 1.113885 -1.907556 0.7474945 1.113885 -2.181521 0.7474945 1.113885 -2.494678 0.7474945 1.113885 -2.852659 0.7474945 1.113885 -3.261896 0.7474945 1.113885 -3.729748 0.7474945 1.113885 -4.264621 0.7474945 1.113885 -4.876131 0.7474945 1.113885 -5.575266 0.7474945 1.113885 -6.374593 0.7474945 1.113885 -0 0.8539475 1.113885 -0 0.8539475 1.113885 -0 0.8539475 1.113885 -0.002268731 0.8539475 1.113885 -0.07076883 0.8539475 1.113885 -0.1119241 0.8539475 1.113885 -0.1475052 0.8539475 1.113885 -0.1846606 0.8539475 1.113885 -0.2245119 0.8539475 1.113885 -0.2679612 0.8539475 1.113885 -0.3158431 0.8539475 1.113885 -0.3689944 0.8539475 1.113885 -0.4282948 0.8539475 1.113885 -0.494694 0.8539475 1.113885 -0.5692344 0.8539475 1.113885 -0.6530715 0.8539475 1.113885 -0.7474945 0.8539475 1.113885 -0.8539475 0.8539475 1.113885 -0.974052 0.8539475 1.113885 -1.113885 0.8539475 1.113885 -1.27456 0.8539475 1.113885 -1.458117 0.8539475 1.113885 -1.667858 0.8539475 1.113885 -1.907556 0.8539475 1.113885 -2.181521 0.8539475 1.113885 -2.494678 0.8539475 1.113885 -2.852659 0.8539475 1.113885 -3.261896 0.8539475 1.113885 -3.729748 0.8539475 1.113885 -4.264621 0.8539475 1.113885 -4.876131 0.8539475 1.113885 -5.575266 0.8539475 1.113885 -6.374593 0.8539475 1.113885 -0 0.974052 1.113885 -0 0.974052 1.113885 -0 0.974052 1.113885 -0.002268731 0.974052 1.113885 -0.07076883 0.974052 1.113885 -0.1119241 0.974052 1.113885 -0.1475052 0.974052 1.113885 -0.1846606 0.974052 1.113885 -0.2245119 0.974052 1.113885 -0.2679612 0.974052 1.113885 -0.3158431 0.974052 1.113885 -0.3689944 0.974052 1.113885 -0.4282948 0.974052 1.113885 -0.494694 0.974052 1.113885 -0.5692344 0.974052 1.113885 -0.6530715 0.974052 1.113885 -0.7474945 0.974052 1.113885 -0.8539475 0.974052 1.113885 -0.974052 0.974052 1.113885 -1.113885 0.974052 1.113885 -1.27456 0.974052 1.113885 -1.458117 0.974052 1.113885 -1.667858 0.974052 1.113885 -1.907556 0.974052 1.113885 -2.181521 0.974052 1.113885 -2.494678 0.974052 1.113885 -2.852659 0.974052 1.113885 -3.261896 0.974052 1.113885 -3.729748 0.974052 1.113885 -4.264621 0.974052 1.113885 -4.876131 0.974052 1.113885 -5.575266 0.974052 1.113885 -6.374593 0.974052 1.113885 -0 1.113885 1.113885 -0 1.113885 1.113885 -0 1.113885 1.113885 -0.002268731 1.113885 1.113885 -0.07076883 1.113885 1.113885 -0.1119241 1.113885 1.113885 -0.1475052 1.113885 1.113885 -0.1846606 1.113885 1.113885 -0.2245119 1.113885 1.113885 -0.2679612 1.113885 1.113885 -0.3158431 1.113885 1.113885 -0.3689944 1.113885 1.113885 -0.4282948 1.113885 1.113885 -0.494694 1.113885 1.113885 -0.5692344 1.113885 1.113885 -0.6530715 1.113885 1.113885 -0.7474945 1.113885 1.113885 -0.8539475 1.113885 1.113885 -0.974052 1.113885 1.113885 -1.113885 1.113885 1.113885 -1.27456 1.113885 1.113885 -1.458117 1.113885 1.113885 -1.667858 1.113885 1.113885 -1.907556 1.113885 1.113885 -2.181521 1.113885 1.113885 -2.494678 1.113885 1.113885 -2.852659 1.113885 1.113885 -3.261896 1.113885 1.113885 -3.729748 1.113885 1.113885 -4.264621 1.113885 1.113885 -4.876131 1.113885 1.113885 -5.575266 1.113885 1.113885 -6.374593 1.113885 1.113885 -0 1.27456 1.113885 -0 1.27456 1.113885 -0 1.27456 1.113885 -0.002268731 1.27456 1.113885 -0.07076883 1.27456 1.113885 -0.1119241 1.27456 1.113885 -0.1475052 1.27456 1.113885 -0.1846606 1.27456 1.113885 -0.2245119 1.27456 1.113885 -0.2679612 1.27456 1.113885 -0.3158431 1.27456 1.113885 -0.3689944 1.27456 1.113885 -0.4282948 1.27456 1.113885 -0.494694 1.27456 1.113885 -0.5692344 1.27456 1.113885 -0.6530715 1.27456 1.113885 -0.7474945 1.27456 1.113885 -0.8539475 1.27456 1.113885 -0.974052 1.27456 1.113885 -1.113885 1.27456 1.113885 -1.27456 1.27456 1.113885 -1.458117 1.27456 1.113885 -1.667858 1.27456 1.113885 -1.907556 1.27456 1.113885 -2.181521 1.27456 1.113885 -2.494678 1.27456 1.113885 -2.852659 1.27456 1.113885 -3.261896 1.27456 1.113885 -3.729748 1.27456 1.113885 -4.264621 1.27456 1.113885 -4.876131 1.27456 1.113885 -5.575266 1.27456 1.113885 -6.374593 1.27456 1.113885 -0 1.458117 1.113885 -0 1.458117 1.113885 -0 1.458117 1.113885 -0.002268731 1.458117 1.113885 -0.07076883 1.458117 1.113885 -0.1119241 1.458117 1.113885 -0.1475052 1.458117 1.113885 -0.1846606 1.458117 1.113885 -0.2245119 1.458117 1.113885 -0.2679612 1.458117 1.113885 -0.3158431 1.458117 1.113885 -0.3689944 1.458117 1.113885 -0.4282948 1.458117 1.113885 -0.494694 1.458117 1.113885 -0.5692344 1.458117 1.113885 -0.6530715 1.458117 1.113885 -0.7474945 1.458117 1.113885 -0.8539475 1.458117 1.113885 -0.974052 1.458117 1.113885 -1.113885 1.458117 1.113885 -1.27456 1.458117 1.113885 -1.458117 1.458117 1.113885 -1.667858 1.458117 1.113885 -1.907556 1.458117 1.113885 -2.181521 1.458117 1.113885 -2.494678 1.458117 1.113885 -2.852659 1.458117 1.113885 -3.261896 1.458117 1.113885 -3.729748 1.458117 1.113885 -4.264621 1.458117 1.113885 -4.876131 1.458117 1.113885 -5.575266 1.458117 1.113885 -6.374593 1.458117 1.113885 -0 1.667858 1.113885 -0 1.667858 1.113885 -0 1.667858 1.113885 -0.002268731 1.667858 1.113885 -0.07076883 1.667858 1.113885 -0.1119241 1.667858 1.113885 -0.1475052 1.667858 1.113885 -0.1846606 1.667858 1.113885 -0.2245119 1.667858 1.113885 -0.2679612 1.667858 1.113885 -0.3158431 1.667858 1.113885 -0.3689944 1.667858 1.113885 -0.4282948 1.667858 1.113885 -0.494694 1.667858 1.113885 -0.5692344 1.667858 1.113885 -0.6530715 1.667858 1.113885 -0.7474945 1.667858 1.113885 -0.8539475 1.667858 1.113885 -0.974052 1.667858 1.113885 -1.113885 1.667858 1.113885 -1.27456 1.667858 1.113885 -1.458117 1.667858 1.113885 -1.667858 1.667858 1.113885 -1.907556 1.667858 1.113885 -2.181521 1.667858 1.113885 -2.494678 1.667858 1.113885 -2.852659 1.667858 1.113885 -3.261896 1.667858 1.113885 -3.729748 1.667858 1.113885 -4.264621 1.667858 1.113885 -4.876131 1.667858 1.113885 -5.575266 1.667858 1.113885 -6.374593 1.667858 1.113885 -0 1.907556 1.113885 -0 1.907556 1.113885 -0 1.907556 1.113885 -0.002268731 1.907556 1.113885 -0.07076883 1.907556 1.113885 -0.1119241 1.907556 1.113885 -0.1475052 1.907556 1.113885 -0.1846606 1.907556 1.113885 -0.2245119 1.907556 1.113885 -0.2679612 1.907556 1.113885 -0.3158431 1.907556 1.113885 -0.3689944 1.907556 1.113885 -0.4282948 1.907556 1.113885 -0.494694 1.907556 1.113885 -0.5692344 1.907556 1.113885 -0.6530715 1.907556 1.113885 -0.7474945 1.907556 1.113885 -0.8539475 1.907556 1.113885 -0.974052 1.907556 1.113885 -1.113885 1.907556 1.113885 -1.27456 1.907556 1.113885 -1.458117 1.907556 1.113885 -1.667858 1.907556 1.113885 -1.907556 1.907556 1.113885 -2.181521 1.907556 1.113885 -2.494678 1.907556 1.113885 -2.852659 1.907556 1.113885 -3.261896 1.907556 1.113885 -3.729748 1.907556 1.113885 -4.264621 1.907556 1.113885 -4.876131 1.907556 1.113885 -5.575266 1.907556 1.113885 -6.374593 1.907556 1.113885 -0 2.181521 1.113885 -0 2.181521 1.113885 -0 2.181521 1.113885 -0.002268731 2.181521 1.113885 -0.07076883 2.181521 1.113885 -0.1119241 2.181521 1.113885 -0.1475052 2.181521 1.113885 -0.1846606 2.181521 1.113885 -0.2245119 2.181521 1.113885 -0.2679612 2.181521 1.113885 -0.3158431 2.181521 1.113885 -0.3689944 2.181521 1.113885 -0.4282948 2.181521 1.113885 -0.494694 2.181521 1.113885 -0.5692344 2.181521 1.113885 -0.6530715 2.181521 1.113885 -0.7474945 2.181521 1.113885 -0.8539475 2.181521 1.113885 -0.974052 2.181521 1.113885 -1.113885 2.181521 1.113885 -1.27456 2.181521 1.113885 -1.458117 2.181521 1.113885 -1.667858 2.181521 1.113885 -1.907556 2.181521 1.113885 -2.181521 2.181521 1.113885 -2.494678 2.181521 1.113885 -2.852659 2.181521 1.113885 -3.261896 2.181521 1.113885 -3.729748 2.181521 1.113885 -4.264621 2.181521 1.113885 -4.876131 2.181521 1.113885 -5.575266 2.181521 1.113885 -6.374593 2.181521 1.113885 -0 2.494678 1.113885 -0 2.494678 1.113885 -0 2.494678 1.113885 -0.002268731 2.494678 1.113885 -0.07076883 2.494678 1.113885 -0.1119241 2.494678 1.113885 -0.1475052 2.494678 1.113885 -0.1846606 2.494678 1.113885 -0.2245119 2.494678 1.113885 -0.2679612 2.494678 1.113885 -0.3158431 2.494678 1.113885 -0.3689944 2.494678 1.113885 -0.4282948 2.494678 1.113885 -0.494694 2.494678 1.113885 -0.5692344 2.494678 1.113885 -0.6530715 2.494678 1.113885 -0.7474945 2.494678 1.113885 -0.8539475 2.494678 1.113885 -0.974052 2.494678 1.113885 -1.113885 2.494678 1.113885 -1.27456 2.494678 1.113885 -1.458117 2.494678 1.113885 -1.667858 2.494678 1.113885 -1.907556 2.494678 1.113885 -2.181521 2.494678 1.113885 -2.494678 2.494678 1.113885 -2.852659 2.494678 1.113885 -3.261896 2.494678 1.113885 -3.729748 2.494678 1.113885 -4.264621 2.494678 1.113885 -4.876131 2.494678 1.113885 -5.575266 2.494678 1.113885 -6.374593 2.494678 1.113885 -0 2.852659 1.113885 -0 2.852659 1.113885 -0 2.852659 1.113885 -0.002268731 2.852659 1.113885 -0.07076883 2.852659 1.113885 -0.1119241 2.852659 1.113885 -0.1475052 2.852659 1.113885 -0.1846606 2.852659 1.113885 -0.2245119 2.852659 1.113885 -0.2679612 2.852659 1.113885 -0.3158431 2.852659 1.113885 -0.3689944 2.852659 1.113885 -0.4282948 2.852659 1.113885 -0.494694 2.852659 1.113885 -0.5692344 2.852659 1.113885 -0.6530715 2.852659 1.113885 -0.7474945 2.852659 1.113885 -0.8539475 2.852659 1.113885 -0.974052 2.852659 1.113885 -1.113885 2.852659 1.113885 -1.27456 2.852659 1.113885 -1.458117 2.852659 1.113885 -1.667858 2.852659 1.113885 -1.907556 2.852659 1.113885 -2.181521 2.852659 1.113885 -2.494678 2.852659 1.113885 -2.852659 2.852659 1.113885 -3.261896 2.852659 1.113885 -3.729748 2.852659 1.113885 -4.264621 2.852659 1.113885 -4.876131 2.852659 1.113885 -5.575266 2.852659 1.113885 -6.374593 2.852659 1.113885 -0 3.261896 1.113885 -0 3.261896 1.113885 -0 3.261896 1.113885 -0.002268731 3.261896 1.113885 -0.07076883 3.261896 1.113885 -0.1119241 3.261896 1.113885 -0.1475052 3.261896 1.113885 -0.1846606 3.261896 1.113885 -0.2245119 3.261896 1.113885 -0.2679612 3.261896 1.113885 -0.3158431 3.261896 1.113885 -0.3689944 3.261896 1.113885 -0.4282948 3.261896 1.113885 -0.494694 3.261896 1.113885 -0.5692344 3.261896 1.113885 -0.6530715 3.261896 1.113885 -0.7474945 3.261896 1.113885 -0.8539475 3.261896 1.113885 -0.974052 3.261896 1.113885 -1.113885 3.261896 1.113885 -1.27456 3.261896 1.113885 -1.458117 3.261896 1.113885 -1.667858 3.261896 1.113885 -1.907556 3.261896 1.113885 -2.181521 3.261896 1.113885 -2.494678 3.261896 1.113885 -2.852659 3.261896 1.113885 -3.261896 3.261896 1.113885 -3.729748 3.261896 1.113885 -4.264621 3.261896 1.113885 -4.876131 3.261896 1.113885 -5.575266 3.261896 1.113885 -6.374593 3.261896 1.113885 -0 3.729748 1.113885 -0 3.729748 1.113885 -0 3.729748 1.113885 -0.002268731 3.729748 1.113885 -0.07076883 3.729748 1.113885 -0.1119241 3.729748 1.113885 -0.1475052 3.729748 1.113885 -0.1846606 3.729748 1.113885 -0.2245119 3.729748 1.113885 -0.2679612 3.729748 1.113885 -0.3158431 3.729748 1.113885 -0.3689944 3.729748 1.113885 -0.4282948 3.729748 1.113885 -0.494694 3.729748 1.113885 -0.5692344 3.729748 1.113885 -0.6530715 3.729748 1.113885 -0.7474945 3.729748 1.113885 -0.8539475 3.729748 1.113885 -0.974052 3.729748 1.113885 -1.113885 3.729748 1.113885 -1.27456 3.729748 1.113885 -1.458117 3.729748 1.113885 -1.667858 3.729748 1.113885 -1.907556 3.729748 1.113885 -2.181521 3.729748 1.113885 -2.494678 3.729748 1.113885 -2.852659 3.729748 1.113885 -3.261896 3.729748 1.113885 -3.729748 3.729748 1.113885 -4.264621 3.729748 1.113885 -4.876131 3.729748 1.113885 -5.575266 3.729748 1.113885 -6.374593 3.729748 1.113885 -0 4.264621 1.113885 -0 4.264621 1.113885 -0 4.264621 1.113885 -0.002268731 4.264621 1.113885 -0.07076883 4.264621 1.113885 -0.1119241 4.264621 1.113885 -0.1475052 4.264621 1.113885 -0.1846606 4.264621 1.113885 -0.2245119 4.264621 1.113885 -0.2679612 4.264621 1.113885 -0.3158431 4.264621 1.113885 -0.3689944 4.264621 1.113885 -0.4282948 4.264621 1.113885 -0.494694 4.264621 1.113885 -0.5692344 4.264621 1.113885 -0.6530715 4.264621 1.113885 -0.7474945 4.264621 1.113885 -0.8539475 4.264621 1.113885 -0.974052 4.264621 1.113885 -1.113885 4.264621 1.113885 -1.27456 4.264621 1.113885 -1.458117 4.264621 1.113885 -1.667858 4.264621 1.113885 -1.907556 4.264621 1.113885 -2.181521 4.264621 1.113885 -2.494678 4.264621 1.113885 -2.852659 4.264621 1.113885 -3.261896 4.264621 1.113885 -3.729748 4.264621 1.113885 -4.264621 4.264621 1.113885 -4.876131 4.264621 1.113885 -5.575266 4.264621 1.113885 -6.374593 4.264621 1.113885 -0 4.876131 1.113885 -0 4.876131 1.113885 -0 4.876131 1.113885 -0.002268731 4.876131 1.113885 -0.07076883 4.876131 1.113885 -0.1119241 4.876131 1.113885 -0.1475052 4.876131 1.113885 -0.1846606 4.876131 1.113885 -0.2245119 4.876131 1.113885 -0.2679612 4.876131 1.113885 -0.3158431 4.876131 1.113885 -0.3689944 4.876131 1.113885 -0.4282948 4.876131 1.113885 -0.494694 4.876131 1.113885 -0.5692344 4.876131 1.113885 -0.6530715 4.876131 1.113885 -0.7474945 4.876131 1.113885 -0.8539475 4.876131 1.113885 -0.974052 4.876131 1.113885 -1.113885 4.876131 1.113885 -1.27456 4.876131 1.113885 -1.458117 4.876131 1.113885 -1.667858 4.876131 1.113885 -1.907556 4.876131 1.113885 -2.181521 4.876131 1.113885 -2.494678 4.876131 1.113885 -2.852659 4.876131 1.113885 -3.261896 4.876131 1.113885 -3.729748 4.876131 1.113885 -4.264621 4.876131 1.113885 -4.876131 4.876131 1.113885 -5.575266 4.876131 1.113885 -6.374593 4.876131 1.113885 -0 5.575266 1.113885 -0 5.575266 1.113885 -0 5.575266 1.113885 -0.002268731 5.575266 1.113885 -0.07076883 5.575266 1.113885 -0.1119241 5.575266 1.113885 -0.1475052 5.575266 1.113885 -0.1846606 5.575266 1.113885 -0.2245119 5.575266 1.113885 -0.2679612 5.575266 1.113885 -0.3158431 5.575266 1.113885 -0.3689944 5.575266 1.113885 -0.4282948 5.575266 1.113885 -0.494694 5.575266 1.113885 -0.5692344 5.575266 1.113885 -0.6530715 5.575266 1.113885 -0.7474945 5.575266 1.113885 -0.8539475 5.575266 1.113885 -0.974052 5.575266 1.113885 -1.113885 5.575266 1.113885 -1.27456 5.575266 1.113885 -1.458117 5.575266 1.113885 -1.667858 5.575266 1.113885 -1.907556 5.575266 1.113885 -2.181521 5.575266 1.113885 -2.494678 5.575266 1.113885 -2.852659 5.575266 1.113885 -3.261896 5.575266 1.113885 -3.729748 5.575266 1.113885 -4.264621 5.575266 1.113885 -4.876131 5.575266 1.113885 -5.575266 5.575266 1.113885 -6.374593 5.575266 1.113885 -0 6.374593 1.113885 -0 6.374593 1.113885 -0 6.374593 1.113885 -0.002268731 6.374593 1.113885 -0.07076883 6.374593 1.113885 -0.1119241 6.374593 1.113885 -0.1475052 6.374593 1.113885 -0.1846606 6.374593 1.113885 -0.2245119 6.374593 1.113885 -0.2679612 6.374593 1.113885 -0.3158431 6.374593 1.113885 -0.3689944 6.374593 1.113885 -0.4282948 6.374593 1.113885 -0.494694 6.374593 1.113885 -0.5692344 6.374593 1.113885 -0.6530715 6.374593 1.113885 -0.7474945 6.374593 1.113885 -0.8539475 6.374593 1.113885 -0.974052 6.374593 1.113885 -1.113885 6.374593 1.113885 -1.27456 6.374593 1.113885 -1.458117 6.374593 1.113885 -1.667858 6.374593 1.113885 -1.907556 6.374593 1.113885 -2.181521 6.374593 1.113885 -2.494678 6.374593 1.113885 -2.852659 6.374593 1.113885 -3.261896 6.374593 1.113885 -3.729748 6.374593 1.113885 -4.264621 6.374593 1.113885 -4.876131 6.374593 1.113885 -5.575266 6.374593 1.113885 -6.374593 6.374593 1.113885 -0 0 1.27456 -0 0 1.27456 -0 0 1.27456 -0.002268731 0 1.27456 -0.07076883 0 1.27456 -0.1119241 0 1.27456 -0.1475052 0 1.27456 -0.1846606 0 1.27456 -0.2245119 0 1.27456 -0.2679612 0 1.27456 -0.3158431 0 1.27456 -0.3689944 0 1.27456 -0.4282948 0 1.27456 -0.494694 0 1.27456 -0.5692344 0 1.27456 -0.6530715 0 1.27456 -0.7474945 0 1.27456 -0.8539475 0 1.27456 -0.974052 0 1.27456 -1.113885 0 1.27456 -1.27456 0 1.27456 -1.458117 0 1.27456 -1.667858 0 1.27456 -1.907556 0 1.27456 -2.181521 0 1.27456 -2.494678 0 1.27456 -2.852659 0 1.27456 -3.261896 0 1.27456 -3.729748 0 1.27456 -4.264621 0 1.27456 -4.876131 0 1.27456 -5.575266 0 1.27456 -6.374593 0 1.27456 -0 0 1.27456 -0 0 1.27456 -0 0 1.27456 -0.002268731 0 1.27456 -0.07076883 0 1.27456 -0.1119241 0 1.27456 -0.1475052 0 1.27456 -0.1846606 0 1.27456 -0.2245119 0 1.27456 -0.2679612 0 1.27456 -0.3158431 0 1.27456 -0.3689944 0 1.27456 -0.4282948 0 1.27456 -0.494694 0 1.27456 -0.5692344 0 1.27456 -0.6530715 0 1.27456 -0.7474945 0 1.27456 -0.8539475 0 1.27456 -0.974052 0 1.27456 -1.113885 0 1.27456 -1.27456 0 1.27456 -1.458117 0 1.27456 -1.667858 0 1.27456 -1.907556 0 1.27456 -2.181521 0 1.27456 -2.494678 0 1.27456 -2.852659 0 1.27456 -3.261896 0 1.27456 -3.729748 0 1.27456 -4.264621 0 1.27456 -4.876131 0 1.27456 -5.575266 0 1.27456 -6.374593 0 1.27456 -0 0 1.27456 -0 0 1.27456 -0 0 1.27456 -0.002268731 0 1.27456 -0.07076883 0 1.27456 -0.1119241 0 1.27456 -0.1475052 0 1.27456 -0.1846606 0 1.27456 -0.2245119 0 1.27456 -0.2679612 0 1.27456 -0.3158431 0 1.27456 -0.3689944 0 1.27456 -0.4282948 0 1.27456 -0.494694 0 1.27456 -0.5692344 0 1.27456 -0.6530715 0 1.27456 -0.7474945 0 1.27456 -0.8539475 0 1.27456 -0.974052 0 1.27456 -1.113885 0 1.27456 -1.27456 0 1.27456 -1.458117 0 1.27456 -1.667858 0 1.27456 -1.907556 0 1.27456 -2.181521 0 1.27456 -2.494678 0 1.27456 -2.852659 0 1.27456 -3.261896 0 1.27456 -3.729748 0 1.27456 -4.264621 0 1.27456 -4.876131 0 1.27456 -5.575266 0 1.27456 -6.374593 0 1.27456 -0 0.002268731 1.27456 -0 0.002268731 1.27456 -0 0.002268731 1.27456 -0.002268731 0.002268731 1.27456 -0.07076883 0.002268731 1.27456 -0.1119241 0.002268731 1.27456 -0.1475052 0.002268731 1.27456 -0.1846606 0.002268731 1.27456 -0.2245119 0.002268731 1.27456 -0.2679612 0.002268731 1.27456 -0.3158431 0.002268731 1.27456 -0.3689944 0.002268731 1.27456 -0.4282948 0.002268731 1.27456 -0.494694 0.002268731 1.27456 -0.5692344 0.002268731 1.27456 -0.6530715 0.002268731 1.27456 -0.7474945 0.002268731 1.27456 -0.8539475 0.002268731 1.27456 -0.974052 0.002268731 1.27456 -1.113885 0.002268731 1.27456 -1.27456 0.002268731 1.27456 -1.458117 0.002268731 1.27456 -1.667858 0.002268731 1.27456 -1.907556 0.002268731 1.27456 -2.181521 0.002268731 1.27456 -2.494678 0.002268731 1.27456 -2.852659 0.002268731 1.27456 -3.261896 0.002268731 1.27456 -3.729748 0.002268731 1.27456 -4.264621 0.002268731 1.27456 -4.876131 0.002268731 1.27456 -5.575266 0.002268731 1.27456 -6.374593 0.002268731 1.27456 -0 0.07076883 1.27456 -0 0.07076883 1.27456 -0 0.07076883 1.27456 -0.002268731 0.07076883 1.27456 -0.07076883 0.07076883 1.27456 -0.1119241 0.07076883 1.27456 -0.1475052 0.07076883 1.27456 -0.1846606 0.07076883 1.27456 -0.2245119 0.07076883 1.27456 -0.2679612 0.07076883 1.27456 -0.3158431 0.07076883 1.27456 -0.3689944 0.07076883 1.27456 -0.4282948 0.07076883 1.27456 -0.494694 0.07076883 1.27456 -0.5692344 0.07076883 1.27456 -0.6530715 0.07076883 1.27456 -0.7474945 0.07076883 1.27456 -0.8539475 0.07076883 1.27456 -0.974052 0.07076883 1.27456 -1.113885 0.07076883 1.27456 -1.27456 0.07076883 1.27456 -1.458117 0.07076883 1.27456 -1.667858 0.07076883 1.27456 -1.907556 0.07076883 1.27456 -2.181521 0.07076883 1.27456 -2.494678 0.07076883 1.27456 -2.852659 0.07076883 1.27456 -3.261896 0.07076883 1.27456 -3.729748 0.07076883 1.27456 -4.264621 0.07076883 1.27456 -4.876131 0.07076883 1.27456 -5.575266 0.07076883 1.27456 -6.374593 0.07076883 1.27456 -0 0.1119241 1.27456 -0 0.1119241 1.27456 -0 0.1119241 1.27456 -0.002268731 0.1119241 1.27456 -0.07076883 0.1119241 1.27456 -0.1119241 0.1119241 1.27456 -0.1475052 0.1119241 1.27456 -0.1846606 0.1119241 1.27456 -0.2245119 0.1119241 1.27456 -0.2679612 0.1119241 1.27456 -0.3158431 0.1119241 1.27456 -0.3689944 0.1119241 1.27456 -0.4282948 0.1119241 1.27456 -0.494694 0.1119241 1.27456 -0.5692344 0.1119241 1.27456 -0.6530715 0.1119241 1.27456 -0.7474945 0.1119241 1.27456 -0.8539475 0.1119241 1.27456 -0.974052 0.1119241 1.27456 -1.113885 0.1119241 1.27456 -1.27456 0.1119241 1.27456 -1.458117 0.1119241 1.27456 -1.667858 0.1119241 1.27456 -1.907556 0.1119241 1.27456 -2.181521 0.1119241 1.27456 -2.494678 0.1119241 1.27456 -2.852659 0.1119241 1.27456 -3.261896 0.1119241 1.27456 -3.729748 0.1119241 1.27456 -4.264621 0.1119241 1.27456 -4.876131 0.1119241 1.27456 -5.575266 0.1119241 1.27456 -6.374593 0.1119241 1.27456 -0 0.1475052 1.27456 -0 0.1475052 1.27456 -0 0.1475052 1.27456 -0.002268731 0.1475052 1.27456 -0.07076883 0.1475052 1.27456 -0.1119241 0.1475052 1.27456 -0.1475052 0.1475052 1.27456 -0.1846606 0.1475052 1.27456 -0.2245119 0.1475052 1.27456 -0.2679612 0.1475052 1.27456 -0.3158431 0.1475052 1.27456 -0.3689944 0.1475052 1.27456 -0.4282948 0.1475052 1.27456 -0.494694 0.1475052 1.27456 -0.5692344 0.1475052 1.27456 -0.6530715 0.1475052 1.27456 -0.7474945 0.1475052 1.27456 -0.8539475 0.1475052 1.27456 -0.974052 0.1475052 1.27456 -1.113885 0.1475052 1.27456 -1.27456 0.1475052 1.27456 -1.458117 0.1475052 1.27456 -1.667858 0.1475052 1.27456 -1.907556 0.1475052 1.27456 -2.181521 0.1475052 1.27456 -2.494678 0.1475052 1.27456 -2.852659 0.1475052 1.27456 -3.261896 0.1475052 1.27456 -3.729748 0.1475052 1.27456 -4.264621 0.1475052 1.27456 -4.876131 0.1475052 1.27456 -5.575266 0.1475052 1.27456 -6.374593 0.1475052 1.27456 -0 0.1846606 1.27456 -0 0.1846606 1.27456 -0 0.1846606 1.27456 -0.002268731 0.1846606 1.27456 -0.07076883 0.1846606 1.27456 -0.1119241 0.1846606 1.27456 -0.1475052 0.1846606 1.27456 -0.1846606 0.1846606 1.27456 -0.2245119 0.1846606 1.27456 -0.2679612 0.1846606 1.27456 -0.3158431 0.1846606 1.27456 -0.3689944 0.1846606 1.27456 -0.4282948 0.1846606 1.27456 -0.494694 0.1846606 1.27456 -0.5692344 0.1846606 1.27456 -0.6530715 0.1846606 1.27456 -0.7474945 0.1846606 1.27456 -0.8539475 0.1846606 1.27456 -0.974052 0.1846606 1.27456 -1.113885 0.1846606 1.27456 -1.27456 0.1846606 1.27456 -1.458117 0.1846606 1.27456 -1.667858 0.1846606 1.27456 -1.907556 0.1846606 1.27456 -2.181521 0.1846606 1.27456 -2.494678 0.1846606 1.27456 -2.852659 0.1846606 1.27456 -3.261896 0.1846606 1.27456 -3.729748 0.1846606 1.27456 -4.264621 0.1846606 1.27456 -4.876131 0.1846606 1.27456 -5.575266 0.1846606 1.27456 -6.374593 0.1846606 1.27456 -0 0.2245119 1.27456 -0 0.2245119 1.27456 -0 0.2245119 1.27456 -0.002268731 0.2245119 1.27456 -0.07076883 0.2245119 1.27456 -0.1119241 0.2245119 1.27456 -0.1475052 0.2245119 1.27456 -0.1846606 0.2245119 1.27456 -0.2245119 0.2245119 1.27456 -0.2679612 0.2245119 1.27456 -0.3158431 0.2245119 1.27456 -0.3689944 0.2245119 1.27456 -0.4282948 0.2245119 1.27456 -0.494694 0.2245119 1.27456 -0.5692344 0.2245119 1.27456 -0.6530715 0.2245119 1.27456 -0.7474945 0.2245119 1.27456 -0.8539475 0.2245119 1.27456 -0.974052 0.2245119 1.27456 -1.113885 0.2245119 1.27456 -1.27456 0.2245119 1.27456 -1.458117 0.2245119 1.27456 -1.667858 0.2245119 1.27456 -1.907556 0.2245119 1.27456 -2.181521 0.2245119 1.27456 -2.494678 0.2245119 1.27456 -2.852659 0.2245119 1.27456 -3.261896 0.2245119 1.27456 -3.729748 0.2245119 1.27456 -4.264621 0.2245119 1.27456 -4.876131 0.2245119 1.27456 -5.575266 0.2245119 1.27456 -6.374593 0.2245119 1.27456 -0 0.2679612 1.27456 -0 0.2679612 1.27456 -0 0.2679612 1.27456 -0.002268731 0.2679612 1.27456 -0.07076883 0.2679612 1.27456 -0.1119241 0.2679612 1.27456 -0.1475052 0.2679612 1.27456 -0.1846606 0.2679612 1.27456 -0.2245119 0.2679612 1.27456 -0.2679612 0.2679612 1.27456 -0.3158431 0.2679612 1.27456 -0.3689944 0.2679612 1.27456 -0.4282948 0.2679612 1.27456 -0.494694 0.2679612 1.27456 -0.5692344 0.2679612 1.27456 -0.6530715 0.2679612 1.27456 -0.7474945 0.2679612 1.27456 -0.8539475 0.2679612 1.27456 -0.974052 0.2679612 1.27456 -1.113885 0.2679612 1.27456 -1.27456 0.2679612 1.27456 -1.458117 0.2679612 1.27456 -1.667858 0.2679612 1.27456 -1.907556 0.2679612 1.27456 -2.181521 0.2679612 1.27456 -2.494678 0.2679612 1.27456 -2.852659 0.2679612 1.27456 -3.261896 0.2679612 1.27456 -3.729748 0.2679612 1.27456 -4.264621 0.2679612 1.27456 -4.876131 0.2679612 1.27456 -5.575266 0.2679612 1.27456 -6.374593 0.2679612 1.27456 -0 0.3158431 1.27456 -0 0.3158431 1.27456 -0 0.3158431 1.27456 -0.002268731 0.3158431 1.27456 -0.07076883 0.3158431 1.27456 -0.1119241 0.3158431 1.27456 -0.1475052 0.3158431 1.27456 -0.1846606 0.3158431 1.27456 -0.2245119 0.3158431 1.27456 -0.2679612 0.3158431 1.27456 -0.3158431 0.3158431 1.27456 -0.3689944 0.3158431 1.27456 -0.4282948 0.3158431 1.27456 -0.494694 0.3158431 1.27456 -0.5692344 0.3158431 1.27456 -0.6530715 0.3158431 1.27456 -0.7474945 0.3158431 1.27456 -0.8539475 0.3158431 1.27456 -0.974052 0.3158431 1.27456 -1.113885 0.3158431 1.27456 -1.27456 0.3158431 1.27456 -1.458117 0.3158431 1.27456 -1.667858 0.3158431 1.27456 -1.907556 0.3158431 1.27456 -2.181521 0.3158431 1.27456 -2.494678 0.3158431 1.27456 -2.852659 0.3158431 1.27456 -3.261896 0.3158431 1.27456 -3.729748 0.3158431 1.27456 -4.264621 0.3158431 1.27456 -4.876131 0.3158431 1.27456 -5.575266 0.3158431 1.27456 -6.374593 0.3158431 1.27456 -0 0.3689944 1.27456 -0 0.3689944 1.27456 -0 0.3689944 1.27456 -0.002268731 0.3689944 1.27456 -0.07076883 0.3689944 1.27456 -0.1119241 0.3689944 1.27456 -0.1475052 0.3689944 1.27456 -0.1846606 0.3689944 1.27456 -0.2245119 0.3689944 1.27456 -0.2679612 0.3689944 1.27456 -0.3158431 0.3689944 1.27456 -0.3689944 0.3689944 1.27456 -0.4282948 0.3689944 1.27456 -0.494694 0.3689944 1.27456 -0.5692344 0.3689944 1.27456 -0.6530715 0.3689944 1.27456 -0.7474945 0.3689944 1.27456 -0.8539475 0.3689944 1.27456 -0.974052 0.3689944 1.27456 -1.113885 0.3689944 1.27456 -1.27456 0.3689944 1.27456 -1.458117 0.3689944 1.27456 -1.667858 0.3689944 1.27456 -1.907556 0.3689944 1.27456 -2.181521 0.3689944 1.27456 -2.494678 0.3689944 1.27456 -2.852659 0.3689944 1.27456 -3.261896 0.3689944 1.27456 -3.729748 0.3689944 1.27456 -4.264621 0.3689944 1.27456 -4.876131 0.3689944 1.27456 -5.575266 0.3689944 1.27456 -6.374593 0.3689944 1.27456 -0 0.4282948 1.27456 -0 0.4282948 1.27456 -0 0.4282948 1.27456 -0.002268731 0.4282948 1.27456 -0.07076883 0.4282948 1.27456 -0.1119241 0.4282948 1.27456 -0.1475052 0.4282948 1.27456 -0.1846606 0.4282948 1.27456 -0.2245119 0.4282948 1.27456 -0.2679612 0.4282948 1.27456 -0.3158431 0.4282948 1.27456 -0.3689944 0.4282948 1.27456 -0.4282948 0.4282948 1.27456 -0.494694 0.4282948 1.27456 -0.5692344 0.4282948 1.27456 -0.6530715 0.4282948 1.27456 -0.7474945 0.4282948 1.27456 -0.8539475 0.4282948 1.27456 -0.974052 0.4282948 1.27456 -1.113885 0.4282948 1.27456 -1.27456 0.4282948 1.27456 -1.458117 0.4282948 1.27456 -1.667858 0.4282948 1.27456 -1.907556 0.4282948 1.27456 -2.181521 0.4282948 1.27456 -2.494678 0.4282948 1.27456 -2.852659 0.4282948 1.27456 -3.261896 0.4282948 1.27456 -3.729748 0.4282948 1.27456 -4.264621 0.4282948 1.27456 -4.876131 0.4282948 1.27456 -5.575266 0.4282948 1.27456 -6.374593 0.4282948 1.27456 -0 0.494694 1.27456 -0 0.494694 1.27456 -0 0.494694 1.27456 -0.002268731 0.494694 1.27456 -0.07076883 0.494694 1.27456 -0.1119241 0.494694 1.27456 -0.1475052 0.494694 1.27456 -0.1846606 0.494694 1.27456 -0.2245119 0.494694 1.27456 -0.2679612 0.494694 1.27456 -0.3158431 0.494694 1.27456 -0.3689944 0.494694 1.27456 -0.4282948 0.494694 1.27456 -0.494694 0.494694 1.27456 -0.5692344 0.494694 1.27456 -0.6530715 0.494694 1.27456 -0.7474945 0.494694 1.27456 -0.8539475 0.494694 1.27456 -0.974052 0.494694 1.27456 -1.113885 0.494694 1.27456 -1.27456 0.494694 1.27456 -1.458117 0.494694 1.27456 -1.667858 0.494694 1.27456 -1.907556 0.494694 1.27456 -2.181521 0.494694 1.27456 -2.494678 0.494694 1.27456 -2.852659 0.494694 1.27456 -3.261896 0.494694 1.27456 -3.729748 0.494694 1.27456 -4.264621 0.494694 1.27456 -4.876131 0.494694 1.27456 -5.575266 0.494694 1.27456 -6.374593 0.494694 1.27456 -0 0.5692344 1.27456 -0 0.5692344 1.27456 -0 0.5692344 1.27456 -0.002268731 0.5692344 1.27456 -0.07076883 0.5692344 1.27456 -0.1119241 0.5692344 1.27456 -0.1475052 0.5692344 1.27456 -0.1846606 0.5692344 1.27456 -0.2245119 0.5692344 1.27456 -0.2679612 0.5692344 1.27456 -0.3158431 0.5692344 1.27456 -0.3689944 0.5692344 1.27456 -0.4282948 0.5692344 1.27456 -0.494694 0.5692344 1.27456 -0.5692344 0.5692344 1.27456 -0.6530715 0.5692344 1.27456 -0.7474945 0.5692344 1.27456 -0.8539475 0.5692344 1.27456 -0.974052 0.5692344 1.27456 -1.113885 0.5692344 1.27456 -1.27456 0.5692344 1.27456 -1.458117 0.5692344 1.27456 -1.667858 0.5692344 1.27456 -1.907556 0.5692344 1.27456 -2.181521 0.5692344 1.27456 -2.494678 0.5692344 1.27456 -2.852659 0.5692344 1.27456 -3.261896 0.5692344 1.27456 -3.729748 0.5692344 1.27456 -4.264621 0.5692344 1.27456 -4.876131 0.5692344 1.27456 -5.575266 0.5692344 1.27456 -6.374593 0.5692344 1.27456 -0 0.6530715 1.27456 -0 0.6530715 1.27456 -0 0.6530715 1.27456 -0.002268731 0.6530715 1.27456 -0.07076883 0.6530715 1.27456 -0.1119241 0.6530715 1.27456 -0.1475052 0.6530715 1.27456 -0.1846606 0.6530715 1.27456 -0.2245119 0.6530715 1.27456 -0.2679612 0.6530715 1.27456 -0.3158431 0.6530715 1.27456 -0.3689944 0.6530715 1.27456 -0.4282948 0.6530715 1.27456 -0.494694 0.6530715 1.27456 -0.5692344 0.6530715 1.27456 -0.6530715 0.6530715 1.27456 -0.7474945 0.6530715 1.27456 -0.8539475 0.6530715 1.27456 -0.974052 0.6530715 1.27456 -1.113885 0.6530715 1.27456 -1.27456 0.6530715 1.27456 -1.458117 0.6530715 1.27456 -1.667858 0.6530715 1.27456 -1.907556 0.6530715 1.27456 -2.181521 0.6530715 1.27456 -2.494678 0.6530715 1.27456 -2.852659 0.6530715 1.27456 -3.261896 0.6530715 1.27456 -3.729748 0.6530715 1.27456 -4.264621 0.6530715 1.27456 -4.876131 0.6530715 1.27456 -5.575266 0.6530715 1.27456 -6.374593 0.6530715 1.27456 -0 0.7474945 1.27456 -0 0.7474945 1.27456 -0 0.7474945 1.27456 -0.002268731 0.7474945 1.27456 -0.07076883 0.7474945 1.27456 -0.1119241 0.7474945 1.27456 -0.1475052 0.7474945 1.27456 -0.1846606 0.7474945 1.27456 -0.2245119 0.7474945 1.27456 -0.2679612 0.7474945 1.27456 -0.3158431 0.7474945 1.27456 -0.3689944 0.7474945 1.27456 -0.4282948 0.7474945 1.27456 -0.494694 0.7474945 1.27456 -0.5692344 0.7474945 1.27456 -0.6530715 0.7474945 1.27456 -0.7474945 0.7474945 1.27456 -0.8539475 0.7474945 1.27456 -0.974052 0.7474945 1.27456 -1.113885 0.7474945 1.27456 -1.27456 0.7474945 1.27456 -1.458117 0.7474945 1.27456 -1.667858 0.7474945 1.27456 -1.907556 0.7474945 1.27456 -2.181521 0.7474945 1.27456 -2.494678 0.7474945 1.27456 -2.852659 0.7474945 1.27456 -3.261896 0.7474945 1.27456 -3.729748 0.7474945 1.27456 -4.264621 0.7474945 1.27456 -4.876131 0.7474945 1.27456 -5.575266 0.7474945 1.27456 -6.374593 0.7474945 1.27456 -0 0.8539475 1.27456 -0 0.8539475 1.27456 -0 0.8539475 1.27456 -0.002268731 0.8539475 1.27456 -0.07076883 0.8539475 1.27456 -0.1119241 0.8539475 1.27456 -0.1475052 0.8539475 1.27456 -0.1846606 0.8539475 1.27456 -0.2245119 0.8539475 1.27456 -0.2679612 0.8539475 1.27456 -0.3158431 0.8539475 1.27456 -0.3689944 0.8539475 1.27456 -0.4282948 0.8539475 1.27456 -0.494694 0.8539475 1.27456 -0.5692344 0.8539475 1.27456 -0.6530715 0.8539475 1.27456 -0.7474945 0.8539475 1.27456 -0.8539475 0.8539475 1.27456 -0.974052 0.8539475 1.27456 -1.113885 0.8539475 1.27456 -1.27456 0.8539475 1.27456 -1.458117 0.8539475 1.27456 -1.667858 0.8539475 1.27456 -1.907556 0.8539475 1.27456 -2.181521 0.8539475 1.27456 -2.494678 0.8539475 1.27456 -2.852659 0.8539475 1.27456 -3.261896 0.8539475 1.27456 -3.729748 0.8539475 1.27456 -4.264621 0.8539475 1.27456 -4.876131 0.8539475 1.27456 -5.575266 0.8539475 1.27456 -6.374593 0.8539475 1.27456 -0 0.974052 1.27456 -0 0.974052 1.27456 -0 0.974052 1.27456 -0.002268731 0.974052 1.27456 -0.07076883 0.974052 1.27456 -0.1119241 0.974052 1.27456 -0.1475052 0.974052 1.27456 -0.1846606 0.974052 1.27456 -0.2245119 0.974052 1.27456 -0.2679612 0.974052 1.27456 -0.3158431 0.974052 1.27456 -0.3689944 0.974052 1.27456 -0.4282948 0.974052 1.27456 -0.494694 0.974052 1.27456 -0.5692344 0.974052 1.27456 -0.6530715 0.974052 1.27456 -0.7474945 0.974052 1.27456 -0.8539475 0.974052 1.27456 -0.974052 0.974052 1.27456 -1.113885 0.974052 1.27456 -1.27456 0.974052 1.27456 -1.458117 0.974052 1.27456 -1.667858 0.974052 1.27456 -1.907556 0.974052 1.27456 -2.181521 0.974052 1.27456 -2.494678 0.974052 1.27456 -2.852659 0.974052 1.27456 -3.261896 0.974052 1.27456 -3.729748 0.974052 1.27456 -4.264621 0.974052 1.27456 -4.876131 0.974052 1.27456 -5.575266 0.974052 1.27456 -6.374593 0.974052 1.27456 -0 1.113885 1.27456 -0 1.113885 1.27456 -0 1.113885 1.27456 -0.002268731 1.113885 1.27456 -0.07076883 1.113885 1.27456 -0.1119241 1.113885 1.27456 -0.1475052 1.113885 1.27456 -0.1846606 1.113885 1.27456 -0.2245119 1.113885 1.27456 -0.2679612 1.113885 1.27456 -0.3158431 1.113885 1.27456 -0.3689944 1.113885 1.27456 -0.4282948 1.113885 1.27456 -0.494694 1.113885 1.27456 -0.5692344 1.113885 1.27456 -0.6530715 1.113885 1.27456 -0.7474945 1.113885 1.27456 -0.8539475 1.113885 1.27456 -0.974052 1.113885 1.27456 -1.113885 1.113885 1.27456 -1.27456 1.113885 1.27456 -1.458117 1.113885 1.27456 -1.667858 1.113885 1.27456 -1.907556 1.113885 1.27456 -2.181521 1.113885 1.27456 -2.494678 1.113885 1.27456 -2.852659 1.113885 1.27456 -3.261896 1.113885 1.27456 -3.729748 1.113885 1.27456 -4.264621 1.113885 1.27456 -4.876131 1.113885 1.27456 -5.575266 1.113885 1.27456 -6.374593 1.113885 1.27456 -0 1.27456 1.27456 -0 1.27456 1.27456 -0 1.27456 1.27456 -0.002268731 1.27456 1.27456 -0.07076883 1.27456 1.27456 -0.1119241 1.27456 1.27456 -0.1475052 1.27456 1.27456 -0.1846606 1.27456 1.27456 -0.2245119 1.27456 1.27456 -0.2679612 1.27456 1.27456 -0.3158431 1.27456 1.27456 -0.3689944 1.27456 1.27456 -0.4282948 1.27456 1.27456 -0.494694 1.27456 1.27456 -0.5692344 1.27456 1.27456 -0.6530715 1.27456 1.27456 -0.7474945 1.27456 1.27456 -0.8539475 1.27456 1.27456 -0.974052 1.27456 1.27456 -1.113885 1.27456 1.27456 -1.27456 1.27456 1.27456 -1.458117 1.27456 1.27456 -1.667858 1.27456 1.27456 -1.907556 1.27456 1.27456 -2.181521 1.27456 1.27456 -2.494678 1.27456 1.27456 -2.852659 1.27456 1.27456 -3.261896 1.27456 1.27456 -3.729748 1.27456 1.27456 -4.264621 1.27456 1.27456 -4.876131 1.27456 1.27456 -5.575266 1.27456 1.27456 -6.374593 1.27456 1.27456 -0 1.458117 1.27456 -0 1.458117 1.27456 -0 1.458117 1.27456 -0.002268731 1.458117 1.27456 -0.07076883 1.458117 1.27456 -0.1119241 1.458117 1.27456 -0.1475052 1.458117 1.27456 -0.1846606 1.458117 1.27456 -0.2245119 1.458117 1.27456 -0.2679612 1.458117 1.27456 -0.3158431 1.458117 1.27456 -0.3689944 1.458117 1.27456 -0.4282948 1.458117 1.27456 -0.494694 1.458117 1.27456 -0.5692344 1.458117 1.27456 -0.6530715 1.458117 1.27456 -0.7474945 1.458117 1.27456 -0.8539475 1.458117 1.27456 -0.974052 1.458117 1.27456 -1.113885 1.458117 1.27456 -1.27456 1.458117 1.27456 -1.458117 1.458117 1.27456 -1.667858 1.458117 1.27456 -1.907556 1.458117 1.27456 -2.181521 1.458117 1.27456 -2.494678 1.458117 1.27456 -2.852659 1.458117 1.27456 -3.261896 1.458117 1.27456 -3.729748 1.458117 1.27456 -4.264621 1.458117 1.27456 -4.876131 1.458117 1.27456 -5.575266 1.458117 1.27456 -6.374593 1.458117 1.27456 -0 1.667858 1.27456 -0 1.667858 1.27456 -0 1.667858 1.27456 -0.002268731 1.667858 1.27456 -0.07076883 1.667858 1.27456 -0.1119241 1.667858 1.27456 -0.1475052 1.667858 1.27456 -0.1846606 1.667858 1.27456 -0.2245119 1.667858 1.27456 -0.2679612 1.667858 1.27456 -0.3158431 1.667858 1.27456 -0.3689944 1.667858 1.27456 -0.4282948 1.667858 1.27456 -0.494694 1.667858 1.27456 -0.5692344 1.667858 1.27456 -0.6530715 1.667858 1.27456 -0.7474945 1.667858 1.27456 -0.8539475 1.667858 1.27456 -0.974052 1.667858 1.27456 -1.113885 1.667858 1.27456 -1.27456 1.667858 1.27456 -1.458117 1.667858 1.27456 -1.667858 1.667858 1.27456 -1.907556 1.667858 1.27456 -2.181521 1.667858 1.27456 -2.494678 1.667858 1.27456 -2.852659 1.667858 1.27456 -3.261896 1.667858 1.27456 -3.729748 1.667858 1.27456 -4.264621 1.667858 1.27456 -4.876131 1.667858 1.27456 -5.575266 1.667858 1.27456 -6.374593 1.667858 1.27456 -0 1.907556 1.27456 -0 1.907556 1.27456 -0 1.907556 1.27456 -0.002268731 1.907556 1.27456 -0.07076883 1.907556 1.27456 -0.1119241 1.907556 1.27456 -0.1475052 1.907556 1.27456 -0.1846606 1.907556 1.27456 -0.2245119 1.907556 1.27456 -0.2679612 1.907556 1.27456 -0.3158431 1.907556 1.27456 -0.3689944 1.907556 1.27456 -0.4282948 1.907556 1.27456 -0.494694 1.907556 1.27456 -0.5692344 1.907556 1.27456 -0.6530715 1.907556 1.27456 -0.7474945 1.907556 1.27456 -0.8539475 1.907556 1.27456 -0.974052 1.907556 1.27456 -1.113885 1.907556 1.27456 -1.27456 1.907556 1.27456 -1.458117 1.907556 1.27456 -1.667858 1.907556 1.27456 -1.907556 1.907556 1.27456 -2.181521 1.907556 1.27456 -2.494678 1.907556 1.27456 -2.852659 1.907556 1.27456 -3.261896 1.907556 1.27456 -3.729748 1.907556 1.27456 -4.264621 1.907556 1.27456 -4.876131 1.907556 1.27456 -5.575266 1.907556 1.27456 -6.374593 1.907556 1.27456 -0 2.181521 1.27456 -0 2.181521 1.27456 -0 2.181521 1.27456 -0.002268731 2.181521 1.27456 -0.07076883 2.181521 1.27456 -0.1119241 2.181521 1.27456 -0.1475052 2.181521 1.27456 -0.1846606 2.181521 1.27456 -0.2245119 2.181521 1.27456 -0.2679612 2.181521 1.27456 -0.3158431 2.181521 1.27456 -0.3689944 2.181521 1.27456 -0.4282948 2.181521 1.27456 -0.494694 2.181521 1.27456 -0.5692344 2.181521 1.27456 -0.6530715 2.181521 1.27456 -0.7474945 2.181521 1.27456 -0.8539475 2.181521 1.27456 -0.974052 2.181521 1.27456 -1.113885 2.181521 1.27456 -1.27456 2.181521 1.27456 -1.458117 2.181521 1.27456 -1.667858 2.181521 1.27456 -1.907556 2.181521 1.27456 -2.181521 2.181521 1.27456 -2.494678 2.181521 1.27456 -2.852659 2.181521 1.27456 -3.261896 2.181521 1.27456 -3.729748 2.181521 1.27456 -4.264621 2.181521 1.27456 -4.876131 2.181521 1.27456 -5.575266 2.181521 1.27456 -6.374593 2.181521 1.27456 -0 2.494678 1.27456 -0 2.494678 1.27456 -0 2.494678 1.27456 -0.002268731 2.494678 1.27456 -0.07076883 2.494678 1.27456 -0.1119241 2.494678 1.27456 -0.1475052 2.494678 1.27456 -0.1846606 2.494678 1.27456 -0.2245119 2.494678 1.27456 -0.2679612 2.494678 1.27456 -0.3158431 2.494678 1.27456 -0.3689944 2.494678 1.27456 -0.4282948 2.494678 1.27456 -0.494694 2.494678 1.27456 -0.5692344 2.494678 1.27456 -0.6530715 2.494678 1.27456 -0.7474945 2.494678 1.27456 -0.8539475 2.494678 1.27456 -0.974052 2.494678 1.27456 -1.113885 2.494678 1.27456 -1.27456 2.494678 1.27456 -1.458117 2.494678 1.27456 -1.667858 2.494678 1.27456 -1.907556 2.494678 1.27456 -2.181521 2.494678 1.27456 -2.494678 2.494678 1.27456 -2.852659 2.494678 1.27456 -3.261896 2.494678 1.27456 -3.729748 2.494678 1.27456 -4.264621 2.494678 1.27456 -4.876131 2.494678 1.27456 -5.575266 2.494678 1.27456 -6.374593 2.494678 1.27456 -0 2.852659 1.27456 -0 2.852659 1.27456 -0 2.852659 1.27456 -0.002268731 2.852659 1.27456 -0.07076883 2.852659 1.27456 -0.1119241 2.852659 1.27456 -0.1475052 2.852659 1.27456 -0.1846606 2.852659 1.27456 -0.2245119 2.852659 1.27456 -0.2679612 2.852659 1.27456 -0.3158431 2.852659 1.27456 -0.3689944 2.852659 1.27456 -0.4282948 2.852659 1.27456 -0.494694 2.852659 1.27456 -0.5692344 2.852659 1.27456 -0.6530715 2.852659 1.27456 -0.7474945 2.852659 1.27456 -0.8539475 2.852659 1.27456 -0.974052 2.852659 1.27456 -1.113885 2.852659 1.27456 -1.27456 2.852659 1.27456 -1.458117 2.852659 1.27456 -1.667858 2.852659 1.27456 -1.907556 2.852659 1.27456 -2.181521 2.852659 1.27456 -2.494678 2.852659 1.27456 -2.852659 2.852659 1.27456 -3.261896 2.852659 1.27456 -3.729748 2.852659 1.27456 -4.264621 2.852659 1.27456 -4.876131 2.852659 1.27456 -5.575266 2.852659 1.27456 -6.374593 2.852659 1.27456 -0 3.261896 1.27456 -0 3.261896 1.27456 -0 3.261896 1.27456 -0.002268731 3.261896 1.27456 -0.07076883 3.261896 1.27456 -0.1119241 3.261896 1.27456 -0.1475052 3.261896 1.27456 -0.1846606 3.261896 1.27456 -0.2245119 3.261896 1.27456 -0.2679612 3.261896 1.27456 -0.3158431 3.261896 1.27456 -0.3689944 3.261896 1.27456 -0.4282948 3.261896 1.27456 -0.494694 3.261896 1.27456 -0.5692344 3.261896 1.27456 -0.6530715 3.261896 1.27456 -0.7474945 3.261896 1.27456 -0.8539475 3.261896 1.27456 -0.974052 3.261896 1.27456 -1.113885 3.261896 1.27456 -1.27456 3.261896 1.27456 -1.458117 3.261896 1.27456 -1.667858 3.261896 1.27456 -1.907556 3.261896 1.27456 -2.181521 3.261896 1.27456 -2.494678 3.261896 1.27456 -2.852659 3.261896 1.27456 -3.261896 3.261896 1.27456 -3.729748 3.261896 1.27456 -4.264621 3.261896 1.27456 -4.876131 3.261896 1.27456 -5.575266 3.261896 1.27456 -6.374593 3.261896 1.27456 -0 3.729748 1.27456 -0 3.729748 1.27456 -0 3.729748 1.27456 -0.002268731 3.729748 1.27456 -0.07076883 3.729748 1.27456 -0.1119241 3.729748 1.27456 -0.1475052 3.729748 1.27456 -0.1846606 3.729748 1.27456 -0.2245119 3.729748 1.27456 -0.2679612 3.729748 1.27456 -0.3158431 3.729748 1.27456 -0.3689944 3.729748 1.27456 -0.4282948 3.729748 1.27456 -0.494694 3.729748 1.27456 -0.5692344 3.729748 1.27456 -0.6530715 3.729748 1.27456 -0.7474945 3.729748 1.27456 -0.8539475 3.729748 1.27456 -0.974052 3.729748 1.27456 -1.113885 3.729748 1.27456 -1.27456 3.729748 1.27456 -1.458117 3.729748 1.27456 -1.667858 3.729748 1.27456 -1.907556 3.729748 1.27456 -2.181521 3.729748 1.27456 -2.494678 3.729748 1.27456 -2.852659 3.729748 1.27456 -3.261896 3.729748 1.27456 -3.729748 3.729748 1.27456 -4.264621 3.729748 1.27456 -4.876131 3.729748 1.27456 -5.575266 3.729748 1.27456 -6.374593 3.729748 1.27456 -0 4.264621 1.27456 -0 4.264621 1.27456 -0 4.264621 1.27456 -0.002268731 4.264621 1.27456 -0.07076883 4.264621 1.27456 -0.1119241 4.264621 1.27456 -0.1475052 4.264621 1.27456 -0.1846606 4.264621 1.27456 -0.2245119 4.264621 1.27456 -0.2679612 4.264621 1.27456 -0.3158431 4.264621 1.27456 -0.3689944 4.264621 1.27456 -0.4282948 4.264621 1.27456 -0.494694 4.264621 1.27456 -0.5692344 4.264621 1.27456 -0.6530715 4.264621 1.27456 -0.7474945 4.264621 1.27456 -0.8539475 4.264621 1.27456 -0.974052 4.264621 1.27456 -1.113885 4.264621 1.27456 -1.27456 4.264621 1.27456 -1.458117 4.264621 1.27456 -1.667858 4.264621 1.27456 -1.907556 4.264621 1.27456 -2.181521 4.264621 1.27456 -2.494678 4.264621 1.27456 -2.852659 4.264621 1.27456 -3.261896 4.264621 1.27456 -3.729748 4.264621 1.27456 -4.264621 4.264621 1.27456 -4.876131 4.264621 1.27456 -5.575266 4.264621 1.27456 -6.374593 4.264621 1.27456 -0 4.876131 1.27456 -0 4.876131 1.27456 -0 4.876131 1.27456 -0.002268731 4.876131 1.27456 -0.07076883 4.876131 1.27456 -0.1119241 4.876131 1.27456 -0.1475052 4.876131 1.27456 -0.1846606 4.876131 1.27456 -0.2245119 4.876131 1.27456 -0.2679612 4.876131 1.27456 -0.3158431 4.876131 1.27456 -0.3689944 4.876131 1.27456 -0.4282948 4.876131 1.27456 -0.494694 4.876131 1.27456 -0.5692344 4.876131 1.27456 -0.6530715 4.876131 1.27456 -0.7474945 4.876131 1.27456 -0.8539475 4.876131 1.27456 -0.974052 4.876131 1.27456 -1.113885 4.876131 1.27456 -1.27456 4.876131 1.27456 -1.458117 4.876131 1.27456 -1.667858 4.876131 1.27456 -1.907556 4.876131 1.27456 -2.181521 4.876131 1.27456 -2.494678 4.876131 1.27456 -2.852659 4.876131 1.27456 -3.261896 4.876131 1.27456 -3.729748 4.876131 1.27456 -4.264621 4.876131 1.27456 -4.876131 4.876131 1.27456 -5.575266 4.876131 1.27456 -6.374593 4.876131 1.27456 -0 5.575266 1.27456 -0 5.575266 1.27456 -0 5.575266 1.27456 -0.002268731 5.575266 1.27456 -0.07076883 5.575266 1.27456 -0.1119241 5.575266 1.27456 -0.1475052 5.575266 1.27456 -0.1846606 5.575266 1.27456 -0.2245119 5.575266 1.27456 -0.2679612 5.575266 1.27456 -0.3158431 5.575266 1.27456 -0.3689944 5.575266 1.27456 -0.4282948 5.575266 1.27456 -0.494694 5.575266 1.27456 -0.5692344 5.575266 1.27456 -0.6530715 5.575266 1.27456 -0.7474945 5.575266 1.27456 -0.8539475 5.575266 1.27456 -0.974052 5.575266 1.27456 -1.113885 5.575266 1.27456 -1.27456 5.575266 1.27456 -1.458117 5.575266 1.27456 -1.667858 5.575266 1.27456 -1.907556 5.575266 1.27456 -2.181521 5.575266 1.27456 -2.494678 5.575266 1.27456 -2.852659 5.575266 1.27456 -3.261896 5.575266 1.27456 -3.729748 5.575266 1.27456 -4.264621 5.575266 1.27456 -4.876131 5.575266 1.27456 -5.575266 5.575266 1.27456 -6.374593 5.575266 1.27456 -0 6.374593 1.27456 -0 6.374593 1.27456 -0 6.374593 1.27456 -0.002268731 6.374593 1.27456 -0.07076883 6.374593 1.27456 -0.1119241 6.374593 1.27456 -0.1475052 6.374593 1.27456 -0.1846606 6.374593 1.27456 -0.2245119 6.374593 1.27456 -0.2679612 6.374593 1.27456 -0.3158431 6.374593 1.27456 -0.3689944 6.374593 1.27456 -0.4282948 6.374593 1.27456 -0.494694 6.374593 1.27456 -0.5692344 6.374593 1.27456 -0.6530715 6.374593 1.27456 -0.7474945 6.374593 1.27456 -0.8539475 6.374593 1.27456 -0.974052 6.374593 1.27456 -1.113885 6.374593 1.27456 -1.27456 6.374593 1.27456 -1.458117 6.374593 1.27456 -1.667858 6.374593 1.27456 -1.907556 6.374593 1.27456 -2.181521 6.374593 1.27456 -2.494678 6.374593 1.27456 -2.852659 6.374593 1.27456 -3.261896 6.374593 1.27456 -3.729748 6.374593 1.27456 -4.264621 6.374593 1.27456 -4.876131 6.374593 1.27456 -5.575266 6.374593 1.27456 -6.374593 6.374593 1.27456 -0 0 1.458117 -0 0 1.458117 -0 0 1.458117 -0.002268731 0 1.458117 -0.07076883 0 1.458117 -0.1119241 0 1.458117 -0.1475052 0 1.458117 -0.1846606 0 1.458117 -0.2245119 0 1.458117 -0.2679612 0 1.458117 -0.3158431 0 1.458117 -0.3689944 0 1.458117 -0.4282948 0 1.458117 -0.494694 0 1.458117 -0.5692344 0 1.458117 -0.6530715 0 1.458117 -0.7474945 0 1.458117 -0.8539475 0 1.458117 -0.974052 0 1.458117 -1.113885 0 1.458117 -1.27456 0 1.458117 -1.458117 0 1.458117 -1.667858 0 1.458117 -1.907556 0 1.458117 -2.181521 0 1.458117 -2.494678 0 1.458117 -2.852659 0 1.458117 -3.261896 0 1.458117 -3.729748 0 1.458117 -4.264621 0 1.458117 -4.876131 0 1.458117 -5.575266 0 1.458117 -6.374593 0 1.458117 -0 0 1.458117 -0 0 1.458117 -0 0 1.458117 -0.002268731 0 1.458117 -0.07076883 0 1.458117 -0.1119241 0 1.458117 -0.1475052 0 1.458117 -0.1846606 0 1.458117 -0.2245119 0 1.458117 -0.2679612 0 1.458117 -0.3158431 0 1.458117 -0.3689944 0 1.458117 -0.4282948 0 1.458117 -0.494694 0 1.458117 -0.5692344 0 1.458117 -0.6530715 0 1.458117 -0.7474945 0 1.458117 -0.8539475 0 1.458117 -0.974052 0 1.458117 -1.113885 0 1.458117 -1.27456 0 1.458117 -1.458117 0 1.458117 -1.667858 0 1.458117 -1.907556 0 1.458117 -2.181521 0 1.458117 -2.494678 0 1.458117 -2.852659 0 1.458117 -3.261896 0 1.458117 -3.729748 0 1.458117 -4.264621 0 1.458117 -4.876131 0 1.458117 -5.575266 0 1.458117 -6.374593 0 1.458117 -0 0 1.458117 -0 0 1.458117 -0 0 1.458117 -0.002268731 0 1.458117 -0.07076883 0 1.458117 -0.1119241 0 1.458117 -0.1475052 0 1.458117 -0.1846606 0 1.458117 -0.2245119 0 1.458117 -0.2679612 0 1.458117 -0.3158431 0 1.458117 -0.3689944 0 1.458117 -0.4282948 0 1.458117 -0.494694 0 1.458117 -0.5692344 0 1.458117 -0.6530715 0 1.458117 -0.7474945 0 1.458117 -0.8539475 0 1.458117 -0.974052 0 1.458117 -1.113885 0 1.458117 -1.27456 0 1.458117 -1.458117 0 1.458117 -1.667858 0 1.458117 -1.907556 0 1.458117 -2.181521 0 1.458117 -2.494678 0 1.458117 -2.852659 0 1.458117 -3.261896 0 1.458117 -3.729748 0 1.458117 -4.264621 0 1.458117 -4.876131 0 1.458117 -5.575266 0 1.458117 -6.374593 0 1.458117 -0 0.002268731 1.458117 -0 0.002268731 1.458117 -0 0.002268731 1.458117 -0.002268731 0.002268731 1.458117 -0.07076883 0.002268731 1.458117 -0.1119241 0.002268731 1.458117 -0.1475052 0.002268731 1.458117 -0.1846606 0.002268731 1.458117 -0.2245119 0.002268731 1.458117 -0.2679612 0.002268731 1.458117 -0.3158431 0.002268731 1.458117 -0.3689944 0.002268731 1.458117 -0.4282948 0.002268731 1.458117 -0.494694 0.002268731 1.458117 -0.5692344 0.002268731 1.458117 -0.6530715 0.002268731 1.458117 -0.7474945 0.002268731 1.458117 -0.8539475 0.002268731 1.458117 -0.974052 0.002268731 1.458117 -1.113885 0.002268731 1.458117 -1.27456 0.002268731 1.458117 -1.458117 0.002268731 1.458117 -1.667858 0.002268731 1.458117 -1.907556 0.002268731 1.458117 -2.181521 0.002268731 1.458117 -2.494678 0.002268731 1.458117 -2.852659 0.002268731 1.458117 -3.261896 0.002268731 1.458117 -3.729748 0.002268731 1.458117 -4.264621 0.002268731 1.458117 -4.876131 0.002268731 1.458117 -5.575266 0.002268731 1.458117 -6.374593 0.002268731 1.458117 -0 0.07076883 1.458117 -0 0.07076883 1.458117 -0 0.07076883 1.458117 -0.002268731 0.07076883 1.458117 -0.07076883 0.07076883 1.458117 -0.1119241 0.07076883 1.458117 -0.1475052 0.07076883 1.458117 -0.1846606 0.07076883 1.458117 -0.2245119 0.07076883 1.458117 -0.2679612 0.07076883 1.458117 -0.3158431 0.07076883 1.458117 -0.3689944 0.07076883 1.458117 -0.4282948 0.07076883 1.458117 -0.494694 0.07076883 1.458117 -0.5692344 0.07076883 1.458117 -0.6530715 0.07076883 1.458117 -0.7474945 0.07076883 1.458117 -0.8539475 0.07076883 1.458117 -0.974052 0.07076883 1.458117 -1.113885 0.07076883 1.458117 -1.27456 0.07076883 1.458117 -1.458117 0.07076883 1.458117 -1.667858 0.07076883 1.458117 -1.907556 0.07076883 1.458117 -2.181521 0.07076883 1.458117 -2.494678 0.07076883 1.458117 -2.852659 0.07076883 1.458117 -3.261896 0.07076883 1.458117 -3.729748 0.07076883 1.458117 -4.264621 0.07076883 1.458117 -4.876131 0.07076883 1.458117 -5.575266 0.07076883 1.458117 -6.374593 0.07076883 1.458117 -0 0.1119241 1.458117 -0 0.1119241 1.458117 -0 0.1119241 1.458117 -0.002268731 0.1119241 1.458117 -0.07076883 0.1119241 1.458117 -0.1119241 0.1119241 1.458117 -0.1475052 0.1119241 1.458117 -0.1846606 0.1119241 1.458117 -0.2245119 0.1119241 1.458117 -0.2679612 0.1119241 1.458117 -0.3158431 0.1119241 1.458117 -0.3689944 0.1119241 1.458117 -0.4282948 0.1119241 1.458117 -0.494694 0.1119241 1.458117 -0.5692344 0.1119241 1.458117 -0.6530715 0.1119241 1.458117 -0.7474945 0.1119241 1.458117 -0.8539475 0.1119241 1.458117 -0.974052 0.1119241 1.458117 -1.113885 0.1119241 1.458117 -1.27456 0.1119241 1.458117 -1.458117 0.1119241 1.458117 -1.667858 0.1119241 1.458117 -1.907556 0.1119241 1.458117 -2.181521 0.1119241 1.458117 -2.494678 0.1119241 1.458117 -2.852659 0.1119241 1.458117 -3.261896 0.1119241 1.458117 -3.729748 0.1119241 1.458117 -4.264621 0.1119241 1.458117 -4.876131 0.1119241 1.458117 -5.575266 0.1119241 1.458117 -6.374593 0.1119241 1.458117 -0 0.1475052 1.458117 -0 0.1475052 1.458117 -0 0.1475052 1.458117 -0.002268731 0.1475052 1.458117 -0.07076883 0.1475052 1.458117 -0.1119241 0.1475052 1.458117 -0.1475052 0.1475052 1.458117 -0.1846606 0.1475052 1.458117 -0.2245119 0.1475052 1.458117 -0.2679612 0.1475052 1.458117 -0.3158431 0.1475052 1.458117 -0.3689944 0.1475052 1.458117 -0.4282948 0.1475052 1.458117 -0.494694 0.1475052 1.458117 -0.5692344 0.1475052 1.458117 -0.6530715 0.1475052 1.458117 -0.7474945 0.1475052 1.458117 -0.8539475 0.1475052 1.458117 -0.974052 0.1475052 1.458117 -1.113885 0.1475052 1.458117 -1.27456 0.1475052 1.458117 -1.458117 0.1475052 1.458117 -1.667858 0.1475052 1.458117 -1.907556 0.1475052 1.458117 -2.181521 0.1475052 1.458117 -2.494678 0.1475052 1.458117 -2.852659 0.1475052 1.458117 -3.261896 0.1475052 1.458117 -3.729748 0.1475052 1.458117 -4.264621 0.1475052 1.458117 -4.876131 0.1475052 1.458117 -5.575266 0.1475052 1.458117 -6.374593 0.1475052 1.458117 -0 0.1846606 1.458117 -0 0.1846606 1.458117 -0 0.1846606 1.458117 -0.002268731 0.1846606 1.458117 -0.07076883 0.1846606 1.458117 -0.1119241 0.1846606 1.458117 -0.1475052 0.1846606 1.458117 -0.1846606 0.1846606 1.458117 -0.2245119 0.1846606 1.458117 -0.2679612 0.1846606 1.458117 -0.3158431 0.1846606 1.458117 -0.3689944 0.1846606 1.458117 -0.4282948 0.1846606 1.458117 -0.494694 0.1846606 1.458117 -0.5692344 0.1846606 1.458117 -0.6530715 0.1846606 1.458117 -0.7474945 0.1846606 1.458117 -0.8539475 0.1846606 1.458117 -0.974052 0.1846606 1.458117 -1.113885 0.1846606 1.458117 -1.27456 0.1846606 1.458117 -1.458117 0.1846606 1.458117 -1.667858 0.1846606 1.458117 -1.907556 0.1846606 1.458117 -2.181521 0.1846606 1.458117 -2.494678 0.1846606 1.458117 -2.852659 0.1846606 1.458117 -3.261896 0.1846606 1.458117 -3.729748 0.1846606 1.458117 -4.264621 0.1846606 1.458117 -4.876131 0.1846606 1.458117 -5.575266 0.1846606 1.458117 -6.374593 0.1846606 1.458117 -0 0.2245119 1.458117 -0 0.2245119 1.458117 -0 0.2245119 1.458117 -0.002268731 0.2245119 1.458117 -0.07076883 0.2245119 1.458117 -0.1119241 0.2245119 1.458117 -0.1475052 0.2245119 1.458117 -0.1846606 0.2245119 1.458117 -0.2245119 0.2245119 1.458117 -0.2679612 0.2245119 1.458117 -0.3158431 0.2245119 1.458117 -0.3689944 0.2245119 1.458117 -0.4282948 0.2245119 1.458117 -0.494694 0.2245119 1.458117 -0.5692344 0.2245119 1.458117 -0.6530715 0.2245119 1.458117 -0.7474945 0.2245119 1.458117 -0.8539475 0.2245119 1.458117 -0.974052 0.2245119 1.458117 -1.113885 0.2245119 1.458117 -1.27456 0.2245119 1.458117 -1.458117 0.2245119 1.458117 -1.667858 0.2245119 1.458117 -1.907556 0.2245119 1.458117 -2.181521 0.2245119 1.458117 -2.494678 0.2245119 1.458117 -2.852659 0.2245119 1.458117 -3.261896 0.2245119 1.458117 -3.729748 0.2245119 1.458117 -4.264621 0.2245119 1.458117 -4.876131 0.2245119 1.458117 -5.575266 0.2245119 1.458117 -6.374593 0.2245119 1.458117 -0 0.2679612 1.458117 -0 0.2679612 1.458117 -0 0.2679612 1.458117 -0.002268731 0.2679612 1.458117 -0.07076883 0.2679612 1.458117 -0.1119241 0.2679612 1.458117 -0.1475052 0.2679612 1.458117 -0.1846606 0.2679612 1.458117 -0.2245119 0.2679612 1.458117 -0.2679612 0.2679612 1.458117 -0.3158431 0.2679612 1.458117 -0.3689944 0.2679612 1.458117 -0.4282948 0.2679612 1.458117 -0.494694 0.2679612 1.458117 -0.5692344 0.2679612 1.458117 -0.6530715 0.2679612 1.458117 -0.7474945 0.2679612 1.458117 -0.8539475 0.2679612 1.458117 -0.974052 0.2679612 1.458117 -1.113885 0.2679612 1.458117 -1.27456 0.2679612 1.458117 -1.458117 0.2679612 1.458117 -1.667858 0.2679612 1.458117 -1.907556 0.2679612 1.458117 -2.181521 0.2679612 1.458117 -2.494678 0.2679612 1.458117 -2.852659 0.2679612 1.458117 -3.261896 0.2679612 1.458117 -3.729748 0.2679612 1.458117 -4.264621 0.2679612 1.458117 -4.876131 0.2679612 1.458117 -5.575266 0.2679612 1.458117 -6.374593 0.2679612 1.458117 -0 0.3158431 1.458117 -0 0.3158431 1.458117 -0 0.3158431 1.458117 -0.002268731 0.3158431 1.458117 -0.07076883 0.3158431 1.458117 -0.1119241 0.3158431 1.458117 -0.1475052 0.3158431 1.458117 -0.1846606 0.3158431 1.458117 -0.2245119 0.3158431 1.458117 -0.2679612 0.3158431 1.458117 -0.3158431 0.3158431 1.458117 -0.3689944 0.3158431 1.458117 -0.4282948 0.3158431 1.458117 -0.494694 0.3158431 1.458117 -0.5692344 0.3158431 1.458117 -0.6530715 0.3158431 1.458117 -0.7474945 0.3158431 1.458117 -0.8539475 0.3158431 1.458117 -0.974052 0.3158431 1.458117 -1.113885 0.3158431 1.458117 -1.27456 0.3158431 1.458117 -1.458117 0.3158431 1.458117 -1.667858 0.3158431 1.458117 -1.907556 0.3158431 1.458117 -2.181521 0.3158431 1.458117 -2.494678 0.3158431 1.458117 -2.852659 0.3158431 1.458117 -3.261896 0.3158431 1.458117 -3.729748 0.3158431 1.458117 -4.264621 0.3158431 1.458117 -4.876131 0.3158431 1.458117 -5.575266 0.3158431 1.458117 -6.374593 0.3158431 1.458117 -0 0.3689944 1.458117 -0 0.3689944 1.458117 -0 0.3689944 1.458117 -0.002268731 0.3689944 1.458117 -0.07076883 0.3689944 1.458117 -0.1119241 0.3689944 1.458117 -0.1475052 0.3689944 1.458117 -0.1846606 0.3689944 1.458117 -0.2245119 0.3689944 1.458117 -0.2679612 0.3689944 1.458117 -0.3158431 0.3689944 1.458117 -0.3689944 0.3689944 1.458117 -0.4282948 0.3689944 1.458117 -0.494694 0.3689944 1.458117 -0.5692344 0.3689944 1.458117 -0.6530715 0.3689944 1.458117 -0.7474945 0.3689944 1.458117 -0.8539475 0.3689944 1.458117 -0.974052 0.3689944 1.458117 -1.113885 0.3689944 1.458117 -1.27456 0.3689944 1.458117 -1.458117 0.3689944 1.458117 -1.667858 0.3689944 1.458117 -1.907556 0.3689944 1.458117 -2.181521 0.3689944 1.458117 -2.494678 0.3689944 1.458117 -2.852659 0.3689944 1.458117 -3.261896 0.3689944 1.458117 -3.729748 0.3689944 1.458117 -4.264621 0.3689944 1.458117 -4.876131 0.3689944 1.458117 -5.575266 0.3689944 1.458117 -6.374593 0.3689944 1.458117 -0 0.4282948 1.458117 -0 0.4282948 1.458117 -0 0.4282948 1.458117 -0.002268731 0.4282948 1.458117 -0.07076883 0.4282948 1.458117 -0.1119241 0.4282948 1.458117 -0.1475052 0.4282948 1.458117 -0.1846606 0.4282948 1.458117 -0.2245119 0.4282948 1.458117 -0.2679612 0.4282948 1.458117 -0.3158431 0.4282948 1.458117 -0.3689944 0.4282948 1.458117 -0.4282948 0.4282948 1.458117 -0.494694 0.4282948 1.458117 -0.5692344 0.4282948 1.458117 -0.6530715 0.4282948 1.458117 -0.7474945 0.4282948 1.458117 -0.8539475 0.4282948 1.458117 -0.974052 0.4282948 1.458117 -1.113885 0.4282948 1.458117 -1.27456 0.4282948 1.458117 -1.458117 0.4282948 1.458117 -1.667858 0.4282948 1.458117 -1.907556 0.4282948 1.458117 -2.181521 0.4282948 1.458117 -2.494678 0.4282948 1.458117 -2.852659 0.4282948 1.458117 -3.261896 0.4282948 1.458117 -3.729748 0.4282948 1.458117 -4.264621 0.4282948 1.458117 -4.876131 0.4282948 1.458117 -5.575266 0.4282948 1.458117 -6.374593 0.4282948 1.458117 -0 0.494694 1.458117 -0 0.494694 1.458117 -0 0.494694 1.458117 -0.002268731 0.494694 1.458117 -0.07076883 0.494694 1.458117 -0.1119241 0.494694 1.458117 -0.1475052 0.494694 1.458117 -0.1846606 0.494694 1.458117 -0.2245119 0.494694 1.458117 -0.2679612 0.494694 1.458117 -0.3158431 0.494694 1.458117 -0.3689944 0.494694 1.458117 -0.4282948 0.494694 1.458117 -0.494694 0.494694 1.458117 -0.5692344 0.494694 1.458117 -0.6530715 0.494694 1.458117 -0.7474945 0.494694 1.458117 -0.8539475 0.494694 1.458117 -0.974052 0.494694 1.458117 -1.113885 0.494694 1.458117 -1.27456 0.494694 1.458117 -1.458117 0.494694 1.458117 -1.667858 0.494694 1.458117 -1.907556 0.494694 1.458117 -2.181521 0.494694 1.458117 -2.494678 0.494694 1.458117 -2.852659 0.494694 1.458117 -3.261896 0.494694 1.458117 -3.729748 0.494694 1.458117 -4.264621 0.494694 1.458117 -4.876131 0.494694 1.458117 -5.575266 0.494694 1.458117 -6.374593 0.494694 1.458117 -0 0.5692344 1.458117 -0 0.5692344 1.458117 -0 0.5692344 1.458117 -0.002268731 0.5692344 1.458117 -0.07076883 0.5692344 1.458117 -0.1119241 0.5692344 1.458117 -0.1475052 0.5692344 1.458117 -0.1846606 0.5692344 1.458117 -0.2245119 0.5692344 1.458117 -0.2679612 0.5692344 1.458117 -0.3158431 0.5692344 1.458117 -0.3689944 0.5692344 1.458117 -0.4282948 0.5692344 1.458117 -0.494694 0.5692344 1.458117 -0.5692344 0.5692344 1.458117 -0.6530715 0.5692344 1.458117 -0.7474945 0.5692344 1.458117 -0.8539475 0.5692344 1.458117 -0.974052 0.5692344 1.458117 -1.113885 0.5692344 1.458117 -1.27456 0.5692344 1.458117 -1.458117 0.5692344 1.458117 -1.667858 0.5692344 1.458117 -1.907556 0.5692344 1.458117 -2.181521 0.5692344 1.458117 -2.494678 0.5692344 1.458117 -2.852659 0.5692344 1.458117 -3.261896 0.5692344 1.458117 -3.729748 0.5692344 1.458117 -4.264621 0.5692344 1.458117 -4.876131 0.5692344 1.458117 -5.575266 0.5692344 1.458117 -6.374593 0.5692344 1.458117 -0 0.6530715 1.458117 -0 0.6530715 1.458117 -0 0.6530715 1.458117 -0.002268731 0.6530715 1.458117 -0.07076883 0.6530715 1.458117 -0.1119241 0.6530715 1.458117 -0.1475052 0.6530715 1.458117 -0.1846606 0.6530715 1.458117 -0.2245119 0.6530715 1.458117 -0.2679612 0.6530715 1.458117 -0.3158431 0.6530715 1.458117 -0.3689944 0.6530715 1.458117 -0.4282948 0.6530715 1.458117 -0.494694 0.6530715 1.458117 -0.5692344 0.6530715 1.458117 -0.6530715 0.6530715 1.458117 -0.7474945 0.6530715 1.458117 -0.8539475 0.6530715 1.458117 -0.974052 0.6530715 1.458117 -1.113885 0.6530715 1.458117 -1.27456 0.6530715 1.458117 -1.458117 0.6530715 1.458117 -1.667858 0.6530715 1.458117 -1.907556 0.6530715 1.458117 -2.181521 0.6530715 1.458117 -2.494678 0.6530715 1.458117 -2.852659 0.6530715 1.458117 -3.261896 0.6530715 1.458117 -3.729748 0.6530715 1.458117 -4.264621 0.6530715 1.458117 -4.876131 0.6530715 1.458117 -5.575266 0.6530715 1.458117 -6.374593 0.6530715 1.458117 -0 0.7474945 1.458117 -0 0.7474945 1.458117 -0 0.7474945 1.458117 -0.002268731 0.7474945 1.458117 -0.07076883 0.7474945 1.458117 -0.1119241 0.7474945 1.458117 -0.1475052 0.7474945 1.458117 -0.1846606 0.7474945 1.458117 -0.2245119 0.7474945 1.458117 -0.2679612 0.7474945 1.458117 -0.3158431 0.7474945 1.458117 -0.3689944 0.7474945 1.458117 -0.4282948 0.7474945 1.458117 -0.494694 0.7474945 1.458117 -0.5692344 0.7474945 1.458117 -0.6530715 0.7474945 1.458117 -0.7474945 0.7474945 1.458117 -0.8539475 0.7474945 1.458117 -0.974052 0.7474945 1.458117 -1.113885 0.7474945 1.458117 -1.27456 0.7474945 1.458117 -1.458117 0.7474945 1.458117 -1.667858 0.7474945 1.458117 -1.907556 0.7474945 1.458117 -2.181521 0.7474945 1.458117 -2.494678 0.7474945 1.458117 -2.852659 0.7474945 1.458117 -3.261896 0.7474945 1.458117 -3.729748 0.7474945 1.458117 -4.264621 0.7474945 1.458117 -4.876131 0.7474945 1.458117 -5.575266 0.7474945 1.458117 -6.374593 0.7474945 1.458117 -0 0.8539475 1.458117 -0 0.8539475 1.458117 -0 0.8539475 1.458117 -0.002268731 0.8539475 1.458117 -0.07076883 0.8539475 1.458117 -0.1119241 0.8539475 1.458117 -0.1475052 0.8539475 1.458117 -0.1846606 0.8539475 1.458117 -0.2245119 0.8539475 1.458117 -0.2679612 0.8539475 1.458117 -0.3158431 0.8539475 1.458117 -0.3689944 0.8539475 1.458117 -0.4282948 0.8539475 1.458117 -0.494694 0.8539475 1.458117 -0.5692344 0.8539475 1.458117 -0.6530715 0.8539475 1.458117 -0.7474945 0.8539475 1.458117 -0.8539475 0.8539475 1.458117 -0.974052 0.8539475 1.458117 -1.113885 0.8539475 1.458117 -1.27456 0.8539475 1.458117 -1.458117 0.8539475 1.458117 -1.667858 0.8539475 1.458117 -1.907556 0.8539475 1.458117 -2.181521 0.8539475 1.458117 -2.494678 0.8539475 1.458117 -2.852659 0.8539475 1.458117 -3.261896 0.8539475 1.458117 -3.729748 0.8539475 1.458117 -4.264621 0.8539475 1.458117 -4.876131 0.8539475 1.458117 -5.575266 0.8539475 1.458117 -6.374593 0.8539475 1.458117 -0 0.974052 1.458117 -0 0.974052 1.458117 -0 0.974052 1.458117 -0.002268731 0.974052 1.458117 -0.07076883 0.974052 1.458117 -0.1119241 0.974052 1.458117 -0.1475052 0.974052 1.458117 -0.1846606 0.974052 1.458117 -0.2245119 0.974052 1.458117 -0.2679612 0.974052 1.458117 -0.3158431 0.974052 1.458117 -0.3689944 0.974052 1.458117 -0.4282948 0.974052 1.458117 -0.494694 0.974052 1.458117 -0.5692344 0.974052 1.458117 -0.6530715 0.974052 1.458117 -0.7474945 0.974052 1.458117 -0.8539475 0.974052 1.458117 -0.974052 0.974052 1.458117 -1.113885 0.974052 1.458117 -1.27456 0.974052 1.458117 -1.458117 0.974052 1.458117 -1.667858 0.974052 1.458117 -1.907556 0.974052 1.458117 -2.181521 0.974052 1.458117 -2.494678 0.974052 1.458117 -2.852659 0.974052 1.458117 -3.261896 0.974052 1.458117 -3.729748 0.974052 1.458117 -4.264621 0.974052 1.458117 -4.876131 0.974052 1.458117 -5.575266 0.974052 1.458117 -6.374593 0.974052 1.458117 -0 1.113885 1.458117 -0 1.113885 1.458117 -0 1.113885 1.458117 -0.002268731 1.113885 1.458117 -0.07076883 1.113885 1.458117 -0.1119241 1.113885 1.458117 -0.1475052 1.113885 1.458117 -0.1846606 1.113885 1.458117 -0.2245119 1.113885 1.458117 -0.2679612 1.113885 1.458117 -0.3158431 1.113885 1.458117 -0.3689944 1.113885 1.458117 -0.4282948 1.113885 1.458117 -0.494694 1.113885 1.458117 -0.5692344 1.113885 1.458117 -0.6530715 1.113885 1.458117 -0.7474945 1.113885 1.458117 -0.8539475 1.113885 1.458117 -0.974052 1.113885 1.458117 -1.113885 1.113885 1.458117 -1.27456 1.113885 1.458117 -1.458117 1.113885 1.458117 -1.667858 1.113885 1.458117 -1.907556 1.113885 1.458117 -2.181521 1.113885 1.458117 -2.494678 1.113885 1.458117 -2.852659 1.113885 1.458117 -3.261896 1.113885 1.458117 -3.729748 1.113885 1.458117 -4.264621 1.113885 1.458117 -4.876131 1.113885 1.458117 -5.575266 1.113885 1.458117 -6.374593 1.113885 1.458117 -0 1.27456 1.458117 -0 1.27456 1.458117 -0 1.27456 1.458117 -0.002268731 1.27456 1.458117 -0.07076883 1.27456 1.458117 -0.1119241 1.27456 1.458117 -0.1475052 1.27456 1.458117 -0.1846606 1.27456 1.458117 -0.2245119 1.27456 1.458117 -0.2679612 1.27456 1.458117 -0.3158431 1.27456 1.458117 -0.3689944 1.27456 1.458117 -0.4282948 1.27456 1.458117 -0.494694 1.27456 1.458117 -0.5692344 1.27456 1.458117 -0.6530715 1.27456 1.458117 -0.7474945 1.27456 1.458117 -0.8539475 1.27456 1.458117 -0.974052 1.27456 1.458117 -1.113885 1.27456 1.458117 -1.27456 1.27456 1.458117 -1.458117 1.27456 1.458117 -1.667858 1.27456 1.458117 -1.907556 1.27456 1.458117 -2.181521 1.27456 1.458117 -2.494678 1.27456 1.458117 -2.852659 1.27456 1.458117 -3.261896 1.27456 1.458117 -3.729748 1.27456 1.458117 -4.264621 1.27456 1.458117 -4.876131 1.27456 1.458117 -5.575266 1.27456 1.458117 -6.374593 1.27456 1.458117 -0 1.458117 1.458117 -0 1.458117 1.458117 -0 1.458117 1.458117 -0.002268731 1.458117 1.458117 -0.07076883 1.458117 1.458117 -0.1119241 1.458117 1.458117 -0.1475052 1.458117 1.458117 -0.1846606 1.458117 1.458117 -0.2245119 1.458117 1.458117 -0.2679612 1.458117 1.458117 -0.3158431 1.458117 1.458117 -0.3689944 1.458117 1.458117 -0.4282948 1.458117 1.458117 -0.494694 1.458117 1.458117 -0.5692344 1.458117 1.458117 -0.6530715 1.458117 1.458117 -0.7474945 1.458117 1.458117 -0.8539475 1.458117 1.458117 -0.974052 1.458117 1.458117 -1.113885 1.458117 1.458117 -1.27456 1.458117 1.458117 -1.458117 1.458117 1.458117 -1.667858 1.458117 1.458117 -1.907556 1.458117 1.458117 -2.181521 1.458117 1.458117 -2.494678 1.458117 1.458117 -2.852659 1.458117 1.458117 -3.261896 1.458117 1.458117 -3.729748 1.458117 1.458117 -4.264621 1.458117 1.458117 -4.876131 1.458117 1.458117 -5.575266 1.458117 1.458117 -6.374593 1.458117 1.458117 -0 1.667858 1.458117 -0 1.667858 1.458117 -0 1.667858 1.458117 -0.002268731 1.667858 1.458117 -0.07076883 1.667858 1.458117 -0.1119241 1.667858 1.458117 -0.1475052 1.667858 1.458117 -0.1846606 1.667858 1.458117 -0.2245119 1.667858 1.458117 -0.2679612 1.667858 1.458117 -0.3158431 1.667858 1.458117 -0.3689944 1.667858 1.458117 -0.4282948 1.667858 1.458117 -0.494694 1.667858 1.458117 -0.5692344 1.667858 1.458117 -0.6530715 1.667858 1.458117 -0.7474945 1.667858 1.458117 -0.8539475 1.667858 1.458117 -0.974052 1.667858 1.458117 -1.113885 1.667858 1.458117 -1.27456 1.667858 1.458117 -1.458117 1.667858 1.458117 -1.667858 1.667858 1.458117 -1.907556 1.667858 1.458117 -2.181521 1.667858 1.458117 -2.494678 1.667858 1.458117 -2.852659 1.667858 1.458117 -3.261896 1.667858 1.458117 -3.729748 1.667858 1.458117 -4.264621 1.667858 1.458117 -4.876131 1.667858 1.458117 -5.575266 1.667858 1.458117 -6.374593 1.667858 1.458117 -0 1.907556 1.458117 -0 1.907556 1.458117 -0 1.907556 1.458117 -0.002268731 1.907556 1.458117 -0.07076883 1.907556 1.458117 -0.1119241 1.907556 1.458117 -0.1475052 1.907556 1.458117 -0.1846606 1.907556 1.458117 -0.2245119 1.907556 1.458117 -0.2679612 1.907556 1.458117 -0.3158431 1.907556 1.458117 -0.3689944 1.907556 1.458117 -0.4282948 1.907556 1.458117 -0.494694 1.907556 1.458117 -0.5692344 1.907556 1.458117 -0.6530715 1.907556 1.458117 -0.7474945 1.907556 1.458117 -0.8539475 1.907556 1.458117 -0.974052 1.907556 1.458117 -1.113885 1.907556 1.458117 -1.27456 1.907556 1.458117 -1.458117 1.907556 1.458117 -1.667858 1.907556 1.458117 -1.907556 1.907556 1.458117 -2.181521 1.907556 1.458117 -2.494678 1.907556 1.458117 -2.852659 1.907556 1.458117 -3.261896 1.907556 1.458117 -3.729748 1.907556 1.458117 -4.264621 1.907556 1.458117 -4.876131 1.907556 1.458117 -5.575266 1.907556 1.458117 -6.374593 1.907556 1.458117 -0 2.181521 1.458117 -0 2.181521 1.458117 -0 2.181521 1.458117 -0.002268731 2.181521 1.458117 -0.07076883 2.181521 1.458117 -0.1119241 2.181521 1.458117 -0.1475052 2.181521 1.458117 -0.1846606 2.181521 1.458117 -0.2245119 2.181521 1.458117 -0.2679612 2.181521 1.458117 -0.3158431 2.181521 1.458117 -0.3689944 2.181521 1.458117 -0.4282948 2.181521 1.458117 -0.494694 2.181521 1.458117 -0.5692344 2.181521 1.458117 -0.6530715 2.181521 1.458117 -0.7474945 2.181521 1.458117 -0.8539475 2.181521 1.458117 -0.974052 2.181521 1.458117 -1.113885 2.181521 1.458117 -1.27456 2.181521 1.458117 -1.458117 2.181521 1.458117 -1.667858 2.181521 1.458117 -1.907556 2.181521 1.458117 -2.181521 2.181521 1.458117 -2.494678 2.181521 1.458117 -2.852659 2.181521 1.458117 -3.261896 2.181521 1.458117 -3.729748 2.181521 1.458117 -4.264621 2.181521 1.458117 -4.876131 2.181521 1.458117 -5.575266 2.181521 1.458117 -6.374593 2.181521 1.458117 -0 2.494678 1.458117 -0 2.494678 1.458117 -0 2.494678 1.458117 -0.002268731 2.494678 1.458117 -0.07076883 2.494678 1.458117 -0.1119241 2.494678 1.458117 -0.1475052 2.494678 1.458117 -0.1846606 2.494678 1.458117 -0.2245119 2.494678 1.458117 -0.2679612 2.494678 1.458117 -0.3158431 2.494678 1.458117 -0.3689944 2.494678 1.458117 -0.4282948 2.494678 1.458117 -0.494694 2.494678 1.458117 -0.5692344 2.494678 1.458117 -0.6530715 2.494678 1.458117 -0.7474945 2.494678 1.458117 -0.8539475 2.494678 1.458117 -0.974052 2.494678 1.458117 -1.113885 2.494678 1.458117 -1.27456 2.494678 1.458117 -1.458117 2.494678 1.458117 -1.667858 2.494678 1.458117 -1.907556 2.494678 1.458117 -2.181521 2.494678 1.458117 -2.494678 2.494678 1.458117 -2.852659 2.494678 1.458117 -3.261896 2.494678 1.458117 -3.729748 2.494678 1.458117 -4.264621 2.494678 1.458117 -4.876131 2.494678 1.458117 -5.575266 2.494678 1.458117 -6.374593 2.494678 1.458117 -0 2.852659 1.458117 -0 2.852659 1.458117 -0 2.852659 1.458117 -0.002268731 2.852659 1.458117 -0.07076883 2.852659 1.458117 -0.1119241 2.852659 1.458117 -0.1475052 2.852659 1.458117 -0.1846606 2.852659 1.458117 -0.2245119 2.852659 1.458117 -0.2679612 2.852659 1.458117 -0.3158431 2.852659 1.458117 -0.3689944 2.852659 1.458117 -0.4282948 2.852659 1.458117 -0.494694 2.852659 1.458117 -0.5692344 2.852659 1.458117 -0.6530715 2.852659 1.458117 -0.7474945 2.852659 1.458117 -0.8539475 2.852659 1.458117 -0.974052 2.852659 1.458117 -1.113885 2.852659 1.458117 -1.27456 2.852659 1.458117 -1.458117 2.852659 1.458117 -1.667858 2.852659 1.458117 -1.907556 2.852659 1.458117 -2.181521 2.852659 1.458117 -2.494678 2.852659 1.458117 -2.852659 2.852659 1.458117 -3.261896 2.852659 1.458117 -3.729748 2.852659 1.458117 -4.264621 2.852659 1.458117 -4.876131 2.852659 1.458117 -5.575266 2.852659 1.458117 -6.374593 2.852659 1.458117 -0 3.261896 1.458117 -0 3.261896 1.458117 -0 3.261896 1.458117 -0.002268731 3.261896 1.458117 -0.07076883 3.261896 1.458117 -0.1119241 3.261896 1.458117 -0.1475052 3.261896 1.458117 -0.1846606 3.261896 1.458117 -0.2245119 3.261896 1.458117 -0.2679612 3.261896 1.458117 -0.3158431 3.261896 1.458117 -0.3689944 3.261896 1.458117 -0.4282948 3.261896 1.458117 -0.494694 3.261896 1.458117 -0.5692344 3.261896 1.458117 -0.6530715 3.261896 1.458117 -0.7474945 3.261896 1.458117 -0.8539475 3.261896 1.458117 -0.974052 3.261896 1.458117 -1.113885 3.261896 1.458117 -1.27456 3.261896 1.458117 -1.458117 3.261896 1.458117 -1.667858 3.261896 1.458117 -1.907556 3.261896 1.458117 -2.181521 3.261896 1.458117 -2.494678 3.261896 1.458117 -2.852659 3.261896 1.458117 -3.261896 3.261896 1.458117 -3.729748 3.261896 1.458117 -4.264621 3.261896 1.458117 -4.876131 3.261896 1.458117 -5.575266 3.261896 1.458117 -6.374593 3.261896 1.458117 -0 3.729748 1.458117 -0 3.729748 1.458117 -0 3.729748 1.458117 -0.002268731 3.729748 1.458117 -0.07076883 3.729748 1.458117 -0.1119241 3.729748 1.458117 -0.1475052 3.729748 1.458117 -0.1846606 3.729748 1.458117 -0.2245119 3.729748 1.458117 -0.2679612 3.729748 1.458117 -0.3158431 3.729748 1.458117 -0.3689944 3.729748 1.458117 -0.4282948 3.729748 1.458117 -0.494694 3.729748 1.458117 -0.5692344 3.729748 1.458117 -0.6530715 3.729748 1.458117 -0.7474945 3.729748 1.458117 -0.8539475 3.729748 1.458117 -0.974052 3.729748 1.458117 -1.113885 3.729748 1.458117 -1.27456 3.729748 1.458117 -1.458117 3.729748 1.458117 -1.667858 3.729748 1.458117 -1.907556 3.729748 1.458117 -2.181521 3.729748 1.458117 -2.494678 3.729748 1.458117 -2.852659 3.729748 1.458117 -3.261896 3.729748 1.458117 -3.729748 3.729748 1.458117 -4.264621 3.729748 1.458117 -4.876131 3.729748 1.458117 -5.575266 3.729748 1.458117 -6.374593 3.729748 1.458117 -0 4.264621 1.458117 -0 4.264621 1.458117 -0 4.264621 1.458117 -0.002268731 4.264621 1.458117 -0.07076883 4.264621 1.458117 -0.1119241 4.264621 1.458117 -0.1475052 4.264621 1.458117 -0.1846606 4.264621 1.458117 -0.2245119 4.264621 1.458117 -0.2679612 4.264621 1.458117 -0.3158431 4.264621 1.458117 -0.3689944 4.264621 1.458117 -0.4282948 4.264621 1.458117 -0.494694 4.264621 1.458117 -0.5692344 4.264621 1.458117 -0.6530715 4.264621 1.458117 -0.7474945 4.264621 1.458117 -0.8539475 4.264621 1.458117 -0.974052 4.264621 1.458117 -1.113885 4.264621 1.458117 -1.27456 4.264621 1.458117 -1.458117 4.264621 1.458117 -1.667858 4.264621 1.458117 -1.907556 4.264621 1.458117 -2.181521 4.264621 1.458117 -2.494678 4.264621 1.458117 -2.852659 4.264621 1.458117 -3.261896 4.264621 1.458117 -3.729748 4.264621 1.458117 -4.264621 4.264621 1.458117 -4.876131 4.264621 1.458117 -5.575266 4.264621 1.458117 -6.374593 4.264621 1.458117 -0 4.876131 1.458117 -0 4.876131 1.458117 -0 4.876131 1.458117 -0.002268731 4.876131 1.458117 -0.07076883 4.876131 1.458117 -0.1119241 4.876131 1.458117 -0.1475052 4.876131 1.458117 -0.1846606 4.876131 1.458117 -0.2245119 4.876131 1.458117 -0.2679612 4.876131 1.458117 -0.3158431 4.876131 1.458117 -0.3689944 4.876131 1.458117 -0.4282948 4.876131 1.458117 -0.494694 4.876131 1.458117 -0.5692344 4.876131 1.458117 -0.6530715 4.876131 1.458117 -0.7474945 4.876131 1.458117 -0.8539475 4.876131 1.458117 -0.974052 4.876131 1.458117 -1.113885 4.876131 1.458117 -1.27456 4.876131 1.458117 -1.458117 4.876131 1.458117 -1.667858 4.876131 1.458117 -1.907556 4.876131 1.458117 -2.181521 4.876131 1.458117 -2.494678 4.876131 1.458117 -2.852659 4.876131 1.458117 -3.261896 4.876131 1.458117 -3.729748 4.876131 1.458117 -4.264621 4.876131 1.458117 -4.876131 4.876131 1.458117 -5.575266 4.876131 1.458117 -6.374593 4.876131 1.458117 -0 5.575266 1.458117 -0 5.575266 1.458117 -0 5.575266 1.458117 -0.002268731 5.575266 1.458117 -0.07076883 5.575266 1.458117 -0.1119241 5.575266 1.458117 -0.1475052 5.575266 1.458117 -0.1846606 5.575266 1.458117 -0.2245119 5.575266 1.458117 -0.2679612 5.575266 1.458117 -0.3158431 5.575266 1.458117 -0.3689944 5.575266 1.458117 -0.4282948 5.575266 1.458117 -0.494694 5.575266 1.458117 -0.5692344 5.575266 1.458117 -0.6530715 5.575266 1.458117 -0.7474945 5.575266 1.458117 -0.8539475 5.575266 1.458117 -0.974052 5.575266 1.458117 -1.113885 5.575266 1.458117 -1.27456 5.575266 1.458117 -1.458117 5.575266 1.458117 -1.667858 5.575266 1.458117 -1.907556 5.575266 1.458117 -2.181521 5.575266 1.458117 -2.494678 5.575266 1.458117 -2.852659 5.575266 1.458117 -3.261896 5.575266 1.458117 -3.729748 5.575266 1.458117 -4.264621 5.575266 1.458117 -4.876131 5.575266 1.458117 -5.575266 5.575266 1.458117 -6.374593 5.575266 1.458117 -0 6.374593 1.458117 -0 6.374593 1.458117 -0 6.374593 1.458117 -0.002268731 6.374593 1.458117 -0.07076883 6.374593 1.458117 -0.1119241 6.374593 1.458117 -0.1475052 6.374593 1.458117 -0.1846606 6.374593 1.458117 -0.2245119 6.374593 1.458117 -0.2679612 6.374593 1.458117 -0.3158431 6.374593 1.458117 -0.3689944 6.374593 1.458117 -0.4282948 6.374593 1.458117 -0.494694 6.374593 1.458117 -0.5692344 6.374593 1.458117 -0.6530715 6.374593 1.458117 -0.7474945 6.374593 1.458117 -0.8539475 6.374593 1.458117 -0.974052 6.374593 1.458117 -1.113885 6.374593 1.458117 -1.27456 6.374593 1.458117 -1.458117 6.374593 1.458117 -1.667858 6.374593 1.458117 -1.907556 6.374593 1.458117 -2.181521 6.374593 1.458117 -2.494678 6.374593 1.458117 -2.852659 6.374593 1.458117 -3.261896 6.374593 1.458117 -3.729748 6.374593 1.458117 -4.264621 6.374593 1.458117 -4.876131 6.374593 1.458117 -5.575266 6.374593 1.458117 -6.374593 6.374593 1.458117 -0 0 1.667858 -0 0 1.667858 -0 0 1.667858 -0.002268731 0 1.667858 -0.07076883 0 1.667858 -0.1119241 0 1.667858 -0.1475052 0 1.667858 -0.1846606 0 1.667858 -0.2245119 0 1.667858 -0.2679612 0 1.667858 -0.3158431 0 1.667858 -0.3689944 0 1.667858 -0.4282948 0 1.667858 -0.494694 0 1.667858 -0.5692344 0 1.667858 -0.6530715 0 1.667858 -0.7474945 0 1.667858 -0.8539475 0 1.667858 -0.974052 0 1.667858 -1.113885 0 1.667858 -1.27456 0 1.667858 -1.458117 0 1.667858 -1.667858 0 1.667858 -1.907556 0 1.667858 -2.181521 0 1.667858 -2.494678 0 1.667858 -2.852659 0 1.667858 -3.261896 0 1.667858 -3.729748 0 1.667858 -4.264621 0 1.667858 -4.876131 0 1.667858 -5.575266 0 1.667858 -6.374593 0 1.667858 -0 0 1.667858 -0 0 1.667858 -0 0 1.667858 -0.002268731 0 1.667858 -0.07076883 0 1.667858 -0.1119241 0 1.667858 -0.1475052 0 1.667858 -0.1846606 0 1.667858 -0.2245119 0 1.667858 -0.2679612 0 1.667858 -0.3158431 0 1.667858 -0.3689944 0 1.667858 -0.4282948 0 1.667858 -0.494694 0 1.667858 -0.5692344 0 1.667858 -0.6530715 0 1.667858 -0.7474945 0 1.667858 -0.8539475 0 1.667858 -0.974052 0 1.667858 -1.113885 0 1.667858 -1.27456 0 1.667858 -1.458117 0 1.667858 -1.667858 0 1.667858 -1.907556 0 1.667858 -2.181521 0 1.667858 -2.494678 0 1.667858 -2.852659 0 1.667858 -3.261896 0 1.667858 -3.729748 0 1.667858 -4.264621 0 1.667858 -4.876131 0 1.667858 -5.575266 0 1.667858 -6.374593 0 1.667858 -0 0 1.667858 -0 0 1.667858 -0 0 1.667858 -0.002268731 0 1.667858 -0.07076883 0 1.667858 -0.1119241 0 1.667858 -0.1475052 0 1.667858 -0.1846606 0 1.667858 -0.2245119 0 1.667858 -0.2679612 0 1.667858 -0.3158431 0 1.667858 -0.3689944 0 1.667858 -0.4282948 0 1.667858 -0.494694 0 1.667858 -0.5692344 0 1.667858 -0.6530715 0 1.667858 -0.7474945 0 1.667858 -0.8539475 0 1.667858 -0.974052 0 1.667858 -1.113885 0 1.667858 -1.27456 0 1.667858 -1.458117 0 1.667858 -1.667858 0 1.667858 -1.907556 0 1.667858 -2.181521 0 1.667858 -2.494678 0 1.667858 -2.852659 0 1.667858 -3.261896 0 1.667858 -3.729748 0 1.667858 -4.264621 0 1.667858 -4.876131 0 1.667858 -5.575266 0 1.667858 -6.374593 0 1.667858 -0 0.002268731 1.667858 -0 0.002268731 1.667858 -0 0.002268731 1.667858 -0.002268731 0.002268731 1.667858 -0.07076883 0.002268731 1.667858 -0.1119241 0.002268731 1.667858 -0.1475052 0.002268731 1.667858 -0.1846606 0.002268731 1.667858 -0.2245119 0.002268731 1.667858 -0.2679612 0.002268731 1.667858 -0.3158431 0.002268731 1.667858 -0.3689944 0.002268731 1.667858 -0.4282948 0.002268731 1.667858 -0.494694 0.002268731 1.667858 -0.5692344 0.002268731 1.667858 -0.6530715 0.002268731 1.667858 -0.7474945 0.002268731 1.667858 -0.8539475 0.002268731 1.667858 -0.974052 0.002268731 1.667858 -1.113885 0.002268731 1.667858 -1.27456 0.002268731 1.667858 -1.458117 0.002268731 1.667858 -1.667858 0.002268731 1.667858 -1.907556 0.002268731 1.667858 -2.181521 0.002268731 1.667858 -2.494678 0.002268731 1.667858 -2.852659 0.002268731 1.667858 -3.261896 0.002268731 1.667858 -3.729748 0.002268731 1.667858 -4.264621 0.002268731 1.667858 -4.876131 0.002268731 1.667858 -5.575266 0.002268731 1.667858 -6.374593 0.002268731 1.667858 -0 0.07076883 1.667858 -0 0.07076883 1.667858 -0 0.07076883 1.667858 -0.002268731 0.07076883 1.667858 -0.07076883 0.07076883 1.667858 -0.1119241 0.07076883 1.667858 -0.1475052 0.07076883 1.667858 -0.1846606 0.07076883 1.667858 -0.2245119 0.07076883 1.667858 -0.2679612 0.07076883 1.667858 -0.3158431 0.07076883 1.667858 -0.3689944 0.07076883 1.667858 -0.4282948 0.07076883 1.667858 -0.494694 0.07076883 1.667858 -0.5692344 0.07076883 1.667858 -0.6530715 0.07076883 1.667858 -0.7474945 0.07076883 1.667858 -0.8539475 0.07076883 1.667858 -0.974052 0.07076883 1.667858 -1.113885 0.07076883 1.667858 -1.27456 0.07076883 1.667858 -1.458117 0.07076883 1.667858 -1.667858 0.07076883 1.667858 -1.907556 0.07076883 1.667858 -2.181521 0.07076883 1.667858 -2.494678 0.07076883 1.667858 -2.852659 0.07076883 1.667858 -3.261896 0.07076883 1.667858 -3.729748 0.07076883 1.667858 -4.264621 0.07076883 1.667858 -4.876131 0.07076883 1.667858 -5.575266 0.07076883 1.667858 -6.374593 0.07076883 1.667858 -0 0.1119241 1.667858 -0 0.1119241 1.667858 -0 0.1119241 1.667858 -0.002268731 0.1119241 1.667858 -0.07076883 0.1119241 1.667858 -0.1119241 0.1119241 1.667858 -0.1475052 0.1119241 1.667858 -0.1846606 0.1119241 1.667858 -0.2245119 0.1119241 1.667858 -0.2679612 0.1119241 1.667858 -0.3158431 0.1119241 1.667858 -0.3689944 0.1119241 1.667858 -0.4282948 0.1119241 1.667858 -0.494694 0.1119241 1.667858 -0.5692344 0.1119241 1.667858 -0.6530715 0.1119241 1.667858 -0.7474945 0.1119241 1.667858 -0.8539475 0.1119241 1.667858 -0.974052 0.1119241 1.667858 -1.113885 0.1119241 1.667858 -1.27456 0.1119241 1.667858 -1.458117 0.1119241 1.667858 -1.667858 0.1119241 1.667858 -1.907556 0.1119241 1.667858 -2.181521 0.1119241 1.667858 -2.494678 0.1119241 1.667858 -2.852659 0.1119241 1.667858 -3.261896 0.1119241 1.667858 -3.729748 0.1119241 1.667858 -4.264621 0.1119241 1.667858 -4.876131 0.1119241 1.667858 -5.575266 0.1119241 1.667858 -6.374593 0.1119241 1.667858 -0 0.1475052 1.667858 -0 0.1475052 1.667858 -0 0.1475052 1.667858 -0.002268731 0.1475052 1.667858 -0.07076883 0.1475052 1.667858 -0.1119241 0.1475052 1.667858 -0.1475052 0.1475052 1.667858 -0.1846606 0.1475052 1.667858 -0.2245119 0.1475052 1.667858 -0.2679612 0.1475052 1.667858 -0.3158431 0.1475052 1.667858 -0.3689944 0.1475052 1.667858 -0.4282948 0.1475052 1.667858 -0.494694 0.1475052 1.667858 -0.5692344 0.1475052 1.667858 -0.6530715 0.1475052 1.667858 -0.7474945 0.1475052 1.667858 -0.8539475 0.1475052 1.667858 -0.974052 0.1475052 1.667858 -1.113885 0.1475052 1.667858 -1.27456 0.1475052 1.667858 -1.458117 0.1475052 1.667858 -1.667858 0.1475052 1.667858 -1.907556 0.1475052 1.667858 -2.181521 0.1475052 1.667858 -2.494678 0.1475052 1.667858 -2.852659 0.1475052 1.667858 -3.261896 0.1475052 1.667858 -3.729748 0.1475052 1.667858 -4.264621 0.1475052 1.667858 -4.876131 0.1475052 1.667858 -5.575266 0.1475052 1.667858 -6.374593 0.1475052 1.667858 -0 0.1846606 1.667858 -0 0.1846606 1.667858 -0 0.1846606 1.667858 -0.002268731 0.1846606 1.667858 -0.07076883 0.1846606 1.667858 -0.1119241 0.1846606 1.667858 -0.1475052 0.1846606 1.667858 -0.1846606 0.1846606 1.667858 -0.2245119 0.1846606 1.667858 -0.2679612 0.1846606 1.667858 -0.3158431 0.1846606 1.667858 -0.3689944 0.1846606 1.667858 -0.4282948 0.1846606 1.667858 -0.494694 0.1846606 1.667858 -0.5692344 0.1846606 1.667858 -0.6530715 0.1846606 1.667858 -0.7474945 0.1846606 1.667858 -0.8539475 0.1846606 1.667858 -0.974052 0.1846606 1.667858 -1.113885 0.1846606 1.667858 -1.27456 0.1846606 1.667858 -1.458117 0.1846606 1.667858 -1.667858 0.1846606 1.667858 -1.907556 0.1846606 1.667858 -2.181521 0.1846606 1.667858 -2.494678 0.1846606 1.667858 -2.852659 0.1846606 1.667858 -3.261896 0.1846606 1.667858 -3.729748 0.1846606 1.667858 -4.264621 0.1846606 1.667858 -4.876131 0.1846606 1.667858 -5.575266 0.1846606 1.667858 -6.374593 0.1846606 1.667858 -0 0.2245119 1.667858 -0 0.2245119 1.667858 -0 0.2245119 1.667858 -0.002268731 0.2245119 1.667858 -0.07076883 0.2245119 1.667858 -0.1119241 0.2245119 1.667858 -0.1475052 0.2245119 1.667858 -0.1846606 0.2245119 1.667858 -0.2245119 0.2245119 1.667858 -0.2679612 0.2245119 1.667858 -0.3158431 0.2245119 1.667858 -0.3689944 0.2245119 1.667858 -0.4282948 0.2245119 1.667858 -0.494694 0.2245119 1.667858 -0.5692344 0.2245119 1.667858 -0.6530715 0.2245119 1.667858 -0.7474945 0.2245119 1.667858 -0.8539475 0.2245119 1.667858 -0.974052 0.2245119 1.667858 -1.113885 0.2245119 1.667858 -1.27456 0.2245119 1.667858 -1.458117 0.2245119 1.667858 -1.667858 0.2245119 1.667858 -1.907556 0.2245119 1.667858 -2.181521 0.2245119 1.667858 -2.494678 0.2245119 1.667858 -2.852659 0.2245119 1.667858 -3.261896 0.2245119 1.667858 -3.729748 0.2245119 1.667858 -4.264621 0.2245119 1.667858 -4.876131 0.2245119 1.667858 -5.575266 0.2245119 1.667858 -6.374593 0.2245119 1.667858 -0 0.2679612 1.667858 -0 0.2679612 1.667858 -0 0.2679612 1.667858 -0.002268731 0.2679612 1.667858 -0.07076883 0.2679612 1.667858 -0.1119241 0.2679612 1.667858 -0.1475052 0.2679612 1.667858 -0.1846606 0.2679612 1.667858 -0.2245119 0.2679612 1.667858 -0.2679612 0.2679612 1.667858 -0.3158431 0.2679612 1.667858 -0.3689944 0.2679612 1.667858 -0.4282948 0.2679612 1.667858 -0.494694 0.2679612 1.667858 -0.5692344 0.2679612 1.667858 -0.6530715 0.2679612 1.667858 -0.7474945 0.2679612 1.667858 -0.8539475 0.2679612 1.667858 -0.974052 0.2679612 1.667858 -1.113885 0.2679612 1.667858 -1.27456 0.2679612 1.667858 -1.458117 0.2679612 1.667858 -1.667858 0.2679612 1.667858 -1.907556 0.2679612 1.667858 -2.181521 0.2679612 1.667858 -2.494678 0.2679612 1.667858 -2.852659 0.2679612 1.667858 -3.261896 0.2679612 1.667858 -3.729748 0.2679612 1.667858 -4.264621 0.2679612 1.667858 -4.876131 0.2679612 1.667858 -5.575266 0.2679612 1.667858 -6.374593 0.2679612 1.667858 -0 0.3158431 1.667858 -0 0.3158431 1.667858 -0 0.3158431 1.667858 -0.002268731 0.3158431 1.667858 -0.07076883 0.3158431 1.667858 -0.1119241 0.3158431 1.667858 -0.1475052 0.3158431 1.667858 -0.1846606 0.3158431 1.667858 -0.2245119 0.3158431 1.667858 -0.2679612 0.3158431 1.667858 -0.3158431 0.3158431 1.667858 -0.3689944 0.3158431 1.667858 -0.4282948 0.3158431 1.667858 -0.494694 0.3158431 1.667858 -0.5692344 0.3158431 1.667858 -0.6530715 0.3158431 1.667858 -0.7474945 0.3158431 1.667858 -0.8539475 0.3158431 1.667858 -0.974052 0.3158431 1.667858 -1.113885 0.3158431 1.667858 -1.27456 0.3158431 1.667858 -1.458117 0.3158431 1.667858 -1.667858 0.3158431 1.667858 -1.907556 0.3158431 1.667858 -2.181521 0.3158431 1.667858 -2.494678 0.3158431 1.667858 -2.852659 0.3158431 1.667858 -3.261896 0.3158431 1.667858 -3.729748 0.3158431 1.667858 -4.264621 0.3158431 1.667858 -4.876131 0.3158431 1.667858 -5.575266 0.3158431 1.667858 -6.374593 0.3158431 1.667858 -0 0.3689944 1.667858 -0 0.3689944 1.667858 -0 0.3689944 1.667858 -0.002268731 0.3689944 1.667858 -0.07076883 0.3689944 1.667858 -0.1119241 0.3689944 1.667858 -0.1475052 0.3689944 1.667858 -0.1846606 0.3689944 1.667858 -0.2245119 0.3689944 1.667858 -0.2679612 0.3689944 1.667858 -0.3158431 0.3689944 1.667858 -0.3689944 0.3689944 1.667858 -0.4282948 0.3689944 1.667858 -0.494694 0.3689944 1.667858 -0.5692344 0.3689944 1.667858 -0.6530715 0.3689944 1.667858 -0.7474945 0.3689944 1.667858 -0.8539475 0.3689944 1.667858 -0.974052 0.3689944 1.667858 -1.113885 0.3689944 1.667858 -1.27456 0.3689944 1.667858 -1.458117 0.3689944 1.667858 -1.667858 0.3689944 1.667858 -1.907556 0.3689944 1.667858 -2.181521 0.3689944 1.667858 -2.494678 0.3689944 1.667858 -2.852659 0.3689944 1.667858 -3.261896 0.3689944 1.667858 -3.729748 0.3689944 1.667858 -4.264621 0.3689944 1.667858 -4.876131 0.3689944 1.667858 -5.575266 0.3689944 1.667858 -6.374593 0.3689944 1.667858 -0 0.4282948 1.667858 -0 0.4282948 1.667858 -0 0.4282948 1.667858 -0.002268731 0.4282948 1.667858 -0.07076883 0.4282948 1.667858 -0.1119241 0.4282948 1.667858 -0.1475052 0.4282948 1.667858 -0.1846606 0.4282948 1.667858 -0.2245119 0.4282948 1.667858 -0.2679612 0.4282948 1.667858 -0.3158431 0.4282948 1.667858 -0.3689944 0.4282948 1.667858 -0.4282948 0.4282948 1.667858 -0.494694 0.4282948 1.667858 -0.5692344 0.4282948 1.667858 -0.6530715 0.4282948 1.667858 -0.7474945 0.4282948 1.667858 -0.8539475 0.4282948 1.667858 -0.974052 0.4282948 1.667858 -1.113885 0.4282948 1.667858 -1.27456 0.4282948 1.667858 -1.458117 0.4282948 1.667858 -1.667858 0.4282948 1.667858 -1.907556 0.4282948 1.667858 -2.181521 0.4282948 1.667858 -2.494678 0.4282948 1.667858 -2.852659 0.4282948 1.667858 -3.261896 0.4282948 1.667858 -3.729748 0.4282948 1.667858 -4.264621 0.4282948 1.667858 -4.876131 0.4282948 1.667858 -5.575266 0.4282948 1.667858 -6.374593 0.4282948 1.667858 -0 0.494694 1.667858 -0 0.494694 1.667858 -0 0.494694 1.667858 -0.002268731 0.494694 1.667858 -0.07076883 0.494694 1.667858 -0.1119241 0.494694 1.667858 -0.1475052 0.494694 1.667858 -0.1846606 0.494694 1.667858 -0.2245119 0.494694 1.667858 -0.2679612 0.494694 1.667858 -0.3158431 0.494694 1.667858 -0.3689944 0.494694 1.667858 -0.4282948 0.494694 1.667858 -0.494694 0.494694 1.667858 -0.5692344 0.494694 1.667858 -0.6530715 0.494694 1.667858 -0.7474945 0.494694 1.667858 -0.8539475 0.494694 1.667858 -0.974052 0.494694 1.667858 -1.113885 0.494694 1.667858 -1.27456 0.494694 1.667858 -1.458117 0.494694 1.667858 -1.667858 0.494694 1.667858 -1.907556 0.494694 1.667858 -2.181521 0.494694 1.667858 -2.494678 0.494694 1.667858 -2.852659 0.494694 1.667858 -3.261896 0.494694 1.667858 -3.729748 0.494694 1.667858 -4.264621 0.494694 1.667858 -4.876131 0.494694 1.667858 -5.575266 0.494694 1.667858 -6.374593 0.494694 1.667858 -0 0.5692344 1.667858 -0 0.5692344 1.667858 -0 0.5692344 1.667858 -0.002268731 0.5692344 1.667858 -0.07076883 0.5692344 1.667858 -0.1119241 0.5692344 1.667858 -0.1475052 0.5692344 1.667858 -0.1846606 0.5692344 1.667858 -0.2245119 0.5692344 1.667858 -0.2679612 0.5692344 1.667858 -0.3158431 0.5692344 1.667858 -0.3689944 0.5692344 1.667858 -0.4282948 0.5692344 1.667858 -0.494694 0.5692344 1.667858 -0.5692344 0.5692344 1.667858 -0.6530715 0.5692344 1.667858 -0.7474945 0.5692344 1.667858 -0.8539475 0.5692344 1.667858 -0.974052 0.5692344 1.667858 -1.113885 0.5692344 1.667858 -1.27456 0.5692344 1.667858 -1.458117 0.5692344 1.667858 -1.667858 0.5692344 1.667858 -1.907556 0.5692344 1.667858 -2.181521 0.5692344 1.667858 -2.494678 0.5692344 1.667858 -2.852659 0.5692344 1.667858 -3.261896 0.5692344 1.667858 -3.729748 0.5692344 1.667858 -4.264621 0.5692344 1.667858 -4.876131 0.5692344 1.667858 -5.575266 0.5692344 1.667858 -6.374593 0.5692344 1.667858 -0 0.6530715 1.667858 -0 0.6530715 1.667858 -0 0.6530715 1.667858 -0.002268731 0.6530715 1.667858 -0.07076883 0.6530715 1.667858 -0.1119241 0.6530715 1.667858 -0.1475052 0.6530715 1.667858 -0.1846606 0.6530715 1.667858 -0.2245119 0.6530715 1.667858 -0.2679612 0.6530715 1.667858 -0.3158431 0.6530715 1.667858 -0.3689944 0.6530715 1.667858 -0.4282948 0.6530715 1.667858 -0.494694 0.6530715 1.667858 -0.5692344 0.6530715 1.667858 -0.6530715 0.6530715 1.667858 -0.7474945 0.6530715 1.667858 -0.8539475 0.6530715 1.667858 -0.974052 0.6530715 1.667858 -1.113885 0.6530715 1.667858 -1.27456 0.6530715 1.667858 -1.458117 0.6530715 1.667858 -1.667858 0.6530715 1.667858 -1.907556 0.6530715 1.667858 -2.181521 0.6530715 1.667858 -2.494678 0.6530715 1.667858 -2.852659 0.6530715 1.667858 -3.261896 0.6530715 1.667858 -3.729748 0.6530715 1.667858 -4.264621 0.6530715 1.667858 -4.876131 0.6530715 1.667858 -5.575266 0.6530715 1.667858 -6.374593 0.6530715 1.667858 -0 0.7474945 1.667858 -0 0.7474945 1.667858 -0 0.7474945 1.667858 -0.002268731 0.7474945 1.667858 -0.07076883 0.7474945 1.667858 -0.1119241 0.7474945 1.667858 -0.1475052 0.7474945 1.667858 -0.1846606 0.7474945 1.667858 -0.2245119 0.7474945 1.667858 -0.2679612 0.7474945 1.667858 -0.3158431 0.7474945 1.667858 -0.3689944 0.7474945 1.667858 -0.4282948 0.7474945 1.667858 -0.494694 0.7474945 1.667858 -0.5692344 0.7474945 1.667858 -0.6530715 0.7474945 1.667858 -0.7474945 0.7474945 1.667858 -0.8539475 0.7474945 1.667858 -0.974052 0.7474945 1.667858 -1.113885 0.7474945 1.667858 -1.27456 0.7474945 1.667858 -1.458117 0.7474945 1.667858 -1.667858 0.7474945 1.667858 -1.907556 0.7474945 1.667858 -2.181521 0.7474945 1.667858 -2.494678 0.7474945 1.667858 -2.852659 0.7474945 1.667858 -3.261896 0.7474945 1.667858 -3.729748 0.7474945 1.667858 -4.264621 0.7474945 1.667858 -4.876131 0.7474945 1.667858 -5.575266 0.7474945 1.667858 -6.374593 0.7474945 1.667858 -0 0.8539475 1.667858 -0 0.8539475 1.667858 -0 0.8539475 1.667858 -0.002268731 0.8539475 1.667858 -0.07076883 0.8539475 1.667858 -0.1119241 0.8539475 1.667858 -0.1475052 0.8539475 1.667858 -0.1846606 0.8539475 1.667858 -0.2245119 0.8539475 1.667858 -0.2679612 0.8539475 1.667858 -0.3158431 0.8539475 1.667858 -0.3689944 0.8539475 1.667858 -0.4282948 0.8539475 1.667858 -0.494694 0.8539475 1.667858 -0.5692344 0.8539475 1.667858 -0.6530715 0.8539475 1.667858 -0.7474945 0.8539475 1.667858 -0.8539475 0.8539475 1.667858 -0.974052 0.8539475 1.667858 -1.113885 0.8539475 1.667858 -1.27456 0.8539475 1.667858 -1.458117 0.8539475 1.667858 -1.667858 0.8539475 1.667858 -1.907556 0.8539475 1.667858 -2.181521 0.8539475 1.667858 -2.494678 0.8539475 1.667858 -2.852659 0.8539475 1.667858 -3.261896 0.8539475 1.667858 -3.729748 0.8539475 1.667858 -4.264621 0.8539475 1.667858 -4.876131 0.8539475 1.667858 -5.575266 0.8539475 1.667858 -6.374593 0.8539475 1.667858 -0 0.974052 1.667858 -0 0.974052 1.667858 -0 0.974052 1.667858 -0.002268731 0.974052 1.667858 -0.07076883 0.974052 1.667858 -0.1119241 0.974052 1.667858 -0.1475052 0.974052 1.667858 -0.1846606 0.974052 1.667858 -0.2245119 0.974052 1.667858 -0.2679612 0.974052 1.667858 -0.3158431 0.974052 1.667858 -0.3689944 0.974052 1.667858 -0.4282948 0.974052 1.667858 -0.494694 0.974052 1.667858 -0.5692344 0.974052 1.667858 -0.6530715 0.974052 1.667858 -0.7474945 0.974052 1.667858 -0.8539475 0.974052 1.667858 -0.974052 0.974052 1.667858 -1.113885 0.974052 1.667858 -1.27456 0.974052 1.667858 -1.458117 0.974052 1.667858 -1.667858 0.974052 1.667858 -1.907556 0.974052 1.667858 -2.181521 0.974052 1.667858 -2.494678 0.974052 1.667858 -2.852659 0.974052 1.667858 -3.261896 0.974052 1.667858 -3.729748 0.974052 1.667858 -4.264621 0.974052 1.667858 -4.876131 0.974052 1.667858 -5.575266 0.974052 1.667858 -6.374593 0.974052 1.667858 -0 1.113885 1.667858 -0 1.113885 1.667858 -0 1.113885 1.667858 -0.002268731 1.113885 1.667858 -0.07076883 1.113885 1.667858 -0.1119241 1.113885 1.667858 -0.1475052 1.113885 1.667858 -0.1846606 1.113885 1.667858 -0.2245119 1.113885 1.667858 -0.2679612 1.113885 1.667858 -0.3158431 1.113885 1.667858 -0.3689944 1.113885 1.667858 -0.4282948 1.113885 1.667858 -0.494694 1.113885 1.667858 -0.5692344 1.113885 1.667858 -0.6530715 1.113885 1.667858 -0.7474945 1.113885 1.667858 -0.8539475 1.113885 1.667858 -0.974052 1.113885 1.667858 -1.113885 1.113885 1.667858 -1.27456 1.113885 1.667858 -1.458117 1.113885 1.667858 -1.667858 1.113885 1.667858 -1.907556 1.113885 1.667858 -2.181521 1.113885 1.667858 -2.494678 1.113885 1.667858 -2.852659 1.113885 1.667858 -3.261896 1.113885 1.667858 -3.729748 1.113885 1.667858 -4.264621 1.113885 1.667858 -4.876131 1.113885 1.667858 -5.575266 1.113885 1.667858 -6.374593 1.113885 1.667858 -0 1.27456 1.667858 -0 1.27456 1.667858 -0 1.27456 1.667858 -0.002268731 1.27456 1.667858 -0.07076883 1.27456 1.667858 -0.1119241 1.27456 1.667858 -0.1475052 1.27456 1.667858 -0.1846606 1.27456 1.667858 -0.2245119 1.27456 1.667858 -0.2679612 1.27456 1.667858 -0.3158431 1.27456 1.667858 -0.3689944 1.27456 1.667858 -0.4282948 1.27456 1.667858 -0.494694 1.27456 1.667858 -0.5692344 1.27456 1.667858 -0.6530715 1.27456 1.667858 -0.7474945 1.27456 1.667858 -0.8539475 1.27456 1.667858 -0.974052 1.27456 1.667858 -1.113885 1.27456 1.667858 -1.27456 1.27456 1.667858 -1.458117 1.27456 1.667858 -1.667858 1.27456 1.667858 -1.907556 1.27456 1.667858 -2.181521 1.27456 1.667858 -2.494678 1.27456 1.667858 -2.852659 1.27456 1.667858 -3.261896 1.27456 1.667858 -3.729748 1.27456 1.667858 -4.264621 1.27456 1.667858 -4.876131 1.27456 1.667858 -5.575266 1.27456 1.667858 -6.374593 1.27456 1.667858 -0 1.458117 1.667858 -0 1.458117 1.667858 -0 1.458117 1.667858 -0.002268731 1.458117 1.667858 -0.07076883 1.458117 1.667858 -0.1119241 1.458117 1.667858 -0.1475052 1.458117 1.667858 -0.1846606 1.458117 1.667858 -0.2245119 1.458117 1.667858 -0.2679612 1.458117 1.667858 -0.3158431 1.458117 1.667858 -0.3689944 1.458117 1.667858 -0.4282948 1.458117 1.667858 -0.494694 1.458117 1.667858 -0.5692344 1.458117 1.667858 -0.6530715 1.458117 1.667858 -0.7474945 1.458117 1.667858 -0.8539475 1.458117 1.667858 -0.974052 1.458117 1.667858 -1.113885 1.458117 1.667858 -1.27456 1.458117 1.667858 -1.458117 1.458117 1.667858 -1.667858 1.458117 1.667858 -1.907556 1.458117 1.667858 -2.181521 1.458117 1.667858 -2.494678 1.458117 1.667858 -2.852659 1.458117 1.667858 -3.261896 1.458117 1.667858 -3.729748 1.458117 1.667858 -4.264621 1.458117 1.667858 -4.876131 1.458117 1.667858 -5.575266 1.458117 1.667858 -6.374593 1.458117 1.667858 -0 1.667858 1.667858 -0 1.667858 1.667858 -0 1.667858 1.667858 -0.002268731 1.667858 1.667858 -0.07076883 1.667858 1.667858 -0.1119241 1.667858 1.667858 -0.1475052 1.667858 1.667858 -0.1846606 1.667858 1.667858 -0.2245119 1.667858 1.667858 -0.2679612 1.667858 1.667858 -0.3158431 1.667858 1.667858 -0.3689944 1.667858 1.667858 -0.4282948 1.667858 1.667858 -0.494694 1.667858 1.667858 -0.5692344 1.667858 1.667858 -0.6530715 1.667858 1.667858 -0.7474945 1.667858 1.667858 -0.8539475 1.667858 1.667858 -0.974052 1.667858 1.667858 -1.113885 1.667858 1.667858 -1.27456 1.667858 1.667858 -1.458117 1.667858 1.667858 -1.667858 1.667858 1.667858 -1.907556 1.667858 1.667858 -2.181521 1.667858 1.667858 -2.494678 1.667858 1.667858 -2.852659 1.667858 1.667858 -3.261896 1.667858 1.667858 -3.729748 1.667858 1.667858 -4.264621 1.667858 1.667858 -4.876131 1.667858 1.667858 -5.575266 1.667858 1.667858 -6.374593 1.667858 1.667858 -0 1.907556 1.667858 -0 1.907556 1.667858 -0 1.907556 1.667858 -0.002268731 1.907556 1.667858 -0.07076883 1.907556 1.667858 -0.1119241 1.907556 1.667858 -0.1475052 1.907556 1.667858 -0.1846606 1.907556 1.667858 -0.2245119 1.907556 1.667858 -0.2679612 1.907556 1.667858 -0.3158431 1.907556 1.667858 -0.3689944 1.907556 1.667858 -0.4282948 1.907556 1.667858 -0.494694 1.907556 1.667858 -0.5692344 1.907556 1.667858 -0.6530715 1.907556 1.667858 -0.7474945 1.907556 1.667858 -0.8539475 1.907556 1.667858 -0.974052 1.907556 1.667858 -1.113885 1.907556 1.667858 -1.27456 1.907556 1.667858 -1.458117 1.907556 1.667858 -1.667858 1.907556 1.667858 -1.907556 1.907556 1.667858 -2.181521 1.907556 1.667858 -2.494678 1.907556 1.667858 -2.852659 1.907556 1.667858 -3.261896 1.907556 1.667858 -3.729748 1.907556 1.667858 -4.264621 1.907556 1.667858 -4.876131 1.907556 1.667858 -5.575266 1.907556 1.667858 -6.374593 1.907556 1.667858 -0 2.181521 1.667858 -0 2.181521 1.667858 -0 2.181521 1.667858 -0.002268731 2.181521 1.667858 -0.07076883 2.181521 1.667858 -0.1119241 2.181521 1.667858 -0.1475052 2.181521 1.667858 -0.1846606 2.181521 1.667858 -0.2245119 2.181521 1.667858 -0.2679612 2.181521 1.667858 -0.3158431 2.181521 1.667858 -0.3689944 2.181521 1.667858 -0.4282948 2.181521 1.667858 -0.494694 2.181521 1.667858 -0.5692344 2.181521 1.667858 -0.6530715 2.181521 1.667858 -0.7474945 2.181521 1.667858 -0.8539475 2.181521 1.667858 -0.974052 2.181521 1.667858 -1.113885 2.181521 1.667858 -1.27456 2.181521 1.667858 -1.458117 2.181521 1.667858 -1.667858 2.181521 1.667858 -1.907556 2.181521 1.667858 -2.181521 2.181521 1.667858 -2.494678 2.181521 1.667858 -2.852659 2.181521 1.667858 -3.261896 2.181521 1.667858 -3.729748 2.181521 1.667858 -4.264621 2.181521 1.667858 -4.876131 2.181521 1.667858 -5.575266 2.181521 1.667858 -6.374593 2.181521 1.667858 -0 2.494678 1.667858 -0 2.494678 1.667858 -0 2.494678 1.667858 -0.002268731 2.494678 1.667858 -0.07076883 2.494678 1.667858 -0.1119241 2.494678 1.667858 -0.1475052 2.494678 1.667858 -0.1846606 2.494678 1.667858 -0.2245119 2.494678 1.667858 -0.2679612 2.494678 1.667858 -0.3158431 2.494678 1.667858 -0.3689944 2.494678 1.667858 -0.4282948 2.494678 1.667858 -0.494694 2.494678 1.667858 -0.5692344 2.494678 1.667858 -0.6530715 2.494678 1.667858 -0.7474945 2.494678 1.667858 -0.8539475 2.494678 1.667858 -0.974052 2.494678 1.667858 -1.113885 2.494678 1.667858 -1.27456 2.494678 1.667858 -1.458117 2.494678 1.667858 -1.667858 2.494678 1.667858 -1.907556 2.494678 1.667858 -2.181521 2.494678 1.667858 -2.494678 2.494678 1.667858 -2.852659 2.494678 1.667858 -3.261896 2.494678 1.667858 -3.729748 2.494678 1.667858 -4.264621 2.494678 1.667858 -4.876131 2.494678 1.667858 -5.575266 2.494678 1.667858 -6.374593 2.494678 1.667858 -0 2.852659 1.667858 -0 2.852659 1.667858 -0 2.852659 1.667858 -0.002268731 2.852659 1.667858 -0.07076883 2.852659 1.667858 -0.1119241 2.852659 1.667858 -0.1475052 2.852659 1.667858 -0.1846606 2.852659 1.667858 -0.2245119 2.852659 1.667858 -0.2679612 2.852659 1.667858 -0.3158431 2.852659 1.667858 -0.3689944 2.852659 1.667858 -0.4282948 2.852659 1.667858 -0.494694 2.852659 1.667858 -0.5692344 2.852659 1.667858 -0.6530715 2.852659 1.667858 -0.7474945 2.852659 1.667858 -0.8539475 2.852659 1.667858 -0.974052 2.852659 1.667858 -1.113885 2.852659 1.667858 -1.27456 2.852659 1.667858 -1.458117 2.852659 1.667858 -1.667858 2.852659 1.667858 -1.907556 2.852659 1.667858 -2.181521 2.852659 1.667858 -2.494678 2.852659 1.667858 -2.852659 2.852659 1.667858 -3.261896 2.852659 1.667858 -3.729748 2.852659 1.667858 -4.264621 2.852659 1.667858 -4.876131 2.852659 1.667858 -5.575266 2.852659 1.667858 -6.374593 2.852659 1.667858 -0 3.261896 1.667858 -0 3.261896 1.667858 -0 3.261896 1.667858 -0.002268731 3.261896 1.667858 -0.07076883 3.261896 1.667858 -0.1119241 3.261896 1.667858 -0.1475052 3.261896 1.667858 -0.1846606 3.261896 1.667858 -0.2245119 3.261896 1.667858 -0.2679612 3.261896 1.667858 -0.3158431 3.261896 1.667858 -0.3689944 3.261896 1.667858 -0.4282948 3.261896 1.667858 -0.494694 3.261896 1.667858 -0.5692344 3.261896 1.667858 -0.6530715 3.261896 1.667858 -0.7474945 3.261896 1.667858 -0.8539475 3.261896 1.667858 -0.974052 3.261896 1.667858 -1.113885 3.261896 1.667858 -1.27456 3.261896 1.667858 -1.458117 3.261896 1.667858 -1.667858 3.261896 1.667858 -1.907556 3.261896 1.667858 -2.181521 3.261896 1.667858 -2.494678 3.261896 1.667858 -2.852659 3.261896 1.667858 -3.261896 3.261896 1.667858 -3.729748 3.261896 1.667858 -4.264621 3.261896 1.667858 -4.876131 3.261896 1.667858 -5.575266 3.261896 1.667858 -6.374593 3.261896 1.667858 -0 3.729748 1.667858 -0 3.729748 1.667858 -0 3.729748 1.667858 -0.002268731 3.729748 1.667858 -0.07076883 3.729748 1.667858 -0.1119241 3.729748 1.667858 -0.1475052 3.729748 1.667858 -0.1846606 3.729748 1.667858 -0.2245119 3.729748 1.667858 -0.2679612 3.729748 1.667858 -0.3158431 3.729748 1.667858 -0.3689944 3.729748 1.667858 -0.4282948 3.729748 1.667858 -0.494694 3.729748 1.667858 -0.5692344 3.729748 1.667858 -0.6530715 3.729748 1.667858 -0.7474945 3.729748 1.667858 -0.8539475 3.729748 1.667858 -0.974052 3.729748 1.667858 -1.113885 3.729748 1.667858 -1.27456 3.729748 1.667858 -1.458117 3.729748 1.667858 -1.667858 3.729748 1.667858 -1.907556 3.729748 1.667858 -2.181521 3.729748 1.667858 -2.494678 3.729748 1.667858 -2.852659 3.729748 1.667858 -3.261896 3.729748 1.667858 -3.729748 3.729748 1.667858 -4.264621 3.729748 1.667858 -4.876131 3.729748 1.667858 -5.575266 3.729748 1.667858 -6.374593 3.729748 1.667858 -0 4.264621 1.667858 -0 4.264621 1.667858 -0 4.264621 1.667858 -0.002268731 4.264621 1.667858 -0.07076883 4.264621 1.667858 -0.1119241 4.264621 1.667858 -0.1475052 4.264621 1.667858 -0.1846606 4.264621 1.667858 -0.2245119 4.264621 1.667858 -0.2679612 4.264621 1.667858 -0.3158431 4.264621 1.667858 -0.3689944 4.264621 1.667858 -0.4282948 4.264621 1.667858 -0.494694 4.264621 1.667858 -0.5692344 4.264621 1.667858 -0.6530715 4.264621 1.667858 -0.7474945 4.264621 1.667858 -0.8539475 4.264621 1.667858 -0.974052 4.264621 1.667858 -1.113885 4.264621 1.667858 -1.27456 4.264621 1.667858 -1.458117 4.264621 1.667858 -1.667858 4.264621 1.667858 -1.907556 4.264621 1.667858 -2.181521 4.264621 1.667858 -2.494678 4.264621 1.667858 -2.852659 4.264621 1.667858 -3.261896 4.264621 1.667858 -3.729748 4.264621 1.667858 -4.264621 4.264621 1.667858 -4.876131 4.264621 1.667858 -5.575266 4.264621 1.667858 -6.374593 4.264621 1.667858 -0 4.876131 1.667858 -0 4.876131 1.667858 -0 4.876131 1.667858 -0.002268731 4.876131 1.667858 -0.07076883 4.876131 1.667858 -0.1119241 4.876131 1.667858 -0.1475052 4.876131 1.667858 -0.1846606 4.876131 1.667858 -0.2245119 4.876131 1.667858 -0.2679612 4.876131 1.667858 -0.3158431 4.876131 1.667858 -0.3689944 4.876131 1.667858 -0.4282948 4.876131 1.667858 -0.494694 4.876131 1.667858 -0.5692344 4.876131 1.667858 -0.6530715 4.876131 1.667858 -0.7474945 4.876131 1.667858 -0.8539475 4.876131 1.667858 -0.974052 4.876131 1.667858 -1.113885 4.876131 1.667858 -1.27456 4.876131 1.667858 -1.458117 4.876131 1.667858 -1.667858 4.876131 1.667858 -1.907556 4.876131 1.667858 -2.181521 4.876131 1.667858 -2.494678 4.876131 1.667858 -2.852659 4.876131 1.667858 -3.261896 4.876131 1.667858 -3.729748 4.876131 1.667858 -4.264621 4.876131 1.667858 -4.876131 4.876131 1.667858 -5.575266 4.876131 1.667858 -6.374593 4.876131 1.667858 -0 5.575266 1.667858 -0 5.575266 1.667858 -0 5.575266 1.667858 -0.002268731 5.575266 1.667858 -0.07076883 5.575266 1.667858 -0.1119241 5.575266 1.667858 -0.1475052 5.575266 1.667858 -0.1846606 5.575266 1.667858 -0.2245119 5.575266 1.667858 -0.2679612 5.575266 1.667858 -0.3158431 5.575266 1.667858 -0.3689944 5.575266 1.667858 -0.4282948 5.575266 1.667858 -0.494694 5.575266 1.667858 -0.5692344 5.575266 1.667858 -0.6530715 5.575266 1.667858 -0.7474945 5.575266 1.667858 -0.8539475 5.575266 1.667858 -0.974052 5.575266 1.667858 -1.113885 5.575266 1.667858 -1.27456 5.575266 1.667858 -1.458117 5.575266 1.667858 -1.667858 5.575266 1.667858 -1.907556 5.575266 1.667858 -2.181521 5.575266 1.667858 -2.494678 5.575266 1.667858 -2.852659 5.575266 1.667858 -3.261896 5.575266 1.667858 -3.729748 5.575266 1.667858 -4.264621 5.575266 1.667858 -4.876131 5.575266 1.667858 -5.575266 5.575266 1.667858 -6.374593 5.575266 1.667858 -0 6.374593 1.667858 -0 6.374593 1.667858 -0 6.374593 1.667858 -0.002268731 6.374593 1.667858 -0.07076883 6.374593 1.667858 -0.1119241 6.374593 1.667858 -0.1475052 6.374593 1.667858 -0.1846606 6.374593 1.667858 -0.2245119 6.374593 1.667858 -0.2679612 6.374593 1.667858 -0.3158431 6.374593 1.667858 -0.3689944 6.374593 1.667858 -0.4282948 6.374593 1.667858 -0.494694 6.374593 1.667858 -0.5692344 6.374593 1.667858 -0.6530715 6.374593 1.667858 -0.7474945 6.374593 1.667858 -0.8539475 6.374593 1.667858 -0.974052 6.374593 1.667858 -1.113885 6.374593 1.667858 -1.27456 6.374593 1.667858 -1.458117 6.374593 1.667858 -1.667858 6.374593 1.667858 -1.907556 6.374593 1.667858 -2.181521 6.374593 1.667858 -2.494678 6.374593 1.667858 -2.852659 6.374593 1.667858 -3.261896 6.374593 1.667858 -3.729748 6.374593 1.667858 -4.264621 6.374593 1.667858 -4.876131 6.374593 1.667858 -5.575266 6.374593 1.667858 -6.374593 6.374593 1.667858 -0 0 1.907556 -0 0 1.907556 -0 0 1.907556 -0.002268731 0 1.907556 -0.07076883 0 1.907556 -0.1119241 0 1.907556 -0.1475052 0 1.907556 -0.1846606 0 1.907556 -0.2245119 0 1.907556 -0.2679612 0 1.907556 -0.3158431 0 1.907556 -0.3689944 0 1.907556 -0.4282948 0 1.907556 -0.494694 0 1.907556 -0.5692344 0 1.907556 -0.6530715 0 1.907556 -0.7474945 0 1.907556 -0.8539475 0 1.907556 -0.974052 0 1.907556 -1.113885 0 1.907556 -1.27456 0 1.907556 -1.458117 0 1.907556 -1.667858 0 1.907556 -1.907556 0 1.907556 -2.181521 0 1.907556 -2.494678 0 1.907556 -2.852659 0 1.907556 -3.261896 0 1.907556 -3.729748 0 1.907556 -4.264621 0 1.907556 -4.876131 0 1.907556 -5.575266 0 1.907556 -6.374593 0 1.907556 -0 0 1.907556 -0 0 1.907556 -0 0 1.907556 -0.002268731 0 1.907556 -0.07076883 0 1.907556 -0.1119241 0 1.907556 -0.1475052 0 1.907556 -0.1846606 0 1.907556 -0.2245119 0 1.907556 -0.2679612 0 1.907556 -0.3158431 0 1.907556 -0.3689944 0 1.907556 -0.4282948 0 1.907556 -0.494694 0 1.907556 -0.5692344 0 1.907556 -0.6530715 0 1.907556 -0.7474945 0 1.907556 -0.8539475 0 1.907556 -0.974052 0 1.907556 -1.113885 0 1.907556 -1.27456 0 1.907556 -1.458117 0 1.907556 -1.667858 0 1.907556 -1.907556 0 1.907556 -2.181521 0 1.907556 -2.494678 0 1.907556 -2.852659 0 1.907556 -3.261896 0 1.907556 -3.729748 0 1.907556 -4.264621 0 1.907556 -4.876131 0 1.907556 -5.575266 0 1.907556 -6.374593 0 1.907556 -0 0 1.907556 -0 0 1.907556 -0 0 1.907556 -0.002268731 0 1.907556 -0.07076883 0 1.907556 -0.1119241 0 1.907556 -0.1475052 0 1.907556 -0.1846606 0 1.907556 -0.2245119 0 1.907556 -0.2679612 0 1.907556 -0.3158431 0 1.907556 -0.3689944 0 1.907556 -0.4282948 0 1.907556 -0.494694 0 1.907556 -0.5692344 0 1.907556 -0.6530715 0 1.907556 -0.7474945 0 1.907556 -0.8539475 0 1.907556 -0.974052 0 1.907556 -1.113885 0 1.907556 -1.27456 0 1.907556 -1.458117 0 1.907556 -1.667858 0 1.907556 -1.907556 0 1.907556 -2.181521 0 1.907556 -2.494678 0 1.907556 -2.852659 0 1.907556 -3.261896 0 1.907556 -3.729748 0 1.907556 -4.264621 0 1.907556 -4.876131 0 1.907556 -5.575266 0 1.907556 -6.374593 0 1.907556 -0 0.002268731 1.907556 -0 0.002268731 1.907556 -0 0.002268731 1.907556 -0.002268731 0.002268731 1.907556 -0.07076883 0.002268731 1.907556 -0.1119241 0.002268731 1.907556 -0.1475052 0.002268731 1.907556 -0.1846606 0.002268731 1.907556 -0.2245119 0.002268731 1.907556 -0.2679612 0.002268731 1.907556 -0.3158431 0.002268731 1.907556 -0.3689944 0.002268731 1.907556 -0.4282948 0.002268731 1.907556 -0.494694 0.002268731 1.907556 -0.5692344 0.002268731 1.907556 -0.6530715 0.002268731 1.907556 -0.7474945 0.002268731 1.907556 -0.8539475 0.002268731 1.907556 -0.974052 0.002268731 1.907556 -1.113885 0.002268731 1.907556 -1.27456 0.002268731 1.907556 -1.458117 0.002268731 1.907556 -1.667858 0.002268731 1.907556 -1.907556 0.002268731 1.907556 -2.181521 0.002268731 1.907556 -2.494678 0.002268731 1.907556 -2.852659 0.002268731 1.907556 -3.261896 0.002268731 1.907556 -3.729748 0.002268731 1.907556 -4.264621 0.002268731 1.907556 -4.876131 0.002268731 1.907556 -5.575266 0.002268731 1.907556 -6.374593 0.002268731 1.907556 -0 0.07076883 1.907556 -0 0.07076883 1.907556 -0 0.07076883 1.907556 -0.002268731 0.07076883 1.907556 -0.07076883 0.07076883 1.907556 -0.1119241 0.07076883 1.907556 -0.1475052 0.07076883 1.907556 -0.1846606 0.07076883 1.907556 -0.2245119 0.07076883 1.907556 -0.2679612 0.07076883 1.907556 -0.3158431 0.07076883 1.907556 -0.3689944 0.07076883 1.907556 -0.4282948 0.07076883 1.907556 -0.494694 0.07076883 1.907556 -0.5692344 0.07076883 1.907556 -0.6530715 0.07076883 1.907556 -0.7474945 0.07076883 1.907556 -0.8539475 0.07076883 1.907556 -0.974052 0.07076883 1.907556 -1.113885 0.07076883 1.907556 -1.27456 0.07076883 1.907556 -1.458117 0.07076883 1.907556 -1.667858 0.07076883 1.907556 -1.907556 0.07076883 1.907556 -2.181521 0.07076883 1.907556 -2.494678 0.07076883 1.907556 -2.852659 0.07076883 1.907556 -3.261896 0.07076883 1.907556 -3.729748 0.07076883 1.907556 -4.264621 0.07076883 1.907556 -4.876131 0.07076883 1.907556 -5.575266 0.07076883 1.907556 -6.374593 0.07076883 1.907556 -0 0.1119241 1.907556 -0 0.1119241 1.907556 -0 0.1119241 1.907556 -0.002268731 0.1119241 1.907556 -0.07076883 0.1119241 1.907556 -0.1119241 0.1119241 1.907556 -0.1475052 0.1119241 1.907556 -0.1846606 0.1119241 1.907556 -0.2245119 0.1119241 1.907556 -0.2679612 0.1119241 1.907556 -0.3158431 0.1119241 1.907556 -0.3689944 0.1119241 1.907556 -0.4282948 0.1119241 1.907556 -0.494694 0.1119241 1.907556 -0.5692344 0.1119241 1.907556 -0.6530715 0.1119241 1.907556 -0.7474945 0.1119241 1.907556 -0.8539475 0.1119241 1.907556 -0.974052 0.1119241 1.907556 -1.113885 0.1119241 1.907556 -1.27456 0.1119241 1.907556 -1.458117 0.1119241 1.907556 -1.667858 0.1119241 1.907556 -1.907556 0.1119241 1.907556 -2.181521 0.1119241 1.907556 -2.494678 0.1119241 1.907556 -2.852659 0.1119241 1.907556 -3.261896 0.1119241 1.907556 -3.729748 0.1119241 1.907556 -4.264621 0.1119241 1.907556 -4.876131 0.1119241 1.907556 -5.575266 0.1119241 1.907556 -6.374593 0.1119241 1.907556 -0 0.1475052 1.907556 -0 0.1475052 1.907556 -0 0.1475052 1.907556 -0.002268731 0.1475052 1.907556 -0.07076883 0.1475052 1.907556 -0.1119241 0.1475052 1.907556 -0.1475052 0.1475052 1.907556 -0.1846606 0.1475052 1.907556 -0.2245119 0.1475052 1.907556 -0.2679612 0.1475052 1.907556 -0.3158431 0.1475052 1.907556 -0.3689944 0.1475052 1.907556 -0.4282948 0.1475052 1.907556 -0.494694 0.1475052 1.907556 -0.5692344 0.1475052 1.907556 -0.6530715 0.1475052 1.907556 -0.7474945 0.1475052 1.907556 -0.8539475 0.1475052 1.907556 -0.974052 0.1475052 1.907556 -1.113885 0.1475052 1.907556 -1.27456 0.1475052 1.907556 -1.458117 0.1475052 1.907556 -1.667858 0.1475052 1.907556 -1.907556 0.1475052 1.907556 -2.181521 0.1475052 1.907556 -2.494678 0.1475052 1.907556 -2.852659 0.1475052 1.907556 -3.261896 0.1475052 1.907556 -3.729748 0.1475052 1.907556 -4.264621 0.1475052 1.907556 -4.876131 0.1475052 1.907556 -5.575266 0.1475052 1.907556 -6.374593 0.1475052 1.907556 -0 0.1846606 1.907556 -0 0.1846606 1.907556 -0 0.1846606 1.907556 -0.002268731 0.1846606 1.907556 -0.07076883 0.1846606 1.907556 -0.1119241 0.1846606 1.907556 -0.1475052 0.1846606 1.907556 -0.1846606 0.1846606 1.907556 -0.2245119 0.1846606 1.907556 -0.2679612 0.1846606 1.907556 -0.3158431 0.1846606 1.907556 -0.3689944 0.1846606 1.907556 -0.4282948 0.1846606 1.907556 -0.494694 0.1846606 1.907556 -0.5692344 0.1846606 1.907556 -0.6530715 0.1846606 1.907556 -0.7474945 0.1846606 1.907556 -0.8539475 0.1846606 1.907556 -0.974052 0.1846606 1.907556 -1.113885 0.1846606 1.907556 -1.27456 0.1846606 1.907556 -1.458117 0.1846606 1.907556 -1.667858 0.1846606 1.907556 -1.907556 0.1846606 1.907556 -2.181521 0.1846606 1.907556 -2.494678 0.1846606 1.907556 -2.852659 0.1846606 1.907556 -3.261896 0.1846606 1.907556 -3.729748 0.1846606 1.907556 -4.264621 0.1846606 1.907556 -4.876131 0.1846606 1.907556 -5.575266 0.1846606 1.907556 -6.374593 0.1846606 1.907556 -0 0.2245119 1.907556 -0 0.2245119 1.907556 -0 0.2245119 1.907556 -0.002268731 0.2245119 1.907556 -0.07076883 0.2245119 1.907556 -0.1119241 0.2245119 1.907556 -0.1475052 0.2245119 1.907556 -0.1846606 0.2245119 1.907556 -0.2245119 0.2245119 1.907556 -0.2679612 0.2245119 1.907556 -0.3158431 0.2245119 1.907556 -0.3689944 0.2245119 1.907556 -0.4282948 0.2245119 1.907556 -0.494694 0.2245119 1.907556 -0.5692344 0.2245119 1.907556 -0.6530715 0.2245119 1.907556 -0.7474945 0.2245119 1.907556 -0.8539475 0.2245119 1.907556 -0.974052 0.2245119 1.907556 -1.113885 0.2245119 1.907556 -1.27456 0.2245119 1.907556 -1.458117 0.2245119 1.907556 -1.667858 0.2245119 1.907556 -1.907556 0.2245119 1.907556 -2.181521 0.2245119 1.907556 -2.494678 0.2245119 1.907556 -2.852659 0.2245119 1.907556 -3.261896 0.2245119 1.907556 -3.729748 0.2245119 1.907556 -4.264621 0.2245119 1.907556 -4.876131 0.2245119 1.907556 -5.575266 0.2245119 1.907556 -6.374593 0.2245119 1.907556 -0 0.2679612 1.907556 -0 0.2679612 1.907556 -0 0.2679612 1.907556 -0.002268731 0.2679612 1.907556 -0.07076883 0.2679612 1.907556 -0.1119241 0.2679612 1.907556 -0.1475052 0.2679612 1.907556 -0.1846606 0.2679612 1.907556 -0.2245119 0.2679612 1.907556 -0.2679612 0.2679612 1.907556 -0.3158431 0.2679612 1.907556 -0.3689944 0.2679612 1.907556 -0.4282948 0.2679612 1.907556 -0.494694 0.2679612 1.907556 -0.5692344 0.2679612 1.907556 -0.6530715 0.2679612 1.907556 -0.7474945 0.2679612 1.907556 -0.8539475 0.2679612 1.907556 -0.974052 0.2679612 1.907556 -1.113885 0.2679612 1.907556 -1.27456 0.2679612 1.907556 -1.458117 0.2679612 1.907556 -1.667858 0.2679612 1.907556 -1.907556 0.2679612 1.907556 -2.181521 0.2679612 1.907556 -2.494678 0.2679612 1.907556 -2.852659 0.2679612 1.907556 -3.261896 0.2679612 1.907556 -3.729748 0.2679612 1.907556 -4.264621 0.2679612 1.907556 -4.876131 0.2679612 1.907556 -5.575266 0.2679612 1.907556 -6.374593 0.2679612 1.907556 -0 0.3158431 1.907556 -0 0.3158431 1.907556 -0 0.3158431 1.907556 -0.002268731 0.3158431 1.907556 -0.07076883 0.3158431 1.907556 -0.1119241 0.3158431 1.907556 -0.1475052 0.3158431 1.907556 -0.1846606 0.3158431 1.907556 -0.2245119 0.3158431 1.907556 -0.2679612 0.3158431 1.907556 -0.3158431 0.3158431 1.907556 -0.3689944 0.3158431 1.907556 -0.4282948 0.3158431 1.907556 -0.494694 0.3158431 1.907556 -0.5692344 0.3158431 1.907556 -0.6530715 0.3158431 1.907556 -0.7474945 0.3158431 1.907556 -0.8539475 0.3158431 1.907556 -0.974052 0.3158431 1.907556 -1.113885 0.3158431 1.907556 -1.27456 0.3158431 1.907556 -1.458117 0.3158431 1.907556 -1.667858 0.3158431 1.907556 -1.907556 0.3158431 1.907556 -2.181521 0.3158431 1.907556 -2.494678 0.3158431 1.907556 -2.852659 0.3158431 1.907556 -3.261896 0.3158431 1.907556 -3.729748 0.3158431 1.907556 -4.264621 0.3158431 1.907556 -4.876131 0.3158431 1.907556 -5.575266 0.3158431 1.907556 -6.374593 0.3158431 1.907556 -0 0.3689944 1.907556 -0 0.3689944 1.907556 -0 0.3689944 1.907556 -0.002268731 0.3689944 1.907556 -0.07076883 0.3689944 1.907556 -0.1119241 0.3689944 1.907556 -0.1475052 0.3689944 1.907556 -0.1846606 0.3689944 1.907556 -0.2245119 0.3689944 1.907556 -0.2679612 0.3689944 1.907556 -0.3158431 0.3689944 1.907556 -0.3689944 0.3689944 1.907556 -0.4282948 0.3689944 1.907556 -0.494694 0.3689944 1.907556 -0.5692344 0.3689944 1.907556 -0.6530715 0.3689944 1.907556 -0.7474945 0.3689944 1.907556 -0.8539475 0.3689944 1.907556 -0.974052 0.3689944 1.907556 -1.113885 0.3689944 1.907556 -1.27456 0.3689944 1.907556 -1.458117 0.3689944 1.907556 -1.667858 0.3689944 1.907556 -1.907556 0.3689944 1.907556 -2.181521 0.3689944 1.907556 -2.494678 0.3689944 1.907556 -2.852659 0.3689944 1.907556 -3.261896 0.3689944 1.907556 -3.729748 0.3689944 1.907556 -4.264621 0.3689944 1.907556 -4.876131 0.3689944 1.907556 -5.575266 0.3689944 1.907556 -6.374593 0.3689944 1.907556 -0 0.4282948 1.907556 -0 0.4282948 1.907556 -0 0.4282948 1.907556 -0.002268731 0.4282948 1.907556 -0.07076883 0.4282948 1.907556 -0.1119241 0.4282948 1.907556 -0.1475052 0.4282948 1.907556 -0.1846606 0.4282948 1.907556 -0.2245119 0.4282948 1.907556 -0.2679612 0.4282948 1.907556 -0.3158431 0.4282948 1.907556 -0.3689944 0.4282948 1.907556 -0.4282948 0.4282948 1.907556 -0.494694 0.4282948 1.907556 -0.5692344 0.4282948 1.907556 -0.6530715 0.4282948 1.907556 -0.7474945 0.4282948 1.907556 -0.8539475 0.4282948 1.907556 -0.974052 0.4282948 1.907556 -1.113885 0.4282948 1.907556 -1.27456 0.4282948 1.907556 -1.458117 0.4282948 1.907556 -1.667858 0.4282948 1.907556 -1.907556 0.4282948 1.907556 -2.181521 0.4282948 1.907556 -2.494678 0.4282948 1.907556 -2.852659 0.4282948 1.907556 -3.261896 0.4282948 1.907556 -3.729748 0.4282948 1.907556 -4.264621 0.4282948 1.907556 -4.876131 0.4282948 1.907556 -5.575266 0.4282948 1.907556 -6.374593 0.4282948 1.907556 -0 0.494694 1.907556 -0 0.494694 1.907556 -0 0.494694 1.907556 -0.002268731 0.494694 1.907556 -0.07076883 0.494694 1.907556 -0.1119241 0.494694 1.907556 -0.1475052 0.494694 1.907556 -0.1846606 0.494694 1.907556 -0.2245119 0.494694 1.907556 -0.2679612 0.494694 1.907556 -0.3158431 0.494694 1.907556 -0.3689944 0.494694 1.907556 -0.4282948 0.494694 1.907556 -0.494694 0.494694 1.907556 -0.5692344 0.494694 1.907556 -0.6530715 0.494694 1.907556 -0.7474945 0.494694 1.907556 -0.8539475 0.494694 1.907556 -0.974052 0.494694 1.907556 -1.113885 0.494694 1.907556 -1.27456 0.494694 1.907556 -1.458117 0.494694 1.907556 -1.667858 0.494694 1.907556 -1.907556 0.494694 1.907556 -2.181521 0.494694 1.907556 -2.494678 0.494694 1.907556 -2.852659 0.494694 1.907556 -3.261896 0.494694 1.907556 -3.729748 0.494694 1.907556 -4.264621 0.494694 1.907556 -4.876131 0.494694 1.907556 -5.575266 0.494694 1.907556 -6.374593 0.494694 1.907556 -0 0.5692344 1.907556 -0 0.5692344 1.907556 -0 0.5692344 1.907556 -0.002268731 0.5692344 1.907556 -0.07076883 0.5692344 1.907556 -0.1119241 0.5692344 1.907556 -0.1475052 0.5692344 1.907556 -0.1846606 0.5692344 1.907556 -0.2245119 0.5692344 1.907556 -0.2679612 0.5692344 1.907556 -0.3158431 0.5692344 1.907556 -0.3689944 0.5692344 1.907556 -0.4282948 0.5692344 1.907556 -0.494694 0.5692344 1.907556 -0.5692344 0.5692344 1.907556 -0.6530715 0.5692344 1.907556 -0.7474945 0.5692344 1.907556 -0.8539475 0.5692344 1.907556 -0.974052 0.5692344 1.907556 -1.113885 0.5692344 1.907556 -1.27456 0.5692344 1.907556 -1.458117 0.5692344 1.907556 -1.667858 0.5692344 1.907556 -1.907556 0.5692344 1.907556 -2.181521 0.5692344 1.907556 -2.494678 0.5692344 1.907556 -2.852659 0.5692344 1.907556 -3.261896 0.5692344 1.907556 -3.729748 0.5692344 1.907556 -4.264621 0.5692344 1.907556 -4.876131 0.5692344 1.907556 -5.575266 0.5692344 1.907556 -6.374593 0.5692344 1.907556 -0 0.6530715 1.907556 -0 0.6530715 1.907556 -0 0.6530715 1.907556 -0.002268731 0.6530715 1.907556 -0.07076883 0.6530715 1.907556 -0.1119241 0.6530715 1.907556 -0.1475052 0.6530715 1.907556 -0.1846606 0.6530715 1.907556 -0.2245119 0.6530715 1.907556 -0.2679612 0.6530715 1.907556 -0.3158431 0.6530715 1.907556 -0.3689944 0.6530715 1.907556 -0.4282948 0.6530715 1.907556 -0.494694 0.6530715 1.907556 -0.5692344 0.6530715 1.907556 -0.6530715 0.6530715 1.907556 -0.7474945 0.6530715 1.907556 -0.8539475 0.6530715 1.907556 -0.974052 0.6530715 1.907556 -1.113885 0.6530715 1.907556 -1.27456 0.6530715 1.907556 -1.458117 0.6530715 1.907556 -1.667858 0.6530715 1.907556 -1.907556 0.6530715 1.907556 -2.181521 0.6530715 1.907556 -2.494678 0.6530715 1.907556 -2.852659 0.6530715 1.907556 -3.261896 0.6530715 1.907556 -3.729748 0.6530715 1.907556 -4.264621 0.6530715 1.907556 -4.876131 0.6530715 1.907556 -5.575266 0.6530715 1.907556 -6.374593 0.6530715 1.907556 -0 0.7474945 1.907556 -0 0.7474945 1.907556 -0 0.7474945 1.907556 -0.002268731 0.7474945 1.907556 -0.07076883 0.7474945 1.907556 -0.1119241 0.7474945 1.907556 -0.1475052 0.7474945 1.907556 -0.1846606 0.7474945 1.907556 -0.2245119 0.7474945 1.907556 -0.2679612 0.7474945 1.907556 -0.3158431 0.7474945 1.907556 -0.3689944 0.7474945 1.907556 -0.4282948 0.7474945 1.907556 -0.494694 0.7474945 1.907556 -0.5692344 0.7474945 1.907556 -0.6530715 0.7474945 1.907556 -0.7474945 0.7474945 1.907556 -0.8539475 0.7474945 1.907556 -0.974052 0.7474945 1.907556 -1.113885 0.7474945 1.907556 -1.27456 0.7474945 1.907556 -1.458117 0.7474945 1.907556 -1.667858 0.7474945 1.907556 -1.907556 0.7474945 1.907556 -2.181521 0.7474945 1.907556 -2.494678 0.7474945 1.907556 -2.852659 0.7474945 1.907556 -3.261896 0.7474945 1.907556 -3.729748 0.7474945 1.907556 -4.264621 0.7474945 1.907556 -4.876131 0.7474945 1.907556 -5.575266 0.7474945 1.907556 -6.374593 0.7474945 1.907556 -0 0.8539475 1.907556 -0 0.8539475 1.907556 -0 0.8539475 1.907556 -0.002268731 0.8539475 1.907556 -0.07076883 0.8539475 1.907556 -0.1119241 0.8539475 1.907556 -0.1475052 0.8539475 1.907556 -0.1846606 0.8539475 1.907556 -0.2245119 0.8539475 1.907556 -0.2679612 0.8539475 1.907556 -0.3158431 0.8539475 1.907556 -0.3689944 0.8539475 1.907556 -0.4282948 0.8539475 1.907556 -0.494694 0.8539475 1.907556 -0.5692344 0.8539475 1.907556 -0.6530715 0.8539475 1.907556 -0.7474945 0.8539475 1.907556 -0.8539475 0.8539475 1.907556 -0.974052 0.8539475 1.907556 -1.113885 0.8539475 1.907556 -1.27456 0.8539475 1.907556 -1.458117 0.8539475 1.907556 -1.667858 0.8539475 1.907556 -1.907556 0.8539475 1.907556 -2.181521 0.8539475 1.907556 -2.494678 0.8539475 1.907556 -2.852659 0.8539475 1.907556 -3.261896 0.8539475 1.907556 -3.729748 0.8539475 1.907556 -4.264621 0.8539475 1.907556 -4.876131 0.8539475 1.907556 -5.575266 0.8539475 1.907556 -6.374593 0.8539475 1.907556 -0 0.974052 1.907556 -0 0.974052 1.907556 -0 0.974052 1.907556 -0.002268731 0.974052 1.907556 -0.07076883 0.974052 1.907556 -0.1119241 0.974052 1.907556 -0.1475052 0.974052 1.907556 -0.1846606 0.974052 1.907556 -0.2245119 0.974052 1.907556 -0.2679612 0.974052 1.907556 -0.3158431 0.974052 1.907556 -0.3689944 0.974052 1.907556 -0.4282948 0.974052 1.907556 -0.494694 0.974052 1.907556 -0.5692344 0.974052 1.907556 -0.6530715 0.974052 1.907556 -0.7474945 0.974052 1.907556 -0.8539475 0.974052 1.907556 -0.974052 0.974052 1.907556 -1.113885 0.974052 1.907556 -1.27456 0.974052 1.907556 -1.458117 0.974052 1.907556 -1.667858 0.974052 1.907556 -1.907556 0.974052 1.907556 -2.181521 0.974052 1.907556 -2.494678 0.974052 1.907556 -2.852659 0.974052 1.907556 -3.261896 0.974052 1.907556 -3.729748 0.974052 1.907556 -4.264621 0.974052 1.907556 -4.876131 0.974052 1.907556 -5.575266 0.974052 1.907556 -6.374593 0.974052 1.907556 -0 1.113885 1.907556 -0 1.113885 1.907556 -0 1.113885 1.907556 -0.002268731 1.113885 1.907556 -0.07076883 1.113885 1.907556 -0.1119241 1.113885 1.907556 -0.1475052 1.113885 1.907556 -0.1846606 1.113885 1.907556 -0.2245119 1.113885 1.907556 -0.2679612 1.113885 1.907556 -0.3158431 1.113885 1.907556 -0.3689944 1.113885 1.907556 -0.4282948 1.113885 1.907556 -0.494694 1.113885 1.907556 -0.5692344 1.113885 1.907556 -0.6530715 1.113885 1.907556 -0.7474945 1.113885 1.907556 -0.8539475 1.113885 1.907556 -0.974052 1.113885 1.907556 -1.113885 1.113885 1.907556 -1.27456 1.113885 1.907556 -1.458117 1.113885 1.907556 -1.667858 1.113885 1.907556 -1.907556 1.113885 1.907556 -2.181521 1.113885 1.907556 -2.494678 1.113885 1.907556 -2.852659 1.113885 1.907556 -3.261896 1.113885 1.907556 -3.729748 1.113885 1.907556 -4.264621 1.113885 1.907556 -4.876131 1.113885 1.907556 -5.575266 1.113885 1.907556 -6.374593 1.113885 1.907556 -0 1.27456 1.907556 -0 1.27456 1.907556 -0 1.27456 1.907556 -0.002268731 1.27456 1.907556 -0.07076883 1.27456 1.907556 -0.1119241 1.27456 1.907556 -0.1475052 1.27456 1.907556 -0.1846606 1.27456 1.907556 -0.2245119 1.27456 1.907556 -0.2679612 1.27456 1.907556 -0.3158431 1.27456 1.907556 -0.3689944 1.27456 1.907556 -0.4282948 1.27456 1.907556 -0.494694 1.27456 1.907556 -0.5692344 1.27456 1.907556 -0.6530715 1.27456 1.907556 -0.7474945 1.27456 1.907556 -0.8539475 1.27456 1.907556 -0.974052 1.27456 1.907556 -1.113885 1.27456 1.907556 -1.27456 1.27456 1.907556 -1.458117 1.27456 1.907556 -1.667858 1.27456 1.907556 -1.907556 1.27456 1.907556 -2.181521 1.27456 1.907556 -2.494678 1.27456 1.907556 -2.852659 1.27456 1.907556 -3.261896 1.27456 1.907556 -3.729748 1.27456 1.907556 -4.264621 1.27456 1.907556 -4.876131 1.27456 1.907556 -5.575266 1.27456 1.907556 -6.374593 1.27456 1.907556 -0 1.458117 1.907556 -0 1.458117 1.907556 -0 1.458117 1.907556 -0.002268731 1.458117 1.907556 -0.07076883 1.458117 1.907556 -0.1119241 1.458117 1.907556 -0.1475052 1.458117 1.907556 -0.1846606 1.458117 1.907556 -0.2245119 1.458117 1.907556 -0.2679612 1.458117 1.907556 -0.3158431 1.458117 1.907556 -0.3689944 1.458117 1.907556 -0.4282948 1.458117 1.907556 -0.494694 1.458117 1.907556 -0.5692344 1.458117 1.907556 -0.6530715 1.458117 1.907556 -0.7474945 1.458117 1.907556 -0.8539475 1.458117 1.907556 -0.974052 1.458117 1.907556 -1.113885 1.458117 1.907556 -1.27456 1.458117 1.907556 -1.458117 1.458117 1.907556 -1.667858 1.458117 1.907556 -1.907556 1.458117 1.907556 -2.181521 1.458117 1.907556 -2.494678 1.458117 1.907556 -2.852659 1.458117 1.907556 -3.261896 1.458117 1.907556 -3.729748 1.458117 1.907556 -4.264621 1.458117 1.907556 -4.876131 1.458117 1.907556 -5.575266 1.458117 1.907556 -6.374593 1.458117 1.907556 -0 1.667858 1.907556 -0 1.667858 1.907556 -0 1.667858 1.907556 -0.002268731 1.667858 1.907556 -0.07076883 1.667858 1.907556 -0.1119241 1.667858 1.907556 -0.1475052 1.667858 1.907556 -0.1846606 1.667858 1.907556 -0.2245119 1.667858 1.907556 -0.2679612 1.667858 1.907556 -0.3158431 1.667858 1.907556 -0.3689944 1.667858 1.907556 -0.4282948 1.667858 1.907556 -0.494694 1.667858 1.907556 -0.5692344 1.667858 1.907556 -0.6530715 1.667858 1.907556 -0.7474945 1.667858 1.907556 -0.8539475 1.667858 1.907556 -0.974052 1.667858 1.907556 -1.113885 1.667858 1.907556 -1.27456 1.667858 1.907556 -1.458117 1.667858 1.907556 -1.667858 1.667858 1.907556 -1.907556 1.667858 1.907556 -2.181521 1.667858 1.907556 -2.494678 1.667858 1.907556 -2.852659 1.667858 1.907556 -3.261896 1.667858 1.907556 -3.729748 1.667858 1.907556 -4.264621 1.667858 1.907556 -4.876131 1.667858 1.907556 -5.575266 1.667858 1.907556 -6.374593 1.667858 1.907556 -0 1.907556 1.907556 -0 1.907556 1.907556 -0 1.907556 1.907556 -0.002268731 1.907556 1.907556 -0.07076883 1.907556 1.907556 -0.1119241 1.907556 1.907556 -0.1475052 1.907556 1.907556 -0.1846606 1.907556 1.907556 -0.2245119 1.907556 1.907556 -0.2679612 1.907556 1.907556 -0.3158431 1.907556 1.907556 -0.3689944 1.907556 1.907556 -0.4282948 1.907556 1.907556 -0.494694 1.907556 1.907556 -0.5692344 1.907556 1.907556 -0.6530715 1.907556 1.907556 -0.7474945 1.907556 1.907556 -0.8539475 1.907556 1.907556 -0.974052 1.907556 1.907556 -1.113885 1.907556 1.907556 -1.27456 1.907556 1.907556 -1.458117 1.907556 1.907556 -1.667858 1.907556 1.907556 -1.907556 1.907556 1.907556 -2.181521 1.907556 1.907556 -2.494678 1.907556 1.907556 -2.852659 1.907556 1.907556 -3.261896 1.907556 1.907556 -3.729748 1.907556 1.907556 -4.264621 1.907556 1.907556 -4.876131 1.907556 1.907556 -5.575266 1.907556 1.907556 -6.374593 1.907556 1.907556 -0 2.181521 1.907556 -0 2.181521 1.907556 -0 2.181521 1.907556 -0.002268731 2.181521 1.907556 -0.07076883 2.181521 1.907556 -0.1119241 2.181521 1.907556 -0.1475052 2.181521 1.907556 -0.1846606 2.181521 1.907556 -0.2245119 2.181521 1.907556 -0.2679612 2.181521 1.907556 -0.3158431 2.181521 1.907556 -0.3689944 2.181521 1.907556 -0.4282948 2.181521 1.907556 -0.494694 2.181521 1.907556 -0.5692344 2.181521 1.907556 -0.6530715 2.181521 1.907556 -0.7474945 2.181521 1.907556 -0.8539475 2.181521 1.907556 -0.974052 2.181521 1.907556 -1.113885 2.181521 1.907556 -1.27456 2.181521 1.907556 -1.458117 2.181521 1.907556 -1.667858 2.181521 1.907556 -1.907556 2.181521 1.907556 -2.181521 2.181521 1.907556 -2.494678 2.181521 1.907556 -2.852659 2.181521 1.907556 -3.261896 2.181521 1.907556 -3.729748 2.181521 1.907556 -4.264621 2.181521 1.907556 -4.876131 2.181521 1.907556 -5.575266 2.181521 1.907556 -6.374593 2.181521 1.907556 -0 2.494678 1.907556 -0 2.494678 1.907556 -0 2.494678 1.907556 -0.002268731 2.494678 1.907556 -0.07076883 2.494678 1.907556 -0.1119241 2.494678 1.907556 -0.1475052 2.494678 1.907556 -0.1846606 2.494678 1.907556 -0.2245119 2.494678 1.907556 -0.2679612 2.494678 1.907556 -0.3158431 2.494678 1.907556 -0.3689944 2.494678 1.907556 -0.4282948 2.494678 1.907556 -0.494694 2.494678 1.907556 -0.5692344 2.494678 1.907556 -0.6530715 2.494678 1.907556 -0.7474945 2.494678 1.907556 -0.8539475 2.494678 1.907556 -0.974052 2.494678 1.907556 -1.113885 2.494678 1.907556 -1.27456 2.494678 1.907556 -1.458117 2.494678 1.907556 -1.667858 2.494678 1.907556 -1.907556 2.494678 1.907556 -2.181521 2.494678 1.907556 -2.494678 2.494678 1.907556 -2.852659 2.494678 1.907556 -3.261896 2.494678 1.907556 -3.729748 2.494678 1.907556 -4.264621 2.494678 1.907556 -4.876131 2.494678 1.907556 -5.575266 2.494678 1.907556 -6.374593 2.494678 1.907556 -0 2.852659 1.907556 -0 2.852659 1.907556 -0 2.852659 1.907556 -0.002268731 2.852659 1.907556 -0.07076883 2.852659 1.907556 -0.1119241 2.852659 1.907556 -0.1475052 2.852659 1.907556 -0.1846606 2.852659 1.907556 -0.2245119 2.852659 1.907556 -0.2679612 2.852659 1.907556 -0.3158431 2.852659 1.907556 -0.3689944 2.852659 1.907556 -0.4282948 2.852659 1.907556 -0.494694 2.852659 1.907556 -0.5692344 2.852659 1.907556 -0.6530715 2.852659 1.907556 -0.7474945 2.852659 1.907556 -0.8539475 2.852659 1.907556 -0.974052 2.852659 1.907556 -1.113885 2.852659 1.907556 -1.27456 2.852659 1.907556 -1.458117 2.852659 1.907556 -1.667858 2.852659 1.907556 -1.907556 2.852659 1.907556 -2.181521 2.852659 1.907556 -2.494678 2.852659 1.907556 -2.852659 2.852659 1.907556 -3.261896 2.852659 1.907556 -3.729748 2.852659 1.907556 -4.264621 2.852659 1.907556 -4.876131 2.852659 1.907556 -5.575266 2.852659 1.907556 -6.374593 2.852659 1.907556 -0 3.261896 1.907556 -0 3.261896 1.907556 -0 3.261896 1.907556 -0.002268731 3.261896 1.907556 -0.07076883 3.261896 1.907556 -0.1119241 3.261896 1.907556 -0.1475052 3.261896 1.907556 -0.1846606 3.261896 1.907556 -0.2245119 3.261896 1.907556 -0.2679612 3.261896 1.907556 -0.3158431 3.261896 1.907556 -0.3689944 3.261896 1.907556 -0.4282948 3.261896 1.907556 -0.494694 3.261896 1.907556 -0.5692344 3.261896 1.907556 -0.6530715 3.261896 1.907556 -0.7474945 3.261896 1.907556 -0.8539475 3.261896 1.907556 -0.974052 3.261896 1.907556 -1.113885 3.261896 1.907556 -1.27456 3.261896 1.907556 -1.458117 3.261896 1.907556 -1.667858 3.261896 1.907556 -1.907556 3.261896 1.907556 -2.181521 3.261896 1.907556 -2.494678 3.261896 1.907556 -2.852659 3.261896 1.907556 -3.261896 3.261896 1.907556 -3.729748 3.261896 1.907556 -4.264621 3.261896 1.907556 -4.876131 3.261896 1.907556 -5.575266 3.261896 1.907556 -6.374593 3.261896 1.907556 -0 3.729748 1.907556 -0 3.729748 1.907556 -0 3.729748 1.907556 -0.002268731 3.729748 1.907556 -0.07076883 3.729748 1.907556 -0.1119241 3.729748 1.907556 -0.1475052 3.729748 1.907556 -0.1846606 3.729748 1.907556 -0.2245119 3.729748 1.907556 -0.2679612 3.729748 1.907556 -0.3158431 3.729748 1.907556 -0.3689944 3.729748 1.907556 -0.4282948 3.729748 1.907556 -0.494694 3.729748 1.907556 -0.5692344 3.729748 1.907556 -0.6530715 3.729748 1.907556 -0.7474945 3.729748 1.907556 -0.8539475 3.729748 1.907556 -0.974052 3.729748 1.907556 -1.113885 3.729748 1.907556 -1.27456 3.729748 1.907556 -1.458117 3.729748 1.907556 -1.667858 3.729748 1.907556 -1.907556 3.729748 1.907556 -2.181521 3.729748 1.907556 -2.494678 3.729748 1.907556 -2.852659 3.729748 1.907556 -3.261896 3.729748 1.907556 -3.729748 3.729748 1.907556 -4.264621 3.729748 1.907556 -4.876131 3.729748 1.907556 -5.575266 3.729748 1.907556 -6.374593 3.729748 1.907556 -0 4.264621 1.907556 -0 4.264621 1.907556 -0 4.264621 1.907556 -0.002268731 4.264621 1.907556 -0.07076883 4.264621 1.907556 -0.1119241 4.264621 1.907556 -0.1475052 4.264621 1.907556 -0.1846606 4.264621 1.907556 -0.2245119 4.264621 1.907556 -0.2679612 4.264621 1.907556 -0.3158431 4.264621 1.907556 -0.3689944 4.264621 1.907556 -0.4282948 4.264621 1.907556 -0.494694 4.264621 1.907556 -0.5692344 4.264621 1.907556 -0.6530715 4.264621 1.907556 -0.7474945 4.264621 1.907556 -0.8539475 4.264621 1.907556 -0.974052 4.264621 1.907556 -1.113885 4.264621 1.907556 -1.27456 4.264621 1.907556 -1.458117 4.264621 1.907556 -1.667858 4.264621 1.907556 -1.907556 4.264621 1.907556 -2.181521 4.264621 1.907556 -2.494678 4.264621 1.907556 -2.852659 4.264621 1.907556 -3.261896 4.264621 1.907556 -3.729748 4.264621 1.907556 -4.264621 4.264621 1.907556 -4.876131 4.264621 1.907556 -5.575266 4.264621 1.907556 -6.374593 4.264621 1.907556 -0 4.876131 1.907556 -0 4.876131 1.907556 -0 4.876131 1.907556 -0.002268731 4.876131 1.907556 -0.07076883 4.876131 1.907556 -0.1119241 4.876131 1.907556 -0.1475052 4.876131 1.907556 -0.1846606 4.876131 1.907556 -0.2245119 4.876131 1.907556 -0.2679612 4.876131 1.907556 -0.3158431 4.876131 1.907556 -0.3689944 4.876131 1.907556 -0.4282948 4.876131 1.907556 -0.494694 4.876131 1.907556 -0.5692344 4.876131 1.907556 -0.6530715 4.876131 1.907556 -0.7474945 4.876131 1.907556 -0.8539475 4.876131 1.907556 -0.974052 4.876131 1.907556 -1.113885 4.876131 1.907556 -1.27456 4.876131 1.907556 -1.458117 4.876131 1.907556 -1.667858 4.876131 1.907556 -1.907556 4.876131 1.907556 -2.181521 4.876131 1.907556 -2.494678 4.876131 1.907556 -2.852659 4.876131 1.907556 -3.261896 4.876131 1.907556 -3.729748 4.876131 1.907556 -4.264621 4.876131 1.907556 -4.876131 4.876131 1.907556 -5.575266 4.876131 1.907556 -6.374593 4.876131 1.907556 -0 5.575266 1.907556 -0 5.575266 1.907556 -0 5.575266 1.907556 -0.002268731 5.575266 1.907556 -0.07076883 5.575266 1.907556 -0.1119241 5.575266 1.907556 -0.1475052 5.575266 1.907556 -0.1846606 5.575266 1.907556 -0.2245119 5.575266 1.907556 -0.2679612 5.575266 1.907556 -0.3158431 5.575266 1.907556 -0.3689944 5.575266 1.907556 -0.4282948 5.575266 1.907556 -0.494694 5.575266 1.907556 -0.5692344 5.575266 1.907556 -0.6530715 5.575266 1.907556 -0.7474945 5.575266 1.907556 -0.8539475 5.575266 1.907556 -0.974052 5.575266 1.907556 -1.113885 5.575266 1.907556 -1.27456 5.575266 1.907556 -1.458117 5.575266 1.907556 -1.667858 5.575266 1.907556 -1.907556 5.575266 1.907556 -2.181521 5.575266 1.907556 -2.494678 5.575266 1.907556 -2.852659 5.575266 1.907556 -3.261896 5.575266 1.907556 -3.729748 5.575266 1.907556 -4.264621 5.575266 1.907556 -4.876131 5.575266 1.907556 -5.575266 5.575266 1.907556 -6.374593 5.575266 1.907556 -0 6.374593 1.907556 -0 6.374593 1.907556 -0 6.374593 1.907556 -0.002268731 6.374593 1.907556 -0.07076883 6.374593 1.907556 -0.1119241 6.374593 1.907556 -0.1475052 6.374593 1.907556 -0.1846606 6.374593 1.907556 -0.2245119 6.374593 1.907556 -0.2679612 6.374593 1.907556 -0.3158431 6.374593 1.907556 -0.3689944 6.374593 1.907556 -0.4282948 6.374593 1.907556 -0.494694 6.374593 1.907556 -0.5692344 6.374593 1.907556 -0.6530715 6.374593 1.907556 -0.7474945 6.374593 1.907556 -0.8539475 6.374593 1.907556 -0.974052 6.374593 1.907556 -1.113885 6.374593 1.907556 -1.27456 6.374593 1.907556 -1.458117 6.374593 1.907556 -1.667858 6.374593 1.907556 -1.907556 6.374593 1.907556 -2.181521 6.374593 1.907556 -2.494678 6.374593 1.907556 -2.852659 6.374593 1.907556 -3.261896 6.374593 1.907556 -3.729748 6.374593 1.907556 -4.264621 6.374593 1.907556 -4.876131 6.374593 1.907556 -5.575266 6.374593 1.907556 -6.374593 6.374593 1.907556 -0 0 2.181521 -0 0 2.181521 -0 0 2.181521 -0.002268731 0 2.181521 -0.07076883 0 2.181521 -0.1119241 0 2.181521 -0.1475052 0 2.181521 -0.1846606 0 2.181521 -0.2245119 0 2.181521 -0.2679612 0 2.181521 -0.3158431 0 2.181521 -0.3689944 0 2.181521 -0.4282948 0 2.181521 -0.494694 0 2.181521 -0.5692344 0 2.181521 -0.6530715 0 2.181521 -0.7474945 0 2.181521 -0.8539475 0 2.181521 -0.974052 0 2.181521 -1.113885 0 2.181521 -1.27456 0 2.181521 -1.458117 0 2.181521 -1.667858 0 2.181521 -1.907556 0 2.181521 -2.181521 0 2.181521 -2.494678 0 2.181521 -2.852659 0 2.181521 -3.261896 0 2.181521 -3.729748 0 2.181521 -4.264621 0 2.181521 -4.876131 0 2.181521 -5.575266 0 2.181521 -6.374593 0 2.181521 -0 0 2.181521 -0 0 2.181521 -0 0 2.181521 -0.002268731 0 2.181521 -0.07076883 0 2.181521 -0.1119241 0 2.181521 -0.1475052 0 2.181521 -0.1846606 0 2.181521 -0.2245119 0 2.181521 -0.2679612 0 2.181521 -0.3158431 0 2.181521 -0.3689944 0 2.181521 -0.4282948 0 2.181521 -0.494694 0 2.181521 -0.5692344 0 2.181521 -0.6530715 0 2.181521 -0.7474945 0 2.181521 -0.8539475 0 2.181521 -0.974052 0 2.181521 -1.113885 0 2.181521 -1.27456 0 2.181521 -1.458117 0 2.181521 -1.667858 0 2.181521 -1.907556 0 2.181521 -2.181521 0 2.181521 -2.494678 0 2.181521 -2.852659 0 2.181521 -3.261896 0 2.181521 -3.729748 0 2.181521 -4.264621 0 2.181521 -4.876131 0 2.181521 -5.575266 0 2.181521 -6.374593 0 2.181521 -0 0 2.181521 -0 0 2.181521 -0 0 2.181521 -0.002268731 0 2.181521 -0.07076883 0 2.181521 -0.1119241 0 2.181521 -0.1475052 0 2.181521 -0.1846606 0 2.181521 -0.2245119 0 2.181521 -0.2679612 0 2.181521 -0.3158431 0 2.181521 -0.3689944 0 2.181521 -0.4282948 0 2.181521 -0.494694 0 2.181521 -0.5692344 0 2.181521 -0.6530715 0 2.181521 -0.7474945 0 2.181521 -0.8539475 0 2.181521 -0.974052 0 2.181521 -1.113885 0 2.181521 -1.27456 0 2.181521 -1.458117 0 2.181521 -1.667858 0 2.181521 -1.907556 0 2.181521 -2.181521 0 2.181521 -2.494678 0 2.181521 -2.852659 0 2.181521 -3.261896 0 2.181521 -3.729748 0 2.181521 -4.264621 0 2.181521 -4.876131 0 2.181521 -5.575266 0 2.181521 -6.374593 0 2.181521 -0 0.002268731 2.181521 -0 0.002268731 2.181521 -0 0.002268731 2.181521 -0.002268731 0.002268731 2.181521 -0.07076883 0.002268731 2.181521 -0.1119241 0.002268731 2.181521 -0.1475052 0.002268731 2.181521 -0.1846606 0.002268731 2.181521 -0.2245119 0.002268731 2.181521 -0.2679612 0.002268731 2.181521 -0.3158431 0.002268731 2.181521 -0.3689944 0.002268731 2.181521 -0.4282948 0.002268731 2.181521 -0.494694 0.002268731 2.181521 -0.5692344 0.002268731 2.181521 -0.6530715 0.002268731 2.181521 -0.7474945 0.002268731 2.181521 -0.8539475 0.002268731 2.181521 -0.974052 0.002268731 2.181521 -1.113885 0.002268731 2.181521 -1.27456 0.002268731 2.181521 -1.458117 0.002268731 2.181521 -1.667858 0.002268731 2.181521 -1.907556 0.002268731 2.181521 -2.181521 0.002268731 2.181521 -2.494678 0.002268731 2.181521 -2.852659 0.002268731 2.181521 -3.261896 0.002268731 2.181521 -3.729748 0.002268731 2.181521 -4.264621 0.002268731 2.181521 -4.876131 0.002268731 2.181521 -5.575266 0.002268731 2.181521 -6.374593 0.002268731 2.181521 -0 0.07076883 2.181521 -0 0.07076883 2.181521 -0 0.07076883 2.181521 -0.002268731 0.07076883 2.181521 -0.07076883 0.07076883 2.181521 -0.1119241 0.07076883 2.181521 -0.1475052 0.07076883 2.181521 -0.1846606 0.07076883 2.181521 -0.2245119 0.07076883 2.181521 -0.2679612 0.07076883 2.181521 -0.3158431 0.07076883 2.181521 -0.3689944 0.07076883 2.181521 -0.4282948 0.07076883 2.181521 -0.494694 0.07076883 2.181521 -0.5692344 0.07076883 2.181521 -0.6530715 0.07076883 2.181521 -0.7474945 0.07076883 2.181521 -0.8539475 0.07076883 2.181521 -0.974052 0.07076883 2.181521 -1.113885 0.07076883 2.181521 -1.27456 0.07076883 2.181521 -1.458117 0.07076883 2.181521 -1.667858 0.07076883 2.181521 -1.907556 0.07076883 2.181521 -2.181521 0.07076883 2.181521 -2.494678 0.07076883 2.181521 -2.852659 0.07076883 2.181521 -3.261896 0.07076883 2.181521 -3.729748 0.07076883 2.181521 -4.264621 0.07076883 2.181521 -4.876131 0.07076883 2.181521 -5.575266 0.07076883 2.181521 -6.374593 0.07076883 2.181521 -0 0.1119241 2.181521 -0 0.1119241 2.181521 -0 0.1119241 2.181521 -0.002268731 0.1119241 2.181521 -0.07076883 0.1119241 2.181521 -0.1119241 0.1119241 2.181521 -0.1475052 0.1119241 2.181521 -0.1846606 0.1119241 2.181521 -0.2245119 0.1119241 2.181521 -0.2679612 0.1119241 2.181521 -0.3158431 0.1119241 2.181521 -0.3689944 0.1119241 2.181521 -0.4282948 0.1119241 2.181521 -0.494694 0.1119241 2.181521 -0.5692344 0.1119241 2.181521 -0.6530715 0.1119241 2.181521 -0.7474945 0.1119241 2.181521 -0.8539475 0.1119241 2.181521 -0.974052 0.1119241 2.181521 -1.113885 0.1119241 2.181521 -1.27456 0.1119241 2.181521 -1.458117 0.1119241 2.181521 -1.667858 0.1119241 2.181521 -1.907556 0.1119241 2.181521 -2.181521 0.1119241 2.181521 -2.494678 0.1119241 2.181521 -2.852659 0.1119241 2.181521 -3.261896 0.1119241 2.181521 -3.729748 0.1119241 2.181521 -4.264621 0.1119241 2.181521 -4.876131 0.1119241 2.181521 -5.575266 0.1119241 2.181521 -6.374593 0.1119241 2.181521 -0 0.1475052 2.181521 -0 0.1475052 2.181521 -0 0.1475052 2.181521 -0.002268731 0.1475052 2.181521 -0.07076883 0.1475052 2.181521 -0.1119241 0.1475052 2.181521 -0.1475052 0.1475052 2.181521 -0.1846606 0.1475052 2.181521 -0.2245119 0.1475052 2.181521 -0.2679612 0.1475052 2.181521 -0.3158431 0.1475052 2.181521 -0.3689944 0.1475052 2.181521 -0.4282948 0.1475052 2.181521 -0.494694 0.1475052 2.181521 -0.5692344 0.1475052 2.181521 -0.6530715 0.1475052 2.181521 -0.7474945 0.1475052 2.181521 -0.8539475 0.1475052 2.181521 -0.974052 0.1475052 2.181521 -1.113885 0.1475052 2.181521 -1.27456 0.1475052 2.181521 -1.458117 0.1475052 2.181521 -1.667858 0.1475052 2.181521 -1.907556 0.1475052 2.181521 -2.181521 0.1475052 2.181521 -2.494678 0.1475052 2.181521 -2.852659 0.1475052 2.181521 -3.261896 0.1475052 2.181521 -3.729748 0.1475052 2.181521 -4.264621 0.1475052 2.181521 -4.876131 0.1475052 2.181521 -5.575266 0.1475052 2.181521 -6.374593 0.1475052 2.181521 -0 0.1846606 2.181521 -0 0.1846606 2.181521 -0 0.1846606 2.181521 -0.002268731 0.1846606 2.181521 -0.07076883 0.1846606 2.181521 -0.1119241 0.1846606 2.181521 -0.1475052 0.1846606 2.181521 -0.1846606 0.1846606 2.181521 -0.2245119 0.1846606 2.181521 -0.2679612 0.1846606 2.181521 -0.3158431 0.1846606 2.181521 -0.3689944 0.1846606 2.181521 -0.4282948 0.1846606 2.181521 -0.494694 0.1846606 2.181521 -0.5692344 0.1846606 2.181521 -0.6530715 0.1846606 2.181521 -0.7474945 0.1846606 2.181521 -0.8539475 0.1846606 2.181521 -0.974052 0.1846606 2.181521 -1.113885 0.1846606 2.181521 -1.27456 0.1846606 2.181521 -1.458117 0.1846606 2.181521 -1.667858 0.1846606 2.181521 -1.907556 0.1846606 2.181521 -2.181521 0.1846606 2.181521 -2.494678 0.1846606 2.181521 -2.852659 0.1846606 2.181521 -3.261896 0.1846606 2.181521 -3.729748 0.1846606 2.181521 -4.264621 0.1846606 2.181521 -4.876131 0.1846606 2.181521 -5.575266 0.1846606 2.181521 -6.374593 0.1846606 2.181521 -0 0.2245119 2.181521 -0 0.2245119 2.181521 -0 0.2245119 2.181521 -0.002268731 0.2245119 2.181521 -0.07076883 0.2245119 2.181521 -0.1119241 0.2245119 2.181521 -0.1475052 0.2245119 2.181521 -0.1846606 0.2245119 2.181521 -0.2245119 0.2245119 2.181521 -0.2679612 0.2245119 2.181521 -0.3158431 0.2245119 2.181521 -0.3689944 0.2245119 2.181521 -0.4282948 0.2245119 2.181521 -0.494694 0.2245119 2.181521 -0.5692344 0.2245119 2.181521 -0.6530715 0.2245119 2.181521 -0.7474945 0.2245119 2.181521 -0.8539475 0.2245119 2.181521 -0.974052 0.2245119 2.181521 -1.113885 0.2245119 2.181521 -1.27456 0.2245119 2.181521 -1.458117 0.2245119 2.181521 -1.667858 0.2245119 2.181521 -1.907556 0.2245119 2.181521 -2.181521 0.2245119 2.181521 -2.494678 0.2245119 2.181521 -2.852659 0.2245119 2.181521 -3.261896 0.2245119 2.181521 -3.729748 0.2245119 2.181521 -4.264621 0.2245119 2.181521 -4.876131 0.2245119 2.181521 -5.575266 0.2245119 2.181521 -6.374593 0.2245119 2.181521 -0 0.2679612 2.181521 -0 0.2679612 2.181521 -0 0.2679612 2.181521 -0.002268731 0.2679612 2.181521 -0.07076883 0.2679612 2.181521 -0.1119241 0.2679612 2.181521 -0.1475052 0.2679612 2.181521 -0.1846606 0.2679612 2.181521 -0.2245119 0.2679612 2.181521 -0.2679612 0.2679612 2.181521 -0.3158431 0.2679612 2.181521 -0.3689944 0.2679612 2.181521 -0.4282948 0.2679612 2.181521 -0.494694 0.2679612 2.181521 -0.5692344 0.2679612 2.181521 -0.6530715 0.2679612 2.181521 -0.7474945 0.2679612 2.181521 -0.8539475 0.2679612 2.181521 -0.974052 0.2679612 2.181521 -1.113885 0.2679612 2.181521 -1.27456 0.2679612 2.181521 -1.458117 0.2679612 2.181521 -1.667858 0.2679612 2.181521 -1.907556 0.2679612 2.181521 -2.181521 0.2679612 2.181521 -2.494678 0.2679612 2.181521 -2.852659 0.2679612 2.181521 -3.261896 0.2679612 2.181521 -3.729748 0.2679612 2.181521 -4.264621 0.2679612 2.181521 -4.876131 0.2679612 2.181521 -5.575266 0.2679612 2.181521 -6.374593 0.2679612 2.181521 -0 0.3158431 2.181521 -0 0.3158431 2.181521 -0 0.3158431 2.181521 -0.002268731 0.3158431 2.181521 -0.07076883 0.3158431 2.181521 -0.1119241 0.3158431 2.181521 -0.1475052 0.3158431 2.181521 -0.1846606 0.3158431 2.181521 -0.2245119 0.3158431 2.181521 -0.2679612 0.3158431 2.181521 -0.3158431 0.3158431 2.181521 -0.3689944 0.3158431 2.181521 -0.4282948 0.3158431 2.181521 -0.494694 0.3158431 2.181521 -0.5692344 0.3158431 2.181521 -0.6530715 0.3158431 2.181521 -0.7474945 0.3158431 2.181521 -0.8539475 0.3158431 2.181521 -0.974052 0.3158431 2.181521 -1.113885 0.3158431 2.181521 -1.27456 0.3158431 2.181521 -1.458117 0.3158431 2.181521 -1.667858 0.3158431 2.181521 -1.907556 0.3158431 2.181521 -2.181521 0.3158431 2.181521 -2.494678 0.3158431 2.181521 -2.852659 0.3158431 2.181521 -3.261896 0.3158431 2.181521 -3.729748 0.3158431 2.181521 -4.264621 0.3158431 2.181521 -4.876131 0.3158431 2.181521 -5.575266 0.3158431 2.181521 -6.374593 0.3158431 2.181521 -0 0.3689944 2.181521 -0 0.3689944 2.181521 -0 0.3689944 2.181521 -0.002268731 0.3689944 2.181521 -0.07076883 0.3689944 2.181521 -0.1119241 0.3689944 2.181521 -0.1475052 0.3689944 2.181521 -0.1846606 0.3689944 2.181521 -0.2245119 0.3689944 2.181521 -0.2679612 0.3689944 2.181521 -0.3158431 0.3689944 2.181521 -0.3689944 0.3689944 2.181521 -0.4282948 0.3689944 2.181521 -0.494694 0.3689944 2.181521 -0.5692344 0.3689944 2.181521 -0.6530715 0.3689944 2.181521 -0.7474945 0.3689944 2.181521 -0.8539475 0.3689944 2.181521 -0.974052 0.3689944 2.181521 -1.113885 0.3689944 2.181521 -1.27456 0.3689944 2.181521 -1.458117 0.3689944 2.181521 -1.667858 0.3689944 2.181521 -1.907556 0.3689944 2.181521 -2.181521 0.3689944 2.181521 -2.494678 0.3689944 2.181521 -2.852659 0.3689944 2.181521 -3.261896 0.3689944 2.181521 -3.729748 0.3689944 2.181521 -4.264621 0.3689944 2.181521 -4.876131 0.3689944 2.181521 -5.575266 0.3689944 2.181521 -6.374593 0.3689944 2.181521 -0 0.4282948 2.181521 -0 0.4282948 2.181521 -0 0.4282948 2.181521 -0.002268731 0.4282948 2.181521 -0.07076883 0.4282948 2.181521 -0.1119241 0.4282948 2.181521 -0.1475052 0.4282948 2.181521 -0.1846606 0.4282948 2.181521 -0.2245119 0.4282948 2.181521 -0.2679612 0.4282948 2.181521 -0.3158431 0.4282948 2.181521 -0.3689944 0.4282948 2.181521 -0.4282948 0.4282948 2.181521 -0.494694 0.4282948 2.181521 -0.5692344 0.4282948 2.181521 -0.6530715 0.4282948 2.181521 -0.7474945 0.4282948 2.181521 -0.8539475 0.4282948 2.181521 -0.974052 0.4282948 2.181521 -1.113885 0.4282948 2.181521 -1.27456 0.4282948 2.181521 -1.458117 0.4282948 2.181521 -1.667858 0.4282948 2.181521 -1.907556 0.4282948 2.181521 -2.181521 0.4282948 2.181521 -2.494678 0.4282948 2.181521 -2.852659 0.4282948 2.181521 -3.261896 0.4282948 2.181521 -3.729748 0.4282948 2.181521 -4.264621 0.4282948 2.181521 -4.876131 0.4282948 2.181521 -5.575266 0.4282948 2.181521 -6.374593 0.4282948 2.181521 -0 0.494694 2.181521 -0 0.494694 2.181521 -0 0.494694 2.181521 -0.002268731 0.494694 2.181521 -0.07076883 0.494694 2.181521 -0.1119241 0.494694 2.181521 -0.1475052 0.494694 2.181521 -0.1846606 0.494694 2.181521 -0.2245119 0.494694 2.181521 -0.2679612 0.494694 2.181521 -0.3158431 0.494694 2.181521 -0.3689944 0.494694 2.181521 -0.4282948 0.494694 2.181521 -0.494694 0.494694 2.181521 -0.5692344 0.494694 2.181521 -0.6530715 0.494694 2.181521 -0.7474945 0.494694 2.181521 -0.8539475 0.494694 2.181521 -0.974052 0.494694 2.181521 -1.113885 0.494694 2.181521 -1.27456 0.494694 2.181521 -1.458117 0.494694 2.181521 -1.667858 0.494694 2.181521 -1.907556 0.494694 2.181521 -2.181521 0.494694 2.181521 -2.494678 0.494694 2.181521 -2.852659 0.494694 2.181521 -3.261896 0.494694 2.181521 -3.729748 0.494694 2.181521 -4.264621 0.494694 2.181521 -4.876131 0.494694 2.181521 -5.575266 0.494694 2.181521 -6.374593 0.494694 2.181521 -0 0.5692344 2.181521 -0 0.5692344 2.181521 -0 0.5692344 2.181521 -0.002268731 0.5692344 2.181521 -0.07076883 0.5692344 2.181521 -0.1119241 0.5692344 2.181521 -0.1475052 0.5692344 2.181521 -0.1846606 0.5692344 2.181521 -0.2245119 0.5692344 2.181521 -0.2679612 0.5692344 2.181521 -0.3158431 0.5692344 2.181521 -0.3689944 0.5692344 2.181521 -0.4282948 0.5692344 2.181521 -0.494694 0.5692344 2.181521 -0.5692344 0.5692344 2.181521 -0.6530715 0.5692344 2.181521 -0.7474945 0.5692344 2.181521 -0.8539475 0.5692344 2.181521 -0.974052 0.5692344 2.181521 -1.113885 0.5692344 2.181521 -1.27456 0.5692344 2.181521 -1.458117 0.5692344 2.181521 -1.667858 0.5692344 2.181521 -1.907556 0.5692344 2.181521 -2.181521 0.5692344 2.181521 -2.494678 0.5692344 2.181521 -2.852659 0.5692344 2.181521 -3.261896 0.5692344 2.181521 -3.729748 0.5692344 2.181521 -4.264621 0.5692344 2.181521 -4.876131 0.5692344 2.181521 -5.575266 0.5692344 2.181521 -6.374593 0.5692344 2.181521 -0 0.6530715 2.181521 -0 0.6530715 2.181521 -0 0.6530715 2.181521 -0.002268731 0.6530715 2.181521 -0.07076883 0.6530715 2.181521 -0.1119241 0.6530715 2.181521 -0.1475052 0.6530715 2.181521 -0.1846606 0.6530715 2.181521 -0.2245119 0.6530715 2.181521 -0.2679612 0.6530715 2.181521 -0.3158431 0.6530715 2.181521 -0.3689944 0.6530715 2.181521 -0.4282948 0.6530715 2.181521 -0.494694 0.6530715 2.181521 -0.5692344 0.6530715 2.181521 -0.6530715 0.6530715 2.181521 -0.7474945 0.6530715 2.181521 -0.8539475 0.6530715 2.181521 -0.974052 0.6530715 2.181521 -1.113885 0.6530715 2.181521 -1.27456 0.6530715 2.181521 -1.458117 0.6530715 2.181521 -1.667858 0.6530715 2.181521 -1.907556 0.6530715 2.181521 -2.181521 0.6530715 2.181521 -2.494678 0.6530715 2.181521 -2.852659 0.6530715 2.181521 -3.261896 0.6530715 2.181521 -3.729748 0.6530715 2.181521 -4.264621 0.6530715 2.181521 -4.876131 0.6530715 2.181521 -5.575266 0.6530715 2.181521 -6.374593 0.6530715 2.181521 -0 0.7474945 2.181521 -0 0.7474945 2.181521 -0 0.7474945 2.181521 -0.002268731 0.7474945 2.181521 -0.07076883 0.7474945 2.181521 -0.1119241 0.7474945 2.181521 -0.1475052 0.7474945 2.181521 -0.1846606 0.7474945 2.181521 -0.2245119 0.7474945 2.181521 -0.2679612 0.7474945 2.181521 -0.3158431 0.7474945 2.181521 -0.3689944 0.7474945 2.181521 -0.4282948 0.7474945 2.181521 -0.494694 0.7474945 2.181521 -0.5692344 0.7474945 2.181521 -0.6530715 0.7474945 2.181521 -0.7474945 0.7474945 2.181521 -0.8539475 0.7474945 2.181521 -0.974052 0.7474945 2.181521 -1.113885 0.7474945 2.181521 -1.27456 0.7474945 2.181521 -1.458117 0.7474945 2.181521 -1.667858 0.7474945 2.181521 -1.907556 0.7474945 2.181521 -2.181521 0.7474945 2.181521 -2.494678 0.7474945 2.181521 -2.852659 0.7474945 2.181521 -3.261896 0.7474945 2.181521 -3.729748 0.7474945 2.181521 -4.264621 0.7474945 2.181521 -4.876131 0.7474945 2.181521 -5.575266 0.7474945 2.181521 -6.374593 0.7474945 2.181521 -0 0.8539475 2.181521 -0 0.8539475 2.181521 -0 0.8539475 2.181521 -0.002268731 0.8539475 2.181521 -0.07076883 0.8539475 2.181521 -0.1119241 0.8539475 2.181521 -0.1475052 0.8539475 2.181521 -0.1846606 0.8539475 2.181521 -0.2245119 0.8539475 2.181521 -0.2679612 0.8539475 2.181521 -0.3158431 0.8539475 2.181521 -0.3689944 0.8539475 2.181521 -0.4282948 0.8539475 2.181521 -0.494694 0.8539475 2.181521 -0.5692344 0.8539475 2.181521 -0.6530715 0.8539475 2.181521 -0.7474945 0.8539475 2.181521 -0.8539475 0.8539475 2.181521 -0.974052 0.8539475 2.181521 -1.113885 0.8539475 2.181521 -1.27456 0.8539475 2.181521 -1.458117 0.8539475 2.181521 -1.667858 0.8539475 2.181521 -1.907556 0.8539475 2.181521 -2.181521 0.8539475 2.181521 -2.494678 0.8539475 2.181521 -2.852659 0.8539475 2.181521 -3.261896 0.8539475 2.181521 -3.729748 0.8539475 2.181521 -4.264621 0.8539475 2.181521 -4.876131 0.8539475 2.181521 -5.575266 0.8539475 2.181521 -6.374593 0.8539475 2.181521 -0 0.974052 2.181521 -0 0.974052 2.181521 -0 0.974052 2.181521 -0.002268731 0.974052 2.181521 -0.07076883 0.974052 2.181521 -0.1119241 0.974052 2.181521 -0.1475052 0.974052 2.181521 -0.1846606 0.974052 2.181521 -0.2245119 0.974052 2.181521 -0.2679612 0.974052 2.181521 -0.3158431 0.974052 2.181521 -0.3689944 0.974052 2.181521 -0.4282948 0.974052 2.181521 -0.494694 0.974052 2.181521 -0.5692344 0.974052 2.181521 -0.6530715 0.974052 2.181521 -0.7474945 0.974052 2.181521 -0.8539475 0.974052 2.181521 -0.974052 0.974052 2.181521 -1.113885 0.974052 2.181521 -1.27456 0.974052 2.181521 -1.458117 0.974052 2.181521 -1.667858 0.974052 2.181521 -1.907556 0.974052 2.181521 -2.181521 0.974052 2.181521 -2.494678 0.974052 2.181521 -2.852659 0.974052 2.181521 -3.261896 0.974052 2.181521 -3.729748 0.974052 2.181521 -4.264621 0.974052 2.181521 -4.876131 0.974052 2.181521 -5.575266 0.974052 2.181521 -6.374593 0.974052 2.181521 -0 1.113885 2.181521 -0 1.113885 2.181521 -0 1.113885 2.181521 -0.002268731 1.113885 2.181521 -0.07076883 1.113885 2.181521 -0.1119241 1.113885 2.181521 -0.1475052 1.113885 2.181521 -0.1846606 1.113885 2.181521 -0.2245119 1.113885 2.181521 -0.2679612 1.113885 2.181521 -0.3158431 1.113885 2.181521 -0.3689944 1.113885 2.181521 -0.4282948 1.113885 2.181521 -0.494694 1.113885 2.181521 -0.5692344 1.113885 2.181521 -0.6530715 1.113885 2.181521 -0.7474945 1.113885 2.181521 -0.8539475 1.113885 2.181521 -0.974052 1.113885 2.181521 -1.113885 1.113885 2.181521 -1.27456 1.113885 2.181521 -1.458117 1.113885 2.181521 -1.667858 1.113885 2.181521 -1.907556 1.113885 2.181521 -2.181521 1.113885 2.181521 -2.494678 1.113885 2.181521 -2.852659 1.113885 2.181521 -3.261896 1.113885 2.181521 -3.729748 1.113885 2.181521 -4.264621 1.113885 2.181521 -4.876131 1.113885 2.181521 -5.575266 1.113885 2.181521 -6.374593 1.113885 2.181521 -0 1.27456 2.181521 -0 1.27456 2.181521 -0 1.27456 2.181521 -0.002268731 1.27456 2.181521 -0.07076883 1.27456 2.181521 -0.1119241 1.27456 2.181521 -0.1475052 1.27456 2.181521 -0.1846606 1.27456 2.181521 -0.2245119 1.27456 2.181521 -0.2679612 1.27456 2.181521 -0.3158431 1.27456 2.181521 -0.3689944 1.27456 2.181521 -0.4282948 1.27456 2.181521 -0.494694 1.27456 2.181521 -0.5692344 1.27456 2.181521 -0.6530715 1.27456 2.181521 -0.7474945 1.27456 2.181521 -0.8539475 1.27456 2.181521 -0.974052 1.27456 2.181521 -1.113885 1.27456 2.181521 -1.27456 1.27456 2.181521 -1.458117 1.27456 2.181521 -1.667858 1.27456 2.181521 -1.907556 1.27456 2.181521 -2.181521 1.27456 2.181521 -2.494678 1.27456 2.181521 -2.852659 1.27456 2.181521 -3.261896 1.27456 2.181521 -3.729748 1.27456 2.181521 -4.264621 1.27456 2.181521 -4.876131 1.27456 2.181521 -5.575266 1.27456 2.181521 -6.374593 1.27456 2.181521 -0 1.458117 2.181521 -0 1.458117 2.181521 -0 1.458117 2.181521 -0.002268731 1.458117 2.181521 -0.07076883 1.458117 2.181521 -0.1119241 1.458117 2.181521 -0.1475052 1.458117 2.181521 -0.1846606 1.458117 2.181521 -0.2245119 1.458117 2.181521 -0.2679612 1.458117 2.181521 -0.3158431 1.458117 2.181521 -0.3689944 1.458117 2.181521 -0.4282948 1.458117 2.181521 -0.494694 1.458117 2.181521 -0.5692344 1.458117 2.181521 -0.6530715 1.458117 2.181521 -0.7474945 1.458117 2.181521 -0.8539475 1.458117 2.181521 -0.974052 1.458117 2.181521 -1.113885 1.458117 2.181521 -1.27456 1.458117 2.181521 -1.458117 1.458117 2.181521 -1.667858 1.458117 2.181521 -1.907556 1.458117 2.181521 -2.181521 1.458117 2.181521 -2.494678 1.458117 2.181521 -2.852659 1.458117 2.181521 -3.261896 1.458117 2.181521 -3.729748 1.458117 2.181521 -4.264621 1.458117 2.181521 -4.876131 1.458117 2.181521 -5.575266 1.458117 2.181521 -6.374593 1.458117 2.181521 -0 1.667858 2.181521 -0 1.667858 2.181521 -0 1.667858 2.181521 -0.002268731 1.667858 2.181521 -0.07076883 1.667858 2.181521 -0.1119241 1.667858 2.181521 -0.1475052 1.667858 2.181521 -0.1846606 1.667858 2.181521 -0.2245119 1.667858 2.181521 -0.2679612 1.667858 2.181521 -0.3158431 1.667858 2.181521 -0.3689944 1.667858 2.181521 -0.4282948 1.667858 2.181521 -0.494694 1.667858 2.181521 -0.5692344 1.667858 2.181521 -0.6530715 1.667858 2.181521 -0.7474945 1.667858 2.181521 -0.8539475 1.667858 2.181521 -0.974052 1.667858 2.181521 -1.113885 1.667858 2.181521 -1.27456 1.667858 2.181521 -1.458117 1.667858 2.181521 -1.667858 1.667858 2.181521 -1.907556 1.667858 2.181521 -2.181521 1.667858 2.181521 -2.494678 1.667858 2.181521 -2.852659 1.667858 2.181521 -3.261896 1.667858 2.181521 -3.729748 1.667858 2.181521 -4.264621 1.667858 2.181521 -4.876131 1.667858 2.181521 -5.575266 1.667858 2.181521 -6.374593 1.667858 2.181521 -0 1.907556 2.181521 -0 1.907556 2.181521 -0 1.907556 2.181521 -0.002268731 1.907556 2.181521 -0.07076883 1.907556 2.181521 -0.1119241 1.907556 2.181521 -0.1475052 1.907556 2.181521 -0.1846606 1.907556 2.181521 -0.2245119 1.907556 2.181521 -0.2679612 1.907556 2.181521 -0.3158431 1.907556 2.181521 -0.3689944 1.907556 2.181521 -0.4282948 1.907556 2.181521 -0.494694 1.907556 2.181521 -0.5692344 1.907556 2.181521 -0.6530715 1.907556 2.181521 -0.7474945 1.907556 2.181521 -0.8539475 1.907556 2.181521 -0.974052 1.907556 2.181521 -1.113885 1.907556 2.181521 -1.27456 1.907556 2.181521 -1.458117 1.907556 2.181521 -1.667858 1.907556 2.181521 -1.907556 1.907556 2.181521 -2.181521 1.907556 2.181521 -2.494678 1.907556 2.181521 -2.852659 1.907556 2.181521 -3.261896 1.907556 2.181521 -3.729748 1.907556 2.181521 -4.264621 1.907556 2.181521 -4.876131 1.907556 2.181521 -5.575266 1.907556 2.181521 -6.374593 1.907556 2.181521 -0 2.181521 2.181521 -0 2.181521 2.181521 -0 2.181521 2.181521 -0.002268731 2.181521 2.181521 -0.07076883 2.181521 2.181521 -0.1119241 2.181521 2.181521 -0.1475052 2.181521 2.181521 -0.1846606 2.181521 2.181521 -0.2245119 2.181521 2.181521 -0.2679612 2.181521 2.181521 -0.3158431 2.181521 2.181521 -0.3689944 2.181521 2.181521 -0.4282948 2.181521 2.181521 -0.494694 2.181521 2.181521 -0.5692344 2.181521 2.181521 -0.6530715 2.181521 2.181521 -0.7474945 2.181521 2.181521 -0.8539475 2.181521 2.181521 -0.974052 2.181521 2.181521 -1.113885 2.181521 2.181521 -1.27456 2.181521 2.181521 -1.458117 2.181521 2.181521 -1.667858 2.181521 2.181521 -1.907556 2.181521 2.181521 -2.181521 2.181521 2.181521 -2.494678 2.181521 2.181521 -2.852659 2.181521 2.181521 -3.261896 2.181521 2.181521 -3.729748 2.181521 2.181521 -4.264621 2.181521 2.181521 -4.876131 2.181521 2.181521 -5.575266 2.181521 2.181521 -6.374593 2.181521 2.181521 -0 2.494678 2.181521 -0 2.494678 2.181521 -0 2.494678 2.181521 -0.002268731 2.494678 2.181521 -0.07076883 2.494678 2.181521 -0.1119241 2.494678 2.181521 -0.1475052 2.494678 2.181521 -0.1846606 2.494678 2.181521 -0.2245119 2.494678 2.181521 -0.2679612 2.494678 2.181521 -0.3158431 2.494678 2.181521 -0.3689944 2.494678 2.181521 -0.4282948 2.494678 2.181521 -0.494694 2.494678 2.181521 -0.5692344 2.494678 2.181521 -0.6530715 2.494678 2.181521 -0.7474945 2.494678 2.181521 -0.8539475 2.494678 2.181521 -0.974052 2.494678 2.181521 -1.113885 2.494678 2.181521 -1.27456 2.494678 2.181521 -1.458117 2.494678 2.181521 -1.667858 2.494678 2.181521 -1.907556 2.494678 2.181521 -2.181521 2.494678 2.181521 -2.494678 2.494678 2.181521 -2.852659 2.494678 2.181521 -3.261896 2.494678 2.181521 -3.729748 2.494678 2.181521 -4.264621 2.494678 2.181521 -4.876131 2.494678 2.181521 -5.575266 2.494678 2.181521 -6.374593 2.494678 2.181521 -0 2.852659 2.181521 -0 2.852659 2.181521 -0 2.852659 2.181521 -0.002268731 2.852659 2.181521 -0.07076883 2.852659 2.181521 -0.1119241 2.852659 2.181521 -0.1475052 2.852659 2.181521 -0.1846606 2.852659 2.181521 -0.2245119 2.852659 2.181521 -0.2679612 2.852659 2.181521 -0.3158431 2.852659 2.181521 -0.3689944 2.852659 2.181521 -0.4282948 2.852659 2.181521 -0.494694 2.852659 2.181521 -0.5692344 2.852659 2.181521 -0.6530715 2.852659 2.181521 -0.7474945 2.852659 2.181521 -0.8539475 2.852659 2.181521 -0.974052 2.852659 2.181521 -1.113885 2.852659 2.181521 -1.27456 2.852659 2.181521 -1.458117 2.852659 2.181521 -1.667858 2.852659 2.181521 -1.907556 2.852659 2.181521 -2.181521 2.852659 2.181521 -2.494678 2.852659 2.181521 -2.852659 2.852659 2.181521 -3.261896 2.852659 2.181521 -3.729748 2.852659 2.181521 -4.264621 2.852659 2.181521 -4.876131 2.852659 2.181521 -5.575266 2.852659 2.181521 -6.374593 2.852659 2.181521 -0 3.261896 2.181521 -0 3.261896 2.181521 -0 3.261896 2.181521 -0.002268731 3.261896 2.181521 -0.07076883 3.261896 2.181521 -0.1119241 3.261896 2.181521 -0.1475052 3.261896 2.181521 -0.1846606 3.261896 2.181521 -0.2245119 3.261896 2.181521 -0.2679612 3.261896 2.181521 -0.3158431 3.261896 2.181521 -0.3689944 3.261896 2.181521 -0.4282948 3.261896 2.181521 -0.494694 3.261896 2.181521 -0.5692344 3.261896 2.181521 -0.6530715 3.261896 2.181521 -0.7474945 3.261896 2.181521 -0.8539475 3.261896 2.181521 -0.974052 3.261896 2.181521 -1.113885 3.261896 2.181521 -1.27456 3.261896 2.181521 -1.458117 3.261896 2.181521 -1.667858 3.261896 2.181521 -1.907556 3.261896 2.181521 -2.181521 3.261896 2.181521 -2.494678 3.261896 2.181521 -2.852659 3.261896 2.181521 -3.261896 3.261896 2.181521 -3.729748 3.261896 2.181521 -4.264621 3.261896 2.181521 -4.876131 3.261896 2.181521 -5.575266 3.261896 2.181521 -6.374593 3.261896 2.181521 -0 3.729748 2.181521 -0 3.729748 2.181521 -0 3.729748 2.181521 -0.002268731 3.729748 2.181521 -0.07076883 3.729748 2.181521 -0.1119241 3.729748 2.181521 -0.1475052 3.729748 2.181521 -0.1846606 3.729748 2.181521 -0.2245119 3.729748 2.181521 -0.2679612 3.729748 2.181521 -0.3158431 3.729748 2.181521 -0.3689944 3.729748 2.181521 -0.4282948 3.729748 2.181521 -0.494694 3.729748 2.181521 -0.5692344 3.729748 2.181521 -0.6530715 3.729748 2.181521 -0.7474945 3.729748 2.181521 -0.8539475 3.729748 2.181521 -0.974052 3.729748 2.181521 -1.113885 3.729748 2.181521 -1.27456 3.729748 2.181521 -1.458117 3.729748 2.181521 -1.667858 3.729748 2.181521 -1.907556 3.729748 2.181521 -2.181521 3.729748 2.181521 -2.494678 3.729748 2.181521 -2.852659 3.729748 2.181521 -3.261896 3.729748 2.181521 -3.729748 3.729748 2.181521 -4.264621 3.729748 2.181521 -4.876131 3.729748 2.181521 -5.575266 3.729748 2.181521 -6.374593 3.729748 2.181521 -0 4.264621 2.181521 -0 4.264621 2.181521 -0 4.264621 2.181521 -0.002268731 4.264621 2.181521 -0.07076883 4.264621 2.181521 -0.1119241 4.264621 2.181521 -0.1475052 4.264621 2.181521 -0.1846606 4.264621 2.181521 -0.2245119 4.264621 2.181521 -0.2679612 4.264621 2.181521 -0.3158431 4.264621 2.181521 -0.3689944 4.264621 2.181521 -0.4282948 4.264621 2.181521 -0.494694 4.264621 2.181521 -0.5692344 4.264621 2.181521 -0.6530715 4.264621 2.181521 -0.7474945 4.264621 2.181521 -0.8539475 4.264621 2.181521 -0.974052 4.264621 2.181521 -1.113885 4.264621 2.181521 -1.27456 4.264621 2.181521 -1.458117 4.264621 2.181521 -1.667858 4.264621 2.181521 -1.907556 4.264621 2.181521 -2.181521 4.264621 2.181521 -2.494678 4.264621 2.181521 -2.852659 4.264621 2.181521 -3.261896 4.264621 2.181521 -3.729748 4.264621 2.181521 -4.264621 4.264621 2.181521 -4.876131 4.264621 2.181521 -5.575266 4.264621 2.181521 -6.374593 4.264621 2.181521 -0 4.876131 2.181521 -0 4.876131 2.181521 -0 4.876131 2.181521 -0.002268731 4.876131 2.181521 -0.07076883 4.876131 2.181521 -0.1119241 4.876131 2.181521 -0.1475052 4.876131 2.181521 -0.1846606 4.876131 2.181521 -0.2245119 4.876131 2.181521 -0.2679612 4.876131 2.181521 -0.3158431 4.876131 2.181521 -0.3689944 4.876131 2.181521 -0.4282948 4.876131 2.181521 -0.494694 4.876131 2.181521 -0.5692344 4.876131 2.181521 -0.6530715 4.876131 2.181521 -0.7474945 4.876131 2.181521 -0.8539475 4.876131 2.181521 -0.974052 4.876131 2.181521 -1.113885 4.876131 2.181521 -1.27456 4.876131 2.181521 -1.458117 4.876131 2.181521 -1.667858 4.876131 2.181521 -1.907556 4.876131 2.181521 -2.181521 4.876131 2.181521 -2.494678 4.876131 2.181521 -2.852659 4.876131 2.181521 -3.261896 4.876131 2.181521 -3.729748 4.876131 2.181521 -4.264621 4.876131 2.181521 -4.876131 4.876131 2.181521 -5.575266 4.876131 2.181521 -6.374593 4.876131 2.181521 -0 5.575266 2.181521 -0 5.575266 2.181521 -0 5.575266 2.181521 -0.002268731 5.575266 2.181521 -0.07076883 5.575266 2.181521 -0.1119241 5.575266 2.181521 -0.1475052 5.575266 2.181521 -0.1846606 5.575266 2.181521 -0.2245119 5.575266 2.181521 -0.2679612 5.575266 2.181521 -0.3158431 5.575266 2.181521 -0.3689944 5.575266 2.181521 -0.4282948 5.575266 2.181521 -0.494694 5.575266 2.181521 -0.5692344 5.575266 2.181521 -0.6530715 5.575266 2.181521 -0.7474945 5.575266 2.181521 -0.8539475 5.575266 2.181521 -0.974052 5.575266 2.181521 -1.113885 5.575266 2.181521 -1.27456 5.575266 2.181521 -1.458117 5.575266 2.181521 -1.667858 5.575266 2.181521 -1.907556 5.575266 2.181521 -2.181521 5.575266 2.181521 -2.494678 5.575266 2.181521 -2.852659 5.575266 2.181521 -3.261896 5.575266 2.181521 -3.729748 5.575266 2.181521 -4.264621 5.575266 2.181521 -4.876131 5.575266 2.181521 -5.575266 5.575266 2.181521 -6.374593 5.575266 2.181521 -0 6.374593 2.181521 -0 6.374593 2.181521 -0 6.374593 2.181521 -0.002268731 6.374593 2.181521 -0.07076883 6.374593 2.181521 -0.1119241 6.374593 2.181521 -0.1475052 6.374593 2.181521 -0.1846606 6.374593 2.181521 -0.2245119 6.374593 2.181521 -0.2679612 6.374593 2.181521 -0.3158431 6.374593 2.181521 -0.3689944 6.374593 2.181521 -0.4282948 6.374593 2.181521 -0.494694 6.374593 2.181521 -0.5692344 6.374593 2.181521 -0.6530715 6.374593 2.181521 -0.7474945 6.374593 2.181521 -0.8539475 6.374593 2.181521 -0.974052 6.374593 2.181521 -1.113885 6.374593 2.181521 -1.27456 6.374593 2.181521 -1.458117 6.374593 2.181521 -1.667858 6.374593 2.181521 -1.907556 6.374593 2.181521 -2.181521 6.374593 2.181521 -2.494678 6.374593 2.181521 -2.852659 6.374593 2.181521 -3.261896 6.374593 2.181521 -3.729748 6.374593 2.181521 -4.264621 6.374593 2.181521 -4.876131 6.374593 2.181521 -5.575266 6.374593 2.181521 -6.374593 6.374593 2.181521 -0 0 2.494678 -0 0 2.494678 -0 0 2.494678 -0.002268731 0 2.494678 -0.07076883 0 2.494678 -0.1119241 0 2.494678 -0.1475052 0 2.494678 -0.1846606 0 2.494678 -0.2245119 0 2.494678 -0.2679612 0 2.494678 -0.3158431 0 2.494678 -0.3689944 0 2.494678 -0.4282948 0 2.494678 -0.494694 0 2.494678 -0.5692344 0 2.494678 -0.6530715 0 2.494678 -0.7474945 0 2.494678 -0.8539475 0 2.494678 -0.974052 0 2.494678 -1.113885 0 2.494678 -1.27456 0 2.494678 -1.458117 0 2.494678 -1.667858 0 2.494678 -1.907556 0 2.494678 -2.181521 0 2.494678 -2.494678 0 2.494678 -2.852659 0 2.494678 -3.261896 0 2.494678 -3.729748 0 2.494678 -4.264621 0 2.494678 -4.876131 0 2.494678 -5.575266 0 2.494678 -6.374593 0 2.494678 -0 0 2.494678 -0 0 2.494678 -0 0 2.494678 -0.002268731 0 2.494678 -0.07076883 0 2.494678 -0.1119241 0 2.494678 -0.1475052 0 2.494678 -0.1846606 0 2.494678 -0.2245119 0 2.494678 -0.2679612 0 2.494678 -0.3158431 0 2.494678 -0.3689944 0 2.494678 -0.4282948 0 2.494678 -0.494694 0 2.494678 -0.5692344 0 2.494678 -0.6530715 0 2.494678 -0.7474945 0 2.494678 -0.8539475 0 2.494678 -0.974052 0 2.494678 -1.113885 0 2.494678 -1.27456 0 2.494678 -1.458117 0 2.494678 -1.667858 0 2.494678 -1.907556 0 2.494678 -2.181521 0 2.494678 -2.494678 0 2.494678 -2.852659 0 2.494678 -3.261896 0 2.494678 -3.729748 0 2.494678 -4.264621 0 2.494678 -4.876131 0 2.494678 -5.575266 0 2.494678 -6.374593 0 2.494678 -0 0 2.494678 -0 0 2.494678 -0 0 2.494678 -0.002268731 0 2.494678 -0.07076883 0 2.494678 -0.1119241 0 2.494678 -0.1475052 0 2.494678 -0.1846606 0 2.494678 -0.2245119 0 2.494678 -0.2679612 0 2.494678 -0.3158431 0 2.494678 -0.3689944 0 2.494678 -0.4282948 0 2.494678 -0.494694 0 2.494678 -0.5692344 0 2.494678 -0.6530715 0 2.494678 -0.7474945 0 2.494678 -0.8539475 0 2.494678 -0.974052 0 2.494678 -1.113885 0 2.494678 -1.27456 0 2.494678 -1.458117 0 2.494678 -1.667858 0 2.494678 -1.907556 0 2.494678 -2.181521 0 2.494678 -2.494678 0 2.494678 -2.852659 0 2.494678 -3.261896 0 2.494678 -3.729748 0 2.494678 -4.264621 0 2.494678 -4.876131 0 2.494678 -5.575266 0 2.494678 -6.374593 0 2.494678 -0 0.002268731 2.494678 -0 0.002268731 2.494678 -0 0.002268731 2.494678 -0.002268731 0.002268731 2.494678 -0.07076883 0.002268731 2.494678 -0.1119241 0.002268731 2.494678 -0.1475052 0.002268731 2.494678 -0.1846606 0.002268731 2.494678 -0.2245119 0.002268731 2.494678 -0.2679612 0.002268731 2.494678 -0.3158431 0.002268731 2.494678 -0.3689944 0.002268731 2.494678 -0.4282948 0.002268731 2.494678 -0.494694 0.002268731 2.494678 -0.5692344 0.002268731 2.494678 -0.6530715 0.002268731 2.494678 -0.7474945 0.002268731 2.494678 -0.8539475 0.002268731 2.494678 -0.974052 0.002268731 2.494678 -1.113885 0.002268731 2.494678 -1.27456 0.002268731 2.494678 -1.458117 0.002268731 2.494678 -1.667858 0.002268731 2.494678 -1.907556 0.002268731 2.494678 -2.181521 0.002268731 2.494678 -2.494678 0.002268731 2.494678 -2.852659 0.002268731 2.494678 -3.261896 0.002268731 2.494678 -3.729748 0.002268731 2.494678 -4.264621 0.002268731 2.494678 -4.876131 0.002268731 2.494678 -5.575266 0.002268731 2.494678 -6.374593 0.002268731 2.494678 -0 0.07076883 2.494678 -0 0.07076883 2.494678 -0 0.07076883 2.494678 -0.002268731 0.07076883 2.494678 -0.07076883 0.07076883 2.494678 -0.1119241 0.07076883 2.494678 -0.1475052 0.07076883 2.494678 -0.1846606 0.07076883 2.494678 -0.2245119 0.07076883 2.494678 -0.2679612 0.07076883 2.494678 -0.3158431 0.07076883 2.494678 -0.3689944 0.07076883 2.494678 -0.4282948 0.07076883 2.494678 -0.494694 0.07076883 2.494678 -0.5692344 0.07076883 2.494678 -0.6530715 0.07076883 2.494678 -0.7474945 0.07076883 2.494678 -0.8539475 0.07076883 2.494678 -0.974052 0.07076883 2.494678 -1.113885 0.07076883 2.494678 -1.27456 0.07076883 2.494678 -1.458117 0.07076883 2.494678 -1.667858 0.07076883 2.494678 -1.907556 0.07076883 2.494678 -2.181521 0.07076883 2.494678 -2.494678 0.07076883 2.494678 -2.852659 0.07076883 2.494678 -3.261896 0.07076883 2.494678 -3.729748 0.07076883 2.494678 -4.264621 0.07076883 2.494678 -4.876131 0.07076883 2.494678 -5.575266 0.07076883 2.494678 -6.374593 0.07076883 2.494678 -0 0.1119241 2.494678 -0 0.1119241 2.494678 -0 0.1119241 2.494678 -0.002268731 0.1119241 2.494678 -0.07076883 0.1119241 2.494678 -0.1119241 0.1119241 2.494678 -0.1475052 0.1119241 2.494678 -0.1846606 0.1119241 2.494678 -0.2245119 0.1119241 2.494678 -0.2679612 0.1119241 2.494678 -0.3158431 0.1119241 2.494678 -0.3689944 0.1119241 2.494678 -0.4282948 0.1119241 2.494678 -0.494694 0.1119241 2.494678 -0.5692344 0.1119241 2.494678 -0.6530715 0.1119241 2.494678 -0.7474945 0.1119241 2.494678 -0.8539475 0.1119241 2.494678 -0.974052 0.1119241 2.494678 -1.113885 0.1119241 2.494678 -1.27456 0.1119241 2.494678 -1.458117 0.1119241 2.494678 -1.667858 0.1119241 2.494678 -1.907556 0.1119241 2.494678 -2.181521 0.1119241 2.494678 -2.494678 0.1119241 2.494678 -2.852659 0.1119241 2.494678 -3.261896 0.1119241 2.494678 -3.729748 0.1119241 2.494678 -4.264621 0.1119241 2.494678 -4.876131 0.1119241 2.494678 -5.575266 0.1119241 2.494678 -6.374593 0.1119241 2.494678 -0 0.1475052 2.494678 -0 0.1475052 2.494678 -0 0.1475052 2.494678 -0.002268731 0.1475052 2.494678 -0.07076883 0.1475052 2.494678 -0.1119241 0.1475052 2.494678 -0.1475052 0.1475052 2.494678 -0.1846606 0.1475052 2.494678 -0.2245119 0.1475052 2.494678 -0.2679612 0.1475052 2.494678 -0.3158431 0.1475052 2.494678 -0.3689944 0.1475052 2.494678 -0.4282948 0.1475052 2.494678 -0.494694 0.1475052 2.494678 -0.5692344 0.1475052 2.494678 -0.6530715 0.1475052 2.494678 -0.7474945 0.1475052 2.494678 -0.8539475 0.1475052 2.494678 -0.974052 0.1475052 2.494678 -1.113885 0.1475052 2.494678 -1.27456 0.1475052 2.494678 -1.458117 0.1475052 2.494678 -1.667858 0.1475052 2.494678 -1.907556 0.1475052 2.494678 -2.181521 0.1475052 2.494678 -2.494678 0.1475052 2.494678 -2.852659 0.1475052 2.494678 -3.261896 0.1475052 2.494678 -3.729748 0.1475052 2.494678 -4.264621 0.1475052 2.494678 -4.876131 0.1475052 2.494678 -5.575266 0.1475052 2.494678 -6.374593 0.1475052 2.494678 -0 0.1846606 2.494678 -0 0.1846606 2.494678 -0 0.1846606 2.494678 -0.002268731 0.1846606 2.494678 -0.07076883 0.1846606 2.494678 -0.1119241 0.1846606 2.494678 -0.1475052 0.1846606 2.494678 -0.1846606 0.1846606 2.494678 -0.2245119 0.1846606 2.494678 -0.2679612 0.1846606 2.494678 -0.3158431 0.1846606 2.494678 -0.3689944 0.1846606 2.494678 -0.4282948 0.1846606 2.494678 -0.494694 0.1846606 2.494678 -0.5692344 0.1846606 2.494678 -0.6530715 0.1846606 2.494678 -0.7474945 0.1846606 2.494678 -0.8539475 0.1846606 2.494678 -0.974052 0.1846606 2.494678 -1.113885 0.1846606 2.494678 -1.27456 0.1846606 2.494678 -1.458117 0.1846606 2.494678 -1.667858 0.1846606 2.494678 -1.907556 0.1846606 2.494678 -2.181521 0.1846606 2.494678 -2.494678 0.1846606 2.494678 -2.852659 0.1846606 2.494678 -3.261896 0.1846606 2.494678 -3.729748 0.1846606 2.494678 -4.264621 0.1846606 2.494678 -4.876131 0.1846606 2.494678 -5.575266 0.1846606 2.494678 -6.374593 0.1846606 2.494678 -0 0.2245119 2.494678 -0 0.2245119 2.494678 -0 0.2245119 2.494678 -0.002268731 0.2245119 2.494678 -0.07076883 0.2245119 2.494678 -0.1119241 0.2245119 2.494678 -0.1475052 0.2245119 2.494678 -0.1846606 0.2245119 2.494678 -0.2245119 0.2245119 2.494678 -0.2679612 0.2245119 2.494678 -0.3158431 0.2245119 2.494678 -0.3689944 0.2245119 2.494678 -0.4282948 0.2245119 2.494678 -0.494694 0.2245119 2.494678 -0.5692344 0.2245119 2.494678 -0.6530715 0.2245119 2.494678 -0.7474945 0.2245119 2.494678 -0.8539475 0.2245119 2.494678 -0.974052 0.2245119 2.494678 -1.113885 0.2245119 2.494678 -1.27456 0.2245119 2.494678 -1.458117 0.2245119 2.494678 -1.667858 0.2245119 2.494678 -1.907556 0.2245119 2.494678 -2.181521 0.2245119 2.494678 -2.494678 0.2245119 2.494678 -2.852659 0.2245119 2.494678 -3.261896 0.2245119 2.494678 -3.729748 0.2245119 2.494678 -4.264621 0.2245119 2.494678 -4.876131 0.2245119 2.494678 -5.575266 0.2245119 2.494678 -6.374593 0.2245119 2.494678 -0 0.2679612 2.494678 -0 0.2679612 2.494678 -0 0.2679612 2.494678 -0.002268731 0.2679612 2.494678 -0.07076883 0.2679612 2.494678 -0.1119241 0.2679612 2.494678 -0.1475052 0.2679612 2.494678 -0.1846606 0.2679612 2.494678 -0.2245119 0.2679612 2.494678 -0.2679612 0.2679612 2.494678 -0.3158431 0.2679612 2.494678 -0.3689944 0.2679612 2.494678 -0.4282948 0.2679612 2.494678 -0.494694 0.2679612 2.494678 -0.5692344 0.2679612 2.494678 -0.6530715 0.2679612 2.494678 -0.7474945 0.2679612 2.494678 -0.8539475 0.2679612 2.494678 -0.974052 0.2679612 2.494678 -1.113885 0.2679612 2.494678 -1.27456 0.2679612 2.494678 -1.458117 0.2679612 2.494678 -1.667858 0.2679612 2.494678 -1.907556 0.2679612 2.494678 -2.181521 0.2679612 2.494678 -2.494678 0.2679612 2.494678 -2.852659 0.2679612 2.494678 -3.261896 0.2679612 2.494678 -3.729748 0.2679612 2.494678 -4.264621 0.2679612 2.494678 -4.876131 0.2679612 2.494678 -5.575266 0.2679612 2.494678 -6.374593 0.2679612 2.494678 -0 0.3158431 2.494678 -0 0.3158431 2.494678 -0 0.3158431 2.494678 -0.002268731 0.3158431 2.494678 -0.07076883 0.3158431 2.494678 -0.1119241 0.3158431 2.494678 -0.1475052 0.3158431 2.494678 -0.1846606 0.3158431 2.494678 -0.2245119 0.3158431 2.494678 -0.2679612 0.3158431 2.494678 -0.3158431 0.3158431 2.494678 -0.3689944 0.3158431 2.494678 -0.4282948 0.3158431 2.494678 -0.494694 0.3158431 2.494678 -0.5692344 0.3158431 2.494678 -0.6530715 0.3158431 2.494678 -0.7474945 0.3158431 2.494678 -0.8539475 0.3158431 2.494678 -0.974052 0.3158431 2.494678 -1.113885 0.3158431 2.494678 -1.27456 0.3158431 2.494678 -1.458117 0.3158431 2.494678 -1.667858 0.3158431 2.494678 -1.907556 0.3158431 2.494678 -2.181521 0.3158431 2.494678 -2.494678 0.3158431 2.494678 -2.852659 0.3158431 2.494678 -3.261896 0.3158431 2.494678 -3.729748 0.3158431 2.494678 -4.264621 0.3158431 2.494678 -4.876131 0.3158431 2.494678 -5.575266 0.3158431 2.494678 -6.374593 0.3158431 2.494678 -0 0.3689944 2.494678 -0 0.3689944 2.494678 -0 0.3689944 2.494678 -0.002268731 0.3689944 2.494678 -0.07076883 0.3689944 2.494678 -0.1119241 0.3689944 2.494678 -0.1475052 0.3689944 2.494678 -0.1846606 0.3689944 2.494678 -0.2245119 0.3689944 2.494678 -0.2679612 0.3689944 2.494678 -0.3158431 0.3689944 2.494678 -0.3689944 0.3689944 2.494678 -0.4282948 0.3689944 2.494678 -0.494694 0.3689944 2.494678 -0.5692344 0.3689944 2.494678 -0.6530715 0.3689944 2.494678 -0.7474945 0.3689944 2.494678 -0.8539475 0.3689944 2.494678 -0.974052 0.3689944 2.494678 -1.113885 0.3689944 2.494678 -1.27456 0.3689944 2.494678 -1.458117 0.3689944 2.494678 -1.667858 0.3689944 2.494678 -1.907556 0.3689944 2.494678 -2.181521 0.3689944 2.494678 -2.494678 0.3689944 2.494678 -2.852659 0.3689944 2.494678 -3.261896 0.3689944 2.494678 -3.729748 0.3689944 2.494678 -4.264621 0.3689944 2.494678 -4.876131 0.3689944 2.494678 -5.575266 0.3689944 2.494678 -6.374593 0.3689944 2.494678 -0 0.4282948 2.494678 -0 0.4282948 2.494678 -0 0.4282948 2.494678 -0.002268731 0.4282948 2.494678 -0.07076883 0.4282948 2.494678 -0.1119241 0.4282948 2.494678 -0.1475052 0.4282948 2.494678 -0.1846606 0.4282948 2.494678 -0.2245119 0.4282948 2.494678 -0.2679612 0.4282948 2.494678 -0.3158431 0.4282948 2.494678 -0.3689944 0.4282948 2.494678 -0.4282948 0.4282948 2.494678 -0.494694 0.4282948 2.494678 -0.5692344 0.4282948 2.494678 -0.6530715 0.4282948 2.494678 -0.7474945 0.4282948 2.494678 -0.8539475 0.4282948 2.494678 -0.974052 0.4282948 2.494678 -1.113885 0.4282948 2.494678 -1.27456 0.4282948 2.494678 -1.458117 0.4282948 2.494678 -1.667858 0.4282948 2.494678 -1.907556 0.4282948 2.494678 -2.181521 0.4282948 2.494678 -2.494678 0.4282948 2.494678 -2.852659 0.4282948 2.494678 -3.261896 0.4282948 2.494678 -3.729748 0.4282948 2.494678 -4.264621 0.4282948 2.494678 -4.876131 0.4282948 2.494678 -5.575266 0.4282948 2.494678 -6.374593 0.4282948 2.494678 -0 0.494694 2.494678 -0 0.494694 2.494678 -0 0.494694 2.494678 -0.002268731 0.494694 2.494678 -0.07076883 0.494694 2.494678 -0.1119241 0.494694 2.494678 -0.1475052 0.494694 2.494678 -0.1846606 0.494694 2.494678 -0.2245119 0.494694 2.494678 -0.2679612 0.494694 2.494678 -0.3158431 0.494694 2.494678 -0.3689944 0.494694 2.494678 -0.4282948 0.494694 2.494678 -0.494694 0.494694 2.494678 -0.5692344 0.494694 2.494678 -0.6530715 0.494694 2.494678 -0.7474945 0.494694 2.494678 -0.8539475 0.494694 2.494678 -0.974052 0.494694 2.494678 -1.113885 0.494694 2.494678 -1.27456 0.494694 2.494678 -1.458117 0.494694 2.494678 -1.667858 0.494694 2.494678 -1.907556 0.494694 2.494678 -2.181521 0.494694 2.494678 -2.494678 0.494694 2.494678 -2.852659 0.494694 2.494678 -3.261896 0.494694 2.494678 -3.729748 0.494694 2.494678 -4.264621 0.494694 2.494678 -4.876131 0.494694 2.494678 -5.575266 0.494694 2.494678 -6.374593 0.494694 2.494678 -0 0.5692344 2.494678 -0 0.5692344 2.494678 -0 0.5692344 2.494678 -0.002268731 0.5692344 2.494678 -0.07076883 0.5692344 2.494678 -0.1119241 0.5692344 2.494678 -0.1475052 0.5692344 2.494678 -0.1846606 0.5692344 2.494678 -0.2245119 0.5692344 2.494678 -0.2679612 0.5692344 2.494678 -0.3158431 0.5692344 2.494678 -0.3689944 0.5692344 2.494678 -0.4282948 0.5692344 2.494678 -0.494694 0.5692344 2.494678 -0.5692344 0.5692344 2.494678 -0.6530715 0.5692344 2.494678 -0.7474945 0.5692344 2.494678 -0.8539475 0.5692344 2.494678 -0.974052 0.5692344 2.494678 -1.113885 0.5692344 2.494678 -1.27456 0.5692344 2.494678 -1.458117 0.5692344 2.494678 -1.667858 0.5692344 2.494678 -1.907556 0.5692344 2.494678 -2.181521 0.5692344 2.494678 -2.494678 0.5692344 2.494678 -2.852659 0.5692344 2.494678 -3.261896 0.5692344 2.494678 -3.729748 0.5692344 2.494678 -4.264621 0.5692344 2.494678 -4.876131 0.5692344 2.494678 -5.575266 0.5692344 2.494678 -6.374593 0.5692344 2.494678 -0 0.6530715 2.494678 -0 0.6530715 2.494678 -0 0.6530715 2.494678 -0.002268731 0.6530715 2.494678 -0.07076883 0.6530715 2.494678 -0.1119241 0.6530715 2.494678 -0.1475052 0.6530715 2.494678 -0.1846606 0.6530715 2.494678 -0.2245119 0.6530715 2.494678 -0.2679612 0.6530715 2.494678 -0.3158431 0.6530715 2.494678 -0.3689944 0.6530715 2.494678 -0.4282948 0.6530715 2.494678 -0.494694 0.6530715 2.494678 -0.5692344 0.6530715 2.494678 -0.6530715 0.6530715 2.494678 -0.7474945 0.6530715 2.494678 -0.8539475 0.6530715 2.494678 -0.974052 0.6530715 2.494678 -1.113885 0.6530715 2.494678 -1.27456 0.6530715 2.494678 -1.458117 0.6530715 2.494678 -1.667858 0.6530715 2.494678 -1.907556 0.6530715 2.494678 -2.181521 0.6530715 2.494678 -2.494678 0.6530715 2.494678 -2.852659 0.6530715 2.494678 -3.261896 0.6530715 2.494678 -3.729748 0.6530715 2.494678 -4.264621 0.6530715 2.494678 -4.876131 0.6530715 2.494678 -5.575266 0.6530715 2.494678 -6.374593 0.6530715 2.494678 -0 0.7474945 2.494678 -0 0.7474945 2.494678 -0 0.7474945 2.494678 -0.002268731 0.7474945 2.494678 -0.07076883 0.7474945 2.494678 -0.1119241 0.7474945 2.494678 -0.1475052 0.7474945 2.494678 -0.1846606 0.7474945 2.494678 -0.2245119 0.7474945 2.494678 -0.2679612 0.7474945 2.494678 -0.3158431 0.7474945 2.494678 -0.3689944 0.7474945 2.494678 -0.4282948 0.7474945 2.494678 -0.494694 0.7474945 2.494678 -0.5692344 0.7474945 2.494678 -0.6530715 0.7474945 2.494678 -0.7474945 0.7474945 2.494678 -0.8539475 0.7474945 2.494678 -0.974052 0.7474945 2.494678 -1.113885 0.7474945 2.494678 -1.27456 0.7474945 2.494678 -1.458117 0.7474945 2.494678 -1.667858 0.7474945 2.494678 -1.907556 0.7474945 2.494678 -2.181521 0.7474945 2.494678 -2.494678 0.7474945 2.494678 -2.852659 0.7474945 2.494678 -3.261896 0.7474945 2.494678 -3.729748 0.7474945 2.494678 -4.264621 0.7474945 2.494678 -4.876131 0.7474945 2.494678 -5.575266 0.7474945 2.494678 -6.374593 0.7474945 2.494678 -0 0.8539475 2.494678 -0 0.8539475 2.494678 -0 0.8539475 2.494678 -0.002268731 0.8539475 2.494678 -0.07076883 0.8539475 2.494678 -0.1119241 0.8539475 2.494678 -0.1475052 0.8539475 2.494678 -0.1846606 0.8539475 2.494678 -0.2245119 0.8539475 2.494678 -0.2679612 0.8539475 2.494678 -0.3158431 0.8539475 2.494678 -0.3689944 0.8539475 2.494678 -0.4282948 0.8539475 2.494678 -0.494694 0.8539475 2.494678 -0.5692344 0.8539475 2.494678 -0.6530715 0.8539475 2.494678 -0.7474945 0.8539475 2.494678 -0.8539475 0.8539475 2.494678 -0.974052 0.8539475 2.494678 -1.113885 0.8539475 2.494678 -1.27456 0.8539475 2.494678 -1.458117 0.8539475 2.494678 -1.667858 0.8539475 2.494678 -1.907556 0.8539475 2.494678 -2.181521 0.8539475 2.494678 -2.494678 0.8539475 2.494678 -2.852659 0.8539475 2.494678 -3.261896 0.8539475 2.494678 -3.729748 0.8539475 2.494678 -4.264621 0.8539475 2.494678 -4.876131 0.8539475 2.494678 -5.575266 0.8539475 2.494678 -6.374593 0.8539475 2.494678 -0 0.974052 2.494678 -0 0.974052 2.494678 -0 0.974052 2.494678 -0.002268731 0.974052 2.494678 -0.07076883 0.974052 2.494678 -0.1119241 0.974052 2.494678 -0.1475052 0.974052 2.494678 -0.1846606 0.974052 2.494678 -0.2245119 0.974052 2.494678 -0.2679612 0.974052 2.494678 -0.3158431 0.974052 2.494678 -0.3689944 0.974052 2.494678 -0.4282948 0.974052 2.494678 -0.494694 0.974052 2.494678 -0.5692344 0.974052 2.494678 -0.6530715 0.974052 2.494678 -0.7474945 0.974052 2.494678 -0.8539475 0.974052 2.494678 -0.974052 0.974052 2.494678 -1.113885 0.974052 2.494678 -1.27456 0.974052 2.494678 -1.458117 0.974052 2.494678 -1.667858 0.974052 2.494678 -1.907556 0.974052 2.494678 -2.181521 0.974052 2.494678 -2.494678 0.974052 2.494678 -2.852659 0.974052 2.494678 -3.261896 0.974052 2.494678 -3.729748 0.974052 2.494678 -4.264621 0.974052 2.494678 -4.876131 0.974052 2.494678 -5.575266 0.974052 2.494678 -6.374593 0.974052 2.494678 -0 1.113885 2.494678 -0 1.113885 2.494678 -0 1.113885 2.494678 -0.002268731 1.113885 2.494678 -0.07076883 1.113885 2.494678 -0.1119241 1.113885 2.494678 -0.1475052 1.113885 2.494678 -0.1846606 1.113885 2.494678 -0.2245119 1.113885 2.494678 -0.2679612 1.113885 2.494678 -0.3158431 1.113885 2.494678 -0.3689944 1.113885 2.494678 -0.4282948 1.113885 2.494678 -0.494694 1.113885 2.494678 -0.5692344 1.113885 2.494678 -0.6530715 1.113885 2.494678 -0.7474945 1.113885 2.494678 -0.8539475 1.113885 2.494678 -0.974052 1.113885 2.494678 -1.113885 1.113885 2.494678 -1.27456 1.113885 2.494678 -1.458117 1.113885 2.494678 -1.667858 1.113885 2.494678 -1.907556 1.113885 2.494678 -2.181521 1.113885 2.494678 -2.494678 1.113885 2.494678 -2.852659 1.113885 2.494678 -3.261896 1.113885 2.494678 -3.729748 1.113885 2.494678 -4.264621 1.113885 2.494678 -4.876131 1.113885 2.494678 -5.575266 1.113885 2.494678 -6.374593 1.113885 2.494678 -0 1.27456 2.494678 -0 1.27456 2.494678 -0 1.27456 2.494678 -0.002268731 1.27456 2.494678 -0.07076883 1.27456 2.494678 -0.1119241 1.27456 2.494678 -0.1475052 1.27456 2.494678 -0.1846606 1.27456 2.494678 -0.2245119 1.27456 2.494678 -0.2679612 1.27456 2.494678 -0.3158431 1.27456 2.494678 -0.3689944 1.27456 2.494678 -0.4282948 1.27456 2.494678 -0.494694 1.27456 2.494678 -0.5692344 1.27456 2.494678 -0.6530715 1.27456 2.494678 -0.7474945 1.27456 2.494678 -0.8539475 1.27456 2.494678 -0.974052 1.27456 2.494678 -1.113885 1.27456 2.494678 -1.27456 1.27456 2.494678 -1.458117 1.27456 2.494678 -1.667858 1.27456 2.494678 -1.907556 1.27456 2.494678 -2.181521 1.27456 2.494678 -2.494678 1.27456 2.494678 -2.852659 1.27456 2.494678 -3.261896 1.27456 2.494678 -3.729748 1.27456 2.494678 -4.264621 1.27456 2.494678 -4.876131 1.27456 2.494678 -5.575266 1.27456 2.494678 -6.374593 1.27456 2.494678 -0 1.458117 2.494678 -0 1.458117 2.494678 -0 1.458117 2.494678 -0.002268731 1.458117 2.494678 -0.07076883 1.458117 2.494678 -0.1119241 1.458117 2.494678 -0.1475052 1.458117 2.494678 -0.1846606 1.458117 2.494678 -0.2245119 1.458117 2.494678 -0.2679612 1.458117 2.494678 -0.3158431 1.458117 2.494678 -0.3689944 1.458117 2.494678 -0.4282948 1.458117 2.494678 -0.494694 1.458117 2.494678 -0.5692344 1.458117 2.494678 -0.6530715 1.458117 2.494678 -0.7474945 1.458117 2.494678 -0.8539475 1.458117 2.494678 -0.974052 1.458117 2.494678 -1.113885 1.458117 2.494678 -1.27456 1.458117 2.494678 -1.458117 1.458117 2.494678 -1.667858 1.458117 2.494678 -1.907556 1.458117 2.494678 -2.181521 1.458117 2.494678 -2.494678 1.458117 2.494678 -2.852659 1.458117 2.494678 -3.261896 1.458117 2.494678 -3.729748 1.458117 2.494678 -4.264621 1.458117 2.494678 -4.876131 1.458117 2.494678 -5.575266 1.458117 2.494678 -6.374593 1.458117 2.494678 -0 1.667858 2.494678 -0 1.667858 2.494678 -0 1.667858 2.494678 -0.002268731 1.667858 2.494678 -0.07076883 1.667858 2.494678 -0.1119241 1.667858 2.494678 -0.1475052 1.667858 2.494678 -0.1846606 1.667858 2.494678 -0.2245119 1.667858 2.494678 -0.2679612 1.667858 2.494678 -0.3158431 1.667858 2.494678 -0.3689944 1.667858 2.494678 -0.4282948 1.667858 2.494678 -0.494694 1.667858 2.494678 -0.5692344 1.667858 2.494678 -0.6530715 1.667858 2.494678 -0.7474945 1.667858 2.494678 -0.8539475 1.667858 2.494678 -0.974052 1.667858 2.494678 -1.113885 1.667858 2.494678 -1.27456 1.667858 2.494678 -1.458117 1.667858 2.494678 -1.667858 1.667858 2.494678 -1.907556 1.667858 2.494678 -2.181521 1.667858 2.494678 -2.494678 1.667858 2.494678 -2.852659 1.667858 2.494678 -3.261896 1.667858 2.494678 -3.729748 1.667858 2.494678 -4.264621 1.667858 2.494678 -4.876131 1.667858 2.494678 -5.575266 1.667858 2.494678 -6.374593 1.667858 2.494678 -0 1.907556 2.494678 -0 1.907556 2.494678 -0 1.907556 2.494678 -0.002268731 1.907556 2.494678 -0.07076883 1.907556 2.494678 -0.1119241 1.907556 2.494678 -0.1475052 1.907556 2.494678 -0.1846606 1.907556 2.494678 -0.2245119 1.907556 2.494678 -0.2679612 1.907556 2.494678 -0.3158431 1.907556 2.494678 -0.3689944 1.907556 2.494678 -0.4282948 1.907556 2.494678 -0.494694 1.907556 2.494678 -0.5692344 1.907556 2.494678 -0.6530715 1.907556 2.494678 -0.7474945 1.907556 2.494678 -0.8539475 1.907556 2.494678 -0.974052 1.907556 2.494678 -1.113885 1.907556 2.494678 -1.27456 1.907556 2.494678 -1.458117 1.907556 2.494678 -1.667858 1.907556 2.494678 -1.907556 1.907556 2.494678 -2.181521 1.907556 2.494678 -2.494678 1.907556 2.494678 -2.852659 1.907556 2.494678 -3.261896 1.907556 2.494678 -3.729748 1.907556 2.494678 -4.264621 1.907556 2.494678 -4.876131 1.907556 2.494678 -5.575266 1.907556 2.494678 -6.374593 1.907556 2.494678 -0 2.181521 2.494678 -0 2.181521 2.494678 -0 2.181521 2.494678 -0.002268731 2.181521 2.494678 -0.07076883 2.181521 2.494678 -0.1119241 2.181521 2.494678 -0.1475052 2.181521 2.494678 -0.1846606 2.181521 2.494678 -0.2245119 2.181521 2.494678 -0.2679612 2.181521 2.494678 -0.3158431 2.181521 2.494678 -0.3689944 2.181521 2.494678 -0.4282948 2.181521 2.494678 -0.494694 2.181521 2.494678 -0.5692344 2.181521 2.494678 -0.6530715 2.181521 2.494678 -0.7474945 2.181521 2.494678 -0.8539475 2.181521 2.494678 -0.974052 2.181521 2.494678 -1.113885 2.181521 2.494678 -1.27456 2.181521 2.494678 -1.458117 2.181521 2.494678 -1.667858 2.181521 2.494678 -1.907556 2.181521 2.494678 -2.181521 2.181521 2.494678 -2.494678 2.181521 2.494678 -2.852659 2.181521 2.494678 -3.261896 2.181521 2.494678 -3.729748 2.181521 2.494678 -4.264621 2.181521 2.494678 -4.876131 2.181521 2.494678 -5.575266 2.181521 2.494678 -6.374593 2.181521 2.494678 -0 2.494678 2.494678 -0 2.494678 2.494678 -0 2.494678 2.494678 -0.002268731 2.494678 2.494678 -0.07076883 2.494678 2.494678 -0.1119241 2.494678 2.494678 -0.1475052 2.494678 2.494678 -0.1846606 2.494678 2.494678 -0.2245119 2.494678 2.494678 -0.2679612 2.494678 2.494678 -0.3158431 2.494678 2.494678 -0.3689944 2.494678 2.494678 -0.4282948 2.494678 2.494678 -0.494694 2.494678 2.494678 -0.5692344 2.494678 2.494678 -0.6530715 2.494678 2.494678 -0.7474945 2.494678 2.494678 -0.8539475 2.494678 2.494678 -0.974052 2.494678 2.494678 -1.113885 2.494678 2.494678 -1.27456 2.494678 2.494678 -1.458117 2.494678 2.494678 -1.667858 2.494678 2.494678 -1.907556 2.494678 2.494678 -2.181521 2.494678 2.494678 -2.494678 2.494678 2.494678 -2.852659 2.494678 2.494678 -3.261896 2.494678 2.494678 -3.729748 2.494678 2.494678 -4.264621 2.494678 2.494678 -4.876131 2.494678 2.494678 -5.575266 2.494678 2.494678 -6.374593 2.494678 2.494678 -0 2.852659 2.494678 -0 2.852659 2.494678 -0 2.852659 2.494678 -0.002268731 2.852659 2.494678 -0.07076883 2.852659 2.494678 -0.1119241 2.852659 2.494678 -0.1475052 2.852659 2.494678 -0.1846606 2.852659 2.494678 -0.2245119 2.852659 2.494678 -0.2679612 2.852659 2.494678 -0.3158431 2.852659 2.494678 -0.3689944 2.852659 2.494678 -0.4282948 2.852659 2.494678 -0.494694 2.852659 2.494678 -0.5692344 2.852659 2.494678 -0.6530715 2.852659 2.494678 -0.7474945 2.852659 2.494678 -0.8539475 2.852659 2.494678 -0.974052 2.852659 2.494678 -1.113885 2.852659 2.494678 -1.27456 2.852659 2.494678 -1.458117 2.852659 2.494678 -1.667858 2.852659 2.494678 -1.907556 2.852659 2.494678 -2.181521 2.852659 2.494678 -2.494678 2.852659 2.494678 -2.852659 2.852659 2.494678 -3.261896 2.852659 2.494678 -3.729748 2.852659 2.494678 -4.264621 2.852659 2.494678 -4.876131 2.852659 2.494678 -5.575266 2.852659 2.494678 -6.374593 2.852659 2.494678 -0 3.261896 2.494678 -0 3.261896 2.494678 -0 3.261896 2.494678 -0.002268731 3.261896 2.494678 -0.07076883 3.261896 2.494678 -0.1119241 3.261896 2.494678 -0.1475052 3.261896 2.494678 -0.1846606 3.261896 2.494678 -0.2245119 3.261896 2.494678 -0.2679612 3.261896 2.494678 -0.3158431 3.261896 2.494678 -0.3689944 3.261896 2.494678 -0.4282948 3.261896 2.494678 -0.494694 3.261896 2.494678 -0.5692344 3.261896 2.494678 -0.6530715 3.261896 2.494678 -0.7474945 3.261896 2.494678 -0.8539475 3.261896 2.494678 -0.974052 3.261896 2.494678 -1.113885 3.261896 2.494678 -1.27456 3.261896 2.494678 -1.458117 3.261896 2.494678 -1.667858 3.261896 2.494678 -1.907556 3.261896 2.494678 -2.181521 3.261896 2.494678 -2.494678 3.261896 2.494678 -2.852659 3.261896 2.494678 -3.261896 3.261896 2.494678 -3.729748 3.261896 2.494678 -4.264621 3.261896 2.494678 -4.876131 3.261896 2.494678 -5.575266 3.261896 2.494678 -6.374593 3.261896 2.494678 -0 3.729748 2.494678 -0 3.729748 2.494678 -0 3.729748 2.494678 -0.002268731 3.729748 2.494678 -0.07076883 3.729748 2.494678 -0.1119241 3.729748 2.494678 -0.1475052 3.729748 2.494678 -0.1846606 3.729748 2.494678 -0.2245119 3.729748 2.494678 -0.2679612 3.729748 2.494678 -0.3158431 3.729748 2.494678 -0.3689944 3.729748 2.494678 -0.4282948 3.729748 2.494678 -0.494694 3.729748 2.494678 -0.5692344 3.729748 2.494678 -0.6530715 3.729748 2.494678 -0.7474945 3.729748 2.494678 -0.8539475 3.729748 2.494678 -0.974052 3.729748 2.494678 -1.113885 3.729748 2.494678 -1.27456 3.729748 2.494678 -1.458117 3.729748 2.494678 -1.667858 3.729748 2.494678 -1.907556 3.729748 2.494678 -2.181521 3.729748 2.494678 -2.494678 3.729748 2.494678 -2.852659 3.729748 2.494678 -3.261896 3.729748 2.494678 -3.729748 3.729748 2.494678 -4.264621 3.729748 2.494678 -4.876131 3.729748 2.494678 -5.575266 3.729748 2.494678 -6.374593 3.729748 2.494678 -0 4.264621 2.494678 -0 4.264621 2.494678 -0 4.264621 2.494678 -0.002268731 4.264621 2.494678 -0.07076883 4.264621 2.494678 -0.1119241 4.264621 2.494678 -0.1475052 4.264621 2.494678 -0.1846606 4.264621 2.494678 -0.2245119 4.264621 2.494678 -0.2679612 4.264621 2.494678 -0.3158431 4.264621 2.494678 -0.3689944 4.264621 2.494678 -0.4282948 4.264621 2.494678 -0.494694 4.264621 2.494678 -0.5692344 4.264621 2.494678 -0.6530715 4.264621 2.494678 -0.7474945 4.264621 2.494678 -0.8539475 4.264621 2.494678 -0.974052 4.264621 2.494678 -1.113885 4.264621 2.494678 -1.27456 4.264621 2.494678 -1.458117 4.264621 2.494678 -1.667858 4.264621 2.494678 -1.907556 4.264621 2.494678 -2.181521 4.264621 2.494678 -2.494678 4.264621 2.494678 -2.852659 4.264621 2.494678 -3.261896 4.264621 2.494678 -3.729748 4.264621 2.494678 -4.264621 4.264621 2.494678 -4.876131 4.264621 2.494678 -5.575266 4.264621 2.494678 -6.374593 4.264621 2.494678 -0 4.876131 2.494678 -0 4.876131 2.494678 -0 4.876131 2.494678 -0.002268731 4.876131 2.494678 -0.07076883 4.876131 2.494678 -0.1119241 4.876131 2.494678 -0.1475052 4.876131 2.494678 -0.1846606 4.876131 2.494678 -0.2245119 4.876131 2.494678 -0.2679612 4.876131 2.494678 -0.3158431 4.876131 2.494678 -0.3689944 4.876131 2.494678 -0.4282948 4.876131 2.494678 -0.494694 4.876131 2.494678 -0.5692344 4.876131 2.494678 -0.6530715 4.876131 2.494678 -0.7474945 4.876131 2.494678 -0.8539475 4.876131 2.494678 -0.974052 4.876131 2.494678 -1.113885 4.876131 2.494678 -1.27456 4.876131 2.494678 -1.458117 4.876131 2.494678 -1.667858 4.876131 2.494678 -1.907556 4.876131 2.494678 -2.181521 4.876131 2.494678 -2.494678 4.876131 2.494678 -2.852659 4.876131 2.494678 -3.261896 4.876131 2.494678 -3.729748 4.876131 2.494678 -4.264621 4.876131 2.494678 -4.876131 4.876131 2.494678 -5.575266 4.876131 2.494678 -6.374593 4.876131 2.494678 -0 5.575266 2.494678 -0 5.575266 2.494678 -0 5.575266 2.494678 -0.002268731 5.575266 2.494678 -0.07076883 5.575266 2.494678 -0.1119241 5.575266 2.494678 -0.1475052 5.575266 2.494678 -0.1846606 5.575266 2.494678 -0.2245119 5.575266 2.494678 -0.2679612 5.575266 2.494678 -0.3158431 5.575266 2.494678 -0.3689944 5.575266 2.494678 -0.4282948 5.575266 2.494678 -0.494694 5.575266 2.494678 -0.5692344 5.575266 2.494678 -0.6530715 5.575266 2.494678 -0.7474945 5.575266 2.494678 -0.8539475 5.575266 2.494678 -0.974052 5.575266 2.494678 -1.113885 5.575266 2.494678 -1.27456 5.575266 2.494678 -1.458117 5.575266 2.494678 -1.667858 5.575266 2.494678 -1.907556 5.575266 2.494678 -2.181521 5.575266 2.494678 -2.494678 5.575266 2.494678 -2.852659 5.575266 2.494678 -3.261896 5.575266 2.494678 -3.729748 5.575266 2.494678 -4.264621 5.575266 2.494678 -4.876131 5.575266 2.494678 -5.575266 5.575266 2.494678 -6.374593 5.575266 2.494678 -0 6.374593 2.494678 -0 6.374593 2.494678 -0 6.374593 2.494678 -0.002268731 6.374593 2.494678 -0.07076883 6.374593 2.494678 -0.1119241 6.374593 2.494678 -0.1475052 6.374593 2.494678 -0.1846606 6.374593 2.494678 -0.2245119 6.374593 2.494678 -0.2679612 6.374593 2.494678 -0.3158431 6.374593 2.494678 -0.3689944 6.374593 2.494678 -0.4282948 6.374593 2.494678 -0.494694 6.374593 2.494678 -0.5692344 6.374593 2.494678 -0.6530715 6.374593 2.494678 -0.7474945 6.374593 2.494678 -0.8539475 6.374593 2.494678 -0.974052 6.374593 2.494678 -1.113885 6.374593 2.494678 -1.27456 6.374593 2.494678 -1.458117 6.374593 2.494678 -1.667858 6.374593 2.494678 -1.907556 6.374593 2.494678 -2.181521 6.374593 2.494678 -2.494678 6.374593 2.494678 -2.852659 6.374593 2.494678 -3.261896 6.374593 2.494678 -3.729748 6.374593 2.494678 -4.264621 6.374593 2.494678 -4.876131 6.374593 2.494678 -5.575266 6.374593 2.494678 -6.374593 6.374593 2.494678 -0 0 2.852659 -0 0 2.852659 -0 0 2.852659 -0.002268731 0 2.852659 -0.07076883 0 2.852659 -0.1119241 0 2.852659 -0.1475052 0 2.852659 -0.1846606 0 2.852659 -0.2245119 0 2.852659 -0.2679612 0 2.852659 -0.3158431 0 2.852659 -0.3689944 0 2.852659 -0.4282948 0 2.852659 -0.494694 0 2.852659 -0.5692344 0 2.852659 -0.6530715 0 2.852659 -0.7474945 0 2.852659 -0.8539475 0 2.852659 -0.974052 0 2.852659 -1.113885 0 2.852659 -1.27456 0 2.852659 -1.458117 0 2.852659 -1.667858 0 2.852659 -1.907556 0 2.852659 -2.181521 0 2.852659 -2.494678 0 2.852659 -2.852659 0 2.852659 -3.261896 0 2.852659 -3.729748 0 2.852659 -4.264621 0 2.852659 -4.876131 0 2.852659 -5.575266 0 2.852659 -6.374593 0 2.852659 -0 0 2.852659 -0 0 2.852659 -0 0 2.852659 -0.002268731 0 2.852659 -0.07076883 0 2.852659 -0.1119241 0 2.852659 -0.1475052 0 2.852659 -0.1846606 0 2.852659 -0.2245119 0 2.852659 -0.2679612 0 2.852659 -0.3158431 0 2.852659 -0.3689944 0 2.852659 -0.4282948 0 2.852659 -0.494694 0 2.852659 -0.5692344 0 2.852659 -0.6530715 0 2.852659 -0.7474945 0 2.852659 -0.8539475 0 2.852659 -0.974052 0 2.852659 -1.113885 0 2.852659 -1.27456 0 2.852659 -1.458117 0 2.852659 -1.667858 0 2.852659 -1.907556 0 2.852659 -2.181521 0 2.852659 -2.494678 0 2.852659 -2.852659 0 2.852659 -3.261896 0 2.852659 -3.729748 0 2.852659 -4.264621 0 2.852659 -4.876131 0 2.852659 -5.575266 0 2.852659 -6.374593 0 2.852659 -0 0 2.852659 -0 0 2.852659 -0 0 2.852659 -0.002268731 0 2.852659 -0.07076883 0 2.852659 -0.1119241 0 2.852659 -0.1475052 0 2.852659 -0.1846606 0 2.852659 -0.2245119 0 2.852659 -0.2679612 0 2.852659 -0.3158431 0 2.852659 -0.3689944 0 2.852659 -0.4282948 0 2.852659 -0.494694 0 2.852659 -0.5692344 0 2.852659 -0.6530715 0 2.852659 -0.7474945 0 2.852659 -0.8539475 0 2.852659 -0.974052 0 2.852659 -1.113885 0 2.852659 -1.27456 0 2.852659 -1.458117 0 2.852659 -1.667858 0 2.852659 -1.907556 0 2.852659 -2.181521 0 2.852659 -2.494678 0 2.852659 -2.852659 0 2.852659 -3.261896 0 2.852659 -3.729748 0 2.852659 -4.264621 0 2.852659 -4.876131 0 2.852659 -5.575266 0 2.852659 -6.374593 0 2.852659 -0 0.002268731 2.852659 -0 0.002268731 2.852659 -0 0.002268731 2.852659 -0.002268731 0.002268731 2.852659 -0.07076883 0.002268731 2.852659 -0.1119241 0.002268731 2.852659 -0.1475052 0.002268731 2.852659 -0.1846606 0.002268731 2.852659 -0.2245119 0.002268731 2.852659 -0.2679612 0.002268731 2.852659 -0.3158431 0.002268731 2.852659 -0.3689944 0.002268731 2.852659 -0.4282948 0.002268731 2.852659 -0.494694 0.002268731 2.852659 -0.5692344 0.002268731 2.852659 -0.6530715 0.002268731 2.852659 -0.7474945 0.002268731 2.852659 -0.8539475 0.002268731 2.852659 -0.974052 0.002268731 2.852659 -1.113885 0.002268731 2.852659 -1.27456 0.002268731 2.852659 -1.458117 0.002268731 2.852659 -1.667858 0.002268731 2.852659 -1.907556 0.002268731 2.852659 -2.181521 0.002268731 2.852659 -2.494678 0.002268731 2.852659 -2.852659 0.002268731 2.852659 -3.261896 0.002268731 2.852659 -3.729748 0.002268731 2.852659 -4.264621 0.002268731 2.852659 -4.876131 0.002268731 2.852659 -5.575266 0.002268731 2.852659 -6.374593 0.002268731 2.852659 -0 0.07076883 2.852659 -0 0.07076883 2.852659 -0 0.07076883 2.852659 -0.002268731 0.07076883 2.852659 -0.07076883 0.07076883 2.852659 -0.1119241 0.07076883 2.852659 -0.1475052 0.07076883 2.852659 -0.1846606 0.07076883 2.852659 -0.2245119 0.07076883 2.852659 -0.2679612 0.07076883 2.852659 -0.3158431 0.07076883 2.852659 -0.3689944 0.07076883 2.852659 -0.4282948 0.07076883 2.852659 -0.494694 0.07076883 2.852659 -0.5692344 0.07076883 2.852659 -0.6530715 0.07076883 2.852659 -0.7474945 0.07076883 2.852659 -0.8539475 0.07076883 2.852659 -0.974052 0.07076883 2.852659 -1.113885 0.07076883 2.852659 -1.27456 0.07076883 2.852659 -1.458117 0.07076883 2.852659 -1.667858 0.07076883 2.852659 -1.907556 0.07076883 2.852659 -2.181521 0.07076883 2.852659 -2.494678 0.07076883 2.852659 -2.852659 0.07076883 2.852659 -3.261896 0.07076883 2.852659 -3.729748 0.07076883 2.852659 -4.264621 0.07076883 2.852659 -4.876131 0.07076883 2.852659 -5.575266 0.07076883 2.852659 -6.374593 0.07076883 2.852659 -0 0.1119241 2.852659 -0 0.1119241 2.852659 -0 0.1119241 2.852659 -0.002268731 0.1119241 2.852659 -0.07076883 0.1119241 2.852659 -0.1119241 0.1119241 2.852659 -0.1475052 0.1119241 2.852659 -0.1846606 0.1119241 2.852659 -0.2245119 0.1119241 2.852659 -0.2679612 0.1119241 2.852659 -0.3158431 0.1119241 2.852659 -0.3689944 0.1119241 2.852659 -0.4282948 0.1119241 2.852659 -0.494694 0.1119241 2.852659 -0.5692344 0.1119241 2.852659 -0.6530715 0.1119241 2.852659 -0.7474945 0.1119241 2.852659 -0.8539475 0.1119241 2.852659 -0.974052 0.1119241 2.852659 -1.113885 0.1119241 2.852659 -1.27456 0.1119241 2.852659 -1.458117 0.1119241 2.852659 -1.667858 0.1119241 2.852659 -1.907556 0.1119241 2.852659 -2.181521 0.1119241 2.852659 -2.494678 0.1119241 2.852659 -2.852659 0.1119241 2.852659 -3.261896 0.1119241 2.852659 -3.729748 0.1119241 2.852659 -4.264621 0.1119241 2.852659 -4.876131 0.1119241 2.852659 -5.575266 0.1119241 2.852659 -6.374593 0.1119241 2.852659 -0 0.1475052 2.852659 -0 0.1475052 2.852659 -0 0.1475052 2.852659 -0.002268731 0.1475052 2.852659 -0.07076883 0.1475052 2.852659 -0.1119241 0.1475052 2.852659 -0.1475052 0.1475052 2.852659 -0.1846606 0.1475052 2.852659 -0.2245119 0.1475052 2.852659 -0.2679612 0.1475052 2.852659 -0.3158431 0.1475052 2.852659 -0.3689944 0.1475052 2.852659 -0.4282948 0.1475052 2.852659 -0.494694 0.1475052 2.852659 -0.5692344 0.1475052 2.852659 -0.6530715 0.1475052 2.852659 -0.7474945 0.1475052 2.852659 -0.8539475 0.1475052 2.852659 -0.974052 0.1475052 2.852659 -1.113885 0.1475052 2.852659 -1.27456 0.1475052 2.852659 -1.458117 0.1475052 2.852659 -1.667858 0.1475052 2.852659 -1.907556 0.1475052 2.852659 -2.181521 0.1475052 2.852659 -2.494678 0.1475052 2.852659 -2.852659 0.1475052 2.852659 -3.261896 0.1475052 2.852659 -3.729748 0.1475052 2.852659 -4.264621 0.1475052 2.852659 -4.876131 0.1475052 2.852659 -5.575266 0.1475052 2.852659 -6.374593 0.1475052 2.852659 -0 0.1846606 2.852659 -0 0.1846606 2.852659 -0 0.1846606 2.852659 -0.002268731 0.1846606 2.852659 -0.07076883 0.1846606 2.852659 -0.1119241 0.1846606 2.852659 -0.1475052 0.1846606 2.852659 -0.1846606 0.1846606 2.852659 -0.2245119 0.1846606 2.852659 -0.2679612 0.1846606 2.852659 -0.3158431 0.1846606 2.852659 -0.3689944 0.1846606 2.852659 -0.4282948 0.1846606 2.852659 -0.494694 0.1846606 2.852659 -0.5692344 0.1846606 2.852659 -0.6530715 0.1846606 2.852659 -0.7474945 0.1846606 2.852659 -0.8539475 0.1846606 2.852659 -0.974052 0.1846606 2.852659 -1.113885 0.1846606 2.852659 -1.27456 0.1846606 2.852659 -1.458117 0.1846606 2.852659 -1.667858 0.1846606 2.852659 -1.907556 0.1846606 2.852659 -2.181521 0.1846606 2.852659 -2.494678 0.1846606 2.852659 -2.852659 0.1846606 2.852659 -3.261896 0.1846606 2.852659 -3.729748 0.1846606 2.852659 -4.264621 0.1846606 2.852659 -4.876131 0.1846606 2.852659 -5.575266 0.1846606 2.852659 -6.374593 0.1846606 2.852659 -0 0.2245119 2.852659 -0 0.2245119 2.852659 -0 0.2245119 2.852659 -0.002268731 0.2245119 2.852659 -0.07076883 0.2245119 2.852659 -0.1119241 0.2245119 2.852659 -0.1475052 0.2245119 2.852659 -0.1846606 0.2245119 2.852659 -0.2245119 0.2245119 2.852659 -0.2679612 0.2245119 2.852659 -0.3158431 0.2245119 2.852659 -0.3689944 0.2245119 2.852659 -0.4282948 0.2245119 2.852659 -0.494694 0.2245119 2.852659 -0.5692344 0.2245119 2.852659 -0.6530715 0.2245119 2.852659 -0.7474945 0.2245119 2.852659 -0.8539475 0.2245119 2.852659 -0.974052 0.2245119 2.852659 -1.113885 0.2245119 2.852659 -1.27456 0.2245119 2.852659 -1.458117 0.2245119 2.852659 -1.667858 0.2245119 2.852659 -1.907556 0.2245119 2.852659 -2.181521 0.2245119 2.852659 -2.494678 0.2245119 2.852659 -2.852659 0.2245119 2.852659 -3.261896 0.2245119 2.852659 -3.729748 0.2245119 2.852659 -4.264621 0.2245119 2.852659 -4.876131 0.2245119 2.852659 -5.575266 0.2245119 2.852659 -6.374593 0.2245119 2.852659 -0 0.2679612 2.852659 -0 0.2679612 2.852659 -0 0.2679612 2.852659 -0.002268731 0.2679612 2.852659 -0.07076883 0.2679612 2.852659 -0.1119241 0.2679612 2.852659 -0.1475052 0.2679612 2.852659 -0.1846606 0.2679612 2.852659 -0.2245119 0.2679612 2.852659 -0.2679612 0.2679612 2.852659 -0.3158431 0.2679612 2.852659 -0.3689944 0.2679612 2.852659 -0.4282948 0.2679612 2.852659 -0.494694 0.2679612 2.852659 -0.5692344 0.2679612 2.852659 -0.6530715 0.2679612 2.852659 -0.7474945 0.2679612 2.852659 -0.8539475 0.2679612 2.852659 -0.974052 0.2679612 2.852659 -1.113885 0.2679612 2.852659 -1.27456 0.2679612 2.852659 -1.458117 0.2679612 2.852659 -1.667858 0.2679612 2.852659 -1.907556 0.2679612 2.852659 -2.181521 0.2679612 2.852659 -2.494678 0.2679612 2.852659 -2.852659 0.2679612 2.852659 -3.261896 0.2679612 2.852659 -3.729748 0.2679612 2.852659 -4.264621 0.2679612 2.852659 -4.876131 0.2679612 2.852659 -5.575266 0.2679612 2.852659 -6.374593 0.2679612 2.852659 -0 0.3158431 2.852659 -0 0.3158431 2.852659 -0 0.3158431 2.852659 -0.002268731 0.3158431 2.852659 -0.07076883 0.3158431 2.852659 -0.1119241 0.3158431 2.852659 -0.1475052 0.3158431 2.852659 -0.1846606 0.3158431 2.852659 -0.2245119 0.3158431 2.852659 -0.2679612 0.3158431 2.852659 -0.3158431 0.3158431 2.852659 -0.3689944 0.3158431 2.852659 -0.4282948 0.3158431 2.852659 -0.494694 0.3158431 2.852659 -0.5692344 0.3158431 2.852659 -0.6530715 0.3158431 2.852659 -0.7474945 0.3158431 2.852659 -0.8539475 0.3158431 2.852659 -0.974052 0.3158431 2.852659 -1.113885 0.3158431 2.852659 -1.27456 0.3158431 2.852659 -1.458117 0.3158431 2.852659 -1.667858 0.3158431 2.852659 -1.907556 0.3158431 2.852659 -2.181521 0.3158431 2.852659 -2.494678 0.3158431 2.852659 -2.852659 0.3158431 2.852659 -3.261896 0.3158431 2.852659 -3.729748 0.3158431 2.852659 -4.264621 0.3158431 2.852659 -4.876131 0.3158431 2.852659 -5.575266 0.3158431 2.852659 -6.374593 0.3158431 2.852659 -0 0.3689944 2.852659 -0 0.3689944 2.852659 -0 0.3689944 2.852659 -0.002268731 0.3689944 2.852659 -0.07076883 0.3689944 2.852659 -0.1119241 0.3689944 2.852659 -0.1475052 0.3689944 2.852659 -0.1846606 0.3689944 2.852659 -0.2245119 0.3689944 2.852659 -0.2679612 0.3689944 2.852659 -0.3158431 0.3689944 2.852659 -0.3689944 0.3689944 2.852659 -0.4282948 0.3689944 2.852659 -0.494694 0.3689944 2.852659 -0.5692344 0.3689944 2.852659 -0.6530715 0.3689944 2.852659 -0.7474945 0.3689944 2.852659 -0.8539475 0.3689944 2.852659 -0.974052 0.3689944 2.852659 -1.113885 0.3689944 2.852659 -1.27456 0.3689944 2.852659 -1.458117 0.3689944 2.852659 -1.667858 0.3689944 2.852659 -1.907556 0.3689944 2.852659 -2.181521 0.3689944 2.852659 -2.494678 0.3689944 2.852659 -2.852659 0.3689944 2.852659 -3.261896 0.3689944 2.852659 -3.729748 0.3689944 2.852659 -4.264621 0.3689944 2.852659 -4.876131 0.3689944 2.852659 -5.575266 0.3689944 2.852659 -6.374593 0.3689944 2.852659 -0 0.4282948 2.852659 -0 0.4282948 2.852659 -0 0.4282948 2.852659 -0.002268731 0.4282948 2.852659 -0.07076883 0.4282948 2.852659 -0.1119241 0.4282948 2.852659 -0.1475052 0.4282948 2.852659 -0.1846606 0.4282948 2.852659 -0.2245119 0.4282948 2.852659 -0.2679612 0.4282948 2.852659 -0.3158431 0.4282948 2.852659 -0.3689944 0.4282948 2.852659 -0.4282948 0.4282948 2.852659 -0.494694 0.4282948 2.852659 -0.5692344 0.4282948 2.852659 -0.6530715 0.4282948 2.852659 -0.7474945 0.4282948 2.852659 -0.8539475 0.4282948 2.852659 -0.974052 0.4282948 2.852659 -1.113885 0.4282948 2.852659 -1.27456 0.4282948 2.852659 -1.458117 0.4282948 2.852659 -1.667858 0.4282948 2.852659 -1.907556 0.4282948 2.852659 -2.181521 0.4282948 2.852659 -2.494678 0.4282948 2.852659 -2.852659 0.4282948 2.852659 -3.261896 0.4282948 2.852659 -3.729748 0.4282948 2.852659 -4.264621 0.4282948 2.852659 -4.876131 0.4282948 2.852659 -5.575266 0.4282948 2.852659 -6.374593 0.4282948 2.852659 -0 0.494694 2.852659 -0 0.494694 2.852659 -0 0.494694 2.852659 -0.002268731 0.494694 2.852659 -0.07076883 0.494694 2.852659 -0.1119241 0.494694 2.852659 -0.1475052 0.494694 2.852659 -0.1846606 0.494694 2.852659 -0.2245119 0.494694 2.852659 -0.2679612 0.494694 2.852659 -0.3158431 0.494694 2.852659 -0.3689944 0.494694 2.852659 -0.4282948 0.494694 2.852659 -0.494694 0.494694 2.852659 -0.5692344 0.494694 2.852659 -0.6530715 0.494694 2.852659 -0.7474945 0.494694 2.852659 -0.8539475 0.494694 2.852659 -0.974052 0.494694 2.852659 -1.113885 0.494694 2.852659 -1.27456 0.494694 2.852659 -1.458117 0.494694 2.852659 -1.667858 0.494694 2.852659 -1.907556 0.494694 2.852659 -2.181521 0.494694 2.852659 -2.494678 0.494694 2.852659 -2.852659 0.494694 2.852659 -3.261896 0.494694 2.852659 -3.729748 0.494694 2.852659 -4.264621 0.494694 2.852659 -4.876131 0.494694 2.852659 -5.575266 0.494694 2.852659 -6.374593 0.494694 2.852659 -0 0.5692344 2.852659 -0 0.5692344 2.852659 -0 0.5692344 2.852659 -0.002268731 0.5692344 2.852659 -0.07076883 0.5692344 2.852659 -0.1119241 0.5692344 2.852659 -0.1475052 0.5692344 2.852659 -0.1846606 0.5692344 2.852659 -0.2245119 0.5692344 2.852659 -0.2679612 0.5692344 2.852659 -0.3158431 0.5692344 2.852659 -0.3689944 0.5692344 2.852659 -0.4282948 0.5692344 2.852659 -0.494694 0.5692344 2.852659 -0.5692344 0.5692344 2.852659 -0.6530715 0.5692344 2.852659 -0.7474945 0.5692344 2.852659 -0.8539475 0.5692344 2.852659 -0.974052 0.5692344 2.852659 -1.113885 0.5692344 2.852659 -1.27456 0.5692344 2.852659 -1.458117 0.5692344 2.852659 -1.667858 0.5692344 2.852659 -1.907556 0.5692344 2.852659 -2.181521 0.5692344 2.852659 -2.494678 0.5692344 2.852659 -2.852659 0.5692344 2.852659 -3.261896 0.5692344 2.852659 -3.729748 0.5692344 2.852659 -4.264621 0.5692344 2.852659 -4.876131 0.5692344 2.852659 -5.575266 0.5692344 2.852659 -6.374593 0.5692344 2.852659 -0 0.6530715 2.852659 -0 0.6530715 2.852659 -0 0.6530715 2.852659 -0.002268731 0.6530715 2.852659 -0.07076883 0.6530715 2.852659 -0.1119241 0.6530715 2.852659 -0.1475052 0.6530715 2.852659 -0.1846606 0.6530715 2.852659 -0.2245119 0.6530715 2.852659 -0.2679612 0.6530715 2.852659 -0.3158431 0.6530715 2.852659 -0.3689944 0.6530715 2.852659 -0.4282948 0.6530715 2.852659 -0.494694 0.6530715 2.852659 -0.5692344 0.6530715 2.852659 -0.6530715 0.6530715 2.852659 -0.7474945 0.6530715 2.852659 -0.8539475 0.6530715 2.852659 -0.974052 0.6530715 2.852659 -1.113885 0.6530715 2.852659 -1.27456 0.6530715 2.852659 -1.458117 0.6530715 2.852659 -1.667858 0.6530715 2.852659 -1.907556 0.6530715 2.852659 -2.181521 0.6530715 2.852659 -2.494678 0.6530715 2.852659 -2.852659 0.6530715 2.852659 -3.261896 0.6530715 2.852659 -3.729748 0.6530715 2.852659 -4.264621 0.6530715 2.852659 -4.876131 0.6530715 2.852659 -5.575266 0.6530715 2.852659 -6.374593 0.6530715 2.852659 -0 0.7474945 2.852659 -0 0.7474945 2.852659 -0 0.7474945 2.852659 -0.002268731 0.7474945 2.852659 -0.07076883 0.7474945 2.852659 -0.1119241 0.7474945 2.852659 -0.1475052 0.7474945 2.852659 -0.1846606 0.7474945 2.852659 -0.2245119 0.7474945 2.852659 -0.2679612 0.7474945 2.852659 -0.3158431 0.7474945 2.852659 -0.3689944 0.7474945 2.852659 -0.4282948 0.7474945 2.852659 -0.494694 0.7474945 2.852659 -0.5692344 0.7474945 2.852659 -0.6530715 0.7474945 2.852659 -0.7474945 0.7474945 2.852659 -0.8539475 0.7474945 2.852659 -0.974052 0.7474945 2.852659 -1.113885 0.7474945 2.852659 -1.27456 0.7474945 2.852659 -1.458117 0.7474945 2.852659 -1.667858 0.7474945 2.852659 -1.907556 0.7474945 2.852659 -2.181521 0.7474945 2.852659 -2.494678 0.7474945 2.852659 -2.852659 0.7474945 2.852659 -3.261896 0.7474945 2.852659 -3.729748 0.7474945 2.852659 -4.264621 0.7474945 2.852659 -4.876131 0.7474945 2.852659 -5.575266 0.7474945 2.852659 -6.374593 0.7474945 2.852659 -0 0.8539475 2.852659 -0 0.8539475 2.852659 -0 0.8539475 2.852659 -0.002268731 0.8539475 2.852659 -0.07076883 0.8539475 2.852659 -0.1119241 0.8539475 2.852659 -0.1475052 0.8539475 2.852659 -0.1846606 0.8539475 2.852659 -0.2245119 0.8539475 2.852659 -0.2679612 0.8539475 2.852659 -0.3158431 0.8539475 2.852659 -0.3689944 0.8539475 2.852659 -0.4282948 0.8539475 2.852659 -0.494694 0.8539475 2.852659 -0.5692344 0.8539475 2.852659 -0.6530715 0.8539475 2.852659 -0.7474945 0.8539475 2.852659 -0.8539475 0.8539475 2.852659 -0.974052 0.8539475 2.852659 -1.113885 0.8539475 2.852659 -1.27456 0.8539475 2.852659 -1.458117 0.8539475 2.852659 -1.667858 0.8539475 2.852659 -1.907556 0.8539475 2.852659 -2.181521 0.8539475 2.852659 -2.494678 0.8539475 2.852659 -2.852659 0.8539475 2.852659 -3.261896 0.8539475 2.852659 -3.729748 0.8539475 2.852659 -4.264621 0.8539475 2.852659 -4.876131 0.8539475 2.852659 -5.575266 0.8539475 2.852659 -6.374593 0.8539475 2.852659 -0 0.974052 2.852659 -0 0.974052 2.852659 -0 0.974052 2.852659 -0.002268731 0.974052 2.852659 -0.07076883 0.974052 2.852659 -0.1119241 0.974052 2.852659 -0.1475052 0.974052 2.852659 -0.1846606 0.974052 2.852659 -0.2245119 0.974052 2.852659 -0.2679612 0.974052 2.852659 -0.3158431 0.974052 2.852659 -0.3689944 0.974052 2.852659 -0.4282948 0.974052 2.852659 -0.494694 0.974052 2.852659 -0.5692344 0.974052 2.852659 -0.6530715 0.974052 2.852659 -0.7474945 0.974052 2.852659 -0.8539475 0.974052 2.852659 -0.974052 0.974052 2.852659 -1.113885 0.974052 2.852659 -1.27456 0.974052 2.852659 -1.458117 0.974052 2.852659 -1.667858 0.974052 2.852659 -1.907556 0.974052 2.852659 -2.181521 0.974052 2.852659 -2.494678 0.974052 2.852659 -2.852659 0.974052 2.852659 -3.261896 0.974052 2.852659 -3.729748 0.974052 2.852659 -4.264621 0.974052 2.852659 -4.876131 0.974052 2.852659 -5.575266 0.974052 2.852659 -6.374593 0.974052 2.852659 -0 1.113885 2.852659 -0 1.113885 2.852659 -0 1.113885 2.852659 -0.002268731 1.113885 2.852659 -0.07076883 1.113885 2.852659 -0.1119241 1.113885 2.852659 -0.1475052 1.113885 2.852659 -0.1846606 1.113885 2.852659 -0.2245119 1.113885 2.852659 -0.2679612 1.113885 2.852659 -0.3158431 1.113885 2.852659 -0.3689944 1.113885 2.852659 -0.4282948 1.113885 2.852659 -0.494694 1.113885 2.852659 -0.5692344 1.113885 2.852659 -0.6530715 1.113885 2.852659 -0.7474945 1.113885 2.852659 -0.8539475 1.113885 2.852659 -0.974052 1.113885 2.852659 -1.113885 1.113885 2.852659 -1.27456 1.113885 2.852659 -1.458117 1.113885 2.852659 -1.667858 1.113885 2.852659 -1.907556 1.113885 2.852659 -2.181521 1.113885 2.852659 -2.494678 1.113885 2.852659 -2.852659 1.113885 2.852659 -3.261896 1.113885 2.852659 -3.729748 1.113885 2.852659 -4.264621 1.113885 2.852659 -4.876131 1.113885 2.852659 -5.575266 1.113885 2.852659 -6.374593 1.113885 2.852659 -0 1.27456 2.852659 -0 1.27456 2.852659 -0 1.27456 2.852659 -0.002268731 1.27456 2.852659 -0.07076883 1.27456 2.852659 -0.1119241 1.27456 2.852659 -0.1475052 1.27456 2.852659 -0.1846606 1.27456 2.852659 -0.2245119 1.27456 2.852659 -0.2679612 1.27456 2.852659 -0.3158431 1.27456 2.852659 -0.3689944 1.27456 2.852659 -0.4282948 1.27456 2.852659 -0.494694 1.27456 2.852659 -0.5692344 1.27456 2.852659 -0.6530715 1.27456 2.852659 -0.7474945 1.27456 2.852659 -0.8539475 1.27456 2.852659 -0.974052 1.27456 2.852659 -1.113885 1.27456 2.852659 -1.27456 1.27456 2.852659 -1.458117 1.27456 2.852659 -1.667858 1.27456 2.852659 -1.907556 1.27456 2.852659 -2.181521 1.27456 2.852659 -2.494678 1.27456 2.852659 -2.852659 1.27456 2.852659 -3.261896 1.27456 2.852659 -3.729748 1.27456 2.852659 -4.264621 1.27456 2.852659 -4.876131 1.27456 2.852659 -5.575266 1.27456 2.852659 -6.374593 1.27456 2.852659 -0 1.458117 2.852659 -0 1.458117 2.852659 -0 1.458117 2.852659 -0.002268731 1.458117 2.852659 -0.07076883 1.458117 2.852659 -0.1119241 1.458117 2.852659 -0.1475052 1.458117 2.852659 -0.1846606 1.458117 2.852659 -0.2245119 1.458117 2.852659 -0.2679612 1.458117 2.852659 -0.3158431 1.458117 2.852659 -0.3689944 1.458117 2.852659 -0.4282948 1.458117 2.852659 -0.494694 1.458117 2.852659 -0.5692344 1.458117 2.852659 -0.6530715 1.458117 2.852659 -0.7474945 1.458117 2.852659 -0.8539475 1.458117 2.852659 -0.974052 1.458117 2.852659 -1.113885 1.458117 2.852659 -1.27456 1.458117 2.852659 -1.458117 1.458117 2.852659 -1.667858 1.458117 2.852659 -1.907556 1.458117 2.852659 -2.181521 1.458117 2.852659 -2.494678 1.458117 2.852659 -2.852659 1.458117 2.852659 -3.261896 1.458117 2.852659 -3.729748 1.458117 2.852659 -4.264621 1.458117 2.852659 -4.876131 1.458117 2.852659 -5.575266 1.458117 2.852659 -6.374593 1.458117 2.852659 -0 1.667858 2.852659 -0 1.667858 2.852659 -0 1.667858 2.852659 -0.002268731 1.667858 2.852659 -0.07076883 1.667858 2.852659 -0.1119241 1.667858 2.852659 -0.1475052 1.667858 2.852659 -0.1846606 1.667858 2.852659 -0.2245119 1.667858 2.852659 -0.2679612 1.667858 2.852659 -0.3158431 1.667858 2.852659 -0.3689944 1.667858 2.852659 -0.4282948 1.667858 2.852659 -0.494694 1.667858 2.852659 -0.5692344 1.667858 2.852659 -0.6530715 1.667858 2.852659 -0.7474945 1.667858 2.852659 -0.8539475 1.667858 2.852659 -0.974052 1.667858 2.852659 -1.113885 1.667858 2.852659 -1.27456 1.667858 2.852659 -1.458117 1.667858 2.852659 -1.667858 1.667858 2.852659 -1.907556 1.667858 2.852659 -2.181521 1.667858 2.852659 -2.494678 1.667858 2.852659 -2.852659 1.667858 2.852659 -3.261896 1.667858 2.852659 -3.729748 1.667858 2.852659 -4.264621 1.667858 2.852659 -4.876131 1.667858 2.852659 -5.575266 1.667858 2.852659 -6.374593 1.667858 2.852659 -0 1.907556 2.852659 -0 1.907556 2.852659 -0 1.907556 2.852659 -0.002268731 1.907556 2.852659 -0.07076883 1.907556 2.852659 -0.1119241 1.907556 2.852659 -0.1475052 1.907556 2.852659 -0.1846606 1.907556 2.852659 -0.2245119 1.907556 2.852659 -0.2679612 1.907556 2.852659 -0.3158431 1.907556 2.852659 -0.3689944 1.907556 2.852659 -0.4282948 1.907556 2.852659 -0.494694 1.907556 2.852659 -0.5692344 1.907556 2.852659 -0.6530715 1.907556 2.852659 -0.7474945 1.907556 2.852659 -0.8539475 1.907556 2.852659 -0.974052 1.907556 2.852659 -1.113885 1.907556 2.852659 -1.27456 1.907556 2.852659 -1.458117 1.907556 2.852659 -1.667858 1.907556 2.852659 -1.907556 1.907556 2.852659 -2.181521 1.907556 2.852659 -2.494678 1.907556 2.852659 -2.852659 1.907556 2.852659 -3.261896 1.907556 2.852659 -3.729748 1.907556 2.852659 -4.264621 1.907556 2.852659 -4.876131 1.907556 2.852659 -5.575266 1.907556 2.852659 -6.374593 1.907556 2.852659 -0 2.181521 2.852659 -0 2.181521 2.852659 -0 2.181521 2.852659 -0.002268731 2.181521 2.852659 -0.07076883 2.181521 2.852659 -0.1119241 2.181521 2.852659 -0.1475052 2.181521 2.852659 -0.1846606 2.181521 2.852659 -0.2245119 2.181521 2.852659 -0.2679612 2.181521 2.852659 -0.3158431 2.181521 2.852659 -0.3689944 2.181521 2.852659 -0.4282948 2.181521 2.852659 -0.494694 2.181521 2.852659 -0.5692344 2.181521 2.852659 -0.6530715 2.181521 2.852659 -0.7474945 2.181521 2.852659 -0.8539475 2.181521 2.852659 -0.974052 2.181521 2.852659 -1.113885 2.181521 2.852659 -1.27456 2.181521 2.852659 -1.458117 2.181521 2.852659 -1.667858 2.181521 2.852659 -1.907556 2.181521 2.852659 -2.181521 2.181521 2.852659 -2.494678 2.181521 2.852659 -2.852659 2.181521 2.852659 -3.261896 2.181521 2.852659 -3.729748 2.181521 2.852659 -4.264621 2.181521 2.852659 -4.876131 2.181521 2.852659 -5.575266 2.181521 2.852659 -6.374593 2.181521 2.852659 -0 2.494678 2.852659 -0 2.494678 2.852659 -0 2.494678 2.852659 -0.002268731 2.494678 2.852659 -0.07076883 2.494678 2.852659 -0.1119241 2.494678 2.852659 -0.1475052 2.494678 2.852659 -0.1846606 2.494678 2.852659 -0.2245119 2.494678 2.852659 -0.2679612 2.494678 2.852659 -0.3158431 2.494678 2.852659 -0.3689944 2.494678 2.852659 -0.4282948 2.494678 2.852659 -0.494694 2.494678 2.852659 -0.5692344 2.494678 2.852659 -0.6530715 2.494678 2.852659 -0.7474945 2.494678 2.852659 -0.8539475 2.494678 2.852659 -0.974052 2.494678 2.852659 -1.113885 2.494678 2.852659 -1.27456 2.494678 2.852659 -1.458117 2.494678 2.852659 -1.667858 2.494678 2.852659 -1.907556 2.494678 2.852659 -2.181521 2.494678 2.852659 -2.494678 2.494678 2.852659 -2.852659 2.494678 2.852659 -3.261896 2.494678 2.852659 -3.729748 2.494678 2.852659 -4.264621 2.494678 2.852659 -4.876131 2.494678 2.852659 -5.575266 2.494678 2.852659 -6.374593 2.494678 2.852659 -0 2.852659 2.852659 -0 2.852659 2.852659 -0 2.852659 2.852659 -0.002268731 2.852659 2.852659 -0.07076883 2.852659 2.852659 -0.1119241 2.852659 2.852659 -0.1475052 2.852659 2.852659 -0.1846606 2.852659 2.852659 -0.2245119 2.852659 2.852659 -0.2679612 2.852659 2.852659 -0.3158431 2.852659 2.852659 -0.3689944 2.852659 2.852659 -0.4282948 2.852659 2.852659 -0.494694 2.852659 2.852659 -0.5692344 2.852659 2.852659 -0.6530715 2.852659 2.852659 -0.7474945 2.852659 2.852659 -0.8539475 2.852659 2.852659 -0.974052 2.852659 2.852659 -1.113885 2.852659 2.852659 -1.27456 2.852659 2.852659 -1.458117 2.852659 2.852659 -1.667858 2.852659 2.852659 -1.907556 2.852659 2.852659 -2.181521 2.852659 2.852659 -2.494678 2.852659 2.852659 -2.852659 2.852659 2.852659 -3.261896 2.852659 2.852659 -3.729748 2.852659 2.852659 -4.264621 2.852659 2.852659 -4.876131 2.852659 2.852659 -5.575266 2.852659 2.852659 -6.374593 2.852659 2.852659 -0 3.261896 2.852659 -0 3.261896 2.852659 -0 3.261896 2.852659 -0.002268731 3.261896 2.852659 -0.07076883 3.261896 2.852659 -0.1119241 3.261896 2.852659 -0.1475052 3.261896 2.852659 -0.1846606 3.261896 2.852659 -0.2245119 3.261896 2.852659 -0.2679612 3.261896 2.852659 -0.3158431 3.261896 2.852659 -0.3689944 3.261896 2.852659 -0.4282948 3.261896 2.852659 -0.494694 3.261896 2.852659 -0.5692344 3.261896 2.852659 -0.6530715 3.261896 2.852659 -0.7474945 3.261896 2.852659 -0.8539475 3.261896 2.852659 -0.974052 3.261896 2.852659 -1.113885 3.261896 2.852659 -1.27456 3.261896 2.852659 -1.458117 3.261896 2.852659 -1.667858 3.261896 2.852659 -1.907556 3.261896 2.852659 -2.181521 3.261896 2.852659 -2.494678 3.261896 2.852659 -2.852659 3.261896 2.852659 -3.261896 3.261896 2.852659 -3.729748 3.261896 2.852659 -4.264621 3.261896 2.852659 -4.876131 3.261896 2.852659 -5.575266 3.261896 2.852659 -6.374593 3.261896 2.852659 -0 3.729748 2.852659 -0 3.729748 2.852659 -0 3.729748 2.852659 -0.002268731 3.729748 2.852659 -0.07076883 3.729748 2.852659 -0.1119241 3.729748 2.852659 -0.1475052 3.729748 2.852659 -0.1846606 3.729748 2.852659 -0.2245119 3.729748 2.852659 -0.2679612 3.729748 2.852659 -0.3158431 3.729748 2.852659 -0.3689944 3.729748 2.852659 -0.4282948 3.729748 2.852659 -0.494694 3.729748 2.852659 -0.5692344 3.729748 2.852659 -0.6530715 3.729748 2.852659 -0.7474945 3.729748 2.852659 -0.8539475 3.729748 2.852659 -0.974052 3.729748 2.852659 -1.113885 3.729748 2.852659 -1.27456 3.729748 2.852659 -1.458117 3.729748 2.852659 -1.667858 3.729748 2.852659 -1.907556 3.729748 2.852659 -2.181521 3.729748 2.852659 -2.494678 3.729748 2.852659 -2.852659 3.729748 2.852659 -3.261896 3.729748 2.852659 -3.729748 3.729748 2.852659 -4.264621 3.729748 2.852659 -4.876131 3.729748 2.852659 -5.575266 3.729748 2.852659 -6.374593 3.729748 2.852659 -0 4.264621 2.852659 -0 4.264621 2.852659 -0 4.264621 2.852659 -0.002268731 4.264621 2.852659 -0.07076883 4.264621 2.852659 -0.1119241 4.264621 2.852659 -0.1475052 4.264621 2.852659 -0.1846606 4.264621 2.852659 -0.2245119 4.264621 2.852659 -0.2679612 4.264621 2.852659 -0.3158431 4.264621 2.852659 -0.3689944 4.264621 2.852659 -0.4282948 4.264621 2.852659 -0.494694 4.264621 2.852659 -0.5692344 4.264621 2.852659 -0.6530715 4.264621 2.852659 -0.7474945 4.264621 2.852659 -0.8539475 4.264621 2.852659 -0.974052 4.264621 2.852659 -1.113885 4.264621 2.852659 -1.27456 4.264621 2.852659 -1.458117 4.264621 2.852659 -1.667858 4.264621 2.852659 -1.907556 4.264621 2.852659 -2.181521 4.264621 2.852659 -2.494678 4.264621 2.852659 -2.852659 4.264621 2.852659 -3.261896 4.264621 2.852659 -3.729748 4.264621 2.852659 -4.264621 4.264621 2.852659 -4.876131 4.264621 2.852659 -5.575266 4.264621 2.852659 -6.374593 4.264621 2.852659 -0 4.876131 2.852659 -0 4.876131 2.852659 -0 4.876131 2.852659 -0.002268731 4.876131 2.852659 -0.07076883 4.876131 2.852659 -0.1119241 4.876131 2.852659 -0.1475052 4.876131 2.852659 -0.1846606 4.876131 2.852659 -0.2245119 4.876131 2.852659 -0.2679612 4.876131 2.852659 -0.3158431 4.876131 2.852659 -0.3689944 4.876131 2.852659 -0.4282948 4.876131 2.852659 -0.494694 4.876131 2.852659 -0.5692344 4.876131 2.852659 -0.6530715 4.876131 2.852659 -0.7474945 4.876131 2.852659 -0.8539475 4.876131 2.852659 -0.974052 4.876131 2.852659 -1.113885 4.876131 2.852659 -1.27456 4.876131 2.852659 -1.458117 4.876131 2.852659 -1.667858 4.876131 2.852659 -1.907556 4.876131 2.852659 -2.181521 4.876131 2.852659 -2.494678 4.876131 2.852659 -2.852659 4.876131 2.852659 -3.261896 4.876131 2.852659 -3.729748 4.876131 2.852659 -4.264621 4.876131 2.852659 -4.876131 4.876131 2.852659 -5.575266 4.876131 2.852659 -6.374593 4.876131 2.852659 -0 5.575266 2.852659 -0 5.575266 2.852659 -0 5.575266 2.852659 -0.002268731 5.575266 2.852659 -0.07076883 5.575266 2.852659 -0.1119241 5.575266 2.852659 -0.1475052 5.575266 2.852659 -0.1846606 5.575266 2.852659 -0.2245119 5.575266 2.852659 -0.2679612 5.575266 2.852659 -0.3158431 5.575266 2.852659 -0.3689944 5.575266 2.852659 -0.4282948 5.575266 2.852659 -0.494694 5.575266 2.852659 -0.5692344 5.575266 2.852659 -0.6530715 5.575266 2.852659 -0.7474945 5.575266 2.852659 -0.8539475 5.575266 2.852659 -0.974052 5.575266 2.852659 -1.113885 5.575266 2.852659 -1.27456 5.575266 2.852659 -1.458117 5.575266 2.852659 -1.667858 5.575266 2.852659 -1.907556 5.575266 2.852659 -2.181521 5.575266 2.852659 -2.494678 5.575266 2.852659 -2.852659 5.575266 2.852659 -3.261896 5.575266 2.852659 -3.729748 5.575266 2.852659 -4.264621 5.575266 2.852659 -4.876131 5.575266 2.852659 -5.575266 5.575266 2.852659 -6.374593 5.575266 2.852659 -0 6.374593 2.852659 -0 6.374593 2.852659 -0 6.374593 2.852659 -0.002268731 6.374593 2.852659 -0.07076883 6.374593 2.852659 -0.1119241 6.374593 2.852659 -0.1475052 6.374593 2.852659 -0.1846606 6.374593 2.852659 -0.2245119 6.374593 2.852659 -0.2679612 6.374593 2.852659 -0.3158431 6.374593 2.852659 -0.3689944 6.374593 2.852659 -0.4282948 6.374593 2.852659 -0.494694 6.374593 2.852659 -0.5692344 6.374593 2.852659 -0.6530715 6.374593 2.852659 -0.7474945 6.374593 2.852659 -0.8539475 6.374593 2.852659 -0.974052 6.374593 2.852659 -1.113885 6.374593 2.852659 -1.27456 6.374593 2.852659 -1.458117 6.374593 2.852659 -1.667858 6.374593 2.852659 -1.907556 6.374593 2.852659 -2.181521 6.374593 2.852659 -2.494678 6.374593 2.852659 -2.852659 6.374593 2.852659 -3.261896 6.374593 2.852659 -3.729748 6.374593 2.852659 -4.264621 6.374593 2.852659 -4.876131 6.374593 2.852659 -5.575266 6.374593 2.852659 -6.374593 6.374593 2.852659 -0 0 3.261896 -0 0 3.261896 -0 0 3.261896 -0.002268731 0 3.261896 -0.07076883 0 3.261896 -0.1119241 0 3.261896 -0.1475052 0 3.261896 -0.1846606 0 3.261896 -0.2245119 0 3.261896 -0.2679612 0 3.261896 -0.3158431 0 3.261896 -0.3689944 0 3.261896 -0.4282948 0 3.261896 -0.494694 0 3.261896 -0.5692344 0 3.261896 -0.6530715 0 3.261896 -0.7474945 0 3.261896 -0.8539475 0 3.261896 -0.974052 0 3.261896 -1.113885 0 3.261896 -1.27456 0 3.261896 -1.458117 0 3.261896 -1.667858 0 3.261896 -1.907556 0 3.261896 -2.181521 0 3.261896 -2.494678 0 3.261896 -2.852659 0 3.261896 -3.261896 0 3.261896 -3.729748 0 3.261896 -4.264621 0 3.261896 -4.876131 0 3.261896 -5.575266 0 3.261896 -6.374593 0 3.261896 -0 0 3.261896 -0 0 3.261896 -0 0 3.261896 -0.002268731 0 3.261896 -0.07076883 0 3.261896 -0.1119241 0 3.261896 -0.1475052 0 3.261896 -0.1846606 0 3.261896 -0.2245119 0 3.261896 -0.2679612 0 3.261896 -0.3158431 0 3.261896 -0.3689944 0 3.261896 -0.4282948 0 3.261896 -0.494694 0 3.261896 -0.5692344 0 3.261896 -0.6530715 0 3.261896 -0.7474945 0 3.261896 -0.8539475 0 3.261896 -0.974052 0 3.261896 -1.113885 0 3.261896 -1.27456 0 3.261896 -1.458117 0 3.261896 -1.667858 0 3.261896 -1.907556 0 3.261896 -2.181521 0 3.261896 -2.494678 0 3.261896 -2.852659 0 3.261896 -3.261896 0 3.261896 -3.729748 0 3.261896 -4.264621 0 3.261896 -4.876131 0 3.261896 -5.575266 0 3.261896 -6.374593 0 3.261896 -0 0 3.261896 -0 0 3.261896 -0 0 3.261896 -0.002268731 0 3.261896 -0.07076883 0 3.261896 -0.1119241 0 3.261896 -0.1475052 0 3.261896 -0.1846606 0 3.261896 -0.2245119 0 3.261896 -0.2679612 0 3.261896 -0.3158431 0 3.261896 -0.3689944 0 3.261896 -0.4282948 0 3.261896 -0.494694 0 3.261896 -0.5692344 0 3.261896 -0.6530715 0 3.261896 -0.7474945 0 3.261896 -0.8539475 0 3.261896 -0.974052 0 3.261896 -1.113885 0 3.261896 -1.27456 0 3.261896 -1.458117 0 3.261896 -1.667858 0 3.261896 -1.907556 0 3.261896 -2.181521 0 3.261896 -2.494678 0 3.261896 -2.852659 0 3.261896 -3.261896 0 3.261896 -3.729748 0 3.261896 -4.264621 0 3.261896 -4.876131 0 3.261896 -5.575266 0 3.261896 -6.374593 0 3.261896 -0 0.002268731 3.261896 -0 0.002268731 3.261896 -0 0.002268731 3.261896 -0.002268731 0.002268731 3.261896 -0.07076883 0.002268731 3.261896 -0.1119241 0.002268731 3.261896 -0.1475052 0.002268731 3.261896 -0.1846606 0.002268731 3.261896 -0.2245119 0.002268731 3.261896 -0.2679612 0.002268731 3.261896 -0.3158431 0.002268731 3.261896 -0.3689944 0.002268731 3.261896 -0.4282948 0.002268731 3.261896 -0.494694 0.002268731 3.261896 -0.5692344 0.002268731 3.261896 -0.6530715 0.002268731 3.261896 -0.7474945 0.002268731 3.261896 -0.8539475 0.002268731 3.261896 -0.974052 0.002268731 3.261896 -1.113885 0.002268731 3.261896 -1.27456 0.002268731 3.261896 -1.458117 0.002268731 3.261896 -1.667858 0.002268731 3.261896 -1.907556 0.002268731 3.261896 -2.181521 0.002268731 3.261896 -2.494678 0.002268731 3.261896 -2.852659 0.002268731 3.261896 -3.261896 0.002268731 3.261896 -3.729748 0.002268731 3.261896 -4.264621 0.002268731 3.261896 -4.876131 0.002268731 3.261896 -5.575266 0.002268731 3.261896 -6.374593 0.002268731 3.261896 -0 0.07076883 3.261896 -0 0.07076883 3.261896 -0 0.07076883 3.261896 -0.002268731 0.07076883 3.261896 -0.07076883 0.07076883 3.261896 -0.1119241 0.07076883 3.261896 -0.1475052 0.07076883 3.261896 -0.1846606 0.07076883 3.261896 -0.2245119 0.07076883 3.261896 -0.2679612 0.07076883 3.261896 -0.3158431 0.07076883 3.261896 -0.3689944 0.07076883 3.261896 -0.4282948 0.07076883 3.261896 -0.494694 0.07076883 3.261896 -0.5692344 0.07076883 3.261896 -0.6530715 0.07076883 3.261896 -0.7474945 0.07076883 3.261896 -0.8539475 0.07076883 3.261896 -0.974052 0.07076883 3.261896 -1.113885 0.07076883 3.261896 -1.27456 0.07076883 3.261896 -1.458117 0.07076883 3.261896 -1.667858 0.07076883 3.261896 -1.907556 0.07076883 3.261896 -2.181521 0.07076883 3.261896 -2.494678 0.07076883 3.261896 -2.852659 0.07076883 3.261896 -3.261896 0.07076883 3.261896 -3.729748 0.07076883 3.261896 -4.264621 0.07076883 3.261896 -4.876131 0.07076883 3.261896 -5.575266 0.07076883 3.261896 -6.374593 0.07076883 3.261896 -0 0.1119241 3.261896 -0 0.1119241 3.261896 -0 0.1119241 3.261896 -0.002268731 0.1119241 3.261896 -0.07076883 0.1119241 3.261896 -0.1119241 0.1119241 3.261896 -0.1475052 0.1119241 3.261896 -0.1846606 0.1119241 3.261896 -0.2245119 0.1119241 3.261896 -0.2679612 0.1119241 3.261896 -0.3158431 0.1119241 3.261896 -0.3689944 0.1119241 3.261896 -0.4282948 0.1119241 3.261896 -0.494694 0.1119241 3.261896 -0.5692344 0.1119241 3.261896 -0.6530715 0.1119241 3.261896 -0.7474945 0.1119241 3.261896 -0.8539475 0.1119241 3.261896 -0.974052 0.1119241 3.261896 -1.113885 0.1119241 3.261896 -1.27456 0.1119241 3.261896 -1.458117 0.1119241 3.261896 -1.667858 0.1119241 3.261896 -1.907556 0.1119241 3.261896 -2.181521 0.1119241 3.261896 -2.494678 0.1119241 3.261896 -2.852659 0.1119241 3.261896 -3.261896 0.1119241 3.261896 -3.729748 0.1119241 3.261896 -4.264621 0.1119241 3.261896 -4.876131 0.1119241 3.261896 -5.575266 0.1119241 3.261896 -6.374593 0.1119241 3.261896 -0 0.1475052 3.261896 -0 0.1475052 3.261896 -0 0.1475052 3.261896 -0.002268731 0.1475052 3.261896 -0.07076883 0.1475052 3.261896 -0.1119241 0.1475052 3.261896 -0.1475052 0.1475052 3.261896 -0.1846606 0.1475052 3.261896 -0.2245119 0.1475052 3.261896 -0.2679612 0.1475052 3.261896 -0.3158431 0.1475052 3.261896 -0.3689944 0.1475052 3.261896 -0.4282948 0.1475052 3.261896 -0.494694 0.1475052 3.261896 -0.5692344 0.1475052 3.261896 -0.6530715 0.1475052 3.261896 -0.7474945 0.1475052 3.261896 -0.8539475 0.1475052 3.261896 -0.974052 0.1475052 3.261896 -1.113885 0.1475052 3.261896 -1.27456 0.1475052 3.261896 -1.458117 0.1475052 3.261896 -1.667858 0.1475052 3.261896 -1.907556 0.1475052 3.261896 -2.181521 0.1475052 3.261896 -2.494678 0.1475052 3.261896 -2.852659 0.1475052 3.261896 -3.261896 0.1475052 3.261896 -3.729748 0.1475052 3.261896 -4.264621 0.1475052 3.261896 -4.876131 0.1475052 3.261896 -5.575266 0.1475052 3.261896 -6.374593 0.1475052 3.261896 -0 0.1846606 3.261896 -0 0.1846606 3.261896 -0 0.1846606 3.261896 -0.002268731 0.1846606 3.261896 -0.07076883 0.1846606 3.261896 -0.1119241 0.1846606 3.261896 -0.1475052 0.1846606 3.261896 -0.1846606 0.1846606 3.261896 -0.2245119 0.1846606 3.261896 -0.2679612 0.1846606 3.261896 -0.3158431 0.1846606 3.261896 -0.3689944 0.1846606 3.261896 -0.4282948 0.1846606 3.261896 -0.494694 0.1846606 3.261896 -0.5692344 0.1846606 3.261896 -0.6530715 0.1846606 3.261896 -0.7474945 0.1846606 3.261896 -0.8539475 0.1846606 3.261896 -0.974052 0.1846606 3.261896 -1.113885 0.1846606 3.261896 -1.27456 0.1846606 3.261896 -1.458117 0.1846606 3.261896 -1.667858 0.1846606 3.261896 -1.907556 0.1846606 3.261896 -2.181521 0.1846606 3.261896 -2.494678 0.1846606 3.261896 -2.852659 0.1846606 3.261896 -3.261896 0.1846606 3.261896 -3.729748 0.1846606 3.261896 -4.264621 0.1846606 3.261896 -4.876131 0.1846606 3.261896 -5.575266 0.1846606 3.261896 -6.374593 0.1846606 3.261896 -0 0.2245119 3.261896 -0 0.2245119 3.261896 -0 0.2245119 3.261896 -0.002268731 0.2245119 3.261896 -0.07076883 0.2245119 3.261896 -0.1119241 0.2245119 3.261896 -0.1475052 0.2245119 3.261896 -0.1846606 0.2245119 3.261896 -0.2245119 0.2245119 3.261896 -0.2679612 0.2245119 3.261896 -0.3158431 0.2245119 3.261896 -0.3689944 0.2245119 3.261896 -0.4282948 0.2245119 3.261896 -0.494694 0.2245119 3.261896 -0.5692344 0.2245119 3.261896 -0.6530715 0.2245119 3.261896 -0.7474945 0.2245119 3.261896 -0.8539475 0.2245119 3.261896 -0.974052 0.2245119 3.261896 -1.113885 0.2245119 3.261896 -1.27456 0.2245119 3.261896 -1.458117 0.2245119 3.261896 -1.667858 0.2245119 3.261896 -1.907556 0.2245119 3.261896 -2.181521 0.2245119 3.261896 -2.494678 0.2245119 3.261896 -2.852659 0.2245119 3.261896 -3.261896 0.2245119 3.261896 -3.729748 0.2245119 3.261896 -4.264621 0.2245119 3.261896 -4.876131 0.2245119 3.261896 -5.575266 0.2245119 3.261896 -6.374593 0.2245119 3.261896 -0 0.2679612 3.261896 -0 0.2679612 3.261896 -0 0.2679612 3.261896 -0.002268731 0.2679612 3.261896 -0.07076883 0.2679612 3.261896 -0.1119241 0.2679612 3.261896 -0.1475052 0.2679612 3.261896 -0.1846606 0.2679612 3.261896 -0.2245119 0.2679612 3.261896 -0.2679612 0.2679612 3.261896 -0.3158431 0.2679612 3.261896 -0.3689944 0.2679612 3.261896 -0.4282948 0.2679612 3.261896 -0.494694 0.2679612 3.261896 -0.5692344 0.2679612 3.261896 -0.6530715 0.2679612 3.261896 -0.7474945 0.2679612 3.261896 -0.8539475 0.2679612 3.261896 -0.974052 0.2679612 3.261896 -1.113885 0.2679612 3.261896 -1.27456 0.2679612 3.261896 -1.458117 0.2679612 3.261896 -1.667858 0.2679612 3.261896 -1.907556 0.2679612 3.261896 -2.181521 0.2679612 3.261896 -2.494678 0.2679612 3.261896 -2.852659 0.2679612 3.261896 -3.261896 0.2679612 3.261896 -3.729748 0.2679612 3.261896 -4.264621 0.2679612 3.261896 -4.876131 0.2679612 3.261896 -5.575266 0.2679612 3.261896 -6.374593 0.2679612 3.261896 -0 0.3158431 3.261896 -0 0.3158431 3.261896 -0 0.3158431 3.261896 -0.002268731 0.3158431 3.261896 -0.07076883 0.3158431 3.261896 -0.1119241 0.3158431 3.261896 -0.1475052 0.3158431 3.261896 -0.1846606 0.3158431 3.261896 -0.2245119 0.3158431 3.261896 -0.2679612 0.3158431 3.261896 -0.3158431 0.3158431 3.261896 -0.3689944 0.3158431 3.261896 -0.4282948 0.3158431 3.261896 -0.494694 0.3158431 3.261896 -0.5692344 0.3158431 3.261896 -0.6530715 0.3158431 3.261896 -0.7474945 0.3158431 3.261896 -0.8539475 0.3158431 3.261896 -0.974052 0.3158431 3.261896 -1.113885 0.3158431 3.261896 -1.27456 0.3158431 3.261896 -1.458117 0.3158431 3.261896 -1.667858 0.3158431 3.261896 -1.907556 0.3158431 3.261896 -2.181521 0.3158431 3.261896 -2.494678 0.3158431 3.261896 -2.852659 0.3158431 3.261896 -3.261896 0.3158431 3.261896 -3.729748 0.3158431 3.261896 -4.264621 0.3158431 3.261896 -4.876131 0.3158431 3.261896 -5.575266 0.3158431 3.261896 -6.374593 0.3158431 3.261896 -0 0.3689944 3.261896 -0 0.3689944 3.261896 -0 0.3689944 3.261896 -0.002268731 0.3689944 3.261896 -0.07076883 0.3689944 3.261896 -0.1119241 0.3689944 3.261896 -0.1475052 0.3689944 3.261896 -0.1846606 0.3689944 3.261896 -0.2245119 0.3689944 3.261896 -0.2679612 0.3689944 3.261896 -0.3158431 0.3689944 3.261896 -0.3689944 0.3689944 3.261896 -0.4282948 0.3689944 3.261896 -0.494694 0.3689944 3.261896 -0.5692344 0.3689944 3.261896 -0.6530715 0.3689944 3.261896 -0.7474945 0.3689944 3.261896 -0.8539475 0.3689944 3.261896 -0.974052 0.3689944 3.261896 -1.113885 0.3689944 3.261896 -1.27456 0.3689944 3.261896 -1.458117 0.3689944 3.261896 -1.667858 0.3689944 3.261896 -1.907556 0.3689944 3.261896 -2.181521 0.3689944 3.261896 -2.494678 0.3689944 3.261896 -2.852659 0.3689944 3.261896 -3.261896 0.3689944 3.261896 -3.729748 0.3689944 3.261896 -4.264621 0.3689944 3.261896 -4.876131 0.3689944 3.261896 -5.575266 0.3689944 3.261896 -6.374593 0.3689944 3.261896 -0 0.4282948 3.261896 -0 0.4282948 3.261896 -0 0.4282948 3.261896 -0.002268731 0.4282948 3.261896 -0.07076883 0.4282948 3.261896 -0.1119241 0.4282948 3.261896 -0.1475052 0.4282948 3.261896 -0.1846606 0.4282948 3.261896 -0.2245119 0.4282948 3.261896 -0.2679612 0.4282948 3.261896 -0.3158431 0.4282948 3.261896 -0.3689944 0.4282948 3.261896 -0.4282948 0.4282948 3.261896 -0.494694 0.4282948 3.261896 -0.5692344 0.4282948 3.261896 -0.6530715 0.4282948 3.261896 -0.7474945 0.4282948 3.261896 -0.8539475 0.4282948 3.261896 -0.974052 0.4282948 3.261896 -1.113885 0.4282948 3.261896 -1.27456 0.4282948 3.261896 -1.458117 0.4282948 3.261896 -1.667858 0.4282948 3.261896 -1.907556 0.4282948 3.261896 -2.181521 0.4282948 3.261896 -2.494678 0.4282948 3.261896 -2.852659 0.4282948 3.261896 -3.261896 0.4282948 3.261896 -3.729748 0.4282948 3.261896 -4.264621 0.4282948 3.261896 -4.876131 0.4282948 3.261896 -5.575266 0.4282948 3.261896 -6.374593 0.4282948 3.261896 -0 0.494694 3.261896 -0 0.494694 3.261896 -0 0.494694 3.261896 -0.002268731 0.494694 3.261896 -0.07076883 0.494694 3.261896 -0.1119241 0.494694 3.261896 -0.1475052 0.494694 3.261896 -0.1846606 0.494694 3.261896 -0.2245119 0.494694 3.261896 -0.2679612 0.494694 3.261896 -0.3158431 0.494694 3.261896 -0.3689944 0.494694 3.261896 -0.4282948 0.494694 3.261896 -0.494694 0.494694 3.261896 -0.5692344 0.494694 3.261896 -0.6530715 0.494694 3.261896 -0.7474945 0.494694 3.261896 -0.8539475 0.494694 3.261896 -0.974052 0.494694 3.261896 -1.113885 0.494694 3.261896 -1.27456 0.494694 3.261896 -1.458117 0.494694 3.261896 -1.667858 0.494694 3.261896 -1.907556 0.494694 3.261896 -2.181521 0.494694 3.261896 -2.494678 0.494694 3.261896 -2.852659 0.494694 3.261896 -3.261896 0.494694 3.261896 -3.729748 0.494694 3.261896 -4.264621 0.494694 3.261896 -4.876131 0.494694 3.261896 -5.575266 0.494694 3.261896 -6.374593 0.494694 3.261896 -0 0.5692344 3.261896 -0 0.5692344 3.261896 -0 0.5692344 3.261896 -0.002268731 0.5692344 3.261896 -0.07076883 0.5692344 3.261896 -0.1119241 0.5692344 3.261896 -0.1475052 0.5692344 3.261896 -0.1846606 0.5692344 3.261896 -0.2245119 0.5692344 3.261896 -0.2679612 0.5692344 3.261896 -0.3158431 0.5692344 3.261896 -0.3689944 0.5692344 3.261896 -0.4282948 0.5692344 3.261896 -0.494694 0.5692344 3.261896 -0.5692344 0.5692344 3.261896 -0.6530715 0.5692344 3.261896 -0.7474945 0.5692344 3.261896 -0.8539475 0.5692344 3.261896 -0.974052 0.5692344 3.261896 -1.113885 0.5692344 3.261896 -1.27456 0.5692344 3.261896 -1.458117 0.5692344 3.261896 -1.667858 0.5692344 3.261896 -1.907556 0.5692344 3.261896 -2.181521 0.5692344 3.261896 -2.494678 0.5692344 3.261896 -2.852659 0.5692344 3.261896 -3.261896 0.5692344 3.261896 -3.729748 0.5692344 3.261896 -4.264621 0.5692344 3.261896 -4.876131 0.5692344 3.261896 -5.575266 0.5692344 3.261896 -6.374593 0.5692344 3.261896 -0 0.6530715 3.261896 -0 0.6530715 3.261896 -0 0.6530715 3.261896 -0.002268731 0.6530715 3.261896 -0.07076883 0.6530715 3.261896 -0.1119241 0.6530715 3.261896 -0.1475052 0.6530715 3.261896 -0.1846606 0.6530715 3.261896 -0.2245119 0.6530715 3.261896 -0.2679612 0.6530715 3.261896 -0.3158431 0.6530715 3.261896 -0.3689944 0.6530715 3.261896 -0.4282948 0.6530715 3.261896 -0.494694 0.6530715 3.261896 -0.5692344 0.6530715 3.261896 -0.6530715 0.6530715 3.261896 -0.7474945 0.6530715 3.261896 -0.8539475 0.6530715 3.261896 -0.974052 0.6530715 3.261896 -1.113885 0.6530715 3.261896 -1.27456 0.6530715 3.261896 -1.458117 0.6530715 3.261896 -1.667858 0.6530715 3.261896 -1.907556 0.6530715 3.261896 -2.181521 0.6530715 3.261896 -2.494678 0.6530715 3.261896 -2.852659 0.6530715 3.261896 -3.261896 0.6530715 3.261896 -3.729748 0.6530715 3.261896 -4.264621 0.6530715 3.261896 -4.876131 0.6530715 3.261896 -5.575266 0.6530715 3.261896 -6.374593 0.6530715 3.261896 -0 0.7474945 3.261896 -0 0.7474945 3.261896 -0 0.7474945 3.261896 -0.002268731 0.7474945 3.261896 -0.07076883 0.7474945 3.261896 -0.1119241 0.7474945 3.261896 -0.1475052 0.7474945 3.261896 -0.1846606 0.7474945 3.261896 -0.2245119 0.7474945 3.261896 -0.2679612 0.7474945 3.261896 -0.3158431 0.7474945 3.261896 -0.3689944 0.7474945 3.261896 -0.4282948 0.7474945 3.261896 -0.494694 0.7474945 3.261896 -0.5692344 0.7474945 3.261896 -0.6530715 0.7474945 3.261896 -0.7474945 0.7474945 3.261896 -0.8539475 0.7474945 3.261896 -0.974052 0.7474945 3.261896 -1.113885 0.7474945 3.261896 -1.27456 0.7474945 3.261896 -1.458117 0.7474945 3.261896 -1.667858 0.7474945 3.261896 -1.907556 0.7474945 3.261896 -2.181521 0.7474945 3.261896 -2.494678 0.7474945 3.261896 -2.852659 0.7474945 3.261896 -3.261896 0.7474945 3.261896 -3.729748 0.7474945 3.261896 -4.264621 0.7474945 3.261896 -4.876131 0.7474945 3.261896 -5.575266 0.7474945 3.261896 -6.374593 0.7474945 3.261896 -0 0.8539475 3.261896 -0 0.8539475 3.261896 -0 0.8539475 3.261896 -0.002268731 0.8539475 3.261896 -0.07076883 0.8539475 3.261896 -0.1119241 0.8539475 3.261896 -0.1475052 0.8539475 3.261896 -0.1846606 0.8539475 3.261896 -0.2245119 0.8539475 3.261896 -0.2679612 0.8539475 3.261896 -0.3158431 0.8539475 3.261896 -0.3689944 0.8539475 3.261896 -0.4282948 0.8539475 3.261896 -0.494694 0.8539475 3.261896 -0.5692344 0.8539475 3.261896 -0.6530715 0.8539475 3.261896 -0.7474945 0.8539475 3.261896 -0.8539475 0.8539475 3.261896 -0.974052 0.8539475 3.261896 -1.113885 0.8539475 3.261896 -1.27456 0.8539475 3.261896 -1.458117 0.8539475 3.261896 -1.667858 0.8539475 3.261896 -1.907556 0.8539475 3.261896 -2.181521 0.8539475 3.261896 -2.494678 0.8539475 3.261896 -2.852659 0.8539475 3.261896 -3.261896 0.8539475 3.261896 -3.729748 0.8539475 3.261896 -4.264621 0.8539475 3.261896 -4.876131 0.8539475 3.261896 -5.575266 0.8539475 3.261896 -6.374593 0.8539475 3.261896 -0 0.974052 3.261896 -0 0.974052 3.261896 -0 0.974052 3.261896 -0.002268731 0.974052 3.261896 -0.07076883 0.974052 3.261896 -0.1119241 0.974052 3.261896 -0.1475052 0.974052 3.261896 -0.1846606 0.974052 3.261896 -0.2245119 0.974052 3.261896 -0.2679612 0.974052 3.261896 -0.3158431 0.974052 3.261896 -0.3689944 0.974052 3.261896 -0.4282948 0.974052 3.261896 -0.494694 0.974052 3.261896 -0.5692344 0.974052 3.261896 -0.6530715 0.974052 3.261896 -0.7474945 0.974052 3.261896 -0.8539475 0.974052 3.261896 -0.974052 0.974052 3.261896 -1.113885 0.974052 3.261896 -1.27456 0.974052 3.261896 -1.458117 0.974052 3.261896 -1.667858 0.974052 3.261896 -1.907556 0.974052 3.261896 -2.181521 0.974052 3.261896 -2.494678 0.974052 3.261896 -2.852659 0.974052 3.261896 -3.261896 0.974052 3.261896 -3.729748 0.974052 3.261896 -4.264621 0.974052 3.261896 -4.876131 0.974052 3.261896 -5.575266 0.974052 3.261896 -6.374593 0.974052 3.261896 -0 1.113885 3.261896 -0 1.113885 3.261896 -0 1.113885 3.261896 -0.002268731 1.113885 3.261896 -0.07076883 1.113885 3.261896 -0.1119241 1.113885 3.261896 -0.1475052 1.113885 3.261896 -0.1846606 1.113885 3.261896 -0.2245119 1.113885 3.261896 -0.2679612 1.113885 3.261896 -0.3158431 1.113885 3.261896 -0.3689944 1.113885 3.261896 -0.4282948 1.113885 3.261896 -0.494694 1.113885 3.261896 -0.5692344 1.113885 3.261896 -0.6530715 1.113885 3.261896 -0.7474945 1.113885 3.261896 -0.8539475 1.113885 3.261896 -0.974052 1.113885 3.261896 -1.113885 1.113885 3.261896 -1.27456 1.113885 3.261896 -1.458117 1.113885 3.261896 -1.667858 1.113885 3.261896 -1.907556 1.113885 3.261896 -2.181521 1.113885 3.261896 -2.494678 1.113885 3.261896 -2.852659 1.113885 3.261896 -3.261896 1.113885 3.261896 -3.729748 1.113885 3.261896 -4.264621 1.113885 3.261896 -4.876131 1.113885 3.261896 -5.575266 1.113885 3.261896 -6.374593 1.113885 3.261896 -0 1.27456 3.261896 -0 1.27456 3.261896 -0 1.27456 3.261896 -0.002268731 1.27456 3.261896 -0.07076883 1.27456 3.261896 -0.1119241 1.27456 3.261896 -0.1475052 1.27456 3.261896 -0.1846606 1.27456 3.261896 -0.2245119 1.27456 3.261896 -0.2679612 1.27456 3.261896 -0.3158431 1.27456 3.261896 -0.3689944 1.27456 3.261896 -0.4282948 1.27456 3.261896 -0.494694 1.27456 3.261896 -0.5692344 1.27456 3.261896 -0.6530715 1.27456 3.261896 -0.7474945 1.27456 3.261896 -0.8539475 1.27456 3.261896 -0.974052 1.27456 3.261896 -1.113885 1.27456 3.261896 -1.27456 1.27456 3.261896 -1.458117 1.27456 3.261896 -1.667858 1.27456 3.261896 -1.907556 1.27456 3.261896 -2.181521 1.27456 3.261896 -2.494678 1.27456 3.261896 -2.852659 1.27456 3.261896 -3.261896 1.27456 3.261896 -3.729748 1.27456 3.261896 -4.264621 1.27456 3.261896 -4.876131 1.27456 3.261896 -5.575266 1.27456 3.261896 -6.374593 1.27456 3.261896 -0 1.458117 3.261896 -0 1.458117 3.261896 -0 1.458117 3.261896 -0.002268731 1.458117 3.261896 -0.07076883 1.458117 3.261896 -0.1119241 1.458117 3.261896 -0.1475052 1.458117 3.261896 -0.1846606 1.458117 3.261896 -0.2245119 1.458117 3.261896 -0.2679612 1.458117 3.261896 -0.3158431 1.458117 3.261896 -0.3689944 1.458117 3.261896 -0.4282948 1.458117 3.261896 -0.494694 1.458117 3.261896 -0.5692344 1.458117 3.261896 -0.6530715 1.458117 3.261896 -0.7474945 1.458117 3.261896 -0.8539475 1.458117 3.261896 -0.974052 1.458117 3.261896 -1.113885 1.458117 3.261896 -1.27456 1.458117 3.261896 -1.458117 1.458117 3.261896 -1.667858 1.458117 3.261896 -1.907556 1.458117 3.261896 -2.181521 1.458117 3.261896 -2.494678 1.458117 3.261896 -2.852659 1.458117 3.261896 -3.261896 1.458117 3.261896 -3.729748 1.458117 3.261896 -4.264621 1.458117 3.261896 -4.876131 1.458117 3.261896 -5.575266 1.458117 3.261896 -6.374593 1.458117 3.261896 -0 1.667858 3.261896 -0 1.667858 3.261896 -0 1.667858 3.261896 -0.002268731 1.667858 3.261896 -0.07076883 1.667858 3.261896 -0.1119241 1.667858 3.261896 -0.1475052 1.667858 3.261896 -0.1846606 1.667858 3.261896 -0.2245119 1.667858 3.261896 -0.2679612 1.667858 3.261896 -0.3158431 1.667858 3.261896 -0.3689944 1.667858 3.261896 -0.4282948 1.667858 3.261896 -0.494694 1.667858 3.261896 -0.5692344 1.667858 3.261896 -0.6530715 1.667858 3.261896 -0.7474945 1.667858 3.261896 -0.8539475 1.667858 3.261896 -0.974052 1.667858 3.261896 -1.113885 1.667858 3.261896 -1.27456 1.667858 3.261896 -1.458117 1.667858 3.261896 -1.667858 1.667858 3.261896 -1.907556 1.667858 3.261896 -2.181521 1.667858 3.261896 -2.494678 1.667858 3.261896 -2.852659 1.667858 3.261896 -3.261896 1.667858 3.261896 -3.729748 1.667858 3.261896 -4.264621 1.667858 3.261896 -4.876131 1.667858 3.261896 -5.575266 1.667858 3.261896 -6.374593 1.667858 3.261896 -0 1.907556 3.261896 -0 1.907556 3.261896 -0 1.907556 3.261896 -0.002268731 1.907556 3.261896 -0.07076883 1.907556 3.261896 -0.1119241 1.907556 3.261896 -0.1475052 1.907556 3.261896 -0.1846606 1.907556 3.261896 -0.2245119 1.907556 3.261896 -0.2679612 1.907556 3.261896 -0.3158431 1.907556 3.261896 -0.3689944 1.907556 3.261896 -0.4282948 1.907556 3.261896 -0.494694 1.907556 3.261896 -0.5692344 1.907556 3.261896 -0.6530715 1.907556 3.261896 -0.7474945 1.907556 3.261896 -0.8539475 1.907556 3.261896 -0.974052 1.907556 3.261896 -1.113885 1.907556 3.261896 -1.27456 1.907556 3.261896 -1.458117 1.907556 3.261896 -1.667858 1.907556 3.261896 -1.907556 1.907556 3.261896 -2.181521 1.907556 3.261896 -2.494678 1.907556 3.261896 -2.852659 1.907556 3.261896 -3.261896 1.907556 3.261896 -3.729748 1.907556 3.261896 -4.264621 1.907556 3.261896 -4.876131 1.907556 3.261896 -5.575266 1.907556 3.261896 -6.374593 1.907556 3.261896 -0 2.181521 3.261896 -0 2.181521 3.261896 -0 2.181521 3.261896 -0.002268731 2.181521 3.261896 -0.07076883 2.181521 3.261896 -0.1119241 2.181521 3.261896 -0.1475052 2.181521 3.261896 -0.1846606 2.181521 3.261896 -0.2245119 2.181521 3.261896 -0.2679612 2.181521 3.261896 -0.3158431 2.181521 3.261896 -0.3689944 2.181521 3.261896 -0.4282948 2.181521 3.261896 -0.494694 2.181521 3.261896 -0.5692344 2.181521 3.261896 -0.6530715 2.181521 3.261896 -0.7474945 2.181521 3.261896 -0.8539475 2.181521 3.261896 -0.974052 2.181521 3.261896 -1.113885 2.181521 3.261896 -1.27456 2.181521 3.261896 -1.458117 2.181521 3.261896 -1.667858 2.181521 3.261896 -1.907556 2.181521 3.261896 -2.181521 2.181521 3.261896 -2.494678 2.181521 3.261896 -2.852659 2.181521 3.261896 -3.261896 2.181521 3.261896 -3.729748 2.181521 3.261896 -4.264621 2.181521 3.261896 -4.876131 2.181521 3.261896 -5.575266 2.181521 3.261896 -6.374593 2.181521 3.261896 -0 2.494678 3.261896 -0 2.494678 3.261896 -0 2.494678 3.261896 -0.002268731 2.494678 3.261896 -0.07076883 2.494678 3.261896 -0.1119241 2.494678 3.261896 -0.1475052 2.494678 3.261896 -0.1846606 2.494678 3.261896 -0.2245119 2.494678 3.261896 -0.2679612 2.494678 3.261896 -0.3158431 2.494678 3.261896 -0.3689944 2.494678 3.261896 -0.4282948 2.494678 3.261896 -0.494694 2.494678 3.261896 -0.5692344 2.494678 3.261896 -0.6530715 2.494678 3.261896 -0.7474945 2.494678 3.261896 -0.8539475 2.494678 3.261896 -0.974052 2.494678 3.261896 -1.113885 2.494678 3.261896 -1.27456 2.494678 3.261896 -1.458117 2.494678 3.261896 -1.667858 2.494678 3.261896 -1.907556 2.494678 3.261896 -2.181521 2.494678 3.261896 -2.494678 2.494678 3.261896 -2.852659 2.494678 3.261896 -3.261896 2.494678 3.261896 -3.729748 2.494678 3.261896 -4.264621 2.494678 3.261896 -4.876131 2.494678 3.261896 -5.575266 2.494678 3.261896 -6.374593 2.494678 3.261896 -0 2.852659 3.261896 -0 2.852659 3.261896 -0 2.852659 3.261896 -0.002268731 2.852659 3.261896 -0.07076883 2.852659 3.261896 -0.1119241 2.852659 3.261896 -0.1475052 2.852659 3.261896 -0.1846606 2.852659 3.261896 -0.2245119 2.852659 3.261896 -0.2679612 2.852659 3.261896 -0.3158431 2.852659 3.261896 -0.3689944 2.852659 3.261896 -0.4282948 2.852659 3.261896 -0.494694 2.852659 3.261896 -0.5692344 2.852659 3.261896 -0.6530715 2.852659 3.261896 -0.7474945 2.852659 3.261896 -0.8539475 2.852659 3.261896 -0.974052 2.852659 3.261896 -1.113885 2.852659 3.261896 -1.27456 2.852659 3.261896 -1.458117 2.852659 3.261896 -1.667858 2.852659 3.261896 -1.907556 2.852659 3.261896 -2.181521 2.852659 3.261896 -2.494678 2.852659 3.261896 -2.852659 2.852659 3.261896 -3.261896 2.852659 3.261896 -3.729748 2.852659 3.261896 -4.264621 2.852659 3.261896 -4.876131 2.852659 3.261896 -5.575266 2.852659 3.261896 -6.374593 2.852659 3.261896 -0 3.261896 3.261896 -0 3.261896 3.261896 -0 3.261896 3.261896 -0.002268731 3.261896 3.261896 -0.07076883 3.261896 3.261896 -0.1119241 3.261896 3.261896 -0.1475052 3.261896 3.261896 -0.1846606 3.261896 3.261896 -0.2245119 3.261896 3.261896 -0.2679612 3.261896 3.261896 -0.3158431 3.261896 3.261896 -0.3689944 3.261896 3.261896 -0.4282948 3.261896 3.261896 -0.494694 3.261896 3.261896 -0.5692344 3.261896 3.261896 -0.6530715 3.261896 3.261896 -0.7474945 3.261896 3.261896 -0.8539475 3.261896 3.261896 -0.974052 3.261896 3.261896 -1.113885 3.261896 3.261896 -1.27456 3.261896 3.261896 -1.458117 3.261896 3.261896 -1.667858 3.261896 3.261896 -1.907556 3.261896 3.261896 -2.181521 3.261896 3.261896 -2.494678 3.261896 3.261896 -2.852659 3.261896 3.261896 -3.261896 3.261896 3.261896 -3.729748 3.261896 3.261896 -4.264621 3.261896 3.261896 -4.876131 3.261896 3.261896 -5.575266 3.261896 3.261896 -6.374593 3.261896 3.261896 -0 3.729748 3.261896 -0 3.729748 3.261896 -0 3.729748 3.261896 -0.002268731 3.729748 3.261896 -0.07076883 3.729748 3.261896 -0.1119241 3.729748 3.261896 -0.1475052 3.729748 3.261896 -0.1846606 3.729748 3.261896 -0.2245119 3.729748 3.261896 -0.2679612 3.729748 3.261896 -0.3158431 3.729748 3.261896 -0.3689944 3.729748 3.261896 -0.4282948 3.729748 3.261896 -0.494694 3.729748 3.261896 -0.5692344 3.729748 3.261896 -0.6530715 3.729748 3.261896 -0.7474945 3.729748 3.261896 -0.8539475 3.729748 3.261896 -0.974052 3.729748 3.261896 -1.113885 3.729748 3.261896 -1.27456 3.729748 3.261896 -1.458117 3.729748 3.261896 -1.667858 3.729748 3.261896 -1.907556 3.729748 3.261896 -2.181521 3.729748 3.261896 -2.494678 3.729748 3.261896 -2.852659 3.729748 3.261896 -3.261896 3.729748 3.261896 -3.729748 3.729748 3.261896 -4.264621 3.729748 3.261896 -4.876131 3.729748 3.261896 -5.575266 3.729748 3.261896 -6.374593 3.729748 3.261896 -0 4.264621 3.261896 -0 4.264621 3.261896 -0 4.264621 3.261896 -0.002268731 4.264621 3.261896 -0.07076883 4.264621 3.261896 -0.1119241 4.264621 3.261896 -0.1475052 4.264621 3.261896 -0.1846606 4.264621 3.261896 -0.2245119 4.264621 3.261896 -0.2679612 4.264621 3.261896 -0.3158431 4.264621 3.261896 -0.3689944 4.264621 3.261896 -0.4282948 4.264621 3.261896 -0.494694 4.264621 3.261896 -0.5692344 4.264621 3.261896 -0.6530715 4.264621 3.261896 -0.7474945 4.264621 3.261896 -0.8539475 4.264621 3.261896 -0.974052 4.264621 3.261896 -1.113885 4.264621 3.261896 -1.27456 4.264621 3.261896 -1.458117 4.264621 3.261896 -1.667858 4.264621 3.261896 -1.907556 4.264621 3.261896 -2.181521 4.264621 3.261896 -2.494678 4.264621 3.261896 -2.852659 4.264621 3.261896 -3.261896 4.264621 3.261896 -3.729748 4.264621 3.261896 -4.264621 4.264621 3.261896 -4.876131 4.264621 3.261896 -5.575266 4.264621 3.261896 -6.374593 4.264621 3.261896 -0 4.876131 3.261896 -0 4.876131 3.261896 -0 4.876131 3.261896 -0.002268731 4.876131 3.261896 -0.07076883 4.876131 3.261896 -0.1119241 4.876131 3.261896 -0.1475052 4.876131 3.261896 -0.1846606 4.876131 3.261896 -0.2245119 4.876131 3.261896 -0.2679612 4.876131 3.261896 -0.3158431 4.876131 3.261896 -0.3689944 4.876131 3.261896 -0.4282948 4.876131 3.261896 -0.494694 4.876131 3.261896 -0.5692344 4.876131 3.261896 -0.6530715 4.876131 3.261896 -0.7474945 4.876131 3.261896 -0.8539475 4.876131 3.261896 -0.974052 4.876131 3.261896 -1.113885 4.876131 3.261896 -1.27456 4.876131 3.261896 -1.458117 4.876131 3.261896 -1.667858 4.876131 3.261896 -1.907556 4.876131 3.261896 -2.181521 4.876131 3.261896 -2.494678 4.876131 3.261896 -2.852659 4.876131 3.261896 -3.261896 4.876131 3.261896 -3.729748 4.876131 3.261896 -4.264621 4.876131 3.261896 -4.876131 4.876131 3.261896 -5.575266 4.876131 3.261896 -6.374593 4.876131 3.261896 -0 5.575266 3.261896 -0 5.575266 3.261896 -0 5.575266 3.261896 -0.002268731 5.575266 3.261896 -0.07076883 5.575266 3.261896 -0.1119241 5.575266 3.261896 -0.1475052 5.575266 3.261896 -0.1846606 5.575266 3.261896 -0.2245119 5.575266 3.261896 -0.2679612 5.575266 3.261896 -0.3158431 5.575266 3.261896 -0.3689944 5.575266 3.261896 -0.4282948 5.575266 3.261896 -0.494694 5.575266 3.261896 -0.5692344 5.575266 3.261896 -0.6530715 5.575266 3.261896 -0.7474945 5.575266 3.261896 -0.8539475 5.575266 3.261896 -0.974052 5.575266 3.261896 -1.113885 5.575266 3.261896 -1.27456 5.575266 3.261896 -1.458117 5.575266 3.261896 -1.667858 5.575266 3.261896 -1.907556 5.575266 3.261896 -2.181521 5.575266 3.261896 -2.494678 5.575266 3.261896 -2.852659 5.575266 3.261896 -3.261896 5.575266 3.261896 -3.729748 5.575266 3.261896 -4.264621 5.575266 3.261896 -4.876131 5.575266 3.261896 -5.575266 5.575266 3.261896 -6.374593 5.575266 3.261896 -0 6.374593 3.261896 -0 6.374593 3.261896 -0 6.374593 3.261896 -0.002268731 6.374593 3.261896 -0.07076883 6.374593 3.261896 -0.1119241 6.374593 3.261896 -0.1475052 6.374593 3.261896 -0.1846606 6.374593 3.261896 -0.2245119 6.374593 3.261896 -0.2679612 6.374593 3.261896 -0.3158431 6.374593 3.261896 -0.3689944 6.374593 3.261896 -0.4282948 6.374593 3.261896 -0.494694 6.374593 3.261896 -0.5692344 6.374593 3.261896 -0.6530715 6.374593 3.261896 -0.7474945 6.374593 3.261896 -0.8539475 6.374593 3.261896 -0.974052 6.374593 3.261896 -1.113885 6.374593 3.261896 -1.27456 6.374593 3.261896 -1.458117 6.374593 3.261896 -1.667858 6.374593 3.261896 -1.907556 6.374593 3.261896 -2.181521 6.374593 3.261896 -2.494678 6.374593 3.261896 -2.852659 6.374593 3.261896 -3.261896 6.374593 3.261896 -3.729748 6.374593 3.261896 -4.264621 6.374593 3.261896 -4.876131 6.374593 3.261896 -5.575266 6.374593 3.261896 -6.374593 6.374593 3.261896 -0 0 3.729748 -0 0 3.729748 -0 0 3.729748 -0.002268731 0 3.729748 -0.07076883 0 3.729748 -0.1119241 0 3.729748 -0.1475052 0 3.729748 -0.1846606 0 3.729748 -0.2245119 0 3.729748 -0.2679612 0 3.729748 -0.3158431 0 3.729748 -0.3689944 0 3.729748 -0.4282948 0 3.729748 -0.494694 0 3.729748 -0.5692344 0 3.729748 -0.6530715 0 3.729748 -0.7474945 0 3.729748 -0.8539475 0 3.729748 -0.974052 0 3.729748 -1.113885 0 3.729748 -1.27456 0 3.729748 -1.458117 0 3.729748 -1.667858 0 3.729748 -1.907556 0 3.729748 -2.181521 0 3.729748 -2.494678 0 3.729748 -2.852659 0 3.729748 -3.261896 0 3.729748 -3.729748 0 3.729748 -4.264621 0 3.729748 -4.876131 0 3.729748 -5.575266 0 3.729748 -6.374593 0 3.729748 -0 0 3.729748 -0 0 3.729748 -0 0 3.729748 -0.002268731 0 3.729748 -0.07076883 0 3.729748 -0.1119241 0 3.729748 -0.1475052 0 3.729748 -0.1846606 0 3.729748 -0.2245119 0 3.729748 -0.2679612 0 3.729748 -0.3158431 0 3.729748 -0.3689944 0 3.729748 -0.4282948 0 3.729748 -0.494694 0 3.729748 -0.5692344 0 3.729748 -0.6530715 0 3.729748 -0.7474945 0 3.729748 -0.8539475 0 3.729748 -0.974052 0 3.729748 -1.113885 0 3.729748 -1.27456 0 3.729748 -1.458117 0 3.729748 -1.667858 0 3.729748 -1.907556 0 3.729748 -2.181521 0 3.729748 -2.494678 0 3.729748 -2.852659 0 3.729748 -3.261896 0 3.729748 -3.729748 0 3.729748 -4.264621 0 3.729748 -4.876131 0 3.729748 -5.575266 0 3.729748 -6.374593 0 3.729748 -0 0 3.729748 -0 0 3.729748 -0 0 3.729748 -0.002268731 0 3.729748 -0.07076883 0 3.729748 -0.1119241 0 3.729748 -0.1475052 0 3.729748 -0.1846606 0 3.729748 -0.2245119 0 3.729748 -0.2679612 0 3.729748 -0.3158431 0 3.729748 -0.3689944 0 3.729748 -0.4282948 0 3.729748 -0.494694 0 3.729748 -0.5692344 0 3.729748 -0.6530715 0 3.729748 -0.7474945 0 3.729748 -0.8539475 0 3.729748 -0.974052 0 3.729748 -1.113885 0 3.729748 -1.27456 0 3.729748 -1.458117 0 3.729748 -1.667858 0 3.729748 -1.907556 0 3.729748 -2.181521 0 3.729748 -2.494678 0 3.729748 -2.852659 0 3.729748 -3.261896 0 3.729748 -3.729748 0 3.729748 -4.264621 0 3.729748 -4.876131 0 3.729748 -5.575266 0 3.729748 -6.374593 0 3.729748 -0 0.002268731 3.729748 -0 0.002268731 3.729748 -0 0.002268731 3.729748 -0.002268731 0.002268731 3.729748 -0.07076883 0.002268731 3.729748 -0.1119241 0.002268731 3.729748 -0.1475052 0.002268731 3.729748 -0.1846606 0.002268731 3.729748 -0.2245119 0.002268731 3.729748 -0.2679612 0.002268731 3.729748 -0.3158431 0.002268731 3.729748 -0.3689944 0.002268731 3.729748 -0.4282948 0.002268731 3.729748 -0.494694 0.002268731 3.729748 -0.5692344 0.002268731 3.729748 -0.6530715 0.002268731 3.729748 -0.7474945 0.002268731 3.729748 -0.8539475 0.002268731 3.729748 -0.974052 0.002268731 3.729748 -1.113885 0.002268731 3.729748 -1.27456 0.002268731 3.729748 -1.458117 0.002268731 3.729748 -1.667858 0.002268731 3.729748 -1.907556 0.002268731 3.729748 -2.181521 0.002268731 3.729748 -2.494678 0.002268731 3.729748 -2.852659 0.002268731 3.729748 -3.261896 0.002268731 3.729748 -3.729748 0.002268731 3.729748 -4.264621 0.002268731 3.729748 -4.876131 0.002268731 3.729748 -5.575266 0.002268731 3.729748 -6.374593 0.002268731 3.729748 -0 0.07076883 3.729748 -0 0.07076883 3.729748 -0 0.07076883 3.729748 -0.002268731 0.07076883 3.729748 -0.07076883 0.07076883 3.729748 -0.1119241 0.07076883 3.729748 -0.1475052 0.07076883 3.729748 -0.1846606 0.07076883 3.729748 -0.2245119 0.07076883 3.729748 -0.2679612 0.07076883 3.729748 -0.3158431 0.07076883 3.729748 -0.3689944 0.07076883 3.729748 -0.4282948 0.07076883 3.729748 -0.494694 0.07076883 3.729748 -0.5692344 0.07076883 3.729748 -0.6530715 0.07076883 3.729748 -0.7474945 0.07076883 3.729748 -0.8539475 0.07076883 3.729748 -0.974052 0.07076883 3.729748 -1.113885 0.07076883 3.729748 -1.27456 0.07076883 3.729748 -1.458117 0.07076883 3.729748 -1.667858 0.07076883 3.729748 -1.907556 0.07076883 3.729748 -2.181521 0.07076883 3.729748 -2.494678 0.07076883 3.729748 -2.852659 0.07076883 3.729748 -3.261896 0.07076883 3.729748 -3.729748 0.07076883 3.729748 -4.264621 0.07076883 3.729748 -4.876131 0.07076883 3.729748 -5.575266 0.07076883 3.729748 -6.374593 0.07076883 3.729748 -0 0.1119241 3.729748 -0 0.1119241 3.729748 -0 0.1119241 3.729748 -0.002268731 0.1119241 3.729748 -0.07076883 0.1119241 3.729748 -0.1119241 0.1119241 3.729748 -0.1475052 0.1119241 3.729748 -0.1846606 0.1119241 3.729748 -0.2245119 0.1119241 3.729748 -0.2679612 0.1119241 3.729748 -0.3158431 0.1119241 3.729748 -0.3689944 0.1119241 3.729748 -0.4282948 0.1119241 3.729748 -0.494694 0.1119241 3.729748 -0.5692344 0.1119241 3.729748 -0.6530715 0.1119241 3.729748 -0.7474945 0.1119241 3.729748 -0.8539475 0.1119241 3.729748 -0.974052 0.1119241 3.729748 -1.113885 0.1119241 3.729748 -1.27456 0.1119241 3.729748 -1.458117 0.1119241 3.729748 -1.667858 0.1119241 3.729748 -1.907556 0.1119241 3.729748 -2.181521 0.1119241 3.729748 -2.494678 0.1119241 3.729748 -2.852659 0.1119241 3.729748 -3.261896 0.1119241 3.729748 -3.729748 0.1119241 3.729748 -4.264621 0.1119241 3.729748 -4.876131 0.1119241 3.729748 -5.575266 0.1119241 3.729748 -6.374593 0.1119241 3.729748 -0 0.1475052 3.729748 -0 0.1475052 3.729748 -0 0.1475052 3.729748 -0.002268731 0.1475052 3.729748 -0.07076883 0.1475052 3.729748 -0.1119241 0.1475052 3.729748 -0.1475052 0.1475052 3.729748 -0.1846606 0.1475052 3.729748 -0.2245119 0.1475052 3.729748 -0.2679612 0.1475052 3.729748 -0.3158431 0.1475052 3.729748 -0.3689944 0.1475052 3.729748 -0.4282948 0.1475052 3.729748 -0.494694 0.1475052 3.729748 -0.5692344 0.1475052 3.729748 -0.6530715 0.1475052 3.729748 -0.7474945 0.1475052 3.729748 -0.8539475 0.1475052 3.729748 -0.974052 0.1475052 3.729748 -1.113885 0.1475052 3.729748 -1.27456 0.1475052 3.729748 -1.458117 0.1475052 3.729748 -1.667858 0.1475052 3.729748 -1.907556 0.1475052 3.729748 -2.181521 0.1475052 3.729748 -2.494678 0.1475052 3.729748 -2.852659 0.1475052 3.729748 -3.261896 0.1475052 3.729748 -3.729748 0.1475052 3.729748 -4.264621 0.1475052 3.729748 -4.876131 0.1475052 3.729748 -5.575266 0.1475052 3.729748 -6.374593 0.1475052 3.729748 -0 0.1846606 3.729748 -0 0.1846606 3.729748 -0 0.1846606 3.729748 -0.002268731 0.1846606 3.729748 -0.07076883 0.1846606 3.729748 -0.1119241 0.1846606 3.729748 -0.1475052 0.1846606 3.729748 -0.1846606 0.1846606 3.729748 -0.2245119 0.1846606 3.729748 -0.2679612 0.1846606 3.729748 -0.3158431 0.1846606 3.729748 -0.3689944 0.1846606 3.729748 -0.4282948 0.1846606 3.729748 -0.494694 0.1846606 3.729748 -0.5692344 0.1846606 3.729748 -0.6530715 0.1846606 3.729748 -0.7474945 0.1846606 3.729748 -0.8539475 0.1846606 3.729748 -0.974052 0.1846606 3.729748 -1.113885 0.1846606 3.729748 -1.27456 0.1846606 3.729748 -1.458117 0.1846606 3.729748 -1.667858 0.1846606 3.729748 -1.907556 0.1846606 3.729748 -2.181521 0.1846606 3.729748 -2.494678 0.1846606 3.729748 -2.852659 0.1846606 3.729748 -3.261896 0.1846606 3.729748 -3.729748 0.1846606 3.729748 -4.264621 0.1846606 3.729748 -4.876131 0.1846606 3.729748 -5.575266 0.1846606 3.729748 -6.374593 0.1846606 3.729748 -0 0.2245119 3.729748 -0 0.2245119 3.729748 -0 0.2245119 3.729748 -0.002268731 0.2245119 3.729748 -0.07076883 0.2245119 3.729748 -0.1119241 0.2245119 3.729748 -0.1475052 0.2245119 3.729748 -0.1846606 0.2245119 3.729748 -0.2245119 0.2245119 3.729748 -0.2679612 0.2245119 3.729748 -0.3158431 0.2245119 3.729748 -0.3689944 0.2245119 3.729748 -0.4282948 0.2245119 3.729748 -0.494694 0.2245119 3.729748 -0.5692344 0.2245119 3.729748 -0.6530715 0.2245119 3.729748 -0.7474945 0.2245119 3.729748 -0.8539475 0.2245119 3.729748 -0.974052 0.2245119 3.729748 -1.113885 0.2245119 3.729748 -1.27456 0.2245119 3.729748 -1.458117 0.2245119 3.729748 -1.667858 0.2245119 3.729748 -1.907556 0.2245119 3.729748 -2.181521 0.2245119 3.729748 -2.494678 0.2245119 3.729748 -2.852659 0.2245119 3.729748 -3.261896 0.2245119 3.729748 -3.729748 0.2245119 3.729748 -4.264621 0.2245119 3.729748 -4.876131 0.2245119 3.729748 -5.575266 0.2245119 3.729748 -6.374593 0.2245119 3.729748 -0 0.2679612 3.729748 -0 0.2679612 3.729748 -0 0.2679612 3.729748 -0.002268731 0.2679612 3.729748 -0.07076883 0.2679612 3.729748 -0.1119241 0.2679612 3.729748 -0.1475052 0.2679612 3.729748 -0.1846606 0.2679612 3.729748 -0.2245119 0.2679612 3.729748 -0.2679612 0.2679612 3.729748 -0.3158431 0.2679612 3.729748 -0.3689944 0.2679612 3.729748 -0.4282948 0.2679612 3.729748 -0.494694 0.2679612 3.729748 -0.5692344 0.2679612 3.729748 -0.6530715 0.2679612 3.729748 -0.7474945 0.2679612 3.729748 -0.8539475 0.2679612 3.729748 -0.974052 0.2679612 3.729748 -1.113885 0.2679612 3.729748 -1.27456 0.2679612 3.729748 -1.458117 0.2679612 3.729748 -1.667858 0.2679612 3.729748 -1.907556 0.2679612 3.729748 -2.181521 0.2679612 3.729748 -2.494678 0.2679612 3.729748 -2.852659 0.2679612 3.729748 -3.261896 0.2679612 3.729748 -3.729748 0.2679612 3.729748 -4.264621 0.2679612 3.729748 -4.876131 0.2679612 3.729748 -5.575266 0.2679612 3.729748 -6.374593 0.2679612 3.729748 -0 0.3158431 3.729748 -0 0.3158431 3.729748 -0 0.3158431 3.729748 -0.002268731 0.3158431 3.729748 -0.07076883 0.3158431 3.729748 -0.1119241 0.3158431 3.729748 -0.1475052 0.3158431 3.729748 -0.1846606 0.3158431 3.729748 -0.2245119 0.3158431 3.729748 -0.2679612 0.3158431 3.729748 -0.3158431 0.3158431 3.729748 -0.3689944 0.3158431 3.729748 -0.4282948 0.3158431 3.729748 -0.494694 0.3158431 3.729748 -0.5692344 0.3158431 3.729748 -0.6530715 0.3158431 3.729748 -0.7474945 0.3158431 3.729748 -0.8539475 0.3158431 3.729748 -0.974052 0.3158431 3.729748 -1.113885 0.3158431 3.729748 -1.27456 0.3158431 3.729748 -1.458117 0.3158431 3.729748 -1.667858 0.3158431 3.729748 -1.907556 0.3158431 3.729748 -2.181521 0.3158431 3.729748 -2.494678 0.3158431 3.729748 -2.852659 0.3158431 3.729748 -3.261896 0.3158431 3.729748 -3.729748 0.3158431 3.729748 -4.264621 0.3158431 3.729748 -4.876131 0.3158431 3.729748 -5.575266 0.3158431 3.729748 -6.374593 0.3158431 3.729748 -0 0.3689944 3.729748 -0 0.3689944 3.729748 -0 0.3689944 3.729748 -0.002268731 0.3689944 3.729748 -0.07076883 0.3689944 3.729748 -0.1119241 0.3689944 3.729748 -0.1475052 0.3689944 3.729748 -0.1846606 0.3689944 3.729748 -0.2245119 0.3689944 3.729748 -0.2679612 0.3689944 3.729748 -0.3158431 0.3689944 3.729748 -0.3689944 0.3689944 3.729748 -0.4282948 0.3689944 3.729748 -0.494694 0.3689944 3.729748 -0.5692344 0.3689944 3.729748 -0.6530715 0.3689944 3.729748 -0.7474945 0.3689944 3.729748 -0.8539475 0.3689944 3.729748 -0.974052 0.3689944 3.729748 -1.113885 0.3689944 3.729748 -1.27456 0.3689944 3.729748 -1.458117 0.3689944 3.729748 -1.667858 0.3689944 3.729748 -1.907556 0.3689944 3.729748 -2.181521 0.3689944 3.729748 -2.494678 0.3689944 3.729748 -2.852659 0.3689944 3.729748 -3.261896 0.3689944 3.729748 -3.729748 0.3689944 3.729748 -4.264621 0.3689944 3.729748 -4.876131 0.3689944 3.729748 -5.575266 0.3689944 3.729748 -6.374593 0.3689944 3.729748 -0 0.4282948 3.729748 -0 0.4282948 3.729748 -0 0.4282948 3.729748 -0.002268731 0.4282948 3.729748 -0.07076883 0.4282948 3.729748 -0.1119241 0.4282948 3.729748 -0.1475052 0.4282948 3.729748 -0.1846606 0.4282948 3.729748 -0.2245119 0.4282948 3.729748 -0.2679612 0.4282948 3.729748 -0.3158431 0.4282948 3.729748 -0.3689944 0.4282948 3.729748 -0.4282948 0.4282948 3.729748 -0.494694 0.4282948 3.729748 -0.5692344 0.4282948 3.729748 -0.6530715 0.4282948 3.729748 -0.7474945 0.4282948 3.729748 -0.8539475 0.4282948 3.729748 -0.974052 0.4282948 3.729748 -1.113885 0.4282948 3.729748 -1.27456 0.4282948 3.729748 -1.458117 0.4282948 3.729748 -1.667858 0.4282948 3.729748 -1.907556 0.4282948 3.729748 -2.181521 0.4282948 3.729748 -2.494678 0.4282948 3.729748 -2.852659 0.4282948 3.729748 -3.261896 0.4282948 3.729748 -3.729748 0.4282948 3.729748 -4.264621 0.4282948 3.729748 -4.876131 0.4282948 3.729748 -5.575266 0.4282948 3.729748 -6.374593 0.4282948 3.729748 -0 0.494694 3.729748 -0 0.494694 3.729748 -0 0.494694 3.729748 -0.002268731 0.494694 3.729748 -0.07076883 0.494694 3.729748 -0.1119241 0.494694 3.729748 -0.1475052 0.494694 3.729748 -0.1846606 0.494694 3.729748 -0.2245119 0.494694 3.729748 -0.2679612 0.494694 3.729748 -0.3158431 0.494694 3.729748 -0.3689944 0.494694 3.729748 -0.4282948 0.494694 3.729748 -0.494694 0.494694 3.729748 -0.5692344 0.494694 3.729748 -0.6530715 0.494694 3.729748 -0.7474945 0.494694 3.729748 -0.8539475 0.494694 3.729748 -0.974052 0.494694 3.729748 -1.113885 0.494694 3.729748 -1.27456 0.494694 3.729748 -1.458117 0.494694 3.729748 -1.667858 0.494694 3.729748 -1.907556 0.494694 3.729748 -2.181521 0.494694 3.729748 -2.494678 0.494694 3.729748 -2.852659 0.494694 3.729748 -3.261896 0.494694 3.729748 -3.729748 0.494694 3.729748 -4.264621 0.494694 3.729748 -4.876131 0.494694 3.729748 -5.575266 0.494694 3.729748 -6.374593 0.494694 3.729748 -0 0.5692344 3.729748 -0 0.5692344 3.729748 -0 0.5692344 3.729748 -0.002268731 0.5692344 3.729748 -0.07076883 0.5692344 3.729748 -0.1119241 0.5692344 3.729748 -0.1475052 0.5692344 3.729748 -0.1846606 0.5692344 3.729748 -0.2245119 0.5692344 3.729748 -0.2679612 0.5692344 3.729748 -0.3158431 0.5692344 3.729748 -0.3689944 0.5692344 3.729748 -0.4282948 0.5692344 3.729748 -0.494694 0.5692344 3.729748 -0.5692344 0.5692344 3.729748 -0.6530715 0.5692344 3.729748 -0.7474945 0.5692344 3.729748 -0.8539475 0.5692344 3.729748 -0.974052 0.5692344 3.729748 -1.113885 0.5692344 3.729748 -1.27456 0.5692344 3.729748 -1.458117 0.5692344 3.729748 -1.667858 0.5692344 3.729748 -1.907556 0.5692344 3.729748 -2.181521 0.5692344 3.729748 -2.494678 0.5692344 3.729748 -2.852659 0.5692344 3.729748 -3.261896 0.5692344 3.729748 -3.729748 0.5692344 3.729748 -4.264621 0.5692344 3.729748 -4.876131 0.5692344 3.729748 -5.575266 0.5692344 3.729748 -6.374593 0.5692344 3.729748 -0 0.6530715 3.729748 -0 0.6530715 3.729748 -0 0.6530715 3.729748 -0.002268731 0.6530715 3.729748 -0.07076883 0.6530715 3.729748 -0.1119241 0.6530715 3.729748 -0.1475052 0.6530715 3.729748 -0.1846606 0.6530715 3.729748 -0.2245119 0.6530715 3.729748 -0.2679612 0.6530715 3.729748 -0.3158431 0.6530715 3.729748 -0.3689944 0.6530715 3.729748 -0.4282948 0.6530715 3.729748 -0.494694 0.6530715 3.729748 -0.5692344 0.6530715 3.729748 -0.6530715 0.6530715 3.729748 -0.7474945 0.6530715 3.729748 -0.8539475 0.6530715 3.729748 -0.974052 0.6530715 3.729748 -1.113885 0.6530715 3.729748 -1.27456 0.6530715 3.729748 -1.458117 0.6530715 3.729748 -1.667858 0.6530715 3.729748 -1.907556 0.6530715 3.729748 -2.181521 0.6530715 3.729748 -2.494678 0.6530715 3.729748 -2.852659 0.6530715 3.729748 -3.261896 0.6530715 3.729748 -3.729748 0.6530715 3.729748 -4.264621 0.6530715 3.729748 -4.876131 0.6530715 3.729748 -5.575266 0.6530715 3.729748 -6.374593 0.6530715 3.729748 -0 0.7474945 3.729748 -0 0.7474945 3.729748 -0 0.7474945 3.729748 -0.002268731 0.7474945 3.729748 -0.07076883 0.7474945 3.729748 -0.1119241 0.7474945 3.729748 -0.1475052 0.7474945 3.729748 -0.1846606 0.7474945 3.729748 -0.2245119 0.7474945 3.729748 -0.2679612 0.7474945 3.729748 -0.3158431 0.7474945 3.729748 -0.3689944 0.7474945 3.729748 -0.4282948 0.7474945 3.729748 -0.494694 0.7474945 3.729748 -0.5692344 0.7474945 3.729748 -0.6530715 0.7474945 3.729748 -0.7474945 0.7474945 3.729748 -0.8539475 0.7474945 3.729748 -0.974052 0.7474945 3.729748 -1.113885 0.7474945 3.729748 -1.27456 0.7474945 3.729748 -1.458117 0.7474945 3.729748 -1.667858 0.7474945 3.729748 -1.907556 0.7474945 3.729748 -2.181521 0.7474945 3.729748 -2.494678 0.7474945 3.729748 -2.852659 0.7474945 3.729748 -3.261896 0.7474945 3.729748 -3.729748 0.7474945 3.729748 -4.264621 0.7474945 3.729748 -4.876131 0.7474945 3.729748 -5.575266 0.7474945 3.729748 -6.374593 0.7474945 3.729748 -0 0.8539475 3.729748 -0 0.8539475 3.729748 -0 0.8539475 3.729748 -0.002268731 0.8539475 3.729748 -0.07076883 0.8539475 3.729748 -0.1119241 0.8539475 3.729748 -0.1475052 0.8539475 3.729748 -0.1846606 0.8539475 3.729748 -0.2245119 0.8539475 3.729748 -0.2679612 0.8539475 3.729748 -0.3158431 0.8539475 3.729748 -0.3689944 0.8539475 3.729748 -0.4282948 0.8539475 3.729748 -0.494694 0.8539475 3.729748 -0.5692344 0.8539475 3.729748 -0.6530715 0.8539475 3.729748 -0.7474945 0.8539475 3.729748 -0.8539475 0.8539475 3.729748 -0.974052 0.8539475 3.729748 -1.113885 0.8539475 3.729748 -1.27456 0.8539475 3.729748 -1.458117 0.8539475 3.729748 -1.667858 0.8539475 3.729748 -1.907556 0.8539475 3.729748 -2.181521 0.8539475 3.729748 -2.494678 0.8539475 3.729748 -2.852659 0.8539475 3.729748 -3.261896 0.8539475 3.729748 -3.729748 0.8539475 3.729748 -4.264621 0.8539475 3.729748 -4.876131 0.8539475 3.729748 -5.575266 0.8539475 3.729748 -6.374593 0.8539475 3.729748 -0 0.974052 3.729748 -0 0.974052 3.729748 -0 0.974052 3.729748 -0.002268731 0.974052 3.729748 -0.07076883 0.974052 3.729748 -0.1119241 0.974052 3.729748 -0.1475052 0.974052 3.729748 -0.1846606 0.974052 3.729748 -0.2245119 0.974052 3.729748 -0.2679612 0.974052 3.729748 -0.3158431 0.974052 3.729748 -0.3689944 0.974052 3.729748 -0.4282948 0.974052 3.729748 -0.494694 0.974052 3.729748 -0.5692344 0.974052 3.729748 -0.6530715 0.974052 3.729748 -0.7474945 0.974052 3.729748 -0.8539475 0.974052 3.729748 -0.974052 0.974052 3.729748 -1.113885 0.974052 3.729748 -1.27456 0.974052 3.729748 -1.458117 0.974052 3.729748 -1.667858 0.974052 3.729748 -1.907556 0.974052 3.729748 -2.181521 0.974052 3.729748 -2.494678 0.974052 3.729748 -2.852659 0.974052 3.729748 -3.261896 0.974052 3.729748 -3.729748 0.974052 3.729748 -4.264621 0.974052 3.729748 -4.876131 0.974052 3.729748 -5.575266 0.974052 3.729748 -6.374593 0.974052 3.729748 -0 1.113885 3.729748 -0 1.113885 3.729748 -0 1.113885 3.729748 -0.002268731 1.113885 3.729748 -0.07076883 1.113885 3.729748 -0.1119241 1.113885 3.729748 -0.1475052 1.113885 3.729748 -0.1846606 1.113885 3.729748 -0.2245119 1.113885 3.729748 -0.2679612 1.113885 3.729748 -0.3158431 1.113885 3.729748 -0.3689944 1.113885 3.729748 -0.4282948 1.113885 3.729748 -0.494694 1.113885 3.729748 -0.5692344 1.113885 3.729748 -0.6530715 1.113885 3.729748 -0.7474945 1.113885 3.729748 -0.8539475 1.113885 3.729748 -0.974052 1.113885 3.729748 -1.113885 1.113885 3.729748 -1.27456 1.113885 3.729748 -1.458117 1.113885 3.729748 -1.667858 1.113885 3.729748 -1.907556 1.113885 3.729748 -2.181521 1.113885 3.729748 -2.494678 1.113885 3.729748 -2.852659 1.113885 3.729748 -3.261896 1.113885 3.729748 -3.729748 1.113885 3.729748 -4.264621 1.113885 3.729748 -4.876131 1.113885 3.729748 -5.575266 1.113885 3.729748 -6.374593 1.113885 3.729748 -0 1.27456 3.729748 -0 1.27456 3.729748 -0 1.27456 3.729748 -0.002268731 1.27456 3.729748 -0.07076883 1.27456 3.729748 -0.1119241 1.27456 3.729748 -0.1475052 1.27456 3.729748 -0.1846606 1.27456 3.729748 -0.2245119 1.27456 3.729748 -0.2679612 1.27456 3.729748 -0.3158431 1.27456 3.729748 -0.3689944 1.27456 3.729748 -0.4282948 1.27456 3.729748 -0.494694 1.27456 3.729748 -0.5692344 1.27456 3.729748 -0.6530715 1.27456 3.729748 -0.7474945 1.27456 3.729748 -0.8539475 1.27456 3.729748 -0.974052 1.27456 3.729748 -1.113885 1.27456 3.729748 -1.27456 1.27456 3.729748 -1.458117 1.27456 3.729748 -1.667858 1.27456 3.729748 -1.907556 1.27456 3.729748 -2.181521 1.27456 3.729748 -2.494678 1.27456 3.729748 -2.852659 1.27456 3.729748 -3.261896 1.27456 3.729748 -3.729748 1.27456 3.729748 -4.264621 1.27456 3.729748 -4.876131 1.27456 3.729748 -5.575266 1.27456 3.729748 -6.374593 1.27456 3.729748 -0 1.458117 3.729748 -0 1.458117 3.729748 -0 1.458117 3.729748 -0.002268731 1.458117 3.729748 -0.07076883 1.458117 3.729748 -0.1119241 1.458117 3.729748 -0.1475052 1.458117 3.729748 -0.1846606 1.458117 3.729748 -0.2245119 1.458117 3.729748 -0.2679612 1.458117 3.729748 -0.3158431 1.458117 3.729748 -0.3689944 1.458117 3.729748 -0.4282948 1.458117 3.729748 -0.494694 1.458117 3.729748 -0.5692344 1.458117 3.729748 -0.6530715 1.458117 3.729748 -0.7474945 1.458117 3.729748 -0.8539475 1.458117 3.729748 -0.974052 1.458117 3.729748 -1.113885 1.458117 3.729748 -1.27456 1.458117 3.729748 -1.458117 1.458117 3.729748 -1.667858 1.458117 3.729748 -1.907556 1.458117 3.729748 -2.181521 1.458117 3.729748 -2.494678 1.458117 3.729748 -2.852659 1.458117 3.729748 -3.261896 1.458117 3.729748 -3.729748 1.458117 3.729748 -4.264621 1.458117 3.729748 -4.876131 1.458117 3.729748 -5.575266 1.458117 3.729748 -6.374593 1.458117 3.729748 -0 1.667858 3.729748 -0 1.667858 3.729748 -0 1.667858 3.729748 -0.002268731 1.667858 3.729748 -0.07076883 1.667858 3.729748 -0.1119241 1.667858 3.729748 -0.1475052 1.667858 3.729748 -0.1846606 1.667858 3.729748 -0.2245119 1.667858 3.729748 -0.2679612 1.667858 3.729748 -0.3158431 1.667858 3.729748 -0.3689944 1.667858 3.729748 -0.4282948 1.667858 3.729748 -0.494694 1.667858 3.729748 -0.5692344 1.667858 3.729748 -0.6530715 1.667858 3.729748 -0.7474945 1.667858 3.729748 -0.8539475 1.667858 3.729748 -0.974052 1.667858 3.729748 -1.113885 1.667858 3.729748 -1.27456 1.667858 3.729748 -1.458117 1.667858 3.729748 -1.667858 1.667858 3.729748 -1.907556 1.667858 3.729748 -2.181521 1.667858 3.729748 -2.494678 1.667858 3.729748 -2.852659 1.667858 3.729748 -3.261896 1.667858 3.729748 -3.729748 1.667858 3.729748 -4.264621 1.667858 3.729748 -4.876131 1.667858 3.729748 -5.575266 1.667858 3.729748 -6.374593 1.667858 3.729748 -0 1.907556 3.729748 -0 1.907556 3.729748 -0 1.907556 3.729748 -0.002268731 1.907556 3.729748 -0.07076883 1.907556 3.729748 -0.1119241 1.907556 3.729748 -0.1475052 1.907556 3.729748 -0.1846606 1.907556 3.729748 -0.2245119 1.907556 3.729748 -0.2679612 1.907556 3.729748 -0.3158431 1.907556 3.729748 -0.3689944 1.907556 3.729748 -0.4282948 1.907556 3.729748 -0.494694 1.907556 3.729748 -0.5692344 1.907556 3.729748 -0.6530715 1.907556 3.729748 -0.7474945 1.907556 3.729748 -0.8539475 1.907556 3.729748 -0.974052 1.907556 3.729748 -1.113885 1.907556 3.729748 -1.27456 1.907556 3.729748 -1.458117 1.907556 3.729748 -1.667858 1.907556 3.729748 -1.907556 1.907556 3.729748 -2.181521 1.907556 3.729748 -2.494678 1.907556 3.729748 -2.852659 1.907556 3.729748 -3.261896 1.907556 3.729748 -3.729748 1.907556 3.729748 -4.264621 1.907556 3.729748 -4.876131 1.907556 3.729748 -5.575266 1.907556 3.729748 -6.374593 1.907556 3.729748 -0 2.181521 3.729748 -0 2.181521 3.729748 -0 2.181521 3.729748 -0.002268731 2.181521 3.729748 -0.07076883 2.181521 3.729748 -0.1119241 2.181521 3.729748 -0.1475052 2.181521 3.729748 -0.1846606 2.181521 3.729748 -0.2245119 2.181521 3.729748 -0.2679612 2.181521 3.729748 -0.3158431 2.181521 3.729748 -0.3689944 2.181521 3.729748 -0.4282948 2.181521 3.729748 -0.494694 2.181521 3.729748 -0.5692344 2.181521 3.729748 -0.6530715 2.181521 3.729748 -0.7474945 2.181521 3.729748 -0.8539475 2.181521 3.729748 -0.974052 2.181521 3.729748 -1.113885 2.181521 3.729748 -1.27456 2.181521 3.729748 -1.458117 2.181521 3.729748 -1.667858 2.181521 3.729748 -1.907556 2.181521 3.729748 -2.181521 2.181521 3.729748 -2.494678 2.181521 3.729748 -2.852659 2.181521 3.729748 -3.261896 2.181521 3.729748 -3.729748 2.181521 3.729748 -4.264621 2.181521 3.729748 -4.876131 2.181521 3.729748 -5.575266 2.181521 3.729748 -6.374593 2.181521 3.729748 -0 2.494678 3.729748 -0 2.494678 3.729748 -0 2.494678 3.729748 -0.002268731 2.494678 3.729748 -0.07076883 2.494678 3.729748 -0.1119241 2.494678 3.729748 -0.1475052 2.494678 3.729748 -0.1846606 2.494678 3.729748 -0.2245119 2.494678 3.729748 -0.2679612 2.494678 3.729748 -0.3158431 2.494678 3.729748 -0.3689944 2.494678 3.729748 -0.4282948 2.494678 3.729748 -0.494694 2.494678 3.729748 -0.5692344 2.494678 3.729748 -0.6530715 2.494678 3.729748 -0.7474945 2.494678 3.729748 -0.8539475 2.494678 3.729748 -0.974052 2.494678 3.729748 -1.113885 2.494678 3.729748 -1.27456 2.494678 3.729748 -1.458117 2.494678 3.729748 -1.667858 2.494678 3.729748 -1.907556 2.494678 3.729748 -2.181521 2.494678 3.729748 -2.494678 2.494678 3.729748 -2.852659 2.494678 3.729748 -3.261896 2.494678 3.729748 -3.729748 2.494678 3.729748 -4.264621 2.494678 3.729748 -4.876131 2.494678 3.729748 -5.575266 2.494678 3.729748 -6.374593 2.494678 3.729748 -0 2.852659 3.729748 -0 2.852659 3.729748 -0 2.852659 3.729748 -0.002268731 2.852659 3.729748 -0.07076883 2.852659 3.729748 -0.1119241 2.852659 3.729748 -0.1475052 2.852659 3.729748 -0.1846606 2.852659 3.729748 -0.2245119 2.852659 3.729748 -0.2679612 2.852659 3.729748 -0.3158431 2.852659 3.729748 -0.3689944 2.852659 3.729748 -0.4282948 2.852659 3.729748 -0.494694 2.852659 3.729748 -0.5692344 2.852659 3.729748 -0.6530715 2.852659 3.729748 -0.7474945 2.852659 3.729748 -0.8539475 2.852659 3.729748 -0.974052 2.852659 3.729748 -1.113885 2.852659 3.729748 -1.27456 2.852659 3.729748 -1.458117 2.852659 3.729748 -1.667858 2.852659 3.729748 -1.907556 2.852659 3.729748 -2.181521 2.852659 3.729748 -2.494678 2.852659 3.729748 -2.852659 2.852659 3.729748 -3.261896 2.852659 3.729748 -3.729748 2.852659 3.729748 -4.264621 2.852659 3.729748 -4.876131 2.852659 3.729748 -5.575266 2.852659 3.729748 -6.374593 2.852659 3.729748 -0 3.261896 3.729748 -0 3.261896 3.729748 -0 3.261896 3.729748 -0.002268731 3.261896 3.729748 -0.07076883 3.261896 3.729748 -0.1119241 3.261896 3.729748 -0.1475052 3.261896 3.729748 -0.1846606 3.261896 3.729748 -0.2245119 3.261896 3.729748 -0.2679612 3.261896 3.729748 -0.3158431 3.261896 3.729748 -0.3689944 3.261896 3.729748 -0.4282948 3.261896 3.729748 -0.494694 3.261896 3.729748 -0.5692344 3.261896 3.729748 -0.6530715 3.261896 3.729748 -0.7474945 3.261896 3.729748 -0.8539475 3.261896 3.729748 -0.974052 3.261896 3.729748 -1.113885 3.261896 3.729748 -1.27456 3.261896 3.729748 -1.458117 3.261896 3.729748 -1.667858 3.261896 3.729748 -1.907556 3.261896 3.729748 -2.181521 3.261896 3.729748 -2.494678 3.261896 3.729748 -2.852659 3.261896 3.729748 -3.261896 3.261896 3.729748 -3.729748 3.261896 3.729748 -4.264621 3.261896 3.729748 -4.876131 3.261896 3.729748 -5.575266 3.261896 3.729748 -6.374593 3.261896 3.729748 -0 3.729748 3.729748 -0 3.729748 3.729748 -0 3.729748 3.729748 -0.002268731 3.729748 3.729748 -0.07076883 3.729748 3.729748 -0.1119241 3.729748 3.729748 -0.1475052 3.729748 3.729748 -0.1846606 3.729748 3.729748 -0.2245119 3.729748 3.729748 -0.2679612 3.729748 3.729748 -0.3158431 3.729748 3.729748 -0.3689944 3.729748 3.729748 -0.4282948 3.729748 3.729748 -0.494694 3.729748 3.729748 -0.5692344 3.729748 3.729748 -0.6530715 3.729748 3.729748 -0.7474945 3.729748 3.729748 -0.8539475 3.729748 3.729748 -0.974052 3.729748 3.729748 -1.113885 3.729748 3.729748 -1.27456 3.729748 3.729748 -1.458117 3.729748 3.729748 -1.667858 3.729748 3.729748 -1.907556 3.729748 3.729748 -2.181521 3.729748 3.729748 -2.494678 3.729748 3.729748 -2.852659 3.729748 3.729748 -3.261896 3.729748 3.729748 -3.729748 3.729748 3.729748 -4.264621 3.729748 3.729748 -4.876131 3.729748 3.729748 -5.575266 3.729748 3.729748 -6.374593 3.729748 3.729748 -0 4.264621 3.729748 -0 4.264621 3.729748 -0 4.264621 3.729748 -0.002268731 4.264621 3.729748 -0.07076883 4.264621 3.729748 -0.1119241 4.264621 3.729748 -0.1475052 4.264621 3.729748 -0.1846606 4.264621 3.729748 -0.2245119 4.264621 3.729748 -0.2679612 4.264621 3.729748 -0.3158431 4.264621 3.729748 -0.3689944 4.264621 3.729748 -0.4282948 4.264621 3.729748 -0.494694 4.264621 3.729748 -0.5692344 4.264621 3.729748 -0.6530715 4.264621 3.729748 -0.7474945 4.264621 3.729748 -0.8539475 4.264621 3.729748 -0.974052 4.264621 3.729748 -1.113885 4.264621 3.729748 -1.27456 4.264621 3.729748 -1.458117 4.264621 3.729748 -1.667858 4.264621 3.729748 -1.907556 4.264621 3.729748 -2.181521 4.264621 3.729748 -2.494678 4.264621 3.729748 -2.852659 4.264621 3.729748 -3.261896 4.264621 3.729748 -3.729748 4.264621 3.729748 -4.264621 4.264621 3.729748 -4.876131 4.264621 3.729748 -5.575266 4.264621 3.729748 -6.374593 4.264621 3.729748 -0 4.876131 3.729748 -0 4.876131 3.729748 -0 4.876131 3.729748 -0.002268731 4.876131 3.729748 -0.07076883 4.876131 3.729748 -0.1119241 4.876131 3.729748 -0.1475052 4.876131 3.729748 -0.1846606 4.876131 3.729748 -0.2245119 4.876131 3.729748 -0.2679612 4.876131 3.729748 -0.3158431 4.876131 3.729748 -0.3689944 4.876131 3.729748 -0.4282948 4.876131 3.729748 -0.494694 4.876131 3.729748 -0.5692344 4.876131 3.729748 -0.6530715 4.876131 3.729748 -0.7474945 4.876131 3.729748 -0.8539475 4.876131 3.729748 -0.974052 4.876131 3.729748 -1.113885 4.876131 3.729748 -1.27456 4.876131 3.729748 -1.458117 4.876131 3.729748 -1.667858 4.876131 3.729748 -1.907556 4.876131 3.729748 -2.181521 4.876131 3.729748 -2.494678 4.876131 3.729748 -2.852659 4.876131 3.729748 -3.261896 4.876131 3.729748 -3.729748 4.876131 3.729748 -4.264621 4.876131 3.729748 -4.876131 4.876131 3.729748 -5.575266 4.876131 3.729748 -6.374593 4.876131 3.729748 -0 5.575266 3.729748 -0 5.575266 3.729748 -0 5.575266 3.729748 -0.002268731 5.575266 3.729748 -0.07076883 5.575266 3.729748 -0.1119241 5.575266 3.729748 -0.1475052 5.575266 3.729748 -0.1846606 5.575266 3.729748 -0.2245119 5.575266 3.729748 -0.2679612 5.575266 3.729748 -0.3158431 5.575266 3.729748 -0.3689944 5.575266 3.729748 -0.4282948 5.575266 3.729748 -0.494694 5.575266 3.729748 -0.5692344 5.575266 3.729748 -0.6530715 5.575266 3.729748 -0.7474945 5.575266 3.729748 -0.8539475 5.575266 3.729748 -0.974052 5.575266 3.729748 -1.113885 5.575266 3.729748 -1.27456 5.575266 3.729748 -1.458117 5.575266 3.729748 -1.667858 5.575266 3.729748 -1.907556 5.575266 3.729748 -2.181521 5.575266 3.729748 -2.494678 5.575266 3.729748 -2.852659 5.575266 3.729748 -3.261896 5.575266 3.729748 -3.729748 5.575266 3.729748 -4.264621 5.575266 3.729748 -4.876131 5.575266 3.729748 -5.575266 5.575266 3.729748 -6.374593 5.575266 3.729748 -0 6.374593 3.729748 -0 6.374593 3.729748 -0 6.374593 3.729748 -0.002268731 6.374593 3.729748 -0.07076883 6.374593 3.729748 -0.1119241 6.374593 3.729748 -0.1475052 6.374593 3.729748 -0.1846606 6.374593 3.729748 -0.2245119 6.374593 3.729748 -0.2679612 6.374593 3.729748 -0.3158431 6.374593 3.729748 -0.3689944 6.374593 3.729748 -0.4282948 6.374593 3.729748 -0.494694 6.374593 3.729748 -0.5692344 6.374593 3.729748 -0.6530715 6.374593 3.729748 -0.7474945 6.374593 3.729748 -0.8539475 6.374593 3.729748 -0.974052 6.374593 3.729748 -1.113885 6.374593 3.729748 -1.27456 6.374593 3.729748 -1.458117 6.374593 3.729748 -1.667858 6.374593 3.729748 -1.907556 6.374593 3.729748 -2.181521 6.374593 3.729748 -2.494678 6.374593 3.729748 -2.852659 6.374593 3.729748 -3.261896 6.374593 3.729748 -3.729748 6.374593 3.729748 -4.264621 6.374593 3.729748 -4.876131 6.374593 3.729748 -5.575266 6.374593 3.729748 -6.374593 6.374593 3.729748 -0 0 4.264621 -0 0 4.264621 -0 0 4.264621 -0.002268731 0 4.264621 -0.07076883 0 4.264621 -0.1119241 0 4.264621 -0.1475052 0 4.264621 -0.1846606 0 4.264621 -0.2245119 0 4.264621 -0.2679612 0 4.264621 -0.3158431 0 4.264621 -0.3689944 0 4.264621 -0.4282948 0 4.264621 -0.494694 0 4.264621 -0.5692344 0 4.264621 -0.6530715 0 4.264621 -0.7474945 0 4.264621 -0.8539475 0 4.264621 -0.974052 0 4.264621 -1.113885 0 4.264621 -1.27456 0 4.264621 -1.458117 0 4.264621 -1.667858 0 4.264621 -1.907556 0 4.264621 -2.181521 0 4.264621 -2.494678 0 4.264621 -2.852659 0 4.264621 -3.261896 0 4.264621 -3.729748 0 4.264621 -4.264621 0 4.264621 -4.876131 0 4.264621 -5.575266 0 4.264621 -6.374593 0 4.264621 -0 0 4.264621 -0 0 4.264621 -0 0 4.264621 -0.002268731 0 4.264621 -0.07076883 0 4.264621 -0.1119241 0 4.264621 -0.1475052 0 4.264621 -0.1846606 0 4.264621 -0.2245119 0 4.264621 -0.2679612 0 4.264621 -0.3158431 0 4.264621 -0.3689944 0 4.264621 -0.4282948 0 4.264621 -0.494694 0 4.264621 -0.5692344 0 4.264621 -0.6530715 0 4.264621 -0.7474945 0 4.264621 -0.8539475 0 4.264621 -0.974052 0 4.264621 -1.113885 0 4.264621 -1.27456 0 4.264621 -1.458117 0 4.264621 -1.667858 0 4.264621 -1.907556 0 4.264621 -2.181521 0 4.264621 -2.494678 0 4.264621 -2.852659 0 4.264621 -3.261896 0 4.264621 -3.729748 0 4.264621 -4.264621 0 4.264621 -4.876131 0 4.264621 -5.575266 0 4.264621 -6.374593 0 4.264621 -0 0 4.264621 -0 0 4.264621 -0 0 4.264621 -0.002268731 0 4.264621 -0.07076883 0 4.264621 -0.1119241 0 4.264621 -0.1475052 0 4.264621 -0.1846606 0 4.264621 -0.2245119 0 4.264621 -0.2679612 0 4.264621 -0.3158431 0 4.264621 -0.3689944 0 4.264621 -0.4282948 0 4.264621 -0.494694 0 4.264621 -0.5692344 0 4.264621 -0.6530715 0 4.264621 -0.7474945 0 4.264621 -0.8539475 0 4.264621 -0.974052 0 4.264621 -1.113885 0 4.264621 -1.27456 0 4.264621 -1.458117 0 4.264621 -1.667858 0 4.264621 -1.907556 0 4.264621 -2.181521 0 4.264621 -2.494678 0 4.264621 -2.852659 0 4.264621 -3.261896 0 4.264621 -3.729748 0 4.264621 -4.264621 0 4.264621 -4.876131 0 4.264621 -5.575266 0 4.264621 -6.374593 0 4.264621 -0 0.002268731 4.264621 -0 0.002268731 4.264621 -0 0.002268731 4.264621 -0.002268731 0.002268731 4.264621 -0.07076883 0.002268731 4.264621 -0.1119241 0.002268731 4.264621 -0.1475052 0.002268731 4.264621 -0.1846606 0.002268731 4.264621 -0.2245119 0.002268731 4.264621 -0.2679612 0.002268731 4.264621 -0.3158431 0.002268731 4.264621 -0.3689944 0.002268731 4.264621 -0.4282948 0.002268731 4.264621 -0.494694 0.002268731 4.264621 -0.5692344 0.002268731 4.264621 -0.6530715 0.002268731 4.264621 -0.7474945 0.002268731 4.264621 -0.8539475 0.002268731 4.264621 -0.974052 0.002268731 4.264621 -1.113885 0.002268731 4.264621 -1.27456 0.002268731 4.264621 -1.458117 0.002268731 4.264621 -1.667858 0.002268731 4.264621 -1.907556 0.002268731 4.264621 -2.181521 0.002268731 4.264621 -2.494678 0.002268731 4.264621 -2.852659 0.002268731 4.264621 -3.261896 0.002268731 4.264621 -3.729748 0.002268731 4.264621 -4.264621 0.002268731 4.264621 -4.876131 0.002268731 4.264621 -5.575266 0.002268731 4.264621 -6.374593 0.002268731 4.264621 -0 0.07076883 4.264621 -0 0.07076883 4.264621 -0 0.07076883 4.264621 -0.002268731 0.07076883 4.264621 -0.07076883 0.07076883 4.264621 -0.1119241 0.07076883 4.264621 -0.1475052 0.07076883 4.264621 -0.1846606 0.07076883 4.264621 -0.2245119 0.07076883 4.264621 -0.2679612 0.07076883 4.264621 -0.3158431 0.07076883 4.264621 -0.3689944 0.07076883 4.264621 -0.4282948 0.07076883 4.264621 -0.494694 0.07076883 4.264621 -0.5692344 0.07076883 4.264621 -0.6530715 0.07076883 4.264621 -0.7474945 0.07076883 4.264621 -0.8539475 0.07076883 4.264621 -0.974052 0.07076883 4.264621 -1.113885 0.07076883 4.264621 -1.27456 0.07076883 4.264621 -1.458117 0.07076883 4.264621 -1.667858 0.07076883 4.264621 -1.907556 0.07076883 4.264621 -2.181521 0.07076883 4.264621 -2.494678 0.07076883 4.264621 -2.852659 0.07076883 4.264621 -3.261896 0.07076883 4.264621 -3.729748 0.07076883 4.264621 -4.264621 0.07076883 4.264621 -4.876131 0.07076883 4.264621 -5.575266 0.07076883 4.264621 -6.374593 0.07076883 4.264621 -0 0.1119241 4.264621 -0 0.1119241 4.264621 -0 0.1119241 4.264621 -0.002268731 0.1119241 4.264621 -0.07076883 0.1119241 4.264621 -0.1119241 0.1119241 4.264621 -0.1475052 0.1119241 4.264621 -0.1846606 0.1119241 4.264621 -0.2245119 0.1119241 4.264621 -0.2679612 0.1119241 4.264621 -0.3158431 0.1119241 4.264621 -0.3689944 0.1119241 4.264621 -0.4282948 0.1119241 4.264621 -0.494694 0.1119241 4.264621 -0.5692344 0.1119241 4.264621 -0.6530715 0.1119241 4.264621 -0.7474945 0.1119241 4.264621 -0.8539475 0.1119241 4.264621 -0.974052 0.1119241 4.264621 -1.113885 0.1119241 4.264621 -1.27456 0.1119241 4.264621 -1.458117 0.1119241 4.264621 -1.667858 0.1119241 4.264621 -1.907556 0.1119241 4.264621 -2.181521 0.1119241 4.264621 -2.494678 0.1119241 4.264621 -2.852659 0.1119241 4.264621 -3.261896 0.1119241 4.264621 -3.729748 0.1119241 4.264621 -4.264621 0.1119241 4.264621 -4.876131 0.1119241 4.264621 -5.575266 0.1119241 4.264621 -6.374593 0.1119241 4.264621 -0 0.1475052 4.264621 -0 0.1475052 4.264621 -0 0.1475052 4.264621 -0.002268731 0.1475052 4.264621 -0.07076883 0.1475052 4.264621 -0.1119241 0.1475052 4.264621 -0.1475052 0.1475052 4.264621 -0.1846606 0.1475052 4.264621 -0.2245119 0.1475052 4.264621 -0.2679612 0.1475052 4.264621 -0.3158431 0.1475052 4.264621 -0.3689944 0.1475052 4.264621 -0.4282948 0.1475052 4.264621 -0.494694 0.1475052 4.264621 -0.5692344 0.1475052 4.264621 -0.6530715 0.1475052 4.264621 -0.7474945 0.1475052 4.264621 -0.8539475 0.1475052 4.264621 -0.974052 0.1475052 4.264621 -1.113885 0.1475052 4.264621 -1.27456 0.1475052 4.264621 -1.458117 0.1475052 4.264621 -1.667858 0.1475052 4.264621 -1.907556 0.1475052 4.264621 -2.181521 0.1475052 4.264621 -2.494678 0.1475052 4.264621 -2.852659 0.1475052 4.264621 -3.261896 0.1475052 4.264621 -3.729748 0.1475052 4.264621 -4.264621 0.1475052 4.264621 -4.876131 0.1475052 4.264621 -5.575266 0.1475052 4.264621 -6.374593 0.1475052 4.264621 -0 0.1846606 4.264621 -0 0.1846606 4.264621 -0 0.1846606 4.264621 -0.002268731 0.1846606 4.264621 -0.07076883 0.1846606 4.264621 -0.1119241 0.1846606 4.264621 -0.1475052 0.1846606 4.264621 -0.1846606 0.1846606 4.264621 -0.2245119 0.1846606 4.264621 -0.2679612 0.1846606 4.264621 -0.3158431 0.1846606 4.264621 -0.3689944 0.1846606 4.264621 -0.4282948 0.1846606 4.264621 -0.494694 0.1846606 4.264621 -0.5692344 0.1846606 4.264621 -0.6530715 0.1846606 4.264621 -0.7474945 0.1846606 4.264621 -0.8539475 0.1846606 4.264621 -0.974052 0.1846606 4.264621 -1.113885 0.1846606 4.264621 -1.27456 0.1846606 4.264621 -1.458117 0.1846606 4.264621 -1.667858 0.1846606 4.264621 -1.907556 0.1846606 4.264621 -2.181521 0.1846606 4.264621 -2.494678 0.1846606 4.264621 -2.852659 0.1846606 4.264621 -3.261896 0.1846606 4.264621 -3.729748 0.1846606 4.264621 -4.264621 0.1846606 4.264621 -4.876131 0.1846606 4.264621 -5.575266 0.1846606 4.264621 -6.374593 0.1846606 4.264621 -0 0.2245119 4.264621 -0 0.2245119 4.264621 -0 0.2245119 4.264621 -0.002268731 0.2245119 4.264621 -0.07076883 0.2245119 4.264621 -0.1119241 0.2245119 4.264621 -0.1475052 0.2245119 4.264621 -0.1846606 0.2245119 4.264621 -0.2245119 0.2245119 4.264621 -0.2679612 0.2245119 4.264621 -0.3158431 0.2245119 4.264621 -0.3689944 0.2245119 4.264621 -0.4282948 0.2245119 4.264621 -0.494694 0.2245119 4.264621 -0.5692344 0.2245119 4.264621 -0.6530715 0.2245119 4.264621 -0.7474945 0.2245119 4.264621 -0.8539475 0.2245119 4.264621 -0.974052 0.2245119 4.264621 -1.113885 0.2245119 4.264621 -1.27456 0.2245119 4.264621 -1.458117 0.2245119 4.264621 -1.667858 0.2245119 4.264621 -1.907556 0.2245119 4.264621 -2.181521 0.2245119 4.264621 -2.494678 0.2245119 4.264621 -2.852659 0.2245119 4.264621 -3.261896 0.2245119 4.264621 -3.729748 0.2245119 4.264621 -4.264621 0.2245119 4.264621 -4.876131 0.2245119 4.264621 -5.575266 0.2245119 4.264621 -6.374593 0.2245119 4.264621 -0 0.2679612 4.264621 -0 0.2679612 4.264621 -0 0.2679612 4.264621 -0.002268731 0.2679612 4.264621 -0.07076883 0.2679612 4.264621 -0.1119241 0.2679612 4.264621 -0.1475052 0.2679612 4.264621 -0.1846606 0.2679612 4.264621 -0.2245119 0.2679612 4.264621 -0.2679612 0.2679612 4.264621 -0.3158431 0.2679612 4.264621 -0.3689944 0.2679612 4.264621 -0.4282948 0.2679612 4.264621 -0.494694 0.2679612 4.264621 -0.5692344 0.2679612 4.264621 -0.6530715 0.2679612 4.264621 -0.7474945 0.2679612 4.264621 -0.8539475 0.2679612 4.264621 -0.974052 0.2679612 4.264621 -1.113885 0.2679612 4.264621 -1.27456 0.2679612 4.264621 -1.458117 0.2679612 4.264621 -1.667858 0.2679612 4.264621 -1.907556 0.2679612 4.264621 -2.181521 0.2679612 4.264621 -2.494678 0.2679612 4.264621 -2.852659 0.2679612 4.264621 -3.261896 0.2679612 4.264621 -3.729748 0.2679612 4.264621 -4.264621 0.2679612 4.264621 -4.876131 0.2679612 4.264621 -5.575266 0.2679612 4.264621 -6.374593 0.2679612 4.264621 -0 0.3158431 4.264621 -0 0.3158431 4.264621 -0 0.3158431 4.264621 -0.002268731 0.3158431 4.264621 -0.07076883 0.3158431 4.264621 -0.1119241 0.3158431 4.264621 -0.1475052 0.3158431 4.264621 -0.1846606 0.3158431 4.264621 -0.2245119 0.3158431 4.264621 -0.2679612 0.3158431 4.264621 -0.3158431 0.3158431 4.264621 -0.3689944 0.3158431 4.264621 -0.4282948 0.3158431 4.264621 -0.494694 0.3158431 4.264621 -0.5692344 0.3158431 4.264621 -0.6530715 0.3158431 4.264621 -0.7474945 0.3158431 4.264621 -0.8539475 0.3158431 4.264621 -0.974052 0.3158431 4.264621 -1.113885 0.3158431 4.264621 -1.27456 0.3158431 4.264621 -1.458117 0.3158431 4.264621 -1.667858 0.3158431 4.264621 -1.907556 0.3158431 4.264621 -2.181521 0.3158431 4.264621 -2.494678 0.3158431 4.264621 -2.852659 0.3158431 4.264621 -3.261896 0.3158431 4.264621 -3.729748 0.3158431 4.264621 -4.264621 0.3158431 4.264621 -4.876131 0.3158431 4.264621 -5.575266 0.3158431 4.264621 -6.374593 0.3158431 4.264621 -0 0.3689944 4.264621 -0 0.3689944 4.264621 -0 0.3689944 4.264621 -0.002268731 0.3689944 4.264621 -0.07076883 0.3689944 4.264621 -0.1119241 0.3689944 4.264621 -0.1475052 0.3689944 4.264621 -0.1846606 0.3689944 4.264621 -0.2245119 0.3689944 4.264621 -0.2679612 0.3689944 4.264621 -0.3158431 0.3689944 4.264621 -0.3689944 0.3689944 4.264621 -0.4282948 0.3689944 4.264621 -0.494694 0.3689944 4.264621 -0.5692344 0.3689944 4.264621 -0.6530715 0.3689944 4.264621 -0.7474945 0.3689944 4.264621 -0.8539475 0.3689944 4.264621 -0.974052 0.3689944 4.264621 -1.113885 0.3689944 4.264621 -1.27456 0.3689944 4.264621 -1.458117 0.3689944 4.264621 -1.667858 0.3689944 4.264621 -1.907556 0.3689944 4.264621 -2.181521 0.3689944 4.264621 -2.494678 0.3689944 4.264621 -2.852659 0.3689944 4.264621 -3.261896 0.3689944 4.264621 -3.729748 0.3689944 4.264621 -4.264621 0.3689944 4.264621 -4.876131 0.3689944 4.264621 -5.575266 0.3689944 4.264621 -6.374593 0.3689944 4.264621 -0 0.4282948 4.264621 -0 0.4282948 4.264621 -0 0.4282948 4.264621 -0.002268731 0.4282948 4.264621 -0.07076883 0.4282948 4.264621 -0.1119241 0.4282948 4.264621 -0.1475052 0.4282948 4.264621 -0.1846606 0.4282948 4.264621 -0.2245119 0.4282948 4.264621 -0.2679612 0.4282948 4.264621 -0.3158431 0.4282948 4.264621 -0.3689944 0.4282948 4.264621 -0.4282948 0.4282948 4.264621 -0.494694 0.4282948 4.264621 -0.5692344 0.4282948 4.264621 -0.6530715 0.4282948 4.264621 -0.7474945 0.4282948 4.264621 -0.8539475 0.4282948 4.264621 -0.974052 0.4282948 4.264621 -1.113885 0.4282948 4.264621 -1.27456 0.4282948 4.264621 -1.458117 0.4282948 4.264621 -1.667858 0.4282948 4.264621 -1.907556 0.4282948 4.264621 -2.181521 0.4282948 4.264621 -2.494678 0.4282948 4.264621 -2.852659 0.4282948 4.264621 -3.261896 0.4282948 4.264621 -3.729748 0.4282948 4.264621 -4.264621 0.4282948 4.264621 -4.876131 0.4282948 4.264621 -5.575266 0.4282948 4.264621 -6.374593 0.4282948 4.264621 -0 0.494694 4.264621 -0 0.494694 4.264621 -0 0.494694 4.264621 -0.002268731 0.494694 4.264621 -0.07076883 0.494694 4.264621 -0.1119241 0.494694 4.264621 -0.1475052 0.494694 4.264621 -0.1846606 0.494694 4.264621 -0.2245119 0.494694 4.264621 -0.2679612 0.494694 4.264621 -0.3158431 0.494694 4.264621 -0.3689944 0.494694 4.264621 -0.4282948 0.494694 4.264621 -0.494694 0.494694 4.264621 -0.5692344 0.494694 4.264621 -0.6530715 0.494694 4.264621 -0.7474945 0.494694 4.264621 -0.8539475 0.494694 4.264621 -0.974052 0.494694 4.264621 -1.113885 0.494694 4.264621 -1.27456 0.494694 4.264621 -1.458117 0.494694 4.264621 -1.667858 0.494694 4.264621 -1.907556 0.494694 4.264621 -2.181521 0.494694 4.264621 -2.494678 0.494694 4.264621 -2.852659 0.494694 4.264621 -3.261896 0.494694 4.264621 -3.729748 0.494694 4.264621 -4.264621 0.494694 4.264621 -4.876131 0.494694 4.264621 -5.575266 0.494694 4.264621 -6.374593 0.494694 4.264621 -0 0.5692344 4.264621 -0 0.5692344 4.264621 -0 0.5692344 4.264621 -0.002268731 0.5692344 4.264621 -0.07076883 0.5692344 4.264621 -0.1119241 0.5692344 4.264621 -0.1475052 0.5692344 4.264621 -0.1846606 0.5692344 4.264621 -0.2245119 0.5692344 4.264621 -0.2679612 0.5692344 4.264621 -0.3158431 0.5692344 4.264621 -0.3689944 0.5692344 4.264621 -0.4282948 0.5692344 4.264621 -0.494694 0.5692344 4.264621 -0.5692344 0.5692344 4.264621 -0.6530715 0.5692344 4.264621 -0.7474945 0.5692344 4.264621 -0.8539475 0.5692344 4.264621 -0.974052 0.5692344 4.264621 -1.113885 0.5692344 4.264621 -1.27456 0.5692344 4.264621 -1.458117 0.5692344 4.264621 -1.667858 0.5692344 4.264621 -1.907556 0.5692344 4.264621 -2.181521 0.5692344 4.264621 -2.494678 0.5692344 4.264621 -2.852659 0.5692344 4.264621 -3.261896 0.5692344 4.264621 -3.729748 0.5692344 4.264621 -4.264621 0.5692344 4.264621 -4.876131 0.5692344 4.264621 -5.575266 0.5692344 4.264621 -6.374593 0.5692344 4.264621 -0 0.6530715 4.264621 -0 0.6530715 4.264621 -0 0.6530715 4.264621 -0.002268731 0.6530715 4.264621 -0.07076883 0.6530715 4.264621 -0.1119241 0.6530715 4.264621 -0.1475052 0.6530715 4.264621 -0.1846606 0.6530715 4.264621 -0.2245119 0.6530715 4.264621 -0.2679612 0.6530715 4.264621 -0.3158431 0.6530715 4.264621 -0.3689944 0.6530715 4.264621 -0.4282948 0.6530715 4.264621 -0.494694 0.6530715 4.264621 -0.5692344 0.6530715 4.264621 -0.6530715 0.6530715 4.264621 -0.7474945 0.6530715 4.264621 -0.8539475 0.6530715 4.264621 -0.974052 0.6530715 4.264621 -1.113885 0.6530715 4.264621 -1.27456 0.6530715 4.264621 -1.458117 0.6530715 4.264621 -1.667858 0.6530715 4.264621 -1.907556 0.6530715 4.264621 -2.181521 0.6530715 4.264621 -2.494678 0.6530715 4.264621 -2.852659 0.6530715 4.264621 -3.261896 0.6530715 4.264621 -3.729748 0.6530715 4.264621 -4.264621 0.6530715 4.264621 -4.876131 0.6530715 4.264621 -5.575266 0.6530715 4.264621 -6.374593 0.6530715 4.264621 -0 0.7474945 4.264621 -0 0.7474945 4.264621 -0 0.7474945 4.264621 -0.002268731 0.7474945 4.264621 -0.07076883 0.7474945 4.264621 -0.1119241 0.7474945 4.264621 -0.1475052 0.7474945 4.264621 -0.1846606 0.7474945 4.264621 -0.2245119 0.7474945 4.264621 -0.2679612 0.7474945 4.264621 -0.3158431 0.7474945 4.264621 -0.3689944 0.7474945 4.264621 -0.4282948 0.7474945 4.264621 -0.494694 0.7474945 4.264621 -0.5692344 0.7474945 4.264621 -0.6530715 0.7474945 4.264621 -0.7474945 0.7474945 4.264621 -0.8539475 0.7474945 4.264621 -0.974052 0.7474945 4.264621 -1.113885 0.7474945 4.264621 -1.27456 0.7474945 4.264621 -1.458117 0.7474945 4.264621 -1.667858 0.7474945 4.264621 -1.907556 0.7474945 4.264621 -2.181521 0.7474945 4.264621 -2.494678 0.7474945 4.264621 -2.852659 0.7474945 4.264621 -3.261896 0.7474945 4.264621 -3.729748 0.7474945 4.264621 -4.264621 0.7474945 4.264621 -4.876131 0.7474945 4.264621 -5.575266 0.7474945 4.264621 -6.374593 0.7474945 4.264621 -0 0.8539475 4.264621 -0 0.8539475 4.264621 -0 0.8539475 4.264621 -0.002268731 0.8539475 4.264621 -0.07076883 0.8539475 4.264621 -0.1119241 0.8539475 4.264621 -0.1475052 0.8539475 4.264621 -0.1846606 0.8539475 4.264621 -0.2245119 0.8539475 4.264621 -0.2679612 0.8539475 4.264621 -0.3158431 0.8539475 4.264621 -0.3689944 0.8539475 4.264621 -0.4282948 0.8539475 4.264621 -0.494694 0.8539475 4.264621 -0.5692344 0.8539475 4.264621 -0.6530715 0.8539475 4.264621 -0.7474945 0.8539475 4.264621 -0.8539475 0.8539475 4.264621 -0.974052 0.8539475 4.264621 -1.113885 0.8539475 4.264621 -1.27456 0.8539475 4.264621 -1.458117 0.8539475 4.264621 -1.667858 0.8539475 4.264621 -1.907556 0.8539475 4.264621 -2.181521 0.8539475 4.264621 -2.494678 0.8539475 4.264621 -2.852659 0.8539475 4.264621 -3.261896 0.8539475 4.264621 -3.729748 0.8539475 4.264621 -4.264621 0.8539475 4.264621 -4.876131 0.8539475 4.264621 -5.575266 0.8539475 4.264621 -6.374593 0.8539475 4.264621 -0 0.974052 4.264621 -0 0.974052 4.264621 -0 0.974052 4.264621 -0.002268731 0.974052 4.264621 -0.07076883 0.974052 4.264621 -0.1119241 0.974052 4.264621 -0.1475052 0.974052 4.264621 -0.1846606 0.974052 4.264621 -0.2245119 0.974052 4.264621 -0.2679612 0.974052 4.264621 -0.3158431 0.974052 4.264621 -0.3689944 0.974052 4.264621 -0.4282948 0.974052 4.264621 -0.494694 0.974052 4.264621 -0.5692344 0.974052 4.264621 -0.6530715 0.974052 4.264621 -0.7474945 0.974052 4.264621 -0.8539475 0.974052 4.264621 -0.974052 0.974052 4.264621 -1.113885 0.974052 4.264621 -1.27456 0.974052 4.264621 -1.458117 0.974052 4.264621 -1.667858 0.974052 4.264621 -1.907556 0.974052 4.264621 -2.181521 0.974052 4.264621 -2.494678 0.974052 4.264621 -2.852659 0.974052 4.264621 -3.261896 0.974052 4.264621 -3.729748 0.974052 4.264621 -4.264621 0.974052 4.264621 -4.876131 0.974052 4.264621 -5.575266 0.974052 4.264621 -6.374593 0.974052 4.264621 -0 1.113885 4.264621 -0 1.113885 4.264621 -0 1.113885 4.264621 -0.002268731 1.113885 4.264621 -0.07076883 1.113885 4.264621 -0.1119241 1.113885 4.264621 -0.1475052 1.113885 4.264621 -0.1846606 1.113885 4.264621 -0.2245119 1.113885 4.264621 -0.2679612 1.113885 4.264621 -0.3158431 1.113885 4.264621 -0.3689944 1.113885 4.264621 -0.4282948 1.113885 4.264621 -0.494694 1.113885 4.264621 -0.5692344 1.113885 4.264621 -0.6530715 1.113885 4.264621 -0.7474945 1.113885 4.264621 -0.8539475 1.113885 4.264621 -0.974052 1.113885 4.264621 -1.113885 1.113885 4.264621 -1.27456 1.113885 4.264621 -1.458117 1.113885 4.264621 -1.667858 1.113885 4.264621 -1.907556 1.113885 4.264621 -2.181521 1.113885 4.264621 -2.494678 1.113885 4.264621 -2.852659 1.113885 4.264621 -3.261896 1.113885 4.264621 -3.729748 1.113885 4.264621 -4.264621 1.113885 4.264621 -4.876131 1.113885 4.264621 -5.575266 1.113885 4.264621 -6.374593 1.113885 4.264621 -0 1.27456 4.264621 -0 1.27456 4.264621 -0 1.27456 4.264621 -0.002268731 1.27456 4.264621 -0.07076883 1.27456 4.264621 -0.1119241 1.27456 4.264621 -0.1475052 1.27456 4.264621 -0.1846606 1.27456 4.264621 -0.2245119 1.27456 4.264621 -0.2679612 1.27456 4.264621 -0.3158431 1.27456 4.264621 -0.3689944 1.27456 4.264621 -0.4282948 1.27456 4.264621 -0.494694 1.27456 4.264621 -0.5692344 1.27456 4.264621 -0.6530715 1.27456 4.264621 -0.7474945 1.27456 4.264621 -0.8539475 1.27456 4.264621 -0.974052 1.27456 4.264621 -1.113885 1.27456 4.264621 -1.27456 1.27456 4.264621 -1.458117 1.27456 4.264621 -1.667858 1.27456 4.264621 -1.907556 1.27456 4.264621 -2.181521 1.27456 4.264621 -2.494678 1.27456 4.264621 -2.852659 1.27456 4.264621 -3.261896 1.27456 4.264621 -3.729748 1.27456 4.264621 -4.264621 1.27456 4.264621 -4.876131 1.27456 4.264621 -5.575266 1.27456 4.264621 -6.374593 1.27456 4.264621 -0 1.458117 4.264621 -0 1.458117 4.264621 -0 1.458117 4.264621 -0.002268731 1.458117 4.264621 -0.07076883 1.458117 4.264621 -0.1119241 1.458117 4.264621 -0.1475052 1.458117 4.264621 -0.1846606 1.458117 4.264621 -0.2245119 1.458117 4.264621 -0.2679612 1.458117 4.264621 -0.3158431 1.458117 4.264621 -0.3689944 1.458117 4.264621 -0.4282948 1.458117 4.264621 -0.494694 1.458117 4.264621 -0.5692344 1.458117 4.264621 -0.6530715 1.458117 4.264621 -0.7474945 1.458117 4.264621 -0.8539475 1.458117 4.264621 -0.974052 1.458117 4.264621 -1.113885 1.458117 4.264621 -1.27456 1.458117 4.264621 -1.458117 1.458117 4.264621 -1.667858 1.458117 4.264621 -1.907556 1.458117 4.264621 -2.181521 1.458117 4.264621 -2.494678 1.458117 4.264621 -2.852659 1.458117 4.264621 -3.261896 1.458117 4.264621 -3.729748 1.458117 4.264621 -4.264621 1.458117 4.264621 -4.876131 1.458117 4.264621 -5.575266 1.458117 4.264621 -6.374593 1.458117 4.264621 -0 1.667858 4.264621 -0 1.667858 4.264621 -0 1.667858 4.264621 -0.002268731 1.667858 4.264621 -0.07076883 1.667858 4.264621 -0.1119241 1.667858 4.264621 -0.1475052 1.667858 4.264621 -0.1846606 1.667858 4.264621 -0.2245119 1.667858 4.264621 -0.2679612 1.667858 4.264621 -0.3158431 1.667858 4.264621 -0.3689944 1.667858 4.264621 -0.4282948 1.667858 4.264621 -0.494694 1.667858 4.264621 -0.5692344 1.667858 4.264621 -0.6530715 1.667858 4.264621 -0.7474945 1.667858 4.264621 -0.8539475 1.667858 4.264621 -0.974052 1.667858 4.264621 -1.113885 1.667858 4.264621 -1.27456 1.667858 4.264621 -1.458117 1.667858 4.264621 -1.667858 1.667858 4.264621 -1.907556 1.667858 4.264621 -2.181521 1.667858 4.264621 -2.494678 1.667858 4.264621 -2.852659 1.667858 4.264621 -3.261896 1.667858 4.264621 -3.729748 1.667858 4.264621 -4.264621 1.667858 4.264621 -4.876131 1.667858 4.264621 -5.575266 1.667858 4.264621 -6.374593 1.667858 4.264621 -0 1.907556 4.264621 -0 1.907556 4.264621 -0 1.907556 4.264621 -0.002268731 1.907556 4.264621 -0.07076883 1.907556 4.264621 -0.1119241 1.907556 4.264621 -0.1475052 1.907556 4.264621 -0.1846606 1.907556 4.264621 -0.2245119 1.907556 4.264621 -0.2679612 1.907556 4.264621 -0.3158431 1.907556 4.264621 -0.3689944 1.907556 4.264621 -0.4282948 1.907556 4.264621 -0.494694 1.907556 4.264621 -0.5692344 1.907556 4.264621 -0.6530715 1.907556 4.264621 -0.7474945 1.907556 4.264621 -0.8539475 1.907556 4.264621 -0.974052 1.907556 4.264621 -1.113885 1.907556 4.264621 -1.27456 1.907556 4.264621 -1.458117 1.907556 4.264621 -1.667858 1.907556 4.264621 -1.907556 1.907556 4.264621 -2.181521 1.907556 4.264621 -2.494678 1.907556 4.264621 -2.852659 1.907556 4.264621 -3.261896 1.907556 4.264621 -3.729748 1.907556 4.264621 -4.264621 1.907556 4.264621 -4.876131 1.907556 4.264621 -5.575266 1.907556 4.264621 -6.374593 1.907556 4.264621 -0 2.181521 4.264621 -0 2.181521 4.264621 -0 2.181521 4.264621 -0.002268731 2.181521 4.264621 -0.07076883 2.181521 4.264621 -0.1119241 2.181521 4.264621 -0.1475052 2.181521 4.264621 -0.1846606 2.181521 4.264621 -0.2245119 2.181521 4.264621 -0.2679612 2.181521 4.264621 -0.3158431 2.181521 4.264621 -0.3689944 2.181521 4.264621 -0.4282948 2.181521 4.264621 -0.494694 2.181521 4.264621 -0.5692344 2.181521 4.264621 -0.6530715 2.181521 4.264621 -0.7474945 2.181521 4.264621 -0.8539475 2.181521 4.264621 -0.974052 2.181521 4.264621 -1.113885 2.181521 4.264621 -1.27456 2.181521 4.264621 -1.458117 2.181521 4.264621 -1.667858 2.181521 4.264621 -1.907556 2.181521 4.264621 -2.181521 2.181521 4.264621 -2.494678 2.181521 4.264621 -2.852659 2.181521 4.264621 -3.261896 2.181521 4.264621 -3.729748 2.181521 4.264621 -4.264621 2.181521 4.264621 -4.876131 2.181521 4.264621 -5.575266 2.181521 4.264621 -6.374593 2.181521 4.264621 -0 2.494678 4.264621 -0 2.494678 4.264621 -0 2.494678 4.264621 -0.002268731 2.494678 4.264621 -0.07076883 2.494678 4.264621 -0.1119241 2.494678 4.264621 -0.1475052 2.494678 4.264621 -0.1846606 2.494678 4.264621 -0.2245119 2.494678 4.264621 -0.2679612 2.494678 4.264621 -0.3158431 2.494678 4.264621 -0.3689944 2.494678 4.264621 -0.4282948 2.494678 4.264621 -0.494694 2.494678 4.264621 -0.5692344 2.494678 4.264621 -0.6530715 2.494678 4.264621 -0.7474945 2.494678 4.264621 -0.8539475 2.494678 4.264621 -0.974052 2.494678 4.264621 -1.113885 2.494678 4.264621 -1.27456 2.494678 4.264621 -1.458117 2.494678 4.264621 -1.667858 2.494678 4.264621 -1.907556 2.494678 4.264621 -2.181521 2.494678 4.264621 -2.494678 2.494678 4.264621 -2.852659 2.494678 4.264621 -3.261896 2.494678 4.264621 -3.729748 2.494678 4.264621 -4.264621 2.494678 4.264621 -4.876131 2.494678 4.264621 -5.575266 2.494678 4.264621 -6.374593 2.494678 4.264621 -0 2.852659 4.264621 -0 2.852659 4.264621 -0 2.852659 4.264621 -0.002268731 2.852659 4.264621 -0.07076883 2.852659 4.264621 -0.1119241 2.852659 4.264621 -0.1475052 2.852659 4.264621 -0.1846606 2.852659 4.264621 -0.2245119 2.852659 4.264621 -0.2679612 2.852659 4.264621 -0.3158431 2.852659 4.264621 -0.3689944 2.852659 4.264621 -0.4282948 2.852659 4.264621 -0.494694 2.852659 4.264621 -0.5692344 2.852659 4.264621 -0.6530715 2.852659 4.264621 -0.7474945 2.852659 4.264621 -0.8539475 2.852659 4.264621 -0.974052 2.852659 4.264621 -1.113885 2.852659 4.264621 -1.27456 2.852659 4.264621 -1.458117 2.852659 4.264621 -1.667858 2.852659 4.264621 -1.907556 2.852659 4.264621 -2.181521 2.852659 4.264621 -2.494678 2.852659 4.264621 -2.852659 2.852659 4.264621 -3.261896 2.852659 4.264621 -3.729748 2.852659 4.264621 -4.264621 2.852659 4.264621 -4.876131 2.852659 4.264621 -5.575266 2.852659 4.264621 -6.374593 2.852659 4.264621 -0 3.261896 4.264621 -0 3.261896 4.264621 -0 3.261896 4.264621 -0.002268731 3.261896 4.264621 -0.07076883 3.261896 4.264621 -0.1119241 3.261896 4.264621 -0.1475052 3.261896 4.264621 -0.1846606 3.261896 4.264621 -0.2245119 3.261896 4.264621 -0.2679612 3.261896 4.264621 -0.3158431 3.261896 4.264621 -0.3689944 3.261896 4.264621 -0.4282948 3.261896 4.264621 -0.494694 3.261896 4.264621 -0.5692344 3.261896 4.264621 -0.6530715 3.261896 4.264621 -0.7474945 3.261896 4.264621 -0.8539475 3.261896 4.264621 -0.974052 3.261896 4.264621 -1.113885 3.261896 4.264621 -1.27456 3.261896 4.264621 -1.458117 3.261896 4.264621 -1.667858 3.261896 4.264621 -1.907556 3.261896 4.264621 -2.181521 3.261896 4.264621 -2.494678 3.261896 4.264621 -2.852659 3.261896 4.264621 -3.261896 3.261896 4.264621 -3.729748 3.261896 4.264621 -4.264621 3.261896 4.264621 -4.876131 3.261896 4.264621 -5.575266 3.261896 4.264621 -6.374593 3.261896 4.264621 -0 3.729748 4.264621 -0 3.729748 4.264621 -0 3.729748 4.264621 -0.002268731 3.729748 4.264621 -0.07076883 3.729748 4.264621 -0.1119241 3.729748 4.264621 -0.1475052 3.729748 4.264621 -0.1846606 3.729748 4.264621 -0.2245119 3.729748 4.264621 -0.2679612 3.729748 4.264621 -0.3158431 3.729748 4.264621 -0.3689944 3.729748 4.264621 -0.4282948 3.729748 4.264621 -0.494694 3.729748 4.264621 -0.5692344 3.729748 4.264621 -0.6530715 3.729748 4.264621 -0.7474945 3.729748 4.264621 -0.8539475 3.729748 4.264621 -0.974052 3.729748 4.264621 -1.113885 3.729748 4.264621 -1.27456 3.729748 4.264621 -1.458117 3.729748 4.264621 -1.667858 3.729748 4.264621 -1.907556 3.729748 4.264621 -2.181521 3.729748 4.264621 -2.494678 3.729748 4.264621 -2.852659 3.729748 4.264621 -3.261896 3.729748 4.264621 -3.729748 3.729748 4.264621 -4.264621 3.729748 4.264621 -4.876131 3.729748 4.264621 -5.575266 3.729748 4.264621 -6.374593 3.729748 4.264621 -0 4.264621 4.264621 -0 4.264621 4.264621 -0 4.264621 4.264621 -0.002268731 4.264621 4.264621 -0.07076883 4.264621 4.264621 -0.1119241 4.264621 4.264621 -0.1475052 4.264621 4.264621 -0.1846606 4.264621 4.264621 -0.2245119 4.264621 4.264621 -0.2679612 4.264621 4.264621 -0.3158431 4.264621 4.264621 -0.3689944 4.264621 4.264621 -0.4282948 4.264621 4.264621 -0.494694 4.264621 4.264621 -0.5692344 4.264621 4.264621 -0.6530715 4.264621 4.264621 -0.7474945 4.264621 4.264621 -0.8539475 4.264621 4.264621 -0.974052 4.264621 4.264621 -1.113885 4.264621 4.264621 -1.27456 4.264621 4.264621 -1.458117 4.264621 4.264621 -1.667858 4.264621 4.264621 -1.907556 4.264621 4.264621 -2.181521 4.264621 4.264621 -2.494678 4.264621 4.264621 -2.852659 4.264621 4.264621 -3.261896 4.264621 4.264621 -3.729748 4.264621 4.264621 -4.264621 4.264621 4.264621 -4.876131 4.264621 4.264621 -5.575266 4.264621 4.264621 -6.374593 4.264621 4.264621 -0 4.876131 4.264621 -0 4.876131 4.264621 -0 4.876131 4.264621 -0.002268731 4.876131 4.264621 -0.07076883 4.876131 4.264621 -0.1119241 4.876131 4.264621 -0.1475052 4.876131 4.264621 -0.1846606 4.876131 4.264621 -0.2245119 4.876131 4.264621 -0.2679612 4.876131 4.264621 -0.3158431 4.876131 4.264621 -0.3689944 4.876131 4.264621 -0.4282948 4.876131 4.264621 -0.494694 4.876131 4.264621 -0.5692344 4.876131 4.264621 -0.6530715 4.876131 4.264621 -0.7474945 4.876131 4.264621 -0.8539475 4.876131 4.264621 -0.974052 4.876131 4.264621 -1.113885 4.876131 4.264621 -1.27456 4.876131 4.264621 -1.458117 4.876131 4.264621 -1.667858 4.876131 4.264621 -1.907556 4.876131 4.264621 -2.181521 4.876131 4.264621 -2.494678 4.876131 4.264621 -2.852659 4.876131 4.264621 -3.261896 4.876131 4.264621 -3.729748 4.876131 4.264621 -4.264621 4.876131 4.264621 -4.876131 4.876131 4.264621 -5.575266 4.876131 4.264621 -6.374593 4.876131 4.264621 -0 5.575266 4.264621 -0 5.575266 4.264621 -0 5.575266 4.264621 -0.002268731 5.575266 4.264621 -0.07076883 5.575266 4.264621 -0.1119241 5.575266 4.264621 -0.1475052 5.575266 4.264621 -0.1846606 5.575266 4.264621 -0.2245119 5.575266 4.264621 -0.2679612 5.575266 4.264621 -0.3158431 5.575266 4.264621 -0.3689944 5.575266 4.264621 -0.4282948 5.575266 4.264621 -0.494694 5.575266 4.264621 -0.5692344 5.575266 4.264621 -0.6530715 5.575266 4.264621 -0.7474945 5.575266 4.264621 -0.8539475 5.575266 4.264621 -0.974052 5.575266 4.264621 -1.113885 5.575266 4.264621 -1.27456 5.575266 4.264621 -1.458117 5.575266 4.264621 -1.667858 5.575266 4.264621 -1.907556 5.575266 4.264621 -2.181521 5.575266 4.264621 -2.494678 5.575266 4.264621 -2.852659 5.575266 4.264621 -3.261896 5.575266 4.264621 -3.729748 5.575266 4.264621 -4.264621 5.575266 4.264621 -4.876131 5.575266 4.264621 -5.575266 5.575266 4.264621 -6.374593 5.575266 4.264621 -0 6.374593 4.264621 -0 6.374593 4.264621 -0 6.374593 4.264621 -0.002268731 6.374593 4.264621 -0.07076883 6.374593 4.264621 -0.1119241 6.374593 4.264621 -0.1475052 6.374593 4.264621 -0.1846606 6.374593 4.264621 -0.2245119 6.374593 4.264621 -0.2679612 6.374593 4.264621 -0.3158431 6.374593 4.264621 -0.3689944 6.374593 4.264621 -0.4282948 6.374593 4.264621 -0.494694 6.374593 4.264621 -0.5692344 6.374593 4.264621 -0.6530715 6.374593 4.264621 -0.7474945 6.374593 4.264621 -0.8539475 6.374593 4.264621 -0.974052 6.374593 4.264621 -1.113885 6.374593 4.264621 -1.27456 6.374593 4.264621 -1.458117 6.374593 4.264621 -1.667858 6.374593 4.264621 -1.907556 6.374593 4.264621 -2.181521 6.374593 4.264621 -2.494678 6.374593 4.264621 -2.852659 6.374593 4.264621 -3.261896 6.374593 4.264621 -3.729748 6.374593 4.264621 -4.264621 6.374593 4.264621 -4.876131 6.374593 4.264621 -5.575266 6.374593 4.264621 -6.374593 6.374593 4.264621 -0 0 4.876131 -0 0 4.876131 -0 0 4.876131 -0.002268731 0 4.876131 -0.07076883 0 4.876131 -0.1119241 0 4.876131 -0.1475052 0 4.876131 -0.1846606 0 4.876131 -0.2245119 0 4.876131 -0.2679612 0 4.876131 -0.3158431 0 4.876131 -0.3689944 0 4.876131 -0.4282948 0 4.876131 -0.494694 0 4.876131 -0.5692344 0 4.876131 -0.6530715 0 4.876131 -0.7474945 0 4.876131 -0.8539475 0 4.876131 -0.974052 0 4.876131 -1.113885 0 4.876131 -1.27456 0 4.876131 -1.458117 0 4.876131 -1.667858 0 4.876131 -1.907556 0 4.876131 -2.181521 0 4.876131 -2.494678 0 4.876131 -2.852659 0 4.876131 -3.261896 0 4.876131 -3.729748 0 4.876131 -4.264621 0 4.876131 -4.876131 0 4.876131 -5.575266 0 4.876131 -6.374593 0 4.876131 -0 0 4.876131 -0 0 4.876131 -0 0 4.876131 -0.002268731 0 4.876131 -0.07076883 0 4.876131 -0.1119241 0 4.876131 -0.1475052 0 4.876131 -0.1846606 0 4.876131 -0.2245119 0 4.876131 -0.2679612 0 4.876131 -0.3158431 0 4.876131 -0.3689944 0 4.876131 -0.4282948 0 4.876131 -0.494694 0 4.876131 -0.5692344 0 4.876131 -0.6530715 0 4.876131 -0.7474945 0 4.876131 -0.8539475 0 4.876131 -0.974052 0 4.876131 -1.113885 0 4.876131 -1.27456 0 4.876131 -1.458117 0 4.876131 -1.667858 0 4.876131 -1.907556 0 4.876131 -2.181521 0 4.876131 -2.494678 0 4.876131 -2.852659 0 4.876131 -3.261896 0 4.876131 -3.729748 0 4.876131 -4.264621 0 4.876131 -4.876131 0 4.876131 -5.575266 0 4.876131 -6.374593 0 4.876131 -0 0 4.876131 -0 0 4.876131 -0 0 4.876131 -0.002268731 0 4.876131 -0.07076883 0 4.876131 -0.1119241 0 4.876131 -0.1475052 0 4.876131 -0.1846606 0 4.876131 -0.2245119 0 4.876131 -0.2679612 0 4.876131 -0.3158431 0 4.876131 -0.3689944 0 4.876131 -0.4282948 0 4.876131 -0.494694 0 4.876131 -0.5692344 0 4.876131 -0.6530715 0 4.876131 -0.7474945 0 4.876131 -0.8539475 0 4.876131 -0.974052 0 4.876131 -1.113885 0 4.876131 -1.27456 0 4.876131 -1.458117 0 4.876131 -1.667858 0 4.876131 -1.907556 0 4.876131 -2.181521 0 4.876131 -2.494678 0 4.876131 -2.852659 0 4.876131 -3.261896 0 4.876131 -3.729748 0 4.876131 -4.264621 0 4.876131 -4.876131 0 4.876131 -5.575266 0 4.876131 -6.374593 0 4.876131 -0 0.002268731 4.876131 -0 0.002268731 4.876131 -0 0.002268731 4.876131 -0.002268731 0.002268731 4.876131 -0.07076883 0.002268731 4.876131 -0.1119241 0.002268731 4.876131 -0.1475052 0.002268731 4.876131 -0.1846606 0.002268731 4.876131 -0.2245119 0.002268731 4.876131 -0.2679612 0.002268731 4.876131 -0.3158431 0.002268731 4.876131 -0.3689944 0.002268731 4.876131 -0.4282948 0.002268731 4.876131 -0.494694 0.002268731 4.876131 -0.5692344 0.002268731 4.876131 -0.6530715 0.002268731 4.876131 -0.7474945 0.002268731 4.876131 -0.8539475 0.002268731 4.876131 -0.974052 0.002268731 4.876131 -1.113885 0.002268731 4.876131 -1.27456 0.002268731 4.876131 -1.458117 0.002268731 4.876131 -1.667858 0.002268731 4.876131 -1.907556 0.002268731 4.876131 -2.181521 0.002268731 4.876131 -2.494678 0.002268731 4.876131 -2.852659 0.002268731 4.876131 -3.261896 0.002268731 4.876131 -3.729748 0.002268731 4.876131 -4.264621 0.002268731 4.876131 -4.876131 0.002268731 4.876131 -5.575266 0.002268731 4.876131 -6.374593 0.002268731 4.876131 -0 0.07076883 4.876131 -0 0.07076883 4.876131 -0 0.07076883 4.876131 -0.002268731 0.07076883 4.876131 -0.07076883 0.07076883 4.876131 -0.1119241 0.07076883 4.876131 -0.1475052 0.07076883 4.876131 -0.1846606 0.07076883 4.876131 -0.2245119 0.07076883 4.876131 -0.2679612 0.07076883 4.876131 -0.3158431 0.07076883 4.876131 -0.3689944 0.07076883 4.876131 -0.4282948 0.07076883 4.876131 -0.494694 0.07076883 4.876131 -0.5692344 0.07076883 4.876131 -0.6530715 0.07076883 4.876131 -0.7474945 0.07076883 4.876131 -0.8539475 0.07076883 4.876131 -0.974052 0.07076883 4.876131 -1.113885 0.07076883 4.876131 -1.27456 0.07076883 4.876131 -1.458117 0.07076883 4.876131 -1.667858 0.07076883 4.876131 -1.907556 0.07076883 4.876131 -2.181521 0.07076883 4.876131 -2.494678 0.07076883 4.876131 -2.852659 0.07076883 4.876131 -3.261896 0.07076883 4.876131 -3.729748 0.07076883 4.876131 -4.264621 0.07076883 4.876131 -4.876131 0.07076883 4.876131 -5.575266 0.07076883 4.876131 -6.374593 0.07076883 4.876131 -0 0.1119241 4.876131 -0 0.1119241 4.876131 -0 0.1119241 4.876131 -0.002268731 0.1119241 4.876131 -0.07076883 0.1119241 4.876131 -0.1119241 0.1119241 4.876131 -0.1475052 0.1119241 4.876131 -0.1846606 0.1119241 4.876131 -0.2245119 0.1119241 4.876131 -0.2679612 0.1119241 4.876131 -0.3158431 0.1119241 4.876131 -0.3689944 0.1119241 4.876131 -0.4282948 0.1119241 4.876131 -0.494694 0.1119241 4.876131 -0.5692344 0.1119241 4.876131 -0.6530715 0.1119241 4.876131 -0.7474945 0.1119241 4.876131 -0.8539475 0.1119241 4.876131 -0.974052 0.1119241 4.876131 -1.113885 0.1119241 4.876131 -1.27456 0.1119241 4.876131 -1.458117 0.1119241 4.876131 -1.667858 0.1119241 4.876131 -1.907556 0.1119241 4.876131 -2.181521 0.1119241 4.876131 -2.494678 0.1119241 4.876131 -2.852659 0.1119241 4.876131 -3.261896 0.1119241 4.876131 -3.729748 0.1119241 4.876131 -4.264621 0.1119241 4.876131 -4.876131 0.1119241 4.876131 -5.575266 0.1119241 4.876131 -6.374593 0.1119241 4.876131 -0 0.1475052 4.876131 -0 0.1475052 4.876131 -0 0.1475052 4.876131 -0.002268731 0.1475052 4.876131 -0.07076883 0.1475052 4.876131 -0.1119241 0.1475052 4.876131 -0.1475052 0.1475052 4.876131 -0.1846606 0.1475052 4.876131 -0.2245119 0.1475052 4.876131 -0.2679612 0.1475052 4.876131 -0.3158431 0.1475052 4.876131 -0.3689944 0.1475052 4.876131 -0.4282948 0.1475052 4.876131 -0.494694 0.1475052 4.876131 -0.5692344 0.1475052 4.876131 -0.6530715 0.1475052 4.876131 -0.7474945 0.1475052 4.876131 -0.8539475 0.1475052 4.876131 -0.974052 0.1475052 4.876131 -1.113885 0.1475052 4.876131 -1.27456 0.1475052 4.876131 -1.458117 0.1475052 4.876131 -1.667858 0.1475052 4.876131 -1.907556 0.1475052 4.876131 -2.181521 0.1475052 4.876131 -2.494678 0.1475052 4.876131 -2.852659 0.1475052 4.876131 -3.261896 0.1475052 4.876131 -3.729748 0.1475052 4.876131 -4.264621 0.1475052 4.876131 -4.876131 0.1475052 4.876131 -5.575266 0.1475052 4.876131 -6.374593 0.1475052 4.876131 -0 0.1846606 4.876131 -0 0.1846606 4.876131 -0 0.1846606 4.876131 -0.002268731 0.1846606 4.876131 -0.07076883 0.1846606 4.876131 -0.1119241 0.1846606 4.876131 -0.1475052 0.1846606 4.876131 -0.1846606 0.1846606 4.876131 -0.2245119 0.1846606 4.876131 -0.2679612 0.1846606 4.876131 -0.3158431 0.1846606 4.876131 -0.3689944 0.1846606 4.876131 -0.4282948 0.1846606 4.876131 -0.494694 0.1846606 4.876131 -0.5692344 0.1846606 4.876131 -0.6530715 0.1846606 4.876131 -0.7474945 0.1846606 4.876131 -0.8539475 0.1846606 4.876131 -0.974052 0.1846606 4.876131 -1.113885 0.1846606 4.876131 -1.27456 0.1846606 4.876131 -1.458117 0.1846606 4.876131 -1.667858 0.1846606 4.876131 -1.907556 0.1846606 4.876131 -2.181521 0.1846606 4.876131 -2.494678 0.1846606 4.876131 -2.852659 0.1846606 4.876131 -3.261896 0.1846606 4.876131 -3.729748 0.1846606 4.876131 -4.264621 0.1846606 4.876131 -4.876131 0.1846606 4.876131 -5.575266 0.1846606 4.876131 -6.374593 0.1846606 4.876131 -0 0.2245119 4.876131 -0 0.2245119 4.876131 -0 0.2245119 4.876131 -0.002268731 0.2245119 4.876131 -0.07076883 0.2245119 4.876131 -0.1119241 0.2245119 4.876131 -0.1475052 0.2245119 4.876131 -0.1846606 0.2245119 4.876131 -0.2245119 0.2245119 4.876131 -0.2679612 0.2245119 4.876131 -0.3158431 0.2245119 4.876131 -0.3689944 0.2245119 4.876131 -0.4282948 0.2245119 4.876131 -0.494694 0.2245119 4.876131 -0.5692344 0.2245119 4.876131 -0.6530715 0.2245119 4.876131 -0.7474945 0.2245119 4.876131 -0.8539475 0.2245119 4.876131 -0.974052 0.2245119 4.876131 -1.113885 0.2245119 4.876131 -1.27456 0.2245119 4.876131 -1.458117 0.2245119 4.876131 -1.667858 0.2245119 4.876131 -1.907556 0.2245119 4.876131 -2.181521 0.2245119 4.876131 -2.494678 0.2245119 4.876131 -2.852659 0.2245119 4.876131 -3.261896 0.2245119 4.876131 -3.729748 0.2245119 4.876131 -4.264621 0.2245119 4.876131 -4.876131 0.2245119 4.876131 -5.575266 0.2245119 4.876131 -6.374593 0.2245119 4.876131 -0 0.2679612 4.876131 -0 0.2679612 4.876131 -0 0.2679612 4.876131 -0.002268731 0.2679612 4.876131 -0.07076883 0.2679612 4.876131 -0.1119241 0.2679612 4.876131 -0.1475052 0.2679612 4.876131 -0.1846606 0.2679612 4.876131 -0.2245119 0.2679612 4.876131 -0.2679612 0.2679612 4.876131 -0.3158431 0.2679612 4.876131 -0.3689944 0.2679612 4.876131 -0.4282948 0.2679612 4.876131 -0.494694 0.2679612 4.876131 -0.5692344 0.2679612 4.876131 -0.6530715 0.2679612 4.876131 -0.7474945 0.2679612 4.876131 -0.8539475 0.2679612 4.876131 -0.974052 0.2679612 4.876131 -1.113885 0.2679612 4.876131 -1.27456 0.2679612 4.876131 -1.458117 0.2679612 4.876131 -1.667858 0.2679612 4.876131 -1.907556 0.2679612 4.876131 -2.181521 0.2679612 4.876131 -2.494678 0.2679612 4.876131 -2.852659 0.2679612 4.876131 -3.261896 0.2679612 4.876131 -3.729748 0.2679612 4.876131 -4.264621 0.2679612 4.876131 -4.876131 0.2679612 4.876131 -5.575266 0.2679612 4.876131 -6.374593 0.2679612 4.876131 -0 0.3158431 4.876131 -0 0.3158431 4.876131 -0 0.3158431 4.876131 -0.002268731 0.3158431 4.876131 -0.07076883 0.3158431 4.876131 -0.1119241 0.3158431 4.876131 -0.1475052 0.3158431 4.876131 -0.1846606 0.3158431 4.876131 -0.2245119 0.3158431 4.876131 -0.2679612 0.3158431 4.876131 -0.3158431 0.3158431 4.876131 -0.3689944 0.3158431 4.876131 -0.4282948 0.3158431 4.876131 -0.494694 0.3158431 4.876131 -0.5692344 0.3158431 4.876131 -0.6530715 0.3158431 4.876131 -0.7474945 0.3158431 4.876131 -0.8539475 0.3158431 4.876131 -0.974052 0.3158431 4.876131 -1.113885 0.3158431 4.876131 -1.27456 0.3158431 4.876131 -1.458117 0.3158431 4.876131 -1.667858 0.3158431 4.876131 -1.907556 0.3158431 4.876131 -2.181521 0.3158431 4.876131 -2.494678 0.3158431 4.876131 -2.852659 0.3158431 4.876131 -3.261896 0.3158431 4.876131 -3.729748 0.3158431 4.876131 -4.264621 0.3158431 4.876131 -4.876131 0.3158431 4.876131 -5.575266 0.3158431 4.876131 -6.374593 0.3158431 4.876131 -0 0.3689944 4.876131 -0 0.3689944 4.876131 -0 0.3689944 4.876131 -0.002268731 0.3689944 4.876131 -0.07076883 0.3689944 4.876131 -0.1119241 0.3689944 4.876131 -0.1475052 0.3689944 4.876131 -0.1846606 0.3689944 4.876131 -0.2245119 0.3689944 4.876131 -0.2679612 0.3689944 4.876131 -0.3158431 0.3689944 4.876131 -0.3689944 0.3689944 4.876131 -0.4282948 0.3689944 4.876131 -0.494694 0.3689944 4.876131 -0.5692344 0.3689944 4.876131 -0.6530715 0.3689944 4.876131 -0.7474945 0.3689944 4.876131 -0.8539475 0.3689944 4.876131 -0.974052 0.3689944 4.876131 -1.113885 0.3689944 4.876131 -1.27456 0.3689944 4.876131 -1.458117 0.3689944 4.876131 -1.667858 0.3689944 4.876131 -1.907556 0.3689944 4.876131 -2.181521 0.3689944 4.876131 -2.494678 0.3689944 4.876131 -2.852659 0.3689944 4.876131 -3.261896 0.3689944 4.876131 -3.729748 0.3689944 4.876131 -4.264621 0.3689944 4.876131 -4.876131 0.3689944 4.876131 -5.575266 0.3689944 4.876131 -6.374593 0.3689944 4.876131 -0 0.4282948 4.876131 -0 0.4282948 4.876131 -0 0.4282948 4.876131 -0.002268731 0.4282948 4.876131 -0.07076883 0.4282948 4.876131 -0.1119241 0.4282948 4.876131 -0.1475052 0.4282948 4.876131 -0.1846606 0.4282948 4.876131 -0.2245119 0.4282948 4.876131 -0.2679612 0.4282948 4.876131 -0.3158431 0.4282948 4.876131 -0.3689944 0.4282948 4.876131 -0.4282948 0.4282948 4.876131 -0.494694 0.4282948 4.876131 -0.5692344 0.4282948 4.876131 -0.6530715 0.4282948 4.876131 -0.7474945 0.4282948 4.876131 -0.8539475 0.4282948 4.876131 -0.974052 0.4282948 4.876131 -1.113885 0.4282948 4.876131 -1.27456 0.4282948 4.876131 -1.458117 0.4282948 4.876131 -1.667858 0.4282948 4.876131 -1.907556 0.4282948 4.876131 -2.181521 0.4282948 4.876131 -2.494678 0.4282948 4.876131 -2.852659 0.4282948 4.876131 -3.261896 0.4282948 4.876131 -3.729748 0.4282948 4.876131 -4.264621 0.4282948 4.876131 -4.876131 0.4282948 4.876131 -5.575266 0.4282948 4.876131 -6.374593 0.4282948 4.876131 -0 0.494694 4.876131 -0 0.494694 4.876131 -0 0.494694 4.876131 -0.002268731 0.494694 4.876131 -0.07076883 0.494694 4.876131 -0.1119241 0.494694 4.876131 -0.1475052 0.494694 4.876131 -0.1846606 0.494694 4.876131 -0.2245119 0.494694 4.876131 -0.2679612 0.494694 4.876131 -0.3158431 0.494694 4.876131 -0.3689944 0.494694 4.876131 -0.4282948 0.494694 4.876131 -0.494694 0.494694 4.876131 -0.5692344 0.494694 4.876131 -0.6530715 0.494694 4.876131 -0.7474945 0.494694 4.876131 -0.8539475 0.494694 4.876131 -0.974052 0.494694 4.876131 -1.113885 0.494694 4.876131 -1.27456 0.494694 4.876131 -1.458117 0.494694 4.876131 -1.667858 0.494694 4.876131 -1.907556 0.494694 4.876131 -2.181521 0.494694 4.876131 -2.494678 0.494694 4.876131 -2.852659 0.494694 4.876131 -3.261896 0.494694 4.876131 -3.729748 0.494694 4.876131 -4.264621 0.494694 4.876131 -4.876131 0.494694 4.876131 -5.575266 0.494694 4.876131 -6.374593 0.494694 4.876131 -0 0.5692344 4.876131 -0 0.5692344 4.876131 -0 0.5692344 4.876131 -0.002268731 0.5692344 4.876131 -0.07076883 0.5692344 4.876131 -0.1119241 0.5692344 4.876131 -0.1475052 0.5692344 4.876131 -0.1846606 0.5692344 4.876131 -0.2245119 0.5692344 4.876131 -0.2679612 0.5692344 4.876131 -0.3158431 0.5692344 4.876131 -0.3689944 0.5692344 4.876131 -0.4282948 0.5692344 4.876131 -0.494694 0.5692344 4.876131 -0.5692344 0.5692344 4.876131 -0.6530715 0.5692344 4.876131 -0.7474945 0.5692344 4.876131 -0.8539475 0.5692344 4.876131 -0.974052 0.5692344 4.876131 -1.113885 0.5692344 4.876131 -1.27456 0.5692344 4.876131 -1.458117 0.5692344 4.876131 -1.667858 0.5692344 4.876131 -1.907556 0.5692344 4.876131 -2.181521 0.5692344 4.876131 -2.494678 0.5692344 4.876131 -2.852659 0.5692344 4.876131 -3.261896 0.5692344 4.876131 -3.729748 0.5692344 4.876131 -4.264621 0.5692344 4.876131 -4.876131 0.5692344 4.876131 -5.575266 0.5692344 4.876131 -6.374593 0.5692344 4.876131 -0 0.6530715 4.876131 -0 0.6530715 4.876131 -0 0.6530715 4.876131 -0.002268731 0.6530715 4.876131 -0.07076883 0.6530715 4.876131 -0.1119241 0.6530715 4.876131 -0.1475052 0.6530715 4.876131 -0.1846606 0.6530715 4.876131 -0.2245119 0.6530715 4.876131 -0.2679612 0.6530715 4.876131 -0.3158431 0.6530715 4.876131 -0.3689944 0.6530715 4.876131 -0.4282948 0.6530715 4.876131 -0.494694 0.6530715 4.876131 -0.5692344 0.6530715 4.876131 -0.6530715 0.6530715 4.876131 -0.7474945 0.6530715 4.876131 -0.8539475 0.6530715 4.876131 -0.974052 0.6530715 4.876131 -1.113885 0.6530715 4.876131 -1.27456 0.6530715 4.876131 -1.458117 0.6530715 4.876131 -1.667858 0.6530715 4.876131 -1.907556 0.6530715 4.876131 -2.181521 0.6530715 4.876131 -2.494678 0.6530715 4.876131 -2.852659 0.6530715 4.876131 -3.261896 0.6530715 4.876131 -3.729748 0.6530715 4.876131 -4.264621 0.6530715 4.876131 -4.876131 0.6530715 4.876131 -5.575266 0.6530715 4.876131 -6.374593 0.6530715 4.876131 -0 0.7474945 4.876131 -0 0.7474945 4.876131 -0 0.7474945 4.876131 -0.002268731 0.7474945 4.876131 -0.07076883 0.7474945 4.876131 -0.1119241 0.7474945 4.876131 -0.1475052 0.7474945 4.876131 -0.1846606 0.7474945 4.876131 -0.2245119 0.7474945 4.876131 -0.2679612 0.7474945 4.876131 -0.3158431 0.7474945 4.876131 -0.3689944 0.7474945 4.876131 -0.4282948 0.7474945 4.876131 -0.494694 0.7474945 4.876131 -0.5692344 0.7474945 4.876131 -0.6530715 0.7474945 4.876131 -0.7474945 0.7474945 4.876131 -0.8539475 0.7474945 4.876131 -0.974052 0.7474945 4.876131 -1.113885 0.7474945 4.876131 -1.27456 0.7474945 4.876131 -1.458117 0.7474945 4.876131 -1.667858 0.7474945 4.876131 -1.907556 0.7474945 4.876131 -2.181521 0.7474945 4.876131 -2.494678 0.7474945 4.876131 -2.852659 0.7474945 4.876131 -3.261896 0.7474945 4.876131 -3.729748 0.7474945 4.876131 -4.264621 0.7474945 4.876131 -4.876131 0.7474945 4.876131 -5.575266 0.7474945 4.876131 -6.374593 0.7474945 4.876131 -0 0.8539475 4.876131 -0 0.8539475 4.876131 -0 0.8539475 4.876131 -0.002268731 0.8539475 4.876131 -0.07076883 0.8539475 4.876131 -0.1119241 0.8539475 4.876131 -0.1475052 0.8539475 4.876131 -0.1846606 0.8539475 4.876131 -0.2245119 0.8539475 4.876131 -0.2679612 0.8539475 4.876131 -0.3158431 0.8539475 4.876131 -0.3689944 0.8539475 4.876131 -0.4282948 0.8539475 4.876131 -0.494694 0.8539475 4.876131 -0.5692344 0.8539475 4.876131 -0.6530715 0.8539475 4.876131 -0.7474945 0.8539475 4.876131 -0.8539475 0.8539475 4.876131 -0.974052 0.8539475 4.876131 -1.113885 0.8539475 4.876131 -1.27456 0.8539475 4.876131 -1.458117 0.8539475 4.876131 -1.667858 0.8539475 4.876131 -1.907556 0.8539475 4.876131 -2.181521 0.8539475 4.876131 -2.494678 0.8539475 4.876131 -2.852659 0.8539475 4.876131 -3.261896 0.8539475 4.876131 -3.729748 0.8539475 4.876131 -4.264621 0.8539475 4.876131 -4.876131 0.8539475 4.876131 -5.575266 0.8539475 4.876131 -6.374593 0.8539475 4.876131 -0 0.974052 4.876131 -0 0.974052 4.876131 -0 0.974052 4.876131 -0.002268731 0.974052 4.876131 -0.07076883 0.974052 4.876131 -0.1119241 0.974052 4.876131 -0.1475052 0.974052 4.876131 -0.1846606 0.974052 4.876131 -0.2245119 0.974052 4.876131 -0.2679612 0.974052 4.876131 -0.3158431 0.974052 4.876131 -0.3689944 0.974052 4.876131 -0.4282948 0.974052 4.876131 -0.494694 0.974052 4.876131 -0.5692344 0.974052 4.876131 -0.6530715 0.974052 4.876131 -0.7474945 0.974052 4.876131 -0.8539475 0.974052 4.876131 -0.974052 0.974052 4.876131 -1.113885 0.974052 4.876131 -1.27456 0.974052 4.876131 -1.458117 0.974052 4.876131 -1.667858 0.974052 4.876131 -1.907556 0.974052 4.876131 -2.181521 0.974052 4.876131 -2.494678 0.974052 4.876131 -2.852659 0.974052 4.876131 -3.261896 0.974052 4.876131 -3.729748 0.974052 4.876131 -4.264621 0.974052 4.876131 -4.876131 0.974052 4.876131 -5.575266 0.974052 4.876131 -6.374593 0.974052 4.876131 -0 1.113885 4.876131 -0 1.113885 4.876131 -0 1.113885 4.876131 -0.002268731 1.113885 4.876131 -0.07076883 1.113885 4.876131 -0.1119241 1.113885 4.876131 -0.1475052 1.113885 4.876131 -0.1846606 1.113885 4.876131 -0.2245119 1.113885 4.876131 -0.2679612 1.113885 4.876131 -0.3158431 1.113885 4.876131 -0.3689944 1.113885 4.876131 -0.4282948 1.113885 4.876131 -0.494694 1.113885 4.876131 -0.5692344 1.113885 4.876131 -0.6530715 1.113885 4.876131 -0.7474945 1.113885 4.876131 -0.8539475 1.113885 4.876131 -0.974052 1.113885 4.876131 -1.113885 1.113885 4.876131 -1.27456 1.113885 4.876131 -1.458117 1.113885 4.876131 -1.667858 1.113885 4.876131 -1.907556 1.113885 4.876131 -2.181521 1.113885 4.876131 -2.494678 1.113885 4.876131 -2.852659 1.113885 4.876131 -3.261896 1.113885 4.876131 -3.729748 1.113885 4.876131 -4.264621 1.113885 4.876131 -4.876131 1.113885 4.876131 -5.575266 1.113885 4.876131 -6.374593 1.113885 4.876131 -0 1.27456 4.876131 -0 1.27456 4.876131 -0 1.27456 4.876131 -0.002268731 1.27456 4.876131 -0.07076883 1.27456 4.876131 -0.1119241 1.27456 4.876131 -0.1475052 1.27456 4.876131 -0.1846606 1.27456 4.876131 -0.2245119 1.27456 4.876131 -0.2679612 1.27456 4.876131 -0.3158431 1.27456 4.876131 -0.3689944 1.27456 4.876131 -0.4282948 1.27456 4.876131 -0.494694 1.27456 4.876131 -0.5692344 1.27456 4.876131 -0.6530715 1.27456 4.876131 -0.7474945 1.27456 4.876131 -0.8539475 1.27456 4.876131 -0.974052 1.27456 4.876131 -1.113885 1.27456 4.876131 -1.27456 1.27456 4.876131 -1.458117 1.27456 4.876131 -1.667858 1.27456 4.876131 -1.907556 1.27456 4.876131 -2.181521 1.27456 4.876131 -2.494678 1.27456 4.876131 -2.852659 1.27456 4.876131 -3.261896 1.27456 4.876131 -3.729748 1.27456 4.876131 -4.264621 1.27456 4.876131 -4.876131 1.27456 4.876131 -5.575266 1.27456 4.876131 -6.374593 1.27456 4.876131 -0 1.458117 4.876131 -0 1.458117 4.876131 -0 1.458117 4.876131 -0.002268731 1.458117 4.876131 -0.07076883 1.458117 4.876131 -0.1119241 1.458117 4.876131 -0.1475052 1.458117 4.876131 -0.1846606 1.458117 4.876131 -0.2245119 1.458117 4.876131 -0.2679612 1.458117 4.876131 -0.3158431 1.458117 4.876131 -0.3689944 1.458117 4.876131 -0.4282948 1.458117 4.876131 -0.494694 1.458117 4.876131 -0.5692344 1.458117 4.876131 -0.6530715 1.458117 4.876131 -0.7474945 1.458117 4.876131 -0.8539475 1.458117 4.876131 -0.974052 1.458117 4.876131 -1.113885 1.458117 4.876131 -1.27456 1.458117 4.876131 -1.458117 1.458117 4.876131 -1.667858 1.458117 4.876131 -1.907556 1.458117 4.876131 -2.181521 1.458117 4.876131 -2.494678 1.458117 4.876131 -2.852659 1.458117 4.876131 -3.261896 1.458117 4.876131 -3.729748 1.458117 4.876131 -4.264621 1.458117 4.876131 -4.876131 1.458117 4.876131 -5.575266 1.458117 4.876131 -6.374593 1.458117 4.876131 -0 1.667858 4.876131 -0 1.667858 4.876131 -0 1.667858 4.876131 -0.002268731 1.667858 4.876131 -0.07076883 1.667858 4.876131 -0.1119241 1.667858 4.876131 -0.1475052 1.667858 4.876131 -0.1846606 1.667858 4.876131 -0.2245119 1.667858 4.876131 -0.2679612 1.667858 4.876131 -0.3158431 1.667858 4.876131 -0.3689944 1.667858 4.876131 -0.4282948 1.667858 4.876131 -0.494694 1.667858 4.876131 -0.5692344 1.667858 4.876131 -0.6530715 1.667858 4.876131 -0.7474945 1.667858 4.876131 -0.8539475 1.667858 4.876131 -0.974052 1.667858 4.876131 -1.113885 1.667858 4.876131 -1.27456 1.667858 4.876131 -1.458117 1.667858 4.876131 -1.667858 1.667858 4.876131 -1.907556 1.667858 4.876131 -2.181521 1.667858 4.876131 -2.494678 1.667858 4.876131 -2.852659 1.667858 4.876131 -3.261896 1.667858 4.876131 -3.729748 1.667858 4.876131 -4.264621 1.667858 4.876131 -4.876131 1.667858 4.876131 -5.575266 1.667858 4.876131 -6.374593 1.667858 4.876131 -0 1.907556 4.876131 -0 1.907556 4.876131 -0 1.907556 4.876131 -0.002268731 1.907556 4.876131 -0.07076883 1.907556 4.876131 -0.1119241 1.907556 4.876131 -0.1475052 1.907556 4.876131 -0.1846606 1.907556 4.876131 -0.2245119 1.907556 4.876131 -0.2679612 1.907556 4.876131 -0.3158431 1.907556 4.876131 -0.3689944 1.907556 4.876131 -0.4282948 1.907556 4.876131 -0.494694 1.907556 4.876131 -0.5692344 1.907556 4.876131 -0.6530715 1.907556 4.876131 -0.7474945 1.907556 4.876131 -0.8539475 1.907556 4.876131 -0.974052 1.907556 4.876131 -1.113885 1.907556 4.876131 -1.27456 1.907556 4.876131 -1.458117 1.907556 4.876131 -1.667858 1.907556 4.876131 -1.907556 1.907556 4.876131 -2.181521 1.907556 4.876131 -2.494678 1.907556 4.876131 -2.852659 1.907556 4.876131 -3.261896 1.907556 4.876131 -3.729748 1.907556 4.876131 -4.264621 1.907556 4.876131 -4.876131 1.907556 4.876131 -5.575266 1.907556 4.876131 -6.374593 1.907556 4.876131 -0 2.181521 4.876131 -0 2.181521 4.876131 -0 2.181521 4.876131 -0.002268731 2.181521 4.876131 -0.07076883 2.181521 4.876131 -0.1119241 2.181521 4.876131 -0.1475052 2.181521 4.876131 -0.1846606 2.181521 4.876131 -0.2245119 2.181521 4.876131 -0.2679612 2.181521 4.876131 -0.3158431 2.181521 4.876131 -0.3689944 2.181521 4.876131 -0.4282948 2.181521 4.876131 -0.494694 2.181521 4.876131 -0.5692344 2.181521 4.876131 -0.6530715 2.181521 4.876131 -0.7474945 2.181521 4.876131 -0.8539475 2.181521 4.876131 -0.974052 2.181521 4.876131 -1.113885 2.181521 4.876131 -1.27456 2.181521 4.876131 -1.458117 2.181521 4.876131 -1.667858 2.181521 4.876131 -1.907556 2.181521 4.876131 -2.181521 2.181521 4.876131 -2.494678 2.181521 4.876131 -2.852659 2.181521 4.876131 -3.261896 2.181521 4.876131 -3.729748 2.181521 4.876131 -4.264621 2.181521 4.876131 -4.876131 2.181521 4.876131 -5.575266 2.181521 4.876131 -6.374593 2.181521 4.876131 -0 2.494678 4.876131 -0 2.494678 4.876131 -0 2.494678 4.876131 -0.002268731 2.494678 4.876131 -0.07076883 2.494678 4.876131 -0.1119241 2.494678 4.876131 -0.1475052 2.494678 4.876131 -0.1846606 2.494678 4.876131 -0.2245119 2.494678 4.876131 -0.2679612 2.494678 4.876131 -0.3158431 2.494678 4.876131 -0.3689944 2.494678 4.876131 -0.4282948 2.494678 4.876131 -0.494694 2.494678 4.876131 -0.5692344 2.494678 4.876131 -0.6530715 2.494678 4.876131 -0.7474945 2.494678 4.876131 -0.8539475 2.494678 4.876131 -0.974052 2.494678 4.876131 -1.113885 2.494678 4.876131 -1.27456 2.494678 4.876131 -1.458117 2.494678 4.876131 -1.667858 2.494678 4.876131 -1.907556 2.494678 4.876131 -2.181521 2.494678 4.876131 -2.494678 2.494678 4.876131 -2.852659 2.494678 4.876131 -3.261896 2.494678 4.876131 -3.729748 2.494678 4.876131 -4.264621 2.494678 4.876131 -4.876131 2.494678 4.876131 -5.575266 2.494678 4.876131 -6.374593 2.494678 4.876131 -0 2.852659 4.876131 -0 2.852659 4.876131 -0 2.852659 4.876131 -0.002268731 2.852659 4.876131 -0.07076883 2.852659 4.876131 -0.1119241 2.852659 4.876131 -0.1475052 2.852659 4.876131 -0.1846606 2.852659 4.876131 -0.2245119 2.852659 4.876131 -0.2679612 2.852659 4.876131 -0.3158431 2.852659 4.876131 -0.3689944 2.852659 4.876131 -0.4282948 2.852659 4.876131 -0.494694 2.852659 4.876131 -0.5692344 2.852659 4.876131 -0.6530715 2.852659 4.876131 -0.7474945 2.852659 4.876131 -0.8539475 2.852659 4.876131 -0.974052 2.852659 4.876131 -1.113885 2.852659 4.876131 -1.27456 2.852659 4.876131 -1.458117 2.852659 4.876131 -1.667858 2.852659 4.876131 -1.907556 2.852659 4.876131 -2.181521 2.852659 4.876131 -2.494678 2.852659 4.876131 -2.852659 2.852659 4.876131 -3.261896 2.852659 4.876131 -3.729748 2.852659 4.876131 -4.264621 2.852659 4.876131 -4.876131 2.852659 4.876131 -5.575266 2.852659 4.876131 -6.374593 2.852659 4.876131 -0 3.261896 4.876131 -0 3.261896 4.876131 -0 3.261896 4.876131 -0.002268731 3.261896 4.876131 -0.07076883 3.261896 4.876131 -0.1119241 3.261896 4.876131 -0.1475052 3.261896 4.876131 -0.1846606 3.261896 4.876131 -0.2245119 3.261896 4.876131 -0.2679612 3.261896 4.876131 -0.3158431 3.261896 4.876131 -0.3689944 3.261896 4.876131 -0.4282948 3.261896 4.876131 -0.494694 3.261896 4.876131 -0.5692344 3.261896 4.876131 -0.6530715 3.261896 4.876131 -0.7474945 3.261896 4.876131 -0.8539475 3.261896 4.876131 -0.974052 3.261896 4.876131 -1.113885 3.261896 4.876131 -1.27456 3.261896 4.876131 -1.458117 3.261896 4.876131 -1.667858 3.261896 4.876131 -1.907556 3.261896 4.876131 -2.181521 3.261896 4.876131 -2.494678 3.261896 4.876131 -2.852659 3.261896 4.876131 -3.261896 3.261896 4.876131 -3.729748 3.261896 4.876131 -4.264621 3.261896 4.876131 -4.876131 3.261896 4.876131 -5.575266 3.261896 4.876131 -6.374593 3.261896 4.876131 -0 3.729748 4.876131 -0 3.729748 4.876131 -0 3.729748 4.876131 -0.002268731 3.729748 4.876131 -0.07076883 3.729748 4.876131 -0.1119241 3.729748 4.876131 -0.1475052 3.729748 4.876131 -0.1846606 3.729748 4.876131 -0.2245119 3.729748 4.876131 -0.2679612 3.729748 4.876131 -0.3158431 3.729748 4.876131 -0.3689944 3.729748 4.876131 -0.4282948 3.729748 4.876131 -0.494694 3.729748 4.876131 -0.5692344 3.729748 4.876131 -0.6530715 3.729748 4.876131 -0.7474945 3.729748 4.876131 -0.8539475 3.729748 4.876131 -0.974052 3.729748 4.876131 -1.113885 3.729748 4.876131 -1.27456 3.729748 4.876131 -1.458117 3.729748 4.876131 -1.667858 3.729748 4.876131 -1.907556 3.729748 4.876131 -2.181521 3.729748 4.876131 -2.494678 3.729748 4.876131 -2.852659 3.729748 4.876131 -3.261896 3.729748 4.876131 -3.729748 3.729748 4.876131 -4.264621 3.729748 4.876131 -4.876131 3.729748 4.876131 -5.575266 3.729748 4.876131 -6.374593 3.729748 4.876131 -0 4.264621 4.876131 -0 4.264621 4.876131 -0 4.264621 4.876131 -0.002268731 4.264621 4.876131 -0.07076883 4.264621 4.876131 -0.1119241 4.264621 4.876131 -0.1475052 4.264621 4.876131 -0.1846606 4.264621 4.876131 -0.2245119 4.264621 4.876131 -0.2679612 4.264621 4.876131 -0.3158431 4.264621 4.876131 -0.3689944 4.264621 4.876131 -0.4282948 4.264621 4.876131 -0.494694 4.264621 4.876131 -0.5692344 4.264621 4.876131 -0.6530715 4.264621 4.876131 -0.7474945 4.264621 4.876131 -0.8539475 4.264621 4.876131 -0.974052 4.264621 4.876131 -1.113885 4.264621 4.876131 -1.27456 4.264621 4.876131 -1.458117 4.264621 4.876131 -1.667858 4.264621 4.876131 -1.907556 4.264621 4.876131 -2.181521 4.264621 4.876131 -2.494678 4.264621 4.876131 -2.852659 4.264621 4.876131 -3.261896 4.264621 4.876131 -3.729748 4.264621 4.876131 -4.264621 4.264621 4.876131 -4.876131 4.264621 4.876131 -5.575266 4.264621 4.876131 -6.374593 4.264621 4.876131 -0 4.876131 4.876131 -0 4.876131 4.876131 -0 4.876131 4.876131 -0.002268731 4.876131 4.876131 -0.07076883 4.876131 4.876131 -0.1119241 4.876131 4.876131 -0.1475052 4.876131 4.876131 -0.1846606 4.876131 4.876131 -0.2245119 4.876131 4.876131 -0.2679612 4.876131 4.876131 -0.3158431 4.876131 4.876131 -0.3689944 4.876131 4.876131 -0.4282948 4.876131 4.876131 -0.494694 4.876131 4.876131 -0.5692344 4.876131 4.876131 -0.6530715 4.876131 4.876131 -0.7474945 4.876131 4.876131 -0.8539475 4.876131 4.876131 -0.974052 4.876131 4.876131 -1.113885 4.876131 4.876131 -1.27456 4.876131 4.876131 -1.458117 4.876131 4.876131 -1.667858 4.876131 4.876131 -1.907556 4.876131 4.876131 -2.181521 4.876131 4.876131 -2.494678 4.876131 4.876131 -2.852659 4.876131 4.876131 -3.261896 4.876131 4.876131 -3.729748 4.876131 4.876131 -4.264621 4.876131 4.876131 -4.876131 4.876131 4.876131 -5.575266 4.876131 4.876131 -6.374593 4.876131 4.876131 -0 5.575266 4.876131 -0 5.575266 4.876131 -0 5.575266 4.876131 -0.002268731 5.575266 4.876131 -0.07076883 5.575266 4.876131 -0.1119241 5.575266 4.876131 -0.1475052 5.575266 4.876131 -0.1846606 5.575266 4.876131 -0.2245119 5.575266 4.876131 -0.2679612 5.575266 4.876131 -0.3158431 5.575266 4.876131 -0.3689944 5.575266 4.876131 -0.4282948 5.575266 4.876131 -0.494694 5.575266 4.876131 -0.5692344 5.575266 4.876131 -0.6530715 5.575266 4.876131 -0.7474945 5.575266 4.876131 -0.8539475 5.575266 4.876131 -0.974052 5.575266 4.876131 -1.113885 5.575266 4.876131 -1.27456 5.575266 4.876131 -1.458117 5.575266 4.876131 -1.667858 5.575266 4.876131 -1.907556 5.575266 4.876131 -2.181521 5.575266 4.876131 -2.494678 5.575266 4.876131 -2.852659 5.575266 4.876131 -3.261896 5.575266 4.876131 -3.729748 5.575266 4.876131 -4.264621 5.575266 4.876131 -4.876131 5.575266 4.876131 -5.575266 5.575266 4.876131 -6.374593 5.575266 4.876131 -0 6.374593 4.876131 -0 6.374593 4.876131 -0 6.374593 4.876131 -0.002268731 6.374593 4.876131 -0.07076883 6.374593 4.876131 -0.1119241 6.374593 4.876131 -0.1475052 6.374593 4.876131 -0.1846606 6.374593 4.876131 -0.2245119 6.374593 4.876131 -0.2679612 6.374593 4.876131 -0.3158431 6.374593 4.876131 -0.3689944 6.374593 4.876131 -0.4282948 6.374593 4.876131 -0.494694 6.374593 4.876131 -0.5692344 6.374593 4.876131 -0.6530715 6.374593 4.876131 -0.7474945 6.374593 4.876131 -0.8539475 6.374593 4.876131 -0.974052 6.374593 4.876131 -1.113885 6.374593 4.876131 -1.27456 6.374593 4.876131 -1.458117 6.374593 4.876131 -1.667858 6.374593 4.876131 -1.907556 6.374593 4.876131 -2.181521 6.374593 4.876131 -2.494678 6.374593 4.876131 -2.852659 6.374593 4.876131 -3.261896 6.374593 4.876131 -3.729748 6.374593 4.876131 -4.264621 6.374593 4.876131 -4.876131 6.374593 4.876131 -5.575266 6.374593 4.876131 -6.374593 6.374593 4.876131 -0 0 5.575266 -0 0 5.575266 -0 0 5.575266 -0.002268731 0 5.575266 -0.07076883 0 5.575266 -0.1119241 0 5.575266 -0.1475052 0 5.575266 -0.1846606 0 5.575266 -0.2245119 0 5.575266 -0.2679612 0 5.575266 -0.3158431 0 5.575266 -0.3689944 0 5.575266 -0.4282948 0 5.575266 -0.494694 0 5.575266 -0.5692344 0 5.575266 -0.6530715 0 5.575266 -0.7474945 0 5.575266 -0.8539475 0 5.575266 -0.974052 0 5.575266 -1.113885 0 5.575266 -1.27456 0 5.575266 -1.458117 0 5.575266 -1.667858 0 5.575266 -1.907556 0 5.575266 -2.181521 0 5.575266 -2.494678 0 5.575266 -2.852659 0 5.575266 -3.261896 0 5.575266 -3.729748 0 5.575266 -4.264621 0 5.575266 -4.876131 0 5.575266 -5.575266 0 5.575266 -6.374593 0 5.575266 -0 0 5.575266 -0 0 5.575266 -0 0 5.575266 -0.002268731 0 5.575266 -0.07076883 0 5.575266 -0.1119241 0 5.575266 -0.1475052 0 5.575266 -0.1846606 0 5.575266 -0.2245119 0 5.575266 -0.2679612 0 5.575266 -0.3158431 0 5.575266 -0.3689944 0 5.575266 -0.4282948 0 5.575266 -0.494694 0 5.575266 -0.5692344 0 5.575266 -0.6530715 0 5.575266 -0.7474945 0 5.575266 -0.8539475 0 5.575266 -0.974052 0 5.575266 -1.113885 0 5.575266 -1.27456 0 5.575266 -1.458117 0 5.575266 -1.667858 0 5.575266 -1.907556 0 5.575266 -2.181521 0 5.575266 -2.494678 0 5.575266 -2.852659 0 5.575266 -3.261896 0 5.575266 -3.729748 0 5.575266 -4.264621 0 5.575266 -4.876131 0 5.575266 -5.575266 0 5.575266 -6.374593 0 5.575266 -0 0 5.575266 -0 0 5.575266 -0 0 5.575266 -0.002268731 0 5.575266 -0.07076883 0 5.575266 -0.1119241 0 5.575266 -0.1475052 0 5.575266 -0.1846606 0 5.575266 -0.2245119 0 5.575266 -0.2679612 0 5.575266 -0.3158431 0 5.575266 -0.3689944 0 5.575266 -0.4282948 0 5.575266 -0.494694 0 5.575266 -0.5692344 0 5.575266 -0.6530715 0 5.575266 -0.7474945 0 5.575266 -0.8539475 0 5.575266 -0.974052 0 5.575266 -1.113885 0 5.575266 -1.27456 0 5.575266 -1.458117 0 5.575266 -1.667858 0 5.575266 -1.907556 0 5.575266 -2.181521 0 5.575266 -2.494678 0 5.575266 -2.852659 0 5.575266 -3.261896 0 5.575266 -3.729748 0 5.575266 -4.264621 0 5.575266 -4.876131 0 5.575266 -5.575266 0 5.575266 -6.374593 0 5.575266 -0 0.002268731 5.575266 -0 0.002268731 5.575266 -0 0.002268731 5.575266 -0.002268731 0.002268731 5.575266 -0.07076883 0.002268731 5.575266 -0.1119241 0.002268731 5.575266 -0.1475052 0.002268731 5.575266 -0.1846606 0.002268731 5.575266 -0.2245119 0.002268731 5.575266 -0.2679612 0.002268731 5.575266 -0.3158431 0.002268731 5.575266 -0.3689944 0.002268731 5.575266 -0.4282948 0.002268731 5.575266 -0.494694 0.002268731 5.575266 -0.5692344 0.002268731 5.575266 -0.6530715 0.002268731 5.575266 -0.7474945 0.002268731 5.575266 -0.8539475 0.002268731 5.575266 -0.974052 0.002268731 5.575266 -1.113885 0.002268731 5.575266 -1.27456 0.002268731 5.575266 -1.458117 0.002268731 5.575266 -1.667858 0.002268731 5.575266 -1.907556 0.002268731 5.575266 -2.181521 0.002268731 5.575266 -2.494678 0.002268731 5.575266 -2.852659 0.002268731 5.575266 -3.261896 0.002268731 5.575266 -3.729748 0.002268731 5.575266 -4.264621 0.002268731 5.575266 -4.876131 0.002268731 5.575266 -5.575266 0.002268731 5.575266 -6.374593 0.002268731 5.575266 -0 0.07076883 5.575266 -0 0.07076883 5.575266 -0 0.07076883 5.575266 -0.002268731 0.07076883 5.575266 -0.07076883 0.07076883 5.575266 -0.1119241 0.07076883 5.575266 -0.1475052 0.07076883 5.575266 -0.1846606 0.07076883 5.575266 -0.2245119 0.07076883 5.575266 -0.2679612 0.07076883 5.575266 -0.3158431 0.07076883 5.575266 -0.3689944 0.07076883 5.575266 -0.4282948 0.07076883 5.575266 -0.494694 0.07076883 5.575266 -0.5692344 0.07076883 5.575266 -0.6530715 0.07076883 5.575266 -0.7474945 0.07076883 5.575266 -0.8539475 0.07076883 5.575266 -0.974052 0.07076883 5.575266 -1.113885 0.07076883 5.575266 -1.27456 0.07076883 5.575266 -1.458117 0.07076883 5.575266 -1.667858 0.07076883 5.575266 -1.907556 0.07076883 5.575266 -2.181521 0.07076883 5.575266 -2.494678 0.07076883 5.575266 -2.852659 0.07076883 5.575266 -3.261896 0.07076883 5.575266 -3.729748 0.07076883 5.575266 -4.264621 0.07076883 5.575266 -4.876131 0.07076883 5.575266 -5.575266 0.07076883 5.575266 -6.374593 0.07076883 5.575266 -0 0.1119241 5.575266 -0 0.1119241 5.575266 -0 0.1119241 5.575266 -0.002268731 0.1119241 5.575266 -0.07076883 0.1119241 5.575266 -0.1119241 0.1119241 5.575266 -0.1475052 0.1119241 5.575266 -0.1846606 0.1119241 5.575266 -0.2245119 0.1119241 5.575266 -0.2679612 0.1119241 5.575266 -0.3158431 0.1119241 5.575266 -0.3689944 0.1119241 5.575266 -0.4282948 0.1119241 5.575266 -0.494694 0.1119241 5.575266 -0.5692344 0.1119241 5.575266 -0.6530715 0.1119241 5.575266 -0.7474945 0.1119241 5.575266 -0.8539475 0.1119241 5.575266 -0.974052 0.1119241 5.575266 -1.113885 0.1119241 5.575266 -1.27456 0.1119241 5.575266 -1.458117 0.1119241 5.575266 -1.667858 0.1119241 5.575266 -1.907556 0.1119241 5.575266 -2.181521 0.1119241 5.575266 -2.494678 0.1119241 5.575266 -2.852659 0.1119241 5.575266 -3.261896 0.1119241 5.575266 -3.729748 0.1119241 5.575266 -4.264621 0.1119241 5.575266 -4.876131 0.1119241 5.575266 -5.575266 0.1119241 5.575266 -6.374593 0.1119241 5.575266 -0 0.1475052 5.575266 -0 0.1475052 5.575266 -0 0.1475052 5.575266 -0.002268731 0.1475052 5.575266 -0.07076883 0.1475052 5.575266 -0.1119241 0.1475052 5.575266 -0.1475052 0.1475052 5.575266 -0.1846606 0.1475052 5.575266 -0.2245119 0.1475052 5.575266 -0.2679612 0.1475052 5.575266 -0.3158431 0.1475052 5.575266 -0.3689944 0.1475052 5.575266 -0.4282948 0.1475052 5.575266 -0.494694 0.1475052 5.575266 -0.5692344 0.1475052 5.575266 -0.6530715 0.1475052 5.575266 -0.7474945 0.1475052 5.575266 -0.8539475 0.1475052 5.575266 -0.974052 0.1475052 5.575266 -1.113885 0.1475052 5.575266 -1.27456 0.1475052 5.575266 -1.458117 0.1475052 5.575266 -1.667858 0.1475052 5.575266 -1.907556 0.1475052 5.575266 -2.181521 0.1475052 5.575266 -2.494678 0.1475052 5.575266 -2.852659 0.1475052 5.575266 -3.261896 0.1475052 5.575266 -3.729748 0.1475052 5.575266 -4.264621 0.1475052 5.575266 -4.876131 0.1475052 5.575266 -5.575266 0.1475052 5.575266 -6.374593 0.1475052 5.575266 -0 0.1846606 5.575266 -0 0.1846606 5.575266 -0 0.1846606 5.575266 -0.002268731 0.1846606 5.575266 -0.07076883 0.1846606 5.575266 -0.1119241 0.1846606 5.575266 -0.1475052 0.1846606 5.575266 -0.1846606 0.1846606 5.575266 -0.2245119 0.1846606 5.575266 -0.2679612 0.1846606 5.575266 -0.3158431 0.1846606 5.575266 -0.3689944 0.1846606 5.575266 -0.4282948 0.1846606 5.575266 -0.494694 0.1846606 5.575266 -0.5692344 0.1846606 5.575266 -0.6530715 0.1846606 5.575266 -0.7474945 0.1846606 5.575266 -0.8539475 0.1846606 5.575266 -0.974052 0.1846606 5.575266 -1.113885 0.1846606 5.575266 -1.27456 0.1846606 5.575266 -1.458117 0.1846606 5.575266 -1.667858 0.1846606 5.575266 -1.907556 0.1846606 5.575266 -2.181521 0.1846606 5.575266 -2.494678 0.1846606 5.575266 -2.852659 0.1846606 5.575266 -3.261896 0.1846606 5.575266 -3.729748 0.1846606 5.575266 -4.264621 0.1846606 5.575266 -4.876131 0.1846606 5.575266 -5.575266 0.1846606 5.575266 -6.374593 0.1846606 5.575266 -0 0.2245119 5.575266 -0 0.2245119 5.575266 -0 0.2245119 5.575266 -0.002268731 0.2245119 5.575266 -0.07076883 0.2245119 5.575266 -0.1119241 0.2245119 5.575266 -0.1475052 0.2245119 5.575266 -0.1846606 0.2245119 5.575266 -0.2245119 0.2245119 5.575266 -0.2679612 0.2245119 5.575266 -0.3158431 0.2245119 5.575266 -0.3689944 0.2245119 5.575266 -0.4282948 0.2245119 5.575266 -0.494694 0.2245119 5.575266 -0.5692344 0.2245119 5.575266 -0.6530715 0.2245119 5.575266 -0.7474945 0.2245119 5.575266 -0.8539475 0.2245119 5.575266 -0.974052 0.2245119 5.575266 -1.113885 0.2245119 5.575266 -1.27456 0.2245119 5.575266 -1.458117 0.2245119 5.575266 -1.667858 0.2245119 5.575266 -1.907556 0.2245119 5.575266 -2.181521 0.2245119 5.575266 -2.494678 0.2245119 5.575266 -2.852659 0.2245119 5.575266 -3.261896 0.2245119 5.575266 -3.729748 0.2245119 5.575266 -4.264621 0.2245119 5.575266 -4.876131 0.2245119 5.575266 -5.575266 0.2245119 5.575266 -6.374593 0.2245119 5.575266 -0 0.2679612 5.575266 -0 0.2679612 5.575266 -0 0.2679612 5.575266 -0.002268731 0.2679612 5.575266 -0.07076883 0.2679612 5.575266 -0.1119241 0.2679612 5.575266 -0.1475052 0.2679612 5.575266 -0.1846606 0.2679612 5.575266 -0.2245119 0.2679612 5.575266 -0.2679612 0.2679612 5.575266 -0.3158431 0.2679612 5.575266 -0.3689944 0.2679612 5.575266 -0.4282948 0.2679612 5.575266 -0.494694 0.2679612 5.575266 -0.5692344 0.2679612 5.575266 -0.6530715 0.2679612 5.575266 -0.7474945 0.2679612 5.575266 -0.8539475 0.2679612 5.575266 -0.974052 0.2679612 5.575266 -1.113885 0.2679612 5.575266 -1.27456 0.2679612 5.575266 -1.458117 0.2679612 5.575266 -1.667858 0.2679612 5.575266 -1.907556 0.2679612 5.575266 -2.181521 0.2679612 5.575266 -2.494678 0.2679612 5.575266 -2.852659 0.2679612 5.575266 -3.261896 0.2679612 5.575266 -3.729748 0.2679612 5.575266 -4.264621 0.2679612 5.575266 -4.876131 0.2679612 5.575266 -5.575266 0.2679612 5.575266 -6.374593 0.2679612 5.575266 -0 0.3158431 5.575266 -0 0.3158431 5.575266 -0 0.3158431 5.575266 -0.002268731 0.3158431 5.575266 -0.07076883 0.3158431 5.575266 -0.1119241 0.3158431 5.575266 -0.1475052 0.3158431 5.575266 -0.1846606 0.3158431 5.575266 -0.2245119 0.3158431 5.575266 -0.2679612 0.3158431 5.575266 -0.3158431 0.3158431 5.575266 -0.3689944 0.3158431 5.575266 -0.4282948 0.3158431 5.575266 -0.494694 0.3158431 5.575266 -0.5692344 0.3158431 5.575266 -0.6530715 0.3158431 5.575266 -0.7474945 0.3158431 5.575266 -0.8539475 0.3158431 5.575266 -0.974052 0.3158431 5.575266 -1.113885 0.3158431 5.575266 -1.27456 0.3158431 5.575266 -1.458117 0.3158431 5.575266 -1.667858 0.3158431 5.575266 -1.907556 0.3158431 5.575266 -2.181521 0.3158431 5.575266 -2.494678 0.3158431 5.575266 -2.852659 0.3158431 5.575266 -3.261896 0.3158431 5.575266 -3.729748 0.3158431 5.575266 -4.264621 0.3158431 5.575266 -4.876131 0.3158431 5.575266 -5.575266 0.3158431 5.575266 -6.374593 0.3158431 5.575266 -0 0.3689944 5.575266 -0 0.3689944 5.575266 -0 0.3689944 5.575266 -0.002268731 0.3689944 5.575266 -0.07076883 0.3689944 5.575266 -0.1119241 0.3689944 5.575266 -0.1475052 0.3689944 5.575266 -0.1846606 0.3689944 5.575266 -0.2245119 0.3689944 5.575266 -0.2679612 0.3689944 5.575266 -0.3158431 0.3689944 5.575266 -0.3689944 0.3689944 5.575266 -0.4282948 0.3689944 5.575266 -0.494694 0.3689944 5.575266 -0.5692344 0.3689944 5.575266 -0.6530715 0.3689944 5.575266 -0.7474945 0.3689944 5.575266 -0.8539475 0.3689944 5.575266 -0.974052 0.3689944 5.575266 -1.113885 0.3689944 5.575266 -1.27456 0.3689944 5.575266 -1.458117 0.3689944 5.575266 -1.667858 0.3689944 5.575266 -1.907556 0.3689944 5.575266 -2.181521 0.3689944 5.575266 -2.494678 0.3689944 5.575266 -2.852659 0.3689944 5.575266 -3.261896 0.3689944 5.575266 -3.729748 0.3689944 5.575266 -4.264621 0.3689944 5.575266 -4.876131 0.3689944 5.575266 -5.575266 0.3689944 5.575266 -6.374593 0.3689944 5.575266 -0 0.4282948 5.575266 -0 0.4282948 5.575266 -0 0.4282948 5.575266 -0.002268731 0.4282948 5.575266 -0.07076883 0.4282948 5.575266 -0.1119241 0.4282948 5.575266 -0.1475052 0.4282948 5.575266 -0.1846606 0.4282948 5.575266 -0.2245119 0.4282948 5.575266 -0.2679612 0.4282948 5.575266 -0.3158431 0.4282948 5.575266 -0.3689944 0.4282948 5.575266 -0.4282948 0.4282948 5.575266 -0.494694 0.4282948 5.575266 -0.5692344 0.4282948 5.575266 -0.6530715 0.4282948 5.575266 -0.7474945 0.4282948 5.575266 -0.8539475 0.4282948 5.575266 -0.974052 0.4282948 5.575266 -1.113885 0.4282948 5.575266 -1.27456 0.4282948 5.575266 -1.458117 0.4282948 5.575266 -1.667858 0.4282948 5.575266 -1.907556 0.4282948 5.575266 -2.181521 0.4282948 5.575266 -2.494678 0.4282948 5.575266 -2.852659 0.4282948 5.575266 -3.261896 0.4282948 5.575266 -3.729748 0.4282948 5.575266 -4.264621 0.4282948 5.575266 -4.876131 0.4282948 5.575266 -5.575266 0.4282948 5.575266 -6.374593 0.4282948 5.575266 -0 0.494694 5.575266 -0 0.494694 5.575266 -0 0.494694 5.575266 -0.002268731 0.494694 5.575266 -0.07076883 0.494694 5.575266 -0.1119241 0.494694 5.575266 -0.1475052 0.494694 5.575266 -0.1846606 0.494694 5.575266 -0.2245119 0.494694 5.575266 -0.2679612 0.494694 5.575266 -0.3158431 0.494694 5.575266 -0.3689944 0.494694 5.575266 -0.4282948 0.494694 5.575266 -0.494694 0.494694 5.575266 -0.5692344 0.494694 5.575266 -0.6530715 0.494694 5.575266 -0.7474945 0.494694 5.575266 -0.8539475 0.494694 5.575266 -0.974052 0.494694 5.575266 -1.113885 0.494694 5.575266 -1.27456 0.494694 5.575266 -1.458117 0.494694 5.575266 -1.667858 0.494694 5.575266 -1.907556 0.494694 5.575266 -2.181521 0.494694 5.575266 -2.494678 0.494694 5.575266 -2.852659 0.494694 5.575266 -3.261896 0.494694 5.575266 -3.729748 0.494694 5.575266 -4.264621 0.494694 5.575266 -4.876131 0.494694 5.575266 -5.575266 0.494694 5.575266 -6.374593 0.494694 5.575266 -0 0.5692344 5.575266 -0 0.5692344 5.575266 -0 0.5692344 5.575266 -0.002268731 0.5692344 5.575266 -0.07076883 0.5692344 5.575266 -0.1119241 0.5692344 5.575266 -0.1475052 0.5692344 5.575266 -0.1846606 0.5692344 5.575266 -0.2245119 0.5692344 5.575266 -0.2679612 0.5692344 5.575266 -0.3158431 0.5692344 5.575266 -0.3689944 0.5692344 5.575266 -0.4282948 0.5692344 5.575266 -0.494694 0.5692344 5.575266 -0.5692344 0.5692344 5.575266 -0.6530715 0.5692344 5.575266 -0.7474945 0.5692344 5.575266 -0.8539475 0.5692344 5.575266 -0.974052 0.5692344 5.575266 -1.113885 0.5692344 5.575266 -1.27456 0.5692344 5.575266 -1.458117 0.5692344 5.575266 -1.667858 0.5692344 5.575266 -1.907556 0.5692344 5.575266 -2.181521 0.5692344 5.575266 -2.494678 0.5692344 5.575266 -2.852659 0.5692344 5.575266 -3.261896 0.5692344 5.575266 -3.729748 0.5692344 5.575266 -4.264621 0.5692344 5.575266 -4.876131 0.5692344 5.575266 -5.575266 0.5692344 5.575266 -6.374593 0.5692344 5.575266 -0 0.6530715 5.575266 -0 0.6530715 5.575266 -0 0.6530715 5.575266 -0.002268731 0.6530715 5.575266 -0.07076883 0.6530715 5.575266 -0.1119241 0.6530715 5.575266 -0.1475052 0.6530715 5.575266 -0.1846606 0.6530715 5.575266 -0.2245119 0.6530715 5.575266 -0.2679612 0.6530715 5.575266 -0.3158431 0.6530715 5.575266 -0.3689944 0.6530715 5.575266 -0.4282948 0.6530715 5.575266 -0.494694 0.6530715 5.575266 -0.5692344 0.6530715 5.575266 -0.6530715 0.6530715 5.575266 -0.7474945 0.6530715 5.575266 -0.8539475 0.6530715 5.575266 -0.974052 0.6530715 5.575266 -1.113885 0.6530715 5.575266 -1.27456 0.6530715 5.575266 -1.458117 0.6530715 5.575266 -1.667858 0.6530715 5.575266 -1.907556 0.6530715 5.575266 -2.181521 0.6530715 5.575266 -2.494678 0.6530715 5.575266 -2.852659 0.6530715 5.575266 -3.261896 0.6530715 5.575266 -3.729748 0.6530715 5.575266 -4.264621 0.6530715 5.575266 -4.876131 0.6530715 5.575266 -5.575266 0.6530715 5.575266 -6.374593 0.6530715 5.575266 -0 0.7474945 5.575266 -0 0.7474945 5.575266 -0 0.7474945 5.575266 -0.002268731 0.7474945 5.575266 -0.07076883 0.7474945 5.575266 -0.1119241 0.7474945 5.575266 -0.1475052 0.7474945 5.575266 -0.1846606 0.7474945 5.575266 -0.2245119 0.7474945 5.575266 -0.2679612 0.7474945 5.575266 -0.3158431 0.7474945 5.575266 -0.3689944 0.7474945 5.575266 -0.4282948 0.7474945 5.575266 -0.494694 0.7474945 5.575266 -0.5692344 0.7474945 5.575266 -0.6530715 0.7474945 5.575266 -0.7474945 0.7474945 5.575266 -0.8539475 0.7474945 5.575266 -0.974052 0.7474945 5.575266 -1.113885 0.7474945 5.575266 -1.27456 0.7474945 5.575266 -1.458117 0.7474945 5.575266 -1.667858 0.7474945 5.575266 -1.907556 0.7474945 5.575266 -2.181521 0.7474945 5.575266 -2.494678 0.7474945 5.575266 -2.852659 0.7474945 5.575266 -3.261896 0.7474945 5.575266 -3.729748 0.7474945 5.575266 -4.264621 0.7474945 5.575266 -4.876131 0.7474945 5.575266 -5.575266 0.7474945 5.575266 -6.374593 0.7474945 5.575266 -0 0.8539475 5.575266 -0 0.8539475 5.575266 -0 0.8539475 5.575266 -0.002268731 0.8539475 5.575266 -0.07076883 0.8539475 5.575266 -0.1119241 0.8539475 5.575266 -0.1475052 0.8539475 5.575266 -0.1846606 0.8539475 5.575266 -0.2245119 0.8539475 5.575266 -0.2679612 0.8539475 5.575266 -0.3158431 0.8539475 5.575266 -0.3689944 0.8539475 5.575266 -0.4282948 0.8539475 5.575266 -0.494694 0.8539475 5.575266 -0.5692344 0.8539475 5.575266 -0.6530715 0.8539475 5.575266 -0.7474945 0.8539475 5.575266 -0.8539475 0.8539475 5.575266 -0.974052 0.8539475 5.575266 -1.113885 0.8539475 5.575266 -1.27456 0.8539475 5.575266 -1.458117 0.8539475 5.575266 -1.667858 0.8539475 5.575266 -1.907556 0.8539475 5.575266 -2.181521 0.8539475 5.575266 -2.494678 0.8539475 5.575266 -2.852659 0.8539475 5.575266 -3.261896 0.8539475 5.575266 -3.729748 0.8539475 5.575266 -4.264621 0.8539475 5.575266 -4.876131 0.8539475 5.575266 -5.575266 0.8539475 5.575266 -6.374593 0.8539475 5.575266 -0 0.974052 5.575266 -0 0.974052 5.575266 -0 0.974052 5.575266 -0.002268731 0.974052 5.575266 -0.07076883 0.974052 5.575266 -0.1119241 0.974052 5.575266 -0.1475052 0.974052 5.575266 -0.1846606 0.974052 5.575266 -0.2245119 0.974052 5.575266 -0.2679612 0.974052 5.575266 -0.3158431 0.974052 5.575266 -0.3689944 0.974052 5.575266 -0.4282948 0.974052 5.575266 -0.494694 0.974052 5.575266 -0.5692344 0.974052 5.575266 -0.6530715 0.974052 5.575266 -0.7474945 0.974052 5.575266 -0.8539475 0.974052 5.575266 -0.974052 0.974052 5.575266 -1.113885 0.974052 5.575266 -1.27456 0.974052 5.575266 -1.458117 0.974052 5.575266 -1.667858 0.974052 5.575266 -1.907556 0.974052 5.575266 -2.181521 0.974052 5.575266 -2.494678 0.974052 5.575266 -2.852659 0.974052 5.575266 -3.261896 0.974052 5.575266 -3.729748 0.974052 5.575266 -4.264621 0.974052 5.575266 -4.876131 0.974052 5.575266 -5.575266 0.974052 5.575266 -6.374593 0.974052 5.575266 -0 1.113885 5.575266 -0 1.113885 5.575266 -0 1.113885 5.575266 -0.002268731 1.113885 5.575266 -0.07076883 1.113885 5.575266 -0.1119241 1.113885 5.575266 -0.1475052 1.113885 5.575266 -0.1846606 1.113885 5.575266 -0.2245119 1.113885 5.575266 -0.2679612 1.113885 5.575266 -0.3158431 1.113885 5.575266 -0.3689944 1.113885 5.575266 -0.4282948 1.113885 5.575266 -0.494694 1.113885 5.575266 -0.5692344 1.113885 5.575266 -0.6530715 1.113885 5.575266 -0.7474945 1.113885 5.575266 -0.8539475 1.113885 5.575266 -0.974052 1.113885 5.575266 -1.113885 1.113885 5.575266 -1.27456 1.113885 5.575266 -1.458117 1.113885 5.575266 -1.667858 1.113885 5.575266 -1.907556 1.113885 5.575266 -2.181521 1.113885 5.575266 -2.494678 1.113885 5.575266 -2.852659 1.113885 5.575266 -3.261896 1.113885 5.575266 -3.729748 1.113885 5.575266 -4.264621 1.113885 5.575266 -4.876131 1.113885 5.575266 -5.575266 1.113885 5.575266 -6.374593 1.113885 5.575266 -0 1.27456 5.575266 -0 1.27456 5.575266 -0 1.27456 5.575266 -0.002268731 1.27456 5.575266 -0.07076883 1.27456 5.575266 -0.1119241 1.27456 5.575266 -0.1475052 1.27456 5.575266 -0.1846606 1.27456 5.575266 -0.2245119 1.27456 5.575266 -0.2679612 1.27456 5.575266 -0.3158431 1.27456 5.575266 -0.3689944 1.27456 5.575266 -0.4282948 1.27456 5.575266 -0.494694 1.27456 5.575266 -0.5692344 1.27456 5.575266 -0.6530715 1.27456 5.575266 -0.7474945 1.27456 5.575266 -0.8539475 1.27456 5.575266 -0.974052 1.27456 5.575266 -1.113885 1.27456 5.575266 -1.27456 1.27456 5.575266 -1.458117 1.27456 5.575266 -1.667858 1.27456 5.575266 -1.907556 1.27456 5.575266 -2.181521 1.27456 5.575266 -2.494678 1.27456 5.575266 -2.852659 1.27456 5.575266 -3.261896 1.27456 5.575266 -3.729748 1.27456 5.575266 -4.264621 1.27456 5.575266 -4.876131 1.27456 5.575266 -5.575266 1.27456 5.575266 -6.374593 1.27456 5.575266 -0 1.458117 5.575266 -0 1.458117 5.575266 -0 1.458117 5.575266 -0.002268731 1.458117 5.575266 -0.07076883 1.458117 5.575266 -0.1119241 1.458117 5.575266 -0.1475052 1.458117 5.575266 -0.1846606 1.458117 5.575266 -0.2245119 1.458117 5.575266 -0.2679612 1.458117 5.575266 -0.3158431 1.458117 5.575266 -0.3689944 1.458117 5.575266 -0.4282948 1.458117 5.575266 -0.494694 1.458117 5.575266 -0.5692344 1.458117 5.575266 -0.6530715 1.458117 5.575266 -0.7474945 1.458117 5.575266 -0.8539475 1.458117 5.575266 -0.974052 1.458117 5.575266 -1.113885 1.458117 5.575266 -1.27456 1.458117 5.575266 -1.458117 1.458117 5.575266 -1.667858 1.458117 5.575266 -1.907556 1.458117 5.575266 -2.181521 1.458117 5.575266 -2.494678 1.458117 5.575266 -2.852659 1.458117 5.575266 -3.261896 1.458117 5.575266 -3.729748 1.458117 5.575266 -4.264621 1.458117 5.575266 -4.876131 1.458117 5.575266 -5.575266 1.458117 5.575266 -6.374593 1.458117 5.575266 -0 1.667858 5.575266 -0 1.667858 5.575266 -0 1.667858 5.575266 -0.002268731 1.667858 5.575266 -0.07076883 1.667858 5.575266 -0.1119241 1.667858 5.575266 -0.1475052 1.667858 5.575266 -0.1846606 1.667858 5.575266 -0.2245119 1.667858 5.575266 -0.2679612 1.667858 5.575266 -0.3158431 1.667858 5.575266 -0.3689944 1.667858 5.575266 -0.4282948 1.667858 5.575266 -0.494694 1.667858 5.575266 -0.5692344 1.667858 5.575266 -0.6530715 1.667858 5.575266 -0.7474945 1.667858 5.575266 -0.8539475 1.667858 5.575266 -0.974052 1.667858 5.575266 -1.113885 1.667858 5.575266 -1.27456 1.667858 5.575266 -1.458117 1.667858 5.575266 -1.667858 1.667858 5.575266 -1.907556 1.667858 5.575266 -2.181521 1.667858 5.575266 -2.494678 1.667858 5.575266 -2.852659 1.667858 5.575266 -3.261896 1.667858 5.575266 -3.729748 1.667858 5.575266 -4.264621 1.667858 5.575266 -4.876131 1.667858 5.575266 -5.575266 1.667858 5.575266 -6.374593 1.667858 5.575266 -0 1.907556 5.575266 -0 1.907556 5.575266 -0 1.907556 5.575266 -0.002268731 1.907556 5.575266 -0.07076883 1.907556 5.575266 -0.1119241 1.907556 5.575266 -0.1475052 1.907556 5.575266 -0.1846606 1.907556 5.575266 -0.2245119 1.907556 5.575266 -0.2679612 1.907556 5.575266 -0.3158431 1.907556 5.575266 -0.3689944 1.907556 5.575266 -0.4282948 1.907556 5.575266 -0.494694 1.907556 5.575266 -0.5692344 1.907556 5.575266 -0.6530715 1.907556 5.575266 -0.7474945 1.907556 5.575266 -0.8539475 1.907556 5.575266 -0.974052 1.907556 5.575266 -1.113885 1.907556 5.575266 -1.27456 1.907556 5.575266 -1.458117 1.907556 5.575266 -1.667858 1.907556 5.575266 -1.907556 1.907556 5.575266 -2.181521 1.907556 5.575266 -2.494678 1.907556 5.575266 -2.852659 1.907556 5.575266 -3.261896 1.907556 5.575266 -3.729748 1.907556 5.575266 -4.264621 1.907556 5.575266 -4.876131 1.907556 5.575266 -5.575266 1.907556 5.575266 -6.374593 1.907556 5.575266 -0 2.181521 5.575266 -0 2.181521 5.575266 -0 2.181521 5.575266 -0.002268731 2.181521 5.575266 -0.07076883 2.181521 5.575266 -0.1119241 2.181521 5.575266 -0.1475052 2.181521 5.575266 -0.1846606 2.181521 5.575266 -0.2245119 2.181521 5.575266 -0.2679612 2.181521 5.575266 -0.3158431 2.181521 5.575266 -0.3689944 2.181521 5.575266 -0.4282948 2.181521 5.575266 -0.494694 2.181521 5.575266 -0.5692344 2.181521 5.575266 -0.6530715 2.181521 5.575266 -0.7474945 2.181521 5.575266 -0.8539475 2.181521 5.575266 -0.974052 2.181521 5.575266 -1.113885 2.181521 5.575266 -1.27456 2.181521 5.575266 -1.458117 2.181521 5.575266 -1.667858 2.181521 5.575266 -1.907556 2.181521 5.575266 -2.181521 2.181521 5.575266 -2.494678 2.181521 5.575266 -2.852659 2.181521 5.575266 -3.261896 2.181521 5.575266 -3.729748 2.181521 5.575266 -4.264621 2.181521 5.575266 -4.876131 2.181521 5.575266 -5.575266 2.181521 5.575266 -6.374593 2.181521 5.575266 -0 2.494678 5.575266 -0 2.494678 5.575266 -0 2.494678 5.575266 -0.002268731 2.494678 5.575266 -0.07076883 2.494678 5.575266 -0.1119241 2.494678 5.575266 -0.1475052 2.494678 5.575266 -0.1846606 2.494678 5.575266 -0.2245119 2.494678 5.575266 -0.2679612 2.494678 5.575266 -0.3158431 2.494678 5.575266 -0.3689944 2.494678 5.575266 -0.4282948 2.494678 5.575266 -0.494694 2.494678 5.575266 -0.5692344 2.494678 5.575266 -0.6530715 2.494678 5.575266 -0.7474945 2.494678 5.575266 -0.8539475 2.494678 5.575266 -0.974052 2.494678 5.575266 -1.113885 2.494678 5.575266 -1.27456 2.494678 5.575266 -1.458117 2.494678 5.575266 -1.667858 2.494678 5.575266 -1.907556 2.494678 5.575266 -2.181521 2.494678 5.575266 -2.494678 2.494678 5.575266 -2.852659 2.494678 5.575266 -3.261896 2.494678 5.575266 -3.729748 2.494678 5.575266 -4.264621 2.494678 5.575266 -4.876131 2.494678 5.575266 -5.575266 2.494678 5.575266 -6.374593 2.494678 5.575266 -0 2.852659 5.575266 -0 2.852659 5.575266 -0 2.852659 5.575266 -0.002268731 2.852659 5.575266 -0.07076883 2.852659 5.575266 -0.1119241 2.852659 5.575266 -0.1475052 2.852659 5.575266 -0.1846606 2.852659 5.575266 -0.2245119 2.852659 5.575266 -0.2679612 2.852659 5.575266 -0.3158431 2.852659 5.575266 -0.3689944 2.852659 5.575266 -0.4282948 2.852659 5.575266 -0.494694 2.852659 5.575266 -0.5692344 2.852659 5.575266 -0.6530715 2.852659 5.575266 -0.7474945 2.852659 5.575266 -0.8539475 2.852659 5.575266 -0.974052 2.852659 5.575266 -1.113885 2.852659 5.575266 -1.27456 2.852659 5.575266 -1.458117 2.852659 5.575266 -1.667858 2.852659 5.575266 -1.907556 2.852659 5.575266 -2.181521 2.852659 5.575266 -2.494678 2.852659 5.575266 -2.852659 2.852659 5.575266 -3.261896 2.852659 5.575266 -3.729748 2.852659 5.575266 -4.264621 2.852659 5.575266 -4.876131 2.852659 5.575266 -5.575266 2.852659 5.575266 -6.374593 2.852659 5.575266 -0 3.261896 5.575266 -0 3.261896 5.575266 -0 3.261896 5.575266 -0.002268731 3.261896 5.575266 -0.07076883 3.261896 5.575266 -0.1119241 3.261896 5.575266 -0.1475052 3.261896 5.575266 -0.1846606 3.261896 5.575266 -0.2245119 3.261896 5.575266 -0.2679612 3.261896 5.575266 -0.3158431 3.261896 5.575266 -0.3689944 3.261896 5.575266 -0.4282948 3.261896 5.575266 -0.494694 3.261896 5.575266 -0.5692344 3.261896 5.575266 -0.6530715 3.261896 5.575266 -0.7474945 3.261896 5.575266 -0.8539475 3.261896 5.575266 -0.974052 3.261896 5.575266 -1.113885 3.261896 5.575266 -1.27456 3.261896 5.575266 -1.458117 3.261896 5.575266 -1.667858 3.261896 5.575266 -1.907556 3.261896 5.575266 -2.181521 3.261896 5.575266 -2.494678 3.261896 5.575266 -2.852659 3.261896 5.575266 -3.261896 3.261896 5.575266 -3.729748 3.261896 5.575266 -4.264621 3.261896 5.575266 -4.876131 3.261896 5.575266 -5.575266 3.261896 5.575266 -6.374593 3.261896 5.575266 -0 3.729748 5.575266 -0 3.729748 5.575266 -0 3.729748 5.575266 -0.002268731 3.729748 5.575266 -0.07076883 3.729748 5.575266 -0.1119241 3.729748 5.575266 -0.1475052 3.729748 5.575266 -0.1846606 3.729748 5.575266 -0.2245119 3.729748 5.575266 -0.2679612 3.729748 5.575266 -0.3158431 3.729748 5.575266 -0.3689944 3.729748 5.575266 -0.4282948 3.729748 5.575266 -0.494694 3.729748 5.575266 -0.5692344 3.729748 5.575266 -0.6530715 3.729748 5.575266 -0.7474945 3.729748 5.575266 -0.8539475 3.729748 5.575266 -0.974052 3.729748 5.575266 -1.113885 3.729748 5.575266 -1.27456 3.729748 5.575266 -1.458117 3.729748 5.575266 -1.667858 3.729748 5.575266 -1.907556 3.729748 5.575266 -2.181521 3.729748 5.575266 -2.494678 3.729748 5.575266 -2.852659 3.729748 5.575266 -3.261896 3.729748 5.575266 -3.729748 3.729748 5.575266 -4.264621 3.729748 5.575266 -4.876131 3.729748 5.575266 -5.575266 3.729748 5.575266 -6.374593 3.729748 5.575266 -0 4.264621 5.575266 -0 4.264621 5.575266 -0 4.264621 5.575266 -0.002268731 4.264621 5.575266 -0.07076883 4.264621 5.575266 -0.1119241 4.264621 5.575266 -0.1475052 4.264621 5.575266 -0.1846606 4.264621 5.575266 -0.2245119 4.264621 5.575266 -0.2679612 4.264621 5.575266 -0.3158431 4.264621 5.575266 -0.3689944 4.264621 5.575266 -0.4282948 4.264621 5.575266 -0.494694 4.264621 5.575266 -0.5692344 4.264621 5.575266 -0.6530715 4.264621 5.575266 -0.7474945 4.264621 5.575266 -0.8539475 4.264621 5.575266 -0.974052 4.264621 5.575266 -1.113885 4.264621 5.575266 -1.27456 4.264621 5.575266 -1.458117 4.264621 5.575266 -1.667858 4.264621 5.575266 -1.907556 4.264621 5.575266 -2.181521 4.264621 5.575266 -2.494678 4.264621 5.575266 -2.852659 4.264621 5.575266 -3.261896 4.264621 5.575266 -3.729748 4.264621 5.575266 -4.264621 4.264621 5.575266 -4.876131 4.264621 5.575266 -5.575266 4.264621 5.575266 -6.374593 4.264621 5.575266 -0 4.876131 5.575266 -0 4.876131 5.575266 -0 4.876131 5.575266 -0.002268731 4.876131 5.575266 -0.07076883 4.876131 5.575266 -0.1119241 4.876131 5.575266 -0.1475052 4.876131 5.575266 -0.1846606 4.876131 5.575266 -0.2245119 4.876131 5.575266 -0.2679612 4.876131 5.575266 -0.3158431 4.876131 5.575266 -0.3689944 4.876131 5.575266 -0.4282948 4.876131 5.575266 -0.494694 4.876131 5.575266 -0.5692344 4.876131 5.575266 -0.6530715 4.876131 5.575266 -0.7474945 4.876131 5.575266 -0.8539475 4.876131 5.575266 -0.974052 4.876131 5.575266 -1.113885 4.876131 5.575266 -1.27456 4.876131 5.575266 -1.458117 4.876131 5.575266 -1.667858 4.876131 5.575266 -1.907556 4.876131 5.575266 -2.181521 4.876131 5.575266 -2.494678 4.876131 5.575266 -2.852659 4.876131 5.575266 -3.261896 4.876131 5.575266 -3.729748 4.876131 5.575266 -4.264621 4.876131 5.575266 -4.876131 4.876131 5.575266 -5.575266 4.876131 5.575266 -6.374593 4.876131 5.575266 -0 5.575266 5.575266 -0 5.575266 5.575266 -0 5.575266 5.575266 -0.002268731 5.575266 5.575266 -0.07076883 5.575266 5.575266 -0.1119241 5.575266 5.575266 -0.1475052 5.575266 5.575266 -0.1846606 5.575266 5.575266 -0.2245119 5.575266 5.575266 -0.2679612 5.575266 5.575266 -0.3158431 5.575266 5.575266 -0.3689944 5.575266 5.575266 -0.4282948 5.575266 5.575266 -0.494694 5.575266 5.575266 -0.5692344 5.575266 5.575266 -0.6530715 5.575266 5.575266 -0.7474945 5.575266 5.575266 -0.8539475 5.575266 5.575266 -0.974052 5.575266 5.575266 -1.113885 5.575266 5.575266 -1.27456 5.575266 5.575266 -1.458117 5.575266 5.575266 -1.667858 5.575266 5.575266 -1.907556 5.575266 5.575266 -2.181521 5.575266 5.575266 -2.494678 5.575266 5.575266 -2.852659 5.575266 5.575266 -3.261896 5.575266 5.575266 -3.729748 5.575266 5.575266 -4.264621 5.575266 5.575266 -4.876131 5.575266 5.575266 -5.575266 5.575266 5.575266 -6.374593 5.575266 5.575266 -0 6.374593 5.575266 -0 6.374593 5.575266 -0 6.374593 5.575266 -0.002268731 6.374593 5.575266 -0.07076883 6.374593 5.575266 -0.1119241 6.374593 5.575266 -0.1475052 6.374593 5.575266 -0.1846606 6.374593 5.575266 -0.2245119 6.374593 5.575266 -0.2679612 6.374593 5.575266 -0.3158431 6.374593 5.575266 -0.3689944 6.374593 5.575266 -0.4282948 6.374593 5.575266 -0.494694 6.374593 5.575266 -0.5692344 6.374593 5.575266 -0.6530715 6.374593 5.575266 -0.7474945 6.374593 5.575266 -0.8539475 6.374593 5.575266 -0.974052 6.374593 5.575266 -1.113885 6.374593 5.575266 -1.27456 6.374593 5.575266 -1.458117 6.374593 5.575266 -1.667858 6.374593 5.575266 -1.907556 6.374593 5.575266 -2.181521 6.374593 5.575266 -2.494678 6.374593 5.575266 -2.852659 6.374593 5.575266 -3.261896 6.374593 5.575266 -3.729748 6.374593 5.575266 -4.264621 6.374593 5.575266 -4.876131 6.374593 5.575266 -5.575266 6.374593 5.575266 -6.374593 6.374593 5.575266 -0 0 6.374593 -0 0 6.374593 -0 0 6.374593 -0.002268731 0 6.374593 -0.07076883 0 6.374593 -0.1119241 0 6.374593 -0.1475052 0 6.374593 -0.1846606 0 6.374593 -0.2245119 0 6.374593 -0.2679612 0 6.374593 -0.3158431 0 6.374593 -0.3689944 0 6.374593 -0.4282948 0 6.374593 -0.494694 0 6.374593 -0.5692344 0 6.374593 -0.6530715 0 6.374593 -0.7474945 0 6.374593 -0.8539475 0 6.374593 -0.974052 0 6.374593 -1.113885 0 6.374593 -1.27456 0 6.374593 -1.458117 0 6.374593 -1.667858 0 6.374593 -1.907556 0 6.374593 -2.181521 0 6.374593 -2.494678 0 6.374593 -2.852659 0 6.374593 -3.261896 0 6.374593 -3.729748 0 6.374593 -4.264621 0 6.374593 -4.876131 0 6.374593 -5.575266 0 6.374593 -6.374593 0 6.374593 -0 0 6.374593 -0 0 6.374593 -0 0 6.374593 -0.002268731 0 6.374593 -0.07076883 0 6.374593 -0.1119241 0 6.374593 -0.1475052 0 6.374593 -0.1846606 0 6.374593 -0.2245119 0 6.374593 -0.2679612 0 6.374593 -0.3158431 0 6.374593 -0.3689944 0 6.374593 -0.4282948 0 6.374593 -0.494694 0 6.374593 -0.5692344 0 6.374593 -0.6530715 0 6.374593 -0.7474945 0 6.374593 -0.8539475 0 6.374593 -0.974052 0 6.374593 -1.113885 0 6.374593 -1.27456 0 6.374593 -1.458117 0 6.374593 -1.667858 0 6.374593 -1.907556 0 6.374593 -2.181521 0 6.374593 -2.494678 0 6.374593 -2.852659 0 6.374593 -3.261896 0 6.374593 -3.729748 0 6.374593 -4.264621 0 6.374593 -4.876131 0 6.374593 -5.575266 0 6.374593 -6.374593 0 6.374593 -0 0 6.374593 -0 0 6.374593 -0 0 6.374593 -0.002268731 0 6.374593 -0.07076883 0 6.374593 -0.1119241 0 6.374593 -0.1475052 0 6.374593 -0.1846606 0 6.374593 -0.2245119 0 6.374593 -0.2679612 0 6.374593 -0.3158431 0 6.374593 -0.3689944 0 6.374593 -0.4282948 0 6.374593 -0.494694 0 6.374593 -0.5692344 0 6.374593 -0.6530715 0 6.374593 -0.7474945 0 6.374593 -0.8539475 0 6.374593 -0.974052 0 6.374593 -1.113885 0 6.374593 -1.27456 0 6.374593 -1.458117 0 6.374593 -1.667858 0 6.374593 -1.907556 0 6.374593 -2.181521 0 6.374593 -2.494678 0 6.374593 -2.852659 0 6.374593 -3.261896 0 6.374593 -3.729748 0 6.374593 -4.264621 0 6.374593 -4.876131 0 6.374593 -5.575266 0 6.374593 -6.374593 0 6.374593 -0 0.002268731 6.374593 -0 0.002268731 6.374593 -0 0.002268731 6.374593 -0.002268731 0.002268731 6.374593 -0.07076883 0.002268731 6.374593 -0.1119241 0.002268731 6.374593 -0.1475052 0.002268731 6.374593 -0.1846606 0.002268731 6.374593 -0.2245119 0.002268731 6.374593 -0.2679612 0.002268731 6.374593 -0.3158431 0.002268731 6.374593 -0.3689944 0.002268731 6.374593 -0.4282948 0.002268731 6.374593 -0.494694 0.002268731 6.374593 -0.5692344 0.002268731 6.374593 -0.6530715 0.002268731 6.374593 -0.7474945 0.002268731 6.374593 -0.8539475 0.002268731 6.374593 -0.974052 0.002268731 6.374593 -1.113885 0.002268731 6.374593 -1.27456 0.002268731 6.374593 -1.458117 0.002268731 6.374593 -1.667858 0.002268731 6.374593 -1.907556 0.002268731 6.374593 -2.181521 0.002268731 6.374593 -2.494678 0.002268731 6.374593 -2.852659 0.002268731 6.374593 -3.261896 0.002268731 6.374593 -3.729748 0.002268731 6.374593 -4.264621 0.002268731 6.374593 -4.876131 0.002268731 6.374593 -5.575266 0.002268731 6.374593 -6.374593 0.002268731 6.374593 -0 0.07076883 6.374593 -0 0.07076883 6.374593 -0 0.07076883 6.374593 -0.002268731 0.07076883 6.374593 -0.07076883 0.07076883 6.374593 -0.1119241 0.07076883 6.374593 -0.1475052 0.07076883 6.374593 -0.1846606 0.07076883 6.374593 -0.2245119 0.07076883 6.374593 -0.2679612 0.07076883 6.374593 -0.3158431 0.07076883 6.374593 -0.3689944 0.07076883 6.374593 -0.4282948 0.07076883 6.374593 -0.494694 0.07076883 6.374593 -0.5692344 0.07076883 6.374593 -0.6530715 0.07076883 6.374593 -0.7474945 0.07076883 6.374593 -0.8539475 0.07076883 6.374593 -0.974052 0.07076883 6.374593 -1.113885 0.07076883 6.374593 -1.27456 0.07076883 6.374593 -1.458117 0.07076883 6.374593 -1.667858 0.07076883 6.374593 -1.907556 0.07076883 6.374593 -2.181521 0.07076883 6.374593 -2.494678 0.07076883 6.374593 -2.852659 0.07076883 6.374593 -3.261896 0.07076883 6.374593 -3.729748 0.07076883 6.374593 -4.264621 0.07076883 6.374593 -4.876131 0.07076883 6.374593 -5.575266 0.07076883 6.374593 -6.374593 0.07076883 6.374593 -0 0.1119241 6.374593 -0 0.1119241 6.374593 -0 0.1119241 6.374593 -0.002268731 0.1119241 6.374593 -0.07076883 0.1119241 6.374593 -0.1119241 0.1119241 6.374593 -0.1475052 0.1119241 6.374593 -0.1846606 0.1119241 6.374593 -0.2245119 0.1119241 6.374593 -0.2679612 0.1119241 6.374593 -0.3158431 0.1119241 6.374593 -0.3689944 0.1119241 6.374593 -0.4282948 0.1119241 6.374593 -0.494694 0.1119241 6.374593 -0.5692344 0.1119241 6.374593 -0.6530715 0.1119241 6.374593 -0.7474945 0.1119241 6.374593 -0.8539475 0.1119241 6.374593 -0.974052 0.1119241 6.374593 -1.113885 0.1119241 6.374593 -1.27456 0.1119241 6.374593 -1.458117 0.1119241 6.374593 -1.667858 0.1119241 6.374593 -1.907556 0.1119241 6.374593 -2.181521 0.1119241 6.374593 -2.494678 0.1119241 6.374593 -2.852659 0.1119241 6.374593 -3.261896 0.1119241 6.374593 -3.729748 0.1119241 6.374593 -4.264621 0.1119241 6.374593 -4.876131 0.1119241 6.374593 -5.575266 0.1119241 6.374593 -6.374593 0.1119241 6.374593 -0 0.1475052 6.374593 -0 0.1475052 6.374593 -0 0.1475052 6.374593 -0.002268731 0.1475052 6.374593 -0.07076883 0.1475052 6.374593 -0.1119241 0.1475052 6.374593 -0.1475052 0.1475052 6.374593 -0.1846606 0.1475052 6.374593 -0.2245119 0.1475052 6.374593 -0.2679612 0.1475052 6.374593 -0.3158431 0.1475052 6.374593 -0.3689944 0.1475052 6.374593 -0.4282948 0.1475052 6.374593 -0.494694 0.1475052 6.374593 -0.5692344 0.1475052 6.374593 -0.6530715 0.1475052 6.374593 -0.7474945 0.1475052 6.374593 -0.8539475 0.1475052 6.374593 -0.974052 0.1475052 6.374593 -1.113885 0.1475052 6.374593 -1.27456 0.1475052 6.374593 -1.458117 0.1475052 6.374593 -1.667858 0.1475052 6.374593 -1.907556 0.1475052 6.374593 -2.181521 0.1475052 6.374593 -2.494678 0.1475052 6.374593 -2.852659 0.1475052 6.374593 -3.261896 0.1475052 6.374593 -3.729748 0.1475052 6.374593 -4.264621 0.1475052 6.374593 -4.876131 0.1475052 6.374593 -5.575266 0.1475052 6.374593 -6.374593 0.1475052 6.374593 -0 0.1846606 6.374593 -0 0.1846606 6.374593 -0 0.1846606 6.374593 -0.002268731 0.1846606 6.374593 -0.07076883 0.1846606 6.374593 -0.1119241 0.1846606 6.374593 -0.1475052 0.1846606 6.374593 -0.1846606 0.1846606 6.374593 -0.2245119 0.1846606 6.374593 -0.2679612 0.1846606 6.374593 -0.3158431 0.1846606 6.374593 -0.3689944 0.1846606 6.374593 -0.4282948 0.1846606 6.374593 -0.494694 0.1846606 6.374593 -0.5692344 0.1846606 6.374593 -0.6530715 0.1846606 6.374593 -0.7474945 0.1846606 6.374593 -0.8539475 0.1846606 6.374593 -0.974052 0.1846606 6.374593 -1.113885 0.1846606 6.374593 -1.27456 0.1846606 6.374593 -1.458117 0.1846606 6.374593 -1.667858 0.1846606 6.374593 -1.907556 0.1846606 6.374593 -2.181521 0.1846606 6.374593 -2.494678 0.1846606 6.374593 -2.852659 0.1846606 6.374593 -3.261896 0.1846606 6.374593 -3.729748 0.1846606 6.374593 -4.264621 0.1846606 6.374593 -4.876131 0.1846606 6.374593 -5.575266 0.1846606 6.374593 -6.374593 0.1846606 6.374593 -0 0.2245119 6.374593 -0 0.2245119 6.374593 -0 0.2245119 6.374593 -0.002268731 0.2245119 6.374593 -0.07076883 0.2245119 6.374593 -0.1119241 0.2245119 6.374593 -0.1475052 0.2245119 6.374593 -0.1846606 0.2245119 6.374593 -0.2245119 0.2245119 6.374593 -0.2679612 0.2245119 6.374593 -0.3158431 0.2245119 6.374593 -0.3689944 0.2245119 6.374593 -0.4282948 0.2245119 6.374593 -0.494694 0.2245119 6.374593 -0.5692344 0.2245119 6.374593 -0.6530715 0.2245119 6.374593 -0.7474945 0.2245119 6.374593 -0.8539475 0.2245119 6.374593 -0.974052 0.2245119 6.374593 -1.113885 0.2245119 6.374593 -1.27456 0.2245119 6.374593 -1.458117 0.2245119 6.374593 -1.667858 0.2245119 6.374593 -1.907556 0.2245119 6.374593 -2.181521 0.2245119 6.374593 -2.494678 0.2245119 6.374593 -2.852659 0.2245119 6.374593 -3.261896 0.2245119 6.374593 -3.729748 0.2245119 6.374593 -4.264621 0.2245119 6.374593 -4.876131 0.2245119 6.374593 -5.575266 0.2245119 6.374593 -6.374593 0.2245119 6.374593 -0 0.2679612 6.374593 -0 0.2679612 6.374593 -0 0.2679612 6.374593 -0.002268731 0.2679612 6.374593 -0.07076883 0.2679612 6.374593 -0.1119241 0.2679612 6.374593 -0.1475052 0.2679612 6.374593 -0.1846606 0.2679612 6.374593 -0.2245119 0.2679612 6.374593 -0.2679612 0.2679612 6.374593 -0.3158431 0.2679612 6.374593 -0.3689944 0.2679612 6.374593 -0.4282948 0.2679612 6.374593 -0.494694 0.2679612 6.374593 -0.5692344 0.2679612 6.374593 -0.6530715 0.2679612 6.374593 -0.7474945 0.2679612 6.374593 -0.8539475 0.2679612 6.374593 -0.974052 0.2679612 6.374593 -1.113885 0.2679612 6.374593 -1.27456 0.2679612 6.374593 -1.458117 0.2679612 6.374593 -1.667858 0.2679612 6.374593 -1.907556 0.2679612 6.374593 -2.181521 0.2679612 6.374593 -2.494678 0.2679612 6.374593 -2.852659 0.2679612 6.374593 -3.261896 0.2679612 6.374593 -3.729748 0.2679612 6.374593 -4.264621 0.2679612 6.374593 -4.876131 0.2679612 6.374593 -5.575266 0.2679612 6.374593 -6.374593 0.2679612 6.374593 -0 0.3158431 6.374593 -0 0.3158431 6.374593 -0 0.3158431 6.374593 -0.002268731 0.3158431 6.374593 -0.07076883 0.3158431 6.374593 -0.1119241 0.3158431 6.374593 -0.1475052 0.3158431 6.374593 -0.1846606 0.3158431 6.374593 -0.2245119 0.3158431 6.374593 -0.2679612 0.3158431 6.374593 -0.3158431 0.3158431 6.374593 -0.3689944 0.3158431 6.374593 -0.4282948 0.3158431 6.374593 -0.494694 0.3158431 6.374593 -0.5692344 0.3158431 6.374593 -0.6530715 0.3158431 6.374593 -0.7474945 0.3158431 6.374593 -0.8539475 0.3158431 6.374593 -0.974052 0.3158431 6.374593 -1.113885 0.3158431 6.374593 -1.27456 0.3158431 6.374593 -1.458117 0.3158431 6.374593 -1.667858 0.3158431 6.374593 -1.907556 0.3158431 6.374593 -2.181521 0.3158431 6.374593 -2.494678 0.3158431 6.374593 -2.852659 0.3158431 6.374593 -3.261896 0.3158431 6.374593 -3.729748 0.3158431 6.374593 -4.264621 0.3158431 6.374593 -4.876131 0.3158431 6.374593 -5.575266 0.3158431 6.374593 -6.374593 0.3158431 6.374593 -0 0.3689944 6.374593 -0 0.3689944 6.374593 -0 0.3689944 6.374593 -0.002268731 0.3689944 6.374593 -0.07076883 0.3689944 6.374593 -0.1119241 0.3689944 6.374593 -0.1475052 0.3689944 6.374593 -0.1846606 0.3689944 6.374593 -0.2245119 0.3689944 6.374593 -0.2679612 0.3689944 6.374593 -0.3158431 0.3689944 6.374593 -0.3689944 0.3689944 6.374593 -0.4282948 0.3689944 6.374593 -0.494694 0.3689944 6.374593 -0.5692344 0.3689944 6.374593 -0.6530715 0.3689944 6.374593 -0.7474945 0.3689944 6.374593 -0.8539475 0.3689944 6.374593 -0.974052 0.3689944 6.374593 -1.113885 0.3689944 6.374593 -1.27456 0.3689944 6.374593 -1.458117 0.3689944 6.374593 -1.667858 0.3689944 6.374593 -1.907556 0.3689944 6.374593 -2.181521 0.3689944 6.374593 -2.494678 0.3689944 6.374593 -2.852659 0.3689944 6.374593 -3.261896 0.3689944 6.374593 -3.729748 0.3689944 6.374593 -4.264621 0.3689944 6.374593 -4.876131 0.3689944 6.374593 -5.575266 0.3689944 6.374593 -6.374593 0.3689944 6.374593 -0 0.4282948 6.374593 -0 0.4282948 6.374593 -0 0.4282948 6.374593 -0.002268731 0.4282948 6.374593 -0.07076883 0.4282948 6.374593 -0.1119241 0.4282948 6.374593 -0.1475052 0.4282948 6.374593 -0.1846606 0.4282948 6.374593 -0.2245119 0.4282948 6.374593 -0.2679612 0.4282948 6.374593 -0.3158431 0.4282948 6.374593 -0.3689944 0.4282948 6.374593 -0.4282948 0.4282948 6.374593 -0.494694 0.4282948 6.374593 -0.5692344 0.4282948 6.374593 -0.6530715 0.4282948 6.374593 -0.7474945 0.4282948 6.374593 -0.8539475 0.4282948 6.374593 -0.974052 0.4282948 6.374593 -1.113885 0.4282948 6.374593 -1.27456 0.4282948 6.374593 -1.458117 0.4282948 6.374593 -1.667858 0.4282948 6.374593 -1.907556 0.4282948 6.374593 -2.181521 0.4282948 6.374593 -2.494678 0.4282948 6.374593 -2.852659 0.4282948 6.374593 -3.261896 0.4282948 6.374593 -3.729748 0.4282948 6.374593 -4.264621 0.4282948 6.374593 -4.876131 0.4282948 6.374593 -5.575266 0.4282948 6.374593 -6.374593 0.4282948 6.374593 -0 0.494694 6.374593 -0 0.494694 6.374593 -0 0.494694 6.374593 -0.002268731 0.494694 6.374593 -0.07076883 0.494694 6.374593 -0.1119241 0.494694 6.374593 -0.1475052 0.494694 6.374593 -0.1846606 0.494694 6.374593 -0.2245119 0.494694 6.374593 -0.2679612 0.494694 6.374593 -0.3158431 0.494694 6.374593 -0.3689944 0.494694 6.374593 -0.4282948 0.494694 6.374593 -0.494694 0.494694 6.374593 -0.5692344 0.494694 6.374593 -0.6530715 0.494694 6.374593 -0.7474945 0.494694 6.374593 -0.8539475 0.494694 6.374593 -0.974052 0.494694 6.374593 -1.113885 0.494694 6.374593 -1.27456 0.494694 6.374593 -1.458117 0.494694 6.374593 -1.667858 0.494694 6.374593 -1.907556 0.494694 6.374593 -2.181521 0.494694 6.374593 -2.494678 0.494694 6.374593 -2.852659 0.494694 6.374593 -3.261896 0.494694 6.374593 -3.729748 0.494694 6.374593 -4.264621 0.494694 6.374593 -4.876131 0.494694 6.374593 -5.575266 0.494694 6.374593 -6.374593 0.494694 6.374593 -0 0.5692344 6.374593 -0 0.5692344 6.374593 -0 0.5692344 6.374593 -0.002268731 0.5692344 6.374593 -0.07076883 0.5692344 6.374593 -0.1119241 0.5692344 6.374593 -0.1475052 0.5692344 6.374593 -0.1846606 0.5692344 6.374593 -0.2245119 0.5692344 6.374593 -0.2679612 0.5692344 6.374593 -0.3158431 0.5692344 6.374593 -0.3689944 0.5692344 6.374593 -0.4282948 0.5692344 6.374593 -0.494694 0.5692344 6.374593 -0.5692344 0.5692344 6.374593 -0.6530715 0.5692344 6.374593 -0.7474945 0.5692344 6.374593 -0.8539475 0.5692344 6.374593 -0.974052 0.5692344 6.374593 -1.113885 0.5692344 6.374593 -1.27456 0.5692344 6.374593 -1.458117 0.5692344 6.374593 -1.667858 0.5692344 6.374593 -1.907556 0.5692344 6.374593 -2.181521 0.5692344 6.374593 -2.494678 0.5692344 6.374593 -2.852659 0.5692344 6.374593 -3.261896 0.5692344 6.374593 -3.729748 0.5692344 6.374593 -4.264621 0.5692344 6.374593 -4.876131 0.5692344 6.374593 -5.575266 0.5692344 6.374593 -6.374593 0.5692344 6.374593 -0 0.6530715 6.374593 -0 0.6530715 6.374593 -0 0.6530715 6.374593 -0.002268731 0.6530715 6.374593 -0.07076883 0.6530715 6.374593 -0.1119241 0.6530715 6.374593 -0.1475052 0.6530715 6.374593 -0.1846606 0.6530715 6.374593 -0.2245119 0.6530715 6.374593 -0.2679612 0.6530715 6.374593 -0.3158431 0.6530715 6.374593 -0.3689944 0.6530715 6.374593 -0.4282948 0.6530715 6.374593 -0.494694 0.6530715 6.374593 -0.5692344 0.6530715 6.374593 -0.6530715 0.6530715 6.374593 -0.7474945 0.6530715 6.374593 -0.8539475 0.6530715 6.374593 -0.974052 0.6530715 6.374593 -1.113885 0.6530715 6.374593 -1.27456 0.6530715 6.374593 -1.458117 0.6530715 6.374593 -1.667858 0.6530715 6.374593 -1.907556 0.6530715 6.374593 -2.181521 0.6530715 6.374593 -2.494678 0.6530715 6.374593 -2.852659 0.6530715 6.374593 -3.261896 0.6530715 6.374593 -3.729748 0.6530715 6.374593 -4.264621 0.6530715 6.374593 -4.876131 0.6530715 6.374593 -5.575266 0.6530715 6.374593 -6.374593 0.6530715 6.374593 -0 0.7474945 6.374593 -0 0.7474945 6.374593 -0 0.7474945 6.374593 -0.002268731 0.7474945 6.374593 -0.07076883 0.7474945 6.374593 -0.1119241 0.7474945 6.374593 -0.1475052 0.7474945 6.374593 -0.1846606 0.7474945 6.374593 -0.2245119 0.7474945 6.374593 -0.2679612 0.7474945 6.374593 -0.3158431 0.7474945 6.374593 -0.3689944 0.7474945 6.374593 -0.4282948 0.7474945 6.374593 -0.494694 0.7474945 6.374593 -0.5692344 0.7474945 6.374593 -0.6530715 0.7474945 6.374593 -0.7474945 0.7474945 6.374593 -0.8539475 0.7474945 6.374593 -0.974052 0.7474945 6.374593 -1.113885 0.7474945 6.374593 -1.27456 0.7474945 6.374593 -1.458117 0.7474945 6.374593 -1.667858 0.7474945 6.374593 -1.907556 0.7474945 6.374593 -2.181521 0.7474945 6.374593 -2.494678 0.7474945 6.374593 -2.852659 0.7474945 6.374593 -3.261896 0.7474945 6.374593 -3.729748 0.7474945 6.374593 -4.264621 0.7474945 6.374593 -4.876131 0.7474945 6.374593 -5.575266 0.7474945 6.374593 -6.374593 0.7474945 6.374593 -0 0.8539475 6.374593 -0 0.8539475 6.374593 -0 0.8539475 6.374593 -0.002268731 0.8539475 6.374593 -0.07076883 0.8539475 6.374593 -0.1119241 0.8539475 6.374593 -0.1475052 0.8539475 6.374593 -0.1846606 0.8539475 6.374593 -0.2245119 0.8539475 6.374593 -0.2679612 0.8539475 6.374593 -0.3158431 0.8539475 6.374593 -0.3689944 0.8539475 6.374593 -0.4282948 0.8539475 6.374593 -0.494694 0.8539475 6.374593 -0.5692344 0.8539475 6.374593 -0.6530715 0.8539475 6.374593 -0.7474945 0.8539475 6.374593 -0.8539475 0.8539475 6.374593 -0.974052 0.8539475 6.374593 -1.113885 0.8539475 6.374593 -1.27456 0.8539475 6.374593 -1.458117 0.8539475 6.374593 -1.667858 0.8539475 6.374593 -1.907556 0.8539475 6.374593 -2.181521 0.8539475 6.374593 -2.494678 0.8539475 6.374593 -2.852659 0.8539475 6.374593 -3.261896 0.8539475 6.374593 -3.729748 0.8539475 6.374593 -4.264621 0.8539475 6.374593 -4.876131 0.8539475 6.374593 -5.575266 0.8539475 6.374593 -6.374593 0.8539475 6.374593 -0 0.974052 6.374593 -0 0.974052 6.374593 -0 0.974052 6.374593 -0.002268731 0.974052 6.374593 -0.07076883 0.974052 6.374593 -0.1119241 0.974052 6.374593 -0.1475052 0.974052 6.374593 -0.1846606 0.974052 6.374593 -0.2245119 0.974052 6.374593 -0.2679612 0.974052 6.374593 -0.3158431 0.974052 6.374593 -0.3689944 0.974052 6.374593 -0.4282948 0.974052 6.374593 -0.494694 0.974052 6.374593 -0.5692344 0.974052 6.374593 -0.6530715 0.974052 6.374593 -0.7474945 0.974052 6.374593 -0.8539475 0.974052 6.374593 -0.974052 0.974052 6.374593 -1.113885 0.974052 6.374593 -1.27456 0.974052 6.374593 -1.458117 0.974052 6.374593 -1.667858 0.974052 6.374593 -1.907556 0.974052 6.374593 -2.181521 0.974052 6.374593 -2.494678 0.974052 6.374593 -2.852659 0.974052 6.374593 -3.261896 0.974052 6.374593 -3.729748 0.974052 6.374593 -4.264621 0.974052 6.374593 -4.876131 0.974052 6.374593 -5.575266 0.974052 6.374593 -6.374593 0.974052 6.374593 -0 1.113885 6.374593 -0 1.113885 6.374593 -0 1.113885 6.374593 -0.002268731 1.113885 6.374593 -0.07076883 1.113885 6.374593 -0.1119241 1.113885 6.374593 -0.1475052 1.113885 6.374593 -0.1846606 1.113885 6.374593 -0.2245119 1.113885 6.374593 -0.2679612 1.113885 6.374593 -0.3158431 1.113885 6.374593 -0.3689944 1.113885 6.374593 -0.4282948 1.113885 6.374593 -0.494694 1.113885 6.374593 -0.5692344 1.113885 6.374593 -0.6530715 1.113885 6.374593 -0.7474945 1.113885 6.374593 -0.8539475 1.113885 6.374593 -0.974052 1.113885 6.374593 -1.113885 1.113885 6.374593 -1.27456 1.113885 6.374593 -1.458117 1.113885 6.374593 -1.667858 1.113885 6.374593 -1.907556 1.113885 6.374593 -2.181521 1.113885 6.374593 -2.494678 1.113885 6.374593 -2.852659 1.113885 6.374593 -3.261896 1.113885 6.374593 -3.729748 1.113885 6.374593 -4.264621 1.113885 6.374593 -4.876131 1.113885 6.374593 -5.575266 1.113885 6.374593 -6.374593 1.113885 6.374593 -0 1.27456 6.374593 -0 1.27456 6.374593 -0 1.27456 6.374593 -0.002268731 1.27456 6.374593 -0.07076883 1.27456 6.374593 -0.1119241 1.27456 6.374593 -0.1475052 1.27456 6.374593 -0.1846606 1.27456 6.374593 -0.2245119 1.27456 6.374593 -0.2679612 1.27456 6.374593 -0.3158431 1.27456 6.374593 -0.3689944 1.27456 6.374593 -0.4282948 1.27456 6.374593 -0.494694 1.27456 6.374593 -0.5692344 1.27456 6.374593 -0.6530715 1.27456 6.374593 -0.7474945 1.27456 6.374593 -0.8539475 1.27456 6.374593 -0.974052 1.27456 6.374593 -1.113885 1.27456 6.374593 -1.27456 1.27456 6.374593 -1.458117 1.27456 6.374593 -1.667858 1.27456 6.374593 -1.907556 1.27456 6.374593 -2.181521 1.27456 6.374593 -2.494678 1.27456 6.374593 -2.852659 1.27456 6.374593 -3.261896 1.27456 6.374593 -3.729748 1.27456 6.374593 -4.264621 1.27456 6.374593 -4.876131 1.27456 6.374593 -5.575266 1.27456 6.374593 -6.374593 1.27456 6.374593 -0 1.458117 6.374593 -0 1.458117 6.374593 -0 1.458117 6.374593 -0.002268731 1.458117 6.374593 -0.07076883 1.458117 6.374593 -0.1119241 1.458117 6.374593 -0.1475052 1.458117 6.374593 -0.1846606 1.458117 6.374593 -0.2245119 1.458117 6.374593 -0.2679612 1.458117 6.374593 -0.3158431 1.458117 6.374593 -0.3689944 1.458117 6.374593 -0.4282948 1.458117 6.374593 -0.494694 1.458117 6.374593 -0.5692344 1.458117 6.374593 -0.6530715 1.458117 6.374593 -0.7474945 1.458117 6.374593 -0.8539475 1.458117 6.374593 -0.974052 1.458117 6.374593 -1.113885 1.458117 6.374593 -1.27456 1.458117 6.374593 -1.458117 1.458117 6.374593 -1.667858 1.458117 6.374593 -1.907556 1.458117 6.374593 -2.181521 1.458117 6.374593 -2.494678 1.458117 6.374593 -2.852659 1.458117 6.374593 -3.261896 1.458117 6.374593 -3.729748 1.458117 6.374593 -4.264621 1.458117 6.374593 -4.876131 1.458117 6.374593 -5.575266 1.458117 6.374593 -6.374593 1.458117 6.374593 -0 1.667858 6.374593 -0 1.667858 6.374593 -0 1.667858 6.374593 -0.002268731 1.667858 6.374593 -0.07076883 1.667858 6.374593 -0.1119241 1.667858 6.374593 -0.1475052 1.667858 6.374593 -0.1846606 1.667858 6.374593 -0.2245119 1.667858 6.374593 -0.2679612 1.667858 6.374593 -0.3158431 1.667858 6.374593 -0.3689944 1.667858 6.374593 -0.4282948 1.667858 6.374593 -0.494694 1.667858 6.374593 -0.5692344 1.667858 6.374593 -0.6530715 1.667858 6.374593 -0.7474945 1.667858 6.374593 -0.8539475 1.667858 6.374593 -0.974052 1.667858 6.374593 -1.113885 1.667858 6.374593 -1.27456 1.667858 6.374593 -1.458117 1.667858 6.374593 -1.667858 1.667858 6.374593 -1.907556 1.667858 6.374593 -2.181521 1.667858 6.374593 -2.494678 1.667858 6.374593 -2.852659 1.667858 6.374593 -3.261896 1.667858 6.374593 -3.729748 1.667858 6.374593 -4.264621 1.667858 6.374593 -4.876131 1.667858 6.374593 -5.575266 1.667858 6.374593 -6.374593 1.667858 6.374593 -0 1.907556 6.374593 -0 1.907556 6.374593 -0 1.907556 6.374593 -0.002268731 1.907556 6.374593 -0.07076883 1.907556 6.374593 -0.1119241 1.907556 6.374593 -0.1475052 1.907556 6.374593 -0.1846606 1.907556 6.374593 -0.2245119 1.907556 6.374593 -0.2679612 1.907556 6.374593 -0.3158431 1.907556 6.374593 -0.3689944 1.907556 6.374593 -0.4282948 1.907556 6.374593 -0.494694 1.907556 6.374593 -0.5692344 1.907556 6.374593 -0.6530715 1.907556 6.374593 -0.7474945 1.907556 6.374593 -0.8539475 1.907556 6.374593 -0.974052 1.907556 6.374593 -1.113885 1.907556 6.374593 -1.27456 1.907556 6.374593 -1.458117 1.907556 6.374593 -1.667858 1.907556 6.374593 -1.907556 1.907556 6.374593 -2.181521 1.907556 6.374593 -2.494678 1.907556 6.374593 -2.852659 1.907556 6.374593 -3.261896 1.907556 6.374593 -3.729748 1.907556 6.374593 -4.264621 1.907556 6.374593 -4.876131 1.907556 6.374593 -5.575266 1.907556 6.374593 -6.374593 1.907556 6.374593 -0 2.181521 6.374593 -0 2.181521 6.374593 -0 2.181521 6.374593 -0.002268731 2.181521 6.374593 -0.07076883 2.181521 6.374593 -0.1119241 2.181521 6.374593 -0.1475052 2.181521 6.374593 -0.1846606 2.181521 6.374593 -0.2245119 2.181521 6.374593 -0.2679612 2.181521 6.374593 -0.3158431 2.181521 6.374593 -0.3689944 2.181521 6.374593 -0.4282948 2.181521 6.374593 -0.494694 2.181521 6.374593 -0.5692344 2.181521 6.374593 -0.6530715 2.181521 6.374593 -0.7474945 2.181521 6.374593 -0.8539475 2.181521 6.374593 -0.974052 2.181521 6.374593 -1.113885 2.181521 6.374593 -1.27456 2.181521 6.374593 -1.458117 2.181521 6.374593 -1.667858 2.181521 6.374593 -1.907556 2.181521 6.374593 -2.181521 2.181521 6.374593 -2.494678 2.181521 6.374593 -2.852659 2.181521 6.374593 -3.261896 2.181521 6.374593 -3.729748 2.181521 6.374593 -4.264621 2.181521 6.374593 -4.876131 2.181521 6.374593 -5.575266 2.181521 6.374593 -6.374593 2.181521 6.374593 -0 2.494678 6.374593 -0 2.494678 6.374593 -0 2.494678 6.374593 -0.002268731 2.494678 6.374593 -0.07076883 2.494678 6.374593 -0.1119241 2.494678 6.374593 -0.1475052 2.494678 6.374593 -0.1846606 2.494678 6.374593 -0.2245119 2.494678 6.374593 -0.2679612 2.494678 6.374593 -0.3158431 2.494678 6.374593 -0.3689944 2.494678 6.374593 -0.4282948 2.494678 6.374593 -0.494694 2.494678 6.374593 -0.5692344 2.494678 6.374593 -0.6530715 2.494678 6.374593 -0.7474945 2.494678 6.374593 -0.8539475 2.494678 6.374593 -0.974052 2.494678 6.374593 -1.113885 2.494678 6.374593 -1.27456 2.494678 6.374593 -1.458117 2.494678 6.374593 -1.667858 2.494678 6.374593 -1.907556 2.494678 6.374593 -2.181521 2.494678 6.374593 -2.494678 2.494678 6.374593 -2.852659 2.494678 6.374593 -3.261896 2.494678 6.374593 -3.729748 2.494678 6.374593 -4.264621 2.494678 6.374593 -4.876131 2.494678 6.374593 -5.575266 2.494678 6.374593 -6.374593 2.494678 6.374593 -0 2.852659 6.374593 -0 2.852659 6.374593 -0 2.852659 6.374593 -0.002268731 2.852659 6.374593 -0.07076883 2.852659 6.374593 -0.1119241 2.852659 6.374593 -0.1475052 2.852659 6.374593 -0.1846606 2.852659 6.374593 -0.2245119 2.852659 6.374593 -0.2679612 2.852659 6.374593 -0.3158431 2.852659 6.374593 -0.3689944 2.852659 6.374593 -0.4282948 2.852659 6.374593 -0.494694 2.852659 6.374593 -0.5692344 2.852659 6.374593 -0.6530715 2.852659 6.374593 -0.7474945 2.852659 6.374593 -0.8539475 2.852659 6.374593 -0.974052 2.852659 6.374593 -1.113885 2.852659 6.374593 -1.27456 2.852659 6.374593 -1.458117 2.852659 6.374593 -1.667858 2.852659 6.374593 -1.907556 2.852659 6.374593 -2.181521 2.852659 6.374593 -2.494678 2.852659 6.374593 -2.852659 2.852659 6.374593 -3.261896 2.852659 6.374593 -3.729748 2.852659 6.374593 -4.264621 2.852659 6.374593 -4.876131 2.852659 6.374593 -5.575266 2.852659 6.374593 -6.374593 2.852659 6.374593 -0 3.261896 6.374593 -0 3.261896 6.374593 -0 3.261896 6.374593 -0.002268731 3.261896 6.374593 -0.07076883 3.261896 6.374593 -0.1119241 3.261896 6.374593 -0.1475052 3.261896 6.374593 -0.1846606 3.261896 6.374593 -0.2245119 3.261896 6.374593 -0.2679612 3.261896 6.374593 -0.3158431 3.261896 6.374593 -0.3689944 3.261896 6.374593 -0.4282948 3.261896 6.374593 -0.494694 3.261896 6.374593 -0.5692344 3.261896 6.374593 -0.6530715 3.261896 6.374593 -0.7474945 3.261896 6.374593 -0.8539475 3.261896 6.374593 -0.974052 3.261896 6.374593 -1.113885 3.261896 6.374593 -1.27456 3.261896 6.374593 -1.458117 3.261896 6.374593 -1.667858 3.261896 6.374593 -1.907556 3.261896 6.374593 -2.181521 3.261896 6.374593 -2.494678 3.261896 6.374593 -2.852659 3.261896 6.374593 -3.261896 3.261896 6.374593 -3.729748 3.261896 6.374593 -4.264621 3.261896 6.374593 -4.876131 3.261896 6.374593 -5.575266 3.261896 6.374593 -6.374593 3.261896 6.374593 -0 3.729748 6.374593 -0 3.729748 6.374593 -0 3.729748 6.374593 -0.002268731 3.729748 6.374593 -0.07076883 3.729748 6.374593 -0.1119241 3.729748 6.374593 -0.1475052 3.729748 6.374593 -0.1846606 3.729748 6.374593 -0.2245119 3.729748 6.374593 -0.2679612 3.729748 6.374593 -0.3158431 3.729748 6.374593 -0.3689944 3.729748 6.374593 -0.4282948 3.729748 6.374593 -0.494694 3.729748 6.374593 -0.5692344 3.729748 6.374593 -0.6530715 3.729748 6.374593 -0.7474945 3.729748 6.374593 -0.8539475 3.729748 6.374593 -0.974052 3.729748 6.374593 -1.113885 3.729748 6.374593 -1.27456 3.729748 6.374593 -1.458117 3.729748 6.374593 -1.667858 3.729748 6.374593 -1.907556 3.729748 6.374593 -2.181521 3.729748 6.374593 -2.494678 3.729748 6.374593 -2.852659 3.729748 6.374593 -3.261896 3.729748 6.374593 -3.729748 3.729748 6.374593 -4.264621 3.729748 6.374593 -4.876131 3.729748 6.374593 -5.575266 3.729748 6.374593 -6.374593 3.729748 6.374593 -0 4.264621 6.374593 -0 4.264621 6.374593 -0 4.264621 6.374593 -0.002268731 4.264621 6.374593 -0.07076883 4.264621 6.374593 -0.1119241 4.264621 6.374593 -0.1475052 4.264621 6.374593 -0.1846606 4.264621 6.374593 -0.2245119 4.264621 6.374593 -0.2679612 4.264621 6.374593 -0.3158431 4.264621 6.374593 -0.3689944 4.264621 6.374593 -0.4282948 4.264621 6.374593 -0.494694 4.264621 6.374593 -0.5692344 4.264621 6.374593 -0.6530715 4.264621 6.374593 -0.7474945 4.264621 6.374593 -0.8539475 4.264621 6.374593 -0.974052 4.264621 6.374593 -1.113885 4.264621 6.374593 -1.27456 4.264621 6.374593 -1.458117 4.264621 6.374593 -1.667858 4.264621 6.374593 -1.907556 4.264621 6.374593 -2.181521 4.264621 6.374593 -2.494678 4.264621 6.374593 -2.852659 4.264621 6.374593 -3.261896 4.264621 6.374593 -3.729748 4.264621 6.374593 -4.264621 4.264621 6.374593 -4.876131 4.264621 6.374593 -5.575266 4.264621 6.374593 -6.374593 4.264621 6.374593 -0 4.876131 6.374593 -0 4.876131 6.374593 -0 4.876131 6.374593 -0.002268731 4.876131 6.374593 -0.07076883 4.876131 6.374593 -0.1119241 4.876131 6.374593 -0.1475052 4.876131 6.374593 -0.1846606 4.876131 6.374593 -0.2245119 4.876131 6.374593 -0.2679612 4.876131 6.374593 -0.3158431 4.876131 6.374593 -0.3689944 4.876131 6.374593 -0.4282948 4.876131 6.374593 -0.494694 4.876131 6.374593 -0.5692344 4.876131 6.374593 -0.6530715 4.876131 6.374593 -0.7474945 4.876131 6.374593 -0.8539475 4.876131 6.374593 -0.974052 4.876131 6.374593 -1.113885 4.876131 6.374593 -1.27456 4.876131 6.374593 -1.458117 4.876131 6.374593 -1.667858 4.876131 6.374593 -1.907556 4.876131 6.374593 -2.181521 4.876131 6.374593 -2.494678 4.876131 6.374593 -2.852659 4.876131 6.374593 -3.261896 4.876131 6.374593 -3.729748 4.876131 6.374593 -4.264621 4.876131 6.374593 -4.876131 4.876131 6.374593 -5.575266 4.876131 6.374593 -6.374593 4.876131 6.374593 -0 5.575266 6.374593 -0 5.575266 6.374593 -0 5.575266 6.374593 -0.002268731 5.575266 6.374593 -0.07076883 5.575266 6.374593 -0.1119241 5.575266 6.374593 -0.1475052 5.575266 6.374593 -0.1846606 5.575266 6.374593 -0.2245119 5.575266 6.374593 -0.2679612 5.575266 6.374593 -0.3158431 5.575266 6.374593 -0.3689944 5.575266 6.374593 -0.4282948 5.575266 6.374593 -0.494694 5.575266 6.374593 -0.5692344 5.575266 6.374593 -0.6530715 5.575266 6.374593 -0.7474945 5.575266 6.374593 -0.8539475 5.575266 6.374593 -0.974052 5.575266 6.374593 -1.113885 5.575266 6.374593 -1.27456 5.575266 6.374593 -1.458117 5.575266 6.374593 -1.667858 5.575266 6.374593 -1.907556 5.575266 6.374593 -2.181521 5.575266 6.374593 -2.494678 5.575266 6.374593 -2.852659 5.575266 6.374593 -3.261896 5.575266 6.374593 -3.729748 5.575266 6.374593 -4.264621 5.575266 6.374593 -4.876131 5.575266 6.374593 -5.575266 5.575266 6.374593 -6.374593 5.575266 6.374593 -0 6.374593 6.374593 -0 6.374593 6.374593 -0 6.374593 6.374593 -0.002268731 6.374593 6.374593 -0.07076883 6.374593 6.374593 -0.1119241 6.374593 6.374593 -0.1475052 6.374593 6.374593 -0.1846606 6.374593 6.374593 -0.2245119 6.374593 6.374593 -0.2679612 6.374593 6.374593 -0.3158431 6.374593 6.374593 -0.3689944 6.374593 6.374593 -0.4282948 6.374593 6.374593 -0.494694 6.374593 6.374593 -0.5692344 6.374593 6.374593 -0.6530715 6.374593 6.374593 -0.7474945 6.374593 6.374593 -0.8539475 6.374593 6.374593 -0.974052 6.374593 6.374593 -1.113885 6.374593 6.374593 -1.27456 6.374593 6.374593 -1.458117 6.374593 6.374593 -1.667858 6.374593 6.374593 -1.907556 6.374593 6.374593 -2.181521 6.374593 6.374593 -2.494678 6.374593 6.374593 -2.852659 6.374593 6.374593 -3.261896 6.374593 6.374593 -3.729748 6.374593 6.374593 -4.264621 6.374593 6.374593 -4.876131 6.374593 6.374593 -5.575266 6.374593 6.374593 -6.374593 6.374593 6.374593 diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/Unity Log to sRGB r1.cube.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/Unity Log to sRGB r1.cube.meta deleted file mode 100644 index 343185764..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/Unity Log to sRGB r1.cube.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 302dae2302d23ac49bbec3e17c0530b9 -timeCreated: 1496826837 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/sRGB to Linear r1.cube b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/sRGB to Linear r1.cube deleted file mode 100644 index 972592dac..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/sRGB to Linear r1.cube +++ /dev/null @@ -1,35941 +0,0 @@ -TITLE "sRGB to Linear r1" -LUT_3D_SIZE 33 -DOMAIN_MIN 0 0 0 -DOMAIN_MAX 1 1 1 -0 0 0 -0.002418731 0 0 -0.005155668 0 0 -0.009080105 0 0 -0.01434988 0 0 -0.02107202 0 0 -0.02934285 0 0 -0.03925039 0 0 -0.05087609 0 0 -0.06429595 0 0 -0.07958143 0 0 -0.0968001 0 0 -0.1160161 0 0 -0.1372908 0 0 -0.1606827 0 0 -0.1862481 0 0 -0.2140411 0 0 -0.2441142 0 0 -0.2765176 0 0 -0.3113005 0 0 -0.3485102 0 0 -0.388193 0 0 -0.4303934 0 0 -0.4751555 0 0 -0.5225216 0 0 -0.5725335 0 0 -0.6252316 0 0 -0.6806558 0 0 -0.7388448 0 0 -0.7998369 0 0 -0.8636691 0 0 -0.9303782 0 0 -1 0 0 -0 0.002418731 0 -0.002418731 0.002418731 0 -0.005155668 0.002418731 0 -0.009080105 0.002418731 0 -0.01434988 0.002418731 0 -0.02107202 0.002418731 0 -0.02934285 0.002418731 0 -0.03925039 0.002418731 0 -0.05087609 0.002418731 0 -0.06429595 0.002418731 0 -0.07958143 0.002418731 0 -0.0968001 0.002418731 0 -0.1160161 0.002418731 0 -0.1372908 0.002418731 0 -0.1606827 0.002418731 0 -0.1862481 0.002418731 0 -0.2140411 0.002418731 0 -0.2441142 0.002418731 0 -0.2765176 0.002418731 0 -0.3113005 0.002418731 0 -0.3485102 0.002418731 0 -0.388193 0.002418731 0 -0.4303934 0.002418731 0 -0.4751555 0.002418731 0 -0.5225216 0.002418731 0 -0.5725335 0.002418731 0 -0.6252316 0.002418731 0 -0.6806558 0.002418731 0 -0.7388448 0.002418731 0 -0.7998369 0.002418731 0 -0.8636691 0.002418731 0 -0.9303782 0.002418731 0 -1 0.002418731 0 -0 0.005155668 0 -0.002418731 0.005155668 0 -0.005155668 0.005155668 0 -0.009080105 0.005155668 0 -0.01434988 0.005155668 0 -0.02107202 0.005155668 0 -0.02934285 0.005155668 0 -0.03925039 0.005155668 0 -0.05087609 0.005155668 0 -0.06429595 0.005155668 0 -0.07958143 0.005155668 0 -0.0968001 0.005155668 0 -0.1160161 0.005155668 0 -0.1372908 0.005155668 0 -0.1606827 0.005155668 0 -0.1862481 0.005155668 0 -0.2140411 0.005155668 0 -0.2441142 0.005155668 0 -0.2765176 0.005155668 0 -0.3113005 0.005155668 0 -0.3485102 0.005155668 0 -0.388193 0.005155668 0 -0.4303934 0.005155668 0 -0.4751555 0.005155668 0 -0.5225216 0.005155668 0 -0.5725335 0.005155668 0 -0.6252316 0.005155668 0 -0.6806558 0.005155668 0 -0.7388448 0.005155668 0 -0.7998369 0.005155668 0 -0.8636691 0.005155668 0 -0.9303782 0.005155668 0 -1 0.005155668 0 -0 0.009080105 0 -0.002418731 0.009080105 0 -0.005155668 0.009080105 0 -0.009080105 0.009080105 0 -0.01434988 0.009080105 0 -0.02107202 0.009080105 0 -0.02934285 0.009080105 0 -0.03925039 0.009080105 0 -0.05087609 0.009080105 0 -0.06429595 0.009080105 0 -0.07958143 0.009080105 0 -0.0968001 0.009080105 0 -0.1160161 0.009080105 0 -0.1372908 0.009080105 0 -0.1606827 0.009080105 0 -0.1862481 0.009080105 0 -0.2140411 0.009080105 0 -0.2441142 0.009080105 0 -0.2765176 0.009080105 0 -0.3113005 0.009080105 0 -0.3485102 0.009080105 0 -0.388193 0.009080105 0 -0.4303934 0.009080105 0 -0.4751555 0.009080105 0 -0.5225216 0.009080105 0 -0.5725335 0.009080105 0 -0.6252316 0.009080105 0 -0.6806558 0.009080105 0 -0.7388448 0.009080105 0 -0.7998369 0.009080105 0 -0.8636691 0.009080105 0 -0.9303782 0.009080105 0 -1 0.009080105 0 -0 0.01434988 0 -0.002418731 0.01434988 0 -0.005155668 0.01434988 0 -0.009080105 0.01434988 0 -0.01434988 0.01434988 0 -0.02107202 0.01434988 0 -0.02934285 0.01434988 0 -0.03925039 0.01434988 0 -0.05087609 0.01434988 0 -0.06429595 0.01434988 0 -0.07958143 0.01434988 0 -0.0968001 0.01434988 0 -0.1160161 0.01434988 0 -0.1372908 0.01434988 0 -0.1606827 0.01434988 0 -0.1862481 0.01434988 0 -0.2140411 0.01434988 0 -0.2441142 0.01434988 0 -0.2765176 0.01434988 0 -0.3113005 0.01434988 0 -0.3485102 0.01434988 0 -0.388193 0.01434988 0 -0.4303934 0.01434988 0 -0.4751555 0.01434988 0 -0.5225216 0.01434988 0 -0.5725335 0.01434988 0 -0.6252316 0.01434988 0 -0.6806558 0.01434988 0 -0.7388448 0.01434988 0 -0.7998369 0.01434988 0 -0.8636691 0.01434988 0 -0.9303782 0.01434988 0 -1 0.01434988 0 -0 0.02107202 0 -0.002418731 0.02107202 0 -0.005155668 0.02107202 0 -0.009080105 0.02107202 0 -0.01434988 0.02107202 0 -0.02107202 0.02107202 0 -0.02934285 0.02107202 0 -0.03925039 0.02107202 0 -0.05087609 0.02107202 0 -0.06429595 0.02107202 0 -0.07958143 0.02107202 0 -0.0968001 0.02107202 0 -0.1160161 0.02107202 0 -0.1372908 0.02107202 0 -0.1606827 0.02107202 0 -0.1862481 0.02107202 0 -0.2140411 0.02107202 0 -0.2441142 0.02107202 0 -0.2765176 0.02107202 0 -0.3113005 0.02107202 0 -0.3485102 0.02107202 0 -0.388193 0.02107202 0 -0.4303934 0.02107202 0 -0.4751555 0.02107202 0 -0.5225216 0.02107202 0 -0.5725335 0.02107202 0 -0.6252316 0.02107202 0 -0.6806558 0.02107202 0 -0.7388448 0.02107202 0 -0.7998369 0.02107202 0 -0.8636691 0.02107202 0 -0.9303782 0.02107202 0 -1 0.02107202 0 -0 0.02934285 0 -0.002418731 0.02934285 0 -0.005155668 0.02934285 0 -0.009080105 0.02934285 0 -0.01434988 0.02934285 0 -0.02107202 0.02934285 0 -0.02934285 0.02934285 0 -0.03925039 0.02934285 0 -0.05087609 0.02934285 0 -0.06429595 0.02934285 0 -0.07958143 0.02934285 0 -0.0968001 0.02934285 0 -0.1160161 0.02934285 0 -0.1372908 0.02934285 0 -0.1606827 0.02934285 0 -0.1862481 0.02934285 0 -0.2140411 0.02934285 0 -0.2441142 0.02934285 0 -0.2765176 0.02934285 0 -0.3113005 0.02934285 0 -0.3485102 0.02934285 0 -0.388193 0.02934285 0 -0.4303934 0.02934285 0 -0.4751555 0.02934285 0 -0.5225216 0.02934285 0 -0.5725335 0.02934285 0 -0.6252316 0.02934285 0 -0.6806558 0.02934285 0 -0.7388448 0.02934285 0 -0.7998369 0.02934285 0 -0.8636691 0.02934285 0 -0.9303782 0.02934285 0 -1 0.02934285 0 -0 0.03925039 0 -0.002418731 0.03925039 0 -0.005155668 0.03925039 0 -0.009080105 0.03925039 0 -0.01434988 0.03925039 0 -0.02107202 0.03925039 0 -0.02934285 0.03925039 0 -0.03925039 0.03925039 0 -0.05087609 0.03925039 0 -0.06429595 0.03925039 0 -0.07958143 0.03925039 0 -0.0968001 0.03925039 0 -0.1160161 0.03925039 0 -0.1372908 0.03925039 0 -0.1606827 0.03925039 0 -0.1862481 0.03925039 0 -0.2140411 0.03925039 0 -0.2441142 0.03925039 0 -0.2765176 0.03925039 0 -0.3113005 0.03925039 0 -0.3485102 0.03925039 0 -0.388193 0.03925039 0 -0.4303934 0.03925039 0 -0.4751555 0.03925039 0 -0.5225216 0.03925039 0 -0.5725335 0.03925039 0 -0.6252316 0.03925039 0 -0.6806558 0.03925039 0 -0.7388448 0.03925039 0 -0.7998369 0.03925039 0 -0.8636691 0.03925039 0 -0.9303782 0.03925039 0 -1 0.03925039 0 -0 0.05087609 0 -0.002418731 0.05087609 0 -0.005155668 0.05087609 0 -0.009080105 0.05087609 0 -0.01434988 0.05087609 0 -0.02107202 0.05087609 0 -0.02934285 0.05087609 0 -0.03925039 0.05087609 0 -0.05087609 0.05087609 0 -0.06429595 0.05087609 0 -0.07958143 0.05087609 0 -0.0968001 0.05087609 0 -0.1160161 0.05087609 0 -0.1372908 0.05087609 0 -0.1606827 0.05087609 0 -0.1862481 0.05087609 0 -0.2140411 0.05087609 0 -0.2441142 0.05087609 0 -0.2765176 0.05087609 0 -0.3113005 0.05087609 0 -0.3485102 0.05087609 0 -0.388193 0.05087609 0 -0.4303934 0.05087609 0 -0.4751555 0.05087609 0 -0.5225216 0.05087609 0 -0.5725335 0.05087609 0 -0.6252316 0.05087609 0 -0.6806558 0.05087609 0 -0.7388448 0.05087609 0 -0.7998369 0.05087609 0 -0.8636691 0.05087609 0 -0.9303782 0.05087609 0 -1 0.05087609 0 -0 0.06429595 0 -0.002418731 0.06429595 0 -0.005155668 0.06429595 0 -0.009080105 0.06429595 0 -0.01434988 0.06429595 0 -0.02107202 0.06429595 0 -0.02934285 0.06429595 0 -0.03925039 0.06429595 0 -0.05087609 0.06429595 0 -0.06429595 0.06429595 0 -0.07958143 0.06429595 0 -0.0968001 0.06429595 0 -0.1160161 0.06429595 0 -0.1372908 0.06429595 0 -0.1606827 0.06429595 0 -0.1862481 0.06429595 0 -0.2140411 0.06429595 0 -0.2441142 0.06429595 0 -0.2765176 0.06429595 0 -0.3113005 0.06429595 0 -0.3485102 0.06429595 0 -0.388193 0.06429595 0 -0.4303934 0.06429595 0 -0.4751555 0.06429595 0 -0.5225216 0.06429595 0 -0.5725335 0.06429595 0 -0.6252316 0.06429595 0 -0.6806558 0.06429595 0 -0.7388448 0.06429595 0 -0.7998369 0.06429595 0 -0.8636691 0.06429595 0 -0.9303782 0.06429595 0 -1 0.06429595 0 -0 0.07958143 0 -0.002418731 0.07958143 0 -0.005155668 0.07958143 0 -0.009080105 0.07958143 0 -0.01434988 0.07958143 0 -0.02107202 0.07958143 0 -0.02934285 0.07958143 0 -0.03925039 0.07958143 0 -0.05087609 0.07958143 0 -0.06429595 0.07958143 0 -0.07958143 0.07958143 0 -0.0968001 0.07958143 0 -0.1160161 0.07958143 0 -0.1372908 0.07958143 0 -0.1606827 0.07958143 0 -0.1862481 0.07958143 0 -0.2140411 0.07958143 0 -0.2441142 0.07958143 0 -0.2765176 0.07958143 0 -0.3113005 0.07958143 0 -0.3485102 0.07958143 0 -0.388193 0.07958143 0 -0.4303934 0.07958143 0 -0.4751555 0.07958143 0 -0.5225216 0.07958143 0 -0.5725335 0.07958143 0 -0.6252316 0.07958143 0 -0.6806558 0.07958143 0 -0.7388448 0.07958143 0 -0.7998369 0.07958143 0 -0.8636691 0.07958143 0 -0.9303782 0.07958143 0 -1 0.07958143 0 -0 0.0968001 0 -0.002418731 0.0968001 0 -0.005155668 0.0968001 0 -0.009080105 0.0968001 0 -0.01434988 0.0968001 0 -0.02107202 0.0968001 0 -0.02934285 0.0968001 0 -0.03925039 0.0968001 0 -0.05087609 0.0968001 0 -0.06429595 0.0968001 0 -0.07958143 0.0968001 0 -0.0968001 0.0968001 0 -0.1160161 0.0968001 0 -0.1372908 0.0968001 0 -0.1606827 0.0968001 0 -0.1862481 0.0968001 0 -0.2140411 0.0968001 0 -0.2441142 0.0968001 0 -0.2765176 0.0968001 0 -0.3113005 0.0968001 0 -0.3485102 0.0968001 0 -0.388193 0.0968001 0 -0.4303934 0.0968001 0 -0.4751555 0.0968001 0 -0.5225216 0.0968001 0 -0.5725335 0.0968001 0 -0.6252316 0.0968001 0 -0.6806558 0.0968001 0 -0.7388448 0.0968001 0 -0.7998369 0.0968001 0 -0.8636691 0.0968001 0 -0.9303782 0.0968001 0 -1 0.0968001 0 -0 0.1160161 0 -0.002418731 0.1160161 0 -0.005155668 0.1160161 0 -0.009080105 0.1160161 0 -0.01434988 0.1160161 0 -0.02107202 0.1160161 0 -0.02934285 0.1160161 0 -0.03925039 0.1160161 0 -0.05087609 0.1160161 0 -0.06429595 0.1160161 0 -0.07958143 0.1160161 0 -0.0968001 0.1160161 0 -0.1160161 0.1160161 0 -0.1372908 0.1160161 0 -0.1606827 0.1160161 0 -0.1862481 0.1160161 0 -0.2140411 0.1160161 0 -0.2441142 0.1160161 0 -0.2765176 0.1160161 0 -0.3113005 0.1160161 0 -0.3485102 0.1160161 0 -0.388193 0.1160161 0 -0.4303934 0.1160161 0 -0.4751555 0.1160161 0 -0.5225216 0.1160161 0 -0.5725335 0.1160161 0 -0.6252316 0.1160161 0 -0.6806558 0.1160161 0 -0.7388448 0.1160161 0 -0.7998369 0.1160161 0 -0.8636691 0.1160161 0 -0.9303782 0.1160161 0 -1 0.1160161 0 -0 0.1372908 0 -0.002418731 0.1372908 0 -0.005155668 0.1372908 0 -0.009080105 0.1372908 0 -0.01434988 0.1372908 0 -0.02107202 0.1372908 0 -0.02934285 0.1372908 0 -0.03925039 0.1372908 0 -0.05087609 0.1372908 0 -0.06429595 0.1372908 0 -0.07958143 0.1372908 0 -0.0968001 0.1372908 0 -0.1160161 0.1372908 0 -0.1372908 0.1372908 0 -0.1606827 0.1372908 0 -0.1862481 0.1372908 0 -0.2140411 0.1372908 0 -0.2441142 0.1372908 0 -0.2765176 0.1372908 0 -0.3113005 0.1372908 0 -0.3485102 0.1372908 0 -0.388193 0.1372908 0 -0.4303934 0.1372908 0 -0.4751555 0.1372908 0 -0.5225216 0.1372908 0 -0.5725335 0.1372908 0 -0.6252316 0.1372908 0 -0.6806558 0.1372908 0 -0.7388448 0.1372908 0 -0.7998369 0.1372908 0 -0.8636691 0.1372908 0 -0.9303782 0.1372908 0 -1 0.1372908 0 -0 0.1606827 0 -0.002418731 0.1606827 0 -0.005155668 0.1606827 0 -0.009080105 0.1606827 0 -0.01434988 0.1606827 0 -0.02107202 0.1606827 0 -0.02934285 0.1606827 0 -0.03925039 0.1606827 0 -0.05087609 0.1606827 0 -0.06429595 0.1606827 0 -0.07958143 0.1606827 0 -0.0968001 0.1606827 0 -0.1160161 0.1606827 0 -0.1372908 0.1606827 0 -0.1606827 0.1606827 0 -0.1862481 0.1606827 0 -0.2140411 0.1606827 0 -0.2441142 0.1606827 0 -0.2765176 0.1606827 0 -0.3113005 0.1606827 0 -0.3485102 0.1606827 0 -0.388193 0.1606827 0 -0.4303934 0.1606827 0 -0.4751555 0.1606827 0 -0.5225216 0.1606827 0 -0.5725335 0.1606827 0 -0.6252316 0.1606827 0 -0.6806558 0.1606827 0 -0.7388448 0.1606827 0 -0.7998369 0.1606827 0 -0.8636691 0.1606827 0 -0.9303782 0.1606827 0 -1 0.1606827 0 -0 0.1862481 0 -0.002418731 0.1862481 0 -0.005155668 0.1862481 0 -0.009080105 0.1862481 0 -0.01434988 0.1862481 0 -0.02107202 0.1862481 0 -0.02934285 0.1862481 0 -0.03925039 0.1862481 0 -0.05087609 0.1862481 0 -0.06429595 0.1862481 0 -0.07958143 0.1862481 0 -0.0968001 0.1862481 0 -0.1160161 0.1862481 0 -0.1372908 0.1862481 0 -0.1606827 0.1862481 0 -0.1862481 0.1862481 0 -0.2140411 0.1862481 0 -0.2441142 0.1862481 0 -0.2765176 0.1862481 0 -0.3113005 0.1862481 0 -0.3485102 0.1862481 0 -0.388193 0.1862481 0 -0.4303934 0.1862481 0 -0.4751555 0.1862481 0 -0.5225216 0.1862481 0 -0.5725335 0.1862481 0 -0.6252316 0.1862481 0 -0.6806558 0.1862481 0 -0.7388448 0.1862481 0 -0.7998369 0.1862481 0 -0.8636691 0.1862481 0 -0.9303782 0.1862481 0 -1 0.1862481 0 -0 0.2140411 0 -0.002418731 0.2140411 0 -0.005155668 0.2140411 0 -0.009080105 0.2140411 0 -0.01434988 0.2140411 0 -0.02107202 0.2140411 0 -0.02934285 0.2140411 0 -0.03925039 0.2140411 0 -0.05087609 0.2140411 0 -0.06429595 0.2140411 0 -0.07958143 0.2140411 0 -0.0968001 0.2140411 0 -0.1160161 0.2140411 0 -0.1372908 0.2140411 0 -0.1606827 0.2140411 0 -0.1862481 0.2140411 0 -0.2140411 0.2140411 0 -0.2441142 0.2140411 0 -0.2765176 0.2140411 0 -0.3113005 0.2140411 0 -0.3485102 0.2140411 0 -0.388193 0.2140411 0 -0.4303934 0.2140411 0 -0.4751555 0.2140411 0 -0.5225216 0.2140411 0 -0.5725335 0.2140411 0 -0.6252316 0.2140411 0 -0.6806558 0.2140411 0 -0.7388448 0.2140411 0 -0.7998369 0.2140411 0 -0.8636691 0.2140411 0 -0.9303782 0.2140411 0 -1 0.2140411 0 -0 0.2441142 0 -0.002418731 0.2441142 0 -0.005155668 0.2441142 0 -0.009080105 0.2441142 0 -0.01434988 0.2441142 0 -0.02107202 0.2441142 0 -0.02934285 0.2441142 0 -0.03925039 0.2441142 0 -0.05087609 0.2441142 0 -0.06429595 0.2441142 0 -0.07958143 0.2441142 0 -0.0968001 0.2441142 0 -0.1160161 0.2441142 0 -0.1372908 0.2441142 0 -0.1606827 0.2441142 0 -0.1862481 0.2441142 0 -0.2140411 0.2441142 0 -0.2441142 0.2441142 0 -0.2765176 0.2441142 0 -0.3113005 0.2441142 0 -0.3485102 0.2441142 0 -0.388193 0.2441142 0 -0.4303934 0.2441142 0 -0.4751555 0.2441142 0 -0.5225216 0.2441142 0 -0.5725335 0.2441142 0 -0.6252316 0.2441142 0 -0.6806558 0.2441142 0 -0.7388448 0.2441142 0 -0.7998369 0.2441142 0 -0.8636691 0.2441142 0 -0.9303782 0.2441142 0 -1 0.2441142 0 -0 0.2765176 0 -0.002418731 0.2765176 0 -0.005155668 0.2765176 0 -0.009080105 0.2765176 0 -0.01434988 0.2765176 0 -0.02107202 0.2765176 0 -0.02934285 0.2765176 0 -0.03925039 0.2765176 0 -0.05087609 0.2765176 0 -0.06429595 0.2765176 0 -0.07958143 0.2765176 0 -0.0968001 0.2765176 0 -0.1160161 0.2765176 0 -0.1372908 0.2765176 0 -0.1606827 0.2765176 0 -0.1862481 0.2765176 0 -0.2140411 0.2765176 0 -0.2441142 0.2765176 0 -0.2765176 0.2765176 0 -0.3113005 0.2765176 0 -0.3485102 0.2765176 0 -0.388193 0.2765176 0 -0.4303934 0.2765176 0 -0.4751555 0.2765176 0 -0.5225216 0.2765176 0 -0.5725335 0.2765176 0 -0.6252316 0.2765176 0 -0.6806558 0.2765176 0 -0.7388448 0.2765176 0 -0.7998369 0.2765176 0 -0.8636691 0.2765176 0 -0.9303782 0.2765176 0 -1 0.2765176 0 -0 0.3113005 0 -0.002418731 0.3113005 0 -0.005155668 0.3113005 0 -0.009080105 0.3113005 0 -0.01434988 0.3113005 0 -0.02107202 0.3113005 0 -0.02934285 0.3113005 0 -0.03925039 0.3113005 0 -0.05087609 0.3113005 0 -0.06429595 0.3113005 0 -0.07958143 0.3113005 0 -0.0968001 0.3113005 0 -0.1160161 0.3113005 0 -0.1372908 0.3113005 0 -0.1606827 0.3113005 0 -0.1862481 0.3113005 0 -0.2140411 0.3113005 0 -0.2441142 0.3113005 0 -0.2765176 0.3113005 0 -0.3113005 0.3113005 0 -0.3485102 0.3113005 0 -0.388193 0.3113005 0 -0.4303934 0.3113005 0 -0.4751555 0.3113005 0 -0.5225216 0.3113005 0 -0.5725335 0.3113005 0 -0.6252316 0.3113005 0 -0.6806558 0.3113005 0 -0.7388448 0.3113005 0 -0.7998369 0.3113005 0 -0.8636691 0.3113005 0 -0.9303782 0.3113005 0 -1 0.3113005 0 -0 0.3485102 0 -0.002418731 0.3485102 0 -0.005155668 0.3485102 0 -0.009080105 0.3485102 0 -0.01434988 0.3485102 0 -0.02107202 0.3485102 0 -0.02934285 0.3485102 0 -0.03925039 0.3485102 0 -0.05087609 0.3485102 0 -0.06429595 0.3485102 0 -0.07958143 0.3485102 0 -0.0968001 0.3485102 0 -0.1160161 0.3485102 0 -0.1372908 0.3485102 0 -0.1606827 0.3485102 0 -0.1862481 0.3485102 0 -0.2140411 0.3485102 0 -0.2441142 0.3485102 0 -0.2765176 0.3485102 0 -0.3113005 0.3485102 0 -0.3485102 0.3485102 0 -0.388193 0.3485102 0 -0.4303934 0.3485102 0 -0.4751555 0.3485102 0 -0.5225216 0.3485102 0 -0.5725335 0.3485102 0 -0.6252316 0.3485102 0 -0.6806558 0.3485102 0 -0.7388448 0.3485102 0 -0.7998369 0.3485102 0 -0.8636691 0.3485102 0 -0.9303782 0.3485102 0 -1 0.3485102 0 -0 0.388193 0 -0.002418731 0.388193 0 -0.005155668 0.388193 0 -0.009080105 0.388193 0 -0.01434988 0.388193 0 -0.02107202 0.388193 0 -0.02934285 0.388193 0 -0.03925039 0.388193 0 -0.05087609 0.388193 0 -0.06429595 0.388193 0 -0.07958143 0.388193 0 -0.0968001 0.388193 0 -0.1160161 0.388193 0 -0.1372908 0.388193 0 -0.1606827 0.388193 0 -0.1862481 0.388193 0 -0.2140411 0.388193 0 -0.2441142 0.388193 0 -0.2765176 0.388193 0 -0.3113005 0.388193 0 -0.3485102 0.388193 0 -0.388193 0.388193 0 -0.4303934 0.388193 0 -0.4751555 0.388193 0 -0.5225216 0.388193 0 -0.5725335 0.388193 0 -0.6252316 0.388193 0 -0.6806558 0.388193 0 -0.7388448 0.388193 0 -0.7998369 0.388193 0 -0.8636691 0.388193 0 -0.9303782 0.388193 0 -1 0.388193 0 -0 0.4303934 0 -0.002418731 0.4303934 0 -0.005155668 0.4303934 0 -0.009080105 0.4303934 0 -0.01434988 0.4303934 0 -0.02107202 0.4303934 0 -0.02934285 0.4303934 0 -0.03925039 0.4303934 0 -0.05087609 0.4303934 0 -0.06429595 0.4303934 0 -0.07958143 0.4303934 0 -0.0968001 0.4303934 0 -0.1160161 0.4303934 0 -0.1372908 0.4303934 0 -0.1606827 0.4303934 0 -0.1862481 0.4303934 0 -0.2140411 0.4303934 0 -0.2441142 0.4303934 0 -0.2765176 0.4303934 0 -0.3113005 0.4303934 0 -0.3485102 0.4303934 0 -0.388193 0.4303934 0 -0.4303934 0.4303934 0 -0.4751555 0.4303934 0 -0.5225216 0.4303934 0 -0.5725335 0.4303934 0 -0.6252316 0.4303934 0 -0.6806558 0.4303934 0 -0.7388448 0.4303934 0 -0.7998369 0.4303934 0 -0.8636691 0.4303934 0 -0.9303782 0.4303934 0 -1 0.4303934 0 -0 0.4751555 0 -0.002418731 0.4751555 0 -0.005155668 0.4751555 0 -0.009080105 0.4751555 0 -0.01434988 0.4751555 0 -0.02107202 0.4751555 0 -0.02934285 0.4751555 0 -0.03925039 0.4751555 0 -0.05087609 0.4751555 0 -0.06429595 0.4751555 0 -0.07958143 0.4751555 0 -0.0968001 0.4751555 0 -0.1160161 0.4751555 0 -0.1372908 0.4751555 0 -0.1606827 0.4751555 0 -0.1862481 0.4751555 0 -0.2140411 0.4751555 0 -0.2441142 0.4751555 0 -0.2765176 0.4751555 0 -0.3113005 0.4751555 0 -0.3485102 0.4751555 0 -0.388193 0.4751555 0 -0.4303934 0.4751555 0 -0.4751555 0.4751555 0 -0.5225216 0.4751555 0 -0.5725335 0.4751555 0 -0.6252316 0.4751555 0 -0.6806558 0.4751555 0 -0.7388448 0.4751555 0 -0.7998369 0.4751555 0 -0.8636691 0.4751555 0 -0.9303782 0.4751555 0 -1 0.4751555 0 -0 0.5225216 0 -0.002418731 0.5225216 0 -0.005155668 0.5225216 0 -0.009080105 0.5225216 0 -0.01434988 0.5225216 0 -0.02107202 0.5225216 0 -0.02934285 0.5225216 0 -0.03925039 0.5225216 0 -0.05087609 0.5225216 0 -0.06429595 0.5225216 0 -0.07958143 0.5225216 0 -0.0968001 0.5225216 0 -0.1160161 0.5225216 0 -0.1372908 0.5225216 0 -0.1606827 0.5225216 0 -0.1862481 0.5225216 0 -0.2140411 0.5225216 0 -0.2441142 0.5225216 0 -0.2765176 0.5225216 0 -0.3113005 0.5225216 0 -0.3485102 0.5225216 0 -0.388193 0.5225216 0 -0.4303934 0.5225216 0 -0.4751555 0.5225216 0 -0.5225216 0.5225216 0 -0.5725335 0.5225216 0 -0.6252316 0.5225216 0 -0.6806558 0.5225216 0 -0.7388448 0.5225216 0 -0.7998369 0.5225216 0 -0.8636691 0.5225216 0 -0.9303782 0.5225216 0 -1 0.5225216 0 -0 0.5725335 0 -0.002418731 0.5725335 0 -0.005155668 0.5725335 0 -0.009080105 0.5725335 0 -0.01434988 0.5725335 0 -0.02107202 0.5725335 0 -0.02934285 0.5725335 0 -0.03925039 0.5725335 0 -0.05087609 0.5725335 0 -0.06429595 0.5725335 0 -0.07958143 0.5725335 0 -0.0968001 0.5725335 0 -0.1160161 0.5725335 0 -0.1372908 0.5725335 0 -0.1606827 0.5725335 0 -0.1862481 0.5725335 0 -0.2140411 0.5725335 0 -0.2441142 0.5725335 0 -0.2765176 0.5725335 0 -0.3113005 0.5725335 0 -0.3485102 0.5725335 0 -0.388193 0.5725335 0 -0.4303934 0.5725335 0 -0.4751555 0.5725335 0 -0.5225216 0.5725335 0 -0.5725335 0.5725335 0 -0.6252316 0.5725335 0 -0.6806558 0.5725335 0 -0.7388448 0.5725335 0 -0.7998369 0.5725335 0 -0.8636691 0.5725335 0 -0.9303782 0.5725335 0 -1 0.5725335 0 -0 0.6252316 0 -0.002418731 0.6252316 0 -0.005155668 0.6252316 0 -0.009080105 0.6252316 0 -0.01434988 0.6252316 0 -0.02107202 0.6252316 0 -0.02934285 0.6252316 0 -0.03925039 0.6252316 0 -0.05087609 0.6252316 0 -0.06429595 0.6252316 0 -0.07958143 0.6252316 0 -0.0968001 0.6252316 0 -0.1160161 0.6252316 0 -0.1372908 0.6252316 0 -0.1606827 0.6252316 0 -0.1862481 0.6252316 0 -0.2140411 0.6252316 0 -0.2441142 0.6252316 0 -0.2765176 0.6252316 0 -0.3113005 0.6252316 0 -0.3485102 0.6252316 0 -0.388193 0.6252316 0 -0.4303934 0.6252316 0 -0.4751555 0.6252316 0 -0.5225216 0.6252316 0 -0.5725335 0.6252316 0 -0.6252316 0.6252316 0 -0.6806558 0.6252316 0 -0.7388448 0.6252316 0 -0.7998369 0.6252316 0 -0.8636691 0.6252316 0 -0.9303782 0.6252316 0 -1 0.6252316 0 -0 0.6806558 0 -0.002418731 0.6806558 0 -0.005155668 0.6806558 0 -0.009080105 0.6806558 0 -0.01434988 0.6806558 0 -0.02107202 0.6806558 0 -0.02934285 0.6806558 0 -0.03925039 0.6806558 0 -0.05087609 0.6806558 0 -0.06429595 0.6806558 0 -0.07958143 0.6806558 0 -0.0968001 0.6806558 0 -0.1160161 0.6806558 0 -0.1372908 0.6806558 0 -0.1606827 0.6806558 0 -0.1862481 0.6806558 0 -0.2140411 0.6806558 0 -0.2441142 0.6806558 0 -0.2765176 0.6806558 0 -0.3113005 0.6806558 0 -0.3485102 0.6806558 0 -0.388193 0.6806558 0 -0.4303934 0.6806558 0 -0.4751555 0.6806558 0 -0.5225216 0.6806558 0 -0.5725335 0.6806558 0 -0.6252316 0.6806558 0 -0.6806558 0.6806558 0 -0.7388448 0.6806558 0 -0.7998369 0.6806558 0 -0.8636691 0.6806558 0 -0.9303782 0.6806558 0 -1 0.6806558 0 -0 0.7388448 0 -0.002418731 0.7388448 0 -0.005155668 0.7388448 0 -0.009080105 0.7388448 0 -0.01434988 0.7388448 0 -0.02107202 0.7388448 0 -0.02934285 0.7388448 0 -0.03925039 0.7388448 0 -0.05087609 0.7388448 0 -0.06429595 0.7388448 0 -0.07958143 0.7388448 0 -0.0968001 0.7388448 0 -0.1160161 0.7388448 0 -0.1372908 0.7388448 0 -0.1606827 0.7388448 0 -0.1862481 0.7388448 0 -0.2140411 0.7388448 0 -0.2441142 0.7388448 0 -0.2765176 0.7388448 0 -0.3113005 0.7388448 0 -0.3485102 0.7388448 0 -0.388193 0.7388448 0 -0.4303934 0.7388448 0 -0.4751555 0.7388448 0 -0.5225216 0.7388448 0 -0.5725335 0.7388448 0 -0.6252316 0.7388448 0 -0.6806558 0.7388448 0 -0.7388448 0.7388448 0 -0.7998369 0.7388448 0 -0.8636691 0.7388448 0 -0.9303782 0.7388448 0 -1 0.7388448 0 -0 0.7998369 0 -0.002418731 0.7998369 0 -0.005155668 0.7998369 0 -0.009080105 0.7998369 0 -0.01434988 0.7998369 0 -0.02107202 0.7998369 0 -0.02934285 0.7998369 0 -0.03925039 0.7998369 0 -0.05087609 0.7998369 0 -0.06429595 0.7998369 0 -0.07958143 0.7998369 0 -0.0968001 0.7998369 0 -0.1160161 0.7998369 0 -0.1372908 0.7998369 0 -0.1606827 0.7998369 0 -0.1862481 0.7998369 0 -0.2140411 0.7998369 0 -0.2441142 0.7998369 0 -0.2765176 0.7998369 0 -0.3113005 0.7998369 0 -0.3485102 0.7998369 0 -0.388193 0.7998369 0 -0.4303934 0.7998369 0 -0.4751555 0.7998369 0 -0.5225216 0.7998369 0 -0.5725335 0.7998369 0 -0.6252316 0.7998369 0 -0.6806558 0.7998369 0 -0.7388448 0.7998369 0 -0.7998369 0.7998369 0 -0.8636691 0.7998369 0 -0.9303782 0.7998369 0 -1 0.7998369 0 -0 0.8636691 0 -0.002418731 0.8636691 0 -0.005155668 0.8636691 0 -0.009080105 0.8636691 0 -0.01434988 0.8636691 0 -0.02107202 0.8636691 0 -0.02934285 0.8636691 0 -0.03925039 0.8636691 0 -0.05087609 0.8636691 0 -0.06429595 0.8636691 0 -0.07958143 0.8636691 0 -0.0968001 0.8636691 0 -0.1160161 0.8636691 0 -0.1372908 0.8636691 0 -0.1606827 0.8636691 0 -0.1862481 0.8636691 0 -0.2140411 0.8636691 0 -0.2441142 0.8636691 0 -0.2765176 0.8636691 0 -0.3113005 0.8636691 0 -0.3485102 0.8636691 0 -0.388193 0.8636691 0 -0.4303934 0.8636691 0 -0.4751555 0.8636691 0 -0.5225216 0.8636691 0 -0.5725335 0.8636691 0 -0.6252316 0.8636691 0 -0.6806558 0.8636691 0 -0.7388448 0.8636691 0 -0.7998369 0.8636691 0 -0.8636691 0.8636691 0 -0.9303782 0.8636691 0 -1 0.8636691 0 -0 0.9303782 0 -0.002418731 0.9303782 0 -0.005155668 0.9303782 0 -0.009080105 0.9303782 0 -0.01434988 0.9303782 0 -0.02107202 0.9303782 0 -0.02934285 0.9303782 0 -0.03925039 0.9303782 0 -0.05087609 0.9303782 0 -0.06429595 0.9303782 0 -0.07958143 0.9303782 0 -0.0968001 0.9303782 0 -0.1160161 0.9303782 0 -0.1372908 0.9303782 0 -0.1606827 0.9303782 0 -0.1862481 0.9303782 0 -0.2140411 0.9303782 0 -0.2441142 0.9303782 0 -0.2765176 0.9303782 0 -0.3113005 0.9303782 0 -0.3485102 0.9303782 0 -0.388193 0.9303782 0 -0.4303934 0.9303782 0 -0.4751555 0.9303782 0 -0.5225216 0.9303782 0 -0.5725335 0.9303782 0 -0.6252316 0.9303782 0 -0.6806558 0.9303782 0 -0.7388448 0.9303782 0 -0.7998369 0.9303782 0 -0.8636691 0.9303782 0 -0.9303782 0.9303782 0 -1 0.9303782 0 -0 1 0 -0.002418731 1 0 -0.005155668 1 0 -0.009080105 1 0 -0.01434988 1 0 -0.02107202 1 0 -0.02934285 1 0 -0.03925039 1 0 -0.05087609 1 0 -0.06429595 1 0 -0.07958143 1 0 -0.0968001 1 0 -0.1160161 1 0 -0.1372908 1 0 -0.1606827 1 0 -0.1862481 1 0 -0.2140411 1 0 -0.2441142 1 0 -0.2765176 1 0 -0.3113005 1 0 -0.3485102 1 0 -0.388193 1 0 -0.4303934 1 0 -0.4751555 1 0 -0.5225216 1 0 -0.5725335 1 0 -0.6252316 1 0 -0.6806558 1 0 -0.7388448 1 0 -0.7998369 1 0 -0.8636691 1 0 -0.9303782 1 0 -1 1 0 -0 0 0.002418731 -0.002418731 0 0.002418731 -0.005155668 0 0.002418731 -0.009080105 0 0.002418731 -0.01434988 0 0.002418731 -0.02107202 0 0.002418731 -0.02934285 0 0.002418731 -0.03925039 0 0.002418731 -0.05087609 0 0.002418731 -0.06429595 0 0.002418731 -0.07958143 0 0.002418731 -0.0968001 0 0.002418731 -0.1160161 0 0.002418731 -0.1372908 0 0.002418731 -0.1606827 0 0.002418731 -0.1862481 0 0.002418731 -0.2140411 0 0.002418731 -0.2441142 0 0.002418731 -0.2765176 0 0.002418731 -0.3113005 0 0.002418731 -0.3485102 0 0.002418731 -0.388193 0 0.002418731 -0.4303934 0 0.002418731 -0.4751555 0 0.002418731 -0.5225216 0 0.002418731 -0.5725335 0 0.002418731 -0.6252316 0 0.002418731 -0.6806558 0 0.002418731 -0.7388448 0 0.002418731 -0.7998369 0 0.002418731 -0.8636691 0 0.002418731 -0.9303782 0 0.002418731 -1 0 0.002418731 -0 0.002418731 0.002418731 -0.002418731 0.002418731 0.002418731 -0.005155668 0.002418731 0.002418731 -0.009080105 0.002418731 0.002418731 -0.01434988 0.002418731 0.002418731 -0.02107202 0.002418731 0.002418731 -0.02934285 0.002418731 0.002418731 -0.03925039 0.002418731 0.002418731 -0.05087609 0.002418731 0.002418731 -0.06429595 0.002418731 0.002418731 -0.07958143 0.002418731 0.002418731 -0.0968001 0.002418731 0.002418731 -0.1160161 0.002418731 0.002418731 -0.1372908 0.002418731 0.002418731 -0.1606827 0.002418731 0.002418731 -0.1862481 0.002418731 0.002418731 -0.2140411 0.002418731 0.002418731 -0.2441142 0.002418731 0.002418731 -0.2765176 0.002418731 0.002418731 -0.3113005 0.002418731 0.002418731 -0.3485102 0.002418731 0.002418731 -0.388193 0.002418731 0.002418731 -0.4303934 0.002418731 0.002418731 -0.4751555 0.002418731 0.002418731 -0.5225216 0.002418731 0.002418731 -0.5725335 0.002418731 0.002418731 -0.6252316 0.002418731 0.002418731 -0.6806558 0.002418731 0.002418731 -0.7388448 0.002418731 0.002418731 -0.7998369 0.002418731 0.002418731 -0.8636691 0.002418731 0.002418731 -0.9303782 0.002418731 0.002418731 -1 0.002418731 0.002418731 -0 0.005155668 0.002418731 -0.002418731 0.005155668 0.002418731 -0.005155668 0.005155668 0.002418731 -0.009080105 0.005155668 0.002418731 -0.01434988 0.005155668 0.002418731 -0.02107202 0.005155668 0.002418731 -0.02934285 0.005155668 0.002418731 -0.03925039 0.005155668 0.002418731 -0.05087609 0.005155668 0.002418731 -0.06429595 0.005155668 0.002418731 -0.07958143 0.005155668 0.002418731 -0.0968001 0.005155668 0.002418731 -0.1160161 0.005155668 0.002418731 -0.1372908 0.005155668 0.002418731 -0.1606827 0.005155668 0.002418731 -0.1862481 0.005155668 0.002418731 -0.2140411 0.005155668 0.002418731 -0.2441142 0.005155668 0.002418731 -0.2765176 0.005155668 0.002418731 -0.3113005 0.005155668 0.002418731 -0.3485102 0.005155668 0.002418731 -0.388193 0.005155668 0.002418731 -0.4303934 0.005155668 0.002418731 -0.4751555 0.005155668 0.002418731 -0.5225216 0.005155668 0.002418731 -0.5725335 0.005155668 0.002418731 -0.6252316 0.005155668 0.002418731 -0.6806558 0.005155668 0.002418731 -0.7388448 0.005155668 0.002418731 -0.7998369 0.005155668 0.002418731 -0.8636691 0.005155668 0.002418731 -0.9303782 0.005155668 0.002418731 -1 0.005155668 0.002418731 -0 0.009080105 0.002418731 -0.002418731 0.009080105 0.002418731 -0.005155668 0.009080105 0.002418731 -0.009080105 0.009080105 0.002418731 -0.01434988 0.009080105 0.002418731 -0.02107202 0.009080105 0.002418731 -0.02934285 0.009080105 0.002418731 -0.03925039 0.009080105 0.002418731 -0.05087609 0.009080105 0.002418731 -0.06429595 0.009080105 0.002418731 -0.07958143 0.009080105 0.002418731 -0.0968001 0.009080105 0.002418731 -0.1160161 0.009080105 0.002418731 -0.1372908 0.009080105 0.002418731 -0.1606827 0.009080105 0.002418731 -0.1862481 0.009080105 0.002418731 -0.2140411 0.009080105 0.002418731 -0.2441142 0.009080105 0.002418731 -0.2765176 0.009080105 0.002418731 -0.3113005 0.009080105 0.002418731 -0.3485102 0.009080105 0.002418731 -0.388193 0.009080105 0.002418731 -0.4303934 0.009080105 0.002418731 -0.4751555 0.009080105 0.002418731 -0.5225216 0.009080105 0.002418731 -0.5725335 0.009080105 0.002418731 -0.6252316 0.009080105 0.002418731 -0.6806558 0.009080105 0.002418731 -0.7388448 0.009080105 0.002418731 -0.7998369 0.009080105 0.002418731 -0.8636691 0.009080105 0.002418731 -0.9303782 0.009080105 0.002418731 -1 0.009080105 0.002418731 -0 0.01434988 0.002418731 -0.002418731 0.01434988 0.002418731 -0.005155668 0.01434988 0.002418731 -0.009080105 0.01434988 0.002418731 -0.01434988 0.01434988 0.002418731 -0.02107202 0.01434988 0.002418731 -0.02934285 0.01434988 0.002418731 -0.03925039 0.01434988 0.002418731 -0.05087609 0.01434988 0.002418731 -0.06429595 0.01434988 0.002418731 -0.07958143 0.01434988 0.002418731 -0.0968001 0.01434988 0.002418731 -0.1160161 0.01434988 0.002418731 -0.1372908 0.01434988 0.002418731 -0.1606827 0.01434988 0.002418731 -0.1862481 0.01434988 0.002418731 -0.2140411 0.01434988 0.002418731 -0.2441142 0.01434988 0.002418731 -0.2765176 0.01434988 0.002418731 -0.3113005 0.01434988 0.002418731 -0.3485102 0.01434988 0.002418731 -0.388193 0.01434988 0.002418731 -0.4303934 0.01434988 0.002418731 -0.4751555 0.01434988 0.002418731 -0.5225216 0.01434988 0.002418731 -0.5725335 0.01434988 0.002418731 -0.6252316 0.01434988 0.002418731 -0.6806558 0.01434988 0.002418731 -0.7388448 0.01434988 0.002418731 -0.7998369 0.01434988 0.002418731 -0.8636691 0.01434988 0.002418731 -0.9303782 0.01434988 0.002418731 -1 0.01434988 0.002418731 -0 0.02107202 0.002418731 -0.002418731 0.02107202 0.002418731 -0.005155668 0.02107202 0.002418731 -0.009080105 0.02107202 0.002418731 -0.01434988 0.02107202 0.002418731 -0.02107202 0.02107202 0.002418731 -0.02934285 0.02107202 0.002418731 -0.03925039 0.02107202 0.002418731 -0.05087609 0.02107202 0.002418731 -0.06429595 0.02107202 0.002418731 -0.07958143 0.02107202 0.002418731 -0.0968001 0.02107202 0.002418731 -0.1160161 0.02107202 0.002418731 -0.1372908 0.02107202 0.002418731 -0.1606827 0.02107202 0.002418731 -0.1862481 0.02107202 0.002418731 -0.2140411 0.02107202 0.002418731 -0.2441142 0.02107202 0.002418731 -0.2765176 0.02107202 0.002418731 -0.3113005 0.02107202 0.002418731 -0.3485102 0.02107202 0.002418731 -0.388193 0.02107202 0.002418731 -0.4303934 0.02107202 0.002418731 -0.4751555 0.02107202 0.002418731 -0.5225216 0.02107202 0.002418731 -0.5725335 0.02107202 0.002418731 -0.6252316 0.02107202 0.002418731 -0.6806558 0.02107202 0.002418731 -0.7388448 0.02107202 0.002418731 -0.7998369 0.02107202 0.002418731 -0.8636691 0.02107202 0.002418731 -0.9303782 0.02107202 0.002418731 -1 0.02107202 0.002418731 -0 0.02934285 0.002418731 -0.002418731 0.02934285 0.002418731 -0.005155668 0.02934285 0.002418731 -0.009080105 0.02934285 0.002418731 -0.01434988 0.02934285 0.002418731 -0.02107202 0.02934285 0.002418731 -0.02934285 0.02934285 0.002418731 -0.03925039 0.02934285 0.002418731 -0.05087609 0.02934285 0.002418731 -0.06429595 0.02934285 0.002418731 -0.07958143 0.02934285 0.002418731 -0.0968001 0.02934285 0.002418731 -0.1160161 0.02934285 0.002418731 -0.1372908 0.02934285 0.002418731 -0.1606827 0.02934285 0.002418731 -0.1862481 0.02934285 0.002418731 -0.2140411 0.02934285 0.002418731 -0.2441142 0.02934285 0.002418731 -0.2765176 0.02934285 0.002418731 -0.3113005 0.02934285 0.002418731 -0.3485102 0.02934285 0.002418731 -0.388193 0.02934285 0.002418731 -0.4303934 0.02934285 0.002418731 -0.4751555 0.02934285 0.002418731 -0.5225216 0.02934285 0.002418731 -0.5725335 0.02934285 0.002418731 -0.6252316 0.02934285 0.002418731 -0.6806558 0.02934285 0.002418731 -0.7388448 0.02934285 0.002418731 -0.7998369 0.02934285 0.002418731 -0.8636691 0.02934285 0.002418731 -0.9303782 0.02934285 0.002418731 -1 0.02934285 0.002418731 -0 0.03925039 0.002418731 -0.002418731 0.03925039 0.002418731 -0.005155668 0.03925039 0.002418731 -0.009080105 0.03925039 0.002418731 -0.01434988 0.03925039 0.002418731 -0.02107202 0.03925039 0.002418731 -0.02934285 0.03925039 0.002418731 -0.03925039 0.03925039 0.002418731 -0.05087609 0.03925039 0.002418731 -0.06429595 0.03925039 0.002418731 -0.07958143 0.03925039 0.002418731 -0.0968001 0.03925039 0.002418731 -0.1160161 0.03925039 0.002418731 -0.1372908 0.03925039 0.002418731 -0.1606827 0.03925039 0.002418731 -0.1862481 0.03925039 0.002418731 -0.2140411 0.03925039 0.002418731 -0.2441142 0.03925039 0.002418731 -0.2765176 0.03925039 0.002418731 -0.3113005 0.03925039 0.002418731 -0.3485102 0.03925039 0.002418731 -0.388193 0.03925039 0.002418731 -0.4303934 0.03925039 0.002418731 -0.4751555 0.03925039 0.002418731 -0.5225216 0.03925039 0.002418731 -0.5725335 0.03925039 0.002418731 -0.6252316 0.03925039 0.002418731 -0.6806558 0.03925039 0.002418731 -0.7388448 0.03925039 0.002418731 -0.7998369 0.03925039 0.002418731 -0.8636691 0.03925039 0.002418731 -0.9303782 0.03925039 0.002418731 -1 0.03925039 0.002418731 -0 0.05087609 0.002418731 -0.002418731 0.05087609 0.002418731 -0.005155668 0.05087609 0.002418731 -0.009080105 0.05087609 0.002418731 -0.01434988 0.05087609 0.002418731 -0.02107202 0.05087609 0.002418731 -0.02934285 0.05087609 0.002418731 -0.03925039 0.05087609 0.002418731 -0.05087609 0.05087609 0.002418731 -0.06429595 0.05087609 0.002418731 -0.07958143 0.05087609 0.002418731 -0.0968001 0.05087609 0.002418731 -0.1160161 0.05087609 0.002418731 -0.1372908 0.05087609 0.002418731 -0.1606827 0.05087609 0.002418731 -0.1862481 0.05087609 0.002418731 -0.2140411 0.05087609 0.002418731 -0.2441142 0.05087609 0.002418731 -0.2765176 0.05087609 0.002418731 -0.3113005 0.05087609 0.002418731 -0.3485102 0.05087609 0.002418731 -0.388193 0.05087609 0.002418731 -0.4303934 0.05087609 0.002418731 -0.4751555 0.05087609 0.002418731 -0.5225216 0.05087609 0.002418731 -0.5725335 0.05087609 0.002418731 -0.6252316 0.05087609 0.002418731 -0.6806558 0.05087609 0.002418731 -0.7388448 0.05087609 0.002418731 -0.7998369 0.05087609 0.002418731 -0.8636691 0.05087609 0.002418731 -0.9303782 0.05087609 0.002418731 -1 0.05087609 0.002418731 -0 0.06429595 0.002418731 -0.002418731 0.06429595 0.002418731 -0.005155668 0.06429595 0.002418731 -0.009080105 0.06429595 0.002418731 -0.01434988 0.06429595 0.002418731 -0.02107202 0.06429595 0.002418731 -0.02934285 0.06429595 0.002418731 -0.03925039 0.06429595 0.002418731 -0.05087609 0.06429595 0.002418731 -0.06429595 0.06429595 0.002418731 -0.07958143 0.06429595 0.002418731 -0.0968001 0.06429595 0.002418731 -0.1160161 0.06429595 0.002418731 -0.1372908 0.06429595 0.002418731 -0.1606827 0.06429595 0.002418731 -0.1862481 0.06429595 0.002418731 -0.2140411 0.06429595 0.002418731 -0.2441142 0.06429595 0.002418731 -0.2765176 0.06429595 0.002418731 -0.3113005 0.06429595 0.002418731 -0.3485102 0.06429595 0.002418731 -0.388193 0.06429595 0.002418731 -0.4303934 0.06429595 0.002418731 -0.4751555 0.06429595 0.002418731 -0.5225216 0.06429595 0.002418731 -0.5725335 0.06429595 0.002418731 -0.6252316 0.06429595 0.002418731 -0.6806558 0.06429595 0.002418731 -0.7388448 0.06429595 0.002418731 -0.7998369 0.06429595 0.002418731 -0.8636691 0.06429595 0.002418731 -0.9303782 0.06429595 0.002418731 -1 0.06429595 0.002418731 -0 0.07958143 0.002418731 -0.002418731 0.07958143 0.002418731 -0.005155668 0.07958143 0.002418731 -0.009080105 0.07958143 0.002418731 -0.01434988 0.07958143 0.002418731 -0.02107202 0.07958143 0.002418731 -0.02934285 0.07958143 0.002418731 -0.03925039 0.07958143 0.002418731 -0.05087609 0.07958143 0.002418731 -0.06429595 0.07958143 0.002418731 -0.07958143 0.07958143 0.002418731 -0.0968001 0.07958143 0.002418731 -0.1160161 0.07958143 0.002418731 -0.1372908 0.07958143 0.002418731 -0.1606827 0.07958143 0.002418731 -0.1862481 0.07958143 0.002418731 -0.2140411 0.07958143 0.002418731 -0.2441142 0.07958143 0.002418731 -0.2765176 0.07958143 0.002418731 -0.3113005 0.07958143 0.002418731 -0.3485102 0.07958143 0.002418731 -0.388193 0.07958143 0.002418731 -0.4303934 0.07958143 0.002418731 -0.4751555 0.07958143 0.002418731 -0.5225216 0.07958143 0.002418731 -0.5725335 0.07958143 0.002418731 -0.6252316 0.07958143 0.002418731 -0.6806558 0.07958143 0.002418731 -0.7388448 0.07958143 0.002418731 -0.7998369 0.07958143 0.002418731 -0.8636691 0.07958143 0.002418731 -0.9303782 0.07958143 0.002418731 -1 0.07958143 0.002418731 -0 0.0968001 0.002418731 -0.002418731 0.0968001 0.002418731 -0.005155668 0.0968001 0.002418731 -0.009080105 0.0968001 0.002418731 -0.01434988 0.0968001 0.002418731 -0.02107202 0.0968001 0.002418731 -0.02934285 0.0968001 0.002418731 -0.03925039 0.0968001 0.002418731 -0.05087609 0.0968001 0.002418731 -0.06429595 0.0968001 0.002418731 -0.07958143 0.0968001 0.002418731 -0.0968001 0.0968001 0.002418731 -0.1160161 0.0968001 0.002418731 -0.1372908 0.0968001 0.002418731 -0.1606827 0.0968001 0.002418731 -0.1862481 0.0968001 0.002418731 -0.2140411 0.0968001 0.002418731 -0.2441142 0.0968001 0.002418731 -0.2765176 0.0968001 0.002418731 -0.3113005 0.0968001 0.002418731 -0.3485102 0.0968001 0.002418731 -0.388193 0.0968001 0.002418731 -0.4303934 0.0968001 0.002418731 -0.4751555 0.0968001 0.002418731 -0.5225216 0.0968001 0.002418731 -0.5725335 0.0968001 0.002418731 -0.6252316 0.0968001 0.002418731 -0.6806558 0.0968001 0.002418731 -0.7388448 0.0968001 0.002418731 -0.7998369 0.0968001 0.002418731 -0.8636691 0.0968001 0.002418731 -0.9303782 0.0968001 0.002418731 -1 0.0968001 0.002418731 -0 0.1160161 0.002418731 -0.002418731 0.1160161 0.002418731 -0.005155668 0.1160161 0.002418731 -0.009080105 0.1160161 0.002418731 -0.01434988 0.1160161 0.002418731 -0.02107202 0.1160161 0.002418731 -0.02934285 0.1160161 0.002418731 -0.03925039 0.1160161 0.002418731 -0.05087609 0.1160161 0.002418731 -0.06429595 0.1160161 0.002418731 -0.07958143 0.1160161 0.002418731 -0.0968001 0.1160161 0.002418731 -0.1160161 0.1160161 0.002418731 -0.1372908 0.1160161 0.002418731 -0.1606827 0.1160161 0.002418731 -0.1862481 0.1160161 0.002418731 -0.2140411 0.1160161 0.002418731 -0.2441142 0.1160161 0.002418731 -0.2765176 0.1160161 0.002418731 -0.3113005 0.1160161 0.002418731 -0.3485102 0.1160161 0.002418731 -0.388193 0.1160161 0.002418731 -0.4303934 0.1160161 0.002418731 -0.4751555 0.1160161 0.002418731 -0.5225216 0.1160161 0.002418731 -0.5725335 0.1160161 0.002418731 -0.6252316 0.1160161 0.002418731 -0.6806558 0.1160161 0.002418731 -0.7388448 0.1160161 0.002418731 -0.7998369 0.1160161 0.002418731 -0.8636691 0.1160161 0.002418731 -0.9303782 0.1160161 0.002418731 -1 0.1160161 0.002418731 -0 0.1372908 0.002418731 -0.002418731 0.1372908 0.002418731 -0.005155668 0.1372908 0.002418731 -0.009080105 0.1372908 0.002418731 -0.01434988 0.1372908 0.002418731 -0.02107202 0.1372908 0.002418731 -0.02934285 0.1372908 0.002418731 -0.03925039 0.1372908 0.002418731 -0.05087609 0.1372908 0.002418731 -0.06429595 0.1372908 0.002418731 -0.07958143 0.1372908 0.002418731 -0.0968001 0.1372908 0.002418731 -0.1160161 0.1372908 0.002418731 -0.1372908 0.1372908 0.002418731 -0.1606827 0.1372908 0.002418731 -0.1862481 0.1372908 0.002418731 -0.2140411 0.1372908 0.002418731 -0.2441142 0.1372908 0.002418731 -0.2765176 0.1372908 0.002418731 -0.3113005 0.1372908 0.002418731 -0.3485102 0.1372908 0.002418731 -0.388193 0.1372908 0.002418731 -0.4303934 0.1372908 0.002418731 -0.4751555 0.1372908 0.002418731 -0.5225216 0.1372908 0.002418731 -0.5725335 0.1372908 0.002418731 -0.6252316 0.1372908 0.002418731 -0.6806558 0.1372908 0.002418731 -0.7388448 0.1372908 0.002418731 -0.7998369 0.1372908 0.002418731 -0.8636691 0.1372908 0.002418731 -0.9303782 0.1372908 0.002418731 -1 0.1372908 0.002418731 -0 0.1606827 0.002418731 -0.002418731 0.1606827 0.002418731 -0.005155668 0.1606827 0.002418731 -0.009080105 0.1606827 0.002418731 -0.01434988 0.1606827 0.002418731 -0.02107202 0.1606827 0.002418731 -0.02934285 0.1606827 0.002418731 -0.03925039 0.1606827 0.002418731 -0.05087609 0.1606827 0.002418731 -0.06429595 0.1606827 0.002418731 -0.07958143 0.1606827 0.002418731 -0.0968001 0.1606827 0.002418731 -0.1160161 0.1606827 0.002418731 -0.1372908 0.1606827 0.002418731 -0.1606827 0.1606827 0.002418731 -0.1862481 0.1606827 0.002418731 -0.2140411 0.1606827 0.002418731 -0.2441142 0.1606827 0.002418731 -0.2765176 0.1606827 0.002418731 -0.3113005 0.1606827 0.002418731 -0.3485102 0.1606827 0.002418731 -0.388193 0.1606827 0.002418731 -0.4303934 0.1606827 0.002418731 -0.4751555 0.1606827 0.002418731 -0.5225216 0.1606827 0.002418731 -0.5725335 0.1606827 0.002418731 -0.6252316 0.1606827 0.002418731 -0.6806558 0.1606827 0.002418731 -0.7388448 0.1606827 0.002418731 -0.7998369 0.1606827 0.002418731 -0.8636691 0.1606827 0.002418731 -0.9303782 0.1606827 0.002418731 -1 0.1606827 0.002418731 -0 0.1862481 0.002418731 -0.002418731 0.1862481 0.002418731 -0.005155668 0.1862481 0.002418731 -0.009080105 0.1862481 0.002418731 -0.01434988 0.1862481 0.002418731 -0.02107202 0.1862481 0.002418731 -0.02934285 0.1862481 0.002418731 -0.03925039 0.1862481 0.002418731 -0.05087609 0.1862481 0.002418731 -0.06429595 0.1862481 0.002418731 -0.07958143 0.1862481 0.002418731 -0.0968001 0.1862481 0.002418731 -0.1160161 0.1862481 0.002418731 -0.1372908 0.1862481 0.002418731 -0.1606827 0.1862481 0.002418731 -0.1862481 0.1862481 0.002418731 -0.2140411 0.1862481 0.002418731 -0.2441142 0.1862481 0.002418731 -0.2765176 0.1862481 0.002418731 -0.3113005 0.1862481 0.002418731 -0.3485102 0.1862481 0.002418731 -0.388193 0.1862481 0.002418731 -0.4303934 0.1862481 0.002418731 -0.4751555 0.1862481 0.002418731 -0.5225216 0.1862481 0.002418731 -0.5725335 0.1862481 0.002418731 -0.6252316 0.1862481 0.002418731 -0.6806558 0.1862481 0.002418731 -0.7388448 0.1862481 0.002418731 -0.7998369 0.1862481 0.002418731 -0.8636691 0.1862481 0.002418731 -0.9303782 0.1862481 0.002418731 -1 0.1862481 0.002418731 -0 0.2140411 0.002418731 -0.002418731 0.2140411 0.002418731 -0.005155668 0.2140411 0.002418731 -0.009080105 0.2140411 0.002418731 -0.01434988 0.2140411 0.002418731 -0.02107202 0.2140411 0.002418731 -0.02934285 0.2140411 0.002418731 -0.03925039 0.2140411 0.002418731 -0.05087609 0.2140411 0.002418731 -0.06429595 0.2140411 0.002418731 -0.07958143 0.2140411 0.002418731 -0.0968001 0.2140411 0.002418731 -0.1160161 0.2140411 0.002418731 -0.1372908 0.2140411 0.002418731 -0.1606827 0.2140411 0.002418731 -0.1862481 0.2140411 0.002418731 -0.2140411 0.2140411 0.002418731 -0.2441142 0.2140411 0.002418731 -0.2765176 0.2140411 0.002418731 -0.3113005 0.2140411 0.002418731 -0.3485102 0.2140411 0.002418731 -0.388193 0.2140411 0.002418731 -0.4303934 0.2140411 0.002418731 -0.4751555 0.2140411 0.002418731 -0.5225216 0.2140411 0.002418731 -0.5725335 0.2140411 0.002418731 -0.6252316 0.2140411 0.002418731 -0.6806558 0.2140411 0.002418731 -0.7388448 0.2140411 0.002418731 -0.7998369 0.2140411 0.002418731 -0.8636691 0.2140411 0.002418731 -0.9303782 0.2140411 0.002418731 -1 0.2140411 0.002418731 -0 0.2441142 0.002418731 -0.002418731 0.2441142 0.002418731 -0.005155668 0.2441142 0.002418731 -0.009080105 0.2441142 0.002418731 -0.01434988 0.2441142 0.002418731 -0.02107202 0.2441142 0.002418731 -0.02934285 0.2441142 0.002418731 -0.03925039 0.2441142 0.002418731 -0.05087609 0.2441142 0.002418731 -0.06429595 0.2441142 0.002418731 -0.07958143 0.2441142 0.002418731 -0.0968001 0.2441142 0.002418731 -0.1160161 0.2441142 0.002418731 -0.1372908 0.2441142 0.002418731 -0.1606827 0.2441142 0.002418731 -0.1862481 0.2441142 0.002418731 -0.2140411 0.2441142 0.002418731 -0.2441142 0.2441142 0.002418731 -0.2765176 0.2441142 0.002418731 -0.3113005 0.2441142 0.002418731 -0.3485102 0.2441142 0.002418731 -0.388193 0.2441142 0.002418731 -0.4303934 0.2441142 0.002418731 -0.4751555 0.2441142 0.002418731 -0.5225216 0.2441142 0.002418731 -0.5725335 0.2441142 0.002418731 -0.6252316 0.2441142 0.002418731 -0.6806558 0.2441142 0.002418731 -0.7388448 0.2441142 0.002418731 -0.7998369 0.2441142 0.002418731 -0.8636691 0.2441142 0.002418731 -0.9303782 0.2441142 0.002418731 -1 0.2441142 0.002418731 -0 0.2765176 0.002418731 -0.002418731 0.2765176 0.002418731 -0.005155668 0.2765176 0.002418731 -0.009080105 0.2765176 0.002418731 -0.01434988 0.2765176 0.002418731 -0.02107202 0.2765176 0.002418731 -0.02934285 0.2765176 0.002418731 -0.03925039 0.2765176 0.002418731 -0.05087609 0.2765176 0.002418731 -0.06429595 0.2765176 0.002418731 -0.07958143 0.2765176 0.002418731 -0.0968001 0.2765176 0.002418731 -0.1160161 0.2765176 0.002418731 -0.1372908 0.2765176 0.002418731 -0.1606827 0.2765176 0.002418731 -0.1862481 0.2765176 0.002418731 -0.2140411 0.2765176 0.002418731 -0.2441142 0.2765176 0.002418731 -0.2765176 0.2765176 0.002418731 -0.3113005 0.2765176 0.002418731 -0.3485102 0.2765176 0.002418731 -0.388193 0.2765176 0.002418731 -0.4303934 0.2765176 0.002418731 -0.4751555 0.2765176 0.002418731 -0.5225216 0.2765176 0.002418731 -0.5725335 0.2765176 0.002418731 -0.6252316 0.2765176 0.002418731 -0.6806558 0.2765176 0.002418731 -0.7388448 0.2765176 0.002418731 -0.7998369 0.2765176 0.002418731 -0.8636691 0.2765176 0.002418731 -0.9303782 0.2765176 0.002418731 -1 0.2765176 0.002418731 -0 0.3113005 0.002418731 -0.002418731 0.3113005 0.002418731 -0.005155668 0.3113005 0.002418731 -0.009080105 0.3113005 0.002418731 -0.01434988 0.3113005 0.002418731 -0.02107202 0.3113005 0.002418731 -0.02934285 0.3113005 0.002418731 -0.03925039 0.3113005 0.002418731 -0.05087609 0.3113005 0.002418731 -0.06429595 0.3113005 0.002418731 -0.07958143 0.3113005 0.002418731 -0.0968001 0.3113005 0.002418731 -0.1160161 0.3113005 0.002418731 -0.1372908 0.3113005 0.002418731 -0.1606827 0.3113005 0.002418731 -0.1862481 0.3113005 0.002418731 -0.2140411 0.3113005 0.002418731 -0.2441142 0.3113005 0.002418731 -0.2765176 0.3113005 0.002418731 -0.3113005 0.3113005 0.002418731 -0.3485102 0.3113005 0.002418731 -0.388193 0.3113005 0.002418731 -0.4303934 0.3113005 0.002418731 -0.4751555 0.3113005 0.002418731 -0.5225216 0.3113005 0.002418731 -0.5725335 0.3113005 0.002418731 -0.6252316 0.3113005 0.002418731 -0.6806558 0.3113005 0.002418731 -0.7388448 0.3113005 0.002418731 -0.7998369 0.3113005 0.002418731 -0.8636691 0.3113005 0.002418731 -0.9303782 0.3113005 0.002418731 -1 0.3113005 0.002418731 -0 0.3485102 0.002418731 -0.002418731 0.3485102 0.002418731 -0.005155668 0.3485102 0.002418731 -0.009080105 0.3485102 0.002418731 -0.01434988 0.3485102 0.002418731 -0.02107202 0.3485102 0.002418731 -0.02934285 0.3485102 0.002418731 -0.03925039 0.3485102 0.002418731 -0.05087609 0.3485102 0.002418731 -0.06429595 0.3485102 0.002418731 -0.07958143 0.3485102 0.002418731 -0.0968001 0.3485102 0.002418731 -0.1160161 0.3485102 0.002418731 -0.1372908 0.3485102 0.002418731 -0.1606827 0.3485102 0.002418731 -0.1862481 0.3485102 0.002418731 -0.2140411 0.3485102 0.002418731 -0.2441142 0.3485102 0.002418731 -0.2765176 0.3485102 0.002418731 -0.3113005 0.3485102 0.002418731 -0.3485102 0.3485102 0.002418731 -0.388193 0.3485102 0.002418731 -0.4303934 0.3485102 0.002418731 -0.4751555 0.3485102 0.002418731 -0.5225216 0.3485102 0.002418731 -0.5725335 0.3485102 0.002418731 -0.6252316 0.3485102 0.002418731 -0.6806558 0.3485102 0.002418731 -0.7388448 0.3485102 0.002418731 -0.7998369 0.3485102 0.002418731 -0.8636691 0.3485102 0.002418731 -0.9303782 0.3485102 0.002418731 -1 0.3485102 0.002418731 -0 0.388193 0.002418731 -0.002418731 0.388193 0.002418731 -0.005155668 0.388193 0.002418731 -0.009080105 0.388193 0.002418731 -0.01434988 0.388193 0.002418731 -0.02107202 0.388193 0.002418731 -0.02934285 0.388193 0.002418731 -0.03925039 0.388193 0.002418731 -0.05087609 0.388193 0.002418731 -0.06429595 0.388193 0.002418731 -0.07958143 0.388193 0.002418731 -0.0968001 0.388193 0.002418731 -0.1160161 0.388193 0.002418731 -0.1372908 0.388193 0.002418731 -0.1606827 0.388193 0.002418731 -0.1862481 0.388193 0.002418731 -0.2140411 0.388193 0.002418731 -0.2441142 0.388193 0.002418731 -0.2765176 0.388193 0.002418731 -0.3113005 0.388193 0.002418731 -0.3485102 0.388193 0.002418731 -0.388193 0.388193 0.002418731 -0.4303934 0.388193 0.002418731 -0.4751555 0.388193 0.002418731 -0.5225216 0.388193 0.002418731 -0.5725335 0.388193 0.002418731 -0.6252316 0.388193 0.002418731 -0.6806558 0.388193 0.002418731 -0.7388448 0.388193 0.002418731 -0.7998369 0.388193 0.002418731 -0.8636691 0.388193 0.002418731 -0.9303782 0.388193 0.002418731 -1 0.388193 0.002418731 -0 0.4303934 0.002418731 -0.002418731 0.4303934 0.002418731 -0.005155668 0.4303934 0.002418731 -0.009080105 0.4303934 0.002418731 -0.01434988 0.4303934 0.002418731 -0.02107202 0.4303934 0.002418731 -0.02934285 0.4303934 0.002418731 -0.03925039 0.4303934 0.002418731 -0.05087609 0.4303934 0.002418731 -0.06429595 0.4303934 0.002418731 -0.07958143 0.4303934 0.002418731 -0.0968001 0.4303934 0.002418731 -0.1160161 0.4303934 0.002418731 -0.1372908 0.4303934 0.002418731 -0.1606827 0.4303934 0.002418731 -0.1862481 0.4303934 0.002418731 -0.2140411 0.4303934 0.002418731 -0.2441142 0.4303934 0.002418731 -0.2765176 0.4303934 0.002418731 -0.3113005 0.4303934 0.002418731 -0.3485102 0.4303934 0.002418731 -0.388193 0.4303934 0.002418731 -0.4303934 0.4303934 0.002418731 -0.4751555 0.4303934 0.002418731 -0.5225216 0.4303934 0.002418731 -0.5725335 0.4303934 0.002418731 -0.6252316 0.4303934 0.002418731 -0.6806558 0.4303934 0.002418731 -0.7388448 0.4303934 0.002418731 -0.7998369 0.4303934 0.002418731 -0.8636691 0.4303934 0.002418731 -0.9303782 0.4303934 0.002418731 -1 0.4303934 0.002418731 -0 0.4751555 0.002418731 -0.002418731 0.4751555 0.002418731 -0.005155668 0.4751555 0.002418731 -0.009080105 0.4751555 0.002418731 -0.01434988 0.4751555 0.002418731 -0.02107202 0.4751555 0.002418731 -0.02934285 0.4751555 0.002418731 -0.03925039 0.4751555 0.002418731 -0.05087609 0.4751555 0.002418731 -0.06429595 0.4751555 0.002418731 -0.07958143 0.4751555 0.002418731 -0.0968001 0.4751555 0.002418731 -0.1160161 0.4751555 0.002418731 -0.1372908 0.4751555 0.002418731 -0.1606827 0.4751555 0.002418731 -0.1862481 0.4751555 0.002418731 -0.2140411 0.4751555 0.002418731 -0.2441142 0.4751555 0.002418731 -0.2765176 0.4751555 0.002418731 -0.3113005 0.4751555 0.002418731 -0.3485102 0.4751555 0.002418731 -0.388193 0.4751555 0.002418731 -0.4303934 0.4751555 0.002418731 -0.4751555 0.4751555 0.002418731 -0.5225216 0.4751555 0.002418731 -0.5725335 0.4751555 0.002418731 -0.6252316 0.4751555 0.002418731 -0.6806558 0.4751555 0.002418731 -0.7388448 0.4751555 0.002418731 -0.7998369 0.4751555 0.002418731 -0.8636691 0.4751555 0.002418731 -0.9303782 0.4751555 0.002418731 -1 0.4751555 0.002418731 -0 0.5225216 0.002418731 -0.002418731 0.5225216 0.002418731 -0.005155668 0.5225216 0.002418731 -0.009080105 0.5225216 0.002418731 -0.01434988 0.5225216 0.002418731 -0.02107202 0.5225216 0.002418731 -0.02934285 0.5225216 0.002418731 -0.03925039 0.5225216 0.002418731 -0.05087609 0.5225216 0.002418731 -0.06429595 0.5225216 0.002418731 -0.07958143 0.5225216 0.002418731 -0.0968001 0.5225216 0.002418731 -0.1160161 0.5225216 0.002418731 -0.1372908 0.5225216 0.002418731 -0.1606827 0.5225216 0.002418731 -0.1862481 0.5225216 0.002418731 -0.2140411 0.5225216 0.002418731 -0.2441142 0.5225216 0.002418731 -0.2765176 0.5225216 0.002418731 -0.3113005 0.5225216 0.002418731 -0.3485102 0.5225216 0.002418731 -0.388193 0.5225216 0.002418731 -0.4303934 0.5225216 0.002418731 -0.4751555 0.5225216 0.002418731 -0.5225216 0.5225216 0.002418731 -0.5725335 0.5225216 0.002418731 -0.6252316 0.5225216 0.002418731 -0.6806558 0.5225216 0.002418731 -0.7388448 0.5225216 0.002418731 -0.7998369 0.5225216 0.002418731 -0.8636691 0.5225216 0.002418731 -0.9303782 0.5225216 0.002418731 -1 0.5225216 0.002418731 -0 0.5725335 0.002418731 -0.002418731 0.5725335 0.002418731 -0.005155668 0.5725335 0.002418731 -0.009080105 0.5725335 0.002418731 -0.01434988 0.5725335 0.002418731 -0.02107202 0.5725335 0.002418731 -0.02934285 0.5725335 0.002418731 -0.03925039 0.5725335 0.002418731 -0.05087609 0.5725335 0.002418731 -0.06429595 0.5725335 0.002418731 -0.07958143 0.5725335 0.002418731 -0.0968001 0.5725335 0.002418731 -0.1160161 0.5725335 0.002418731 -0.1372908 0.5725335 0.002418731 -0.1606827 0.5725335 0.002418731 -0.1862481 0.5725335 0.002418731 -0.2140411 0.5725335 0.002418731 -0.2441142 0.5725335 0.002418731 -0.2765176 0.5725335 0.002418731 -0.3113005 0.5725335 0.002418731 -0.3485102 0.5725335 0.002418731 -0.388193 0.5725335 0.002418731 -0.4303934 0.5725335 0.002418731 -0.4751555 0.5725335 0.002418731 -0.5225216 0.5725335 0.002418731 -0.5725335 0.5725335 0.002418731 -0.6252316 0.5725335 0.002418731 -0.6806558 0.5725335 0.002418731 -0.7388448 0.5725335 0.002418731 -0.7998369 0.5725335 0.002418731 -0.8636691 0.5725335 0.002418731 -0.9303782 0.5725335 0.002418731 -1 0.5725335 0.002418731 -0 0.6252316 0.002418731 -0.002418731 0.6252316 0.002418731 -0.005155668 0.6252316 0.002418731 -0.009080105 0.6252316 0.002418731 -0.01434988 0.6252316 0.002418731 -0.02107202 0.6252316 0.002418731 -0.02934285 0.6252316 0.002418731 -0.03925039 0.6252316 0.002418731 -0.05087609 0.6252316 0.002418731 -0.06429595 0.6252316 0.002418731 -0.07958143 0.6252316 0.002418731 -0.0968001 0.6252316 0.002418731 -0.1160161 0.6252316 0.002418731 -0.1372908 0.6252316 0.002418731 -0.1606827 0.6252316 0.002418731 -0.1862481 0.6252316 0.002418731 -0.2140411 0.6252316 0.002418731 -0.2441142 0.6252316 0.002418731 -0.2765176 0.6252316 0.002418731 -0.3113005 0.6252316 0.002418731 -0.3485102 0.6252316 0.002418731 -0.388193 0.6252316 0.002418731 -0.4303934 0.6252316 0.002418731 -0.4751555 0.6252316 0.002418731 -0.5225216 0.6252316 0.002418731 -0.5725335 0.6252316 0.002418731 -0.6252316 0.6252316 0.002418731 -0.6806558 0.6252316 0.002418731 -0.7388448 0.6252316 0.002418731 -0.7998369 0.6252316 0.002418731 -0.8636691 0.6252316 0.002418731 -0.9303782 0.6252316 0.002418731 -1 0.6252316 0.002418731 -0 0.6806558 0.002418731 -0.002418731 0.6806558 0.002418731 -0.005155668 0.6806558 0.002418731 -0.009080105 0.6806558 0.002418731 -0.01434988 0.6806558 0.002418731 -0.02107202 0.6806558 0.002418731 -0.02934285 0.6806558 0.002418731 -0.03925039 0.6806558 0.002418731 -0.05087609 0.6806558 0.002418731 -0.06429595 0.6806558 0.002418731 -0.07958143 0.6806558 0.002418731 -0.0968001 0.6806558 0.002418731 -0.1160161 0.6806558 0.002418731 -0.1372908 0.6806558 0.002418731 -0.1606827 0.6806558 0.002418731 -0.1862481 0.6806558 0.002418731 -0.2140411 0.6806558 0.002418731 -0.2441142 0.6806558 0.002418731 -0.2765176 0.6806558 0.002418731 -0.3113005 0.6806558 0.002418731 -0.3485102 0.6806558 0.002418731 -0.388193 0.6806558 0.002418731 -0.4303934 0.6806558 0.002418731 -0.4751555 0.6806558 0.002418731 -0.5225216 0.6806558 0.002418731 -0.5725335 0.6806558 0.002418731 -0.6252316 0.6806558 0.002418731 -0.6806558 0.6806558 0.002418731 -0.7388448 0.6806558 0.002418731 -0.7998369 0.6806558 0.002418731 -0.8636691 0.6806558 0.002418731 -0.9303782 0.6806558 0.002418731 -1 0.6806558 0.002418731 -0 0.7388448 0.002418731 -0.002418731 0.7388448 0.002418731 -0.005155668 0.7388448 0.002418731 -0.009080105 0.7388448 0.002418731 -0.01434988 0.7388448 0.002418731 -0.02107202 0.7388448 0.002418731 -0.02934285 0.7388448 0.002418731 -0.03925039 0.7388448 0.002418731 -0.05087609 0.7388448 0.002418731 -0.06429595 0.7388448 0.002418731 -0.07958143 0.7388448 0.002418731 -0.0968001 0.7388448 0.002418731 -0.1160161 0.7388448 0.002418731 -0.1372908 0.7388448 0.002418731 -0.1606827 0.7388448 0.002418731 -0.1862481 0.7388448 0.002418731 -0.2140411 0.7388448 0.002418731 -0.2441142 0.7388448 0.002418731 -0.2765176 0.7388448 0.002418731 -0.3113005 0.7388448 0.002418731 -0.3485102 0.7388448 0.002418731 -0.388193 0.7388448 0.002418731 -0.4303934 0.7388448 0.002418731 -0.4751555 0.7388448 0.002418731 -0.5225216 0.7388448 0.002418731 -0.5725335 0.7388448 0.002418731 -0.6252316 0.7388448 0.002418731 -0.6806558 0.7388448 0.002418731 -0.7388448 0.7388448 0.002418731 -0.7998369 0.7388448 0.002418731 -0.8636691 0.7388448 0.002418731 -0.9303782 0.7388448 0.002418731 -1 0.7388448 0.002418731 -0 0.7998369 0.002418731 -0.002418731 0.7998369 0.002418731 -0.005155668 0.7998369 0.002418731 -0.009080105 0.7998369 0.002418731 -0.01434988 0.7998369 0.002418731 -0.02107202 0.7998369 0.002418731 -0.02934285 0.7998369 0.002418731 -0.03925039 0.7998369 0.002418731 -0.05087609 0.7998369 0.002418731 -0.06429595 0.7998369 0.002418731 -0.07958143 0.7998369 0.002418731 -0.0968001 0.7998369 0.002418731 -0.1160161 0.7998369 0.002418731 -0.1372908 0.7998369 0.002418731 -0.1606827 0.7998369 0.002418731 -0.1862481 0.7998369 0.002418731 -0.2140411 0.7998369 0.002418731 -0.2441142 0.7998369 0.002418731 -0.2765176 0.7998369 0.002418731 -0.3113005 0.7998369 0.002418731 -0.3485102 0.7998369 0.002418731 -0.388193 0.7998369 0.002418731 -0.4303934 0.7998369 0.002418731 -0.4751555 0.7998369 0.002418731 -0.5225216 0.7998369 0.002418731 -0.5725335 0.7998369 0.002418731 -0.6252316 0.7998369 0.002418731 -0.6806558 0.7998369 0.002418731 -0.7388448 0.7998369 0.002418731 -0.7998369 0.7998369 0.002418731 -0.8636691 0.7998369 0.002418731 -0.9303782 0.7998369 0.002418731 -1 0.7998369 0.002418731 -0 0.8636691 0.002418731 -0.002418731 0.8636691 0.002418731 -0.005155668 0.8636691 0.002418731 -0.009080105 0.8636691 0.002418731 -0.01434988 0.8636691 0.002418731 -0.02107202 0.8636691 0.002418731 -0.02934285 0.8636691 0.002418731 -0.03925039 0.8636691 0.002418731 -0.05087609 0.8636691 0.002418731 -0.06429595 0.8636691 0.002418731 -0.07958143 0.8636691 0.002418731 -0.0968001 0.8636691 0.002418731 -0.1160161 0.8636691 0.002418731 -0.1372908 0.8636691 0.002418731 -0.1606827 0.8636691 0.002418731 -0.1862481 0.8636691 0.002418731 -0.2140411 0.8636691 0.002418731 -0.2441142 0.8636691 0.002418731 -0.2765176 0.8636691 0.002418731 -0.3113005 0.8636691 0.002418731 -0.3485102 0.8636691 0.002418731 -0.388193 0.8636691 0.002418731 -0.4303934 0.8636691 0.002418731 -0.4751555 0.8636691 0.002418731 -0.5225216 0.8636691 0.002418731 -0.5725335 0.8636691 0.002418731 -0.6252316 0.8636691 0.002418731 -0.6806558 0.8636691 0.002418731 -0.7388448 0.8636691 0.002418731 -0.7998369 0.8636691 0.002418731 -0.8636691 0.8636691 0.002418731 -0.9303782 0.8636691 0.002418731 -1 0.8636691 0.002418731 -0 0.9303782 0.002418731 -0.002418731 0.9303782 0.002418731 -0.005155668 0.9303782 0.002418731 -0.009080105 0.9303782 0.002418731 -0.01434988 0.9303782 0.002418731 -0.02107202 0.9303782 0.002418731 -0.02934285 0.9303782 0.002418731 -0.03925039 0.9303782 0.002418731 -0.05087609 0.9303782 0.002418731 -0.06429595 0.9303782 0.002418731 -0.07958143 0.9303782 0.002418731 -0.0968001 0.9303782 0.002418731 -0.1160161 0.9303782 0.002418731 -0.1372908 0.9303782 0.002418731 -0.1606827 0.9303782 0.002418731 -0.1862481 0.9303782 0.002418731 -0.2140411 0.9303782 0.002418731 -0.2441142 0.9303782 0.002418731 -0.2765176 0.9303782 0.002418731 -0.3113005 0.9303782 0.002418731 -0.3485102 0.9303782 0.002418731 -0.388193 0.9303782 0.002418731 -0.4303934 0.9303782 0.002418731 -0.4751555 0.9303782 0.002418731 -0.5225216 0.9303782 0.002418731 -0.5725335 0.9303782 0.002418731 -0.6252316 0.9303782 0.002418731 -0.6806558 0.9303782 0.002418731 -0.7388448 0.9303782 0.002418731 -0.7998369 0.9303782 0.002418731 -0.8636691 0.9303782 0.002418731 -0.9303782 0.9303782 0.002418731 -1 0.9303782 0.002418731 -0 1 0.002418731 -0.002418731 1 0.002418731 -0.005155668 1 0.002418731 -0.009080105 1 0.002418731 -0.01434988 1 0.002418731 -0.02107202 1 0.002418731 -0.02934285 1 0.002418731 -0.03925039 1 0.002418731 -0.05087609 1 0.002418731 -0.06429595 1 0.002418731 -0.07958143 1 0.002418731 -0.0968001 1 0.002418731 -0.1160161 1 0.002418731 -0.1372908 1 0.002418731 -0.1606827 1 0.002418731 -0.1862481 1 0.002418731 -0.2140411 1 0.002418731 -0.2441142 1 0.002418731 -0.2765176 1 0.002418731 -0.3113005 1 0.002418731 -0.3485102 1 0.002418731 -0.388193 1 0.002418731 -0.4303934 1 0.002418731 -0.4751555 1 0.002418731 -0.5225216 1 0.002418731 -0.5725335 1 0.002418731 -0.6252316 1 0.002418731 -0.6806558 1 0.002418731 -0.7388448 1 0.002418731 -0.7998369 1 0.002418731 -0.8636691 1 0.002418731 -0.9303782 1 0.002418731 -1 1 0.002418731 -0 0 0.005155668 -0.002418731 0 0.005155668 -0.005155668 0 0.005155668 -0.009080105 0 0.005155668 -0.01434988 0 0.005155668 -0.02107202 0 0.005155668 -0.02934285 0 0.005155668 -0.03925039 0 0.005155668 -0.05087609 0 0.005155668 -0.06429595 0 0.005155668 -0.07958143 0 0.005155668 -0.0968001 0 0.005155668 -0.1160161 0 0.005155668 -0.1372908 0 0.005155668 -0.1606827 0 0.005155668 -0.1862481 0 0.005155668 -0.2140411 0 0.005155668 -0.2441142 0 0.005155668 -0.2765176 0 0.005155668 -0.3113005 0 0.005155668 -0.3485102 0 0.005155668 -0.388193 0 0.005155668 -0.4303934 0 0.005155668 -0.4751555 0 0.005155668 -0.5225216 0 0.005155668 -0.5725335 0 0.005155668 -0.6252316 0 0.005155668 -0.6806558 0 0.005155668 -0.7388448 0 0.005155668 -0.7998369 0 0.005155668 -0.8636691 0 0.005155668 -0.9303782 0 0.005155668 -1 0 0.005155668 -0 0.002418731 0.005155668 -0.002418731 0.002418731 0.005155668 -0.005155668 0.002418731 0.005155668 -0.009080105 0.002418731 0.005155668 -0.01434988 0.002418731 0.005155668 -0.02107202 0.002418731 0.005155668 -0.02934285 0.002418731 0.005155668 -0.03925039 0.002418731 0.005155668 -0.05087609 0.002418731 0.005155668 -0.06429595 0.002418731 0.005155668 -0.07958143 0.002418731 0.005155668 -0.0968001 0.002418731 0.005155668 -0.1160161 0.002418731 0.005155668 -0.1372908 0.002418731 0.005155668 -0.1606827 0.002418731 0.005155668 -0.1862481 0.002418731 0.005155668 -0.2140411 0.002418731 0.005155668 -0.2441142 0.002418731 0.005155668 -0.2765176 0.002418731 0.005155668 -0.3113005 0.002418731 0.005155668 -0.3485102 0.002418731 0.005155668 -0.388193 0.002418731 0.005155668 -0.4303934 0.002418731 0.005155668 -0.4751555 0.002418731 0.005155668 -0.5225216 0.002418731 0.005155668 -0.5725335 0.002418731 0.005155668 -0.6252316 0.002418731 0.005155668 -0.6806558 0.002418731 0.005155668 -0.7388448 0.002418731 0.005155668 -0.7998369 0.002418731 0.005155668 -0.8636691 0.002418731 0.005155668 -0.9303782 0.002418731 0.005155668 -1 0.002418731 0.005155668 -0 0.005155668 0.005155668 -0.002418731 0.005155668 0.005155668 -0.005155668 0.005155668 0.005155668 -0.009080105 0.005155668 0.005155668 -0.01434988 0.005155668 0.005155668 -0.02107202 0.005155668 0.005155668 -0.02934285 0.005155668 0.005155668 -0.03925039 0.005155668 0.005155668 -0.05087609 0.005155668 0.005155668 -0.06429595 0.005155668 0.005155668 -0.07958143 0.005155668 0.005155668 -0.0968001 0.005155668 0.005155668 -0.1160161 0.005155668 0.005155668 -0.1372908 0.005155668 0.005155668 -0.1606827 0.005155668 0.005155668 -0.1862481 0.005155668 0.005155668 -0.2140411 0.005155668 0.005155668 -0.2441142 0.005155668 0.005155668 -0.2765176 0.005155668 0.005155668 -0.3113005 0.005155668 0.005155668 -0.3485102 0.005155668 0.005155668 -0.388193 0.005155668 0.005155668 -0.4303934 0.005155668 0.005155668 -0.4751555 0.005155668 0.005155668 -0.5225216 0.005155668 0.005155668 -0.5725335 0.005155668 0.005155668 -0.6252316 0.005155668 0.005155668 -0.6806558 0.005155668 0.005155668 -0.7388448 0.005155668 0.005155668 -0.7998369 0.005155668 0.005155668 -0.8636691 0.005155668 0.005155668 -0.9303782 0.005155668 0.005155668 -1 0.005155668 0.005155668 -0 0.009080105 0.005155668 -0.002418731 0.009080105 0.005155668 -0.005155668 0.009080105 0.005155668 -0.009080105 0.009080105 0.005155668 -0.01434988 0.009080105 0.005155668 -0.02107202 0.009080105 0.005155668 -0.02934285 0.009080105 0.005155668 -0.03925039 0.009080105 0.005155668 -0.05087609 0.009080105 0.005155668 -0.06429595 0.009080105 0.005155668 -0.07958143 0.009080105 0.005155668 -0.0968001 0.009080105 0.005155668 -0.1160161 0.009080105 0.005155668 -0.1372908 0.009080105 0.005155668 -0.1606827 0.009080105 0.005155668 -0.1862481 0.009080105 0.005155668 -0.2140411 0.009080105 0.005155668 -0.2441142 0.009080105 0.005155668 -0.2765176 0.009080105 0.005155668 -0.3113005 0.009080105 0.005155668 -0.3485102 0.009080105 0.005155668 -0.388193 0.009080105 0.005155668 -0.4303934 0.009080105 0.005155668 -0.4751555 0.009080105 0.005155668 -0.5225216 0.009080105 0.005155668 -0.5725335 0.009080105 0.005155668 -0.6252316 0.009080105 0.005155668 -0.6806558 0.009080105 0.005155668 -0.7388448 0.009080105 0.005155668 -0.7998369 0.009080105 0.005155668 -0.8636691 0.009080105 0.005155668 -0.9303782 0.009080105 0.005155668 -1 0.009080105 0.005155668 -0 0.01434988 0.005155668 -0.002418731 0.01434988 0.005155668 -0.005155668 0.01434988 0.005155668 -0.009080105 0.01434988 0.005155668 -0.01434988 0.01434988 0.005155668 -0.02107202 0.01434988 0.005155668 -0.02934285 0.01434988 0.005155668 -0.03925039 0.01434988 0.005155668 -0.05087609 0.01434988 0.005155668 -0.06429595 0.01434988 0.005155668 -0.07958143 0.01434988 0.005155668 -0.0968001 0.01434988 0.005155668 -0.1160161 0.01434988 0.005155668 -0.1372908 0.01434988 0.005155668 -0.1606827 0.01434988 0.005155668 -0.1862481 0.01434988 0.005155668 -0.2140411 0.01434988 0.005155668 -0.2441142 0.01434988 0.005155668 -0.2765176 0.01434988 0.005155668 -0.3113005 0.01434988 0.005155668 -0.3485102 0.01434988 0.005155668 -0.388193 0.01434988 0.005155668 -0.4303934 0.01434988 0.005155668 -0.4751555 0.01434988 0.005155668 -0.5225216 0.01434988 0.005155668 -0.5725335 0.01434988 0.005155668 -0.6252316 0.01434988 0.005155668 -0.6806558 0.01434988 0.005155668 -0.7388448 0.01434988 0.005155668 -0.7998369 0.01434988 0.005155668 -0.8636691 0.01434988 0.005155668 -0.9303782 0.01434988 0.005155668 -1 0.01434988 0.005155668 -0 0.02107202 0.005155668 -0.002418731 0.02107202 0.005155668 -0.005155668 0.02107202 0.005155668 -0.009080105 0.02107202 0.005155668 -0.01434988 0.02107202 0.005155668 -0.02107202 0.02107202 0.005155668 -0.02934285 0.02107202 0.005155668 -0.03925039 0.02107202 0.005155668 -0.05087609 0.02107202 0.005155668 -0.06429595 0.02107202 0.005155668 -0.07958143 0.02107202 0.005155668 -0.0968001 0.02107202 0.005155668 -0.1160161 0.02107202 0.005155668 -0.1372908 0.02107202 0.005155668 -0.1606827 0.02107202 0.005155668 -0.1862481 0.02107202 0.005155668 -0.2140411 0.02107202 0.005155668 -0.2441142 0.02107202 0.005155668 -0.2765176 0.02107202 0.005155668 -0.3113005 0.02107202 0.005155668 -0.3485102 0.02107202 0.005155668 -0.388193 0.02107202 0.005155668 -0.4303934 0.02107202 0.005155668 -0.4751555 0.02107202 0.005155668 -0.5225216 0.02107202 0.005155668 -0.5725335 0.02107202 0.005155668 -0.6252316 0.02107202 0.005155668 -0.6806558 0.02107202 0.005155668 -0.7388448 0.02107202 0.005155668 -0.7998369 0.02107202 0.005155668 -0.8636691 0.02107202 0.005155668 -0.9303782 0.02107202 0.005155668 -1 0.02107202 0.005155668 -0 0.02934285 0.005155668 -0.002418731 0.02934285 0.005155668 -0.005155668 0.02934285 0.005155668 -0.009080105 0.02934285 0.005155668 -0.01434988 0.02934285 0.005155668 -0.02107202 0.02934285 0.005155668 -0.02934285 0.02934285 0.005155668 -0.03925039 0.02934285 0.005155668 -0.05087609 0.02934285 0.005155668 -0.06429595 0.02934285 0.005155668 -0.07958143 0.02934285 0.005155668 -0.0968001 0.02934285 0.005155668 -0.1160161 0.02934285 0.005155668 -0.1372908 0.02934285 0.005155668 -0.1606827 0.02934285 0.005155668 -0.1862481 0.02934285 0.005155668 -0.2140411 0.02934285 0.005155668 -0.2441142 0.02934285 0.005155668 -0.2765176 0.02934285 0.005155668 -0.3113005 0.02934285 0.005155668 -0.3485102 0.02934285 0.005155668 -0.388193 0.02934285 0.005155668 -0.4303934 0.02934285 0.005155668 -0.4751555 0.02934285 0.005155668 -0.5225216 0.02934285 0.005155668 -0.5725335 0.02934285 0.005155668 -0.6252316 0.02934285 0.005155668 -0.6806558 0.02934285 0.005155668 -0.7388448 0.02934285 0.005155668 -0.7998369 0.02934285 0.005155668 -0.8636691 0.02934285 0.005155668 -0.9303782 0.02934285 0.005155668 -1 0.02934285 0.005155668 -0 0.03925039 0.005155668 -0.002418731 0.03925039 0.005155668 -0.005155668 0.03925039 0.005155668 -0.009080105 0.03925039 0.005155668 -0.01434988 0.03925039 0.005155668 -0.02107202 0.03925039 0.005155668 -0.02934285 0.03925039 0.005155668 -0.03925039 0.03925039 0.005155668 -0.05087609 0.03925039 0.005155668 -0.06429595 0.03925039 0.005155668 -0.07958143 0.03925039 0.005155668 -0.0968001 0.03925039 0.005155668 -0.1160161 0.03925039 0.005155668 -0.1372908 0.03925039 0.005155668 -0.1606827 0.03925039 0.005155668 -0.1862481 0.03925039 0.005155668 -0.2140411 0.03925039 0.005155668 -0.2441142 0.03925039 0.005155668 -0.2765176 0.03925039 0.005155668 -0.3113005 0.03925039 0.005155668 -0.3485102 0.03925039 0.005155668 -0.388193 0.03925039 0.005155668 -0.4303934 0.03925039 0.005155668 -0.4751555 0.03925039 0.005155668 -0.5225216 0.03925039 0.005155668 -0.5725335 0.03925039 0.005155668 -0.6252316 0.03925039 0.005155668 -0.6806558 0.03925039 0.005155668 -0.7388448 0.03925039 0.005155668 -0.7998369 0.03925039 0.005155668 -0.8636691 0.03925039 0.005155668 -0.9303782 0.03925039 0.005155668 -1 0.03925039 0.005155668 -0 0.05087609 0.005155668 -0.002418731 0.05087609 0.005155668 -0.005155668 0.05087609 0.005155668 -0.009080105 0.05087609 0.005155668 -0.01434988 0.05087609 0.005155668 -0.02107202 0.05087609 0.005155668 -0.02934285 0.05087609 0.005155668 -0.03925039 0.05087609 0.005155668 -0.05087609 0.05087609 0.005155668 -0.06429595 0.05087609 0.005155668 -0.07958143 0.05087609 0.005155668 -0.0968001 0.05087609 0.005155668 -0.1160161 0.05087609 0.005155668 -0.1372908 0.05087609 0.005155668 -0.1606827 0.05087609 0.005155668 -0.1862481 0.05087609 0.005155668 -0.2140411 0.05087609 0.005155668 -0.2441142 0.05087609 0.005155668 -0.2765176 0.05087609 0.005155668 -0.3113005 0.05087609 0.005155668 -0.3485102 0.05087609 0.005155668 -0.388193 0.05087609 0.005155668 -0.4303934 0.05087609 0.005155668 -0.4751555 0.05087609 0.005155668 -0.5225216 0.05087609 0.005155668 -0.5725335 0.05087609 0.005155668 -0.6252316 0.05087609 0.005155668 -0.6806558 0.05087609 0.005155668 -0.7388448 0.05087609 0.005155668 -0.7998369 0.05087609 0.005155668 -0.8636691 0.05087609 0.005155668 -0.9303782 0.05087609 0.005155668 -1 0.05087609 0.005155668 -0 0.06429595 0.005155668 -0.002418731 0.06429595 0.005155668 -0.005155668 0.06429595 0.005155668 -0.009080105 0.06429595 0.005155668 -0.01434988 0.06429595 0.005155668 -0.02107202 0.06429595 0.005155668 -0.02934285 0.06429595 0.005155668 -0.03925039 0.06429595 0.005155668 -0.05087609 0.06429595 0.005155668 -0.06429595 0.06429595 0.005155668 -0.07958143 0.06429595 0.005155668 -0.0968001 0.06429595 0.005155668 -0.1160161 0.06429595 0.005155668 -0.1372908 0.06429595 0.005155668 -0.1606827 0.06429595 0.005155668 -0.1862481 0.06429595 0.005155668 -0.2140411 0.06429595 0.005155668 -0.2441142 0.06429595 0.005155668 -0.2765176 0.06429595 0.005155668 -0.3113005 0.06429595 0.005155668 -0.3485102 0.06429595 0.005155668 -0.388193 0.06429595 0.005155668 -0.4303934 0.06429595 0.005155668 -0.4751555 0.06429595 0.005155668 -0.5225216 0.06429595 0.005155668 -0.5725335 0.06429595 0.005155668 -0.6252316 0.06429595 0.005155668 -0.6806558 0.06429595 0.005155668 -0.7388448 0.06429595 0.005155668 -0.7998369 0.06429595 0.005155668 -0.8636691 0.06429595 0.005155668 -0.9303782 0.06429595 0.005155668 -1 0.06429595 0.005155668 -0 0.07958143 0.005155668 -0.002418731 0.07958143 0.005155668 -0.005155668 0.07958143 0.005155668 -0.009080105 0.07958143 0.005155668 -0.01434988 0.07958143 0.005155668 -0.02107202 0.07958143 0.005155668 -0.02934285 0.07958143 0.005155668 -0.03925039 0.07958143 0.005155668 -0.05087609 0.07958143 0.005155668 -0.06429595 0.07958143 0.005155668 -0.07958143 0.07958143 0.005155668 -0.0968001 0.07958143 0.005155668 -0.1160161 0.07958143 0.005155668 -0.1372908 0.07958143 0.005155668 -0.1606827 0.07958143 0.005155668 -0.1862481 0.07958143 0.005155668 -0.2140411 0.07958143 0.005155668 -0.2441142 0.07958143 0.005155668 -0.2765176 0.07958143 0.005155668 -0.3113005 0.07958143 0.005155668 -0.3485102 0.07958143 0.005155668 -0.388193 0.07958143 0.005155668 -0.4303934 0.07958143 0.005155668 -0.4751555 0.07958143 0.005155668 -0.5225216 0.07958143 0.005155668 -0.5725335 0.07958143 0.005155668 -0.6252316 0.07958143 0.005155668 -0.6806558 0.07958143 0.005155668 -0.7388448 0.07958143 0.005155668 -0.7998369 0.07958143 0.005155668 -0.8636691 0.07958143 0.005155668 -0.9303782 0.07958143 0.005155668 -1 0.07958143 0.005155668 -0 0.0968001 0.005155668 -0.002418731 0.0968001 0.005155668 -0.005155668 0.0968001 0.005155668 -0.009080105 0.0968001 0.005155668 -0.01434988 0.0968001 0.005155668 -0.02107202 0.0968001 0.005155668 -0.02934285 0.0968001 0.005155668 -0.03925039 0.0968001 0.005155668 -0.05087609 0.0968001 0.005155668 -0.06429595 0.0968001 0.005155668 -0.07958143 0.0968001 0.005155668 -0.0968001 0.0968001 0.005155668 -0.1160161 0.0968001 0.005155668 -0.1372908 0.0968001 0.005155668 -0.1606827 0.0968001 0.005155668 -0.1862481 0.0968001 0.005155668 -0.2140411 0.0968001 0.005155668 -0.2441142 0.0968001 0.005155668 -0.2765176 0.0968001 0.005155668 -0.3113005 0.0968001 0.005155668 -0.3485102 0.0968001 0.005155668 -0.388193 0.0968001 0.005155668 -0.4303934 0.0968001 0.005155668 -0.4751555 0.0968001 0.005155668 -0.5225216 0.0968001 0.005155668 -0.5725335 0.0968001 0.005155668 -0.6252316 0.0968001 0.005155668 -0.6806558 0.0968001 0.005155668 -0.7388448 0.0968001 0.005155668 -0.7998369 0.0968001 0.005155668 -0.8636691 0.0968001 0.005155668 -0.9303782 0.0968001 0.005155668 -1 0.0968001 0.005155668 -0 0.1160161 0.005155668 -0.002418731 0.1160161 0.005155668 -0.005155668 0.1160161 0.005155668 -0.009080105 0.1160161 0.005155668 -0.01434988 0.1160161 0.005155668 -0.02107202 0.1160161 0.005155668 -0.02934285 0.1160161 0.005155668 -0.03925039 0.1160161 0.005155668 -0.05087609 0.1160161 0.005155668 -0.06429595 0.1160161 0.005155668 -0.07958143 0.1160161 0.005155668 -0.0968001 0.1160161 0.005155668 -0.1160161 0.1160161 0.005155668 -0.1372908 0.1160161 0.005155668 -0.1606827 0.1160161 0.005155668 -0.1862481 0.1160161 0.005155668 -0.2140411 0.1160161 0.005155668 -0.2441142 0.1160161 0.005155668 -0.2765176 0.1160161 0.005155668 -0.3113005 0.1160161 0.005155668 -0.3485102 0.1160161 0.005155668 -0.388193 0.1160161 0.005155668 -0.4303934 0.1160161 0.005155668 -0.4751555 0.1160161 0.005155668 -0.5225216 0.1160161 0.005155668 -0.5725335 0.1160161 0.005155668 -0.6252316 0.1160161 0.005155668 -0.6806558 0.1160161 0.005155668 -0.7388448 0.1160161 0.005155668 -0.7998369 0.1160161 0.005155668 -0.8636691 0.1160161 0.005155668 -0.9303782 0.1160161 0.005155668 -1 0.1160161 0.005155668 -0 0.1372908 0.005155668 -0.002418731 0.1372908 0.005155668 -0.005155668 0.1372908 0.005155668 -0.009080105 0.1372908 0.005155668 -0.01434988 0.1372908 0.005155668 -0.02107202 0.1372908 0.005155668 -0.02934285 0.1372908 0.005155668 -0.03925039 0.1372908 0.005155668 -0.05087609 0.1372908 0.005155668 -0.06429595 0.1372908 0.005155668 -0.07958143 0.1372908 0.005155668 -0.0968001 0.1372908 0.005155668 -0.1160161 0.1372908 0.005155668 -0.1372908 0.1372908 0.005155668 -0.1606827 0.1372908 0.005155668 -0.1862481 0.1372908 0.005155668 -0.2140411 0.1372908 0.005155668 -0.2441142 0.1372908 0.005155668 -0.2765176 0.1372908 0.005155668 -0.3113005 0.1372908 0.005155668 -0.3485102 0.1372908 0.005155668 -0.388193 0.1372908 0.005155668 -0.4303934 0.1372908 0.005155668 -0.4751555 0.1372908 0.005155668 -0.5225216 0.1372908 0.005155668 -0.5725335 0.1372908 0.005155668 -0.6252316 0.1372908 0.005155668 -0.6806558 0.1372908 0.005155668 -0.7388448 0.1372908 0.005155668 -0.7998369 0.1372908 0.005155668 -0.8636691 0.1372908 0.005155668 -0.9303782 0.1372908 0.005155668 -1 0.1372908 0.005155668 -0 0.1606827 0.005155668 -0.002418731 0.1606827 0.005155668 -0.005155668 0.1606827 0.005155668 -0.009080105 0.1606827 0.005155668 -0.01434988 0.1606827 0.005155668 -0.02107202 0.1606827 0.005155668 -0.02934285 0.1606827 0.005155668 -0.03925039 0.1606827 0.005155668 -0.05087609 0.1606827 0.005155668 -0.06429595 0.1606827 0.005155668 -0.07958143 0.1606827 0.005155668 -0.0968001 0.1606827 0.005155668 -0.1160161 0.1606827 0.005155668 -0.1372908 0.1606827 0.005155668 -0.1606827 0.1606827 0.005155668 -0.1862481 0.1606827 0.005155668 -0.2140411 0.1606827 0.005155668 -0.2441142 0.1606827 0.005155668 -0.2765176 0.1606827 0.005155668 -0.3113005 0.1606827 0.005155668 -0.3485102 0.1606827 0.005155668 -0.388193 0.1606827 0.005155668 -0.4303934 0.1606827 0.005155668 -0.4751555 0.1606827 0.005155668 -0.5225216 0.1606827 0.005155668 -0.5725335 0.1606827 0.005155668 -0.6252316 0.1606827 0.005155668 -0.6806558 0.1606827 0.005155668 -0.7388448 0.1606827 0.005155668 -0.7998369 0.1606827 0.005155668 -0.8636691 0.1606827 0.005155668 -0.9303782 0.1606827 0.005155668 -1 0.1606827 0.005155668 -0 0.1862481 0.005155668 -0.002418731 0.1862481 0.005155668 -0.005155668 0.1862481 0.005155668 -0.009080105 0.1862481 0.005155668 -0.01434988 0.1862481 0.005155668 -0.02107202 0.1862481 0.005155668 -0.02934285 0.1862481 0.005155668 -0.03925039 0.1862481 0.005155668 -0.05087609 0.1862481 0.005155668 -0.06429595 0.1862481 0.005155668 -0.07958143 0.1862481 0.005155668 -0.0968001 0.1862481 0.005155668 -0.1160161 0.1862481 0.005155668 -0.1372908 0.1862481 0.005155668 -0.1606827 0.1862481 0.005155668 -0.1862481 0.1862481 0.005155668 -0.2140411 0.1862481 0.005155668 -0.2441142 0.1862481 0.005155668 -0.2765176 0.1862481 0.005155668 -0.3113005 0.1862481 0.005155668 -0.3485102 0.1862481 0.005155668 -0.388193 0.1862481 0.005155668 -0.4303934 0.1862481 0.005155668 -0.4751555 0.1862481 0.005155668 -0.5225216 0.1862481 0.005155668 -0.5725335 0.1862481 0.005155668 -0.6252316 0.1862481 0.005155668 -0.6806558 0.1862481 0.005155668 -0.7388448 0.1862481 0.005155668 -0.7998369 0.1862481 0.005155668 -0.8636691 0.1862481 0.005155668 -0.9303782 0.1862481 0.005155668 -1 0.1862481 0.005155668 -0 0.2140411 0.005155668 -0.002418731 0.2140411 0.005155668 -0.005155668 0.2140411 0.005155668 -0.009080105 0.2140411 0.005155668 -0.01434988 0.2140411 0.005155668 -0.02107202 0.2140411 0.005155668 -0.02934285 0.2140411 0.005155668 -0.03925039 0.2140411 0.005155668 -0.05087609 0.2140411 0.005155668 -0.06429595 0.2140411 0.005155668 -0.07958143 0.2140411 0.005155668 -0.0968001 0.2140411 0.005155668 -0.1160161 0.2140411 0.005155668 -0.1372908 0.2140411 0.005155668 -0.1606827 0.2140411 0.005155668 -0.1862481 0.2140411 0.005155668 -0.2140411 0.2140411 0.005155668 -0.2441142 0.2140411 0.005155668 -0.2765176 0.2140411 0.005155668 -0.3113005 0.2140411 0.005155668 -0.3485102 0.2140411 0.005155668 -0.388193 0.2140411 0.005155668 -0.4303934 0.2140411 0.005155668 -0.4751555 0.2140411 0.005155668 -0.5225216 0.2140411 0.005155668 -0.5725335 0.2140411 0.005155668 -0.6252316 0.2140411 0.005155668 -0.6806558 0.2140411 0.005155668 -0.7388448 0.2140411 0.005155668 -0.7998369 0.2140411 0.005155668 -0.8636691 0.2140411 0.005155668 -0.9303782 0.2140411 0.005155668 -1 0.2140411 0.005155668 -0 0.2441142 0.005155668 -0.002418731 0.2441142 0.005155668 -0.005155668 0.2441142 0.005155668 -0.009080105 0.2441142 0.005155668 -0.01434988 0.2441142 0.005155668 -0.02107202 0.2441142 0.005155668 -0.02934285 0.2441142 0.005155668 -0.03925039 0.2441142 0.005155668 -0.05087609 0.2441142 0.005155668 -0.06429595 0.2441142 0.005155668 -0.07958143 0.2441142 0.005155668 -0.0968001 0.2441142 0.005155668 -0.1160161 0.2441142 0.005155668 -0.1372908 0.2441142 0.005155668 -0.1606827 0.2441142 0.005155668 -0.1862481 0.2441142 0.005155668 -0.2140411 0.2441142 0.005155668 -0.2441142 0.2441142 0.005155668 -0.2765176 0.2441142 0.005155668 -0.3113005 0.2441142 0.005155668 -0.3485102 0.2441142 0.005155668 -0.388193 0.2441142 0.005155668 -0.4303934 0.2441142 0.005155668 -0.4751555 0.2441142 0.005155668 -0.5225216 0.2441142 0.005155668 -0.5725335 0.2441142 0.005155668 -0.6252316 0.2441142 0.005155668 -0.6806558 0.2441142 0.005155668 -0.7388448 0.2441142 0.005155668 -0.7998369 0.2441142 0.005155668 -0.8636691 0.2441142 0.005155668 -0.9303782 0.2441142 0.005155668 -1 0.2441142 0.005155668 -0 0.2765176 0.005155668 -0.002418731 0.2765176 0.005155668 -0.005155668 0.2765176 0.005155668 -0.009080105 0.2765176 0.005155668 -0.01434988 0.2765176 0.005155668 -0.02107202 0.2765176 0.005155668 -0.02934285 0.2765176 0.005155668 -0.03925039 0.2765176 0.005155668 -0.05087609 0.2765176 0.005155668 -0.06429595 0.2765176 0.005155668 -0.07958143 0.2765176 0.005155668 -0.0968001 0.2765176 0.005155668 -0.1160161 0.2765176 0.005155668 -0.1372908 0.2765176 0.005155668 -0.1606827 0.2765176 0.005155668 -0.1862481 0.2765176 0.005155668 -0.2140411 0.2765176 0.005155668 -0.2441142 0.2765176 0.005155668 -0.2765176 0.2765176 0.005155668 -0.3113005 0.2765176 0.005155668 -0.3485102 0.2765176 0.005155668 -0.388193 0.2765176 0.005155668 -0.4303934 0.2765176 0.005155668 -0.4751555 0.2765176 0.005155668 -0.5225216 0.2765176 0.005155668 -0.5725335 0.2765176 0.005155668 -0.6252316 0.2765176 0.005155668 -0.6806558 0.2765176 0.005155668 -0.7388448 0.2765176 0.005155668 -0.7998369 0.2765176 0.005155668 -0.8636691 0.2765176 0.005155668 -0.9303782 0.2765176 0.005155668 -1 0.2765176 0.005155668 -0 0.3113005 0.005155668 -0.002418731 0.3113005 0.005155668 -0.005155668 0.3113005 0.005155668 -0.009080105 0.3113005 0.005155668 -0.01434988 0.3113005 0.005155668 -0.02107202 0.3113005 0.005155668 -0.02934285 0.3113005 0.005155668 -0.03925039 0.3113005 0.005155668 -0.05087609 0.3113005 0.005155668 -0.06429595 0.3113005 0.005155668 -0.07958143 0.3113005 0.005155668 -0.0968001 0.3113005 0.005155668 -0.1160161 0.3113005 0.005155668 -0.1372908 0.3113005 0.005155668 -0.1606827 0.3113005 0.005155668 -0.1862481 0.3113005 0.005155668 -0.2140411 0.3113005 0.005155668 -0.2441142 0.3113005 0.005155668 -0.2765176 0.3113005 0.005155668 -0.3113005 0.3113005 0.005155668 -0.3485102 0.3113005 0.005155668 -0.388193 0.3113005 0.005155668 -0.4303934 0.3113005 0.005155668 -0.4751555 0.3113005 0.005155668 -0.5225216 0.3113005 0.005155668 -0.5725335 0.3113005 0.005155668 -0.6252316 0.3113005 0.005155668 -0.6806558 0.3113005 0.005155668 -0.7388448 0.3113005 0.005155668 -0.7998369 0.3113005 0.005155668 -0.8636691 0.3113005 0.005155668 -0.9303782 0.3113005 0.005155668 -1 0.3113005 0.005155668 -0 0.3485102 0.005155668 -0.002418731 0.3485102 0.005155668 -0.005155668 0.3485102 0.005155668 -0.009080105 0.3485102 0.005155668 -0.01434988 0.3485102 0.005155668 -0.02107202 0.3485102 0.005155668 -0.02934285 0.3485102 0.005155668 -0.03925039 0.3485102 0.005155668 -0.05087609 0.3485102 0.005155668 -0.06429595 0.3485102 0.005155668 -0.07958143 0.3485102 0.005155668 -0.0968001 0.3485102 0.005155668 -0.1160161 0.3485102 0.005155668 -0.1372908 0.3485102 0.005155668 -0.1606827 0.3485102 0.005155668 -0.1862481 0.3485102 0.005155668 -0.2140411 0.3485102 0.005155668 -0.2441142 0.3485102 0.005155668 -0.2765176 0.3485102 0.005155668 -0.3113005 0.3485102 0.005155668 -0.3485102 0.3485102 0.005155668 -0.388193 0.3485102 0.005155668 -0.4303934 0.3485102 0.005155668 -0.4751555 0.3485102 0.005155668 -0.5225216 0.3485102 0.005155668 -0.5725335 0.3485102 0.005155668 -0.6252316 0.3485102 0.005155668 -0.6806558 0.3485102 0.005155668 -0.7388448 0.3485102 0.005155668 -0.7998369 0.3485102 0.005155668 -0.8636691 0.3485102 0.005155668 -0.9303782 0.3485102 0.005155668 -1 0.3485102 0.005155668 -0 0.388193 0.005155668 -0.002418731 0.388193 0.005155668 -0.005155668 0.388193 0.005155668 -0.009080105 0.388193 0.005155668 -0.01434988 0.388193 0.005155668 -0.02107202 0.388193 0.005155668 -0.02934285 0.388193 0.005155668 -0.03925039 0.388193 0.005155668 -0.05087609 0.388193 0.005155668 -0.06429595 0.388193 0.005155668 -0.07958143 0.388193 0.005155668 -0.0968001 0.388193 0.005155668 -0.1160161 0.388193 0.005155668 -0.1372908 0.388193 0.005155668 -0.1606827 0.388193 0.005155668 -0.1862481 0.388193 0.005155668 -0.2140411 0.388193 0.005155668 -0.2441142 0.388193 0.005155668 -0.2765176 0.388193 0.005155668 -0.3113005 0.388193 0.005155668 -0.3485102 0.388193 0.005155668 -0.388193 0.388193 0.005155668 -0.4303934 0.388193 0.005155668 -0.4751555 0.388193 0.005155668 -0.5225216 0.388193 0.005155668 -0.5725335 0.388193 0.005155668 -0.6252316 0.388193 0.005155668 -0.6806558 0.388193 0.005155668 -0.7388448 0.388193 0.005155668 -0.7998369 0.388193 0.005155668 -0.8636691 0.388193 0.005155668 -0.9303782 0.388193 0.005155668 -1 0.388193 0.005155668 -0 0.4303934 0.005155668 -0.002418731 0.4303934 0.005155668 -0.005155668 0.4303934 0.005155668 -0.009080105 0.4303934 0.005155668 -0.01434988 0.4303934 0.005155668 -0.02107202 0.4303934 0.005155668 -0.02934285 0.4303934 0.005155668 -0.03925039 0.4303934 0.005155668 -0.05087609 0.4303934 0.005155668 -0.06429595 0.4303934 0.005155668 -0.07958143 0.4303934 0.005155668 -0.0968001 0.4303934 0.005155668 -0.1160161 0.4303934 0.005155668 -0.1372908 0.4303934 0.005155668 -0.1606827 0.4303934 0.005155668 -0.1862481 0.4303934 0.005155668 -0.2140411 0.4303934 0.005155668 -0.2441142 0.4303934 0.005155668 -0.2765176 0.4303934 0.005155668 -0.3113005 0.4303934 0.005155668 -0.3485102 0.4303934 0.005155668 -0.388193 0.4303934 0.005155668 -0.4303934 0.4303934 0.005155668 -0.4751555 0.4303934 0.005155668 -0.5225216 0.4303934 0.005155668 -0.5725335 0.4303934 0.005155668 -0.6252316 0.4303934 0.005155668 -0.6806558 0.4303934 0.005155668 -0.7388448 0.4303934 0.005155668 -0.7998369 0.4303934 0.005155668 -0.8636691 0.4303934 0.005155668 -0.9303782 0.4303934 0.005155668 -1 0.4303934 0.005155668 -0 0.4751555 0.005155668 -0.002418731 0.4751555 0.005155668 -0.005155668 0.4751555 0.005155668 -0.009080105 0.4751555 0.005155668 -0.01434988 0.4751555 0.005155668 -0.02107202 0.4751555 0.005155668 -0.02934285 0.4751555 0.005155668 -0.03925039 0.4751555 0.005155668 -0.05087609 0.4751555 0.005155668 -0.06429595 0.4751555 0.005155668 -0.07958143 0.4751555 0.005155668 -0.0968001 0.4751555 0.005155668 -0.1160161 0.4751555 0.005155668 -0.1372908 0.4751555 0.005155668 -0.1606827 0.4751555 0.005155668 -0.1862481 0.4751555 0.005155668 -0.2140411 0.4751555 0.005155668 -0.2441142 0.4751555 0.005155668 -0.2765176 0.4751555 0.005155668 -0.3113005 0.4751555 0.005155668 -0.3485102 0.4751555 0.005155668 -0.388193 0.4751555 0.005155668 -0.4303934 0.4751555 0.005155668 -0.4751555 0.4751555 0.005155668 -0.5225216 0.4751555 0.005155668 -0.5725335 0.4751555 0.005155668 -0.6252316 0.4751555 0.005155668 -0.6806558 0.4751555 0.005155668 -0.7388448 0.4751555 0.005155668 -0.7998369 0.4751555 0.005155668 -0.8636691 0.4751555 0.005155668 -0.9303782 0.4751555 0.005155668 -1 0.4751555 0.005155668 -0 0.5225216 0.005155668 -0.002418731 0.5225216 0.005155668 -0.005155668 0.5225216 0.005155668 -0.009080105 0.5225216 0.005155668 -0.01434988 0.5225216 0.005155668 -0.02107202 0.5225216 0.005155668 -0.02934285 0.5225216 0.005155668 -0.03925039 0.5225216 0.005155668 -0.05087609 0.5225216 0.005155668 -0.06429595 0.5225216 0.005155668 -0.07958143 0.5225216 0.005155668 -0.0968001 0.5225216 0.005155668 -0.1160161 0.5225216 0.005155668 -0.1372908 0.5225216 0.005155668 -0.1606827 0.5225216 0.005155668 -0.1862481 0.5225216 0.005155668 -0.2140411 0.5225216 0.005155668 -0.2441142 0.5225216 0.005155668 -0.2765176 0.5225216 0.005155668 -0.3113005 0.5225216 0.005155668 -0.3485102 0.5225216 0.005155668 -0.388193 0.5225216 0.005155668 -0.4303934 0.5225216 0.005155668 -0.4751555 0.5225216 0.005155668 -0.5225216 0.5225216 0.005155668 -0.5725335 0.5225216 0.005155668 -0.6252316 0.5225216 0.005155668 -0.6806558 0.5225216 0.005155668 -0.7388448 0.5225216 0.005155668 -0.7998369 0.5225216 0.005155668 -0.8636691 0.5225216 0.005155668 -0.9303782 0.5225216 0.005155668 -1 0.5225216 0.005155668 -0 0.5725335 0.005155668 -0.002418731 0.5725335 0.005155668 -0.005155668 0.5725335 0.005155668 -0.009080105 0.5725335 0.005155668 -0.01434988 0.5725335 0.005155668 -0.02107202 0.5725335 0.005155668 -0.02934285 0.5725335 0.005155668 -0.03925039 0.5725335 0.005155668 -0.05087609 0.5725335 0.005155668 -0.06429595 0.5725335 0.005155668 -0.07958143 0.5725335 0.005155668 -0.0968001 0.5725335 0.005155668 -0.1160161 0.5725335 0.005155668 -0.1372908 0.5725335 0.005155668 -0.1606827 0.5725335 0.005155668 -0.1862481 0.5725335 0.005155668 -0.2140411 0.5725335 0.005155668 -0.2441142 0.5725335 0.005155668 -0.2765176 0.5725335 0.005155668 -0.3113005 0.5725335 0.005155668 -0.3485102 0.5725335 0.005155668 -0.388193 0.5725335 0.005155668 -0.4303934 0.5725335 0.005155668 -0.4751555 0.5725335 0.005155668 -0.5225216 0.5725335 0.005155668 -0.5725335 0.5725335 0.005155668 -0.6252316 0.5725335 0.005155668 -0.6806558 0.5725335 0.005155668 -0.7388448 0.5725335 0.005155668 -0.7998369 0.5725335 0.005155668 -0.8636691 0.5725335 0.005155668 -0.9303782 0.5725335 0.005155668 -1 0.5725335 0.005155668 -0 0.6252316 0.005155668 -0.002418731 0.6252316 0.005155668 -0.005155668 0.6252316 0.005155668 -0.009080105 0.6252316 0.005155668 -0.01434988 0.6252316 0.005155668 -0.02107202 0.6252316 0.005155668 -0.02934285 0.6252316 0.005155668 -0.03925039 0.6252316 0.005155668 -0.05087609 0.6252316 0.005155668 -0.06429595 0.6252316 0.005155668 -0.07958143 0.6252316 0.005155668 -0.0968001 0.6252316 0.005155668 -0.1160161 0.6252316 0.005155668 -0.1372908 0.6252316 0.005155668 -0.1606827 0.6252316 0.005155668 -0.1862481 0.6252316 0.005155668 -0.2140411 0.6252316 0.005155668 -0.2441142 0.6252316 0.005155668 -0.2765176 0.6252316 0.005155668 -0.3113005 0.6252316 0.005155668 -0.3485102 0.6252316 0.005155668 -0.388193 0.6252316 0.005155668 -0.4303934 0.6252316 0.005155668 -0.4751555 0.6252316 0.005155668 -0.5225216 0.6252316 0.005155668 -0.5725335 0.6252316 0.005155668 -0.6252316 0.6252316 0.005155668 -0.6806558 0.6252316 0.005155668 -0.7388448 0.6252316 0.005155668 -0.7998369 0.6252316 0.005155668 -0.8636691 0.6252316 0.005155668 -0.9303782 0.6252316 0.005155668 -1 0.6252316 0.005155668 -0 0.6806558 0.005155668 -0.002418731 0.6806558 0.005155668 -0.005155668 0.6806558 0.005155668 -0.009080105 0.6806558 0.005155668 -0.01434988 0.6806558 0.005155668 -0.02107202 0.6806558 0.005155668 -0.02934285 0.6806558 0.005155668 -0.03925039 0.6806558 0.005155668 -0.05087609 0.6806558 0.005155668 -0.06429595 0.6806558 0.005155668 -0.07958143 0.6806558 0.005155668 -0.0968001 0.6806558 0.005155668 -0.1160161 0.6806558 0.005155668 -0.1372908 0.6806558 0.005155668 -0.1606827 0.6806558 0.005155668 -0.1862481 0.6806558 0.005155668 -0.2140411 0.6806558 0.005155668 -0.2441142 0.6806558 0.005155668 -0.2765176 0.6806558 0.005155668 -0.3113005 0.6806558 0.005155668 -0.3485102 0.6806558 0.005155668 -0.388193 0.6806558 0.005155668 -0.4303934 0.6806558 0.005155668 -0.4751555 0.6806558 0.005155668 -0.5225216 0.6806558 0.005155668 -0.5725335 0.6806558 0.005155668 -0.6252316 0.6806558 0.005155668 -0.6806558 0.6806558 0.005155668 -0.7388448 0.6806558 0.005155668 -0.7998369 0.6806558 0.005155668 -0.8636691 0.6806558 0.005155668 -0.9303782 0.6806558 0.005155668 -1 0.6806558 0.005155668 -0 0.7388448 0.005155668 -0.002418731 0.7388448 0.005155668 -0.005155668 0.7388448 0.005155668 -0.009080105 0.7388448 0.005155668 -0.01434988 0.7388448 0.005155668 -0.02107202 0.7388448 0.005155668 -0.02934285 0.7388448 0.005155668 -0.03925039 0.7388448 0.005155668 -0.05087609 0.7388448 0.005155668 -0.06429595 0.7388448 0.005155668 -0.07958143 0.7388448 0.005155668 -0.0968001 0.7388448 0.005155668 -0.1160161 0.7388448 0.005155668 -0.1372908 0.7388448 0.005155668 -0.1606827 0.7388448 0.005155668 -0.1862481 0.7388448 0.005155668 -0.2140411 0.7388448 0.005155668 -0.2441142 0.7388448 0.005155668 -0.2765176 0.7388448 0.005155668 -0.3113005 0.7388448 0.005155668 -0.3485102 0.7388448 0.005155668 -0.388193 0.7388448 0.005155668 -0.4303934 0.7388448 0.005155668 -0.4751555 0.7388448 0.005155668 -0.5225216 0.7388448 0.005155668 -0.5725335 0.7388448 0.005155668 -0.6252316 0.7388448 0.005155668 -0.6806558 0.7388448 0.005155668 -0.7388448 0.7388448 0.005155668 -0.7998369 0.7388448 0.005155668 -0.8636691 0.7388448 0.005155668 -0.9303782 0.7388448 0.005155668 -1 0.7388448 0.005155668 -0 0.7998369 0.005155668 -0.002418731 0.7998369 0.005155668 -0.005155668 0.7998369 0.005155668 -0.009080105 0.7998369 0.005155668 -0.01434988 0.7998369 0.005155668 -0.02107202 0.7998369 0.005155668 -0.02934285 0.7998369 0.005155668 -0.03925039 0.7998369 0.005155668 -0.05087609 0.7998369 0.005155668 -0.06429595 0.7998369 0.005155668 -0.07958143 0.7998369 0.005155668 -0.0968001 0.7998369 0.005155668 -0.1160161 0.7998369 0.005155668 -0.1372908 0.7998369 0.005155668 -0.1606827 0.7998369 0.005155668 -0.1862481 0.7998369 0.005155668 -0.2140411 0.7998369 0.005155668 -0.2441142 0.7998369 0.005155668 -0.2765176 0.7998369 0.005155668 -0.3113005 0.7998369 0.005155668 -0.3485102 0.7998369 0.005155668 -0.388193 0.7998369 0.005155668 -0.4303934 0.7998369 0.005155668 -0.4751555 0.7998369 0.005155668 -0.5225216 0.7998369 0.005155668 -0.5725335 0.7998369 0.005155668 -0.6252316 0.7998369 0.005155668 -0.6806558 0.7998369 0.005155668 -0.7388448 0.7998369 0.005155668 -0.7998369 0.7998369 0.005155668 -0.8636691 0.7998369 0.005155668 -0.9303782 0.7998369 0.005155668 -1 0.7998369 0.005155668 -0 0.8636691 0.005155668 -0.002418731 0.8636691 0.005155668 -0.005155668 0.8636691 0.005155668 -0.009080105 0.8636691 0.005155668 -0.01434988 0.8636691 0.005155668 -0.02107202 0.8636691 0.005155668 -0.02934285 0.8636691 0.005155668 -0.03925039 0.8636691 0.005155668 -0.05087609 0.8636691 0.005155668 -0.06429595 0.8636691 0.005155668 -0.07958143 0.8636691 0.005155668 -0.0968001 0.8636691 0.005155668 -0.1160161 0.8636691 0.005155668 -0.1372908 0.8636691 0.005155668 -0.1606827 0.8636691 0.005155668 -0.1862481 0.8636691 0.005155668 -0.2140411 0.8636691 0.005155668 -0.2441142 0.8636691 0.005155668 -0.2765176 0.8636691 0.005155668 -0.3113005 0.8636691 0.005155668 -0.3485102 0.8636691 0.005155668 -0.388193 0.8636691 0.005155668 -0.4303934 0.8636691 0.005155668 -0.4751555 0.8636691 0.005155668 -0.5225216 0.8636691 0.005155668 -0.5725335 0.8636691 0.005155668 -0.6252316 0.8636691 0.005155668 -0.6806558 0.8636691 0.005155668 -0.7388448 0.8636691 0.005155668 -0.7998369 0.8636691 0.005155668 -0.8636691 0.8636691 0.005155668 -0.9303782 0.8636691 0.005155668 -1 0.8636691 0.005155668 -0 0.9303782 0.005155668 -0.002418731 0.9303782 0.005155668 -0.005155668 0.9303782 0.005155668 -0.009080105 0.9303782 0.005155668 -0.01434988 0.9303782 0.005155668 -0.02107202 0.9303782 0.005155668 -0.02934285 0.9303782 0.005155668 -0.03925039 0.9303782 0.005155668 -0.05087609 0.9303782 0.005155668 -0.06429595 0.9303782 0.005155668 -0.07958143 0.9303782 0.005155668 -0.0968001 0.9303782 0.005155668 -0.1160161 0.9303782 0.005155668 -0.1372908 0.9303782 0.005155668 -0.1606827 0.9303782 0.005155668 -0.1862481 0.9303782 0.005155668 -0.2140411 0.9303782 0.005155668 -0.2441142 0.9303782 0.005155668 -0.2765176 0.9303782 0.005155668 -0.3113005 0.9303782 0.005155668 -0.3485102 0.9303782 0.005155668 -0.388193 0.9303782 0.005155668 -0.4303934 0.9303782 0.005155668 -0.4751555 0.9303782 0.005155668 -0.5225216 0.9303782 0.005155668 -0.5725335 0.9303782 0.005155668 -0.6252316 0.9303782 0.005155668 -0.6806558 0.9303782 0.005155668 -0.7388448 0.9303782 0.005155668 -0.7998369 0.9303782 0.005155668 -0.8636691 0.9303782 0.005155668 -0.9303782 0.9303782 0.005155668 -1 0.9303782 0.005155668 -0 1 0.005155668 -0.002418731 1 0.005155668 -0.005155668 1 0.005155668 -0.009080105 1 0.005155668 -0.01434988 1 0.005155668 -0.02107202 1 0.005155668 -0.02934285 1 0.005155668 -0.03925039 1 0.005155668 -0.05087609 1 0.005155668 -0.06429595 1 0.005155668 -0.07958143 1 0.005155668 -0.0968001 1 0.005155668 -0.1160161 1 0.005155668 -0.1372908 1 0.005155668 -0.1606827 1 0.005155668 -0.1862481 1 0.005155668 -0.2140411 1 0.005155668 -0.2441142 1 0.005155668 -0.2765176 1 0.005155668 -0.3113005 1 0.005155668 -0.3485102 1 0.005155668 -0.388193 1 0.005155668 -0.4303934 1 0.005155668 -0.4751555 1 0.005155668 -0.5225216 1 0.005155668 -0.5725335 1 0.005155668 -0.6252316 1 0.005155668 -0.6806558 1 0.005155668 -0.7388448 1 0.005155668 -0.7998369 1 0.005155668 -0.8636691 1 0.005155668 -0.9303782 1 0.005155668 -1 1 0.005155668 -0 0 0.009080105 -0.002418731 0 0.009080105 -0.005155668 0 0.009080105 -0.009080105 0 0.009080105 -0.01434988 0 0.009080105 -0.02107202 0 0.009080105 -0.02934285 0 0.009080105 -0.03925039 0 0.009080105 -0.05087609 0 0.009080105 -0.06429595 0 0.009080105 -0.07958143 0 0.009080105 -0.0968001 0 0.009080105 -0.1160161 0 0.009080105 -0.1372908 0 0.009080105 -0.1606827 0 0.009080105 -0.1862481 0 0.009080105 -0.2140411 0 0.009080105 -0.2441142 0 0.009080105 -0.2765176 0 0.009080105 -0.3113005 0 0.009080105 -0.3485102 0 0.009080105 -0.388193 0 0.009080105 -0.4303934 0 0.009080105 -0.4751555 0 0.009080105 -0.5225216 0 0.009080105 -0.5725335 0 0.009080105 -0.6252316 0 0.009080105 -0.6806558 0 0.009080105 -0.7388448 0 0.009080105 -0.7998369 0 0.009080105 -0.8636691 0 0.009080105 -0.9303782 0 0.009080105 -1 0 0.009080105 -0 0.002418731 0.009080105 -0.002418731 0.002418731 0.009080105 -0.005155668 0.002418731 0.009080105 -0.009080105 0.002418731 0.009080105 -0.01434988 0.002418731 0.009080105 -0.02107202 0.002418731 0.009080105 -0.02934285 0.002418731 0.009080105 -0.03925039 0.002418731 0.009080105 -0.05087609 0.002418731 0.009080105 -0.06429595 0.002418731 0.009080105 -0.07958143 0.002418731 0.009080105 -0.0968001 0.002418731 0.009080105 -0.1160161 0.002418731 0.009080105 -0.1372908 0.002418731 0.009080105 -0.1606827 0.002418731 0.009080105 -0.1862481 0.002418731 0.009080105 -0.2140411 0.002418731 0.009080105 -0.2441142 0.002418731 0.009080105 -0.2765176 0.002418731 0.009080105 -0.3113005 0.002418731 0.009080105 -0.3485102 0.002418731 0.009080105 -0.388193 0.002418731 0.009080105 -0.4303934 0.002418731 0.009080105 -0.4751555 0.002418731 0.009080105 -0.5225216 0.002418731 0.009080105 -0.5725335 0.002418731 0.009080105 -0.6252316 0.002418731 0.009080105 -0.6806558 0.002418731 0.009080105 -0.7388448 0.002418731 0.009080105 -0.7998369 0.002418731 0.009080105 -0.8636691 0.002418731 0.009080105 -0.9303782 0.002418731 0.009080105 -1 0.002418731 0.009080105 -0 0.005155668 0.009080105 -0.002418731 0.005155668 0.009080105 -0.005155668 0.005155668 0.009080105 -0.009080105 0.005155668 0.009080105 -0.01434988 0.005155668 0.009080105 -0.02107202 0.005155668 0.009080105 -0.02934285 0.005155668 0.009080105 -0.03925039 0.005155668 0.009080105 -0.05087609 0.005155668 0.009080105 -0.06429595 0.005155668 0.009080105 -0.07958143 0.005155668 0.009080105 -0.0968001 0.005155668 0.009080105 -0.1160161 0.005155668 0.009080105 -0.1372908 0.005155668 0.009080105 -0.1606827 0.005155668 0.009080105 -0.1862481 0.005155668 0.009080105 -0.2140411 0.005155668 0.009080105 -0.2441142 0.005155668 0.009080105 -0.2765176 0.005155668 0.009080105 -0.3113005 0.005155668 0.009080105 -0.3485102 0.005155668 0.009080105 -0.388193 0.005155668 0.009080105 -0.4303934 0.005155668 0.009080105 -0.4751555 0.005155668 0.009080105 -0.5225216 0.005155668 0.009080105 -0.5725335 0.005155668 0.009080105 -0.6252316 0.005155668 0.009080105 -0.6806558 0.005155668 0.009080105 -0.7388448 0.005155668 0.009080105 -0.7998369 0.005155668 0.009080105 -0.8636691 0.005155668 0.009080105 -0.9303782 0.005155668 0.009080105 -1 0.005155668 0.009080105 -0 0.009080105 0.009080105 -0.002418731 0.009080105 0.009080105 -0.005155668 0.009080105 0.009080105 -0.009080105 0.009080105 0.009080105 -0.01434988 0.009080105 0.009080105 -0.02107202 0.009080105 0.009080105 -0.02934285 0.009080105 0.009080105 -0.03925039 0.009080105 0.009080105 -0.05087609 0.009080105 0.009080105 -0.06429595 0.009080105 0.009080105 -0.07958143 0.009080105 0.009080105 -0.0968001 0.009080105 0.009080105 -0.1160161 0.009080105 0.009080105 -0.1372908 0.009080105 0.009080105 -0.1606827 0.009080105 0.009080105 -0.1862481 0.009080105 0.009080105 -0.2140411 0.009080105 0.009080105 -0.2441142 0.009080105 0.009080105 -0.2765176 0.009080105 0.009080105 -0.3113005 0.009080105 0.009080105 -0.3485102 0.009080105 0.009080105 -0.388193 0.009080105 0.009080105 -0.4303934 0.009080105 0.009080105 -0.4751555 0.009080105 0.009080105 -0.5225216 0.009080105 0.009080105 -0.5725335 0.009080105 0.009080105 -0.6252316 0.009080105 0.009080105 -0.6806558 0.009080105 0.009080105 -0.7388448 0.009080105 0.009080105 -0.7998369 0.009080105 0.009080105 -0.8636691 0.009080105 0.009080105 -0.9303782 0.009080105 0.009080105 -1 0.009080105 0.009080105 -0 0.01434988 0.009080105 -0.002418731 0.01434988 0.009080105 -0.005155668 0.01434988 0.009080105 -0.009080105 0.01434988 0.009080105 -0.01434988 0.01434988 0.009080105 -0.02107202 0.01434988 0.009080105 -0.02934285 0.01434988 0.009080105 -0.03925039 0.01434988 0.009080105 -0.05087609 0.01434988 0.009080105 -0.06429595 0.01434988 0.009080105 -0.07958143 0.01434988 0.009080105 -0.0968001 0.01434988 0.009080105 -0.1160161 0.01434988 0.009080105 -0.1372908 0.01434988 0.009080105 -0.1606827 0.01434988 0.009080105 -0.1862481 0.01434988 0.009080105 -0.2140411 0.01434988 0.009080105 -0.2441142 0.01434988 0.009080105 -0.2765176 0.01434988 0.009080105 -0.3113005 0.01434988 0.009080105 -0.3485102 0.01434988 0.009080105 -0.388193 0.01434988 0.009080105 -0.4303934 0.01434988 0.009080105 -0.4751555 0.01434988 0.009080105 -0.5225216 0.01434988 0.009080105 -0.5725335 0.01434988 0.009080105 -0.6252316 0.01434988 0.009080105 -0.6806558 0.01434988 0.009080105 -0.7388448 0.01434988 0.009080105 -0.7998369 0.01434988 0.009080105 -0.8636691 0.01434988 0.009080105 -0.9303782 0.01434988 0.009080105 -1 0.01434988 0.009080105 -0 0.02107202 0.009080105 -0.002418731 0.02107202 0.009080105 -0.005155668 0.02107202 0.009080105 -0.009080105 0.02107202 0.009080105 -0.01434988 0.02107202 0.009080105 -0.02107202 0.02107202 0.009080105 -0.02934285 0.02107202 0.009080105 -0.03925039 0.02107202 0.009080105 -0.05087609 0.02107202 0.009080105 -0.06429595 0.02107202 0.009080105 -0.07958143 0.02107202 0.009080105 -0.0968001 0.02107202 0.009080105 -0.1160161 0.02107202 0.009080105 -0.1372908 0.02107202 0.009080105 -0.1606827 0.02107202 0.009080105 -0.1862481 0.02107202 0.009080105 -0.2140411 0.02107202 0.009080105 -0.2441142 0.02107202 0.009080105 -0.2765176 0.02107202 0.009080105 -0.3113005 0.02107202 0.009080105 -0.3485102 0.02107202 0.009080105 -0.388193 0.02107202 0.009080105 -0.4303934 0.02107202 0.009080105 -0.4751555 0.02107202 0.009080105 -0.5225216 0.02107202 0.009080105 -0.5725335 0.02107202 0.009080105 -0.6252316 0.02107202 0.009080105 -0.6806558 0.02107202 0.009080105 -0.7388448 0.02107202 0.009080105 -0.7998369 0.02107202 0.009080105 -0.8636691 0.02107202 0.009080105 -0.9303782 0.02107202 0.009080105 -1 0.02107202 0.009080105 -0 0.02934285 0.009080105 -0.002418731 0.02934285 0.009080105 -0.005155668 0.02934285 0.009080105 -0.009080105 0.02934285 0.009080105 -0.01434988 0.02934285 0.009080105 -0.02107202 0.02934285 0.009080105 -0.02934285 0.02934285 0.009080105 -0.03925039 0.02934285 0.009080105 -0.05087609 0.02934285 0.009080105 -0.06429595 0.02934285 0.009080105 -0.07958143 0.02934285 0.009080105 -0.0968001 0.02934285 0.009080105 -0.1160161 0.02934285 0.009080105 -0.1372908 0.02934285 0.009080105 -0.1606827 0.02934285 0.009080105 -0.1862481 0.02934285 0.009080105 -0.2140411 0.02934285 0.009080105 -0.2441142 0.02934285 0.009080105 -0.2765176 0.02934285 0.009080105 -0.3113005 0.02934285 0.009080105 -0.3485102 0.02934285 0.009080105 -0.388193 0.02934285 0.009080105 -0.4303934 0.02934285 0.009080105 -0.4751555 0.02934285 0.009080105 -0.5225216 0.02934285 0.009080105 -0.5725335 0.02934285 0.009080105 -0.6252316 0.02934285 0.009080105 -0.6806558 0.02934285 0.009080105 -0.7388448 0.02934285 0.009080105 -0.7998369 0.02934285 0.009080105 -0.8636691 0.02934285 0.009080105 -0.9303782 0.02934285 0.009080105 -1 0.02934285 0.009080105 -0 0.03925039 0.009080105 -0.002418731 0.03925039 0.009080105 -0.005155668 0.03925039 0.009080105 -0.009080105 0.03925039 0.009080105 -0.01434988 0.03925039 0.009080105 -0.02107202 0.03925039 0.009080105 -0.02934285 0.03925039 0.009080105 -0.03925039 0.03925039 0.009080105 -0.05087609 0.03925039 0.009080105 -0.06429595 0.03925039 0.009080105 -0.07958143 0.03925039 0.009080105 -0.0968001 0.03925039 0.009080105 -0.1160161 0.03925039 0.009080105 -0.1372908 0.03925039 0.009080105 -0.1606827 0.03925039 0.009080105 -0.1862481 0.03925039 0.009080105 -0.2140411 0.03925039 0.009080105 -0.2441142 0.03925039 0.009080105 -0.2765176 0.03925039 0.009080105 -0.3113005 0.03925039 0.009080105 -0.3485102 0.03925039 0.009080105 -0.388193 0.03925039 0.009080105 -0.4303934 0.03925039 0.009080105 -0.4751555 0.03925039 0.009080105 -0.5225216 0.03925039 0.009080105 -0.5725335 0.03925039 0.009080105 -0.6252316 0.03925039 0.009080105 -0.6806558 0.03925039 0.009080105 -0.7388448 0.03925039 0.009080105 -0.7998369 0.03925039 0.009080105 -0.8636691 0.03925039 0.009080105 -0.9303782 0.03925039 0.009080105 -1 0.03925039 0.009080105 -0 0.05087609 0.009080105 -0.002418731 0.05087609 0.009080105 -0.005155668 0.05087609 0.009080105 -0.009080105 0.05087609 0.009080105 -0.01434988 0.05087609 0.009080105 -0.02107202 0.05087609 0.009080105 -0.02934285 0.05087609 0.009080105 -0.03925039 0.05087609 0.009080105 -0.05087609 0.05087609 0.009080105 -0.06429595 0.05087609 0.009080105 -0.07958143 0.05087609 0.009080105 -0.0968001 0.05087609 0.009080105 -0.1160161 0.05087609 0.009080105 -0.1372908 0.05087609 0.009080105 -0.1606827 0.05087609 0.009080105 -0.1862481 0.05087609 0.009080105 -0.2140411 0.05087609 0.009080105 -0.2441142 0.05087609 0.009080105 -0.2765176 0.05087609 0.009080105 -0.3113005 0.05087609 0.009080105 -0.3485102 0.05087609 0.009080105 -0.388193 0.05087609 0.009080105 -0.4303934 0.05087609 0.009080105 -0.4751555 0.05087609 0.009080105 -0.5225216 0.05087609 0.009080105 -0.5725335 0.05087609 0.009080105 -0.6252316 0.05087609 0.009080105 -0.6806558 0.05087609 0.009080105 -0.7388448 0.05087609 0.009080105 -0.7998369 0.05087609 0.009080105 -0.8636691 0.05087609 0.009080105 -0.9303782 0.05087609 0.009080105 -1 0.05087609 0.009080105 -0 0.06429595 0.009080105 -0.002418731 0.06429595 0.009080105 -0.005155668 0.06429595 0.009080105 -0.009080105 0.06429595 0.009080105 -0.01434988 0.06429595 0.009080105 -0.02107202 0.06429595 0.009080105 -0.02934285 0.06429595 0.009080105 -0.03925039 0.06429595 0.009080105 -0.05087609 0.06429595 0.009080105 -0.06429595 0.06429595 0.009080105 -0.07958143 0.06429595 0.009080105 -0.0968001 0.06429595 0.009080105 -0.1160161 0.06429595 0.009080105 -0.1372908 0.06429595 0.009080105 -0.1606827 0.06429595 0.009080105 -0.1862481 0.06429595 0.009080105 -0.2140411 0.06429595 0.009080105 -0.2441142 0.06429595 0.009080105 -0.2765176 0.06429595 0.009080105 -0.3113005 0.06429595 0.009080105 -0.3485102 0.06429595 0.009080105 -0.388193 0.06429595 0.009080105 -0.4303934 0.06429595 0.009080105 -0.4751555 0.06429595 0.009080105 -0.5225216 0.06429595 0.009080105 -0.5725335 0.06429595 0.009080105 -0.6252316 0.06429595 0.009080105 -0.6806558 0.06429595 0.009080105 -0.7388448 0.06429595 0.009080105 -0.7998369 0.06429595 0.009080105 -0.8636691 0.06429595 0.009080105 -0.9303782 0.06429595 0.009080105 -1 0.06429595 0.009080105 -0 0.07958143 0.009080105 -0.002418731 0.07958143 0.009080105 -0.005155668 0.07958143 0.009080105 -0.009080105 0.07958143 0.009080105 -0.01434988 0.07958143 0.009080105 -0.02107202 0.07958143 0.009080105 -0.02934285 0.07958143 0.009080105 -0.03925039 0.07958143 0.009080105 -0.05087609 0.07958143 0.009080105 -0.06429595 0.07958143 0.009080105 -0.07958143 0.07958143 0.009080105 -0.0968001 0.07958143 0.009080105 -0.1160161 0.07958143 0.009080105 -0.1372908 0.07958143 0.009080105 -0.1606827 0.07958143 0.009080105 -0.1862481 0.07958143 0.009080105 -0.2140411 0.07958143 0.009080105 -0.2441142 0.07958143 0.009080105 -0.2765176 0.07958143 0.009080105 -0.3113005 0.07958143 0.009080105 -0.3485102 0.07958143 0.009080105 -0.388193 0.07958143 0.009080105 -0.4303934 0.07958143 0.009080105 -0.4751555 0.07958143 0.009080105 -0.5225216 0.07958143 0.009080105 -0.5725335 0.07958143 0.009080105 -0.6252316 0.07958143 0.009080105 -0.6806558 0.07958143 0.009080105 -0.7388448 0.07958143 0.009080105 -0.7998369 0.07958143 0.009080105 -0.8636691 0.07958143 0.009080105 -0.9303782 0.07958143 0.009080105 -1 0.07958143 0.009080105 -0 0.0968001 0.009080105 -0.002418731 0.0968001 0.009080105 -0.005155668 0.0968001 0.009080105 -0.009080105 0.0968001 0.009080105 -0.01434988 0.0968001 0.009080105 -0.02107202 0.0968001 0.009080105 -0.02934285 0.0968001 0.009080105 -0.03925039 0.0968001 0.009080105 -0.05087609 0.0968001 0.009080105 -0.06429595 0.0968001 0.009080105 -0.07958143 0.0968001 0.009080105 -0.0968001 0.0968001 0.009080105 -0.1160161 0.0968001 0.009080105 -0.1372908 0.0968001 0.009080105 -0.1606827 0.0968001 0.009080105 -0.1862481 0.0968001 0.009080105 -0.2140411 0.0968001 0.009080105 -0.2441142 0.0968001 0.009080105 -0.2765176 0.0968001 0.009080105 -0.3113005 0.0968001 0.009080105 -0.3485102 0.0968001 0.009080105 -0.388193 0.0968001 0.009080105 -0.4303934 0.0968001 0.009080105 -0.4751555 0.0968001 0.009080105 -0.5225216 0.0968001 0.009080105 -0.5725335 0.0968001 0.009080105 -0.6252316 0.0968001 0.009080105 -0.6806558 0.0968001 0.009080105 -0.7388448 0.0968001 0.009080105 -0.7998369 0.0968001 0.009080105 -0.8636691 0.0968001 0.009080105 -0.9303782 0.0968001 0.009080105 -1 0.0968001 0.009080105 -0 0.1160161 0.009080105 -0.002418731 0.1160161 0.009080105 -0.005155668 0.1160161 0.009080105 -0.009080105 0.1160161 0.009080105 -0.01434988 0.1160161 0.009080105 -0.02107202 0.1160161 0.009080105 -0.02934285 0.1160161 0.009080105 -0.03925039 0.1160161 0.009080105 -0.05087609 0.1160161 0.009080105 -0.06429595 0.1160161 0.009080105 -0.07958143 0.1160161 0.009080105 -0.0968001 0.1160161 0.009080105 -0.1160161 0.1160161 0.009080105 -0.1372908 0.1160161 0.009080105 -0.1606827 0.1160161 0.009080105 -0.1862481 0.1160161 0.009080105 -0.2140411 0.1160161 0.009080105 -0.2441142 0.1160161 0.009080105 -0.2765176 0.1160161 0.009080105 -0.3113005 0.1160161 0.009080105 -0.3485102 0.1160161 0.009080105 -0.388193 0.1160161 0.009080105 -0.4303934 0.1160161 0.009080105 -0.4751555 0.1160161 0.009080105 -0.5225216 0.1160161 0.009080105 -0.5725335 0.1160161 0.009080105 -0.6252316 0.1160161 0.009080105 -0.6806558 0.1160161 0.009080105 -0.7388448 0.1160161 0.009080105 -0.7998369 0.1160161 0.009080105 -0.8636691 0.1160161 0.009080105 -0.9303782 0.1160161 0.009080105 -1 0.1160161 0.009080105 -0 0.1372908 0.009080105 -0.002418731 0.1372908 0.009080105 -0.005155668 0.1372908 0.009080105 -0.009080105 0.1372908 0.009080105 -0.01434988 0.1372908 0.009080105 -0.02107202 0.1372908 0.009080105 -0.02934285 0.1372908 0.009080105 -0.03925039 0.1372908 0.009080105 -0.05087609 0.1372908 0.009080105 -0.06429595 0.1372908 0.009080105 -0.07958143 0.1372908 0.009080105 -0.0968001 0.1372908 0.009080105 -0.1160161 0.1372908 0.009080105 -0.1372908 0.1372908 0.009080105 -0.1606827 0.1372908 0.009080105 -0.1862481 0.1372908 0.009080105 -0.2140411 0.1372908 0.009080105 -0.2441142 0.1372908 0.009080105 -0.2765176 0.1372908 0.009080105 -0.3113005 0.1372908 0.009080105 -0.3485102 0.1372908 0.009080105 -0.388193 0.1372908 0.009080105 -0.4303934 0.1372908 0.009080105 -0.4751555 0.1372908 0.009080105 -0.5225216 0.1372908 0.009080105 -0.5725335 0.1372908 0.009080105 -0.6252316 0.1372908 0.009080105 -0.6806558 0.1372908 0.009080105 -0.7388448 0.1372908 0.009080105 -0.7998369 0.1372908 0.009080105 -0.8636691 0.1372908 0.009080105 -0.9303782 0.1372908 0.009080105 -1 0.1372908 0.009080105 -0 0.1606827 0.009080105 -0.002418731 0.1606827 0.009080105 -0.005155668 0.1606827 0.009080105 -0.009080105 0.1606827 0.009080105 -0.01434988 0.1606827 0.009080105 -0.02107202 0.1606827 0.009080105 -0.02934285 0.1606827 0.009080105 -0.03925039 0.1606827 0.009080105 -0.05087609 0.1606827 0.009080105 -0.06429595 0.1606827 0.009080105 -0.07958143 0.1606827 0.009080105 -0.0968001 0.1606827 0.009080105 -0.1160161 0.1606827 0.009080105 -0.1372908 0.1606827 0.009080105 -0.1606827 0.1606827 0.009080105 -0.1862481 0.1606827 0.009080105 -0.2140411 0.1606827 0.009080105 -0.2441142 0.1606827 0.009080105 -0.2765176 0.1606827 0.009080105 -0.3113005 0.1606827 0.009080105 -0.3485102 0.1606827 0.009080105 -0.388193 0.1606827 0.009080105 -0.4303934 0.1606827 0.009080105 -0.4751555 0.1606827 0.009080105 -0.5225216 0.1606827 0.009080105 -0.5725335 0.1606827 0.009080105 -0.6252316 0.1606827 0.009080105 -0.6806558 0.1606827 0.009080105 -0.7388448 0.1606827 0.009080105 -0.7998369 0.1606827 0.009080105 -0.8636691 0.1606827 0.009080105 -0.9303782 0.1606827 0.009080105 -1 0.1606827 0.009080105 -0 0.1862481 0.009080105 -0.002418731 0.1862481 0.009080105 -0.005155668 0.1862481 0.009080105 -0.009080105 0.1862481 0.009080105 -0.01434988 0.1862481 0.009080105 -0.02107202 0.1862481 0.009080105 -0.02934285 0.1862481 0.009080105 -0.03925039 0.1862481 0.009080105 -0.05087609 0.1862481 0.009080105 -0.06429595 0.1862481 0.009080105 -0.07958143 0.1862481 0.009080105 -0.0968001 0.1862481 0.009080105 -0.1160161 0.1862481 0.009080105 -0.1372908 0.1862481 0.009080105 -0.1606827 0.1862481 0.009080105 -0.1862481 0.1862481 0.009080105 -0.2140411 0.1862481 0.009080105 -0.2441142 0.1862481 0.009080105 -0.2765176 0.1862481 0.009080105 -0.3113005 0.1862481 0.009080105 -0.3485102 0.1862481 0.009080105 -0.388193 0.1862481 0.009080105 -0.4303934 0.1862481 0.009080105 -0.4751555 0.1862481 0.009080105 -0.5225216 0.1862481 0.009080105 -0.5725335 0.1862481 0.009080105 -0.6252316 0.1862481 0.009080105 -0.6806558 0.1862481 0.009080105 -0.7388448 0.1862481 0.009080105 -0.7998369 0.1862481 0.009080105 -0.8636691 0.1862481 0.009080105 -0.9303782 0.1862481 0.009080105 -1 0.1862481 0.009080105 -0 0.2140411 0.009080105 -0.002418731 0.2140411 0.009080105 -0.005155668 0.2140411 0.009080105 -0.009080105 0.2140411 0.009080105 -0.01434988 0.2140411 0.009080105 -0.02107202 0.2140411 0.009080105 -0.02934285 0.2140411 0.009080105 -0.03925039 0.2140411 0.009080105 -0.05087609 0.2140411 0.009080105 -0.06429595 0.2140411 0.009080105 -0.07958143 0.2140411 0.009080105 -0.0968001 0.2140411 0.009080105 -0.1160161 0.2140411 0.009080105 -0.1372908 0.2140411 0.009080105 -0.1606827 0.2140411 0.009080105 -0.1862481 0.2140411 0.009080105 -0.2140411 0.2140411 0.009080105 -0.2441142 0.2140411 0.009080105 -0.2765176 0.2140411 0.009080105 -0.3113005 0.2140411 0.009080105 -0.3485102 0.2140411 0.009080105 -0.388193 0.2140411 0.009080105 -0.4303934 0.2140411 0.009080105 -0.4751555 0.2140411 0.009080105 -0.5225216 0.2140411 0.009080105 -0.5725335 0.2140411 0.009080105 -0.6252316 0.2140411 0.009080105 -0.6806558 0.2140411 0.009080105 -0.7388448 0.2140411 0.009080105 -0.7998369 0.2140411 0.009080105 -0.8636691 0.2140411 0.009080105 -0.9303782 0.2140411 0.009080105 -1 0.2140411 0.009080105 -0 0.2441142 0.009080105 -0.002418731 0.2441142 0.009080105 -0.005155668 0.2441142 0.009080105 -0.009080105 0.2441142 0.009080105 -0.01434988 0.2441142 0.009080105 -0.02107202 0.2441142 0.009080105 -0.02934285 0.2441142 0.009080105 -0.03925039 0.2441142 0.009080105 -0.05087609 0.2441142 0.009080105 -0.06429595 0.2441142 0.009080105 -0.07958143 0.2441142 0.009080105 -0.0968001 0.2441142 0.009080105 -0.1160161 0.2441142 0.009080105 -0.1372908 0.2441142 0.009080105 -0.1606827 0.2441142 0.009080105 -0.1862481 0.2441142 0.009080105 -0.2140411 0.2441142 0.009080105 -0.2441142 0.2441142 0.009080105 -0.2765176 0.2441142 0.009080105 -0.3113005 0.2441142 0.009080105 -0.3485102 0.2441142 0.009080105 -0.388193 0.2441142 0.009080105 -0.4303934 0.2441142 0.009080105 -0.4751555 0.2441142 0.009080105 -0.5225216 0.2441142 0.009080105 -0.5725335 0.2441142 0.009080105 -0.6252316 0.2441142 0.009080105 -0.6806558 0.2441142 0.009080105 -0.7388448 0.2441142 0.009080105 -0.7998369 0.2441142 0.009080105 -0.8636691 0.2441142 0.009080105 -0.9303782 0.2441142 0.009080105 -1 0.2441142 0.009080105 -0 0.2765176 0.009080105 -0.002418731 0.2765176 0.009080105 -0.005155668 0.2765176 0.009080105 -0.009080105 0.2765176 0.009080105 -0.01434988 0.2765176 0.009080105 -0.02107202 0.2765176 0.009080105 -0.02934285 0.2765176 0.009080105 -0.03925039 0.2765176 0.009080105 -0.05087609 0.2765176 0.009080105 -0.06429595 0.2765176 0.009080105 -0.07958143 0.2765176 0.009080105 -0.0968001 0.2765176 0.009080105 -0.1160161 0.2765176 0.009080105 -0.1372908 0.2765176 0.009080105 -0.1606827 0.2765176 0.009080105 -0.1862481 0.2765176 0.009080105 -0.2140411 0.2765176 0.009080105 -0.2441142 0.2765176 0.009080105 -0.2765176 0.2765176 0.009080105 -0.3113005 0.2765176 0.009080105 -0.3485102 0.2765176 0.009080105 -0.388193 0.2765176 0.009080105 -0.4303934 0.2765176 0.009080105 -0.4751555 0.2765176 0.009080105 -0.5225216 0.2765176 0.009080105 -0.5725335 0.2765176 0.009080105 -0.6252316 0.2765176 0.009080105 -0.6806558 0.2765176 0.009080105 -0.7388448 0.2765176 0.009080105 -0.7998369 0.2765176 0.009080105 -0.8636691 0.2765176 0.009080105 -0.9303782 0.2765176 0.009080105 -1 0.2765176 0.009080105 -0 0.3113005 0.009080105 -0.002418731 0.3113005 0.009080105 -0.005155668 0.3113005 0.009080105 -0.009080105 0.3113005 0.009080105 -0.01434988 0.3113005 0.009080105 -0.02107202 0.3113005 0.009080105 -0.02934285 0.3113005 0.009080105 -0.03925039 0.3113005 0.009080105 -0.05087609 0.3113005 0.009080105 -0.06429595 0.3113005 0.009080105 -0.07958143 0.3113005 0.009080105 -0.0968001 0.3113005 0.009080105 -0.1160161 0.3113005 0.009080105 -0.1372908 0.3113005 0.009080105 -0.1606827 0.3113005 0.009080105 -0.1862481 0.3113005 0.009080105 -0.2140411 0.3113005 0.009080105 -0.2441142 0.3113005 0.009080105 -0.2765176 0.3113005 0.009080105 -0.3113005 0.3113005 0.009080105 -0.3485102 0.3113005 0.009080105 -0.388193 0.3113005 0.009080105 -0.4303934 0.3113005 0.009080105 -0.4751555 0.3113005 0.009080105 -0.5225216 0.3113005 0.009080105 -0.5725335 0.3113005 0.009080105 -0.6252316 0.3113005 0.009080105 -0.6806558 0.3113005 0.009080105 -0.7388448 0.3113005 0.009080105 -0.7998369 0.3113005 0.009080105 -0.8636691 0.3113005 0.009080105 -0.9303782 0.3113005 0.009080105 -1 0.3113005 0.009080105 -0 0.3485102 0.009080105 -0.002418731 0.3485102 0.009080105 -0.005155668 0.3485102 0.009080105 -0.009080105 0.3485102 0.009080105 -0.01434988 0.3485102 0.009080105 -0.02107202 0.3485102 0.009080105 -0.02934285 0.3485102 0.009080105 -0.03925039 0.3485102 0.009080105 -0.05087609 0.3485102 0.009080105 -0.06429595 0.3485102 0.009080105 -0.07958143 0.3485102 0.009080105 -0.0968001 0.3485102 0.009080105 -0.1160161 0.3485102 0.009080105 -0.1372908 0.3485102 0.009080105 -0.1606827 0.3485102 0.009080105 -0.1862481 0.3485102 0.009080105 -0.2140411 0.3485102 0.009080105 -0.2441142 0.3485102 0.009080105 -0.2765176 0.3485102 0.009080105 -0.3113005 0.3485102 0.009080105 -0.3485102 0.3485102 0.009080105 -0.388193 0.3485102 0.009080105 -0.4303934 0.3485102 0.009080105 -0.4751555 0.3485102 0.009080105 -0.5225216 0.3485102 0.009080105 -0.5725335 0.3485102 0.009080105 -0.6252316 0.3485102 0.009080105 -0.6806558 0.3485102 0.009080105 -0.7388448 0.3485102 0.009080105 -0.7998369 0.3485102 0.009080105 -0.8636691 0.3485102 0.009080105 -0.9303782 0.3485102 0.009080105 -1 0.3485102 0.009080105 -0 0.388193 0.009080105 -0.002418731 0.388193 0.009080105 -0.005155668 0.388193 0.009080105 -0.009080105 0.388193 0.009080105 -0.01434988 0.388193 0.009080105 -0.02107202 0.388193 0.009080105 -0.02934285 0.388193 0.009080105 -0.03925039 0.388193 0.009080105 -0.05087609 0.388193 0.009080105 -0.06429595 0.388193 0.009080105 -0.07958143 0.388193 0.009080105 -0.0968001 0.388193 0.009080105 -0.1160161 0.388193 0.009080105 -0.1372908 0.388193 0.009080105 -0.1606827 0.388193 0.009080105 -0.1862481 0.388193 0.009080105 -0.2140411 0.388193 0.009080105 -0.2441142 0.388193 0.009080105 -0.2765176 0.388193 0.009080105 -0.3113005 0.388193 0.009080105 -0.3485102 0.388193 0.009080105 -0.388193 0.388193 0.009080105 -0.4303934 0.388193 0.009080105 -0.4751555 0.388193 0.009080105 -0.5225216 0.388193 0.009080105 -0.5725335 0.388193 0.009080105 -0.6252316 0.388193 0.009080105 -0.6806558 0.388193 0.009080105 -0.7388448 0.388193 0.009080105 -0.7998369 0.388193 0.009080105 -0.8636691 0.388193 0.009080105 -0.9303782 0.388193 0.009080105 -1 0.388193 0.009080105 -0 0.4303934 0.009080105 -0.002418731 0.4303934 0.009080105 -0.005155668 0.4303934 0.009080105 -0.009080105 0.4303934 0.009080105 -0.01434988 0.4303934 0.009080105 -0.02107202 0.4303934 0.009080105 -0.02934285 0.4303934 0.009080105 -0.03925039 0.4303934 0.009080105 -0.05087609 0.4303934 0.009080105 -0.06429595 0.4303934 0.009080105 -0.07958143 0.4303934 0.009080105 -0.0968001 0.4303934 0.009080105 -0.1160161 0.4303934 0.009080105 -0.1372908 0.4303934 0.009080105 -0.1606827 0.4303934 0.009080105 -0.1862481 0.4303934 0.009080105 -0.2140411 0.4303934 0.009080105 -0.2441142 0.4303934 0.009080105 -0.2765176 0.4303934 0.009080105 -0.3113005 0.4303934 0.009080105 -0.3485102 0.4303934 0.009080105 -0.388193 0.4303934 0.009080105 -0.4303934 0.4303934 0.009080105 -0.4751555 0.4303934 0.009080105 -0.5225216 0.4303934 0.009080105 -0.5725335 0.4303934 0.009080105 -0.6252316 0.4303934 0.009080105 -0.6806558 0.4303934 0.009080105 -0.7388448 0.4303934 0.009080105 -0.7998369 0.4303934 0.009080105 -0.8636691 0.4303934 0.009080105 -0.9303782 0.4303934 0.009080105 -1 0.4303934 0.009080105 -0 0.4751555 0.009080105 -0.002418731 0.4751555 0.009080105 -0.005155668 0.4751555 0.009080105 -0.009080105 0.4751555 0.009080105 -0.01434988 0.4751555 0.009080105 -0.02107202 0.4751555 0.009080105 -0.02934285 0.4751555 0.009080105 -0.03925039 0.4751555 0.009080105 -0.05087609 0.4751555 0.009080105 -0.06429595 0.4751555 0.009080105 -0.07958143 0.4751555 0.009080105 -0.0968001 0.4751555 0.009080105 -0.1160161 0.4751555 0.009080105 -0.1372908 0.4751555 0.009080105 -0.1606827 0.4751555 0.009080105 -0.1862481 0.4751555 0.009080105 -0.2140411 0.4751555 0.009080105 -0.2441142 0.4751555 0.009080105 -0.2765176 0.4751555 0.009080105 -0.3113005 0.4751555 0.009080105 -0.3485102 0.4751555 0.009080105 -0.388193 0.4751555 0.009080105 -0.4303934 0.4751555 0.009080105 -0.4751555 0.4751555 0.009080105 -0.5225216 0.4751555 0.009080105 -0.5725335 0.4751555 0.009080105 -0.6252316 0.4751555 0.009080105 -0.6806558 0.4751555 0.009080105 -0.7388448 0.4751555 0.009080105 -0.7998369 0.4751555 0.009080105 -0.8636691 0.4751555 0.009080105 -0.9303782 0.4751555 0.009080105 -1 0.4751555 0.009080105 -0 0.5225216 0.009080105 -0.002418731 0.5225216 0.009080105 -0.005155668 0.5225216 0.009080105 -0.009080105 0.5225216 0.009080105 -0.01434988 0.5225216 0.009080105 -0.02107202 0.5225216 0.009080105 -0.02934285 0.5225216 0.009080105 -0.03925039 0.5225216 0.009080105 -0.05087609 0.5225216 0.009080105 -0.06429595 0.5225216 0.009080105 -0.07958143 0.5225216 0.009080105 -0.0968001 0.5225216 0.009080105 -0.1160161 0.5225216 0.009080105 -0.1372908 0.5225216 0.009080105 -0.1606827 0.5225216 0.009080105 -0.1862481 0.5225216 0.009080105 -0.2140411 0.5225216 0.009080105 -0.2441142 0.5225216 0.009080105 -0.2765176 0.5225216 0.009080105 -0.3113005 0.5225216 0.009080105 -0.3485102 0.5225216 0.009080105 -0.388193 0.5225216 0.009080105 -0.4303934 0.5225216 0.009080105 -0.4751555 0.5225216 0.009080105 -0.5225216 0.5225216 0.009080105 -0.5725335 0.5225216 0.009080105 -0.6252316 0.5225216 0.009080105 -0.6806558 0.5225216 0.009080105 -0.7388448 0.5225216 0.009080105 -0.7998369 0.5225216 0.009080105 -0.8636691 0.5225216 0.009080105 -0.9303782 0.5225216 0.009080105 -1 0.5225216 0.009080105 -0 0.5725335 0.009080105 -0.002418731 0.5725335 0.009080105 -0.005155668 0.5725335 0.009080105 -0.009080105 0.5725335 0.009080105 -0.01434988 0.5725335 0.009080105 -0.02107202 0.5725335 0.009080105 -0.02934285 0.5725335 0.009080105 -0.03925039 0.5725335 0.009080105 -0.05087609 0.5725335 0.009080105 -0.06429595 0.5725335 0.009080105 -0.07958143 0.5725335 0.009080105 -0.0968001 0.5725335 0.009080105 -0.1160161 0.5725335 0.009080105 -0.1372908 0.5725335 0.009080105 -0.1606827 0.5725335 0.009080105 -0.1862481 0.5725335 0.009080105 -0.2140411 0.5725335 0.009080105 -0.2441142 0.5725335 0.009080105 -0.2765176 0.5725335 0.009080105 -0.3113005 0.5725335 0.009080105 -0.3485102 0.5725335 0.009080105 -0.388193 0.5725335 0.009080105 -0.4303934 0.5725335 0.009080105 -0.4751555 0.5725335 0.009080105 -0.5225216 0.5725335 0.009080105 -0.5725335 0.5725335 0.009080105 -0.6252316 0.5725335 0.009080105 -0.6806558 0.5725335 0.009080105 -0.7388448 0.5725335 0.009080105 -0.7998369 0.5725335 0.009080105 -0.8636691 0.5725335 0.009080105 -0.9303782 0.5725335 0.009080105 -1 0.5725335 0.009080105 -0 0.6252316 0.009080105 -0.002418731 0.6252316 0.009080105 -0.005155668 0.6252316 0.009080105 -0.009080105 0.6252316 0.009080105 -0.01434988 0.6252316 0.009080105 -0.02107202 0.6252316 0.009080105 -0.02934285 0.6252316 0.009080105 -0.03925039 0.6252316 0.009080105 -0.05087609 0.6252316 0.009080105 -0.06429595 0.6252316 0.009080105 -0.07958143 0.6252316 0.009080105 -0.0968001 0.6252316 0.009080105 -0.1160161 0.6252316 0.009080105 -0.1372908 0.6252316 0.009080105 -0.1606827 0.6252316 0.009080105 -0.1862481 0.6252316 0.009080105 -0.2140411 0.6252316 0.009080105 -0.2441142 0.6252316 0.009080105 -0.2765176 0.6252316 0.009080105 -0.3113005 0.6252316 0.009080105 -0.3485102 0.6252316 0.009080105 -0.388193 0.6252316 0.009080105 -0.4303934 0.6252316 0.009080105 -0.4751555 0.6252316 0.009080105 -0.5225216 0.6252316 0.009080105 -0.5725335 0.6252316 0.009080105 -0.6252316 0.6252316 0.009080105 -0.6806558 0.6252316 0.009080105 -0.7388448 0.6252316 0.009080105 -0.7998369 0.6252316 0.009080105 -0.8636691 0.6252316 0.009080105 -0.9303782 0.6252316 0.009080105 -1 0.6252316 0.009080105 -0 0.6806558 0.009080105 -0.002418731 0.6806558 0.009080105 -0.005155668 0.6806558 0.009080105 -0.009080105 0.6806558 0.009080105 -0.01434988 0.6806558 0.009080105 -0.02107202 0.6806558 0.009080105 -0.02934285 0.6806558 0.009080105 -0.03925039 0.6806558 0.009080105 -0.05087609 0.6806558 0.009080105 -0.06429595 0.6806558 0.009080105 -0.07958143 0.6806558 0.009080105 -0.0968001 0.6806558 0.009080105 -0.1160161 0.6806558 0.009080105 -0.1372908 0.6806558 0.009080105 -0.1606827 0.6806558 0.009080105 -0.1862481 0.6806558 0.009080105 -0.2140411 0.6806558 0.009080105 -0.2441142 0.6806558 0.009080105 -0.2765176 0.6806558 0.009080105 -0.3113005 0.6806558 0.009080105 -0.3485102 0.6806558 0.009080105 -0.388193 0.6806558 0.009080105 -0.4303934 0.6806558 0.009080105 -0.4751555 0.6806558 0.009080105 -0.5225216 0.6806558 0.009080105 -0.5725335 0.6806558 0.009080105 -0.6252316 0.6806558 0.009080105 -0.6806558 0.6806558 0.009080105 -0.7388448 0.6806558 0.009080105 -0.7998369 0.6806558 0.009080105 -0.8636691 0.6806558 0.009080105 -0.9303782 0.6806558 0.009080105 -1 0.6806558 0.009080105 -0 0.7388448 0.009080105 -0.002418731 0.7388448 0.009080105 -0.005155668 0.7388448 0.009080105 -0.009080105 0.7388448 0.009080105 -0.01434988 0.7388448 0.009080105 -0.02107202 0.7388448 0.009080105 -0.02934285 0.7388448 0.009080105 -0.03925039 0.7388448 0.009080105 -0.05087609 0.7388448 0.009080105 -0.06429595 0.7388448 0.009080105 -0.07958143 0.7388448 0.009080105 -0.0968001 0.7388448 0.009080105 -0.1160161 0.7388448 0.009080105 -0.1372908 0.7388448 0.009080105 -0.1606827 0.7388448 0.009080105 -0.1862481 0.7388448 0.009080105 -0.2140411 0.7388448 0.009080105 -0.2441142 0.7388448 0.009080105 -0.2765176 0.7388448 0.009080105 -0.3113005 0.7388448 0.009080105 -0.3485102 0.7388448 0.009080105 -0.388193 0.7388448 0.009080105 -0.4303934 0.7388448 0.009080105 -0.4751555 0.7388448 0.009080105 -0.5225216 0.7388448 0.009080105 -0.5725335 0.7388448 0.009080105 -0.6252316 0.7388448 0.009080105 -0.6806558 0.7388448 0.009080105 -0.7388448 0.7388448 0.009080105 -0.7998369 0.7388448 0.009080105 -0.8636691 0.7388448 0.009080105 -0.9303782 0.7388448 0.009080105 -1 0.7388448 0.009080105 -0 0.7998369 0.009080105 -0.002418731 0.7998369 0.009080105 -0.005155668 0.7998369 0.009080105 -0.009080105 0.7998369 0.009080105 -0.01434988 0.7998369 0.009080105 -0.02107202 0.7998369 0.009080105 -0.02934285 0.7998369 0.009080105 -0.03925039 0.7998369 0.009080105 -0.05087609 0.7998369 0.009080105 -0.06429595 0.7998369 0.009080105 -0.07958143 0.7998369 0.009080105 -0.0968001 0.7998369 0.009080105 -0.1160161 0.7998369 0.009080105 -0.1372908 0.7998369 0.009080105 -0.1606827 0.7998369 0.009080105 -0.1862481 0.7998369 0.009080105 -0.2140411 0.7998369 0.009080105 -0.2441142 0.7998369 0.009080105 -0.2765176 0.7998369 0.009080105 -0.3113005 0.7998369 0.009080105 -0.3485102 0.7998369 0.009080105 -0.388193 0.7998369 0.009080105 -0.4303934 0.7998369 0.009080105 -0.4751555 0.7998369 0.009080105 -0.5225216 0.7998369 0.009080105 -0.5725335 0.7998369 0.009080105 -0.6252316 0.7998369 0.009080105 -0.6806558 0.7998369 0.009080105 -0.7388448 0.7998369 0.009080105 -0.7998369 0.7998369 0.009080105 -0.8636691 0.7998369 0.009080105 -0.9303782 0.7998369 0.009080105 -1 0.7998369 0.009080105 -0 0.8636691 0.009080105 -0.002418731 0.8636691 0.009080105 -0.005155668 0.8636691 0.009080105 -0.009080105 0.8636691 0.009080105 -0.01434988 0.8636691 0.009080105 -0.02107202 0.8636691 0.009080105 -0.02934285 0.8636691 0.009080105 -0.03925039 0.8636691 0.009080105 -0.05087609 0.8636691 0.009080105 -0.06429595 0.8636691 0.009080105 -0.07958143 0.8636691 0.009080105 -0.0968001 0.8636691 0.009080105 -0.1160161 0.8636691 0.009080105 -0.1372908 0.8636691 0.009080105 -0.1606827 0.8636691 0.009080105 -0.1862481 0.8636691 0.009080105 -0.2140411 0.8636691 0.009080105 -0.2441142 0.8636691 0.009080105 -0.2765176 0.8636691 0.009080105 -0.3113005 0.8636691 0.009080105 -0.3485102 0.8636691 0.009080105 -0.388193 0.8636691 0.009080105 -0.4303934 0.8636691 0.009080105 -0.4751555 0.8636691 0.009080105 -0.5225216 0.8636691 0.009080105 -0.5725335 0.8636691 0.009080105 -0.6252316 0.8636691 0.009080105 -0.6806558 0.8636691 0.009080105 -0.7388448 0.8636691 0.009080105 -0.7998369 0.8636691 0.009080105 -0.8636691 0.8636691 0.009080105 -0.9303782 0.8636691 0.009080105 -1 0.8636691 0.009080105 -0 0.9303782 0.009080105 -0.002418731 0.9303782 0.009080105 -0.005155668 0.9303782 0.009080105 -0.009080105 0.9303782 0.009080105 -0.01434988 0.9303782 0.009080105 -0.02107202 0.9303782 0.009080105 -0.02934285 0.9303782 0.009080105 -0.03925039 0.9303782 0.009080105 -0.05087609 0.9303782 0.009080105 -0.06429595 0.9303782 0.009080105 -0.07958143 0.9303782 0.009080105 -0.0968001 0.9303782 0.009080105 -0.1160161 0.9303782 0.009080105 -0.1372908 0.9303782 0.009080105 -0.1606827 0.9303782 0.009080105 -0.1862481 0.9303782 0.009080105 -0.2140411 0.9303782 0.009080105 -0.2441142 0.9303782 0.009080105 -0.2765176 0.9303782 0.009080105 -0.3113005 0.9303782 0.009080105 -0.3485102 0.9303782 0.009080105 -0.388193 0.9303782 0.009080105 -0.4303934 0.9303782 0.009080105 -0.4751555 0.9303782 0.009080105 -0.5225216 0.9303782 0.009080105 -0.5725335 0.9303782 0.009080105 -0.6252316 0.9303782 0.009080105 -0.6806558 0.9303782 0.009080105 -0.7388448 0.9303782 0.009080105 -0.7998369 0.9303782 0.009080105 -0.8636691 0.9303782 0.009080105 -0.9303782 0.9303782 0.009080105 -1 0.9303782 0.009080105 -0 1 0.009080105 -0.002418731 1 0.009080105 -0.005155668 1 0.009080105 -0.009080105 1 0.009080105 -0.01434988 1 0.009080105 -0.02107202 1 0.009080105 -0.02934285 1 0.009080105 -0.03925039 1 0.009080105 -0.05087609 1 0.009080105 -0.06429595 1 0.009080105 -0.07958143 1 0.009080105 -0.0968001 1 0.009080105 -0.1160161 1 0.009080105 -0.1372908 1 0.009080105 -0.1606827 1 0.009080105 -0.1862481 1 0.009080105 -0.2140411 1 0.009080105 -0.2441142 1 0.009080105 -0.2765176 1 0.009080105 -0.3113005 1 0.009080105 -0.3485102 1 0.009080105 -0.388193 1 0.009080105 -0.4303934 1 0.009080105 -0.4751555 1 0.009080105 -0.5225216 1 0.009080105 -0.5725335 1 0.009080105 -0.6252316 1 0.009080105 -0.6806558 1 0.009080105 -0.7388448 1 0.009080105 -0.7998369 1 0.009080105 -0.8636691 1 0.009080105 -0.9303782 1 0.009080105 -1 1 0.009080105 -0 0 0.01434988 -0.002418731 0 0.01434988 -0.005155668 0 0.01434988 -0.009080105 0 0.01434988 -0.01434988 0 0.01434988 -0.02107202 0 0.01434988 -0.02934285 0 0.01434988 -0.03925039 0 0.01434988 -0.05087609 0 0.01434988 -0.06429595 0 0.01434988 -0.07958143 0 0.01434988 -0.0968001 0 0.01434988 -0.1160161 0 0.01434988 -0.1372908 0 0.01434988 -0.1606827 0 0.01434988 -0.1862481 0 0.01434988 -0.2140411 0 0.01434988 -0.2441142 0 0.01434988 -0.2765176 0 0.01434988 -0.3113005 0 0.01434988 -0.3485102 0 0.01434988 -0.388193 0 0.01434988 -0.4303934 0 0.01434988 -0.4751555 0 0.01434988 -0.5225216 0 0.01434988 -0.5725335 0 0.01434988 -0.6252316 0 0.01434988 -0.6806558 0 0.01434988 -0.7388448 0 0.01434988 -0.7998369 0 0.01434988 -0.8636691 0 0.01434988 -0.9303782 0 0.01434988 -1 0 0.01434988 -0 0.002418731 0.01434988 -0.002418731 0.002418731 0.01434988 -0.005155668 0.002418731 0.01434988 -0.009080105 0.002418731 0.01434988 -0.01434988 0.002418731 0.01434988 -0.02107202 0.002418731 0.01434988 -0.02934285 0.002418731 0.01434988 -0.03925039 0.002418731 0.01434988 -0.05087609 0.002418731 0.01434988 -0.06429595 0.002418731 0.01434988 -0.07958143 0.002418731 0.01434988 -0.0968001 0.002418731 0.01434988 -0.1160161 0.002418731 0.01434988 -0.1372908 0.002418731 0.01434988 -0.1606827 0.002418731 0.01434988 -0.1862481 0.002418731 0.01434988 -0.2140411 0.002418731 0.01434988 -0.2441142 0.002418731 0.01434988 -0.2765176 0.002418731 0.01434988 -0.3113005 0.002418731 0.01434988 -0.3485102 0.002418731 0.01434988 -0.388193 0.002418731 0.01434988 -0.4303934 0.002418731 0.01434988 -0.4751555 0.002418731 0.01434988 -0.5225216 0.002418731 0.01434988 -0.5725335 0.002418731 0.01434988 -0.6252316 0.002418731 0.01434988 -0.6806558 0.002418731 0.01434988 -0.7388448 0.002418731 0.01434988 -0.7998369 0.002418731 0.01434988 -0.8636691 0.002418731 0.01434988 -0.9303782 0.002418731 0.01434988 -1 0.002418731 0.01434988 -0 0.005155668 0.01434988 -0.002418731 0.005155668 0.01434988 -0.005155668 0.005155668 0.01434988 -0.009080105 0.005155668 0.01434988 -0.01434988 0.005155668 0.01434988 -0.02107202 0.005155668 0.01434988 -0.02934285 0.005155668 0.01434988 -0.03925039 0.005155668 0.01434988 -0.05087609 0.005155668 0.01434988 -0.06429595 0.005155668 0.01434988 -0.07958143 0.005155668 0.01434988 -0.0968001 0.005155668 0.01434988 -0.1160161 0.005155668 0.01434988 -0.1372908 0.005155668 0.01434988 -0.1606827 0.005155668 0.01434988 -0.1862481 0.005155668 0.01434988 -0.2140411 0.005155668 0.01434988 -0.2441142 0.005155668 0.01434988 -0.2765176 0.005155668 0.01434988 -0.3113005 0.005155668 0.01434988 -0.3485102 0.005155668 0.01434988 -0.388193 0.005155668 0.01434988 -0.4303934 0.005155668 0.01434988 -0.4751555 0.005155668 0.01434988 -0.5225216 0.005155668 0.01434988 -0.5725335 0.005155668 0.01434988 -0.6252316 0.005155668 0.01434988 -0.6806558 0.005155668 0.01434988 -0.7388448 0.005155668 0.01434988 -0.7998369 0.005155668 0.01434988 -0.8636691 0.005155668 0.01434988 -0.9303782 0.005155668 0.01434988 -1 0.005155668 0.01434988 -0 0.009080105 0.01434988 -0.002418731 0.009080105 0.01434988 -0.005155668 0.009080105 0.01434988 -0.009080105 0.009080105 0.01434988 -0.01434988 0.009080105 0.01434988 -0.02107202 0.009080105 0.01434988 -0.02934285 0.009080105 0.01434988 -0.03925039 0.009080105 0.01434988 -0.05087609 0.009080105 0.01434988 -0.06429595 0.009080105 0.01434988 -0.07958143 0.009080105 0.01434988 -0.0968001 0.009080105 0.01434988 -0.1160161 0.009080105 0.01434988 -0.1372908 0.009080105 0.01434988 -0.1606827 0.009080105 0.01434988 -0.1862481 0.009080105 0.01434988 -0.2140411 0.009080105 0.01434988 -0.2441142 0.009080105 0.01434988 -0.2765176 0.009080105 0.01434988 -0.3113005 0.009080105 0.01434988 -0.3485102 0.009080105 0.01434988 -0.388193 0.009080105 0.01434988 -0.4303934 0.009080105 0.01434988 -0.4751555 0.009080105 0.01434988 -0.5225216 0.009080105 0.01434988 -0.5725335 0.009080105 0.01434988 -0.6252316 0.009080105 0.01434988 -0.6806558 0.009080105 0.01434988 -0.7388448 0.009080105 0.01434988 -0.7998369 0.009080105 0.01434988 -0.8636691 0.009080105 0.01434988 -0.9303782 0.009080105 0.01434988 -1 0.009080105 0.01434988 -0 0.01434988 0.01434988 -0.002418731 0.01434988 0.01434988 -0.005155668 0.01434988 0.01434988 -0.009080105 0.01434988 0.01434988 -0.01434988 0.01434988 0.01434988 -0.02107202 0.01434988 0.01434988 -0.02934285 0.01434988 0.01434988 -0.03925039 0.01434988 0.01434988 -0.05087609 0.01434988 0.01434988 -0.06429595 0.01434988 0.01434988 -0.07958143 0.01434988 0.01434988 -0.0968001 0.01434988 0.01434988 -0.1160161 0.01434988 0.01434988 -0.1372908 0.01434988 0.01434988 -0.1606827 0.01434988 0.01434988 -0.1862481 0.01434988 0.01434988 -0.2140411 0.01434988 0.01434988 -0.2441142 0.01434988 0.01434988 -0.2765176 0.01434988 0.01434988 -0.3113005 0.01434988 0.01434988 -0.3485102 0.01434988 0.01434988 -0.388193 0.01434988 0.01434988 -0.4303934 0.01434988 0.01434988 -0.4751555 0.01434988 0.01434988 -0.5225216 0.01434988 0.01434988 -0.5725335 0.01434988 0.01434988 -0.6252316 0.01434988 0.01434988 -0.6806558 0.01434988 0.01434988 -0.7388448 0.01434988 0.01434988 -0.7998369 0.01434988 0.01434988 -0.8636691 0.01434988 0.01434988 -0.9303782 0.01434988 0.01434988 -1 0.01434988 0.01434988 -0 0.02107202 0.01434988 -0.002418731 0.02107202 0.01434988 -0.005155668 0.02107202 0.01434988 -0.009080105 0.02107202 0.01434988 -0.01434988 0.02107202 0.01434988 -0.02107202 0.02107202 0.01434988 -0.02934285 0.02107202 0.01434988 -0.03925039 0.02107202 0.01434988 -0.05087609 0.02107202 0.01434988 -0.06429595 0.02107202 0.01434988 -0.07958143 0.02107202 0.01434988 -0.0968001 0.02107202 0.01434988 -0.1160161 0.02107202 0.01434988 -0.1372908 0.02107202 0.01434988 -0.1606827 0.02107202 0.01434988 -0.1862481 0.02107202 0.01434988 -0.2140411 0.02107202 0.01434988 -0.2441142 0.02107202 0.01434988 -0.2765176 0.02107202 0.01434988 -0.3113005 0.02107202 0.01434988 -0.3485102 0.02107202 0.01434988 -0.388193 0.02107202 0.01434988 -0.4303934 0.02107202 0.01434988 -0.4751555 0.02107202 0.01434988 -0.5225216 0.02107202 0.01434988 -0.5725335 0.02107202 0.01434988 -0.6252316 0.02107202 0.01434988 -0.6806558 0.02107202 0.01434988 -0.7388448 0.02107202 0.01434988 -0.7998369 0.02107202 0.01434988 -0.8636691 0.02107202 0.01434988 -0.9303782 0.02107202 0.01434988 -1 0.02107202 0.01434988 -0 0.02934285 0.01434988 -0.002418731 0.02934285 0.01434988 -0.005155668 0.02934285 0.01434988 -0.009080105 0.02934285 0.01434988 -0.01434988 0.02934285 0.01434988 -0.02107202 0.02934285 0.01434988 -0.02934285 0.02934285 0.01434988 -0.03925039 0.02934285 0.01434988 -0.05087609 0.02934285 0.01434988 -0.06429595 0.02934285 0.01434988 -0.07958143 0.02934285 0.01434988 -0.0968001 0.02934285 0.01434988 -0.1160161 0.02934285 0.01434988 -0.1372908 0.02934285 0.01434988 -0.1606827 0.02934285 0.01434988 -0.1862481 0.02934285 0.01434988 -0.2140411 0.02934285 0.01434988 -0.2441142 0.02934285 0.01434988 -0.2765176 0.02934285 0.01434988 -0.3113005 0.02934285 0.01434988 -0.3485102 0.02934285 0.01434988 -0.388193 0.02934285 0.01434988 -0.4303934 0.02934285 0.01434988 -0.4751555 0.02934285 0.01434988 -0.5225216 0.02934285 0.01434988 -0.5725335 0.02934285 0.01434988 -0.6252316 0.02934285 0.01434988 -0.6806558 0.02934285 0.01434988 -0.7388448 0.02934285 0.01434988 -0.7998369 0.02934285 0.01434988 -0.8636691 0.02934285 0.01434988 -0.9303782 0.02934285 0.01434988 -1 0.02934285 0.01434988 -0 0.03925039 0.01434988 -0.002418731 0.03925039 0.01434988 -0.005155668 0.03925039 0.01434988 -0.009080105 0.03925039 0.01434988 -0.01434988 0.03925039 0.01434988 -0.02107202 0.03925039 0.01434988 -0.02934285 0.03925039 0.01434988 -0.03925039 0.03925039 0.01434988 -0.05087609 0.03925039 0.01434988 -0.06429595 0.03925039 0.01434988 -0.07958143 0.03925039 0.01434988 -0.0968001 0.03925039 0.01434988 -0.1160161 0.03925039 0.01434988 -0.1372908 0.03925039 0.01434988 -0.1606827 0.03925039 0.01434988 -0.1862481 0.03925039 0.01434988 -0.2140411 0.03925039 0.01434988 -0.2441142 0.03925039 0.01434988 -0.2765176 0.03925039 0.01434988 -0.3113005 0.03925039 0.01434988 -0.3485102 0.03925039 0.01434988 -0.388193 0.03925039 0.01434988 -0.4303934 0.03925039 0.01434988 -0.4751555 0.03925039 0.01434988 -0.5225216 0.03925039 0.01434988 -0.5725335 0.03925039 0.01434988 -0.6252316 0.03925039 0.01434988 -0.6806558 0.03925039 0.01434988 -0.7388448 0.03925039 0.01434988 -0.7998369 0.03925039 0.01434988 -0.8636691 0.03925039 0.01434988 -0.9303782 0.03925039 0.01434988 -1 0.03925039 0.01434988 -0 0.05087609 0.01434988 -0.002418731 0.05087609 0.01434988 -0.005155668 0.05087609 0.01434988 -0.009080105 0.05087609 0.01434988 -0.01434988 0.05087609 0.01434988 -0.02107202 0.05087609 0.01434988 -0.02934285 0.05087609 0.01434988 -0.03925039 0.05087609 0.01434988 -0.05087609 0.05087609 0.01434988 -0.06429595 0.05087609 0.01434988 -0.07958143 0.05087609 0.01434988 -0.0968001 0.05087609 0.01434988 -0.1160161 0.05087609 0.01434988 -0.1372908 0.05087609 0.01434988 -0.1606827 0.05087609 0.01434988 -0.1862481 0.05087609 0.01434988 -0.2140411 0.05087609 0.01434988 -0.2441142 0.05087609 0.01434988 -0.2765176 0.05087609 0.01434988 -0.3113005 0.05087609 0.01434988 -0.3485102 0.05087609 0.01434988 -0.388193 0.05087609 0.01434988 -0.4303934 0.05087609 0.01434988 -0.4751555 0.05087609 0.01434988 -0.5225216 0.05087609 0.01434988 -0.5725335 0.05087609 0.01434988 -0.6252316 0.05087609 0.01434988 -0.6806558 0.05087609 0.01434988 -0.7388448 0.05087609 0.01434988 -0.7998369 0.05087609 0.01434988 -0.8636691 0.05087609 0.01434988 -0.9303782 0.05087609 0.01434988 -1 0.05087609 0.01434988 -0 0.06429595 0.01434988 -0.002418731 0.06429595 0.01434988 -0.005155668 0.06429595 0.01434988 -0.009080105 0.06429595 0.01434988 -0.01434988 0.06429595 0.01434988 -0.02107202 0.06429595 0.01434988 -0.02934285 0.06429595 0.01434988 -0.03925039 0.06429595 0.01434988 -0.05087609 0.06429595 0.01434988 -0.06429595 0.06429595 0.01434988 -0.07958143 0.06429595 0.01434988 -0.0968001 0.06429595 0.01434988 -0.1160161 0.06429595 0.01434988 -0.1372908 0.06429595 0.01434988 -0.1606827 0.06429595 0.01434988 -0.1862481 0.06429595 0.01434988 -0.2140411 0.06429595 0.01434988 -0.2441142 0.06429595 0.01434988 -0.2765176 0.06429595 0.01434988 -0.3113005 0.06429595 0.01434988 -0.3485102 0.06429595 0.01434988 -0.388193 0.06429595 0.01434988 -0.4303934 0.06429595 0.01434988 -0.4751555 0.06429595 0.01434988 -0.5225216 0.06429595 0.01434988 -0.5725335 0.06429595 0.01434988 -0.6252316 0.06429595 0.01434988 -0.6806558 0.06429595 0.01434988 -0.7388448 0.06429595 0.01434988 -0.7998369 0.06429595 0.01434988 -0.8636691 0.06429595 0.01434988 -0.9303782 0.06429595 0.01434988 -1 0.06429595 0.01434988 -0 0.07958143 0.01434988 -0.002418731 0.07958143 0.01434988 -0.005155668 0.07958143 0.01434988 -0.009080105 0.07958143 0.01434988 -0.01434988 0.07958143 0.01434988 -0.02107202 0.07958143 0.01434988 -0.02934285 0.07958143 0.01434988 -0.03925039 0.07958143 0.01434988 -0.05087609 0.07958143 0.01434988 -0.06429595 0.07958143 0.01434988 -0.07958143 0.07958143 0.01434988 -0.0968001 0.07958143 0.01434988 -0.1160161 0.07958143 0.01434988 -0.1372908 0.07958143 0.01434988 -0.1606827 0.07958143 0.01434988 -0.1862481 0.07958143 0.01434988 -0.2140411 0.07958143 0.01434988 -0.2441142 0.07958143 0.01434988 -0.2765176 0.07958143 0.01434988 -0.3113005 0.07958143 0.01434988 -0.3485102 0.07958143 0.01434988 -0.388193 0.07958143 0.01434988 -0.4303934 0.07958143 0.01434988 -0.4751555 0.07958143 0.01434988 -0.5225216 0.07958143 0.01434988 -0.5725335 0.07958143 0.01434988 -0.6252316 0.07958143 0.01434988 -0.6806558 0.07958143 0.01434988 -0.7388448 0.07958143 0.01434988 -0.7998369 0.07958143 0.01434988 -0.8636691 0.07958143 0.01434988 -0.9303782 0.07958143 0.01434988 -1 0.07958143 0.01434988 -0 0.0968001 0.01434988 -0.002418731 0.0968001 0.01434988 -0.005155668 0.0968001 0.01434988 -0.009080105 0.0968001 0.01434988 -0.01434988 0.0968001 0.01434988 -0.02107202 0.0968001 0.01434988 -0.02934285 0.0968001 0.01434988 -0.03925039 0.0968001 0.01434988 -0.05087609 0.0968001 0.01434988 -0.06429595 0.0968001 0.01434988 -0.07958143 0.0968001 0.01434988 -0.0968001 0.0968001 0.01434988 -0.1160161 0.0968001 0.01434988 -0.1372908 0.0968001 0.01434988 -0.1606827 0.0968001 0.01434988 -0.1862481 0.0968001 0.01434988 -0.2140411 0.0968001 0.01434988 -0.2441142 0.0968001 0.01434988 -0.2765176 0.0968001 0.01434988 -0.3113005 0.0968001 0.01434988 -0.3485102 0.0968001 0.01434988 -0.388193 0.0968001 0.01434988 -0.4303934 0.0968001 0.01434988 -0.4751555 0.0968001 0.01434988 -0.5225216 0.0968001 0.01434988 -0.5725335 0.0968001 0.01434988 -0.6252316 0.0968001 0.01434988 -0.6806558 0.0968001 0.01434988 -0.7388448 0.0968001 0.01434988 -0.7998369 0.0968001 0.01434988 -0.8636691 0.0968001 0.01434988 -0.9303782 0.0968001 0.01434988 -1 0.0968001 0.01434988 -0 0.1160161 0.01434988 -0.002418731 0.1160161 0.01434988 -0.005155668 0.1160161 0.01434988 -0.009080105 0.1160161 0.01434988 -0.01434988 0.1160161 0.01434988 -0.02107202 0.1160161 0.01434988 -0.02934285 0.1160161 0.01434988 -0.03925039 0.1160161 0.01434988 -0.05087609 0.1160161 0.01434988 -0.06429595 0.1160161 0.01434988 -0.07958143 0.1160161 0.01434988 -0.0968001 0.1160161 0.01434988 -0.1160161 0.1160161 0.01434988 -0.1372908 0.1160161 0.01434988 -0.1606827 0.1160161 0.01434988 -0.1862481 0.1160161 0.01434988 -0.2140411 0.1160161 0.01434988 -0.2441142 0.1160161 0.01434988 -0.2765176 0.1160161 0.01434988 -0.3113005 0.1160161 0.01434988 -0.3485102 0.1160161 0.01434988 -0.388193 0.1160161 0.01434988 -0.4303934 0.1160161 0.01434988 -0.4751555 0.1160161 0.01434988 -0.5225216 0.1160161 0.01434988 -0.5725335 0.1160161 0.01434988 -0.6252316 0.1160161 0.01434988 -0.6806558 0.1160161 0.01434988 -0.7388448 0.1160161 0.01434988 -0.7998369 0.1160161 0.01434988 -0.8636691 0.1160161 0.01434988 -0.9303782 0.1160161 0.01434988 -1 0.1160161 0.01434988 -0 0.1372908 0.01434988 -0.002418731 0.1372908 0.01434988 -0.005155668 0.1372908 0.01434988 -0.009080105 0.1372908 0.01434988 -0.01434988 0.1372908 0.01434988 -0.02107202 0.1372908 0.01434988 -0.02934285 0.1372908 0.01434988 -0.03925039 0.1372908 0.01434988 -0.05087609 0.1372908 0.01434988 -0.06429595 0.1372908 0.01434988 -0.07958143 0.1372908 0.01434988 -0.0968001 0.1372908 0.01434988 -0.1160161 0.1372908 0.01434988 -0.1372908 0.1372908 0.01434988 -0.1606827 0.1372908 0.01434988 -0.1862481 0.1372908 0.01434988 -0.2140411 0.1372908 0.01434988 -0.2441142 0.1372908 0.01434988 -0.2765176 0.1372908 0.01434988 -0.3113005 0.1372908 0.01434988 -0.3485102 0.1372908 0.01434988 -0.388193 0.1372908 0.01434988 -0.4303934 0.1372908 0.01434988 -0.4751555 0.1372908 0.01434988 -0.5225216 0.1372908 0.01434988 -0.5725335 0.1372908 0.01434988 -0.6252316 0.1372908 0.01434988 -0.6806558 0.1372908 0.01434988 -0.7388448 0.1372908 0.01434988 -0.7998369 0.1372908 0.01434988 -0.8636691 0.1372908 0.01434988 -0.9303782 0.1372908 0.01434988 -1 0.1372908 0.01434988 -0 0.1606827 0.01434988 -0.002418731 0.1606827 0.01434988 -0.005155668 0.1606827 0.01434988 -0.009080105 0.1606827 0.01434988 -0.01434988 0.1606827 0.01434988 -0.02107202 0.1606827 0.01434988 -0.02934285 0.1606827 0.01434988 -0.03925039 0.1606827 0.01434988 -0.05087609 0.1606827 0.01434988 -0.06429595 0.1606827 0.01434988 -0.07958143 0.1606827 0.01434988 -0.0968001 0.1606827 0.01434988 -0.1160161 0.1606827 0.01434988 -0.1372908 0.1606827 0.01434988 -0.1606827 0.1606827 0.01434988 -0.1862481 0.1606827 0.01434988 -0.2140411 0.1606827 0.01434988 -0.2441142 0.1606827 0.01434988 -0.2765176 0.1606827 0.01434988 -0.3113005 0.1606827 0.01434988 -0.3485102 0.1606827 0.01434988 -0.388193 0.1606827 0.01434988 -0.4303934 0.1606827 0.01434988 -0.4751555 0.1606827 0.01434988 -0.5225216 0.1606827 0.01434988 -0.5725335 0.1606827 0.01434988 -0.6252316 0.1606827 0.01434988 -0.6806558 0.1606827 0.01434988 -0.7388448 0.1606827 0.01434988 -0.7998369 0.1606827 0.01434988 -0.8636691 0.1606827 0.01434988 -0.9303782 0.1606827 0.01434988 -1 0.1606827 0.01434988 -0 0.1862481 0.01434988 -0.002418731 0.1862481 0.01434988 -0.005155668 0.1862481 0.01434988 -0.009080105 0.1862481 0.01434988 -0.01434988 0.1862481 0.01434988 -0.02107202 0.1862481 0.01434988 -0.02934285 0.1862481 0.01434988 -0.03925039 0.1862481 0.01434988 -0.05087609 0.1862481 0.01434988 -0.06429595 0.1862481 0.01434988 -0.07958143 0.1862481 0.01434988 -0.0968001 0.1862481 0.01434988 -0.1160161 0.1862481 0.01434988 -0.1372908 0.1862481 0.01434988 -0.1606827 0.1862481 0.01434988 -0.1862481 0.1862481 0.01434988 -0.2140411 0.1862481 0.01434988 -0.2441142 0.1862481 0.01434988 -0.2765176 0.1862481 0.01434988 -0.3113005 0.1862481 0.01434988 -0.3485102 0.1862481 0.01434988 -0.388193 0.1862481 0.01434988 -0.4303934 0.1862481 0.01434988 -0.4751555 0.1862481 0.01434988 -0.5225216 0.1862481 0.01434988 -0.5725335 0.1862481 0.01434988 -0.6252316 0.1862481 0.01434988 -0.6806558 0.1862481 0.01434988 -0.7388448 0.1862481 0.01434988 -0.7998369 0.1862481 0.01434988 -0.8636691 0.1862481 0.01434988 -0.9303782 0.1862481 0.01434988 -1 0.1862481 0.01434988 -0 0.2140411 0.01434988 -0.002418731 0.2140411 0.01434988 -0.005155668 0.2140411 0.01434988 -0.009080105 0.2140411 0.01434988 -0.01434988 0.2140411 0.01434988 -0.02107202 0.2140411 0.01434988 -0.02934285 0.2140411 0.01434988 -0.03925039 0.2140411 0.01434988 -0.05087609 0.2140411 0.01434988 -0.06429595 0.2140411 0.01434988 -0.07958143 0.2140411 0.01434988 -0.0968001 0.2140411 0.01434988 -0.1160161 0.2140411 0.01434988 -0.1372908 0.2140411 0.01434988 -0.1606827 0.2140411 0.01434988 -0.1862481 0.2140411 0.01434988 -0.2140411 0.2140411 0.01434988 -0.2441142 0.2140411 0.01434988 -0.2765176 0.2140411 0.01434988 -0.3113005 0.2140411 0.01434988 -0.3485102 0.2140411 0.01434988 -0.388193 0.2140411 0.01434988 -0.4303934 0.2140411 0.01434988 -0.4751555 0.2140411 0.01434988 -0.5225216 0.2140411 0.01434988 -0.5725335 0.2140411 0.01434988 -0.6252316 0.2140411 0.01434988 -0.6806558 0.2140411 0.01434988 -0.7388448 0.2140411 0.01434988 -0.7998369 0.2140411 0.01434988 -0.8636691 0.2140411 0.01434988 -0.9303782 0.2140411 0.01434988 -1 0.2140411 0.01434988 -0 0.2441142 0.01434988 -0.002418731 0.2441142 0.01434988 -0.005155668 0.2441142 0.01434988 -0.009080105 0.2441142 0.01434988 -0.01434988 0.2441142 0.01434988 -0.02107202 0.2441142 0.01434988 -0.02934285 0.2441142 0.01434988 -0.03925039 0.2441142 0.01434988 -0.05087609 0.2441142 0.01434988 -0.06429595 0.2441142 0.01434988 -0.07958143 0.2441142 0.01434988 -0.0968001 0.2441142 0.01434988 -0.1160161 0.2441142 0.01434988 -0.1372908 0.2441142 0.01434988 -0.1606827 0.2441142 0.01434988 -0.1862481 0.2441142 0.01434988 -0.2140411 0.2441142 0.01434988 -0.2441142 0.2441142 0.01434988 -0.2765176 0.2441142 0.01434988 -0.3113005 0.2441142 0.01434988 -0.3485102 0.2441142 0.01434988 -0.388193 0.2441142 0.01434988 -0.4303934 0.2441142 0.01434988 -0.4751555 0.2441142 0.01434988 -0.5225216 0.2441142 0.01434988 -0.5725335 0.2441142 0.01434988 -0.6252316 0.2441142 0.01434988 -0.6806558 0.2441142 0.01434988 -0.7388448 0.2441142 0.01434988 -0.7998369 0.2441142 0.01434988 -0.8636691 0.2441142 0.01434988 -0.9303782 0.2441142 0.01434988 -1 0.2441142 0.01434988 -0 0.2765176 0.01434988 -0.002418731 0.2765176 0.01434988 -0.005155668 0.2765176 0.01434988 -0.009080105 0.2765176 0.01434988 -0.01434988 0.2765176 0.01434988 -0.02107202 0.2765176 0.01434988 -0.02934285 0.2765176 0.01434988 -0.03925039 0.2765176 0.01434988 -0.05087609 0.2765176 0.01434988 -0.06429595 0.2765176 0.01434988 -0.07958143 0.2765176 0.01434988 -0.0968001 0.2765176 0.01434988 -0.1160161 0.2765176 0.01434988 -0.1372908 0.2765176 0.01434988 -0.1606827 0.2765176 0.01434988 -0.1862481 0.2765176 0.01434988 -0.2140411 0.2765176 0.01434988 -0.2441142 0.2765176 0.01434988 -0.2765176 0.2765176 0.01434988 -0.3113005 0.2765176 0.01434988 -0.3485102 0.2765176 0.01434988 -0.388193 0.2765176 0.01434988 -0.4303934 0.2765176 0.01434988 -0.4751555 0.2765176 0.01434988 -0.5225216 0.2765176 0.01434988 -0.5725335 0.2765176 0.01434988 -0.6252316 0.2765176 0.01434988 -0.6806558 0.2765176 0.01434988 -0.7388448 0.2765176 0.01434988 -0.7998369 0.2765176 0.01434988 -0.8636691 0.2765176 0.01434988 -0.9303782 0.2765176 0.01434988 -1 0.2765176 0.01434988 -0 0.3113005 0.01434988 -0.002418731 0.3113005 0.01434988 -0.005155668 0.3113005 0.01434988 -0.009080105 0.3113005 0.01434988 -0.01434988 0.3113005 0.01434988 -0.02107202 0.3113005 0.01434988 -0.02934285 0.3113005 0.01434988 -0.03925039 0.3113005 0.01434988 -0.05087609 0.3113005 0.01434988 -0.06429595 0.3113005 0.01434988 -0.07958143 0.3113005 0.01434988 -0.0968001 0.3113005 0.01434988 -0.1160161 0.3113005 0.01434988 -0.1372908 0.3113005 0.01434988 -0.1606827 0.3113005 0.01434988 -0.1862481 0.3113005 0.01434988 -0.2140411 0.3113005 0.01434988 -0.2441142 0.3113005 0.01434988 -0.2765176 0.3113005 0.01434988 -0.3113005 0.3113005 0.01434988 -0.3485102 0.3113005 0.01434988 -0.388193 0.3113005 0.01434988 -0.4303934 0.3113005 0.01434988 -0.4751555 0.3113005 0.01434988 -0.5225216 0.3113005 0.01434988 -0.5725335 0.3113005 0.01434988 -0.6252316 0.3113005 0.01434988 -0.6806558 0.3113005 0.01434988 -0.7388448 0.3113005 0.01434988 -0.7998369 0.3113005 0.01434988 -0.8636691 0.3113005 0.01434988 -0.9303782 0.3113005 0.01434988 -1 0.3113005 0.01434988 -0 0.3485102 0.01434988 -0.002418731 0.3485102 0.01434988 -0.005155668 0.3485102 0.01434988 -0.009080105 0.3485102 0.01434988 -0.01434988 0.3485102 0.01434988 -0.02107202 0.3485102 0.01434988 -0.02934285 0.3485102 0.01434988 -0.03925039 0.3485102 0.01434988 -0.05087609 0.3485102 0.01434988 -0.06429595 0.3485102 0.01434988 -0.07958143 0.3485102 0.01434988 -0.0968001 0.3485102 0.01434988 -0.1160161 0.3485102 0.01434988 -0.1372908 0.3485102 0.01434988 -0.1606827 0.3485102 0.01434988 -0.1862481 0.3485102 0.01434988 -0.2140411 0.3485102 0.01434988 -0.2441142 0.3485102 0.01434988 -0.2765176 0.3485102 0.01434988 -0.3113005 0.3485102 0.01434988 -0.3485102 0.3485102 0.01434988 -0.388193 0.3485102 0.01434988 -0.4303934 0.3485102 0.01434988 -0.4751555 0.3485102 0.01434988 -0.5225216 0.3485102 0.01434988 -0.5725335 0.3485102 0.01434988 -0.6252316 0.3485102 0.01434988 -0.6806558 0.3485102 0.01434988 -0.7388448 0.3485102 0.01434988 -0.7998369 0.3485102 0.01434988 -0.8636691 0.3485102 0.01434988 -0.9303782 0.3485102 0.01434988 -1 0.3485102 0.01434988 -0 0.388193 0.01434988 -0.002418731 0.388193 0.01434988 -0.005155668 0.388193 0.01434988 -0.009080105 0.388193 0.01434988 -0.01434988 0.388193 0.01434988 -0.02107202 0.388193 0.01434988 -0.02934285 0.388193 0.01434988 -0.03925039 0.388193 0.01434988 -0.05087609 0.388193 0.01434988 -0.06429595 0.388193 0.01434988 -0.07958143 0.388193 0.01434988 -0.0968001 0.388193 0.01434988 -0.1160161 0.388193 0.01434988 -0.1372908 0.388193 0.01434988 -0.1606827 0.388193 0.01434988 -0.1862481 0.388193 0.01434988 -0.2140411 0.388193 0.01434988 -0.2441142 0.388193 0.01434988 -0.2765176 0.388193 0.01434988 -0.3113005 0.388193 0.01434988 -0.3485102 0.388193 0.01434988 -0.388193 0.388193 0.01434988 -0.4303934 0.388193 0.01434988 -0.4751555 0.388193 0.01434988 -0.5225216 0.388193 0.01434988 -0.5725335 0.388193 0.01434988 -0.6252316 0.388193 0.01434988 -0.6806558 0.388193 0.01434988 -0.7388448 0.388193 0.01434988 -0.7998369 0.388193 0.01434988 -0.8636691 0.388193 0.01434988 -0.9303782 0.388193 0.01434988 -1 0.388193 0.01434988 -0 0.4303934 0.01434988 -0.002418731 0.4303934 0.01434988 -0.005155668 0.4303934 0.01434988 -0.009080105 0.4303934 0.01434988 -0.01434988 0.4303934 0.01434988 -0.02107202 0.4303934 0.01434988 -0.02934285 0.4303934 0.01434988 -0.03925039 0.4303934 0.01434988 -0.05087609 0.4303934 0.01434988 -0.06429595 0.4303934 0.01434988 -0.07958143 0.4303934 0.01434988 -0.0968001 0.4303934 0.01434988 -0.1160161 0.4303934 0.01434988 -0.1372908 0.4303934 0.01434988 -0.1606827 0.4303934 0.01434988 -0.1862481 0.4303934 0.01434988 -0.2140411 0.4303934 0.01434988 -0.2441142 0.4303934 0.01434988 -0.2765176 0.4303934 0.01434988 -0.3113005 0.4303934 0.01434988 -0.3485102 0.4303934 0.01434988 -0.388193 0.4303934 0.01434988 -0.4303934 0.4303934 0.01434988 -0.4751555 0.4303934 0.01434988 -0.5225216 0.4303934 0.01434988 -0.5725335 0.4303934 0.01434988 -0.6252316 0.4303934 0.01434988 -0.6806558 0.4303934 0.01434988 -0.7388448 0.4303934 0.01434988 -0.7998369 0.4303934 0.01434988 -0.8636691 0.4303934 0.01434988 -0.9303782 0.4303934 0.01434988 -1 0.4303934 0.01434988 -0 0.4751555 0.01434988 -0.002418731 0.4751555 0.01434988 -0.005155668 0.4751555 0.01434988 -0.009080105 0.4751555 0.01434988 -0.01434988 0.4751555 0.01434988 -0.02107202 0.4751555 0.01434988 -0.02934285 0.4751555 0.01434988 -0.03925039 0.4751555 0.01434988 -0.05087609 0.4751555 0.01434988 -0.06429595 0.4751555 0.01434988 -0.07958143 0.4751555 0.01434988 -0.0968001 0.4751555 0.01434988 -0.1160161 0.4751555 0.01434988 -0.1372908 0.4751555 0.01434988 -0.1606827 0.4751555 0.01434988 -0.1862481 0.4751555 0.01434988 -0.2140411 0.4751555 0.01434988 -0.2441142 0.4751555 0.01434988 -0.2765176 0.4751555 0.01434988 -0.3113005 0.4751555 0.01434988 -0.3485102 0.4751555 0.01434988 -0.388193 0.4751555 0.01434988 -0.4303934 0.4751555 0.01434988 -0.4751555 0.4751555 0.01434988 -0.5225216 0.4751555 0.01434988 -0.5725335 0.4751555 0.01434988 -0.6252316 0.4751555 0.01434988 -0.6806558 0.4751555 0.01434988 -0.7388448 0.4751555 0.01434988 -0.7998369 0.4751555 0.01434988 -0.8636691 0.4751555 0.01434988 -0.9303782 0.4751555 0.01434988 -1 0.4751555 0.01434988 -0 0.5225216 0.01434988 -0.002418731 0.5225216 0.01434988 -0.005155668 0.5225216 0.01434988 -0.009080105 0.5225216 0.01434988 -0.01434988 0.5225216 0.01434988 -0.02107202 0.5225216 0.01434988 -0.02934285 0.5225216 0.01434988 -0.03925039 0.5225216 0.01434988 -0.05087609 0.5225216 0.01434988 -0.06429595 0.5225216 0.01434988 -0.07958143 0.5225216 0.01434988 -0.0968001 0.5225216 0.01434988 -0.1160161 0.5225216 0.01434988 -0.1372908 0.5225216 0.01434988 -0.1606827 0.5225216 0.01434988 -0.1862481 0.5225216 0.01434988 -0.2140411 0.5225216 0.01434988 -0.2441142 0.5225216 0.01434988 -0.2765176 0.5225216 0.01434988 -0.3113005 0.5225216 0.01434988 -0.3485102 0.5225216 0.01434988 -0.388193 0.5225216 0.01434988 -0.4303934 0.5225216 0.01434988 -0.4751555 0.5225216 0.01434988 -0.5225216 0.5225216 0.01434988 -0.5725335 0.5225216 0.01434988 -0.6252316 0.5225216 0.01434988 -0.6806558 0.5225216 0.01434988 -0.7388448 0.5225216 0.01434988 -0.7998369 0.5225216 0.01434988 -0.8636691 0.5225216 0.01434988 -0.9303782 0.5225216 0.01434988 -1 0.5225216 0.01434988 -0 0.5725335 0.01434988 -0.002418731 0.5725335 0.01434988 -0.005155668 0.5725335 0.01434988 -0.009080105 0.5725335 0.01434988 -0.01434988 0.5725335 0.01434988 -0.02107202 0.5725335 0.01434988 -0.02934285 0.5725335 0.01434988 -0.03925039 0.5725335 0.01434988 -0.05087609 0.5725335 0.01434988 -0.06429595 0.5725335 0.01434988 -0.07958143 0.5725335 0.01434988 -0.0968001 0.5725335 0.01434988 -0.1160161 0.5725335 0.01434988 -0.1372908 0.5725335 0.01434988 -0.1606827 0.5725335 0.01434988 -0.1862481 0.5725335 0.01434988 -0.2140411 0.5725335 0.01434988 -0.2441142 0.5725335 0.01434988 -0.2765176 0.5725335 0.01434988 -0.3113005 0.5725335 0.01434988 -0.3485102 0.5725335 0.01434988 -0.388193 0.5725335 0.01434988 -0.4303934 0.5725335 0.01434988 -0.4751555 0.5725335 0.01434988 -0.5225216 0.5725335 0.01434988 -0.5725335 0.5725335 0.01434988 -0.6252316 0.5725335 0.01434988 -0.6806558 0.5725335 0.01434988 -0.7388448 0.5725335 0.01434988 -0.7998369 0.5725335 0.01434988 -0.8636691 0.5725335 0.01434988 -0.9303782 0.5725335 0.01434988 -1 0.5725335 0.01434988 -0 0.6252316 0.01434988 -0.002418731 0.6252316 0.01434988 -0.005155668 0.6252316 0.01434988 -0.009080105 0.6252316 0.01434988 -0.01434988 0.6252316 0.01434988 -0.02107202 0.6252316 0.01434988 -0.02934285 0.6252316 0.01434988 -0.03925039 0.6252316 0.01434988 -0.05087609 0.6252316 0.01434988 -0.06429595 0.6252316 0.01434988 -0.07958143 0.6252316 0.01434988 -0.0968001 0.6252316 0.01434988 -0.1160161 0.6252316 0.01434988 -0.1372908 0.6252316 0.01434988 -0.1606827 0.6252316 0.01434988 -0.1862481 0.6252316 0.01434988 -0.2140411 0.6252316 0.01434988 -0.2441142 0.6252316 0.01434988 -0.2765176 0.6252316 0.01434988 -0.3113005 0.6252316 0.01434988 -0.3485102 0.6252316 0.01434988 -0.388193 0.6252316 0.01434988 -0.4303934 0.6252316 0.01434988 -0.4751555 0.6252316 0.01434988 -0.5225216 0.6252316 0.01434988 -0.5725335 0.6252316 0.01434988 -0.6252316 0.6252316 0.01434988 -0.6806558 0.6252316 0.01434988 -0.7388448 0.6252316 0.01434988 -0.7998369 0.6252316 0.01434988 -0.8636691 0.6252316 0.01434988 -0.9303782 0.6252316 0.01434988 -1 0.6252316 0.01434988 -0 0.6806558 0.01434988 -0.002418731 0.6806558 0.01434988 -0.005155668 0.6806558 0.01434988 -0.009080105 0.6806558 0.01434988 -0.01434988 0.6806558 0.01434988 -0.02107202 0.6806558 0.01434988 -0.02934285 0.6806558 0.01434988 -0.03925039 0.6806558 0.01434988 -0.05087609 0.6806558 0.01434988 -0.06429595 0.6806558 0.01434988 -0.07958143 0.6806558 0.01434988 -0.0968001 0.6806558 0.01434988 -0.1160161 0.6806558 0.01434988 -0.1372908 0.6806558 0.01434988 -0.1606827 0.6806558 0.01434988 -0.1862481 0.6806558 0.01434988 -0.2140411 0.6806558 0.01434988 -0.2441142 0.6806558 0.01434988 -0.2765176 0.6806558 0.01434988 -0.3113005 0.6806558 0.01434988 -0.3485102 0.6806558 0.01434988 -0.388193 0.6806558 0.01434988 -0.4303934 0.6806558 0.01434988 -0.4751555 0.6806558 0.01434988 -0.5225216 0.6806558 0.01434988 -0.5725335 0.6806558 0.01434988 -0.6252316 0.6806558 0.01434988 -0.6806558 0.6806558 0.01434988 -0.7388448 0.6806558 0.01434988 -0.7998369 0.6806558 0.01434988 -0.8636691 0.6806558 0.01434988 -0.9303782 0.6806558 0.01434988 -1 0.6806558 0.01434988 -0 0.7388448 0.01434988 -0.002418731 0.7388448 0.01434988 -0.005155668 0.7388448 0.01434988 -0.009080105 0.7388448 0.01434988 -0.01434988 0.7388448 0.01434988 -0.02107202 0.7388448 0.01434988 -0.02934285 0.7388448 0.01434988 -0.03925039 0.7388448 0.01434988 -0.05087609 0.7388448 0.01434988 -0.06429595 0.7388448 0.01434988 -0.07958143 0.7388448 0.01434988 -0.0968001 0.7388448 0.01434988 -0.1160161 0.7388448 0.01434988 -0.1372908 0.7388448 0.01434988 -0.1606827 0.7388448 0.01434988 -0.1862481 0.7388448 0.01434988 -0.2140411 0.7388448 0.01434988 -0.2441142 0.7388448 0.01434988 -0.2765176 0.7388448 0.01434988 -0.3113005 0.7388448 0.01434988 -0.3485102 0.7388448 0.01434988 -0.388193 0.7388448 0.01434988 -0.4303934 0.7388448 0.01434988 -0.4751555 0.7388448 0.01434988 -0.5225216 0.7388448 0.01434988 -0.5725335 0.7388448 0.01434988 -0.6252316 0.7388448 0.01434988 -0.6806558 0.7388448 0.01434988 -0.7388448 0.7388448 0.01434988 -0.7998369 0.7388448 0.01434988 -0.8636691 0.7388448 0.01434988 -0.9303782 0.7388448 0.01434988 -1 0.7388448 0.01434988 -0 0.7998369 0.01434988 -0.002418731 0.7998369 0.01434988 -0.005155668 0.7998369 0.01434988 -0.009080105 0.7998369 0.01434988 -0.01434988 0.7998369 0.01434988 -0.02107202 0.7998369 0.01434988 -0.02934285 0.7998369 0.01434988 -0.03925039 0.7998369 0.01434988 -0.05087609 0.7998369 0.01434988 -0.06429595 0.7998369 0.01434988 -0.07958143 0.7998369 0.01434988 -0.0968001 0.7998369 0.01434988 -0.1160161 0.7998369 0.01434988 -0.1372908 0.7998369 0.01434988 -0.1606827 0.7998369 0.01434988 -0.1862481 0.7998369 0.01434988 -0.2140411 0.7998369 0.01434988 -0.2441142 0.7998369 0.01434988 -0.2765176 0.7998369 0.01434988 -0.3113005 0.7998369 0.01434988 -0.3485102 0.7998369 0.01434988 -0.388193 0.7998369 0.01434988 -0.4303934 0.7998369 0.01434988 -0.4751555 0.7998369 0.01434988 -0.5225216 0.7998369 0.01434988 -0.5725335 0.7998369 0.01434988 -0.6252316 0.7998369 0.01434988 -0.6806558 0.7998369 0.01434988 -0.7388448 0.7998369 0.01434988 -0.7998369 0.7998369 0.01434988 -0.8636691 0.7998369 0.01434988 -0.9303782 0.7998369 0.01434988 -1 0.7998369 0.01434988 -0 0.8636691 0.01434988 -0.002418731 0.8636691 0.01434988 -0.005155668 0.8636691 0.01434988 -0.009080105 0.8636691 0.01434988 -0.01434988 0.8636691 0.01434988 -0.02107202 0.8636691 0.01434988 -0.02934285 0.8636691 0.01434988 -0.03925039 0.8636691 0.01434988 -0.05087609 0.8636691 0.01434988 -0.06429595 0.8636691 0.01434988 -0.07958143 0.8636691 0.01434988 -0.0968001 0.8636691 0.01434988 -0.1160161 0.8636691 0.01434988 -0.1372908 0.8636691 0.01434988 -0.1606827 0.8636691 0.01434988 -0.1862481 0.8636691 0.01434988 -0.2140411 0.8636691 0.01434988 -0.2441142 0.8636691 0.01434988 -0.2765176 0.8636691 0.01434988 -0.3113005 0.8636691 0.01434988 -0.3485102 0.8636691 0.01434988 -0.388193 0.8636691 0.01434988 -0.4303934 0.8636691 0.01434988 -0.4751555 0.8636691 0.01434988 -0.5225216 0.8636691 0.01434988 -0.5725335 0.8636691 0.01434988 -0.6252316 0.8636691 0.01434988 -0.6806558 0.8636691 0.01434988 -0.7388448 0.8636691 0.01434988 -0.7998369 0.8636691 0.01434988 -0.8636691 0.8636691 0.01434988 -0.9303782 0.8636691 0.01434988 -1 0.8636691 0.01434988 -0 0.9303782 0.01434988 -0.002418731 0.9303782 0.01434988 -0.005155668 0.9303782 0.01434988 -0.009080105 0.9303782 0.01434988 -0.01434988 0.9303782 0.01434988 -0.02107202 0.9303782 0.01434988 -0.02934285 0.9303782 0.01434988 -0.03925039 0.9303782 0.01434988 -0.05087609 0.9303782 0.01434988 -0.06429595 0.9303782 0.01434988 -0.07958143 0.9303782 0.01434988 -0.0968001 0.9303782 0.01434988 -0.1160161 0.9303782 0.01434988 -0.1372908 0.9303782 0.01434988 -0.1606827 0.9303782 0.01434988 -0.1862481 0.9303782 0.01434988 -0.2140411 0.9303782 0.01434988 -0.2441142 0.9303782 0.01434988 -0.2765176 0.9303782 0.01434988 -0.3113005 0.9303782 0.01434988 -0.3485102 0.9303782 0.01434988 -0.388193 0.9303782 0.01434988 -0.4303934 0.9303782 0.01434988 -0.4751555 0.9303782 0.01434988 -0.5225216 0.9303782 0.01434988 -0.5725335 0.9303782 0.01434988 -0.6252316 0.9303782 0.01434988 -0.6806558 0.9303782 0.01434988 -0.7388448 0.9303782 0.01434988 -0.7998369 0.9303782 0.01434988 -0.8636691 0.9303782 0.01434988 -0.9303782 0.9303782 0.01434988 -1 0.9303782 0.01434988 -0 1 0.01434988 -0.002418731 1 0.01434988 -0.005155668 1 0.01434988 -0.009080105 1 0.01434988 -0.01434988 1 0.01434988 -0.02107202 1 0.01434988 -0.02934285 1 0.01434988 -0.03925039 1 0.01434988 -0.05087609 1 0.01434988 -0.06429595 1 0.01434988 -0.07958143 1 0.01434988 -0.0968001 1 0.01434988 -0.1160161 1 0.01434988 -0.1372908 1 0.01434988 -0.1606827 1 0.01434988 -0.1862481 1 0.01434988 -0.2140411 1 0.01434988 -0.2441142 1 0.01434988 -0.2765176 1 0.01434988 -0.3113005 1 0.01434988 -0.3485102 1 0.01434988 -0.388193 1 0.01434988 -0.4303934 1 0.01434988 -0.4751555 1 0.01434988 -0.5225216 1 0.01434988 -0.5725335 1 0.01434988 -0.6252316 1 0.01434988 -0.6806558 1 0.01434988 -0.7388448 1 0.01434988 -0.7998369 1 0.01434988 -0.8636691 1 0.01434988 -0.9303782 1 0.01434988 -1 1 0.01434988 -0 0 0.02107202 -0.002418731 0 0.02107202 -0.005155668 0 0.02107202 -0.009080105 0 0.02107202 -0.01434988 0 0.02107202 -0.02107202 0 0.02107202 -0.02934285 0 0.02107202 -0.03925039 0 0.02107202 -0.05087609 0 0.02107202 -0.06429595 0 0.02107202 -0.07958143 0 0.02107202 -0.0968001 0 0.02107202 -0.1160161 0 0.02107202 -0.1372908 0 0.02107202 -0.1606827 0 0.02107202 -0.1862481 0 0.02107202 -0.2140411 0 0.02107202 -0.2441142 0 0.02107202 -0.2765176 0 0.02107202 -0.3113005 0 0.02107202 -0.3485102 0 0.02107202 -0.388193 0 0.02107202 -0.4303934 0 0.02107202 -0.4751555 0 0.02107202 -0.5225216 0 0.02107202 -0.5725335 0 0.02107202 -0.6252316 0 0.02107202 -0.6806558 0 0.02107202 -0.7388448 0 0.02107202 -0.7998369 0 0.02107202 -0.8636691 0 0.02107202 -0.9303782 0 0.02107202 -1 0 0.02107202 -0 0.002418731 0.02107202 -0.002418731 0.002418731 0.02107202 -0.005155668 0.002418731 0.02107202 -0.009080105 0.002418731 0.02107202 -0.01434988 0.002418731 0.02107202 -0.02107202 0.002418731 0.02107202 -0.02934285 0.002418731 0.02107202 -0.03925039 0.002418731 0.02107202 -0.05087609 0.002418731 0.02107202 -0.06429595 0.002418731 0.02107202 -0.07958143 0.002418731 0.02107202 -0.0968001 0.002418731 0.02107202 -0.1160161 0.002418731 0.02107202 -0.1372908 0.002418731 0.02107202 -0.1606827 0.002418731 0.02107202 -0.1862481 0.002418731 0.02107202 -0.2140411 0.002418731 0.02107202 -0.2441142 0.002418731 0.02107202 -0.2765176 0.002418731 0.02107202 -0.3113005 0.002418731 0.02107202 -0.3485102 0.002418731 0.02107202 -0.388193 0.002418731 0.02107202 -0.4303934 0.002418731 0.02107202 -0.4751555 0.002418731 0.02107202 -0.5225216 0.002418731 0.02107202 -0.5725335 0.002418731 0.02107202 -0.6252316 0.002418731 0.02107202 -0.6806558 0.002418731 0.02107202 -0.7388448 0.002418731 0.02107202 -0.7998369 0.002418731 0.02107202 -0.8636691 0.002418731 0.02107202 -0.9303782 0.002418731 0.02107202 -1 0.002418731 0.02107202 -0 0.005155668 0.02107202 -0.002418731 0.005155668 0.02107202 -0.005155668 0.005155668 0.02107202 -0.009080105 0.005155668 0.02107202 -0.01434988 0.005155668 0.02107202 -0.02107202 0.005155668 0.02107202 -0.02934285 0.005155668 0.02107202 -0.03925039 0.005155668 0.02107202 -0.05087609 0.005155668 0.02107202 -0.06429595 0.005155668 0.02107202 -0.07958143 0.005155668 0.02107202 -0.0968001 0.005155668 0.02107202 -0.1160161 0.005155668 0.02107202 -0.1372908 0.005155668 0.02107202 -0.1606827 0.005155668 0.02107202 -0.1862481 0.005155668 0.02107202 -0.2140411 0.005155668 0.02107202 -0.2441142 0.005155668 0.02107202 -0.2765176 0.005155668 0.02107202 -0.3113005 0.005155668 0.02107202 -0.3485102 0.005155668 0.02107202 -0.388193 0.005155668 0.02107202 -0.4303934 0.005155668 0.02107202 -0.4751555 0.005155668 0.02107202 -0.5225216 0.005155668 0.02107202 -0.5725335 0.005155668 0.02107202 -0.6252316 0.005155668 0.02107202 -0.6806558 0.005155668 0.02107202 -0.7388448 0.005155668 0.02107202 -0.7998369 0.005155668 0.02107202 -0.8636691 0.005155668 0.02107202 -0.9303782 0.005155668 0.02107202 -1 0.005155668 0.02107202 -0 0.009080105 0.02107202 -0.002418731 0.009080105 0.02107202 -0.005155668 0.009080105 0.02107202 -0.009080105 0.009080105 0.02107202 -0.01434988 0.009080105 0.02107202 -0.02107202 0.009080105 0.02107202 -0.02934285 0.009080105 0.02107202 -0.03925039 0.009080105 0.02107202 -0.05087609 0.009080105 0.02107202 -0.06429595 0.009080105 0.02107202 -0.07958143 0.009080105 0.02107202 -0.0968001 0.009080105 0.02107202 -0.1160161 0.009080105 0.02107202 -0.1372908 0.009080105 0.02107202 -0.1606827 0.009080105 0.02107202 -0.1862481 0.009080105 0.02107202 -0.2140411 0.009080105 0.02107202 -0.2441142 0.009080105 0.02107202 -0.2765176 0.009080105 0.02107202 -0.3113005 0.009080105 0.02107202 -0.3485102 0.009080105 0.02107202 -0.388193 0.009080105 0.02107202 -0.4303934 0.009080105 0.02107202 -0.4751555 0.009080105 0.02107202 -0.5225216 0.009080105 0.02107202 -0.5725335 0.009080105 0.02107202 -0.6252316 0.009080105 0.02107202 -0.6806558 0.009080105 0.02107202 -0.7388448 0.009080105 0.02107202 -0.7998369 0.009080105 0.02107202 -0.8636691 0.009080105 0.02107202 -0.9303782 0.009080105 0.02107202 -1 0.009080105 0.02107202 -0 0.01434988 0.02107202 -0.002418731 0.01434988 0.02107202 -0.005155668 0.01434988 0.02107202 -0.009080105 0.01434988 0.02107202 -0.01434988 0.01434988 0.02107202 -0.02107202 0.01434988 0.02107202 -0.02934285 0.01434988 0.02107202 -0.03925039 0.01434988 0.02107202 -0.05087609 0.01434988 0.02107202 -0.06429595 0.01434988 0.02107202 -0.07958143 0.01434988 0.02107202 -0.0968001 0.01434988 0.02107202 -0.1160161 0.01434988 0.02107202 -0.1372908 0.01434988 0.02107202 -0.1606827 0.01434988 0.02107202 -0.1862481 0.01434988 0.02107202 -0.2140411 0.01434988 0.02107202 -0.2441142 0.01434988 0.02107202 -0.2765176 0.01434988 0.02107202 -0.3113005 0.01434988 0.02107202 -0.3485102 0.01434988 0.02107202 -0.388193 0.01434988 0.02107202 -0.4303934 0.01434988 0.02107202 -0.4751555 0.01434988 0.02107202 -0.5225216 0.01434988 0.02107202 -0.5725335 0.01434988 0.02107202 -0.6252316 0.01434988 0.02107202 -0.6806558 0.01434988 0.02107202 -0.7388448 0.01434988 0.02107202 -0.7998369 0.01434988 0.02107202 -0.8636691 0.01434988 0.02107202 -0.9303782 0.01434988 0.02107202 -1 0.01434988 0.02107202 -0 0.02107202 0.02107202 -0.002418731 0.02107202 0.02107202 -0.005155668 0.02107202 0.02107202 -0.009080105 0.02107202 0.02107202 -0.01434988 0.02107202 0.02107202 -0.02107202 0.02107202 0.02107202 -0.02934285 0.02107202 0.02107202 -0.03925039 0.02107202 0.02107202 -0.05087609 0.02107202 0.02107202 -0.06429595 0.02107202 0.02107202 -0.07958143 0.02107202 0.02107202 -0.0968001 0.02107202 0.02107202 -0.1160161 0.02107202 0.02107202 -0.1372908 0.02107202 0.02107202 -0.1606827 0.02107202 0.02107202 -0.1862481 0.02107202 0.02107202 -0.2140411 0.02107202 0.02107202 -0.2441142 0.02107202 0.02107202 -0.2765176 0.02107202 0.02107202 -0.3113005 0.02107202 0.02107202 -0.3485102 0.02107202 0.02107202 -0.388193 0.02107202 0.02107202 -0.4303934 0.02107202 0.02107202 -0.4751555 0.02107202 0.02107202 -0.5225216 0.02107202 0.02107202 -0.5725335 0.02107202 0.02107202 -0.6252316 0.02107202 0.02107202 -0.6806558 0.02107202 0.02107202 -0.7388448 0.02107202 0.02107202 -0.7998369 0.02107202 0.02107202 -0.8636691 0.02107202 0.02107202 -0.9303782 0.02107202 0.02107202 -1 0.02107202 0.02107202 -0 0.02934285 0.02107202 -0.002418731 0.02934285 0.02107202 -0.005155668 0.02934285 0.02107202 -0.009080105 0.02934285 0.02107202 -0.01434988 0.02934285 0.02107202 -0.02107202 0.02934285 0.02107202 -0.02934285 0.02934285 0.02107202 -0.03925039 0.02934285 0.02107202 -0.05087609 0.02934285 0.02107202 -0.06429595 0.02934285 0.02107202 -0.07958143 0.02934285 0.02107202 -0.0968001 0.02934285 0.02107202 -0.1160161 0.02934285 0.02107202 -0.1372908 0.02934285 0.02107202 -0.1606827 0.02934285 0.02107202 -0.1862481 0.02934285 0.02107202 -0.2140411 0.02934285 0.02107202 -0.2441142 0.02934285 0.02107202 -0.2765176 0.02934285 0.02107202 -0.3113005 0.02934285 0.02107202 -0.3485102 0.02934285 0.02107202 -0.388193 0.02934285 0.02107202 -0.4303934 0.02934285 0.02107202 -0.4751555 0.02934285 0.02107202 -0.5225216 0.02934285 0.02107202 -0.5725335 0.02934285 0.02107202 -0.6252316 0.02934285 0.02107202 -0.6806558 0.02934285 0.02107202 -0.7388448 0.02934285 0.02107202 -0.7998369 0.02934285 0.02107202 -0.8636691 0.02934285 0.02107202 -0.9303782 0.02934285 0.02107202 -1 0.02934285 0.02107202 -0 0.03925039 0.02107202 -0.002418731 0.03925039 0.02107202 -0.005155668 0.03925039 0.02107202 -0.009080105 0.03925039 0.02107202 -0.01434988 0.03925039 0.02107202 -0.02107202 0.03925039 0.02107202 -0.02934285 0.03925039 0.02107202 -0.03925039 0.03925039 0.02107202 -0.05087609 0.03925039 0.02107202 -0.06429595 0.03925039 0.02107202 -0.07958143 0.03925039 0.02107202 -0.0968001 0.03925039 0.02107202 -0.1160161 0.03925039 0.02107202 -0.1372908 0.03925039 0.02107202 -0.1606827 0.03925039 0.02107202 -0.1862481 0.03925039 0.02107202 -0.2140411 0.03925039 0.02107202 -0.2441142 0.03925039 0.02107202 -0.2765176 0.03925039 0.02107202 -0.3113005 0.03925039 0.02107202 -0.3485102 0.03925039 0.02107202 -0.388193 0.03925039 0.02107202 -0.4303934 0.03925039 0.02107202 -0.4751555 0.03925039 0.02107202 -0.5225216 0.03925039 0.02107202 -0.5725335 0.03925039 0.02107202 -0.6252316 0.03925039 0.02107202 -0.6806558 0.03925039 0.02107202 -0.7388448 0.03925039 0.02107202 -0.7998369 0.03925039 0.02107202 -0.8636691 0.03925039 0.02107202 -0.9303782 0.03925039 0.02107202 -1 0.03925039 0.02107202 -0 0.05087609 0.02107202 -0.002418731 0.05087609 0.02107202 -0.005155668 0.05087609 0.02107202 -0.009080105 0.05087609 0.02107202 -0.01434988 0.05087609 0.02107202 -0.02107202 0.05087609 0.02107202 -0.02934285 0.05087609 0.02107202 -0.03925039 0.05087609 0.02107202 -0.05087609 0.05087609 0.02107202 -0.06429595 0.05087609 0.02107202 -0.07958143 0.05087609 0.02107202 -0.0968001 0.05087609 0.02107202 -0.1160161 0.05087609 0.02107202 -0.1372908 0.05087609 0.02107202 -0.1606827 0.05087609 0.02107202 -0.1862481 0.05087609 0.02107202 -0.2140411 0.05087609 0.02107202 -0.2441142 0.05087609 0.02107202 -0.2765176 0.05087609 0.02107202 -0.3113005 0.05087609 0.02107202 -0.3485102 0.05087609 0.02107202 -0.388193 0.05087609 0.02107202 -0.4303934 0.05087609 0.02107202 -0.4751555 0.05087609 0.02107202 -0.5225216 0.05087609 0.02107202 -0.5725335 0.05087609 0.02107202 -0.6252316 0.05087609 0.02107202 -0.6806558 0.05087609 0.02107202 -0.7388448 0.05087609 0.02107202 -0.7998369 0.05087609 0.02107202 -0.8636691 0.05087609 0.02107202 -0.9303782 0.05087609 0.02107202 -1 0.05087609 0.02107202 -0 0.06429595 0.02107202 -0.002418731 0.06429595 0.02107202 -0.005155668 0.06429595 0.02107202 -0.009080105 0.06429595 0.02107202 -0.01434988 0.06429595 0.02107202 -0.02107202 0.06429595 0.02107202 -0.02934285 0.06429595 0.02107202 -0.03925039 0.06429595 0.02107202 -0.05087609 0.06429595 0.02107202 -0.06429595 0.06429595 0.02107202 -0.07958143 0.06429595 0.02107202 -0.0968001 0.06429595 0.02107202 -0.1160161 0.06429595 0.02107202 -0.1372908 0.06429595 0.02107202 -0.1606827 0.06429595 0.02107202 -0.1862481 0.06429595 0.02107202 -0.2140411 0.06429595 0.02107202 -0.2441142 0.06429595 0.02107202 -0.2765176 0.06429595 0.02107202 -0.3113005 0.06429595 0.02107202 -0.3485102 0.06429595 0.02107202 -0.388193 0.06429595 0.02107202 -0.4303934 0.06429595 0.02107202 -0.4751555 0.06429595 0.02107202 -0.5225216 0.06429595 0.02107202 -0.5725335 0.06429595 0.02107202 -0.6252316 0.06429595 0.02107202 -0.6806558 0.06429595 0.02107202 -0.7388448 0.06429595 0.02107202 -0.7998369 0.06429595 0.02107202 -0.8636691 0.06429595 0.02107202 -0.9303782 0.06429595 0.02107202 -1 0.06429595 0.02107202 -0 0.07958143 0.02107202 -0.002418731 0.07958143 0.02107202 -0.005155668 0.07958143 0.02107202 -0.009080105 0.07958143 0.02107202 -0.01434988 0.07958143 0.02107202 -0.02107202 0.07958143 0.02107202 -0.02934285 0.07958143 0.02107202 -0.03925039 0.07958143 0.02107202 -0.05087609 0.07958143 0.02107202 -0.06429595 0.07958143 0.02107202 -0.07958143 0.07958143 0.02107202 -0.0968001 0.07958143 0.02107202 -0.1160161 0.07958143 0.02107202 -0.1372908 0.07958143 0.02107202 -0.1606827 0.07958143 0.02107202 -0.1862481 0.07958143 0.02107202 -0.2140411 0.07958143 0.02107202 -0.2441142 0.07958143 0.02107202 -0.2765176 0.07958143 0.02107202 -0.3113005 0.07958143 0.02107202 -0.3485102 0.07958143 0.02107202 -0.388193 0.07958143 0.02107202 -0.4303934 0.07958143 0.02107202 -0.4751555 0.07958143 0.02107202 -0.5225216 0.07958143 0.02107202 -0.5725335 0.07958143 0.02107202 -0.6252316 0.07958143 0.02107202 -0.6806558 0.07958143 0.02107202 -0.7388448 0.07958143 0.02107202 -0.7998369 0.07958143 0.02107202 -0.8636691 0.07958143 0.02107202 -0.9303782 0.07958143 0.02107202 -1 0.07958143 0.02107202 -0 0.0968001 0.02107202 -0.002418731 0.0968001 0.02107202 -0.005155668 0.0968001 0.02107202 -0.009080105 0.0968001 0.02107202 -0.01434988 0.0968001 0.02107202 -0.02107202 0.0968001 0.02107202 -0.02934285 0.0968001 0.02107202 -0.03925039 0.0968001 0.02107202 -0.05087609 0.0968001 0.02107202 -0.06429595 0.0968001 0.02107202 -0.07958143 0.0968001 0.02107202 -0.0968001 0.0968001 0.02107202 -0.1160161 0.0968001 0.02107202 -0.1372908 0.0968001 0.02107202 -0.1606827 0.0968001 0.02107202 -0.1862481 0.0968001 0.02107202 -0.2140411 0.0968001 0.02107202 -0.2441142 0.0968001 0.02107202 -0.2765176 0.0968001 0.02107202 -0.3113005 0.0968001 0.02107202 -0.3485102 0.0968001 0.02107202 -0.388193 0.0968001 0.02107202 -0.4303934 0.0968001 0.02107202 -0.4751555 0.0968001 0.02107202 -0.5225216 0.0968001 0.02107202 -0.5725335 0.0968001 0.02107202 -0.6252316 0.0968001 0.02107202 -0.6806558 0.0968001 0.02107202 -0.7388448 0.0968001 0.02107202 -0.7998369 0.0968001 0.02107202 -0.8636691 0.0968001 0.02107202 -0.9303782 0.0968001 0.02107202 -1 0.0968001 0.02107202 -0 0.1160161 0.02107202 -0.002418731 0.1160161 0.02107202 -0.005155668 0.1160161 0.02107202 -0.009080105 0.1160161 0.02107202 -0.01434988 0.1160161 0.02107202 -0.02107202 0.1160161 0.02107202 -0.02934285 0.1160161 0.02107202 -0.03925039 0.1160161 0.02107202 -0.05087609 0.1160161 0.02107202 -0.06429595 0.1160161 0.02107202 -0.07958143 0.1160161 0.02107202 -0.0968001 0.1160161 0.02107202 -0.1160161 0.1160161 0.02107202 -0.1372908 0.1160161 0.02107202 -0.1606827 0.1160161 0.02107202 -0.1862481 0.1160161 0.02107202 -0.2140411 0.1160161 0.02107202 -0.2441142 0.1160161 0.02107202 -0.2765176 0.1160161 0.02107202 -0.3113005 0.1160161 0.02107202 -0.3485102 0.1160161 0.02107202 -0.388193 0.1160161 0.02107202 -0.4303934 0.1160161 0.02107202 -0.4751555 0.1160161 0.02107202 -0.5225216 0.1160161 0.02107202 -0.5725335 0.1160161 0.02107202 -0.6252316 0.1160161 0.02107202 -0.6806558 0.1160161 0.02107202 -0.7388448 0.1160161 0.02107202 -0.7998369 0.1160161 0.02107202 -0.8636691 0.1160161 0.02107202 -0.9303782 0.1160161 0.02107202 -1 0.1160161 0.02107202 -0 0.1372908 0.02107202 -0.002418731 0.1372908 0.02107202 -0.005155668 0.1372908 0.02107202 -0.009080105 0.1372908 0.02107202 -0.01434988 0.1372908 0.02107202 -0.02107202 0.1372908 0.02107202 -0.02934285 0.1372908 0.02107202 -0.03925039 0.1372908 0.02107202 -0.05087609 0.1372908 0.02107202 -0.06429595 0.1372908 0.02107202 -0.07958143 0.1372908 0.02107202 -0.0968001 0.1372908 0.02107202 -0.1160161 0.1372908 0.02107202 -0.1372908 0.1372908 0.02107202 -0.1606827 0.1372908 0.02107202 -0.1862481 0.1372908 0.02107202 -0.2140411 0.1372908 0.02107202 -0.2441142 0.1372908 0.02107202 -0.2765176 0.1372908 0.02107202 -0.3113005 0.1372908 0.02107202 -0.3485102 0.1372908 0.02107202 -0.388193 0.1372908 0.02107202 -0.4303934 0.1372908 0.02107202 -0.4751555 0.1372908 0.02107202 -0.5225216 0.1372908 0.02107202 -0.5725335 0.1372908 0.02107202 -0.6252316 0.1372908 0.02107202 -0.6806558 0.1372908 0.02107202 -0.7388448 0.1372908 0.02107202 -0.7998369 0.1372908 0.02107202 -0.8636691 0.1372908 0.02107202 -0.9303782 0.1372908 0.02107202 -1 0.1372908 0.02107202 -0 0.1606827 0.02107202 -0.002418731 0.1606827 0.02107202 -0.005155668 0.1606827 0.02107202 -0.009080105 0.1606827 0.02107202 -0.01434988 0.1606827 0.02107202 -0.02107202 0.1606827 0.02107202 -0.02934285 0.1606827 0.02107202 -0.03925039 0.1606827 0.02107202 -0.05087609 0.1606827 0.02107202 -0.06429595 0.1606827 0.02107202 -0.07958143 0.1606827 0.02107202 -0.0968001 0.1606827 0.02107202 -0.1160161 0.1606827 0.02107202 -0.1372908 0.1606827 0.02107202 -0.1606827 0.1606827 0.02107202 -0.1862481 0.1606827 0.02107202 -0.2140411 0.1606827 0.02107202 -0.2441142 0.1606827 0.02107202 -0.2765176 0.1606827 0.02107202 -0.3113005 0.1606827 0.02107202 -0.3485102 0.1606827 0.02107202 -0.388193 0.1606827 0.02107202 -0.4303934 0.1606827 0.02107202 -0.4751555 0.1606827 0.02107202 -0.5225216 0.1606827 0.02107202 -0.5725335 0.1606827 0.02107202 -0.6252316 0.1606827 0.02107202 -0.6806558 0.1606827 0.02107202 -0.7388448 0.1606827 0.02107202 -0.7998369 0.1606827 0.02107202 -0.8636691 0.1606827 0.02107202 -0.9303782 0.1606827 0.02107202 -1 0.1606827 0.02107202 -0 0.1862481 0.02107202 -0.002418731 0.1862481 0.02107202 -0.005155668 0.1862481 0.02107202 -0.009080105 0.1862481 0.02107202 -0.01434988 0.1862481 0.02107202 -0.02107202 0.1862481 0.02107202 -0.02934285 0.1862481 0.02107202 -0.03925039 0.1862481 0.02107202 -0.05087609 0.1862481 0.02107202 -0.06429595 0.1862481 0.02107202 -0.07958143 0.1862481 0.02107202 -0.0968001 0.1862481 0.02107202 -0.1160161 0.1862481 0.02107202 -0.1372908 0.1862481 0.02107202 -0.1606827 0.1862481 0.02107202 -0.1862481 0.1862481 0.02107202 -0.2140411 0.1862481 0.02107202 -0.2441142 0.1862481 0.02107202 -0.2765176 0.1862481 0.02107202 -0.3113005 0.1862481 0.02107202 -0.3485102 0.1862481 0.02107202 -0.388193 0.1862481 0.02107202 -0.4303934 0.1862481 0.02107202 -0.4751555 0.1862481 0.02107202 -0.5225216 0.1862481 0.02107202 -0.5725335 0.1862481 0.02107202 -0.6252316 0.1862481 0.02107202 -0.6806558 0.1862481 0.02107202 -0.7388448 0.1862481 0.02107202 -0.7998369 0.1862481 0.02107202 -0.8636691 0.1862481 0.02107202 -0.9303782 0.1862481 0.02107202 -1 0.1862481 0.02107202 -0 0.2140411 0.02107202 -0.002418731 0.2140411 0.02107202 -0.005155668 0.2140411 0.02107202 -0.009080105 0.2140411 0.02107202 -0.01434988 0.2140411 0.02107202 -0.02107202 0.2140411 0.02107202 -0.02934285 0.2140411 0.02107202 -0.03925039 0.2140411 0.02107202 -0.05087609 0.2140411 0.02107202 -0.06429595 0.2140411 0.02107202 -0.07958143 0.2140411 0.02107202 -0.0968001 0.2140411 0.02107202 -0.1160161 0.2140411 0.02107202 -0.1372908 0.2140411 0.02107202 -0.1606827 0.2140411 0.02107202 -0.1862481 0.2140411 0.02107202 -0.2140411 0.2140411 0.02107202 -0.2441142 0.2140411 0.02107202 -0.2765176 0.2140411 0.02107202 -0.3113005 0.2140411 0.02107202 -0.3485102 0.2140411 0.02107202 -0.388193 0.2140411 0.02107202 -0.4303934 0.2140411 0.02107202 -0.4751555 0.2140411 0.02107202 -0.5225216 0.2140411 0.02107202 -0.5725335 0.2140411 0.02107202 -0.6252316 0.2140411 0.02107202 -0.6806558 0.2140411 0.02107202 -0.7388448 0.2140411 0.02107202 -0.7998369 0.2140411 0.02107202 -0.8636691 0.2140411 0.02107202 -0.9303782 0.2140411 0.02107202 -1 0.2140411 0.02107202 -0 0.2441142 0.02107202 -0.002418731 0.2441142 0.02107202 -0.005155668 0.2441142 0.02107202 -0.009080105 0.2441142 0.02107202 -0.01434988 0.2441142 0.02107202 -0.02107202 0.2441142 0.02107202 -0.02934285 0.2441142 0.02107202 -0.03925039 0.2441142 0.02107202 -0.05087609 0.2441142 0.02107202 -0.06429595 0.2441142 0.02107202 -0.07958143 0.2441142 0.02107202 -0.0968001 0.2441142 0.02107202 -0.1160161 0.2441142 0.02107202 -0.1372908 0.2441142 0.02107202 -0.1606827 0.2441142 0.02107202 -0.1862481 0.2441142 0.02107202 -0.2140411 0.2441142 0.02107202 -0.2441142 0.2441142 0.02107202 -0.2765176 0.2441142 0.02107202 -0.3113005 0.2441142 0.02107202 -0.3485102 0.2441142 0.02107202 -0.388193 0.2441142 0.02107202 -0.4303934 0.2441142 0.02107202 -0.4751555 0.2441142 0.02107202 -0.5225216 0.2441142 0.02107202 -0.5725335 0.2441142 0.02107202 -0.6252316 0.2441142 0.02107202 -0.6806558 0.2441142 0.02107202 -0.7388448 0.2441142 0.02107202 -0.7998369 0.2441142 0.02107202 -0.8636691 0.2441142 0.02107202 -0.9303782 0.2441142 0.02107202 -1 0.2441142 0.02107202 -0 0.2765176 0.02107202 -0.002418731 0.2765176 0.02107202 -0.005155668 0.2765176 0.02107202 -0.009080105 0.2765176 0.02107202 -0.01434988 0.2765176 0.02107202 -0.02107202 0.2765176 0.02107202 -0.02934285 0.2765176 0.02107202 -0.03925039 0.2765176 0.02107202 -0.05087609 0.2765176 0.02107202 -0.06429595 0.2765176 0.02107202 -0.07958143 0.2765176 0.02107202 -0.0968001 0.2765176 0.02107202 -0.1160161 0.2765176 0.02107202 -0.1372908 0.2765176 0.02107202 -0.1606827 0.2765176 0.02107202 -0.1862481 0.2765176 0.02107202 -0.2140411 0.2765176 0.02107202 -0.2441142 0.2765176 0.02107202 -0.2765176 0.2765176 0.02107202 -0.3113005 0.2765176 0.02107202 -0.3485102 0.2765176 0.02107202 -0.388193 0.2765176 0.02107202 -0.4303934 0.2765176 0.02107202 -0.4751555 0.2765176 0.02107202 -0.5225216 0.2765176 0.02107202 -0.5725335 0.2765176 0.02107202 -0.6252316 0.2765176 0.02107202 -0.6806558 0.2765176 0.02107202 -0.7388448 0.2765176 0.02107202 -0.7998369 0.2765176 0.02107202 -0.8636691 0.2765176 0.02107202 -0.9303782 0.2765176 0.02107202 -1 0.2765176 0.02107202 -0 0.3113005 0.02107202 -0.002418731 0.3113005 0.02107202 -0.005155668 0.3113005 0.02107202 -0.009080105 0.3113005 0.02107202 -0.01434988 0.3113005 0.02107202 -0.02107202 0.3113005 0.02107202 -0.02934285 0.3113005 0.02107202 -0.03925039 0.3113005 0.02107202 -0.05087609 0.3113005 0.02107202 -0.06429595 0.3113005 0.02107202 -0.07958143 0.3113005 0.02107202 -0.0968001 0.3113005 0.02107202 -0.1160161 0.3113005 0.02107202 -0.1372908 0.3113005 0.02107202 -0.1606827 0.3113005 0.02107202 -0.1862481 0.3113005 0.02107202 -0.2140411 0.3113005 0.02107202 -0.2441142 0.3113005 0.02107202 -0.2765176 0.3113005 0.02107202 -0.3113005 0.3113005 0.02107202 -0.3485102 0.3113005 0.02107202 -0.388193 0.3113005 0.02107202 -0.4303934 0.3113005 0.02107202 -0.4751555 0.3113005 0.02107202 -0.5225216 0.3113005 0.02107202 -0.5725335 0.3113005 0.02107202 -0.6252316 0.3113005 0.02107202 -0.6806558 0.3113005 0.02107202 -0.7388448 0.3113005 0.02107202 -0.7998369 0.3113005 0.02107202 -0.8636691 0.3113005 0.02107202 -0.9303782 0.3113005 0.02107202 -1 0.3113005 0.02107202 -0 0.3485102 0.02107202 -0.002418731 0.3485102 0.02107202 -0.005155668 0.3485102 0.02107202 -0.009080105 0.3485102 0.02107202 -0.01434988 0.3485102 0.02107202 -0.02107202 0.3485102 0.02107202 -0.02934285 0.3485102 0.02107202 -0.03925039 0.3485102 0.02107202 -0.05087609 0.3485102 0.02107202 -0.06429595 0.3485102 0.02107202 -0.07958143 0.3485102 0.02107202 -0.0968001 0.3485102 0.02107202 -0.1160161 0.3485102 0.02107202 -0.1372908 0.3485102 0.02107202 -0.1606827 0.3485102 0.02107202 -0.1862481 0.3485102 0.02107202 -0.2140411 0.3485102 0.02107202 -0.2441142 0.3485102 0.02107202 -0.2765176 0.3485102 0.02107202 -0.3113005 0.3485102 0.02107202 -0.3485102 0.3485102 0.02107202 -0.388193 0.3485102 0.02107202 -0.4303934 0.3485102 0.02107202 -0.4751555 0.3485102 0.02107202 -0.5225216 0.3485102 0.02107202 -0.5725335 0.3485102 0.02107202 -0.6252316 0.3485102 0.02107202 -0.6806558 0.3485102 0.02107202 -0.7388448 0.3485102 0.02107202 -0.7998369 0.3485102 0.02107202 -0.8636691 0.3485102 0.02107202 -0.9303782 0.3485102 0.02107202 -1 0.3485102 0.02107202 -0 0.388193 0.02107202 -0.002418731 0.388193 0.02107202 -0.005155668 0.388193 0.02107202 -0.009080105 0.388193 0.02107202 -0.01434988 0.388193 0.02107202 -0.02107202 0.388193 0.02107202 -0.02934285 0.388193 0.02107202 -0.03925039 0.388193 0.02107202 -0.05087609 0.388193 0.02107202 -0.06429595 0.388193 0.02107202 -0.07958143 0.388193 0.02107202 -0.0968001 0.388193 0.02107202 -0.1160161 0.388193 0.02107202 -0.1372908 0.388193 0.02107202 -0.1606827 0.388193 0.02107202 -0.1862481 0.388193 0.02107202 -0.2140411 0.388193 0.02107202 -0.2441142 0.388193 0.02107202 -0.2765176 0.388193 0.02107202 -0.3113005 0.388193 0.02107202 -0.3485102 0.388193 0.02107202 -0.388193 0.388193 0.02107202 -0.4303934 0.388193 0.02107202 -0.4751555 0.388193 0.02107202 -0.5225216 0.388193 0.02107202 -0.5725335 0.388193 0.02107202 -0.6252316 0.388193 0.02107202 -0.6806558 0.388193 0.02107202 -0.7388448 0.388193 0.02107202 -0.7998369 0.388193 0.02107202 -0.8636691 0.388193 0.02107202 -0.9303782 0.388193 0.02107202 -1 0.388193 0.02107202 -0 0.4303934 0.02107202 -0.002418731 0.4303934 0.02107202 -0.005155668 0.4303934 0.02107202 -0.009080105 0.4303934 0.02107202 -0.01434988 0.4303934 0.02107202 -0.02107202 0.4303934 0.02107202 -0.02934285 0.4303934 0.02107202 -0.03925039 0.4303934 0.02107202 -0.05087609 0.4303934 0.02107202 -0.06429595 0.4303934 0.02107202 -0.07958143 0.4303934 0.02107202 -0.0968001 0.4303934 0.02107202 -0.1160161 0.4303934 0.02107202 -0.1372908 0.4303934 0.02107202 -0.1606827 0.4303934 0.02107202 -0.1862481 0.4303934 0.02107202 -0.2140411 0.4303934 0.02107202 -0.2441142 0.4303934 0.02107202 -0.2765176 0.4303934 0.02107202 -0.3113005 0.4303934 0.02107202 -0.3485102 0.4303934 0.02107202 -0.388193 0.4303934 0.02107202 -0.4303934 0.4303934 0.02107202 -0.4751555 0.4303934 0.02107202 -0.5225216 0.4303934 0.02107202 -0.5725335 0.4303934 0.02107202 -0.6252316 0.4303934 0.02107202 -0.6806558 0.4303934 0.02107202 -0.7388448 0.4303934 0.02107202 -0.7998369 0.4303934 0.02107202 -0.8636691 0.4303934 0.02107202 -0.9303782 0.4303934 0.02107202 -1 0.4303934 0.02107202 -0 0.4751555 0.02107202 -0.002418731 0.4751555 0.02107202 -0.005155668 0.4751555 0.02107202 -0.009080105 0.4751555 0.02107202 -0.01434988 0.4751555 0.02107202 -0.02107202 0.4751555 0.02107202 -0.02934285 0.4751555 0.02107202 -0.03925039 0.4751555 0.02107202 -0.05087609 0.4751555 0.02107202 -0.06429595 0.4751555 0.02107202 -0.07958143 0.4751555 0.02107202 -0.0968001 0.4751555 0.02107202 -0.1160161 0.4751555 0.02107202 -0.1372908 0.4751555 0.02107202 -0.1606827 0.4751555 0.02107202 -0.1862481 0.4751555 0.02107202 -0.2140411 0.4751555 0.02107202 -0.2441142 0.4751555 0.02107202 -0.2765176 0.4751555 0.02107202 -0.3113005 0.4751555 0.02107202 -0.3485102 0.4751555 0.02107202 -0.388193 0.4751555 0.02107202 -0.4303934 0.4751555 0.02107202 -0.4751555 0.4751555 0.02107202 -0.5225216 0.4751555 0.02107202 -0.5725335 0.4751555 0.02107202 -0.6252316 0.4751555 0.02107202 -0.6806558 0.4751555 0.02107202 -0.7388448 0.4751555 0.02107202 -0.7998369 0.4751555 0.02107202 -0.8636691 0.4751555 0.02107202 -0.9303782 0.4751555 0.02107202 -1 0.4751555 0.02107202 -0 0.5225216 0.02107202 -0.002418731 0.5225216 0.02107202 -0.005155668 0.5225216 0.02107202 -0.009080105 0.5225216 0.02107202 -0.01434988 0.5225216 0.02107202 -0.02107202 0.5225216 0.02107202 -0.02934285 0.5225216 0.02107202 -0.03925039 0.5225216 0.02107202 -0.05087609 0.5225216 0.02107202 -0.06429595 0.5225216 0.02107202 -0.07958143 0.5225216 0.02107202 -0.0968001 0.5225216 0.02107202 -0.1160161 0.5225216 0.02107202 -0.1372908 0.5225216 0.02107202 -0.1606827 0.5225216 0.02107202 -0.1862481 0.5225216 0.02107202 -0.2140411 0.5225216 0.02107202 -0.2441142 0.5225216 0.02107202 -0.2765176 0.5225216 0.02107202 -0.3113005 0.5225216 0.02107202 -0.3485102 0.5225216 0.02107202 -0.388193 0.5225216 0.02107202 -0.4303934 0.5225216 0.02107202 -0.4751555 0.5225216 0.02107202 -0.5225216 0.5225216 0.02107202 -0.5725335 0.5225216 0.02107202 -0.6252316 0.5225216 0.02107202 -0.6806558 0.5225216 0.02107202 -0.7388448 0.5225216 0.02107202 -0.7998369 0.5225216 0.02107202 -0.8636691 0.5225216 0.02107202 -0.9303782 0.5225216 0.02107202 -1 0.5225216 0.02107202 -0 0.5725335 0.02107202 -0.002418731 0.5725335 0.02107202 -0.005155668 0.5725335 0.02107202 -0.009080105 0.5725335 0.02107202 -0.01434988 0.5725335 0.02107202 -0.02107202 0.5725335 0.02107202 -0.02934285 0.5725335 0.02107202 -0.03925039 0.5725335 0.02107202 -0.05087609 0.5725335 0.02107202 -0.06429595 0.5725335 0.02107202 -0.07958143 0.5725335 0.02107202 -0.0968001 0.5725335 0.02107202 -0.1160161 0.5725335 0.02107202 -0.1372908 0.5725335 0.02107202 -0.1606827 0.5725335 0.02107202 -0.1862481 0.5725335 0.02107202 -0.2140411 0.5725335 0.02107202 -0.2441142 0.5725335 0.02107202 -0.2765176 0.5725335 0.02107202 -0.3113005 0.5725335 0.02107202 -0.3485102 0.5725335 0.02107202 -0.388193 0.5725335 0.02107202 -0.4303934 0.5725335 0.02107202 -0.4751555 0.5725335 0.02107202 -0.5225216 0.5725335 0.02107202 -0.5725335 0.5725335 0.02107202 -0.6252316 0.5725335 0.02107202 -0.6806558 0.5725335 0.02107202 -0.7388448 0.5725335 0.02107202 -0.7998369 0.5725335 0.02107202 -0.8636691 0.5725335 0.02107202 -0.9303782 0.5725335 0.02107202 -1 0.5725335 0.02107202 -0 0.6252316 0.02107202 -0.002418731 0.6252316 0.02107202 -0.005155668 0.6252316 0.02107202 -0.009080105 0.6252316 0.02107202 -0.01434988 0.6252316 0.02107202 -0.02107202 0.6252316 0.02107202 -0.02934285 0.6252316 0.02107202 -0.03925039 0.6252316 0.02107202 -0.05087609 0.6252316 0.02107202 -0.06429595 0.6252316 0.02107202 -0.07958143 0.6252316 0.02107202 -0.0968001 0.6252316 0.02107202 -0.1160161 0.6252316 0.02107202 -0.1372908 0.6252316 0.02107202 -0.1606827 0.6252316 0.02107202 -0.1862481 0.6252316 0.02107202 -0.2140411 0.6252316 0.02107202 -0.2441142 0.6252316 0.02107202 -0.2765176 0.6252316 0.02107202 -0.3113005 0.6252316 0.02107202 -0.3485102 0.6252316 0.02107202 -0.388193 0.6252316 0.02107202 -0.4303934 0.6252316 0.02107202 -0.4751555 0.6252316 0.02107202 -0.5225216 0.6252316 0.02107202 -0.5725335 0.6252316 0.02107202 -0.6252316 0.6252316 0.02107202 -0.6806558 0.6252316 0.02107202 -0.7388448 0.6252316 0.02107202 -0.7998369 0.6252316 0.02107202 -0.8636691 0.6252316 0.02107202 -0.9303782 0.6252316 0.02107202 -1 0.6252316 0.02107202 -0 0.6806558 0.02107202 -0.002418731 0.6806558 0.02107202 -0.005155668 0.6806558 0.02107202 -0.009080105 0.6806558 0.02107202 -0.01434988 0.6806558 0.02107202 -0.02107202 0.6806558 0.02107202 -0.02934285 0.6806558 0.02107202 -0.03925039 0.6806558 0.02107202 -0.05087609 0.6806558 0.02107202 -0.06429595 0.6806558 0.02107202 -0.07958143 0.6806558 0.02107202 -0.0968001 0.6806558 0.02107202 -0.1160161 0.6806558 0.02107202 -0.1372908 0.6806558 0.02107202 -0.1606827 0.6806558 0.02107202 -0.1862481 0.6806558 0.02107202 -0.2140411 0.6806558 0.02107202 -0.2441142 0.6806558 0.02107202 -0.2765176 0.6806558 0.02107202 -0.3113005 0.6806558 0.02107202 -0.3485102 0.6806558 0.02107202 -0.388193 0.6806558 0.02107202 -0.4303934 0.6806558 0.02107202 -0.4751555 0.6806558 0.02107202 -0.5225216 0.6806558 0.02107202 -0.5725335 0.6806558 0.02107202 -0.6252316 0.6806558 0.02107202 -0.6806558 0.6806558 0.02107202 -0.7388448 0.6806558 0.02107202 -0.7998369 0.6806558 0.02107202 -0.8636691 0.6806558 0.02107202 -0.9303782 0.6806558 0.02107202 -1 0.6806558 0.02107202 -0 0.7388448 0.02107202 -0.002418731 0.7388448 0.02107202 -0.005155668 0.7388448 0.02107202 -0.009080105 0.7388448 0.02107202 -0.01434988 0.7388448 0.02107202 -0.02107202 0.7388448 0.02107202 -0.02934285 0.7388448 0.02107202 -0.03925039 0.7388448 0.02107202 -0.05087609 0.7388448 0.02107202 -0.06429595 0.7388448 0.02107202 -0.07958143 0.7388448 0.02107202 -0.0968001 0.7388448 0.02107202 -0.1160161 0.7388448 0.02107202 -0.1372908 0.7388448 0.02107202 -0.1606827 0.7388448 0.02107202 -0.1862481 0.7388448 0.02107202 -0.2140411 0.7388448 0.02107202 -0.2441142 0.7388448 0.02107202 -0.2765176 0.7388448 0.02107202 -0.3113005 0.7388448 0.02107202 -0.3485102 0.7388448 0.02107202 -0.388193 0.7388448 0.02107202 -0.4303934 0.7388448 0.02107202 -0.4751555 0.7388448 0.02107202 -0.5225216 0.7388448 0.02107202 -0.5725335 0.7388448 0.02107202 -0.6252316 0.7388448 0.02107202 -0.6806558 0.7388448 0.02107202 -0.7388448 0.7388448 0.02107202 -0.7998369 0.7388448 0.02107202 -0.8636691 0.7388448 0.02107202 -0.9303782 0.7388448 0.02107202 -1 0.7388448 0.02107202 -0 0.7998369 0.02107202 -0.002418731 0.7998369 0.02107202 -0.005155668 0.7998369 0.02107202 -0.009080105 0.7998369 0.02107202 -0.01434988 0.7998369 0.02107202 -0.02107202 0.7998369 0.02107202 -0.02934285 0.7998369 0.02107202 -0.03925039 0.7998369 0.02107202 -0.05087609 0.7998369 0.02107202 -0.06429595 0.7998369 0.02107202 -0.07958143 0.7998369 0.02107202 -0.0968001 0.7998369 0.02107202 -0.1160161 0.7998369 0.02107202 -0.1372908 0.7998369 0.02107202 -0.1606827 0.7998369 0.02107202 -0.1862481 0.7998369 0.02107202 -0.2140411 0.7998369 0.02107202 -0.2441142 0.7998369 0.02107202 -0.2765176 0.7998369 0.02107202 -0.3113005 0.7998369 0.02107202 -0.3485102 0.7998369 0.02107202 -0.388193 0.7998369 0.02107202 -0.4303934 0.7998369 0.02107202 -0.4751555 0.7998369 0.02107202 -0.5225216 0.7998369 0.02107202 -0.5725335 0.7998369 0.02107202 -0.6252316 0.7998369 0.02107202 -0.6806558 0.7998369 0.02107202 -0.7388448 0.7998369 0.02107202 -0.7998369 0.7998369 0.02107202 -0.8636691 0.7998369 0.02107202 -0.9303782 0.7998369 0.02107202 -1 0.7998369 0.02107202 -0 0.8636691 0.02107202 -0.002418731 0.8636691 0.02107202 -0.005155668 0.8636691 0.02107202 -0.009080105 0.8636691 0.02107202 -0.01434988 0.8636691 0.02107202 -0.02107202 0.8636691 0.02107202 -0.02934285 0.8636691 0.02107202 -0.03925039 0.8636691 0.02107202 -0.05087609 0.8636691 0.02107202 -0.06429595 0.8636691 0.02107202 -0.07958143 0.8636691 0.02107202 -0.0968001 0.8636691 0.02107202 -0.1160161 0.8636691 0.02107202 -0.1372908 0.8636691 0.02107202 -0.1606827 0.8636691 0.02107202 -0.1862481 0.8636691 0.02107202 -0.2140411 0.8636691 0.02107202 -0.2441142 0.8636691 0.02107202 -0.2765176 0.8636691 0.02107202 -0.3113005 0.8636691 0.02107202 -0.3485102 0.8636691 0.02107202 -0.388193 0.8636691 0.02107202 -0.4303934 0.8636691 0.02107202 -0.4751555 0.8636691 0.02107202 -0.5225216 0.8636691 0.02107202 -0.5725335 0.8636691 0.02107202 -0.6252316 0.8636691 0.02107202 -0.6806558 0.8636691 0.02107202 -0.7388448 0.8636691 0.02107202 -0.7998369 0.8636691 0.02107202 -0.8636691 0.8636691 0.02107202 -0.9303782 0.8636691 0.02107202 -1 0.8636691 0.02107202 -0 0.9303782 0.02107202 -0.002418731 0.9303782 0.02107202 -0.005155668 0.9303782 0.02107202 -0.009080105 0.9303782 0.02107202 -0.01434988 0.9303782 0.02107202 -0.02107202 0.9303782 0.02107202 -0.02934285 0.9303782 0.02107202 -0.03925039 0.9303782 0.02107202 -0.05087609 0.9303782 0.02107202 -0.06429595 0.9303782 0.02107202 -0.07958143 0.9303782 0.02107202 -0.0968001 0.9303782 0.02107202 -0.1160161 0.9303782 0.02107202 -0.1372908 0.9303782 0.02107202 -0.1606827 0.9303782 0.02107202 -0.1862481 0.9303782 0.02107202 -0.2140411 0.9303782 0.02107202 -0.2441142 0.9303782 0.02107202 -0.2765176 0.9303782 0.02107202 -0.3113005 0.9303782 0.02107202 -0.3485102 0.9303782 0.02107202 -0.388193 0.9303782 0.02107202 -0.4303934 0.9303782 0.02107202 -0.4751555 0.9303782 0.02107202 -0.5225216 0.9303782 0.02107202 -0.5725335 0.9303782 0.02107202 -0.6252316 0.9303782 0.02107202 -0.6806558 0.9303782 0.02107202 -0.7388448 0.9303782 0.02107202 -0.7998369 0.9303782 0.02107202 -0.8636691 0.9303782 0.02107202 -0.9303782 0.9303782 0.02107202 -1 0.9303782 0.02107202 -0 1 0.02107202 -0.002418731 1 0.02107202 -0.005155668 1 0.02107202 -0.009080105 1 0.02107202 -0.01434988 1 0.02107202 -0.02107202 1 0.02107202 -0.02934285 1 0.02107202 -0.03925039 1 0.02107202 -0.05087609 1 0.02107202 -0.06429595 1 0.02107202 -0.07958143 1 0.02107202 -0.0968001 1 0.02107202 -0.1160161 1 0.02107202 -0.1372908 1 0.02107202 -0.1606827 1 0.02107202 -0.1862481 1 0.02107202 -0.2140411 1 0.02107202 -0.2441142 1 0.02107202 -0.2765176 1 0.02107202 -0.3113005 1 0.02107202 -0.3485102 1 0.02107202 -0.388193 1 0.02107202 -0.4303934 1 0.02107202 -0.4751555 1 0.02107202 -0.5225216 1 0.02107202 -0.5725335 1 0.02107202 -0.6252316 1 0.02107202 -0.6806558 1 0.02107202 -0.7388448 1 0.02107202 -0.7998369 1 0.02107202 -0.8636691 1 0.02107202 -0.9303782 1 0.02107202 -1 1 0.02107202 -0 0 0.02934285 -0.002418731 0 0.02934285 -0.005155668 0 0.02934285 -0.009080105 0 0.02934285 -0.01434988 0 0.02934285 -0.02107202 0 0.02934285 -0.02934285 0 0.02934285 -0.03925039 0 0.02934285 -0.05087609 0 0.02934285 -0.06429595 0 0.02934285 -0.07958143 0 0.02934285 -0.0968001 0 0.02934285 -0.1160161 0 0.02934285 -0.1372908 0 0.02934285 -0.1606827 0 0.02934285 -0.1862481 0 0.02934285 -0.2140411 0 0.02934285 -0.2441142 0 0.02934285 -0.2765176 0 0.02934285 -0.3113005 0 0.02934285 -0.3485102 0 0.02934285 -0.388193 0 0.02934285 -0.4303934 0 0.02934285 -0.4751555 0 0.02934285 -0.5225216 0 0.02934285 -0.5725335 0 0.02934285 -0.6252316 0 0.02934285 -0.6806558 0 0.02934285 -0.7388448 0 0.02934285 -0.7998369 0 0.02934285 -0.8636691 0 0.02934285 -0.9303782 0 0.02934285 -1 0 0.02934285 -0 0.002418731 0.02934285 -0.002418731 0.002418731 0.02934285 -0.005155668 0.002418731 0.02934285 -0.009080105 0.002418731 0.02934285 -0.01434988 0.002418731 0.02934285 -0.02107202 0.002418731 0.02934285 -0.02934285 0.002418731 0.02934285 -0.03925039 0.002418731 0.02934285 -0.05087609 0.002418731 0.02934285 -0.06429595 0.002418731 0.02934285 -0.07958143 0.002418731 0.02934285 -0.0968001 0.002418731 0.02934285 -0.1160161 0.002418731 0.02934285 -0.1372908 0.002418731 0.02934285 -0.1606827 0.002418731 0.02934285 -0.1862481 0.002418731 0.02934285 -0.2140411 0.002418731 0.02934285 -0.2441142 0.002418731 0.02934285 -0.2765176 0.002418731 0.02934285 -0.3113005 0.002418731 0.02934285 -0.3485102 0.002418731 0.02934285 -0.388193 0.002418731 0.02934285 -0.4303934 0.002418731 0.02934285 -0.4751555 0.002418731 0.02934285 -0.5225216 0.002418731 0.02934285 -0.5725335 0.002418731 0.02934285 -0.6252316 0.002418731 0.02934285 -0.6806558 0.002418731 0.02934285 -0.7388448 0.002418731 0.02934285 -0.7998369 0.002418731 0.02934285 -0.8636691 0.002418731 0.02934285 -0.9303782 0.002418731 0.02934285 -1 0.002418731 0.02934285 -0 0.005155668 0.02934285 -0.002418731 0.005155668 0.02934285 -0.005155668 0.005155668 0.02934285 -0.009080105 0.005155668 0.02934285 -0.01434988 0.005155668 0.02934285 -0.02107202 0.005155668 0.02934285 -0.02934285 0.005155668 0.02934285 -0.03925039 0.005155668 0.02934285 -0.05087609 0.005155668 0.02934285 -0.06429595 0.005155668 0.02934285 -0.07958143 0.005155668 0.02934285 -0.0968001 0.005155668 0.02934285 -0.1160161 0.005155668 0.02934285 -0.1372908 0.005155668 0.02934285 -0.1606827 0.005155668 0.02934285 -0.1862481 0.005155668 0.02934285 -0.2140411 0.005155668 0.02934285 -0.2441142 0.005155668 0.02934285 -0.2765176 0.005155668 0.02934285 -0.3113005 0.005155668 0.02934285 -0.3485102 0.005155668 0.02934285 -0.388193 0.005155668 0.02934285 -0.4303934 0.005155668 0.02934285 -0.4751555 0.005155668 0.02934285 -0.5225216 0.005155668 0.02934285 -0.5725335 0.005155668 0.02934285 -0.6252316 0.005155668 0.02934285 -0.6806558 0.005155668 0.02934285 -0.7388448 0.005155668 0.02934285 -0.7998369 0.005155668 0.02934285 -0.8636691 0.005155668 0.02934285 -0.9303782 0.005155668 0.02934285 -1 0.005155668 0.02934285 -0 0.009080105 0.02934285 -0.002418731 0.009080105 0.02934285 -0.005155668 0.009080105 0.02934285 -0.009080105 0.009080105 0.02934285 -0.01434988 0.009080105 0.02934285 -0.02107202 0.009080105 0.02934285 -0.02934285 0.009080105 0.02934285 -0.03925039 0.009080105 0.02934285 -0.05087609 0.009080105 0.02934285 -0.06429595 0.009080105 0.02934285 -0.07958143 0.009080105 0.02934285 -0.0968001 0.009080105 0.02934285 -0.1160161 0.009080105 0.02934285 -0.1372908 0.009080105 0.02934285 -0.1606827 0.009080105 0.02934285 -0.1862481 0.009080105 0.02934285 -0.2140411 0.009080105 0.02934285 -0.2441142 0.009080105 0.02934285 -0.2765176 0.009080105 0.02934285 -0.3113005 0.009080105 0.02934285 -0.3485102 0.009080105 0.02934285 -0.388193 0.009080105 0.02934285 -0.4303934 0.009080105 0.02934285 -0.4751555 0.009080105 0.02934285 -0.5225216 0.009080105 0.02934285 -0.5725335 0.009080105 0.02934285 -0.6252316 0.009080105 0.02934285 -0.6806558 0.009080105 0.02934285 -0.7388448 0.009080105 0.02934285 -0.7998369 0.009080105 0.02934285 -0.8636691 0.009080105 0.02934285 -0.9303782 0.009080105 0.02934285 -1 0.009080105 0.02934285 -0 0.01434988 0.02934285 -0.002418731 0.01434988 0.02934285 -0.005155668 0.01434988 0.02934285 -0.009080105 0.01434988 0.02934285 -0.01434988 0.01434988 0.02934285 -0.02107202 0.01434988 0.02934285 -0.02934285 0.01434988 0.02934285 -0.03925039 0.01434988 0.02934285 -0.05087609 0.01434988 0.02934285 -0.06429595 0.01434988 0.02934285 -0.07958143 0.01434988 0.02934285 -0.0968001 0.01434988 0.02934285 -0.1160161 0.01434988 0.02934285 -0.1372908 0.01434988 0.02934285 -0.1606827 0.01434988 0.02934285 -0.1862481 0.01434988 0.02934285 -0.2140411 0.01434988 0.02934285 -0.2441142 0.01434988 0.02934285 -0.2765176 0.01434988 0.02934285 -0.3113005 0.01434988 0.02934285 -0.3485102 0.01434988 0.02934285 -0.388193 0.01434988 0.02934285 -0.4303934 0.01434988 0.02934285 -0.4751555 0.01434988 0.02934285 -0.5225216 0.01434988 0.02934285 -0.5725335 0.01434988 0.02934285 -0.6252316 0.01434988 0.02934285 -0.6806558 0.01434988 0.02934285 -0.7388448 0.01434988 0.02934285 -0.7998369 0.01434988 0.02934285 -0.8636691 0.01434988 0.02934285 -0.9303782 0.01434988 0.02934285 -1 0.01434988 0.02934285 -0 0.02107202 0.02934285 -0.002418731 0.02107202 0.02934285 -0.005155668 0.02107202 0.02934285 -0.009080105 0.02107202 0.02934285 -0.01434988 0.02107202 0.02934285 -0.02107202 0.02107202 0.02934285 -0.02934285 0.02107202 0.02934285 -0.03925039 0.02107202 0.02934285 -0.05087609 0.02107202 0.02934285 -0.06429595 0.02107202 0.02934285 -0.07958143 0.02107202 0.02934285 -0.0968001 0.02107202 0.02934285 -0.1160161 0.02107202 0.02934285 -0.1372908 0.02107202 0.02934285 -0.1606827 0.02107202 0.02934285 -0.1862481 0.02107202 0.02934285 -0.2140411 0.02107202 0.02934285 -0.2441142 0.02107202 0.02934285 -0.2765176 0.02107202 0.02934285 -0.3113005 0.02107202 0.02934285 -0.3485102 0.02107202 0.02934285 -0.388193 0.02107202 0.02934285 -0.4303934 0.02107202 0.02934285 -0.4751555 0.02107202 0.02934285 -0.5225216 0.02107202 0.02934285 -0.5725335 0.02107202 0.02934285 -0.6252316 0.02107202 0.02934285 -0.6806558 0.02107202 0.02934285 -0.7388448 0.02107202 0.02934285 -0.7998369 0.02107202 0.02934285 -0.8636691 0.02107202 0.02934285 -0.9303782 0.02107202 0.02934285 -1 0.02107202 0.02934285 -0 0.02934285 0.02934285 -0.002418731 0.02934285 0.02934285 -0.005155668 0.02934285 0.02934285 -0.009080105 0.02934285 0.02934285 -0.01434988 0.02934285 0.02934285 -0.02107202 0.02934285 0.02934285 -0.02934285 0.02934285 0.02934285 -0.03925039 0.02934285 0.02934285 -0.05087609 0.02934285 0.02934285 -0.06429595 0.02934285 0.02934285 -0.07958143 0.02934285 0.02934285 -0.0968001 0.02934285 0.02934285 -0.1160161 0.02934285 0.02934285 -0.1372908 0.02934285 0.02934285 -0.1606827 0.02934285 0.02934285 -0.1862481 0.02934285 0.02934285 -0.2140411 0.02934285 0.02934285 -0.2441142 0.02934285 0.02934285 -0.2765176 0.02934285 0.02934285 -0.3113005 0.02934285 0.02934285 -0.3485102 0.02934285 0.02934285 -0.388193 0.02934285 0.02934285 -0.4303934 0.02934285 0.02934285 -0.4751555 0.02934285 0.02934285 -0.5225216 0.02934285 0.02934285 -0.5725335 0.02934285 0.02934285 -0.6252316 0.02934285 0.02934285 -0.6806558 0.02934285 0.02934285 -0.7388448 0.02934285 0.02934285 -0.7998369 0.02934285 0.02934285 -0.8636691 0.02934285 0.02934285 -0.9303782 0.02934285 0.02934285 -1 0.02934285 0.02934285 -0 0.03925039 0.02934285 -0.002418731 0.03925039 0.02934285 -0.005155668 0.03925039 0.02934285 -0.009080105 0.03925039 0.02934285 -0.01434988 0.03925039 0.02934285 -0.02107202 0.03925039 0.02934285 -0.02934285 0.03925039 0.02934285 -0.03925039 0.03925039 0.02934285 -0.05087609 0.03925039 0.02934285 -0.06429595 0.03925039 0.02934285 -0.07958143 0.03925039 0.02934285 -0.0968001 0.03925039 0.02934285 -0.1160161 0.03925039 0.02934285 -0.1372908 0.03925039 0.02934285 -0.1606827 0.03925039 0.02934285 -0.1862481 0.03925039 0.02934285 -0.2140411 0.03925039 0.02934285 -0.2441142 0.03925039 0.02934285 -0.2765176 0.03925039 0.02934285 -0.3113005 0.03925039 0.02934285 -0.3485102 0.03925039 0.02934285 -0.388193 0.03925039 0.02934285 -0.4303934 0.03925039 0.02934285 -0.4751555 0.03925039 0.02934285 -0.5225216 0.03925039 0.02934285 -0.5725335 0.03925039 0.02934285 -0.6252316 0.03925039 0.02934285 -0.6806558 0.03925039 0.02934285 -0.7388448 0.03925039 0.02934285 -0.7998369 0.03925039 0.02934285 -0.8636691 0.03925039 0.02934285 -0.9303782 0.03925039 0.02934285 -1 0.03925039 0.02934285 -0 0.05087609 0.02934285 -0.002418731 0.05087609 0.02934285 -0.005155668 0.05087609 0.02934285 -0.009080105 0.05087609 0.02934285 -0.01434988 0.05087609 0.02934285 -0.02107202 0.05087609 0.02934285 -0.02934285 0.05087609 0.02934285 -0.03925039 0.05087609 0.02934285 -0.05087609 0.05087609 0.02934285 -0.06429595 0.05087609 0.02934285 -0.07958143 0.05087609 0.02934285 -0.0968001 0.05087609 0.02934285 -0.1160161 0.05087609 0.02934285 -0.1372908 0.05087609 0.02934285 -0.1606827 0.05087609 0.02934285 -0.1862481 0.05087609 0.02934285 -0.2140411 0.05087609 0.02934285 -0.2441142 0.05087609 0.02934285 -0.2765176 0.05087609 0.02934285 -0.3113005 0.05087609 0.02934285 -0.3485102 0.05087609 0.02934285 -0.388193 0.05087609 0.02934285 -0.4303934 0.05087609 0.02934285 -0.4751555 0.05087609 0.02934285 -0.5225216 0.05087609 0.02934285 -0.5725335 0.05087609 0.02934285 -0.6252316 0.05087609 0.02934285 -0.6806558 0.05087609 0.02934285 -0.7388448 0.05087609 0.02934285 -0.7998369 0.05087609 0.02934285 -0.8636691 0.05087609 0.02934285 -0.9303782 0.05087609 0.02934285 -1 0.05087609 0.02934285 -0 0.06429595 0.02934285 -0.002418731 0.06429595 0.02934285 -0.005155668 0.06429595 0.02934285 -0.009080105 0.06429595 0.02934285 -0.01434988 0.06429595 0.02934285 -0.02107202 0.06429595 0.02934285 -0.02934285 0.06429595 0.02934285 -0.03925039 0.06429595 0.02934285 -0.05087609 0.06429595 0.02934285 -0.06429595 0.06429595 0.02934285 -0.07958143 0.06429595 0.02934285 -0.0968001 0.06429595 0.02934285 -0.1160161 0.06429595 0.02934285 -0.1372908 0.06429595 0.02934285 -0.1606827 0.06429595 0.02934285 -0.1862481 0.06429595 0.02934285 -0.2140411 0.06429595 0.02934285 -0.2441142 0.06429595 0.02934285 -0.2765176 0.06429595 0.02934285 -0.3113005 0.06429595 0.02934285 -0.3485102 0.06429595 0.02934285 -0.388193 0.06429595 0.02934285 -0.4303934 0.06429595 0.02934285 -0.4751555 0.06429595 0.02934285 -0.5225216 0.06429595 0.02934285 -0.5725335 0.06429595 0.02934285 -0.6252316 0.06429595 0.02934285 -0.6806558 0.06429595 0.02934285 -0.7388448 0.06429595 0.02934285 -0.7998369 0.06429595 0.02934285 -0.8636691 0.06429595 0.02934285 -0.9303782 0.06429595 0.02934285 -1 0.06429595 0.02934285 -0 0.07958143 0.02934285 -0.002418731 0.07958143 0.02934285 -0.005155668 0.07958143 0.02934285 -0.009080105 0.07958143 0.02934285 -0.01434988 0.07958143 0.02934285 -0.02107202 0.07958143 0.02934285 -0.02934285 0.07958143 0.02934285 -0.03925039 0.07958143 0.02934285 -0.05087609 0.07958143 0.02934285 -0.06429595 0.07958143 0.02934285 -0.07958143 0.07958143 0.02934285 -0.0968001 0.07958143 0.02934285 -0.1160161 0.07958143 0.02934285 -0.1372908 0.07958143 0.02934285 -0.1606827 0.07958143 0.02934285 -0.1862481 0.07958143 0.02934285 -0.2140411 0.07958143 0.02934285 -0.2441142 0.07958143 0.02934285 -0.2765176 0.07958143 0.02934285 -0.3113005 0.07958143 0.02934285 -0.3485102 0.07958143 0.02934285 -0.388193 0.07958143 0.02934285 -0.4303934 0.07958143 0.02934285 -0.4751555 0.07958143 0.02934285 -0.5225216 0.07958143 0.02934285 -0.5725335 0.07958143 0.02934285 -0.6252316 0.07958143 0.02934285 -0.6806558 0.07958143 0.02934285 -0.7388448 0.07958143 0.02934285 -0.7998369 0.07958143 0.02934285 -0.8636691 0.07958143 0.02934285 -0.9303782 0.07958143 0.02934285 -1 0.07958143 0.02934285 -0 0.0968001 0.02934285 -0.002418731 0.0968001 0.02934285 -0.005155668 0.0968001 0.02934285 -0.009080105 0.0968001 0.02934285 -0.01434988 0.0968001 0.02934285 -0.02107202 0.0968001 0.02934285 -0.02934285 0.0968001 0.02934285 -0.03925039 0.0968001 0.02934285 -0.05087609 0.0968001 0.02934285 -0.06429595 0.0968001 0.02934285 -0.07958143 0.0968001 0.02934285 -0.0968001 0.0968001 0.02934285 -0.1160161 0.0968001 0.02934285 -0.1372908 0.0968001 0.02934285 -0.1606827 0.0968001 0.02934285 -0.1862481 0.0968001 0.02934285 -0.2140411 0.0968001 0.02934285 -0.2441142 0.0968001 0.02934285 -0.2765176 0.0968001 0.02934285 -0.3113005 0.0968001 0.02934285 -0.3485102 0.0968001 0.02934285 -0.388193 0.0968001 0.02934285 -0.4303934 0.0968001 0.02934285 -0.4751555 0.0968001 0.02934285 -0.5225216 0.0968001 0.02934285 -0.5725335 0.0968001 0.02934285 -0.6252316 0.0968001 0.02934285 -0.6806558 0.0968001 0.02934285 -0.7388448 0.0968001 0.02934285 -0.7998369 0.0968001 0.02934285 -0.8636691 0.0968001 0.02934285 -0.9303782 0.0968001 0.02934285 -1 0.0968001 0.02934285 -0 0.1160161 0.02934285 -0.002418731 0.1160161 0.02934285 -0.005155668 0.1160161 0.02934285 -0.009080105 0.1160161 0.02934285 -0.01434988 0.1160161 0.02934285 -0.02107202 0.1160161 0.02934285 -0.02934285 0.1160161 0.02934285 -0.03925039 0.1160161 0.02934285 -0.05087609 0.1160161 0.02934285 -0.06429595 0.1160161 0.02934285 -0.07958143 0.1160161 0.02934285 -0.0968001 0.1160161 0.02934285 -0.1160161 0.1160161 0.02934285 -0.1372908 0.1160161 0.02934285 -0.1606827 0.1160161 0.02934285 -0.1862481 0.1160161 0.02934285 -0.2140411 0.1160161 0.02934285 -0.2441142 0.1160161 0.02934285 -0.2765176 0.1160161 0.02934285 -0.3113005 0.1160161 0.02934285 -0.3485102 0.1160161 0.02934285 -0.388193 0.1160161 0.02934285 -0.4303934 0.1160161 0.02934285 -0.4751555 0.1160161 0.02934285 -0.5225216 0.1160161 0.02934285 -0.5725335 0.1160161 0.02934285 -0.6252316 0.1160161 0.02934285 -0.6806558 0.1160161 0.02934285 -0.7388448 0.1160161 0.02934285 -0.7998369 0.1160161 0.02934285 -0.8636691 0.1160161 0.02934285 -0.9303782 0.1160161 0.02934285 -1 0.1160161 0.02934285 -0 0.1372908 0.02934285 -0.002418731 0.1372908 0.02934285 -0.005155668 0.1372908 0.02934285 -0.009080105 0.1372908 0.02934285 -0.01434988 0.1372908 0.02934285 -0.02107202 0.1372908 0.02934285 -0.02934285 0.1372908 0.02934285 -0.03925039 0.1372908 0.02934285 -0.05087609 0.1372908 0.02934285 -0.06429595 0.1372908 0.02934285 -0.07958143 0.1372908 0.02934285 -0.0968001 0.1372908 0.02934285 -0.1160161 0.1372908 0.02934285 -0.1372908 0.1372908 0.02934285 -0.1606827 0.1372908 0.02934285 -0.1862481 0.1372908 0.02934285 -0.2140411 0.1372908 0.02934285 -0.2441142 0.1372908 0.02934285 -0.2765176 0.1372908 0.02934285 -0.3113005 0.1372908 0.02934285 -0.3485102 0.1372908 0.02934285 -0.388193 0.1372908 0.02934285 -0.4303934 0.1372908 0.02934285 -0.4751555 0.1372908 0.02934285 -0.5225216 0.1372908 0.02934285 -0.5725335 0.1372908 0.02934285 -0.6252316 0.1372908 0.02934285 -0.6806558 0.1372908 0.02934285 -0.7388448 0.1372908 0.02934285 -0.7998369 0.1372908 0.02934285 -0.8636691 0.1372908 0.02934285 -0.9303782 0.1372908 0.02934285 -1 0.1372908 0.02934285 -0 0.1606827 0.02934285 -0.002418731 0.1606827 0.02934285 -0.005155668 0.1606827 0.02934285 -0.009080105 0.1606827 0.02934285 -0.01434988 0.1606827 0.02934285 -0.02107202 0.1606827 0.02934285 -0.02934285 0.1606827 0.02934285 -0.03925039 0.1606827 0.02934285 -0.05087609 0.1606827 0.02934285 -0.06429595 0.1606827 0.02934285 -0.07958143 0.1606827 0.02934285 -0.0968001 0.1606827 0.02934285 -0.1160161 0.1606827 0.02934285 -0.1372908 0.1606827 0.02934285 -0.1606827 0.1606827 0.02934285 -0.1862481 0.1606827 0.02934285 -0.2140411 0.1606827 0.02934285 -0.2441142 0.1606827 0.02934285 -0.2765176 0.1606827 0.02934285 -0.3113005 0.1606827 0.02934285 -0.3485102 0.1606827 0.02934285 -0.388193 0.1606827 0.02934285 -0.4303934 0.1606827 0.02934285 -0.4751555 0.1606827 0.02934285 -0.5225216 0.1606827 0.02934285 -0.5725335 0.1606827 0.02934285 -0.6252316 0.1606827 0.02934285 -0.6806558 0.1606827 0.02934285 -0.7388448 0.1606827 0.02934285 -0.7998369 0.1606827 0.02934285 -0.8636691 0.1606827 0.02934285 -0.9303782 0.1606827 0.02934285 -1 0.1606827 0.02934285 -0 0.1862481 0.02934285 -0.002418731 0.1862481 0.02934285 -0.005155668 0.1862481 0.02934285 -0.009080105 0.1862481 0.02934285 -0.01434988 0.1862481 0.02934285 -0.02107202 0.1862481 0.02934285 -0.02934285 0.1862481 0.02934285 -0.03925039 0.1862481 0.02934285 -0.05087609 0.1862481 0.02934285 -0.06429595 0.1862481 0.02934285 -0.07958143 0.1862481 0.02934285 -0.0968001 0.1862481 0.02934285 -0.1160161 0.1862481 0.02934285 -0.1372908 0.1862481 0.02934285 -0.1606827 0.1862481 0.02934285 -0.1862481 0.1862481 0.02934285 -0.2140411 0.1862481 0.02934285 -0.2441142 0.1862481 0.02934285 -0.2765176 0.1862481 0.02934285 -0.3113005 0.1862481 0.02934285 -0.3485102 0.1862481 0.02934285 -0.388193 0.1862481 0.02934285 -0.4303934 0.1862481 0.02934285 -0.4751555 0.1862481 0.02934285 -0.5225216 0.1862481 0.02934285 -0.5725335 0.1862481 0.02934285 -0.6252316 0.1862481 0.02934285 -0.6806558 0.1862481 0.02934285 -0.7388448 0.1862481 0.02934285 -0.7998369 0.1862481 0.02934285 -0.8636691 0.1862481 0.02934285 -0.9303782 0.1862481 0.02934285 -1 0.1862481 0.02934285 -0 0.2140411 0.02934285 -0.002418731 0.2140411 0.02934285 -0.005155668 0.2140411 0.02934285 -0.009080105 0.2140411 0.02934285 -0.01434988 0.2140411 0.02934285 -0.02107202 0.2140411 0.02934285 -0.02934285 0.2140411 0.02934285 -0.03925039 0.2140411 0.02934285 -0.05087609 0.2140411 0.02934285 -0.06429595 0.2140411 0.02934285 -0.07958143 0.2140411 0.02934285 -0.0968001 0.2140411 0.02934285 -0.1160161 0.2140411 0.02934285 -0.1372908 0.2140411 0.02934285 -0.1606827 0.2140411 0.02934285 -0.1862481 0.2140411 0.02934285 -0.2140411 0.2140411 0.02934285 -0.2441142 0.2140411 0.02934285 -0.2765176 0.2140411 0.02934285 -0.3113005 0.2140411 0.02934285 -0.3485102 0.2140411 0.02934285 -0.388193 0.2140411 0.02934285 -0.4303934 0.2140411 0.02934285 -0.4751555 0.2140411 0.02934285 -0.5225216 0.2140411 0.02934285 -0.5725335 0.2140411 0.02934285 -0.6252316 0.2140411 0.02934285 -0.6806558 0.2140411 0.02934285 -0.7388448 0.2140411 0.02934285 -0.7998369 0.2140411 0.02934285 -0.8636691 0.2140411 0.02934285 -0.9303782 0.2140411 0.02934285 -1 0.2140411 0.02934285 -0 0.2441142 0.02934285 -0.002418731 0.2441142 0.02934285 -0.005155668 0.2441142 0.02934285 -0.009080105 0.2441142 0.02934285 -0.01434988 0.2441142 0.02934285 -0.02107202 0.2441142 0.02934285 -0.02934285 0.2441142 0.02934285 -0.03925039 0.2441142 0.02934285 -0.05087609 0.2441142 0.02934285 -0.06429595 0.2441142 0.02934285 -0.07958143 0.2441142 0.02934285 -0.0968001 0.2441142 0.02934285 -0.1160161 0.2441142 0.02934285 -0.1372908 0.2441142 0.02934285 -0.1606827 0.2441142 0.02934285 -0.1862481 0.2441142 0.02934285 -0.2140411 0.2441142 0.02934285 -0.2441142 0.2441142 0.02934285 -0.2765176 0.2441142 0.02934285 -0.3113005 0.2441142 0.02934285 -0.3485102 0.2441142 0.02934285 -0.388193 0.2441142 0.02934285 -0.4303934 0.2441142 0.02934285 -0.4751555 0.2441142 0.02934285 -0.5225216 0.2441142 0.02934285 -0.5725335 0.2441142 0.02934285 -0.6252316 0.2441142 0.02934285 -0.6806558 0.2441142 0.02934285 -0.7388448 0.2441142 0.02934285 -0.7998369 0.2441142 0.02934285 -0.8636691 0.2441142 0.02934285 -0.9303782 0.2441142 0.02934285 -1 0.2441142 0.02934285 -0 0.2765176 0.02934285 -0.002418731 0.2765176 0.02934285 -0.005155668 0.2765176 0.02934285 -0.009080105 0.2765176 0.02934285 -0.01434988 0.2765176 0.02934285 -0.02107202 0.2765176 0.02934285 -0.02934285 0.2765176 0.02934285 -0.03925039 0.2765176 0.02934285 -0.05087609 0.2765176 0.02934285 -0.06429595 0.2765176 0.02934285 -0.07958143 0.2765176 0.02934285 -0.0968001 0.2765176 0.02934285 -0.1160161 0.2765176 0.02934285 -0.1372908 0.2765176 0.02934285 -0.1606827 0.2765176 0.02934285 -0.1862481 0.2765176 0.02934285 -0.2140411 0.2765176 0.02934285 -0.2441142 0.2765176 0.02934285 -0.2765176 0.2765176 0.02934285 -0.3113005 0.2765176 0.02934285 -0.3485102 0.2765176 0.02934285 -0.388193 0.2765176 0.02934285 -0.4303934 0.2765176 0.02934285 -0.4751555 0.2765176 0.02934285 -0.5225216 0.2765176 0.02934285 -0.5725335 0.2765176 0.02934285 -0.6252316 0.2765176 0.02934285 -0.6806558 0.2765176 0.02934285 -0.7388448 0.2765176 0.02934285 -0.7998369 0.2765176 0.02934285 -0.8636691 0.2765176 0.02934285 -0.9303782 0.2765176 0.02934285 -1 0.2765176 0.02934285 -0 0.3113005 0.02934285 -0.002418731 0.3113005 0.02934285 -0.005155668 0.3113005 0.02934285 -0.009080105 0.3113005 0.02934285 -0.01434988 0.3113005 0.02934285 -0.02107202 0.3113005 0.02934285 -0.02934285 0.3113005 0.02934285 -0.03925039 0.3113005 0.02934285 -0.05087609 0.3113005 0.02934285 -0.06429595 0.3113005 0.02934285 -0.07958143 0.3113005 0.02934285 -0.0968001 0.3113005 0.02934285 -0.1160161 0.3113005 0.02934285 -0.1372908 0.3113005 0.02934285 -0.1606827 0.3113005 0.02934285 -0.1862481 0.3113005 0.02934285 -0.2140411 0.3113005 0.02934285 -0.2441142 0.3113005 0.02934285 -0.2765176 0.3113005 0.02934285 -0.3113005 0.3113005 0.02934285 -0.3485102 0.3113005 0.02934285 -0.388193 0.3113005 0.02934285 -0.4303934 0.3113005 0.02934285 -0.4751555 0.3113005 0.02934285 -0.5225216 0.3113005 0.02934285 -0.5725335 0.3113005 0.02934285 -0.6252316 0.3113005 0.02934285 -0.6806558 0.3113005 0.02934285 -0.7388448 0.3113005 0.02934285 -0.7998369 0.3113005 0.02934285 -0.8636691 0.3113005 0.02934285 -0.9303782 0.3113005 0.02934285 -1 0.3113005 0.02934285 -0 0.3485102 0.02934285 -0.002418731 0.3485102 0.02934285 -0.005155668 0.3485102 0.02934285 -0.009080105 0.3485102 0.02934285 -0.01434988 0.3485102 0.02934285 -0.02107202 0.3485102 0.02934285 -0.02934285 0.3485102 0.02934285 -0.03925039 0.3485102 0.02934285 -0.05087609 0.3485102 0.02934285 -0.06429595 0.3485102 0.02934285 -0.07958143 0.3485102 0.02934285 -0.0968001 0.3485102 0.02934285 -0.1160161 0.3485102 0.02934285 -0.1372908 0.3485102 0.02934285 -0.1606827 0.3485102 0.02934285 -0.1862481 0.3485102 0.02934285 -0.2140411 0.3485102 0.02934285 -0.2441142 0.3485102 0.02934285 -0.2765176 0.3485102 0.02934285 -0.3113005 0.3485102 0.02934285 -0.3485102 0.3485102 0.02934285 -0.388193 0.3485102 0.02934285 -0.4303934 0.3485102 0.02934285 -0.4751555 0.3485102 0.02934285 -0.5225216 0.3485102 0.02934285 -0.5725335 0.3485102 0.02934285 -0.6252316 0.3485102 0.02934285 -0.6806558 0.3485102 0.02934285 -0.7388448 0.3485102 0.02934285 -0.7998369 0.3485102 0.02934285 -0.8636691 0.3485102 0.02934285 -0.9303782 0.3485102 0.02934285 -1 0.3485102 0.02934285 -0 0.388193 0.02934285 -0.002418731 0.388193 0.02934285 -0.005155668 0.388193 0.02934285 -0.009080105 0.388193 0.02934285 -0.01434988 0.388193 0.02934285 -0.02107202 0.388193 0.02934285 -0.02934285 0.388193 0.02934285 -0.03925039 0.388193 0.02934285 -0.05087609 0.388193 0.02934285 -0.06429595 0.388193 0.02934285 -0.07958143 0.388193 0.02934285 -0.0968001 0.388193 0.02934285 -0.1160161 0.388193 0.02934285 -0.1372908 0.388193 0.02934285 -0.1606827 0.388193 0.02934285 -0.1862481 0.388193 0.02934285 -0.2140411 0.388193 0.02934285 -0.2441142 0.388193 0.02934285 -0.2765176 0.388193 0.02934285 -0.3113005 0.388193 0.02934285 -0.3485102 0.388193 0.02934285 -0.388193 0.388193 0.02934285 -0.4303934 0.388193 0.02934285 -0.4751555 0.388193 0.02934285 -0.5225216 0.388193 0.02934285 -0.5725335 0.388193 0.02934285 -0.6252316 0.388193 0.02934285 -0.6806558 0.388193 0.02934285 -0.7388448 0.388193 0.02934285 -0.7998369 0.388193 0.02934285 -0.8636691 0.388193 0.02934285 -0.9303782 0.388193 0.02934285 -1 0.388193 0.02934285 -0 0.4303934 0.02934285 -0.002418731 0.4303934 0.02934285 -0.005155668 0.4303934 0.02934285 -0.009080105 0.4303934 0.02934285 -0.01434988 0.4303934 0.02934285 -0.02107202 0.4303934 0.02934285 -0.02934285 0.4303934 0.02934285 -0.03925039 0.4303934 0.02934285 -0.05087609 0.4303934 0.02934285 -0.06429595 0.4303934 0.02934285 -0.07958143 0.4303934 0.02934285 -0.0968001 0.4303934 0.02934285 -0.1160161 0.4303934 0.02934285 -0.1372908 0.4303934 0.02934285 -0.1606827 0.4303934 0.02934285 -0.1862481 0.4303934 0.02934285 -0.2140411 0.4303934 0.02934285 -0.2441142 0.4303934 0.02934285 -0.2765176 0.4303934 0.02934285 -0.3113005 0.4303934 0.02934285 -0.3485102 0.4303934 0.02934285 -0.388193 0.4303934 0.02934285 -0.4303934 0.4303934 0.02934285 -0.4751555 0.4303934 0.02934285 -0.5225216 0.4303934 0.02934285 -0.5725335 0.4303934 0.02934285 -0.6252316 0.4303934 0.02934285 -0.6806558 0.4303934 0.02934285 -0.7388448 0.4303934 0.02934285 -0.7998369 0.4303934 0.02934285 -0.8636691 0.4303934 0.02934285 -0.9303782 0.4303934 0.02934285 -1 0.4303934 0.02934285 -0 0.4751555 0.02934285 -0.002418731 0.4751555 0.02934285 -0.005155668 0.4751555 0.02934285 -0.009080105 0.4751555 0.02934285 -0.01434988 0.4751555 0.02934285 -0.02107202 0.4751555 0.02934285 -0.02934285 0.4751555 0.02934285 -0.03925039 0.4751555 0.02934285 -0.05087609 0.4751555 0.02934285 -0.06429595 0.4751555 0.02934285 -0.07958143 0.4751555 0.02934285 -0.0968001 0.4751555 0.02934285 -0.1160161 0.4751555 0.02934285 -0.1372908 0.4751555 0.02934285 -0.1606827 0.4751555 0.02934285 -0.1862481 0.4751555 0.02934285 -0.2140411 0.4751555 0.02934285 -0.2441142 0.4751555 0.02934285 -0.2765176 0.4751555 0.02934285 -0.3113005 0.4751555 0.02934285 -0.3485102 0.4751555 0.02934285 -0.388193 0.4751555 0.02934285 -0.4303934 0.4751555 0.02934285 -0.4751555 0.4751555 0.02934285 -0.5225216 0.4751555 0.02934285 -0.5725335 0.4751555 0.02934285 -0.6252316 0.4751555 0.02934285 -0.6806558 0.4751555 0.02934285 -0.7388448 0.4751555 0.02934285 -0.7998369 0.4751555 0.02934285 -0.8636691 0.4751555 0.02934285 -0.9303782 0.4751555 0.02934285 -1 0.4751555 0.02934285 -0 0.5225216 0.02934285 -0.002418731 0.5225216 0.02934285 -0.005155668 0.5225216 0.02934285 -0.009080105 0.5225216 0.02934285 -0.01434988 0.5225216 0.02934285 -0.02107202 0.5225216 0.02934285 -0.02934285 0.5225216 0.02934285 -0.03925039 0.5225216 0.02934285 -0.05087609 0.5225216 0.02934285 -0.06429595 0.5225216 0.02934285 -0.07958143 0.5225216 0.02934285 -0.0968001 0.5225216 0.02934285 -0.1160161 0.5225216 0.02934285 -0.1372908 0.5225216 0.02934285 -0.1606827 0.5225216 0.02934285 -0.1862481 0.5225216 0.02934285 -0.2140411 0.5225216 0.02934285 -0.2441142 0.5225216 0.02934285 -0.2765176 0.5225216 0.02934285 -0.3113005 0.5225216 0.02934285 -0.3485102 0.5225216 0.02934285 -0.388193 0.5225216 0.02934285 -0.4303934 0.5225216 0.02934285 -0.4751555 0.5225216 0.02934285 -0.5225216 0.5225216 0.02934285 -0.5725335 0.5225216 0.02934285 -0.6252316 0.5225216 0.02934285 -0.6806558 0.5225216 0.02934285 -0.7388448 0.5225216 0.02934285 -0.7998369 0.5225216 0.02934285 -0.8636691 0.5225216 0.02934285 -0.9303782 0.5225216 0.02934285 -1 0.5225216 0.02934285 -0 0.5725335 0.02934285 -0.002418731 0.5725335 0.02934285 -0.005155668 0.5725335 0.02934285 -0.009080105 0.5725335 0.02934285 -0.01434988 0.5725335 0.02934285 -0.02107202 0.5725335 0.02934285 -0.02934285 0.5725335 0.02934285 -0.03925039 0.5725335 0.02934285 -0.05087609 0.5725335 0.02934285 -0.06429595 0.5725335 0.02934285 -0.07958143 0.5725335 0.02934285 -0.0968001 0.5725335 0.02934285 -0.1160161 0.5725335 0.02934285 -0.1372908 0.5725335 0.02934285 -0.1606827 0.5725335 0.02934285 -0.1862481 0.5725335 0.02934285 -0.2140411 0.5725335 0.02934285 -0.2441142 0.5725335 0.02934285 -0.2765176 0.5725335 0.02934285 -0.3113005 0.5725335 0.02934285 -0.3485102 0.5725335 0.02934285 -0.388193 0.5725335 0.02934285 -0.4303934 0.5725335 0.02934285 -0.4751555 0.5725335 0.02934285 -0.5225216 0.5725335 0.02934285 -0.5725335 0.5725335 0.02934285 -0.6252316 0.5725335 0.02934285 -0.6806558 0.5725335 0.02934285 -0.7388448 0.5725335 0.02934285 -0.7998369 0.5725335 0.02934285 -0.8636691 0.5725335 0.02934285 -0.9303782 0.5725335 0.02934285 -1 0.5725335 0.02934285 -0 0.6252316 0.02934285 -0.002418731 0.6252316 0.02934285 -0.005155668 0.6252316 0.02934285 -0.009080105 0.6252316 0.02934285 -0.01434988 0.6252316 0.02934285 -0.02107202 0.6252316 0.02934285 -0.02934285 0.6252316 0.02934285 -0.03925039 0.6252316 0.02934285 -0.05087609 0.6252316 0.02934285 -0.06429595 0.6252316 0.02934285 -0.07958143 0.6252316 0.02934285 -0.0968001 0.6252316 0.02934285 -0.1160161 0.6252316 0.02934285 -0.1372908 0.6252316 0.02934285 -0.1606827 0.6252316 0.02934285 -0.1862481 0.6252316 0.02934285 -0.2140411 0.6252316 0.02934285 -0.2441142 0.6252316 0.02934285 -0.2765176 0.6252316 0.02934285 -0.3113005 0.6252316 0.02934285 -0.3485102 0.6252316 0.02934285 -0.388193 0.6252316 0.02934285 -0.4303934 0.6252316 0.02934285 -0.4751555 0.6252316 0.02934285 -0.5225216 0.6252316 0.02934285 -0.5725335 0.6252316 0.02934285 -0.6252316 0.6252316 0.02934285 -0.6806558 0.6252316 0.02934285 -0.7388448 0.6252316 0.02934285 -0.7998369 0.6252316 0.02934285 -0.8636691 0.6252316 0.02934285 -0.9303782 0.6252316 0.02934285 -1 0.6252316 0.02934285 -0 0.6806558 0.02934285 -0.002418731 0.6806558 0.02934285 -0.005155668 0.6806558 0.02934285 -0.009080105 0.6806558 0.02934285 -0.01434988 0.6806558 0.02934285 -0.02107202 0.6806558 0.02934285 -0.02934285 0.6806558 0.02934285 -0.03925039 0.6806558 0.02934285 -0.05087609 0.6806558 0.02934285 -0.06429595 0.6806558 0.02934285 -0.07958143 0.6806558 0.02934285 -0.0968001 0.6806558 0.02934285 -0.1160161 0.6806558 0.02934285 -0.1372908 0.6806558 0.02934285 -0.1606827 0.6806558 0.02934285 -0.1862481 0.6806558 0.02934285 -0.2140411 0.6806558 0.02934285 -0.2441142 0.6806558 0.02934285 -0.2765176 0.6806558 0.02934285 -0.3113005 0.6806558 0.02934285 -0.3485102 0.6806558 0.02934285 -0.388193 0.6806558 0.02934285 -0.4303934 0.6806558 0.02934285 -0.4751555 0.6806558 0.02934285 -0.5225216 0.6806558 0.02934285 -0.5725335 0.6806558 0.02934285 -0.6252316 0.6806558 0.02934285 -0.6806558 0.6806558 0.02934285 -0.7388448 0.6806558 0.02934285 -0.7998369 0.6806558 0.02934285 -0.8636691 0.6806558 0.02934285 -0.9303782 0.6806558 0.02934285 -1 0.6806558 0.02934285 -0 0.7388448 0.02934285 -0.002418731 0.7388448 0.02934285 -0.005155668 0.7388448 0.02934285 -0.009080105 0.7388448 0.02934285 -0.01434988 0.7388448 0.02934285 -0.02107202 0.7388448 0.02934285 -0.02934285 0.7388448 0.02934285 -0.03925039 0.7388448 0.02934285 -0.05087609 0.7388448 0.02934285 -0.06429595 0.7388448 0.02934285 -0.07958143 0.7388448 0.02934285 -0.0968001 0.7388448 0.02934285 -0.1160161 0.7388448 0.02934285 -0.1372908 0.7388448 0.02934285 -0.1606827 0.7388448 0.02934285 -0.1862481 0.7388448 0.02934285 -0.2140411 0.7388448 0.02934285 -0.2441142 0.7388448 0.02934285 -0.2765176 0.7388448 0.02934285 -0.3113005 0.7388448 0.02934285 -0.3485102 0.7388448 0.02934285 -0.388193 0.7388448 0.02934285 -0.4303934 0.7388448 0.02934285 -0.4751555 0.7388448 0.02934285 -0.5225216 0.7388448 0.02934285 -0.5725335 0.7388448 0.02934285 -0.6252316 0.7388448 0.02934285 -0.6806558 0.7388448 0.02934285 -0.7388448 0.7388448 0.02934285 -0.7998369 0.7388448 0.02934285 -0.8636691 0.7388448 0.02934285 -0.9303782 0.7388448 0.02934285 -1 0.7388448 0.02934285 -0 0.7998369 0.02934285 -0.002418731 0.7998369 0.02934285 -0.005155668 0.7998369 0.02934285 -0.009080105 0.7998369 0.02934285 -0.01434988 0.7998369 0.02934285 -0.02107202 0.7998369 0.02934285 -0.02934285 0.7998369 0.02934285 -0.03925039 0.7998369 0.02934285 -0.05087609 0.7998369 0.02934285 -0.06429595 0.7998369 0.02934285 -0.07958143 0.7998369 0.02934285 -0.0968001 0.7998369 0.02934285 -0.1160161 0.7998369 0.02934285 -0.1372908 0.7998369 0.02934285 -0.1606827 0.7998369 0.02934285 -0.1862481 0.7998369 0.02934285 -0.2140411 0.7998369 0.02934285 -0.2441142 0.7998369 0.02934285 -0.2765176 0.7998369 0.02934285 -0.3113005 0.7998369 0.02934285 -0.3485102 0.7998369 0.02934285 -0.388193 0.7998369 0.02934285 -0.4303934 0.7998369 0.02934285 -0.4751555 0.7998369 0.02934285 -0.5225216 0.7998369 0.02934285 -0.5725335 0.7998369 0.02934285 -0.6252316 0.7998369 0.02934285 -0.6806558 0.7998369 0.02934285 -0.7388448 0.7998369 0.02934285 -0.7998369 0.7998369 0.02934285 -0.8636691 0.7998369 0.02934285 -0.9303782 0.7998369 0.02934285 -1 0.7998369 0.02934285 -0 0.8636691 0.02934285 -0.002418731 0.8636691 0.02934285 -0.005155668 0.8636691 0.02934285 -0.009080105 0.8636691 0.02934285 -0.01434988 0.8636691 0.02934285 -0.02107202 0.8636691 0.02934285 -0.02934285 0.8636691 0.02934285 -0.03925039 0.8636691 0.02934285 -0.05087609 0.8636691 0.02934285 -0.06429595 0.8636691 0.02934285 -0.07958143 0.8636691 0.02934285 -0.0968001 0.8636691 0.02934285 -0.1160161 0.8636691 0.02934285 -0.1372908 0.8636691 0.02934285 -0.1606827 0.8636691 0.02934285 -0.1862481 0.8636691 0.02934285 -0.2140411 0.8636691 0.02934285 -0.2441142 0.8636691 0.02934285 -0.2765176 0.8636691 0.02934285 -0.3113005 0.8636691 0.02934285 -0.3485102 0.8636691 0.02934285 -0.388193 0.8636691 0.02934285 -0.4303934 0.8636691 0.02934285 -0.4751555 0.8636691 0.02934285 -0.5225216 0.8636691 0.02934285 -0.5725335 0.8636691 0.02934285 -0.6252316 0.8636691 0.02934285 -0.6806558 0.8636691 0.02934285 -0.7388448 0.8636691 0.02934285 -0.7998369 0.8636691 0.02934285 -0.8636691 0.8636691 0.02934285 -0.9303782 0.8636691 0.02934285 -1 0.8636691 0.02934285 -0 0.9303782 0.02934285 -0.002418731 0.9303782 0.02934285 -0.005155668 0.9303782 0.02934285 -0.009080105 0.9303782 0.02934285 -0.01434988 0.9303782 0.02934285 -0.02107202 0.9303782 0.02934285 -0.02934285 0.9303782 0.02934285 -0.03925039 0.9303782 0.02934285 -0.05087609 0.9303782 0.02934285 -0.06429595 0.9303782 0.02934285 -0.07958143 0.9303782 0.02934285 -0.0968001 0.9303782 0.02934285 -0.1160161 0.9303782 0.02934285 -0.1372908 0.9303782 0.02934285 -0.1606827 0.9303782 0.02934285 -0.1862481 0.9303782 0.02934285 -0.2140411 0.9303782 0.02934285 -0.2441142 0.9303782 0.02934285 -0.2765176 0.9303782 0.02934285 -0.3113005 0.9303782 0.02934285 -0.3485102 0.9303782 0.02934285 -0.388193 0.9303782 0.02934285 -0.4303934 0.9303782 0.02934285 -0.4751555 0.9303782 0.02934285 -0.5225216 0.9303782 0.02934285 -0.5725335 0.9303782 0.02934285 -0.6252316 0.9303782 0.02934285 -0.6806558 0.9303782 0.02934285 -0.7388448 0.9303782 0.02934285 -0.7998369 0.9303782 0.02934285 -0.8636691 0.9303782 0.02934285 -0.9303782 0.9303782 0.02934285 -1 0.9303782 0.02934285 -0 1 0.02934285 -0.002418731 1 0.02934285 -0.005155668 1 0.02934285 -0.009080105 1 0.02934285 -0.01434988 1 0.02934285 -0.02107202 1 0.02934285 -0.02934285 1 0.02934285 -0.03925039 1 0.02934285 -0.05087609 1 0.02934285 -0.06429595 1 0.02934285 -0.07958143 1 0.02934285 -0.0968001 1 0.02934285 -0.1160161 1 0.02934285 -0.1372908 1 0.02934285 -0.1606827 1 0.02934285 -0.1862481 1 0.02934285 -0.2140411 1 0.02934285 -0.2441142 1 0.02934285 -0.2765176 1 0.02934285 -0.3113005 1 0.02934285 -0.3485102 1 0.02934285 -0.388193 1 0.02934285 -0.4303934 1 0.02934285 -0.4751555 1 0.02934285 -0.5225216 1 0.02934285 -0.5725335 1 0.02934285 -0.6252316 1 0.02934285 -0.6806558 1 0.02934285 -0.7388448 1 0.02934285 -0.7998369 1 0.02934285 -0.8636691 1 0.02934285 -0.9303782 1 0.02934285 -1 1 0.02934285 -0 0 0.03925039 -0.002418731 0 0.03925039 -0.005155668 0 0.03925039 -0.009080105 0 0.03925039 -0.01434988 0 0.03925039 -0.02107202 0 0.03925039 -0.02934285 0 0.03925039 -0.03925039 0 0.03925039 -0.05087609 0 0.03925039 -0.06429595 0 0.03925039 -0.07958143 0 0.03925039 -0.0968001 0 0.03925039 -0.1160161 0 0.03925039 -0.1372908 0 0.03925039 -0.1606827 0 0.03925039 -0.1862481 0 0.03925039 -0.2140411 0 0.03925039 -0.2441142 0 0.03925039 -0.2765176 0 0.03925039 -0.3113005 0 0.03925039 -0.3485102 0 0.03925039 -0.388193 0 0.03925039 -0.4303934 0 0.03925039 -0.4751555 0 0.03925039 -0.5225216 0 0.03925039 -0.5725335 0 0.03925039 -0.6252316 0 0.03925039 -0.6806558 0 0.03925039 -0.7388448 0 0.03925039 -0.7998369 0 0.03925039 -0.8636691 0 0.03925039 -0.9303782 0 0.03925039 -1 0 0.03925039 -0 0.002418731 0.03925039 -0.002418731 0.002418731 0.03925039 -0.005155668 0.002418731 0.03925039 -0.009080105 0.002418731 0.03925039 -0.01434988 0.002418731 0.03925039 -0.02107202 0.002418731 0.03925039 -0.02934285 0.002418731 0.03925039 -0.03925039 0.002418731 0.03925039 -0.05087609 0.002418731 0.03925039 -0.06429595 0.002418731 0.03925039 -0.07958143 0.002418731 0.03925039 -0.0968001 0.002418731 0.03925039 -0.1160161 0.002418731 0.03925039 -0.1372908 0.002418731 0.03925039 -0.1606827 0.002418731 0.03925039 -0.1862481 0.002418731 0.03925039 -0.2140411 0.002418731 0.03925039 -0.2441142 0.002418731 0.03925039 -0.2765176 0.002418731 0.03925039 -0.3113005 0.002418731 0.03925039 -0.3485102 0.002418731 0.03925039 -0.388193 0.002418731 0.03925039 -0.4303934 0.002418731 0.03925039 -0.4751555 0.002418731 0.03925039 -0.5225216 0.002418731 0.03925039 -0.5725335 0.002418731 0.03925039 -0.6252316 0.002418731 0.03925039 -0.6806558 0.002418731 0.03925039 -0.7388448 0.002418731 0.03925039 -0.7998369 0.002418731 0.03925039 -0.8636691 0.002418731 0.03925039 -0.9303782 0.002418731 0.03925039 -1 0.002418731 0.03925039 -0 0.005155668 0.03925039 -0.002418731 0.005155668 0.03925039 -0.005155668 0.005155668 0.03925039 -0.009080105 0.005155668 0.03925039 -0.01434988 0.005155668 0.03925039 -0.02107202 0.005155668 0.03925039 -0.02934285 0.005155668 0.03925039 -0.03925039 0.005155668 0.03925039 -0.05087609 0.005155668 0.03925039 -0.06429595 0.005155668 0.03925039 -0.07958143 0.005155668 0.03925039 -0.0968001 0.005155668 0.03925039 -0.1160161 0.005155668 0.03925039 -0.1372908 0.005155668 0.03925039 -0.1606827 0.005155668 0.03925039 -0.1862481 0.005155668 0.03925039 -0.2140411 0.005155668 0.03925039 -0.2441142 0.005155668 0.03925039 -0.2765176 0.005155668 0.03925039 -0.3113005 0.005155668 0.03925039 -0.3485102 0.005155668 0.03925039 -0.388193 0.005155668 0.03925039 -0.4303934 0.005155668 0.03925039 -0.4751555 0.005155668 0.03925039 -0.5225216 0.005155668 0.03925039 -0.5725335 0.005155668 0.03925039 -0.6252316 0.005155668 0.03925039 -0.6806558 0.005155668 0.03925039 -0.7388448 0.005155668 0.03925039 -0.7998369 0.005155668 0.03925039 -0.8636691 0.005155668 0.03925039 -0.9303782 0.005155668 0.03925039 -1 0.005155668 0.03925039 -0 0.009080105 0.03925039 -0.002418731 0.009080105 0.03925039 -0.005155668 0.009080105 0.03925039 -0.009080105 0.009080105 0.03925039 -0.01434988 0.009080105 0.03925039 -0.02107202 0.009080105 0.03925039 -0.02934285 0.009080105 0.03925039 -0.03925039 0.009080105 0.03925039 -0.05087609 0.009080105 0.03925039 -0.06429595 0.009080105 0.03925039 -0.07958143 0.009080105 0.03925039 -0.0968001 0.009080105 0.03925039 -0.1160161 0.009080105 0.03925039 -0.1372908 0.009080105 0.03925039 -0.1606827 0.009080105 0.03925039 -0.1862481 0.009080105 0.03925039 -0.2140411 0.009080105 0.03925039 -0.2441142 0.009080105 0.03925039 -0.2765176 0.009080105 0.03925039 -0.3113005 0.009080105 0.03925039 -0.3485102 0.009080105 0.03925039 -0.388193 0.009080105 0.03925039 -0.4303934 0.009080105 0.03925039 -0.4751555 0.009080105 0.03925039 -0.5225216 0.009080105 0.03925039 -0.5725335 0.009080105 0.03925039 -0.6252316 0.009080105 0.03925039 -0.6806558 0.009080105 0.03925039 -0.7388448 0.009080105 0.03925039 -0.7998369 0.009080105 0.03925039 -0.8636691 0.009080105 0.03925039 -0.9303782 0.009080105 0.03925039 -1 0.009080105 0.03925039 -0 0.01434988 0.03925039 -0.002418731 0.01434988 0.03925039 -0.005155668 0.01434988 0.03925039 -0.009080105 0.01434988 0.03925039 -0.01434988 0.01434988 0.03925039 -0.02107202 0.01434988 0.03925039 -0.02934285 0.01434988 0.03925039 -0.03925039 0.01434988 0.03925039 -0.05087609 0.01434988 0.03925039 -0.06429595 0.01434988 0.03925039 -0.07958143 0.01434988 0.03925039 -0.0968001 0.01434988 0.03925039 -0.1160161 0.01434988 0.03925039 -0.1372908 0.01434988 0.03925039 -0.1606827 0.01434988 0.03925039 -0.1862481 0.01434988 0.03925039 -0.2140411 0.01434988 0.03925039 -0.2441142 0.01434988 0.03925039 -0.2765176 0.01434988 0.03925039 -0.3113005 0.01434988 0.03925039 -0.3485102 0.01434988 0.03925039 -0.388193 0.01434988 0.03925039 -0.4303934 0.01434988 0.03925039 -0.4751555 0.01434988 0.03925039 -0.5225216 0.01434988 0.03925039 -0.5725335 0.01434988 0.03925039 -0.6252316 0.01434988 0.03925039 -0.6806558 0.01434988 0.03925039 -0.7388448 0.01434988 0.03925039 -0.7998369 0.01434988 0.03925039 -0.8636691 0.01434988 0.03925039 -0.9303782 0.01434988 0.03925039 -1 0.01434988 0.03925039 -0 0.02107202 0.03925039 -0.002418731 0.02107202 0.03925039 -0.005155668 0.02107202 0.03925039 -0.009080105 0.02107202 0.03925039 -0.01434988 0.02107202 0.03925039 -0.02107202 0.02107202 0.03925039 -0.02934285 0.02107202 0.03925039 -0.03925039 0.02107202 0.03925039 -0.05087609 0.02107202 0.03925039 -0.06429595 0.02107202 0.03925039 -0.07958143 0.02107202 0.03925039 -0.0968001 0.02107202 0.03925039 -0.1160161 0.02107202 0.03925039 -0.1372908 0.02107202 0.03925039 -0.1606827 0.02107202 0.03925039 -0.1862481 0.02107202 0.03925039 -0.2140411 0.02107202 0.03925039 -0.2441142 0.02107202 0.03925039 -0.2765176 0.02107202 0.03925039 -0.3113005 0.02107202 0.03925039 -0.3485102 0.02107202 0.03925039 -0.388193 0.02107202 0.03925039 -0.4303934 0.02107202 0.03925039 -0.4751555 0.02107202 0.03925039 -0.5225216 0.02107202 0.03925039 -0.5725335 0.02107202 0.03925039 -0.6252316 0.02107202 0.03925039 -0.6806558 0.02107202 0.03925039 -0.7388448 0.02107202 0.03925039 -0.7998369 0.02107202 0.03925039 -0.8636691 0.02107202 0.03925039 -0.9303782 0.02107202 0.03925039 -1 0.02107202 0.03925039 -0 0.02934285 0.03925039 -0.002418731 0.02934285 0.03925039 -0.005155668 0.02934285 0.03925039 -0.009080105 0.02934285 0.03925039 -0.01434988 0.02934285 0.03925039 -0.02107202 0.02934285 0.03925039 -0.02934285 0.02934285 0.03925039 -0.03925039 0.02934285 0.03925039 -0.05087609 0.02934285 0.03925039 -0.06429595 0.02934285 0.03925039 -0.07958143 0.02934285 0.03925039 -0.0968001 0.02934285 0.03925039 -0.1160161 0.02934285 0.03925039 -0.1372908 0.02934285 0.03925039 -0.1606827 0.02934285 0.03925039 -0.1862481 0.02934285 0.03925039 -0.2140411 0.02934285 0.03925039 -0.2441142 0.02934285 0.03925039 -0.2765176 0.02934285 0.03925039 -0.3113005 0.02934285 0.03925039 -0.3485102 0.02934285 0.03925039 -0.388193 0.02934285 0.03925039 -0.4303934 0.02934285 0.03925039 -0.4751555 0.02934285 0.03925039 -0.5225216 0.02934285 0.03925039 -0.5725335 0.02934285 0.03925039 -0.6252316 0.02934285 0.03925039 -0.6806558 0.02934285 0.03925039 -0.7388448 0.02934285 0.03925039 -0.7998369 0.02934285 0.03925039 -0.8636691 0.02934285 0.03925039 -0.9303782 0.02934285 0.03925039 -1 0.02934285 0.03925039 -0 0.03925039 0.03925039 -0.002418731 0.03925039 0.03925039 -0.005155668 0.03925039 0.03925039 -0.009080105 0.03925039 0.03925039 -0.01434988 0.03925039 0.03925039 -0.02107202 0.03925039 0.03925039 -0.02934285 0.03925039 0.03925039 -0.03925039 0.03925039 0.03925039 -0.05087609 0.03925039 0.03925039 -0.06429595 0.03925039 0.03925039 -0.07958143 0.03925039 0.03925039 -0.0968001 0.03925039 0.03925039 -0.1160161 0.03925039 0.03925039 -0.1372908 0.03925039 0.03925039 -0.1606827 0.03925039 0.03925039 -0.1862481 0.03925039 0.03925039 -0.2140411 0.03925039 0.03925039 -0.2441142 0.03925039 0.03925039 -0.2765176 0.03925039 0.03925039 -0.3113005 0.03925039 0.03925039 -0.3485102 0.03925039 0.03925039 -0.388193 0.03925039 0.03925039 -0.4303934 0.03925039 0.03925039 -0.4751555 0.03925039 0.03925039 -0.5225216 0.03925039 0.03925039 -0.5725335 0.03925039 0.03925039 -0.6252316 0.03925039 0.03925039 -0.6806558 0.03925039 0.03925039 -0.7388448 0.03925039 0.03925039 -0.7998369 0.03925039 0.03925039 -0.8636691 0.03925039 0.03925039 -0.9303782 0.03925039 0.03925039 -1 0.03925039 0.03925039 -0 0.05087609 0.03925039 -0.002418731 0.05087609 0.03925039 -0.005155668 0.05087609 0.03925039 -0.009080105 0.05087609 0.03925039 -0.01434988 0.05087609 0.03925039 -0.02107202 0.05087609 0.03925039 -0.02934285 0.05087609 0.03925039 -0.03925039 0.05087609 0.03925039 -0.05087609 0.05087609 0.03925039 -0.06429595 0.05087609 0.03925039 -0.07958143 0.05087609 0.03925039 -0.0968001 0.05087609 0.03925039 -0.1160161 0.05087609 0.03925039 -0.1372908 0.05087609 0.03925039 -0.1606827 0.05087609 0.03925039 -0.1862481 0.05087609 0.03925039 -0.2140411 0.05087609 0.03925039 -0.2441142 0.05087609 0.03925039 -0.2765176 0.05087609 0.03925039 -0.3113005 0.05087609 0.03925039 -0.3485102 0.05087609 0.03925039 -0.388193 0.05087609 0.03925039 -0.4303934 0.05087609 0.03925039 -0.4751555 0.05087609 0.03925039 -0.5225216 0.05087609 0.03925039 -0.5725335 0.05087609 0.03925039 -0.6252316 0.05087609 0.03925039 -0.6806558 0.05087609 0.03925039 -0.7388448 0.05087609 0.03925039 -0.7998369 0.05087609 0.03925039 -0.8636691 0.05087609 0.03925039 -0.9303782 0.05087609 0.03925039 -1 0.05087609 0.03925039 -0 0.06429595 0.03925039 -0.002418731 0.06429595 0.03925039 -0.005155668 0.06429595 0.03925039 -0.009080105 0.06429595 0.03925039 -0.01434988 0.06429595 0.03925039 -0.02107202 0.06429595 0.03925039 -0.02934285 0.06429595 0.03925039 -0.03925039 0.06429595 0.03925039 -0.05087609 0.06429595 0.03925039 -0.06429595 0.06429595 0.03925039 -0.07958143 0.06429595 0.03925039 -0.0968001 0.06429595 0.03925039 -0.1160161 0.06429595 0.03925039 -0.1372908 0.06429595 0.03925039 -0.1606827 0.06429595 0.03925039 -0.1862481 0.06429595 0.03925039 -0.2140411 0.06429595 0.03925039 -0.2441142 0.06429595 0.03925039 -0.2765176 0.06429595 0.03925039 -0.3113005 0.06429595 0.03925039 -0.3485102 0.06429595 0.03925039 -0.388193 0.06429595 0.03925039 -0.4303934 0.06429595 0.03925039 -0.4751555 0.06429595 0.03925039 -0.5225216 0.06429595 0.03925039 -0.5725335 0.06429595 0.03925039 -0.6252316 0.06429595 0.03925039 -0.6806558 0.06429595 0.03925039 -0.7388448 0.06429595 0.03925039 -0.7998369 0.06429595 0.03925039 -0.8636691 0.06429595 0.03925039 -0.9303782 0.06429595 0.03925039 -1 0.06429595 0.03925039 -0 0.07958143 0.03925039 -0.002418731 0.07958143 0.03925039 -0.005155668 0.07958143 0.03925039 -0.009080105 0.07958143 0.03925039 -0.01434988 0.07958143 0.03925039 -0.02107202 0.07958143 0.03925039 -0.02934285 0.07958143 0.03925039 -0.03925039 0.07958143 0.03925039 -0.05087609 0.07958143 0.03925039 -0.06429595 0.07958143 0.03925039 -0.07958143 0.07958143 0.03925039 -0.0968001 0.07958143 0.03925039 -0.1160161 0.07958143 0.03925039 -0.1372908 0.07958143 0.03925039 -0.1606827 0.07958143 0.03925039 -0.1862481 0.07958143 0.03925039 -0.2140411 0.07958143 0.03925039 -0.2441142 0.07958143 0.03925039 -0.2765176 0.07958143 0.03925039 -0.3113005 0.07958143 0.03925039 -0.3485102 0.07958143 0.03925039 -0.388193 0.07958143 0.03925039 -0.4303934 0.07958143 0.03925039 -0.4751555 0.07958143 0.03925039 -0.5225216 0.07958143 0.03925039 -0.5725335 0.07958143 0.03925039 -0.6252316 0.07958143 0.03925039 -0.6806558 0.07958143 0.03925039 -0.7388448 0.07958143 0.03925039 -0.7998369 0.07958143 0.03925039 -0.8636691 0.07958143 0.03925039 -0.9303782 0.07958143 0.03925039 -1 0.07958143 0.03925039 -0 0.0968001 0.03925039 -0.002418731 0.0968001 0.03925039 -0.005155668 0.0968001 0.03925039 -0.009080105 0.0968001 0.03925039 -0.01434988 0.0968001 0.03925039 -0.02107202 0.0968001 0.03925039 -0.02934285 0.0968001 0.03925039 -0.03925039 0.0968001 0.03925039 -0.05087609 0.0968001 0.03925039 -0.06429595 0.0968001 0.03925039 -0.07958143 0.0968001 0.03925039 -0.0968001 0.0968001 0.03925039 -0.1160161 0.0968001 0.03925039 -0.1372908 0.0968001 0.03925039 -0.1606827 0.0968001 0.03925039 -0.1862481 0.0968001 0.03925039 -0.2140411 0.0968001 0.03925039 -0.2441142 0.0968001 0.03925039 -0.2765176 0.0968001 0.03925039 -0.3113005 0.0968001 0.03925039 -0.3485102 0.0968001 0.03925039 -0.388193 0.0968001 0.03925039 -0.4303934 0.0968001 0.03925039 -0.4751555 0.0968001 0.03925039 -0.5225216 0.0968001 0.03925039 -0.5725335 0.0968001 0.03925039 -0.6252316 0.0968001 0.03925039 -0.6806558 0.0968001 0.03925039 -0.7388448 0.0968001 0.03925039 -0.7998369 0.0968001 0.03925039 -0.8636691 0.0968001 0.03925039 -0.9303782 0.0968001 0.03925039 -1 0.0968001 0.03925039 -0 0.1160161 0.03925039 -0.002418731 0.1160161 0.03925039 -0.005155668 0.1160161 0.03925039 -0.009080105 0.1160161 0.03925039 -0.01434988 0.1160161 0.03925039 -0.02107202 0.1160161 0.03925039 -0.02934285 0.1160161 0.03925039 -0.03925039 0.1160161 0.03925039 -0.05087609 0.1160161 0.03925039 -0.06429595 0.1160161 0.03925039 -0.07958143 0.1160161 0.03925039 -0.0968001 0.1160161 0.03925039 -0.1160161 0.1160161 0.03925039 -0.1372908 0.1160161 0.03925039 -0.1606827 0.1160161 0.03925039 -0.1862481 0.1160161 0.03925039 -0.2140411 0.1160161 0.03925039 -0.2441142 0.1160161 0.03925039 -0.2765176 0.1160161 0.03925039 -0.3113005 0.1160161 0.03925039 -0.3485102 0.1160161 0.03925039 -0.388193 0.1160161 0.03925039 -0.4303934 0.1160161 0.03925039 -0.4751555 0.1160161 0.03925039 -0.5225216 0.1160161 0.03925039 -0.5725335 0.1160161 0.03925039 -0.6252316 0.1160161 0.03925039 -0.6806558 0.1160161 0.03925039 -0.7388448 0.1160161 0.03925039 -0.7998369 0.1160161 0.03925039 -0.8636691 0.1160161 0.03925039 -0.9303782 0.1160161 0.03925039 -1 0.1160161 0.03925039 -0 0.1372908 0.03925039 -0.002418731 0.1372908 0.03925039 -0.005155668 0.1372908 0.03925039 -0.009080105 0.1372908 0.03925039 -0.01434988 0.1372908 0.03925039 -0.02107202 0.1372908 0.03925039 -0.02934285 0.1372908 0.03925039 -0.03925039 0.1372908 0.03925039 -0.05087609 0.1372908 0.03925039 -0.06429595 0.1372908 0.03925039 -0.07958143 0.1372908 0.03925039 -0.0968001 0.1372908 0.03925039 -0.1160161 0.1372908 0.03925039 -0.1372908 0.1372908 0.03925039 -0.1606827 0.1372908 0.03925039 -0.1862481 0.1372908 0.03925039 -0.2140411 0.1372908 0.03925039 -0.2441142 0.1372908 0.03925039 -0.2765176 0.1372908 0.03925039 -0.3113005 0.1372908 0.03925039 -0.3485102 0.1372908 0.03925039 -0.388193 0.1372908 0.03925039 -0.4303934 0.1372908 0.03925039 -0.4751555 0.1372908 0.03925039 -0.5225216 0.1372908 0.03925039 -0.5725335 0.1372908 0.03925039 -0.6252316 0.1372908 0.03925039 -0.6806558 0.1372908 0.03925039 -0.7388448 0.1372908 0.03925039 -0.7998369 0.1372908 0.03925039 -0.8636691 0.1372908 0.03925039 -0.9303782 0.1372908 0.03925039 -1 0.1372908 0.03925039 -0 0.1606827 0.03925039 -0.002418731 0.1606827 0.03925039 -0.005155668 0.1606827 0.03925039 -0.009080105 0.1606827 0.03925039 -0.01434988 0.1606827 0.03925039 -0.02107202 0.1606827 0.03925039 -0.02934285 0.1606827 0.03925039 -0.03925039 0.1606827 0.03925039 -0.05087609 0.1606827 0.03925039 -0.06429595 0.1606827 0.03925039 -0.07958143 0.1606827 0.03925039 -0.0968001 0.1606827 0.03925039 -0.1160161 0.1606827 0.03925039 -0.1372908 0.1606827 0.03925039 -0.1606827 0.1606827 0.03925039 -0.1862481 0.1606827 0.03925039 -0.2140411 0.1606827 0.03925039 -0.2441142 0.1606827 0.03925039 -0.2765176 0.1606827 0.03925039 -0.3113005 0.1606827 0.03925039 -0.3485102 0.1606827 0.03925039 -0.388193 0.1606827 0.03925039 -0.4303934 0.1606827 0.03925039 -0.4751555 0.1606827 0.03925039 -0.5225216 0.1606827 0.03925039 -0.5725335 0.1606827 0.03925039 -0.6252316 0.1606827 0.03925039 -0.6806558 0.1606827 0.03925039 -0.7388448 0.1606827 0.03925039 -0.7998369 0.1606827 0.03925039 -0.8636691 0.1606827 0.03925039 -0.9303782 0.1606827 0.03925039 -1 0.1606827 0.03925039 -0 0.1862481 0.03925039 -0.002418731 0.1862481 0.03925039 -0.005155668 0.1862481 0.03925039 -0.009080105 0.1862481 0.03925039 -0.01434988 0.1862481 0.03925039 -0.02107202 0.1862481 0.03925039 -0.02934285 0.1862481 0.03925039 -0.03925039 0.1862481 0.03925039 -0.05087609 0.1862481 0.03925039 -0.06429595 0.1862481 0.03925039 -0.07958143 0.1862481 0.03925039 -0.0968001 0.1862481 0.03925039 -0.1160161 0.1862481 0.03925039 -0.1372908 0.1862481 0.03925039 -0.1606827 0.1862481 0.03925039 -0.1862481 0.1862481 0.03925039 -0.2140411 0.1862481 0.03925039 -0.2441142 0.1862481 0.03925039 -0.2765176 0.1862481 0.03925039 -0.3113005 0.1862481 0.03925039 -0.3485102 0.1862481 0.03925039 -0.388193 0.1862481 0.03925039 -0.4303934 0.1862481 0.03925039 -0.4751555 0.1862481 0.03925039 -0.5225216 0.1862481 0.03925039 -0.5725335 0.1862481 0.03925039 -0.6252316 0.1862481 0.03925039 -0.6806558 0.1862481 0.03925039 -0.7388448 0.1862481 0.03925039 -0.7998369 0.1862481 0.03925039 -0.8636691 0.1862481 0.03925039 -0.9303782 0.1862481 0.03925039 -1 0.1862481 0.03925039 -0 0.2140411 0.03925039 -0.002418731 0.2140411 0.03925039 -0.005155668 0.2140411 0.03925039 -0.009080105 0.2140411 0.03925039 -0.01434988 0.2140411 0.03925039 -0.02107202 0.2140411 0.03925039 -0.02934285 0.2140411 0.03925039 -0.03925039 0.2140411 0.03925039 -0.05087609 0.2140411 0.03925039 -0.06429595 0.2140411 0.03925039 -0.07958143 0.2140411 0.03925039 -0.0968001 0.2140411 0.03925039 -0.1160161 0.2140411 0.03925039 -0.1372908 0.2140411 0.03925039 -0.1606827 0.2140411 0.03925039 -0.1862481 0.2140411 0.03925039 -0.2140411 0.2140411 0.03925039 -0.2441142 0.2140411 0.03925039 -0.2765176 0.2140411 0.03925039 -0.3113005 0.2140411 0.03925039 -0.3485102 0.2140411 0.03925039 -0.388193 0.2140411 0.03925039 -0.4303934 0.2140411 0.03925039 -0.4751555 0.2140411 0.03925039 -0.5225216 0.2140411 0.03925039 -0.5725335 0.2140411 0.03925039 -0.6252316 0.2140411 0.03925039 -0.6806558 0.2140411 0.03925039 -0.7388448 0.2140411 0.03925039 -0.7998369 0.2140411 0.03925039 -0.8636691 0.2140411 0.03925039 -0.9303782 0.2140411 0.03925039 -1 0.2140411 0.03925039 -0 0.2441142 0.03925039 -0.002418731 0.2441142 0.03925039 -0.005155668 0.2441142 0.03925039 -0.009080105 0.2441142 0.03925039 -0.01434988 0.2441142 0.03925039 -0.02107202 0.2441142 0.03925039 -0.02934285 0.2441142 0.03925039 -0.03925039 0.2441142 0.03925039 -0.05087609 0.2441142 0.03925039 -0.06429595 0.2441142 0.03925039 -0.07958143 0.2441142 0.03925039 -0.0968001 0.2441142 0.03925039 -0.1160161 0.2441142 0.03925039 -0.1372908 0.2441142 0.03925039 -0.1606827 0.2441142 0.03925039 -0.1862481 0.2441142 0.03925039 -0.2140411 0.2441142 0.03925039 -0.2441142 0.2441142 0.03925039 -0.2765176 0.2441142 0.03925039 -0.3113005 0.2441142 0.03925039 -0.3485102 0.2441142 0.03925039 -0.388193 0.2441142 0.03925039 -0.4303934 0.2441142 0.03925039 -0.4751555 0.2441142 0.03925039 -0.5225216 0.2441142 0.03925039 -0.5725335 0.2441142 0.03925039 -0.6252316 0.2441142 0.03925039 -0.6806558 0.2441142 0.03925039 -0.7388448 0.2441142 0.03925039 -0.7998369 0.2441142 0.03925039 -0.8636691 0.2441142 0.03925039 -0.9303782 0.2441142 0.03925039 -1 0.2441142 0.03925039 -0 0.2765176 0.03925039 -0.002418731 0.2765176 0.03925039 -0.005155668 0.2765176 0.03925039 -0.009080105 0.2765176 0.03925039 -0.01434988 0.2765176 0.03925039 -0.02107202 0.2765176 0.03925039 -0.02934285 0.2765176 0.03925039 -0.03925039 0.2765176 0.03925039 -0.05087609 0.2765176 0.03925039 -0.06429595 0.2765176 0.03925039 -0.07958143 0.2765176 0.03925039 -0.0968001 0.2765176 0.03925039 -0.1160161 0.2765176 0.03925039 -0.1372908 0.2765176 0.03925039 -0.1606827 0.2765176 0.03925039 -0.1862481 0.2765176 0.03925039 -0.2140411 0.2765176 0.03925039 -0.2441142 0.2765176 0.03925039 -0.2765176 0.2765176 0.03925039 -0.3113005 0.2765176 0.03925039 -0.3485102 0.2765176 0.03925039 -0.388193 0.2765176 0.03925039 -0.4303934 0.2765176 0.03925039 -0.4751555 0.2765176 0.03925039 -0.5225216 0.2765176 0.03925039 -0.5725335 0.2765176 0.03925039 -0.6252316 0.2765176 0.03925039 -0.6806558 0.2765176 0.03925039 -0.7388448 0.2765176 0.03925039 -0.7998369 0.2765176 0.03925039 -0.8636691 0.2765176 0.03925039 -0.9303782 0.2765176 0.03925039 -1 0.2765176 0.03925039 -0 0.3113005 0.03925039 -0.002418731 0.3113005 0.03925039 -0.005155668 0.3113005 0.03925039 -0.009080105 0.3113005 0.03925039 -0.01434988 0.3113005 0.03925039 -0.02107202 0.3113005 0.03925039 -0.02934285 0.3113005 0.03925039 -0.03925039 0.3113005 0.03925039 -0.05087609 0.3113005 0.03925039 -0.06429595 0.3113005 0.03925039 -0.07958143 0.3113005 0.03925039 -0.0968001 0.3113005 0.03925039 -0.1160161 0.3113005 0.03925039 -0.1372908 0.3113005 0.03925039 -0.1606827 0.3113005 0.03925039 -0.1862481 0.3113005 0.03925039 -0.2140411 0.3113005 0.03925039 -0.2441142 0.3113005 0.03925039 -0.2765176 0.3113005 0.03925039 -0.3113005 0.3113005 0.03925039 -0.3485102 0.3113005 0.03925039 -0.388193 0.3113005 0.03925039 -0.4303934 0.3113005 0.03925039 -0.4751555 0.3113005 0.03925039 -0.5225216 0.3113005 0.03925039 -0.5725335 0.3113005 0.03925039 -0.6252316 0.3113005 0.03925039 -0.6806558 0.3113005 0.03925039 -0.7388448 0.3113005 0.03925039 -0.7998369 0.3113005 0.03925039 -0.8636691 0.3113005 0.03925039 -0.9303782 0.3113005 0.03925039 -1 0.3113005 0.03925039 -0 0.3485102 0.03925039 -0.002418731 0.3485102 0.03925039 -0.005155668 0.3485102 0.03925039 -0.009080105 0.3485102 0.03925039 -0.01434988 0.3485102 0.03925039 -0.02107202 0.3485102 0.03925039 -0.02934285 0.3485102 0.03925039 -0.03925039 0.3485102 0.03925039 -0.05087609 0.3485102 0.03925039 -0.06429595 0.3485102 0.03925039 -0.07958143 0.3485102 0.03925039 -0.0968001 0.3485102 0.03925039 -0.1160161 0.3485102 0.03925039 -0.1372908 0.3485102 0.03925039 -0.1606827 0.3485102 0.03925039 -0.1862481 0.3485102 0.03925039 -0.2140411 0.3485102 0.03925039 -0.2441142 0.3485102 0.03925039 -0.2765176 0.3485102 0.03925039 -0.3113005 0.3485102 0.03925039 -0.3485102 0.3485102 0.03925039 -0.388193 0.3485102 0.03925039 -0.4303934 0.3485102 0.03925039 -0.4751555 0.3485102 0.03925039 -0.5225216 0.3485102 0.03925039 -0.5725335 0.3485102 0.03925039 -0.6252316 0.3485102 0.03925039 -0.6806558 0.3485102 0.03925039 -0.7388448 0.3485102 0.03925039 -0.7998369 0.3485102 0.03925039 -0.8636691 0.3485102 0.03925039 -0.9303782 0.3485102 0.03925039 -1 0.3485102 0.03925039 -0 0.388193 0.03925039 -0.002418731 0.388193 0.03925039 -0.005155668 0.388193 0.03925039 -0.009080105 0.388193 0.03925039 -0.01434988 0.388193 0.03925039 -0.02107202 0.388193 0.03925039 -0.02934285 0.388193 0.03925039 -0.03925039 0.388193 0.03925039 -0.05087609 0.388193 0.03925039 -0.06429595 0.388193 0.03925039 -0.07958143 0.388193 0.03925039 -0.0968001 0.388193 0.03925039 -0.1160161 0.388193 0.03925039 -0.1372908 0.388193 0.03925039 -0.1606827 0.388193 0.03925039 -0.1862481 0.388193 0.03925039 -0.2140411 0.388193 0.03925039 -0.2441142 0.388193 0.03925039 -0.2765176 0.388193 0.03925039 -0.3113005 0.388193 0.03925039 -0.3485102 0.388193 0.03925039 -0.388193 0.388193 0.03925039 -0.4303934 0.388193 0.03925039 -0.4751555 0.388193 0.03925039 -0.5225216 0.388193 0.03925039 -0.5725335 0.388193 0.03925039 -0.6252316 0.388193 0.03925039 -0.6806558 0.388193 0.03925039 -0.7388448 0.388193 0.03925039 -0.7998369 0.388193 0.03925039 -0.8636691 0.388193 0.03925039 -0.9303782 0.388193 0.03925039 -1 0.388193 0.03925039 -0 0.4303934 0.03925039 -0.002418731 0.4303934 0.03925039 -0.005155668 0.4303934 0.03925039 -0.009080105 0.4303934 0.03925039 -0.01434988 0.4303934 0.03925039 -0.02107202 0.4303934 0.03925039 -0.02934285 0.4303934 0.03925039 -0.03925039 0.4303934 0.03925039 -0.05087609 0.4303934 0.03925039 -0.06429595 0.4303934 0.03925039 -0.07958143 0.4303934 0.03925039 -0.0968001 0.4303934 0.03925039 -0.1160161 0.4303934 0.03925039 -0.1372908 0.4303934 0.03925039 -0.1606827 0.4303934 0.03925039 -0.1862481 0.4303934 0.03925039 -0.2140411 0.4303934 0.03925039 -0.2441142 0.4303934 0.03925039 -0.2765176 0.4303934 0.03925039 -0.3113005 0.4303934 0.03925039 -0.3485102 0.4303934 0.03925039 -0.388193 0.4303934 0.03925039 -0.4303934 0.4303934 0.03925039 -0.4751555 0.4303934 0.03925039 -0.5225216 0.4303934 0.03925039 -0.5725335 0.4303934 0.03925039 -0.6252316 0.4303934 0.03925039 -0.6806558 0.4303934 0.03925039 -0.7388448 0.4303934 0.03925039 -0.7998369 0.4303934 0.03925039 -0.8636691 0.4303934 0.03925039 -0.9303782 0.4303934 0.03925039 -1 0.4303934 0.03925039 -0 0.4751555 0.03925039 -0.002418731 0.4751555 0.03925039 -0.005155668 0.4751555 0.03925039 -0.009080105 0.4751555 0.03925039 -0.01434988 0.4751555 0.03925039 -0.02107202 0.4751555 0.03925039 -0.02934285 0.4751555 0.03925039 -0.03925039 0.4751555 0.03925039 -0.05087609 0.4751555 0.03925039 -0.06429595 0.4751555 0.03925039 -0.07958143 0.4751555 0.03925039 -0.0968001 0.4751555 0.03925039 -0.1160161 0.4751555 0.03925039 -0.1372908 0.4751555 0.03925039 -0.1606827 0.4751555 0.03925039 -0.1862481 0.4751555 0.03925039 -0.2140411 0.4751555 0.03925039 -0.2441142 0.4751555 0.03925039 -0.2765176 0.4751555 0.03925039 -0.3113005 0.4751555 0.03925039 -0.3485102 0.4751555 0.03925039 -0.388193 0.4751555 0.03925039 -0.4303934 0.4751555 0.03925039 -0.4751555 0.4751555 0.03925039 -0.5225216 0.4751555 0.03925039 -0.5725335 0.4751555 0.03925039 -0.6252316 0.4751555 0.03925039 -0.6806558 0.4751555 0.03925039 -0.7388448 0.4751555 0.03925039 -0.7998369 0.4751555 0.03925039 -0.8636691 0.4751555 0.03925039 -0.9303782 0.4751555 0.03925039 -1 0.4751555 0.03925039 -0 0.5225216 0.03925039 -0.002418731 0.5225216 0.03925039 -0.005155668 0.5225216 0.03925039 -0.009080105 0.5225216 0.03925039 -0.01434988 0.5225216 0.03925039 -0.02107202 0.5225216 0.03925039 -0.02934285 0.5225216 0.03925039 -0.03925039 0.5225216 0.03925039 -0.05087609 0.5225216 0.03925039 -0.06429595 0.5225216 0.03925039 -0.07958143 0.5225216 0.03925039 -0.0968001 0.5225216 0.03925039 -0.1160161 0.5225216 0.03925039 -0.1372908 0.5225216 0.03925039 -0.1606827 0.5225216 0.03925039 -0.1862481 0.5225216 0.03925039 -0.2140411 0.5225216 0.03925039 -0.2441142 0.5225216 0.03925039 -0.2765176 0.5225216 0.03925039 -0.3113005 0.5225216 0.03925039 -0.3485102 0.5225216 0.03925039 -0.388193 0.5225216 0.03925039 -0.4303934 0.5225216 0.03925039 -0.4751555 0.5225216 0.03925039 -0.5225216 0.5225216 0.03925039 -0.5725335 0.5225216 0.03925039 -0.6252316 0.5225216 0.03925039 -0.6806558 0.5225216 0.03925039 -0.7388448 0.5225216 0.03925039 -0.7998369 0.5225216 0.03925039 -0.8636691 0.5225216 0.03925039 -0.9303782 0.5225216 0.03925039 -1 0.5225216 0.03925039 -0 0.5725335 0.03925039 -0.002418731 0.5725335 0.03925039 -0.005155668 0.5725335 0.03925039 -0.009080105 0.5725335 0.03925039 -0.01434988 0.5725335 0.03925039 -0.02107202 0.5725335 0.03925039 -0.02934285 0.5725335 0.03925039 -0.03925039 0.5725335 0.03925039 -0.05087609 0.5725335 0.03925039 -0.06429595 0.5725335 0.03925039 -0.07958143 0.5725335 0.03925039 -0.0968001 0.5725335 0.03925039 -0.1160161 0.5725335 0.03925039 -0.1372908 0.5725335 0.03925039 -0.1606827 0.5725335 0.03925039 -0.1862481 0.5725335 0.03925039 -0.2140411 0.5725335 0.03925039 -0.2441142 0.5725335 0.03925039 -0.2765176 0.5725335 0.03925039 -0.3113005 0.5725335 0.03925039 -0.3485102 0.5725335 0.03925039 -0.388193 0.5725335 0.03925039 -0.4303934 0.5725335 0.03925039 -0.4751555 0.5725335 0.03925039 -0.5225216 0.5725335 0.03925039 -0.5725335 0.5725335 0.03925039 -0.6252316 0.5725335 0.03925039 -0.6806558 0.5725335 0.03925039 -0.7388448 0.5725335 0.03925039 -0.7998369 0.5725335 0.03925039 -0.8636691 0.5725335 0.03925039 -0.9303782 0.5725335 0.03925039 -1 0.5725335 0.03925039 -0 0.6252316 0.03925039 -0.002418731 0.6252316 0.03925039 -0.005155668 0.6252316 0.03925039 -0.009080105 0.6252316 0.03925039 -0.01434988 0.6252316 0.03925039 -0.02107202 0.6252316 0.03925039 -0.02934285 0.6252316 0.03925039 -0.03925039 0.6252316 0.03925039 -0.05087609 0.6252316 0.03925039 -0.06429595 0.6252316 0.03925039 -0.07958143 0.6252316 0.03925039 -0.0968001 0.6252316 0.03925039 -0.1160161 0.6252316 0.03925039 -0.1372908 0.6252316 0.03925039 -0.1606827 0.6252316 0.03925039 -0.1862481 0.6252316 0.03925039 -0.2140411 0.6252316 0.03925039 -0.2441142 0.6252316 0.03925039 -0.2765176 0.6252316 0.03925039 -0.3113005 0.6252316 0.03925039 -0.3485102 0.6252316 0.03925039 -0.388193 0.6252316 0.03925039 -0.4303934 0.6252316 0.03925039 -0.4751555 0.6252316 0.03925039 -0.5225216 0.6252316 0.03925039 -0.5725335 0.6252316 0.03925039 -0.6252316 0.6252316 0.03925039 -0.6806558 0.6252316 0.03925039 -0.7388448 0.6252316 0.03925039 -0.7998369 0.6252316 0.03925039 -0.8636691 0.6252316 0.03925039 -0.9303782 0.6252316 0.03925039 -1 0.6252316 0.03925039 -0 0.6806558 0.03925039 -0.002418731 0.6806558 0.03925039 -0.005155668 0.6806558 0.03925039 -0.009080105 0.6806558 0.03925039 -0.01434988 0.6806558 0.03925039 -0.02107202 0.6806558 0.03925039 -0.02934285 0.6806558 0.03925039 -0.03925039 0.6806558 0.03925039 -0.05087609 0.6806558 0.03925039 -0.06429595 0.6806558 0.03925039 -0.07958143 0.6806558 0.03925039 -0.0968001 0.6806558 0.03925039 -0.1160161 0.6806558 0.03925039 -0.1372908 0.6806558 0.03925039 -0.1606827 0.6806558 0.03925039 -0.1862481 0.6806558 0.03925039 -0.2140411 0.6806558 0.03925039 -0.2441142 0.6806558 0.03925039 -0.2765176 0.6806558 0.03925039 -0.3113005 0.6806558 0.03925039 -0.3485102 0.6806558 0.03925039 -0.388193 0.6806558 0.03925039 -0.4303934 0.6806558 0.03925039 -0.4751555 0.6806558 0.03925039 -0.5225216 0.6806558 0.03925039 -0.5725335 0.6806558 0.03925039 -0.6252316 0.6806558 0.03925039 -0.6806558 0.6806558 0.03925039 -0.7388448 0.6806558 0.03925039 -0.7998369 0.6806558 0.03925039 -0.8636691 0.6806558 0.03925039 -0.9303782 0.6806558 0.03925039 -1 0.6806558 0.03925039 -0 0.7388448 0.03925039 -0.002418731 0.7388448 0.03925039 -0.005155668 0.7388448 0.03925039 -0.009080105 0.7388448 0.03925039 -0.01434988 0.7388448 0.03925039 -0.02107202 0.7388448 0.03925039 -0.02934285 0.7388448 0.03925039 -0.03925039 0.7388448 0.03925039 -0.05087609 0.7388448 0.03925039 -0.06429595 0.7388448 0.03925039 -0.07958143 0.7388448 0.03925039 -0.0968001 0.7388448 0.03925039 -0.1160161 0.7388448 0.03925039 -0.1372908 0.7388448 0.03925039 -0.1606827 0.7388448 0.03925039 -0.1862481 0.7388448 0.03925039 -0.2140411 0.7388448 0.03925039 -0.2441142 0.7388448 0.03925039 -0.2765176 0.7388448 0.03925039 -0.3113005 0.7388448 0.03925039 -0.3485102 0.7388448 0.03925039 -0.388193 0.7388448 0.03925039 -0.4303934 0.7388448 0.03925039 -0.4751555 0.7388448 0.03925039 -0.5225216 0.7388448 0.03925039 -0.5725335 0.7388448 0.03925039 -0.6252316 0.7388448 0.03925039 -0.6806558 0.7388448 0.03925039 -0.7388448 0.7388448 0.03925039 -0.7998369 0.7388448 0.03925039 -0.8636691 0.7388448 0.03925039 -0.9303782 0.7388448 0.03925039 -1 0.7388448 0.03925039 -0 0.7998369 0.03925039 -0.002418731 0.7998369 0.03925039 -0.005155668 0.7998369 0.03925039 -0.009080105 0.7998369 0.03925039 -0.01434988 0.7998369 0.03925039 -0.02107202 0.7998369 0.03925039 -0.02934285 0.7998369 0.03925039 -0.03925039 0.7998369 0.03925039 -0.05087609 0.7998369 0.03925039 -0.06429595 0.7998369 0.03925039 -0.07958143 0.7998369 0.03925039 -0.0968001 0.7998369 0.03925039 -0.1160161 0.7998369 0.03925039 -0.1372908 0.7998369 0.03925039 -0.1606827 0.7998369 0.03925039 -0.1862481 0.7998369 0.03925039 -0.2140411 0.7998369 0.03925039 -0.2441142 0.7998369 0.03925039 -0.2765176 0.7998369 0.03925039 -0.3113005 0.7998369 0.03925039 -0.3485102 0.7998369 0.03925039 -0.388193 0.7998369 0.03925039 -0.4303934 0.7998369 0.03925039 -0.4751555 0.7998369 0.03925039 -0.5225216 0.7998369 0.03925039 -0.5725335 0.7998369 0.03925039 -0.6252316 0.7998369 0.03925039 -0.6806558 0.7998369 0.03925039 -0.7388448 0.7998369 0.03925039 -0.7998369 0.7998369 0.03925039 -0.8636691 0.7998369 0.03925039 -0.9303782 0.7998369 0.03925039 -1 0.7998369 0.03925039 -0 0.8636691 0.03925039 -0.002418731 0.8636691 0.03925039 -0.005155668 0.8636691 0.03925039 -0.009080105 0.8636691 0.03925039 -0.01434988 0.8636691 0.03925039 -0.02107202 0.8636691 0.03925039 -0.02934285 0.8636691 0.03925039 -0.03925039 0.8636691 0.03925039 -0.05087609 0.8636691 0.03925039 -0.06429595 0.8636691 0.03925039 -0.07958143 0.8636691 0.03925039 -0.0968001 0.8636691 0.03925039 -0.1160161 0.8636691 0.03925039 -0.1372908 0.8636691 0.03925039 -0.1606827 0.8636691 0.03925039 -0.1862481 0.8636691 0.03925039 -0.2140411 0.8636691 0.03925039 -0.2441142 0.8636691 0.03925039 -0.2765176 0.8636691 0.03925039 -0.3113005 0.8636691 0.03925039 -0.3485102 0.8636691 0.03925039 -0.388193 0.8636691 0.03925039 -0.4303934 0.8636691 0.03925039 -0.4751555 0.8636691 0.03925039 -0.5225216 0.8636691 0.03925039 -0.5725335 0.8636691 0.03925039 -0.6252316 0.8636691 0.03925039 -0.6806558 0.8636691 0.03925039 -0.7388448 0.8636691 0.03925039 -0.7998369 0.8636691 0.03925039 -0.8636691 0.8636691 0.03925039 -0.9303782 0.8636691 0.03925039 -1 0.8636691 0.03925039 -0 0.9303782 0.03925039 -0.002418731 0.9303782 0.03925039 -0.005155668 0.9303782 0.03925039 -0.009080105 0.9303782 0.03925039 -0.01434988 0.9303782 0.03925039 -0.02107202 0.9303782 0.03925039 -0.02934285 0.9303782 0.03925039 -0.03925039 0.9303782 0.03925039 -0.05087609 0.9303782 0.03925039 -0.06429595 0.9303782 0.03925039 -0.07958143 0.9303782 0.03925039 -0.0968001 0.9303782 0.03925039 -0.1160161 0.9303782 0.03925039 -0.1372908 0.9303782 0.03925039 -0.1606827 0.9303782 0.03925039 -0.1862481 0.9303782 0.03925039 -0.2140411 0.9303782 0.03925039 -0.2441142 0.9303782 0.03925039 -0.2765176 0.9303782 0.03925039 -0.3113005 0.9303782 0.03925039 -0.3485102 0.9303782 0.03925039 -0.388193 0.9303782 0.03925039 -0.4303934 0.9303782 0.03925039 -0.4751555 0.9303782 0.03925039 -0.5225216 0.9303782 0.03925039 -0.5725335 0.9303782 0.03925039 -0.6252316 0.9303782 0.03925039 -0.6806558 0.9303782 0.03925039 -0.7388448 0.9303782 0.03925039 -0.7998369 0.9303782 0.03925039 -0.8636691 0.9303782 0.03925039 -0.9303782 0.9303782 0.03925039 -1 0.9303782 0.03925039 -0 1 0.03925039 -0.002418731 1 0.03925039 -0.005155668 1 0.03925039 -0.009080105 1 0.03925039 -0.01434988 1 0.03925039 -0.02107202 1 0.03925039 -0.02934285 1 0.03925039 -0.03925039 1 0.03925039 -0.05087609 1 0.03925039 -0.06429595 1 0.03925039 -0.07958143 1 0.03925039 -0.0968001 1 0.03925039 -0.1160161 1 0.03925039 -0.1372908 1 0.03925039 -0.1606827 1 0.03925039 -0.1862481 1 0.03925039 -0.2140411 1 0.03925039 -0.2441142 1 0.03925039 -0.2765176 1 0.03925039 -0.3113005 1 0.03925039 -0.3485102 1 0.03925039 -0.388193 1 0.03925039 -0.4303934 1 0.03925039 -0.4751555 1 0.03925039 -0.5225216 1 0.03925039 -0.5725335 1 0.03925039 -0.6252316 1 0.03925039 -0.6806558 1 0.03925039 -0.7388448 1 0.03925039 -0.7998369 1 0.03925039 -0.8636691 1 0.03925039 -0.9303782 1 0.03925039 -1 1 0.03925039 -0 0 0.05087609 -0.002418731 0 0.05087609 -0.005155668 0 0.05087609 -0.009080105 0 0.05087609 -0.01434988 0 0.05087609 -0.02107202 0 0.05087609 -0.02934285 0 0.05087609 -0.03925039 0 0.05087609 -0.05087609 0 0.05087609 -0.06429595 0 0.05087609 -0.07958143 0 0.05087609 -0.0968001 0 0.05087609 -0.1160161 0 0.05087609 -0.1372908 0 0.05087609 -0.1606827 0 0.05087609 -0.1862481 0 0.05087609 -0.2140411 0 0.05087609 -0.2441142 0 0.05087609 -0.2765176 0 0.05087609 -0.3113005 0 0.05087609 -0.3485102 0 0.05087609 -0.388193 0 0.05087609 -0.4303934 0 0.05087609 -0.4751555 0 0.05087609 -0.5225216 0 0.05087609 -0.5725335 0 0.05087609 -0.6252316 0 0.05087609 -0.6806558 0 0.05087609 -0.7388448 0 0.05087609 -0.7998369 0 0.05087609 -0.8636691 0 0.05087609 -0.9303782 0 0.05087609 -1 0 0.05087609 -0 0.002418731 0.05087609 -0.002418731 0.002418731 0.05087609 -0.005155668 0.002418731 0.05087609 -0.009080105 0.002418731 0.05087609 -0.01434988 0.002418731 0.05087609 -0.02107202 0.002418731 0.05087609 -0.02934285 0.002418731 0.05087609 -0.03925039 0.002418731 0.05087609 -0.05087609 0.002418731 0.05087609 -0.06429595 0.002418731 0.05087609 -0.07958143 0.002418731 0.05087609 -0.0968001 0.002418731 0.05087609 -0.1160161 0.002418731 0.05087609 -0.1372908 0.002418731 0.05087609 -0.1606827 0.002418731 0.05087609 -0.1862481 0.002418731 0.05087609 -0.2140411 0.002418731 0.05087609 -0.2441142 0.002418731 0.05087609 -0.2765176 0.002418731 0.05087609 -0.3113005 0.002418731 0.05087609 -0.3485102 0.002418731 0.05087609 -0.388193 0.002418731 0.05087609 -0.4303934 0.002418731 0.05087609 -0.4751555 0.002418731 0.05087609 -0.5225216 0.002418731 0.05087609 -0.5725335 0.002418731 0.05087609 -0.6252316 0.002418731 0.05087609 -0.6806558 0.002418731 0.05087609 -0.7388448 0.002418731 0.05087609 -0.7998369 0.002418731 0.05087609 -0.8636691 0.002418731 0.05087609 -0.9303782 0.002418731 0.05087609 -1 0.002418731 0.05087609 -0 0.005155668 0.05087609 -0.002418731 0.005155668 0.05087609 -0.005155668 0.005155668 0.05087609 -0.009080105 0.005155668 0.05087609 -0.01434988 0.005155668 0.05087609 -0.02107202 0.005155668 0.05087609 -0.02934285 0.005155668 0.05087609 -0.03925039 0.005155668 0.05087609 -0.05087609 0.005155668 0.05087609 -0.06429595 0.005155668 0.05087609 -0.07958143 0.005155668 0.05087609 -0.0968001 0.005155668 0.05087609 -0.1160161 0.005155668 0.05087609 -0.1372908 0.005155668 0.05087609 -0.1606827 0.005155668 0.05087609 -0.1862481 0.005155668 0.05087609 -0.2140411 0.005155668 0.05087609 -0.2441142 0.005155668 0.05087609 -0.2765176 0.005155668 0.05087609 -0.3113005 0.005155668 0.05087609 -0.3485102 0.005155668 0.05087609 -0.388193 0.005155668 0.05087609 -0.4303934 0.005155668 0.05087609 -0.4751555 0.005155668 0.05087609 -0.5225216 0.005155668 0.05087609 -0.5725335 0.005155668 0.05087609 -0.6252316 0.005155668 0.05087609 -0.6806558 0.005155668 0.05087609 -0.7388448 0.005155668 0.05087609 -0.7998369 0.005155668 0.05087609 -0.8636691 0.005155668 0.05087609 -0.9303782 0.005155668 0.05087609 -1 0.005155668 0.05087609 -0 0.009080105 0.05087609 -0.002418731 0.009080105 0.05087609 -0.005155668 0.009080105 0.05087609 -0.009080105 0.009080105 0.05087609 -0.01434988 0.009080105 0.05087609 -0.02107202 0.009080105 0.05087609 -0.02934285 0.009080105 0.05087609 -0.03925039 0.009080105 0.05087609 -0.05087609 0.009080105 0.05087609 -0.06429595 0.009080105 0.05087609 -0.07958143 0.009080105 0.05087609 -0.0968001 0.009080105 0.05087609 -0.1160161 0.009080105 0.05087609 -0.1372908 0.009080105 0.05087609 -0.1606827 0.009080105 0.05087609 -0.1862481 0.009080105 0.05087609 -0.2140411 0.009080105 0.05087609 -0.2441142 0.009080105 0.05087609 -0.2765176 0.009080105 0.05087609 -0.3113005 0.009080105 0.05087609 -0.3485102 0.009080105 0.05087609 -0.388193 0.009080105 0.05087609 -0.4303934 0.009080105 0.05087609 -0.4751555 0.009080105 0.05087609 -0.5225216 0.009080105 0.05087609 -0.5725335 0.009080105 0.05087609 -0.6252316 0.009080105 0.05087609 -0.6806558 0.009080105 0.05087609 -0.7388448 0.009080105 0.05087609 -0.7998369 0.009080105 0.05087609 -0.8636691 0.009080105 0.05087609 -0.9303782 0.009080105 0.05087609 -1 0.009080105 0.05087609 -0 0.01434988 0.05087609 -0.002418731 0.01434988 0.05087609 -0.005155668 0.01434988 0.05087609 -0.009080105 0.01434988 0.05087609 -0.01434988 0.01434988 0.05087609 -0.02107202 0.01434988 0.05087609 -0.02934285 0.01434988 0.05087609 -0.03925039 0.01434988 0.05087609 -0.05087609 0.01434988 0.05087609 -0.06429595 0.01434988 0.05087609 -0.07958143 0.01434988 0.05087609 -0.0968001 0.01434988 0.05087609 -0.1160161 0.01434988 0.05087609 -0.1372908 0.01434988 0.05087609 -0.1606827 0.01434988 0.05087609 -0.1862481 0.01434988 0.05087609 -0.2140411 0.01434988 0.05087609 -0.2441142 0.01434988 0.05087609 -0.2765176 0.01434988 0.05087609 -0.3113005 0.01434988 0.05087609 -0.3485102 0.01434988 0.05087609 -0.388193 0.01434988 0.05087609 -0.4303934 0.01434988 0.05087609 -0.4751555 0.01434988 0.05087609 -0.5225216 0.01434988 0.05087609 -0.5725335 0.01434988 0.05087609 -0.6252316 0.01434988 0.05087609 -0.6806558 0.01434988 0.05087609 -0.7388448 0.01434988 0.05087609 -0.7998369 0.01434988 0.05087609 -0.8636691 0.01434988 0.05087609 -0.9303782 0.01434988 0.05087609 -1 0.01434988 0.05087609 -0 0.02107202 0.05087609 -0.002418731 0.02107202 0.05087609 -0.005155668 0.02107202 0.05087609 -0.009080105 0.02107202 0.05087609 -0.01434988 0.02107202 0.05087609 -0.02107202 0.02107202 0.05087609 -0.02934285 0.02107202 0.05087609 -0.03925039 0.02107202 0.05087609 -0.05087609 0.02107202 0.05087609 -0.06429595 0.02107202 0.05087609 -0.07958143 0.02107202 0.05087609 -0.0968001 0.02107202 0.05087609 -0.1160161 0.02107202 0.05087609 -0.1372908 0.02107202 0.05087609 -0.1606827 0.02107202 0.05087609 -0.1862481 0.02107202 0.05087609 -0.2140411 0.02107202 0.05087609 -0.2441142 0.02107202 0.05087609 -0.2765176 0.02107202 0.05087609 -0.3113005 0.02107202 0.05087609 -0.3485102 0.02107202 0.05087609 -0.388193 0.02107202 0.05087609 -0.4303934 0.02107202 0.05087609 -0.4751555 0.02107202 0.05087609 -0.5225216 0.02107202 0.05087609 -0.5725335 0.02107202 0.05087609 -0.6252316 0.02107202 0.05087609 -0.6806558 0.02107202 0.05087609 -0.7388448 0.02107202 0.05087609 -0.7998369 0.02107202 0.05087609 -0.8636691 0.02107202 0.05087609 -0.9303782 0.02107202 0.05087609 -1 0.02107202 0.05087609 -0 0.02934285 0.05087609 -0.002418731 0.02934285 0.05087609 -0.005155668 0.02934285 0.05087609 -0.009080105 0.02934285 0.05087609 -0.01434988 0.02934285 0.05087609 -0.02107202 0.02934285 0.05087609 -0.02934285 0.02934285 0.05087609 -0.03925039 0.02934285 0.05087609 -0.05087609 0.02934285 0.05087609 -0.06429595 0.02934285 0.05087609 -0.07958143 0.02934285 0.05087609 -0.0968001 0.02934285 0.05087609 -0.1160161 0.02934285 0.05087609 -0.1372908 0.02934285 0.05087609 -0.1606827 0.02934285 0.05087609 -0.1862481 0.02934285 0.05087609 -0.2140411 0.02934285 0.05087609 -0.2441142 0.02934285 0.05087609 -0.2765176 0.02934285 0.05087609 -0.3113005 0.02934285 0.05087609 -0.3485102 0.02934285 0.05087609 -0.388193 0.02934285 0.05087609 -0.4303934 0.02934285 0.05087609 -0.4751555 0.02934285 0.05087609 -0.5225216 0.02934285 0.05087609 -0.5725335 0.02934285 0.05087609 -0.6252316 0.02934285 0.05087609 -0.6806558 0.02934285 0.05087609 -0.7388448 0.02934285 0.05087609 -0.7998369 0.02934285 0.05087609 -0.8636691 0.02934285 0.05087609 -0.9303782 0.02934285 0.05087609 -1 0.02934285 0.05087609 -0 0.03925039 0.05087609 -0.002418731 0.03925039 0.05087609 -0.005155668 0.03925039 0.05087609 -0.009080105 0.03925039 0.05087609 -0.01434988 0.03925039 0.05087609 -0.02107202 0.03925039 0.05087609 -0.02934285 0.03925039 0.05087609 -0.03925039 0.03925039 0.05087609 -0.05087609 0.03925039 0.05087609 -0.06429595 0.03925039 0.05087609 -0.07958143 0.03925039 0.05087609 -0.0968001 0.03925039 0.05087609 -0.1160161 0.03925039 0.05087609 -0.1372908 0.03925039 0.05087609 -0.1606827 0.03925039 0.05087609 -0.1862481 0.03925039 0.05087609 -0.2140411 0.03925039 0.05087609 -0.2441142 0.03925039 0.05087609 -0.2765176 0.03925039 0.05087609 -0.3113005 0.03925039 0.05087609 -0.3485102 0.03925039 0.05087609 -0.388193 0.03925039 0.05087609 -0.4303934 0.03925039 0.05087609 -0.4751555 0.03925039 0.05087609 -0.5225216 0.03925039 0.05087609 -0.5725335 0.03925039 0.05087609 -0.6252316 0.03925039 0.05087609 -0.6806558 0.03925039 0.05087609 -0.7388448 0.03925039 0.05087609 -0.7998369 0.03925039 0.05087609 -0.8636691 0.03925039 0.05087609 -0.9303782 0.03925039 0.05087609 -1 0.03925039 0.05087609 -0 0.05087609 0.05087609 -0.002418731 0.05087609 0.05087609 -0.005155668 0.05087609 0.05087609 -0.009080105 0.05087609 0.05087609 -0.01434988 0.05087609 0.05087609 -0.02107202 0.05087609 0.05087609 -0.02934285 0.05087609 0.05087609 -0.03925039 0.05087609 0.05087609 -0.05087609 0.05087609 0.05087609 -0.06429595 0.05087609 0.05087609 -0.07958143 0.05087609 0.05087609 -0.0968001 0.05087609 0.05087609 -0.1160161 0.05087609 0.05087609 -0.1372908 0.05087609 0.05087609 -0.1606827 0.05087609 0.05087609 -0.1862481 0.05087609 0.05087609 -0.2140411 0.05087609 0.05087609 -0.2441142 0.05087609 0.05087609 -0.2765176 0.05087609 0.05087609 -0.3113005 0.05087609 0.05087609 -0.3485102 0.05087609 0.05087609 -0.388193 0.05087609 0.05087609 -0.4303934 0.05087609 0.05087609 -0.4751555 0.05087609 0.05087609 -0.5225216 0.05087609 0.05087609 -0.5725335 0.05087609 0.05087609 -0.6252316 0.05087609 0.05087609 -0.6806558 0.05087609 0.05087609 -0.7388448 0.05087609 0.05087609 -0.7998369 0.05087609 0.05087609 -0.8636691 0.05087609 0.05087609 -0.9303782 0.05087609 0.05087609 -1 0.05087609 0.05087609 -0 0.06429595 0.05087609 -0.002418731 0.06429595 0.05087609 -0.005155668 0.06429595 0.05087609 -0.009080105 0.06429595 0.05087609 -0.01434988 0.06429595 0.05087609 -0.02107202 0.06429595 0.05087609 -0.02934285 0.06429595 0.05087609 -0.03925039 0.06429595 0.05087609 -0.05087609 0.06429595 0.05087609 -0.06429595 0.06429595 0.05087609 -0.07958143 0.06429595 0.05087609 -0.0968001 0.06429595 0.05087609 -0.1160161 0.06429595 0.05087609 -0.1372908 0.06429595 0.05087609 -0.1606827 0.06429595 0.05087609 -0.1862481 0.06429595 0.05087609 -0.2140411 0.06429595 0.05087609 -0.2441142 0.06429595 0.05087609 -0.2765176 0.06429595 0.05087609 -0.3113005 0.06429595 0.05087609 -0.3485102 0.06429595 0.05087609 -0.388193 0.06429595 0.05087609 -0.4303934 0.06429595 0.05087609 -0.4751555 0.06429595 0.05087609 -0.5225216 0.06429595 0.05087609 -0.5725335 0.06429595 0.05087609 -0.6252316 0.06429595 0.05087609 -0.6806558 0.06429595 0.05087609 -0.7388448 0.06429595 0.05087609 -0.7998369 0.06429595 0.05087609 -0.8636691 0.06429595 0.05087609 -0.9303782 0.06429595 0.05087609 -1 0.06429595 0.05087609 -0 0.07958143 0.05087609 -0.002418731 0.07958143 0.05087609 -0.005155668 0.07958143 0.05087609 -0.009080105 0.07958143 0.05087609 -0.01434988 0.07958143 0.05087609 -0.02107202 0.07958143 0.05087609 -0.02934285 0.07958143 0.05087609 -0.03925039 0.07958143 0.05087609 -0.05087609 0.07958143 0.05087609 -0.06429595 0.07958143 0.05087609 -0.07958143 0.07958143 0.05087609 -0.0968001 0.07958143 0.05087609 -0.1160161 0.07958143 0.05087609 -0.1372908 0.07958143 0.05087609 -0.1606827 0.07958143 0.05087609 -0.1862481 0.07958143 0.05087609 -0.2140411 0.07958143 0.05087609 -0.2441142 0.07958143 0.05087609 -0.2765176 0.07958143 0.05087609 -0.3113005 0.07958143 0.05087609 -0.3485102 0.07958143 0.05087609 -0.388193 0.07958143 0.05087609 -0.4303934 0.07958143 0.05087609 -0.4751555 0.07958143 0.05087609 -0.5225216 0.07958143 0.05087609 -0.5725335 0.07958143 0.05087609 -0.6252316 0.07958143 0.05087609 -0.6806558 0.07958143 0.05087609 -0.7388448 0.07958143 0.05087609 -0.7998369 0.07958143 0.05087609 -0.8636691 0.07958143 0.05087609 -0.9303782 0.07958143 0.05087609 -1 0.07958143 0.05087609 -0 0.0968001 0.05087609 -0.002418731 0.0968001 0.05087609 -0.005155668 0.0968001 0.05087609 -0.009080105 0.0968001 0.05087609 -0.01434988 0.0968001 0.05087609 -0.02107202 0.0968001 0.05087609 -0.02934285 0.0968001 0.05087609 -0.03925039 0.0968001 0.05087609 -0.05087609 0.0968001 0.05087609 -0.06429595 0.0968001 0.05087609 -0.07958143 0.0968001 0.05087609 -0.0968001 0.0968001 0.05087609 -0.1160161 0.0968001 0.05087609 -0.1372908 0.0968001 0.05087609 -0.1606827 0.0968001 0.05087609 -0.1862481 0.0968001 0.05087609 -0.2140411 0.0968001 0.05087609 -0.2441142 0.0968001 0.05087609 -0.2765176 0.0968001 0.05087609 -0.3113005 0.0968001 0.05087609 -0.3485102 0.0968001 0.05087609 -0.388193 0.0968001 0.05087609 -0.4303934 0.0968001 0.05087609 -0.4751555 0.0968001 0.05087609 -0.5225216 0.0968001 0.05087609 -0.5725335 0.0968001 0.05087609 -0.6252316 0.0968001 0.05087609 -0.6806558 0.0968001 0.05087609 -0.7388448 0.0968001 0.05087609 -0.7998369 0.0968001 0.05087609 -0.8636691 0.0968001 0.05087609 -0.9303782 0.0968001 0.05087609 -1 0.0968001 0.05087609 -0 0.1160161 0.05087609 -0.002418731 0.1160161 0.05087609 -0.005155668 0.1160161 0.05087609 -0.009080105 0.1160161 0.05087609 -0.01434988 0.1160161 0.05087609 -0.02107202 0.1160161 0.05087609 -0.02934285 0.1160161 0.05087609 -0.03925039 0.1160161 0.05087609 -0.05087609 0.1160161 0.05087609 -0.06429595 0.1160161 0.05087609 -0.07958143 0.1160161 0.05087609 -0.0968001 0.1160161 0.05087609 -0.1160161 0.1160161 0.05087609 -0.1372908 0.1160161 0.05087609 -0.1606827 0.1160161 0.05087609 -0.1862481 0.1160161 0.05087609 -0.2140411 0.1160161 0.05087609 -0.2441142 0.1160161 0.05087609 -0.2765176 0.1160161 0.05087609 -0.3113005 0.1160161 0.05087609 -0.3485102 0.1160161 0.05087609 -0.388193 0.1160161 0.05087609 -0.4303934 0.1160161 0.05087609 -0.4751555 0.1160161 0.05087609 -0.5225216 0.1160161 0.05087609 -0.5725335 0.1160161 0.05087609 -0.6252316 0.1160161 0.05087609 -0.6806558 0.1160161 0.05087609 -0.7388448 0.1160161 0.05087609 -0.7998369 0.1160161 0.05087609 -0.8636691 0.1160161 0.05087609 -0.9303782 0.1160161 0.05087609 -1 0.1160161 0.05087609 -0 0.1372908 0.05087609 -0.002418731 0.1372908 0.05087609 -0.005155668 0.1372908 0.05087609 -0.009080105 0.1372908 0.05087609 -0.01434988 0.1372908 0.05087609 -0.02107202 0.1372908 0.05087609 -0.02934285 0.1372908 0.05087609 -0.03925039 0.1372908 0.05087609 -0.05087609 0.1372908 0.05087609 -0.06429595 0.1372908 0.05087609 -0.07958143 0.1372908 0.05087609 -0.0968001 0.1372908 0.05087609 -0.1160161 0.1372908 0.05087609 -0.1372908 0.1372908 0.05087609 -0.1606827 0.1372908 0.05087609 -0.1862481 0.1372908 0.05087609 -0.2140411 0.1372908 0.05087609 -0.2441142 0.1372908 0.05087609 -0.2765176 0.1372908 0.05087609 -0.3113005 0.1372908 0.05087609 -0.3485102 0.1372908 0.05087609 -0.388193 0.1372908 0.05087609 -0.4303934 0.1372908 0.05087609 -0.4751555 0.1372908 0.05087609 -0.5225216 0.1372908 0.05087609 -0.5725335 0.1372908 0.05087609 -0.6252316 0.1372908 0.05087609 -0.6806558 0.1372908 0.05087609 -0.7388448 0.1372908 0.05087609 -0.7998369 0.1372908 0.05087609 -0.8636691 0.1372908 0.05087609 -0.9303782 0.1372908 0.05087609 -1 0.1372908 0.05087609 -0 0.1606827 0.05087609 -0.002418731 0.1606827 0.05087609 -0.005155668 0.1606827 0.05087609 -0.009080105 0.1606827 0.05087609 -0.01434988 0.1606827 0.05087609 -0.02107202 0.1606827 0.05087609 -0.02934285 0.1606827 0.05087609 -0.03925039 0.1606827 0.05087609 -0.05087609 0.1606827 0.05087609 -0.06429595 0.1606827 0.05087609 -0.07958143 0.1606827 0.05087609 -0.0968001 0.1606827 0.05087609 -0.1160161 0.1606827 0.05087609 -0.1372908 0.1606827 0.05087609 -0.1606827 0.1606827 0.05087609 -0.1862481 0.1606827 0.05087609 -0.2140411 0.1606827 0.05087609 -0.2441142 0.1606827 0.05087609 -0.2765176 0.1606827 0.05087609 -0.3113005 0.1606827 0.05087609 -0.3485102 0.1606827 0.05087609 -0.388193 0.1606827 0.05087609 -0.4303934 0.1606827 0.05087609 -0.4751555 0.1606827 0.05087609 -0.5225216 0.1606827 0.05087609 -0.5725335 0.1606827 0.05087609 -0.6252316 0.1606827 0.05087609 -0.6806558 0.1606827 0.05087609 -0.7388448 0.1606827 0.05087609 -0.7998369 0.1606827 0.05087609 -0.8636691 0.1606827 0.05087609 -0.9303782 0.1606827 0.05087609 -1 0.1606827 0.05087609 -0 0.1862481 0.05087609 -0.002418731 0.1862481 0.05087609 -0.005155668 0.1862481 0.05087609 -0.009080105 0.1862481 0.05087609 -0.01434988 0.1862481 0.05087609 -0.02107202 0.1862481 0.05087609 -0.02934285 0.1862481 0.05087609 -0.03925039 0.1862481 0.05087609 -0.05087609 0.1862481 0.05087609 -0.06429595 0.1862481 0.05087609 -0.07958143 0.1862481 0.05087609 -0.0968001 0.1862481 0.05087609 -0.1160161 0.1862481 0.05087609 -0.1372908 0.1862481 0.05087609 -0.1606827 0.1862481 0.05087609 -0.1862481 0.1862481 0.05087609 -0.2140411 0.1862481 0.05087609 -0.2441142 0.1862481 0.05087609 -0.2765176 0.1862481 0.05087609 -0.3113005 0.1862481 0.05087609 -0.3485102 0.1862481 0.05087609 -0.388193 0.1862481 0.05087609 -0.4303934 0.1862481 0.05087609 -0.4751555 0.1862481 0.05087609 -0.5225216 0.1862481 0.05087609 -0.5725335 0.1862481 0.05087609 -0.6252316 0.1862481 0.05087609 -0.6806558 0.1862481 0.05087609 -0.7388448 0.1862481 0.05087609 -0.7998369 0.1862481 0.05087609 -0.8636691 0.1862481 0.05087609 -0.9303782 0.1862481 0.05087609 -1 0.1862481 0.05087609 -0 0.2140411 0.05087609 -0.002418731 0.2140411 0.05087609 -0.005155668 0.2140411 0.05087609 -0.009080105 0.2140411 0.05087609 -0.01434988 0.2140411 0.05087609 -0.02107202 0.2140411 0.05087609 -0.02934285 0.2140411 0.05087609 -0.03925039 0.2140411 0.05087609 -0.05087609 0.2140411 0.05087609 -0.06429595 0.2140411 0.05087609 -0.07958143 0.2140411 0.05087609 -0.0968001 0.2140411 0.05087609 -0.1160161 0.2140411 0.05087609 -0.1372908 0.2140411 0.05087609 -0.1606827 0.2140411 0.05087609 -0.1862481 0.2140411 0.05087609 -0.2140411 0.2140411 0.05087609 -0.2441142 0.2140411 0.05087609 -0.2765176 0.2140411 0.05087609 -0.3113005 0.2140411 0.05087609 -0.3485102 0.2140411 0.05087609 -0.388193 0.2140411 0.05087609 -0.4303934 0.2140411 0.05087609 -0.4751555 0.2140411 0.05087609 -0.5225216 0.2140411 0.05087609 -0.5725335 0.2140411 0.05087609 -0.6252316 0.2140411 0.05087609 -0.6806558 0.2140411 0.05087609 -0.7388448 0.2140411 0.05087609 -0.7998369 0.2140411 0.05087609 -0.8636691 0.2140411 0.05087609 -0.9303782 0.2140411 0.05087609 -1 0.2140411 0.05087609 -0 0.2441142 0.05087609 -0.002418731 0.2441142 0.05087609 -0.005155668 0.2441142 0.05087609 -0.009080105 0.2441142 0.05087609 -0.01434988 0.2441142 0.05087609 -0.02107202 0.2441142 0.05087609 -0.02934285 0.2441142 0.05087609 -0.03925039 0.2441142 0.05087609 -0.05087609 0.2441142 0.05087609 -0.06429595 0.2441142 0.05087609 -0.07958143 0.2441142 0.05087609 -0.0968001 0.2441142 0.05087609 -0.1160161 0.2441142 0.05087609 -0.1372908 0.2441142 0.05087609 -0.1606827 0.2441142 0.05087609 -0.1862481 0.2441142 0.05087609 -0.2140411 0.2441142 0.05087609 -0.2441142 0.2441142 0.05087609 -0.2765176 0.2441142 0.05087609 -0.3113005 0.2441142 0.05087609 -0.3485102 0.2441142 0.05087609 -0.388193 0.2441142 0.05087609 -0.4303934 0.2441142 0.05087609 -0.4751555 0.2441142 0.05087609 -0.5225216 0.2441142 0.05087609 -0.5725335 0.2441142 0.05087609 -0.6252316 0.2441142 0.05087609 -0.6806558 0.2441142 0.05087609 -0.7388448 0.2441142 0.05087609 -0.7998369 0.2441142 0.05087609 -0.8636691 0.2441142 0.05087609 -0.9303782 0.2441142 0.05087609 -1 0.2441142 0.05087609 -0 0.2765176 0.05087609 -0.002418731 0.2765176 0.05087609 -0.005155668 0.2765176 0.05087609 -0.009080105 0.2765176 0.05087609 -0.01434988 0.2765176 0.05087609 -0.02107202 0.2765176 0.05087609 -0.02934285 0.2765176 0.05087609 -0.03925039 0.2765176 0.05087609 -0.05087609 0.2765176 0.05087609 -0.06429595 0.2765176 0.05087609 -0.07958143 0.2765176 0.05087609 -0.0968001 0.2765176 0.05087609 -0.1160161 0.2765176 0.05087609 -0.1372908 0.2765176 0.05087609 -0.1606827 0.2765176 0.05087609 -0.1862481 0.2765176 0.05087609 -0.2140411 0.2765176 0.05087609 -0.2441142 0.2765176 0.05087609 -0.2765176 0.2765176 0.05087609 -0.3113005 0.2765176 0.05087609 -0.3485102 0.2765176 0.05087609 -0.388193 0.2765176 0.05087609 -0.4303934 0.2765176 0.05087609 -0.4751555 0.2765176 0.05087609 -0.5225216 0.2765176 0.05087609 -0.5725335 0.2765176 0.05087609 -0.6252316 0.2765176 0.05087609 -0.6806558 0.2765176 0.05087609 -0.7388448 0.2765176 0.05087609 -0.7998369 0.2765176 0.05087609 -0.8636691 0.2765176 0.05087609 -0.9303782 0.2765176 0.05087609 -1 0.2765176 0.05087609 -0 0.3113005 0.05087609 -0.002418731 0.3113005 0.05087609 -0.005155668 0.3113005 0.05087609 -0.009080105 0.3113005 0.05087609 -0.01434988 0.3113005 0.05087609 -0.02107202 0.3113005 0.05087609 -0.02934285 0.3113005 0.05087609 -0.03925039 0.3113005 0.05087609 -0.05087609 0.3113005 0.05087609 -0.06429595 0.3113005 0.05087609 -0.07958143 0.3113005 0.05087609 -0.0968001 0.3113005 0.05087609 -0.1160161 0.3113005 0.05087609 -0.1372908 0.3113005 0.05087609 -0.1606827 0.3113005 0.05087609 -0.1862481 0.3113005 0.05087609 -0.2140411 0.3113005 0.05087609 -0.2441142 0.3113005 0.05087609 -0.2765176 0.3113005 0.05087609 -0.3113005 0.3113005 0.05087609 -0.3485102 0.3113005 0.05087609 -0.388193 0.3113005 0.05087609 -0.4303934 0.3113005 0.05087609 -0.4751555 0.3113005 0.05087609 -0.5225216 0.3113005 0.05087609 -0.5725335 0.3113005 0.05087609 -0.6252316 0.3113005 0.05087609 -0.6806558 0.3113005 0.05087609 -0.7388448 0.3113005 0.05087609 -0.7998369 0.3113005 0.05087609 -0.8636691 0.3113005 0.05087609 -0.9303782 0.3113005 0.05087609 -1 0.3113005 0.05087609 -0 0.3485102 0.05087609 -0.002418731 0.3485102 0.05087609 -0.005155668 0.3485102 0.05087609 -0.009080105 0.3485102 0.05087609 -0.01434988 0.3485102 0.05087609 -0.02107202 0.3485102 0.05087609 -0.02934285 0.3485102 0.05087609 -0.03925039 0.3485102 0.05087609 -0.05087609 0.3485102 0.05087609 -0.06429595 0.3485102 0.05087609 -0.07958143 0.3485102 0.05087609 -0.0968001 0.3485102 0.05087609 -0.1160161 0.3485102 0.05087609 -0.1372908 0.3485102 0.05087609 -0.1606827 0.3485102 0.05087609 -0.1862481 0.3485102 0.05087609 -0.2140411 0.3485102 0.05087609 -0.2441142 0.3485102 0.05087609 -0.2765176 0.3485102 0.05087609 -0.3113005 0.3485102 0.05087609 -0.3485102 0.3485102 0.05087609 -0.388193 0.3485102 0.05087609 -0.4303934 0.3485102 0.05087609 -0.4751555 0.3485102 0.05087609 -0.5225216 0.3485102 0.05087609 -0.5725335 0.3485102 0.05087609 -0.6252316 0.3485102 0.05087609 -0.6806558 0.3485102 0.05087609 -0.7388448 0.3485102 0.05087609 -0.7998369 0.3485102 0.05087609 -0.8636691 0.3485102 0.05087609 -0.9303782 0.3485102 0.05087609 -1 0.3485102 0.05087609 -0 0.388193 0.05087609 -0.002418731 0.388193 0.05087609 -0.005155668 0.388193 0.05087609 -0.009080105 0.388193 0.05087609 -0.01434988 0.388193 0.05087609 -0.02107202 0.388193 0.05087609 -0.02934285 0.388193 0.05087609 -0.03925039 0.388193 0.05087609 -0.05087609 0.388193 0.05087609 -0.06429595 0.388193 0.05087609 -0.07958143 0.388193 0.05087609 -0.0968001 0.388193 0.05087609 -0.1160161 0.388193 0.05087609 -0.1372908 0.388193 0.05087609 -0.1606827 0.388193 0.05087609 -0.1862481 0.388193 0.05087609 -0.2140411 0.388193 0.05087609 -0.2441142 0.388193 0.05087609 -0.2765176 0.388193 0.05087609 -0.3113005 0.388193 0.05087609 -0.3485102 0.388193 0.05087609 -0.388193 0.388193 0.05087609 -0.4303934 0.388193 0.05087609 -0.4751555 0.388193 0.05087609 -0.5225216 0.388193 0.05087609 -0.5725335 0.388193 0.05087609 -0.6252316 0.388193 0.05087609 -0.6806558 0.388193 0.05087609 -0.7388448 0.388193 0.05087609 -0.7998369 0.388193 0.05087609 -0.8636691 0.388193 0.05087609 -0.9303782 0.388193 0.05087609 -1 0.388193 0.05087609 -0 0.4303934 0.05087609 -0.002418731 0.4303934 0.05087609 -0.005155668 0.4303934 0.05087609 -0.009080105 0.4303934 0.05087609 -0.01434988 0.4303934 0.05087609 -0.02107202 0.4303934 0.05087609 -0.02934285 0.4303934 0.05087609 -0.03925039 0.4303934 0.05087609 -0.05087609 0.4303934 0.05087609 -0.06429595 0.4303934 0.05087609 -0.07958143 0.4303934 0.05087609 -0.0968001 0.4303934 0.05087609 -0.1160161 0.4303934 0.05087609 -0.1372908 0.4303934 0.05087609 -0.1606827 0.4303934 0.05087609 -0.1862481 0.4303934 0.05087609 -0.2140411 0.4303934 0.05087609 -0.2441142 0.4303934 0.05087609 -0.2765176 0.4303934 0.05087609 -0.3113005 0.4303934 0.05087609 -0.3485102 0.4303934 0.05087609 -0.388193 0.4303934 0.05087609 -0.4303934 0.4303934 0.05087609 -0.4751555 0.4303934 0.05087609 -0.5225216 0.4303934 0.05087609 -0.5725335 0.4303934 0.05087609 -0.6252316 0.4303934 0.05087609 -0.6806558 0.4303934 0.05087609 -0.7388448 0.4303934 0.05087609 -0.7998369 0.4303934 0.05087609 -0.8636691 0.4303934 0.05087609 -0.9303782 0.4303934 0.05087609 -1 0.4303934 0.05087609 -0 0.4751555 0.05087609 -0.002418731 0.4751555 0.05087609 -0.005155668 0.4751555 0.05087609 -0.009080105 0.4751555 0.05087609 -0.01434988 0.4751555 0.05087609 -0.02107202 0.4751555 0.05087609 -0.02934285 0.4751555 0.05087609 -0.03925039 0.4751555 0.05087609 -0.05087609 0.4751555 0.05087609 -0.06429595 0.4751555 0.05087609 -0.07958143 0.4751555 0.05087609 -0.0968001 0.4751555 0.05087609 -0.1160161 0.4751555 0.05087609 -0.1372908 0.4751555 0.05087609 -0.1606827 0.4751555 0.05087609 -0.1862481 0.4751555 0.05087609 -0.2140411 0.4751555 0.05087609 -0.2441142 0.4751555 0.05087609 -0.2765176 0.4751555 0.05087609 -0.3113005 0.4751555 0.05087609 -0.3485102 0.4751555 0.05087609 -0.388193 0.4751555 0.05087609 -0.4303934 0.4751555 0.05087609 -0.4751555 0.4751555 0.05087609 -0.5225216 0.4751555 0.05087609 -0.5725335 0.4751555 0.05087609 -0.6252316 0.4751555 0.05087609 -0.6806558 0.4751555 0.05087609 -0.7388448 0.4751555 0.05087609 -0.7998369 0.4751555 0.05087609 -0.8636691 0.4751555 0.05087609 -0.9303782 0.4751555 0.05087609 -1 0.4751555 0.05087609 -0 0.5225216 0.05087609 -0.002418731 0.5225216 0.05087609 -0.005155668 0.5225216 0.05087609 -0.009080105 0.5225216 0.05087609 -0.01434988 0.5225216 0.05087609 -0.02107202 0.5225216 0.05087609 -0.02934285 0.5225216 0.05087609 -0.03925039 0.5225216 0.05087609 -0.05087609 0.5225216 0.05087609 -0.06429595 0.5225216 0.05087609 -0.07958143 0.5225216 0.05087609 -0.0968001 0.5225216 0.05087609 -0.1160161 0.5225216 0.05087609 -0.1372908 0.5225216 0.05087609 -0.1606827 0.5225216 0.05087609 -0.1862481 0.5225216 0.05087609 -0.2140411 0.5225216 0.05087609 -0.2441142 0.5225216 0.05087609 -0.2765176 0.5225216 0.05087609 -0.3113005 0.5225216 0.05087609 -0.3485102 0.5225216 0.05087609 -0.388193 0.5225216 0.05087609 -0.4303934 0.5225216 0.05087609 -0.4751555 0.5225216 0.05087609 -0.5225216 0.5225216 0.05087609 -0.5725335 0.5225216 0.05087609 -0.6252316 0.5225216 0.05087609 -0.6806558 0.5225216 0.05087609 -0.7388448 0.5225216 0.05087609 -0.7998369 0.5225216 0.05087609 -0.8636691 0.5225216 0.05087609 -0.9303782 0.5225216 0.05087609 -1 0.5225216 0.05087609 -0 0.5725335 0.05087609 -0.002418731 0.5725335 0.05087609 -0.005155668 0.5725335 0.05087609 -0.009080105 0.5725335 0.05087609 -0.01434988 0.5725335 0.05087609 -0.02107202 0.5725335 0.05087609 -0.02934285 0.5725335 0.05087609 -0.03925039 0.5725335 0.05087609 -0.05087609 0.5725335 0.05087609 -0.06429595 0.5725335 0.05087609 -0.07958143 0.5725335 0.05087609 -0.0968001 0.5725335 0.05087609 -0.1160161 0.5725335 0.05087609 -0.1372908 0.5725335 0.05087609 -0.1606827 0.5725335 0.05087609 -0.1862481 0.5725335 0.05087609 -0.2140411 0.5725335 0.05087609 -0.2441142 0.5725335 0.05087609 -0.2765176 0.5725335 0.05087609 -0.3113005 0.5725335 0.05087609 -0.3485102 0.5725335 0.05087609 -0.388193 0.5725335 0.05087609 -0.4303934 0.5725335 0.05087609 -0.4751555 0.5725335 0.05087609 -0.5225216 0.5725335 0.05087609 -0.5725335 0.5725335 0.05087609 -0.6252316 0.5725335 0.05087609 -0.6806558 0.5725335 0.05087609 -0.7388448 0.5725335 0.05087609 -0.7998369 0.5725335 0.05087609 -0.8636691 0.5725335 0.05087609 -0.9303782 0.5725335 0.05087609 -1 0.5725335 0.05087609 -0 0.6252316 0.05087609 -0.002418731 0.6252316 0.05087609 -0.005155668 0.6252316 0.05087609 -0.009080105 0.6252316 0.05087609 -0.01434988 0.6252316 0.05087609 -0.02107202 0.6252316 0.05087609 -0.02934285 0.6252316 0.05087609 -0.03925039 0.6252316 0.05087609 -0.05087609 0.6252316 0.05087609 -0.06429595 0.6252316 0.05087609 -0.07958143 0.6252316 0.05087609 -0.0968001 0.6252316 0.05087609 -0.1160161 0.6252316 0.05087609 -0.1372908 0.6252316 0.05087609 -0.1606827 0.6252316 0.05087609 -0.1862481 0.6252316 0.05087609 -0.2140411 0.6252316 0.05087609 -0.2441142 0.6252316 0.05087609 -0.2765176 0.6252316 0.05087609 -0.3113005 0.6252316 0.05087609 -0.3485102 0.6252316 0.05087609 -0.388193 0.6252316 0.05087609 -0.4303934 0.6252316 0.05087609 -0.4751555 0.6252316 0.05087609 -0.5225216 0.6252316 0.05087609 -0.5725335 0.6252316 0.05087609 -0.6252316 0.6252316 0.05087609 -0.6806558 0.6252316 0.05087609 -0.7388448 0.6252316 0.05087609 -0.7998369 0.6252316 0.05087609 -0.8636691 0.6252316 0.05087609 -0.9303782 0.6252316 0.05087609 -1 0.6252316 0.05087609 -0 0.6806558 0.05087609 -0.002418731 0.6806558 0.05087609 -0.005155668 0.6806558 0.05087609 -0.009080105 0.6806558 0.05087609 -0.01434988 0.6806558 0.05087609 -0.02107202 0.6806558 0.05087609 -0.02934285 0.6806558 0.05087609 -0.03925039 0.6806558 0.05087609 -0.05087609 0.6806558 0.05087609 -0.06429595 0.6806558 0.05087609 -0.07958143 0.6806558 0.05087609 -0.0968001 0.6806558 0.05087609 -0.1160161 0.6806558 0.05087609 -0.1372908 0.6806558 0.05087609 -0.1606827 0.6806558 0.05087609 -0.1862481 0.6806558 0.05087609 -0.2140411 0.6806558 0.05087609 -0.2441142 0.6806558 0.05087609 -0.2765176 0.6806558 0.05087609 -0.3113005 0.6806558 0.05087609 -0.3485102 0.6806558 0.05087609 -0.388193 0.6806558 0.05087609 -0.4303934 0.6806558 0.05087609 -0.4751555 0.6806558 0.05087609 -0.5225216 0.6806558 0.05087609 -0.5725335 0.6806558 0.05087609 -0.6252316 0.6806558 0.05087609 -0.6806558 0.6806558 0.05087609 -0.7388448 0.6806558 0.05087609 -0.7998369 0.6806558 0.05087609 -0.8636691 0.6806558 0.05087609 -0.9303782 0.6806558 0.05087609 -1 0.6806558 0.05087609 -0 0.7388448 0.05087609 -0.002418731 0.7388448 0.05087609 -0.005155668 0.7388448 0.05087609 -0.009080105 0.7388448 0.05087609 -0.01434988 0.7388448 0.05087609 -0.02107202 0.7388448 0.05087609 -0.02934285 0.7388448 0.05087609 -0.03925039 0.7388448 0.05087609 -0.05087609 0.7388448 0.05087609 -0.06429595 0.7388448 0.05087609 -0.07958143 0.7388448 0.05087609 -0.0968001 0.7388448 0.05087609 -0.1160161 0.7388448 0.05087609 -0.1372908 0.7388448 0.05087609 -0.1606827 0.7388448 0.05087609 -0.1862481 0.7388448 0.05087609 -0.2140411 0.7388448 0.05087609 -0.2441142 0.7388448 0.05087609 -0.2765176 0.7388448 0.05087609 -0.3113005 0.7388448 0.05087609 -0.3485102 0.7388448 0.05087609 -0.388193 0.7388448 0.05087609 -0.4303934 0.7388448 0.05087609 -0.4751555 0.7388448 0.05087609 -0.5225216 0.7388448 0.05087609 -0.5725335 0.7388448 0.05087609 -0.6252316 0.7388448 0.05087609 -0.6806558 0.7388448 0.05087609 -0.7388448 0.7388448 0.05087609 -0.7998369 0.7388448 0.05087609 -0.8636691 0.7388448 0.05087609 -0.9303782 0.7388448 0.05087609 -1 0.7388448 0.05087609 -0 0.7998369 0.05087609 -0.002418731 0.7998369 0.05087609 -0.005155668 0.7998369 0.05087609 -0.009080105 0.7998369 0.05087609 -0.01434988 0.7998369 0.05087609 -0.02107202 0.7998369 0.05087609 -0.02934285 0.7998369 0.05087609 -0.03925039 0.7998369 0.05087609 -0.05087609 0.7998369 0.05087609 -0.06429595 0.7998369 0.05087609 -0.07958143 0.7998369 0.05087609 -0.0968001 0.7998369 0.05087609 -0.1160161 0.7998369 0.05087609 -0.1372908 0.7998369 0.05087609 -0.1606827 0.7998369 0.05087609 -0.1862481 0.7998369 0.05087609 -0.2140411 0.7998369 0.05087609 -0.2441142 0.7998369 0.05087609 -0.2765176 0.7998369 0.05087609 -0.3113005 0.7998369 0.05087609 -0.3485102 0.7998369 0.05087609 -0.388193 0.7998369 0.05087609 -0.4303934 0.7998369 0.05087609 -0.4751555 0.7998369 0.05087609 -0.5225216 0.7998369 0.05087609 -0.5725335 0.7998369 0.05087609 -0.6252316 0.7998369 0.05087609 -0.6806558 0.7998369 0.05087609 -0.7388448 0.7998369 0.05087609 -0.7998369 0.7998369 0.05087609 -0.8636691 0.7998369 0.05087609 -0.9303782 0.7998369 0.05087609 -1 0.7998369 0.05087609 -0 0.8636691 0.05087609 -0.002418731 0.8636691 0.05087609 -0.005155668 0.8636691 0.05087609 -0.009080105 0.8636691 0.05087609 -0.01434988 0.8636691 0.05087609 -0.02107202 0.8636691 0.05087609 -0.02934285 0.8636691 0.05087609 -0.03925039 0.8636691 0.05087609 -0.05087609 0.8636691 0.05087609 -0.06429595 0.8636691 0.05087609 -0.07958143 0.8636691 0.05087609 -0.0968001 0.8636691 0.05087609 -0.1160161 0.8636691 0.05087609 -0.1372908 0.8636691 0.05087609 -0.1606827 0.8636691 0.05087609 -0.1862481 0.8636691 0.05087609 -0.2140411 0.8636691 0.05087609 -0.2441142 0.8636691 0.05087609 -0.2765176 0.8636691 0.05087609 -0.3113005 0.8636691 0.05087609 -0.3485102 0.8636691 0.05087609 -0.388193 0.8636691 0.05087609 -0.4303934 0.8636691 0.05087609 -0.4751555 0.8636691 0.05087609 -0.5225216 0.8636691 0.05087609 -0.5725335 0.8636691 0.05087609 -0.6252316 0.8636691 0.05087609 -0.6806558 0.8636691 0.05087609 -0.7388448 0.8636691 0.05087609 -0.7998369 0.8636691 0.05087609 -0.8636691 0.8636691 0.05087609 -0.9303782 0.8636691 0.05087609 -1 0.8636691 0.05087609 -0 0.9303782 0.05087609 -0.002418731 0.9303782 0.05087609 -0.005155668 0.9303782 0.05087609 -0.009080105 0.9303782 0.05087609 -0.01434988 0.9303782 0.05087609 -0.02107202 0.9303782 0.05087609 -0.02934285 0.9303782 0.05087609 -0.03925039 0.9303782 0.05087609 -0.05087609 0.9303782 0.05087609 -0.06429595 0.9303782 0.05087609 -0.07958143 0.9303782 0.05087609 -0.0968001 0.9303782 0.05087609 -0.1160161 0.9303782 0.05087609 -0.1372908 0.9303782 0.05087609 -0.1606827 0.9303782 0.05087609 -0.1862481 0.9303782 0.05087609 -0.2140411 0.9303782 0.05087609 -0.2441142 0.9303782 0.05087609 -0.2765176 0.9303782 0.05087609 -0.3113005 0.9303782 0.05087609 -0.3485102 0.9303782 0.05087609 -0.388193 0.9303782 0.05087609 -0.4303934 0.9303782 0.05087609 -0.4751555 0.9303782 0.05087609 -0.5225216 0.9303782 0.05087609 -0.5725335 0.9303782 0.05087609 -0.6252316 0.9303782 0.05087609 -0.6806558 0.9303782 0.05087609 -0.7388448 0.9303782 0.05087609 -0.7998369 0.9303782 0.05087609 -0.8636691 0.9303782 0.05087609 -0.9303782 0.9303782 0.05087609 -1 0.9303782 0.05087609 -0 1 0.05087609 -0.002418731 1 0.05087609 -0.005155668 1 0.05087609 -0.009080105 1 0.05087609 -0.01434988 1 0.05087609 -0.02107202 1 0.05087609 -0.02934285 1 0.05087609 -0.03925039 1 0.05087609 -0.05087609 1 0.05087609 -0.06429595 1 0.05087609 -0.07958143 1 0.05087609 -0.0968001 1 0.05087609 -0.1160161 1 0.05087609 -0.1372908 1 0.05087609 -0.1606827 1 0.05087609 -0.1862481 1 0.05087609 -0.2140411 1 0.05087609 -0.2441142 1 0.05087609 -0.2765176 1 0.05087609 -0.3113005 1 0.05087609 -0.3485102 1 0.05087609 -0.388193 1 0.05087609 -0.4303934 1 0.05087609 -0.4751555 1 0.05087609 -0.5225216 1 0.05087609 -0.5725335 1 0.05087609 -0.6252316 1 0.05087609 -0.6806558 1 0.05087609 -0.7388448 1 0.05087609 -0.7998369 1 0.05087609 -0.8636691 1 0.05087609 -0.9303782 1 0.05087609 -1 1 0.05087609 -0 0 0.06429595 -0.002418731 0 0.06429595 -0.005155668 0 0.06429595 -0.009080105 0 0.06429595 -0.01434988 0 0.06429595 -0.02107202 0 0.06429595 -0.02934285 0 0.06429595 -0.03925039 0 0.06429595 -0.05087609 0 0.06429595 -0.06429595 0 0.06429595 -0.07958143 0 0.06429595 -0.0968001 0 0.06429595 -0.1160161 0 0.06429595 -0.1372908 0 0.06429595 -0.1606827 0 0.06429595 -0.1862481 0 0.06429595 -0.2140411 0 0.06429595 -0.2441142 0 0.06429595 -0.2765176 0 0.06429595 -0.3113005 0 0.06429595 -0.3485102 0 0.06429595 -0.388193 0 0.06429595 -0.4303934 0 0.06429595 -0.4751555 0 0.06429595 -0.5225216 0 0.06429595 -0.5725335 0 0.06429595 -0.6252316 0 0.06429595 -0.6806558 0 0.06429595 -0.7388448 0 0.06429595 -0.7998369 0 0.06429595 -0.8636691 0 0.06429595 -0.9303782 0 0.06429595 -1 0 0.06429595 -0 0.002418731 0.06429595 -0.002418731 0.002418731 0.06429595 -0.005155668 0.002418731 0.06429595 -0.009080105 0.002418731 0.06429595 -0.01434988 0.002418731 0.06429595 -0.02107202 0.002418731 0.06429595 -0.02934285 0.002418731 0.06429595 -0.03925039 0.002418731 0.06429595 -0.05087609 0.002418731 0.06429595 -0.06429595 0.002418731 0.06429595 -0.07958143 0.002418731 0.06429595 -0.0968001 0.002418731 0.06429595 -0.1160161 0.002418731 0.06429595 -0.1372908 0.002418731 0.06429595 -0.1606827 0.002418731 0.06429595 -0.1862481 0.002418731 0.06429595 -0.2140411 0.002418731 0.06429595 -0.2441142 0.002418731 0.06429595 -0.2765176 0.002418731 0.06429595 -0.3113005 0.002418731 0.06429595 -0.3485102 0.002418731 0.06429595 -0.388193 0.002418731 0.06429595 -0.4303934 0.002418731 0.06429595 -0.4751555 0.002418731 0.06429595 -0.5225216 0.002418731 0.06429595 -0.5725335 0.002418731 0.06429595 -0.6252316 0.002418731 0.06429595 -0.6806558 0.002418731 0.06429595 -0.7388448 0.002418731 0.06429595 -0.7998369 0.002418731 0.06429595 -0.8636691 0.002418731 0.06429595 -0.9303782 0.002418731 0.06429595 -1 0.002418731 0.06429595 -0 0.005155668 0.06429595 -0.002418731 0.005155668 0.06429595 -0.005155668 0.005155668 0.06429595 -0.009080105 0.005155668 0.06429595 -0.01434988 0.005155668 0.06429595 -0.02107202 0.005155668 0.06429595 -0.02934285 0.005155668 0.06429595 -0.03925039 0.005155668 0.06429595 -0.05087609 0.005155668 0.06429595 -0.06429595 0.005155668 0.06429595 -0.07958143 0.005155668 0.06429595 -0.0968001 0.005155668 0.06429595 -0.1160161 0.005155668 0.06429595 -0.1372908 0.005155668 0.06429595 -0.1606827 0.005155668 0.06429595 -0.1862481 0.005155668 0.06429595 -0.2140411 0.005155668 0.06429595 -0.2441142 0.005155668 0.06429595 -0.2765176 0.005155668 0.06429595 -0.3113005 0.005155668 0.06429595 -0.3485102 0.005155668 0.06429595 -0.388193 0.005155668 0.06429595 -0.4303934 0.005155668 0.06429595 -0.4751555 0.005155668 0.06429595 -0.5225216 0.005155668 0.06429595 -0.5725335 0.005155668 0.06429595 -0.6252316 0.005155668 0.06429595 -0.6806558 0.005155668 0.06429595 -0.7388448 0.005155668 0.06429595 -0.7998369 0.005155668 0.06429595 -0.8636691 0.005155668 0.06429595 -0.9303782 0.005155668 0.06429595 -1 0.005155668 0.06429595 -0 0.009080105 0.06429595 -0.002418731 0.009080105 0.06429595 -0.005155668 0.009080105 0.06429595 -0.009080105 0.009080105 0.06429595 -0.01434988 0.009080105 0.06429595 -0.02107202 0.009080105 0.06429595 -0.02934285 0.009080105 0.06429595 -0.03925039 0.009080105 0.06429595 -0.05087609 0.009080105 0.06429595 -0.06429595 0.009080105 0.06429595 -0.07958143 0.009080105 0.06429595 -0.0968001 0.009080105 0.06429595 -0.1160161 0.009080105 0.06429595 -0.1372908 0.009080105 0.06429595 -0.1606827 0.009080105 0.06429595 -0.1862481 0.009080105 0.06429595 -0.2140411 0.009080105 0.06429595 -0.2441142 0.009080105 0.06429595 -0.2765176 0.009080105 0.06429595 -0.3113005 0.009080105 0.06429595 -0.3485102 0.009080105 0.06429595 -0.388193 0.009080105 0.06429595 -0.4303934 0.009080105 0.06429595 -0.4751555 0.009080105 0.06429595 -0.5225216 0.009080105 0.06429595 -0.5725335 0.009080105 0.06429595 -0.6252316 0.009080105 0.06429595 -0.6806558 0.009080105 0.06429595 -0.7388448 0.009080105 0.06429595 -0.7998369 0.009080105 0.06429595 -0.8636691 0.009080105 0.06429595 -0.9303782 0.009080105 0.06429595 -1 0.009080105 0.06429595 -0 0.01434988 0.06429595 -0.002418731 0.01434988 0.06429595 -0.005155668 0.01434988 0.06429595 -0.009080105 0.01434988 0.06429595 -0.01434988 0.01434988 0.06429595 -0.02107202 0.01434988 0.06429595 -0.02934285 0.01434988 0.06429595 -0.03925039 0.01434988 0.06429595 -0.05087609 0.01434988 0.06429595 -0.06429595 0.01434988 0.06429595 -0.07958143 0.01434988 0.06429595 -0.0968001 0.01434988 0.06429595 -0.1160161 0.01434988 0.06429595 -0.1372908 0.01434988 0.06429595 -0.1606827 0.01434988 0.06429595 -0.1862481 0.01434988 0.06429595 -0.2140411 0.01434988 0.06429595 -0.2441142 0.01434988 0.06429595 -0.2765176 0.01434988 0.06429595 -0.3113005 0.01434988 0.06429595 -0.3485102 0.01434988 0.06429595 -0.388193 0.01434988 0.06429595 -0.4303934 0.01434988 0.06429595 -0.4751555 0.01434988 0.06429595 -0.5225216 0.01434988 0.06429595 -0.5725335 0.01434988 0.06429595 -0.6252316 0.01434988 0.06429595 -0.6806558 0.01434988 0.06429595 -0.7388448 0.01434988 0.06429595 -0.7998369 0.01434988 0.06429595 -0.8636691 0.01434988 0.06429595 -0.9303782 0.01434988 0.06429595 -1 0.01434988 0.06429595 -0 0.02107202 0.06429595 -0.002418731 0.02107202 0.06429595 -0.005155668 0.02107202 0.06429595 -0.009080105 0.02107202 0.06429595 -0.01434988 0.02107202 0.06429595 -0.02107202 0.02107202 0.06429595 -0.02934285 0.02107202 0.06429595 -0.03925039 0.02107202 0.06429595 -0.05087609 0.02107202 0.06429595 -0.06429595 0.02107202 0.06429595 -0.07958143 0.02107202 0.06429595 -0.0968001 0.02107202 0.06429595 -0.1160161 0.02107202 0.06429595 -0.1372908 0.02107202 0.06429595 -0.1606827 0.02107202 0.06429595 -0.1862481 0.02107202 0.06429595 -0.2140411 0.02107202 0.06429595 -0.2441142 0.02107202 0.06429595 -0.2765176 0.02107202 0.06429595 -0.3113005 0.02107202 0.06429595 -0.3485102 0.02107202 0.06429595 -0.388193 0.02107202 0.06429595 -0.4303934 0.02107202 0.06429595 -0.4751555 0.02107202 0.06429595 -0.5225216 0.02107202 0.06429595 -0.5725335 0.02107202 0.06429595 -0.6252316 0.02107202 0.06429595 -0.6806558 0.02107202 0.06429595 -0.7388448 0.02107202 0.06429595 -0.7998369 0.02107202 0.06429595 -0.8636691 0.02107202 0.06429595 -0.9303782 0.02107202 0.06429595 -1 0.02107202 0.06429595 -0 0.02934285 0.06429595 -0.002418731 0.02934285 0.06429595 -0.005155668 0.02934285 0.06429595 -0.009080105 0.02934285 0.06429595 -0.01434988 0.02934285 0.06429595 -0.02107202 0.02934285 0.06429595 -0.02934285 0.02934285 0.06429595 -0.03925039 0.02934285 0.06429595 -0.05087609 0.02934285 0.06429595 -0.06429595 0.02934285 0.06429595 -0.07958143 0.02934285 0.06429595 -0.0968001 0.02934285 0.06429595 -0.1160161 0.02934285 0.06429595 -0.1372908 0.02934285 0.06429595 -0.1606827 0.02934285 0.06429595 -0.1862481 0.02934285 0.06429595 -0.2140411 0.02934285 0.06429595 -0.2441142 0.02934285 0.06429595 -0.2765176 0.02934285 0.06429595 -0.3113005 0.02934285 0.06429595 -0.3485102 0.02934285 0.06429595 -0.388193 0.02934285 0.06429595 -0.4303934 0.02934285 0.06429595 -0.4751555 0.02934285 0.06429595 -0.5225216 0.02934285 0.06429595 -0.5725335 0.02934285 0.06429595 -0.6252316 0.02934285 0.06429595 -0.6806558 0.02934285 0.06429595 -0.7388448 0.02934285 0.06429595 -0.7998369 0.02934285 0.06429595 -0.8636691 0.02934285 0.06429595 -0.9303782 0.02934285 0.06429595 -1 0.02934285 0.06429595 -0 0.03925039 0.06429595 -0.002418731 0.03925039 0.06429595 -0.005155668 0.03925039 0.06429595 -0.009080105 0.03925039 0.06429595 -0.01434988 0.03925039 0.06429595 -0.02107202 0.03925039 0.06429595 -0.02934285 0.03925039 0.06429595 -0.03925039 0.03925039 0.06429595 -0.05087609 0.03925039 0.06429595 -0.06429595 0.03925039 0.06429595 -0.07958143 0.03925039 0.06429595 -0.0968001 0.03925039 0.06429595 -0.1160161 0.03925039 0.06429595 -0.1372908 0.03925039 0.06429595 -0.1606827 0.03925039 0.06429595 -0.1862481 0.03925039 0.06429595 -0.2140411 0.03925039 0.06429595 -0.2441142 0.03925039 0.06429595 -0.2765176 0.03925039 0.06429595 -0.3113005 0.03925039 0.06429595 -0.3485102 0.03925039 0.06429595 -0.388193 0.03925039 0.06429595 -0.4303934 0.03925039 0.06429595 -0.4751555 0.03925039 0.06429595 -0.5225216 0.03925039 0.06429595 -0.5725335 0.03925039 0.06429595 -0.6252316 0.03925039 0.06429595 -0.6806558 0.03925039 0.06429595 -0.7388448 0.03925039 0.06429595 -0.7998369 0.03925039 0.06429595 -0.8636691 0.03925039 0.06429595 -0.9303782 0.03925039 0.06429595 -1 0.03925039 0.06429595 -0 0.05087609 0.06429595 -0.002418731 0.05087609 0.06429595 -0.005155668 0.05087609 0.06429595 -0.009080105 0.05087609 0.06429595 -0.01434988 0.05087609 0.06429595 -0.02107202 0.05087609 0.06429595 -0.02934285 0.05087609 0.06429595 -0.03925039 0.05087609 0.06429595 -0.05087609 0.05087609 0.06429595 -0.06429595 0.05087609 0.06429595 -0.07958143 0.05087609 0.06429595 -0.0968001 0.05087609 0.06429595 -0.1160161 0.05087609 0.06429595 -0.1372908 0.05087609 0.06429595 -0.1606827 0.05087609 0.06429595 -0.1862481 0.05087609 0.06429595 -0.2140411 0.05087609 0.06429595 -0.2441142 0.05087609 0.06429595 -0.2765176 0.05087609 0.06429595 -0.3113005 0.05087609 0.06429595 -0.3485102 0.05087609 0.06429595 -0.388193 0.05087609 0.06429595 -0.4303934 0.05087609 0.06429595 -0.4751555 0.05087609 0.06429595 -0.5225216 0.05087609 0.06429595 -0.5725335 0.05087609 0.06429595 -0.6252316 0.05087609 0.06429595 -0.6806558 0.05087609 0.06429595 -0.7388448 0.05087609 0.06429595 -0.7998369 0.05087609 0.06429595 -0.8636691 0.05087609 0.06429595 -0.9303782 0.05087609 0.06429595 -1 0.05087609 0.06429595 -0 0.06429595 0.06429595 -0.002418731 0.06429595 0.06429595 -0.005155668 0.06429595 0.06429595 -0.009080105 0.06429595 0.06429595 -0.01434988 0.06429595 0.06429595 -0.02107202 0.06429595 0.06429595 -0.02934285 0.06429595 0.06429595 -0.03925039 0.06429595 0.06429595 -0.05087609 0.06429595 0.06429595 -0.06429595 0.06429595 0.06429595 -0.07958143 0.06429595 0.06429595 -0.0968001 0.06429595 0.06429595 -0.1160161 0.06429595 0.06429595 -0.1372908 0.06429595 0.06429595 -0.1606827 0.06429595 0.06429595 -0.1862481 0.06429595 0.06429595 -0.2140411 0.06429595 0.06429595 -0.2441142 0.06429595 0.06429595 -0.2765176 0.06429595 0.06429595 -0.3113005 0.06429595 0.06429595 -0.3485102 0.06429595 0.06429595 -0.388193 0.06429595 0.06429595 -0.4303934 0.06429595 0.06429595 -0.4751555 0.06429595 0.06429595 -0.5225216 0.06429595 0.06429595 -0.5725335 0.06429595 0.06429595 -0.6252316 0.06429595 0.06429595 -0.6806558 0.06429595 0.06429595 -0.7388448 0.06429595 0.06429595 -0.7998369 0.06429595 0.06429595 -0.8636691 0.06429595 0.06429595 -0.9303782 0.06429595 0.06429595 -1 0.06429595 0.06429595 -0 0.07958143 0.06429595 -0.002418731 0.07958143 0.06429595 -0.005155668 0.07958143 0.06429595 -0.009080105 0.07958143 0.06429595 -0.01434988 0.07958143 0.06429595 -0.02107202 0.07958143 0.06429595 -0.02934285 0.07958143 0.06429595 -0.03925039 0.07958143 0.06429595 -0.05087609 0.07958143 0.06429595 -0.06429595 0.07958143 0.06429595 -0.07958143 0.07958143 0.06429595 -0.0968001 0.07958143 0.06429595 -0.1160161 0.07958143 0.06429595 -0.1372908 0.07958143 0.06429595 -0.1606827 0.07958143 0.06429595 -0.1862481 0.07958143 0.06429595 -0.2140411 0.07958143 0.06429595 -0.2441142 0.07958143 0.06429595 -0.2765176 0.07958143 0.06429595 -0.3113005 0.07958143 0.06429595 -0.3485102 0.07958143 0.06429595 -0.388193 0.07958143 0.06429595 -0.4303934 0.07958143 0.06429595 -0.4751555 0.07958143 0.06429595 -0.5225216 0.07958143 0.06429595 -0.5725335 0.07958143 0.06429595 -0.6252316 0.07958143 0.06429595 -0.6806558 0.07958143 0.06429595 -0.7388448 0.07958143 0.06429595 -0.7998369 0.07958143 0.06429595 -0.8636691 0.07958143 0.06429595 -0.9303782 0.07958143 0.06429595 -1 0.07958143 0.06429595 -0 0.0968001 0.06429595 -0.002418731 0.0968001 0.06429595 -0.005155668 0.0968001 0.06429595 -0.009080105 0.0968001 0.06429595 -0.01434988 0.0968001 0.06429595 -0.02107202 0.0968001 0.06429595 -0.02934285 0.0968001 0.06429595 -0.03925039 0.0968001 0.06429595 -0.05087609 0.0968001 0.06429595 -0.06429595 0.0968001 0.06429595 -0.07958143 0.0968001 0.06429595 -0.0968001 0.0968001 0.06429595 -0.1160161 0.0968001 0.06429595 -0.1372908 0.0968001 0.06429595 -0.1606827 0.0968001 0.06429595 -0.1862481 0.0968001 0.06429595 -0.2140411 0.0968001 0.06429595 -0.2441142 0.0968001 0.06429595 -0.2765176 0.0968001 0.06429595 -0.3113005 0.0968001 0.06429595 -0.3485102 0.0968001 0.06429595 -0.388193 0.0968001 0.06429595 -0.4303934 0.0968001 0.06429595 -0.4751555 0.0968001 0.06429595 -0.5225216 0.0968001 0.06429595 -0.5725335 0.0968001 0.06429595 -0.6252316 0.0968001 0.06429595 -0.6806558 0.0968001 0.06429595 -0.7388448 0.0968001 0.06429595 -0.7998369 0.0968001 0.06429595 -0.8636691 0.0968001 0.06429595 -0.9303782 0.0968001 0.06429595 -1 0.0968001 0.06429595 -0 0.1160161 0.06429595 -0.002418731 0.1160161 0.06429595 -0.005155668 0.1160161 0.06429595 -0.009080105 0.1160161 0.06429595 -0.01434988 0.1160161 0.06429595 -0.02107202 0.1160161 0.06429595 -0.02934285 0.1160161 0.06429595 -0.03925039 0.1160161 0.06429595 -0.05087609 0.1160161 0.06429595 -0.06429595 0.1160161 0.06429595 -0.07958143 0.1160161 0.06429595 -0.0968001 0.1160161 0.06429595 -0.1160161 0.1160161 0.06429595 -0.1372908 0.1160161 0.06429595 -0.1606827 0.1160161 0.06429595 -0.1862481 0.1160161 0.06429595 -0.2140411 0.1160161 0.06429595 -0.2441142 0.1160161 0.06429595 -0.2765176 0.1160161 0.06429595 -0.3113005 0.1160161 0.06429595 -0.3485102 0.1160161 0.06429595 -0.388193 0.1160161 0.06429595 -0.4303934 0.1160161 0.06429595 -0.4751555 0.1160161 0.06429595 -0.5225216 0.1160161 0.06429595 -0.5725335 0.1160161 0.06429595 -0.6252316 0.1160161 0.06429595 -0.6806558 0.1160161 0.06429595 -0.7388448 0.1160161 0.06429595 -0.7998369 0.1160161 0.06429595 -0.8636691 0.1160161 0.06429595 -0.9303782 0.1160161 0.06429595 -1 0.1160161 0.06429595 -0 0.1372908 0.06429595 -0.002418731 0.1372908 0.06429595 -0.005155668 0.1372908 0.06429595 -0.009080105 0.1372908 0.06429595 -0.01434988 0.1372908 0.06429595 -0.02107202 0.1372908 0.06429595 -0.02934285 0.1372908 0.06429595 -0.03925039 0.1372908 0.06429595 -0.05087609 0.1372908 0.06429595 -0.06429595 0.1372908 0.06429595 -0.07958143 0.1372908 0.06429595 -0.0968001 0.1372908 0.06429595 -0.1160161 0.1372908 0.06429595 -0.1372908 0.1372908 0.06429595 -0.1606827 0.1372908 0.06429595 -0.1862481 0.1372908 0.06429595 -0.2140411 0.1372908 0.06429595 -0.2441142 0.1372908 0.06429595 -0.2765176 0.1372908 0.06429595 -0.3113005 0.1372908 0.06429595 -0.3485102 0.1372908 0.06429595 -0.388193 0.1372908 0.06429595 -0.4303934 0.1372908 0.06429595 -0.4751555 0.1372908 0.06429595 -0.5225216 0.1372908 0.06429595 -0.5725335 0.1372908 0.06429595 -0.6252316 0.1372908 0.06429595 -0.6806558 0.1372908 0.06429595 -0.7388448 0.1372908 0.06429595 -0.7998369 0.1372908 0.06429595 -0.8636691 0.1372908 0.06429595 -0.9303782 0.1372908 0.06429595 -1 0.1372908 0.06429595 -0 0.1606827 0.06429595 -0.002418731 0.1606827 0.06429595 -0.005155668 0.1606827 0.06429595 -0.009080105 0.1606827 0.06429595 -0.01434988 0.1606827 0.06429595 -0.02107202 0.1606827 0.06429595 -0.02934285 0.1606827 0.06429595 -0.03925039 0.1606827 0.06429595 -0.05087609 0.1606827 0.06429595 -0.06429595 0.1606827 0.06429595 -0.07958143 0.1606827 0.06429595 -0.0968001 0.1606827 0.06429595 -0.1160161 0.1606827 0.06429595 -0.1372908 0.1606827 0.06429595 -0.1606827 0.1606827 0.06429595 -0.1862481 0.1606827 0.06429595 -0.2140411 0.1606827 0.06429595 -0.2441142 0.1606827 0.06429595 -0.2765176 0.1606827 0.06429595 -0.3113005 0.1606827 0.06429595 -0.3485102 0.1606827 0.06429595 -0.388193 0.1606827 0.06429595 -0.4303934 0.1606827 0.06429595 -0.4751555 0.1606827 0.06429595 -0.5225216 0.1606827 0.06429595 -0.5725335 0.1606827 0.06429595 -0.6252316 0.1606827 0.06429595 -0.6806558 0.1606827 0.06429595 -0.7388448 0.1606827 0.06429595 -0.7998369 0.1606827 0.06429595 -0.8636691 0.1606827 0.06429595 -0.9303782 0.1606827 0.06429595 -1 0.1606827 0.06429595 -0 0.1862481 0.06429595 -0.002418731 0.1862481 0.06429595 -0.005155668 0.1862481 0.06429595 -0.009080105 0.1862481 0.06429595 -0.01434988 0.1862481 0.06429595 -0.02107202 0.1862481 0.06429595 -0.02934285 0.1862481 0.06429595 -0.03925039 0.1862481 0.06429595 -0.05087609 0.1862481 0.06429595 -0.06429595 0.1862481 0.06429595 -0.07958143 0.1862481 0.06429595 -0.0968001 0.1862481 0.06429595 -0.1160161 0.1862481 0.06429595 -0.1372908 0.1862481 0.06429595 -0.1606827 0.1862481 0.06429595 -0.1862481 0.1862481 0.06429595 -0.2140411 0.1862481 0.06429595 -0.2441142 0.1862481 0.06429595 -0.2765176 0.1862481 0.06429595 -0.3113005 0.1862481 0.06429595 -0.3485102 0.1862481 0.06429595 -0.388193 0.1862481 0.06429595 -0.4303934 0.1862481 0.06429595 -0.4751555 0.1862481 0.06429595 -0.5225216 0.1862481 0.06429595 -0.5725335 0.1862481 0.06429595 -0.6252316 0.1862481 0.06429595 -0.6806558 0.1862481 0.06429595 -0.7388448 0.1862481 0.06429595 -0.7998369 0.1862481 0.06429595 -0.8636691 0.1862481 0.06429595 -0.9303782 0.1862481 0.06429595 -1 0.1862481 0.06429595 -0 0.2140411 0.06429595 -0.002418731 0.2140411 0.06429595 -0.005155668 0.2140411 0.06429595 -0.009080105 0.2140411 0.06429595 -0.01434988 0.2140411 0.06429595 -0.02107202 0.2140411 0.06429595 -0.02934285 0.2140411 0.06429595 -0.03925039 0.2140411 0.06429595 -0.05087609 0.2140411 0.06429595 -0.06429595 0.2140411 0.06429595 -0.07958143 0.2140411 0.06429595 -0.0968001 0.2140411 0.06429595 -0.1160161 0.2140411 0.06429595 -0.1372908 0.2140411 0.06429595 -0.1606827 0.2140411 0.06429595 -0.1862481 0.2140411 0.06429595 -0.2140411 0.2140411 0.06429595 -0.2441142 0.2140411 0.06429595 -0.2765176 0.2140411 0.06429595 -0.3113005 0.2140411 0.06429595 -0.3485102 0.2140411 0.06429595 -0.388193 0.2140411 0.06429595 -0.4303934 0.2140411 0.06429595 -0.4751555 0.2140411 0.06429595 -0.5225216 0.2140411 0.06429595 -0.5725335 0.2140411 0.06429595 -0.6252316 0.2140411 0.06429595 -0.6806558 0.2140411 0.06429595 -0.7388448 0.2140411 0.06429595 -0.7998369 0.2140411 0.06429595 -0.8636691 0.2140411 0.06429595 -0.9303782 0.2140411 0.06429595 -1 0.2140411 0.06429595 -0 0.2441142 0.06429595 -0.002418731 0.2441142 0.06429595 -0.005155668 0.2441142 0.06429595 -0.009080105 0.2441142 0.06429595 -0.01434988 0.2441142 0.06429595 -0.02107202 0.2441142 0.06429595 -0.02934285 0.2441142 0.06429595 -0.03925039 0.2441142 0.06429595 -0.05087609 0.2441142 0.06429595 -0.06429595 0.2441142 0.06429595 -0.07958143 0.2441142 0.06429595 -0.0968001 0.2441142 0.06429595 -0.1160161 0.2441142 0.06429595 -0.1372908 0.2441142 0.06429595 -0.1606827 0.2441142 0.06429595 -0.1862481 0.2441142 0.06429595 -0.2140411 0.2441142 0.06429595 -0.2441142 0.2441142 0.06429595 -0.2765176 0.2441142 0.06429595 -0.3113005 0.2441142 0.06429595 -0.3485102 0.2441142 0.06429595 -0.388193 0.2441142 0.06429595 -0.4303934 0.2441142 0.06429595 -0.4751555 0.2441142 0.06429595 -0.5225216 0.2441142 0.06429595 -0.5725335 0.2441142 0.06429595 -0.6252316 0.2441142 0.06429595 -0.6806558 0.2441142 0.06429595 -0.7388448 0.2441142 0.06429595 -0.7998369 0.2441142 0.06429595 -0.8636691 0.2441142 0.06429595 -0.9303782 0.2441142 0.06429595 -1 0.2441142 0.06429595 -0 0.2765176 0.06429595 -0.002418731 0.2765176 0.06429595 -0.005155668 0.2765176 0.06429595 -0.009080105 0.2765176 0.06429595 -0.01434988 0.2765176 0.06429595 -0.02107202 0.2765176 0.06429595 -0.02934285 0.2765176 0.06429595 -0.03925039 0.2765176 0.06429595 -0.05087609 0.2765176 0.06429595 -0.06429595 0.2765176 0.06429595 -0.07958143 0.2765176 0.06429595 -0.0968001 0.2765176 0.06429595 -0.1160161 0.2765176 0.06429595 -0.1372908 0.2765176 0.06429595 -0.1606827 0.2765176 0.06429595 -0.1862481 0.2765176 0.06429595 -0.2140411 0.2765176 0.06429595 -0.2441142 0.2765176 0.06429595 -0.2765176 0.2765176 0.06429595 -0.3113005 0.2765176 0.06429595 -0.3485102 0.2765176 0.06429595 -0.388193 0.2765176 0.06429595 -0.4303934 0.2765176 0.06429595 -0.4751555 0.2765176 0.06429595 -0.5225216 0.2765176 0.06429595 -0.5725335 0.2765176 0.06429595 -0.6252316 0.2765176 0.06429595 -0.6806558 0.2765176 0.06429595 -0.7388448 0.2765176 0.06429595 -0.7998369 0.2765176 0.06429595 -0.8636691 0.2765176 0.06429595 -0.9303782 0.2765176 0.06429595 -1 0.2765176 0.06429595 -0 0.3113005 0.06429595 -0.002418731 0.3113005 0.06429595 -0.005155668 0.3113005 0.06429595 -0.009080105 0.3113005 0.06429595 -0.01434988 0.3113005 0.06429595 -0.02107202 0.3113005 0.06429595 -0.02934285 0.3113005 0.06429595 -0.03925039 0.3113005 0.06429595 -0.05087609 0.3113005 0.06429595 -0.06429595 0.3113005 0.06429595 -0.07958143 0.3113005 0.06429595 -0.0968001 0.3113005 0.06429595 -0.1160161 0.3113005 0.06429595 -0.1372908 0.3113005 0.06429595 -0.1606827 0.3113005 0.06429595 -0.1862481 0.3113005 0.06429595 -0.2140411 0.3113005 0.06429595 -0.2441142 0.3113005 0.06429595 -0.2765176 0.3113005 0.06429595 -0.3113005 0.3113005 0.06429595 -0.3485102 0.3113005 0.06429595 -0.388193 0.3113005 0.06429595 -0.4303934 0.3113005 0.06429595 -0.4751555 0.3113005 0.06429595 -0.5225216 0.3113005 0.06429595 -0.5725335 0.3113005 0.06429595 -0.6252316 0.3113005 0.06429595 -0.6806558 0.3113005 0.06429595 -0.7388448 0.3113005 0.06429595 -0.7998369 0.3113005 0.06429595 -0.8636691 0.3113005 0.06429595 -0.9303782 0.3113005 0.06429595 -1 0.3113005 0.06429595 -0 0.3485102 0.06429595 -0.002418731 0.3485102 0.06429595 -0.005155668 0.3485102 0.06429595 -0.009080105 0.3485102 0.06429595 -0.01434988 0.3485102 0.06429595 -0.02107202 0.3485102 0.06429595 -0.02934285 0.3485102 0.06429595 -0.03925039 0.3485102 0.06429595 -0.05087609 0.3485102 0.06429595 -0.06429595 0.3485102 0.06429595 -0.07958143 0.3485102 0.06429595 -0.0968001 0.3485102 0.06429595 -0.1160161 0.3485102 0.06429595 -0.1372908 0.3485102 0.06429595 -0.1606827 0.3485102 0.06429595 -0.1862481 0.3485102 0.06429595 -0.2140411 0.3485102 0.06429595 -0.2441142 0.3485102 0.06429595 -0.2765176 0.3485102 0.06429595 -0.3113005 0.3485102 0.06429595 -0.3485102 0.3485102 0.06429595 -0.388193 0.3485102 0.06429595 -0.4303934 0.3485102 0.06429595 -0.4751555 0.3485102 0.06429595 -0.5225216 0.3485102 0.06429595 -0.5725335 0.3485102 0.06429595 -0.6252316 0.3485102 0.06429595 -0.6806558 0.3485102 0.06429595 -0.7388448 0.3485102 0.06429595 -0.7998369 0.3485102 0.06429595 -0.8636691 0.3485102 0.06429595 -0.9303782 0.3485102 0.06429595 -1 0.3485102 0.06429595 -0 0.388193 0.06429595 -0.002418731 0.388193 0.06429595 -0.005155668 0.388193 0.06429595 -0.009080105 0.388193 0.06429595 -0.01434988 0.388193 0.06429595 -0.02107202 0.388193 0.06429595 -0.02934285 0.388193 0.06429595 -0.03925039 0.388193 0.06429595 -0.05087609 0.388193 0.06429595 -0.06429595 0.388193 0.06429595 -0.07958143 0.388193 0.06429595 -0.0968001 0.388193 0.06429595 -0.1160161 0.388193 0.06429595 -0.1372908 0.388193 0.06429595 -0.1606827 0.388193 0.06429595 -0.1862481 0.388193 0.06429595 -0.2140411 0.388193 0.06429595 -0.2441142 0.388193 0.06429595 -0.2765176 0.388193 0.06429595 -0.3113005 0.388193 0.06429595 -0.3485102 0.388193 0.06429595 -0.388193 0.388193 0.06429595 -0.4303934 0.388193 0.06429595 -0.4751555 0.388193 0.06429595 -0.5225216 0.388193 0.06429595 -0.5725335 0.388193 0.06429595 -0.6252316 0.388193 0.06429595 -0.6806558 0.388193 0.06429595 -0.7388448 0.388193 0.06429595 -0.7998369 0.388193 0.06429595 -0.8636691 0.388193 0.06429595 -0.9303782 0.388193 0.06429595 -1 0.388193 0.06429595 -0 0.4303934 0.06429595 -0.002418731 0.4303934 0.06429595 -0.005155668 0.4303934 0.06429595 -0.009080105 0.4303934 0.06429595 -0.01434988 0.4303934 0.06429595 -0.02107202 0.4303934 0.06429595 -0.02934285 0.4303934 0.06429595 -0.03925039 0.4303934 0.06429595 -0.05087609 0.4303934 0.06429595 -0.06429595 0.4303934 0.06429595 -0.07958143 0.4303934 0.06429595 -0.0968001 0.4303934 0.06429595 -0.1160161 0.4303934 0.06429595 -0.1372908 0.4303934 0.06429595 -0.1606827 0.4303934 0.06429595 -0.1862481 0.4303934 0.06429595 -0.2140411 0.4303934 0.06429595 -0.2441142 0.4303934 0.06429595 -0.2765176 0.4303934 0.06429595 -0.3113005 0.4303934 0.06429595 -0.3485102 0.4303934 0.06429595 -0.388193 0.4303934 0.06429595 -0.4303934 0.4303934 0.06429595 -0.4751555 0.4303934 0.06429595 -0.5225216 0.4303934 0.06429595 -0.5725335 0.4303934 0.06429595 -0.6252316 0.4303934 0.06429595 -0.6806558 0.4303934 0.06429595 -0.7388448 0.4303934 0.06429595 -0.7998369 0.4303934 0.06429595 -0.8636691 0.4303934 0.06429595 -0.9303782 0.4303934 0.06429595 -1 0.4303934 0.06429595 -0 0.4751555 0.06429595 -0.002418731 0.4751555 0.06429595 -0.005155668 0.4751555 0.06429595 -0.009080105 0.4751555 0.06429595 -0.01434988 0.4751555 0.06429595 -0.02107202 0.4751555 0.06429595 -0.02934285 0.4751555 0.06429595 -0.03925039 0.4751555 0.06429595 -0.05087609 0.4751555 0.06429595 -0.06429595 0.4751555 0.06429595 -0.07958143 0.4751555 0.06429595 -0.0968001 0.4751555 0.06429595 -0.1160161 0.4751555 0.06429595 -0.1372908 0.4751555 0.06429595 -0.1606827 0.4751555 0.06429595 -0.1862481 0.4751555 0.06429595 -0.2140411 0.4751555 0.06429595 -0.2441142 0.4751555 0.06429595 -0.2765176 0.4751555 0.06429595 -0.3113005 0.4751555 0.06429595 -0.3485102 0.4751555 0.06429595 -0.388193 0.4751555 0.06429595 -0.4303934 0.4751555 0.06429595 -0.4751555 0.4751555 0.06429595 -0.5225216 0.4751555 0.06429595 -0.5725335 0.4751555 0.06429595 -0.6252316 0.4751555 0.06429595 -0.6806558 0.4751555 0.06429595 -0.7388448 0.4751555 0.06429595 -0.7998369 0.4751555 0.06429595 -0.8636691 0.4751555 0.06429595 -0.9303782 0.4751555 0.06429595 -1 0.4751555 0.06429595 -0 0.5225216 0.06429595 -0.002418731 0.5225216 0.06429595 -0.005155668 0.5225216 0.06429595 -0.009080105 0.5225216 0.06429595 -0.01434988 0.5225216 0.06429595 -0.02107202 0.5225216 0.06429595 -0.02934285 0.5225216 0.06429595 -0.03925039 0.5225216 0.06429595 -0.05087609 0.5225216 0.06429595 -0.06429595 0.5225216 0.06429595 -0.07958143 0.5225216 0.06429595 -0.0968001 0.5225216 0.06429595 -0.1160161 0.5225216 0.06429595 -0.1372908 0.5225216 0.06429595 -0.1606827 0.5225216 0.06429595 -0.1862481 0.5225216 0.06429595 -0.2140411 0.5225216 0.06429595 -0.2441142 0.5225216 0.06429595 -0.2765176 0.5225216 0.06429595 -0.3113005 0.5225216 0.06429595 -0.3485102 0.5225216 0.06429595 -0.388193 0.5225216 0.06429595 -0.4303934 0.5225216 0.06429595 -0.4751555 0.5225216 0.06429595 -0.5225216 0.5225216 0.06429595 -0.5725335 0.5225216 0.06429595 -0.6252316 0.5225216 0.06429595 -0.6806558 0.5225216 0.06429595 -0.7388448 0.5225216 0.06429595 -0.7998369 0.5225216 0.06429595 -0.8636691 0.5225216 0.06429595 -0.9303782 0.5225216 0.06429595 -1 0.5225216 0.06429595 -0 0.5725335 0.06429595 -0.002418731 0.5725335 0.06429595 -0.005155668 0.5725335 0.06429595 -0.009080105 0.5725335 0.06429595 -0.01434988 0.5725335 0.06429595 -0.02107202 0.5725335 0.06429595 -0.02934285 0.5725335 0.06429595 -0.03925039 0.5725335 0.06429595 -0.05087609 0.5725335 0.06429595 -0.06429595 0.5725335 0.06429595 -0.07958143 0.5725335 0.06429595 -0.0968001 0.5725335 0.06429595 -0.1160161 0.5725335 0.06429595 -0.1372908 0.5725335 0.06429595 -0.1606827 0.5725335 0.06429595 -0.1862481 0.5725335 0.06429595 -0.2140411 0.5725335 0.06429595 -0.2441142 0.5725335 0.06429595 -0.2765176 0.5725335 0.06429595 -0.3113005 0.5725335 0.06429595 -0.3485102 0.5725335 0.06429595 -0.388193 0.5725335 0.06429595 -0.4303934 0.5725335 0.06429595 -0.4751555 0.5725335 0.06429595 -0.5225216 0.5725335 0.06429595 -0.5725335 0.5725335 0.06429595 -0.6252316 0.5725335 0.06429595 -0.6806558 0.5725335 0.06429595 -0.7388448 0.5725335 0.06429595 -0.7998369 0.5725335 0.06429595 -0.8636691 0.5725335 0.06429595 -0.9303782 0.5725335 0.06429595 -1 0.5725335 0.06429595 -0 0.6252316 0.06429595 -0.002418731 0.6252316 0.06429595 -0.005155668 0.6252316 0.06429595 -0.009080105 0.6252316 0.06429595 -0.01434988 0.6252316 0.06429595 -0.02107202 0.6252316 0.06429595 -0.02934285 0.6252316 0.06429595 -0.03925039 0.6252316 0.06429595 -0.05087609 0.6252316 0.06429595 -0.06429595 0.6252316 0.06429595 -0.07958143 0.6252316 0.06429595 -0.0968001 0.6252316 0.06429595 -0.1160161 0.6252316 0.06429595 -0.1372908 0.6252316 0.06429595 -0.1606827 0.6252316 0.06429595 -0.1862481 0.6252316 0.06429595 -0.2140411 0.6252316 0.06429595 -0.2441142 0.6252316 0.06429595 -0.2765176 0.6252316 0.06429595 -0.3113005 0.6252316 0.06429595 -0.3485102 0.6252316 0.06429595 -0.388193 0.6252316 0.06429595 -0.4303934 0.6252316 0.06429595 -0.4751555 0.6252316 0.06429595 -0.5225216 0.6252316 0.06429595 -0.5725335 0.6252316 0.06429595 -0.6252316 0.6252316 0.06429595 -0.6806558 0.6252316 0.06429595 -0.7388448 0.6252316 0.06429595 -0.7998369 0.6252316 0.06429595 -0.8636691 0.6252316 0.06429595 -0.9303782 0.6252316 0.06429595 -1 0.6252316 0.06429595 -0 0.6806558 0.06429595 -0.002418731 0.6806558 0.06429595 -0.005155668 0.6806558 0.06429595 -0.009080105 0.6806558 0.06429595 -0.01434988 0.6806558 0.06429595 -0.02107202 0.6806558 0.06429595 -0.02934285 0.6806558 0.06429595 -0.03925039 0.6806558 0.06429595 -0.05087609 0.6806558 0.06429595 -0.06429595 0.6806558 0.06429595 -0.07958143 0.6806558 0.06429595 -0.0968001 0.6806558 0.06429595 -0.1160161 0.6806558 0.06429595 -0.1372908 0.6806558 0.06429595 -0.1606827 0.6806558 0.06429595 -0.1862481 0.6806558 0.06429595 -0.2140411 0.6806558 0.06429595 -0.2441142 0.6806558 0.06429595 -0.2765176 0.6806558 0.06429595 -0.3113005 0.6806558 0.06429595 -0.3485102 0.6806558 0.06429595 -0.388193 0.6806558 0.06429595 -0.4303934 0.6806558 0.06429595 -0.4751555 0.6806558 0.06429595 -0.5225216 0.6806558 0.06429595 -0.5725335 0.6806558 0.06429595 -0.6252316 0.6806558 0.06429595 -0.6806558 0.6806558 0.06429595 -0.7388448 0.6806558 0.06429595 -0.7998369 0.6806558 0.06429595 -0.8636691 0.6806558 0.06429595 -0.9303782 0.6806558 0.06429595 -1 0.6806558 0.06429595 -0 0.7388448 0.06429595 -0.002418731 0.7388448 0.06429595 -0.005155668 0.7388448 0.06429595 -0.009080105 0.7388448 0.06429595 -0.01434988 0.7388448 0.06429595 -0.02107202 0.7388448 0.06429595 -0.02934285 0.7388448 0.06429595 -0.03925039 0.7388448 0.06429595 -0.05087609 0.7388448 0.06429595 -0.06429595 0.7388448 0.06429595 -0.07958143 0.7388448 0.06429595 -0.0968001 0.7388448 0.06429595 -0.1160161 0.7388448 0.06429595 -0.1372908 0.7388448 0.06429595 -0.1606827 0.7388448 0.06429595 -0.1862481 0.7388448 0.06429595 -0.2140411 0.7388448 0.06429595 -0.2441142 0.7388448 0.06429595 -0.2765176 0.7388448 0.06429595 -0.3113005 0.7388448 0.06429595 -0.3485102 0.7388448 0.06429595 -0.388193 0.7388448 0.06429595 -0.4303934 0.7388448 0.06429595 -0.4751555 0.7388448 0.06429595 -0.5225216 0.7388448 0.06429595 -0.5725335 0.7388448 0.06429595 -0.6252316 0.7388448 0.06429595 -0.6806558 0.7388448 0.06429595 -0.7388448 0.7388448 0.06429595 -0.7998369 0.7388448 0.06429595 -0.8636691 0.7388448 0.06429595 -0.9303782 0.7388448 0.06429595 -1 0.7388448 0.06429595 -0 0.7998369 0.06429595 -0.002418731 0.7998369 0.06429595 -0.005155668 0.7998369 0.06429595 -0.009080105 0.7998369 0.06429595 -0.01434988 0.7998369 0.06429595 -0.02107202 0.7998369 0.06429595 -0.02934285 0.7998369 0.06429595 -0.03925039 0.7998369 0.06429595 -0.05087609 0.7998369 0.06429595 -0.06429595 0.7998369 0.06429595 -0.07958143 0.7998369 0.06429595 -0.0968001 0.7998369 0.06429595 -0.1160161 0.7998369 0.06429595 -0.1372908 0.7998369 0.06429595 -0.1606827 0.7998369 0.06429595 -0.1862481 0.7998369 0.06429595 -0.2140411 0.7998369 0.06429595 -0.2441142 0.7998369 0.06429595 -0.2765176 0.7998369 0.06429595 -0.3113005 0.7998369 0.06429595 -0.3485102 0.7998369 0.06429595 -0.388193 0.7998369 0.06429595 -0.4303934 0.7998369 0.06429595 -0.4751555 0.7998369 0.06429595 -0.5225216 0.7998369 0.06429595 -0.5725335 0.7998369 0.06429595 -0.6252316 0.7998369 0.06429595 -0.6806558 0.7998369 0.06429595 -0.7388448 0.7998369 0.06429595 -0.7998369 0.7998369 0.06429595 -0.8636691 0.7998369 0.06429595 -0.9303782 0.7998369 0.06429595 -1 0.7998369 0.06429595 -0 0.8636691 0.06429595 -0.002418731 0.8636691 0.06429595 -0.005155668 0.8636691 0.06429595 -0.009080105 0.8636691 0.06429595 -0.01434988 0.8636691 0.06429595 -0.02107202 0.8636691 0.06429595 -0.02934285 0.8636691 0.06429595 -0.03925039 0.8636691 0.06429595 -0.05087609 0.8636691 0.06429595 -0.06429595 0.8636691 0.06429595 -0.07958143 0.8636691 0.06429595 -0.0968001 0.8636691 0.06429595 -0.1160161 0.8636691 0.06429595 -0.1372908 0.8636691 0.06429595 -0.1606827 0.8636691 0.06429595 -0.1862481 0.8636691 0.06429595 -0.2140411 0.8636691 0.06429595 -0.2441142 0.8636691 0.06429595 -0.2765176 0.8636691 0.06429595 -0.3113005 0.8636691 0.06429595 -0.3485102 0.8636691 0.06429595 -0.388193 0.8636691 0.06429595 -0.4303934 0.8636691 0.06429595 -0.4751555 0.8636691 0.06429595 -0.5225216 0.8636691 0.06429595 -0.5725335 0.8636691 0.06429595 -0.6252316 0.8636691 0.06429595 -0.6806558 0.8636691 0.06429595 -0.7388448 0.8636691 0.06429595 -0.7998369 0.8636691 0.06429595 -0.8636691 0.8636691 0.06429595 -0.9303782 0.8636691 0.06429595 -1 0.8636691 0.06429595 -0 0.9303782 0.06429595 -0.002418731 0.9303782 0.06429595 -0.005155668 0.9303782 0.06429595 -0.009080105 0.9303782 0.06429595 -0.01434988 0.9303782 0.06429595 -0.02107202 0.9303782 0.06429595 -0.02934285 0.9303782 0.06429595 -0.03925039 0.9303782 0.06429595 -0.05087609 0.9303782 0.06429595 -0.06429595 0.9303782 0.06429595 -0.07958143 0.9303782 0.06429595 -0.0968001 0.9303782 0.06429595 -0.1160161 0.9303782 0.06429595 -0.1372908 0.9303782 0.06429595 -0.1606827 0.9303782 0.06429595 -0.1862481 0.9303782 0.06429595 -0.2140411 0.9303782 0.06429595 -0.2441142 0.9303782 0.06429595 -0.2765176 0.9303782 0.06429595 -0.3113005 0.9303782 0.06429595 -0.3485102 0.9303782 0.06429595 -0.388193 0.9303782 0.06429595 -0.4303934 0.9303782 0.06429595 -0.4751555 0.9303782 0.06429595 -0.5225216 0.9303782 0.06429595 -0.5725335 0.9303782 0.06429595 -0.6252316 0.9303782 0.06429595 -0.6806558 0.9303782 0.06429595 -0.7388448 0.9303782 0.06429595 -0.7998369 0.9303782 0.06429595 -0.8636691 0.9303782 0.06429595 -0.9303782 0.9303782 0.06429595 -1 0.9303782 0.06429595 -0 1 0.06429595 -0.002418731 1 0.06429595 -0.005155668 1 0.06429595 -0.009080105 1 0.06429595 -0.01434988 1 0.06429595 -0.02107202 1 0.06429595 -0.02934285 1 0.06429595 -0.03925039 1 0.06429595 -0.05087609 1 0.06429595 -0.06429595 1 0.06429595 -0.07958143 1 0.06429595 -0.0968001 1 0.06429595 -0.1160161 1 0.06429595 -0.1372908 1 0.06429595 -0.1606827 1 0.06429595 -0.1862481 1 0.06429595 -0.2140411 1 0.06429595 -0.2441142 1 0.06429595 -0.2765176 1 0.06429595 -0.3113005 1 0.06429595 -0.3485102 1 0.06429595 -0.388193 1 0.06429595 -0.4303934 1 0.06429595 -0.4751555 1 0.06429595 -0.5225216 1 0.06429595 -0.5725335 1 0.06429595 -0.6252316 1 0.06429595 -0.6806558 1 0.06429595 -0.7388448 1 0.06429595 -0.7998369 1 0.06429595 -0.8636691 1 0.06429595 -0.9303782 1 0.06429595 -1 1 0.06429595 -0 0 0.07958143 -0.002418731 0 0.07958143 -0.005155668 0 0.07958143 -0.009080105 0 0.07958143 -0.01434988 0 0.07958143 -0.02107202 0 0.07958143 -0.02934285 0 0.07958143 -0.03925039 0 0.07958143 -0.05087609 0 0.07958143 -0.06429595 0 0.07958143 -0.07958143 0 0.07958143 -0.0968001 0 0.07958143 -0.1160161 0 0.07958143 -0.1372908 0 0.07958143 -0.1606827 0 0.07958143 -0.1862481 0 0.07958143 -0.2140411 0 0.07958143 -0.2441142 0 0.07958143 -0.2765176 0 0.07958143 -0.3113005 0 0.07958143 -0.3485102 0 0.07958143 -0.388193 0 0.07958143 -0.4303934 0 0.07958143 -0.4751555 0 0.07958143 -0.5225216 0 0.07958143 -0.5725335 0 0.07958143 -0.6252316 0 0.07958143 -0.6806558 0 0.07958143 -0.7388448 0 0.07958143 -0.7998369 0 0.07958143 -0.8636691 0 0.07958143 -0.9303782 0 0.07958143 -1 0 0.07958143 -0 0.002418731 0.07958143 -0.002418731 0.002418731 0.07958143 -0.005155668 0.002418731 0.07958143 -0.009080105 0.002418731 0.07958143 -0.01434988 0.002418731 0.07958143 -0.02107202 0.002418731 0.07958143 -0.02934285 0.002418731 0.07958143 -0.03925039 0.002418731 0.07958143 -0.05087609 0.002418731 0.07958143 -0.06429595 0.002418731 0.07958143 -0.07958143 0.002418731 0.07958143 -0.0968001 0.002418731 0.07958143 -0.1160161 0.002418731 0.07958143 -0.1372908 0.002418731 0.07958143 -0.1606827 0.002418731 0.07958143 -0.1862481 0.002418731 0.07958143 -0.2140411 0.002418731 0.07958143 -0.2441142 0.002418731 0.07958143 -0.2765176 0.002418731 0.07958143 -0.3113005 0.002418731 0.07958143 -0.3485102 0.002418731 0.07958143 -0.388193 0.002418731 0.07958143 -0.4303934 0.002418731 0.07958143 -0.4751555 0.002418731 0.07958143 -0.5225216 0.002418731 0.07958143 -0.5725335 0.002418731 0.07958143 -0.6252316 0.002418731 0.07958143 -0.6806558 0.002418731 0.07958143 -0.7388448 0.002418731 0.07958143 -0.7998369 0.002418731 0.07958143 -0.8636691 0.002418731 0.07958143 -0.9303782 0.002418731 0.07958143 -1 0.002418731 0.07958143 -0 0.005155668 0.07958143 -0.002418731 0.005155668 0.07958143 -0.005155668 0.005155668 0.07958143 -0.009080105 0.005155668 0.07958143 -0.01434988 0.005155668 0.07958143 -0.02107202 0.005155668 0.07958143 -0.02934285 0.005155668 0.07958143 -0.03925039 0.005155668 0.07958143 -0.05087609 0.005155668 0.07958143 -0.06429595 0.005155668 0.07958143 -0.07958143 0.005155668 0.07958143 -0.0968001 0.005155668 0.07958143 -0.1160161 0.005155668 0.07958143 -0.1372908 0.005155668 0.07958143 -0.1606827 0.005155668 0.07958143 -0.1862481 0.005155668 0.07958143 -0.2140411 0.005155668 0.07958143 -0.2441142 0.005155668 0.07958143 -0.2765176 0.005155668 0.07958143 -0.3113005 0.005155668 0.07958143 -0.3485102 0.005155668 0.07958143 -0.388193 0.005155668 0.07958143 -0.4303934 0.005155668 0.07958143 -0.4751555 0.005155668 0.07958143 -0.5225216 0.005155668 0.07958143 -0.5725335 0.005155668 0.07958143 -0.6252316 0.005155668 0.07958143 -0.6806558 0.005155668 0.07958143 -0.7388448 0.005155668 0.07958143 -0.7998369 0.005155668 0.07958143 -0.8636691 0.005155668 0.07958143 -0.9303782 0.005155668 0.07958143 -1 0.005155668 0.07958143 -0 0.009080105 0.07958143 -0.002418731 0.009080105 0.07958143 -0.005155668 0.009080105 0.07958143 -0.009080105 0.009080105 0.07958143 -0.01434988 0.009080105 0.07958143 -0.02107202 0.009080105 0.07958143 -0.02934285 0.009080105 0.07958143 -0.03925039 0.009080105 0.07958143 -0.05087609 0.009080105 0.07958143 -0.06429595 0.009080105 0.07958143 -0.07958143 0.009080105 0.07958143 -0.0968001 0.009080105 0.07958143 -0.1160161 0.009080105 0.07958143 -0.1372908 0.009080105 0.07958143 -0.1606827 0.009080105 0.07958143 -0.1862481 0.009080105 0.07958143 -0.2140411 0.009080105 0.07958143 -0.2441142 0.009080105 0.07958143 -0.2765176 0.009080105 0.07958143 -0.3113005 0.009080105 0.07958143 -0.3485102 0.009080105 0.07958143 -0.388193 0.009080105 0.07958143 -0.4303934 0.009080105 0.07958143 -0.4751555 0.009080105 0.07958143 -0.5225216 0.009080105 0.07958143 -0.5725335 0.009080105 0.07958143 -0.6252316 0.009080105 0.07958143 -0.6806558 0.009080105 0.07958143 -0.7388448 0.009080105 0.07958143 -0.7998369 0.009080105 0.07958143 -0.8636691 0.009080105 0.07958143 -0.9303782 0.009080105 0.07958143 -1 0.009080105 0.07958143 -0 0.01434988 0.07958143 -0.002418731 0.01434988 0.07958143 -0.005155668 0.01434988 0.07958143 -0.009080105 0.01434988 0.07958143 -0.01434988 0.01434988 0.07958143 -0.02107202 0.01434988 0.07958143 -0.02934285 0.01434988 0.07958143 -0.03925039 0.01434988 0.07958143 -0.05087609 0.01434988 0.07958143 -0.06429595 0.01434988 0.07958143 -0.07958143 0.01434988 0.07958143 -0.0968001 0.01434988 0.07958143 -0.1160161 0.01434988 0.07958143 -0.1372908 0.01434988 0.07958143 -0.1606827 0.01434988 0.07958143 -0.1862481 0.01434988 0.07958143 -0.2140411 0.01434988 0.07958143 -0.2441142 0.01434988 0.07958143 -0.2765176 0.01434988 0.07958143 -0.3113005 0.01434988 0.07958143 -0.3485102 0.01434988 0.07958143 -0.388193 0.01434988 0.07958143 -0.4303934 0.01434988 0.07958143 -0.4751555 0.01434988 0.07958143 -0.5225216 0.01434988 0.07958143 -0.5725335 0.01434988 0.07958143 -0.6252316 0.01434988 0.07958143 -0.6806558 0.01434988 0.07958143 -0.7388448 0.01434988 0.07958143 -0.7998369 0.01434988 0.07958143 -0.8636691 0.01434988 0.07958143 -0.9303782 0.01434988 0.07958143 -1 0.01434988 0.07958143 -0 0.02107202 0.07958143 -0.002418731 0.02107202 0.07958143 -0.005155668 0.02107202 0.07958143 -0.009080105 0.02107202 0.07958143 -0.01434988 0.02107202 0.07958143 -0.02107202 0.02107202 0.07958143 -0.02934285 0.02107202 0.07958143 -0.03925039 0.02107202 0.07958143 -0.05087609 0.02107202 0.07958143 -0.06429595 0.02107202 0.07958143 -0.07958143 0.02107202 0.07958143 -0.0968001 0.02107202 0.07958143 -0.1160161 0.02107202 0.07958143 -0.1372908 0.02107202 0.07958143 -0.1606827 0.02107202 0.07958143 -0.1862481 0.02107202 0.07958143 -0.2140411 0.02107202 0.07958143 -0.2441142 0.02107202 0.07958143 -0.2765176 0.02107202 0.07958143 -0.3113005 0.02107202 0.07958143 -0.3485102 0.02107202 0.07958143 -0.388193 0.02107202 0.07958143 -0.4303934 0.02107202 0.07958143 -0.4751555 0.02107202 0.07958143 -0.5225216 0.02107202 0.07958143 -0.5725335 0.02107202 0.07958143 -0.6252316 0.02107202 0.07958143 -0.6806558 0.02107202 0.07958143 -0.7388448 0.02107202 0.07958143 -0.7998369 0.02107202 0.07958143 -0.8636691 0.02107202 0.07958143 -0.9303782 0.02107202 0.07958143 -1 0.02107202 0.07958143 -0 0.02934285 0.07958143 -0.002418731 0.02934285 0.07958143 -0.005155668 0.02934285 0.07958143 -0.009080105 0.02934285 0.07958143 -0.01434988 0.02934285 0.07958143 -0.02107202 0.02934285 0.07958143 -0.02934285 0.02934285 0.07958143 -0.03925039 0.02934285 0.07958143 -0.05087609 0.02934285 0.07958143 -0.06429595 0.02934285 0.07958143 -0.07958143 0.02934285 0.07958143 -0.0968001 0.02934285 0.07958143 -0.1160161 0.02934285 0.07958143 -0.1372908 0.02934285 0.07958143 -0.1606827 0.02934285 0.07958143 -0.1862481 0.02934285 0.07958143 -0.2140411 0.02934285 0.07958143 -0.2441142 0.02934285 0.07958143 -0.2765176 0.02934285 0.07958143 -0.3113005 0.02934285 0.07958143 -0.3485102 0.02934285 0.07958143 -0.388193 0.02934285 0.07958143 -0.4303934 0.02934285 0.07958143 -0.4751555 0.02934285 0.07958143 -0.5225216 0.02934285 0.07958143 -0.5725335 0.02934285 0.07958143 -0.6252316 0.02934285 0.07958143 -0.6806558 0.02934285 0.07958143 -0.7388448 0.02934285 0.07958143 -0.7998369 0.02934285 0.07958143 -0.8636691 0.02934285 0.07958143 -0.9303782 0.02934285 0.07958143 -1 0.02934285 0.07958143 -0 0.03925039 0.07958143 -0.002418731 0.03925039 0.07958143 -0.005155668 0.03925039 0.07958143 -0.009080105 0.03925039 0.07958143 -0.01434988 0.03925039 0.07958143 -0.02107202 0.03925039 0.07958143 -0.02934285 0.03925039 0.07958143 -0.03925039 0.03925039 0.07958143 -0.05087609 0.03925039 0.07958143 -0.06429595 0.03925039 0.07958143 -0.07958143 0.03925039 0.07958143 -0.0968001 0.03925039 0.07958143 -0.1160161 0.03925039 0.07958143 -0.1372908 0.03925039 0.07958143 -0.1606827 0.03925039 0.07958143 -0.1862481 0.03925039 0.07958143 -0.2140411 0.03925039 0.07958143 -0.2441142 0.03925039 0.07958143 -0.2765176 0.03925039 0.07958143 -0.3113005 0.03925039 0.07958143 -0.3485102 0.03925039 0.07958143 -0.388193 0.03925039 0.07958143 -0.4303934 0.03925039 0.07958143 -0.4751555 0.03925039 0.07958143 -0.5225216 0.03925039 0.07958143 -0.5725335 0.03925039 0.07958143 -0.6252316 0.03925039 0.07958143 -0.6806558 0.03925039 0.07958143 -0.7388448 0.03925039 0.07958143 -0.7998369 0.03925039 0.07958143 -0.8636691 0.03925039 0.07958143 -0.9303782 0.03925039 0.07958143 -1 0.03925039 0.07958143 -0 0.05087609 0.07958143 -0.002418731 0.05087609 0.07958143 -0.005155668 0.05087609 0.07958143 -0.009080105 0.05087609 0.07958143 -0.01434988 0.05087609 0.07958143 -0.02107202 0.05087609 0.07958143 -0.02934285 0.05087609 0.07958143 -0.03925039 0.05087609 0.07958143 -0.05087609 0.05087609 0.07958143 -0.06429595 0.05087609 0.07958143 -0.07958143 0.05087609 0.07958143 -0.0968001 0.05087609 0.07958143 -0.1160161 0.05087609 0.07958143 -0.1372908 0.05087609 0.07958143 -0.1606827 0.05087609 0.07958143 -0.1862481 0.05087609 0.07958143 -0.2140411 0.05087609 0.07958143 -0.2441142 0.05087609 0.07958143 -0.2765176 0.05087609 0.07958143 -0.3113005 0.05087609 0.07958143 -0.3485102 0.05087609 0.07958143 -0.388193 0.05087609 0.07958143 -0.4303934 0.05087609 0.07958143 -0.4751555 0.05087609 0.07958143 -0.5225216 0.05087609 0.07958143 -0.5725335 0.05087609 0.07958143 -0.6252316 0.05087609 0.07958143 -0.6806558 0.05087609 0.07958143 -0.7388448 0.05087609 0.07958143 -0.7998369 0.05087609 0.07958143 -0.8636691 0.05087609 0.07958143 -0.9303782 0.05087609 0.07958143 -1 0.05087609 0.07958143 -0 0.06429595 0.07958143 -0.002418731 0.06429595 0.07958143 -0.005155668 0.06429595 0.07958143 -0.009080105 0.06429595 0.07958143 -0.01434988 0.06429595 0.07958143 -0.02107202 0.06429595 0.07958143 -0.02934285 0.06429595 0.07958143 -0.03925039 0.06429595 0.07958143 -0.05087609 0.06429595 0.07958143 -0.06429595 0.06429595 0.07958143 -0.07958143 0.06429595 0.07958143 -0.0968001 0.06429595 0.07958143 -0.1160161 0.06429595 0.07958143 -0.1372908 0.06429595 0.07958143 -0.1606827 0.06429595 0.07958143 -0.1862481 0.06429595 0.07958143 -0.2140411 0.06429595 0.07958143 -0.2441142 0.06429595 0.07958143 -0.2765176 0.06429595 0.07958143 -0.3113005 0.06429595 0.07958143 -0.3485102 0.06429595 0.07958143 -0.388193 0.06429595 0.07958143 -0.4303934 0.06429595 0.07958143 -0.4751555 0.06429595 0.07958143 -0.5225216 0.06429595 0.07958143 -0.5725335 0.06429595 0.07958143 -0.6252316 0.06429595 0.07958143 -0.6806558 0.06429595 0.07958143 -0.7388448 0.06429595 0.07958143 -0.7998369 0.06429595 0.07958143 -0.8636691 0.06429595 0.07958143 -0.9303782 0.06429595 0.07958143 -1 0.06429595 0.07958143 -0 0.07958143 0.07958143 -0.002418731 0.07958143 0.07958143 -0.005155668 0.07958143 0.07958143 -0.009080105 0.07958143 0.07958143 -0.01434988 0.07958143 0.07958143 -0.02107202 0.07958143 0.07958143 -0.02934285 0.07958143 0.07958143 -0.03925039 0.07958143 0.07958143 -0.05087609 0.07958143 0.07958143 -0.06429595 0.07958143 0.07958143 -0.07958143 0.07958143 0.07958143 -0.0968001 0.07958143 0.07958143 -0.1160161 0.07958143 0.07958143 -0.1372908 0.07958143 0.07958143 -0.1606827 0.07958143 0.07958143 -0.1862481 0.07958143 0.07958143 -0.2140411 0.07958143 0.07958143 -0.2441142 0.07958143 0.07958143 -0.2765176 0.07958143 0.07958143 -0.3113005 0.07958143 0.07958143 -0.3485102 0.07958143 0.07958143 -0.388193 0.07958143 0.07958143 -0.4303934 0.07958143 0.07958143 -0.4751555 0.07958143 0.07958143 -0.5225216 0.07958143 0.07958143 -0.5725335 0.07958143 0.07958143 -0.6252316 0.07958143 0.07958143 -0.6806558 0.07958143 0.07958143 -0.7388448 0.07958143 0.07958143 -0.7998369 0.07958143 0.07958143 -0.8636691 0.07958143 0.07958143 -0.9303782 0.07958143 0.07958143 -1 0.07958143 0.07958143 -0 0.0968001 0.07958143 -0.002418731 0.0968001 0.07958143 -0.005155668 0.0968001 0.07958143 -0.009080105 0.0968001 0.07958143 -0.01434988 0.0968001 0.07958143 -0.02107202 0.0968001 0.07958143 -0.02934285 0.0968001 0.07958143 -0.03925039 0.0968001 0.07958143 -0.05087609 0.0968001 0.07958143 -0.06429595 0.0968001 0.07958143 -0.07958143 0.0968001 0.07958143 -0.0968001 0.0968001 0.07958143 -0.1160161 0.0968001 0.07958143 -0.1372908 0.0968001 0.07958143 -0.1606827 0.0968001 0.07958143 -0.1862481 0.0968001 0.07958143 -0.2140411 0.0968001 0.07958143 -0.2441142 0.0968001 0.07958143 -0.2765176 0.0968001 0.07958143 -0.3113005 0.0968001 0.07958143 -0.3485102 0.0968001 0.07958143 -0.388193 0.0968001 0.07958143 -0.4303934 0.0968001 0.07958143 -0.4751555 0.0968001 0.07958143 -0.5225216 0.0968001 0.07958143 -0.5725335 0.0968001 0.07958143 -0.6252316 0.0968001 0.07958143 -0.6806558 0.0968001 0.07958143 -0.7388448 0.0968001 0.07958143 -0.7998369 0.0968001 0.07958143 -0.8636691 0.0968001 0.07958143 -0.9303782 0.0968001 0.07958143 -1 0.0968001 0.07958143 -0 0.1160161 0.07958143 -0.002418731 0.1160161 0.07958143 -0.005155668 0.1160161 0.07958143 -0.009080105 0.1160161 0.07958143 -0.01434988 0.1160161 0.07958143 -0.02107202 0.1160161 0.07958143 -0.02934285 0.1160161 0.07958143 -0.03925039 0.1160161 0.07958143 -0.05087609 0.1160161 0.07958143 -0.06429595 0.1160161 0.07958143 -0.07958143 0.1160161 0.07958143 -0.0968001 0.1160161 0.07958143 -0.1160161 0.1160161 0.07958143 -0.1372908 0.1160161 0.07958143 -0.1606827 0.1160161 0.07958143 -0.1862481 0.1160161 0.07958143 -0.2140411 0.1160161 0.07958143 -0.2441142 0.1160161 0.07958143 -0.2765176 0.1160161 0.07958143 -0.3113005 0.1160161 0.07958143 -0.3485102 0.1160161 0.07958143 -0.388193 0.1160161 0.07958143 -0.4303934 0.1160161 0.07958143 -0.4751555 0.1160161 0.07958143 -0.5225216 0.1160161 0.07958143 -0.5725335 0.1160161 0.07958143 -0.6252316 0.1160161 0.07958143 -0.6806558 0.1160161 0.07958143 -0.7388448 0.1160161 0.07958143 -0.7998369 0.1160161 0.07958143 -0.8636691 0.1160161 0.07958143 -0.9303782 0.1160161 0.07958143 -1 0.1160161 0.07958143 -0 0.1372908 0.07958143 -0.002418731 0.1372908 0.07958143 -0.005155668 0.1372908 0.07958143 -0.009080105 0.1372908 0.07958143 -0.01434988 0.1372908 0.07958143 -0.02107202 0.1372908 0.07958143 -0.02934285 0.1372908 0.07958143 -0.03925039 0.1372908 0.07958143 -0.05087609 0.1372908 0.07958143 -0.06429595 0.1372908 0.07958143 -0.07958143 0.1372908 0.07958143 -0.0968001 0.1372908 0.07958143 -0.1160161 0.1372908 0.07958143 -0.1372908 0.1372908 0.07958143 -0.1606827 0.1372908 0.07958143 -0.1862481 0.1372908 0.07958143 -0.2140411 0.1372908 0.07958143 -0.2441142 0.1372908 0.07958143 -0.2765176 0.1372908 0.07958143 -0.3113005 0.1372908 0.07958143 -0.3485102 0.1372908 0.07958143 -0.388193 0.1372908 0.07958143 -0.4303934 0.1372908 0.07958143 -0.4751555 0.1372908 0.07958143 -0.5225216 0.1372908 0.07958143 -0.5725335 0.1372908 0.07958143 -0.6252316 0.1372908 0.07958143 -0.6806558 0.1372908 0.07958143 -0.7388448 0.1372908 0.07958143 -0.7998369 0.1372908 0.07958143 -0.8636691 0.1372908 0.07958143 -0.9303782 0.1372908 0.07958143 -1 0.1372908 0.07958143 -0 0.1606827 0.07958143 -0.002418731 0.1606827 0.07958143 -0.005155668 0.1606827 0.07958143 -0.009080105 0.1606827 0.07958143 -0.01434988 0.1606827 0.07958143 -0.02107202 0.1606827 0.07958143 -0.02934285 0.1606827 0.07958143 -0.03925039 0.1606827 0.07958143 -0.05087609 0.1606827 0.07958143 -0.06429595 0.1606827 0.07958143 -0.07958143 0.1606827 0.07958143 -0.0968001 0.1606827 0.07958143 -0.1160161 0.1606827 0.07958143 -0.1372908 0.1606827 0.07958143 -0.1606827 0.1606827 0.07958143 -0.1862481 0.1606827 0.07958143 -0.2140411 0.1606827 0.07958143 -0.2441142 0.1606827 0.07958143 -0.2765176 0.1606827 0.07958143 -0.3113005 0.1606827 0.07958143 -0.3485102 0.1606827 0.07958143 -0.388193 0.1606827 0.07958143 -0.4303934 0.1606827 0.07958143 -0.4751555 0.1606827 0.07958143 -0.5225216 0.1606827 0.07958143 -0.5725335 0.1606827 0.07958143 -0.6252316 0.1606827 0.07958143 -0.6806558 0.1606827 0.07958143 -0.7388448 0.1606827 0.07958143 -0.7998369 0.1606827 0.07958143 -0.8636691 0.1606827 0.07958143 -0.9303782 0.1606827 0.07958143 -1 0.1606827 0.07958143 -0 0.1862481 0.07958143 -0.002418731 0.1862481 0.07958143 -0.005155668 0.1862481 0.07958143 -0.009080105 0.1862481 0.07958143 -0.01434988 0.1862481 0.07958143 -0.02107202 0.1862481 0.07958143 -0.02934285 0.1862481 0.07958143 -0.03925039 0.1862481 0.07958143 -0.05087609 0.1862481 0.07958143 -0.06429595 0.1862481 0.07958143 -0.07958143 0.1862481 0.07958143 -0.0968001 0.1862481 0.07958143 -0.1160161 0.1862481 0.07958143 -0.1372908 0.1862481 0.07958143 -0.1606827 0.1862481 0.07958143 -0.1862481 0.1862481 0.07958143 -0.2140411 0.1862481 0.07958143 -0.2441142 0.1862481 0.07958143 -0.2765176 0.1862481 0.07958143 -0.3113005 0.1862481 0.07958143 -0.3485102 0.1862481 0.07958143 -0.388193 0.1862481 0.07958143 -0.4303934 0.1862481 0.07958143 -0.4751555 0.1862481 0.07958143 -0.5225216 0.1862481 0.07958143 -0.5725335 0.1862481 0.07958143 -0.6252316 0.1862481 0.07958143 -0.6806558 0.1862481 0.07958143 -0.7388448 0.1862481 0.07958143 -0.7998369 0.1862481 0.07958143 -0.8636691 0.1862481 0.07958143 -0.9303782 0.1862481 0.07958143 -1 0.1862481 0.07958143 -0 0.2140411 0.07958143 -0.002418731 0.2140411 0.07958143 -0.005155668 0.2140411 0.07958143 -0.009080105 0.2140411 0.07958143 -0.01434988 0.2140411 0.07958143 -0.02107202 0.2140411 0.07958143 -0.02934285 0.2140411 0.07958143 -0.03925039 0.2140411 0.07958143 -0.05087609 0.2140411 0.07958143 -0.06429595 0.2140411 0.07958143 -0.07958143 0.2140411 0.07958143 -0.0968001 0.2140411 0.07958143 -0.1160161 0.2140411 0.07958143 -0.1372908 0.2140411 0.07958143 -0.1606827 0.2140411 0.07958143 -0.1862481 0.2140411 0.07958143 -0.2140411 0.2140411 0.07958143 -0.2441142 0.2140411 0.07958143 -0.2765176 0.2140411 0.07958143 -0.3113005 0.2140411 0.07958143 -0.3485102 0.2140411 0.07958143 -0.388193 0.2140411 0.07958143 -0.4303934 0.2140411 0.07958143 -0.4751555 0.2140411 0.07958143 -0.5225216 0.2140411 0.07958143 -0.5725335 0.2140411 0.07958143 -0.6252316 0.2140411 0.07958143 -0.6806558 0.2140411 0.07958143 -0.7388448 0.2140411 0.07958143 -0.7998369 0.2140411 0.07958143 -0.8636691 0.2140411 0.07958143 -0.9303782 0.2140411 0.07958143 -1 0.2140411 0.07958143 -0 0.2441142 0.07958143 -0.002418731 0.2441142 0.07958143 -0.005155668 0.2441142 0.07958143 -0.009080105 0.2441142 0.07958143 -0.01434988 0.2441142 0.07958143 -0.02107202 0.2441142 0.07958143 -0.02934285 0.2441142 0.07958143 -0.03925039 0.2441142 0.07958143 -0.05087609 0.2441142 0.07958143 -0.06429595 0.2441142 0.07958143 -0.07958143 0.2441142 0.07958143 -0.0968001 0.2441142 0.07958143 -0.1160161 0.2441142 0.07958143 -0.1372908 0.2441142 0.07958143 -0.1606827 0.2441142 0.07958143 -0.1862481 0.2441142 0.07958143 -0.2140411 0.2441142 0.07958143 -0.2441142 0.2441142 0.07958143 -0.2765176 0.2441142 0.07958143 -0.3113005 0.2441142 0.07958143 -0.3485102 0.2441142 0.07958143 -0.388193 0.2441142 0.07958143 -0.4303934 0.2441142 0.07958143 -0.4751555 0.2441142 0.07958143 -0.5225216 0.2441142 0.07958143 -0.5725335 0.2441142 0.07958143 -0.6252316 0.2441142 0.07958143 -0.6806558 0.2441142 0.07958143 -0.7388448 0.2441142 0.07958143 -0.7998369 0.2441142 0.07958143 -0.8636691 0.2441142 0.07958143 -0.9303782 0.2441142 0.07958143 -1 0.2441142 0.07958143 -0 0.2765176 0.07958143 -0.002418731 0.2765176 0.07958143 -0.005155668 0.2765176 0.07958143 -0.009080105 0.2765176 0.07958143 -0.01434988 0.2765176 0.07958143 -0.02107202 0.2765176 0.07958143 -0.02934285 0.2765176 0.07958143 -0.03925039 0.2765176 0.07958143 -0.05087609 0.2765176 0.07958143 -0.06429595 0.2765176 0.07958143 -0.07958143 0.2765176 0.07958143 -0.0968001 0.2765176 0.07958143 -0.1160161 0.2765176 0.07958143 -0.1372908 0.2765176 0.07958143 -0.1606827 0.2765176 0.07958143 -0.1862481 0.2765176 0.07958143 -0.2140411 0.2765176 0.07958143 -0.2441142 0.2765176 0.07958143 -0.2765176 0.2765176 0.07958143 -0.3113005 0.2765176 0.07958143 -0.3485102 0.2765176 0.07958143 -0.388193 0.2765176 0.07958143 -0.4303934 0.2765176 0.07958143 -0.4751555 0.2765176 0.07958143 -0.5225216 0.2765176 0.07958143 -0.5725335 0.2765176 0.07958143 -0.6252316 0.2765176 0.07958143 -0.6806558 0.2765176 0.07958143 -0.7388448 0.2765176 0.07958143 -0.7998369 0.2765176 0.07958143 -0.8636691 0.2765176 0.07958143 -0.9303782 0.2765176 0.07958143 -1 0.2765176 0.07958143 -0 0.3113005 0.07958143 -0.002418731 0.3113005 0.07958143 -0.005155668 0.3113005 0.07958143 -0.009080105 0.3113005 0.07958143 -0.01434988 0.3113005 0.07958143 -0.02107202 0.3113005 0.07958143 -0.02934285 0.3113005 0.07958143 -0.03925039 0.3113005 0.07958143 -0.05087609 0.3113005 0.07958143 -0.06429595 0.3113005 0.07958143 -0.07958143 0.3113005 0.07958143 -0.0968001 0.3113005 0.07958143 -0.1160161 0.3113005 0.07958143 -0.1372908 0.3113005 0.07958143 -0.1606827 0.3113005 0.07958143 -0.1862481 0.3113005 0.07958143 -0.2140411 0.3113005 0.07958143 -0.2441142 0.3113005 0.07958143 -0.2765176 0.3113005 0.07958143 -0.3113005 0.3113005 0.07958143 -0.3485102 0.3113005 0.07958143 -0.388193 0.3113005 0.07958143 -0.4303934 0.3113005 0.07958143 -0.4751555 0.3113005 0.07958143 -0.5225216 0.3113005 0.07958143 -0.5725335 0.3113005 0.07958143 -0.6252316 0.3113005 0.07958143 -0.6806558 0.3113005 0.07958143 -0.7388448 0.3113005 0.07958143 -0.7998369 0.3113005 0.07958143 -0.8636691 0.3113005 0.07958143 -0.9303782 0.3113005 0.07958143 -1 0.3113005 0.07958143 -0 0.3485102 0.07958143 -0.002418731 0.3485102 0.07958143 -0.005155668 0.3485102 0.07958143 -0.009080105 0.3485102 0.07958143 -0.01434988 0.3485102 0.07958143 -0.02107202 0.3485102 0.07958143 -0.02934285 0.3485102 0.07958143 -0.03925039 0.3485102 0.07958143 -0.05087609 0.3485102 0.07958143 -0.06429595 0.3485102 0.07958143 -0.07958143 0.3485102 0.07958143 -0.0968001 0.3485102 0.07958143 -0.1160161 0.3485102 0.07958143 -0.1372908 0.3485102 0.07958143 -0.1606827 0.3485102 0.07958143 -0.1862481 0.3485102 0.07958143 -0.2140411 0.3485102 0.07958143 -0.2441142 0.3485102 0.07958143 -0.2765176 0.3485102 0.07958143 -0.3113005 0.3485102 0.07958143 -0.3485102 0.3485102 0.07958143 -0.388193 0.3485102 0.07958143 -0.4303934 0.3485102 0.07958143 -0.4751555 0.3485102 0.07958143 -0.5225216 0.3485102 0.07958143 -0.5725335 0.3485102 0.07958143 -0.6252316 0.3485102 0.07958143 -0.6806558 0.3485102 0.07958143 -0.7388448 0.3485102 0.07958143 -0.7998369 0.3485102 0.07958143 -0.8636691 0.3485102 0.07958143 -0.9303782 0.3485102 0.07958143 -1 0.3485102 0.07958143 -0 0.388193 0.07958143 -0.002418731 0.388193 0.07958143 -0.005155668 0.388193 0.07958143 -0.009080105 0.388193 0.07958143 -0.01434988 0.388193 0.07958143 -0.02107202 0.388193 0.07958143 -0.02934285 0.388193 0.07958143 -0.03925039 0.388193 0.07958143 -0.05087609 0.388193 0.07958143 -0.06429595 0.388193 0.07958143 -0.07958143 0.388193 0.07958143 -0.0968001 0.388193 0.07958143 -0.1160161 0.388193 0.07958143 -0.1372908 0.388193 0.07958143 -0.1606827 0.388193 0.07958143 -0.1862481 0.388193 0.07958143 -0.2140411 0.388193 0.07958143 -0.2441142 0.388193 0.07958143 -0.2765176 0.388193 0.07958143 -0.3113005 0.388193 0.07958143 -0.3485102 0.388193 0.07958143 -0.388193 0.388193 0.07958143 -0.4303934 0.388193 0.07958143 -0.4751555 0.388193 0.07958143 -0.5225216 0.388193 0.07958143 -0.5725335 0.388193 0.07958143 -0.6252316 0.388193 0.07958143 -0.6806558 0.388193 0.07958143 -0.7388448 0.388193 0.07958143 -0.7998369 0.388193 0.07958143 -0.8636691 0.388193 0.07958143 -0.9303782 0.388193 0.07958143 -1 0.388193 0.07958143 -0 0.4303934 0.07958143 -0.002418731 0.4303934 0.07958143 -0.005155668 0.4303934 0.07958143 -0.009080105 0.4303934 0.07958143 -0.01434988 0.4303934 0.07958143 -0.02107202 0.4303934 0.07958143 -0.02934285 0.4303934 0.07958143 -0.03925039 0.4303934 0.07958143 -0.05087609 0.4303934 0.07958143 -0.06429595 0.4303934 0.07958143 -0.07958143 0.4303934 0.07958143 -0.0968001 0.4303934 0.07958143 -0.1160161 0.4303934 0.07958143 -0.1372908 0.4303934 0.07958143 -0.1606827 0.4303934 0.07958143 -0.1862481 0.4303934 0.07958143 -0.2140411 0.4303934 0.07958143 -0.2441142 0.4303934 0.07958143 -0.2765176 0.4303934 0.07958143 -0.3113005 0.4303934 0.07958143 -0.3485102 0.4303934 0.07958143 -0.388193 0.4303934 0.07958143 -0.4303934 0.4303934 0.07958143 -0.4751555 0.4303934 0.07958143 -0.5225216 0.4303934 0.07958143 -0.5725335 0.4303934 0.07958143 -0.6252316 0.4303934 0.07958143 -0.6806558 0.4303934 0.07958143 -0.7388448 0.4303934 0.07958143 -0.7998369 0.4303934 0.07958143 -0.8636691 0.4303934 0.07958143 -0.9303782 0.4303934 0.07958143 -1 0.4303934 0.07958143 -0 0.4751555 0.07958143 -0.002418731 0.4751555 0.07958143 -0.005155668 0.4751555 0.07958143 -0.009080105 0.4751555 0.07958143 -0.01434988 0.4751555 0.07958143 -0.02107202 0.4751555 0.07958143 -0.02934285 0.4751555 0.07958143 -0.03925039 0.4751555 0.07958143 -0.05087609 0.4751555 0.07958143 -0.06429595 0.4751555 0.07958143 -0.07958143 0.4751555 0.07958143 -0.0968001 0.4751555 0.07958143 -0.1160161 0.4751555 0.07958143 -0.1372908 0.4751555 0.07958143 -0.1606827 0.4751555 0.07958143 -0.1862481 0.4751555 0.07958143 -0.2140411 0.4751555 0.07958143 -0.2441142 0.4751555 0.07958143 -0.2765176 0.4751555 0.07958143 -0.3113005 0.4751555 0.07958143 -0.3485102 0.4751555 0.07958143 -0.388193 0.4751555 0.07958143 -0.4303934 0.4751555 0.07958143 -0.4751555 0.4751555 0.07958143 -0.5225216 0.4751555 0.07958143 -0.5725335 0.4751555 0.07958143 -0.6252316 0.4751555 0.07958143 -0.6806558 0.4751555 0.07958143 -0.7388448 0.4751555 0.07958143 -0.7998369 0.4751555 0.07958143 -0.8636691 0.4751555 0.07958143 -0.9303782 0.4751555 0.07958143 -1 0.4751555 0.07958143 -0 0.5225216 0.07958143 -0.002418731 0.5225216 0.07958143 -0.005155668 0.5225216 0.07958143 -0.009080105 0.5225216 0.07958143 -0.01434988 0.5225216 0.07958143 -0.02107202 0.5225216 0.07958143 -0.02934285 0.5225216 0.07958143 -0.03925039 0.5225216 0.07958143 -0.05087609 0.5225216 0.07958143 -0.06429595 0.5225216 0.07958143 -0.07958143 0.5225216 0.07958143 -0.0968001 0.5225216 0.07958143 -0.1160161 0.5225216 0.07958143 -0.1372908 0.5225216 0.07958143 -0.1606827 0.5225216 0.07958143 -0.1862481 0.5225216 0.07958143 -0.2140411 0.5225216 0.07958143 -0.2441142 0.5225216 0.07958143 -0.2765176 0.5225216 0.07958143 -0.3113005 0.5225216 0.07958143 -0.3485102 0.5225216 0.07958143 -0.388193 0.5225216 0.07958143 -0.4303934 0.5225216 0.07958143 -0.4751555 0.5225216 0.07958143 -0.5225216 0.5225216 0.07958143 -0.5725335 0.5225216 0.07958143 -0.6252316 0.5225216 0.07958143 -0.6806558 0.5225216 0.07958143 -0.7388448 0.5225216 0.07958143 -0.7998369 0.5225216 0.07958143 -0.8636691 0.5225216 0.07958143 -0.9303782 0.5225216 0.07958143 -1 0.5225216 0.07958143 -0 0.5725335 0.07958143 -0.002418731 0.5725335 0.07958143 -0.005155668 0.5725335 0.07958143 -0.009080105 0.5725335 0.07958143 -0.01434988 0.5725335 0.07958143 -0.02107202 0.5725335 0.07958143 -0.02934285 0.5725335 0.07958143 -0.03925039 0.5725335 0.07958143 -0.05087609 0.5725335 0.07958143 -0.06429595 0.5725335 0.07958143 -0.07958143 0.5725335 0.07958143 -0.0968001 0.5725335 0.07958143 -0.1160161 0.5725335 0.07958143 -0.1372908 0.5725335 0.07958143 -0.1606827 0.5725335 0.07958143 -0.1862481 0.5725335 0.07958143 -0.2140411 0.5725335 0.07958143 -0.2441142 0.5725335 0.07958143 -0.2765176 0.5725335 0.07958143 -0.3113005 0.5725335 0.07958143 -0.3485102 0.5725335 0.07958143 -0.388193 0.5725335 0.07958143 -0.4303934 0.5725335 0.07958143 -0.4751555 0.5725335 0.07958143 -0.5225216 0.5725335 0.07958143 -0.5725335 0.5725335 0.07958143 -0.6252316 0.5725335 0.07958143 -0.6806558 0.5725335 0.07958143 -0.7388448 0.5725335 0.07958143 -0.7998369 0.5725335 0.07958143 -0.8636691 0.5725335 0.07958143 -0.9303782 0.5725335 0.07958143 -1 0.5725335 0.07958143 -0 0.6252316 0.07958143 -0.002418731 0.6252316 0.07958143 -0.005155668 0.6252316 0.07958143 -0.009080105 0.6252316 0.07958143 -0.01434988 0.6252316 0.07958143 -0.02107202 0.6252316 0.07958143 -0.02934285 0.6252316 0.07958143 -0.03925039 0.6252316 0.07958143 -0.05087609 0.6252316 0.07958143 -0.06429595 0.6252316 0.07958143 -0.07958143 0.6252316 0.07958143 -0.0968001 0.6252316 0.07958143 -0.1160161 0.6252316 0.07958143 -0.1372908 0.6252316 0.07958143 -0.1606827 0.6252316 0.07958143 -0.1862481 0.6252316 0.07958143 -0.2140411 0.6252316 0.07958143 -0.2441142 0.6252316 0.07958143 -0.2765176 0.6252316 0.07958143 -0.3113005 0.6252316 0.07958143 -0.3485102 0.6252316 0.07958143 -0.388193 0.6252316 0.07958143 -0.4303934 0.6252316 0.07958143 -0.4751555 0.6252316 0.07958143 -0.5225216 0.6252316 0.07958143 -0.5725335 0.6252316 0.07958143 -0.6252316 0.6252316 0.07958143 -0.6806558 0.6252316 0.07958143 -0.7388448 0.6252316 0.07958143 -0.7998369 0.6252316 0.07958143 -0.8636691 0.6252316 0.07958143 -0.9303782 0.6252316 0.07958143 -1 0.6252316 0.07958143 -0 0.6806558 0.07958143 -0.002418731 0.6806558 0.07958143 -0.005155668 0.6806558 0.07958143 -0.009080105 0.6806558 0.07958143 -0.01434988 0.6806558 0.07958143 -0.02107202 0.6806558 0.07958143 -0.02934285 0.6806558 0.07958143 -0.03925039 0.6806558 0.07958143 -0.05087609 0.6806558 0.07958143 -0.06429595 0.6806558 0.07958143 -0.07958143 0.6806558 0.07958143 -0.0968001 0.6806558 0.07958143 -0.1160161 0.6806558 0.07958143 -0.1372908 0.6806558 0.07958143 -0.1606827 0.6806558 0.07958143 -0.1862481 0.6806558 0.07958143 -0.2140411 0.6806558 0.07958143 -0.2441142 0.6806558 0.07958143 -0.2765176 0.6806558 0.07958143 -0.3113005 0.6806558 0.07958143 -0.3485102 0.6806558 0.07958143 -0.388193 0.6806558 0.07958143 -0.4303934 0.6806558 0.07958143 -0.4751555 0.6806558 0.07958143 -0.5225216 0.6806558 0.07958143 -0.5725335 0.6806558 0.07958143 -0.6252316 0.6806558 0.07958143 -0.6806558 0.6806558 0.07958143 -0.7388448 0.6806558 0.07958143 -0.7998369 0.6806558 0.07958143 -0.8636691 0.6806558 0.07958143 -0.9303782 0.6806558 0.07958143 -1 0.6806558 0.07958143 -0 0.7388448 0.07958143 -0.002418731 0.7388448 0.07958143 -0.005155668 0.7388448 0.07958143 -0.009080105 0.7388448 0.07958143 -0.01434988 0.7388448 0.07958143 -0.02107202 0.7388448 0.07958143 -0.02934285 0.7388448 0.07958143 -0.03925039 0.7388448 0.07958143 -0.05087609 0.7388448 0.07958143 -0.06429595 0.7388448 0.07958143 -0.07958143 0.7388448 0.07958143 -0.0968001 0.7388448 0.07958143 -0.1160161 0.7388448 0.07958143 -0.1372908 0.7388448 0.07958143 -0.1606827 0.7388448 0.07958143 -0.1862481 0.7388448 0.07958143 -0.2140411 0.7388448 0.07958143 -0.2441142 0.7388448 0.07958143 -0.2765176 0.7388448 0.07958143 -0.3113005 0.7388448 0.07958143 -0.3485102 0.7388448 0.07958143 -0.388193 0.7388448 0.07958143 -0.4303934 0.7388448 0.07958143 -0.4751555 0.7388448 0.07958143 -0.5225216 0.7388448 0.07958143 -0.5725335 0.7388448 0.07958143 -0.6252316 0.7388448 0.07958143 -0.6806558 0.7388448 0.07958143 -0.7388448 0.7388448 0.07958143 -0.7998369 0.7388448 0.07958143 -0.8636691 0.7388448 0.07958143 -0.9303782 0.7388448 0.07958143 -1 0.7388448 0.07958143 -0 0.7998369 0.07958143 -0.002418731 0.7998369 0.07958143 -0.005155668 0.7998369 0.07958143 -0.009080105 0.7998369 0.07958143 -0.01434988 0.7998369 0.07958143 -0.02107202 0.7998369 0.07958143 -0.02934285 0.7998369 0.07958143 -0.03925039 0.7998369 0.07958143 -0.05087609 0.7998369 0.07958143 -0.06429595 0.7998369 0.07958143 -0.07958143 0.7998369 0.07958143 -0.0968001 0.7998369 0.07958143 -0.1160161 0.7998369 0.07958143 -0.1372908 0.7998369 0.07958143 -0.1606827 0.7998369 0.07958143 -0.1862481 0.7998369 0.07958143 -0.2140411 0.7998369 0.07958143 -0.2441142 0.7998369 0.07958143 -0.2765176 0.7998369 0.07958143 -0.3113005 0.7998369 0.07958143 -0.3485102 0.7998369 0.07958143 -0.388193 0.7998369 0.07958143 -0.4303934 0.7998369 0.07958143 -0.4751555 0.7998369 0.07958143 -0.5225216 0.7998369 0.07958143 -0.5725335 0.7998369 0.07958143 -0.6252316 0.7998369 0.07958143 -0.6806558 0.7998369 0.07958143 -0.7388448 0.7998369 0.07958143 -0.7998369 0.7998369 0.07958143 -0.8636691 0.7998369 0.07958143 -0.9303782 0.7998369 0.07958143 -1 0.7998369 0.07958143 -0 0.8636691 0.07958143 -0.002418731 0.8636691 0.07958143 -0.005155668 0.8636691 0.07958143 -0.009080105 0.8636691 0.07958143 -0.01434988 0.8636691 0.07958143 -0.02107202 0.8636691 0.07958143 -0.02934285 0.8636691 0.07958143 -0.03925039 0.8636691 0.07958143 -0.05087609 0.8636691 0.07958143 -0.06429595 0.8636691 0.07958143 -0.07958143 0.8636691 0.07958143 -0.0968001 0.8636691 0.07958143 -0.1160161 0.8636691 0.07958143 -0.1372908 0.8636691 0.07958143 -0.1606827 0.8636691 0.07958143 -0.1862481 0.8636691 0.07958143 -0.2140411 0.8636691 0.07958143 -0.2441142 0.8636691 0.07958143 -0.2765176 0.8636691 0.07958143 -0.3113005 0.8636691 0.07958143 -0.3485102 0.8636691 0.07958143 -0.388193 0.8636691 0.07958143 -0.4303934 0.8636691 0.07958143 -0.4751555 0.8636691 0.07958143 -0.5225216 0.8636691 0.07958143 -0.5725335 0.8636691 0.07958143 -0.6252316 0.8636691 0.07958143 -0.6806558 0.8636691 0.07958143 -0.7388448 0.8636691 0.07958143 -0.7998369 0.8636691 0.07958143 -0.8636691 0.8636691 0.07958143 -0.9303782 0.8636691 0.07958143 -1 0.8636691 0.07958143 -0 0.9303782 0.07958143 -0.002418731 0.9303782 0.07958143 -0.005155668 0.9303782 0.07958143 -0.009080105 0.9303782 0.07958143 -0.01434988 0.9303782 0.07958143 -0.02107202 0.9303782 0.07958143 -0.02934285 0.9303782 0.07958143 -0.03925039 0.9303782 0.07958143 -0.05087609 0.9303782 0.07958143 -0.06429595 0.9303782 0.07958143 -0.07958143 0.9303782 0.07958143 -0.0968001 0.9303782 0.07958143 -0.1160161 0.9303782 0.07958143 -0.1372908 0.9303782 0.07958143 -0.1606827 0.9303782 0.07958143 -0.1862481 0.9303782 0.07958143 -0.2140411 0.9303782 0.07958143 -0.2441142 0.9303782 0.07958143 -0.2765176 0.9303782 0.07958143 -0.3113005 0.9303782 0.07958143 -0.3485102 0.9303782 0.07958143 -0.388193 0.9303782 0.07958143 -0.4303934 0.9303782 0.07958143 -0.4751555 0.9303782 0.07958143 -0.5225216 0.9303782 0.07958143 -0.5725335 0.9303782 0.07958143 -0.6252316 0.9303782 0.07958143 -0.6806558 0.9303782 0.07958143 -0.7388448 0.9303782 0.07958143 -0.7998369 0.9303782 0.07958143 -0.8636691 0.9303782 0.07958143 -0.9303782 0.9303782 0.07958143 -1 0.9303782 0.07958143 -0 1 0.07958143 -0.002418731 1 0.07958143 -0.005155668 1 0.07958143 -0.009080105 1 0.07958143 -0.01434988 1 0.07958143 -0.02107202 1 0.07958143 -0.02934285 1 0.07958143 -0.03925039 1 0.07958143 -0.05087609 1 0.07958143 -0.06429595 1 0.07958143 -0.07958143 1 0.07958143 -0.0968001 1 0.07958143 -0.1160161 1 0.07958143 -0.1372908 1 0.07958143 -0.1606827 1 0.07958143 -0.1862481 1 0.07958143 -0.2140411 1 0.07958143 -0.2441142 1 0.07958143 -0.2765176 1 0.07958143 -0.3113005 1 0.07958143 -0.3485102 1 0.07958143 -0.388193 1 0.07958143 -0.4303934 1 0.07958143 -0.4751555 1 0.07958143 -0.5225216 1 0.07958143 -0.5725335 1 0.07958143 -0.6252316 1 0.07958143 -0.6806558 1 0.07958143 -0.7388448 1 0.07958143 -0.7998369 1 0.07958143 -0.8636691 1 0.07958143 -0.9303782 1 0.07958143 -1 1 0.07958143 -0 0 0.0968001 -0.002418731 0 0.0968001 -0.005155668 0 0.0968001 -0.009080105 0 0.0968001 -0.01434988 0 0.0968001 -0.02107202 0 0.0968001 -0.02934285 0 0.0968001 -0.03925039 0 0.0968001 -0.05087609 0 0.0968001 -0.06429595 0 0.0968001 -0.07958143 0 0.0968001 -0.0968001 0 0.0968001 -0.1160161 0 0.0968001 -0.1372908 0 0.0968001 -0.1606827 0 0.0968001 -0.1862481 0 0.0968001 -0.2140411 0 0.0968001 -0.2441142 0 0.0968001 -0.2765176 0 0.0968001 -0.3113005 0 0.0968001 -0.3485102 0 0.0968001 -0.388193 0 0.0968001 -0.4303934 0 0.0968001 -0.4751555 0 0.0968001 -0.5225216 0 0.0968001 -0.5725335 0 0.0968001 -0.6252316 0 0.0968001 -0.6806558 0 0.0968001 -0.7388448 0 0.0968001 -0.7998369 0 0.0968001 -0.8636691 0 0.0968001 -0.9303782 0 0.0968001 -1 0 0.0968001 -0 0.002418731 0.0968001 -0.002418731 0.002418731 0.0968001 -0.005155668 0.002418731 0.0968001 -0.009080105 0.002418731 0.0968001 -0.01434988 0.002418731 0.0968001 -0.02107202 0.002418731 0.0968001 -0.02934285 0.002418731 0.0968001 -0.03925039 0.002418731 0.0968001 -0.05087609 0.002418731 0.0968001 -0.06429595 0.002418731 0.0968001 -0.07958143 0.002418731 0.0968001 -0.0968001 0.002418731 0.0968001 -0.1160161 0.002418731 0.0968001 -0.1372908 0.002418731 0.0968001 -0.1606827 0.002418731 0.0968001 -0.1862481 0.002418731 0.0968001 -0.2140411 0.002418731 0.0968001 -0.2441142 0.002418731 0.0968001 -0.2765176 0.002418731 0.0968001 -0.3113005 0.002418731 0.0968001 -0.3485102 0.002418731 0.0968001 -0.388193 0.002418731 0.0968001 -0.4303934 0.002418731 0.0968001 -0.4751555 0.002418731 0.0968001 -0.5225216 0.002418731 0.0968001 -0.5725335 0.002418731 0.0968001 -0.6252316 0.002418731 0.0968001 -0.6806558 0.002418731 0.0968001 -0.7388448 0.002418731 0.0968001 -0.7998369 0.002418731 0.0968001 -0.8636691 0.002418731 0.0968001 -0.9303782 0.002418731 0.0968001 -1 0.002418731 0.0968001 -0 0.005155668 0.0968001 -0.002418731 0.005155668 0.0968001 -0.005155668 0.005155668 0.0968001 -0.009080105 0.005155668 0.0968001 -0.01434988 0.005155668 0.0968001 -0.02107202 0.005155668 0.0968001 -0.02934285 0.005155668 0.0968001 -0.03925039 0.005155668 0.0968001 -0.05087609 0.005155668 0.0968001 -0.06429595 0.005155668 0.0968001 -0.07958143 0.005155668 0.0968001 -0.0968001 0.005155668 0.0968001 -0.1160161 0.005155668 0.0968001 -0.1372908 0.005155668 0.0968001 -0.1606827 0.005155668 0.0968001 -0.1862481 0.005155668 0.0968001 -0.2140411 0.005155668 0.0968001 -0.2441142 0.005155668 0.0968001 -0.2765176 0.005155668 0.0968001 -0.3113005 0.005155668 0.0968001 -0.3485102 0.005155668 0.0968001 -0.388193 0.005155668 0.0968001 -0.4303934 0.005155668 0.0968001 -0.4751555 0.005155668 0.0968001 -0.5225216 0.005155668 0.0968001 -0.5725335 0.005155668 0.0968001 -0.6252316 0.005155668 0.0968001 -0.6806558 0.005155668 0.0968001 -0.7388448 0.005155668 0.0968001 -0.7998369 0.005155668 0.0968001 -0.8636691 0.005155668 0.0968001 -0.9303782 0.005155668 0.0968001 -1 0.005155668 0.0968001 -0 0.009080105 0.0968001 -0.002418731 0.009080105 0.0968001 -0.005155668 0.009080105 0.0968001 -0.009080105 0.009080105 0.0968001 -0.01434988 0.009080105 0.0968001 -0.02107202 0.009080105 0.0968001 -0.02934285 0.009080105 0.0968001 -0.03925039 0.009080105 0.0968001 -0.05087609 0.009080105 0.0968001 -0.06429595 0.009080105 0.0968001 -0.07958143 0.009080105 0.0968001 -0.0968001 0.009080105 0.0968001 -0.1160161 0.009080105 0.0968001 -0.1372908 0.009080105 0.0968001 -0.1606827 0.009080105 0.0968001 -0.1862481 0.009080105 0.0968001 -0.2140411 0.009080105 0.0968001 -0.2441142 0.009080105 0.0968001 -0.2765176 0.009080105 0.0968001 -0.3113005 0.009080105 0.0968001 -0.3485102 0.009080105 0.0968001 -0.388193 0.009080105 0.0968001 -0.4303934 0.009080105 0.0968001 -0.4751555 0.009080105 0.0968001 -0.5225216 0.009080105 0.0968001 -0.5725335 0.009080105 0.0968001 -0.6252316 0.009080105 0.0968001 -0.6806558 0.009080105 0.0968001 -0.7388448 0.009080105 0.0968001 -0.7998369 0.009080105 0.0968001 -0.8636691 0.009080105 0.0968001 -0.9303782 0.009080105 0.0968001 -1 0.009080105 0.0968001 -0 0.01434988 0.0968001 -0.002418731 0.01434988 0.0968001 -0.005155668 0.01434988 0.0968001 -0.009080105 0.01434988 0.0968001 -0.01434988 0.01434988 0.0968001 -0.02107202 0.01434988 0.0968001 -0.02934285 0.01434988 0.0968001 -0.03925039 0.01434988 0.0968001 -0.05087609 0.01434988 0.0968001 -0.06429595 0.01434988 0.0968001 -0.07958143 0.01434988 0.0968001 -0.0968001 0.01434988 0.0968001 -0.1160161 0.01434988 0.0968001 -0.1372908 0.01434988 0.0968001 -0.1606827 0.01434988 0.0968001 -0.1862481 0.01434988 0.0968001 -0.2140411 0.01434988 0.0968001 -0.2441142 0.01434988 0.0968001 -0.2765176 0.01434988 0.0968001 -0.3113005 0.01434988 0.0968001 -0.3485102 0.01434988 0.0968001 -0.388193 0.01434988 0.0968001 -0.4303934 0.01434988 0.0968001 -0.4751555 0.01434988 0.0968001 -0.5225216 0.01434988 0.0968001 -0.5725335 0.01434988 0.0968001 -0.6252316 0.01434988 0.0968001 -0.6806558 0.01434988 0.0968001 -0.7388448 0.01434988 0.0968001 -0.7998369 0.01434988 0.0968001 -0.8636691 0.01434988 0.0968001 -0.9303782 0.01434988 0.0968001 -1 0.01434988 0.0968001 -0 0.02107202 0.0968001 -0.002418731 0.02107202 0.0968001 -0.005155668 0.02107202 0.0968001 -0.009080105 0.02107202 0.0968001 -0.01434988 0.02107202 0.0968001 -0.02107202 0.02107202 0.0968001 -0.02934285 0.02107202 0.0968001 -0.03925039 0.02107202 0.0968001 -0.05087609 0.02107202 0.0968001 -0.06429595 0.02107202 0.0968001 -0.07958143 0.02107202 0.0968001 -0.0968001 0.02107202 0.0968001 -0.1160161 0.02107202 0.0968001 -0.1372908 0.02107202 0.0968001 -0.1606827 0.02107202 0.0968001 -0.1862481 0.02107202 0.0968001 -0.2140411 0.02107202 0.0968001 -0.2441142 0.02107202 0.0968001 -0.2765176 0.02107202 0.0968001 -0.3113005 0.02107202 0.0968001 -0.3485102 0.02107202 0.0968001 -0.388193 0.02107202 0.0968001 -0.4303934 0.02107202 0.0968001 -0.4751555 0.02107202 0.0968001 -0.5225216 0.02107202 0.0968001 -0.5725335 0.02107202 0.0968001 -0.6252316 0.02107202 0.0968001 -0.6806558 0.02107202 0.0968001 -0.7388448 0.02107202 0.0968001 -0.7998369 0.02107202 0.0968001 -0.8636691 0.02107202 0.0968001 -0.9303782 0.02107202 0.0968001 -1 0.02107202 0.0968001 -0 0.02934285 0.0968001 -0.002418731 0.02934285 0.0968001 -0.005155668 0.02934285 0.0968001 -0.009080105 0.02934285 0.0968001 -0.01434988 0.02934285 0.0968001 -0.02107202 0.02934285 0.0968001 -0.02934285 0.02934285 0.0968001 -0.03925039 0.02934285 0.0968001 -0.05087609 0.02934285 0.0968001 -0.06429595 0.02934285 0.0968001 -0.07958143 0.02934285 0.0968001 -0.0968001 0.02934285 0.0968001 -0.1160161 0.02934285 0.0968001 -0.1372908 0.02934285 0.0968001 -0.1606827 0.02934285 0.0968001 -0.1862481 0.02934285 0.0968001 -0.2140411 0.02934285 0.0968001 -0.2441142 0.02934285 0.0968001 -0.2765176 0.02934285 0.0968001 -0.3113005 0.02934285 0.0968001 -0.3485102 0.02934285 0.0968001 -0.388193 0.02934285 0.0968001 -0.4303934 0.02934285 0.0968001 -0.4751555 0.02934285 0.0968001 -0.5225216 0.02934285 0.0968001 -0.5725335 0.02934285 0.0968001 -0.6252316 0.02934285 0.0968001 -0.6806558 0.02934285 0.0968001 -0.7388448 0.02934285 0.0968001 -0.7998369 0.02934285 0.0968001 -0.8636691 0.02934285 0.0968001 -0.9303782 0.02934285 0.0968001 -1 0.02934285 0.0968001 -0 0.03925039 0.0968001 -0.002418731 0.03925039 0.0968001 -0.005155668 0.03925039 0.0968001 -0.009080105 0.03925039 0.0968001 -0.01434988 0.03925039 0.0968001 -0.02107202 0.03925039 0.0968001 -0.02934285 0.03925039 0.0968001 -0.03925039 0.03925039 0.0968001 -0.05087609 0.03925039 0.0968001 -0.06429595 0.03925039 0.0968001 -0.07958143 0.03925039 0.0968001 -0.0968001 0.03925039 0.0968001 -0.1160161 0.03925039 0.0968001 -0.1372908 0.03925039 0.0968001 -0.1606827 0.03925039 0.0968001 -0.1862481 0.03925039 0.0968001 -0.2140411 0.03925039 0.0968001 -0.2441142 0.03925039 0.0968001 -0.2765176 0.03925039 0.0968001 -0.3113005 0.03925039 0.0968001 -0.3485102 0.03925039 0.0968001 -0.388193 0.03925039 0.0968001 -0.4303934 0.03925039 0.0968001 -0.4751555 0.03925039 0.0968001 -0.5225216 0.03925039 0.0968001 -0.5725335 0.03925039 0.0968001 -0.6252316 0.03925039 0.0968001 -0.6806558 0.03925039 0.0968001 -0.7388448 0.03925039 0.0968001 -0.7998369 0.03925039 0.0968001 -0.8636691 0.03925039 0.0968001 -0.9303782 0.03925039 0.0968001 -1 0.03925039 0.0968001 -0 0.05087609 0.0968001 -0.002418731 0.05087609 0.0968001 -0.005155668 0.05087609 0.0968001 -0.009080105 0.05087609 0.0968001 -0.01434988 0.05087609 0.0968001 -0.02107202 0.05087609 0.0968001 -0.02934285 0.05087609 0.0968001 -0.03925039 0.05087609 0.0968001 -0.05087609 0.05087609 0.0968001 -0.06429595 0.05087609 0.0968001 -0.07958143 0.05087609 0.0968001 -0.0968001 0.05087609 0.0968001 -0.1160161 0.05087609 0.0968001 -0.1372908 0.05087609 0.0968001 -0.1606827 0.05087609 0.0968001 -0.1862481 0.05087609 0.0968001 -0.2140411 0.05087609 0.0968001 -0.2441142 0.05087609 0.0968001 -0.2765176 0.05087609 0.0968001 -0.3113005 0.05087609 0.0968001 -0.3485102 0.05087609 0.0968001 -0.388193 0.05087609 0.0968001 -0.4303934 0.05087609 0.0968001 -0.4751555 0.05087609 0.0968001 -0.5225216 0.05087609 0.0968001 -0.5725335 0.05087609 0.0968001 -0.6252316 0.05087609 0.0968001 -0.6806558 0.05087609 0.0968001 -0.7388448 0.05087609 0.0968001 -0.7998369 0.05087609 0.0968001 -0.8636691 0.05087609 0.0968001 -0.9303782 0.05087609 0.0968001 -1 0.05087609 0.0968001 -0 0.06429595 0.0968001 -0.002418731 0.06429595 0.0968001 -0.005155668 0.06429595 0.0968001 -0.009080105 0.06429595 0.0968001 -0.01434988 0.06429595 0.0968001 -0.02107202 0.06429595 0.0968001 -0.02934285 0.06429595 0.0968001 -0.03925039 0.06429595 0.0968001 -0.05087609 0.06429595 0.0968001 -0.06429595 0.06429595 0.0968001 -0.07958143 0.06429595 0.0968001 -0.0968001 0.06429595 0.0968001 -0.1160161 0.06429595 0.0968001 -0.1372908 0.06429595 0.0968001 -0.1606827 0.06429595 0.0968001 -0.1862481 0.06429595 0.0968001 -0.2140411 0.06429595 0.0968001 -0.2441142 0.06429595 0.0968001 -0.2765176 0.06429595 0.0968001 -0.3113005 0.06429595 0.0968001 -0.3485102 0.06429595 0.0968001 -0.388193 0.06429595 0.0968001 -0.4303934 0.06429595 0.0968001 -0.4751555 0.06429595 0.0968001 -0.5225216 0.06429595 0.0968001 -0.5725335 0.06429595 0.0968001 -0.6252316 0.06429595 0.0968001 -0.6806558 0.06429595 0.0968001 -0.7388448 0.06429595 0.0968001 -0.7998369 0.06429595 0.0968001 -0.8636691 0.06429595 0.0968001 -0.9303782 0.06429595 0.0968001 -1 0.06429595 0.0968001 -0 0.07958143 0.0968001 -0.002418731 0.07958143 0.0968001 -0.005155668 0.07958143 0.0968001 -0.009080105 0.07958143 0.0968001 -0.01434988 0.07958143 0.0968001 -0.02107202 0.07958143 0.0968001 -0.02934285 0.07958143 0.0968001 -0.03925039 0.07958143 0.0968001 -0.05087609 0.07958143 0.0968001 -0.06429595 0.07958143 0.0968001 -0.07958143 0.07958143 0.0968001 -0.0968001 0.07958143 0.0968001 -0.1160161 0.07958143 0.0968001 -0.1372908 0.07958143 0.0968001 -0.1606827 0.07958143 0.0968001 -0.1862481 0.07958143 0.0968001 -0.2140411 0.07958143 0.0968001 -0.2441142 0.07958143 0.0968001 -0.2765176 0.07958143 0.0968001 -0.3113005 0.07958143 0.0968001 -0.3485102 0.07958143 0.0968001 -0.388193 0.07958143 0.0968001 -0.4303934 0.07958143 0.0968001 -0.4751555 0.07958143 0.0968001 -0.5225216 0.07958143 0.0968001 -0.5725335 0.07958143 0.0968001 -0.6252316 0.07958143 0.0968001 -0.6806558 0.07958143 0.0968001 -0.7388448 0.07958143 0.0968001 -0.7998369 0.07958143 0.0968001 -0.8636691 0.07958143 0.0968001 -0.9303782 0.07958143 0.0968001 -1 0.07958143 0.0968001 -0 0.0968001 0.0968001 -0.002418731 0.0968001 0.0968001 -0.005155668 0.0968001 0.0968001 -0.009080105 0.0968001 0.0968001 -0.01434988 0.0968001 0.0968001 -0.02107202 0.0968001 0.0968001 -0.02934285 0.0968001 0.0968001 -0.03925039 0.0968001 0.0968001 -0.05087609 0.0968001 0.0968001 -0.06429595 0.0968001 0.0968001 -0.07958143 0.0968001 0.0968001 -0.0968001 0.0968001 0.0968001 -0.1160161 0.0968001 0.0968001 -0.1372908 0.0968001 0.0968001 -0.1606827 0.0968001 0.0968001 -0.1862481 0.0968001 0.0968001 -0.2140411 0.0968001 0.0968001 -0.2441142 0.0968001 0.0968001 -0.2765176 0.0968001 0.0968001 -0.3113005 0.0968001 0.0968001 -0.3485102 0.0968001 0.0968001 -0.388193 0.0968001 0.0968001 -0.4303934 0.0968001 0.0968001 -0.4751555 0.0968001 0.0968001 -0.5225216 0.0968001 0.0968001 -0.5725335 0.0968001 0.0968001 -0.6252316 0.0968001 0.0968001 -0.6806558 0.0968001 0.0968001 -0.7388448 0.0968001 0.0968001 -0.7998369 0.0968001 0.0968001 -0.8636691 0.0968001 0.0968001 -0.9303782 0.0968001 0.0968001 -1 0.0968001 0.0968001 -0 0.1160161 0.0968001 -0.002418731 0.1160161 0.0968001 -0.005155668 0.1160161 0.0968001 -0.009080105 0.1160161 0.0968001 -0.01434988 0.1160161 0.0968001 -0.02107202 0.1160161 0.0968001 -0.02934285 0.1160161 0.0968001 -0.03925039 0.1160161 0.0968001 -0.05087609 0.1160161 0.0968001 -0.06429595 0.1160161 0.0968001 -0.07958143 0.1160161 0.0968001 -0.0968001 0.1160161 0.0968001 -0.1160161 0.1160161 0.0968001 -0.1372908 0.1160161 0.0968001 -0.1606827 0.1160161 0.0968001 -0.1862481 0.1160161 0.0968001 -0.2140411 0.1160161 0.0968001 -0.2441142 0.1160161 0.0968001 -0.2765176 0.1160161 0.0968001 -0.3113005 0.1160161 0.0968001 -0.3485102 0.1160161 0.0968001 -0.388193 0.1160161 0.0968001 -0.4303934 0.1160161 0.0968001 -0.4751555 0.1160161 0.0968001 -0.5225216 0.1160161 0.0968001 -0.5725335 0.1160161 0.0968001 -0.6252316 0.1160161 0.0968001 -0.6806558 0.1160161 0.0968001 -0.7388448 0.1160161 0.0968001 -0.7998369 0.1160161 0.0968001 -0.8636691 0.1160161 0.0968001 -0.9303782 0.1160161 0.0968001 -1 0.1160161 0.0968001 -0 0.1372908 0.0968001 -0.002418731 0.1372908 0.0968001 -0.005155668 0.1372908 0.0968001 -0.009080105 0.1372908 0.0968001 -0.01434988 0.1372908 0.0968001 -0.02107202 0.1372908 0.0968001 -0.02934285 0.1372908 0.0968001 -0.03925039 0.1372908 0.0968001 -0.05087609 0.1372908 0.0968001 -0.06429595 0.1372908 0.0968001 -0.07958143 0.1372908 0.0968001 -0.0968001 0.1372908 0.0968001 -0.1160161 0.1372908 0.0968001 -0.1372908 0.1372908 0.0968001 -0.1606827 0.1372908 0.0968001 -0.1862481 0.1372908 0.0968001 -0.2140411 0.1372908 0.0968001 -0.2441142 0.1372908 0.0968001 -0.2765176 0.1372908 0.0968001 -0.3113005 0.1372908 0.0968001 -0.3485102 0.1372908 0.0968001 -0.388193 0.1372908 0.0968001 -0.4303934 0.1372908 0.0968001 -0.4751555 0.1372908 0.0968001 -0.5225216 0.1372908 0.0968001 -0.5725335 0.1372908 0.0968001 -0.6252316 0.1372908 0.0968001 -0.6806558 0.1372908 0.0968001 -0.7388448 0.1372908 0.0968001 -0.7998369 0.1372908 0.0968001 -0.8636691 0.1372908 0.0968001 -0.9303782 0.1372908 0.0968001 -1 0.1372908 0.0968001 -0 0.1606827 0.0968001 -0.002418731 0.1606827 0.0968001 -0.005155668 0.1606827 0.0968001 -0.009080105 0.1606827 0.0968001 -0.01434988 0.1606827 0.0968001 -0.02107202 0.1606827 0.0968001 -0.02934285 0.1606827 0.0968001 -0.03925039 0.1606827 0.0968001 -0.05087609 0.1606827 0.0968001 -0.06429595 0.1606827 0.0968001 -0.07958143 0.1606827 0.0968001 -0.0968001 0.1606827 0.0968001 -0.1160161 0.1606827 0.0968001 -0.1372908 0.1606827 0.0968001 -0.1606827 0.1606827 0.0968001 -0.1862481 0.1606827 0.0968001 -0.2140411 0.1606827 0.0968001 -0.2441142 0.1606827 0.0968001 -0.2765176 0.1606827 0.0968001 -0.3113005 0.1606827 0.0968001 -0.3485102 0.1606827 0.0968001 -0.388193 0.1606827 0.0968001 -0.4303934 0.1606827 0.0968001 -0.4751555 0.1606827 0.0968001 -0.5225216 0.1606827 0.0968001 -0.5725335 0.1606827 0.0968001 -0.6252316 0.1606827 0.0968001 -0.6806558 0.1606827 0.0968001 -0.7388448 0.1606827 0.0968001 -0.7998369 0.1606827 0.0968001 -0.8636691 0.1606827 0.0968001 -0.9303782 0.1606827 0.0968001 -1 0.1606827 0.0968001 -0 0.1862481 0.0968001 -0.002418731 0.1862481 0.0968001 -0.005155668 0.1862481 0.0968001 -0.009080105 0.1862481 0.0968001 -0.01434988 0.1862481 0.0968001 -0.02107202 0.1862481 0.0968001 -0.02934285 0.1862481 0.0968001 -0.03925039 0.1862481 0.0968001 -0.05087609 0.1862481 0.0968001 -0.06429595 0.1862481 0.0968001 -0.07958143 0.1862481 0.0968001 -0.0968001 0.1862481 0.0968001 -0.1160161 0.1862481 0.0968001 -0.1372908 0.1862481 0.0968001 -0.1606827 0.1862481 0.0968001 -0.1862481 0.1862481 0.0968001 -0.2140411 0.1862481 0.0968001 -0.2441142 0.1862481 0.0968001 -0.2765176 0.1862481 0.0968001 -0.3113005 0.1862481 0.0968001 -0.3485102 0.1862481 0.0968001 -0.388193 0.1862481 0.0968001 -0.4303934 0.1862481 0.0968001 -0.4751555 0.1862481 0.0968001 -0.5225216 0.1862481 0.0968001 -0.5725335 0.1862481 0.0968001 -0.6252316 0.1862481 0.0968001 -0.6806558 0.1862481 0.0968001 -0.7388448 0.1862481 0.0968001 -0.7998369 0.1862481 0.0968001 -0.8636691 0.1862481 0.0968001 -0.9303782 0.1862481 0.0968001 -1 0.1862481 0.0968001 -0 0.2140411 0.0968001 -0.002418731 0.2140411 0.0968001 -0.005155668 0.2140411 0.0968001 -0.009080105 0.2140411 0.0968001 -0.01434988 0.2140411 0.0968001 -0.02107202 0.2140411 0.0968001 -0.02934285 0.2140411 0.0968001 -0.03925039 0.2140411 0.0968001 -0.05087609 0.2140411 0.0968001 -0.06429595 0.2140411 0.0968001 -0.07958143 0.2140411 0.0968001 -0.0968001 0.2140411 0.0968001 -0.1160161 0.2140411 0.0968001 -0.1372908 0.2140411 0.0968001 -0.1606827 0.2140411 0.0968001 -0.1862481 0.2140411 0.0968001 -0.2140411 0.2140411 0.0968001 -0.2441142 0.2140411 0.0968001 -0.2765176 0.2140411 0.0968001 -0.3113005 0.2140411 0.0968001 -0.3485102 0.2140411 0.0968001 -0.388193 0.2140411 0.0968001 -0.4303934 0.2140411 0.0968001 -0.4751555 0.2140411 0.0968001 -0.5225216 0.2140411 0.0968001 -0.5725335 0.2140411 0.0968001 -0.6252316 0.2140411 0.0968001 -0.6806558 0.2140411 0.0968001 -0.7388448 0.2140411 0.0968001 -0.7998369 0.2140411 0.0968001 -0.8636691 0.2140411 0.0968001 -0.9303782 0.2140411 0.0968001 -1 0.2140411 0.0968001 -0 0.2441142 0.0968001 -0.002418731 0.2441142 0.0968001 -0.005155668 0.2441142 0.0968001 -0.009080105 0.2441142 0.0968001 -0.01434988 0.2441142 0.0968001 -0.02107202 0.2441142 0.0968001 -0.02934285 0.2441142 0.0968001 -0.03925039 0.2441142 0.0968001 -0.05087609 0.2441142 0.0968001 -0.06429595 0.2441142 0.0968001 -0.07958143 0.2441142 0.0968001 -0.0968001 0.2441142 0.0968001 -0.1160161 0.2441142 0.0968001 -0.1372908 0.2441142 0.0968001 -0.1606827 0.2441142 0.0968001 -0.1862481 0.2441142 0.0968001 -0.2140411 0.2441142 0.0968001 -0.2441142 0.2441142 0.0968001 -0.2765176 0.2441142 0.0968001 -0.3113005 0.2441142 0.0968001 -0.3485102 0.2441142 0.0968001 -0.388193 0.2441142 0.0968001 -0.4303934 0.2441142 0.0968001 -0.4751555 0.2441142 0.0968001 -0.5225216 0.2441142 0.0968001 -0.5725335 0.2441142 0.0968001 -0.6252316 0.2441142 0.0968001 -0.6806558 0.2441142 0.0968001 -0.7388448 0.2441142 0.0968001 -0.7998369 0.2441142 0.0968001 -0.8636691 0.2441142 0.0968001 -0.9303782 0.2441142 0.0968001 -1 0.2441142 0.0968001 -0 0.2765176 0.0968001 -0.002418731 0.2765176 0.0968001 -0.005155668 0.2765176 0.0968001 -0.009080105 0.2765176 0.0968001 -0.01434988 0.2765176 0.0968001 -0.02107202 0.2765176 0.0968001 -0.02934285 0.2765176 0.0968001 -0.03925039 0.2765176 0.0968001 -0.05087609 0.2765176 0.0968001 -0.06429595 0.2765176 0.0968001 -0.07958143 0.2765176 0.0968001 -0.0968001 0.2765176 0.0968001 -0.1160161 0.2765176 0.0968001 -0.1372908 0.2765176 0.0968001 -0.1606827 0.2765176 0.0968001 -0.1862481 0.2765176 0.0968001 -0.2140411 0.2765176 0.0968001 -0.2441142 0.2765176 0.0968001 -0.2765176 0.2765176 0.0968001 -0.3113005 0.2765176 0.0968001 -0.3485102 0.2765176 0.0968001 -0.388193 0.2765176 0.0968001 -0.4303934 0.2765176 0.0968001 -0.4751555 0.2765176 0.0968001 -0.5225216 0.2765176 0.0968001 -0.5725335 0.2765176 0.0968001 -0.6252316 0.2765176 0.0968001 -0.6806558 0.2765176 0.0968001 -0.7388448 0.2765176 0.0968001 -0.7998369 0.2765176 0.0968001 -0.8636691 0.2765176 0.0968001 -0.9303782 0.2765176 0.0968001 -1 0.2765176 0.0968001 -0 0.3113005 0.0968001 -0.002418731 0.3113005 0.0968001 -0.005155668 0.3113005 0.0968001 -0.009080105 0.3113005 0.0968001 -0.01434988 0.3113005 0.0968001 -0.02107202 0.3113005 0.0968001 -0.02934285 0.3113005 0.0968001 -0.03925039 0.3113005 0.0968001 -0.05087609 0.3113005 0.0968001 -0.06429595 0.3113005 0.0968001 -0.07958143 0.3113005 0.0968001 -0.0968001 0.3113005 0.0968001 -0.1160161 0.3113005 0.0968001 -0.1372908 0.3113005 0.0968001 -0.1606827 0.3113005 0.0968001 -0.1862481 0.3113005 0.0968001 -0.2140411 0.3113005 0.0968001 -0.2441142 0.3113005 0.0968001 -0.2765176 0.3113005 0.0968001 -0.3113005 0.3113005 0.0968001 -0.3485102 0.3113005 0.0968001 -0.388193 0.3113005 0.0968001 -0.4303934 0.3113005 0.0968001 -0.4751555 0.3113005 0.0968001 -0.5225216 0.3113005 0.0968001 -0.5725335 0.3113005 0.0968001 -0.6252316 0.3113005 0.0968001 -0.6806558 0.3113005 0.0968001 -0.7388448 0.3113005 0.0968001 -0.7998369 0.3113005 0.0968001 -0.8636691 0.3113005 0.0968001 -0.9303782 0.3113005 0.0968001 -1 0.3113005 0.0968001 -0 0.3485102 0.0968001 -0.002418731 0.3485102 0.0968001 -0.005155668 0.3485102 0.0968001 -0.009080105 0.3485102 0.0968001 -0.01434988 0.3485102 0.0968001 -0.02107202 0.3485102 0.0968001 -0.02934285 0.3485102 0.0968001 -0.03925039 0.3485102 0.0968001 -0.05087609 0.3485102 0.0968001 -0.06429595 0.3485102 0.0968001 -0.07958143 0.3485102 0.0968001 -0.0968001 0.3485102 0.0968001 -0.1160161 0.3485102 0.0968001 -0.1372908 0.3485102 0.0968001 -0.1606827 0.3485102 0.0968001 -0.1862481 0.3485102 0.0968001 -0.2140411 0.3485102 0.0968001 -0.2441142 0.3485102 0.0968001 -0.2765176 0.3485102 0.0968001 -0.3113005 0.3485102 0.0968001 -0.3485102 0.3485102 0.0968001 -0.388193 0.3485102 0.0968001 -0.4303934 0.3485102 0.0968001 -0.4751555 0.3485102 0.0968001 -0.5225216 0.3485102 0.0968001 -0.5725335 0.3485102 0.0968001 -0.6252316 0.3485102 0.0968001 -0.6806558 0.3485102 0.0968001 -0.7388448 0.3485102 0.0968001 -0.7998369 0.3485102 0.0968001 -0.8636691 0.3485102 0.0968001 -0.9303782 0.3485102 0.0968001 -1 0.3485102 0.0968001 -0 0.388193 0.0968001 -0.002418731 0.388193 0.0968001 -0.005155668 0.388193 0.0968001 -0.009080105 0.388193 0.0968001 -0.01434988 0.388193 0.0968001 -0.02107202 0.388193 0.0968001 -0.02934285 0.388193 0.0968001 -0.03925039 0.388193 0.0968001 -0.05087609 0.388193 0.0968001 -0.06429595 0.388193 0.0968001 -0.07958143 0.388193 0.0968001 -0.0968001 0.388193 0.0968001 -0.1160161 0.388193 0.0968001 -0.1372908 0.388193 0.0968001 -0.1606827 0.388193 0.0968001 -0.1862481 0.388193 0.0968001 -0.2140411 0.388193 0.0968001 -0.2441142 0.388193 0.0968001 -0.2765176 0.388193 0.0968001 -0.3113005 0.388193 0.0968001 -0.3485102 0.388193 0.0968001 -0.388193 0.388193 0.0968001 -0.4303934 0.388193 0.0968001 -0.4751555 0.388193 0.0968001 -0.5225216 0.388193 0.0968001 -0.5725335 0.388193 0.0968001 -0.6252316 0.388193 0.0968001 -0.6806558 0.388193 0.0968001 -0.7388448 0.388193 0.0968001 -0.7998369 0.388193 0.0968001 -0.8636691 0.388193 0.0968001 -0.9303782 0.388193 0.0968001 -1 0.388193 0.0968001 -0 0.4303934 0.0968001 -0.002418731 0.4303934 0.0968001 -0.005155668 0.4303934 0.0968001 -0.009080105 0.4303934 0.0968001 -0.01434988 0.4303934 0.0968001 -0.02107202 0.4303934 0.0968001 -0.02934285 0.4303934 0.0968001 -0.03925039 0.4303934 0.0968001 -0.05087609 0.4303934 0.0968001 -0.06429595 0.4303934 0.0968001 -0.07958143 0.4303934 0.0968001 -0.0968001 0.4303934 0.0968001 -0.1160161 0.4303934 0.0968001 -0.1372908 0.4303934 0.0968001 -0.1606827 0.4303934 0.0968001 -0.1862481 0.4303934 0.0968001 -0.2140411 0.4303934 0.0968001 -0.2441142 0.4303934 0.0968001 -0.2765176 0.4303934 0.0968001 -0.3113005 0.4303934 0.0968001 -0.3485102 0.4303934 0.0968001 -0.388193 0.4303934 0.0968001 -0.4303934 0.4303934 0.0968001 -0.4751555 0.4303934 0.0968001 -0.5225216 0.4303934 0.0968001 -0.5725335 0.4303934 0.0968001 -0.6252316 0.4303934 0.0968001 -0.6806558 0.4303934 0.0968001 -0.7388448 0.4303934 0.0968001 -0.7998369 0.4303934 0.0968001 -0.8636691 0.4303934 0.0968001 -0.9303782 0.4303934 0.0968001 -1 0.4303934 0.0968001 -0 0.4751555 0.0968001 -0.002418731 0.4751555 0.0968001 -0.005155668 0.4751555 0.0968001 -0.009080105 0.4751555 0.0968001 -0.01434988 0.4751555 0.0968001 -0.02107202 0.4751555 0.0968001 -0.02934285 0.4751555 0.0968001 -0.03925039 0.4751555 0.0968001 -0.05087609 0.4751555 0.0968001 -0.06429595 0.4751555 0.0968001 -0.07958143 0.4751555 0.0968001 -0.0968001 0.4751555 0.0968001 -0.1160161 0.4751555 0.0968001 -0.1372908 0.4751555 0.0968001 -0.1606827 0.4751555 0.0968001 -0.1862481 0.4751555 0.0968001 -0.2140411 0.4751555 0.0968001 -0.2441142 0.4751555 0.0968001 -0.2765176 0.4751555 0.0968001 -0.3113005 0.4751555 0.0968001 -0.3485102 0.4751555 0.0968001 -0.388193 0.4751555 0.0968001 -0.4303934 0.4751555 0.0968001 -0.4751555 0.4751555 0.0968001 -0.5225216 0.4751555 0.0968001 -0.5725335 0.4751555 0.0968001 -0.6252316 0.4751555 0.0968001 -0.6806558 0.4751555 0.0968001 -0.7388448 0.4751555 0.0968001 -0.7998369 0.4751555 0.0968001 -0.8636691 0.4751555 0.0968001 -0.9303782 0.4751555 0.0968001 -1 0.4751555 0.0968001 -0 0.5225216 0.0968001 -0.002418731 0.5225216 0.0968001 -0.005155668 0.5225216 0.0968001 -0.009080105 0.5225216 0.0968001 -0.01434988 0.5225216 0.0968001 -0.02107202 0.5225216 0.0968001 -0.02934285 0.5225216 0.0968001 -0.03925039 0.5225216 0.0968001 -0.05087609 0.5225216 0.0968001 -0.06429595 0.5225216 0.0968001 -0.07958143 0.5225216 0.0968001 -0.0968001 0.5225216 0.0968001 -0.1160161 0.5225216 0.0968001 -0.1372908 0.5225216 0.0968001 -0.1606827 0.5225216 0.0968001 -0.1862481 0.5225216 0.0968001 -0.2140411 0.5225216 0.0968001 -0.2441142 0.5225216 0.0968001 -0.2765176 0.5225216 0.0968001 -0.3113005 0.5225216 0.0968001 -0.3485102 0.5225216 0.0968001 -0.388193 0.5225216 0.0968001 -0.4303934 0.5225216 0.0968001 -0.4751555 0.5225216 0.0968001 -0.5225216 0.5225216 0.0968001 -0.5725335 0.5225216 0.0968001 -0.6252316 0.5225216 0.0968001 -0.6806558 0.5225216 0.0968001 -0.7388448 0.5225216 0.0968001 -0.7998369 0.5225216 0.0968001 -0.8636691 0.5225216 0.0968001 -0.9303782 0.5225216 0.0968001 -1 0.5225216 0.0968001 -0 0.5725335 0.0968001 -0.002418731 0.5725335 0.0968001 -0.005155668 0.5725335 0.0968001 -0.009080105 0.5725335 0.0968001 -0.01434988 0.5725335 0.0968001 -0.02107202 0.5725335 0.0968001 -0.02934285 0.5725335 0.0968001 -0.03925039 0.5725335 0.0968001 -0.05087609 0.5725335 0.0968001 -0.06429595 0.5725335 0.0968001 -0.07958143 0.5725335 0.0968001 -0.0968001 0.5725335 0.0968001 -0.1160161 0.5725335 0.0968001 -0.1372908 0.5725335 0.0968001 -0.1606827 0.5725335 0.0968001 -0.1862481 0.5725335 0.0968001 -0.2140411 0.5725335 0.0968001 -0.2441142 0.5725335 0.0968001 -0.2765176 0.5725335 0.0968001 -0.3113005 0.5725335 0.0968001 -0.3485102 0.5725335 0.0968001 -0.388193 0.5725335 0.0968001 -0.4303934 0.5725335 0.0968001 -0.4751555 0.5725335 0.0968001 -0.5225216 0.5725335 0.0968001 -0.5725335 0.5725335 0.0968001 -0.6252316 0.5725335 0.0968001 -0.6806558 0.5725335 0.0968001 -0.7388448 0.5725335 0.0968001 -0.7998369 0.5725335 0.0968001 -0.8636691 0.5725335 0.0968001 -0.9303782 0.5725335 0.0968001 -1 0.5725335 0.0968001 -0 0.6252316 0.0968001 -0.002418731 0.6252316 0.0968001 -0.005155668 0.6252316 0.0968001 -0.009080105 0.6252316 0.0968001 -0.01434988 0.6252316 0.0968001 -0.02107202 0.6252316 0.0968001 -0.02934285 0.6252316 0.0968001 -0.03925039 0.6252316 0.0968001 -0.05087609 0.6252316 0.0968001 -0.06429595 0.6252316 0.0968001 -0.07958143 0.6252316 0.0968001 -0.0968001 0.6252316 0.0968001 -0.1160161 0.6252316 0.0968001 -0.1372908 0.6252316 0.0968001 -0.1606827 0.6252316 0.0968001 -0.1862481 0.6252316 0.0968001 -0.2140411 0.6252316 0.0968001 -0.2441142 0.6252316 0.0968001 -0.2765176 0.6252316 0.0968001 -0.3113005 0.6252316 0.0968001 -0.3485102 0.6252316 0.0968001 -0.388193 0.6252316 0.0968001 -0.4303934 0.6252316 0.0968001 -0.4751555 0.6252316 0.0968001 -0.5225216 0.6252316 0.0968001 -0.5725335 0.6252316 0.0968001 -0.6252316 0.6252316 0.0968001 -0.6806558 0.6252316 0.0968001 -0.7388448 0.6252316 0.0968001 -0.7998369 0.6252316 0.0968001 -0.8636691 0.6252316 0.0968001 -0.9303782 0.6252316 0.0968001 -1 0.6252316 0.0968001 -0 0.6806558 0.0968001 -0.002418731 0.6806558 0.0968001 -0.005155668 0.6806558 0.0968001 -0.009080105 0.6806558 0.0968001 -0.01434988 0.6806558 0.0968001 -0.02107202 0.6806558 0.0968001 -0.02934285 0.6806558 0.0968001 -0.03925039 0.6806558 0.0968001 -0.05087609 0.6806558 0.0968001 -0.06429595 0.6806558 0.0968001 -0.07958143 0.6806558 0.0968001 -0.0968001 0.6806558 0.0968001 -0.1160161 0.6806558 0.0968001 -0.1372908 0.6806558 0.0968001 -0.1606827 0.6806558 0.0968001 -0.1862481 0.6806558 0.0968001 -0.2140411 0.6806558 0.0968001 -0.2441142 0.6806558 0.0968001 -0.2765176 0.6806558 0.0968001 -0.3113005 0.6806558 0.0968001 -0.3485102 0.6806558 0.0968001 -0.388193 0.6806558 0.0968001 -0.4303934 0.6806558 0.0968001 -0.4751555 0.6806558 0.0968001 -0.5225216 0.6806558 0.0968001 -0.5725335 0.6806558 0.0968001 -0.6252316 0.6806558 0.0968001 -0.6806558 0.6806558 0.0968001 -0.7388448 0.6806558 0.0968001 -0.7998369 0.6806558 0.0968001 -0.8636691 0.6806558 0.0968001 -0.9303782 0.6806558 0.0968001 -1 0.6806558 0.0968001 -0 0.7388448 0.0968001 -0.002418731 0.7388448 0.0968001 -0.005155668 0.7388448 0.0968001 -0.009080105 0.7388448 0.0968001 -0.01434988 0.7388448 0.0968001 -0.02107202 0.7388448 0.0968001 -0.02934285 0.7388448 0.0968001 -0.03925039 0.7388448 0.0968001 -0.05087609 0.7388448 0.0968001 -0.06429595 0.7388448 0.0968001 -0.07958143 0.7388448 0.0968001 -0.0968001 0.7388448 0.0968001 -0.1160161 0.7388448 0.0968001 -0.1372908 0.7388448 0.0968001 -0.1606827 0.7388448 0.0968001 -0.1862481 0.7388448 0.0968001 -0.2140411 0.7388448 0.0968001 -0.2441142 0.7388448 0.0968001 -0.2765176 0.7388448 0.0968001 -0.3113005 0.7388448 0.0968001 -0.3485102 0.7388448 0.0968001 -0.388193 0.7388448 0.0968001 -0.4303934 0.7388448 0.0968001 -0.4751555 0.7388448 0.0968001 -0.5225216 0.7388448 0.0968001 -0.5725335 0.7388448 0.0968001 -0.6252316 0.7388448 0.0968001 -0.6806558 0.7388448 0.0968001 -0.7388448 0.7388448 0.0968001 -0.7998369 0.7388448 0.0968001 -0.8636691 0.7388448 0.0968001 -0.9303782 0.7388448 0.0968001 -1 0.7388448 0.0968001 -0 0.7998369 0.0968001 -0.002418731 0.7998369 0.0968001 -0.005155668 0.7998369 0.0968001 -0.009080105 0.7998369 0.0968001 -0.01434988 0.7998369 0.0968001 -0.02107202 0.7998369 0.0968001 -0.02934285 0.7998369 0.0968001 -0.03925039 0.7998369 0.0968001 -0.05087609 0.7998369 0.0968001 -0.06429595 0.7998369 0.0968001 -0.07958143 0.7998369 0.0968001 -0.0968001 0.7998369 0.0968001 -0.1160161 0.7998369 0.0968001 -0.1372908 0.7998369 0.0968001 -0.1606827 0.7998369 0.0968001 -0.1862481 0.7998369 0.0968001 -0.2140411 0.7998369 0.0968001 -0.2441142 0.7998369 0.0968001 -0.2765176 0.7998369 0.0968001 -0.3113005 0.7998369 0.0968001 -0.3485102 0.7998369 0.0968001 -0.388193 0.7998369 0.0968001 -0.4303934 0.7998369 0.0968001 -0.4751555 0.7998369 0.0968001 -0.5225216 0.7998369 0.0968001 -0.5725335 0.7998369 0.0968001 -0.6252316 0.7998369 0.0968001 -0.6806558 0.7998369 0.0968001 -0.7388448 0.7998369 0.0968001 -0.7998369 0.7998369 0.0968001 -0.8636691 0.7998369 0.0968001 -0.9303782 0.7998369 0.0968001 -1 0.7998369 0.0968001 -0 0.8636691 0.0968001 -0.002418731 0.8636691 0.0968001 -0.005155668 0.8636691 0.0968001 -0.009080105 0.8636691 0.0968001 -0.01434988 0.8636691 0.0968001 -0.02107202 0.8636691 0.0968001 -0.02934285 0.8636691 0.0968001 -0.03925039 0.8636691 0.0968001 -0.05087609 0.8636691 0.0968001 -0.06429595 0.8636691 0.0968001 -0.07958143 0.8636691 0.0968001 -0.0968001 0.8636691 0.0968001 -0.1160161 0.8636691 0.0968001 -0.1372908 0.8636691 0.0968001 -0.1606827 0.8636691 0.0968001 -0.1862481 0.8636691 0.0968001 -0.2140411 0.8636691 0.0968001 -0.2441142 0.8636691 0.0968001 -0.2765176 0.8636691 0.0968001 -0.3113005 0.8636691 0.0968001 -0.3485102 0.8636691 0.0968001 -0.388193 0.8636691 0.0968001 -0.4303934 0.8636691 0.0968001 -0.4751555 0.8636691 0.0968001 -0.5225216 0.8636691 0.0968001 -0.5725335 0.8636691 0.0968001 -0.6252316 0.8636691 0.0968001 -0.6806558 0.8636691 0.0968001 -0.7388448 0.8636691 0.0968001 -0.7998369 0.8636691 0.0968001 -0.8636691 0.8636691 0.0968001 -0.9303782 0.8636691 0.0968001 -1 0.8636691 0.0968001 -0 0.9303782 0.0968001 -0.002418731 0.9303782 0.0968001 -0.005155668 0.9303782 0.0968001 -0.009080105 0.9303782 0.0968001 -0.01434988 0.9303782 0.0968001 -0.02107202 0.9303782 0.0968001 -0.02934285 0.9303782 0.0968001 -0.03925039 0.9303782 0.0968001 -0.05087609 0.9303782 0.0968001 -0.06429595 0.9303782 0.0968001 -0.07958143 0.9303782 0.0968001 -0.0968001 0.9303782 0.0968001 -0.1160161 0.9303782 0.0968001 -0.1372908 0.9303782 0.0968001 -0.1606827 0.9303782 0.0968001 -0.1862481 0.9303782 0.0968001 -0.2140411 0.9303782 0.0968001 -0.2441142 0.9303782 0.0968001 -0.2765176 0.9303782 0.0968001 -0.3113005 0.9303782 0.0968001 -0.3485102 0.9303782 0.0968001 -0.388193 0.9303782 0.0968001 -0.4303934 0.9303782 0.0968001 -0.4751555 0.9303782 0.0968001 -0.5225216 0.9303782 0.0968001 -0.5725335 0.9303782 0.0968001 -0.6252316 0.9303782 0.0968001 -0.6806558 0.9303782 0.0968001 -0.7388448 0.9303782 0.0968001 -0.7998369 0.9303782 0.0968001 -0.8636691 0.9303782 0.0968001 -0.9303782 0.9303782 0.0968001 -1 0.9303782 0.0968001 -0 1 0.0968001 -0.002418731 1 0.0968001 -0.005155668 1 0.0968001 -0.009080105 1 0.0968001 -0.01434988 1 0.0968001 -0.02107202 1 0.0968001 -0.02934285 1 0.0968001 -0.03925039 1 0.0968001 -0.05087609 1 0.0968001 -0.06429595 1 0.0968001 -0.07958143 1 0.0968001 -0.0968001 1 0.0968001 -0.1160161 1 0.0968001 -0.1372908 1 0.0968001 -0.1606827 1 0.0968001 -0.1862481 1 0.0968001 -0.2140411 1 0.0968001 -0.2441142 1 0.0968001 -0.2765176 1 0.0968001 -0.3113005 1 0.0968001 -0.3485102 1 0.0968001 -0.388193 1 0.0968001 -0.4303934 1 0.0968001 -0.4751555 1 0.0968001 -0.5225216 1 0.0968001 -0.5725335 1 0.0968001 -0.6252316 1 0.0968001 -0.6806558 1 0.0968001 -0.7388448 1 0.0968001 -0.7998369 1 0.0968001 -0.8636691 1 0.0968001 -0.9303782 1 0.0968001 -1 1 0.0968001 -0 0 0.1160161 -0.002418731 0 0.1160161 -0.005155668 0 0.1160161 -0.009080105 0 0.1160161 -0.01434988 0 0.1160161 -0.02107202 0 0.1160161 -0.02934285 0 0.1160161 -0.03925039 0 0.1160161 -0.05087609 0 0.1160161 -0.06429595 0 0.1160161 -0.07958143 0 0.1160161 -0.0968001 0 0.1160161 -0.1160161 0 0.1160161 -0.1372908 0 0.1160161 -0.1606827 0 0.1160161 -0.1862481 0 0.1160161 -0.2140411 0 0.1160161 -0.2441142 0 0.1160161 -0.2765176 0 0.1160161 -0.3113005 0 0.1160161 -0.3485102 0 0.1160161 -0.388193 0 0.1160161 -0.4303934 0 0.1160161 -0.4751555 0 0.1160161 -0.5225216 0 0.1160161 -0.5725335 0 0.1160161 -0.6252316 0 0.1160161 -0.6806558 0 0.1160161 -0.7388448 0 0.1160161 -0.7998369 0 0.1160161 -0.8636691 0 0.1160161 -0.9303782 0 0.1160161 -1 0 0.1160161 -0 0.002418731 0.1160161 -0.002418731 0.002418731 0.1160161 -0.005155668 0.002418731 0.1160161 -0.009080105 0.002418731 0.1160161 -0.01434988 0.002418731 0.1160161 -0.02107202 0.002418731 0.1160161 -0.02934285 0.002418731 0.1160161 -0.03925039 0.002418731 0.1160161 -0.05087609 0.002418731 0.1160161 -0.06429595 0.002418731 0.1160161 -0.07958143 0.002418731 0.1160161 -0.0968001 0.002418731 0.1160161 -0.1160161 0.002418731 0.1160161 -0.1372908 0.002418731 0.1160161 -0.1606827 0.002418731 0.1160161 -0.1862481 0.002418731 0.1160161 -0.2140411 0.002418731 0.1160161 -0.2441142 0.002418731 0.1160161 -0.2765176 0.002418731 0.1160161 -0.3113005 0.002418731 0.1160161 -0.3485102 0.002418731 0.1160161 -0.388193 0.002418731 0.1160161 -0.4303934 0.002418731 0.1160161 -0.4751555 0.002418731 0.1160161 -0.5225216 0.002418731 0.1160161 -0.5725335 0.002418731 0.1160161 -0.6252316 0.002418731 0.1160161 -0.6806558 0.002418731 0.1160161 -0.7388448 0.002418731 0.1160161 -0.7998369 0.002418731 0.1160161 -0.8636691 0.002418731 0.1160161 -0.9303782 0.002418731 0.1160161 -1 0.002418731 0.1160161 -0 0.005155668 0.1160161 -0.002418731 0.005155668 0.1160161 -0.005155668 0.005155668 0.1160161 -0.009080105 0.005155668 0.1160161 -0.01434988 0.005155668 0.1160161 -0.02107202 0.005155668 0.1160161 -0.02934285 0.005155668 0.1160161 -0.03925039 0.005155668 0.1160161 -0.05087609 0.005155668 0.1160161 -0.06429595 0.005155668 0.1160161 -0.07958143 0.005155668 0.1160161 -0.0968001 0.005155668 0.1160161 -0.1160161 0.005155668 0.1160161 -0.1372908 0.005155668 0.1160161 -0.1606827 0.005155668 0.1160161 -0.1862481 0.005155668 0.1160161 -0.2140411 0.005155668 0.1160161 -0.2441142 0.005155668 0.1160161 -0.2765176 0.005155668 0.1160161 -0.3113005 0.005155668 0.1160161 -0.3485102 0.005155668 0.1160161 -0.388193 0.005155668 0.1160161 -0.4303934 0.005155668 0.1160161 -0.4751555 0.005155668 0.1160161 -0.5225216 0.005155668 0.1160161 -0.5725335 0.005155668 0.1160161 -0.6252316 0.005155668 0.1160161 -0.6806558 0.005155668 0.1160161 -0.7388448 0.005155668 0.1160161 -0.7998369 0.005155668 0.1160161 -0.8636691 0.005155668 0.1160161 -0.9303782 0.005155668 0.1160161 -1 0.005155668 0.1160161 -0 0.009080105 0.1160161 -0.002418731 0.009080105 0.1160161 -0.005155668 0.009080105 0.1160161 -0.009080105 0.009080105 0.1160161 -0.01434988 0.009080105 0.1160161 -0.02107202 0.009080105 0.1160161 -0.02934285 0.009080105 0.1160161 -0.03925039 0.009080105 0.1160161 -0.05087609 0.009080105 0.1160161 -0.06429595 0.009080105 0.1160161 -0.07958143 0.009080105 0.1160161 -0.0968001 0.009080105 0.1160161 -0.1160161 0.009080105 0.1160161 -0.1372908 0.009080105 0.1160161 -0.1606827 0.009080105 0.1160161 -0.1862481 0.009080105 0.1160161 -0.2140411 0.009080105 0.1160161 -0.2441142 0.009080105 0.1160161 -0.2765176 0.009080105 0.1160161 -0.3113005 0.009080105 0.1160161 -0.3485102 0.009080105 0.1160161 -0.388193 0.009080105 0.1160161 -0.4303934 0.009080105 0.1160161 -0.4751555 0.009080105 0.1160161 -0.5225216 0.009080105 0.1160161 -0.5725335 0.009080105 0.1160161 -0.6252316 0.009080105 0.1160161 -0.6806558 0.009080105 0.1160161 -0.7388448 0.009080105 0.1160161 -0.7998369 0.009080105 0.1160161 -0.8636691 0.009080105 0.1160161 -0.9303782 0.009080105 0.1160161 -1 0.009080105 0.1160161 -0 0.01434988 0.1160161 -0.002418731 0.01434988 0.1160161 -0.005155668 0.01434988 0.1160161 -0.009080105 0.01434988 0.1160161 -0.01434988 0.01434988 0.1160161 -0.02107202 0.01434988 0.1160161 -0.02934285 0.01434988 0.1160161 -0.03925039 0.01434988 0.1160161 -0.05087609 0.01434988 0.1160161 -0.06429595 0.01434988 0.1160161 -0.07958143 0.01434988 0.1160161 -0.0968001 0.01434988 0.1160161 -0.1160161 0.01434988 0.1160161 -0.1372908 0.01434988 0.1160161 -0.1606827 0.01434988 0.1160161 -0.1862481 0.01434988 0.1160161 -0.2140411 0.01434988 0.1160161 -0.2441142 0.01434988 0.1160161 -0.2765176 0.01434988 0.1160161 -0.3113005 0.01434988 0.1160161 -0.3485102 0.01434988 0.1160161 -0.388193 0.01434988 0.1160161 -0.4303934 0.01434988 0.1160161 -0.4751555 0.01434988 0.1160161 -0.5225216 0.01434988 0.1160161 -0.5725335 0.01434988 0.1160161 -0.6252316 0.01434988 0.1160161 -0.6806558 0.01434988 0.1160161 -0.7388448 0.01434988 0.1160161 -0.7998369 0.01434988 0.1160161 -0.8636691 0.01434988 0.1160161 -0.9303782 0.01434988 0.1160161 -1 0.01434988 0.1160161 -0 0.02107202 0.1160161 -0.002418731 0.02107202 0.1160161 -0.005155668 0.02107202 0.1160161 -0.009080105 0.02107202 0.1160161 -0.01434988 0.02107202 0.1160161 -0.02107202 0.02107202 0.1160161 -0.02934285 0.02107202 0.1160161 -0.03925039 0.02107202 0.1160161 -0.05087609 0.02107202 0.1160161 -0.06429595 0.02107202 0.1160161 -0.07958143 0.02107202 0.1160161 -0.0968001 0.02107202 0.1160161 -0.1160161 0.02107202 0.1160161 -0.1372908 0.02107202 0.1160161 -0.1606827 0.02107202 0.1160161 -0.1862481 0.02107202 0.1160161 -0.2140411 0.02107202 0.1160161 -0.2441142 0.02107202 0.1160161 -0.2765176 0.02107202 0.1160161 -0.3113005 0.02107202 0.1160161 -0.3485102 0.02107202 0.1160161 -0.388193 0.02107202 0.1160161 -0.4303934 0.02107202 0.1160161 -0.4751555 0.02107202 0.1160161 -0.5225216 0.02107202 0.1160161 -0.5725335 0.02107202 0.1160161 -0.6252316 0.02107202 0.1160161 -0.6806558 0.02107202 0.1160161 -0.7388448 0.02107202 0.1160161 -0.7998369 0.02107202 0.1160161 -0.8636691 0.02107202 0.1160161 -0.9303782 0.02107202 0.1160161 -1 0.02107202 0.1160161 -0 0.02934285 0.1160161 -0.002418731 0.02934285 0.1160161 -0.005155668 0.02934285 0.1160161 -0.009080105 0.02934285 0.1160161 -0.01434988 0.02934285 0.1160161 -0.02107202 0.02934285 0.1160161 -0.02934285 0.02934285 0.1160161 -0.03925039 0.02934285 0.1160161 -0.05087609 0.02934285 0.1160161 -0.06429595 0.02934285 0.1160161 -0.07958143 0.02934285 0.1160161 -0.0968001 0.02934285 0.1160161 -0.1160161 0.02934285 0.1160161 -0.1372908 0.02934285 0.1160161 -0.1606827 0.02934285 0.1160161 -0.1862481 0.02934285 0.1160161 -0.2140411 0.02934285 0.1160161 -0.2441142 0.02934285 0.1160161 -0.2765176 0.02934285 0.1160161 -0.3113005 0.02934285 0.1160161 -0.3485102 0.02934285 0.1160161 -0.388193 0.02934285 0.1160161 -0.4303934 0.02934285 0.1160161 -0.4751555 0.02934285 0.1160161 -0.5225216 0.02934285 0.1160161 -0.5725335 0.02934285 0.1160161 -0.6252316 0.02934285 0.1160161 -0.6806558 0.02934285 0.1160161 -0.7388448 0.02934285 0.1160161 -0.7998369 0.02934285 0.1160161 -0.8636691 0.02934285 0.1160161 -0.9303782 0.02934285 0.1160161 -1 0.02934285 0.1160161 -0 0.03925039 0.1160161 -0.002418731 0.03925039 0.1160161 -0.005155668 0.03925039 0.1160161 -0.009080105 0.03925039 0.1160161 -0.01434988 0.03925039 0.1160161 -0.02107202 0.03925039 0.1160161 -0.02934285 0.03925039 0.1160161 -0.03925039 0.03925039 0.1160161 -0.05087609 0.03925039 0.1160161 -0.06429595 0.03925039 0.1160161 -0.07958143 0.03925039 0.1160161 -0.0968001 0.03925039 0.1160161 -0.1160161 0.03925039 0.1160161 -0.1372908 0.03925039 0.1160161 -0.1606827 0.03925039 0.1160161 -0.1862481 0.03925039 0.1160161 -0.2140411 0.03925039 0.1160161 -0.2441142 0.03925039 0.1160161 -0.2765176 0.03925039 0.1160161 -0.3113005 0.03925039 0.1160161 -0.3485102 0.03925039 0.1160161 -0.388193 0.03925039 0.1160161 -0.4303934 0.03925039 0.1160161 -0.4751555 0.03925039 0.1160161 -0.5225216 0.03925039 0.1160161 -0.5725335 0.03925039 0.1160161 -0.6252316 0.03925039 0.1160161 -0.6806558 0.03925039 0.1160161 -0.7388448 0.03925039 0.1160161 -0.7998369 0.03925039 0.1160161 -0.8636691 0.03925039 0.1160161 -0.9303782 0.03925039 0.1160161 -1 0.03925039 0.1160161 -0 0.05087609 0.1160161 -0.002418731 0.05087609 0.1160161 -0.005155668 0.05087609 0.1160161 -0.009080105 0.05087609 0.1160161 -0.01434988 0.05087609 0.1160161 -0.02107202 0.05087609 0.1160161 -0.02934285 0.05087609 0.1160161 -0.03925039 0.05087609 0.1160161 -0.05087609 0.05087609 0.1160161 -0.06429595 0.05087609 0.1160161 -0.07958143 0.05087609 0.1160161 -0.0968001 0.05087609 0.1160161 -0.1160161 0.05087609 0.1160161 -0.1372908 0.05087609 0.1160161 -0.1606827 0.05087609 0.1160161 -0.1862481 0.05087609 0.1160161 -0.2140411 0.05087609 0.1160161 -0.2441142 0.05087609 0.1160161 -0.2765176 0.05087609 0.1160161 -0.3113005 0.05087609 0.1160161 -0.3485102 0.05087609 0.1160161 -0.388193 0.05087609 0.1160161 -0.4303934 0.05087609 0.1160161 -0.4751555 0.05087609 0.1160161 -0.5225216 0.05087609 0.1160161 -0.5725335 0.05087609 0.1160161 -0.6252316 0.05087609 0.1160161 -0.6806558 0.05087609 0.1160161 -0.7388448 0.05087609 0.1160161 -0.7998369 0.05087609 0.1160161 -0.8636691 0.05087609 0.1160161 -0.9303782 0.05087609 0.1160161 -1 0.05087609 0.1160161 -0 0.06429595 0.1160161 -0.002418731 0.06429595 0.1160161 -0.005155668 0.06429595 0.1160161 -0.009080105 0.06429595 0.1160161 -0.01434988 0.06429595 0.1160161 -0.02107202 0.06429595 0.1160161 -0.02934285 0.06429595 0.1160161 -0.03925039 0.06429595 0.1160161 -0.05087609 0.06429595 0.1160161 -0.06429595 0.06429595 0.1160161 -0.07958143 0.06429595 0.1160161 -0.0968001 0.06429595 0.1160161 -0.1160161 0.06429595 0.1160161 -0.1372908 0.06429595 0.1160161 -0.1606827 0.06429595 0.1160161 -0.1862481 0.06429595 0.1160161 -0.2140411 0.06429595 0.1160161 -0.2441142 0.06429595 0.1160161 -0.2765176 0.06429595 0.1160161 -0.3113005 0.06429595 0.1160161 -0.3485102 0.06429595 0.1160161 -0.388193 0.06429595 0.1160161 -0.4303934 0.06429595 0.1160161 -0.4751555 0.06429595 0.1160161 -0.5225216 0.06429595 0.1160161 -0.5725335 0.06429595 0.1160161 -0.6252316 0.06429595 0.1160161 -0.6806558 0.06429595 0.1160161 -0.7388448 0.06429595 0.1160161 -0.7998369 0.06429595 0.1160161 -0.8636691 0.06429595 0.1160161 -0.9303782 0.06429595 0.1160161 -1 0.06429595 0.1160161 -0 0.07958143 0.1160161 -0.002418731 0.07958143 0.1160161 -0.005155668 0.07958143 0.1160161 -0.009080105 0.07958143 0.1160161 -0.01434988 0.07958143 0.1160161 -0.02107202 0.07958143 0.1160161 -0.02934285 0.07958143 0.1160161 -0.03925039 0.07958143 0.1160161 -0.05087609 0.07958143 0.1160161 -0.06429595 0.07958143 0.1160161 -0.07958143 0.07958143 0.1160161 -0.0968001 0.07958143 0.1160161 -0.1160161 0.07958143 0.1160161 -0.1372908 0.07958143 0.1160161 -0.1606827 0.07958143 0.1160161 -0.1862481 0.07958143 0.1160161 -0.2140411 0.07958143 0.1160161 -0.2441142 0.07958143 0.1160161 -0.2765176 0.07958143 0.1160161 -0.3113005 0.07958143 0.1160161 -0.3485102 0.07958143 0.1160161 -0.388193 0.07958143 0.1160161 -0.4303934 0.07958143 0.1160161 -0.4751555 0.07958143 0.1160161 -0.5225216 0.07958143 0.1160161 -0.5725335 0.07958143 0.1160161 -0.6252316 0.07958143 0.1160161 -0.6806558 0.07958143 0.1160161 -0.7388448 0.07958143 0.1160161 -0.7998369 0.07958143 0.1160161 -0.8636691 0.07958143 0.1160161 -0.9303782 0.07958143 0.1160161 -1 0.07958143 0.1160161 -0 0.0968001 0.1160161 -0.002418731 0.0968001 0.1160161 -0.005155668 0.0968001 0.1160161 -0.009080105 0.0968001 0.1160161 -0.01434988 0.0968001 0.1160161 -0.02107202 0.0968001 0.1160161 -0.02934285 0.0968001 0.1160161 -0.03925039 0.0968001 0.1160161 -0.05087609 0.0968001 0.1160161 -0.06429595 0.0968001 0.1160161 -0.07958143 0.0968001 0.1160161 -0.0968001 0.0968001 0.1160161 -0.1160161 0.0968001 0.1160161 -0.1372908 0.0968001 0.1160161 -0.1606827 0.0968001 0.1160161 -0.1862481 0.0968001 0.1160161 -0.2140411 0.0968001 0.1160161 -0.2441142 0.0968001 0.1160161 -0.2765176 0.0968001 0.1160161 -0.3113005 0.0968001 0.1160161 -0.3485102 0.0968001 0.1160161 -0.388193 0.0968001 0.1160161 -0.4303934 0.0968001 0.1160161 -0.4751555 0.0968001 0.1160161 -0.5225216 0.0968001 0.1160161 -0.5725335 0.0968001 0.1160161 -0.6252316 0.0968001 0.1160161 -0.6806558 0.0968001 0.1160161 -0.7388448 0.0968001 0.1160161 -0.7998369 0.0968001 0.1160161 -0.8636691 0.0968001 0.1160161 -0.9303782 0.0968001 0.1160161 -1 0.0968001 0.1160161 -0 0.1160161 0.1160161 -0.002418731 0.1160161 0.1160161 -0.005155668 0.1160161 0.1160161 -0.009080105 0.1160161 0.1160161 -0.01434988 0.1160161 0.1160161 -0.02107202 0.1160161 0.1160161 -0.02934285 0.1160161 0.1160161 -0.03925039 0.1160161 0.1160161 -0.05087609 0.1160161 0.1160161 -0.06429595 0.1160161 0.1160161 -0.07958143 0.1160161 0.1160161 -0.0968001 0.1160161 0.1160161 -0.1160161 0.1160161 0.1160161 -0.1372908 0.1160161 0.1160161 -0.1606827 0.1160161 0.1160161 -0.1862481 0.1160161 0.1160161 -0.2140411 0.1160161 0.1160161 -0.2441142 0.1160161 0.1160161 -0.2765176 0.1160161 0.1160161 -0.3113005 0.1160161 0.1160161 -0.3485102 0.1160161 0.1160161 -0.388193 0.1160161 0.1160161 -0.4303934 0.1160161 0.1160161 -0.4751555 0.1160161 0.1160161 -0.5225216 0.1160161 0.1160161 -0.5725335 0.1160161 0.1160161 -0.6252316 0.1160161 0.1160161 -0.6806558 0.1160161 0.1160161 -0.7388448 0.1160161 0.1160161 -0.7998369 0.1160161 0.1160161 -0.8636691 0.1160161 0.1160161 -0.9303782 0.1160161 0.1160161 -1 0.1160161 0.1160161 -0 0.1372908 0.1160161 -0.002418731 0.1372908 0.1160161 -0.005155668 0.1372908 0.1160161 -0.009080105 0.1372908 0.1160161 -0.01434988 0.1372908 0.1160161 -0.02107202 0.1372908 0.1160161 -0.02934285 0.1372908 0.1160161 -0.03925039 0.1372908 0.1160161 -0.05087609 0.1372908 0.1160161 -0.06429595 0.1372908 0.1160161 -0.07958143 0.1372908 0.1160161 -0.0968001 0.1372908 0.1160161 -0.1160161 0.1372908 0.1160161 -0.1372908 0.1372908 0.1160161 -0.1606827 0.1372908 0.1160161 -0.1862481 0.1372908 0.1160161 -0.2140411 0.1372908 0.1160161 -0.2441142 0.1372908 0.1160161 -0.2765176 0.1372908 0.1160161 -0.3113005 0.1372908 0.1160161 -0.3485102 0.1372908 0.1160161 -0.388193 0.1372908 0.1160161 -0.4303934 0.1372908 0.1160161 -0.4751555 0.1372908 0.1160161 -0.5225216 0.1372908 0.1160161 -0.5725335 0.1372908 0.1160161 -0.6252316 0.1372908 0.1160161 -0.6806558 0.1372908 0.1160161 -0.7388448 0.1372908 0.1160161 -0.7998369 0.1372908 0.1160161 -0.8636691 0.1372908 0.1160161 -0.9303782 0.1372908 0.1160161 -1 0.1372908 0.1160161 -0 0.1606827 0.1160161 -0.002418731 0.1606827 0.1160161 -0.005155668 0.1606827 0.1160161 -0.009080105 0.1606827 0.1160161 -0.01434988 0.1606827 0.1160161 -0.02107202 0.1606827 0.1160161 -0.02934285 0.1606827 0.1160161 -0.03925039 0.1606827 0.1160161 -0.05087609 0.1606827 0.1160161 -0.06429595 0.1606827 0.1160161 -0.07958143 0.1606827 0.1160161 -0.0968001 0.1606827 0.1160161 -0.1160161 0.1606827 0.1160161 -0.1372908 0.1606827 0.1160161 -0.1606827 0.1606827 0.1160161 -0.1862481 0.1606827 0.1160161 -0.2140411 0.1606827 0.1160161 -0.2441142 0.1606827 0.1160161 -0.2765176 0.1606827 0.1160161 -0.3113005 0.1606827 0.1160161 -0.3485102 0.1606827 0.1160161 -0.388193 0.1606827 0.1160161 -0.4303934 0.1606827 0.1160161 -0.4751555 0.1606827 0.1160161 -0.5225216 0.1606827 0.1160161 -0.5725335 0.1606827 0.1160161 -0.6252316 0.1606827 0.1160161 -0.6806558 0.1606827 0.1160161 -0.7388448 0.1606827 0.1160161 -0.7998369 0.1606827 0.1160161 -0.8636691 0.1606827 0.1160161 -0.9303782 0.1606827 0.1160161 -1 0.1606827 0.1160161 -0 0.1862481 0.1160161 -0.002418731 0.1862481 0.1160161 -0.005155668 0.1862481 0.1160161 -0.009080105 0.1862481 0.1160161 -0.01434988 0.1862481 0.1160161 -0.02107202 0.1862481 0.1160161 -0.02934285 0.1862481 0.1160161 -0.03925039 0.1862481 0.1160161 -0.05087609 0.1862481 0.1160161 -0.06429595 0.1862481 0.1160161 -0.07958143 0.1862481 0.1160161 -0.0968001 0.1862481 0.1160161 -0.1160161 0.1862481 0.1160161 -0.1372908 0.1862481 0.1160161 -0.1606827 0.1862481 0.1160161 -0.1862481 0.1862481 0.1160161 -0.2140411 0.1862481 0.1160161 -0.2441142 0.1862481 0.1160161 -0.2765176 0.1862481 0.1160161 -0.3113005 0.1862481 0.1160161 -0.3485102 0.1862481 0.1160161 -0.388193 0.1862481 0.1160161 -0.4303934 0.1862481 0.1160161 -0.4751555 0.1862481 0.1160161 -0.5225216 0.1862481 0.1160161 -0.5725335 0.1862481 0.1160161 -0.6252316 0.1862481 0.1160161 -0.6806558 0.1862481 0.1160161 -0.7388448 0.1862481 0.1160161 -0.7998369 0.1862481 0.1160161 -0.8636691 0.1862481 0.1160161 -0.9303782 0.1862481 0.1160161 -1 0.1862481 0.1160161 -0 0.2140411 0.1160161 -0.002418731 0.2140411 0.1160161 -0.005155668 0.2140411 0.1160161 -0.009080105 0.2140411 0.1160161 -0.01434988 0.2140411 0.1160161 -0.02107202 0.2140411 0.1160161 -0.02934285 0.2140411 0.1160161 -0.03925039 0.2140411 0.1160161 -0.05087609 0.2140411 0.1160161 -0.06429595 0.2140411 0.1160161 -0.07958143 0.2140411 0.1160161 -0.0968001 0.2140411 0.1160161 -0.1160161 0.2140411 0.1160161 -0.1372908 0.2140411 0.1160161 -0.1606827 0.2140411 0.1160161 -0.1862481 0.2140411 0.1160161 -0.2140411 0.2140411 0.1160161 -0.2441142 0.2140411 0.1160161 -0.2765176 0.2140411 0.1160161 -0.3113005 0.2140411 0.1160161 -0.3485102 0.2140411 0.1160161 -0.388193 0.2140411 0.1160161 -0.4303934 0.2140411 0.1160161 -0.4751555 0.2140411 0.1160161 -0.5225216 0.2140411 0.1160161 -0.5725335 0.2140411 0.1160161 -0.6252316 0.2140411 0.1160161 -0.6806558 0.2140411 0.1160161 -0.7388448 0.2140411 0.1160161 -0.7998369 0.2140411 0.1160161 -0.8636691 0.2140411 0.1160161 -0.9303782 0.2140411 0.1160161 -1 0.2140411 0.1160161 -0 0.2441142 0.1160161 -0.002418731 0.2441142 0.1160161 -0.005155668 0.2441142 0.1160161 -0.009080105 0.2441142 0.1160161 -0.01434988 0.2441142 0.1160161 -0.02107202 0.2441142 0.1160161 -0.02934285 0.2441142 0.1160161 -0.03925039 0.2441142 0.1160161 -0.05087609 0.2441142 0.1160161 -0.06429595 0.2441142 0.1160161 -0.07958143 0.2441142 0.1160161 -0.0968001 0.2441142 0.1160161 -0.1160161 0.2441142 0.1160161 -0.1372908 0.2441142 0.1160161 -0.1606827 0.2441142 0.1160161 -0.1862481 0.2441142 0.1160161 -0.2140411 0.2441142 0.1160161 -0.2441142 0.2441142 0.1160161 -0.2765176 0.2441142 0.1160161 -0.3113005 0.2441142 0.1160161 -0.3485102 0.2441142 0.1160161 -0.388193 0.2441142 0.1160161 -0.4303934 0.2441142 0.1160161 -0.4751555 0.2441142 0.1160161 -0.5225216 0.2441142 0.1160161 -0.5725335 0.2441142 0.1160161 -0.6252316 0.2441142 0.1160161 -0.6806558 0.2441142 0.1160161 -0.7388448 0.2441142 0.1160161 -0.7998369 0.2441142 0.1160161 -0.8636691 0.2441142 0.1160161 -0.9303782 0.2441142 0.1160161 -1 0.2441142 0.1160161 -0 0.2765176 0.1160161 -0.002418731 0.2765176 0.1160161 -0.005155668 0.2765176 0.1160161 -0.009080105 0.2765176 0.1160161 -0.01434988 0.2765176 0.1160161 -0.02107202 0.2765176 0.1160161 -0.02934285 0.2765176 0.1160161 -0.03925039 0.2765176 0.1160161 -0.05087609 0.2765176 0.1160161 -0.06429595 0.2765176 0.1160161 -0.07958143 0.2765176 0.1160161 -0.0968001 0.2765176 0.1160161 -0.1160161 0.2765176 0.1160161 -0.1372908 0.2765176 0.1160161 -0.1606827 0.2765176 0.1160161 -0.1862481 0.2765176 0.1160161 -0.2140411 0.2765176 0.1160161 -0.2441142 0.2765176 0.1160161 -0.2765176 0.2765176 0.1160161 -0.3113005 0.2765176 0.1160161 -0.3485102 0.2765176 0.1160161 -0.388193 0.2765176 0.1160161 -0.4303934 0.2765176 0.1160161 -0.4751555 0.2765176 0.1160161 -0.5225216 0.2765176 0.1160161 -0.5725335 0.2765176 0.1160161 -0.6252316 0.2765176 0.1160161 -0.6806558 0.2765176 0.1160161 -0.7388448 0.2765176 0.1160161 -0.7998369 0.2765176 0.1160161 -0.8636691 0.2765176 0.1160161 -0.9303782 0.2765176 0.1160161 -1 0.2765176 0.1160161 -0 0.3113005 0.1160161 -0.002418731 0.3113005 0.1160161 -0.005155668 0.3113005 0.1160161 -0.009080105 0.3113005 0.1160161 -0.01434988 0.3113005 0.1160161 -0.02107202 0.3113005 0.1160161 -0.02934285 0.3113005 0.1160161 -0.03925039 0.3113005 0.1160161 -0.05087609 0.3113005 0.1160161 -0.06429595 0.3113005 0.1160161 -0.07958143 0.3113005 0.1160161 -0.0968001 0.3113005 0.1160161 -0.1160161 0.3113005 0.1160161 -0.1372908 0.3113005 0.1160161 -0.1606827 0.3113005 0.1160161 -0.1862481 0.3113005 0.1160161 -0.2140411 0.3113005 0.1160161 -0.2441142 0.3113005 0.1160161 -0.2765176 0.3113005 0.1160161 -0.3113005 0.3113005 0.1160161 -0.3485102 0.3113005 0.1160161 -0.388193 0.3113005 0.1160161 -0.4303934 0.3113005 0.1160161 -0.4751555 0.3113005 0.1160161 -0.5225216 0.3113005 0.1160161 -0.5725335 0.3113005 0.1160161 -0.6252316 0.3113005 0.1160161 -0.6806558 0.3113005 0.1160161 -0.7388448 0.3113005 0.1160161 -0.7998369 0.3113005 0.1160161 -0.8636691 0.3113005 0.1160161 -0.9303782 0.3113005 0.1160161 -1 0.3113005 0.1160161 -0 0.3485102 0.1160161 -0.002418731 0.3485102 0.1160161 -0.005155668 0.3485102 0.1160161 -0.009080105 0.3485102 0.1160161 -0.01434988 0.3485102 0.1160161 -0.02107202 0.3485102 0.1160161 -0.02934285 0.3485102 0.1160161 -0.03925039 0.3485102 0.1160161 -0.05087609 0.3485102 0.1160161 -0.06429595 0.3485102 0.1160161 -0.07958143 0.3485102 0.1160161 -0.0968001 0.3485102 0.1160161 -0.1160161 0.3485102 0.1160161 -0.1372908 0.3485102 0.1160161 -0.1606827 0.3485102 0.1160161 -0.1862481 0.3485102 0.1160161 -0.2140411 0.3485102 0.1160161 -0.2441142 0.3485102 0.1160161 -0.2765176 0.3485102 0.1160161 -0.3113005 0.3485102 0.1160161 -0.3485102 0.3485102 0.1160161 -0.388193 0.3485102 0.1160161 -0.4303934 0.3485102 0.1160161 -0.4751555 0.3485102 0.1160161 -0.5225216 0.3485102 0.1160161 -0.5725335 0.3485102 0.1160161 -0.6252316 0.3485102 0.1160161 -0.6806558 0.3485102 0.1160161 -0.7388448 0.3485102 0.1160161 -0.7998369 0.3485102 0.1160161 -0.8636691 0.3485102 0.1160161 -0.9303782 0.3485102 0.1160161 -1 0.3485102 0.1160161 -0 0.388193 0.1160161 -0.002418731 0.388193 0.1160161 -0.005155668 0.388193 0.1160161 -0.009080105 0.388193 0.1160161 -0.01434988 0.388193 0.1160161 -0.02107202 0.388193 0.1160161 -0.02934285 0.388193 0.1160161 -0.03925039 0.388193 0.1160161 -0.05087609 0.388193 0.1160161 -0.06429595 0.388193 0.1160161 -0.07958143 0.388193 0.1160161 -0.0968001 0.388193 0.1160161 -0.1160161 0.388193 0.1160161 -0.1372908 0.388193 0.1160161 -0.1606827 0.388193 0.1160161 -0.1862481 0.388193 0.1160161 -0.2140411 0.388193 0.1160161 -0.2441142 0.388193 0.1160161 -0.2765176 0.388193 0.1160161 -0.3113005 0.388193 0.1160161 -0.3485102 0.388193 0.1160161 -0.388193 0.388193 0.1160161 -0.4303934 0.388193 0.1160161 -0.4751555 0.388193 0.1160161 -0.5225216 0.388193 0.1160161 -0.5725335 0.388193 0.1160161 -0.6252316 0.388193 0.1160161 -0.6806558 0.388193 0.1160161 -0.7388448 0.388193 0.1160161 -0.7998369 0.388193 0.1160161 -0.8636691 0.388193 0.1160161 -0.9303782 0.388193 0.1160161 -1 0.388193 0.1160161 -0 0.4303934 0.1160161 -0.002418731 0.4303934 0.1160161 -0.005155668 0.4303934 0.1160161 -0.009080105 0.4303934 0.1160161 -0.01434988 0.4303934 0.1160161 -0.02107202 0.4303934 0.1160161 -0.02934285 0.4303934 0.1160161 -0.03925039 0.4303934 0.1160161 -0.05087609 0.4303934 0.1160161 -0.06429595 0.4303934 0.1160161 -0.07958143 0.4303934 0.1160161 -0.0968001 0.4303934 0.1160161 -0.1160161 0.4303934 0.1160161 -0.1372908 0.4303934 0.1160161 -0.1606827 0.4303934 0.1160161 -0.1862481 0.4303934 0.1160161 -0.2140411 0.4303934 0.1160161 -0.2441142 0.4303934 0.1160161 -0.2765176 0.4303934 0.1160161 -0.3113005 0.4303934 0.1160161 -0.3485102 0.4303934 0.1160161 -0.388193 0.4303934 0.1160161 -0.4303934 0.4303934 0.1160161 -0.4751555 0.4303934 0.1160161 -0.5225216 0.4303934 0.1160161 -0.5725335 0.4303934 0.1160161 -0.6252316 0.4303934 0.1160161 -0.6806558 0.4303934 0.1160161 -0.7388448 0.4303934 0.1160161 -0.7998369 0.4303934 0.1160161 -0.8636691 0.4303934 0.1160161 -0.9303782 0.4303934 0.1160161 -1 0.4303934 0.1160161 -0 0.4751555 0.1160161 -0.002418731 0.4751555 0.1160161 -0.005155668 0.4751555 0.1160161 -0.009080105 0.4751555 0.1160161 -0.01434988 0.4751555 0.1160161 -0.02107202 0.4751555 0.1160161 -0.02934285 0.4751555 0.1160161 -0.03925039 0.4751555 0.1160161 -0.05087609 0.4751555 0.1160161 -0.06429595 0.4751555 0.1160161 -0.07958143 0.4751555 0.1160161 -0.0968001 0.4751555 0.1160161 -0.1160161 0.4751555 0.1160161 -0.1372908 0.4751555 0.1160161 -0.1606827 0.4751555 0.1160161 -0.1862481 0.4751555 0.1160161 -0.2140411 0.4751555 0.1160161 -0.2441142 0.4751555 0.1160161 -0.2765176 0.4751555 0.1160161 -0.3113005 0.4751555 0.1160161 -0.3485102 0.4751555 0.1160161 -0.388193 0.4751555 0.1160161 -0.4303934 0.4751555 0.1160161 -0.4751555 0.4751555 0.1160161 -0.5225216 0.4751555 0.1160161 -0.5725335 0.4751555 0.1160161 -0.6252316 0.4751555 0.1160161 -0.6806558 0.4751555 0.1160161 -0.7388448 0.4751555 0.1160161 -0.7998369 0.4751555 0.1160161 -0.8636691 0.4751555 0.1160161 -0.9303782 0.4751555 0.1160161 -1 0.4751555 0.1160161 -0 0.5225216 0.1160161 -0.002418731 0.5225216 0.1160161 -0.005155668 0.5225216 0.1160161 -0.009080105 0.5225216 0.1160161 -0.01434988 0.5225216 0.1160161 -0.02107202 0.5225216 0.1160161 -0.02934285 0.5225216 0.1160161 -0.03925039 0.5225216 0.1160161 -0.05087609 0.5225216 0.1160161 -0.06429595 0.5225216 0.1160161 -0.07958143 0.5225216 0.1160161 -0.0968001 0.5225216 0.1160161 -0.1160161 0.5225216 0.1160161 -0.1372908 0.5225216 0.1160161 -0.1606827 0.5225216 0.1160161 -0.1862481 0.5225216 0.1160161 -0.2140411 0.5225216 0.1160161 -0.2441142 0.5225216 0.1160161 -0.2765176 0.5225216 0.1160161 -0.3113005 0.5225216 0.1160161 -0.3485102 0.5225216 0.1160161 -0.388193 0.5225216 0.1160161 -0.4303934 0.5225216 0.1160161 -0.4751555 0.5225216 0.1160161 -0.5225216 0.5225216 0.1160161 -0.5725335 0.5225216 0.1160161 -0.6252316 0.5225216 0.1160161 -0.6806558 0.5225216 0.1160161 -0.7388448 0.5225216 0.1160161 -0.7998369 0.5225216 0.1160161 -0.8636691 0.5225216 0.1160161 -0.9303782 0.5225216 0.1160161 -1 0.5225216 0.1160161 -0 0.5725335 0.1160161 -0.002418731 0.5725335 0.1160161 -0.005155668 0.5725335 0.1160161 -0.009080105 0.5725335 0.1160161 -0.01434988 0.5725335 0.1160161 -0.02107202 0.5725335 0.1160161 -0.02934285 0.5725335 0.1160161 -0.03925039 0.5725335 0.1160161 -0.05087609 0.5725335 0.1160161 -0.06429595 0.5725335 0.1160161 -0.07958143 0.5725335 0.1160161 -0.0968001 0.5725335 0.1160161 -0.1160161 0.5725335 0.1160161 -0.1372908 0.5725335 0.1160161 -0.1606827 0.5725335 0.1160161 -0.1862481 0.5725335 0.1160161 -0.2140411 0.5725335 0.1160161 -0.2441142 0.5725335 0.1160161 -0.2765176 0.5725335 0.1160161 -0.3113005 0.5725335 0.1160161 -0.3485102 0.5725335 0.1160161 -0.388193 0.5725335 0.1160161 -0.4303934 0.5725335 0.1160161 -0.4751555 0.5725335 0.1160161 -0.5225216 0.5725335 0.1160161 -0.5725335 0.5725335 0.1160161 -0.6252316 0.5725335 0.1160161 -0.6806558 0.5725335 0.1160161 -0.7388448 0.5725335 0.1160161 -0.7998369 0.5725335 0.1160161 -0.8636691 0.5725335 0.1160161 -0.9303782 0.5725335 0.1160161 -1 0.5725335 0.1160161 -0 0.6252316 0.1160161 -0.002418731 0.6252316 0.1160161 -0.005155668 0.6252316 0.1160161 -0.009080105 0.6252316 0.1160161 -0.01434988 0.6252316 0.1160161 -0.02107202 0.6252316 0.1160161 -0.02934285 0.6252316 0.1160161 -0.03925039 0.6252316 0.1160161 -0.05087609 0.6252316 0.1160161 -0.06429595 0.6252316 0.1160161 -0.07958143 0.6252316 0.1160161 -0.0968001 0.6252316 0.1160161 -0.1160161 0.6252316 0.1160161 -0.1372908 0.6252316 0.1160161 -0.1606827 0.6252316 0.1160161 -0.1862481 0.6252316 0.1160161 -0.2140411 0.6252316 0.1160161 -0.2441142 0.6252316 0.1160161 -0.2765176 0.6252316 0.1160161 -0.3113005 0.6252316 0.1160161 -0.3485102 0.6252316 0.1160161 -0.388193 0.6252316 0.1160161 -0.4303934 0.6252316 0.1160161 -0.4751555 0.6252316 0.1160161 -0.5225216 0.6252316 0.1160161 -0.5725335 0.6252316 0.1160161 -0.6252316 0.6252316 0.1160161 -0.6806558 0.6252316 0.1160161 -0.7388448 0.6252316 0.1160161 -0.7998369 0.6252316 0.1160161 -0.8636691 0.6252316 0.1160161 -0.9303782 0.6252316 0.1160161 -1 0.6252316 0.1160161 -0 0.6806558 0.1160161 -0.002418731 0.6806558 0.1160161 -0.005155668 0.6806558 0.1160161 -0.009080105 0.6806558 0.1160161 -0.01434988 0.6806558 0.1160161 -0.02107202 0.6806558 0.1160161 -0.02934285 0.6806558 0.1160161 -0.03925039 0.6806558 0.1160161 -0.05087609 0.6806558 0.1160161 -0.06429595 0.6806558 0.1160161 -0.07958143 0.6806558 0.1160161 -0.0968001 0.6806558 0.1160161 -0.1160161 0.6806558 0.1160161 -0.1372908 0.6806558 0.1160161 -0.1606827 0.6806558 0.1160161 -0.1862481 0.6806558 0.1160161 -0.2140411 0.6806558 0.1160161 -0.2441142 0.6806558 0.1160161 -0.2765176 0.6806558 0.1160161 -0.3113005 0.6806558 0.1160161 -0.3485102 0.6806558 0.1160161 -0.388193 0.6806558 0.1160161 -0.4303934 0.6806558 0.1160161 -0.4751555 0.6806558 0.1160161 -0.5225216 0.6806558 0.1160161 -0.5725335 0.6806558 0.1160161 -0.6252316 0.6806558 0.1160161 -0.6806558 0.6806558 0.1160161 -0.7388448 0.6806558 0.1160161 -0.7998369 0.6806558 0.1160161 -0.8636691 0.6806558 0.1160161 -0.9303782 0.6806558 0.1160161 -1 0.6806558 0.1160161 -0 0.7388448 0.1160161 -0.002418731 0.7388448 0.1160161 -0.005155668 0.7388448 0.1160161 -0.009080105 0.7388448 0.1160161 -0.01434988 0.7388448 0.1160161 -0.02107202 0.7388448 0.1160161 -0.02934285 0.7388448 0.1160161 -0.03925039 0.7388448 0.1160161 -0.05087609 0.7388448 0.1160161 -0.06429595 0.7388448 0.1160161 -0.07958143 0.7388448 0.1160161 -0.0968001 0.7388448 0.1160161 -0.1160161 0.7388448 0.1160161 -0.1372908 0.7388448 0.1160161 -0.1606827 0.7388448 0.1160161 -0.1862481 0.7388448 0.1160161 -0.2140411 0.7388448 0.1160161 -0.2441142 0.7388448 0.1160161 -0.2765176 0.7388448 0.1160161 -0.3113005 0.7388448 0.1160161 -0.3485102 0.7388448 0.1160161 -0.388193 0.7388448 0.1160161 -0.4303934 0.7388448 0.1160161 -0.4751555 0.7388448 0.1160161 -0.5225216 0.7388448 0.1160161 -0.5725335 0.7388448 0.1160161 -0.6252316 0.7388448 0.1160161 -0.6806558 0.7388448 0.1160161 -0.7388448 0.7388448 0.1160161 -0.7998369 0.7388448 0.1160161 -0.8636691 0.7388448 0.1160161 -0.9303782 0.7388448 0.1160161 -1 0.7388448 0.1160161 -0 0.7998369 0.1160161 -0.002418731 0.7998369 0.1160161 -0.005155668 0.7998369 0.1160161 -0.009080105 0.7998369 0.1160161 -0.01434988 0.7998369 0.1160161 -0.02107202 0.7998369 0.1160161 -0.02934285 0.7998369 0.1160161 -0.03925039 0.7998369 0.1160161 -0.05087609 0.7998369 0.1160161 -0.06429595 0.7998369 0.1160161 -0.07958143 0.7998369 0.1160161 -0.0968001 0.7998369 0.1160161 -0.1160161 0.7998369 0.1160161 -0.1372908 0.7998369 0.1160161 -0.1606827 0.7998369 0.1160161 -0.1862481 0.7998369 0.1160161 -0.2140411 0.7998369 0.1160161 -0.2441142 0.7998369 0.1160161 -0.2765176 0.7998369 0.1160161 -0.3113005 0.7998369 0.1160161 -0.3485102 0.7998369 0.1160161 -0.388193 0.7998369 0.1160161 -0.4303934 0.7998369 0.1160161 -0.4751555 0.7998369 0.1160161 -0.5225216 0.7998369 0.1160161 -0.5725335 0.7998369 0.1160161 -0.6252316 0.7998369 0.1160161 -0.6806558 0.7998369 0.1160161 -0.7388448 0.7998369 0.1160161 -0.7998369 0.7998369 0.1160161 -0.8636691 0.7998369 0.1160161 -0.9303782 0.7998369 0.1160161 -1 0.7998369 0.1160161 -0 0.8636691 0.1160161 -0.002418731 0.8636691 0.1160161 -0.005155668 0.8636691 0.1160161 -0.009080105 0.8636691 0.1160161 -0.01434988 0.8636691 0.1160161 -0.02107202 0.8636691 0.1160161 -0.02934285 0.8636691 0.1160161 -0.03925039 0.8636691 0.1160161 -0.05087609 0.8636691 0.1160161 -0.06429595 0.8636691 0.1160161 -0.07958143 0.8636691 0.1160161 -0.0968001 0.8636691 0.1160161 -0.1160161 0.8636691 0.1160161 -0.1372908 0.8636691 0.1160161 -0.1606827 0.8636691 0.1160161 -0.1862481 0.8636691 0.1160161 -0.2140411 0.8636691 0.1160161 -0.2441142 0.8636691 0.1160161 -0.2765176 0.8636691 0.1160161 -0.3113005 0.8636691 0.1160161 -0.3485102 0.8636691 0.1160161 -0.388193 0.8636691 0.1160161 -0.4303934 0.8636691 0.1160161 -0.4751555 0.8636691 0.1160161 -0.5225216 0.8636691 0.1160161 -0.5725335 0.8636691 0.1160161 -0.6252316 0.8636691 0.1160161 -0.6806558 0.8636691 0.1160161 -0.7388448 0.8636691 0.1160161 -0.7998369 0.8636691 0.1160161 -0.8636691 0.8636691 0.1160161 -0.9303782 0.8636691 0.1160161 -1 0.8636691 0.1160161 -0 0.9303782 0.1160161 -0.002418731 0.9303782 0.1160161 -0.005155668 0.9303782 0.1160161 -0.009080105 0.9303782 0.1160161 -0.01434988 0.9303782 0.1160161 -0.02107202 0.9303782 0.1160161 -0.02934285 0.9303782 0.1160161 -0.03925039 0.9303782 0.1160161 -0.05087609 0.9303782 0.1160161 -0.06429595 0.9303782 0.1160161 -0.07958143 0.9303782 0.1160161 -0.0968001 0.9303782 0.1160161 -0.1160161 0.9303782 0.1160161 -0.1372908 0.9303782 0.1160161 -0.1606827 0.9303782 0.1160161 -0.1862481 0.9303782 0.1160161 -0.2140411 0.9303782 0.1160161 -0.2441142 0.9303782 0.1160161 -0.2765176 0.9303782 0.1160161 -0.3113005 0.9303782 0.1160161 -0.3485102 0.9303782 0.1160161 -0.388193 0.9303782 0.1160161 -0.4303934 0.9303782 0.1160161 -0.4751555 0.9303782 0.1160161 -0.5225216 0.9303782 0.1160161 -0.5725335 0.9303782 0.1160161 -0.6252316 0.9303782 0.1160161 -0.6806558 0.9303782 0.1160161 -0.7388448 0.9303782 0.1160161 -0.7998369 0.9303782 0.1160161 -0.8636691 0.9303782 0.1160161 -0.9303782 0.9303782 0.1160161 -1 0.9303782 0.1160161 -0 1 0.1160161 -0.002418731 1 0.1160161 -0.005155668 1 0.1160161 -0.009080105 1 0.1160161 -0.01434988 1 0.1160161 -0.02107202 1 0.1160161 -0.02934285 1 0.1160161 -0.03925039 1 0.1160161 -0.05087609 1 0.1160161 -0.06429595 1 0.1160161 -0.07958143 1 0.1160161 -0.0968001 1 0.1160161 -0.1160161 1 0.1160161 -0.1372908 1 0.1160161 -0.1606827 1 0.1160161 -0.1862481 1 0.1160161 -0.2140411 1 0.1160161 -0.2441142 1 0.1160161 -0.2765176 1 0.1160161 -0.3113005 1 0.1160161 -0.3485102 1 0.1160161 -0.388193 1 0.1160161 -0.4303934 1 0.1160161 -0.4751555 1 0.1160161 -0.5225216 1 0.1160161 -0.5725335 1 0.1160161 -0.6252316 1 0.1160161 -0.6806558 1 0.1160161 -0.7388448 1 0.1160161 -0.7998369 1 0.1160161 -0.8636691 1 0.1160161 -0.9303782 1 0.1160161 -1 1 0.1160161 -0 0 0.1372908 -0.002418731 0 0.1372908 -0.005155668 0 0.1372908 -0.009080105 0 0.1372908 -0.01434988 0 0.1372908 -0.02107202 0 0.1372908 -0.02934285 0 0.1372908 -0.03925039 0 0.1372908 -0.05087609 0 0.1372908 -0.06429595 0 0.1372908 -0.07958143 0 0.1372908 -0.0968001 0 0.1372908 -0.1160161 0 0.1372908 -0.1372908 0 0.1372908 -0.1606827 0 0.1372908 -0.1862481 0 0.1372908 -0.2140411 0 0.1372908 -0.2441142 0 0.1372908 -0.2765176 0 0.1372908 -0.3113005 0 0.1372908 -0.3485102 0 0.1372908 -0.388193 0 0.1372908 -0.4303934 0 0.1372908 -0.4751555 0 0.1372908 -0.5225216 0 0.1372908 -0.5725335 0 0.1372908 -0.6252316 0 0.1372908 -0.6806558 0 0.1372908 -0.7388448 0 0.1372908 -0.7998369 0 0.1372908 -0.8636691 0 0.1372908 -0.9303782 0 0.1372908 -1 0 0.1372908 -0 0.002418731 0.1372908 -0.002418731 0.002418731 0.1372908 -0.005155668 0.002418731 0.1372908 -0.009080105 0.002418731 0.1372908 -0.01434988 0.002418731 0.1372908 -0.02107202 0.002418731 0.1372908 -0.02934285 0.002418731 0.1372908 -0.03925039 0.002418731 0.1372908 -0.05087609 0.002418731 0.1372908 -0.06429595 0.002418731 0.1372908 -0.07958143 0.002418731 0.1372908 -0.0968001 0.002418731 0.1372908 -0.1160161 0.002418731 0.1372908 -0.1372908 0.002418731 0.1372908 -0.1606827 0.002418731 0.1372908 -0.1862481 0.002418731 0.1372908 -0.2140411 0.002418731 0.1372908 -0.2441142 0.002418731 0.1372908 -0.2765176 0.002418731 0.1372908 -0.3113005 0.002418731 0.1372908 -0.3485102 0.002418731 0.1372908 -0.388193 0.002418731 0.1372908 -0.4303934 0.002418731 0.1372908 -0.4751555 0.002418731 0.1372908 -0.5225216 0.002418731 0.1372908 -0.5725335 0.002418731 0.1372908 -0.6252316 0.002418731 0.1372908 -0.6806558 0.002418731 0.1372908 -0.7388448 0.002418731 0.1372908 -0.7998369 0.002418731 0.1372908 -0.8636691 0.002418731 0.1372908 -0.9303782 0.002418731 0.1372908 -1 0.002418731 0.1372908 -0 0.005155668 0.1372908 -0.002418731 0.005155668 0.1372908 -0.005155668 0.005155668 0.1372908 -0.009080105 0.005155668 0.1372908 -0.01434988 0.005155668 0.1372908 -0.02107202 0.005155668 0.1372908 -0.02934285 0.005155668 0.1372908 -0.03925039 0.005155668 0.1372908 -0.05087609 0.005155668 0.1372908 -0.06429595 0.005155668 0.1372908 -0.07958143 0.005155668 0.1372908 -0.0968001 0.005155668 0.1372908 -0.1160161 0.005155668 0.1372908 -0.1372908 0.005155668 0.1372908 -0.1606827 0.005155668 0.1372908 -0.1862481 0.005155668 0.1372908 -0.2140411 0.005155668 0.1372908 -0.2441142 0.005155668 0.1372908 -0.2765176 0.005155668 0.1372908 -0.3113005 0.005155668 0.1372908 -0.3485102 0.005155668 0.1372908 -0.388193 0.005155668 0.1372908 -0.4303934 0.005155668 0.1372908 -0.4751555 0.005155668 0.1372908 -0.5225216 0.005155668 0.1372908 -0.5725335 0.005155668 0.1372908 -0.6252316 0.005155668 0.1372908 -0.6806558 0.005155668 0.1372908 -0.7388448 0.005155668 0.1372908 -0.7998369 0.005155668 0.1372908 -0.8636691 0.005155668 0.1372908 -0.9303782 0.005155668 0.1372908 -1 0.005155668 0.1372908 -0 0.009080105 0.1372908 -0.002418731 0.009080105 0.1372908 -0.005155668 0.009080105 0.1372908 -0.009080105 0.009080105 0.1372908 -0.01434988 0.009080105 0.1372908 -0.02107202 0.009080105 0.1372908 -0.02934285 0.009080105 0.1372908 -0.03925039 0.009080105 0.1372908 -0.05087609 0.009080105 0.1372908 -0.06429595 0.009080105 0.1372908 -0.07958143 0.009080105 0.1372908 -0.0968001 0.009080105 0.1372908 -0.1160161 0.009080105 0.1372908 -0.1372908 0.009080105 0.1372908 -0.1606827 0.009080105 0.1372908 -0.1862481 0.009080105 0.1372908 -0.2140411 0.009080105 0.1372908 -0.2441142 0.009080105 0.1372908 -0.2765176 0.009080105 0.1372908 -0.3113005 0.009080105 0.1372908 -0.3485102 0.009080105 0.1372908 -0.388193 0.009080105 0.1372908 -0.4303934 0.009080105 0.1372908 -0.4751555 0.009080105 0.1372908 -0.5225216 0.009080105 0.1372908 -0.5725335 0.009080105 0.1372908 -0.6252316 0.009080105 0.1372908 -0.6806558 0.009080105 0.1372908 -0.7388448 0.009080105 0.1372908 -0.7998369 0.009080105 0.1372908 -0.8636691 0.009080105 0.1372908 -0.9303782 0.009080105 0.1372908 -1 0.009080105 0.1372908 -0 0.01434988 0.1372908 -0.002418731 0.01434988 0.1372908 -0.005155668 0.01434988 0.1372908 -0.009080105 0.01434988 0.1372908 -0.01434988 0.01434988 0.1372908 -0.02107202 0.01434988 0.1372908 -0.02934285 0.01434988 0.1372908 -0.03925039 0.01434988 0.1372908 -0.05087609 0.01434988 0.1372908 -0.06429595 0.01434988 0.1372908 -0.07958143 0.01434988 0.1372908 -0.0968001 0.01434988 0.1372908 -0.1160161 0.01434988 0.1372908 -0.1372908 0.01434988 0.1372908 -0.1606827 0.01434988 0.1372908 -0.1862481 0.01434988 0.1372908 -0.2140411 0.01434988 0.1372908 -0.2441142 0.01434988 0.1372908 -0.2765176 0.01434988 0.1372908 -0.3113005 0.01434988 0.1372908 -0.3485102 0.01434988 0.1372908 -0.388193 0.01434988 0.1372908 -0.4303934 0.01434988 0.1372908 -0.4751555 0.01434988 0.1372908 -0.5225216 0.01434988 0.1372908 -0.5725335 0.01434988 0.1372908 -0.6252316 0.01434988 0.1372908 -0.6806558 0.01434988 0.1372908 -0.7388448 0.01434988 0.1372908 -0.7998369 0.01434988 0.1372908 -0.8636691 0.01434988 0.1372908 -0.9303782 0.01434988 0.1372908 -1 0.01434988 0.1372908 -0 0.02107202 0.1372908 -0.002418731 0.02107202 0.1372908 -0.005155668 0.02107202 0.1372908 -0.009080105 0.02107202 0.1372908 -0.01434988 0.02107202 0.1372908 -0.02107202 0.02107202 0.1372908 -0.02934285 0.02107202 0.1372908 -0.03925039 0.02107202 0.1372908 -0.05087609 0.02107202 0.1372908 -0.06429595 0.02107202 0.1372908 -0.07958143 0.02107202 0.1372908 -0.0968001 0.02107202 0.1372908 -0.1160161 0.02107202 0.1372908 -0.1372908 0.02107202 0.1372908 -0.1606827 0.02107202 0.1372908 -0.1862481 0.02107202 0.1372908 -0.2140411 0.02107202 0.1372908 -0.2441142 0.02107202 0.1372908 -0.2765176 0.02107202 0.1372908 -0.3113005 0.02107202 0.1372908 -0.3485102 0.02107202 0.1372908 -0.388193 0.02107202 0.1372908 -0.4303934 0.02107202 0.1372908 -0.4751555 0.02107202 0.1372908 -0.5225216 0.02107202 0.1372908 -0.5725335 0.02107202 0.1372908 -0.6252316 0.02107202 0.1372908 -0.6806558 0.02107202 0.1372908 -0.7388448 0.02107202 0.1372908 -0.7998369 0.02107202 0.1372908 -0.8636691 0.02107202 0.1372908 -0.9303782 0.02107202 0.1372908 -1 0.02107202 0.1372908 -0 0.02934285 0.1372908 -0.002418731 0.02934285 0.1372908 -0.005155668 0.02934285 0.1372908 -0.009080105 0.02934285 0.1372908 -0.01434988 0.02934285 0.1372908 -0.02107202 0.02934285 0.1372908 -0.02934285 0.02934285 0.1372908 -0.03925039 0.02934285 0.1372908 -0.05087609 0.02934285 0.1372908 -0.06429595 0.02934285 0.1372908 -0.07958143 0.02934285 0.1372908 -0.0968001 0.02934285 0.1372908 -0.1160161 0.02934285 0.1372908 -0.1372908 0.02934285 0.1372908 -0.1606827 0.02934285 0.1372908 -0.1862481 0.02934285 0.1372908 -0.2140411 0.02934285 0.1372908 -0.2441142 0.02934285 0.1372908 -0.2765176 0.02934285 0.1372908 -0.3113005 0.02934285 0.1372908 -0.3485102 0.02934285 0.1372908 -0.388193 0.02934285 0.1372908 -0.4303934 0.02934285 0.1372908 -0.4751555 0.02934285 0.1372908 -0.5225216 0.02934285 0.1372908 -0.5725335 0.02934285 0.1372908 -0.6252316 0.02934285 0.1372908 -0.6806558 0.02934285 0.1372908 -0.7388448 0.02934285 0.1372908 -0.7998369 0.02934285 0.1372908 -0.8636691 0.02934285 0.1372908 -0.9303782 0.02934285 0.1372908 -1 0.02934285 0.1372908 -0 0.03925039 0.1372908 -0.002418731 0.03925039 0.1372908 -0.005155668 0.03925039 0.1372908 -0.009080105 0.03925039 0.1372908 -0.01434988 0.03925039 0.1372908 -0.02107202 0.03925039 0.1372908 -0.02934285 0.03925039 0.1372908 -0.03925039 0.03925039 0.1372908 -0.05087609 0.03925039 0.1372908 -0.06429595 0.03925039 0.1372908 -0.07958143 0.03925039 0.1372908 -0.0968001 0.03925039 0.1372908 -0.1160161 0.03925039 0.1372908 -0.1372908 0.03925039 0.1372908 -0.1606827 0.03925039 0.1372908 -0.1862481 0.03925039 0.1372908 -0.2140411 0.03925039 0.1372908 -0.2441142 0.03925039 0.1372908 -0.2765176 0.03925039 0.1372908 -0.3113005 0.03925039 0.1372908 -0.3485102 0.03925039 0.1372908 -0.388193 0.03925039 0.1372908 -0.4303934 0.03925039 0.1372908 -0.4751555 0.03925039 0.1372908 -0.5225216 0.03925039 0.1372908 -0.5725335 0.03925039 0.1372908 -0.6252316 0.03925039 0.1372908 -0.6806558 0.03925039 0.1372908 -0.7388448 0.03925039 0.1372908 -0.7998369 0.03925039 0.1372908 -0.8636691 0.03925039 0.1372908 -0.9303782 0.03925039 0.1372908 -1 0.03925039 0.1372908 -0 0.05087609 0.1372908 -0.002418731 0.05087609 0.1372908 -0.005155668 0.05087609 0.1372908 -0.009080105 0.05087609 0.1372908 -0.01434988 0.05087609 0.1372908 -0.02107202 0.05087609 0.1372908 -0.02934285 0.05087609 0.1372908 -0.03925039 0.05087609 0.1372908 -0.05087609 0.05087609 0.1372908 -0.06429595 0.05087609 0.1372908 -0.07958143 0.05087609 0.1372908 -0.0968001 0.05087609 0.1372908 -0.1160161 0.05087609 0.1372908 -0.1372908 0.05087609 0.1372908 -0.1606827 0.05087609 0.1372908 -0.1862481 0.05087609 0.1372908 -0.2140411 0.05087609 0.1372908 -0.2441142 0.05087609 0.1372908 -0.2765176 0.05087609 0.1372908 -0.3113005 0.05087609 0.1372908 -0.3485102 0.05087609 0.1372908 -0.388193 0.05087609 0.1372908 -0.4303934 0.05087609 0.1372908 -0.4751555 0.05087609 0.1372908 -0.5225216 0.05087609 0.1372908 -0.5725335 0.05087609 0.1372908 -0.6252316 0.05087609 0.1372908 -0.6806558 0.05087609 0.1372908 -0.7388448 0.05087609 0.1372908 -0.7998369 0.05087609 0.1372908 -0.8636691 0.05087609 0.1372908 -0.9303782 0.05087609 0.1372908 -1 0.05087609 0.1372908 -0 0.06429595 0.1372908 -0.002418731 0.06429595 0.1372908 -0.005155668 0.06429595 0.1372908 -0.009080105 0.06429595 0.1372908 -0.01434988 0.06429595 0.1372908 -0.02107202 0.06429595 0.1372908 -0.02934285 0.06429595 0.1372908 -0.03925039 0.06429595 0.1372908 -0.05087609 0.06429595 0.1372908 -0.06429595 0.06429595 0.1372908 -0.07958143 0.06429595 0.1372908 -0.0968001 0.06429595 0.1372908 -0.1160161 0.06429595 0.1372908 -0.1372908 0.06429595 0.1372908 -0.1606827 0.06429595 0.1372908 -0.1862481 0.06429595 0.1372908 -0.2140411 0.06429595 0.1372908 -0.2441142 0.06429595 0.1372908 -0.2765176 0.06429595 0.1372908 -0.3113005 0.06429595 0.1372908 -0.3485102 0.06429595 0.1372908 -0.388193 0.06429595 0.1372908 -0.4303934 0.06429595 0.1372908 -0.4751555 0.06429595 0.1372908 -0.5225216 0.06429595 0.1372908 -0.5725335 0.06429595 0.1372908 -0.6252316 0.06429595 0.1372908 -0.6806558 0.06429595 0.1372908 -0.7388448 0.06429595 0.1372908 -0.7998369 0.06429595 0.1372908 -0.8636691 0.06429595 0.1372908 -0.9303782 0.06429595 0.1372908 -1 0.06429595 0.1372908 -0 0.07958143 0.1372908 -0.002418731 0.07958143 0.1372908 -0.005155668 0.07958143 0.1372908 -0.009080105 0.07958143 0.1372908 -0.01434988 0.07958143 0.1372908 -0.02107202 0.07958143 0.1372908 -0.02934285 0.07958143 0.1372908 -0.03925039 0.07958143 0.1372908 -0.05087609 0.07958143 0.1372908 -0.06429595 0.07958143 0.1372908 -0.07958143 0.07958143 0.1372908 -0.0968001 0.07958143 0.1372908 -0.1160161 0.07958143 0.1372908 -0.1372908 0.07958143 0.1372908 -0.1606827 0.07958143 0.1372908 -0.1862481 0.07958143 0.1372908 -0.2140411 0.07958143 0.1372908 -0.2441142 0.07958143 0.1372908 -0.2765176 0.07958143 0.1372908 -0.3113005 0.07958143 0.1372908 -0.3485102 0.07958143 0.1372908 -0.388193 0.07958143 0.1372908 -0.4303934 0.07958143 0.1372908 -0.4751555 0.07958143 0.1372908 -0.5225216 0.07958143 0.1372908 -0.5725335 0.07958143 0.1372908 -0.6252316 0.07958143 0.1372908 -0.6806558 0.07958143 0.1372908 -0.7388448 0.07958143 0.1372908 -0.7998369 0.07958143 0.1372908 -0.8636691 0.07958143 0.1372908 -0.9303782 0.07958143 0.1372908 -1 0.07958143 0.1372908 -0 0.0968001 0.1372908 -0.002418731 0.0968001 0.1372908 -0.005155668 0.0968001 0.1372908 -0.009080105 0.0968001 0.1372908 -0.01434988 0.0968001 0.1372908 -0.02107202 0.0968001 0.1372908 -0.02934285 0.0968001 0.1372908 -0.03925039 0.0968001 0.1372908 -0.05087609 0.0968001 0.1372908 -0.06429595 0.0968001 0.1372908 -0.07958143 0.0968001 0.1372908 -0.0968001 0.0968001 0.1372908 -0.1160161 0.0968001 0.1372908 -0.1372908 0.0968001 0.1372908 -0.1606827 0.0968001 0.1372908 -0.1862481 0.0968001 0.1372908 -0.2140411 0.0968001 0.1372908 -0.2441142 0.0968001 0.1372908 -0.2765176 0.0968001 0.1372908 -0.3113005 0.0968001 0.1372908 -0.3485102 0.0968001 0.1372908 -0.388193 0.0968001 0.1372908 -0.4303934 0.0968001 0.1372908 -0.4751555 0.0968001 0.1372908 -0.5225216 0.0968001 0.1372908 -0.5725335 0.0968001 0.1372908 -0.6252316 0.0968001 0.1372908 -0.6806558 0.0968001 0.1372908 -0.7388448 0.0968001 0.1372908 -0.7998369 0.0968001 0.1372908 -0.8636691 0.0968001 0.1372908 -0.9303782 0.0968001 0.1372908 -1 0.0968001 0.1372908 -0 0.1160161 0.1372908 -0.002418731 0.1160161 0.1372908 -0.005155668 0.1160161 0.1372908 -0.009080105 0.1160161 0.1372908 -0.01434988 0.1160161 0.1372908 -0.02107202 0.1160161 0.1372908 -0.02934285 0.1160161 0.1372908 -0.03925039 0.1160161 0.1372908 -0.05087609 0.1160161 0.1372908 -0.06429595 0.1160161 0.1372908 -0.07958143 0.1160161 0.1372908 -0.0968001 0.1160161 0.1372908 -0.1160161 0.1160161 0.1372908 -0.1372908 0.1160161 0.1372908 -0.1606827 0.1160161 0.1372908 -0.1862481 0.1160161 0.1372908 -0.2140411 0.1160161 0.1372908 -0.2441142 0.1160161 0.1372908 -0.2765176 0.1160161 0.1372908 -0.3113005 0.1160161 0.1372908 -0.3485102 0.1160161 0.1372908 -0.388193 0.1160161 0.1372908 -0.4303934 0.1160161 0.1372908 -0.4751555 0.1160161 0.1372908 -0.5225216 0.1160161 0.1372908 -0.5725335 0.1160161 0.1372908 -0.6252316 0.1160161 0.1372908 -0.6806558 0.1160161 0.1372908 -0.7388448 0.1160161 0.1372908 -0.7998369 0.1160161 0.1372908 -0.8636691 0.1160161 0.1372908 -0.9303782 0.1160161 0.1372908 -1 0.1160161 0.1372908 -0 0.1372908 0.1372908 -0.002418731 0.1372908 0.1372908 -0.005155668 0.1372908 0.1372908 -0.009080105 0.1372908 0.1372908 -0.01434988 0.1372908 0.1372908 -0.02107202 0.1372908 0.1372908 -0.02934285 0.1372908 0.1372908 -0.03925039 0.1372908 0.1372908 -0.05087609 0.1372908 0.1372908 -0.06429595 0.1372908 0.1372908 -0.07958143 0.1372908 0.1372908 -0.0968001 0.1372908 0.1372908 -0.1160161 0.1372908 0.1372908 -0.1372908 0.1372908 0.1372908 -0.1606827 0.1372908 0.1372908 -0.1862481 0.1372908 0.1372908 -0.2140411 0.1372908 0.1372908 -0.2441142 0.1372908 0.1372908 -0.2765176 0.1372908 0.1372908 -0.3113005 0.1372908 0.1372908 -0.3485102 0.1372908 0.1372908 -0.388193 0.1372908 0.1372908 -0.4303934 0.1372908 0.1372908 -0.4751555 0.1372908 0.1372908 -0.5225216 0.1372908 0.1372908 -0.5725335 0.1372908 0.1372908 -0.6252316 0.1372908 0.1372908 -0.6806558 0.1372908 0.1372908 -0.7388448 0.1372908 0.1372908 -0.7998369 0.1372908 0.1372908 -0.8636691 0.1372908 0.1372908 -0.9303782 0.1372908 0.1372908 -1 0.1372908 0.1372908 -0 0.1606827 0.1372908 -0.002418731 0.1606827 0.1372908 -0.005155668 0.1606827 0.1372908 -0.009080105 0.1606827 0.1372908 -0.01434988 0.1606827 0.1372908 -0.02107202 0.1606827 0.1372908 -0.02934285 0.1606827 0.1372908 -0.03925039 0.1606827 0.1372908 -0.05087609 0.1606827 0.1372908 -0.06429595 0.1606827 0.1372908 -0.07958143 0.1606827 0.1372908 -0.0968001 0.1606827 0.1372908 -0.1160161 0.1606827 0.1372908 -0.1372908 0.1606827 0.1372908 -0.1606827 0.1606827 0.1372908 -0.1862481 0.1606827 0.1372908 -0.2140411 0.1606827 0.1372908 -0.2441142 0.1606827 0.1372908 -0.2765176 0.1606827 0.1372908 -0.3113005 0.1606827 0.1372908 -0.3485102 0.1606827 0.1372908 -0.388193 0.1606827 0.1372908 -0.4303934 0.1606827 0.1372908 -0.4751555 0.1606827 0.1372908 -0.5225216 0.1606827 0.1372908 -0.5725335 0.1606827 0.1372908 -0.6252316 0.1606827 0.1372908 -0.6806558 0.1606827 0.1372908 -0.7388448 0.1606827 0.1372908 -0.7998369 0.1606827 0.1372908 -0.8636691 0.1606827 0.1372908 -0.9303782 0.1606827 0.1372908 -1 0.1606827 0.1372908 -0 0.1862481 0.1372908 -0.002418731 0.1862481 0.1372908 -0.005155668 0.1862481 0.1372908 -0.009080105 0.1862481 0.1372908 -0.01434988 0.1862481 0.1372908 -0.02107202 0.1862481 0.1372908 -0.02934285 0.1862481 0.1372908 -0.03925039 0.1862481 0.1372908 -0.05087609 0.1862481 0.1372908 -0.06429595 0.1862481 0.1372908 -0.07958143 0.1862481 0.1372908 -0.0968001 0.1862481 0.1372908 -0.1160161 0.1862481 0.1372908 -0.1372908 0.1862481 0.1372908 -0.1606827 0.1862481 0.1372908 -0.1862481 0.1862481 0.1372908 -0.2140411 0.1862481 0.1372908 -0.2441142 0.1862481 0.1372908 -0.2765176 0.1862481 0.1372908 -0.3113005 0.1862481 0.1372908 -0.3485102 0.1862481 0.1372908 -0.388193 0.1862481 0.1372908 -0.4303934 0.1862481 0.1372908 -0.4751555 0.1862481 0.1372908 -0.5225216 0.1862481 0.1372908 -0.5725335 0.1862481 0.1372908 -0.6252316 0.1862481 0.1372908 -0.6806558 0.1862481 0.1372908 -0.7388448 0.1862481 0.1372908 -0.7998369 0.1862481 0.1372908 -0.8636691 0.1862481 0.1372908 -0.9303782 0.1862481 0.1372908 -1 0.1862481 0.1372908 -0 0.2140411 0.1372908 -0.002418731 0.2140411 0.1372908 -0.005155668 0.2140411 0.1372908 -0.009080105 0.2140411 0.1372908 -0.01434988 0.2140411 0.1372908 -0.02107202 0.2140411 0.1372908 -0.02934285 0.2140411 0.1372908 -0.03925039 0.2140411 0.1372908 -0.05087609 0.2140411 0.1372908 -0.06429595 0.2140411 0.1372908 -0.07958143 0.2140411 0.1372908 -0.0968001 0.2140411 0.1372908 -0.1160161 0.2140411 0.1372908 -0.1372908 0.2140411 0.1372908 -0.1606827 0.2140411 0.1372908 -0.1862481 0.2140411 0.1372908 -0.2140411 0.2140411 0.1372908 -0.2441142 0.2140411 0.1372908 -0.2765176 0.2140411 0.1372908 -0.3113005 0.2140411 0.1372908 -0.3485102 0.2140411 0.1372908 -0.388193 0.2140411 0.1372908 -0.4303934 0.2140411 0.1372908 -0.4751555 0.2140411 0.1372908 -0.5225216 0.2140411 0.1372908 -0.5725335 0.2140411 0.1372908 -0.6252316 0.2140411 0.1372908 -0.6806558 0.2140411 0.1372908 -0.7388448 0.2140411 0.1372908 -0.7998369 0.2140411 0.1372908 -0.8636691 0.2140411 0.1372908 -0.9303782 0.2140411 0.1372908 -1 0.2140411 0.1372908 -0 0.2441142 0.1372908 -0.002418731 0.2441142 0.1372908 -0.005155668 0.2441142 0.1372908 -0.009080105 0.2441142 0.1372908 -0.01434988 0.2441142 0.1372908 -0.02107202 0.2441142 0.1372908 -0.02934285 0.2441142 0.1372908 -0.03925039 0.2441142 0.1372908 -0.05087609 0.2441142 0.1372908 -0.06429595 0.2441142 0.1372908 -0.07958143 0.2441142 0.1372908 -0.0968001 0.2441142 0.1372908 -0.1160161 0.2441142 0.1372908 -0.1372908 0.2441142 0.1372908 -0.1606827 0.2441142 0.1372908 -0.1862481 0.2441142 0.1372908 -0.2140411 0.2441142 0.1372908 -0.2441142 0.2441142 0.1372908 -0.2765176 0.2441142 0.1372908 -0.3113005 0.2441142 0.1372908 -0.3485102 0.2441142 0.1372908 -0.388193 0.2441142 0.1372908 -0.4303934 0.2441142 0.1372908 -0.4751555 0.2441142 0.1372908 -0.5225216 0.2441142 0.1372908 -0.5725335 0.2441142 0.1372908 -0.6252316 0.2441142 0.1372908 -0.6806558 0.2441142 0.1372908 -0.7388448 0.2441142 0.1372908 -0.7998369 0.2441142 0.1372908 -0.8636691 0.2441142 0.1372908 -0.9303782 0.2441142 0.1372908 -1 0.2441142 0.1372908 -0 0.2765176 0.1372908 -0.002418731 0.2765176 0.1372908 -0.005155668 0.2765176 0.1372908 -0.009080105 0.2765176 0.1372908 -0.01434988 0.2765176 0.1372908 -0.02107202 0.2765176 0.1372908 -0.02934285 0.2765176 0.1372908 -0.03925039 0.2765176 0.1372908 -0.05087609 0.2765176 0.1372908 -0.06429595 0.2765176 0.1372908 -0.07958143 0.2765176 0.1372908 -0.0968001 0.2765176 0.1372908 -0.1160161 0.2765176 0.1372908 -0.1372908 0.2765176 0.1372908 -0.1606827 0.2765176 0.1372908 -0.1862481 0.2765176 0.1372908 -0.2140411 0.2765176 0.1372908 -0.2441142 0.2765176 0.1372908 -0.2765176 0.2765176 0.1372908 -0.3113005 0.2765176 0.1372908 -0.3485102 0.2765176 0.1372908 -0.388193 0.2765176 0.1372908 -0.4303934 0.2765176 0.1372908 -0.4751555 0.2765176 0.1372908 -0.5225216 0.2765176 0.1372908 -0.5725335 0.2765176 0.1372908 -0.6252316 0.2765176 0.1372908 -0.6806558 0.2765176 0.1372908 -0.7388448 0.2765176 0.1372908 -0.7998369 0.2765176 0.1372908 -0.8636691 0.2765176 0.1372908 -0.9303782 0.2765176 0.1372908 -1 0.2765176 0.1372908 -0 0.3113005 0.1372908 -0.002418731 0.3113005 0.1372908 -0.005155668 0.3113005 0.1372908 -0.009080105 0.3113005 0.1372908 -0.01434988 0.3113005 0.1372908 -0.02107202 0.3113005 0.1372908 -0.02934285 0.3113005 0.1372908 -0.03925039 0.3113005 0.1372908 -0.05087609 0.3113005 0.1372908 -0.06429595 0.3113005 0.1372908 -0.07958143 0.3113005 0.1372908 -0.0968001 0.3113005 0.1372908 -0.1160161 0.3113005 0.1372908 -0.1372908 0.3113005 0.1372908 -0.1606827 0.3113005 0.1372908 -0.1862481 0.3113005 0.1372908 -0.2140411 0.3113005 0.1372908 -0.2441142 0.3113005 0.1372908 -0.2765176 0.3113005 0.1372908 -0.3113005 0.3113005 0.1372908 -0.3485102 0.3113005 0.1372908 -0.388193 0.3113005 0.1372908 -0.4303934 0.3113005 0.1372908 -0.4751555 0.3113005 0.1372908 -0.5225216 0.3113005 0.1372908 -0.5725335 0.3113005 0.1372908 -0.6252316 0.3113005 0.1372908 -0.6806558 0.3113005 0.1372908 -0.7388448 0.3113005 0.1372908 -0.7998369 0.3113005 0.1372908 -0.8636691 0.3113005 0.1372908 -0.9303782 0.3113005 0.1372908 -1 0.3113005 0.1372908 -0 0.3485102 0.1372908 -0.002418731 0.3485102 0.1372908 -0.005155668 0.3485102 0.1372908 -0.009080105 0.3485102 0.1372908 -0.01434988 0.3485102 0.1372908 -0.02107202 0.3485102 0.1372908 -0.02934285 0.3485102 0.1372908 -0.03925039 0.3485102 0.1372908 -0.05087609 0.3485102 0.1372908 -0.06429595 0.3485102 0.1372908 -0.07958143 0.3485102 0.1372908 -0.0968001 0.3485102 0.1372908 -0.1160161 0.3485102 0.1372908 -0.1372908 0.3485102 0.1372908 -0.1606827 0.3485102 0.1372908 -0.1862481 0.3485102 0.1372908 -0.2140411 0.3485102 0.1372908 -0.2441142 0.3485102 0.1372908 -0.2765176 0.3485102 0.1372908 -0.3113005 0.3485102 0.1372908 -0.3485102 0.3485102 0.1372908 -0.388193 0.3485102 0.1372908 -0.4303934 0.3485102 0.1372908 -0.4751555 0.3485102 0.1372908 -0.5225216 0.3485102 0.1372908 -0.5725335 0.3485102 0.1372908 -0.6252316 0.3485102 0.1372908 -0.6806558 0.3485102 0.1372908 -0.7388448 0.3485102 0.1372908 -0.7998369 0.3485102 0.1372908 -0.8636691 0.3485102 0.1372908 -0.9303782 0.3485102 0.1372908 -1 0.3485102 0.1372908 -0 0.388193 0.1372908 -0.002418731 0.388193 0.1372908 -0.005155668 0.388193 0.1372908 -0.009080105 0.388193 0.1372908 -0.01434988 0.388193 0.1372908 -0.02107202 0.388193 0.1372908 -0.02934285 0.388193 0.1372908 -0.03925039 0.388193 0.1372908 -0.05087609 0.388193 0.1372908 -0.06429595 0.388193 0.1372908 -0.07958143 0.388193 0.1372908 -0.0968001 0.388193 0.1372908 -0.1160161 0.388193 0.1372908 -0.1372908 0.388193 0.1372908 -0.1606827 0.388193 0.1372908 -0.1862481 0.388193 0.1372908 -0.2140411 0.388193 0.1372908 -0.2441142 0.388193 0.1372908 -0.2765176 0.388193 0.1372908 -0.3113005 0.388193 0.1372908 -0.3485102 0.388193 0.1372908 -0.388193 0.388193 0.1372908 -0.4303934 0.388193 0.1372908 -0.4751555 0.388193 0.1372908 -0.5225216 0.388193 0.1372908 -0.5725335 0.388193 0.1372908 -0.6252316 0.388193 0.1372908 -0.6806558 0.388193 0.1372908 -0.7388448 0.388193 0.1372908 -0.7998369 0.388193 0.1372908 -0.8636691 0.388193 0.1372908 -0.9303782 0.388193 0.1372908 -1 0.388193 0.1372908 -0 0.4303934 0.1372908 -0.002418731 0.4303934 0.1372908 -0.005155668 0.4303934 0.1372908 -0.009080105 0.4303934 0.1372908 -0.01434988 0.4303934 0.1372908 -0.02107202 0.4303934 0.1372908 -0.02934285 0.4303934 0.1372908 -0.03925039 0.4303934 0.1372908 -0.05087609 0.4303934 0.1372908 -0.06429595 0.4303934 0.1372908 -0.07958143 0.4303934 0.1372908 -0.0968001 0.4303934 0.1372908 -0.1160161 0.4303934 0.1372908 -0.1372908 0.4303934 0.1372908 -0.1606827 0.4303934 0.1372908 -0.1862481 0.4303934 0.1372908 -0.2140411 0.4303934 0.1372908 -0.2441142 0.4303934 0.1372908 -0.2765176 0.4303934 0.1372908 -0.3113005 0.4303934 0.1372908 -0.3485102 0.4303934 0.1372908 -0.388193 0.4303934 0.1372908 -0.4303934 0.4303934 0.1372908 -0.4751555 0.4303934 0.1372908 -0.5225216 0.4303934 0.1372908 -0.5725335 0.4303934 0.1372908 -0.6252316 0.4303934 0.1372908 -0.6806558 0.4303934 0.1372908 -0.7388448 0.4303934 0.1372908 -0.7998369 0.4303934 0.1372908 -0.8636691 0.4303934 0.1372908 -0.9303782 0.4303934 0.1372908 -1 0.4303934 0.1372908 -0 0.4751555 0.1372908 -0.002418731 0.4751555 0.1372908 -0.005155668 0.4751555 0.1372908 -0.009080105 0.4751555 0.1372908 -0.01434988 0.4751555 0.1372908 -0.02107202 0.4751555 0.1372908 -0.02934285 0.4751555 0.1372908 -0.03925039 0.4751555 0.1372908 -0.05087609 0.4751555 0.1372908 -0.06429595 0.4751555 0.1372908 -0.07958143 0.4751555 0.1372908 -0.0968001 0.4751555 0.1372908 -0.1160161 0.4751555 0.1372908 -0.1372908 0.4751555 0.1372908 -0.1606827 0.4751555 0.1372908 -0.1862481 0.4751555 0.1372908 -0.2140411 0.4751555 0.1372908 -0.2441142 0.4751555 0.1372908 -0.2765176 0.4751555 0.1372908 -0.3113005 0.4751555 0.1372908 -0.3485102 0.4751555 0.1372908 -0.388193 0.4751555 0.1372908 -0.4303934 0.4751555 0.1372908 -0.4751555 0.4751555 0.1372908 -0.5225216 0.4751555 0.1372908 -0.5725335 0.4751555 0.1372908 -0.6252316 0.4751555 0.1372908 -0.6806558 0.4751555 0.1372908 -0.7388448 0.4751555 0.1372908 -0.7998369 0.4751555 0.1372908 -0.8636691 0.4751555 0.1372908 -0.9303782 0.4751555 0.1372908 -1 0.4751555 0.1372908 -0 0.5225216 0.1372908 -0.002418731 0.5225216 0.1372908 -0.005155668 0.5225216 0.1372908 -0.009080105 0.5225216 0.1372908 -0.01434988 0.5225216 0.1372908 -0.02107202 0.5225216 0.1372908 -0.02934285 0.5225216 0.1372908 -0.03925039 0.5225216 0.1372908 -0.05087609 0.5225216 0.1372908 -0.06429595 0.5225216 0.1372908 -0.07958143 0.5225216 0.1372908 -0.0968001 0.5225216 0.1372908 -0.1160161 0.5225216 0.1372908 -0.1372908 0.5225216 0.1372908 -0.1606827 0.5225216 0.1372908 -0.1862481 0.5225216 0.1372908 -0.2140411 0.5225216 0.1372908 -0.2441142 0.5225216 0.1372908 -0.2765176 0.5225216 0.1372908 -0.3113005 0.5225216 0.1372908 -0.3485102 0.5225216 0.1372908 -0.388193 0.5225216 0.1372908 -0.4303934 0.5225216 0.1372908 -0.4751555 0.5225216 0.1372908 -0.5225216 0.5225216 0.1372908 -0.5725335 0.5225216 0.1372908 -0.6252316 0.5225216 0.1372908 -0.6806558 0.5225216 0.1372908 -0.7388448 0.5225216 0.1372908 -0.7998369 0.5225216 0.1372908 -0.8636691 0.5225216 0.1372908 -0.9303782 0.5225216 0.1372908 -1 0.5225216 0.1372908 -0 0.5725335 0.1372908 -0.002418731 0.5725335 0.1372908 -0.005155668 0.5725335 0.1372908 -0.009080105 0.5725335 0.1372908 -0.01434988 0.5725335 0.1372908 -0.02107202 0.5725335 0.1372908 -0.02934285 0.5725335 0.1372908 -0.03925039 0.5725335 0.1372908 -0.05087609 0.5725335 0.1372908 -0.06429595 0.5725335 0.1372908 -0.07958143 0.5725335 0.1372908 -0.0968001 0.5725335 0.1372908 -0.1160161 0.5725335 0.1372908 -0.1372908 0.5725335 0.1372908 -0.1606827 0.5725335 0.1372908 -0.1862481 0.5725335 0.1372908 -0.2140411 0.5725335 0.1372908 -0.2441142 0.5725335 0.1372908 -0.2765176 0.5725335 0.1372908 -0.3113005 0.5725335 0.1372908 -0.3485102 0.5725335 0.1372908 -0.388193 0.5725335 0.1372908 -0.4303934 0.5725335 0.1372908 -0.4751555 0.5725335 0.1372908 -0.5225216 0.5725335 0.1372908 -0.5725335 0.5725335 0.1372908 -0.6252316 0.5725335 0.1372908 -0.6806558 0.5725335 0.1372908 -0.7388448 0.5725335 0.1372908 -0.7998369 0.5725335 0.1372908 -0.8636691 0.5725335 0.1372908 -0.9303782 0.5725335 0.1372908 -1 0.5725335 0.1372908 -0 0.6252316 0.1372908 -0.002418731 0.6252316 0.1372908 -0.005155668 0.6252316 0.1372908 -0.009080105 0.6252316 0.1372908 -0.01434988 0.6252316 0.1372908 -0.02107202 0.6252316 0.1372908 -0.02934285 0.6252316 0.1372908 -0.03925039 0.6252316 0.1372908 -0.05087609 0.6252316 0.1372908 -0.06429595 0.6252316 0.1372908 -0.07958143 0.6252316 0.1372908 -0.0968001 0.6252316 0.1372908 -0.1160161 0.6252316 0.1372908 -0.1372908 0.6252316 0.1372908 -0.1606827 0.6252316 0.1372908 -0.1862481 0.6252316 0.1372908 -0.2140411 0.6252316 0.1372908 -0.2441142 0.6252316 0.1372908 -0.2765176 0.6252316 0.1372908 -0.3113005 0.6252316 0.1372908 -0.3485102 0.6252316 0.1372908 -0.388193 0.6252316 0.1372908 -0.4303934 0.6252316 0.1372908 -0.4751555 0.6252316 0.1372908 -0.5225216 0.6252316 0.1372908 -0.5725335 0.6252316 0.1372908 -0.6252316 0.6252316 0.1372908 -0.6806558 0.6252316 0.1372908 -0.7388448 0.6252316 0.1372908 -0.7998369 0.6252316 0.1372908 -0.8636691 0.6252316 0.1372908 -0.9303782 0.6252316 0.1372908 -1 0.6252316 0.1372908 -0 0.6806558 0.1372908 -0.002418731 0.6806558 0.1372908 -0.005155668 0.6806558 0.1372908 -0.009080105 0.6806558 0.1372908 -0.01434988 0.6806558 0.1372908 -0.02107202 0.6806558 0.1372908 -0.02934285 0.6806558 0.1372908 -0.03925039 0.6806558 0.1372908 -0.05087609 0.6806558 0.1372908 -0.06429595 0.6806558 0.1372908 -0.07958143 0.6806558 0.1372908 -0.0968001 0.6806558 0.1372908 -0.1160161 0.6806558 0.1372908 -0.1372908 0.6806558 0.1372908 -0.1606827 0.6806558 0.1372908 -0.1862481 0.6806558 0.1372908 -0.2140411 0.6806558 0.1372908 -0.2441142 0.6806558 0.1372908 -0.2765176 0.6806558 0.1372908 -0.3113005 0.6806558 0.1372908 -0.3485102 0.6806558 0.1372908 -0.388193 0.6806558 0.1372908 -0.4303934 0.6806558 0.1372908 -0.4751555 0.6806558 0.1372908 -0.5225216 0.6806558 0.1372908 -0.5725335 0.6806558 0.1372908 -0.6252316 0.6806558 0.1372908 -0.6806558 0.6806558 0.1372908 -0.7388448 0.6806558 0.1372908 -0.7998369 0.6806558 0.1372908 -0.8636691 0.6806558 0.1372908 -0.9303782 0.6806558 0.1372908 -1 0.6806558 0.1372908 -0 0.7388448 0.1372908 -0.002418731 0.7388448 0.1372908 -0.005155668 0.7388448 0.1372908 -0.009080105 0.7388448 0.1372908 -0.01434988 0.7388448 0.1372908 -0.02107202 0.7388448 0.1372908 -0.02934285 0.7388448 0.1372908 -0.03925039 0.7388448 0.1372908 -0.05087609 0.7388448 0.1372908 -0.06429595 0.7388448 0.1372908 -0.07958143 0.7388448 0.1372908 -0.0968001 0.7388448 0.1372908 -0.1160161 0.7388448 0.1372908 -0.1372908 0.7388448 0.1372908 -0.1606827 0.7388448 0.1372908 -0.1862481 0.7388448 0.1372908 -0.2140411 0.7388448 0.1372908 -0.2441142 0.7388448 0.1372908 -0.2765176 0.7388448 0.1372908 -0.3113005 0.7388448 0.1372908 -0.3485102 0.7388448 0.1372908 -0.388193 0.7388448 0.1372908 -0.4303934 0.7388448 0.1372908 -0.4751555 0.7388448 0.1372908 -0.5225216 0.7388448 0.1372908 -0.5725335 0.7388448 0.1372908 -0.6252316 0.7388448 0.1372908 -0.6806558 0.7388448 0.1372908 -0.7388448 0.7388448 0.1372908 -0.7998369 0.7388448 0.1372908 -0.8636691 0.7388448 0.1372908 -0.9303782 0.7388448 0.1372908 -1 0.7388448 0.1372908 -0 0.7998369 0.1372908 -0.002418731 0.7998369 0.1372908 -0.005155668 0.7998369 0.1372908 -0.009080105 0.7998369 0.1372908 -0.01434988 0.7998369 0.1372908 -0.02107202 0.7998369 0.1372908 -0.02934285 0.7998369 0.1372908 -0.03925039 0.7998369 0.1372908 -0.05087609 0.7998369 0.1372908 -0.06429595 0.7998369 0.1372908 -0.07958143 0.7998369 0.1372908 -0.0968001 0.7998369 0.1372908 -0.1160161 0.7998369 0.1372908 -0.1372908 0.7998369 0.1372908 -0.1606827 0.7998369 0.1372908 -0.1862481 0.7998369 0.1372908 -0.2140411 0.7998369 0.1372908 -0.2441142 0.7998369 0.1372908 -0.2765176 0.7998369 0.1372908 -0.3113005 0.7998369 0.1372908 -0.3485102 0.7998369 0.1372908 -0.388193 0.7998369 0.1372908 -0.4303934 0.7998369 0.1372908 -0.4751555 0.7998369 0.1372908 -0.5225216 0.7998369 0.1372908 -0.5725335 0.7998369 0.1372908 -0.6252316 0.7998369 0.1372908 -0.6806558 0.7998369 0.1372908 -0.7388448 0.7998369 0.1372908 -0.7998369 0.7998369 0.1372908 -0.8636691 0.7998369 0.1372908 -0.9303782 0.7998369 0.1372908 -1 0.7998369 0.1372908 -0 0.8636691 0.1372908 -0.002418731 0.8636691 0.1372908 -0.005155668 0.8636691 0.1372908 -0.009080105 0.8636691 0.1372908 -0.01434988 0.8636691 0.1372908 -0.02107202 0.8636691 0.1372908 -0.02934285 0.8636691 0.1372908 -0.03925039 0.8636691 0.1372908 -0.05087609 0.8636691 0.1372908 -0.06429595 0.8636691 0.1372908 -0.07958143 0.8636691 0.1372908 -0.0968001 0.8636691 0.1372908 -0.1160161 0.8636691 0.1372908 -0.1372908 0.8636691 0.1372908 -0.1606827 0.8636691 0.1372908 -0.1862481 0.8636691 0.1372908 -0.2140411 0.8636691 0.1372908 -0.2441142 0.8636691 0.1372908 -0.2765176 0.8636691 0.1372908 -0.3113005 0.8636691 0.1372908 -0.3485102 0.8636691 0.1372908 -0.388193 0.8636691 0.1372908 -0.4303934 0.8636691 0.1372908 -0.4751555 0.8636691 0.1372908 -0.5225216 0.8636691 0.1372908 -0.5725335 0.8636691 0.1372908 -0.6252316 0.8636691 0.1372908 -0.6806558 0.8636691 0.1372908 -0.7388448 0.8636691 0.1372908 -0.7998369 0.8636691 0.1372908 -0.8636691 0.8636691 0.1372908 -0.9303782 0.8636691 0.1372908 -1 0.8636691 0.1372908 -0 0.9303782 0.1372908 -0.002418731 0.9303782 0.1372908 -0.005155668 0.9303782 0.1372908 -0.009080105 0.9303782 0.1372908 -0.01434988 0.9303782 0.1372908 -0.02107202 0.9303782 0.1372908 -0.02934285 0.9303782 0.1372908 -0.03925039 0.9303782 0.1372908 -0.05087609 0.9303782 0.1372908 -0.06429595 0.9303782 0.1372908 -0.07958143 0.9303782 0.1372908 -0.0968001 0.9303782 0.1372908 -0.1160161 0.9303782 0.1372908 -0.1372908 0.9303782 0.1372908 -0.1606827 0.9303782 0.1372908 -0.1862481 0.9303782 0.1372908 -0.2140411 0.9303782 0.1372908 -0.2441142 0.9303782 0.1372908 -0.2765176 0.9303782 0.1372908 -0.3113005 0.9303782 0.1372908 -0.3485102 0.9303782 0.1372908 -0.388193 0.9303782 0.1372908 -0.4303934 0.9303782 0.1372908 -0.4751555 0.9303782 0.1372908 -0.5225216 0.9303782 0.1372908 -0.5725335 0.9303782 0.1372908 -0.6252316 0.9303782 0.1372908 -0.6806558 0.9303782 0.1372908 -0.7388448 0.9303782 0.1372908 -0.7998369 0.9303782 0.1372908 -0.8636691 0.9303782 0.1372908 -0.9303782 0.9303782 0.1372908 -1 0.9303782 0.1372908 -0 1 0.1372908 -0.002418731 1 0.1372908 -0.005155668 1 0.1372908 -0.009080105 1 0.1372908 -0.01434988 1 0.1372908 -0.02107202 1 0.1372908 -0.02934285 1 0.1372908 -0.03925039 1 0.1372908 -0.05087609 1 0.1372908 -0.06429595 1 0.1372908 -0.07958143 1 0.1372908 -0.0968001 1 0.1372908 -0.1160161 1 0.1372908 -0.1372908 1 0.1372908 -0.1606827 1 0.1372908 -0.1862481 1 0.1372908 -0.2140411 1 0.1372908 -0.2441142 1 0.1372908 -0.2765176 1 0.1372908 -0.3113005 1 0.1372908 -0.3485102 1 0.1372908 -0.388193 1 0.1372908 -0.4303934 1 0.1372908 -0.4751555 1 0.1372908 -0.5225216 1 0.1372908 -0.5725335 1 0.1372908 -0.6252316 1 0.1372908 -0.6806558 1 0.1372908 -0.7388448 1 0.1372908 -0.7998369 1 0.1372908 -0.8636691 1 0.1372908 -0.9303782 1 0.1372908 -1 1 0.1372908 -0 0 0.1606827 -0.002418731 0 0.1606827 -0.005155668 0 0.1606827 -0.009080105 0 0.1606827 -0.01434988 0 0.1606827 -0.02107202 0 0.1606827 -0.02934285 0 0.1606827 -0.03925039 0 0.1606827 -0.05087609 0 0.1606827 -0.06429595 0 0.1606827 -0.07958143 0 0.1606827 -0.0968001 0 0.1606827 -0.1160161 0 0.1606827 -0.1372908 0 0.1606827 -0.1606827 0 0.1606827 -0.1862481 0 0.1606827 -0.2140411 0 0.1606827 -0.2441142 0 0.1606827 -0.2765176 0 0.1606827 -0.3113005 0 0.1606827 -0.3485102 0 0.1606827 -0.388193 0 0.1606827 -0.4303934 0 0.1606827 -0.4751555 0 0.1606827 -0.5225216 0 0.1606827 -0.5725335 0 0.1606827 -0.6252316 0 0.1606827 -0.6806558 0 0.1606827 -0.7388448 0 0.1606827 -0.7998369 0 0.1606827 -0.8636691 0 0.1606827 -0.9303782 0 0.1606827 -1 0 0.1606827 -0 0.002418731 0.1606827 -0.002418731 0.002418731 0.1606827 -0.005155668 0.002418731 0.1606827 -0.009080105 0.002418731 0.1606827 -0.01434988 0.002418731 0.1606827 -0.02107202 0.002418731 0.1606827 -0.02934285 0.002418731 0.1606827 -0.03925039 0.002418731 0.1606827 -0.05087609 0.002418731 0.1606827 -0.06429595 0.002418731 0.1606827 -0.07958143 0.002418731 0.1606827 -0.0968001 0.002418731 0.1606827 -0.1160161 0.002418731 0.1606827 -0.1372908 0.002418731 0.1606827 -0.1606827 0.002418731 0.1606827 -0.1862481 0.002418731 0.1606827 -0.2140411 0.002418731 0.1606827 -0.2441142 0.002418731 0.1606827 -0.2765176 0.002418731 0.1606827 -0.3113005 0.002418731 0.1606827 -0.3485102 0.002418731 0.1606827 -0.388193 0.002418731 0.1606827 -0.4303934 0.002418731 0.1606827 -0.4751555 0.002418731 0.1606827 -0.5225216 0.002418731 0.1606827 -0.5725335 0.002418731 0.1606827 -0.6252316 0.002418731 0.1606827 -0.6806558 0.002418731 0.1606827 -0.7388448 0.002418731 0.1606827 -0.7998369 0.002418731 0.1606827 -0.8636691 0.002418731 0.1606827 -0.9303782 0.002418731 0.1606827 -1 0.002418731 0.1606827 -0 0.005155668 0.1606827 -0.002418731 0.005155668 0.1606827 -0.005155668 0.005155668 0.1606827 -0.009080105 0.005155668 0.1606827 -0.01434988 0.005155668 0.1606827 -0.02107202 0.005155668 0.1606827 -0.02934285 0.005155668 0.1606827 -0.03925039 0.005155668 0.1606827 -0.05087609 0.005155668 0.1606827 -0.06429595 0.005155668 0.1606827 -0.07958143 0.005155668 0.1606827 -0.0968001 0.005155668 0.1606827 -0.1160161 0.005155668 0.1606827 -0.1372908 0.005155668 0.1606827 -0.1606827 0.005155668 0.1606827 -0.1862481 0.005155668 0.1606827 -0.2140411 0.005155668 0.1606827 -0.2441142 0.005155668 0.1606827 -0.2765176 0.005155668 0.1606827 -0.3113005 0.005155668 0.1606827 -0.3485102 0.005155668 0.1606827 -0.388193 0.005155668 0.1606827 -0.4303934 0.005155668 0.1606827 -0.4751555 0.005155668 0.1606827 -0.5225216 0.005155668 0.1606827 -0.5725335 0.005155668 0.1606827 -0.6252316 0.005155668 0.1606827 -0.6806558 0.005155668 0.1606827 -0.7388448 0.005155668 0.1606827 -0.7998369 0.005155668 0.1606827 -0.8636691 0.005155668 0.1606827 -0.9303782 0.005155668 0.1606827 -1 0.005155668 0.1606827 -0 0.009080105 0.1606827 -0.002418731 0.009080105 0.1606827 -0.005155668 0.009080105 0.1606827 -0.009080105 0.009080105 0.1606827 -0.01434988 0.009080105 0.1606827 -0.02107202 0.009080105 0.1606827 -0.02934285 0.009080105 0.1606827 -0.03925039 0.009080105 0.1606827 -0.05087609 0.009080105 0.1606827 -0.06429595 0.009080105 0.1606827 -0.07958143 0.009080105 0.1606827 -0.0968001 0.009080105 0.1606827 -0.1160161 0.009080105 0.1606827 -0.1372908 0.009080105 0.1606827 -0.1606827 0.009080105 0.1606827 -0.1862481 0.009080105 0.1606827 -0.2140411 0.009080105 0.1606827 -0.2441142 0.009080105 0.1606827 -0.2765176 0.009080105 0.1606827 -0.3113005 0.009080105 0.1606827 -0.3485102 0.009080105 0.1606827 -0.388193 0.009080105 0.1606827 -0.4303934 0.009080105 0.1606827 -0.4751555 0.009080105 0.1606827 -0.5225216 0.009080105 0.1606827 -0.5725335 0.009080105 0.1606827 -0.6252316 0.009080105 0.1606827 -0.6806558 0.009080105 0.1606827 -0.7388448 0.009080105 0.1606827 -0.7998369 0.009080105 0.1606827 -0.8636691 0.009080105 0.1606827 -0.9303782 0.009080105 0.1606827 -1 0.009080105 0.1606827 -0 0.01434988 0.1606827 -0.002418731 0.01434988 0.1606827 -0.005155668 0.01434988 0.1606827 -0.009080105 0.01434988 0.1606827 -0.01434988 0.01434988 0.1606827 -0.02107202 0.01434988 0.1606827 -0.02934285 0.01434988 0.1606827 -0.03925039 0.01434988 0.1606827 -0.05087609 0.01434988 0.1606827 -0.06429595 0.01434988 0.1606827 -0.07958143 0.01434988 0.1606827 -0.0968001 0.01434988 0.1606827 -0.1160161 0.01434988 0.1606827 -0.1372908 0.01434988 0.1606827 -0.1606827 0.01434988 0.1606827 -0.1862481 0.01434988 0.1606827 -0.2140411 0.01434988 0.1606827 -0.2441142 0.01434988 0.1606827 -0.2765176 0.01434988 0.1606827 -0.3113005 0.01434988 0.1606827 -0.3485102 0.01434988 0.1606827 -0.388193 0.01434988 0.1606827 -0.4303934 0.01434988 0.1606827 -0.4751555 0.01434988 0.1606827 -0.5225216 0.01434988 0.1606827 -0.5725335 0.01434988 0.1606827 -0.6252316 0.01434988 0.1606827 -0.6806558 0.01434988 0.1606827 -0.7388448 0.01434988 0.1606827 -0.7998369 0.01434988 0.1606827 -0.8636691 0.01434988 0.1606827 -0.9303782 0.01434988 0.1606827 -1 0.01434988 0.1606827 -0 0.02107202 0.1606827 -0.002418731 0.02107202 0.1606827 -0.005155668 0.02107202 0.1606827 -0.009080105 0.02107202 0.1606827 -0.01434988 0.02107202 0.1606827 -0.02107202 0.02107202 0.1606827 -0.02934285 0.02107202 0.1606827 -0.03925039 0.02107202 0.1606827 -0.05087609 0.02107202 0.1606827 -0.06429595 0.02107202 0.1606827 -0.07958143 0.02107202 0.1606827 -0.0968001 0.02107202 0.1606827 -0.1160161 0.02107202 0.1606827 -0.1372908 0.02107202 0.1606827 -0.1606827 0.02107202 0.1606827 -0.1862481 0.02107202 0.1606827 -0.2140411 0.02107202 0.1606827 -0.2441142 0.02107202 0.1606827 -0.2765176 0.02107202 0.1606827 -0.3113005 0.02107202 0.1606827 -0.3485102 0.02107202 0.1606827 -0.388193 0.02107202 0.1606827 -0.4303934 0.02107202 0.1606827 -0.4751555 0.02107202 0.1606827 -0.5225216 0.02107202 0.1606827 -0.5725335 0.02107202 0.1606827 -0.6252316 0.02107202 0.1606827 -0.6806558 0.02107202 0.1606827 -0.7388448 0.02107202 0.1606827 -0.7998369 0.02107202 0.1606827 -0.8636691 0.02107202 0.1606827 -0.9303782 0.02107202 0.1606827 -1 0.02107202 0.1606827 -0 0.02934285 0.1606827 -0.002418731 0.02934285 0.1606827 -0.005155668 0.02934285 0.1606827 -0.009080105 0.02934285 0.1606827 -0.01434988 0.02934285 0.1606827 -0.02107202 0.02934285 0.1606827 -0.02934285 0.02934285 0.1606827 -0.03925039 0.02934285 0.1606827 -0.05087609 0.02934285 0.1606827 -0.06429595 0.02934285 0.1606827 -0.07958143 0.02934285 0.1606827 -0.0968001 0.02934285 0.1606827 -0.1160161 0.02934285 0.1606827 -0.1372908 0.02934285 0.1606827 -0.1606827 0.02934285 0.1606827 -0.1862481 0.02934285 0.1606827 -0.2140411 0.02934285 0.1606827 -0.2441142 0.02934285 0.1606827 -0.2765176 0.02934285 0.1606827 -0.3113005 0.02934285 0.1606827 -0.3485102 0.02934285 0.1606827 -0.388193 0.02934285 0.1606827 -0.4303934 0.02934285 0.1606827 -0.4751555 0.02934285 0.1606827 -0.5225216 0.02934285 0.1606827 -0.5725335 0.02934285 0.1606827 -0.6252316 0.02934285 0.1606827 -0.6806558 0.02934285 0.1606827 -0.7388448 0.02934285 0.1606827 -0.7998369 0.02934285 0.1606827 -0.8636691 0.02934285 0.1606827 -0.9303782 0.02934285 0.1606827 -1 0.02934285 0.1606827 -0 0.03925039 0.1606827 -0.002418731 0.03925039 0.1606827 -0.005155668 0.03925039 0.1606827 -0.009080105 0.03925039 0.1606827 -0.01434988 0.03925039 0.1606827 -0.02107202 0.03925039 0.1606827 -0.02934285 0.03925039 0.1606827 -0.03925039 0.03925039 0.1606827 -0.05087609 0.03925039 0.1606827 -0.06429595 0.03925039 0.1606827 -0.07958143 0.03925039 0.1606827 -0.0968001 0.03925039 0.1606827 -0.1160161 0.03925039 0.1606827 -0.1372908 0.03925039 0.1606827 -0.1606827 0.03925039 0.1606827 -0.1862481 0.03925039 0.1606827 -0.2140411 0.03925039 0.1606827 -0.2441142 0.03925039 0.1606827 -0.2765176 0.03925039 0.1606827 -0.3113005 0.03925039 0.1606827 -0.3485102 0.03925039 0.1606827 -0.388193 0.03925039 0.1606827 -0.4303934 0.03925039 0.1606827 -0.4751555 0.03925039 0.1606827 -0.5225216 0.03925039 0.1606827 -0.5725335 0.03925039 0.1606827 -0.6252316 0.03925039 0.1606827 -0.6806558 0.03925039 0.1606827 -0.7388448 0.03925039 0.1606827 -0.7998369 0.03925039 0.1606827 -0.8636691 0.03925039 0.1606827 -0.9303782 0.03925039 0.1606827 -1 0.03925039 0.1606827 -0 0.05087609 0.1606827 -0.002418731 0.05087609 0.1606827 -0.005155668 0.05087609 0.1606827 -0.009080105 0.05087609 0.1606827 -0.01434988 0.05087609 0.1606827 -0.02107202 0.05087609 0.1606827 -0.02934285 0.05087609 0.1606827 -0.03925039 0.05087609 0.1606827 -0.05087609 0.05087609 0.1606827 -0.06429595 0.05087609 0.1606827 -0.07958143 0.05087609 0.1606827 -0.0968001 0.05087609 0.1606827 -0.1160161 0.05087609 0.1606827 -0.1372908 0.05087609 0.1606827 -0.1606827 0.05087609 0.1606827 -0.1862481 0.05087609 0.1606827 -0.2140411 0.05087609 0.1606827 -0.2441142 0.05087609 0.1606827 -0.2765176 0.05087609 0.1606827 -0.3113005 0.05087609 0.1606827 -0.3485102 0.05087609 0.1606827 -0.388193 0.05087609 0.1606827 -0.4303934 0.05087609 0.1606827 -0.4751555 0.05087609 0.1606827 -0.5225216 0.05087609 0.1606827 -0.5725335 0.05087609 0.1606827 -0.6252316 0.05087609 0.1606827 -0.6806558 0.05087609 0.1606827 -0.7388448 0.05087609 0.1606827 -0.7998369 0.05087609 0.1606827 -0.8636691 0.05087609 0.1606827 -0.9303782 0.05087609 0.1606827 -1 0.05087609 0.1606827 -0 0.06429595 0.1606827 -0.002418731 0.06429595 0.1606827 -0.005155668 0.06429595 0.1606827 -0.009080105 0.06429595 0.1606827 -0.01434988 0.06429595 0.1606827 -0.02107202 0.06429595 0.1606827 -0.02934285 0.06429595 0.1606827 -0.03925039 0.06429595 0.1606827 -0.05087609 0.06429595 0.1606827 -0.06429595 0.06429595 0.1606827 -0.07958143 0.06429595 0.1606827 -0.0968001 0.06429595 0.1606827 -0.1160161 0.06429595 0.1606827 -0.1372908 0.06429595 0.1606827 -0.1606827 0.06429595 0.1606827 -0.1862481 0.06429595 0.1606827 -0.2140411 0.06429595 0.1606827 -0.2441142 0.06429595 0.1606827 -0.2765176 0.06429595 0.1606827 -0.3113005 0.06429595 0.1606827 -0.3485102 0.06429595 0.1606827 -0.388193 0.06429595 0.1606827 -0.4303934 0.06429595 0.1606827 -0.4751555 0.06429595 0.1606827 -0.5225216 0.06429595 0.1606827 -0.5725335 0.06429595 0.1606827 -0.6252316 0.06429595 0.1606827 -0.6806558 0.06429595 0.1606827 -0.7388448 0.06429595 0.1606827 -0.7998369 0.06429595 0.1606827 -0.8636691 0.06429595 0.1606827 -0.9303782 0.06429595 0.1606827 -1 0.06429595 0.1606827 -0 0.07958143 0.1606827 -0.002418731 0.07958143 0.1606827 -0.005155668 0.07958143 0.1606827 -0.009080105 0.07958143 0.1606827 -0.01434988 0.07958143 0.1606827 -0.02107202 0.07958143 0.1606827 -0.02934285 0.07958143 0.1606827 -0.03925039 0.07958143 0.1606827 -0.05087609 0.07958143 0.1606827 -0.06429595 0.07958143 0.1606827 -0.07958143 0.07958143 0.1606827 -0.0968001 0.07958143 0.1606827 -0.1160161 0.07958143 0.1606827 -0.1372908 0.07958143 0.1606827 -0.1606827 0.07958143 0.1606827 -0.1862481 0.07958143 0.1606827 -0.2140411 0.07958143 0.1606827 -0.2441142 0.07958143 0.1606827 -0.2765176 0.07958143 0.1606827 -0.3113005 0.07958143 0.1606827 -0.3485102 0.07958143 0.1606827 -0.388193 0.07958143 0.1606827 -0.4303934 0.07958143 0.1606827 -0.4751555 0.07958143 0.1606827 -0.5225216 0.07958143 0.1606827 -0.5725335 0.07958143 0.1606827 -0.6252316 0.07958143 0.1606827 -0.6806558 0.07958143 0.1606827 -0.7388448 0.07958143 0.1606827 -0.7998369 0.07958143 0.1606827 -0.8636691 0.07958143 0.1606827 -0.9303782 0.07958143 0.1606827 -1 0.07958143 0.1606827 -0 0.0968001 0.1606827 -0.002418731 0.0968001 0.1606827 -0.005155668 0.0968001 0.1606827 -0.009080105 0.0968001 0.1606827 -0.01434988 0.0968001 0.1606827 -0.02107202 0.0968001 0.1606827 -0.02934285 0.0968001 0.1606827 -0.03925039 0.0968001 0.1606827 -0.05087609 0.0968001 0.1606827 -0.06429595 0.0968001 0.1606827 -0.07958143 0.0968001 0.1606827 -0.0968001 0.0968001 0.1606827 -0.1160161 0.0968001 0.1606827 -0.1372908 0.0968001 0.1606827 -0.1606827 0.0968001 0.1606827 -0.1862481 0.0968001 0.1606827 -0.2140411 0.0968001 0.1606827 -0.2441142 0.0968001 0.1606827 -0.2765176 0.0968001 0.1606827 -0.3113005 0.0968001 0.1606827 -0.3485102 0.0968001 0.1606827 -0.388193 0.0968001 0.1606827 -0.4303934 0.0968001 0.1606827 -0.4751555 0.0968001 0.1606827 -0.5225216 0.0968001 0.1606827 -0.5725335 0.0968001 0.1606827 -0.6252316 0.0968001 0.1606827 -0.6806558 0.0968001 0.1606827 -0.7388448 0.0968001 0.1606827 -0.7998369 0.0968001 0.1606827 -0.8636691 0.0968001 0.1606827 -0.9303782 0.0968001 0.1606827 -1 0.0968001 0.1606827 -0 0.1160161 0.1606827 -0.002418731 0.1160161 0.1606827 -0.005155668 0.1160161 0.1606827 -0.009080105 0.1160161 0.1606827 -0.01434988 0.1160161 0.1606827 -0.02107202 0.1160161 0.1606827 -0.02934285 0.1160161 0.1606827 -0.03925039 0.1160161 0.1606827 -0.05087609 0.1160161 0.1606827 -0.06429595 0.1160161 0.1606827 -0.07958143 0.1160161 0.1606827 -0.0968001 0.1160161 0.1606827 -0.1160161 0.1160161 0.1606827 -0.1372908 0.1160161 0.1606827 -0.1606827 0.1160161 0.1606827 -0.1862481 0.1160161 0.1606827 -0.2140411 0.1160161 0.1606827 -0.2441142 0.1160161 0.1606827 -0.2765176 0.1160161 0.1606827 -0.3113005 0.1160161 0.1606827 -0.3485102 0.1160161 0.1606827 -0.388193 0.1160161 0.1606827 -0.4303934 0.1160161 0.1606827 -0.4751555 0.1160161 0.1606827 -0.5225216 0.1160161 0.1606827 -0.5725335 0.1160161 0.1606827 -0.6252316 0.1160161 0.1606827 -0.6806558 0.1160161 0.1606827 -0.7388448 0.1160161 0.1606827 -0.7998369 0.1160161 0.1606827 -0.8636691 0.1160161 0.1606827 -0.9303782 0.1160161 0.1606827 -1 0.1160161 0.1606827 -0 0.1372908 0.1606827 -0.002418731 0.1372908 0.1606827 -0.005155668 0.1372908 0.1606827 -0.009080105 0.1372908 0.1606827 -0.01434988 0.1372908 0.1606827 -0.02107202 0.1372908 0.1606827 -0.02934285 0.1372908 0.1606827 -0.03925039 0.1372908 0.1606827 -0.05087609 0.1372908 0.1606827 -0.06429595 0.1372908 0.1606827 -0.07958143 0.1372908 0.1606827 -0.0968001 0.1372908 0.1606827 -0.1160161 0.1372908 0.1606827 -0.1372908 0.1372908 0.1606827 -0.1606827 0.1372908 0.1606827 -0.1862481 0.1372908 0.1606827 -0.2140411 0.1372908 0.1606827 -0.2441142 0.1372908 0.1606827 -0.2765176 0.1372908 0.1606827 -0.3113005 0.1372908 0.1606827 -0.3485102 0.1372908 0.1606827 -0.388193 0.1372908 0.1606827 -0.4303934 0.1372908 0.1606827 -0.4751555 0.1372908 0.1606827 -0.5225216 0.1372908 0.1606827 -0.5725335 0.1372908 0.1606827 -0.6252316 0.1372908 0.1606827 -0.6806558 0.1372908 0.1606827 -0.7388448 0.1372908 0.1606827 -0.7998369 0.1372908 0.1606827 -0.8636691 0.1372908 0.1606827 -0.9303782 0.1372908 0.1606827 -1 0.1372908 0.1606827 -0 0.1606827 0.1606827 -0.002418731 0.1606827 0.1606827 -0.005155668 0.1606827 0.1606827 -0.009080105 0.1606827 0.1606827 -0.01434988 0.1606827 0.1606827 -0.02107202 0.1606827 0.1606827 -0.02934285 0.1606827 0.1606827 -0.03925039 0.1606827 0.1606827 -0.05087609 0.1606827 0.1606827 -0.06429595 0.1606827 0.1606827 -0.07958143 0.1606827 0.1606827 -0.0968001 0.1606827 0.1606827 -0.1160161 0.1606827 0.1606827 -0.1372908 0.1606827 0.1606827 -0.1606827 0.1606827 0.1606827 -0.1862481 0.1606827 0.1606827 -0.2140411 0.1606827 0.1606827 -0.2441142 0.1606827 0.1606827 -0.2765176 0.1606827 0.1606827 -0.3113005 0.1606827 0.1606827 -0.3485102 0.1606827 0.1606827 -0.388193 0.1606827 0.1606827 -0.4303934 0.1606827 0.1606827 -0.4751555 0.1606827 0.1606827 -0.5225216 0.1606827 0.1606827 -0.5725335 0.1606827 0.1606827 -0.6252316 0.1606827 0.1606827 -0.6806558 0.1606827 0.1606827 -0.7388448 0.1606827 0.1606827 -0.7998369 0.1606827 0.1606827 -0.8636691 0.1606827 0.1606827 -0.9303782 0.1606827 0.1606827 -1 0.1606827 0.1606827 -0 0.1862481 0.1606827 -0.002418731 0.1862481 0.1606827 -0.005155668 0.1862481 0.1606827 -0.009080105 0.1862481 0.1606827 -0.01434988 0.1862481 0.1606827 -0.02107202 0.1862481 0.1606827 -0.02934285 0.1862481 0.1606827 -0.03925039 0.1862481 0.1606827 -0.05087609 0.1862481 0.1606827 -0.06429595 0.1862481 0.1606827 -0.07958143 0.1862481 0.1606827 -0.0968001 0.1862481 0.1606827 -0.1160161 0.1862481 0.1606827 -0.1372908 0.1862481 0.1606827 -0.1606827 0.1862481 0.1606827 -0.1862481 0.1862481 0.1606827 -0.2140411 0.1862481 0.1606827 -0.2441142 0.1862481 0.1606827 -0.2765176 0.1862481 0.1606827 -0.3113005 0.1862481 0.1606827 -0.3485102 0.1862481 0.1606827 -0.388193 0.1862481 0.1606827 -0.4303934 0.1862481 0.1606827 -0.4751555 0.1862481 0.1606827 -0.5225216 0.1862481 0.1606827 -0.5725335 0.1862481 0.1606827 -0.6252316 0.1862481 0.1606827 -0.6806558 0.1862481 0.1606827 -0.7388448 0.1862481 0.1606827 -0.7998369 0.1862481 0.1606827 -0.8636691 0.1862481 0.1606827 -0.9303782 0.1862481 0.1606827 -1 0.1862481 0.1606827 -0 0.2140411 0.1606827 -0.002418731 0.2140411 0.1606827 -0.005155668 0.2140411 0.1606827 -0.009080105 0.2140411 0.1606827 -0.01434988 0.2140411 0.1606827 -0.02107202 0.2140411 0.1606827 -0.02934285 0.2140411 0.1606827 -0.03925039 0.2140411 0.1606827 -0.05087609 0.2140411 0.1606827 -0.06429595 0.2140411 0.1606827 -0.07958143 0.2140411 0.1606827 -0.0968001 0.2140411 0.1606827 -0.1160161 0.2140411 0.1606827 -0.1372908 0.2140411 0.1606827 -0.1606827 0.2140411 0.1606827 -0.1862481 0.2140411 0.1606827 -0.2140411 0.2140411 0.1606827 -0.2441142 0.2140411 0.1606827 -0.2765176 0.2140411 0.1606827 -0.3113005 0.2140411 0.1606827 -0.3485102 0.2140411 0.1606827 -0.388193 0.2140411 0.1606827 -0.4303934 0.2140411 0.1606827 -0.4751555 0.2140411 0.1606827 -0.5225216 0.2140411 0.1606827 -0.5725335 0.2140411 0.1606827 -0.6252316 0.2140411 0.1606827 -0.6806558 0.2140411 0.1606827 -0.7388448 0.2140411 0.1606827 -0.7998369 0.2140411 0.1606827 -0.8636691 0.2140411 0.1606827 -0.9303782 0.2140411 0.1606827 -1 0.2140411 0.1606827 -0 0.2441142 0.1606827 -0.002418731 0.2441142 0.1606827 -0.005155668 0.2441142 0.1606827 -0.009080105 0.2441142 0.1606827 -0.01434988 0.2441142 0.1606827 -0.02107202 0.2441142 0.1606827 -0.02934285 0.2441142 0.1606827 -0.03925039 0.2441142 0.1606827 -0.05087609 0.2441142 0.1606827 -0.06429595 0.2441142 0.1606827 -0.07958143 0.2441142 0.1606827 -0.0968001 0.2441142 0.1606827 -0.1160161 0.2441142 0.1606827 -0.1372908 0.2441142 0.1606827 -0.1606827 0.2441142 0.1606827 -0.1862481 0.2441142 0.1606827 -0.2140411 0.2441142 0.1606827 -0.2441142 0.2441142 0.1606827 -0.2765176 0.2441142 0.1606827 -0.3113005 0.2441142 0.1606827 -0.3485102 0.2441142 0.1606827 -0.388193 0.2441142 0.1606827 -0.4303934 0.2441142 0.1606827 -0.4751555 0.2441142 0.1606827 -0.5225216 0.2441142 0.1606827 -0.5725335 0.2441142 0.1606827 -0.6252316 0.2441142 0.1606827 -0.6806558 0.2441142 0.1606827 -0.7388448 0.2441142 0.1606827 -0.7998369 0.2441142 0.1606827 -0.8636691 0.2441142 0.1606827 -0.9303782 0.2441142 0.1606827 -1 0.2441142 0.1606827 -0 0.2765176 0.1606827 -0.002418731 0.2765176 0.1606827 -0.005155668 0.2765176 0.1606827 -0.009080105 0.2765176 0.1606827 -0.01434988 0.2765176 0.1606827 -0.02107202 0.2765176 0.1606827 -0.02934285 0.2765176 0.1606827 -0.03925039 0.2765176 0.1606827 -0.05087609 0.2765176 0.1606827 -0.06429595 0.2765176 0.1606827 -0.07958143 0.2765176 0.1606827 -0.0968001 0.2765176 0.1606827 -0.1160161 0.2765176 0.1606827 -0.1372908 0.2765176 0.1606827 -0.1606827 0.2765176 0.1606827 -0.1862481 0.2765176 0.1606827 -0.2140411 0.2765176 0.1606827 -0.2441142 0.2765176 0.1606827 -0.2765176 0.2765176 0.1606827 -0.3113005 0.2765176 0.1606827 -0.3485102 0.2765176 0.1606827 -0.388193 0.2765176 0.1606827 -0.4303934 0.2765176 0.1606827 -0.4751555 0.2765176 0.1606827 -0.5225216 0.2765176 0.1606827 -0.5725335 0.2765176 0.1606827 -0.6252316 0.2765176 0.1606827 -0.6806558 0.2765176 0.1606827 -0.7388448 0.2765176 0.1606827 -0.7998369 0.2765176 0.1606827 -0.8636691 0.2765176 0.1606827 -0.9303782 0.2765176 0.1606827 -1 0.2765176 0.1606827 -0 0.3113005 0.1606827 -0.002418731 0.3113005 0.1606827 -0.005155668 0.3113005 0.1606827 -0.009080105 0.3113005 0.1606827 -0.01434988 0.3113005 0.1606827 -0.02107202 0.3113005 0.1606827 -0.02934285 0.3113005 0.1606827 -0.03925039 0.3113005 0.1606827 -0.05087609 0.3113005 0.1606827 -0.06429595 0.3113005 0.1606827 -0.07958143 0.3113005 0.1606827 -0.0968001 0.3113005 0.1606827 -0.1160161 0.3113005 0.1606827 -0.1372908 0.3113005 0.1606827 -0.1606827 0.3113005 0.1606827 -0.1862481 0.3113005 0.1606827 -0.2140411 0.3113005 0.1606827 -0.2441142 0.3113005 0.1606827 -0.2765176 0.3113005 0.1606827 -0.3113005 0.3113005 0.1606827 -0.3485102 0.3113005 0.1606827 -0.388193 0.3113005 0.1606827 -0.4303934 0.3113005 0.1606827 -0.4751555 0.3113005 0.1606827 -0.5225216 0.3113005 0.1606827 -0.5725335 0.3113005 0.1606827 -0.6252316 0.3113005 0.1606827 -0.6806558 0.3113005 0.1606827 -0.7388448 0.3113005 0.1606827 -0.7998369 0.3113005 0.1606827 -0.8636691 0.3113005 0.1606827 -0.9303782 0.3113005 0.1606827 -1 0.3113005 0.1606827 -0 0.3485102 0.1606827 -0.002418731 0.3485102 0.1606827 -0.005155668 0.3485102 0.1606827 -0.009080105 0.3485102 0.1606827 -0.01434988 0.3485102 0.1606827 -0.02107202 0.3485102 0.1606827 -0.02934285 0.3485102 0.1606827 -0.03925039 0.3485102 0.1606827 -0.05087609 0.3485102 0.1606827 -0.06429595 0.3485102 0.1606827 -0.07958143 0.3485102 0.1606827 -0.0968001 0.3485102 0.1606827 -0.1160161 0.3485102 0.1606827 -0.1372908 0.3485102 0.1606827 -0.1606827 0.3485102 0.1606827 -0.1862481 0.3485102 0.1606827 -0.2140411 0.3485102 0.1606827 -0.2441142 0.3485102 0.1606827 -0.2765176 0.3485102 0.1606827 -0.3113005 0.3485102 0.1606827 -0.3485102 0.3485102 0.1606827 -0.388193 0.3485102 0.1606827 -0.4303934 0.3485102 0.1606827 -0.4751555 0.3485102 0.1606827 -0.5225216 0.3485102 0.1606827 -0.5725335 0.3485102 0.1606827 -0.6252316 0.3485102 0.1606827 -0.6806558 0.3485102 0.1606827 -0.7388448 0.3485102 0.1606827 -0.7998369 0.3485102 0.1606827 -0.8636691 0.3485102 0.1606827 -0.9303782 0.3485102 0.1606827 -1 0.3485102 0.1606827 -0 0.388193 0.1606827 -0.002418731 0.388193 0.1606827 -0.005155668 0.388193 0.1606827 -0.009080105 0.388193 0.1606827 -0.01434988 0.388193 0.1606827 -0.02107202 0.388193 0.1606827 -0.02934285 0.388193 0.1606827 -0.03925039 0.388193 0.1606827 -0.05087609 0.388193 0.1606827 -0.06429595 0.388193 0.1606827 -0.07958143 0.388193 0.1606827 -0.0968001 0.388193 0.1606827 -0.1160161 0.388193 0.1606827 -0.1372908 0.388193 0.1606827 -0.1606827 0.388193 0.1606827 -0.1862481 0.388193 0.1606827 -0.2140411 0.388193 0.1606827 -0.2441142 0.388193 0.1606827 -0.2765176 0.388193 0.1606827 -0.3113005 0.388193 0.1606827 -0.3485102 0.388193 0.1606827 -0.388193 0.388193 0.1606827 -0.4303934 0.388193 0.1606827 -0.4751555 0.388193 0.1606827 -0.5225216 0.388193 0.1606827 -0.5725335 0.388193 0.1606827 -0.6252316 0.388193 0.1606827 -0.6806558 0.388193 0.1606827 -0.7388448 0.388193 0.1606827 -0.7998369 0.388193 0.1606827 -0.8636691 0.388193 0.1606827 -0.9303782 0.388193 0.1606827 -1 0.388193 0.1606827 -0 0.4303934 0.1606827 -0.002418731 0.4303934 0.1606827 -0.005155668 0.4303934 0.1606827 -0.009080105 0.4303934 0.1606827 -0.01434988 0.4303934 0.1606827 -0.02107202 0.4303934 0.1606827 -0.02934285 0.4303934 0.1606827 -0.03925039 0.4303934 0.1606827 -0.05087609 0.4303934 0.1606827 -0.06429595 0.4303934 0.1606827 -0.07958143 0.4303934 0.1606827 -0.0968001 0.4303934 0.1606827 -0.1160161 0.4303934 0.1606827 -0.1372908 0.4303934 0.1606827 -0.1606827 0.4303934 0.1606827 -0.1862481 0.4303934 0.1606827 -0.2140411 0.4303934 0.1606827 -0.2441142 0.4303934 0.1606827 -0.2765176 0.4303934 0.1606827 -0.3113005 0.4303934 0.1606827 -0.3485102 0.4303934 0.1606827 -0.388193 0.4303934 0.1606827 -0.4303934 0.4303934 0.1606827 -0.4751555 0.4303934 0.1606827 -0.5225216 0.4303934 0.1606827 -0.5725335 0.4303934 0.1606827 -0.6252316 0.4303934 0.1606827 -0.6806558 0.4303934 0.1606827 -0.7388448 0.4303934 0.1606827 -0.7998369 0.4303934 0.1606827 -0.8636691 0.4303934 0.1606827 -0.9303782 0.4303934 0.1606827 -1 0.4303934 0.1606827 -0 0.4751555 0.1606827 -0.002418731 0.4751555 0.1606827 -0.005155668 0.4751555 0.1606827 -0.009080105 0.4751555 0.1606827 -0.01434988 0.4751555 0.1606827 -0.02107202 0.4751555 0.1606827 -0.02934285 0.4751555 0.1606827 -0.03925039 0.4751555 0.1606827 -0.05087609 0.4751555 0.1606827 -0.06429595 0.4751555 0.1606827 -0.07958143 0.4751555 0.1606827 -0.0968001 0.4751555 0.1606827 -0.1160161 0.4751555 0.1606827 -0.1372908 0.4751555 0.1606827 -0.1606827 0.4751555 0.1606827 -0.1862481 0.4751555 0.1606827 -0.2140411 0.4751555 0.1606827 -0.2441142 0.4751555 0.1606827 -0.2765176 0.4751555 0.1606827 -0.3113005 0.4751555 0.1606827 -0.3485102 0.4751555 0.1606827 -0.388193 0.4751555 0.1606827 -0.4303934 0.4751555 0.1606827 -0.4751555 0.4751555 0.1606827 -0.5225216 0.4751555 0.1606827 -0.5725335 0.4751555 0.1606827 -0.6252316 0.4751555 0.1606827 -0.6806558 0.4751555 0.1606827 -0.7388448 0.4751555 0.1606827 -0.7998369 0.4751555 0.1606827 -0.8636691 0.4751555 0.1606827 -0.9303782 0.4751555 0.1606827 -1 0.4751555 0.1606827 -0 0.5225216 0.1606827 -0.002418731 0.5225216 0.1606827 -0.005155668 0.5225216 0.1606827 -0.009080105 0.5225216 0.1606827 -0.01434988 0.5225216 0.1606827 -0.02107202 0.5225216 0.1606827 -0.02934285 0.5225216 0.1606827 -0.03925039 0.5225216 0.1606827 -0.05087609 0.5225216 0.1606827 -0.06429595 0.5225216 0.1606827 -0.07958143 0.5225216 0.1606827 -0.0968001 0.5225216 0.1606827 -0.1160161 0.5225216 0.1606827 -0.1372908 0.5225216 0.1606827 -0.1606827 0.5225216 0.1606827 -0.1862481 0.5225216 0.1606827 -0.2140411 0.5225216 0.1606827 -0.2441142 0.5225216 0.1606827 -0.2765176 0.5225216 0.1606827 -0.3113005 0.5225216 0.1606827 -0.3485102 0.5225216 0.1606827 -0.388193 0.5225216 0.1606827 -0.4303934 0.5225216 0.1606827 -0.4751555 0.5225216 0.1606827 -0.5225216 0.5225216 0.1606827 -0.5725335 0.5225216 0.1606827 -0.6252316 0.5225216 0.1606827 -0.6806558 0.5225216 0.1606827 -0.7388448 0.5225216 0.1606827 -0.7998369 0.5225216 0.1606827 -0.8636691 0.5225216 0.1606827 -0.9303782 0.5225216 0.1606827 -1 0.5225216 0.1606827 -0 0.5725335 0.1606827 -0.002418731 0.5725335 0.1606827 -0.005155668 0.5725335 0.1606827 -0.009080105 0.5725335 0.1606827 -0.01434988 0.5725335 0.1606827 -0.02107202 0.5725335 0.1606827 -0.02934285 0.5725335 0.1606827 -0.03925039 0.5725335 0.1606827 -0.05087609 0.5725335 0.1606827 -0.06429595 0.5725335 0.1606827 -0.07958143 0.5725335 0.1606827 -0.0968001 0.5725335 0.1606827 -0.1160161 0.5725335 0.1606827 -0.1372908 0.5725335 0.1606827 -0.1606827 0.5725335 0.1606827 -0.1862481 0.5725335 0.1606827 -0.2140411 0.5725335 0.1606827 -0.2441142 0.5725335 0.1606827 -0.2765176 0.5725335 0.1606827 -0.3113005 0.5725335 0.1606827 -0.3485102 0.5725335 0.1606827 -0.388193 0.5725335 0.1606827 -0.4303934 0.5725335 0.1606827 -0.4751555 0.5725335 0.1606827 -0.5225216 0.5725335 0.1606827 -0.5725335 0.5725335 0.1606827 -0.6252316 0.5725335 0.1606827 -0.6806558 0.5725335 0.1606827 -0.7388448 0.5725335 0.1606827 -0.7998369 0.5725335 0.1606827 -0.8636691 0.5725335 0.1606827 -0.9303782 0.5725335 0.1606827 -1 0.5725335 0.1606827 -0 0.6252316 0.1606827 -0.002418731 0.6252316 0.1606827 -0.005155668 0.6252316 0.1606827 -0.009080105 0.6252316 0.1606827 -0.01434988 0.6252316 0.1606827 -0.02107202 0.6252316 0.1606827 -0.02934285 0.6252316 0.1606827 -0.03925039 0.6252316 0.1606827 -0.05087609 0.6252316 0.1606827 -0.06429595 0.6252316 0.1606827 -0.07958143 0.6252316 0.1606827 -0.0968001 0.6252316 0.1606827 -0.1160161 0.6252316 0.1606827 -0.1372908 0.6252316 0.1606827 -0.1606827 0.6252316 0.1606827 -0.1862481 0.6252316 0.1606827 -0.2140411 0.6252316 0.1606827 -0.2441142 0.6252316 0.1606827 -0.2765176 0.6252316 0.1606827 -0.3113005 0.6252316 0.1606827 -0.3485102 0.6252316 0.1606827 -0.388193 0.6252316 0.1606827 -0.4303934 0.6252316 0.1606827 -0.4751555 0.6252316 0.1606827 -0.5225216 0.6252316 0.1606827 -0.5725335 0.6252316 0.1606827 -0.6252316 0.6252316 0.1606827 -0.6806558 0.6252316 0.1606827 -0.7388448 0.6252316 0.1606827 -0.7998369 0.6252316 0.1606827 -0.8636691 0.6252316 0.1606827 -0.9303782 0.6252316 0.1606827 -1 0.6252316 0.1606827 -0 0.6806558 0.1606827 -0.002418731 0.6806558 0.1606827 -0.005155668 0.6806558 0.1606827 -0.009080105 0.6806558 0.1606827 -0.01434988 0.6806558 0.1606827 -0.02107202 0.6806558 0.1606827 -0.02934285 0.6806558 0.1606827 -0.03925039 0.6806558 0.1606827 -0.05087609 0.6806558 0.1606827 -0.06429595 0.6806558 0.1606827 -0.07958143 0.6806558 0.1606827 -0.0968001 0.6806558 0.1606827 -0.1160161 0.6806558 0.1606827 -0.1372908 0.6806558 0.1606827 -0.1606827 0.6806558 0.1606827 -0.1862481 0.6806558 0.1606827 -0.2140411 0.6806558 0.1606827 -0.2441142 0.6806558 0.1606827 -0.2765176 0.6806558 0.1606827 -0.3113005 0.6806558 0.1606827 -0.3485102 0.6806558 0.1606827 -0.388193 0.6806558 0.1606827 -0.4303934 0.6806558 0.1606827 -0.4751555 0.6806558 0.1606827 -0.5225216 0.6806558 0.1606827 -0.5725335 0.6806558 0.1606827 -0.6252316 0.6806558 0.1606827 -0.6806558 0.6806558 0.1606827 -0.7388448 0.6806558 0.1606827 -0.7998369 0.6806558 0.1606827 -0.8636691 0.6806558 0.1606827 -0.9303782 0.6806558 0.1606827 -1 0.6806558 0.1606827 -0 0.7388448 0.1606827 -0.002418731 0.7388448 0.1606827 -0.005155668 0.7388448 0.1606827 -0.009080105 0.7388448 0.1606827 -0.01434988 0.7388448 0.1606827 -0.02107202 0.7388448 0.1606827 -0.02934285 0.7388448 0.1606827 -0.03925039 0.7388448 0.1606827 -0.05087609 0.7388448 0.1606827 -0.06429595 0.7388448 0.1606827 -0.07958143 0.7388448 0.1606827 -0.0968001 0.7388448 0.1606827 -0.1160161 0.7388448 0.1606827 -0.1372908 0.7388448 0.1606827 -0.1606827 0.7388448 0.1606827 -0.1862481 0.7388448 0.1606827 -0.2140411 0.7388448 0.1606827 -0.2441142 0.7388448 0.1606827 -0.2765176 0.7388448 0.1606827 -0.3113005 0.7388448 0.1606827 -0.3485102 0.7388448 0.1606827 -0.388193 0.7388448 0.1606827 -0.4303934 0.7388448 0.1606827 -0.4751555 0.7388448 0.1606827 -0.5225216 0.7388448 0.1606827 -0.5725335 0.7388448 0.1606827 -0.6252316 0.7388448 0.1606827 -0.6806558 0.7388448 0.1606827 -0.7388448 0.7388448 0.1606827 -0.7998369 0.7388448 0.1606827 -0.8636691 0.7388448 0.1606827 -0.9303782 0.7388448 0.1606827 -1 0.7388448 0.1606827 -0 0.7998369 0.1606827 -0.002418731 0.7998369 0.1606827 -0.005155668 0.7998369 0.1606827 -0.009080105 0.7998369 0.1606827 -0.01434988 0.7998369 0.1606827 -0.02107202 0.7998369 0.1606827 -0.02934285 0.7998369 0.1606827 -0.03925039 0.7998369 0.1606827 -0.05087609 0.7998369 0.1606827 -0.06429595 0.7998369 0.1606827 -0.07958143 0.7998369 0.1606827 -0.0968001 0.7998369 0.1606827 -0.1160161 0.7998369 0.1606827 -0.1372908 0.7998369 0.1606827 -0.1606827 0.7998369 0.1606827 -0.1862481 0.7998369 0.1606827 -0.2140411 0.7998369 0.1606827 -0.2441142 0.7998369 0.1606827 -0.2765176 0.7998369 0.1606827 -0.3113005 0.7998369 0.1606827 -0.3485102 0.7998369 0.1606827 -0.388193 0.7998369 0.1606827 -0.4303934 0.7998369 0.1606827 -0.4751555 0.7998369 0.1606827 -0.5225216 0.7998369 0.1606827 -0.5725335 0.7998369 0.1606827 -0.6252316 0.7998369 0.1606827 -0.6806558 0.7998369 0.1606827 -0.7388448 0.7998369 0.1606827 -0.7998369 0.7998369 0.1606827 -0.8636691 0.7998369 0.1606827 -0.9303782 0.7998369 0.1606827 -1 0.7998369 0.1606827 -0 0.8636691 0.1606827 -0.002418731 0.8636691 0.1606827 -0.005155668 0.8636691 0.1606827 -0.009080105 0.8636691 0.1606827 -0.01434988 0.8636691 0.1606827 -0.02107202 0.8636691 0.1606827 -0.02934285 0.8636691 0.1606827 -0.03925039 0.8636691 0.1606827 -0.05087609 0.8636691 0.1606827 -0.06429595 0.8636691 0.1606827 -0.07958143 0.8636691 0.1606827 -0.0968001 0.8636691 0.1606827 -0.1160161 0.8636691 0.1606827 -0.1372908 0.8636691 0.1606827 -0.1606827 0.8636691 0.1606827 -0.1862481 0.8636691 0.1606827 -0.2140411 0.8636691 0.1606827 -0.2441142 0.8636691 0.1606827 -0.2765176 0.8636691 0.1606827 -0.3113005 0.8636691 0.1606827 -0.3485102 0.8636691 0.1606827 -0.388193 0.8636691 0.1606827 -0.4303934 0.8636691 0.1606827 -0.4751555 0.8636691 0.1606827 -0.5225216 0.8636691 0.1606827 -0.5725335 0.8636691 0.1606827 -0.6252316 0.8636691 0.1606827 -0.6806558 0.8636691 0.1606827 -0.7388448 0.8636691 0.1606827 -0.7998369 0.8636691 0.1606827 -0.8636691 0.8636691 0.1606827 -0.9303782 0.8636691 0.1606827 -1 0.8636691 0.1606827 -0 0.9303782 0.1606827 -0.002418731 0.9303782 0.1606827 -0.005155668 0.9303782 0.1606827 -0.009080105 0.9303782 0.1606827 -0.01434988 0.9303782 0.1606827 -0.02107202 0.9303782 0.1606827 -0.02934285 0.9303782 0.1606827 -0.03925039 0.9303782 0.1606827 -0.05087609 0.9303782 0.1606827 -0.06429595 0.9303782 0.1606827 -0.07958143 0.9303782 0.1606827 -0.0968001 0.9303782 0.1606827 -0.1160161 0.9303782 0.1606827 -0.1372908 0.9303782 0.1606827 -0.1606827 0.9303782 0.1606827 -0.1862481 0.9303782 0.1606827 -0.2140411 0.9303782 0.1606827 -0.2441142 0.9303782 0.1606827 -0.2765176 0.9303782 0.1606827 -0.3113005 0.9303782 0.1606827 -0.3485102 0.9303782 0.1606827 -0.388193 0.9303782 0.1606827 -0.4303934 0.9303782 0.1606827 -0.4751555 0.9303782 0.1606827 -0.5225216 0.9303782 0.1606827 -0.5725335 0.9303782 0.1606827 -0.6252316 0.9303782 0.1606827 -0.6806558 0.9303782 0.1606827 -0.7388448 0.9303782 0.1606827 -0.7998369 0.9303782 0.1606827 -0.8636691 0.9303782 0.1606827 -0.9303782 0.9303782 0.1606827 -1 0.9303782 0.1606827 -0 1 0.1606827 -0.002418731 1 0.1606827 -0.005155668 1 0.1606827 -0.009080105 1 0.1606827 -0.01434988 1 0.1606827 -0.02107202 1 0.1606827 -0.02934285 1 0.1606827 -0.03925039 1 0.1606827 -0.05087609 1 0.1606827 -0.06429595 1 0.1606827 -0.07958143 1 0.1606827 -0.0968001 1 0.1606827 -0.1160161 1 0.1606827 -0.1372908 1 0.1606827 -0.1606827 1 0.1606827 -0.1862481 1 0.1606827 -0.2140411 1 0.1606827 -0.2441142 1 0.1606827 -0.2765176 1 0.1606827 -0.3113005 1 0.1606827 -0.3485102 1 0.1606827 -0.388193 1 0.1606827 -0.4303934 1 0.1606827 -0.4751555 1 0.1606827 -0.5225216 1 0.1606827 -0.5725335 1 0.1606827 -0.6252316 1 0.1606827 -0.6806558 1 0.1606827 -0.7388448 1 0.1606827 -0.7998369 1 0.1606827 -0.8636691 1 0.1606827 -0.9303782 1 0.1606827 -1 1 0.1606827 -0 0 0.1862481 -0.002418731 0 0.1862481 -0.005155668 0 0.1862481 -0.009080105 0 0.1862481 -0.01434988 0 0.1862481 -0.02107202 0 0.1862481 -0.02934285 0 0.1862481 -0.03925039 0 0.1862481 -0.05087609 0 0.1862481 -0.06429595 0 0.1862481 -0.07958143 0 0.1862481 -0.0968001 0 0.1862481 -0.1160161 0 0.1862481 -0.1372908 0 0.1862481 -0.1606827 0 0.1862481 -0.1862481 0 0.1862481 -0.2140411 0 0.1862481 -0.2441142 0 0.1862481 -0.2765176 0 0.1862481 -0.3113005 0 0.1862481 -0.3485102 0 0.1862481 -0.388193 0 0.1862481 -0.4303934 0 0.1862481 -0.4751555 0 0.1862481 -0.5225216 0 0.1862481 -0.5725335 0 0.1862481 -0.6252316 0 0.1862481 -0.6806558 0 0.1862481 -0.7388448 0 0.1862481 -0.7998369 0 0.1862481 -0.8636691 0 0.1862481 -0.9303782 0 0.1862481 -1 0 0.1862481 -0 0.002418731 0.1862481 -0.002418731 0.002418731 0.1862481 -0.005155668 0.002418731 0.1862481 -0.009080105 0.002418731 0.1862481 -0.01434988 0.002418731 0.1862481 -0.02107202 0.002418731 0.1862481 -0.02934285 0.002418731 0.1862481 -0.03925039 0.002418731 0.1862481 -0.05087609 0.002418731 0.1862481 -0.06429595 0.002418731 0.1862481 -0.07958143 0.002418731 0.1862481 -0.0968001 0.002418731 0.1862481 -0.1160161 0.002418731 0.1862481 -0.1372908 0.002418731 0.1862481 -0.1606827 0.002418731 0.1862481 -0.1862481 0.002418731 0.1862481 -0.2140411 0.002418731 0.1862481 -0.2441142 0.002418731 0.1862481 -0.2765176 0.002418731 0.1862481 -0.3113005 0.002418731 0.1862481 -0.3485102 0.002418731 0.1862481 -0.388193 0.002418731 0.1862481 -0.4303934 0.002418731 0.1862481 -0.4751555 0.002418731 0.1862481 -0.5225216 0.002418731 0.1862481 -0.5725335 0.002418731 0.1862481 -0.6252316 0.002418731 0.1862481 -0.6806558 0.002418731 0.1862481 -0.7388448 0.002418731 0.1862481 -0.7998369 0.002418731 0.1862481 -0.8636691 0.002418731 0.1862481 -0.9303782 0.002418731 0.1862481 -1 0.002418731 0.1862481 -0 0.005155668 0.1862481 -0.002418731 0.005155668 0.1862481 -0.005155668 0.005155668 0.1862481 -0.009080105 0.005155668 0.1862481 -0.01434988 0.005155668 0.1862481 -0.02107202 0.005155668 0.1862481 -0.02934285 0.005155668 0.1862481 -0.03925039 0.005155668 0.1862481 -0.05087609 0.005155668 0.1862481 -0.06429595 0.005155668 0.1862481 -0.07958143 0.005155668 0.1862481 -0.0968001 0.005155668 0.1862481 -0.1160161 0.005155668 0.1862481 -0.1372908 0.005155668 0.1862481 -0.1606827 0.005155668 0.1862481 -0.1862481 0.005155668 0.1862481 -0.2140411 0.005155668 0.1862481 -0.2441142 0.005155668 0.1862481 -0.2765176 0.005155668 0.1862481 -0.3113005 0.005155668 0.1862481 -0.3485102 0.005155668 0.1862481 -0.388193 0.005155668 0.1862481 -0.4303934 0.005155668 0.1862481 -0.4751555 0.005155668 0.1862481 -0.5225216 0.005155668 0.1862481 -0.5725335 0.005155668 0.1862481 -0.6252316 0.005155668 0.1862481 -0.6806558 0.005155668 0.1862481 -0.7388448 0.005155668 0.1862481 -0.7998369 0.005155668 0.1862481 -0.8636691 0.005155668 0.1862481 -0.9303782 0.005155668 0.1862481 -1 0.005155668 0.1862481 -0 0.009080105 0.1862481 -0.002418731 0.009080105 0.1862481 -0.005155668 0.009080105 0.1862481 -0.009080105 0.009080105 0.1862481 -0.01434988 0.009080105 0.1862481 -0.02107202 0.009080105 0.1862481 -0.02934285 0.009080105 0.1862481 -0.03925039 0.009080105 0.1862481 -0.05087609 0.009080105 0.1862481 -0.06429595 0.009080105 0.1862481 -0.07958143 0.009080105 0.1862481 -0.0968001 0.009080105 0.1862481 -0.1160161 0.009080105 0.1862481 -0.1372908 0.009080105 0.1862481 -0.1606827 0.009080105 0.1862481 -0.1862481 0.009080105 0.1862481 -0.2140411 0.009080105 0.1862481 -0.2441142 0.009080105 0.1862481 -0.2765176 0.009080105 0.1862481 -0.3113005 0.009080105 0.1862481 -0.3485102 0.009080105 0.1862481 -0.388193 0.009080105 0.1862481 -0.4303934 0.009080105 0.1862481 -0.4751555 0.009080105 0.1862481 -0.5225216 0.009080105 0.1862481 -0.5725335 0.009080105 0.1862481 -0.6252316 0.009080105 0.1862481 -0.6806558 0.009080105 0.1862481 -0.7388448 0.009080105 0.1862481 -0.7998369 0.009080105 0.1862481 -0.8636691 0.009080105 0.1862481 -0.9303782 0.009080105 0.1862481 -1 0.009080105 0.1862481 -0 0.01434988 0.1862481 -0.002418731 0.01434988 0.1862481 -0.005155668 0.01434988 0.1862481 -0.009080105 0.01434988 0.1862481 -0.01434988 0.01434988 0.1862481 -0.02107202 0.01434988 0.1862481 -0.02934285 0.01434988 0.1862481 -0.03925039 0.01434988 0.1862481 -0.05087609 0.01434988 0.1862481 -0.06429595 0.01434988 0.1862481 -0.07958143 0.01434988 0.1862481 -0.0968001 0.01434988 0.1862481 -0.1160161 0.01434988 0.1862481 -0.1372908 0.01434988 0.1862481 -0.1606827 0.01434988 0.1862481 -0.1862481 0.01434988 0.1862481 -0.2140411 0.01434988 0.1862481 -0.2441142 0.01434988 0.1862481 -0.2765176 0.01434988 0.1862481 -0.3113005 0.01434988 0.1862481 -0.3485102 0.01434988 0.1862481 -0.388193 0.01434988 0.1862481 -0.4303934 0.01434988 0.1862481 -0.4751555 0.01434988 0.1862481 -0.5225216 0.01434988 0.1862481 -0.5725335 0.01434988 0.1862481 -0.6252316 0.01434988 0.1862481 -0.6806558 0.01434988 0.1862481 -0.7388448 0.01434988 0.1862481 -0.7998369 0.01434988 0.1862481 -0.8636691 0.01434988 0.1862481 -0.9303782 0.01434988 0.1862481 -1 0.01434988 0.1862481 -0 0.02107202 0.1862481 -0.002418731 0.02107202 0.1862481 -0.005155668 0.02107202 0.1862481 -0.009080105 0.02107202 0.1862481 -0.01434988 0.02107202 0.1862481 -0.02107202 0.02107202 0.1862481 -0.02934285 0.02107202 0.1862481 -0.03925039 0.02107202 0.1862481 -0.05087609 0.02107202 0.1862481 -0.06429595 0.02107202 0.1862481 -0.07958143 0.02107202 0.1862481 -0.0968001 0.02107202 0.1862481 -0.1160161 0.02107202 0.1862481 -0.1372908 0.02107202 0.1862481 -0.1606827 0.02107202 0.1862481 -0.1862481 0.02107202 0.1862481 -0.2140411 0.02107202 0.1862481 -0.2441142 0.02107202 0.1862481 -0.2765176 0.02107202 0.1862481 -0.3113005 0.02107202 0.1862481 -0.3485102 0.02107202 0.1862481 -0.388193 0.02107202 0.1862481 -0.4303934 0.02107202 0.1862481 -0.4751555 0.02107202 0.1862481 -0.5225216 0.02107202 0.1862481 -0.5725335 0.02107202 0.1862481 -0.6252316 0.02107202 0.1862481 -0.6806558 0.02107202 0.1862481 -0.7388448 0.02107202 0.1862481 -0.7998369 0.02107202 0.1862481 -0.8636691 0.02107202 0.1862481 -0.9303782 0.02107202 0.1862481 -1 0.02107202 0.1862481 -0 0.02934285 0.1862481 -0.002418731 0.02934285 0.1862481 -0.005155668 0.02934285 0.1862481 -0.009080105 0.02934285 0.1862481 -0.01434988 0.02934285 0.1862481 -0.02107202 0.02934285 0.1862481 -0.02934285 0.02934285 0.1862481 -0.03925039 0.02934285 0.1862481 -0.05087609 0.02934285 0.1862481 -0.06429595 0.02934285 0.1862481 -0.07958143 0.02934285 0.1862481 -0.0968001 0.02934285 0.1862481 -0.1160161 0.02934285 0.1862481 -0.1372908 0.02934285 0.1862481 -0.1606827 0.02934285 0.1862481 -0.1862481 0.02934285 0.1862481 -0.2140411 0.02934285 0.1862481 -0.2441142 0.02934285 0.1862481 -0.2765176 0.02934285 0.1862481 -0.3113005 0.02934285 0.1862481 -0.3485102 0.02934285 0.1862481 -0.388193 0.02934285 0.1862481 -0.4303934 0.02934285 0.1862481 -0.4751555 0.02934285 0.1862481 -0.5225216 0.02934285 0.1862481 -0.5725335 0.02934285 0.1862481 -0.6252316 0.02934285 0.1862481 -0.6806558 0.02934285 0.1862481 -0.7388448 0.02934285 0.1862481 -0.7998369 0.02934285 0.1862481 -0.8636691 0.02934285 0.1862481 -0.9303782 0.02934285 0.1862481 -1 0.02934285 0.1862481 -0 0.03925039 0.1862481 -0.002418731 0.03925039 0.1862481 -0.005155668 0.03925039 0.1862481 -0.009080105 0.03925039 0.1862481 -0.01434988 0.03925039 0.1862481 -0.02107202 0.03925039 0.1862481 -0.02934285 0.03925039 0.1862481 -0.03925039 0.03925039 0.1862481 -0.05087609 0.03925039 0.1862481 -0.06429595 0.03925039 0.1862481 -0.07958143 0.03925039 0.1862481 -0.0968001 0.03925039 0.1862481 -0.1160161 0.03925039 0.1862481 -0.1372908 0.03925039 0.1862481 -0.1606827 0.03925039 0.1862481 -0.1862481 0.03925039 0.1862481 -0.2140411 0.03925039 0.1862481 -0.2441142 0.03925039 0.1862481 -0.2765176 0.03925039 0.1862481 -0.3113005 0.03925039 0.1862481 -0.3485102 0.03925039 0.1862481 -0.388193 0.03925039 0.1862481 -0.4303934 0.03925039 0.1862481 -0.4751555 0.03925039 0.1862481 -0.5225216 0.03925039 0.1862481 -0.5725335 0.03925039 0.1862481 -0.6252316 0.03925039 0.1862481 -0.6806558 0.03925039 0.1862481 -0.7388448 0.03925039 0.1862481 -0.7998369 0.03925039 0.1862481 -0.8636691 0.03925039 0.1862481 -0.9303782 0.03925039 0.1862481 -1 0.03925039 0.1862481 -0 0.05087609 0.1862481 -0.002418731 0.05087609 0.1862481 -0.005155668 0.05087609 0.1862481 -0.009080105 0.05087609 0.1862481 -0.01434988 0.05087609 0.1862481 -0.02107202 0.05087609 0.1862481 -0.02934285 0.05087609 0.1862481 -0.03925039 0.05087609 0.1862481 -0.05087609 0.05087609 0.1862481 -0.06429595 0.05087609 0.1862481 -0.07958143 0.05087609 0.1862481 -0.0968001 0.05087609 0.1862481 -0.1160161 0.05087609 0.1862481 -0.1372908 0.05087609 0.1862481 -0.1606827 0.05087609 0.1862481 -0.1862481 0.05087609 0.1862481 -0.2140411 0.05087609 0.1862481 -0.2441142 0.05087609 0.1862481 -0.2765176 0.05087609 0.1862481 -0.3113005 0.05087609 0.1862481 -0.3485102 0.05087609 0.1862481 -0.388193 0.05087609 0.1862481 -0.4303934 0.05087609 0.1862481 -0.4751555 0.05087609 0.1862481 -0.5225216 0.05087609 0.1862481 -0.5725335 0.05087609 0.1862481 -0.6252316 0.05087609 0.1862481 -0.6806558 0.05087609 0.1862481 -0.7388448 0.05087609 0.1862481 -0.7998369 0.05087609 0.1862481 -0.8636691 0.05087609 0.1862481 -0.9303782 0.05087609 0.1862481 -1 0.05087609 0.1862481 -0 0.06429595 0.1862481 -0.002418731 0.06429595 0.1862481 -0.005155668 0.06429595 0.1862481 -0.009080105 0.06429595 0.1862481 -0.01434988 0.06429595 0.1862481 -0.02107202 0.06429595 0.1862481 -0.02934285 0.06429595 0.1862481 -0.03925039 0.06429595 0.1862481 -0.05087609 0.06429595 0.1862481 -0.06429595 0.06429595 0.1862481 -0.07958143 0.06429595 0.1862481 -0.0968001 0.06429595 0.1862481 -0.1160161 0.06429595 0.1862481 -0.1372908 0.06429595 0.1862481 -0.1606827 0.06429595 0.1862481 -0.1862481 0.06429595 0.1862481 -0.2140411 0.06429595 0.1862481 -0.2441142 0.06429595 0.1862481 -0.2765176 0.06429595 0.1862481 -0.3113005 0.06429595 0.1862481 -0.3485102 0.06429595 0.1862481 -0.388193 0.06429595 0.1862481 -0.4303934 0.06429595 0.1862481 -0.4751555 0.06429595 0.1862481 -0.5225216 0.06429595 0.1862481 -0.5725335 0.06429595 0.1862481 -0.6252316 0.06429595 0.1862481 -0.6806558 0.06429595 0.1862481 -0.7388448 0.06429595 0.1862481 -0.7998369 0.06429595 0.1862481 -0.8636691 0.06429595 0.1862481 -0.9303782 0.06429595 0.1862481 -1 0.06429595 0.1862481 -0 0.07958143 0.1862481 -0.002418731 0.07958143 0.1862481 -0.005155668 0.07958143 0.1862481 -0.009080105 0.07958143 0.1862481 -0.01434988 0.07958143 0.1862481 -0.02107202 0.07958143 0.1862481 -0.02934285 0.07958143 0.1862481 -0.03925039 0.07958143 0.1862481 -0.05087609 0.07958143 0.1862481 -0.06429595 0.07958143 0.1862481 -0.07958143 0.07958143 0.1862481 -0.0968001 0.07958143 0.1862481 -0.1160161 0.07958143 0.1862481 -0.1372908 0.07958143 0.1862481 -0.1606827 0.07958143 0.1862481 -0.1862481 0.07958143 0.1862481 -0.2140411 0.07958143 0.1862481 -0.2441142 0.07958143 0.1862481 -0.2765176 0.07958143 0.1862481 -0.3113005 0.07958143 0.1862481 -0.3485102 0.07958143 0.1862481 -0.388193 0.07958143 0.1862481 -0.4303934 0.07958143 0.1862481 -0.4751555 0.07958143 0.1862481 -0.5225216 0.07958143 0.1862481 -0.5725335 0.07958143 0.1862481 -0.6252316 0.07958143 0.1862481 -0.6806558 0.07958143 0.1862481 -0.7388448 0.07958143 0.1862481 -0.7998369 0.07958143 0.1862481 -0.8636691 0.07958143 0.1862481 -0.9303782 0.07958143 0.1862481 -1 0.07958143 0.1862481 -0 0.0968001 0.1862481 -0.002418731 0.0968001 0.1862481 -0.005155668 0.0968001 0.1862481 -0.009080105 0.0968001 0.1862481 -0.01434988 0.0968001 0.1862481 -0.02107202 0.0968001 0.1862481 -0.02934285 0.0968001 0.1862481 -0.03925039 0.0968001 0.1862481 -0.05087609 0.0968001 0.1862481 -0.06429595 0.0968001 0.1862481 -0.07958143 0.0968001 0.1862481 -0.0968001 0.0968001 0.1862481 -0.1160161 0.0968001 0.1862481 -0.1372908 0.0968001 0.1862481 -0.1606827 0.0968001 0.1862481 -0.1862481 0.0968001 0.1862481 -0.2140411 0.0968001 0.1862481 -0.2441142 0.0968001 0.1862481 -0.2765176 0.0968001 0.1862481 -0.3113005 0.0968001 0.1862481 -0.3485102 0.0968001 0.1862481 -0.388193 0.0968001 0.1862481 -0.4303934 0.0968001 0.1862481 -0.4751555 0.0968001 0.1862481 -0.5225216 0.0968001 0.1862481 -0.5725335 0.0968001 0.1862481 -0.6252316 0.0968001 0.1862481 -0.6806558 0.0968001 0.1862481 -0.7388448 0.0968001 0.1862481 -0.7998369 0.0968001 0.1862481 -0.8636691 0.0968001 0.1862481 -0.9303782 0.0968001 0.1862481 -1 0.0968001 0.1862481 -0 0.1160161 0.1862481 -0.002418731 0.1160161 0.1862481 -0.005155668 0.1160161 0.1862481 -0.009080105 0.1160161 0.1862481 -0.01434988 0.1160161 0.1862481 -0.02107202 0.1160161 0.1862481 -0.02934285 0.1160161 0.1862481 -0.03925039 0.1160161 0.1862481 -0.05087609 0.1160161 0.1862481 -0.06429595 0.1160161 0.1862481 -0.07958143 0.1160161 0.1862481 -0.0968001 0.1160161 0.1862481 -0.1160161 0.1160161 0.1862481 -0.1372908 0.1160161 0.1862481 -0.1606827 0.1160161 0.1862481 -0.1862481 0.1160161 0.1862481 -0.2140411 0.1160161 0.1862481 -0.2441142 0.1160161 0.1862481 -0.2765176 0.1160161 0.1862481 -0.3113005 0.1160161 0.1862481 -0.3485102 0.1160161 0.1862481 -0.388193 0.1160161 0.1862481 -0.4303934 0.1160161 0.1862481 -0.4751555 0.1160161 0.1862481 -0.5225216 0.1160161 0.1862481 -0.5725335 0.1160161 0.1862481 -0.6252316 0.1160161 0.1862481 -0.6806558 0.1160161 0.1862481 -0.7388448 0.1160161 0.1862481 -0.7998369 0.1160161 0.1862481 -0.8636691 0.1160161 0.1862481 -0.9303782 0.1160161 0.1862481 -1 0.1160161 0.1862481 -0 0.1372908 0.1862481 -0.002418731 0.1372908 0.1862481 -0.005155668 0.1372908 0.1862481 -0.009080105 0.1372908 0.1862481 -0.01434988 0.1372908 0.1862481 -0.02107202 0.1372908 0.1862481 -0.02934285 0.1372908 0.1862481 -0.03925039 0.1372908 0.1862481 -0.05087609 0.1372908 0.1862481 -0.06429595 0.1372908 0.1862481 -0.07958143 0.1372908 0.1862481 -0.0968001 0.1372908 0.1862481 -0.1160161 0.1372908 0.1862481 -0.1372908 0.1372908 0.1862481 -0.1606827 0.1372908 0.1862481 -0.1862481 0.1372908 0.1862481 -0.2140411 0.1372908 0.1862481 -0.2441142 0.1372908 0.1862481 -0.2765176 0.1372908 0.1862481 -0.3113005 0.1372908 0.1862481 -0.3485102 0.1372908 0.1862481 -0.388193 0.1372908 0.1862481 -0.4303934 0.1372908 0.1862481 -0.4751555 0.1372908 0.1862481 -0.5225216 0.1372908 0.1862481 -0.5725335 0.1372908 0.1862481 -0.6252316 0.1372908 0.1862481 -0.6806558 0.1372908 0.1862481 -0.7388448 0.1372908 0.1862481 -0.7998369 0.1372908 0.1862481 -0.8636691 0.1372908 0.1862481 -0.9303782 0.1372908 0.1862481 -1 0.1372908 0.1862481 -0 0.1606827 0.1862481 -0.002418731 0.1606827 0.1862481 -0.005155668 0.1606827 0.1862481 -0.009080105 0.1606827 0.1862481 -0.01434988 0.1606827 0.1862481 -0.02107202 0.1606827 0.1862481 -0.02934285 0.1606827 0.1862481 -0.03925039 0.1606827 0.1862481 -0.05087609 0.1606827 0.1862481 -0.06429595 0.1606827 0.1862481 -0.07958143 0.1606827 0.1862481 -0.0968001 0.1606827 0.1862481 -0.1160161 0.1606827 0.1862481 -0.1372908 0.1606827 0.1862481 -0.1606827 0.1606827 0.1862481 -0.1862481 0.1606827 0.1862481 -0.2140411 0.1606827 0.1862481 -0.2441142 0.1606827 0.1862481 -0.2765176 0.1606827 0.1862481 -0.3113005 0.1606827 0.1862481 -0.3485102 0.1606827 0.1862481 -0.388193 0.1606827 0.1862481 -0.4303934 0.1606827 0.1862481 -0.4751555 0.1606827 0.1862481 -0.5225216 0.1606827 0.1862481 -0.5725335 0.1606827 0.1862481 -0.6252316 0.1606827 0.1862481 -0.6806558 0.1606827 0.1862481 -0.7388448 0.1606827 0.1862481 -0.7998369 0.1606827 0.1862481 -0.8636691 0.1606827 0.1862481 -0.9303782 0.1606827 0.1862481 -1 0.1606827 0.1862481 -0 0.1862481 0.1862481 -0.002418731 0.1862481 0.1862481 -0.005155668 0.1862481 0.1862481 -0.009080105 0.1862481 0.1862481 -0.01434988 0.1862481 0.1862481 -0.02107202 0.1862481 0.1862481 -0.02934285 0.1862481 0.1862481 -0.03925039 0.1862481 0.1862481 -0.05087609 0.1862481 0.1862481 -0.06429595 0.1862481 0.1862481 -0.07958143 0.1862481 0.1862481 -0.0968001 0.1862481 0.1862481 -0.1160161 0.1862481 0.1862481 -0.1372908 0.1862481 0.1862481 -0.1606827 0.1862481 0.1862481 -0.1862481 0.1862481 0.1862481 -0.2140411 0.1862481 0.1862481 -0.2441142 0.1862481 0.1862481 -0.2765176 0.1862481 0.1862481 -0.3113005 0.1862481 0.1862481 -0.3485102 0.1862481 0.1862481 -0.388193 0.1862481 0.1862481 -0.4303934 0.1862481 0.1862481 -0.4751555 0.1862481 0.1862481 -0.5225216 0.1862481 0.1862481 -0.5725335 0.1862481 0.1862481 -0.6252316 0.1862481 0.1862481 -0.6806558 0.1862481 0.1862481 -0.7388448 0.1862481 0.1862481 -0.7998369 0.1862481 0.1862481 -0.8636691 0.1862481 0.1862481 -0.9303782 0.1862481 0.1862481 -1 0.1862481 0.1862481 -0 0.2140411 0.1862481 -0.002418731 0.2140411 0.1862481 -0.005155668 0.2140411 0.1862481 -0.009080105 0.2140411 0.1862481 -0.01434988 0.2140411 0.1862481 -0.02107202 0.2140411 0.1862481 -0.02934285 0.2140411 0.1862481 -0.03925039 0.2140411 0.1862481 -0.05087609 0.2140411 0.1862481 -0.06429595 0.2140411 0.1862481 -0.07958143 0.2140411 0.1862481 -0.0968001 0.2140411 0.1862481 -0.1160161 0.2140411 0.1862481 -0.1372908 0.2140411 0.1862481 -0.1606827 0.2140411 0.1862481 -0.1862481 0.2140411 0.1862481 -0.2140411 0.2140411 0.1862481 -0.2441142 0.2140411 0.1862481 -0.2765176 0.2140411 0.1862481 -0.3113005 0.2140411 0.1862481 -0.3485102 0.2140411 0.1862481 -0.388193 0.2140411 0.1862481 -0.4303934 0.2140411 0.1862481 -0.4751555 0.2140411 0.1862481 -0.5225216 0.2140411 0.1862481 -0.5725335 0.2140411 0.1862481 -0.6252316 0.2140411 0.1862481 -0.6806558 0.2140411 0.1862481 -0.7388448 0.2140411 0.1862481 -0.7998369 0.2140411 0.1862481 -0.8636691 0.2140411 0.1862481 -0.9303782 0.2140411 0.1862481 -1 0.2140411 0.1862481 -0 0.2441142 0.1862481 -0.002418731 0.2441142 0.1862481 -0.005155668 0.2441142 0.1862481 -0.009080105 0.2441142 0.1862481 -0.01434988 0.2441142 0.1862481 -0.02107202 0.2441142 0.1862481 -0.02934285 0.2441142 0.1862481 -0.03925039 0.2441142 0.1862481 -0.05087609 0.2441142 0.1862481 -0.06429595 0.2441142 0.1862481 -0.07958143 0.2441142 0.1862481 -0.0968001 0.2441142 0.1862481 -0.1160161 0.2441142 0.1862481 -0.1372908 0.2441142 0.1862481 -0.1606827 0.2441142 0.1862481 -0.1862481 0.2441142 0.1862481 -0.2140411 0.2441142 0.1862481 -0.2441142 0.2441142 0.1862481 -0.2765176 0.2441142 0.1862481 -0.3113005 0.2441142 0.1862481 -0.3485102 0.2441142 0.1862481 -0.388193 0.2441142 0.1862481 -0.4303934 0.2441142 0.1862481 -0.4751555 0.2441142 0.1862481 -0.5225216 0.2441142 0.1862481 -0.5725335 0.2441142 0.1862481 -0.6252316 0.2441142 0.1862481 -0.6806558 0.2441142 0.1862481 -0.7388448 0.2441142 0.1862481 -0.7998369 0.2441142 0.1862481 -0.8636691 0.2441142 0.1862481 -0.9303782 0.2441142 0.1862481 -1 0.2441142 0.1862481 -0 0.2765176 0.1862481 -0.002418731 0.2765176 0.1862481 -0.005155668 0.2765176 0.1862481 -0.009080105 0.2765176 0.1862481 -0.01434988 0.2765176 0.1862481 -0.02107202 0.2765176 0.1862481 -0.02934285 0.2765176 0.1862481 -0.03925039 0.2765176 0.1862481 -0.05087609 0.2765176 0.1862481 -0.06429595 0.2765176 0.1862481 -0.07958143 0.2765176 0.1862481 -0.0968001 0.2765176 0.1862481 -0.1160161 0.2765176 0.1862481 -0.1372908 0.2765176 0.1862481 -0.1606827 0.2765176 0.1862481 -0.1862481 0.2765176 0.1862481 -0.2140411 0.2765176 0.1862481 -0.2441142 0.2765176 0.1862481 -0.2765176 0.2765176 0.1862481 -0.3113005 0.2765176 0.1862481 -0.3485102 0.2765176 0.1862481 -0.388193 0.2765176 0.1862481 -0.4303934 0.2765176 0.1862481 -0.4751555 0.2765176 0.1862481 -0.5225216 0.2765176 0.1862481 -0.5725335 0.2765176 0.1862481 -0.6252316 0.2765176 0.1862481 -0.6806558 0.2765176 0.1862481 -0.7388448 0.2765176 0.1862481 -0.7998369 0.2765176 0.1862481 -0.8636691 0.2765176 0.1862481 -0.9303782 0.2765176 0.1862481 -1 0.2765176 0.1862481 -0 0.3113005 0.1862481 -0.002418731 0.3113005 0.1862481 -0.005155668 0.3113005 0.1862481 -0.009080105 0.3113005 0.1862481 -0.01434988 0.3113005 0.1862481 -0.02107202 0.3113005 0.1862481 -0.02934285 0.3113005 0.1862481 -0.03925039 0.3113005 0.1862481 -0.05087609 0.3113005 0.1862481 -0.06429595 0.3113005 0.1862481 -0.07958143 0.3113005 0.1862481 -0.0968001 0.3113005 0.1862481 -0.1160161 0.3113005 0.1862481 -0.1372908 0.3113005 0.1862481 -0.1606827 0.3113005 0.1862481 -0.1862481 0.3113005 0.1862481 -0.2140411 0.3113005 0.1862481 -0.2441142 0.3113005 0.1862481 -0.2765176 0.3113005 0.1862481 -0.3113005 0.3113005 0.1862481 -0.3485102 0.3113005 0.1862481 -0.388193 0.3113005 0.1862481 -0.4303934 0.3113005 0.1862481 -0.4751555 0.3113005 0.1862481 -0.5225216 0.3113005 0.1862481 -0.5725335 0.3113005 0.1862481 -0.6252316 0.3113005 0.1862481 -0.6806558 0.3113005 0.1862481 -0.7388448 0.3113005 0.1862481 -0.7998369 0.3113005 0.1862481 -0.8636691 0.3113005 0.1862481 -0.9303782 0.3113005 0.1862481 -1 0.3113005 0.1862481 -0 0.3485102 0.1862481 -0.002418731 0.3485102 0.1862481 -0.005155668 0.3485102 0.1862481 -0.009080105 0.3485102 0.1862481 -0.01434988 0.3485102 0.1862481 -0.02107202 0.3485102 0.1862481 -0.02934285 0.3485102 0.1862481 -0.03925039 0.3485102 0.1862481 -0.05087609 0.3485102 0.1862481 -0.06429595 0.3485102 0.1862481 -0.07958143 0.3485102 0.1862481 -0.0968001 0.3485102 0.1862481 -0.1160161 0.3485102 0.1862481 -0.1372908 0.3485102 0.1862481 -0.1606827 0.3485102 0.1862481 -0.1862481 0.3485102 0.1862481 -0.2140411 0.3485102 0.1862481 -0.2441142 0.3485102 0.1862481 -0.2765176 0.3485102 0.1862481 -0.3113005 0.3485102 0.1862481 -0.3485102 0.3485102 0.1862481 -0.388193 0.3485102 0.1862481 -0.4303934 0.3485102 0.1862481 -0.4751555 0.3485102 0.1862481 -0.5225216 0.3485102 0.1862481 -0.5725335 0.3485102 0.1862481 -0.6252316 0.3485102 0.1862481 -0.6806558 0.3485102 0.1862481 -0.7388448 0.3485102 0.1862481 -0.7998369 0.3485102 0.1862481 -0.8636691 0.3485102 0.1862481 -0.9303782 0.3485102 0.1862481 -1 0.3485102 0.1862481 -0 0.388193 0.1862481 -0.002418731 0.388193 0.1862481 -0.005155668 0.388193 0.1862481 -0.009080105 0.388193 0.1862481 -0.01434988 0.388193 0.1862481 -0.02107202 0.388193 0.1862481 -0.02934285 0.388193 0.1862481 -0.03925039 0.388193 0.1862481 -0.05087609 0.388193 0.1862481 -0.06429595 0.388193 0.1862481 -0.07958143 0.388193 0.1862481 -0.0968001 0.388193 0.1862481 -0.1160161 0.388193 0.1862481 -0.1372908 0.388193 0.1862481 -0.1606827 0.388193 0.1862481 -0.1862481 0.388193 0.1862481 -0.2140411 0.388193 0.1862481 -0.2441142 0.388193 0.1862481 -0.2765176 0.388193 0.1862481 -0.3113005 0.388193 0.1862481 -0.3485102 0.388193 0.1862481 -0.388193 0.388193 0.1862481 -0.4303934 0.388193 0.1862481 -0.4751555 0.388193 0.1862481 -0.5225216 0.388193 0.1862481 -0.5725335 0.388193 0.1862481 -0.6252316 0.388193 0.1862481 -0.6806558 0.388193 0.1862481 -0.7388448 0.388193 0.1862481 -0.7998369 0.388193 0.1862481 -0.8636691 0.388193 0.1862481 -0.9303782 0.388193 0.1862481 -1 0.388193 0.1862481 -0 0.4303934 0.1862481 -0.002418731 0.4303934 0.1862481 -0.005155668 0.4303934 0.1862481 -0.009080105 0.4303934 0.1862481 -0.01434988 0.4303934 0.1862481 -0.02107202 0.4303934 0.1862481 -0.02934285 0.4303934 0.1862481 -0.03925039 0.4303934 0.1862481 -0.05087609 0.4303934 0.1862481 -0.06429595 0.4303934 0.1862481 -0.07958143 0.4303934 0.1862481 -0.0968001 0.4303934 0.1862481 -0.1160161 0.4303934 0.1862481 -0.1372908 0.4303934 0.1862481 -0.1606827 0.4303934 0.1862481 -0.1862481 0.4303934 0.1862481 -0.2140411 0.4303934 0.1862481 -0.2441142 0.4303934 0.1862481 -0.2765176 0.4303934 0.1862481 -0.3113005 0.4303934 0.1862481 -0.3485102 0.4303934 0.1862481 -0.388193 0.4303934 0.1862481 -0.4303934 0.4303934 0.1862481 -0.4751555 0.4303934 0.1862481 -0.5225216 0.4303934 0.1862481 -0.5725335 0.4303934 0.1862481 -0.6252316 0.4303934 0.1862481 -0.6806558 0.4303934 0.1862481 -0.7388448 0.4303934 0.1862481 -0.7998369 0.4303934 0.1862481 -0.8636691 0.4303934 0.1862481 -0.9303782 0.4303934 0.1862481 -1 0.4303934 0.1862481 -0 0.4751555 0.1862481 -0.002418731 0.4751555 0.1862481 -0.005155668 0.4751555 0.1862481 -0.009080105 0.4751555 0.1862481 -0.01434988 0.4751555 0.1862481 -0.02107202 0.4751555 0.1862481 -0.02934285 0.4751555 0.1862481 -0.03925039 0.4751555 0.1862481 -0.05087609 0.4751555 0.1862481 -0.06429595 0.4751555 0.1862481 -0.07958143 0.4751555 0.1862481 -0.0968001 0.4751555 0.1862481 -0.1160161 0.4751555 0.1862481 -0.1372908 0.4751555 0.1862481 -0.1606827 0.4751555 0.1862481 -0.1862481 0.4751555 0.1862481 -0.2140411 0.4751555 0.1862481 -0.2441142 0.4751555 0.1862481 -0.2765176 0.4751555 0.1862481 -0.3113005 0.4751555 0.1862481 -0.3485102 0.4751555 0.1862481 -0.388193 0.4751555 0.1862481 -0.4303934 0.4751555 0.1862481 -0.4751555 0.4751555 0.1862481 -0.5225216 0.4751555 0.1862481 -0.5725335 0.4751555 0.1862481 -0.6252316 0.4751555 0.1862481 -0.6806558 0.4751555 0.1862481 -0.7388448 0.4751555 0.1862481 -0.7998369 0.4751555 0.1862481 -0.8636691 0.4751555 0.1862481 -0.9303782 0.4751555 0.1862481 -1 0.4751555 0.1862481 -0 0.5225216 0.1862481 -0.002418731 0.5225216 0.1862481 -0.005155668 0.5225216 0.1862481 -0.009080105 0.5225216 0.1862481 -0.01434988 0.5225216 0.1862481 -0.02107202 0.5225216 0.1862481 -0.02934285 0.5225216 0.1862481 -0.03925039 0.5225216 0.1862481 -0.05087609 0.5225216 0.1862481 -0.06429595 0.5225216 0.1862481 -0.07958143 0.5225216 0.1862481 -0.0968001 0.5225216 0.1862481 -0.1160161 0.5225216 0.1862481 -0.1372908 0.5225216 0.1862481 -0.1606827 0.5225216 0.1862481 -0.1862481 0.5225216 0.1862481 -0.2140411 0.5225216 0.1862481 -0.2441142 0.5225216 0.1862481 -0.2765176 0.5225216 0.1862481 -0.3113005 0.5225216 0.1862481 -0.3485102 0.5225216 0.1862481 -0.388193 0.5225216 0.1862481 -0.4303934 0.5225216 0.1862481 -0.4751555 0.5225216 0.1862481 -0.5225216 0.5225216 0.1862481 -0.5725335 0.5225216 0.1862481 -0.6252316 0.5225216 0.1862481 -0.6806558 0.5225216 0.1862481 -0.7388448 0.5225216 0.1862481 -0.7998369 0.5225216 0.1862481 -0.8636691 0.5225216 0.1862481 -0.9303782 0.5225216 0.1862481 -1 0.5225216 0.1862481 -0 0.5725335 0.1862481 -0.002418731 0.5725335 0.1862481 -0.005155668 0.5725335 0.1862481 -0.009080105 0.5725335 0.1862481 -0.01434988 0.5725335 0.1862481 -0.02107202 0.5725335 0.1862481 -0.02934285 0.5725335 0.1862481 -0.03925039 0.5725335 0.1862481 -0.05087609 0.5725335 0.1862481 -0.06429595 0.5725335 0.1862481 -0.07958143 0.5725335 0.1862481 -0.0968001 0.5725335 0.1862481 -0.1160161 0.5725335 0.1862481 -0.1372908 0.5725335 0.1862481 -0.1606827 0.5725335 0.1862481 -0.1862481 0.5725335 0.1862481 -0.2140411 0.5725335 0.1862481 -0.2441142 0.5725335 0.1862481 -0.2765176 0.5725335 0.1862481 -0.3113005 0.5725335 0.1862481 -0.3485102 0.5725335 0.1862481 -0.388193 0.5725335 0.1862481 -0.4303934 0.5725335 0.1862481 -0.4751555 0.5725335 0.1862481 -0.5225216 0.5725335 0.1862481 -0.5725335 0.5725335 0.1862481 -0.6252316 0.5725335 0.1862481 -0.6806558 0.5725335 0.1862481 -0.7388448 0.5725335 0.1862481 -0.7998369 0.5725335 0.1862481 -0.8636691 0.5725335 0.1862481 -0.9303782 0.5725335 0.1862481 -1 0.5725335 0.1862481 -0 0.6252316 0.1862481 -0.002418731 0.6252316 0.1862481 -0.005155668 0.6252316 0.1862481 -0.009080105 0.6252316 0.1862481 -0.01434988 0.6252316 0.1862481 -0.02107202 0.6252316 0.1862481 -0.02934285 0.6252316 0.1862481 -0.03925039 0.6252316 0.1862481 -0.05087609 0.6252316 0.1862481 -0.06429595 0.6252316 0.1862481 -0.07958143 0.6252316 0.1862481 -0.0968001 0.6252316 0.1862481 -0.1160161 0.6252316 0.1862481 -0.1372908 0.6252316 0.1862481 -0.1606827 0.6252316 0.1862481 -0.1862481 0.6252316 0.1862481 -0.2140411 0.6252316 0.1862481 -0.2441142 0.6252316 0.1862481 -0.2765176 0.6252316 0.1862481 -0.3113005 0.6252316 0.1862481 -0.3485102 0.6252316 0.1862481 -0.388193 0.6252316 0.1862481 -0.4303934 0.6252316 0.1862481 -0.4751555 0.6252316 0.1862481 -0.5225216 0.6252316 0.1862481 -0.5725335 0.6252316 0.1862481 -0.6252316 0.6252316 0.1862481 -0.6806558 0.6252316 0.1862481 -0.7388448 0.6252316 0.1862481 -0.7998369 0.6252316 0.1862481 -0.8636691 0.6252316 0.1862481 -0.9303782 0.6252316 0.1862481 -1 0.6252316 0.1862481 -0 0.6806558 0.1862481 -0.002418731 0.6806558 0.1862481 -0.005155668 0.6806558 0.1862481 -0.009080105 0.6806558 0.1862481 -0.01434988 0.6806558 0.1862481 -0.02107202 0.6806558 0.1862481 -0.02934285 0.6806558 0.1862481 -0.03925039 0.6806558 0.1862481 -0.05087609 0.6806558 0.1862481 -0.06429595 0.6806558 0.1862481 -0.07958143 0.6806558 0.1862481 -0.0968001 0.6806558 0.1862481 -0.1160161 0.6806558 0.1862481 -0.1372908 0.6806558 0.1862481 -0.1606827 0.6806558 0.1862481 -0.1862481 0.6806558 0.1862481 -0.2140411 0.6806558 0.1862481 -0.2441142 0.6806558 0.1862481 -0.2765176 0.6806558 0.1862481 -0.3113005 0.6806558 0.1862481 -0.3485102 0.6806558 0.1862481 -0.388193 0.6806558 0.1862481 -0.4303934 0.6806558 0.1862481 -0.4751555 0.6806558 0.1862481 -0.5225216 0.6806558 0.1862481 -0.5725335 0.6806558 0.1862481 -0.6252316 0.6806558 0.1862481 -0.6806558 0.6806558 0.1862481 -0.7388448 0.6806558 0.1862481 -0.7998369 0.6806558 0.1862481 -0.8636691 0.6806558 0.1862481 -0.9303782 0.6806558 0.1862481 -1 0.6806558 0.1862481 -0 0.7388448 0.1862481 -0.002418731 0.7388448 0.1862481 -0.005155668 0.7388448 0.1862481 -0.009080105 0.7388448 0.1862481 -0.01434988 0.7388448 0.1862481 -0.02107202 0.7388448 0.1862481 -0.02934285 0.7388448 0.1862481 -0.03925039 0.7388448 0.1862481 -0.05087609 0.7388448 0.1862481 -0.06429595 0.7388448 0.1862481 -0.07958143 0.7388448 0.1862481 -0.0968001 0.7388448 0.1862481 -0.1160161 0.7388448 0.1862481 -0.1372908 0.7388448 0.1862481 -0.1606827 0.7388448 0.1862481 -0.1862481 0.7388448 0.1862481 -0.2140411 0.7388448 0.1862481 -0.2441142 0.7388448 0.1862481 -0.2765176 0.7388448 0.1862481 -0.3113005 0.7388448 0.1862481 -0.3485102 0.7388448 0.1862481 -0.388193 0.7388448 0.1862481 -0.4303934 0.7388448 0.1862481 -0.4751555 0.7388448 0.1862481 -0.5225216 0.7388448 0.1862481 -0.5725335 0.7388448 0.1862481 -0.6252316 0.7388448 0.1862481 -0.6806558 0.7388448 0.1862481 -0.7388448 0.7388448 0.1862481 -0.7998369 0.7388448 0.1862481 -0.8636691 0.7388448 0.1862481 -0.9303782 0.7388448 0.1862481 -1 0.7388448 0.1862481 -0 0.7998369 0.1862481 -0.002418731 0.7998369 0.1862481 -0.005155668 0.7998369 0.1862481 -0.009080105 0.7998369 0.1862481 -0.01434988 0.7998369 0.1862481 -0.02107202 0.7998369 0.1862481 -0.02934285 0.7998369 0.1862481 -0.03925039 0.7998369 0.1862481 -0.05087609 0.7998369 0.1862481 -0.06429595 0.7998369 0.1862481 -0.07958143 0.7998369 0.1862481 -0.0968001 0.7998369 0.1862481 -0.1160161 0.7998369 0.1862481 -0.1372908 0.7998369 0.1862481 -0.1606827 0.7998369 0.1862481 -0.1862481 0.7998369 0.1862481 -0.2140411 0.7998369 0.1862481 -0.2441142 0.7998369 0.1862481 -0.2765176 0.7998369 0.1862481 -0.3113005 0.7998369 0.1862481 -0.3485102 0.7998369 0.1862481 -0.388193 0.7998369 0.1862481 -0.4303934 0.7998369 0.1862481 -0.4751555 0.7998369 0.1862481 -0.5225216 0.7998369 0.1862481 -0.5725335 0.7998369 0.1862481 -0.6252316 0.7998369 0.1862481 -0.6806558 0.7998369 0.1862481 -0.7388448 0.7998369 0.1862481 -0.7998369 0.7998369 0.1862481 -0.8636691 0.7998369 0.1862481 -0.9303782 0.7998369 0.1862481 -1 0.7998369 0.1862481 -0 0.8636691 0.1862481 -0.002418731 0.8636691 0.1862481 -0.005155668 0.8636691 0.1862481 -0.009080105 0.8636691 0.1862481 -0.01434988 0.8636691 0.1862481 -0.02107202 0.8636691 0.1862481 -0.02934285 0.8636691 0.1862481 -0.03925039 0.8636691 0.1862481 -0.05087609 0.8636691 0.1862481 -0.06429595 0.8636691 0.1862481 -0.07958143 0.8636691 0.1862481 -0.0968001 0.8636691 0.1862481 -0.1160161 0.8636691 0.1862481 -0.1372908 0.8636691 0.1862481 -0.1606827 0.8636691 0.1862481 -0.1862481 0.8636691 0.1862481 -0.2140411 0.8636691 0.1862481 -0.2441142 0.8636691 0.1862481 -0.2765176 0.8636691 0.1862481 -0.3113005 0.8636691 0.1862481 -0.3485102 0.8636691 0.1862481 -0.388193 0.8636691 0.1862481 -0.4303934 0.8636691 0.1862481 -0.4751555 0.8636691 0.1862481 -0.5225216 0.8636691 0.1862481 -0.5725335 0.8636691 0.1862481 -0.6252316 0.8636691 0.1862481 -0.6806558 0.8636691 0.1862481 -0.7388448 0.8636691 0.1862481 -0.7998369 0.8636691 0.1862481 -0.8636691 0.8636691 0.1862481 -0.9303782 0.8636691 0.1862481 -1 0.8636691 0.1862481 -0 0.9303782 0.1862481 -0.002418731 0.9303782 0.1862481 -0.005155668 0.9303782 0.1862481 -0.009080105 0.9303782 0.1862481 -0.01434988 0.9303782 0.1862481 -0.02107202 0.9303782 0.1862481 -0.02934285 0.9303782 0.1862481 -0.03925039 0.9303782 0.1862481 -0.05087609 0.9303782 0.1862481 -0.06429595 0.9303782 0.1862481 -0.07958143 0.9303782 0.1862481 -0.0968001 0.9303782 0.1862481 -0.1160161 0.9303782 0.1862481 -0.1372908 0.9303782 0.1862481 -0.1606827 0.9303782 0.1862481 -0.1862481 0.9303782 0.1862481 -0.2140411 0.9303782 0.1862481 -0.2441142 0.9303782 0.1862481 -0.2765176 0.9303782 0.1862481 -0.3113005 0.9303782 0.1862481 -0.3485102 0.9303782 0.1862481 -0.388193 0.9303782 0.1862481 -0.4303934 0.9303782 0.1862481 -0.4751555 0.9303782 0.1862481 -0.5225216 0.9303782 0.1862481 -0.5725335 0.9303782 0.1862481 -0.6252316 0.9303782 0.1862481 -0.6806558 0.9303782 0.1862481 -0.7388448 0.9303782 0.1862481 -0.7998369 0.9303782 0.1862481 -0.8636691 0.9303782 0.1862481 -0.9303782 0.9303782 0.1862481 -1 0.9303782 0.1862481 -0 1 0.1862481 -0.002418731 1 0.1862481 -0.005155668 1 0.1862481 -0.009080105 1 0.1862481 -0.01434988 1 0.1862481 -0.02107202 1 0.1862481 -0.02934285 1 0.1862481 -0.03925039 1 0.1862481 -0.05087609 1 0.1862481 -0.06429595 1 0.1862481 -0.07958143 1 0.1862481 -0.0968001 1 0.1862481 -0.1160161 1 0.1862481 -0.1372908 1 0.1862481 -0.1606827 1 0.1862481 -0.1862481 1 0.1862481 -0.2140411 1 0.1862481 -0.2441142 1 0.1862481 -0.2765176 1 0.1862481 -0.3113005 1 0.1862481 -0.3485102 1 0.1862481 -0.388193 1 0.1862481 -0.4303934 1 0.1862481 -0.4751555 1 0.1862481 -0.5225216 1 0.1862481 -0.5725335 1 0.1862481 -0.6252316 1 0.1862481 -0.6806558 1 0.1862481 -0.7388448 1 0.1862481 -0.7998369 1 0.1862481 -0.8636691 1 0.1862481 -0.9303782 1 0.1862481 -1 1 0.1862481 -0 0 0.2140411 -0.002418731 0 0.2140411 -0.005155668 0 0.2140411 -0.009080105 0 0.2140411 -0.01434988 0 0.2140411 -0.02107202 0 0.2140411 -0.02934285 0 0.2140411 -0.03925039 0 0.2140411 -0.05087609 0 0.2140411 -0.06429595 0 0.2140411 -0.07958143 0 0.2140411 -0.0968001 0 0.2140411 -0.1160161 0 0.2140411 -0.1372908 0 0.2140411 -0.1606827 0 0.2140411 -0.1862481 0 0.2140411 -0.2140411 0 0.2140411 -0.2441142 0 0.2140411 -0.2765176 0 0.2140411 -0.3113005 0 0.2140411 -0.3485102 0 0.2140411 -0.388193 0 0.2140411 -0.4303934 0 0.2140411 -0.4751555 0 0.2140411 -0.5225216 0 0.2140411 -0.5725335 0 0.2140411 -0.6252316 0 0.2140411 -0.6806558 0 0.2140411 -0.7388448 0 0.2140411 -0.7998369 0 0.2140411 -0.8636691 0 0.2140411 -0.9303782 0 0.2140411 -1 0 0.2140411 -0 0.002418731 0.2140411 -0.002418731 0.002418731 0.2140411 -0.005155668 0.002418731 0.2140411 -0.009080105 0.002418731 0.2140411 -0.01434988 0.002418731 0.2140411 -0.02107202 0.002418731 0.2140411 -0.02934285 0.002418731 0.2140411 -0.03925039 0.002418731 0.2140411 -0.05087609 0.002418731 0.2140411 -0.06429595 0.002418731 0.2140411 -0.07958143 0.002418731 0.2140411 -0.0968001 0.002418731 0.2140411 -0.1160161 0.002418731 0.2140411 -0.1372908 0.002418731 0.2140411 -0.1606827 0.002418731 0.2140411 -0.1862481 0.002418731 0.2140411 -0.2140411 0.002418731 0.2140411 -0.2441142 0.002418731 0.2140411 -0.2765176 0.002418731 0.2140411 -0.3113005 0.002418731 0.2140411 -0.3485102 0.002418731 0.2140411 -0.388193 0.002418731 0.2140411 -0.4303934 0.002418731 0.2140411 -0.4751555 0.002418731 0.2140411 -0.5225216 0.002418731 0.2140411 -0.5725335 0.002418731 0.2140411 -0.6252316 0.002418731 0.2140411 -0.6806558 0.002418731 0.2140411 -0.7388448 0.002418731 0.2140411 -0.7998369 0.002418731 0.2140411 -0.8636691 0.002418731 0.2140411 -0.9303782 0.002418731 0.2140411 -1 0.002418731 0.2140411 -0 0.005155668 0.2140411 -0.002418731 0.005155668 0.2140411 -0.005155668 0.005155668 0.2140411 -0.009080105 0.005155668 0.2140411 -0.01434988 0.005155668 0.2140411 -0.02107202 0.005155668 0.2140411 -0.02934285 0.005155668 0.2140411 -0.03925039 0.005155668 0.2140411 -0.05087609 0.005155668 0.2140411 -0.06429595 0.005155668 0.2140411 -0.07958143 0.005155668 0.2140411 -0.0968001 0.005155668 0.2140411 -0.1160161 0.005155668 0.2140411 -0.1372908 0.005155668 0.2140411 -0.1606827 0.005155668 0.2140411 -0.1862481 0.005155668 0.2140411 -0.2140411 0.005155668 0.2140411 -0.2441142 0.005155668 0.2140411 -0.2765176 0.005155668 0.2140411 -0.3113005 0.005155668 0.2140411 -0.3485102 0.005155668 0.2140411 -0.388193 0.005155668 0.2140411 -0.4303934 0.005155668 0.2140411 -0.4751555 0.005155668 0.2140411 -0.5225216 0.005155668 0.2140411 -0.5725335 0.005155668 0.2140411 -0.6252316 0.005155668 0.2140411 -0.6806558 0.005155668 0.2140411 -0.7388448 0.005155668 0.2140411 -0.7998369 0.005155668 0.2140411 -0.8636691 0.005155668 0.2140411 -0.9303782 0.005155668 0.2140411 -1 0.005155668 0.2140411 -0 0.009080105 0.2140411 -0.002418731 0.009080105 0.2140411 -0.005155668 0.009080105 0.2140411 -0.009080105 0.009080105 0.2140411 -0.01434988 0.009080105 0.2140411 -0.02107202 0.009080105 0.2140411 -0.02934285 0.009080105 0.2140411 -0.03925039 0.009080105 0.2140411 -0.05087609 0.009080105 0.2140411 -0.06429595 0.009080105 0.2140411 -0.07958143 0.009080105 0.2140411 -0.0968001 0.009080105 0.2140411 -0.1160161 0.009080105 0.2140411 -0.1372908 0.009080105 0.2140411 -0.1606827 0.009080105 0.2140411 -0.1862481 0.009080105 0.2140411 -0.2140411 0.009080105 0.2140411 -0.2441142 0.009080105 0.2140411 -0.2765176 0.009080105 0.2140411 -0.3113005 0.009080105 0.2140411 -0.3485102 0.009080105 0.2140411 -0.388193 0.009080105 0.2140411 -0.4303934 0.009080105 0.2140411 -0.4751555 0.009080105 0.2140411 -0.5225216 0.009080105 0.2140411 -0.5725335 0.009080105 0.2140411 -0.6252316 0.009080105 0.2140411 -0.6806558 0.009080105 0.2140411 -0.7388448 0.009080105 0.2140411 -0.7998369 0.009080105 0.2140411 -0.8636691 0.009080105 0.2140411 -0.9303782 0.009080105 0.2140411 -1 0.009080105 0.2140411 -0 0.01434988 0.2140411 -0.002418731 0.01434988 0.2140411 -0.005155668 0.01434988 0.2140411 -0.009080105 0.01434988 0.2140411 -0.01434988 0.01434988 0.2140411 -0.02107202 0.01434988 0.2140411 -0.02934285 0.01434988 0.2140411 -0.03925039 0.01434988 0.2140411 -0.05087609 0.01434988 0.2140411 -0.06429595 0.01434988 0.2140411 -0.07958143 0.01434988 0.2140411 -0.0968001 0.01434988 0.2140411 -0.1160161 0.01434988 0.2140411 -0.1372908 0.01434988 0.2140411 -0.1606827 0.01434988 0.2140411 -0.1862481 0.01434988 0.2140411 -0.2140411 0.01434988 0.2140411 -0.2441142 0.01434988 0.2140411 -0.2765176 0.01434988 0.2140411 -0.3113005 0.01434988 0.2140411 -0.3485102 0.01434988 0.2140411 -0.388193 0.01434988 0.2140411 -0.4303934 0.01434988 0.2140411 -0.4751555 0.01434988 0.2140411 -0.5225216 0.01434988 0.2140411 -0.5725335 0.01434988 0.2140411 -0.6252316 0.01434988 0.2140411 -0.6806558 0.01434988 0.2140411 -0.7388448 0.01434988 0.2140411 -0.7998369 0.01434988 0.2140411 -0.8636691 0.01434988 0.2140411 -0.9303782 0.01434988 0.2140411 -1 0.01434988 0.2140411 -0 0.02107202 0.2140411 -0.002418731 0.02107202 0.2140411 -0.005155668 0.02107202 0.2140411 -0.009080105 0.02107202 0.2140411 -0.01434988 0.02107202 0.2140411 -0.02107202 0.02107202 0.2140411 -0.02934285 0.02107202 0.2140411 -0.03925039 0.02107202 0.2140411 -0.05087609 0.02107202 0.2140411 -0.06429595 0.02107202 0.2140411 -0.07958143 0.02107202 0.2140411 -0.0968001 0.02107202 0.2140411 -0.1160161 0.02107202 0.2140411 -0.1372908 0.02107202 0.2140411 -0.1606827 0.02107202 0.2140411 -0.1862481 0.02107202 0.2140411 -0.2140411 0.02107202 0.2140411 -0.2441142 0.02107202 0.2140411 -0.2765176 0.02107202 0.2140411 -0.3113005 0.02107202 0.2140411 -0.3485102 0.02107202 0.2140411 -0.388193 0.02107202 0.2140411 -0.4303934 0.02107202 0.2140411 -0.4751555 0.02107202 0.2140411 -0.5225216 0.02107202 0.2140411 -0.5725335 0.02107202 0.2140411 -0.6252316 0.02107202 0.2140411 -0.6806558 0.02107202 0.2140411 -0.7388448 0.02107202 0.2140411 -0.7998369 0.02107202 0.2140411 -0.8636691 0.02107202 0.2140411 -0.9303782 0.02107202 0.2140411 -1 0.02107202 0.2140411 -0 0.02934285 0.2140411 -0.002418731 0.02934285 0.2140411 -0.005155668 0.02934285 0.2140411 -0.009080105 0.02934285 0.2140411 -0.01434988 0.02934285 0.2140411 -0.02107202 0.02934285 0.2140411 -0.02934285 0.02934285 0.2140411 -0.03925039 0.02934285 0.2140411 -0.05087609 0.02934285 0.2140411 -0.06429595 0.02934285 0.2140411 -0.07958143 0.02934285 0.2140411 -0.0968001 0.02934285 0.2140411 -0.1160161 0.02934285 0.2140411 -0.1372908 0.02934285 0.2140411 -0.1606827 0.02934285 0.2140411 -0.1862481 0.02934285 0.2140411 -0.2140411 0.02934285 0.2140411 -0.2441142 0.02934285 0.2140411 -0.2765176 0.02934285 0.2140411 -0.3113005 0.02934285 0.2140411 -0.3485102 0.02934285 0.2140411 -0.388193 0.02934285 0.2140411 -0.4303934 0.02934285 0.2140411 -0.4751555 0.02934285 0.2140411 -0.5225216 0.02934285 0.2140411 -0.5725335 0.02934285 0.2140411 -0.6252316 0.02934285 0.2140411 -0.6806558 0.02934285 0.2140411 -0.7388448 0.02934285 0.2140411 -0.7998369 0.02934285 0.2140411 -0.8636691 0.02934285 0.2140411 -0.9303782 0.02934285 0.2140411 -1 0.02934285 0.2140411 -0 0.03925039 0.2140411 -0.002418731 0.03925039 0.2140411 -0.005155668 0.03925039 0.2140411 -0.009080105 0.03925039 0.2140411 -0.01434988 0.03925039 0.2140411 -0.02107202 0.03925039 0.2140411 -0.02934285 0.03925039 0.2140411 -0.03925039 0.03925039 0.2140411 -0.05087609 0.03925039 0.2140411 -0.06429595 0.03925039 0.2140411 -0.07958143 0.03925039 0.2140411 -0.0968001 0.03925039 0.2140411 -0.1160161 0.03925039 0.2140411 -0.1372908 0.03925039 0.2140411 -0.1606827 0.03925039 0.2140411 -0.1862481 0.03925039 0.2140411 -0.2140411 0.03925039 0.2140411 -0.2441142 0.03925039 0.2140411 -0.2765176 0.03925039 0.2140411 -0.3113005 0.03925039 0.2140411 -0.3485102 0.03925039 0.2140411 -0.388193 0.03925039 0.2140411 -0.4303934 0.03925039 0.2140411 -0.4751555 0.03925039 0.2140411 -0.5225216 0.03925039 0.2140411 -0.5725335 0.03925039 0.2140411 -0.6252316 0.03925039 0.2140411 -0.6806558 0.03925039 0.2140411 -0.7388448 0.03925039 0.2140411 -0.7998369 0.03925039 0.2140411 -0.8636691 0.03925039 0.2140411 -0.9303782 0.03925039 0.2140411 -1 0.03925039 0.2140411 -0 0.05087609 0.2140411 -0.002418731 0.05087609 0.2140411 -0.005155668 0.05087609 0.2140411 -0.009080105 0.05087609 0.2140411 -0.01434988 0.05087609 0.2140411 -0.02107202 0.05087609 0.2140411 -0.02934285 0.05087609 0.2140411 -0.03925039 0.05087609 0.2140411 -0.05087609 0.05087609 0.2140411 -0.06429595 0.05087609 0.2140411 -0.07958143 0.05087609 0.2140411 -0.0968001 0.05087609 0.2140411 -0.1160161 0.05087609 0.2140411 -0.1372908 0.05087609 0.2140411 -0.1606827 0.05087609 0.2140411 -0.1862481 0.05087609 0.2140411 -0.2140411 0.05087609 0.2140411 -0.2441142 0.05087609 0.2140411 -0.2765176 0.05087609 0.2140411 -0.3113005 0.05087609 0.2140411 -0.3485102 0.05087609 0.2140411 -0.388193 0.05087609 0.2140411 -0.4303934 0.05087609 0.2140411 -0.4751555 0.05087609 0.2140411 -0.5225216 0.05087609 0.2140411 -0.5725335 0.05087609 0.2140411 -0.6252316 0.05087609 0.2140411 -0.6806558 0.05087609 0.2140411 -0.7388448 0.05087609 0.2140411 -0.7998369 0.05087609 0.2140411 -0.8636691 0.05087609 0.2140411 -0.9303782 0.05087609 0.2140411 -1 0.05087609 0.2140411 -0 0.06429595 0.2140411 -0.002418731 0.06429595 0.2140411 -0.005155668 0.06429595 0.2140411 -0.009080105 0.06429595 0.2140411 -0.01434988 0.06429595 0.2140411 -0.02107202 0.06429595 0.2140411 -0.02934285 0.06429595 0.2140411 -0.03925039 0.06429595 0.2140411 -0.05087609 0.06429595 0.2140411 -0.06429595 0.06429595 0.2140411 -0.07958143 0.06429595 0.2140411 -0.0968001 0.06429595 0.2140411 -0.1160161 0.06429595 0.2140411 -0.1372908 0.06429595 0.2140411 -0.1606827 0.06429595 0.2140411 -0.1862481 0.06429595 0.2140411 -0.2140411 0.06429595 0.2140411 -0.2441142 0.06429595 0.2140411 -0.2765176 0.06429595 0.2140411 -0.3113005 0.06429595 0.2140411 -0.3485102 0.06429595 0.2140411 -0.388193 0.06429595 0.2140411 -0.4303934 0.06429595 0.2140411 -0.4751555 0.06429595 0.2140411 -0.5225216 0.06429595 0.2140411 -0.5725335 0.06429595 0.2140411 -0.6252316 0.06429595 0.2140411 -0.6806558 0.06429595 0.2140411 -0.7388448 0.06429595 0.2140411 -0.7998369 0.06429595 0.2140411 -0.8636691 0.06429595 0.2140411 -0.9303782 0.06429595 0.2140411 -1 0.06429595 0.2140411 -0 0.07958143 0.2140411 -0.002418731 0.07958143 0.2140411 -0.005155668 0.07958143 0.2140411 -0.009080105 0.07958143 0.2140411 -0.01434988 0.07958143 0.2140411 -0.02107202 0.07958143 0.2140411 -0.02934285 0.07958143 0.2140411 -0.03925039 0.07958143 0.2140411 -0.05087609 0.07958143 0.2140411 -0.06429595 0.07958143 0.2140411 -0.07958143 0.07958143 0.2140411 -0.0968001 0.07958143 0.2140411 -0.1160161 0.07958143 0.2140411 -0.1372908 0.07958143 0.2140411 -0.1606827 0.07958143 0.2140411 -0.1862481 0.07958143 0.2140411 -0.2140411 0.07958143 0.2140411 -0.2441142 0.07958143 0.2140411 -0.2765176 0.07958143 0.2140411 -0.3113005 0.07958143 0.2140411 -0.3485102 0.07958143 0.2140411 -0.388193 0.07958143 0.2140411 -0.4303934 0.07958143 0.2140411 -0.4751555 0.07958143 0.2140411 -0.5225216 0.07958143 0.2140411 -0.5725335 0.07958143 0.2140411 -0.6252316 0.07958143 0.2140411 -0.6806558 0.07958143 0.2140411 -0.7388448 0.07958143 0.2140411 -0.7998369 0.07958143 0.2140411 -0.8636691 0.07958143 0.2140411 -0.9303782 0.07958143 0.2140411 -1 0.07958143 0.2140411 -0 0.0968001 0.2140411 -0.002418731 0.0968001 0.2140411 -0.005155668 0.0968001 0.2140411 -0.009080105 0.0968001 0.2140411 -0.01434988 0.0968001 0.2140411 -0.02107202 0.0968001 0.2140411 -0.02934285 0.0968001 0.2140411 -0.03925039 0.0968001 0.2140411 -0.05087609 0.0968001 0.2140411 -0.06429595 0.0968001 0.2140411 -0.07958143 0.0968001 0.2140411 -0.0968001 0.0968001 0.2140411 -0.1160161 0.0968001 0.2140411 -0.1372908 0.0968001 0.2140411 -0.1606827 0.0968001 0.2140411 -0.1862481 0.0968001 0.2140411 -0.2140411 0.0968001 0.2140411 -0.2441142 0.0968001 0.2140411 -0.2765176 0.0968001 0.2140411 -0.3113005 0.0968001 0.2140411 -0.3485102 0.0968001 0.2140411 -0.388193 0.0968001 0.2140411 -0.4303934 0.0968001 0.2140411 -0.4751555 0.0968001 0.2140411 -0.5225216 0.0968001 0.2140411 -0.5725335 0.0968001 0.2140411 -0.6252316 0.0968001 0.2140411 -0.6806558 0.0968001 0.2140411 -0.7388448 0.0968001 0.2140411 -0.7998369 0.0968001 0.2140411 -0.8636691 0.0968001 0.2140411 -0.9303782 0.0968001 0.2140411 -1 0.0968001 0.2140411 -0 0.1160161 0.2140411 -0.002418731 0.1160161 0.2140411 -0.005155668 0.1160161 0.2140411 -0.009080105 0.1160161 0.2140411 -0.01434988 0.1160161 0.2140411 -0.02107202 0.1160161 0.2140411 -0.02934285 0.1160161 0.2140411 -0.03925039 0.1160161 0.2140411 -0.05087609 0.1160161 0.2140411 -0.06429595 0.1160161 0.2140411 -0.07958143 0.1160161 0.2140411 -0.0968001 0.1160161 0.2140411 -0.1160161 0.1160161 0.2140411 -0.1372908 0.1160161 0.2140411 -0.1606827 0.1160161 0.2140411 -0.1862481 0.1160161 0.2140411 -0.2140411 0.1160161 0.2140411 -0.2441142 0.1160161 0.2140411 -0.2765176 0.1160161 0.2140411 -0.3113005 0.1160161 0.2140411 -0.3485102 0.1160161 0.2140411 -0.388193 0.1160161 0.2140411 -0.4303934 0.1160161 0.2140411 -0.4751555 0.1160161 0.2140411 -0.5225216 0.1160161 0.2140411 -0.5725335 0.1160161 0.2140411 -0.6252316 0.1160161 0.2140411 -0.6806558 0.1160161 0.2140411 -0.7388448 0.1160161 0.2140411 -0.7998369 0.1160161 0.2140411 -0.8636691 0.1160161 0.2140411 -0.9303782 0.1160161 0.2140411 -1 0.1160161 0.2140411 -0 0.1372908 0.2140411 -0.002418731 0.1372908 0.2140411 -0.005155668 0.1372908 0.2140411 -0.009080105 0.1372908 0.2140411 -0.01434988 0.1372908 0.2140411 -0.02107202 0.1372908 0.2140411 -0.02934285 0.1372908 0.2140411 -0.03925039 0.1372908 0.2140411 -0.05087609 0.1372908 0.2140411 -0.06429595 0.1372908 0.2140411 -0.07958143 0.1372908 0.2140411 -0.0968001 0.1372908 0.2140411 -0.1160161 0.1372908 0.2140411 -0.1372908 0.1372908 0.2140411 -0.1606827 0.1372908 0.2140411 -0.1862481 0.1372908 0.2140411 -0.2140411 0.1372908 0.2140411 -0.2441142 0.1372908 0.2140411 -0.2765176 0.1372908 0.2140411 -0.3113005 0.1372908 0.2140411 -0.3485102 0.1372908 0.2140411 -0.388193 0.1372908 0.2140411 -0.4303934 0.1372908 0.2140411 -0.4751555 0.1372908 0.2140411 -0.5225216 0.1372908 0.2140411 -0.5725335 0.1372908 0.2140411 -0.6252316 0.1372908 0.2140411 -0.6806558 0.1372908 0.2140411 -0.7388448 0.1372908 0.2140411 -0.7998369 0.1372908 0.2140411 -0.8636691 0.1372908 0.2140411 -0.9303782 0.1372908 0.2140411 -1 0.1372908 0.2140411 -0 0.1606827 0.2140411 -0.002418731 0.1606827 0.2140411 -0.005155668 0.1606827 0.2140411 -0.009080105 0.1606827 0.2140411 -0.01434988 0.1606827 0.2140411 -0.02107202 0.1606827 0.2140411 -0.02934285 0.1606827 0.2140411 -0.03925039 0.1606827 0.2140411 -0.05087609 0.1606827 0.2140411 -0.06429595 0.1606827 0.2140411 -0.07958143 0.1606827 0.2140411 -0.0968001 0.1606827 0.2140411 -0.1160161 0.1606827 0.2140411 -0.1372908 0.1606827 0.2140411 -0.1606827 0.1606827 0.2140411 -0.1862481 0.1606827 0.2140411 -0.2140411 0.1606827 0.2140411 -0.2441142 0.1606827 0.2140411 -0.2765176 0.1606827 0.2140411 -0.3113005 0.1606827 0.2140411 -0.3485102 0.1606827 0.2140411 -0.388193 0.1606827 0.2140411 -0.4303934 0.1606827 0.2140411 -0.4751555 0.1606827 0.2140411 -0.5225216 0.1606827 0.2140411 -0.5725335 0.1606827 0.2140411 -0.6252316 0.1606827 0.2140411 -0.6806558 0.1606827 0.2140411 -0.7388448 0.1606827 0.2140411 -0.7998369 0.1606827 0.2140411 -0.8636691 0.1606827 0.2140411 -0.9303782 0.1606827 0.2140411 -1 0.1606827 0.2140411 -0 0.1862481 0.2140411 -0.002418731 0.1862481 0.2140411 -0.005155668 0.1862481 0.2140411 -0.009080105 0.1862481 0.2140411 -0.01434988 0.1862481 0.2140411 -0.02107202 0.1862481 0.2140411 -0.02934285 0.1862481 0.2140411 -0.03925039 0.1862481 0.2140411 -0.05087609 0.1862481 0.2140411 -0.06429595 0.1862481 0.2140411 -0.07958143 0.1862481 0.2140411 -0.0968001 0.1862481 0.2140411 -0.1160161 0.1862481 0.2140411 -0.1372908 0.1862481 0.2140411 -0.1606827 0.1862481 0.2140411 -0.1862481 0.1862481 0.2140411 -0.2140411 0.1862481 0.2140411 -0.2441142 0.1862481 0.2140411 -0.2765176 0.1862481 0.2140411 -0.3113005 0.1862481 0.2140411 -0.3485102 0.1862481 0.2140411 -0.388193 0.1862481 0.2140411 -0.4303934 0.1862481 0.2140411 -0.4751555 0.1862481 0.2140411 -0.5225216 0.1862481 0.2140411 -0.5725335 0.1862481 0.2140411 -0.6252316 0.1862481 0.2140411 -0.6806558 0.1862481 0.2140411 -0.7388448 0.1862481 0.2140411 -0.7998369 0.1862481 0.2140411 -0.8636691 0.1862481 0.2140411 -0.9303782 0.1862481 0.2140411 -1 0.1862481 0.2140411 -0 0.2140411 0.2140411 -0.002418731 0.2140411 0.2140411 -0.005155668 0.2140411 0.2140411 -0.009080105 0.2140411 0.2140411 -0.01434988 0.2140411 0.2140411 -0.02107202 0.2140411 0.2140411 -0.02934285 0.2140411 0.2140411 -0.03925039 0.2140411 0.2140411 -0.05087609 0.2140411 0.2140411 -0.06429595 0.2140411 0.2140411 -0.07958143 0.2140411 0.2140411 -0.0968001 0.2140411 0.2140411 -0.1160161 0.2140411 0.2140411 -0.1372908 0.2140411 0.2140411 -0.1606827 0.2140411 0.2140411 -0.1862481 0.2140411 0.2140411 -0.2140411 0.2140411 0.2140411 -0.2441142 0.2140411 0.2140411 -0.2765176 0.2140411 0.2140411 -0.3113005 0.2140411 0.2140411 -0.3485102 0.2140411 0.2140411 -0.388193 0.2140411 0.2140411 -0.4303934 0.2140411 0.2140411 -0.4751555 0.2140411 0.2140411 -0.5225216 0.2140411 0.2140411 -0.5725335 0.2140411 0.2140411 -0.6252316 0.2140411 0.2140411 -0.6806558 0.2140411 0.2140411 -0.7388448 0.2140411 0.2140411 -0.7998369 0.2140411 0.2140411 -0.8636691 0.2140411 0.2140411 -0.9303782 0.2140411 0.2140411 -1 0.2140411 0.2140411 -0 0.2441142 0.2140411 -0.002418731 0.2441142 0.2140411 -0.005155668 0.2441142 0.2140411 -0.009080105 0.2441142 0.2140411 -0.01434988 0.2441142 0.2140411 -0.02107202 0.2441142 0.2140411 -0.02934285 0.2441142 0.2140411 -0.03925039 0.2441142 0.2140411 -0.05087609 0.2441142 0.2140411 -0.06429595 0.2441142 0.2140411 -0.07958143 0.2441142 0.2140411 -0.0968001 0.2441142 0.2140411 -0.1160161 0.2441142 0.2140411 -0.1372908 0.2441142 0.2140411 -0.1606827 0.2441142 0.2140411 -0.1862481 0.2441142 0.2140411 -0.2140411 0.2441142 0.2140411 -0.2441142 0.2441142 0.2140411 -0.2765176 0.2441142 0.2140411 -0.3113005 0.2441142 0.2140411 -0.3485102 0.2441142 0.2140411 -0.388193 0.2441142 0.2140411 -0.4303934 0.2441142 0.2140411 -0.4751555 0.2441142 0.2140411 -0.5225216 0.2441142 0.2140411 -0.5725335 0.2441142 0.2140411 -0.6252316 0.2441142 0.2140411 -0.6806558 0.2441142 0.2140411 -0.7388448 0.2441142 0.2140411 -0.7998369 0.2441142 0.2140411 -0.8636691 0.2441142 0.2140411 -0.9303782 0.2441142 0.2140411 -1 0.2441142 0.2140411 -0 0.2765176 0.2140411 -0.002418731 0.2765176 0.2140411 -0.005155668 0.2765176 0.2140411 -0.009080105 0.2765176 0.2140411 -0.01434988 0.2765176 0.2140411 -0.02107202 0.2765176 0.2140411 -0.02934285 0.2765176 0.2140411 -0.03925039 0.2765176 0.2140411 -0.05087609 0.2765176 0.2140411 -0.06429595 0.2765176 0.2140411 -0.07958143 0.2765176 0.2140411 -0.0968001 0.2765176 0.2140411 -0.1160161 0.2765176 0.2140411 -0.1372908 0.2765176 0.2140411 -0.1606827 0.2765176 0.2140411 -0.1862481 0.2765176 0.2140411 -0.2140411 0.2765176 0.2140411 -0.2441142 0.2765176 0.2140411 -0.2765176 0.2765176 0.2140411 -0.3113005 0.2765176 0.2140411 -0.3485102 0.2765176 0.2140411 -0.388193 0.2765176 0.2140411 -0.4303934 0.2765176 0.2140411 -0.4751555 0.2765176 0.2140411 -0.5225216 0.2765176 0.2140411 -0.5725335 0.2765176 0.2140411 -0.6252316 0.2765176 0.2140411 -0.6806558 0.2765176 0.2140411 -0.7388448 0.2765176 0.2140411 -0.7998369 0.2765176 0.2140411 -0.8636691 0.2765176 0.2140411 -0.9303782 0.2765176 0.2140411 -1 0.2765176 0.2140411 -0 0.3113005 0.2140411 -0.002418731 0.3113005 0.2140411 -0.005155668 0.3113005 0.2140411 -0.009080105 0.3113005 0.2140411 -0.01434988 0.3113005 0.2140411 -0.02107202 0.3113005 0.2140411 -0.02934285 0.3113005 0.2140411 -0.03925039 0.3113005 0.2140411 -0.05087609 0.3113005 0.2140411 -0.06429595 0.3113005 0.2140411 -0.07958143 0.3113005 0.2140411 -0.0968001 0.3113005 0.2140411 -0.1160161 0.3113005 0.2140411 -0.1372908 0.3113005 0.2140411 -0.1606827 0.3113005 0.2140411 -0.1862481 0.3113005 0.2140411 -0.2140411 0.3113005 0.2140411 -0.2441142 0.3113005 0.2140411 -0.2765176 0.3113005 0.2140411 -0.3113005 0.3113005 0.2140411 -0.3485102 0.3113005 0.2140411 -0.388193 0.3113005 0.2140411 -0.4303934 0.3113005 0.2140411 -0.4751555 0.3113005 0.2140411 -0.5225216 0.3113005 0.2140411 -0.5725335 0.3113005 0.2140411 -0.6252316 0.3113005 0.2140411 -0.6806558 0.3113005 0.2140411 -0.7388448 0.3113005 0.2140411 -0.7998369 0.3113005 0.2140411 -0.8636691 0.3113005 0.2140411 -0.9303782 0.3113005 0.2140411 -1 0.3113005 0.2140411 -0 0.3485102 0.2140411 -0.002418731 0.3485102 0.2140411 -0.005155668 0.3485102 0.2140411 -0.009080105 0.3485102 0.2140411 -0.01434988 0.3485102 0.2140411 -0.02107202 0.3485102 0.2140411 -0.02934285 0.3485102 0.2140411 -0.03925039 0.3485102 0.2140411 -0.05087609 0.3485102 0.2140411 -0.06429595 0.3485102 0.2140411 -0.07958143 0.3485102 0.2140411 -0.0968001 0.3485102 0.2140411 -0.1160161 0.3485102 0.2140411 -0.1372908 0.3485102 0.2140411 -0.1606827 0.3485102 0.2140411 -0.1862481 0.3485102 0.2140411 -0.2140411 0.3485102 0.2140411 -0.2441142 0.3485102 0.2140411 -0.2765176 0.3485102 0.2140411 -0.3113005 0.3485102 0.2140411 -0.3485102 0.3485102 0.2140411 -0.388193 0.3485102 0.2140411 -0.4303934 0.3485102 0.2140411 -0.4751555 0.3485102 0.2140411 -0.5225216 0.3485102 0.2140411 -0.5725335 0.3485102 0.2140411 -0.6252316 0.3485102 0.2140411 -0.6806558 0.3485102 0.2140411 -0.7388448 0.3485102 0.2140411 -0.7998369 0.3485102 0.2140411 -0.8636691 0.3485102 0.2140411 -0.9303782 0.3485102 0.2140411 -1 0.3485102 0.2140411 -0 0.388193 0.2140411 -0.002418731 0.388193 0.2140411 -0.005155668 0.388193 0.2140411 -0.009080105 0.388193 0.2140411 -0.01434988 0.388193 0.2140411 -0.02107202 0.388193 0.2140411 -0.02934285 0.388193 0.2140411 -0.03925039 0.388193 0.2140411 -0.05087609 0.388193 0.2140411 -0.06429595 0.388193 0.2140411 -0.07958143 0.388193 0.2140411 -0.0968001 0.388193 0.2140411 -0.1160161 0.388193 0.2140411 -0.1372908 0.388193 0.2140411 -0.1606827 0.388193 0.2140411 -0.1862481 0.388193 0.2140411 -0.2140411 0.388193 0.2140411 -0.2441142 0.388193 0.2140411 -0.2765176 0.388193 0.2140411 -0.3113005 0.388193 0.2140411 -0.3485102 0.388193 0.2140411 -0.388193 0.388193 0.2140411 -0.4303934 0.388193 0.2140411 -0.4751555 0.388193 0.2140411 -0.5225216 0.388193 0.2140411 -0.5725335 0.388193 0.2140411 -0.6252316 0.388193 0.2140411 -0.6806558 0.388193 0.2140411 -0.7388448 0.388193 0.2140411 -0.7998369 0.388193 0.2140411 -0.8636691 0.388193 0.2140411 -0.9303782 0.388193 0.2140411 -1 0.388193 0.2140411 -0 0.4303934 0.2140411 -0.002418731 0.4303934 0.2140411 -0.005155668 0.4303934 0.2140411 -0.009080105 0.4303934 0.2140411 -0.01434988 0.4303934 0.2140411 -0.02107202 0.4303934 0.2140411 -0.02934285 0.4303934 0.2140411 -0.03925039 0.4303934 0.2140411 -0.05087609 0.4303934 0.2140411 -0.06429595 0.4303934 0.2140411 -0.07958143 0.4303934 0.2140411 -0.0968001 0.4303934 0.2140411 -0.1160161 0.4303934 0.2140411 -0.1372908 0.4303934 0.2140411 -0.1606827 0.4303934 0.2140411 -0.1862481 0.4303934 0.2140411 -0.2140411 0.4303934 0.2140411 -0.2441142 0.4303934 0.2140411 -0.2765176 0.4303934 0.2140411 -0.3113005 0.4303934 0.2140411 -0.3485102 0.4303934 0.2140411 -0.388193 0.4303934 0.2140411 -0.4303934 0.4303934 0.2140411 -0.4751555 0.4303934 0.2140411 -0.5225216 0.4303934 0.2140411 -0.5725335 0.4303934 0.2140411 -0.6252316 0.4303934 0.2140411 -0.6806558 0.4303934 0.2140411 -0.7388448 0.4303934 0.2140411 -0.7998369 0.4303934 0.2140411 -0.8636691 0.4303934 0.2140411 -0.9303782 0.4303934 0.2140411 -1 0.4303934 0.2140411 -0 0.4751555 0.2140411 -0.002418731 0.4751555 0.2140411 -0.005155668 0.4751555 0.2140411 -0.009080105 0.4751555 0.2140411 -0.01434988 0.4751555 0.2140411 -0.02107202 0.4751555 0.2140411 -0.02934285 0.4751555 0.2140411 -0.03925039 0.4751555 0.2140411 -0.05087609 0.4751555 0.2140411 -0.06429595 0.4751555 0.2140411 -0.07958143 0.4751555 0.2140411 -0.0968001 0.4751555 0.2140411 -0.1160161 0.4751555 0.2140411 -0.1372908 0.4751555 0.2140411 -0.1606827 0.4751555 0.2140411 -0.1862481 0.4751555 0.2140411 -0.2140411 0.4751555 0.2140411 -0.2441142 0.4751555 0.2140411 -0.2765176 0.4751555 0.2140411 -0.3113005 0.4751555 0.2140411 -0.3485102 0.4751555 0.2140411 -0.388193 0.4751555 0.2140411 -0.4303934 0.4751555 0.2140411 -0.4751555 0.4751555 0.2140411 -0.5225216 0.4751555 0.2140411 -0.5725335 0.4751555 0.2140411 -0.6252316 0.4751555 0.2140411 -0.6806558 0.4751555 0.2140411 -0.7388448 0.4751555 0.2140411 -0.7998369 0.4751555 0.2140411 -0.8636691 0.4751555 0.2140411 -0.9303782 0.4751555 0.2140411 -1 0.4751555 0.2140411 -0 0.5225216 0.2140411 -0.002418731 0.5225216 0.2140411 -0.005155668 0.5225216 0.2140411 -0.009080105 0.5225216 0.2140411 -0.01434988 0.5225216 0.2140411 -0.02107202 0.5225216 0.2140411 -0.02934285 0.5225216 0.2140411 -0.03925039 0.5225216 0.2140411 -0.05087609 0.5225216 0.2140411 -0.06429595 0.5225216 0.2140411 -0.07958143 0.5225216 0.2140411 -0.0968001 0.5225216 0.2140411 -0.1160161 0.5225216 0.2140411 -0.1372908 0.5225216 0.2140411 -0.1606827 0.5225216 0.2140411 -0.1862481 0.5225216 0.2140411 -0.2140411 0.5225216 0.2140411 -0.2441142 0.5225216 0.2140411 -0.2765176 0.5225216 0.2140411 -0.3113005 0.5225216 0.2140411 -0.3485102 0.5225216 0.2140411 -0.388193 0.5225216 0.2140411 -0.4303934 0.5225216 0.2140411 -0.4751555 0.5225216 0.2140411 -0.5225216 0.5225216 0.2140411 -0.5725335 0.5225216 0.2140411 -0.6252316 0.5225216 0.2140411 -0.6806558 0.5225216 0.2140411 -0.7388448 0.5225216 0.2140411 -0.7998369 0.5225216 0.2140411 -0.8636691 0.5225216 0.2140411 -0.9303782 0.5225216 0.2140411 -1 0.5225216 0.2140411 -0 0.5725335 0.2140411 -0.002418731 0.5725335 0.2140411 -0.005155668 0.5725335 0.2140411 -0.009080105 0.5725335 0.2140411 -0.01434988 0.5725335 0.2140411 -0.02107202 0.5725335 0.2140411 -0.02934285 0.5725335 0.2140411 -0.03925039 0.5725335 0.2140411 -0.05087609 0.5725335 0.2140411 -0.06429595 0.5725335 0.2140411 -0.07958143 0.5725335 0.2140411 -0.0968001 0.5725335 0.2140411 -0.1160161 0.5725335 0.2140411 -0.1372908 0.5725335 0.2140411 -0.1606827 0.5725335 0.2140411 -0.1862481 0.5725335 0.2140411 -0.2140411 0.5725335 0.2140411 -0.2441142 0.5725335 0.2140411 -0.2765176 0.5725335 0.2140411 -0.3113005 0.5725335 0.2140411 -0.3485102 0.5725335 0.2140411 -0.388193 0.5725335 0.2140411 -0.4303934 0.5725335 0.2140411 -0.4751555 0.5725335 0.2140411 -0.5225216 0.5725335 0.2140411 -0.5725335 0.5725335 0.2140411 -0.6252316 0.5725335 0.2140411 -0.6806558 0.5725335 0.2140411 -0.7388448 0.5725335 0.2140411 -0.7998369 0.5725335 0.2140411 -0.8636691 0.5725335 0.2140411 -0.9303782 0.5725335 0.2140411 -1 0.5725335 0.2140411 -0 0.6252316 0.2140411 -0.002418731 0.6252316 0.2140411 -0.005155668 0.6252316 0.2140411 -0.009080105 0.6252316 0.2140411 -0.01434988 0.6252316 0.2140411 -0.02107202 0.6252316 0.2140411 -0.02934285 0.6252316 0.2140411 -0.03925039 0.6252316 0.2140411 -0.05087609 0.6252316 0.2140411 -0.06429595 0.6252316 0.2140411 -0.07958143 0.6252316 0.2140411 -0.0968001 0.6252316 0.2140411 -0.1160161 0.6252316 0.2140411 -0.1372908 0.6252316 0.2140411 -0.1606827 0.6252316 0.2140411 -0.1862481 0.6252316 0.2140411 -0.2140411 0.6252316 0.2140411 -0.2441142 0.6252316 0.2140411 -0.2765176 0.6252316 0.2140411 -0.3113005 0.6252316 0.2140411 -0.3485102 0.6252316 0.2140411 -0.388193 0.6252316 0.2140411 -0.4303934 0.6252316 0.2140411 -0.4751555 0.6252316 0.2140411 -0.5225216 0.6252316 0.2140411 -0.5725335 0.6252316 0.2140411 -0.6252316 0.6252316 0.2140411 -0.6806558 0.6252316 0.2140411 -0.7388448 0.6252316 0.2140411 -0.7998369 0.6252316 0.2140411 -0.8636691 0.6252316 0.2140411 -0.9303782 0.6252316 0.2140411 -1 0.6252316 0.2140411 -0 0.6806558 0.2140411 -0.002418731 0.6806558 0.2140411 -0.005155668 0.6806558 0.2140411 -0.009080105 0.6806558 0.2140411 -0.01434988 0.6806558 0.2140411 -0.02107202 0.6806558 0.2140411 -0.02934285 0.6806558 0.2140411 -0.03925039 0.6806558 0.2140411 -0.05087609 0.6806558 0.2140411 -0.06429595 0.6806558 0.2140411 -0.07958143 0.6806558 0.2140411 -0.0968001 0.6806558 0.2140411 -0.1160161 0.6806558 0.2140411 -0.1372908 0.6806558 0.2140411 -0.1606827 0.6806558 0.2140411 -0.1862481 0.6806558 0.2140411 -0.2140411 0.6806558 0.2140411 -0.2441142 0.6806558 0.2140411 -0.2765176 0.6806558 0.2140411 -0.3113005 0.6806558 0.2140411 -0.3485102 0.6806558 0.2140411 -0.388193 0.6806558 0.2140411 -0.4303934 0.6806558 0.2140411 -0.4751555 0.6806558 0.2140411 -0.5225216 0.6806558 0.2140411 -0.5725335 0.6806558 0.2140411 -0.6252316 0.6806558 0.2140411 -0.6806558 0.6806558 0.2140411 -0.7388448 0.6806558 0.2140411 -0.7998369 0.6806558 0.2140411 -0.8636691 0.6806558 0.2140411 -0.9303782 0.6806558 0.2140411 -1 0.6806558 0.2140411 -0 0.7388448 0.2140411 -0.002418731 0.7388448 0.2140411 -0.005155668 0.7388448 0.2140411 -0.009080105 0.7388448 0.2140411 -0.01434988 0.7388448 0.2140411 -0.02107202 0.7388448 0.2140411 -0.02934285 0.7388448 0.2140411 -0.03925039 0.7388448 0.2140411 -0.05087609 0.7388448 0.2140411 -0.06429595 0.7388448 0.2140411 -0.07958143 0.7388448 0.2140411 -0.0968001 0.7388448 0.2140411 -0.1160161 0.7388448 0.2140411 -0.1372908 0.7388448 0.2140411 -0.1606827 0.7388448 0.2140411 -0.1862481 0.7388448 0.2140411 -0.2140411 0.7388448 0.2140411 -0.2441142 0.7388448 0.2140411 -0.2765176 0.7388448 0.2140411 -0.3113005 0.7388448 0.2140411 -0.3485102 0.7388448 0.2140411 -0.388193 0.7388448 0.2140411 -0.4303934 0.7388448 0.2140411 -0.4751555 0.7388448 0.2140411 -0.5225216 0.7388448 0.2140411 -0.5725335 0.7388448 0.2140411 -0.6252316 0.7388448 0.2140411 -0.6806558 0.7388448 0.2140411 -0.7388448 0.7388448 0.2140411 -0.7998369 0.7388448 0.2140411 -0.8636691 0.7388448 0.2140411 -0.9303782 0.7388448 0.2140411 -1 0.7388448 0.2140411 -0 0.7998369 0.2140411 -0.002418731 0.7998369 0.2140411 -0.005155668 0.7998369 0.2140411 -0.009080105 0.7998369 0.2140411 -0.01434988 0.7998369 0.2140411 -0.02107202 0.7998369 0.2140411 -0.02934285 0.7998369 0.2140411 -0.03925039 0.7998369 0.2140411 -0.05087609 0.7998369 0.2140411 -0.06429595 0.7998369 0.2140411 -0.07958143 0.7998369 0.2140411 -0.0968001 0.7998369 0.2140411 -0.1160161 0.7998369 0.2140411 -0.1372908 0.7998369 0.2140411 -0.1606827 0.7998369 0.2140411 -0.1862481 0.7998369 0.2140411 -0.2140411 0.7998369 0.2140411 -0.2441142 0.7998369 0.2140411 -0.2765176 0.7998369 0.2140411 -0.3113005 0.7998369 0.2140411 -0.3485102 0.7998369 0.2140411 -0.388193 0.7998369 0.2140411 -0.4303934 0.7998369 0.2140411 -0.4751555 0.7998369 0.2140411 -0.5225216 0.7998369 0.2140411 -0.5725335 0.7998369 0.2140411 -0.6252316 0.7998369 0.2140411 -0.6806558 0.7998369 0.2140411 -0.7388448 0.7998369 0.2140411 -0.7998369 0.7998369 0.2140411 -0.8636691 0.7998369 0.2140411 -0.9303782 0.7998369 0.2140411 -1 0.7998369 0.2140411 -0 0.8636691 0.2140411 -0.002418731 0.8636691 0.2140411 -0.005155668 0.8636691 0.2140411 -0.009080105 0.8636691 0.2140411 -0.01434988 0.8636691 0.2140411 -0.02107202 0.8636691 0.2140411 -0.02934285 0.8636691 0.2140411 -0.03925039 0.8636691 0.2140411 -0.05087609 0.8636691 0.2140411 -0.06429595 0.8636691 0.2140411 -0.07958143 0.8636691 0.2140411 -0.0968001 0.8636691 0.2140411 -0.1160161 0.8636691 0.2140411 -0.1372908 0.8636691 0.2140411 -0.1606827 0.8636691 0.2140411 -0.1862481 0.8636691 0.2140411 -0.2140411 0.8636691 0.2140411 -0.2441142 0.8636691 0.2140411 -0.2765176 0.8636691 0.2140411 -0.3113005 0.8636691 0.2140411 -0.3485102 0.8636691 0.2140411 -0.388193 0.8636691 0.2140411 -0.4303934 0.8636691 0.2140411 -0.4751555 0.8636691 0.2140411 -0.5225216 0.8636691 0.2140411 -0.5725335 0.8636691 0.2140411 -0.6252316 0.8636691 0.2140411 -0.6806558 0.8636691 0.2140411 -0.7388448 0.8636691 0.2140411 -0.7998369 0.8636691 0.2140411 -0.8636691 0.8636691 0.2140411 -0.9303782 0.8636691 0.2140411 -1 0.8636691 0.2140411 -0 0.9303782 0.2140411 -0.002418731 0.9303782 0.2140411 -0.005155668 0.9303782 0.2140411 -0.009080105 0.9303782 0.2140411 -0.01434988 0.9303782 0.2140411 -0.02107202 0.9303782 0.2140411 -0.02934285 0.9303782 0.2140411 -0.03925039 0.9303782 0.2140411 -0.05087609 0.9303782 0.2140411 -0.06429595 0.9303782 0.2140411 -0.07958143 0.9303782 0.2140411 -0.0968001 0.9303782 0.2140411 -0.1160161 0.9303782 0.2140411 -0.1372908 0.9303782 0.2140411 -0.1606827 0.9303782 0.2140411 -0.1862481 0.9303782 0.2140411 -0.2140411 0.9303782 0.2140411 -0.2441142 0.9303782 0.2140411 -0.2765176 0.9303782 0.2140411 -0.3113005 0.9303782 0.2140411 -0.3485102 0.9303782 0.2140411 -0.388193 0.9303782 0.2140411 -0.4303934 0.9303782 0.2140411 -0.4751555 0.9303782 0.2140411 -0.5225216 0.9303782 0.2140411 -0.5725335 0.9303782 0.2140411 -0.6252316 0.9303782 0.2140411 -0.6806558 0.9303782 0.2140411 -0.7388448 0.9303782 0.2140411 -0.7998369 0.9303782 0.2140411 -0.8636691 0.9303782 0.2140411 -0.9303782 0.9303782 0.2140411 -1 0.9303782 0.2140411 -0 1 0.2140411 -0.002418731 1 0.2140411 -0.005155668 1 0.2140411 -0.009080105 1 0.2140411 -0.01434988 1 0.2140411 -0.02107202 1 0.2140411 -0.02934285 1 0.2140411 -0.03925039 1 0.2140411 -0.05087609 1 0.2140411 -0.06429595 1 0.2140411 -0.07958143 1 0.2140411 -0.0968001 1 0.2140411 -0.1160161 1 0.2140411 -0.1372908 1 0.2140411 -0.1606827 1 0.2140411 -0.1862481 1 0.2140411 -0.2140411 1 0.2140411 -0.2441142 1 0.2140411 -0.2765176 1 0.2140411 -0.3113005 1 0.2140411 -0.3485102 1 0.2140411 -0.388193 1 0.2140411 -0.4303934 1 0.2140411 -0.4751555 1 0.2140411 -0.5225216 1 0.2140411 -0.5725335 1 0.2140411 -0.6252316 1 0.2140411 -0.6806558 1 0.2140411 -0.7388448 1 0.2140411 -0.7998369 1 0.2140411 -0.8636691 1 0.2140411 -0.9303782 1 0.2140411 -1 1 0.2140411 -0 0 0.2441142 -0.002418731 0 0.2441142 -0.005155668 0 0.2441142 -0.009080105 0 0.2441142 -0.01434988 0 0.2441142 -0.02107202 0 0.2441142 -0.02934285 0 0.2441142 -0.03925039 0 0.2441142 -0.05087609 0 0.2441142 -0.06429595 0 0.2441142 -0.07958143 0 0.2441142 -0.0968001 0 0.2441142 -0.1160161 0 0.2441142 -0.1372908 0 0.2441142 -0.1606827 0 0.2441142 -0.1862481 0 0.2441142 -0.2140411 0 0.2441142 -0.2441142 0 0.2441142 -0.2765176 0 0.2441142 -0.3113005 0 0.2441142 -0.3485102 0 0.2441142 -0.388193 0 0.2441142 -0.4303934 0 0.2441142 -0.4751555 0 0.2441142 -0.5225216 0 0.2441142 -0.5725335 0 0.2441142 -0.6252316 0 0.2441142 -0.6806558 0 0.2441142 -0.7388448 0 0.2441142 -0.7998369 0 0.2441142 -0.8636691 0 0.2441142 -0.9303782 0 0.2441142 -1 0 0.2441142 -0 0.002418731 0.2441142 -0.002418731 0.002418731 0.2441142 -0.005155668 0.002418731 0.2441142 -0.009080105 0.002418731 0.2441142 -0.01434988 0.002418731 0.2441142 -0.02107202 0.002418731 0.2441142 -0.02934285 0.002418731 0.2441142 -0.03925039 0.002418731 0.2441142 -0.05087609 0.002418731 0.2441142 -0.06429595 0.002418731 0.2441142 -0.07958143 0.002418731 0.2441142 -0.0968001 0.002418731 0.2441142 -0.1160161 0.002418731 0.2441142 -0.1372908 0.002418731 0.2441142 -0.1606827 0.002418731 0.2441142 -0.1862481 0.002418731 0.2441142 -0.2140411 0.002418731 0.2441142 -0.2441142 0.002418731 0.2441142 -0.2765176 0.002418731 0.2441142 -0.3113005 0.002418731 0.2441142 -0.3485102 0.002418731 0.2441142 -0.388193 0.002418731 0.2441142 -0.4303934 0.002418731 0.2441142 -0.4751555 0.002418731 0.2441142 -0.5225216 0.002418731 0.2441142 -0.5725335 0.002418731 0.2441142 -0.6252316 0.002418731 0.2441142 -0.6806558 0.002418731 0.2441142 -0.7388448 0.002418731 0.2441142 -0.7998369 0.002418731 0.2441142 -0.8636691 0.002418731 0.2441142 -0.9303782 0.002418731 0.2441142 -1 0.002418731 0.2441142 -0 0.005155668 0.2441142 -0.002418731 0.005155668 0.2441142 -0.005155668 0.005155668 0.2441142 -0.009080105 0.005155668 0.2441142 -0.01434988 0.005155668 0.2441142 -0.02107202 0.005155668 0.2441142 -0.02934285 0.005155668 0.2441142 -0.03925039 0.005155668 0.2441142 -0.05087609 0.005155668 0.2441142 -0.06429595 0.005155668 0.2441142 -0.07958143 0.005155668 0.2441142 -0.0968001 0.005155668 0.2441142 -0.1160161 0.005155668 0.2441142 -0.1372908 0.005155668 0.2441142 -0.1606827 0.005155668 0.2441142 -0.1862481 0.005155668 0.2441142 -0.2140411 0.005155668 0.2441142 -0.2441142 0.005155668 0.2441142 -0.2765176 0.005155668 0.2441142 -0.3113005 0.005155668 0.2441142 -0.3485102 0.005155668 0.2441142 -0.388193 0.005155668 0.2441142 -0.4303934 0.005155668 0.2441142 -0.4751555 0.005155668 0.2441142 -0.5225216 0.005155668 0.2441142 -0.5725335 0.005155668 0.2441142 -0.6252316 0.005155668 0.2441142 -0.6806558 0.005155668 0.2441142 -0.7388448 0.005155668 0.2441142 -0.7998369 0.005155668 0.2441142 -0.8636691 0.005155668 0.2441142 -0.9303782 0.005155668 0.2441142 -1 0.005155668 0.2441142 -0 0.009080105 0.2441142 -0.002418731 0.009080105 0.2441142 -0.005155668 0.009080105 0.2441142 -0.009080105 0.009080105 0.2441142 -0.01434988 0.009080105 0.2441142 -0.02107202 0.009080105 0.2441142 -0.02934285 0.009080105 0.2441142 -0.03925039 0.009080105 0.2441142 -0.05087609 0.009080105 0.2441142 -0.06429595 0.009080105 0.2441142 -0.07958143 0.009080105 0.2441142 -0.0968001 0.009080105 0.2441142 -0.1160161 0.009080105 0.2441142 -0.1372908 0.009080105 0.2441142 -0.1606827 0.009080105 0.2441142 -0.1862481 0.009080105 0.2441142 -0.2140411 0.009080105 0.2441142 -0.2441142 0.009080105 0.2441142 -0.2765176 0.009080105 0.2441142 -0.3113005 0.009080105 0.2441142 -0.3485102 0.009080105 0.2441142 -0.388193 0.009080105 0.2441142 -0.4303934 0.009080105 0.2441142 -0.4751555 0.009080105 0.2441142 -0.5225216 0.009080105 0.2441142 -0.5725335 0.009080105 0.2441142 -0.6252316 0.009080105 0.2441142 -0.6806558 0.009080105 0.2441142 -0.7388448 0.009080105 0.2441142 -0.7998369 0.009080105 0.2441142 -0.8636691 0.009080105 0.2441142 -0.9303782 0.009080105 0.2441142 -1 0.009080105 0.2441142 -0 0.01434988 0.2441142 -0.002418731 0.01434988 0.2441142 -0.005155668 0.01434988 0.2441142 -0.009080105 0.01434988 0.2441142 -0.01434988 0.01434988 0.2441142 -0.02107202 0.01434988 0.2441142 -0.02934285 0.01434988 0.2441142 -0.03925039 0.01434988 0.2441142 -0.05087609 0.01434988 0.2441142 -0.06429595 0.01434988 0.2441142 -0.07958143 0.01434988 0.2441142 -0.0968001 0.01434988 0.2441142 -0.1160161 0.01434988 0.2441142 -0.1372908 0.01434988 0.2441142 -0.1606827 0.01434988 0.2441142 -0.1862481 0.01434988 0.2441142 -0.2140411 0.01434988 0.2441142 -0.2441142 0.01434988 0.2441142 -0.2765176 0.01434988 0.2441142 -0.3113005 0.01434988 0.2441142 -0.3485102 0.01434988 0.2441142 -0.388193 0.01434988 0.2441142 -0.4303934 0.01434988 0.2441142 -0.4751555 0.01434988 0.2441142 -0.5225216 0.01434988 0.2441142 -0.5725335 0.01434988 0.2441142 -0.6252316 0.01434988 0.2441142 -0.6806558 0.01434988 0.2441142 -0.7388448 0.01434988 0.2441142 -0.7998369 0.01434988 0.2441142 -0.8636691 0.01434988 0.2441142 -0.9303782 0.01434988 0.2441142 -1 0.01434988 0.2441142 -0 0.02107202 0.2441142 -0.002418731 0.02107202 0.2441142 -0.005155668 0.02107202 0.2441142 -0.009080105 0.02107202 0.2441142 -0.01434988 0.02107202 0.2441142 -0.02107202 0.02107202 0.2441142 -0.02934285 0.02107202 0.2441142 -0.03925039 0.02107202 0.2441142 -0.05087609 0.02107202 0.2441142 -0.06429595 0.02107202 0.2441142 -0.07958143 0.02107202 0.2441142 -0.0968001 0.02107202 0.2441142 -0.1160161 0.02107202 0.2441142 -0.1372908 0.02107202 0.2441142 -0.1606827 0.02107202 0.2441142 -0.1862481 0.02107202 0.2441142 -0.2140411 0.02107202 0.2441142 -0.2441142 0.02107202 0.2441142 -0.2765176 0.02107202 0.2441142 -0.3113005 0.02107202 0.2441142 -0.3485102 0.02107202 0.2441142 -0.388193 0.02107202 0.2441142 -0.4303934 0.02107202 0.2441142 -0.4751555 0.02107202 0.2441142 -0.5225216 0.02107202 0.2441142 -0.5725335 0.02107202 0.2441142 -0.6252316 0.02107202 0.2441142 -0.6806558 0.02107202 0.2441142 -0.7388448 0.02107202 0.2441142 -0.7998369 0.02107202 0.2441142 -0.8636691 0.02107202 0.2441142 -0.9303782 0.02107202 0.2441142 -1 0.02107202 0.2441142 -0 0.02934285 0.2441142 -0.002418731 0.02934285 0.2441142 -0.005155668 0.02934285 0.2441142 -0.009080105 0.02934285 0.2441142 -0.01434988 0.02934285 0.2441142 -0.02107202 0.02934285 0.2441142 -0.02934285 0.02934285 0.2441142 -0.03925039 0.02934285 0.2441142 -0.05087609 0.02934285 0.2441142 -0.06429595 0.02934285 0.2441142 -0.07958143 0.02934285 0.2441142 -0.0968001 0.02934285 0.2441142 -0.1160161 0.02934285 0.2441142 -0.1372908 0.02934285 0.2441142 -0.1606827 0.02934285 0.2441142 -0.1862481 0.02934285 0.2441142 -0.2140411 0.02934285 0.2441142 -0.2441142 0.02934285 0.2441142 -0.2765176 0.02934285 0.2441142 -0.3113005 0.02934285 0.2441142 -0.3485102 0.02934285 0.2441142 -0.388193 0.02934285 0.2441142 -0.4303934 0.02934285 0.2441142 -0.4751555 0.02934285 0.2441142 -0.5225216 0.02934285 0.2441142 -0.5725335 0.02934285 0.2441142 -0.6252316 0.02934285 0.2441142 -0.6806558 0.02934285 0.2441142 -0.7388448 0.02934285 0.2441142 -0.7998369 0.02934285 0.2441142 -0.8636691 0.02934285 0.2441142 -0.9303782 0.02934285 0.2441142 -1 0.02934285 0.2441142 -0 0.03925039 0.2441142 -0.002418731 0.03925039 0.2441142 -0.005155668 0.03925039 0.2441142 -0.009080105 0.03925039 0.2441142 -0.01434988 0.03925039 0.2441142 -0.02107202 0.03925039 0.2441142 -0.02934285 0.03925039 0.2441142 -0.03925039 0.03925039 0.2441142 -0.05087609 0.03925039 0.2441142 -0.06429595 0.03925039 0.2441142 -0.07958143 0.03925039 0.2441142 -0.0968001 0.03925039 0.2441142 -0.1160161 0.03925039 0.2441142 -0.1372908 0.03925039 0.2441142 -0.1606827 0.03925039 0.2441142 -0.1862481 0.03925039 0.2441142 -0.2140411 0.03925039 0.2441142 -0.2441142 0.03925039 0.2441142 -0.2765176 0.03925039 0.2441142 -0.3113005 0.03925039 0.2441142 -0.3485102 0.03925039 0.2441142 -0.388193 0.03925039 0.2441142 -0.4303934 0.03925039 0.2441142 -0.4751555 0.03925039 0.2441142 -0.5225216 0.03925039 0.2441142 -0.5725335 0.03925039 0.2441142 -0.6252316 0.03925039 0.2441142 -0.6806558 0.03925039 0.2441142 -0.7388448 0.03925039 0.2441142 -0.7998369 0.03925039 0.2441142 -0.8636691 0.03925039 0.2441142 -0.9303782 0.03925039 0.2441142 -1 0.03925039 0.2441142 -0 0.05087609 0.2441142 -0.002418731 0.05087609 0.2441142 -0.005155668 0.05087609 0.2441142 -0.009080105 0.05087609 0.2441142 -0.01434988 0.05087609 0.2441142 -0.02107202 0.05087609 0.2441142 -0.02934285 0.05087609 0.2441142 -0.03925039 0.05087609 0.2441142 -0.05087609 0.05087609 0.2441142 -0.06429595 0.05087609 0.2441142 -0.07958143 0.05087609 0.2441142 -0.0968001 0.05087609 0.2441142 -0.1160161 0.05087609 0.2441142 -0.1372908 0.05087609 0.2441142 -0.1606827 0.05087609 0.2441142 -0.1862481 0.05087609 0.2441142 -0.2140411 0.05087609 0.2441142 -0.2441142 0.05087609 0.2441142 -0.2765176 0.05087609 0.2441142 -0.3113005 0.05087609 0.2441142 -0.3485102 0.05087609 0.2441142 -0.388193 0.05087609 0.2441142 -0.4303934 0.05087609 0.2441142 -0.4751555 0.05087609 0.2441142 -0.5225216 0.05087609 0.2441142 -0.5725335 0.05087609 0.2441142 -0.6252316 0.05087609 0.2441142 -0.6806558 0.05087609 0.2441142 -0.7388448 0.05087609 0.2441142 -0.7998369 0.05087609 0.2441142 -0.8636691 0.05087609 0.2441142 -0.9303782 0.05087609 0.2441142 -1 0.05087609 0.2441142 -0 0.06429595 0.2441142 -0.002418731 0.06429595 0.2441142 -0.005155668 0.06429595 0.2441142 -0.009080105 0.06429595 0.2441142 -0.01434988 0.06429595 0.2441142 -0.02107202 0.06429595 0.2441142 -0.02934285 0.06429595 0.2441142 -0.03925039 0.06429595 0.2441142 -0.05087609 0.06429595 0.2441142 -0.06429595 0.06429595 0.2441142 -0.07958143 0.06429595 0.2441142 -0.0968001 0.06429595 0.2441142 -0.1160161 0.06429595 0.2441142 -0.1372908 0.06429595 0.2441142 -0.1606827 0.06429595 0.2441142 -0.1862481 0.06429595 0.2441142 -0.2140411 0.06429595 0.2441142 -0.2441142 0.06429595 0.2441142 -0.2765176 0.06429595 0.2441142 -0.3113005 0.06429595 0.2441142 -0.3485102 0.06429595 0.2441142 -0.388193 0.06429595 0.2441142 -0.4303934 0.06429595 0.2441142 -0.4751555 0.06429595 0.2441142 -0.5225216 0.06429595 0.2441142 -0.5725335 0.06429595 0.2441142 -0.6252316 0.06429595 0.2441142 -0.6806558 0.06429595 0.2441142 -0.7388448 0.06429595 0.2441142 -0.7998369 0.06429595 0.2441142 -0.8636691 0.06429595 0.2441142 -0.9303782 0.06429595 0.2441142 -1 0.06429595 0.2441142 -0 0.07958143 0.2441142 -0.002418731 0.07958143 0.2441142 -0.005155668 0.07958143 0.2441142 -0.009080105 0.07958143 0.2441142 -0.01434988 0.07958143 0.2441142 -0.02107202 0.07958143 0.2441142 -0.02934285 0.07958143 0.2441142 -0.03925039 0.07958143 0.2441142 -0.05087609 0.07958143 0.2441142 -0.06429595 0.07958143 0.2441142 -0.07958143 0.07958143 0.2441142 -0.0968001 0.07958143 0.2441142 -0.1160161 0.07958143 0.2441142 -0.1372908 0.07958143 0.2441142 -0.1606827 0.07958143 0.2441142 -0.1862481 0.07958143 0.2441142 -0.2140411 0.07958143 0.2441142 -0.2441142 0.07958143 0.2441142 -0.2765176 0.07958143 0.2441142 -0.3113005 0.07958143 0.2441142 -0.3485102 0.07958143 0.2441142 -0.388193 0.07958143 0.2441142 -0.4303934 0.07958143 0.2441142 -0.4751555 0.07958143 0.2441142 -0.5225216 0.07958143 0.2441142 -0.5725335 0.07958143 0.2441142 -0.6252316 0.07958143 0.2441142 -0.6806558 0.07958143 0.2441142 -0.7388448 0.07958143 0.2441142 -0.7998369 0.07958143 0.2441142 -0.8636691 0.07958143 0.2441142 -0.9303782 0.07958143 0.2441142 -1 0.07958143 0.2441142 -0 0.0968001 0.2441142 -0.002418731 0.0968001 0.2441142 -0.005155668 0.0968001 0.2441142 -0.009080105 0.0968001 0.2441142 -0.01434988 0.0968001 0.2441142 -0.02107202 0.0968001 0.2441142 -0.02934285 0.0968001 0.2441142 -0.03925039 0.0968001 0.2441142 -0.05087609 0.0968001 0.2441142 -0.06429595 0.0968001 0.2441142 -0.07958143 0.0968001 0.2441142 -0.0968001 0.0968001 0.2441142 -0.1160161 0.0968001 0.2441142 -0.1372908 0.0968001 0.2441142 -0.1606827 0.0968001 0.2441142 -0.1862481 0.0968001 0.2441142 -0.2140411 0.0968001 0.2441142 -0.2441142 0.0968001 0.2441142 -0.2765176 0.0968001 0.2441142 -0.3113005 0.0968001 0.2441142 -0.3485102 0.0968001 0.2441142 -0.388193 0.0968001 0.2441142 -0.4303934 0.0968001 0.2441142 -0.4751555 0.0968001 0.2441142 -0.5225216 0.0968001 0.2441142 -0.5725335 0.0968001 0.2441142 -0.6252316 0.0968001 0.2441142 -0.6806558 0.0968001 0.2441142 -0.7388448 0.0968001 0.2441142 -0.7998369 0.0968001 0.2441142 -0.8636691 0.0968001 0.2441142 -0.9303782 0.0968001 0.2441142 -1 0.0968001 0.2441142 -0 0.1160161 0.2441142 -0.002418731 0.1160161 0.2441142 -0.005155668 0.1160161 0.2441142 -0.009080105 0.1160161 0.2441142 -0.01434988 0.1160161 0.2441142 -0.02107202 0.1160161 0.2441142 -0.02934285 0.1160161 0.2441142 -0.03925039 0.1160161 0.2441142 -0.05087609 0.1160161 0.2441142 -0.06429595 0.1160161 0.2441142 -0.07958143 0.1160161 0.2441142 -0.0968001 0.1160161 0.2441142 -0.1160161 0.1160161 0.2441142 -0.1372908 0.1160161 0.2441142 -0.1606827 0.1160161 0.2441142 -0.1862481 0.1160161 0.2441142 -0.2140411 0.1160161 0.2441142 -0.2441142 0.1160161 0.2441142 -0.2765176 0.1160161 0.2441142 -0.3113005 0.1160161 0.2441142 -0.3485102 0.1160161 0.2441142 -0.388193 0.1160161 0.2441142 -0.4303934 0.1160161 0.2441142 -0.4751555 0.1160161 0.2441142 -0.5225216 0.1160161 0.2441142 -0.5725335 0.1160161 0.2441142 -0.6252316 0.1160161 0.2441142 -0.6806558 0.1160161 0.2441142 -0.7388448 0.1160161 0.2441142 -0.7998369 0.1160161 0.2441142 -0.8636691 0.1160161 0.2441142 -0.9303782 0.1160161 0.2441142 -1 0.1160161 0.2441142 -0 0.1372908 0.2441142 -0.002418731 0.1372908 0.2441142 -0.005155668 0.1372908 0.2441142 -0.009080105 0.1372908 0.2441142 -0.01434988 0.1372908 0.2441142 -0.02107202 0.1372908 0.2441142 -0.02934285 0.1372908 0.2441142 -0.03925039 0.1372908 0.2441142 -0.05087609 0.1372908 0.2441142 -0.06429595 0.1372908 0.2441142 -0.07958143 0.1372908 0.2441142 -0.0968001 0.1372908 0.2441142 -0.1160161 0.1372908 0.2441142 -0.1372908 0.1372908 0.2441142 -0.1606827 0.1372908 0.2441142 -0.1862481 0.1372908 0.2441142 -0.2140411 0.1372908 0.2441142 -0.2441142 0.1372908 0.2441142 -0.2765176 0.1372908 0.2441142 -0.3113005 0.1372908 0.2441142 -0.3485102 0.1372908 0.2441142 -0.388193 0.1372908 0.2441142 -0.4303934 0.1372908 0.2441142 -0.4751555 0.1372908 0.2441142 -0.5225216 0.1372908 0.2441142 -0.5725335 0.1372908 0.2441142 -0.6252316 0.1372908 0.2441142 -0.6806558 0.1372908 0.2441142 -0.7388448 0.1372908 0.2441142 -0.7998369 0.1372908 0.2441142 -0.8636691 0.1372908 0.2441142 -0.9303782 0.1372908 0.2441142 -1 0.1372908 0.2441142 -0 0.1606827 0.2441142 -0.002418731 0.1606827 0.2441142 -0.005155668 0.1606827 0.2441142 -0.009080105 0.1606827 0.2441142 -0.01434988 0.1606827 0.2441142 -0.02107202 0.1606827 0.2441142 -0.02934285 0.1606827 0.2441142 -0.03925039 0.1606827 0.2441142 -0.05087609 0.1606827 0.2441142 -0.06429595 0.1606827 0.2441142 -0.07958143 0.1606827 0.2441142 -0.0968001 0.1606827 0.2441142 -0.1160161 0.1606827 0.2441142 -0.1372908 0.1606827 0.2441142 -0.1606827 0.1606827 0.2441142 -0.1862481 0.1606827 0.2441142 -0.2140411 0.1606827 0.2441142 -0.2441142 0.1606827 0.2441142 -0.2765176 0.1606827 0.2441142 -0.3113005 0.1606827 0.2441142 -0.3485102 0.1606827 0.2441142 -0.388193 0.1606827 0.2441142 -0.4303934 0.1606827 0.2441142 -0.4751555 0.1606827 0.2441142 -0.5225216 0.1606827 0.2441142 -0.5725335 0.1606827 0.2441142 -0.6252316 0.1606827 0.2441142 -0.6806558 0.1606827 0.2441142 -0.7388448 0.1606827 0.2441142 -0.7998369 0.1606827 0.2441142 -0.8636691 0.1606827 0.2441142 -0.9303782 0.1606827 0.2441142 -1 0.1606827 0.2441142 -0 0.1862481 0.2441142 -0.002418731 0.1862481 0.2441142 -0.005155668 0.1862481 0.2441142 -0.009080105 0.1862481 0.2441142 -0.01434988 0.1862481 0.2441142 -0.02107202 0.1862481 0.2441142 -0.02934285 0.1862481 0.2441142 -0.03925039 0.1862481 0.2441142 -0.05087609 0.1862481 0.2441142 -0.06429595 0.1862481 0.2441142 -0.07958143 0.1862481 0.2441142 -0.0968001 0.1862481 0.2441142 -0.1160161 0.1862481 0.2441142 -0.1372908 0.1862481 0.2441142 -0.1606827 0.1862481 0.2441142 -0.1862481 0.1862481 0.2441142 -0.2140411 0.1862481 0.2441142 -0.2441142 0.1862481 0.2441142 -0.2765176 0.1862481 0.2441142 -0.3113005 0.1862481 0.2441142 -0.3485102 0.1862481 0.2441142 -0.388193 0.1862481 0.2441142 -0.4303934 0.1862481 0.2441142 -0.4751555 0.1862481 0.2441142 -0.5225216 0.1862481 0.2441142 -0.5725335 0.1862481 0.2441142 -0.6252316 0.1862481 0.2441142 -0.6806558 0.1862481 0.2441142 -0.7388448 0.1862481 0.2441142 -0.7998369 0.1862481 0.2441142 -0.8636691 0.1862481 0.2441142 -0.9303782 0.1862481 0.2441142 -1 0.1862481 0.2441142 -0 0.2140411 0.2441142 -0.002418731 0.2140411 0.2441142 -0.005155668 0.2140411 0.2441142 -0.009080105 0.2140411 0.2441142 -0.01434988 0.2140411 0.2441142 -0.02107202 0.2140411 0.2441142 -0.02934285 0.2140411 0.2441142 -0.03925039 0.2140411 0.2441142 -0.05087609 0.2140411 0.2441142 -0.06429595 0.2140411 0.2441142 -0.07958143 0.2140411 0.2441142 -0.0968001 0.2140411 0.2441142 -0.1160161 0.2140411 0.2441142 -0.1372908 0.2140411 0.2441142 -0.1606827 0.2140411 0.2441142 -0.1862481 0.2140411 0.2441142 -0.2140411 0.2140411 0.2441142 -0.2441142 0.2140411 0.2441142 -0.2765176 0.2140411 0.2441142 -0.3113005 0.2140411 0.2441142 -0.3485102 0.2140411 0.2441142 -0.388193 0.2140411 0.2441142 -0.4303934 0.2140411 0.2441142 -0.4751555 0.2140411 0.2441142 -0.5225216 0.2140411 0.2441142 -0.5725335 0.2140411 0.2441142 -0.6252316 0.2140411 0.2441142 -0.6806558 0.2140411 0.2441142 -0.7388448 0.2140411 0.2441142 -0.7998369 0.2140411 0.2441142 -0.8636691 0.2140411 0.2441142 -0.9303782 0.2140411 0.2441142 -1 0.2140411 0.2441142 -0 0.2441142 0.2441142 -0.002418731 0.2441142 0.2441142 -0.005155668 0.2441142 0.2441142 -0.009080105 0.2441142 0.2441142 -0.01434988 0.2441142 0.2441142 -0.02107202 0.2441142 0.2441142 -0.02934285 0.2441142 0.2441142 -0.03925039 0.2441142 0.2441142 -0.05087609 0.2441142 0.2441142 -0.06429595 0.2441142 0.2441142 -0.07958143 0.2441142 0.2441142 -0.0968001 0.2441142 0.2441142 -0.1160161 0.2441142 0.2441142 -0.1372908 0.2441142 0.2441142 -0.1606827 0.2441142 0.2441142 -0.1862481 0.2441142 0.2441142 -0.2140411 0.2441142 0.2441142 -0.2441142 0.2441142 0.2441142 -0.2765176 0.2441142 0.2441142 -0.3113005 0.2441142 0.2441142 -0.3485102 0.2441142 0.2441142 -0.388193 0.2441142 0.2441142 -0.4303934 0.2441142 0.2441142 -0.4751555 0.2441142 0.2441142 -0.5225216 0.2441142 0.2441142 -0.5725335 0.2441142 0.2441142 -0.6252316 0.2441142 0.2441142 -0.6806558 0.2441142 0.2441142 -0.7388448 0.2441142 0.2441142 -0.7998369 0.2441142 0.2441142 -0.8636691 0.2441142 0.2441142 -0.9303782 0.2441142 0.2441142 -1 0.2441142 0.2441142 -0 0.2765176 0.2441142 -0.002418731 0.2765176 0.2441142 -0.005155668 0.2765176 0.2441142 -0.009080105 0.2765176 0.2441142 -0.01434988 0.2765176 0.2441142 -0.02107202 0.2765176 0.2441142 -0.02934285 0.2765176 0.2441142 -0.03925039 0.2765176 0.2441142 -0.05087609 0.2765176 0.2441142 -0.06429595 0.2765176 0.2441142 -0.07958143 0.2765176 0.2441142 -0.0968001 0.2765176 0.2441142 -0.1160161 0.2765176 0.2441142 -0.1372908 0.2765176 0.2441142 -0.1606827 0.2765176 0.2441142 -0.1862481 0.2765176 0.2441142 -0.2140411 0.2765176 0.2441142 -0.2441142 0.2765176 0.2441142 -0.2765176 0.2765176 0.2441142 -0.3113005 0.2765176 0.2441142 -0.3485102 0.2765176 0.2441142 -0.388193 0.2765176 0.2441142 -0.4303934 0.2765176 0.2441142 -0.4751555 0.2765176 0.2441142 -0.5225216 0.2765176 0.2441142 -0.5725335 0.2765176 0.2441142 -0.6252316 0.2765176 0.2441142 -0.6806558 0.2765176 0.2441142 -0.7388448 0.2765176 0.2441142 -0.7998369 0.2765176 0.2441142 -0.8636691 0.2765176 0.2441142 -0.9303782 0.2765176 0.2441142 -1 0.2765176 0.2441142 -0 0.3113005 0.2441142 -0.002418731 0.3113005 0.2441142 -0.005155668 0.3113005 0.2441142 -0.009080105 0.3113005 0.2441142 -0.01434988 0.3113005 0.2441142 -0.02107202 0.3113005 0.2441142 -0.02934285 0.3113005 0.2441142 -0.03925039 0.3113005 0.2441142 -0.05087609 0.3113005 0.2441142 -0.06429595 0.3113005 0.2441142 -0.07958143 0.3113005 0.2441142 -0.0968001 0.3113005 0.2441142 -0.1160161 0.3113005 0.2441142 -0.1372908 0.3113005 0.2441142 -0.1606827 0.3113005 0.2441142 -0.1862481 0.3113005 0.2441142 -0.2140411 0.3113005 0.2441142 -0.2441142 0.3113005 0.2441142 -0.2765176 0.3113005 0.2441142 -0.3113005 0.3113005 0.2441142 -0.3485102 0.3113005 0.2441142 -0.388193 0.3113005 0.2441142 -0.4303934 0.3113005 0.2441142 -0.4751555 0.3113005 0.2441142 -0.5225216 0.3113005 0.2441142 -0.5725335 0.3113005 0.2441142 -0.6252316 0.3113005 0.2441142 -0.6806558 0.3113005 0.2441142 -0.7388448 0.3113005 0.2441142 -0.7998369 0.3113005 0.2441142 -0.8636691 0.3113005 0.2441142 -0.9303782 0.3113005 0.2441142 -1 0.3113005 0.2441142 -0 0.3485102 0.2441142 -0.002418731 0.3485102 0.2441142 -0.005155668 0.3485102 0.2441142 -0.009080105 0.3485102 0.2441142 -0.01434988 0.3485102 0.2441142 -0.02107202 0.3485102 0.2441142 -0.02934285 0.3485102 0.2441142 -0.03925039 0.3485102 0.2441142 -0.05087609 0.3485102 0.2441142 -0.06429595 0.3485102 0.2441142 -0.07958143 0.3485102 0.2441142 -0.0968001 0.3485102 0.2441142 -0.1160161 0.3485102 0.2441142 -0.1372908 0.3485102 0.2441142 -0.1606827 0.3485102 0.2441142 -0.1862481 0.3485102 0.2441142 -0.2140411 0.3485102 0.2441142 -0.2441142 0.3485102 0.2441142 -0.2765176 0.3485102 0.2441142 -0.3113005 0.3485102 0.2441142 -0.3485102 0.3485102 0.2441142 -0.388193 0.3485102 0.2441142 -0.4303934 0.3485102 0.2441142 -0.4751555 0.3485102 0.2441142 -0.5225216 0.3485102 0.2441142 -0.5725335 0.3485102 0.2441142 -0.6252316 0.3485102 0.2441142 -0.6806558 0.3485102 0.2441142 -0.7388448 0.3485102 0.2441142 -0.7998369 0.3485102 0.2441142 -0.8636691 0.3485102 0.2441142 -0.9303782 0.3485102 0.2441142 -1 0.3485102 0.2441142 -0 0.388193 0.2441142 -0.002418731 0.388193 0.2441142 -0.005155668 0.388193 0.2441142 -0.009080105 0.388193 0.2441142 -0.01434988 0.388193 0.2441142 -0.02107202 0.388193 0.2441142 -0.02934285 0.388193 0.2441142 -0.03925039 0.388193 0.2441142 -0.05087609 0.388193 0.2441142 -0.06429595 0.388193 0.2441142 -0.07958143 0.388193 0.2441142 -0.0968001 0.388193 0.2441142 -0.1160161 0.388193 0.2441142 -0.1372908 0.388193 0.2441142 -0.1606827 0.388193 0.2441142 -0.1862481 0.388193 0.2441142 -0.2140411 0.388193 0.2441142 -0.2441142 0.388193 0.2441142 -0.2765176 0.388193 0.2441142 -0.3113005 0.388193 0.2441142 -0.3485102 0.388193 0.2441142 -0.388193 0.388193 0.2441142 -0.4303934 0.388193 0.2441142 -0.4751555 0.388193 0.2441142 -0.5225216 0.388193 0.2441142 -0.5725335 0.388193 0.2441142 -0.6252316 0.388193 0.2441142 -0.6806558 0.388193 0.2441142 -0.7388448 0.388193 0.2441142 -0.7998369 0.388193 0.2441142 -0.8636691 0.388193 0.2441142 -0.9303782 0.388193 0.2441142 -1 0.388193 0.2441142 -0 0.4303934 0.2441142 -0.002418731 0.4303934 0.2441142 -0.005155668 0.4303934 0.2441142 -0.009080105 0.4303934 0.2441142 -0.01434988 0.4303934 0.2441142 -0.02107202 0.4303934 0.2441142 -0.02934285 0.4303934 0.2441142 -0.03925039 0.4303934 0.2441142 -0.05087609 0.4303934 0.2441142 -0.06429595 0.4303934 0.2441142 -0.07958143 0.4303934 0.2441142 -0.0968001 0.4303934 0.2441142 -0.1160161 0.4303934 0.2441142 -0.1372908 0.4303934 0.2441142 -0.1606827 0.4303934 0.2441142 -0.1862481 0.4303934 0.2441142 -0.2140411 0.4303934 0.2441142 -0.2441142 0.4303934 0.2441142 -0.2765176 0.4303934 0.2441142 -0.3113005 0.4303934 0.2441142 -0.3485102 0.4303934 0.2441142 -0.388193 0.4303934 0.2441142 -0.4303934 0.4303934 0.2441142 -0.4751555 0.4303934 0.2441142 -0.5225216 0.4303934 0.2441142 -0.5725335 0.4303934 0.2441142 -0.6252316 0.4303934 0.2441142 -0.6806558 0.4303934 0.2441142 -0.7388448 0.4303934 0.2441142 -0.7998369 0.4303934 0.2441142 -0.8636691 0.4303934 0.2441142 -0.9303782 0.4303934 0.2441142 -1 0.4303934 0.2441142 -0 0.4751555 0.2441142 -0.002418731 0.4751555 0.2441142 -0.005155668 0.4751555 0.2441142 -0.009080105 0.4751555 0.2441142 -0.01434988 0.4751555 0.2441142 -0.02107202 0.4751555 0.2441142 -0.02934285 0.4751555 0.2441142 -0.03925039 0.4751555 0.2441142 -0.05087609 0.4751555 0.2441142 -0.06429595 0.4751555 0.2441142 -0.07958143 0.4751555 0.2441142 -0.0968001 0.4751555 0.2441142 -0.1160161 0.4751555 0.2441142 -0.1372908 0.4751555 0.2441142 -0.1606827 0.4751555 0.2441142 -0.1862481 0.4751555 0.2441142 -0.2140411 0.4751555 0.2441142 -0.2441142 0.4751555 0.2441142 -0.2765176 0.4751555 0.2441142 -0.3113005 0.4751555 0.2441142 -0.3485102 0.4751555 0.2441142 -0.388193 0.4751555 0.2441142 -0.4303934 0.4751555 0.2441142 -0.4751555 0.4751555 0.2441142 -0.5225216 0.4751555 0.2441142 -0.5725335 0.4751555 0.2441142 -0.6252316 0.4751555 0.2441142 -0.6806558 0.4751555 0.2441142 -0.7388448 0.4751555 0.2441142 -0.7998369 0.4751555 0.2441142 -0.8636691 0.4751555 0.2441142 -0.9303782 0.4751555 0.2441142 -1 0.4751555 0.2441142 -0 0.5225216 0.2441142 -0.002418731 0.5225216 0.2441142 -0.005155668 0.5225216 0.2441142 -0.009080105 0.5225216 0.2441142 -0.01434988 0.5225216 0.2441142 -0.02107202 0.5225216 0.2441142 -0.02934285 0.5225216 0.2441142 -0.03925039 0.5225216 0.2441142 -0.05087609 0.5225216 0.2441142 -0.06429595 0.5225216 0.2441142 -0.07958143 0.5225216 0.2441142 -0.0968001 0.5225216 0.2441142 -0.1160161 0.5225216 0.2441142 -0.1372908 0.5225216 0.2441142 -0.1606827 0.5225216 0.2441142 -0.1862481 0.5225216 0.2441142 -0.2140411 0.5225216 0.2441142 -0.2441142 0.5225216 0.2441142 -0.2765176 0.5225216 0.2441142 -0.3113005 0.5225216 0.2441142 -0.3485102 0.5225216 0.2441142 -0.388193 0.5225216 0.2441142 -0.4303934 0.5225216 0.2441142 -0.4751555 0.5225216 0.2441142 -0.5225216 0.5225216 0.2441142 -0.5725335 0.5225216 0.2441142 -0.6252316 0.5225216 0.2441142 -0.6806558 0.5225216 0.2441142 -0.7388448 0.5225216 0.2441142 -0.7998369 0.5225216 0.2441142 -0.8636691 0.5225216 0.2441142 -0.9303782 0.5225216 0.2441142 -1 0.5225216 0.2441142 -0 0.5725335 0.2441142 -0.002418731 0.5725335 0.2441142 -0.005155668 0.5725335 0.2441142 -0.009080105 0.5725335 0.2441142 -0.01434988 0.5725335 0.2441142 -0.02107202 0.5725335 0.2441142 -0.02934285 0.5725335 0.2441142 -0.03925039 0.5725335 0.2441142 -0.05087609 0.5725335 0.2441142 -0.06429595 0.5725335 0.2441142 -0.07958143 0.5725335 0.2441142 -0.0968001 0.5725335 0.2441142 -0.1160161 0.5725335 0.2441142 -0.1372908 0.5725335 0.2441142 -0.1606827 0.5725335 0.2441142 -0.1862481 0.5725335 0.2441142 -0.2140411 0.5725335 0.2441142 -0.2441142 0.5725335 0.2441142 -0.2765176 0.5725335 0.2441142 -0.3113005 0.5725335 0.2441142 -0.3485102 0.5725335 0.2441142 -0.388193 0.5725335 0.2441142 -0.4303934 0.5725335 0.2441142 -0.4751555 0.5725335 0.2441142 -0.5225216 0.5725335 0.2441142 -0.5725335 0.5725335 0.2441142 -0.6252316 0.5725335 0.2441142 -0.6806558 0.5725335 0.2441142 -0.7388448 0.5725335 0.2441142 -0.7998369 0.5725335 0.2441142 -0.8636691 0.5725335 0.2441142 -0.9303782 0.5725335 0.2441142 -1 0.5725335 0.2441142 -0 0.6252316 0.2441142 -0.002418731 0.6252316 0.2441142 -0.005155668 0.6252316 0.2441142 -0.009080105 0.6252316 0.2441142 -0.01434988 0.6252316 0.2441142 -0.02107202 0.6252316 0.2441142 -0.02934285 0.6252316 0.2441142 -0.03925039 0.6252316 0.2441142 -0.05087609 0.6252316 0.2441142 -0.06429595 0.6252316 0.2441142 -0.07958143 0.6252316 0.2441142 -0.0968001 0.6252316 0.2441142 -0.1160161 0.6252316 0.2441142 -0.1372908 0.6252316 0.2441142 -0.1606827 0.6252316 0.2441142 -0.1862481 0.6252316 0.2441142 -0.2140411 0.6252316 0.2441142 -0.2441142 0.6252316 0.2441142 -0.2765176 0.6252316 0.2441142 -0.3113005 0.6252316 0.2441142 -0.3485102 0.6252316 0.2441142 -0.388193 0.6252316 0.2441142 -0.4303934 0.6252316 0.2441142 -0.4751555 0.6252316 0.2441142 -0.5225216 0.6252316 0.2441142 -0.5725335 0.6252316 0.2441142 -0.6252316 0.6252316 0.2441142 -0.6806558 0.6252316 0.2441142 -0.7388448 0.6252316 0.2441142 -0.7998369 0.6252316 0.2441142 -0.8636691 0.6252316 0.2441142 -0.9303782 0.6252316 0.2441142 -1 0.6252316 0.2441142 -0 0.6806558 0.2441142 -0.002418731 0.6806558 0.2441142 -0.005155668 0.6806558 0.2441142 -0.009080105 0.6806558 0.2441142 -0.01434988 0.6806558 0.2441142 -0.02107202 0.6806558 0.2441142 -0.02934285 0.6806558 0.2441142 -0.03925039 0.6806558 0.2441142 -0.05087609 0.6806558 0.2441142 -0.06429595 0.6806558 0.2441142 -0.07958143 0.6806558 0.2441142 -0.0968001 0.6806558 0.2441142 -0.1160161 0.6806558 0.2441142 -0.1372908 0.6806558 0.2441142 -0.1606827 0.6806558 0.2441142 -0.1862481 0.6806558 0.2441142 -0.2140411 0.6806558 0.2441142 -0.2441142 0.6806558 0.2441142 -0.2765176 0.6806558 0.2441142 -0.3113005 0.6806558 0.2441142 -0.3485102 0.6806558 0.2441142 -0.388193 0.6806558 0.2441142 -0.4303934 0.6806558 0.2441142 -0.4751555 0.6806558 0.2441142 -0.5225216 0.6806558 0.2441142 -0.5725335 0.6806558 0.2441142 -0.6252316 0.6806558 0.2441142 -0.6806558 0.6806558 0.2441142 -0.7388448 0.6806558 0.2441142 -0.7998369 0.6806558 0.2441142 -0.8636691 0.6806558 0.2441142 -0.9303782 0.6806558 0.2441142 -1 0.6806558 0.2441142 -0 0.7388448 0.2441142 -0.002418731 0.7388448 0.2441142 -0.005155668 0.7388448 0.2441142 -0.009080105 0.7388448 0.2441142 -0.01434988 0.7388448 0.2441142 -0.02107202 0.7388448 0.2441142 -0.02934285 0.7388448 0.2441142 -0.03925039 0.7388448 0.2441142 -0.05087609 0.7388448 0.2441142 -0.06429595 0.7388448 0.2441142 -0.07958143 0.7388448 0.2441142 -0.0968001 0.7388448 0.2441142 -0.1160161 0.7388448 0.2441142 -0.1372908 0.7388448 0.2441142 -0.1606827 0.7388448 0.2441142 -0.1862481 0.7388448 0.2441142 -0.2140411 0.7388448 0.2441142 -0.2441142 0.7388448 0.2441142 -0.2765176 0.7388448 0.2441142 -0.3113005 0.7388448 0.2441142 -0.3485102 0.7388448 0.2441142 -0.388193 0.7388448 0.2441142 -0.4303934 0.7388448 0.2441142 -0.4751555 0.7388448 0.2441142 -0.5225216 0.7388448 0.2441142 -0.5725335 0.7388448 0.2441142 -0.6252316 0.7388448 0.2441142 -0.6806558 0.7388448 0.2441142 -0.7388448 0.7388448 0.2441142 -0.7998369 0.7388448 0.2441142 -0.8636691 0.7388448 0.2441142 -0.9303782 0.7388448 0.2441142 -1 0.7388448 0.2441142 -0 0.7998369 0.2441142 -0.002418731 0.7998369 0.2441142 -0.005155668 0.7998369 0.2441142 -0.009080105 0.7998369 0.2441142 -0.01434988 0.7998369 0.2441142 -0.02107202 0.7998369 0.2441142 -0.02934285 0.7998369 0.2441142 -0.03925039 0.7998369 0.2441142 -0.05087609 0.7998369 0.2441142 -0.06429595 0.7998369 0.2441142 -0.07958143 0.7998369 0.2441142 -0.0968001 0.7998369 0.2441142 -0.1160161 0.7998369 0.2441142 -0.1372908 0.7998369 0.2441142 -0.1606827 0.7998369 0.2441142 -0.1862481 0.7998369 0.2441142 -0.2140411 0.7998369 0.2441142 -0.2441142 0.7998369 0.2441142 -0.2765176 0.7998369 0.2441142 -0.3113005 0.7998369 0.2441142 -0.3485102 0.7998369 0.2441142 -0.388193 0.7998369 0.2441142 -0.4303934 0.7998369 0.2441142 -0.4751555 0.7998369 0.2441142 -0.5225216 0.7998369 0.2441142 -0.5725335 0.7998369 0.2441142 -0.6252316 0.7998369 0.2441142 -0.6806558 0.7998369 0.2441142 -0.7388448 0.7998369 0.2441142 -0.7998369 0.7998369 0.2441142 -0.8636691 0.7998369 0.2441142 -0.9303782 0.7998369 0.2441142 -1 0.7998369 0.2441142 -0 0.8636691 0.2441142 -0.002418731 0.8636691 0.2441142 -0.005155668 0.8636691 0.2441142 -0.009080105 0.8636691 0.2441142 -0.01434988 0.8636691 0.2441142 -0.02107202 0.8636691 0.2441142 -0.02934285 0.8636691 0.2441142 -0.03925039 0.8636691 0.2441142 -0.05087609 0.8636691 0.2441142 -0.06429595 0.8636691 0.2441142 -0.07958143 0.8636691 0.2441142 -0.0968001 0.8636691 0.2441142 -0.1160161 0.8636691 0.2441142 -0.1372908 0.8636691 0.2441142 -0.1606827 0.8636691 0.2441142 -0.1862481 0.8636691 0.2441142 -0.2140411 0.8636691 0.2441142 -0.2441142 0.8636691 0.2441142 -0.2765176 0.8636691 0.2441142 -0.3113005 0.8636691 0.2441142 -0.3485102 0.8636691 0.2441142 -0.388193 0.8636691 0.2441142 -0.4303934 0.8636691 0.2441142 -0.4751555 0.8636691 0.2441142 -0.5225216 0.8636691 0.2441142 -0.5725335 0.8636691 0.2441142 -0.6252316 0.8636691 0.2441142 -0.6806558 0.8636691 0.2441142 -0.7388448 0.8636691 0.2441142 -0.7998369 0.8636691 0.2441142 -0.8636691 0.8636691 0.2441142 -0.9303782 0.8636691 0.2441142 -1 0.8636691 0.2441142 -0 0.9303782 0.2441142 -0.002418731 0.9303782 0.2441142 -0.005155668 0.9303782 0.2441142 -0.009080105 0.9303782 0.2441142 -0.01434988 0.9303782 0.2441142 -0.02107202 0.9303782 0.2441142 -0.02934285 0.9303782 0.2441142 -0.03925039 0.9303782 0.2441142 -0.05087609 0.9303782 0.2441142 -0.06429595 0.9303782 0.2441142 -0.07958143 0.9303782 0.2441142 -0.0968001 0.9303782 0.2441142 -0.1160161 0.9303782 0.2441142 -0.1372908 0.9303782 0.2441142 -0.1606827 0.9303782 0.2441142 -0.1862481 0.9303782 0.2441142 -0.2140411 0.9303782 0.2441142 -0.2441142 0.9303782 0.2441142 -0.2765176 0.9303782 0.2441142 -0.3113005 0.9303782 0.2441142 -0.3485102 0.9303782 0.2441142 -0.388193 0.9303782 0.2441142 -0.4303934 0.9303782 0.2441142 -0.4751555 0.9303782 0.2441142 -0.5225216 0.9303782 0.2441142 -0.5725335 0.9303782 0.2441142 -0.6252316 0.9303782 0.2441142 -0.6806558 0.9303782 0.2441142 -0.7388448 0.9303782 0.2441142 -0.7998369 0.9303782 0.2441142 -0.8636691 0.9303782 0.2441142 -0.9303782 0.9303782 0.2441142 -1 0.9303782 0.2441142 -0 1 0.2441142 -0.002418731 1 0.2441142 -0.005155668 1 0.2441142 -0.009080105 1 0.2441142 -0.01434988 1 0.2441142 -0.02107202 1 0.2441142 -0.02934285 1 0.2441142 -0.03925039 1 0.2441142 -0.05087609 1 0.2441142 -0.06429595 1 0.2441142 -0.07958143 1 0.2441142 -0.0968001 1 0.2441142 -0.1160161 1 0.2441142 -0.1372908 1 0.2441142 -0.1606827 1 0.2441142 -0.1862481 1 0.2441142 -0.2140411 1 0.2441142 -0.2441142 1 0.2441142 -0.2765176 1 0.2441142 -0.3113005 1 0.2441142 -0.3485102 1 0.2441142 -0.388193 1 0.2441142 -0.4303934 1 0.2441142 -0.4751555 1 0.2441142 -0.5225216 1 0.2441142 -0.5725335 1 0.2441142 -0.6252316 1 0.2441142 -0.6806558 1 0.2441142 -0.7388448 1 0.2441142 -0.7998369 1 0.2441142 -0.8636691 1 0.2441142 -0.9303782 1 0.2441142 -1 1 0.2441142 -0 0 0.2765176 -0.002418731 0 0.2765176 -0.005155668 0 0.2765176 -0.009080105 0 0.2765176 -0.01434988 0 0.2765176 -0.02107202 0 0.2765176 -0.02934285 0 0.2765176 -0.03925039 0 0.2765176 -0.05087609 0 0.2765176 -0.06429595 0 0.2765176 -0.07958143 0 0.2765176 -0.0968001 0 0.2765176 -0.1160161 0 0.2765176 -0.1372908 0 0.2765176 -0.1606827 0 0.2765176 -0.1862481 0 0.2765176 -0.2140411 0 0.2765176 -0.2441142 0 0.2765176 -0.2765176 0 0.2765176 -0.3113005 0 0.2765176 -0.3485102 0 0.2765176 -0.388193 0 0.2765176 -0.4303934 0 0.2765176 -0.4751555 0 0.2765176 -0.5225216 0 0.2765176 -0.5725335 0 0.2765176 -0.6252316 0 0.2765176 -0.6806558 0 0.2765176 -0.7388448 0 0.2765176 -0.7998369 0 0.2765176 -0.8636691 0 0.2765176 -0.9303782 0 0.2765176 -1 0 0.2765176 -0 0.002418731 0.2765176 -0.002418731 0.002418731 0.2765176 -0.005155668 0.002418731 0.2765176 -0.009080105 0.002418731 0.2765176 -0.01434988 0.002418731 0.2765176 -0.02107202 0.002418731 0.2765176 -0.02934285 0.002418731 0.2765176 -0.03925039 0.002418731 0.2765176 -0.05087609 0.002418731 0.2765176 -0.06429595 0.002418731 0.2765176 -0.07958143 0.002418731 0.2765176 -0.0968001 0.002418731 0.2765176 -0.1160161 0.002418731 0.2765176 -0.1372908 0.002418731 0.2765176 -0.1606827 0.002418731 0.2765176 -0.1862481 0.002418731 0.2765176 -0.2140411 0.002418731 0.2765176 -0.2441142 0.002418731 0.2765176 -0.2765176 0.002418731 0.2765176 -0.3113005 0.002418731 0.2765176 -0.3485102 0.002418731 0.2765176 -0.388193 0.002418731 0.2765176 -0.4303934 0.002418731 0.2765176 -0.4751555 0.002418731 0.2765176 -0.5225216 0.002418731 0.2765176 -0.5725335 0.002418731 0.2765176 -0.6252316 0.002418731 0.2765176 -0.6806558 0.002418731 0.2765176 -0.7388448 0.002418731 0.2765176 -0.7998369 0.002418731 0.2765176 -0.8636691 0.002418731 0.2765176 -0.9303782 0.002418731 0.2765176 -1 0.002418731 0.2765176 -0 0.005155668 0.2765176 -0.002418731 0.005155668 0.2765176 -0.005155668 0.005155668 0.2765176 -0.009080105 0.005155668 0.2765176 -0.01434988 0.005155668 0.2765176 -0.02107202 0.005155668 0.2765176 -0.02934285 0.005155668 0.2765176 -0.03925039 0.005155668 0.2765176 -0.05087609 0.005155668 0.2765176 -0.06429595 0.005155668 0.2765176 -0.07958143 0.005155668 0.2765176 -0.0968001 0.005155668 0.2765176 -0.1160161 0.005155668 0.2765176 -0.1372908 0.005155668 0.2765176 -0.1606827 0.005155668 0.2765176 -0.1862481 0.005155668 0.2765176 -0.2140411 0.005155668 0.2765176 -0.2441142 0.005155668 0.2765176 -0.2765176 0.005155668 0.2765176 -0.3113005 0.005155668 0.2765176 -0.3485102 0.005155668 0.2765176 -0.388193 0.005155668 0.2765176 -0.4303934 0.005155668 0.2765176 -0.4751555 0.005155668 0.2765176 -0.5225216 0.005155668 0.2765176 -0.5725335 0.005155668 0.2765176 -0.6252316 0.005155668 0.2765176 -0.6806558 0.005155668 0.2765176 -0.7388448 0.005155668 0.2765176 -0.7998369 0.005155668 0.2765176 -0.8636691 0.005155668 0.2765176 -0.9303782 0.005155668 0.2765176 -1 0.005155668 0.2765176 -0 0.009080105 0.2765176 -0.002418731 0.009080105 0.2765176 -0.005155668 0.009080105 0.2765176 -0.009080105 0.009080105 0.2765176 -0.01434988 0.009080105 0.2765176 -0.02107202 0.009080105 0.2765176 -0.02934285 0.009080105 0.2765176 -0.03925039 0.009080105 0.2765176 -0.05087609 0.009080105 0.2765176 -0.06429595 0.009080105 0.2765176 -0.07958143 0.009080105 0.2765176 -0.0968001 0.009080105 0.2765176 -0.1160161 0.009080105 0.2765176 -0.1372908 0.009080105 0.2765176 -0.1606827 0.009080105 0.2765176 -0.1862481 0.009080105 0.2765176 -0.2140411 0.009080105 0.2765176 -0.2441142 0.009080105 0.2765176 -0.2765176 0.009080105 0.2765176 -0.3113005 0.009080105 0.2765176 -0.3485102 0.009080105 0.2765176 -0.388193 0.009080105 0.2765176 -0.4303934 0.009080105 0.2765176 -0.4751555 0.009080105 0.2765176 -0.5225216 0.009080105 0.2765176 -0.5725335 0.009080105 0.2765176 -0.6252316 0.009080105 0.2765176 -0.6806558 0.009080105 0.2765176 -0.7388448 0.009080105 0.2765176 -0.7998369 0.009080105 0.2765176 -0.8636691 0.009080105 0.2765176 -0.9303782 0.009080105 0.2765176 -1 0.009080105 0.2765176 -0 0.01434988 0.2765176 -0.002418731 0.01434988 0.2765176 -0.005155668 0.01434988 0.2765176 -0.009080105 0.01434988 0.2765176 -0.01434988 0.01434988 0.2765176 -0.02107202 0.01434988 0.2765176 -0.02934285 0.01434988 0.2765176 -0.03925039 0.01434988 0.2765176 -0.05087609 0.01434988 0.2765176 -0.06429595 0.01434988 0.2765176 -0.07958143 0.01434988 0.2765176 -0.0968001 0.01434988 0.2765176 -0.1160161 0.01434988 0.2765176 -0.1372908 0.01434988 0.2765176 -0.1606827 0.01434988 0.2765176 -0.1862481 0.01434988 0.2765176 -0.2140411 0.01434988 0.2765176 -0.2441142 0.01434988 0.2765176 -0.2765176 0.01434988 0.2765176 -0.3113005 0.01434988 0.2765176 -0.3485102 0.01434988 0.2765176 -0.388193 0.01434988 0.2765176 -0.4303934 0.01434988 0.2765176 -0.4751555 0.01434988 0.2765176 -0.5225216 0.01434988 0.2765176 -0.5725335 0.01434988 0.2765176 -0.6252316 0.01434988 0.2765176 -0.6806558 0.01434988 0.2765176 -0.7388448 0.01434988 0.2765176 -0.7998369 0.01434988 0.2765176 -0.8636691 0.01434988 0.2765176 -0.9303782 0.01434988 0.2765176 -1 0.01434988 0.2765176 -0 0.02107202 0.2765176 -0.002418731 0.02107202 0.2765176 -0.005155668 0.02107202 0.2765176 -0.009080105 0.02107202 0.2765176 -0.01434988 0.02107202 0.2765176 -0.02107202 0.02107202 0.2765176 -0.02934285 0.02107202 0.2765176 -0.03925039 0.02107202 0.2765176 -0.05087609 0.02107202 0.2765176 -0.06429595 0.02107202 0.2765176 -0.07958143 0.02107202 0.2765176 -0.0968001 0.02107202 0.2765176 -0.1160161 0.02107202 0.2765176 -0.1372908 0.02107202 0.2765176 -0.1606827 0.02107202 0.2765176 -0.1862481 0.02107202 0.2765176 -0.2140411 0.02107202 0.2765176 -0.2441142 0.02107202 0.2765176 -0.2765176 0.02107202 0.2765176 -0.3113005 0.02107202 0.2765176 -0.3485102 0.02107202 0.2765176 -0.388193 0.02107202 0.2765176 -0.4303934 0.02107202 0.2765176 -0.4751555 0.02107202 0.2765176 -0.5225216 0.02107202 0.2765176 -0.5725335 0.02107202 0.2765176 -0.6252316 0.02107202 0.2765176 -0.6806558 0.02107202 0.2765176 -0.7388448 0.02107202 0.2765176 -0.7998369 0.02107202 0.2765176 -0.8636691 0.02107202 0.2765176 -0.9303782 0.02107202 0.2765176 -1 0.02107202 0.2765176 -0 0.02934285 0.2765176 -0.002418731 0.02934285 0.2765176 -0.005155668 0.02934285 0.2765176 -0.009080105 0.02934285 0.2765176 -0.01434988 0.02934285 0.2765176 -0.02107202 0.02934285 0.2765176 -0.02934285 0.02934285 0.2765176 -0.03925039 0.02934285 0.2765176 -0.05087609 0.02934285 0.2765176 -0.06429595 0.02934285 0.2765176 -0.07958143 0.02934285 0.2765176 -0.0968001 0.02934285 0.2765176 -0.1160161 0.02934285 0.2765176 -0.1372908 0.02934285 0.2765176 -0.1606827 0.02934285 0.2765176 -0.1862481 0.02934285 0.2765176 -0.2140411 0.02934285 0.2765176 -0.2441142 0.02934285 0.2765176 -0.2765176 0.02934285 0.2765176 -0.3113005 0.02934285 0.2765176 -0.3485102 0.02934285 0.2765176 -0.388193 0.02934285 0.2765176 -0.4303934 0.02934285 0.2765176 -0.4751555 0.02934285 0.2765176 -0.5225216 0.02934285 0.2765176 -0.5725335 0.02934285 0.2765176 -0.6252316 0.02934285 0.2765176 -0.6806558 0.02934285 0.2765176 -0.7388448 0.02934285 0.2765176 -0.7998369 0.02934285 0.2765176 -0.8636691 0.02934285 0.2765176 -0.9303782 0.02934285 0.2765176 -1 0.02934285 0.2765176 -0 0.03925039 0.2765176 -0.002418731 0.03925039 0.2765176 -0.005155668 0.03925039 0.2765176 -0.009080105 0.03925039 0.2765176 -0.01434988 0.03925039 0.2765176 -0.02107202 0.03925039 0.2765176 -0.02934285 0.03925039 0.2765176 -0.03925039 0.03925039 0.2765176 -0.05087609 0.03925039 0.2765176 -0.06429595 0.03925039 0.2765176 -0.07958143 0.03925039 0.2765176 -0.0968001 0.03925039 0.2765176 -0.1160161 0.03925039 0.2765176 -0.1372908 0.03925039 0.2765176 -0.1606827 0.03925039 0.2765176 -0.1862481 0.03925039 0.2765176 -0.2140411 0.03925039 0.2765176 -0.2441142 0.03925039 0.2765176 -0.2765176 0.03925039 0.2765176 -0.3113005 0.03925039 0.2765176 -0.3485102 0.03925039 0.2765176 -0.388193 0.03925039 0.2765176 -0.4303934 0.03925039 0.2765176 -0.4751555 0.03925039 0.2765176 -0.5225216 0.03925039 0.2765176 -0.5725335 0.03925039 0.2765176 -0.6252316 0.03925039 0.2765176 -0.6806558 0.03925039 0.2765176 -0.7388448 0.03925039 0.2765176 -0.7998369 0.03925039 0.2765176 -0.8636691 0.03925039 0.2765176 -0.9303782 0.03925039 0.2765176 -1 0.03925039 0.2765176 -0 0.05087609 0.2765176 -0.002418731 0.05087609 0.2765176 -0.005155668 0.05087609 0.2765176 -0.009080105 0.05087609 0.2765176 -0.01434988 0.05087609 0.2765176 -0.02107202 0.05087609 0.2765176 -0.02934285 0.05087609 0.2765176 -0.03925039 0.05087609 0.2765176 -0.05087609 0.05087609 0.2765176 -0.06429595 0.05087609 0.2765176 -0.07958143 0.05087609 0.2765176 -0.0968001 0.05087609 0.2765176 -0.1160161 0.05087609 0.2765176 -0.1372908 0.05087609 0.2765176 -0.1606827 0.05087609 0.2765176 -0.1862481 0.05087609 0.2765176 -0.2140411 0.05087609 0.2765176 -0.2441142 0.05087609 0.2765176 -0.2765176 0.05087609 0.2765176 -0.3113005 0.05087609 0.2765176 -0.3485102 0.05087609 0.2765176 -0.388193 0.05087609 0.2765176 -0.4303934 0.05087609 0.2765176 -0.4751555 0.05087609 0.2765176 -0.5225216 0.05087609 0.2765176 -0.5725335 0.05087609 0.2765176 -0.6252316 0.05087609 0.2765176 -0.6806558 0.05087609 0.2765176 -0.7388448 0.05087609 0.2765176 -0.7998369 0.05087609 0.2765176 -0.8636691 0.05087609 0.2765176 -0.9303782 0.05087609 0.2765176 -1 0.05087609 0.2765176 -0 0.06429595 0.2765176 -0.002418731 0.06429595 0.2765176 -0.005155668 0.06429595 0.2765176 -0.009080105 0.06429595 0.2765176 -0.01434988 0.06429595 0.2765176 -0.02107202 0.06429595 0.2765176 -0.02934285 0.06429595 0.2765176 -0.03925039 0.06429595 0.2765176 -0.05087609 0.06429595 0.2765176 -0.06429595 0.06429595 0.2765176 -0.07958143 0.06429595 0.2765176 -0.0968001 0.06429595 0.2765176 -0.1160161 0.06429595 0.2765176 -0.1372908 0.06429595 0.2765176 -0.1606827 0.06429595 0.2765176 -0.1862481 0.06429595 0.2765176 -0.2140411 0.06429595 0.2765176 -0.2441142 0.06429595 0.2765176 -0.2765176 0.06429595 0.2765176 -0.3113005 0.06429595 0.2765176 -0.3485102 0.06429595 0.2765176 -0.388193 0.06429595 0.2765176 -0.4303934 0.06429595 0.2765176 -0.4751555 0.06429595 0.2765176 -0.5225216 0.06429595 0.2765176 -0.5725335 0.06429595 0.2765176 -0.6252316 0.06429595 0.2765176 -0.6806558 0.06429595 0.2765176 -0.7388448 0.06429595 0.2765176 -0.7998369 0.06429595 0.2765176 -0.8636691 0.06429595 0.2765176 -0.9303782 0.06429595 0.2765176 -1 0.06429595 0.2765176 -0 0.07958143 0.2765176 -0.002418731 0.07958143 0.2765176 -0.005155668 0.07958143 0.2765176 -0.009080105 0.07958143 0.2765176 -0.01434988 0.07958143 0.2765176 -0.02107202 0.07958143 0.2765176 -0.02934285 0.07958143 0.2765176 -0.03925039 0.07958143 0.2765176 -0.05087609 0.07958143 0.2765176 -0.06429595 0.07958143 0.2765176 -0.07958143 0.07958143 0.2765176 -0.0968001 0.07958143 0.2765176 -0.1160161 0.07958143 0.2765176 -0.1372908 0.07958143 0.2765176 -0.1606827 0.07958143 0.2765176 -0.1862481 0.07958143 0.2765176 -0.2140411 0.07958143 0.2765176 -0.2441142 0.07958143 0.2765176 -0.2765176 0.07958143 0.2765176 -0.3113005 0.07958143 0.2765176 -0.3485102 0.07958143 0.2765176 -0.388193 0.07958143 0.2765176 -0.4303934 0.07958143 0.2765176 -0.4751555 0.07958143 0.2765176 -0.5225216 0.07958143 0.2765176 -0.5725335 0.07958143 0.2765176 -0.6252316 0.07958143 0.2765176 -0.6806558 0.07958143 0.2765176 -0.7388448 0.07958143 0.2765176 -0.7998369 0.07958143 0.2765176 -0.8636691 0.07958143 0.2765176 -0.9303782 0.07958143 0.2765176 -1 0.07958143 0.2765176 -0 0.0968001 0.2765176 -0.002418731 0.0968001 0.2765176 -0.005155668 0.0968001 0.2765176 -0.009080105 0.0968001 0.2765176 -0.01434988 0.0968001 0.2765176 -0.02107202 0.0968001 0.2765176 -0.02934285 0.0968001 0.2765176 -0.03925039 0.0968001 0.2765176 -0.05087609 0.0968001 0.2765176 -0.06429595 0.0968001 0.2765176 -0.07958143 0.0968001 0.2765176 -0.0968001 0.0968001 0.2765176 -0.1160161 0.0968001 0.2765176 -0.1372908 0.0968001 0.2765176 -0.1606827 0.0968001 0.2765176 -0.1862481 0.0968001 0.2765176 -0.2140411 0.0968001 0.2765176 -0.2441142 0.0968001 0.2765176 -0.2765176 0.0968001 0.2765176 -0.3113005 0.0968001 0.2765176 -0.3485102 0.0968001 0.2765176 -0.388193 0.0968001 0.2765176 -0.4303934 0.0968001 0.2765176 -0.4751555 0.0968001 0.2765176 -0.5225216 0.0968001 0.2765176 -0.5725335 0.0968001 0.2765176 -0.6252316 0.0968001 0.2765176 -0.6806558 0.0968001 0.2765176 -0.7388448 0.0968001 0.2765176 -0.7998369 0.0968001 0.2765176 -0.8636691 0.0968001 0.2765176 -0.9303782 0.0968001 0.2765176 -1 0.0968001 0.2765176 -0 0.1160161 0.2765176 -0.002418731 0.1160161 0.2765176 -0.005155668 0.1160161 0.2765176 -0.009080105 0.1160161 0.2765176 -0.01434988 0.1160161 0.2765176 -0.02107202 0.1160161 0.2765176 -0.02934285 0.1160161 0.2765176 -0.03925039 0.1160161 0.2765176 -0.05087609 0.1160161 0.2765176 -0.06429595 0.1160161 0.2765176 -0.07958143 0.1160161 0.2765176 -0.0968001 0.1160161 0.2765176 -0.1160161 0.1160161 0.2765176 -0.1372908 0.1160161 0.2765176 -0.1606827 0.1160161 0.2765176 -0.1862481 0.1160161 0.2765176 -0.2140411 0.1160161 0.2765176 -0.2441142 0.1160161 0.2765176 -0.2765176 0.1160161 0.2765176 -0.3113005 0.1160161 0.2765176 -0.3485102 0.1160161 0.2765176 -0.388193 0.1160161 0.2765176 -0.4303934 0.1160161 0.2765176 -0.4751555 0.1160161 0.2765176 -0.5225216 0.1160161 0.2765176 -0.5725335 0.1160161 0.2765176 -0.6252316 0.1160161 0.2765176 -0.6806558 0.1160161 0.2765176 -0.7388448 0.1160161 0.2765176 -0.7998369 0.1160161 0.2765176 -0.8636691 0.1160161 0.2765176 -0.9303782 0.1160161 0.2765176 -1 0.1160161 0.2765176 -0 0.1372908 0.2765176 -0.002418731 0.1372908 0.2765176 -0.005155668 0.1372908 0.2765176 -0.009080105 0.1372908 0.2765176 -0.01434988 0.1372908 0.2765176 -0.02107202 0.1372908 0.2765176 -0.02934285 0.1372908 0.2765176 -0.03925039 0.1372908 0.2765176 -0.05087609 0.1372908 0.2765176 -0.06429595 0.1372908 0.2765176 -0.07958143 0.1372908 0.2765176 -0.0968001 0.1372908 0.2765176 -0.1160161 0.1372908 0.2765176 -0.1372908 0.1372908 0.2765176 -0.1606827 0.1372908 0.2765176 -0.1862481 0.1372908 0.2765176 -0.2140411 0.1372908 0.2765176 -0.2441142 0.1372908 0.2765176 -0.2765176 0.1372908 0.2765176 -0.3113005 0.1372908 0.2765176 -0.3485102 0.1372908 0.2765176 -0.388193 0.1372908 0.2765176 -0.4303934 0.1372908 0.2765176 -0.4751555 0.1372908 0.2765176 -0.5225216 0.1372908 0.2765176 -0.5725335 0.1372908 0.2765176 -0.6252316 0.1372908 0.2765176 -0.6806558 0.1372908 0.2765176 -0.7388448 0.1372908 0.2765176 -0.7998369 0.1372908 0.2765176 -0.8636691 0.1372908 0.2765176 -0.9303782 0.1372908 0.2765176 -1 0.1372908 0.2765176 -0 0.1606827 0.2765176 -0.002418731 0.1606827 0.2765176 -0.005155668 0.1606827 0.2765176 -0.009080105 0.1606827 0.2765176 -0.01434988 0.1606827 0.2765176 -0.02107202 0.1606827 0.2765176 -0.02934285 0.1606827 0.2765176 -0.03925039 0.1606827 0.2765176 -0.05087609 0.1606827 0.2765176 -0.06429595 0.1606827 0.2765176 -0.07958143 0.1606827 0.2765176 -0.0968001 0.1606827 0.2765176 -0.1160161 0.1606827 0.2765176 -0.1372908 0.1606827 0.2765176 -0.1606827 0.1606827 0.2765176 -0.1862481 0.1606827 0.2765176 -0.2140411 0.1606827 0.2765176 -0.2441142 0.1606827 0.2765176 -0.2765176 0.1606827 0.2765176 -0.3113005 0.1606827 0.2765176 -0.3485102 0.1606827 0.2765176 -0.388193 0.1606827 0.2765176 -0.4303934 0.1606827 0.2765176 -0.4751555 0.1606827 0.2765176 -0.5225216 0.1606827 0.2765176 -0.5725335 0.1606827 0.2765176 -0.6252316 0.1606827 0.2765176 -0.6806558 0.1606827 0.2765176 -0.7388448 0.1606827 0.2765176 -0.7998369 0.1606827 0.2765176 -0.8636691 0.1606827 0.2765176 -0.9303782 0.1606827 0.2765176 -1 0.1606827 0.2765176 -0 0.1862481 0.2765176 -0.002418731 0.1862481 0.2765176 -0.005155668 0.1862481 0.2765176 -0.009080105 0.1862481 0.2765176 -0.01434988 0.1862481 0.2765176 -0.02107202 0.1862481 0.2765176 -0.02934285 0.1862481 0.2765176 -0.03925039 0.1862481 0.2765176 -0.05087609 0.1862481 0.2765176 -0.06429595 0.1862481 0.2765176 -0.07958143 0.1862481 0.2765176 -0.0968001 0.1862481 0.2765176 -0.1160161 0.1862481 0.2765176 -0.1372908 0.1862481 0.2765176 -0.1606827 0.1862481 0.2765176 -0.1862481 0.1862481 0.2765176 -0.2140411 0.1862481 0.2765176 -0.2441142 0.1862481 0.2765176 -0.2765176 0.1862481 0.2765176 -0.3113005 0.1862481 0.2765176 -0.3485102 0.1862481 0.2765176 -0.388193 0.1862481 0.2765176 -0.4303934 0.1862481 0.2765176 -0.4751555 0.1862481 0.2765176 -0.5225216 0.1862481 0.2765176 -0.5725335 0.1862481 0.2765176 -0.6252316 0.1862481 0.2765176 -0.6806558 0.1862481 0.2765176 -0.7388448 0.1862481 0.2765176 -0.7998369 0.1862481 0.2765176 -0.8636691 0.1862481 0.2765176 -0.9303782 0.1862481 0.2765176 -1 0.1862481 0.2765176 -0 0.2140411 0.2765176 -0.002418731 0.2140411 0.2765176 -0.005155668 0.2140411 0.2765176 -0.009080105 0.2140411 0.2765176 -0.01434988 0.2140411 0.2765176 -0.02107202 0.2140411 0.2765176 -0.02934285 0.2140411 0.2765176 -0.03925039 0.2140411 0.2765176 -0.05087609 0.2140411 0.2765176 -0.06429595 0.2140411 0.2765176 -0.07958143 0.2140411 0.2765176 -0.0968001 0.2140411 0.2765176 -0.1160161 0.2140411 0.2765176 -0.1372908 0.2140411 0.2765176 -0.1606827 0.2140411 0.2765176 -0.1862481 0.2140411 0.2765176 -0.2140411 0.2140411 0.2765176 -0.2441142 0.2140411 0.2765176 -0.2765176 0.2140411 0.2765176 -0.3113005 0.2140411 0.2765176 -0.3485102 0.2140411 0.2765176 -0.388193 0.2140411 0.2765176 -0.4303934 0.2140411 0.2765176 -0.4751555 0.2140411 0.2765176 -0.5225216 0.2140411 0.2765176 -0.5725335 0.2140411 0.2765176 -0.6252316 0.2140411 0.2765176 -0.6806558 0.2140411 0.2765176 -0.7388448 0.2140411 0.2765176 -0.7998369 0.2140411 0.2765176 -0.8636691 0.2140411 0.2765176 -0.9303782 0.2140411 0.2765176 -1 0.2140411 0.2765176 -0 0.2441142 0.2765176 -0.002418731 0.2441142 0.2765176 -0.005155668 0.2441142 0.2765176 -0.009080105 0.2441142 0.2765176 -0.01434988 0.2441142 0.2765176 -0.02107202 0.2441142 0.2765176 -0.02934285 0.2441142 0.2765176 -0.03925039 0.2441142 0.2765176 -0.05087609 0.2441142 0.2765176 -0.06429595 0.2441142 0.2765176 -0.07958143 0.2441142 0.2765176 -0.0968001 0.2441142 0.2765176 -0.1160161 0.2441142 0.2765176 -0.1372908 0.2441142 0.2765176 -0.1606827 0.2441142 0.2765176 -0.1862481 0.2441142 0.2765176 -0.2140411 0.2441142 0.2765176 -0.2441142 0.2441142 0.2765176 -0.2765176 0.2441142 0.2765176 -0.3113005 0.2441142 0.2765176 -0.3485102 0.2441142 0.2765176 -0.388193 0.2441142 0.2765176 -0.4303934 0.2441142 0.2765176 -0.4751555 0.2441142 0.2765176 -0.5225216 0.2441142 0.2765176 -0.5725335 0.2441142 0.2765176 -0.6252316 0.2441142 0.2765176 -0.6806558 0.2441142 0.2765176 -0.7388448 0.2441142 0.2765176 -0.7998369 0.2441142 0.2765176 -0.8636691 0.2441142 0.2765176 -0.9303782 0.2441142 0.2765176 -1 0.2441142 0.2765176 -0 0.2765176 0.2765176 -0.002418731 0.2765176 0.2765176 -0.005155668 0.2765176 0.2765176 -0.009080105 0.2765176 0.2765176 -0.01434988 0.2765176 0.2765176 -0.02107202 0.2765176 0.2765176 -0.02934285 0.2765176 0.2765176 -0.03925039 0.2765176 0.2765176 -0.05087609 0.2765176 0.2765176 -0.06429595 0.2765176 0.2765176 -0.07958143 0.2765176 0.2765176 -0.0968001 0.2765176 0.2765176 -0.1160161 0.2765176 0.2765176 -0.1372908 0.2765176 0.2765176 -0.1606827 0.2765176 0.2765176 -0.1862481 0.2765176 0.2765176 -0.2140411 0.2765176 0.2765176 -0.2441142 0.2765176 0.2765176 -0.2765176 0.2765176 0.2765176 -0.3113005 0.2765176 0.2765176 -0.3485102 0.2765176 0.2765176 -0.388193 0.2765176 0.2765176 -0.4303934 0.2765176 0.2765176 -0.4751555 0.2765176 0.2765176 -0.5225216 0.2765176 0.2765176 -0.5725335 0.2765176 0.2765176 -0.6252316 0.2765176 0.2765176 -0.6806558 0.2765176 0.2765176 -0.7388448 0.2765176 0.2765176 -0.7998369 0.2765176 0.2765176 -0.8636691 0.2765176 0.2765176 -0.9303782 0.2765176 0.2765176 -1 0.2765176 0.2765176 -0 0.3113005 0.2765176 -0.002418731 0.3113005 0.2765176 -0.005155668 0.3113005 0.2765176 -0.009080105 0.3113005 0.2765176 -0.01434988 0.3113005 0.2765176 -0.02107202 0.3113005 0.2765176 -0.02934285 0.3113005 0.2765176 -0.03925039 0.3113005 0.2765176 -0.05087609 0.3113005 0.2765176 -0.06429595 0.3113005 0.2765176 -0.07958143 0.3113005 0.2765176 -0.0968001 0.3113005 0.2765176 -0.1160161 0.3113005 0.2765176 -0.1372908 0.3113005 0.2765176 -0.1606827 0.3113005 0.2765176 -0.1862481 0.3113005 0.2765176 -0.2140411 0.3113005 0.2765176 -0.2441142 0.3113005 0.2765176 -0.2765176 0.3113005 0.2765176 -0.3113005 0.3113005 0.2765176 -0.3485102 0.3113005 0.2765176 -0.388193 0.3113005 0.2765176 -0.4303934 0.3113005 0.2765176 -0.4751555 0.3113005 0.2765176 -0.5225216 0.3113005 0.2765176 -0.5725335 0.3113005 0.2765176 -0.6252316 0.3113005 0.2765176 -0.6806558 0.3113005 0.2765176 -0.7388448 0.3113005 0.2765176 -0.7998369 0.3113005 0.2765176 -0.8636691 0.3113005 0.2765176 -0.9303782 0.3113005 0.2765176 -1 0.3113005 0.2765176 -0 0.3485102 0.2765176 -0.002418731 0.3485102 0.2765176 -0.005155668 0.3485102 0.2765176 -0.009080105 0.3485102 0.2765176 -0.01434988 0.3485102 0.2765176 -0.02107202 0.3485102 0.2765176 -0.02934285 0.3485102 0.2765176 -0.03925039 0.3485102 0.2765176 -0.05087609 0.3485102 0.2765176 -0.06429595 0.3485102 0.2765176 -0.07958143 0.3485102 0.2765176 -0.0968001 0.3485102 0.2765176 -0.1160161 0.3485102 0.2765176 -0.1372908 0.3485102 0.2765176 -0.1606827 0.3485102 0.2765176 -0.1862481 0.3485102 0.2765176 -0.2140411 0.3485102 0.2765176 -0.2441142 0.3485102 0.2765176 -0.2765176 0.3485102 0.2765176 -0.3113005 0.3485102 0.2765176 -0.3485102 0.3485102 0.2765176 -0.388193 0.3485102 0.2765176 -0.4303934 0.3485102 0.2765176 -0.4751555 0.3485102 0.2765176 -0.5225216 0.3485102 0.2765176 -0.5725335 0.3485102 0.2765176 -0.6252316 0.3485102 0.2765176 -0.6806558 0.3485102 0.2765176 -0.7388448 0.3485102 0.2765176 -0.7998369 0.3485102 0.2765176 -0.8636691 0.3485102 0.2765176 -0.9303782 0.3485102 0.2765176 -1 0.3485102 0.2765176 -0 0.388193 0.2765176 -0.002418731 0.388193 0.2765176 -0.005155668 0.388193 0.2765176 -0.009080105 0.388193 0.2765176 -0.01434988 0.388193 0.2765176 -0.02107202 0.388193 0.2765176 -0.02934285 0.388193 0.2765176 -0.03925039 0.388193 0.2765176 -0.05087609 0.388193 0.2765176 -0.06429595 0.388193 0.2765176 -0.07958143 0.388193 0.2765176 -0.0968001 0.388193 0.2765176 -0.1160161 0.388193 0.2765176 -0.1372908 0.388193 0.2765176 -0.1606827 0.388193 0.2765176 -0.1862481 0.388193 0.2765176 -0.2140411 0.388193 0.2765176 -0.2441142 0.388193 0.2765176 -0.2765176 0.388193 0.2765176 -0.3113005 0.388193 0.2765176 -0.3485102 0.388193 0.2765176 -0.388193 0.388193 0.2765176 -0.4303934 0.388193 0.2765176 -0.4751555 0.388193 0.2765176 -0.5225216 0.388193 0.2765176 -0.5725335 0.388193 0.2765176 -0.6252316 0.388193 0.2765176 -0.6806558 0.388193 0.2765176 -0.7388448 0.388193 0.2765176 -0.7998369 0.388193 0.2765176 -0.8636691 0.388193 0.2765176 -0.9303782 0.388193 0.2765176 -1 0.388193 0.2765176 -0 0.4303934 0.2765176 -0.002418731 0.4303934 0.2765176 -0.005155668 0.4303934 0.2765176 -0.009080105 0.4303934 0.2765176 -0.01434988 0.4303934 0.2765176 -0.02107202 0.4303934 0.2765176 -0.02934285 0.4303934 0.2765176 -0.03925039 0.4303934 0.2765176 -0.05087609 0.4303934 0.2765176 -0.06429595 0.4303934 0.2765176 -0.07958143 0.4303934 0.2765176 -0.0968001 0.4303934 0.2765176 -0.1160161 0.4303934 0.2765176 -0.1372908 0.4303934 0.2765176 -0.1606827 0.4303934 0.2765176 -0.1862481 0.4303934 0.2765176 -0.2140411 0.4303934 0.2765176 -0.2441142 0.4303934 0.2765176 -0.2765176 0.4303934 0.2765176 -0.3113005 0.4303934 0.2765176 -0.3485102 0.4303934 0.2765176 -0.388193 0.4303934 0.2765176 -0.4303934 0.4303934 0.2765176 -0.4751555 0.4303934 0.2765176 -0.5225216 0.4303934 0.2765176 -0.5725335 0.4303934 0.2765176 -0.6252316 0.4303934 0.2765176 -0.6806558 0.4303934 0.2765176 -0.7388448 0.4303934 0.2765176 -0.7998369 0.4303934 0.2765176 -0.8636691 0.4303934 0.2765176 -0.9303782 0.4303934 0.2765176 -1 0.4303934 0.2765176 -0 0.4751555 0.2765176 -0.002418731 0.4751555 0.2765176 -0.005155668 0.4751555 0.2765176 -0.009080105 0.4751555 0.2765176 -0.01434988 0.4751555 0.2765176 -0.02107202 0.4751555 0.2765176 -0.02934285 0.4751555 0.2765176 -0.03925039 0.4751555 0.2765176 -0.05087609 0.4751555 0.2765176 -0.06429595 0.4751555 0.2765176 -0.07958143 0.4751555 0.2765176 -0.0968001 0.4751555 0.2765176 -0.1160161 0.4751555 0.2765176 -0.1372908 0.4751555 0.2765176 -0.1606827 0.4751555 0.2765176 -0.1862481 0.4751555 0.2765176 -0.2140411 0.4751555 0.2765176 -0.2441142 0.4751555 0.2765176 -0.2765176 0.4751555 0.2765176 -0.3113005 0.4751555 0.2765176 -0.3485102 0.4751555 0.2765176 -0.388193 0.4751555 0.2765176 -0.4303934 0.4751555 0.2765176 -0.4751555 0.4751555 0.2765176 -0.5225216 0.4751555 0.2765176 -0.5725335 0.4751555 0.2765176 -0.6252316 0.4751555 0.2765176 -0.6806558 0.4751555 0.2765176 -0.7388448 0.4751555 0.2765176 -0.7998369 0.4751555 0.2765176 -0.8636691 0.4751555 0.2765176 -0.9303782 0.4751555 0.2765176 -1 0.4751555 0.2765176 -0 0.5225216 0.2765176 -0.002418731 0.5225216 0.2765176 -0.005155668 0.5225216 0.2765176 -0.009080105 0.5225216 0.2765176 -0.01434988 0.5225216 0.2765176 -0.02107202 0.5225216 0.2765176 -0.02934285 0.5225216 0.2765176 -0.03925039 0.5225216 0.2765176 -0.05087609 0.5225216 0.2765176 -0.06429595 0.5225216 0.2765176 -0.07958143 0.5225216 0.2765176 -0.0968001 0.5225216 0.2765176 -0.1160161 0.5225216 0.2765176 -0.1372908 0.5225216 0.2765176 -0.1606827 0.5225216 0.2765176 -0.1862481 0.5225216 0.2765176 -0.2140411 0.5225216 0.2765176 -0.2441142 0.5225216 0.2765176 -0.2765176 0.5225216 0.2765176 -0.3113005 0.5225216 0.2765176 -0.3485102 0.5225216 0.2765176 -0.388193 0.5225216 0.2765176 -0.4303934 0.5225216 0.2765176 -0.4751555 0.5225216 0.2765176 -0.5225216 0.5225216 0.2765176 -0.5725335 0.5225216 0.2765176 -0.6252316 0.5225216 0.2765176 -0.6806558 0.5225216 0.2765176 -0.7388448 0.5225216 0.2765176 -0.7998369 0.5225216 0.2765176 -0.8636691 0.5225216 0.2765176 -0.9303782 0.5225216 0.2765176 -1 0.5225216 0.2765176 -0 0.5725335 0.2765176 -0.002418731 0.5725335 0.2765176 -0.005155668 0.5725335 0.2765176 -0.009080105 0.5725335 0.2765176 -0.01434988 0.5725335 0.2765176 -0.02107202 0.5725335 0.2765176 -0.02934285 0.5725335 0.2765176 -0.03925039 0.5725335 0.2765176 -0.05087609 0.5725335 0.2765176 -0.06429595 0.5725335 0.2765176 -0.07958143 0.5725335 0.2765176 -0.0968001 0.5725335 0.2765176 -0.1160161 0.5725335 0.2765176 -0.1372908 0.5725335 0.2765176 -0.1606827 0.5725335 0.2765176 -0.1862481 0.5725335 0.2765176 -0.2140411 0.5725335 0.2765176 -0.2441142 0.5725335 0.2765176 -0.2765176 0.5725335 0.2765176 -0.3113005 0.5725335 0.2765176 -0.3485102 0.5725335 0.2765176 -0.388193 0.5725335 0.2765176 -0.4303934 0.5725335 0.2765176 -0.4751555 0.5725335 0.2765176 -0.5225216 0.5725335 0.2765176 -0.5725335 0.5725335 0.2765176 -0.6252316 0.5725335 0.2765176 -0.6806558 0.5725335 0.2765176 -0.7388448 0.5725335 0.2765176 -0.7998369 0.5725335 0.2765176 -0.8636691 0.5725335 0.2765176 -0.9303782 0.5725335 0.2765176 -1 0.5725335 0.2765176 -0 0.6252316 0.2765176 -0.002418731 0.6252316 0.2765176 -0.005155668 0.6252316 0.2765176 -0.009080105 0.6252316 0.2765176 -0.01434988 0.6252316 0.2765176 -0.02107202 0.6252316 0.2765176 -0.02934285 0.6252316 0.2765176 -0.03925039 0.6252316 0.2765176 -0.05087609 0.6252316 0.2765176 -0.06429595 0.6252316 0.2765176 -0.07958143 0.6252316 0.2765176 -0.0968001 0.6252316 0.2765176 -0.1160161 0.6252316 0.2765176 -0.1372908 0.6252316 0.2765176 -0.1606827 0.6252316 0.2765176 -0.1862481 0.6252316 0.2765176 -0.2140411 0.6252316 0.2765176 -0.2441142 0.6252316 0.2765176 -0.2765176 0.6252316 0.2765176 -0.3113005 0.6252316 0.2765176 -0.3485102 0.6252316 0.2765176 -0.388193 0.6252316 0.2765176 -0.4303934 0.6252316 0.2765176 -0.4751555 0.6252316 0.2765176 -0.5225216 0.6252316 0.2765176 -0.5725335 0.6252316 0.2765176 -0.6252316 0.6252316 0.2765176 -0.6806558 0.6252316 0.2765176 -0.7388448 0.6252316 0.2765176 -0.7998369 0.6252316 0.2765176 -0.8636691 0.6252316 0.2765176 -0.9303782 0.6252316 0.2765176 -1 0.6252316 0.2765176 -0 0.6806558 0.2765176 -0.002418731 0.6806558 0.2765176 -0.005155668 0.6806558 0.2765176 -0.009080105 0.6806558 0.2765176 -0.01434988 0.6806558 0.2765176 -0.02107202 0.6806558 0.2765176 -0.02934285 0.6806558 0.2765176 -0.03925039 0.6806558 0.2765176 -0.05087609 0.6806558 0.2765176 -0.06429595 0.6806558 0.2765176 -0.07958143 0.6806558 0.2765176 -0.0968001 0.6806558 0.2765176 -0.1160161 0.6806558 0.2765176 -0.1372908 0.6806558 0.2765176 -0.1606827 0.6806558 0.2765176 -0.1862481 0.6806558 0.2765176 -0.2140411 0.6806558 0.2765176 -0.2441142 0.6806558 0.2765176 -0.2765176 0.6806558 0.2765176 -0.3113005 0.6806558 0.2765176 -0.3485102 0.6806558 0.2765176 -0.388193 0.6806558 0.2765176 -0.4303934 0.6806558 0.2765176 -0.4751555 0.6806558 0.2765176 -0.5225216 0.6806558 0.2765176 -0.5725335 0.6806558 0.2765176 -0.6252316 0.6806558 0.2765176 -0.6806558 0.6806558 0.2765176 -0.7388448 0.6806558 0.2765176 -0.7998369 0.6806558 0.2765176 -0.8636691 0.6806558 0.2765176 -0.9303782 0.6806558 0.2765176 -1 0.6806558 0.2765176 -0 0.7388448 0.2765176 -0.002418731 0.7388448 0.2765176 -0.005155668 0.7388448 0.2765176 -0.009080105 0.7388448 0.2765176 -0.01434988 0.7388448 0.2765176 -0.02107202 0.7388448 0.2765176 -0.02934285 0.7388448 0.2765176 -0.03925039 0.7388448 0.2765176 -0.05087609 0.7388448 0.2765176 -0.06429595 0.7388448 0.2765176 -0.07958143 0.7388448 0.2765176 -0.0968001 0.7388448 0.2765176 -0.1160161 0.7388448 0.2765176 -0.1372908 0.7388448 0.2765176 -0.1606827 0.7388448 0.2765176 -0.1862481 0.7388448 0.2765176 -0.2140411 0.7388448 0.2765176 -0.2441142 0.7388448 0.2765176 -0.2765176 0.7388448 0.2765176 -0.3113005 0.7388448 0.2765176 -0.3485102 0.7388448 0.2765176 -0.388193 0.7388448 0.2765176 -0.4303934 0.7388448 0.2765176 -0.4751555 0.7388448 0.2765176 -0.5225216 0.7388448 0.2765176 -0.5725335 0.7388448 0.2765176 -0.6252316 0.7388448 0.2765176 -0.6806558 0.7388448 0.2765176 -0.7388448 0.7388448 0.2765176 -0.7998369 0.7388448 0.2765176 -0.8636691 0.7388448 0.2765176 -0.9303782 0.7388448 0.2765176 -1 0.7388448 0.2765176 -0 0.7998369 0.2765176 -0.002418731 0.7998369 0.2765176 -0.005155668 0.7998369 0.2765176 -0.009080105 0.7998369 0.2765176 -0.01434988 0.7998369 0.2765176 -0.02107202 0.7998369 0.2765176 -0.02934285 0.7998369 0.2765176 -0.03925039 0.7998369 0.2765176 -0.05087609 0.7998369 0.2765176 -0.06429595 0.7998369 0.2765176 -0.07958143 0.7998369 0.2765176 -0.0968001 0.7998369 0.2765176 -0.1160161 0.7998369 0.2765176 -0.1372908 0.7998369 0.2765176 -0.1606827 0.7998369 0.2765176 -0.1862481 0.7998369 0.2765176 -0.2140411 0.7998369 0.2765176 -0.2441142 0.7998369 0.2765176 -0.2765176 0.7998369 0.2765176 -0.3113005 0.7998369 0.2765176 -0.3485102 0.7998369 0.2765176 -0.388193 0.7998369 0.2765176 -0.4303934 0.7998369 0.2765176 -0.4751555 0.7998369 0.2765176 -0.5225216 0.7998369 0.2765176 -0.5725335 0.7998369 0.2765176 -0.6252316 0.7998369 0.2765176 -0.6806558 0.7998369 0.2765176 -0.7388448 0.7998369 0.2765176 -0.7998369 0.7998369 0.2765176 -0.8636691 0.7998369 0.2765176 -0.9303782 0.7998369 0.2765176 -1 0.7998369 0.2765176 -0 0.8636691 0.2765176 -0.002418731 0.8636691 0.2765176 -0.005155668 0.8636691 0.2765176 -0.009080105 0.8636691 0.2765176 -0.01434988 0.8636691 0.2765176 -0.02107202 0.8636691 0.2765176 -0.02934285 0.8636691 0.2765176 -0.03925039 0.8636691 0.2765176 -0.05087609 0.8636691 0.2765176 -0.06429595 0.8636691 0.2765176 -0.07958143 0.8636691 0.2765176 -0.0968001 0.8636691 0.2765176 -0.1160161 0.8636691 0.2765176 -0.1372908 0.8636691 0.2765176 -0.1606827 0.8636691 0.2765176 -0.1862481 0.8636691 0.2765176 -0.2140411 0.8636691 0.2765176 -0.2441142 0.8636691 0.2765176 -0.2765176 0.8636691 0.2765176 -0.3113005 0.8636691 0.2765176 -0.3485102 0.8636691 0.2765176 -0.388193 0.8636691 0.2765176 -0.4303934 0.8636691 0.2765176 -0.4751555 0.8636691 0.2765176 -0.5225216 0.8636691 0.2765176 -0.5725335 0.8636691 0.2765176 -0.6252316 0.8636691 0.2765176 -0.6806558 0.8636691 0.2765176 -0.7388448 0.8636691 0.2765176 -0.7998369 0.8636691 0.2765176 -0.8636691 0.8636691 0.2765176 -0.9303782 0.8636691 0.2765176 -1 0.8636691 0.2765176 -0 0.9303782 0.2765176 -0.002418731 0.9303782 0.2765176 -0.005155668 0.9303782 0.2765176 -0.009080105 0.9303782 0.2765176 -0.01434988 0.9303782 0.2765176 -0.02107202 0.9303782 0.2765176 -0.02934285 0.9303782 0.2765176 -0.03925039 0.9303782 0.2765176 -0.05087609 0.9303782 0.2765176 -0.06429595 0.9303782 0.2765176 -0.07958143 0.9303782 0.2765176 -0.0968001 0.9303782 0.2765176 -0.1160161 0.9303782 0.2765176 -0.1372908 0.9303782 0.2765176 -0.1606827 0.9303782 0.2765176 -0.1862481 0.9303782 0.2765176 -0.2140411 0.9303782 0.2765176 -0.2441142 0.9303782 0.2765176 -0.2765176 0.9303782 0.2765176 -0.3113005 0.9303782 0.2765176 -0.3485102 0.9303782 0.2765176 -0.388193 0.9303782 0.2765176 -0.4303934 0.9303782 0.2765176 -0.4751555 0.9303782 0.2765176 -0.5225216 0.9303782 0.2765176 -0.5725335 0.9303782 0.2765176 -0.6252316 0.9303782 0.2765176 -0.6806558 0.9303782 0.2765176 -0.7388448 0.9303782 0.2765176 -0.7998369 0.9303782 0.2765176 -0.8636691 0.9303782 0.2765176 -0.9303782 0.9303782 0.2765176 -1 0.9303782 0.2765176 -0 1 0.2765176 -0.002418731 1 0.2765176 -0.005155668 1 0.2765176 -0.009080105 1 0.2765176 -0.01434988 1 0.2765176 -0.02107202 1 0.2765176 -0.02934285 1 0.2765176 -0.03925039 1 0.2765176 -0.05087609 1 0.2765176 -0.06429595 1 0.2765176 -0.07958143 1 0.2765176 -0.0968001 1 0.2765176 -0.1160161 1 0.2765176 -0.1372908 1 0.2765176 -0.1606827 1 0.2765176 -0.1862481 1 0.2765176 -0.2140411 1 0.2765176 -0.2441142 1 0.2765176 -0.2765176 1 0.2765176 -0.3113005 1 0.2765176 -0.3485102 1 0.2765176 -0.388193 1 0.2765176 -0.4303934 1 0.2765176 -0.4751555 1 0.2765176 -0.5225216 1 0.2765176 -0.5725335 1 0.2765176 -0.6252316 1 0.2765176 -0.6806558 1 0.2765176 -0.7388448 1 0.2765176 -0.7998369 1 0.2765176 -0.8636691 1 0.2765176 -0.9303782 1 0.2765176 -1 1 0.2765176 -0 0 0.3113005 -0.002418731 0 0.3113005 -0.005155668 0 0.3113005 -0.009080105 0 0.3113005 -0.01434988 0 0.3113005 -0.02107202 0 0.3113005 -0.02934285 0 0.3113005 -0.03925039 0 0.3113005 -0.05087609 0 0.3113005 -0.06429595 0 0.3113005 -0.07958143 0 0.3113005 -0.0968001 0 0.3113005 -0.1160161 0 0.3113005 -0.1372908 0 0.3113005 -0.1606827 0 0.3113005 -0.1862481 0 0.3113005 -0.2140411 0 0.3113005 -0.2441142 0 0.3113005 -0.2765176 0 0.3113005 -0.3113005 0 0.3113005 -0.3485102 0 0.3113005 -0.388193 0 0.3113005 -0.4303934 0 0.3113005 -0.4751555 0 0.3113005 -0.5225216 0 0.3113005 -0.5725335 0 0.3113005 -0.6252316 0 0.3113005 -0.6806558 0 0.3113005 -0.7388448 0 0.3113005 -0.7998369 0 0.3113005 -0.8636691 0 0.3113005 -0.9303782 0 0.3113005 -1 0 0.3113005 -0 0.002418731 0.3113005 -0.002418731 0.002418731 0.3113005 -0.005155668 0.002418731 0.3113005 -0.009080105 0.002418731 0.3113005 -0.01434988 0.002418731 0.3113005 -0.02107202 0.002418731 0.3113005 -0.02934285 0.002418731 0.3113005 -0.03925039 0.002418731 0.3113005 -0.05087609 0.002418731 0.3113005 -0.06429595 0.002418731 0.3113005 -0.07958143 0.002418731 0.3113005 -0.0968001 0.002418731 0.3113005 -0.1160161 0.002418731 0.3113005 -0.1372908 0.002418731 0.3113005 -0.1606827 0.002418731 0.3113005 -0.1862481 0.002418731 0.3113005 -0.2140411 0.002418731 0.3113005 -0.2441142 0.002418731 0.3113005 -0.2765176 0.002418731 0.3113005 -0.3113005 0.002418731 0.3113005 -0.3485102 0.002418731 0.3113005 -0.388193 0.002418731 0.3113005 -0.4303934 0.002418731 0.3113005 -0.4751555 0.002418731 0.3113005 -0.5225216 0.002418731 0.3113005 -0.5725335 0.002418731 0.3113005 -0.6252316 0.002418731 0.3113005 -0.6806558 0.002418731 0.3113005 -0.7388448 0.002418731 0.3113005 -0.7998369 0.002418731 0.3113005 -0.8636691 0.002418731 0.3113005 -0.9303782 0.002418731 0.3113005 -1 0.002418731 0.3113005 -0 0.005155668 0.3113005 -0.002418731 0.005155668 0.3113005 -0.005155668 0.005155668 0.3113005 -0.009080105 0.005155668 0.3113005 -0.01434988 0.005155668 0.3113005 -0.02107202 0.005155668 0.3113005 -0.02934285 0.005155668 0.3113005 -0.03925039 0.005155668 0.3113005 -0.05087609 0.005155668 0.3113005 -0.06429595 0.005155668 0.3113005 -0.07958143 0.005155668 0.3113005 -0.0968001 0.005155668 0.3113005 -0.1160161 0.005155668 0.3113005 -0.1372908 0.005155668 0.3113005 -0.1606827 0.005155668 0.3113005 -0.1862481 0.005155668 0.3113005 -0.2140411 0.005155668 0.3113005 -0.2441142 0.005155668 0.3113005 -0.2765176 0.005155668 0.3113005 -0.3113005 0.005155668 0.3113005 -0.3485102 0.005155668 0.3113005 -0.388193 0.005155668 0.3113005 -0.4303934 0.005155668 0.3113005 -0.4751555 0.005155668 0.3113005 -0.5225216 0.005155668 0.3113005 -0.5725335 0.005155668 0.3113005 -0.6252316 0.005155668 0.3113005 -0.6806558 0.005155668 0.3113005 -0.7388448 0.005155668 0.3113005 -0.7998369 0.005155668 0.3113005 -0.8636691 0.005155668 0.3113005 -0.9303782 0.005155668 0.3113005 -1 0.005155668 0.3113005 -0 0.009080105 0.3113005 -0.002418731 0.009080105 0.3113005 -0.005155668 0.009080105 0.3113005 -0.009080105 0.009080105 0.3113005 -0.01434988 0.009080105 0.3113005 -0.02107202 0.009080105 0.3113005 -0.02934285 0.009080105 0.3113005 -0.03925039 0.009080105 0.3113005 -0.05087609 0.009080105 0.3113005 -0.06429595 0.009080105 0.3113005 -0.07958143 0.009080105 0.3113005 -0.0968001 0.009080105 0.3113005 -0.1160161 0.009080105 0.3113005 -0.1372908 0.009080105 0.3113005 -0.1606827 0.009080105 0.3113005 -0.1862481 0.009080105 0.3113005 -0.2140411 0.009080105 0.3113005 -0.2441142 0.009080105 0.3113005 -0.2765176 0.009080105 0.3113005 -0.3113005 0.009080105 0.3113005 -0.3485102 0.009080105 0.3113005 -0.388193 0.009080105 0.3113005 -0.4303934 0.009080105 0.3113005 -0.4751555 0.009080105 0.3113005 -0.5225216 0.009080105 0.3113005 -0.5725335 0.009080105 0.3113005 -0.6252316 0.009080105 0.3113005 -0.6806558 0.009080105 0.3113005 -0.7388448 0.009080105 0.3113005 -0.7998369 0.009080105 0.3113005 -0.8636691 0.009080105 0.3113005 -0.9303782 0.009080105 0.3113005 -1 0.009080105 0.3113005 -0 0.01434988 0.3113005 -0.002418731 0.01434988 0.3113005 -0.005155668 0.01434988 0.3113005 -0.009080105 0.01434988 0.3113005 -0.01434988 0.01434988 0.3113005 -0.02107202 0.01434988 0.3113005 -0.02934285 0.01434988 0.3113005 -0.03925039 0.01434988 0.3113005 -0.05087609 0.01434988 0.3113005 -0.06429595 0.01434988 0.3113005 -0.07958143 0.01434988 0.3113005 -0.0968001 0.01434988 0.3113005 -0.1160161 0.01434988 0.3113005 -0.1372908 0.01434988 0.3113005 -0.1606827 0.01434988 0.3113005 -0.1862481 0.01434988 0.3113005 -0.2140411 0.01434988 0.3113005 -0.2441142 0.01434988 0.3113005 -0.2765176 0.01434988 0.3113005 -0.3113005 0.01434988 0.3113005 -0.3485102 0.01434988 0.3113005 -0.388193 0.01434988 0.3113005 -0.4303934 0.01434988 0.3113005 -0.4751555 0.01434988 0.3113005 -0.5225216 0.01434988 0.3113005 -0.5725335 0.01434988 0.3113005 -0.6252316 0.01434988 0.3113005 -0.6806558 0.01434988 0.3113005 -0.7388448 0.01434988 0.3113005 -0.7998369 0.01434988 0.3113005 -0.8636691 0.01434988 0.3113005 -0.9303782 0.01434988 0.3113005 -1 0.01434988 0.3113005 -0 0.02107202 0.3113005 -0.002418731 0.02107202 0.3113005 -0.005155668 0.02107202 0.3113005 -0.009080105 0.02107202 0.3113005 -0.01434988 0.02107202 0.3113005 -0.02107202 0.02107202 0.3113005 -0.02934285 0.02107202 0.3113005 -0.03925039 0.02107202 0.3113005 -0.05087609 0.02107202 0.3113005 -0.06429595 0.02107202 0.3113005 -0.07958143 0.02107202 0.3113005 -0.0968001 0.02107202 0.3113005 -0.1160161 0.02107202 0.3113005 -0.1372908 0.02107202 0.3113005 -0.1606827 0.02107202 0.3113005 -0.1862481 0.02107202 0.3113005 -0.2140411 0.02107202 0.3113005 -0.2441142 0.02107202 0.3113005 -0.2765176 0.02107202 0.3113005 -0.3113005 0.02107202 0.3113005 -0.3485102 0.02107202 0.3113005 -0.388193 0.02107202 0.3113005 -0.4303934 0.02107202 0.3113005 -0.4751555 0.02107202 0.3113005 -0.5225216 0.02107202 0.3113005 -0.5725335 0.02107202 0.3113005 -0.6252316 0.02107202 0.3113005 -0.6806558 0.02107202 0.3113005 -0.7388448 0.02107202 0.3113005 -0.7998369 0.02107202 0.3113005 -0.8636691 0.02107202 0.3113005 -0.9303782 0.02107202 0.3113005 -1 0.02107202 0.3113005 -0 0.02934285 0.3113005 -0.002418731 0.02934285 0.3113005 -0.005155668 0.02934285 0.3113005 -0.009080105 0.02934285 0.3113005 -0.01434988 0.02934285 0.3113005 -0.02107202 0.02934285 0.3113005 -0.02934285 0.02934285 0.3113005 -0.03925039 0.02934285 0.3113005 -0.05087609 0.02934285 0.3113005 -0.06429595 0.02934285 0.3113005 -0.07958143 0.02934285 0.3113005 -0.0968001 0.02934285 0.3113005 -0.1160161 0.02934285 0.3113005 -0.1372908 0.02934285 0.3113005 -0.1606827 0.02934285 0.3113005 -0.1862481 0.02934285 0.3113005 -0.2140411 0.02934285 0.3113005 -0.2441142 0.02934285 0.3113005 -0.2765176 0.02934285 0.3113005 -0.3113005 0.02934285 0.3113005 -0.3485102 0.02934285 0.3113005 -0.388193 0.02934285 0.3113005 -0.4303934 0.02934285 0.3113005 -0.4751555 0.02934285 0.3113005 -0.5225216 0.02934285 0.3113005 -0.5725335 0.02934285 0.3113005 -0.6252316 0.02934285 0.3113005 -0.6806558 0.02934285 0.3113005 -0.7388448 0.02934285 0.3113005 -0.7998369 0.02934285 0.3113005 -0.8636691 0.02934285 0.3113005 -0.9303782 0.02934285 0.3113005 -1 0.02934285 0.3113005 -0 0.03925039 0.3113005 -0.002418731 0.03925039 0.3113005 -0.005155668 0.03925039 0.3113005 -0.009080105 0.03925039 0.3113005 -0.01434988 0.03925039 0.3113005 -0.02107202 0.03925039 0.3113005 -0.02934285 0.03925039 0.3113005 -0.03925039 0.03925039 0.3113005 -0.05087609 0.03925039 0.3113005 -0.06429595 0.03925039 0.3113005 -0.07958143 0.03925039 0.3113005 -0.0968001 0.03925039 0.3113005 -0.1160161 0.03925039 0.3113005 -0.1372908 0.03925039 0.3113005 -0.1606827 0.03925039 0.3113005 -0.1862481 0.03925039 0.3113005 -0.2140411 0.03925039 0.3113005 -0.2441142 0.03925039 0.3113005 -0.2765176 0.03925039 0.3113005 -0.3113005 0.03925039 0.3113005 -0.3485102 0.03925039 0.3113005 -0.388193 0.03925039 0.3113005 -0.4303934 0.03925039 0.3113005 -0.4751555 0.03925039 0.3113005 -0.5225216 0.03925039 0.3113005 -0.5725335 0.03925039 0.3113005 -0.6252316 0.03925039 0.3113005 -0.6806558 0.03925039 0.3113005 -0.7388448 0.03925039 0.3113005 -0.7998369 0.03925039 0.3113005 -0.8636691 0.03925039 0.3113005 -0.9303782 0.03925039 0.3113005 -1 0.03925039 0.3113005 -0 0.05087609 0.3113005 -0.002418731 0.05087609 0.3113005 -0.005155668 0.05087609 0.3113005 -0.009080105 0.05087609 0.3113005 -0.01434988 0.05087609 0.3113005 -0.02107202 0.05087609 0.3113005 -0.02934285 0.05087609 0.3113005 -0.03925039 0.05087609 0.3113005 -0.05087609 0.05087609 0.3113005 -0.06429595 0.05087609 0.3113005 -0.07958143 0.05087609 0.3113005 -0.0968001 0.05087609 0.3113005 -0.1160161 0.05087609 0.3113005 -0.1372908 0.05087609 0.3113005 -0.1606827 0.05087609 0.3113005 -0.1862481 0.05087609 0.3113005 -0.2140411 0.05087609 0.3113005 -0.2441142 0.05087609 0.3113005 -0.2765176 0.05087609 0.3113005 -0.3113005 0.05087609 0.3113005 -0.3485102 0.05087609 0.3113005 -0.388193 0.05087609 0.3113005 -0.4303934 0.05087609 0.3113005 -0.4751555 0.05087609 0.3113005 -0.5225216 0.05087609 0.3113005 -0.5725335 0.05087609 0.3113005 -0.6252316 0.05087609 0.3113005 -0.6806558 0.05087609 0.3113005 -0.7388448 0.05087609 0.3113005 -0.7998369 0.05087609 0.3113005 -0.8636691 0.05087609 0.3113005 -0.9303782 0.05087609 0.3113005 -1 0.05087609 0.3113005 -0 0.06429595 0.3113005 -0.002418731 0.06429595 0.3113005 -0.005155668 0.06429595 0.3113005 -0.009080105 0.06429595 0.3113005 -0.01434988 0.06429595 0.3113005 -0.02107202 0.06429595 0.3113005 -0.02934285 0.06429595 0.3113005 -0.03925039 0.06429595 0.3113005 -0.05087609 0.06429595 0.3113005 -0.06429595 0.06429595 0.3113005 -0.07958143 0.06429595 0.3113005 -0.0968001 0.06429595 0.3113005 -0.1160161 0.06429595 0.3113005 -0.1372908 0.06429595 0.3113005 -0.1606827 0.06429595 0.3113005 -0.1862481 0.06429595 0.3113005 -0.2140411 0.06429595 0.3113005 -0.2441142 0.06429595 0.3113005 -0.2765176 0.06429595 0.3113005 -0.3113005 0.06429595 0.3113005 -0.3485102 0.06429595 0.3113005 -0.388193 0.06429595 0.3113005 -0.4303934 0.06429595 0.3113005 -0.4751555 0.06429595 0.3113005 -0.5225216 0.06429595 0.3113005 -0.5725335 0.06429595 0.3113005 -0.6252316 0.06429595 0.3113005 -0.6806558 0.06429595 0.3113005 -0.7388448 0.06429595 0.3113005 -0.7998369 0.06429595 0.3113005 -0.8636691 0.06429595 0.3113005 -0.9303782 0.06429595 0.3113005 -1 0.06429595 0.3113005 -0 0.07958143 0.3113005 -0.002418731 0.07958143 0.3113005 -0.005155668 0.07958143 0.3113005 -0.009080105 0.07958143 0.3113005 -0.01434988 0.07958143 0.3113005 -0.02107202 0.07958143 0.3113005 -0.02934285 0.07958143 0.3113005 -0.03925039 0.07958143 0.3113005 -0.05087609 0.07958143 0.3113005 -0.06429595 0.07958143 0.3113005 -0.07958143 0.07958143 0.3113005 -0.0968001 0.07958143 0.3113005 -0.1160161 0.07958143 0.3113005 -0.1372908 0.07958143 0.3113005 -0.1606827 0.07958143 0.3113005 -0.1862481 0.07958143 0.3113005 -0.2140411 0.07958143 0.3113005 -0.2441142 0.07958143 0.3113005 -0.2765176 0.07958143 0.3113005 -0.3113005 0.07958143 0.3113005 -0.3485102 0.07958143 0.3113005 -0.388193 0.07958143 0.3113005 -0.4303934 0.07958143 0.3113005 -0.4751555 0.07958143 0.3113005 -0.5225216 0.07958143 0.3113005 -0.5725335 0.07958143 0.3113005 -0.6252316 0.07958143 0.3113005 -0.6806558 0.07958143 0.3113005 -0.7388448 0.07958143 0.3113005 -0.7998369 0.07958143 0.3113005 -0.8636691 0.07958143 0.3113005 -0.9303782 0.07958143 0.3113005 -1 0.07958143 0.3113005 -0 0.0968001 0.3113005 -0.002418731 0.0968001 0.3113005 -0.005155668 0.0968001 0.3113005 -0.009080105 0.0968001 0.3113005 -0.01434988 0.0968001 0.3113005 -0.02107202 0.0968001 0.3113005 -0.02934285 0.0968001 0.3113005 -0.03925039 0.0968001 0.3113005 -0.05087609 0.0968001 0.3113005 -0.06429595 0.0968001 0.3113005 -0.07958143 0.0968001 0.3113005 -0.0968001 0.0968001 0.3113005 -0.1160161 0.0968001 0.3113005 -0.1372908 0.0968001 0.3113005 -0.1606827 0.0968001 0.3113005 -0.1862481 0.0968001 0.3113005 -0.2140411 0.0968001 0.3113005 -0.2441142 0.0968001 0.3113005 -0.2765176 0.0968001 0.3113005 -0.3113005 0.0968001 0.3113005 -0.3485102 0.0968001 0.3113005 -0.388193 0.0968001 0.3113005 -0.4303934 0.0968001 0.3113005 -0.4751555 0.0968001 0.3113005 -0.5225216 0.0968001 0.3113005 -0.5725335 0.0968001 0.3113005 -0.6252316 0.0968001 0.3113005 -0.6806558 0.0968001 0.3113005 -0.7388448 0.0968001 0.3113005 -0.7998369 0.0968001 0.3113005 -0.8636691 0.0968001 0.3113005 -0.9303782 0.0968001 0.3113005 -1 0.0968001 0.3113005 -0 0.1160161 0.3113005 -0.002418731 0.1160161 0.3113005 -0.005155668 0.1160161 0.3113005 -0.009080105 0.1160161 0.3113005 -0.01434988 0.1160161 0.3113005 -0.02107202 0.1160161 0.3113005 -0.02934285 0.1160161 0.3113005 -0.03925039 0.1160161 0.3113005 -0.05087609 0.1160161 0.3113005 -0.06429595 0.1160161 0.3113005 -0.07958143 0.1160161 0.3113005 -0.0968001 0.1160161 0.3113005 -0.1160161 0.1160161 0.3113005 -0.1372908 0.1160161 0.3113005 -0.1606827 0.1160161 0.3113005 -0.1862481 0.1160161 0.3113005 -0.2140411 0.1160161 0.3113005 -0.2441142 0.1160161 0.3113005 -0.2765176 0.1160161 0.3113005 -0.3113005 0.1160161 0.3113005 -0.3485102 0.1160161 0.3113005 -0.388193 0.1160161 0.3113005 -0.4303934 0.1160161 0.3113005 -0.4751555 0.1160161 0.3113005 -0.5225216 0.1160161 0.3113005 -0.5725335 0.1160161 0.3113005 -0.6252316 0.1160161 0.3113005 -0.6806558 0.1160161 0.3113005 -0.7388448 0.1160161 0.3113005 -0.7998369 0.1160161 0.3113005 -0.8636691 0.1160161 0.3113005 -0.9303782 0.1160161 0.3113005 -1 0.1160161 0.3113005 -0 0.1372908 0.3113005 -0.002418731 0.1372908 0.3113005 -0.005155668 0.1372908 0.3113005 -0.009080105 0.1372908 0.3113005 -0.01434988 0.1372908 0.3113005 -0.02107202 0.1372908 0.3113005 -0.02934285 0.1372908 0.3113005 -0.03925039 0.1372908 0.3113005 -0.05087609 0.1372908 0.3113005 -0.06429595 0.1372908 0.3113005 -0.07958143 0.1372908 0.3113005 -0.0968001 0.1372908 0.3113005 -0.1160161 0.1372908 0.3113005 -0.1372908 0.1372908 0.3113005 -0.1606827 0.1372908 0.3113005 -0.1862481 0.1372908 0.3113005 -0.2140411 0.1372908 0.3113005 -0.2441142 0.1372908 0.3113005 -0.2765176 0.1372908 0.3113005 -0.3113005 0.1372908 0.3113005 -0.3485102 0.1372908 0.3113005 -0.388193 0.1372908 0.3113005 -0.4303934 0.1372908 0.3113005 -0.4751555 0.1372908 0.3113005 -0.5225216 0.1372908 0.3113005 -0.5725335 0.1372908 0.3113005 -0.6252316 0.1372908 0.3113005 -0.6806558 0.1372908 0.3113005 -0.7388448 0.1372908 0.3113005 -0.7998369 0.1372908 0.3113005 -0.8636691 0.1372908 0.3113005 -0.9303782 0.1372908 0.3113005 -1 0.1372908 0.3113005 -0 0.1606827 0.3113005 -0.002418731 0.1606827 0.3113005 -0.005155668 0.1606827 0.3113005 -0.009080105 0.1606827 0.3113005 -0.01434988 0.1606827 0.3113005 -0.02107202 0.1606827 0.3113005 -0.02934285 0.1606827 0.3113005 -0.03925039 0.1606827 0.3113005 -0.05087609 0.1606827 0.3113005 -0.06429595 0.1606827 0.3113005 -0.07958143 0.1606827 0.3113005 -0.0968001 0.1606827 0.3113005 -0.1160161 0.1606827 0.3113005 -0.1372908 0.1606827 0.3113005 -0.1606827 0.1606827 0.3113005 -0.1862481 0.1606827 0.3113005 -0.2140411 0.1606827 0.3113005 -0.2441142 0.1606827 0.3113005 -0.2765176 0.1606827 0.3113005 -0.3113005 0.1606827 0.3113005 -0.3485102 0.1606827 0.3113005 -0.388193 0.1606827 0.3113005 -0.4303934 0.1606827 0.3113005 -0.4751555 0.1606827 0.3113005 -0.5225216 0.1606827 0.3113005 -0.5725335 0.1606827 0.3113005 -0.6252316 0.1606827 0.3113005 -0.6806558 0.1606827 0.3113005 -0.7388448 0.1606827 0.3113005 -0.7998369 0.1606827 0.3113005 -0.8636691 0.1606827 0.3113005 -0.9303782 0.1606827 0.3113005 -1 0.1606827 0.3113005 -0 0.1862481 0.3113005 -0.002418731 0.1862481 0.3113005 -0.005155668 0.1862481 0.3113005 -0.009080105 0.1862481 0.3113005 -0.01434988 0.1862481 0.3113005 -0.02107202 0.1862481 0.3113005 -0.02934285 0.1862481 0.3113005 -0.03925039 0.1862481 0.3113005 -0.05087609 0.1862481 0.3113005 -0.06429595 0.1862481 0.3113005 -0.07958143 0.1862481 0.3113005 -0.0968001 0.1862481 0.3113005 -0.1160161 0.1862481 0.3113005 -0.1372908 0.1862481 0.3113005 -0.1606827 0.1862481 0.3113005 -0.1862481 0.1862481 0.3113005 -0.2140411 0.1862481 0.3113005 -0.2441142 0.1862481 0.3113005 -0.2765176 0.1862481 0.3113005 -0.3113005 0.1862481 0.3113005 -0.3485102 0.1862481 0.3113005 -0.388193 0.1862481 0.3113005 -0.4303934 0.1862481 0.3113005 -0.4751555 0.1862481 0.3113005 -0.5225216 0.1862481 0.3113005 -0.5725335 0.1862481 0.3113005 -0.6252316 0.1862481 0.3113005 -0.6806558 0.1862481 0.3113005 -0.7388448 0.1862481 0.3113005 -0.7998369 0.1862481 0.3113005 -0.8636691 0.1862481 0.3113005 -0.9303782 0.1862481 0.3113005 -1 0.1862481 0.3113005 -0 0.2140411 0.3113005 -0.002418731 0.2140411 0.3113005 -0.005155668 0.2140411 0.3113005 -0.009080105 0.2140411 0.3113005 -0.01434988 0.2140411 0.3113005 -0.02107202 0.2140411 0.3113005 -0.02934285 0.2140411 0.3113005 -0.03925039 0.2140411 0.3113005 -0.05087609 0.2140411 0.3113005 -0.06429595 0.2140411 0.3113005 -0.07958143 0.2140411 0.3113005 -0.0968001 0.2140411 0.3113005 -0.1160161 0.2140411 0.3113005 -0.1372908 0.2140411 0.3113005 -0.1606827 0.2140411 0.3113005 -0.1862481 0.2140411 0.3113005 -0.2140411 0.2140411 0.3113005 -0.2441142 0.2140411 0.3113005 -0.2765176 0.2140411 0.3113005 -0.3113005 0.2140411 0.3113005 -0.3485102 0.2140411 0.3113005 -0.388193 0.2140411 0.3113005 -0.4303934 0.2140411 0.3113005 -0.4751555 0.2140411 0.3113005 -0.5225216 0.2140411 0.3113005 -0.5725335 0.2140411 0.3113005 -0.6252316 0.2140411 0.3113005 -0.6806558 0.2140411 0.3113005 -0.7388448 0.2140411 0.3113005 -0.7998369 0.2140411 0.3113005 -0.8636691 0.2140411 0.3113005 -0.9303782 0.2140411 0.3113005 -1 0.2140411 0.3113005 -0 0.2441142 0.3113005 -0.002418731 0.2441142 0.3113005 -0.005155668 0.2441142 0.3113005 -0.009080105 0.2441142 0.3113005 -0.01434988 0.2441142 0.3113005 -0.02107202 0.2441142 0.3113005 -0.02934285 0.2441142 0.3113005 -0.03925039 0.2441142 0.3113005 -0.05087609 0.2441142 0.3113005 -0.06429595 0.2441142 0.3113005 -0.07958143 0.2441142 0.3113005 -0.0968001 0.2441142 0.3113005 -0.1160161 0.2441142 0.3113005 -0.1372908 0.2441142 0.3113005 -0.1606827 0.2441142 0.3113005 -0.1862481 0.2441142 0.3113005 -0.2140411 0.2441142 0.3113005 -0.2441142 0.2441142 0.3113005 -0.2765176 0.2441142 0.3113005 -0.3113005 0.2441142 0.3113005 -0.3485102 0.2441142 0.3113005 -0.388193 0.2441142 0.3113005 -0.4303934 0.2441142 0.3113005 -0.4751555 0.2441142 0.3113005 -0.5225216 0.2441142 0.3113005 -0.5725335 0.2441142 0.3113005 -0.6252316 0.2441142 0.3113005 -0.6806558 0.2441142 0.3113005 -0.7388448 0.2441142 0.3113005 -0.7998369 0.2441142 0.3113005 -0.8636691 0.2441142 0.3113005 -0.9303782 0.2441142 0.3113005 -1 0.2441142 0.3113005 -0 0.2765176 0.3113005 -0.002418731 0.2765176 0.3113005 -0.005155668 0.2765176 0.3113005 -0.009080105 0.2765176 0.3113005 -0.01434988 0.2765176 0.3113005 -0.02107202 0.2765176 0.3113005 -0.02934285 0.2765176 0.3113005 -0.03925039 0.2765176 0.3113005 -0.05087609 0.2765176 0.3113005 -0.06429595 0.2765176 0.3113005 -0.07958143 0.2765176 0.3113005 -0.0968001 0.2765176 0.3113005 -0.1160161 0.2765176 0.3113005 -0.1372908 0.2765176 0.3113005 -0.1606827 0.2765176 0.3113005 -0.1862481 0.2765176 0.3113005 -0.2140411 0.2765176 0.3113005 -0.2441142 0.2765176 0.3113005 -0.2765176 0.2765176 0.3113005 -0.3113005 0.2765176 0.3113005 -0.3485102 0.2765176 0.3113005 -0.388193 0.2765176 0.3113005 -0.4303934 0.2765176 0.3113005 -0.4751555 0.2765176 0.3113005 -0.5225216 0.2765176 0.3113005 -0.5725335 0.2765176 0.3113005 -0.6252316 0.2765176 0.3113005 -0.6806558 0.2765176 0.3113005 -0.7388448 0.2765176 0.3113005 -0.7998369 0.2765176 0.3113005 -0.8636691 0.2765176 0.3113005 -0.9303782 0.2765176 0.3113005 -1 0.2765176 0.3113005 -0 0.3113005 0.3113005 -0.002418731 0.3113005 0.3113005 -0.005155668 0.3113005 0.3113005 -0.009080105 0.3113005 0.3113005 -0.01434988 0.3113005 0.3113005 -0.02107202 0.3113005 0.3113005 -0.02934285 0.3113005 0.3113005 -0.03925039 0.3113005 0.3113005 -0.05087609 0.3113005 0.3113005 -0.06429595 0.3113005 0.3113005 -0.07958143 0.3113005 0.3113005 -0.0968001 0.3113005 0.3113005 -0.1160161 0.3113005 0.3113005 -0.1372908 0.3113005 0.3113005 -0.1606827 0.3113005 0.3113005 -0.1862481 0.3113005 0.3113005 -0.2140411 0.3113005 0.3113005 -0.2441142 0.3113005 0.3113005 -0.2765176 0.3113005 0.3113005 -0.3113005 0.3113005 0.3113005 -0.3485102 0.3113005 0.3113005 -0.388193 0.3113005 0.3113005 -0.4303934 0.3113005 0.3113005 -0.4751555 0.3113005 0.3113005 -0.5225216 0.3113005 0.3113005 -0.5725335 0.3113005 0.3113005 -0.6252316 0.3113005 0.3113005 -0.6806558 0.3113005 0.3113005 -0.7388448 0.3113005 0.3113005 -0.7998369 0.3113005 0.3113005 -0.8636691 0.3113005 0.3113005 -0.9303782 0.3113005 0.3113005 -1 0.3113005 0.3113005 -0 0.3485102 0.3113005 -0.002418731 0.3485102 0.3113005 -0.005155668 0.3485102 0.3113005 -0.009080105 0.3485102 0.3113005 -0.01434988 0.3485102 0.3113005 -0.02107202 0.3485102 0.3113005 -0.02934285 0.3485102 0.3113005 -0.03925039 0.3485102 0.3113005 -0.05087609 0.3485102 0.3113005 -0.06429595 0.3485102 0.3113005 -0.07958143 0.3485102 0.3113005 -0.0968001 0.3485102 0.3113005 -0.1160161 0.3485102 0.3113005 -0.1372908 0.3485102 0.3113005 -0.1606827 0.3485102 0.3113005 -0.1862481 0.3485102 0.3113005 -0.2140411 0.3485102 0.3113005 -0.2441142 0.3485102 0.3113005 -0.2765176 0.3485102 0.3113005 -0.3113005 0.3485102 0.3113005 -0.3485102 0.3485102 0.3113005 -0.388193 0.3485102 0.3113005 -0.4303934 0.3485102 0.3113005 -0.4751555 0.3485102 0.3113005 -0.5225216 0.3485102 0.3113005 -0.5725335 0.3485102 0.3113005 -0.6252316 0.3485102 0.3113005 -0.6806558 0.3485102 0.3113005 -0.7388448 0.3485102 0.3113005 -0.7998369 0.3485102 0.3113005 -0.8636691 0.3485102 0.3113005 -0.9303782 0.3485102 0.3113005 -1 0.3485102 0.3113005 -0 0.388193 0.3113005 -0.002418731 0.388193 0.3113005 -0.005155668 0.388193 0.3113005 -0.009080105 0.388193 0.3113005 -0.01434988 0.388193 0.3113005 -0.02107202 0.388193 0.3113005 -0.02934285 0.388193 0.3113005 -0.03925039 0.388193 0.3113005 -0.05087609 0.388193 0.3113005 -0.06429595 0.388193 0.3113005 -0.07958143 0.388193 0.3113005 -0.0968001 0.388193 0.3113005 -0.1160161 0.388193 0.3113005 -0.1372908 0.388193 0.3113005 -0.1606827 0.388193 0.3113005 -0.1862481 0.388193 0.3113005 -0.2140411 0.388193 0.3113005 -0.2441142 0.388193 0.3113005 -0.2765176 0.388193 0.3113005 -0.3113005 0.388193 0.3113005 -0.3485102 0.388193 0.3113005 -0.388193 0.388193 0.3113005 -0.4303934 0.388193 0.3113005 -0.4751555 0.388193 0.3113005 -0.5225216 0.388193 0.3113005 -0.5725335 0.388193 0.3113005 -0.6252316 0.388193 0.3113005 -0.6806558 0.388193 0.3113005 -0.7388448 0.388193 0.3113005 -0.7998369 0.388193 0.3113005 -0.8636691 0.388193 0.3113005 -0.9303782 0.388193 0.3113005 -1 0.388193 0.3113005 -0 0.4303934 0.3113005 -0.002418731 0.4303934 0.3113005 -0.005155668 0.4303934 0.3113005 -0.009080105 0.4303934 0.3113005 -0.01434988 0.4303934 0.3113005 -0.02107202 0.4303934 0.3113005 -0.02934285 0.4303934 0.3113005 -0.03925039 0.4303934 0.3113005 -0.05087609 0.4303934 0.3113005 -0.06429595 0.4303934 0.3113005 -0.07958143 0.4303934 0.3113005 -0.0968001 0.4303934 0.3113005 -0.1160161 0.4303934 0.3113005 -0.1372908 0.4303934 0.3113005 -0.1606827 0.4303934 0.3113005 -0.1862481 0.4303934 0.3113005 -0.2140411 0.4303934 0.3113005 -0.2441142 0.4303934 0.3113005 -0.2765176 0.4303934 0.3113005 -0.3113005 0.4303934 0.3113005 -0.3485102 0.4303934 0.3113005 -0.388193 0.4303934 0.3113005 -0.4303934 0.4303934 0.3113005 -0.4751555 0.4303934 0.3113005 -0.5225216 0.4303934 0.3113005 -0.5725335 0.4303934 0.3113005 -0.6252316 0.4303934 0.3113005 -0.6806558 0.4303934 0.3113005 -0.7388448 0.4303934 0.3113005 -0.7998369 0.4303934 0.3113005 -0.8636691 0.4303934 0.3113005 -0.9303782 0.4303934 0.3113005 -1 0.4303934 0.3113005 -0 0.4751555 0.3113005 -0.002418731 0.4751555 0.3113005 -0.005155668 0.4751555 0.3113005 -0.009080105 0.4751555 0.3113005 -0.01434988 0.4751555 0.3113005 -0.02107202 0.4751555 0.3113005 -0.02934285 0.4751555 0.3113005 -0.03925039 0.4751555 0.3113005 -0.05087609 0.4751555 0.3113005 -0.06429595 0.4751555 0.3113005 -0.07958143 0.4751555 0.3113005 -0.0968001 0.4751555 0.3113005 -0.1160161 0.4751555 0.3113005 -0.1372908 0.4751555 0.3113005 -0.1606827 0.4751555 0.3113005 -0.1862481 0.4751555 0.3113005 -0.2140411 0.4751555 0.3113005 -0.2441142 0.4751555 0.3113005 -0.2765176 0.4751555 0.3113005 -0.3113005 0.4751555 0.3113005 -0.3485102 0.4751555 0.3113005 -0.388193 0.4751555 0.3113005 -0.4303934 0.4751555 0.3113005 -0.4751555 0.4751555 0.3113005 -0.5225216 0.4751555 0.3113005 -0.5725335 0.4751555 0.3113005 -0.6252316 0.4751555 0.3113005 -0.6806558 0.4751555 0.3113005 -0.7388448 0.4751555 0.3113005 -0.7998369 0.4751555 0.3113005 -0.8636691 0.4751555 0.3113005 -0.9303782 0.4751555 0.3113005 -1 0.4751555 0.3113005 -0 0.5225216 0.3113005 -0.002418731 0.5225216 0.3113005 -0.005155668 0.5225216 0.3113005 -0.009080105 0.5225216 0.3113005 -0.01434988 0.5225216 0.3113005 -0.02107202 0.5225216 0.3113005 -0.02934285 0.5225216 0.3113005 -0.03925039 0.5225216 0.3113005 -0.05087609 0.5225216 0.3113005 -0.06429595 0.5225216 0.3113005 -0.07958143 0.5225216 0.3113005 -0.0968001 0.5225216 0.3113005 -0.1160161 0.5225216 0.3113005 -0.1372908 0.5225216 0.3113005 -0.1606827 0.5225216 0.3113005 -0.1862481 0.5225216 0.3113005 -0.2140411 0.5225216 0.3113005 -0.2441142 0.5225216 0.3113005 -0.2765176 0.5225216 0.3113005 -0.3113005 0.5225216 0.3113005 -0.3485102 0.5225216 0.3113005 -0.388193 0.5225216 0.3113005 -0.4303934 0.5225216 0.3113005 -0.4751555 0.5225216 0.3113005 -0.5225216 0.5225216 0.3113005 -0.5725335 0.5225216 0.3113005 -0.6252316 0.5225216 0.3113005 -0.6806558 0.5225216 0.3113005 -0.7388448 0.5225216 0.3113005 -0.7998369 0.5225216 0.3113005 -0.8636691 0.5225216 0.3113005 -0.9303782 0.5225216 0.3113005 -1 0.5225216 0.3113005 -0 0.5725335 0.3113005 -0.002418731 0.5725335 0.3113005 -0.005155668 0.5725335 0.3113005 -0.009080105 0.5725335 0.3113005 -0.01434988 0.5725335 0.3113005 -0.02107202 0.5725335 0.3113005 -0.02934285 0.5725335 0.3113005 -0.03925039 0.5725335 0.3113005 -0.05087609 0.5725335 0.3113005 -0.06429595 0.5725335 0.3113005 -0.07958143 0.5725335 0.3113005 -0.0968001 0.5725335 0.3113005 -0.1160161 0.5725335 0.3113005 -0.1372908 0.5725335 0.3113005 -0.1606827 0.5725335 0.3113005 -0.1862481 0.5725335 0.3113005 -0.2140411 0.5725335 0.3113005 -0.2441142 0.5725335 0.3113005 -0.2765176 0.5725335 0.3113005 -0.3113005 0.5725335 0.3113005 -0.3485102 0.5725335 0.3113005 -0.388193 0.5725335 0.3113005 -0.4303934 0.5725335 0.3113005 -0.4751555 0.5725335 0.3113005 -0.5225216 0.5725335 0.3113005 -0.5725335 0.5725335 0.3113005 -0.6252316 0.5725335 0.3113005 -0.6806558 0.5725335 0.3113005 -0.7388448 0.5725335 0.3113005 -0.7998369 0.5725335 0.3113005 -0.8636691 0.5725335 0.3113005 -0.9303782 0.5725335 0.3113005 -1 0.5725335 0.3113005 -0 0.6252316 0.3113005 -0.002418731 0.6252316 0.3113005 -0.005155668 0.6252316 0.3113005 -0.009080105 0.6252316 0.3113005 -0.01434988 0.6252316 0.3113005 -0.02107202 0.6252316 0.3113005 -0.02934285 0.6252316 0.3113005 -0.03925039 0.6252316 0.3113005 -0.05087609 0.6252316 0.3113005 -0.06429595 0.6252316 0.3113005 -0.07958143 0.6252316 0.3113005 -0.0968001 0.6252316 0.3113005 -0.1160161 0.6252316 0.3113005 -0.1372908 0.6252316 0.3113005 -0.1606827 0.6252316 0.3113005 -0.1862481 0.6252316 0.3113005 -0.2140411 0.6252316 0.3113005 -0.2441142 0.6252316 0.3113005 -0.2765176 0.6252316 0.3113005 -0.3113005 0.6252316 0.3113005 -0.3485102 0.6252316 0.3113005 -0.388193 0.6252316 0.3113005 -0.4303934 0.6252316 0.3113005 -0.4751555 0.6252316 0.3113005 -0.5225216 0.6252316 0.3113005 -0.5725335 0.6252316 0.3113005 -0.6252316 0.6252316 0.3113005 -0.6806558 0.6252316 0.3113005 -0.7388448 0.6252316 0.3113005 -0.7998369 0.6252316 0.3113005 -0.8636691 0.6252316 0.3113005 -0.9303782 0.6252316 0.3113005 -1 0.6252316 0.3113005 -0 0.6806558 0.3113005 -0.002418731 0.6806558 0.3113005 -0.005155668 0.6806558 0.3113005 -0.009080105 0.6806558 0.3113005 -0.01434988 0.6806558 0.3113005 -0.02107202 0.6806558 0.3113005 -0.02934285 0.6806558 0.3113005 -0.03925039 0.6806558 0.3113005 -0.05087609 0.6806558 0.3113005 -0.06429595 0.6806558 0.3113005 -0.07958143 0.6806558 0.3113005 -0.0968001 0.6806558 0.3113005 -0.1160161 0.6806558 0.3113005 -0.1372908 0.6806558 0.3113005 -0.1606827 0.6806558 0.3113005 -0.1862481 0.6806558 0.3113005 -0.2140411 0.6806558 0.3113005 -0.2441142 0.6806558 0.3113005 -0.2765176 0.6806558 0.3113005 -0.3113005 0.6806558 0.3113005 -0.3485102 0.6806558 0.3113005 -0.388193 0.6806558 0.3113005 -0.4303934 0.6806558 0.3113005 -0.4751555 0.6806558 0.3113005 -0.5225216 0.6806558 0.3113005 -0.5725335 0.6806558 0.3113005 -0.6252316 0.6806558 0.3113005 -0.6806558 0.6806558 0.3113005 -0.7388448 0.6806558 0.3113005 -0.7998369 0.6806558 0.3113005 -0.8636691 0.6806558 0.3113005 -0.9303782 0.6806558 0.3113005 -1 0.6806558 0.3113005 -0 0.7388448 0.3113005 -0.002418731 0.7388448 0.3113005 -0.005155668 0.7388448 0.3113005 -0.009080105 0.7388448 0.3113005 -0.01434988 0.7388448 0.3113005 -0.02107202 0.7388448 0.3113005 -0.02934285 0.7388448 0.3113005 -0.03925039 0.7388448 0.3113005 -0.05087609 0.7388448 0.3113005 -0.06429595 0.7388448 0.3113005 -0.07958143 0.7388448 0.3113005 -0.0968001 0.7388448 0.3113005 -0.1160161 0.7388448 0.3113005 -0.1372908 0.7388448 0.3113005 -0.1606827 0.7388448 0.3113005 -0.1862481 0.7388448 0.3113005 -0.2140411 0.7388448 0.3113005 -0.2441142 0.7388448 0.3113005 -0.2765176 0.7388448 0.3113005 -0.3113005 0.7388448 0.3113005 -0.3485102 0.7388448 0.3113005 -0.388193 0.7388448 0.3113005 -0.4303934 0.7388448 0.3113005 -0.4751555 0.7388448 0.3113005 -0.5225216 0.7388448 0.3113005 -0.5725335 0.7388448 0.3113005 -0.6252316 0.7388448 0.3113005 -0.6806558 0.7388448 0.3113005 -0.7388448 0.7388448 0.3113005 -0.7998369 0.7388448 0.3113005 -0.8636691 0.7388448 0.3113005 -0.9303782 0.7388448 0.3113005 -1 0.7388448 0.3113005 -0 0.7998369 0.3113005 -0.002418731 0.7998369 0.3113005 -0.005155668 0.7998369 0.3113005 -0.009080105 0.7998369 0.3113005 -0.01434988 0.7998369 0.3113005 -0.02107202 0.7998369 0.3113005 -0.02934285 0.7998369 0.3113005 -0.03925039 0.7998369 0.3113005 -0.05087609 0.7998369 0.3113005 -0.06429595 0.7998369 0.3113005 -0.07958143 0.7998369 0.3113005 -0.0968001 0.7998369 0.3113005 -0.1160161 0.7998369 0.3113005 -0.1372908 0.7998369 0.3113005 -0.1606827 0.7998369 0.3113005 -0.1862481 0.7998369 0.3113005 -0.2140411 0.7998369 0.3113005 -0.2441142 0.7998369 0.3113005 -0.2765176 0.7998369 0.3113005 -0.3113005 0.7998369 0.3113005 -0.3485102 0.7998369 0.3113005 -0.388193 0.7998369 0.3113005 -0.4303934 0.7998369 0.3113005 -0.4751555 0.7998369 0.3113005 -0.5225216 0.7998369 0.3113005 -0.5725335 0.7998369 0.3113005 -0.6252316 0.7998369 0.3113005 -0.6806558 0.7998369 0.3113005 -0.7388448 0.7998369 0.3113005 -0.7998369 0.7998369 0.3113005 -0.8636691 0.7998369 0.3113005 -0.9303782 0.7998369 0.3113005 -1 0.7998369 0.3113005 -0 0.8636691 0.3113005 -0.002418731 0.8636691 0.3113005 -0.005155668 0.8636691 0.3113005 -0.009080105 0.8636691 0.3113005 -0.01434988 0.8636691 0.3113005 -0.02107202 0.8636691 0.3113005 -0.02934285 0.8636691 0.3113005 -0.03925039 0.8636691 0.3113005 -0.05087609 0.8636691 0.3113005 -0.06429595 0.8636691 0.3113005 -0.07958143 0.8636691 0.3113005 -0.0968001 0.8636691 0.3113005 -0.1160161 0.8636691 0.3113005 -0.1372908 0.8636691 0.3113005 -0.1606827 0.8636691 0.3113005 -0.1862481 0.8636691 0.3113005 -0.2140411 0.8636691 0.3113005 -0.2441142 0.8636691 0.3113005 -0.2765176 0.8636691 0.3113005 -0.3113005 0.8636691 0.3113005 -0.3485102 0.8636691 0.3113005 -0.388193 0.8636691 0.3113005 -0.4303934 0.8636691 0.3113005 -0.4751555 0.8636691 0.3113005 -0.5225216 0.8636691 0.3113005 -0.5725335 0.8636691 0.3113005 -0.6252316 0.8636691 0.3113005 -0.6806558 0.8636691 0.3113005 -0.7388448 0.8636691 0.3113005 -0.7998369 0.8636691 0.3113005 -0.8636691 0.8636691 0.3113005 -0.9303782 0.8636691 0.3113005 -1 0.8636691 0.3113005 -0 0.9303782 0.3113005 -0.002418731 0.9303782 0.3113005 -0.005155668 0.9303782 0.3113005 -0.009080105 0.9303782 0.3113005 -0.01434988 0.9303782 0.3113005 -0.02107202 0.9303782 0.3113005 -0.02934285 0.9303782 0.3113005 -0.03925039 0.9303782 0.3113005 -0.05087609 0.9303782 0.3113005 -0.06429595 0.9303782 0.3113005 -0.07958143 0.9303782 0.3113005 -0.0968001 0.9303782 0.3113005 -0.1160161 0.9303782 0.3113005 -0.1372908 0.9303782 0.3113005 -0.1606827 0.9303782 0.3113005 -0.1862481 0.9303782 0.3113005 -0.2140411 0.9303782 0.3113005 -0.2441142 0.9303782 0.3113005 -0.2765176 0.9303782 0.3113005 -0.3113005 0.9303782 0.3113005 -0.3485102 0.9303782 0.3113005 -0.388193 0.9303782 0.3113005 -0.4303934 0.9303782 0.3113005 -0.4751555 0.9303782 0.3113005 -0.5225216 0.9303782 0.3113005 -0.5725335 0.9303782 0.3113005 -0.6252316 0.9303782 0.3113005 -0.6806558 0.9303782 0.3113005 -0.7388448 0.9303782 0.3113005 -0.7998369 0.9303782 0.3113005 -0.8636691 0.9303782 0.3113005 -0.9303782 0.9303782 0.3113005 -1 0.9303782 0.3113005 -0 1 0.3113005 -0.002418731 1 0.3113005 -0.005155668 1 0.3113005 -0.009080105 1 0.3113005 -0.01434988 1 0.3113005 -0.02107202 1 0.3113005 -0.02934285 1 0.3113005 -0.03925039 1 0.3113005 -0.05087609 1 0.3113005 -0.06429595 1 0.3113005 -0.07958143 1 0.3113005 -0.0968001 1 0.3113005 -0.1160161 1 0.3113005 -0.1372908 1 0.3113005 -0.1606827 1 0.3113005 -0.1862481 1 0.3113005 -0.2140411 1 0.3113005 -0.2441142 1 0.3113005 -0.2765176 1 0.3113005 -0.3113005 1 0.3113005 -0.3485102 1 0.3113005 -0.388193 1 0.3113005 -0.4303934 1 0.3113005 -0.4751555 1 0.3113005 -0.5225216 1 0.3113005 -0.5725335 1 0.3113005 -0.6252316 1 0.3113005 -0.6806558 1 0.3113005 -0.7388448 1 0.3113005 -0.7998369 1 0.3113005 -0.8636691 1 0.3113005 -0.9303782 1 0.3113005 -1 1 0.3113005 -0 0 0.3485102 -0.002418731 0 0.3485102 -0.005155668 0 0.3485102 -0.009080105 0 0.3485102 -0.01434988 0 0.3485102 -0.02107202 0 0.3485102 -0.02934285 0 0.3485102 -0.03925039 0 0.3485102 -0.05087609 0 0.3485102 -0.06429595 0 0.3485102 -0.07958143 0 0.3485102 -0.0968001 0 0.3485102 -0.1160161 0 0.3485102 -0.1372908 0 0.3485102 -0.1606827 0 0.3485102 -0.1862481 0 0.3485102 -0.2140411 0 0.3485102 -0.2441142 0 0.3485102 -0.2765176 0 0.3485102 -0.3113005 0 0.3485102 -0.3485102 0 0.3485102 -0.388193 0 0.3485102 -0.4303934 0 0.3485102 -0.4751555 0 0.3485102 -0.5225216 0 0.3485102 -0.5725335 0 0.3485102 -0.6252316 0 0.3485102 -0.6806558 0 0.3485102 -0.7388448 0 0.3485102 -0.7998369 0 0.3485102 -0.8636691 0 0.3485102 -0.9303782 0 0.3485102 -1 0 0.3485102 -0 0.002418731 0.3485102 -0.002418731 0.002418731 0.3485102 -0.005155668 0.002418731 0.3485102 -0.009080105 0.002418731 0.3485102 -0.01434988 0.002418731 0.3485102 -0.02107202 0.002418731 0.3485102 -0.02934285 0.002418731 0.3485102 -0.03925039 0.002418731 0.3485102 -0.05087609 0.002418731 0.3485102 -0.06429595 0.002418731 0.3485102 -0.07958143 0.002418731 0.3485102 -0.0968001 0.002418731 0.3485102 -0.1160161 0.002418731 0.3485102 -0.1372908 0.002418731 0.3485102 -0.1606827 0.002418731 0.3485102 -0.1862481 0.002418731 0.3485102 -0.2140411 0.002418731 0.3485102 -0.2441142 0.002418731 0.3485102 -0.2765176 0.002418731 0.3485102 -0.3113005 0.002418731 0.3485102 -0.3485102 0.002418731 0.3485102 -0.388193 0.002418731 0.3485102 -0.4303934 0.002418731 0.3485102 -0.4751555 0.002418731 0.3485102 -0.5225216 0.002418731 0.3485102 -0.5725335 0.002418731 0.3485102 -0.6252316 0.002418731 0.3485102 -0.6806558 0.002418731 0.3485102 -0.7388448 0.002418731 0.3485102 -0.7998369 0.002418731 0.3485102 -0.8636691 0.002418731 0.3485102 -0.9303782 0.002418731 0.3485102 -1 0.002418731 0.3485102 -0 0.005155668 0.3485102 -0.002418731 0.005155668 0.3485102 -0.005155668 0.005155668 0.3485102 -0.009080105 0.005155668 0.3485102 -0.01434988 0.005155668 0.3485102 -0.02107202 0.005155668 0.3485102 -0.02934285 0.005155668 0.3485102 -0.03925039 0.005155668 0.3485102 -0.05087609 0.005155668 0.3485102 -0.06429595 0.005155668 0.3485102 -0.07958143 0.005155668 0.3485102 -0.0968001 0.005155668 0.3485102 -0.1160161 0.005155668 0.3485102 -0.1372908 0.005155668 0.3485102 -0.1606827 0.005155668 0.3485102 -0.1862481 0.005155668 0.3485102 -0.2140411 0.005155668 0.3485102 -0.2441142 0.005155668 0.3485102 -0.2765176 0.005155668 0.3485102 -0.3113005 0.005155668 0.3485102 -0.3485102 0.005155668 0.3485102 -0.388193 0.005155668 0.3485102 -0.4303934 0.005155668 0.3485102 -0.4751555 0.005155668 0.3485102 -0.5225216 0.005155668 0.3485102 -0.5725335 0.005155668 0.3485102 -0.6252316 0.005155668 0.3485102 -0.6806558 0.005155668 0.3485102 -0.7388448 0.005155668 0.3485102 -0.7998369 0.005155668 0.3485102 -0.8636691 0.005155668 0.3485102 -0.9303782 0.005155668 0.3485102 -1 0.005155668 0.3485102 -0 0.009080105 0.3485102 -0.002418731 0.009080105 0.3485102 -0.005155668 0.009080105 0.3485102 -0.009080105 0.009080105 0.3485102 -0.01434988 0.009080105 0.3485102 -0.02107202 0.009080105 0.3485102 -0.02934285 0.009080105 0.3485102 -0.03925039 0.009080105 0.3485102 -0.05087609 0.009080105 0.3485102 -0.06429595 0.009080105 0.3485102 -0.07958143 0.009080105 0.3485102 -0.0968001 0.009080105 0.3485102 -0.1160161 0.009080105 0.3485102 -0.1372908 0.009080105 0.3485102 -0.1606827 0.009080105 0.3485102 -0.1862481 0.009080105 0.3485102 -0.2140411 0.009080105 0.3485102 -0.2441142 0.009080105 0.3485102 -0.2765176 0.009080105 0.3485102 -0.3113005 0.009080105 0.3485102 -0.3485102 0.009080105 0.3485102 -0.388193 0.009080105 0.3485102 -0.4303934 0.009080105 0.3485102 -0.4751555 0.009080105 0.3485102 -0.5225216 0.009080105 0.3485102 -0.5725335 0.009080105 0.3485102 -0.6252316 0.009080105 0.3485102 -0.6806558 0.009080105 0.3485102 -0.7388448 0.009080105 0.3485102 -0.7998369 0.009080105 0.3485102 -0.8636691 0.009080105 0.3485102 -0.9303782 0.009080105 0.3485102 -1 0.009080105 0.3485102 -0 0.01434988 0.3485102 -0.002418731 0.01434988 0.3485102 -0.005155668 0.01434988 0.3485102 -0.009080105 0.01434988 0.3485102 -0.01434988 0.01434988 0.3485102 -0.02107202 0.01434988 0.3485102 -0.02934285 0.01434988 0.3485102 -0.03925039 0.01434988 0.3485102 -0.05087609 0.01434988 0.3485102 -0.06429595 0.01434988 0.3485102 -0.07958143 0.01434988 0.3485102 -0.0968001 0.01434988 0.3485102 -0.1160161 0.01434988 0.3485102 -0.1372908 0.01434988 0.3485102 -0.1606827 0.01434988 0.3485102 -0.1862481 0.01434988 0.3485102 -0.2140411 0.01434988 0.3485102 -0.2441142 0.01434988 0.3485102 -0.2765176 0.01434988 0.3485102 -0.3113005 0.01434988 0.3485102 -0.3485102 0.01434988 0.3485102 -0.388193 0.01434988 0.3485102 -0.4303934 0.01434988 0.3485102 -0.4751555 0.01434988 0.3485102 -0.5225216 0.01434988 0.3485102 -0.5725335 0.01434988 0.3485102 -0.6252316 0.01434988 0.3485102 -0.6806558 0.01434988 0.3485102 -0.7388448 0.01434988 0.3485102 -0.7998369 0.01434988 0.3485102 -0.8636691 0.01434988 0.3485102 -0.9303782 0.01434988 0.3485102 -1 0.01434988 0.3485102 -0 0.02107202 0.3485102 -0.002418731 0.02107202 0.3485102 -0.005155668 0.02107202 0.3485102 -0.009080105 0.02107202 0.3485102 -0.01434988 0.02107202 0.3485102 -0.02107202 0.02107202 0.3485102 -0.02934285 0.02107202 0.3485102 -0.03925039 0.02107202 0.3485102 -0.05087609 0.02107202 0.3485102 -0.06429595 0.02107202 0.3485102 -0.07958143 0.02107202 0.3485102 -0.0968001 0.02107202 0.3485102 -0.1160161 0.02107202 0.3485102 -0.1372908 0.02107202 0.3485102 -0.1606827 0.02107202 0.3485102 -0.1862481 0.02107202 0.3485102 -0.2140411 0.02107202 0.3485102 -0.2441142 0.02107202 0.3485102 -0.2765176 0.02107202 0.3485102 -0.3113005 0.02107202 0.3485102 -0.3485102 0.02107202 0.3485102 -0.388193 0.02107202 0.3485102 -0.4303934 0.02107202 0.3485102 -0.4751555 0.02107202 0.3485102 -0.5225216 0.02107202 0.3485102 -0.5725335 0.02107202 0.3485102 -0.6252316 0.02107202 0.3485102 -0.6806558 0.02107202 0.3485102 -0.7388448 0.02107202 0.3485102 -0.7998369 0.02107202 0.3485102 -0.8636691 0.02107202 0.3485102 -0.9303782 0.02107202 0.3485102 -1 0.02107202 0.3485102 -0 0.02934285 0.3485102 -0.002418731 0.02934285 0.3485102 -0.005155668 0.02934285 0.3485102 -0.009080105 0.02934285 0.3485102 -0.01434988 0.02934285 0.3485102 -0.02107202 0.02934285 0.3485102 -0.02934285 0.02934285 0.3485102 -0.03925039 0.02934285 0.3485102 -0.05087609 0.02934285 0.3485102 -0.06429595 0.02934285 0.3485102 -0.07958143 0.02934285 0.3485102 -0.0968001 0.02934285 0.3485102 -0.1160161 0.02934285 0.3485102 -0.1372908 0.02934285 0.3485102 -0.1606827 0.02934285 0.3485102 -0.1862481 0.02934285 0.3485102 -0.2140411 0.02934285 0.3485102 -0.2441142 0.02934285 0.3485102 -0.2765176 0.02934285 0.3485102 -0.3113005 0.02934285 0.3485102 -0.3485102 0.02934285 0.3485102 -0.388193 0.02934285 0.3485102 -0.4303934 0.02934285 0.3485102 -0.4751555 0.02934285 0.3485102 -0.5225216 0.02934285 0.3485102 -0.5725335 0.02934285 0.3485102 -0.6252316 0.02934285 0.3485102 -0.6806558 0.02934285 0.3485102 -0.7388448 0.02934285 0.3485102 -0.7998369 0.02934285 0.3485102 -0.8636691 0.02934285 0.3485102 -0.9303782 0.02934285 0.3485102 -1 0.02934285 0.3485102 -0 0.03925039 0.3485102 -0.002418731 0.03925039 0.3485102 -0.005155668 0.03925039 0.3485102 -0.009080105 0.03925039 0.3485102 -0.01434988 0.03925039 0.3485102 -0.02107202 0.03925039 0.3485102 -0.02934285 0.03925039 0.3485102 -0.03925039 0.03925039 0.3485102 -0.05087609 0.03925039 0.3485102 -0.06429595 0.03925039 0.3485102 -0.07958143 0.03925039 0.3485102 -0.0968001 0.03925039 0.3485102 -0.1160161 0.03925039 0.3485102 -0.1372908 0.03925039 0.3485102 -0.1606827 0.03925039 0.3485102 -0.1862481 0.03925039 0.3485102 -0.2140411 0.03925039 0.3485102 -0.2441142 0.03925039 0.3485102 -0.2765176 0.03925039 0.3485102 -0.3113005 0.03925039 0.3485102 -0.3485102 0.03925039 0.3485102 -0.388193 0.03925039 0.3485102 -0.4303934 0.03925039 0.3485102 -0.4751555 0.03925039 0.3485102 -0.5225216 0.03925039 0.3485102 -0.5725335 0.03925039 0.3485102 -0.6252316 0.03925039 0.3485102 -0.6806558 0.03925039 0.3485102 -0.7388448 0.03925039 0.3485102 -0.7998369 0.03925039 0.3485102 -0.8636691 0.03925039 0.3485102 -0.9303782 0.03925039 0.3485102 -1 0.03925039 0.3485102 -0 0.05087609 0.3485102 -0.002418731 0.05087609 0.3485102 -0.005155668 0.05087609 0.3485102 -0.009080105 0.05087609 0.3485102 -0.01434988 0.05087609 0.3485102 -0.02107202 0.05087609 0.3485102 -0.02934285 0.05087609 0.3485102 -0.03925039 0.05087609 0.3485102 -0.05087609 0.05087609 0.3485102 -0.06429595 0.05087609 0.3485102 -0.07958143 0.05087609 0.3485102 -0.0968001 0.05087609 0.3485102 -0.1160161 0.05087609 0.3485102 -0.1372908 0.05087609 0.3485102 -0.1606827 0.05087609 0.3485102 -0.1862481 0.05087609 0.3485102 -0.2140411 0.05087609 0.3485102 -0.2441142 0.05087609 0.3485102 -0.2765176 0.05087609 0.3485102 -0.3113005 0.05087609 0.3485102 -0.3485102 0.05087609 0.3485102 -0.388193 0.05087609 0.3485102 -0.4303934 0.05087609 0.3485102 -0.4751555 0.05087609 0.3485102 -0.5225216 0.05087609 0.3485102 -0.5725335 0.05087609 0.3485102 -0.6252316 0.05087609 0.3485102 -0.6806558 0.05087609 0.3485102 -0.7388448 0.05087609 0.3485102 -0.7998369 0.05087609 0.3485102 -0.8636691 0.05087609 0.3485102 -0.9303782 0.05087609 0.3485102 -1 0.05087609 0.3485102 -0 0.06429595 0.3485102 -0.002418731 0.06429595 0.3485102 -0.005155668 0.06429595 0.3485102 -0.009080105 0.06429595 0.3485102 -0.01434988 0.06429595 0.3485102 -0.02107202 0.06429595 0.3485102 -0.02934285 0.06429595 0.3485102 -0.03925039 0.06429595 0.3485102 -0.05087609 0.06429595 0.3485102 -0.06429595 0.06429595 0.3485102 -0.07958143 0.06429595 0.3485102 -0.0968001 0.06429595 0.3485102 -0.1160161 0.06429595 0.3485102 -0.1372908 0.06429595 0.3485102 -0.1606827 0.06429595 0.3485102 -0.1862481 0.06429595 0.3485102 -0.2140411 0.06429595 0.3485102 -0.2441142 0.06429595 0.3485102 -0.2765176 0.06429595 0.3485102 -0.3113005 0.06429595 0.3485102 -0.3485102 0.06429595 0.3485102 -0.388193 0.06429595 0.3485102 -0.4303934 0.06429595 0.3485102 -0.4751555 0.06429595 0.3485102 -0.5225216 0.06429595 0.3485102 -0.5725335 0.06429595 0.3485102 -0.6252316 0.06429595 0.3485102 -0.6806558 0.06429595 0.3485102 -0.7388448 0.06429595 0.3485102 -0.7998369 0.06429595 0.3485102 -0.8636691 0.06429595 0.3485102 -0.9303782 0.06429595 0.3485102 -1 0.06429595 0.3485102 -0 0.07958143 0.3485102 -0.002418731 0.07958143 0.3485102 -0.005155668 0.07958143 0.3485102 -0.009080105 0.07958143 0.3485102 -0.01434988 0.07958143 0.3485102 -0.02107202 0.07958143 0.3485102 -0.02934285 0.07958143 0.3485102 -0.03925039 0.07958143 0.3485102 -0.05087609 0.07958143 0.3485102 -0.06429595 0.07958143 0.3485102 -0.07958143 0.07958143 0.3485102 -0.0968001 0.07958143 0.3485102 -0.1160161 0.07958143 0.3485102 -0.1372908 0.07958143 0.3485102 -0.1606827 0.07958143 0.3485102 -0.1862481 0.07958143 0.3485102 -0.2140411 0.07958143 0.3485102 -0.2441142 0.07958143 0.3485102 -0.2765176 0.07958143 0.3485102 -0.3113005 0.07958143 0.3485102 -0.3485102 0.07958143 0.3485102 -0.388193 0.07958143 0.3485102 -0.4303934 0.07958143 0.3485102 -0.4751555 0.07958143 0.3485102 -0.5225216 0.07958143 0.3485102 -0.5725335 0.07958143 0.3485102 -0.6252316 0.07958143 0.3485102 -0.6806558 0.07958143 0.3485102 -0.7388448 0.07958143 0.3485102 -0.7998369 0.07958143 0.3485102 -0.8636691 0.07958143 0.3485102 -0.9303782 0.07958143 0.3485102 -1 0.07958143 0.3485102 -0 0.0968001 0.3485102 -0.002418731 0.0968001 0.3485102 -0.005155668 0.0968001 0.3485102 -0.009080105 0.0968001 0.3485102 -0.01434988 0.0968001 0.3485102 -0.02107202 0.0968001 0.3485102 -0.02934285 0.0968001 0.3485102 -0.03925039 0.0968001 0.3485102 -0.05087609 0.0968001 0.3485102 -0.06429595 0.0968001 0.3485102 -0.07958143 0.0968001 0.3485102 -0.0968001 0.0968001 0.3485102 -0.1160161 0.0968001 0.3485102 -0.1372908 0.0968001 0.3485102 -0.1606827 0.0968001 0.3485102 -0.1862481 0.0968001 0.3485102 -0.2140411 0.0968001 0.3485102 -0.2441142 0.0968001 0.3485102 -0.2765176 0.0968001 0.3485102 -0.3113005 0.0968001 0.3485102 -0.3485102 0.0968001 0.3485102 -0.388193 0.0968001 0.3485102 -0.4303934 0.0968001 0.3485102 -0.4751555 0.0968001 0.3485102 -0.5225216 0.0968001 0.3485102 -0.5725335 0.0968001 0.3485102 -0.6252316 0.0968001 0.3485102 -0.6806558 0.0968001 0.3485102 -0.7388448 0.0968001 0.3485102 -0.7998369 0.0968001 0.3485102 -0.8636691 0.0968001 0.3485102 -0.9303782 0.0968001 0.3485102 -1 0.0968001 0.3485102 -0 0.1160161 0.3485102 -0.002418731 0.1160161 0.3485102 -0.005155668 0.1160161 0.3485102 -0.009080105 0.1160161 0.3485102 -0.01434988 0.1160161 0.3485102 -0.02107202 0.1160161 0.3485102 -0.02934285 0.1160161 0.3485102 -0.03925039 0.1160161 0.3485102 -0.05087609 0.1160161 0.3485102 -0.06429595 0.1160161 0.3485102 -0.07958143 0.1160161 0.3485102 -0.0968001 0.1160161 0.3485102 -0.1160161 0.1160161 0.3485102 -0.1372908 0.1160161 0.3485102 -0.1606827 0.1160161 0.3485102 -0.1862481 0.1160161 0.3485102 -0.2140411 0.1160161 0.3485102 -0.2441142 0.1160161 0.3485102 -0.2765176 0.1160161 0.3485102 -0.3113005 0.1160161 0.3485102 -0.3485102 0.1160161 0.3485102 -0.388193 0.1160161 0.3485102 -0.4303934 0.1160161 0.3485102 -0.4751555 0.1160161 0.3485102 -0.5225216 0.1160161 0.3485102 -0.5725335 0.1160161 0.3485102 -0.6252316 0.1160161 0.3485102 -0.6806558 0.1160161 0.3485102 -0.7388448 0.1160161 0.3485102 -0.7998369 0.1160161 0.3485102 -0.8636691 0.1160161 0.3485102 -0.9303782 0.1160161 0.3485102 -1 0.1160161 0.3485102 -0 0.1372908 0.3485102 -0.002418731 0.1372908 0.3485102 -0.005155668 0.1372908 0.3485102 -0.009080105 0.1372908 0.3485102 -0.01434988 0.1372908 0.3485102 -0.02107202 0.1372908 0.3485102 -0.02934285 0.1372908 0.3485102 -0.03925039 0.1372908 0.3485102 -0.05087609 0.1372908 0.3485102 -0.06429595 0.1372908 0.3485102 -0.07958143 0.1372908 0.3485102 -0.0968001 0.1372908 0.3485102 -0.1160161 0.1372908 0.3485102 -0.1372908 0.1372908 0.3485102 -0.1606827 0.1372908 0.3485102 -0.1862481 0.1372908 0.3485102 -0.2140411 0.1372908 0.3485102 -0.2441142 0.1372908 0.3485102 -0.2765176 0.1372908 0.3485102 -0.3113005 0.1372908 0.3485102 -0.3485102 0.1372908 0.3485102 -0.388193 0.1372908 0.3485102 -0.4303934 0.1372908 0.3485102 -0.4751555 0.1372908 0.3485102 -0.5225216 0.1372908 0.3485102 -0.5725335 0.1372908 0.3485102 -0.6252316 0.1372908 0.3485102 -0.6806558 0.1372908 0.3485102 -0.7388448 0.1372908 0.3485102 -0.7998369 0.1372908 0.3485102 -0.8636691 0.1372908 0.3485102 -0.9303782 0.1372908 0.3485102 -1 0.1372908 0.3485102 -0 0.1606827 0.3485102 -0.002418731 0.1606827 0.3485102 -0.005155668 0.1606827 0.3485102 -0.009080105 0.1606827 0.3485102 -0.01434988 0.1606827 0.3485102 -0.02107202 0.1606827 0.3485102 -0.02934285 0.1606827 0.3485102 -0.03925039 0.1606827 0.3485102 -0.05087609 0.1606827 0.3485102 -0.06429595 0.1606827 0.3485102 -0.07958143 0.1606827 0.3485102 -0.0968001 0.1606827 0.3485102 -0.1160161 0.1606827 0.3485102 -0.1372908 0.1606827 0.3485102 -0.1606827 0.1606827 0.3485102 -0.1862481 0.1606827 0.3485102 -0.2140411 0.1606827 0.3485102 -0.2441142 0.1606827 0.3485102 -0.2765176 0.1606827 0.3485102 -0.3113005 0.1606827 0.3485102 -0.3485102 0.1606827 0.3485102 -0.388193 0.1606827 0.3485102 -0.4303934 0.1606827 0.3485102 -0.4751555 0.1606827 0.3485102 -0.5225216 0.1606827 0.3485102 -0.5725335 0.1606827 0.3485102 -0.6252316 0.1606827 0.3485102 -0.6806558 0.1606827 0.3485102 -0.7388448 0.1606827 0.3485102 -0.7998369 0.1606827 0.3485102 -0.8636691 0.1606827 0.3485102 -0.9303782 0.1606827 0.3485102 -1 0.1606827 0.3485102 -0 0.1862481 0.3485102 -0.002418731 0.1862481 0.3485102 -0.005155668 0.1862481 0.3485102 -0.009080105 0.1862481 0.3485102 -0.01434988 0.1862481 0.3485102 -0.02107202 0.1862481 0.3485102 -0.02934285 0.1862481 0.3485102 -0.03925039 0.1862481 0.3485102 -0.05087609 0.1862481 0.3485102 -0.06429595 0.1862481 0.3485102 -0.07958143 0.1862481 0.3485102 -0.0968001 0.1862481 0.3485102 -0.1160161 0.1862481 0.3485102 -0.1372908 0.1862481 0.3485102 -0.1606827 0.1862481 0.3485102 -0.1862481 0.1862481 0.3485102 -0.2140411 0.1862481 0.3485102 -0.2441142 0.1862481 0.3485102 -0.2765176 0.1862481 0.3485102 -0.3113005 0.1862481 0.3485102 -0.3485102 0.1862481 0.3485102 -0.388193 0.1862481 0.3485102 -0.4303934 0.1862481 0.3485102 -0.4751555 0.1862481 0.3485102 -0.5225216 0.1862481 0.3485102 -0.5725335 0.1862481 0.3485102 -0.6252316 0.1862481 0.3485102 -0.6806558 0.1862481 0.3485102 -0.7388448 0.1862481 0.3485102 -0.7998369 0.1862481 0.3485102 -0.8636691 0.1862481 0.3485102 -0.9303782 0.1862481 0.3485102 -1 0.1862481 0.3485102 -0 0.2140411 0.3485102 -0.002418731 0.2140411 0.3485102 -0.005155668 0.2140411 0.3485102 -0.009080105 0.2140411 0.3485102 -0.01434988 0.2140411 0.3485102 -0.02107202 0.2140411 0.3485102 -0.02934285 0.2140411 0.3485102 -0.03925039 0.2140411 0.3485102 -0.05087609 0.2140411 0.3485102 -0.06429595 0.2140411 0.3485102 -0.07958143 0.2140411 0.3485102 -0.0968001 0.2140411 0.3485102 -0.1160161 0.2140411 0.3485102 -0.1372908 0.2140411 0.3485102 -0.1606827 0.2140411 0.3485102 -0.1862481 0.2140411 0.3485102 -0.2140411 0.2140411 0.3485102 -0.2441142 0.2140411 0.3485102 -0.2765176 0.2140411 0.3485102 -0.3113005 0.2140411 0.3485102 -0.3485102 0.2140411 0.3485102 -0.388193 0.2140411 0.3485102 -0.4303934 0.2140411 0.3485102 -0.4751555 0.2140411 0.3485102 -0.5225216 0.2140411 0.3485102 -0.5725335 0.2140411 0.3485102 -0.6252316 0.2140411 0.3485102 -0.6806558 0.2140411 0.3485102 -0.7388448 0.2140411 0.3485102 -0.7998369 0.2140411 0.3485102 -0.8636691 0.2140411 0.3485102 -0.9303782 0.2140411 0.3485102 -1 0.2140411 0.3485102 -0 0.2441142 0.3485102 -0.002418731 0.2441142 0.3485102 -0.005155668 0.2441142 0.3485102 -0.009080105 0.2441142 0.3485102 -0.01434988 0.2441142 0.3485102 -0.02107202 0.2441142 0.3485102 -0.02934285 0.2441142 0.3485102 -0.03925039 0.2441142 0.3485102 -0.05087609 0.2441142 0.3485102 -0.06429595 0.2441142 0.3485102 -0.07958143 0.2441142 0.3485102 -0.0968001 0.2441142 0.3485102 -0.1160161 0.2441142 0.3485102 -0.1372908 0.2441142 0.3485102 -0.1606827 0.2441142 0.3485102 -0.1862481 0.2441142 0.3485102 -0.2140411 0.2441142 0.3485102 -0.2441142 0.2441142 0.3485102 -0.2765176 0.2441142 0.3485102 -0.3113005 0.2441142 0.3485102 -0.3485102 0.2441142 0.3485102 -0.388193 0.2441142 0.3485102 -0.4303934 0.2441142 0.3485102 -0.4751555 0.2441142 0.3485102 -0.5225216 0.2441142 0.3485102 -0.5725335 0.2441142 0.3485102 -0.6252316 0.2441142 0.3485102 -0.6806558 0.2441142 0.3485102 -0.7388448 0.2441142 0.3485102 -0.7998369 0.2441142 0.3485102 -0.8636691 0.2441142 0.3485102 -0.9303782 0.2441142 0.3485102 -1 0.2441142 0.3485102 -0 0.2765176 0.3485102 -0.002418731 0.2765176 0.3485102 -0.005155668 0.2765176 0.3485102 -0.009080105 0.2765176 0.3485102 -0.01434988 0.2765176 0.3485102 -0.02107202 0.2765176 0.3485102 -0.02934285 0.2765176 0.3485102 -0.03925039 0.2765176 0.3485102 -0.05087609 0.2765176 0.3485102 -0.06429595 0.2765176 0.3485102 -0.07958143 0.2765176 0.3485102 -0.0968001 0.2765176 0.3485102 -0.1160161 0.2765176 0.3485102 -0.1372908 0.2765176 0.3485102 -0.1606827 0.2765176 0.3485102 -0.1862481 0.2765176 0.3485102 -0.2140411 0.2765176 0.3485102 -0.2441142 0.2765176 0.3485102 -0.2765176 0.2765176 0.3485102 -0.3113005 0.2765176 0.3485102 -0.3485102 0.2765176 0.3485102 -0.388193 0.2765176 0.3485102 -0.4303934 0.2765176 0.3485102 -0.4751555 0.2765176 0.3485102 -0.5225216 0.2765176 0.3485102 -0.5725335 0.2765176 0.3485102 -0.6252316 0.2765176 0.3485102 -0.6806558 0.2765176 0.3485102 -0.7388448 0.2765176 0.3485102 -0.7998369 0.2765176 0.3485102 -0.8636691 0.2765176 0.3485102 -0.9303782 0.2765176 0.3485102 -1 0.2765176 0.3485102 -0 0.3113005 0.3485102 -0.002418731 0.3113005 0.3485102 -0.005155668 0.3113005 0.3485102 -0.009080105 0.3113005 0.3485102 -0.01434988 0.3113005 0.3485102 -0.02107202 0.3113005 0.3485102 -0.02934285 0.3113005 0.3485102 -0.03925039 0.3113005 0.3485102 -0.05087609 0.3113005 0.3485102 -0.06429595 0.3113005 0.3485102 -0.07958143 0.3113005 0.3485102 -0.0968001 0.3113005 0.3485102 -0.1160161 0.3113005 0.3485102 -0.1372908 0.3113005 0.3485102 -0.1606827 0.3113005 0.3485102 -0.1862481 0.3113005 0.3485102 -0.2140411 0.3113005 0.3485102 -0.2441142 0.3113005 0.3485102 -0.2765176 0.3113005 0.3485102 -0.3113005 0.3113005 0.3485102 -0.3485102 0.3113005 0.3485102 -0.388193 0.3113005 0.3485102 -0.4303934 0.3113005 0.3485102 -0.4751555 0.3113005 0.3485102 -0.5225216 0.3113005 0.3485102 -0.5725335 0.3113005 0.3485102 -0.6252316 0.3113005 0.3485102 -0.6806558 0.3113005 0.3485102 -0.7388448 0.3113005 0.3485102 -0.7998369 0.3113005 0.3485102 -0.8636691 0.3113005 0.3485102 -0.9303782 0.3113005 0.3485102 -1 0.3113005 0.3485102 -0 0.3485102 0.3485102 -0.002418731 0.3485102 0.3485102 -0.005155668 0.3485102 0.3485102 -0.009080105 0.3485102 0.3485102 -0.01434988 0.3485102 0.3485102 -0.02107202 0.3485102 0.3485102 -0.02934285 0.3485102 0.3485102 -0.03925039 0.3485102 0.3485102 -0.05087609 0.3485102 0.3485102 -0.06429595 0.3485102 0.3485102 -0.07958143 0.3485102 0.3485102 -0.0968001 0.3485102 0.3485102 -0.1160161 0.3485102 0.3485102 -0.1372908 0.3485102 0.3485102 -0.1606827 0.3485102 0.3485102 -0.1862481 0.3485102 0.3485102 -0.2140411 0.3485102 0.3485102 -0.2441142 0.3485102 0.3485102 -0.2765176 0.3485102 0.3485102 -0.3113005 0.3485102 0.3485102 -0.3485102 0.3485102 0.3485102 -0.388193 0.3485102 0.3485102 -0.4303934 0.3485102 0.3485102 -0.4751555 0.3485102 0.3485102 -0.5225216 0.3485102 0.3485102 -0.5725335 0.3485102 0.3485102 -0.6252316 0.3485102 0.3485102 -0.6806558 0.3485102 0.3485102 -0.7388448 0.3485102 0.3485102 -0.7998369 0.3485102 0.3485102 -0.8636691 0.3485102 0.3485102 -0.9303782 0.3485102 0.3485102 -1 0.3485102 0.3485102 -0 0.388193 0.3485102 -0.002418731 0.388193 0.3485102 -0.005155668 0.388193 0.3485102 -0.009080105 0.388193 0.3485102 -0.01434988 0.388193 0.3485102 -0.02107202 0.388193 0.3485102 -0.02934285 0.388193 0.3485102 -0.03925039 0.388193 0.3485102 -0.05087609 0.388193 0.3485102 -0.06429595 0.388193 0.3485102 -0.07958143 0.388193 0.3485102 -0.0968001 0.388193 0.3485102 -0.1160161 0.388193 0.3485102 -0.1372908 0.388193 0.3485102 -0.1606827 0.388193 0.3485102 -0.1862481 0.388193 0.3485102 -0.2140411 0.388193 0.3485102 -0.2441142 0.388193 0.3485102 -0.2765176 0.388193 0.3485102 -0.3113005 0.388193 0.3485102 -0.3485102 0.388193 0.3485102 -0.388193 0.388193 0.3485102 -0.4303934 0.388193 0.3485102 -0.4751555 0.388193 0.3485102 -0.5225216 0.388193 0.3485102 -0.5725335 0.388193 0.3485102 -0.6252316 0.388193 0.3485102 -0.6806558 0.388193 0.3485102 -0.7388448 0.388193 0.3485102 -0.7998369 0.388193 0.3485102 -0.8636691 0.388193 0.3485102 -0.9303782 0.388193 0.3485102 -1 0.388193 0.3485102 -0 0.4303934 0.3485102 -0.002418731 0.4303934 0.3485102 -0.005155668 0.4303934 0.3485102 -0.009080105 0.4303934 0.3485102 -0.01434988 0.4303934 0.3485102 -0.02107202 0.4303934 0.3485102 -0.02934285 0.4303934 0.3485102 -0.03925039 0.4303934 0.3485102 -0.05087609 0.4303934 0.3485102 -0.06429595 0.4303934 0.3485102 -0.07958143 0.4303934 0.3485102 -0.0968001 0.4303934 0.3485102 -0.1160161 0.4303934 0.3485102 -0.1372908 0.4303934 0.3485102 -0.1606827 0.4303934 0.3485102 -0.1862481 0.4303934 0.3485102 -0.2140411 0.4303934 0.3485102 -0.2441142 0.4303934 0.3485102 -0.2765176 0.4303934 0.3485102 -0.3113005 0.4303934 0.3485102 -0.3485102 0.4303934 0.3485102 -0.388193 0.4303934 0.3485102 -0.4303934 0.4303934 0.3485102 -0.4751555 0.4303934 0.3485102 -0.5225216 0.4303934 0.3485102 -0.5725335 0.4303934 0.3485102 -0.6252316 0.4303934 0.3485102 -0.6806558 0.4303934 0.3485102 -0.7388448 0.4303934 0.3485102 -0.7998369 0.4303934 0.3485102 -0.8636691 0.4303934 0.3485102 -0.9303782 0.4303934 0.3485102 -1 0.4303934 0.3485102 -0 0.4751555 0.3485102 -0.002418731 0.4751555 0.3485102 -0.005155668 0.4751555 0.3485102 -0.009080105 0.4751555 0.3485102 -0.01434988 0.4751555 0.3485102 -0.02107202 0.4751555 0.3485102 -0.02934285 0.4751555 0.3485102 -0.03925039 0.4751555 0.3485102 -0.05087609 0.4751555 0.3485102 -0.06429595 0.4751555 0.3485102 -0.07958143 0.4751555 0.3485102 -0.0968001 0.4751555 0.3485102 -0.1160161 0.4751555 0.3485102 -0.1372908 0.4751555 0.3485102 -0.1606827 0.4751555 0.3485102 -0.1862481 0.4751555 0.3485102 -0.2140411 0.4751555 0.3485102 -0.2441142 0.4751555 0.3485102 -0.2765176 0.4751555 0.3485102 -0.3113005 0.4751555 0.3485102 -0.3485102 0.4751555 0.3485102 -0.388193 0.4751555 0.3485102 -0.4303934 0.4751555 0.3485102 -0.4751555 0.4751555 0.3485102 -0.5225216 0.4751555 0.3485102 -0.5725335 0.4751555 0.3485102 -0.6252316 0.4751555 0.3485102 -0.6806558 0.4751555 0.3485102 -0.7388448 0.4751555 0.3485102 -0.7998369 0.4751555 0.3485102 -0.8636691 0.4751555 0.3485102 -0.9303782 0.4751555 0.3485102 -1 0.4751555 0.3485102 -0 0.5225216 0.3485102 -0.002418731 0.5225216 0.3485102 -0.005155668 0.5225216 0.3485102 -0.009080105 0.5225216 0.3485102 -0.01434988 0.5225216 0.3485102 -0.02107202 0.5225216 0.3485102 -0.02934285 0.5225216 0.3485102 -0.03925039 0.5225216 0.3485102 -0.05087609 0.5225216 0.3485102 -0.06429595 0.5225216 0.3485102 -0.07958143 0.5225216 0.3485102 -0.0968001 0.5225216 0.3485102 -0.1160161 0.5225216 0.3485102 -0.1372908 0.5225216 0.3485102 -0.1606827 0.5225216 0.3485102 -0.1862481 0.5225216 0.3485102 -0.2140411 0.5225216 0.3485102 -0.2441142 0.5225216 0.3485102 -0.2765176 0.5225216 0.3485102 -0.3113005 0.5225216 0.3485102 -0.3485102 0.5225216 0.3485102 -0.388193 0.5225216 0.3485102 -0.4303934 0.5225216 0.3485102 -0.4751555 0.5225216 0.3485102 -0.5225216 0.5225216 0.3485102 -0.5725335 0.5225216 0.3485102 -0.6252316 0.5225216 0.3485102 -0.6806558 0.5225216 0.3485102 -0.7388448 0.5225216 0.3485102 -0.7998369 0.5225216 0.3485102 -0.8636691 0.5225216 0.3485102 -0.9303782 0.5225216 0.3485102 -1 0.5225216 0.3485102 -0 0.5725335 0.3485102 -0.002418731 0.5725335 0.3485102 -0.005155668 0.5725335 0.3485102 -0.009080105 0.5725335 0.3485102 -0.01434988 0.5725335 0.3485102 -0.02107202 0.5725335 0.3485102 -0.02934285 0.5725335 0.3485102 -0.03925039 0.5725335 0.3485102 -0.05087609 0.5725335 0.3485102 -0.06429595 0.5725335 0.3485102 -0.07958143 0.5725335 0.3485102 -0.0968001 0.5725335 0.3485102 -0.1160161 0.5725335 0.3485102 -0.1372908 0.5725335 0.3485102 -0.1606827 0.5725335 0.3485102 -0.1862481 0.5725335 0.3485102 -0.2140411 0.5725335 0.3485102 -0.2441142 0.5725335 0.3485102 -0.2765176 0.5725335 0.3485102 -0.3113005 0.5725335 0.3485102 -0.3485102 0.5725335 0.3485102 -0.388193 0.5725335 0.3485102 -0.4303934 0.5725335 0.3485102 -0.4751555 0.5725335 0.3485102 -0.5225216 0.5725335 0.3485102 -0.5725335 0.5725335 0.3485102 -0.6252316 0.5725335 0.3485102 -0.6806558 0.5725335 0.3485102 -0.7388448 0.5725335 0.3485102 -0.7998369 0.5725335 0.3485102 -0.8636691 0.5725335 0.3485102 -0.9303782 0.5725335 0.3485102 -1 0.5725335 0.3485102 -0 0.6252316 0.3485102 -0.002418731 0.6252316 0.3485102 -0.005155668 0.6252316 0.3485102 -0.009080105 0.6252316 0.3485102 -0.01434988 0.6252316 0.3485102 -0.02107202 0.6252316 0.3485102 -0.02934285 0.6252316 0.3485102 -0.03925039 0.6252316 0.3485102 -0.05087609 0.6252316 0.3485102 -0.06429595 0.6252316 0.3485102 -0.07958143 0.6252316 0.3485102 -0.0968001 0.6252316 0.3485102 -0.1160161 0.6252316 0.3485102 -0.1372908 0.6252316 0.3485102 -0.1606827 0.6252316 0.3485102 -0.1862481 0.6252316 0.3485102 -0.2140411 0.6252316 0.3485102 -0.2441142 0.6252316 0.3485102 -0.2765176 0.6252316 0.3485102 -0.3113005 0.6252316 0.3485102 -0.3485102 0.6252316 0.3485102 -0.388193 0.6252316 0.3485102 -0.4303934 0.6252316 0.3485102 -0.4751555 0.6252316 0.3485102 -0.5225216 0.6252316 0.3485102 -0.5725335 0.6252316 0.3485102 -0.6252316 0.6252316 0.3485102 -0.6806558 0.6252316 0.3485102 -0.7388448 0.6252316 0.3485102 -0.7998369 0.6252316 0.3485102 -0.8636691 0.6252316 0.3485102 -0.9303782 0.6252316 0.3485102 -1 0.6252316 0.3485102 -0 0.6806558 0.3485102 -0.002418731 0.6806558 0.3485102 -0.005155668 0.6806558 0.3485102 -0.009080105 0.6806558 0.3485102 -0.01434988 0.6806558 0.3485102 -0.02107202 0.6806558 0.3485102 -0.02934285 0.6806558 0.3485102 -0.03925039 0.6806558 0.3485102 -0.05087609 0.6806558 0.3485102 -0.06429595 0.6806558 0.3485102 -0.07958143 0.6806558 0.3485102 -0.0968001 0.6806558 0.3485102 -0.1160161 0.6806558 0.3485102 -0.1372908 0.6806558 0.3485102 -0.1606827 0.6806558 0.3485102 -0.1862481 0.6806558 0.3485102 -0.2140411 0.6806558 0.3485102 -0.2441142 0.6806558 0.3485102 -0.2765176 0.6806558 0.3485102 -0.3113005 0.6806558 0.3485102 -0.3485102 0.6806558 0.3485102 -0.388193 0.6806558 0.3485102 -0.4303934 0.6806558 0.3485102 -0.4751555 0.6806558 0.3485102 -0.5225216 0.6806558 0.3485102 -0.5725335 0.6806558 0.3485102 -0.6252316 0.6806558 0.3485102 -0.6806558 0.6806558 0.3485102 -0.7388448 0.6806558 0.3485102 -0.7998369 0.6806558 0.3485102 -0.8636691 0.6806558 0.3485102 -0.9303782 0.6806558 0.3485102 -1 0.6806558 0.3485102 -0 0.7388448 0.3485102 -0.002418731 0.7388448 0.3485102 -0.005155668 0.7388448 0.3485102 -0.009080105 0.7388448 0.3485102 -0.01434988 0.7388448 0.3485102 -0.02107202 0.7388448 0.3485102 -0.02934285 0.7388448 0.3485102 -0.03925039 0.7388448 0.3485102 -0.05087609 0.7388448 0.3485102 -0.06429595 0.7388448 0.3485102 -0.07958143 0.7388448 0.3485102 -0.0968001 0.7388448 0.3485102 -0.1160161 0.7388448 0.3485102 -0.1372908 0.7388448 0.3485102 -0.1606827 0.7388448 0.3485102 -0.1862481 0.7388448 0.3485102 -0.2140411 0.7388448 0.3485102 -0.2441142 0.7388448 0.3485102 -0.2765176 0.7388448 0.3485102 -0.3113005 0.7388448 0.3485102 -0.3485102 0.7388448 0.3485102 -0.388193 0.7388448 0.3485102 -0.4303934 0.7388448 0.3485102 -0.4751555 0.7388448 0.3485102 -0.5225216 0.7388448 0.3485102 -0.5725335 0.7388448 0.3485102 -0.6252316 0.7388448 0.3485102 -0.6806558 0.7388448 0.3485102 -0.7388448 0.7388448 0.3485102 -0.7998369 0.7388448 0.3485102 -0.8636691 0.7388448 0.3485102 -0.9303782 0.7388448 0.3485102 -1 0.7388448 0.3485102 -0 0.7998369 0.3485102 -0.002418731 0.7998369 0.3485102 -0.005155668 0.7998369 0.3485102 -0.009080105 0.7998369 0.3485102 -0.01434988 0.7998369 0.3485102 -0.02107202 0.7998369 0.3485102 -0.02934285 0.7998369 0.3485102 -0.03925039 0.7998369 0.3485102 -0.05087609 0.7998369 0.3485102 -0.06429595 0.7998369 0.3485102 -0.07958143 0.7998369 0.3485102 -0.0968001 0.7998369 0.3485102 -0.1160161 0.7998369 0.3485102 -0.1372908 0.7998369 0.3485102 -0.1606827 0.7998369 0.3485102 -0.1862481 0.7998369 0.3485102 -0.2140411 0.7998369 0.3485102 -0.2441142 0.7998369 0.3485102 -0.2765176 0.7998369 0.3485102 -0.3113005 0.7998369 0.3485102 -0.3485102 0.7998369 0.3485102 -0.388193 0.7998369 0.3485102 -0.4303934 0.7998369 0.3485102 -0.4751555 0.7998369 0.3485102 -0.5225216 0.7998369 0.3485102 -0.5725335 0.7998369 0.3485102 -0.6252316 0.7998369 0.3485102 -0.6806558 0.7998369 0.3485102 -0.7388448 0.7998369 0.3485102 -0.7998369 0.7998369 0.3485102 -0.8636691 0.7998369 0.3485102 -0.9303782 0.7998369 0.3485102 -1 0.7998369 0.3485102 -0 0.8636691 0.3485102 -0.002418731 0.8636691 0.3485102 -0.005155668 0.8636691 0.3485102 -0.009080105 0.8636691 0.3485102 -0.01434988 0.8636691 0.3485102 -0.02107202 0.8636691 0.3485102 -0.02934285 0.8636691 0.3485102 -0.03925039 0.8636691 0.3485102 -0.05087609 0.8636691 0.3485102 -0.06429595 0.8636691 0.3485102 -0.07958143 0.8636691 0.3485102 -0.0968001 0.8636691 0.3485102 -0.1160161 0.8636691 0.3485102 -0.1372908 0.8636691 0.3485102 -0.1606827 0.8636691 0.3485102 -0.1862481 0.8636691 0.3485102 -0.2140411 0.8636691 0.3485102 -0.2441142 0.8636691 0.3485102 -0.2765176 0.8636691 0.3485102 -0.3113005 0.8636691 0.3485102 -0.3485102 0.8636691 0.3485102 -0.388193 0.8636691 0.3485102 -0.4303934 0.8636691 0.3485102 -0.4751555 0.8636691 0.3485102 -0.5225216 0.8636691 0.3485102 -0.5725335 0.8636691 0.3485102 -0.6252316 0.8636691 0.3485102 -0.6806558 0.8636691 0.3485102 -0.7388448 0.8636691 0.3485102 -0.7998369 0.8636691 0.3485102 -0.8636691 0.8636691 0.3485102 -0.9303782 0.8636691 0.3485102 -1 0.8636691 0.3485102 -0 0.9303782 0.3485102 -0.002418731 0.9303782 0.3485102 -0.005155668 0.9303782 0.3485102 -0.009080105 0.9303782 0.3485102 -0.01434988 0.9303782 0.3485102 -0.02107202 0.9303782 0.3485102 -0.02934285 0.9303782 0.3485102 -0.03925039 0.9303782 0.3485102 -0.05087609 0.9303782 0.3485102 -0.06429595 0.9303782 0.3485102 -0.07958143 0.9303782 0.3485102 -0.0968001 0.9303782 0.3485102 -0.1160161 0.9303782 0.3485102 -0.1372908 0.9303782 0.3485102 -0.1606827 0.9303782 0.3485102 -0.1862481 0.9303782 0.3485102 -0.2140411 0.9303782 0.3485102 -0.2441142 0.9303782 0.3485102 -0.2765176 0.9303782 0.3485102 -0.3113005 0.9303782 0.3485102 -0.3485102 0.9303782 0.3485102 -0.388193 0.9303782 0.3485102 -0.4303934 0.9303782 0.3485102 -0.4751555 0.9303782 0.3485102 -0.5225216 0.9303782 0.3485102 -0.5725335 0.9303782 0.3485102 -0.6252316 0.9303782 0.3485102 -0.6806558 0.9303782 0.3485102 -0.7388448 0.9303782 0.3485102 -0.7998369 0.9303782 0.3485102 -0.8636691 0.9303782 0.3485102 -0.9303782 0.9303782 0.3485102 -1 0.9303782 0.3485102 -0 1 0.3485102 -0.002418731 1 0.3485102 -0.005155668 1 0.3485102 -0.009080105 1 0.3485102 -0.01434988 1 0.3485102 -0.02107202 1 0.3485102 -0.02934285 1 0.3485102 -0.03925039 1 0.3485102 -0.05087609 1 0.3485102 -0.06429595 1 0.3485102 -0.07958143 1 0.3485102 -0.0968001 1 0.3485102 -0.1160161 1 0.3485102 -0.1372908 1 0.3485102 -0.1606827 1 0.3485102 -0.1862481 1 0.3485102 -0.2140411 1 0.3485102 -0.2441142 1 0.3485102 -0.2765176 1 0.3485102 -0.3113005 1 0.3485102 -0.3485102 1 0.3485102 -0.388193 1 0.3485102 -0.4303934 1 0.3485102 -0.4751555 1 0.3485102 -0.5225216 1 0.3485102 -0.5725335 1 0.3485102 -0.6252316 1 0.3485102 -0.6806558 1 0.3485102 -0.7388448 1 0.3485102 -0.7998369 1 0.3485102 -0.8636691 1 0.3485102 -0.9303782 1 0.3485102 -1 1 0.3485102 -0 0 0.388193 -0.002418731 0 0.388193 -0.005155668 0 0.388193 -0.009080105 0 0.388193 -0.01434988 0 0.388193 -0.02107202 0 0.388193 -0.02934285 0 0.388193 -0.03925039 0 0.388193 -0.05087609 0 0.388193 -0.06429595 0 0.388193 -0.07958143 0 0.388193 -0.0968001 0 0.388193 -0.1160161 0 0.388193 -0.1372908 0 0.388193 -0.1606827 0 0.388193 -0.1862481 0 0.388193 -0.2140411 0 0.388193 -0.2441142 0 0.388193 -0.2765176 0 0.388193 -0.3113005 0 0.388193 -0.3485102 0 0.388193 -0.388193 0 0.388193 -0.4303934 0 0.388193 -0.4751555 0 0.388193 -0.5225216 0 0.388193 -0.5725335 0 0.388193 -0.6252316 0 0.388193 -0.6806558 0 0.388193 -0.7388448 0 0.388193 -0.7998369 0 0.388193 -0.8636691 0 0.388193 -0.9303782 0 0.388193 -1 0 0.388193 -0 0.002418731 0.388193 -0.002418731 0.002418731 0.388193 -0.005155668 0.002418731 0.388193 -0.009080105 0.002418731 0.388193 -0.01434988 0.002418731 0.388193 -0.02107202 0.002418731 0.388193 -0.02934285 0.002418731 0.388193 -0.03925039 0.002418731 0.388193 -0.05087609 0.002418731 0.388193 -0.06429595 0.002418731 0.388193 -0.07958143 0.002418731 0.388193 -0.0968001 0.002418731 0.388193 -0.1160161 0.002418731 0.388193 -0.1372908 0.002418731 0.388193 -0.1606827 0.002418731 0.388193 -0.1862481 0.002418731 0.388193 -0.2140411 0.002418731 0.388193 -0.2441142 0.002418731 0.388193 -0.2765176 0.002418731 0.388193 -0.3113005 0.002418731 0.388193 -0.3485102 0.002418731 0.388193 -0.388193 0.002418731 0.388193 -0.4303934 0.002418731 0.388193 -0.4751555 0.002418731 0.388193 -0.5225216 0.002418731 0.388193 -0.5725335 0.002418731 0.388193 -0.6252316 0.002418731 0.388193 -0.6806558 0.002418731 0.388193 -0.7388448 0.002418731 0.388193 -0.7998369 0.002418731 0.388193 -0.8636691 0.002418731 0.388193 -0.9303782 0.002418731 0.388193 -1 0.002418731 0.388193 -0 0.005155668 0.388193 -0.002418731 0.005155668 0.388193 -0.005155668 0.005155668 0.388193 -0.009080105 0.005155668 0.388193 -0.01434988 0.005155668 0.388193 -0.02107202 0.005155668 0.388193 -0.02934285 0.005155668 0.388193 -0.03925039 0.005155668 0.388193 -0.05087609 0.005155668 0.388193 -0.06429595 0.005155668 0.388193 -0.07958143 0.005155668 0.388193 -0.0968001 0.005155668 0.388193 -0.1160161 0.005155668 0.388193 -0.1372908 0.005155668 0.388193 -0.1606827 0.005155668 0.388193 -0.1862481 0.005155668 0.388193 -0.2140411 0.005155668 0.388193 -0.2441142 0.005155668 0.388193 -0.2765176 0.005155668 0.388193 -0.3113005 0.005155668 0.388193 -0.3485102 0.005155668 0.388193 -0.388193 0.005155668 0.388193 -0.4303934 0.005155668 0.388193 -0.4751555 0.005155668 0.388193 -0.5225216 0.005155668 0.388193 -0.5725335 0.005155668 0.388193 -0.6252316 0.005155668 0.388193 -0.6806558 0.005155668 0.388193 -0.7388448 0.005155668 0.388193 -0.7998369 0.005155668 0.388193 -0.8636691 0.005155668 0.388193 -0.9303782 0.005155668 0.388193 -1 0.005155668 0.388193 -0 0.009080105 0.388193 -0.002418731 0.009080105 0.388193 -0.005155668 0.009080105 0.388193 -0.009080105 0.009080105 0.388193 -0.01434988 0.009080105 0.388193 -0.02107202 0.009080105 0.388193 -0.02934285 0.009080105 0.388193 -0.03925039 0.009080105 0.388193 -0.05087609 0.009080105 0.388193 -0.06429595 0.009080105 0.388193 -0.07958143 0.009080105 0.388193 -0.0968001 0.009080105 0.388193 -0.1160161 0.009080105 0.388193 -0.1372908 0.009080105 0.388193 -0.1606827 0.009080105 0.388193 -0.1862481 0.009080105 0.388193 -0.2140411 0.009080105 0.388193 -0.2441142 0.009080105 0.388193 -0.2765176 0.009080105 0.388193 -0.3113005 0.009080105 0.388193 -0.3485102 0.009080105 0.388193 -0.388193 0.009080105 0.388193 -0.4303934 0.009080105 0.388193 -0.4751555 0.009080105 0.388193 -0.5225216 0.009080105 0.388193 -0.5725335 0.009080105 0.388193 -0.6252316 0.009080105 0.388193 -0.6806558 0.009080105 0.388193 -0.7388448 0.009080105 0.388193 -0.7998369 0.009080105 0.388193 -0.8636691 0.009080105 0.388193 -0.9303782 0.009080105 0.388193 -1 0.009080105 0.388193 -0 0.01434988 0.388193 -0.002418731 0.01434988 0.388193 -0.005155668 0.01434988 0.388193 -0.009080105 0.01434988 0.388193 -0.01434988 0.01434988 0.388193 -0.02107202 0.01434988 0.388193 -0.02934285 0.01434988 0.388193 -0.03925039 0.01434988 0.388193 -0.05087609 0.01434988 0.388193 -0.06429595 0.01434988 0.388193 -0.07958143 0.01434988 0.388193 -0.0968001 0.01434988 0.388193 -0.1160161 0.01434988 0.388193 -0.1372908 0.01434988 0.388193 -0.1606827 0.01434988 0.388193 -0.1862481 0.01434988 0.388193 -0.2140411 0.01434988 0.388193 -0.2441142 0.01434988 0.388193 -0.2765176 0.01434988 0.388193 -0.3113005 0.01434988 0.388193 -0.3485102 0.01434988 0.388193 -0.388193 0.01434988 0.388193 -0.4303934 0.01434988 0.388193 -0.4751555 0.01434988 0.388193 -0.5225216 0.01434988 0.388193 -0.5725335 0.01434988 0.388193 -0.6252316 0.01434988 0.388193 -0.6806558 0.01434988 0.388193 -0.7388448 0.01434988 0.388193 -0.7998369 0.01434988 0.388193 -0.8636691 0.01434988 0.388193 -0.9303782 0.01434988 0.388193 -1 0.01434988 0.388193 -0 0.02107202 0.388193 -0.002418731 0.02107202 0.388193 -0.005155668 0.02107202 0.388193 -0.009080105 0.02107202 0.388193 -0.01434988 0.02107202 0.388193 -0.02107202 0.02107202 0.388193 -0.02934285 0.02107202 0.388193 -0.03925039 0.02107202 0.388193 -0.05087609 0.02107202 0.388193 -0.06429595 0.02107202 0.388193 -0.07958143 0.02107202 0.388193 -0.0968001 0.02107202 0.388193 -0.1160161 0.02107202 0.388193 -0.1372908 0.02107202 0.388193 -0.1606827 0.02107202 0.388193 -0.1862481 0.02107202 0.388193 -0.2140411 0.02107202 0.388193 -0.2441142 0.02107202 0.388193 -0.2765176 0.02107202 0.388193 -0.3113005 0.02107202 0.388193 -0.3485102 0.02107202 0.388193 -0.388193 0.02107202 0.388193 -0.4303934 0.02107202 0.388193 -0.4751555 0.02107202 0.388193 -0.5225216 0.02107202 0.388193 -0.5725335 0.02107202 0.388193 -0.6252316 0.02107202 0.388193 -0.6806558 0.02107202 0.388193 -0.7388448 0.02107202 0.388193 -0.7998369 0.02107202 0.388193 -0.8636691 0.02107202 0.388193 -0.9303782 0.02107202 0.388193 -1 0.02107202 0.388193 -0 0.02934285 0.388193 -0.002418731 0.02934285 0.388193 -0.005155668 0.02934285 0.388193 -0.009080105 0.02934285 0.388193 -0.01434988 0.02934285 0.388193 -0.02107202 0.02934285 0.388193 -0.02934285 0.02934285 0.388193 -0.03925039 0.02934285 0.388193 -0.05087609 0.02934285 0.388193 -0.06429595 0.02934285 0.388193 -0.07958143 0.02934285 0.388193 -0.0968001 0.02934285 0.388193 -0.1160161 0.02934285 0.388193 -0.1372908 0.02934285 0.388193 -0.1606827 0.02934285 0.388193 -0.1862481 0.02934285 0.388193 -0.2140411 0.02934285 0.388193 -0.2441142 0.02934285 0.388193 -0.2765176 0.02934285 0.388193 -0.3113005 0.02934285 0.388193 -0.3485102 0.02934285 0.388193 -0.388193 0.02934285 0.388193 -0.4303934 0.02934285 0.388193 -0.4751555 0.02934285 0.388193 -0.5225216 0.02934285 0.388193 -0.5725335 0.02934285 0.388193 -0.6252316 0.02934285 0.388193 -0.6806558 0.02934285 0.388193 -0.7388448 0.02934285 0.388193 -0.7998369 0.02934285 0.388193 -0.8636691 0.02934285 0.388193 -0.9303782 0.02934285 0.388193 -1 0.02934285 0.388193 -0 0.03925039 0.388193 -0.002418731 0.03925039 0.388193 -0.005155668 0.03925039 0.388193 -0.009080105 0.03925039 0.388193 -0.01434988 0.03925039 0.388193 -0.02107202 0.03925039 0.388193 -0.02934285 0.03925039 0.388193 -0.03925039 0.03925039 0.388193 -0.05087609 0.03925039 0.388193 -0.06429595 0.03925039 0.388193 -0.07958143 0.03925039 0.388193 -0.0968001 0.03925039 0.388193 -0.1160161 0.03925039 0.388193 -0.1372908 0.03925039 0.388193 -0.1606827 0.03925039 0.388193 -0.1862481 0.03925039 0.388193 -0.2140411 0.03925039 0.388193 -0.2441142 0.03925039 0.388193 -0.2765176 0.03925039 0.388193 -0.3113005 0.03925039 0.388193 -0.3485102 0.03925039 0.388193 -0.388193 0.03925039 0.388193 -0.4303934 0.03925039 0.388193 -0.4751555 0.03925039 0.388193 -0.5225216 0.03925039 0.388193 -0.5725335 0.03925039 0.388193 -0.6252316 0.03925039 0.388193 -0.6806558 0.03925039 0.388193 -0.7388448 0.03925039 0.388193 -0.7998369 0.03925039 0.388193 -0.8636691 0.03925039 0.388193 -0.9303782 0.03925039 0.388193 -1 0.03925039 0.388193 -0 0.05087609 0.388193 -0.002418731 0.05087609 0.388193 -0.005155668 0.05087609 0.388193 -0.009080105 0.05087609 0.388193 -0.01434988 0.05087609 0.388193 -0.02107202 0.05087609 0.388193 -0.02934285 0.05087609 0.388193 -0.03925039 0.05087609 0.388193 -0.05087609 0.05087609 0.388193 -0.06429595 0.05087609 0.388193 -0.07958143 0.05087609 0.388193 -0.0968001 0.05087609 0.388193 -0.1160161 0.05087609 0.388193 -0.1372908 0.05087609 0.388193 -0.1606827 0.05087609 0.388193 -0.1862481 0.05087609 0.388193 -0.2140411 0.05087609 0.388193 -0.2441142 0.05087609 0.388193 -0.2765176 0.05087609 0.388193 -0.3113005 0.05087609 0.388193 -0.3485102 0.05087609 0.388193 -0.388193 0.05087609 0.388193 -0.4303934 0.05087609 0.388193 -0.4751555 0.05087609 0.388193 -0.5225216 0.05087609 0.388193 -0.5725335 0.05087609 0.388193 -0.6252316 0.05087609 0.388193 -0.6806558 0.05087609 0.388193 -0.7388448 0.05087609 0.388193 -0.7998369 0.05087609 0.388193 -0.8636691 0.05087609 0.388193 -0.9303782 0.05087609 0.388193 -1 0.05087609 0.388193 -0 0.06429595 0.388193 -0.002418731 0.06429595 0.388193 -0.005155668 0.06429595 0.388193 -0.009080105 0.06429595 0.388193 -0.01434988 0.06429595 0.388193 -0.02107202 0.06429595 0.388193 -0.02934285 0.06429595 0.388193 -0.03925039 0.06429595 0.388193 -0.05087609 0.06429595 0.388193 -0.06429595 0.06429595 0.388193 -0.07958143 0.06429595 0.388193 -0.0968001 0.06429595 0.388193 -0.1160161 0.06429595 0.388193 -0.1372908 0.06429595 0.388193 -0.1606827 0.06429595 0.388193 -0.1862481 0.06429595 0.388193 -0.2140411 0.06429595 0.388193 -0.2441142 0.06429595 0.388193 -0.2765176 0.06429595 0.388193 -0.3113005 0.06429595 0.388193 -0.3485102 0.06429595 0.388193 -0.388193 0.06429595 0.388193 -0.4303934 0.06429595 0.388193 -0.4751555 0.06429595 0.388193 -0.5225216 0.06429595 0.388193 -0.5725335 0.06429595 0.388193 -0.6252316 0.06429595 0.388193 -0.6806558 0.06429595 0.388193 -0.7388448 0.06429595 0.388193 -0.7998369 0.06429595 0.388193 -0.8636691 0.06429595 0.388193 -0.9303782 0.06429595 0.388193 -1 0.06429595 0.388193 -0 0.07958143 0.388193 -0.002418731 0.07958143 0.388193 -0.005155668 0.07958143 0.388193 -0.009080105 0.07958143 0.388193 -0.01434988 0.07958143 0.388193 -0.02107202 0.07958143 0.388193 -0.02934285 0.07958143 0.388193 -0.03925039 0.07958143 0.388193 -0.05087609 0.07958143 0.388193 -0.06429595 0.07958143 0.388193 -0.07958143 0.07958143 0.388193 -0.0968001 0.07958143 0.388193 -0.1160161 0.07958143 0.388193 -0.1372908 0.07958143 0.388193 -0.1606827 0.07958143 0.388193 -0.1862481 0.07958143 0.388193 -0.2140411 0.07958143 0.388193 -0.2441142 0.07958143 0.388193 -0.2765176 0.07958143 0.388193 -0.3113005 0.07958143 0.388193 -0.3485102 0.07958143 0.388193 -0.388193 0.07958143 0.388193 -0.4303934 0.07958143 0.388193 -0.4751555 0.07958143 0.388193 -0.5225216 0.07958143 0.388193 -0.5725335 0.07958143 0.388193 -0.6252316 0.07958143 0.388193 -0.6806558 0.07958143 0.388193 -0.7388448 0.07958143 0.388193 -0.7998369 0.07958143 0.388193 -0.8636691 0.07958143 0.388193 -0.9303782 0.07958143 0.388193 -1 0.07958143 0.388193 -0 0.0968001 0.388193 -0.002418731 0.0968001 0.388193 -0.005155668 0.0968001 0.388193 -0.009080105 0.0968001 0.388193 -0.01434988 0.0968001 0.388193 -0.02107202 0.0968001 0.388193 -0.02934285 0.0968001 0.388193 -0.03925039 0.0968001 0.388193 -0.05087609 0.0968001 0.388193 -0.06429595 0.0968001 0.388193 -0.07958143 0.0968001 0.388193 -0.0968001 0.0968001 0.388193 -0.1160161 0.0968001 0.388193 -0.1372908 0.0968001 0.388193 -0.1606827 0.0968001 0.388193 -0.1862481 0.0968001 0.388193 -0.2140411 0.0968001 0.388193 -0.2441142 0.0968001 0.388193 -0.2765176 0.0968001 0.388193 -0.3113005 0.0968001 0.388193 -0.3485102 0.0968001 0.388193 -0.388193 0.0968001 0.388193 -0.4303934 0.0968001 0.388193 -0.4751555 0.0968001 0.388193 -0.5225216 0.0968001 0.388193 -0.5725335 0.0968001 0.388193 -0.6252316 0.0968001 0.388193 -0.6806558 0.0968001 0.388193 -0.7388448 0.0968001 0.388193 -0.7998369 0.0968001 0.388193 -0.8636691 0.0968001 0.388193 -0.9303782 0.0968001 0.388193 -1 0.0968001 0.388193 -0 0.1160161 0.388193 -0.002418731 0.1160161 0.388193 -0.005155668 0.1160161 0.388193 -0.009080105 0.1160161 0.388193 -0.01434988 0.1160161 0.388193 -0.02107202 0.1160161 0.388193 -0.02934285 0.1160161 0.388193 -0.03925039 0.1160161 0.388193 -0.05087609 0.1160161 0.388193 -0.06429595 0.1160161 0.388193 -0.07958143 0.1160161 0.388193 -0.0968001 0.1160161 0.388193 -0.1160161 0.1160161 0.388193 -0.1372908 0.1160161 0.388193 -0.1606827 0.1160161 0.388193 -0.1862481 0.1160161 0.388193 -0.2140411 0.1160161 0.388193 -0.2441142 0.1160161 0.388193 -0.2765176 0.1160161 0.388193 -0.3113005 0.1160161 0.388193 -0.3485102 0.1160161 0.388193 -0.388193 0.1160161 0.388193 -0.4303934 0.1160161 0.388193 -0.4751555 0.1160161 0.388193 -0.5225216 0.1160161 0.388193 -0.5725335 0.1160161 0.388193 -0.6252316 0.1160161 0.388193 -0.6806558 0.1160161 0.388193 -0.7388448 0.1160161 0.388193 -0.7998369 0.1160161 0.388193 -0.8636691 0.1160161 0.388193 -0.9303782 0.1160161 0.388193 -1 0.1160161 0.388193 -0 0.1372908 0.388193 -0.002418731 0.1372908 0.388193 -0.005155668 0.1372908 0.388193 -0.009080105 0.1372908 0.388193 -0.01434988 0.1372908 0.388193 -0.02107202 0.1372908 0.388193 -0.02934285 0.1372908 0.388193 -0.03925039 0.1372908 0.388193 -0.05087609 0.1372908 0.388193 -0.06429595 0.1372908 0.388193 -0.07958143 0.1372908 0.388193 -0.0968001 0.1372908 0.388193 -0.1160161 0.1372908 0.388193 -0.1372908 0.1372908 0.388193 -0.1606827 0.1372908 0.388193 -0.1862481 0.1372908 0.388193 -0.2140411 0.1372908 0.388193 -0.2441142 0.1372908 0.388193 -0.2765176 0.1372908 0.388193 -0.3113005 0.1372908 0.388193 -0.3485102 0.1372908 0.388193 -0.388193 0.1372908 0.388193 -0.4303934 0.1372908 0.388193 -0.4751555 0.1372908 0.388193 -0.5225216 0.1372908 0.388193 -0.5725335 0.1372908 0.388193 -0.6252316 0.1372908 0.388193 -0.6806558 0.1372908 0.388193 -0.7388448 0.1372908 0.388193 -0.7998369 0.1372908 0.388193 -0.8636691 0.1372908 0.388193 -0.9303782 0.1372908 0.388193 -1 0.1372908 0.388193 -0 0.1606827 0.388193 -0.002418731 0.1606827 0.388193 -0.005155668 0.1606827 0.388193 -0.009080105 0.1606827 0.388193 -0.01434988 0.1606827 0.388193 -0.02107202 0.1606827 0.388193 -0.02934285 0.1606827 0.388193 -0.03925039 0.1606827 0.388193 -0.05087609 0.1606827 0.388193 -0.06429595 0.1606827 0.388193 -0.07958143 0.1606827 0.388193 -0.0968001 0.1606827 0.388193 -0.1160161 0.1606827 0.388193 -0.1372908 0.1606827 0.388193 -0.1606827 0.1606827 0.388193 -0.1862481 0.1606827 0.388193 -0.2140411 0.1606827 0.388193 -0.2441142 0.1606827 0.388193 -0.2765176 0.1606827 0.388193 -0.3113005 0.1606827 0.388193 -0.3485102 0.1606827 0.388193 -0.388193 0.1606827 0.388193 -0.4303934 0.1606827 0.388193 -0.4751555 0.1606827 0.388193 -0.5225216 0.1606827 0.388193 -0.5725335 0.1606827 0.388193 -0.6252316 0.1606827 0.388193 -0.6806558 0.1606827 0.388193 -0.7388448 0.1606827 0.388193 -0.7998369 0.1606827 0.388193 -0.8636691 0.1606827 0.388193 -0.9303782 0.1606827 0.388193 -1 0.1606827 0.388193 -0 0.1862481 0.388193 -0.002418731 0.1862481 0.388193 -0.005155668 0.1862481 0.388193 -0.009080105 0.1862481 0.388193 -0.01434988 0.1862481 0.388193 -0.02107202 0.1862481 0.388193 -0.02934285 0.1862481 0.388193 -0.03925039 0.1862481 0.388193 -0.05087609 0.1862481 0.388193 -0.06429595 0.1862481 0.388193 -0.07958143 0.1862481 0.388193 -0.0968001 0.1862481 0.388193 -0.1160161 0.1862481 0.388193 -0.1372908 0.1862481 0.388193 -0.1606827 0.1862481 0.388193 -0.1862481 0.1862481 0.388193 -0.2140411 0.1862481 0.388193 -0.2441142 0.1862481 0.388193 -0.2765176 0.1862481 0.388193 -0.3113005 0.1862481 0.388193 -0.3485102 0.1862481 0.388193 -0.388193 0.1862481 0.388193 -0.4303934 0.1862481 0.388193 -0.4751555 0.1862481 0.388193 -0.5225216 0.1862481 0.388193 -0.5725335 0.1862481 0.388193 -0.6252316 0.1862481 0.388193 -0.6806558 0.1862481 0.388193 -0.7388448 0.1862481 0.388193 -0.7998369 0.1862481 0.388193 -0.8636691 0.1862481 0.388193 -0.9303782 0.1862481 0.388193 -1 0.1862481 0.388193 -0 0.2140411 0.388193 -0.002418731 0.2140411 0.388193 -0.005155668 0.2140411 0.388193 -0.009080105 0.2140411 0.388193 -0.01434988 0.2140411 0.388193 -0.02107202 0.2140411 0.388193 -0.02934285 0.2140411 0.388193 -0.03925039 0.2140411 0.388193 -0.05087609 0.2140411 0.388193 -0.06429595 0.2140411 0.388193 -0.07958143 0.2140411 0.388193 -0.0968001 0.2140411 0.388193 -0.1160161 0.2140411 0.388193 -0.1372908 0.2140411 0.388193 -0.1606827 0.2140411 0.388193 -0.1862481 0.2140411 0.388193 -0.2140411 0.2140411 0.388193 -0.2441142 0.2140411 0.388193 -0.2765176 0.2140411 0.388193 -0.3113005 0.2140411 0.388193 -0.3485102 0.2140411 0.388193 -0.388193 0.2140411 0.388193 -0.4303934 0.2140411 0.388193 -0.4751555 0.2140411 0.388193 -0.5225216 0.2140411 0.388193 -0.5725335 0.2140411 0.388193 -0.6252316 0.2140411 0.388193 -0.6806558 0.2140411 0.388193 -0.7388448 0.2140411 0.388193 -0.7998369 0.2140411 0.388193 -0.8636691 0.2140411 0.388193 -0.9303782 0.2140411 0.388193 -1 0.2140411 0.388193 -0 0.2441142 0.388193 -0.002418731 0.2441142 0.388193 -0.005155668 0.2441142 0.388193 -0.009080105 0.2441142 0.388193 -0.01434988 0.2441142 0.388193 -0.02107202 0.2441142 0.388193 -0.02934285 0.2441142 0.388193 -0.03925039 0.2441142 0.388193 -0.05087609 0.2441142 0.388193 -0.06429595 0.2441142 0.388193 -0.07958143 0.2441142 0.388193 -0.0968001 0.2441142 0.388193 -0.1160161 0.2441142 0.388193 -0.1372908 0.2441142 0.388193 -0.1606827 0.2441142 0.388193 -0.1862481 0.2441142 0.388193 -0.2140411 0.2441142 0.388193 -0.2441142 0.2441142 0.388193 -0.2765176 0.2441142 0.388193 -0.3113005 0.2441142 0.388193 -0.3485102 0.2441142 0.388193 -0.388193 0.2441142 0.388193 -0.4303934 0.2441142 0.388193 -0.4751555 0.2441142 0.388193 -0.5225216 0.2441142 0.388193 -0.5725335 0.2441142 0.388193 -0.6252316 0.2441142 0.388193 -0.6806558 0.2441142 0.388193 -0.7388448 0.2441142 0.388193 -0.7998369 0.2441142 0.388193 -0.8636691 0.2441142 0.388193 -0.9303782 0.2441142 0.388193 -1 0.2441142 0.388193 -0 0.2765176 0.388193 -0.002418731 0.2765176 0.388193 -0.005155668 0.2765176 0.388193 -0.009080105 0.2765176 0.388193 -0.01434988 0.2765176 0.388193 -0.02107202 0.2765176 0.388193 -0.02934285 0.2765176 0.388193 -0.03925039 0.2765176 0.388193 -0.05087609 0.2765176 0.388193 -0.06429595 0.2765176 0.388193 -0.07958143 0.2765176 0.388193 -0.0968001 0.2765176 0.388193 -0.1160161 0.2765176 0.388193 -0.1372908 0.2765176 0.388193 -0.1606827 0.2765176 0.388193 -0.1862481 0.2765176 0.388193 -0.2140411 0.2765176 0.388193 -0.2441142 0.2765176 0.388193 -0.2765176 0.2765176 0.388193 -0.3113005 0.2765176 0.388193 -0.3485102 0.2765176 0.388193 -0.388193 0.2765176 0.388193 -0.4303934 0.2765176 0.388193 -0.4751555 0.2765176 0.388193 -0.5225216 0.2765176 0.388193 -0.5725335 0.2765176 0.388193 -0.6252316 0.2765176 0.388193 -0.6806558 0.2765176 0.388193 -0.7388448 0.2765176 0.388193 -0.7998369 0.2765176 0.388193 -0.8636691 0.2765176 0.388193 -0.9303782 0.2765176 0.388193 -1 0.2765176 0.388193 -0 0.3113005 0.388193 -0.002418731 0.3113005 0.388193 -0.005155668 0.3113005 0.388193 -0.009080105 0.3113005 0.388193 -0.01434988 0.3113005 0.388193 -0.02107202 0.3113005 0.388193 -0.02934285 0.3113005 0.388193 -0.03925039 0.3113005 0.388193 -0.05087609 0.3113005 0.388193 -0.06429595 0.3113005 0.388193 -0.07958143 0.3113005 0.388193 -0.0968001 0.3113005 0.388193 -0.1160161 0.3113005 0.388193 -0.1372908 0.3113005 0.388193 -0.1606827 0.3113005 0.388193 -0.1862481 0.3113005 0.388193 -0.2140411 0.3113005 0.388193 -0.2441142 0.3113005 0.388193 -0.2765176 0.3113005 0.388193 -0.3113005 0.3113005 0.388193 -0.3485102 0.3113005 0.388193 -0.388193 0.3113005 0.388193 -0.4303934 0.3113005 0.388193 -0.4751555 0.3113005 0.388193 -0.5225216 0.3113005 0.388193 -0.5725335 0.3113005 0.388193 -0.6252316 0.3113005 0.388193 -0.6806558 0.3113005 0.388193 -0.7388448 0.3113005 0.388193 -0.7998369 0.3113005 0.388193 -0.8636691 0.3113005 0.388193 -0.9303782 0.3113005 0.388193 -1 0.3113005 0.388193 -0 0.3485102 0.388193 -0.002418731 0.3485102 0.388193 -0.005155668 0.3485102 0.388193 -0.009080105 0.3485102 0.388193 -0.01434988 0.3485102 0.388193 -0.02107202 0.3485102 0.388193 -0.02934285 0.3485102 0.388193 -0.03925039 0.3485102 0.388193 -0.05087609 0.3485102 0.388193 -0.06429595 0.3485102 0.388193 -0.07958143 0.3485102 0.388193 -0.0968001 0.3485102 0.388193 -0.1160161 0.3485102 0.388193 -0.1372908 0.3485102 0.388193 -0.1606827 0.3485102 0.388193 -0.1862481 0.3485102 0.388193 -0.2140411 0.3485102 0.388193 -0.2441142 0.3485102 0.388193 -0.2765176 0.3485102 0.388193 -0.3113005 0.3485102 0.388193 -0.3485102 0.3485102 0.388193 -0.388193 0.3485102 0.388193 -0.4303934 0.3485102 0.388193 -0.4751555 0.3485102 0.388193 -0.5225216 0.3485102 0.388193 -0.5725335 0.3485102 0.388193 -0.6252316 0.3485102 0.388193 -0.6806558 0.3485102 0.388193 -0.7388448 0.3485102 0.388193 -0.7998369 0.3485102 0.388193 -0.8636691 0.3485102 0.388193 -0.9303782 0.3485102 0.388193 -1 0.3485102 0.388193 -0 0.388193 0.388193 -0.002418731 0.388193 0.388193 -0.005155668 0.388193 0.388193 -0.009080105 0.388193 0.388193 -0.01434988 0.388193 0.388193 -0.02107202 0.388193 0.388193 -0.02934285 0.388193 0.388193 -0.03925039 0.388193 0.388193 -0.05087609 0.388193 0.388193 -0.06429595 0.388193 0.388193 -0.07958143 0.388193 0.388193 -0.0968001 0.388193 0.388193 -0.1160161 0.388193 0.388193 -0.1372908 0.388193 0.388193 -0.1606827 0.388193 0.388193 -0.1862481 0.388193 0.388193 -0.2140411 0.388193 0.388193 -0.2441142 0.388193 0.388193 -0.2765176 0.388193 0.388193 -0.3113005 0.388193 0.388193 -0.3485102 0.388193 0.388193 -0.388193 0.388193 0.388193 -0.4303934 0.388193 0.388193 -0.4751555 0.388193 0.388193 -0.5225216 0.388193 0.388193 -0.5725335 0.388193 0.388193 -0.6252316 0.388193 0.388193 -0.6806558 0.388193 0.388193 -0.7388448 0.388193 0.388193 -0.7998369 0.388193 0.388193 -0.8636691 0.388193 0.388193 -0.9303782 0.388193 0.388193 -1 0.388193 0.388193 -0 0.4303934 0.388193 -0.002418731 0.4303934 0.388193 -0.005155668 0.4303934 0.388193 -0.009080105 0.4303934 0.388193 -0.01434988 0.4303934 0.388193 -0.02107202 0.4303934 0.388193 -0.02934285 0.4303934 0.388193 -0.03925039 0.4303934 0.388193 -0.05087609 0.4303934 0.388193 -0.06429595 0.4303934 0.388193 -0.07958143 0.4303934 0.388193 -0.0968001 0.4303934 0.388193 -0.1160161 0.4303934 0.388193 -0.1372908 0.4303934 0.388193 -0.1606827 0.4303934 0.388193 -0.1862481 0.4303934 0.388193 -0.2140411 0.4303934 0.388193 -0.2441142 0.4303934 0.388193 -0.2765176 0.4303934 0.388193 -0.3113005 0.4303934 0.388193 -0.3485102 0.4303934 0.388193 -0.388193 0.4303934 0.388193 -0.4303934 0.4303934 0.388193 -0.4751555 0.4303934 0.388193 -0.5225216 0.4303934 0.388193 -0.5725335 0.4303934 0.388193 -0.6252316 0.4303934 0.388193 -0.6806558 0.4303934 0.388193 -0.7388448 0.4303934 0.388193 -0.7998369 0.4303934 0.388193 -0.8636691 0.4303934 0.388193 -0.9303782 0.4303934 0.388193 -1 0.4303934 0.388193 -0 0.4751555 0.388193 -0.002418731 0.4751555 0.388193 -0.005155668 0.4751555 0.388193 -0.009080105 0.4751555 0.388193 -0.01434988 0.4751555 0.388193 -0.02107202 0.4751555 0.388193 -0.02934285 0.4751555 0.388193 -0.03925039 0.4751555 0.388193 -0.05087609 0.4751555 0.388193 -0.06429595 0.4751555 0.388193 -0.07958143 0.4751555 0.388193 -0.0968001 0.4751555 0.388193 -0.1160161 0.4751555 0.388193 -0.1372908 0.4751555 0.388193 -0.1606827 0.4751555 0.388193 -0.1862481 0.4751555 0.388193 -0.2140411 0.4751555 0.388193 -0.2441142 0.4751555 0.388193 -0.2765176 0.4751555 0.388193 -0.3113005 0.4751555 0.388193 -0.3485102 0.4751555 0.388193 -0.388193 0.4751555 0.388193 -0.4303934 0.4751555 0.388193 -0.4751555 0.4751555 0.388193 -0.5225216 0.4751555 0.388193 -0.5725335 0.4751555 0.388193 -0.6252316 0.4751555 0.388193 -0.6806558 0.4751555 0.388193 -0.7388448 0.4751555 0.388193 -0.7998369 0.4751555 0.388193 -0.8636691 0.4751555 0.388193 -0.9303782 0.4751555 0.388193 -1 0.4751555 0.388193 -0 0.5225216 0.388193 -0.002418731 0.5225216 0.388193 -0.005155668 0.5225216 0.388193 -0.009080105 0.5225216 0.388193 -0.01434988 0.5225216 0.388193 -0.02107202 0.5225216 0.388193 -0.02934285 0.5225216 0.388193 -0.03925039 0.5225216 0.388193 -0.05087609 0.5225216 0.388193 -0.06429595 0.5225216 0.388193 -0.07958143 0.5225216 0.388193 -0.0968001 0.5225216 0.388193 -0.1160161 0.5225216 0.388193 -0.1372908 0.5225216 0.388193 -0.1606827 0.5225216 0.388193 -0.1862481 0.5225216 0.388193 -0.2140411 0.5225216 0.388193 -0.2441142 0.5225216 0.388193 -0.2765176 0.5225216 0.388193 -0.3113005 0.5225216 0.388193 -0.3485102 0.5225216 0.388193 -0.388193 0.5225216 0.388193 -0.4303934 0.5225216 0.388193 -0.4751555 0.5225216 0.388193 -0.5225216 0.5225216 0.388193 -0.5725335 0.5225216 0.388193 -0.6252316 0.5225216 0.388193 -0.6806558 0.5225216 0.388193 -0.7388448 0.5225216 0.388193 -0.7998369 0.5225216 0.388193 -0.8636691 0.5225216 0.388193 -0.9303782 0.5225216 0.388193 -1 0.5225216 0.388193 -0 0.5725335 0.388193 -0.002418731 0.5725335 0.388193 -0.005155668 0.5725335 0.388193 -0.009080105 0.5725335 0.388193 -0.01434988 0.5725335 0.388193 -0.02107202 0.5725335 0.388193 -0.02934285 0.5725335 0.388193 -0.03925039 0.5725335 0.388193 -0.05087609 0.5725335 0.388193 -0.06429595 0.5725335 0.388193 -0.07958143 0.5725335 0.388193 -0.0968001 0.5725335 0.388193 -0.1160161 0.5725335 0.388193 -0.1372908 0.5725335 0.388193 -0.1606827 0.5725335 0.388193 -0.1862481 0.5725335 0.388193 -0.2140411 0.5725335 0.388193 -0.2441142 0.5725335 0.388193 -0.2765176 0.5725335 0.388193 -0.3113005 0.5725335 0.388193 -0.3485102 0.5725335 0.388193 -0.388193 0.5725335 0.388193 -0.4303934 0.5725335 0.388193 -0.4751555 0.5725335 0.388193 -0.5225216 0.5725335 0.388193 -0.5725335 0.5725335 0.388193 -0.6252316 0.5725335 0.388193 -0.6806558 0.5725335 0.388193 -0.7388448 0.5725335 0.388193 -0.7998369 0.5725335 0.388193 -0.8636691 0.5725335 0.388193 -0.9303782 0.5725335 0.388193 -1 0.5725335 0.388193 -0 0.6252316 0.388193 -0.002418731 0.6252316 0.388193 -0.005155668 0.6252316 0.388193 -0.009080105 0.6252316 0.388193 -0.01434988 0.6252316 0.388193 -0.02107202 0.6252316 0.388193 -0.02934285 0.6252316 0.388193 -0.03925039 0.6252316 0.388193 -0.05087609 0.6252316 0.388193 -0.06429595 0.6252316 0.388193 -0.07958143 0.6252316 0.388193 -0.0968001 0.6252316 0.388193 -0.1160161 0.6252316 0.388193 -0.1372908 0.6252316 0.388193 -0.1606827 0.6252316 0.388193 -0.1862481 0.6252316 0.388193 -0.2140411 0.6252316 0.388193 -0.2441142 0.6252316 0.388193 -0.2765176 0.6252316 0.388193 -0.3113005 0.6252316 0.388193 -0.3485102 0.6252316 0.388193 -0.388193 0.6252316 0.388193 -0.4303934 0.6252316 0.388193 -0.4751555 0.6252316 0.388193 -0.5225216 0.6252316 0.388193 -0.5725335 0.6252316 0.388193 -0.6252316 0.6252316 0.388193 -0.6806558 0.6252316 0.388193 -0.7388448 0.6252316 0.388193 -0.7998369 0.6252316 0.388193 -0.8636691 0.6252316 0.388193 -0.9303782 0.6252316 0.388193 -1 0.6252316 0.388193 -0 0.6806558 0.388193 -0.002418731 0.6806558 0.388193 -0.005155668 0.6806558 0.388193 -0.009080105 0.6806558 0.388193 -0.01434988 0.6806558 0.388193 -0.02107202 0.6806558 0.388193 -0.02934285 0.6806558 0.388193 -0.03925039 0.6806558 0.388193 -0.05087609 0.6806558 0.388193 -0.06429595 0.6806558 0.388193 -0.07958143 0.6806558 0.388193 -0.0968001 0.6806558 0.388193 -0.1160161 0.6806558 0.388193 -0.1372908 0.6806558 0.388193 -0.1606827 0.6806558 0.388193 -0.1862481 0.6806558 0.388193 -0.2140411 0.6806558 0.388193 -0.2441142 0.6806558 0.388193 -0.2765176 0.6806558 0.388193 -0.3113005 0.6806558 0.388193 -0.3485102 0.6806558 0.388193 -0.388193 0.6806558 0.388193 -0.4303934 0.6806558 0.388193 -0.4751555 0.6806558 0.388193 -0.5225216 0.6806558 0.388193 -0.5725335 0.6806558 0.388193 -0.6252316 0.6806558 0.388193 -0.6806558 0.6806558 0.388193 -0.7388448 0.6806558 0.388193 -0.7998369 0.6806558 0.388193 -0.8636691 0.6806558 0.388193 -0.9303782 0.6806558 0.388193 -1 0.6806558 0.388193 -0 0.7388448 0.388193 -0.002418731 0.7388448 0.388193 -0.005155668 0.7388448 0.388193 -0.009080105 0.7388448 0.388193 -0.01434988 0.7388448 0.388193 -0.02107202 0.7388448 0.388193 -0.02934285 0.7388448 0.388193 -0.03925039 0.7388448 0.388193 -0.05087609 0.7388448 0.388193 -0.06429595 0.7388448 0.388193 -0.07958143 0.7388448 0.388193 -0.0968001 0.7388448 0.388193 -0.1160161 0.7388448 0.388193 -0.1372908 0.7388448 0.388193 -0.1606827 0.7388448 0.388193 -0.1862481 0.7388448 0.388193 -0.2140411 0.7388448 0.388193 -0.2441142 0.7388448 0.388193 -0.2765176 0.7388448 0.388193 -0.3113005 0.7388448 0.388193 -0.3485102 0.7388448 0.388193 -0.388193 0.7388448 0.388193 -0.4303934 0.7388448 0.388193 -0.4751555 0.7388448 0.388193 -0.5225216 0.7388448 0.388193 -0.5725335 0.7388448 0.388193 -0.6252316 0.7388448 0.388193 -0.6806558 0.7388448 0.388193 -0.7388448 0.7388448 0.388193 -0.7998369 0.7388448 0.388193 -0.8636691 0.7388448 0.388193 -0.9303782 0.7388448 0.388193 -1 0.7388448 0.388193 -0 0.7998369 0.388193 -0.002418731 0.7998369 0.388193 -0.005155668 0.7998369 0.388193 -0.009080105 0.7998369 0.388193 -0.01434988 0.7998369 0.388193 -0.02107202 0.7998369 0.388193 -0.02934285 0.7998369 0.388193 -0.03925039 0.7998369 0.388193 -0.05087609 0.7998369 0.388193 -0.06429595 0.7998369 0.388193 -0.07958143 0.7998369 0.388193 -0.0968001 0.7998369 0.388193 -0.1160161 0.7998369 0.388193 -0.1372908 0.7998369 0.388193 -0.1606827 0.7998369 0.388193 -0.1862481 0.7998369 0.388193 -0.2140411 0.7998369 0.388193 -0.2441142 0.7998369 0.388193 -0.2765176 0.7998369 0.388193 -0.3113005 0.7998369 0.388193 -0.3485102 0.7998369 0.388193 -0.388193 0.7998369 0.388193 -0.4303934 0.7998369 0.388193 -0.4751555 0.7998369 0.388193 -0.5225216 0.7998369 0.388193 -0.5725335 0.7998369 0.388193 -0.6252316 0.7998369 0.388193 -0.6806558 0.7998369 0.388193 -0.7388448 0.7998369 0.388193 -0.7998369 0.7998369 0.388193 -0.8636691 0.7998369 0.388193 -0.9303782 0.7998369 0.388193 -1 0.7998369 0.388193 -0 0.8636691 0.388193 -0.002418731 0.8636691 0.388193 -0.005155668 0.8636691 0.388193 -0.009080105 0.8636691 0.388193 -0.01434988 0.8636691 0.388193 -0.02107202 0.8636691 0.388193 -0.02934285 0.8636691 0.388193 -0.03925039 0.8636691 0.388193 -0.05087609 0.8636691 0.388193 -0.06429595 0.8636691 0.388193 -0.07958143 0.8636691 0.388193 -0.0968001 0.8636691 0.388193 -0.1160161 0.8636691 0.388193 -0.1372908 0.8636691 0.388193 -0.1606827 0.8636691 0.388193 -0.1862481 0.8636691 0.388193 -0.2140411 0.8636691 0.388193 -0.2441142 0.8636691 0.388193 -0.2765176 0.8636691 0.388193 -0.3113005 0.8636691 0.388193 -0.3485102 0.8636691 0.388193 -0.388193 0.8636691 0.388193 -0.4303934 0.8636691 0.388193 -0.4751555 0.8636691 0.388193 -0.5225216 0.8636691 0.388193 -0.5725335 0.8636691 0.388193 -0.6252316 0.8636691 0.388193 -0.6806558 0.8636691 0.388193 -0.7388448 0.8636691 0.388193 -0.7998369 0.8636691 0.388193 -0.8636691 0.8636691 0.388193 -0.9303782 0.8636691 0.388193 -1 0.8636691 0.388193 -0 0.9303782 0.388193 -0.002418731 0.9303782 0.388193 -0.005155668 0.9303782 0.388193 -0.009080105 0.9303782 0.388193 -0.01434988 0.9303782 0.388193 -0.02107202 0.9303782 0.388193 -0.02934285 0.9303782 0.388193 -0.03925039 0.9303782 0.388193 -0.05087609 0.9303782 0.388193 -0.06429595 0.9303782 0.388193 -0.07958143 0.9303782 0.388193 -0.0968001 0.9303782 0.388193 -0.1160161 0.9303782 0.388193 -0.1372908 0.9303782 0.388193 -0.1606827 0.9303782 0.388193 -0.1862481 0.9303782 0.388193 -0.2140411 0.9303782 0.388193 -0.2441142 0.9303782 0.388193 -0.2765176 0.9303782 0.388193 -0.3113005 0.9303782 0.388193 -0.3485102 0.9303782 0.388193 -0.388193 0.9303782 0.388193 -0.4303934 0.9303782 0.388193 -0.4751555 0.9303782 0.388193 -0.5225216 0.9303782 0.388193 -0.5725335 0.9303782 0.388193 -0.6252316 0.9303782 0.388193 -0.6806558 0.9303782 0.388193 -0.7388448 0.9303782 0.388193 -0.7998369 0.9303782 0.388193 -0.8636691 0.9303782 0.388193 -0.9303782 0.9303782 0.388193 -1 0.9303782 0.388193 -0 1 0.388193 -0.002418731 1 0.388193 -0.005155668 1 0.388193 -0.009080105 1 0.388193 -0.01434988 1 0.388193 -0.02107202 1 0.388193 -0.02934285 1 0.388193 -0.03925039 1 0.388193 -0.05087609 1 0.388193 -0.06429595 1 0.388193 -0.07958143 1 0.388193 -0.0968001 1 0.388193 -0.1160161 1 0.388193 -0.1372908 1 0.388193 -0.1606827 1 0.388193 -0.1862481 1 0.388193 -0.2140411 1 0.388193 -0.2441142 1 0.388193 -0.2765176 1 0.388193 -0.3113005 1 0.388193 -0.3485102 1 0.388193 -0.388193 1 0.388193 -0.4303934 1 0.388193 -0.4751555 1 0.388193 -0.5225216 1 0.388193 -0.5725335 1 0.388193 -0.6252316 1 0.388193 -0.6806558 1 0.388193 -0.7388448 1 0.388193 -0.7998369 1 0.388193 -0.8636691 1 0.388193 -0.9303782 1 0.388193 -1 1 0.388193 -0 0 0.4303934 -0.002418731 0 0.4303934 -0.005155668 0 0.4303934 -0.009080105 0 0.4303934 -0.01434988 0 0.4303934 -0.02107202 0 0.4303934 -0.02934285 0 0.4303934 -0.03925039 0 0.4303934 -0.05087609 0 0.4303934 -0.06429595 0 0.4303934 -0.07958143 0 0.4303934 -0.0968001 0 0.4303934 -0.1160161 0 0.4303934 -0.1372908 0 0.4303934 -0.1606827 0 0.4303934 -0.1862481 0 0.4303934 -0.2140411 0 0.4303934 -0.2441142 0 0.4303934 -0.2765176 0 0.4303934 -0.3113005 0 0.4303934 -0.3485102 0 0.4303934 -0.388193 0 0.4303934 -0.4303934 0 0.4303934 -0.4751555 0 0.4303934 -0.5225216 0 0.4303934 -0.5725335 0 0.4303934 -0.6252316 0 0.4303934 -0.6806558 0 0.4303934 -0.7388448 0 0.4303934 -0.7998369 0 0.4303934 -0.8636691 0 0.4303934 -0.9303782 0 0.4303934 -1 0 0.4303934 -0 0.002418731 0.4303934 -0.002418731 0.002418731 0.4303934 -0.005155668 0.002418731 0.4303934 -0.009080105 0.002418731 0.4303934 -0.01434988 0.002418731 0.4303934 -0.02107202 0.002418731 0.4303934 -0.02934285 0.002418731 0.4303934 -0.03925039 0.002418731 0.4303934 -0.05087609 0.002418731 0.4303934 -0.06429595 0.002418731 0.4303934 -0.07958143 0.002418731 0.4303934 -0.0968001 0.002418731 0.4303934 -0.1160161 0.002418731 0.4303934 -0.1372908 0.002418731 0.4303934 -0.1606827 0.002418731 0.4303934 -0.1862481 0.002418731 0.4303934 -0.2140411 0.002418731 0.4303934 -0.2441142 0.002418731 0.4303934 -0.2765176 0.002418731 0.4303934 -0.3113005 0.002418731 0.4303934 -0.3485102 0.002418731 0.4303934 -0.388193 0.002418731 0.4303934 -0.4303934 0.002418731 0.4303934 -0.4751555 0.002418731 0.4303934 -0.5225216 0.002418731 0.4303934 -0.5725335 0.002418731 0.4303934 -0.6252316 0.002418731 0.4303934 -0.6806558 0.002418731 0.4303934 -0.7388448 0.002418731 0.4303934 -0.7998369 0.002418731 0.4303934 -0.8636691 0.002418731 0.4303934 -0.9303782 0.002418731 0.4303934 -1 0.002418731 0.4303934 -0 0.005155668 0.4303934 -0.002418731 0.005155668 0.4303934 -0.005155668 0.005155668 0.4303934 -0.009080105 0.005155668 0.4303934 -0.01434988 0.005155668 0.4303934 -0.02107202 0.005155668 0.4303934 -0.02934285 0.005155668 0.4303934 -0.03925039 0.005155668 0.4303934 -0.05087609 0.005155668 0.4303934 -0.06429595 0.005155668 0.4303934 -0.07958143 0.005155668 0.4303934 -0.0968001 0.005155668 0.4303934 -0.1160161 0.005155668 0.4303934 -0.1372908 0.005155668 0.4303934 -0.1606827 0.005155668 0.4303934 -0.1862481 0.005155668 0.4303934 -0.2140411 0.005155668 0.4303934 -0.2441142 0.005155668 0.4303934 -0.2765176 0.005155668 0.4303934 -0.3113005 0.005155668 0.4303934 -0.3485102 0.005155668 0.4303934 -0.388193 0.005155668 0.4303934 -0.4303934 0.005155668 0.4303934 -0.4751555 0.005155668 0.4303934 -0.5225216 0.005155668 0.4303934 -0.5725335 0.005155668 0.4303934 -0.6252316 0.005155668 0.4303934 -0.6806558 0.005155668 0.4303934 -0.7388448 0.005155668 0.4303934 -0.7998369 0.005155668 0.4303934 -0.8636691 0.005155668 0.4303934 -0.9303782 0.005155668 0.4303934 -1 0.005155668 0.4303934 -0 0.009080105 0.4303934 -0.002418731 0.009080105 0.4303934 -0.005155668 0.009080105 0.4303934 -0.009080105 0.009080105 0.4303934 -0.01434988 0.009080105 0.4303934 -0.02107202 0.009080105 0.4303934 -0.02934285 0.009080105 0.4303934 -0.03925039 0.009080105 0.4303934 -0.05087609 0.009080105 0.4303934 -0.06429595 0.009080105 0.4303934 -0.07958143 0.009080105 0.4303934 -0.0968001 0.009080105 0.4303934 -0.1160161 0.009080105 0.4303934 -0.1372908 0.009080105 0.4303934 -0.1606827 0.009080105 0.4303934 -0.1862481 0.009080105 0.4303934 -0.2140411 0.009080105 0.4303934 -0.2441142 0.009080105 0.4303934 -0.2765176 0.009080105 0.4303934 -0.3113005 0.009080105 0.4303934 -0.3485102 0.009080105 0.4303934 -0.388193 0.009080105 0.4303934 -0.4303934 0.009080105 0.4303934 -0.4751555 0.009080105 0.4303934 -0.5225216 0.009080105 0.4303934 -0.5725335 0.009080105 0.4303934 -0.6252316 0.009080105 0.4303934 -0.6806558 0.009080105 0.4303934 -0.7388448 0.009080105 0.4303934 -0.7998369 0.009080105 0.4303934 -0.8636691 0.009080105 0.4303934 -0.9303782 0.009080105 0.4303934 -1 0.009080105 0.4303934 -0 0.01434988 0.4303934 -0.002418731 0.01434988 0.4303934 -0.005155668 0.01434988 0.4303934 -0.009080105 0.01434988 0.4303934 -0.01434988 0.01434988 0.4303934 -0.02107202 0.01434988 0.4303934 -0.02934285 0.01434988 0.4303934 -0.03925039 0.01434988 0.4303934 -0.05087609 0.01434988 0.4303934 -0.06429595 0.01434988 0.4303934 -0.07958143 0.01434988 0.4303934 -0.0968001 0.01434988 0.4303934 -0.1160161 0.01434988 0.4303934 -0.1372908 0.01434988 0.4303934 -0.1606827 0.01434988 0.4303934 -0.1862481 0.01434988 0.4303934 -0.2140411 0.01434988 0.4303934 -0.2441142 0.01434988 0.4303934 -0.2765176 0.01434988 0.4303934 -0.3113005 0.01434988 0.4303934 -0.3485102 0.01434988 0.4303934 -0.388193 0.01434988 0.4303934 -0.4303934 0.01434988 0.4303934 -0.4751555 0.01434988 0.4303934 -0.5225216 0.01434988 0.4303934 -0.5725335 0.01434988 0.4303934 -0.6252316 0.01434988 0.4303934 -0.6806558 0.01434988 0.4303934 -0.7388448 0.01434988 0.4303934 -0.7998369 0.01434988 0.4303934 -0.8636691 0.01434988 0.4303934 -0.9303782 0.01434988 0.4303934 -1 0.01434988 0.4303934 -0 0.02107202 0.4303934 -0.002418731 0.02107202 0.4303934 -0.005155668 0.02107202 0.4303934 -0.009080105 0.02107202 0.4303934 -0.01434988 0.02107202 0.4303934 -0.02107202 0.02107202 0.4303934 -0.02934285 0.02107202 0.4303934 -0.03925039 0.02107202 0.4303934 -0.05087609 0.02107202 0.4303934 -0.06429595 0.02107202 0.4303934 -0.07958143 0.02107202 0.4303934 -0.0968001 0.02107202 0.4303934 -0.1160161 0.02107202 0.4303934 -0.1372908 0.02107202 0.4303934 -0.1606827 0.02107202 0.4303934 -0.1862481 0.02107202 0.4303934 -0.2140411 0.02107202 0.4303934 -0.2441142 0.02107202 0.4303934 -0.2765176 0.02107202 0.4303934 -0.3113005 0.02107202 0.4303934 -0.3485102 0.02107202 0.4303934 -0.388193 0.02107202 0.4303934 -0.4303934 0.02107202 0.4303934 -0.4751555 0.02107202 0.4303934 -0.5225216 0.02107202 0.4303934 -0.5725335 0.02107202 0.4303934 -0.6252316 0.02107202 0.4303934 -0.6806558 0.02107202 0.4303934 -0.7388448 0.02107202 0.4303934 -0.7998369 0.02107202 0.4303934 -0.8636691 0.02107202 0.4303934 -0.9303782 0.02107202 0.4303934 -1 0.02107202 0.4303934 -0 0.02934285 0.4303934 -0.002418731 0.02934285 0.4303934 -0.005155668 0.02934285 0.4303934 -0.009080105 0.02934285 0.4303934 -0.01434988 0.02934285 0.4303934 -0.02107202 0.02934285 0.4303934 -0.02934285 0.02934285 0.4303934 -0.03925039 0.02934285 0.4303934 -0.05087609 0.02934285 0.4303934 -0.06429595 0.02934285 0.4303934 -0.07958143 0.02934285 0.4303934 -0.0968001 0.02934285 0.4303934 -0.1160161 0.02934285 0.4303934 -0.1372908 0.02934285 0.4303934 -0.1606827 0.02934285 0.4303934 -0.1862481 0.02934285 0.4303934 -0.2140411 0.02934285 0.4303934 -0.2441142 0.02934285 0.4303934 -0.2765176 0.02934285 0.4303934 -0.3113005 0.02934285 0.4303934 -0.3485102 0.02934285 0.4303934 -0.388193 0.02934285 0.4303934 -0.4303934 0.02934285 0.4303934 -0.4751555 0.02934285 0.4303934 -0.5225216 0.02934285 0.4303934 -0.5725335 0.02934285 0.4303934 -0.6252316 0.02934285 0.4303934 -0.6806558 0.02934285 0.4303934 -0.7388448 0.02934285 0.4303934 -0.7998369 0.02934285 0.4303934 -0.8636691 0.02934285 0.4303934 -0.9303782 0.02934285 0.4303934 -1 0.02934285 0.4303934 -0 0.03925039 0.4303934 -0.002418731 0.03925039 0.4303934 -0.005155668 0.03925039 0.4303934 -0.009080105 0.03925039 0.4303934 -0.01434988 0.03925039 0.4303934 -0.02107202 0.03925039 0.4303934 -0.02934285 0.03925039 0.4303934 -0.03925039 0.03925039 0.4303934 -0.05087609 0.03925039 0.4303934 -0.06429595 0.03925039 0.4303934 -0.07958143 0.03925039 0.4303934 -0.0968001 0.03925039 0.4303934 -0.1160161 0.03925039 0.4303934 -0.1372908 0.03925039 0.4303934 -0.1606827 0.03925039 0.4303934 -0.1862481 0.03925039 0.4303934 -0.2140411 0.03925039 0.4303934 -0.2441142 0.03925039 0.4303934 -0.2765176 0.03925039 0.4303934 -0.3113005 0.03925039 0.4303934 -0.3485102 0.03925039 0.4303934 -0.388193 0.03925039 0.4303934 -0.4303934 0.03925039 0.4303934 -0.4751555 0.03925039 0.4303934 -0.5225216 0.03925039 0.4303934 -0.5725335 0.03925039 0.4303934 -0.6252316 0.03925039 0.4303934 -0.6806558 0.03925039 0.4303934 -0.7388448 0.03925039 0.4303934 -0.7998369 0.03925039 0.4303934 -0.8636691 0.03925039 0.4303934 -0.9303782 0.03925039 0.4303934 -1 0.03925039 0.4303934 -0 0.05087609 0.4303934 -0.002418731 0.05087609 0.4303934 -0.005155668 0.05087609 0.4303934 -0.009080105 0.05087609 0.4303934 -0.01434988 0.05087609 0.4303934 -0.02107202 0.05087609 0.4303934 -0.02934285 0.05087609 0.4303934 -0.03925039 0.05087609 0.4303934 -0.05087609 0.05087609 0.4303934 -0.06429595 0.05087609 0.4303934 -0.07958143 0.05087609 0.4303934 -0.0968001 0.05087609 0.4303934 -0.1160161 0.05087609 0.4303934 -0.1372908 0.05087609 0.4303934 -0.1606827 0.05087609 0.4303934 -0.1862481 0.05087609 0.4303934 -0.2140411 0.05087609 0.4303934 -0.2441142 0.05087609 0.4303934 -0.2765176 0.05087609 0.4303934 -0.3113005 0.05087609 0.4303934 -0.3485102 0.05087609 0.4303934 -0.388193 0.05087609 0.4303934 -0.4303934 0.05087609 0.4303934 -0.4751555 0.05087609 0.4303934 -0.5225216 0.05087609 0.4303934 -0.5725335 0.05087609 0.4303934 -0.6252316 0.05087609 0.4303934 -0.6806558 0.05087609 0.4303934 -0.7388448 0.05087609 0.4303934 -0.7998369 0.05087609 0.4303934 -0.8636691 0.05087609 0.4303934 -0.9303782 0.05087609 0.4303934 -1 0.05087609 0.4303934 -0 0.06429595 0.4303934 -0.002418731 0.06429595 0.4303934 -0.005155668 0.06429595 0.4303934 -0.009080105 0.06429595 0.4303934 -0.01434988 0.06429595 0.4303934 -0.02107202 0.06429595 0.4303934 -0.02934285 0.06429595 0.4303934 -0.03925039 0.06429595 0.4303934 -0.05087609 0.06429595 0.4303934 -0.06429595 0.06429595 0.4303934 -0.07958143 0.06429595 0.4303934 -0.0968001 0.06429595 0.4303934 -0.1160161 0.06429595 0.4303934 -0.1372908 0.06429595 0.4303934 -0.1606827 0.06429595 0.4303934 -0.1862481 0.06429595 0.4303934 -0.2140411 0.06429595 0.4303934 -0.2441142 0.06429595 0.4303934 -0.2765176 0.06429595 0.4303934 -0.3113005 0.06429595 0.4303934 -0.3485102 0.06429595 0.4303934 -0.388193 0.06429595 0.4303934 -0.4303934 0.06429595 0.4303934 -0.4751555 0.06429595 0.4303934 -0.5225216 0.06429595 0.4303934 -0.5725335 0.06429595 0.4303934 -0.6252316 0.06429595 0.4303934 -0.6806558 0.06429595 0.4303934 -0.7388448 0.06429595 0.4303934 -0.7998369 0.06429595 0.4303934 -0.8636691 0.06429595 0.4303934 -0.9303782 0.06429595 0.4303934 -1 0.06429595 0.4303934 -0 0.07958143 0.4303934 -0.002418731 0.07958143 0.4303934 -0.005155668 0.07958143 0.4303934 -0.009080105 0.07958143 0.4303934 -0.01434988 0.07958143 0.4303934 -0.02107202 0.07958143 0.4303934 -0.02934285 0.07958143 0.4303934 -0.03925039 0.07958143 0.4303934 -0.05087609 0.07958143 0.4303934 -0.06429595 0.07958143 0.4303934 -0.07958143 0.07958143 0.4303934 -0.0968001 0.07958143 0.4303934 -0.1160161 0.07958143 0.4303934 -0.1372908 0.07958143 0.4303934 -0.1606827 0.07958143 0.4303934 -0.1862481 0.07958143 0.4303934 -0.2140411 0.07958143 0.4303934 -0.2441142 0.07958143 0.4303934 -0.2765176 0.07958143 0.4303934 -0.3113005 0.07958143 0.4303934 -0.3485102 0.07958143 0.4303934 -0.388193 0.07958143 0.4303934 -0.4303934 0.07958143 0.4303934 -0.4751555 0.07958143 0.4303934 -0.5225216 0.07958143 0.4303934 -0.5725335 0.07958143 0.4303934 -0.6252316 0.07958143 0.4303934 -0.6806558 0.07958143 0.4303934 -0.7388448 0.07958143 0.4303934 -0.7998369 0.07958143 0.4303934 -0.8636691 0.07958143 0.4303934 -0.9303782 0.07958143 0.4303934 -1 0.07958143 0.4303934 -0 0.0968001 0.4303934 -0.002418731 0.0968001 0.4303934 -0.005155668 0.0968001 0.4303934 -0.009080105 0.0968001 0.4303934 -0.01434988 0.0968001 0.4303934 -0.02107202 0.0968001 0.4303934 -0.02934285 0.0968001 0.4303934 -0.03925039 0.0968001 0.4303934 -0.05087609 0.0968001 0.4303934 -0.06429595 0.0968001 0.4303934 -0.07958143 0.0968001 0.4303934 -0.0968001 0.0968001 0.4303934 -0.1160161 0.0968001 0.4303934 -0.1372908 0.0968001 0.4303934 -0.1606827 0.0968001 0.4303934 -0.1862481 0.0968001 0.4303934 -0.2140411 0.0968001 0.4303934 -0.2441142 0.0968001 0.4303934 -0.2765176 0.0968001 0.4303934 -0.3113005 0.0968001 0.4303934 -0.3485102 0.0968001 0.4303934 -0.388193 0.0968001 0.4303934 -0.4303934 0.0968001 0.4303934 -0.4751555 0.0968001 0.4303934 -0.5225216 0.0968001 0.4303934 -0.5725335 0.0968001 0.4303934 -0.6252316 0.0968001 0.4303934 -0.6806558 0.0968001 0.4303934 -0.7388448 0.0968001 0.4303934 -0.7998369 0.0968001 0.4303934 -0.8636691 0.0968001 0.4303934 -0.9303782 0.0968001 0.4303934 -1 0.0968001 0.4303934 -0 0.1160161 0.4303934 -0.002418731 0.1160161 0.4303934 -0.005155668 0.1160161 0.4303934 -0.009080105 0.1160161 0.4303934 -0.01434988 0.1160161 0.4303934 -0.02107202 0.1160161 0.4303934 -0.02934285 0.1160161 0.4303934 -0.03925039 0.1160161 0.4303934 -0.05087609 0.1160161 0.4303934 -0.06429595 0.1160161 0.4303934 -0.07958143 0.1160161 0.4303934 -0.0968001 0.1160161 0.4303934 -0.1160161 0.1160161 0.4303934 -0.1372908 0.1160161 0.4303934 -0.1606827 0.1160161 0.4303934 -0.1862481 0.1160161 0.4303934 -0.2140411 0.1160161 0.4303934 -0.2441142 0.1160161 0.4303934 -0.2765176 0.1160161 0.4303934 -0.3113005 0.1160161 0.4303934 -0.3485102 0.1160161 0.4303934 -0.388193 0.1160161 0.4303934 -0.4303934 0.1160161 0.4303934 -0.4751555 0.1160161 0.4303934 -0.5225216 0.1160161 0.4303934 -0.5725335 0.1160161 0.4303934 -0.6252316 0.1160161 0.4303934 -0.6806558 0.1160161 0.4303934 -0.7388448 0.1160161 0.4303934 -0.7998369 0.1160161 0.4303934 -0.8636691 0.1160161 0.4303934 -0.9303782 0.1160161 0.4303934 -1 0.1160161 0.4303934 -0 0.1372908 0.4303934 -0.002418731 0.1372908 0.4303934 -0.005155668 0.1372908 0.4303934 -0.009080105 0.1372908 0.4303934 -0.01434988 0.1372908 0.4303934 -0.02107202 0.1372908 0.4303934 -0.02934285 0.1372908 0.4303934 -0.03925039 0.1372908 0.4303934 -0.05087609 0.1372908 0.4303934 -0.06429595 0.1372908 0.4303934 -0.07958143 0.1372908 0.4303934 -0.0968001 0.1372908 0.4303934 -0.1160161 0.1372908 0.4303934 -0.1372908 0.1372908 0.4303934 -0.1606827 0.1372908 0.4303934 -0.1862481 0.1372908 0.4303934 -0.2140411 0.1372908 0.4303934 -0.2441142 0.1372908 0.4303934 -0.2765176 0.1372908 0.4303934 -0.3113005 0.1372908 0.4303934 -0.3485102 0.1372908 0.4303934 -0.388193 0.1372908 0.4303934 -0.4303934 0.1372908 0.4303934 -0.4751555 0.1372908 0.4303934 -0.5225216 0.1372908 0.4303934 -0.5725335 0.1372908 0.4303934 -0.6252316 0.1372908 0.4303934 -0.6806558 0.1372908 0.4303934 -0.7388448 0.1372908 0.4303934 -0.7998369 0.1372908 0.4303934 -0.8636691 0.1372908 0.4303934 -0.9303782 0.1372908 0.4303934 -1 0.1372908 0.4303934 -0 0.1606827 0.4303934 -0.002418731 0.1606827 0.4303934 -0.005155668 0.1606827 0.4303934 -0.009080105 0.1606827 0.4303934 -0.01434988 0.1606827 0.4303934 -0.02107202 0.1606827 0.4303934 -0.02934285 0.1606827 0.4303934 -0.03925039 0.1606827 0.4303934 -0.05087609 0.1606827 0.4303934 -0.06429595 0.1606827 0.4303934 -0.07958143 0.1606827 0.4303934 -0.0968001 0.1606827 0.4303934 -0.1160161 0.1606827 0.4303934 -0.1372908 0.1606827 0.4303934 -0.1606827 0.1606827 0.4303934 -0.1862481 0.1606827 0.4303934 -0.2140411 0.1606827 0.4303934 -0.2441142 0.1606827 0.4303934 -0.2765176 0.1606827 0.4303934 -0.3113005 0.1606827 0.4303934 -0.3485102 0.1606827 0.4303934 -0.388193 0.1606827 0.4303934 -0.4303934 0.1606827 0.4303934 -0.4751555 0.1606827 0.4303934 -0.5225216 0.1606827 0.4303934 -0.5725335 0.1606827 0.4303934 -0.6252316 0.1606827 0.4303934 -0.6806558 0.1606827 0.4303934 -0.7388448 0.1606827 0.4303934 -0.7998369 0.1606827 0.4303934 -0.8636691 0.1606827 0.4303934 -0.9303782 0.1606827 0.4303934 -1 0.1606827 0.4303934 -0 0.1862481 0.4303934 -0.002418731 0.1862481 0.4303934 -0.005155668 0.1862481 0.4303934 -0.009080105 0.1862481 0.4303934 -0.01434988 0.1862481 0.4303934 -0.02107202 0.1862481 0.4303934 -0.02934285 0.1862481 0.4303934 -0.03925039 0.1862481 0.4303934 -0.05087609 0.1862481 0.4303934 -0.06429595 0.1862481 0.4303934 -0.07958143 0.1862481 0.4303934 -0.0968001 0.1862481 0.4303934 -0.1160161 0.1862481 0.4303934 -0.1372908 0.1862481 0.4303934 -0.1606827 0.1862481 0.4303934 -0.1862481 0.1862481 0.4303934 -0.2140411 0.1862481 0.4303934 -0.2441142 0.1862481 0.4303934 -0.2765176 0.1862481 0.4303934 -0.3113005 0.1862481 0.4303934 -0.3485102 0.1862481 0.4303934 -0.388193 0.1862481 0.4303934 -0.4303934 0.1862481 0.4303934 -0.4751555 0.1862481 0.4303934 -0.5225216 0.1862481 0.4303934 -0.5725335 0.1862481 0.4303934 -0.6252316 0.1862481 0.4303934 -0.6806558 0.1862481 0.4303934 -0.7388448 0.1862481 0.4303934 -0.7998369 0.1862481 0.4303934 -0.8636691 0.1862481 0.4303934 -0.9303782 0.1862481 0.4303934 -1 0.1862481 0.4303934 -0 0.2140411 0.4303934 -0.002418731 0.2140411 0.4303934 -0.005155668 0.2140411 0.4303934 -0.009080105 0.2140411 0.4303934 -0.01434988 0.2140411 0.4303934 -0.02107202 0.2140411 0.4303934 -0.02934285 0.2140411 0.4303934 -0.03925039 0.2140411 0.4303934 -0.05087609 0.2140411 0.4303934 -0.06429595 0.2140411 0.4303934 -0.07958143 0.2140411 0.4303934 -0.0968001 0.2140411 0.4303934 -0.1160161 0.2140411 0.4303934 -0.1372908 0.2140411 0.4303934 -0.1606827 0.2140411 0.4303934 -0.1862481 0.2140411 0.4303934 -0.2140411 0.2140411 0.4303934 -0.2441142 0.2140411 0.4303934 -0.2765176 0.2140411 0.4303934 -0.3113005 0.2140411 0.4303934 -0.3485102 0.2140411 0.4303934 -0.388193 0.2140411 0.4303934 -0.4303934 0.2140411 0.4303934 -0.4751555 0.2140411 0.4303934 -0.5225216 0.2140411 0.4303934 -0.5725335 0.2140411 0.4303934 -0.6252316 0.2140411 0.4303934 -0.6806558 0.2140411 0.4303934 -0.7388448 0.2140411 0.4303934 -0.7998369 0.2140411 0.4303934 -0.8636691 0.2140411 0.4303934 -0.9303782 0.2140411 0.4303934 -1 0.2140411 0.4303934 -0 0.2441142 0.4303934 -0.002418731 0.2441142 0.4303934 -0.005155668 0.2441142 0.4303934 -0.009080105 0.2441142 0.4303934 -0.01434988 0.2441142 0.4303934 -0.02107202 0.2441142 0.4303934 -0.02934285 0.2441142 0.4303934 -0.03925039 0.2441142 0.4303934 -0.05087609 0.2441142 0.4303934 -0.06429595 0.2441142 0.4303934 -0.07958143 0.2441142 0.4303934 -0.0968001 0.2441142 0.4303934 -0.1160161 0.2441142 0.4303934 -0.1372908 0.2441142 0.4303934 -0.1606827 0.2441142 0.4303934 -0.1862481 0.2441142 0.4303934 -0.2140411 0.2441142 0.4303934 -0.2441142 0.2441142 0.4303934 -0.2765176 0.2441142 0.4303934 -0.3113005 0.2441142 0.4303934 -0.3485102 0.2441142 0.4303934 -0.388193 0.2441142 0.4303934 -0.4303934 0.2441142 0.4303934 -0.4751555 0.2441142 0.4303934 -0.5225216 0.2441142 0.4303934 -0.5725335 0.2441142 0.4303934 -0.6252316 0.2441142 0.4303934 -0.6806558 0.2441142 0.4303934 -0.7388448 0.2441142 0.4303934 -0.7998369 0.2441142 0.4303934 -0.8636691 0.2441142 0.4303934 -0.9303782 0.2441142 0.4303934 -1 0.2441142 0.4303934 -0 0.2765176 0.4303934 -0.002418731 0.2765176 0.4303934 -0.005155668 0.2765176 0.4303934 -0.009080105 0.2765176 0.4303934 -0.01434988 0.2765176 0.4303934 -0.02107202 0.2765176 0.4303934 -0.02934285 0.2765176 0.4303934 -0.03925039 0.2765176 0.4303934 -0.05087609 0.2765176 0.4303934 -0.06429595 0.2765176 0.4303934 -0.07958143 0.2765176 0.4303934 -0.0968001 0.2765176 0.4303934 -0.1160161 0.2765176 0.4303934 -0.1372908 0.2765176 0.4303934 -0.1606827 0.2765176 0.4303934 -0.1862481 0.2765176 0.4303934 -0.2140411 0.2765176 0.4303934 -0.2441142 0.2765176 0.4303934 -0.2765176 0.2765176 0.4303934 -0.3113005 0.2765176 0.4303934 -0.3485102 0.2765176 0.4303934 -0.388193 0.2765176 0.4303934 -0.4303934 0.2765176 0.4303934 -0.4751555 0.2765176 0.4303934 -0.5225216 0.2765176 0.4303934 -0.5725335 0.2765176 0.4303934 -0.6252316 0.2765176 0.4303934 -0.6806558 0.2765176 0.4303934 -0.7388448 0.2765176 0.4303934 -0.7998369 0.2765176 0.4303934 -0.8636691 0.2765176 0.4303934 -0.9303782 0.2765176 0.4303934 -1 0.2765176 0.4303934 -0 0.3113005 0.4303934 -0.002418731 0.3113005 0.4303934 -0.005155668 0.3113005 0.4303934 -0.009080105 0.3113005 0.4303934 -0.01434988 0.3113005 0.4303934 -0.02107202 0.3113005 0.4303934 -0.02934285 0.3113005 0.4303934 -0.03925039 0.3113005 0.4303934 -0.05087609 0.3113005 0.4303934 -0.06429595 0.3113005 0.4303934 -0.07958143 0.3113005 0.4303934 -0.0968001 0.3113005 0.4303934 -0.1160161 0.3113005 0.4303934 -0.1372908 0.3113005 0.4303934 -0.1606827 0.3113005 0.4303934 -0.1862481 0.3113005 0.4303934 -0.2140411 0.3113005 0.4303934 -0.2441142 0.3113005 0.4303934 -0.2765176 0.3113005 0.4303934 -0.3113005 0.3113005 0.4303934 -0.3485102 0.3113005 0.4303934 -0.388193 0.3113005 0.4303934 -0.4303934 0.3113005 0.4303934 -0.4751555 0.3113005 0.4303934 -0.5225216 0.3113005 0.4303934 -0.5725335 0.3113005 0.4303934 -0.6252316 0.3113005 0.4303934 -0.6806558 0.3113005 0.4303934 -0.7388448 0.3113005 0.4303934 -0.7998369 0.3113005 0.4303934 -0.8636691 0.3113005 0.4303934 -0.9303782 0.3113005 0.4303934 -1 0.3113005 0.4303934 -0 0.3485102 0.4303934 -0.002418731 0.3485102 0.4303934 -0.005155668 0.3485102 0.4303934 -0.009080105 0.3485102 0.4303934 -0.01434988 0.3485102 0.4303934 -0.02107202 0.3485102 0.4303934 -0.02934285 0.3485102 0.4303934 -0.03925039 0.3485102 0.4303934 -0.05087609 0.3485102 0.4303934 -0.06429595 0.3485102 0.4303934 -0.07958143 0.3485102 0.4303934 -0.0968001 0.3485102 0.4303934 -0.1160161 0.3485102 0.4303934 -0.1372908 0.3485102 0.4303934 -0.1606827 0.3485102 0.4303934 -0.1862481 0.3485102 0.4303934 -0.2140411 0.3485102 0.4303934 -0.2441142 0.3485102 0.4303934 -0.2765176 0.3485102 0.4303934 -0.3113005 0.3485102 0.4303934 -0.3485102 0.3485102 0.4303934 -0.388193 0.3485102 0.4303934 -0.4303934 0.3485102 0.4303934 -0.4751555 0.3485102 0.4303934 -0.5225216 0.3485102 0.4303934 -0.5725335 0.3485102 0.4303934 -0.6252316 0.3485102 0.4303934 -0.6806558 0.3485102 0.4303934 -0.7388448 0.3485102 0.4303934 -0.7998369 0.3485102 0.4303934 -0.8636691 0.3485102 0.4303934 -0.9303782 0.3485102 0.4303934 -1 0.3485102 0.4303934 -0 0.388193 0.4303934 -0.002418731 0.388193 0.4303934 -0.005155668 0.388193 0.4303934 -0.009080105 0.388193 0.4303934 -0.01434988 0.388193 0.4303934 -0.02107202 0.388193 0.4303934 -0.02934285 0.388193 0.4303934 -0.03925039 0.388193 0.4303934 -0.05087609 0.388193 0.4303934 -0.06429595 0.388193 0.4303934 -0.07958143 0.388193 0.4303934 -0.0968001 0.388193 0.4303934 -0.1160161 0.388193 0.4303934 -0.1372908 0.388193 0.4303934 -0.1606827 0.388193 0.4303934 -0.1862481 0.388193 0.4303934 -0.2140411 0.388193 0.4303934 -0.2441142 0.388193 0.4303934 -0.2765176 0.388193 0.4303934 -0.3113005 0.388193 0.4303934 -0.3485102 0.388193 0.4303934 -0.388193 0.388193 0.4303934 -0.4303934 0.388193 0.4303934 -0.4751555 0.388193 0.4303934 -0.5225216 0.388193 0.4303934 -0.5725335 0.388193 0.4303934 -0.6252316 0.388193 0.4303934 -0.6806558 0.388193 0.4303934 -0.7388448 0.388193 0.4303934 -0.7998369 0.388193 0.4303934 -0.8636691 0.388193 0.4303934 -0.9303782 0.388193 0.4303934 -1 0.388193 0.4303934 -0 0.4303934 0.4303934 -0.002418731 0.4303934 0.4303934 -0.005155668 0.4303934 0.4303934 -0.009080105 0.4303934 0.4303934 -0.01434988 0.4303934 0.4303934 -0.02107202 0.4303934 0.4303934 -0.02934285 0.4303934 0.4303934 -0.03925039 0.4303934 0.4303934 -0.05087609 0.4303934 0.4303934 -0.06429595 0.4303934 0.4303934 -0.07958143 0.4303934 0.4303934 -0.0968001 0.4303934 0.4303934 -0.1160161 0.4303934 0.4303934 -0.1372908 0.4303934 0.4303934 -0.1606827 0.4303934 0.4303934 -0.1862481 0.4303934 0.4303934 -0.2140411 0.4303934 0.4303934 -0.2441142 0.4303934 0.4303934 -0.2765176 0.4303934 0.4303934 -0.3113005 0.4303934 0.4303934 -0.3485102 0.4303934 0.4303934 -0.388193 0.4303934 0.4303934 -0.4303934 0.4303934 0.4303934 -0.4751555 0.4303934 0.4303934 -0.5225216 0.4303934 0.4303934 -0.5725335 0.4303934 0.4303934 -0.6252316 0.4303934 0.4303934 -0.6806558 0.4303934 0.4303934 -0.7388448 0.4303934 0.4303934 -0.7998369 0.4303934 0.4303934 -0.8636691 0.4303934 0.4303934 -0.9303782 0.4303934 0.4303934 -1 0.4303934 0.4303934 -0 0.4751555 0.4303934 -0.002418731 0.4751555 0.4303934 -0.005155668 0.4751555 0.4303934 -0.009080105 0.4751555 0.4303934 -0.01434988 0.4751555 0.4303934 -0.02107202 0.4751555 0.4303934 -0.02934285 0.4751555 0.4303934 -0.03925039 0.4751555 0.4303934 -0.05087609 0.4751555 0.4303934 -0.06429595 0.4751555 0.4303934 -0.07958143 0.4751555 0.4303934 -0.0968001 0.4751555 0.4303934 -0.1160161 0.4751555 0.4303934 -0.1372908 0.4751555 0.4303934 -0.1606827 0.4751555 0.4303934 -0.1862481 0.4751555 0.4303934 -0.2140411 0.4751555 0.4303934 -0.2441142 0.4751555 0.4303934 -0.2765176 0.4751555 0.4303934 -0.3113005 0.4751555 0.4303934 -0.3485102 0.4751555 0.4303934 -0.388193 0.4751555 0.4303934 -0.4303934 0.4751555 0.4303934 -0.4751555 0.4751555 0.4303934 -0.5225216 0.4751555 0.4303934 -0.5725335 0.4751555 0.4303934 -0.6252316 0.4751555 0.4303934 -0.6806558 0.4751555 0.4303934 -0.7388448 0.4751555 0.4303934 -0.7998369 0.4751555 0.4303934 -0.8636691 0.4751555 0.4303934 -0.9303782 0.4751555 0.4303934 -1 0.4751555 0.4303934 -0 0.5225216 0.4303934 -0.002418731 0.5225216 0.4303934 -0.005155668 0.5225216 0.4303934 -0.009080105 0.5225216 0.4303934 -0.01434988 0.5225216 0.4303934 -0.02107202 0.5225216 0.4303934 -0.02934285 0.5225216 0.4303934 -0.03925039 0.5225216 0.4303934 -0.05087609 0.5225216 0.4303934 -0.06429595 0.5225216 0.4303934 -0.07958143 0.5225216 0.4303934 -0.0968001 0.5225216 0.4303934 -0.1160161 0.5225216 0.4303934 -0.1372908 0.5225216 0.4303934 -0.1606827 0.5225216 0.4303934 -0.1862481 0.5225216 0.4303934 -0.2140411 0.5225216 0.4303934 -0.2441142 0.5225216 0.4303934 -0.2765176 0.5225216 0.4303934 -0.3113005 0.5225216 0.4303934 -0.3485102 0.5225216 0.4303934 -0.388193 0.5225216 0.4303934 -0.4303934 0.5225216 0.4303934 -0.4751555 0.5225216 0.4303934 -0.5225216 0.5225216 0.4303934 -0.5725335 0.5225216 0.4303934 -0.6252316 0.5225216 0.4303934 -0.6806558 0.5225216 0.4303934 -0.7388448 0.5225216 0.4303934 -0.7998369 0.5225216 0.4303934 -0.8636691 0.5225216 0.4303934 -0.9303782 0.5225216 0.4303934 -1 0.5225216 0.4303934 -0 0.5725335 0.4303934 -0.002418731 0.5725335 0.4303934 -0.005155668 0.5725335 0.4303934 -0.009080105 0.5725335 0.4303934 -0.01434988 0.5725335 0.4303934 -0.02107202 0.5725335 0.4303934 -0.02934285 0.5725335 0.4303934 -0.03925039 0.5725335 0.4303934 -0.05087609 0.5725335 0.4303934 -0.06429595 0.5725335 0.4303934 -0.07958143 0.5725335 0.4303934 -0.0968001 0.5725335 0.4303934 -0.1160161 0.5725335 0.4303934 -0.1372908 0.5725335 0.4303934 -0.1606827 0.5725335 0.4303934 -0.1862481 0.5725335 0.4303934 -0.2140411 0.5725335 0.4303934 -0.2441142 0.5725335 0.4303934 -0.2765176 0.5725335 0.4303934 -0.3113005 0.5725335 0.4303934 -0.3485102 0.5725335 0.4303934 -0.388193 0.5725335 0.4303934 -0.4303934 0.5725335 0.4303934 -0.4751555 0.5725335 0.4303934 -0.5225216 0.5725335 0.4303934 -0.5725335 0.5725335 0.4303934 -0.6252316 0.5725335 0.4303934 -0.6806558 0.5725335 0.4303934 -0.7388448 0.5725335 0.4303934 -0.7998369 0.5725335 0.4303934 -0.8636691 0.5725335 0.4303934 -0.9303782 0.5725335 0.4303934 -1 0.5725335 0.4303934 -0 0.6252316 0.4303934 -0.002418731 0.6252316 0.4303934 -0.005155668 0.6252316 0.4303934 -0.009080105 0.6252316 0.4303934 -0.01434988 0.6252316 0.4303934 -0.02107202 0.6252316 0.4303934 -0.02934285 0.6252316 0.4303934 -0.03925039 0.6252316 0.4303934 -0.05087609 0.6252316 0.4303934 -0.06429595 0.6252316 0.4303934 -0.07958143 0.6252316 0.4303934 -0.0968001 0.6252316 0.4303934 -0.1160161 0.6252316 0.4303934 -0.1372908 0.6252316 0.4303934 -0.1606827 0.6252316 0.4303934 -0.1862481 0.6252316 0.4303934 -0.2140411 0.6252316 0.4303934 -0.2441142 0.6252316 0.4303934 -0.2765176 0.6252316 0.4303934 -0.3113005 0.6252316 0.4303934 -0.3485102 0.6252316 0.4303934 -0.388193 0.6252316 0.4303934 -0.4303934 0.6252316 0.4303934 -0.4751555 0.6252316 0.4303934 -0.5225216 0.6252316 0.4303934 -0.5725335 0.6252316 0.4303934 -0.6252316 0.6252316 0.4303934 -0.6806558 0.6252316 0.4303934 -0.7388448 0.6252316 0.4303934 -0.7998369 0.6252316 0.4303934 -0.8636691 0.6252316 0.4303934 -0.9303782 0.6252316 0.4303934 -1 0.6252316 0.4303934 -0 0.6806558 0.4303934 -0.002418731 0.6806558 0.4303934 -0.005155668 0.6806558 0.4303934 -0.009080105 0.6806558 0.4303934 -0.01434988 0.6806558 0.4303934 -0.02107202 0.6806558 0.4303934 -0.02934285 0.6806558 0.4303934 -0.03925039 0.6806558 0.4303934 -0.05087609 0.6806558 0.4303934 -0.06429595 0.6806558 0.4303934 -0.07958143 0.6806558 0.4303934 -0.0968001 0.6806558 0.4303934 -0.1160161 0.6806558 0.4303934 -0.1372908 0.6806558 0.4303934 -0.1606827 0.6806558 0.4303934 -0.1862481 0.6806558 0.4303934 -0.2140411 0.6806558 0.4303934 -0.2441142 0.6806558 0.4303934 -0.2765176 0.6806558 0.4303934 -0.3113005 0.6806558 0.4303934 -0.3485102 0.6806558 0.4303934 -0.388193 0.6806558 0.4303934 -0.4303934 0.6806558 0.4303934 -0.4751555 0.6806558 0.4303934 -0.5225216 0.6806558 0.4303934 -0.5725335 0.6806558 0.4303934 -0.6252316 0.6806558 0.4303934 -0.6806558 0.6806558 0.4303934 -0.7388448 0.6806558 0.4303934 -0.7998369 0.6806558 0.4303934 -0.8636691 0.6806558 0.4303934 -0.9303782 0.6806558 0.4303934 -1 0.6806558 0.4303934 -0 0.7388448 0.4303934 -0.002418731 0.7388448 0.4303934 -0.005155668 0.7388448 0.4303934 -0.009080105 0.7388448 0.4303934 -0.01434988 0.7388448 0.4303934 -0.02107202 0.7388448 0.4303934 -0.02934285 0.7388448 0.4303934 -0.03925039 0.7388448 0.4303934 -0.05087609 0.7388448 0.4303934 -0.06429595 0.7388448 0.4303934 -0.07958143 0.7388448 0.4303934 -0.0968001 0.7388448 0.4303934 -0.1160161 0.7388448 0.4303934 -0.1372908 0.7388448 0.4303934 -0.1606827 0.7388448 0.4303934 -0.1862481 0.7388448 0.4303934 -0.2140411 0.7388448 0.4303934 -0.2441142 0.7388448 0.4303934 -0.2765176 0.7388448 0.4303934 -0.3113005 0.7388448 0.4303934 -0.3485102 0.7388448 0.4303934 -0.388193 0.7388448 0.4303934 -0.4303934 0.7388448 0.4303934 -0.4751555 0.7388448 0.4303934 -0.5225216 0.7388448 0.4303934 -0.5725335 0.7388448 0.4303934 -0.6252316 0.7388448 0.4303934 -0.6806558 0.7388448 0.4303934 -0.7388448 0.7388448 0.4303934 -0.7998369 0.7388448 0.4303934 -0.8636691 0.7388448 0.4303934 -0.9303782 0.7388448 0.4303934 -1 0.7388448 0.4303934 -0 0.7998369 0.4303934 -0.002418731 0.7998369 0.4303934 -0.005155668 0.7998369 0.4303934 -0.009080105 0.7998369 0.4303934 -0.01434988 0.7998369 0.4303934 -0.02107202 0.7998369 0.4303934 -0.02934285 0.7998369 0.4303934 -0.03925039 0.7998369 0.4303934 -0.05087609 0.7998369 0.4303934 -0.06429595 0.7998369 0.4303934 -0.07958143 0.7998369 0.4303934 -0.0968001 0.7998369 0.4303934 -0.1160161 0.7998369 0.4303934 -0.1372908 0.7998369 0.4303934 -0.1606827 0.7998369 0.4303934 -0.1862481 0.7998369 0.4303934 -0.2140411 0.7998369 0.4303934 -0.2441142 0.7998369 0.4303934 -0.2765176 0.7998369 0.4303934 -0.3113005 0.7998369 0.4303934 -0.3485102 0.7998369 0.4303934 -0.388193 0.7998369 0.4303934 -0.4303934 0.7998369 0.4303934 -0.4751555 0.7998369 0.4303934 -0.5225216 0.7998369 0.4303934 -0.5725335 0.7998369 0.4303934 -0.6252316 0.7998369 0.4303934 -0.6806558 0.7998369 0.4303934 -0.7388448 0.7998369 0.4303934 -0.7998369 0.7998369 0.4303934 -0.8636691 0.7998369 0.4303934 -0.9303782 0.7998369 0.4303934 -1 0.7998369 0.4303934 -0 0.8636691 0.4303934 -0.002418731 0.8636691 0.4303934 -0.005155668 0.8636691 0.4303934 -0.009080105 0.8636691 0.4303934 -0.01434988 0.8636691 0.4303934 -0.02107202 0.8636691 0.4303934 -0.02934285 0.8636691 0.4303934 -0.03925039 0.8636691 0.4303934 -0.05087609 0.8636691 0.4303934 -0.06429595 0.8636691 0.4303934 -0.07958143 0.8636691 0.4303934 -0.0968001 0.8636691 0.4303934 -0.1160161 0.8636691 0.4303934 -0.1372908 0.8636691 0.4303934 -0.1606827 0.8636691 0.4303934 -0.1862481 0.8636691 0.4303934 -0.2140411 0.8636691 0.4303934 -0.2441142 0.8636691 0.4303934 -0.2765176 0.8636691 0.4303934 -0.3113005 0.8636691 0.4303934 -0.3485102 0.8636691 0.4303934 -0.388193 0.8636691 0.4303934 -0.4303934 0.8636691 0.4303934 -0.4751555 0.8636691 0.4303934 -0.5225216 0.8636691 0.4303934 -0.5725335 0.8636691 0.4303934 -0.6252316 0.8636691 0.4303934 -0.6806558 0.8636691 0.4303934 -0.7388448 0.8636691 0.4303934 -0.7998369 0.8636691 0.4303934 -0.8636691 0.8636691 0.4303934 -0.9303782 0.8636691 0.4303934 -1 0.8636691 0.4303934 -0 0.9303782 0.4303934 -0.002418731 0.9303782 0.4303934 -0.005155668 0.9303782 0.4303934 -0.009080105 0.9303782 0.4303934 -0.01434988 0.9303782 0.4303934 -0.02107202 0.9303782 0.4303934 -0.02934285 0.9303782 0.4303934 -0.03925039 0.9303782 0.4303934 -0.05087609 0.9303782 0.4303934 -0.06429595 0.9303782 0.4303934 -0.07958143 0.9303782 0.4303934 -0.0968001 0.9303782 0.4303934 -0.1160161 0.9303782 0.4303934 -0.1372908 0.9303782 0.4303934 -0.1606827 0.9303782 0.4303934 -0.1862481 0.9303782 0.4303934 -0.2140411 0.9303782 0.4303934 -0.2441142 0.9303782 0.4303934 -0.2765176 0.9303782 0.4303934 -0.3113005 0.9303782 0.4303934 -0.3485102 0.9303782 0.4303934 -0.388193 0.9303782 0.4303934 -0.4303934 0.9303782 0.4303934 -0.4751555 0.9303782 0.4303934 -0.5225216 0.9303782 0.4303934 -0.5725335 0.9303782 0.4303934 -0.6252316 0.9303782 0.4303934 -0.6806558 0.9303782 0.4303934 -0.7388448 0.9303782 0.4303934 -0.7998369 0.9303782 0.4303934 -0.8636691 0.9303782 0.4303934 -0.9303782 0.9303782 0.4303934 -1 0.9303782 0.4303934 -0 1 0.4303934 -0.002418731 1 0.4303934 -0.005155668 1 0.4303934 -0.009080105 1 0.4303934 -0.01434988 1 0.4303934 -0.02107202 1 0.4303934 -0.02934285 1 0.4303934 -0.03925039 1 0.4303934 -0.05087609 1 0.4303934 -0.06429595 1 0.4303934 -0.07958143 1 0.4303934 -0.0968001 1 0.4303934 -0.1160161 1 0.4303934 -0.1372908 1 0.4303934 -0.1606827 1 0.4303934 -0.1862481 1 0.4303934 -0.2140411 1 0.4303934 -0.2441142 1 0.4303934 -0.2765176 1 0.4303934 -0.3113005 1 0.4303934 -0.3485102 1 0.4303934 -0.388193 1 0.4303934 -0.4303934 1 0.4303934 -0.4751555 1 0.4303934 -0.5225216 1 0.4303934 -0.5725335 1 0.4303934 -0.6252316 1 0.4303934 -0.6806558 1 0.4303934 -0.7388448 1 0.4303934 -0.7998369 1 0.4303934 -0.8636691 1 0.4303934 -0.9303782 1 0.4303934 -1 1 0.4303934 -0 0 0.4751555 -0.002418731 0 0.4751555 -0.005155668 0 0.4751555 -0.009080105 0 0.4751555 -0.01434988 0 0.4751555 -0.02107202 0 0.4751555 -0.02934285 0 0.4751555 -0.03925039 0 0.4751555 -0.05087609 0 0.4751555 -0.06429595 0 0.4751555 -0.07958143 0 0.4751555 -0.0968001 0 0.4751555 -0.1160161 0 0.4751555 -0.1372908 0 0.4751555 -0.1606827 0 0.4751555 -0.1862481 0 0.4751555 -0.2140411 0 0.4751555 -0.2441142 0 0.4751555 -0.2765176 0 0.4751555 -0.3113005 0 0.4751555 -0.3485102 0 0.4751555 -0.388193 0 0.4751555 -0.4303934 0 0.4751555 -0.4751555 0 0.4751555 -0.5225216 0 0.4751555 -0.5725335 0 0.4751555 -0.6252316 0 0.4751555 -0.6806558 0 0.4751555 -0.7388448 0 0.4751555 -0.7998369 0 0.4751555 -0.8636691 0 0.4751555 -0.9303782 0 0.4751555 -1 0 0.4751555 -0 0.002418731 0.4751555 -0.002418731 0.002418731 0.4751555 -0.005155668 0.002418731 0.4751555 -0.009080105 0.002418731 0.4751555 -0.01434988 0.002418731 0.4751555 -0.02107202 0.002418731 0.4751555 -0.02934285 0.002418731 0.4751555 -0.03925039 0.002418731 0.4751555 -0.05087609 0.002418731 0.4751555 -0.06429595 0.002418731 0.4751555 -0.07958143 0.002418731 0.4751555 -0.0968001 0.002418731 0.4751555 -0.1160161 0.002418731 0.4751555 -0.1372908 0.002418731 0.4751555 -0.1606827 0.002418731 0.4751555 -0.1862481 0.002418731 0.4751555 -0.2140411 0.002418731 0.4751555 -0.2441142 0.002418731 0.4751555 -0.2765176 0.002418731 0.4751555 -0.3113005 0.002418731 0.4751555 -0.3485102 0.002418731 0.4751555 -0.388193 0.002418731 0.4751555 -0.4303934 0.002418731 0.4751555 -0.4751555 0.002418731 0.4751555 -0.5225216 0.002418731 0.4751555 -0.5725335 0.002418731 0.4751555 -0.6252316 0.002418731 0.4751555 -0.6806558 0.002418731 0.4751555 -0.7388448 0.002418731 0.4751555 -0.7998369 0.002418731 0.4751555 -0.8636691 0.002418731 0.4751555 -0.9303782 0.002418731 0.4751555 -1 0.002418731 0.4751555 -0 0.005155668 0.4751555 -0.002418731 0.005155668 0.4751555 -0.005155668 0.005155668 0.4751555 -0.009080105 0.005155668 0.4751555 -0.01434988 0.005155668 0.4751555 -0.02107202 0.005155668 0.4751555 -0.02934285 0.005155668 0.4751555 -0.03925039 0.005155668 0.4751555 -0.05087609 0.005155668 0.4751555 -0.06429595 0.005155668 0.4751555 -0.07958143 0.005155668 0.4751555 -0.0968001 0.005155668 0.4751555 -0.1160161 0.005155668 0.4751555 -0.1372908 0.005155668 0.4751555 -0.1606827 0.005155668 0.4751555 -0.1862481 0.005155668 0.4751555 -0.2140411 0.005155668 0.4751555 -0.2441142 0.005155668 0.4751555 -0.2765176 0.005155668 0.4751555 -0.3113005 0.005155668 0.4751555 -0.3485102 0.005155668 0.4751555 -0.388193 0.005155668 0.4751555 -0.4303934 0.005155668 0.4751555 -0.4751555 0.005155668 0.4751555 -0.5225216 0.005155668 0.4751555 -0.5725335 0.005155668 0.4751555 -0.6252316 0.005155668 0.4751555 -0.6806558 0.005155668 0.4751555 -0.7388448 0.005155668 0.4751555 -0.7998369 0.005155668 0.4751555 -0.8636691 0.005155668 0.4751555 -0.9303782 0.005155668 0.4751555 -1 0.005155668 0.4751555 -0 0.009080105 0.4751555 -0.002418731 0.009080105 0.4751555 -0.005155668 0.009080105 0.4751555 -0.009080105 0.009080105 0.4751555 -0.01434988 0.009080105 0.4751555 -0.02107202 0.009080105 0.4751555 -0.02934285 0.009080105 0.4751555 -0.03925039 0.009080105 0.4751555 -0.05087609 0.009080105 0.4751555 -0.06429595 0.009080105 0.4751555 -0.07958143 0.009080105 0.4751555 -0.0968001 0.009080105 0.4751555 -0.1160161 0.009080105 0.4751555 -0.1372908 0.009080105 0.4751555 -0.1606827 0.009080105 0.4751555 -0.1862481 0.009080105 0.4751555 -0.2140411 0.009080105 0.4751555 -0.2441142 0.009080105 0.4751555 -0.2765176 0.009080105 0.4751555 -0.3113005 0.009080105 0.4751555 -0.3485102 0.009080105 0.4751555 -0.388193 0.009080105 0.4751555 -0.4303934 0.009080105 0.4751555 -0.4751555 0.009080105 0.4751555 -0.5225216 0.009080105 0.4751555 -0.5725335 0.009080105 0.4751555 -0.6252316 0.009080105 0.4751555 -0.6806558 0.009080105 0.4751555 -0.7388448 0.009080105 0.4751555 -0.7998369 0.009080105 0.4751555 -0.8636691 0.009080105 0.4751555 -0.9303782 0.009080105 0.4751555 -1 0.009080105 0.4751555 -0 0.01434988 0.4751555 -0.002418731 0.01434988 0.4751555 -0.005155668 0.01434988 0.4751555 -0.009080105 0.01434988 0.4751555 -0.01434988 0.01434988 0.4751555 -0.02107202 0.01434988 0.4751555 -0.02934285 0.01434988 0.4751555 -0.03925039 0.01434988 0.4751555 -0.05087609 0.01434988 0.4751555 -0.06429595 0.01434988 0.4751555 -0.07958143 0.01434988 0.4751555 -0.0968001 0.01434988 0.4751555 -0.1160161 0.01434988 0.4751555 -0.1372908 0.01434988 0.4751555 -0.1606827 0.01434988 0.4751555 -0.1862481 0.01434988 0.4751555 -0.2140411 0.01434988 0.4751555 -0.2441142 0.01434988 0.4751555 -0.2765176 0.01434988 0.4751555 -0.3113005 0.01434988 0.4751555 -0.3485102 0.01434988 0.4751555 -0.388193 0.01434988 0.4751555 -0.4303934 0.01434988 0.4751555 -0.4751555 0.01434988 0.4751555 -0.5225216 0.01434988 0.4751555 -0.5725335 0.01434988 0.4751555 -0.6252316 0.01434988 0.4751555 -0.6806558 0.01434988 0.4751555 -0.7388448 0.01434988 0.4751555 -0.7998369 0.01434988 0.4751555 -0.8636691 0.01434988 0.4751555 -0.9303782 0.01434988 0.4751555 -1 0.01434988 0.4751555 -0 0.02107202 0.4751555 -0.002418731 0.02107202 0.4751555 -0.005155668 0.02107202 0.4751555 -0.009080105 0.02107202 0.4751555 -0.01434988 0.02107202 0.4751555 -0.02107202 0.02107202 0.4751555 -0.02934285 0.02107202 0.4751555 -0.03925039 0.02107202 0.4751555 -0.05087609 0.02107202 0.4751555 -0.06429595 0.02107202 0.4751555 -0.07958143 0.02107202 0.4751555 -0.0968001 0.02107202 0.4751555 -0.1160161 0.02107202 0.4751555 -0.1372908 0.02107202 0.4751555 -0.1606827 0.02107202 0.4751555 -0.1862481 0.02107202 0.4751555 -0.2140411 0.02107202 0.4751555 -0.2441142 0.02107202 0.4751555 -0.2765176 0.02107202 0.4751555 -0.3113005 0.02107202 0.4751555 -0.3485102 0.02107202 0.4751555 -0.388193 0.02107202 0.4751555 -0.4303934 0.02107202 0.4751555 -0.4751555 0.02107202 0.4751555 -0.5225216 0.02107202 0.4751555 -0.5725335 0.02107202 0.4751555 -0.6252316 0.02107202 0.4751555 -0.6806558 0.02107202 0.4751555 -0.7388448 0.02107202 0.4751555 -0.7998369 0.02107202 0.4751555 -0.8636691 0.02107202 0.4751555 -0.9303782 0.02107202 0.4751555 -1 0.02107202 0.4751555 -0 0.02934285 0.4751555 -0.002418731 0.02934285 0.4751555 -0.005155668 0.02934285 0.4751555 -0.009080105 0.02934285 0.4751555 -0.01434988 0.02934285 0.4751555 -0.02107202 0.02934285 0.4751555 -0.02934285 0.02934285 0.4751555 -0.03925039 0.02934285 0.4751555 -0.05087609 0.02934285 0.4751555 -0.06429595 0.02934285 0.4751555 -0.07958143 0.02934285 0.4751555 -0.0968001 0.02934285 0.4751555 -0.1160161 0.02934285 0.4751555 -0.1372908 0.02934285 0.4751555 -0.1606827 0.02934285 0.4751555 -0.1862481 0.02934285 0.4751555 -0.2140411 0.02934285 0.4751555 -0.2441142 0.02934285 0.4751555 -0.2765176 0.02934285 0.4751555 -0.3113005 0.02934285 0.4751555 -0.3485102 0.02934285 0.4751555 -0.388193 0.02934285 0.4751555 -0.4303934 0.02934285 0.4751555 -0.4751555 0.02934285 0.4751555 -0.5225216 0.02934285 0.4751555 -0.5725335 0.02934285 0.4751555 -0.6252316 0.02934285 0.4751555 -0.6806558 0.02934285 0.4751555 -0.7388448 0.02934285 0.4751555 -0.7998369 0.02934285 0.4751555 -0.8636691 0.02934285 0.4751555 -0.9303782 0.02934285 0.4751555 -1 0.02934285 0.4751555 -0 0.03925039 0.4751555 -0.002418731 0.03925039 0.4751555 -0.005155668 0.03925039 0.4751555 -0.009080105 0.03925039 0.4751555 -0.01434988 0.03925039 0.4751555 -0.02107202 0.03925039 0.4751555 -0.02934285 0.03925039 0.4751555 -0.03925039 0.03925039 0.4751555 -0.05087609 0.03925039 0.4751555 -0.06429595 0.03925039 0.4751555 -0.07958143 0.03925039 0.4751555 -0.0968001 0.03925039 0.4751555 -0.1160161 0.03925039 0.4751555 -0.1372908 0.03925039 0.4751555 -0.1606827 0.03925039 0.4751555 -0.1862481 0.03925039 0.4751555 -0.2140411 0.03925039 0.4751555 -0.2441142 0.03925039 0.4751555 -0.2765176 0.03925039 0.4751555 -0.3113005 0.03925039 0.4751555 -0.3485102 0.03925039 0.4751555 -0.388193 0.03925039 0.4751555 -0.4303934 0.03925039 0.4751555 -0.4751555 0.03925039 0.4751555 -0.5225216 0.03925039 0.4751555 -0.5725335 0.03925039 0.4751555 -0.6252316 0.03925039 0.4751555 -0.6806558 0.03925039 0.4751555 -0.7388448 0.03925039 0.4751555 -0.7998369 0.03925039 0.4751555 -0.8636691 0.03925039 0.4751555 -0.9303782 0.03925039 0.4751555 -1 0.03925039 0.4751555 -0 0.05087609 0.4751555 -0.002418731 0.05087609 0.4751555 -0.005155668 0.05087609 0.4751555 -0.009080105 0.05087609 0.4751555 -0.01434988 0.05087609 0.4751555 -0.02107202 0.05087609 0.4751555 -0.02934285 0.05087609 0.4751555 -0.03925039 0.05087609 0.4751555 -0.05087609 0.05087609 0.4751555 -0.06429595 0.05087609 0.4751555 -0.07958143 0.05087609 0.4751555 -0.0968001 0.05087609 0.4751555 -0.1160161 0.05087609 0.4751555 -0.1372908 0.05087609 0.4751555 -0.1606827 0.05087609 0.4751555 -0.1862481 0.05087609 0.4751555 -0.2140411 0.05087609 0.4751555 -0.2441142 0.05087609 0.4751555 -0.2765176 0.05087609 0.4751555 -0.3113005 0.05087609 0.4751555 -0.3485102 0.05087609 0.4751555 -0.388193 0.05087609 0.4751555 -0.4303934 0.05087609 0.4751555 -0.4751555 0.05087609 0.4751555 -0.5225216 0.05087609 0.4751555 -0.5725335 0.05087609 0.4751555 -0.6252316 0.05087609 0.4751555 -0.6806558 0.05087609 0.4751555 -0.7388448 0.05087609 0.4751555 -0.7998369 0.05087609 0.4751555 -0.8636691 0.05087609 0.4751555 -0.9303782 0.05087609 0.4751555 -1 0.05087609 0.4751555 -0 0.06429595 0.4751555 -0.002418731 0.06429595 0.4751555 -0.005155668 0.06429595 0.4751555 -0.009080105 0.06429595 0.4751555 -0.01434988 0.06429595 0.4751555 -0.02107202 0.06429595 0.4751555 -0.02934285 0.06429595 0.4751555 -0.03925039 0.06429595 0.4751555 -0.05087609 0.06429595 0.4751555 -0.06429595 0.06429595 0.4751555 -0.07958143 0.06429595 0.4751555 -0.0968001 0.06429595 0.4751555 -0.1160161 0.06429595 0.4751555 -0.1372908 0.06429595 0.4751555 -0.1606827 0.06429595 0.4751555 -0.1862481 0.06429595 0.4751555 -0.2140411 0.06429595 0.4751555 -0.2441142 0.06429595 0.4751555 -0.2765176 0.06429595 0.4751555 -0.3113005 0.06429595 0.4751555 -0.3485102 0.06429595 0.4751555 -0.388193 0.06429595 0.4751555 -0.4303934 0.06429595 0.4751555 -0.4751555 0.06429595 0.4751555 -0.5225216 0.06429595 0.4751555 -0.5725335 0.06429595 0.4751555 -0.6252316 0.06429595 0.4751555 -0.6806558 0.06429595 0.4751555 -0.7388448 0.06429595 0.4751555 -0.7998369 0.06429595 0.4751555 -0.8636691 0.06429595 0.4751555 -0.9303782 0.06429595 0.4751555 -1 0.06429595 0.4751555 -0 0.07958143 0.4751555 -0.002418731 0.07958143 0.4751555 -0.005155668 0.07958143 0.4751555 -0.009080105 0.07958143 0.4751555 -0.01434988 0.07958143 0.4751555 -0.02107202 0.07958143 0.4751555 -0.02934285 0.07958143 0.4751555 -0.03925039 0.07958143 0.4751555 -0.05087609 0.07958143 0.4751555 -0.06429595 0.07958143 0.4751555 -0.07958143 0.07958143 0.4751555 -0.0968001 0.07958143 0.4751555 -0.1160161 0.07958143 0.4751555 -0.1372908 0.07958143 0.4751555 -0.1606827 0.07958143 0.4751555 -0.1862481 0.07958143 0.4751555 -0.2140411 0.07958143 0.4751555 -0.2441142 0.07958143 0.4751555 -0.2765176 0.07958143 0.4751555 -0.3113005 0.07958143 0.4751555 -0.3485102 0.07958143 0.4751555 -0.388193 0.07958143 0.4751555 -0.4303934 0.07958143 0.4751555 -0.4751555 0.07958143 0.4751555 -0.5225216 0.07958143 0.4751555 -0.5725335 0.07958143 0.4751555 -0.6252316 0.07958143 0.4751555 -0.6806558 0.07958143 0.4751555 -0.7388448 0.07958143 0.4751555 -0.7998369 0.07958143 0.4751555 -0.8636691 0.07958143 0.4751555 -0.9303782 0.07958143 0.4751555 -1 0.07958143 0.4751555 -0 0.0968001 0.4751555 -0.002418731 0.0968001 0.4751555 -0.005155668 0.0968001 0.4751555 -0.009080105 0.0968001 0.4751555 -0.01434988 0.0968001 0.4751555 -0.02107202 0.0968001 0.4751555 -0.02934285 0.0968001 0.4751555 -0.03925039 0.0968001 0.4751555 -0.05087609 0.0968001 0.4751555 -0.06429595 0.0968001 0.4751555 -0.07958143 0.0968001 0.4751555 -0.0968001 0.0968001 0.4751555 -0.1160161 0.0968001 0.4751555 -0.1372908 0.0968001 0.4751555 -0.1606827 0.0968001 0.4751555 -0.1862481 0.0968001 0.4751555 -0.2140411 0.0968001 0.4751555 -0.2441142 0.0968001 0.4751555 -0.2765176 0.0968001 0.4751555 -0.3113005 0.0968001 0.4751555 -0.3485102 0.0968001 0.4751555 -0.388193 0.0968001 0.4751555 -0.4303934 0.0968001 0.4751555 -0.4751555 0.0968001 0.4751555 -0.5225216 0.0968001 0.4751555 -0.5725335 0.0968001 0.4751555 -0.6252316 0.0968001 0.4751555 -0.6806558 0.0968001 0.4751555 -0.7388448 0.0968001 0.4751555 -0.7998369 0.0968001 0.4751555 -0.8636691 0.0968001 0.4751555 -0.9303782 0.0968001 0.4751555 -1 0.0968001 0.4751555 -0 0.1160161 0.4751555 -0.002418731 0.1160161 0.4751555 -0.005155668 0.1160161 0.4751555 -0.009080105 0.1160161 0.4751555 -0.01434988 0.1160161 0.4751555 -0.02107202 0.1160161 0.4751555 -0.02934285 0.1160161 0.4751555 -0.03925039 0.1160161 0.4751555 -0.05087609 0.1160161 0.4751555 -0.06429595 0.1160161 0.4751555 -0.07958143 0.1160161 0.4751555 -0.0968001 0.1160161 0.4751555 -0.1160161 0.1160161 0.4751555 -0.1372908 0.1160161 0.4751555 -0.1606827 0.1160161 0.4751555 -0.1862481 0.1160161 0.4751555 -0.2140411 0.1160161 0.4751555 -0.2441142 0.1160161 0.4751555 -0.2765176 0.1160161 0.4751555 -0.3113005 0.1160161 0.4751555 -0.3485102 0.1160161 0.4751555 -0.388193 0.1160161 0.4751555 -0.4303934 0.1160161 0.4751555 -0.4751555 0.1160161 0.4751555 -0.5225216 0.1160161 0.4751555 -0.5725335 0.1160161 0.4751555 -0.6252316 0.1160161 0.4751555 -0.6806558 0.1160161 0.4751555 -0.7388448 0.1160161 0.4751555 -0.7998369 0.1160161 0.4751555 -0.8636691 0.1160161 0.4751555 -0.9303782 0.1160161 0.4751555 -1 0.1160161 0.4751555 -0 0.1372908 0.4751555 -0.002418731 0.1372908 0.4751555 -0.005155668 0.1372908 0.4751555 -0.009080105 0.1372908 0.4751555 -0.01434988 0.1372908 0.4751555 -0.02107202 0.1372908 0.4751555 -0.02934285 0.1372908 0.4751555 -0.03925039 0.1372908 0.4751555 -0.05087609 0.1372908 0.4751555 -0.06429595 0.1372908 0.4751555 -0.07958143 0.1372908 0.4751555 -0.0968001 0.1372908 0.4751555 -0.1160161 0.1372908 0.4751555 -0.1372908 0.1372908 0.4751555 -0.1606827 0.1372908 0.4751555 -0.1862481 0.1372908 0.4751555 -0.2140411 0.1372908 0.4751555 -0.2441142 0.1372908 0.4751555 -0.2765176 0.1372908 0.4751555 -0.3113005 0.1372908 0.4751555 -0.3485102 0.1372908 0.4751555 -0.388193 0.1372908 0.4751555 -0.4303934 0.1372908 0.4751555 -0.4751555 0.1372908 0.4751555 -0.5225216 0.1372908 0.4751555 -0.5725335 0.1372908 0.4751555 -0.6252316 0.1372908 0.4751555 -0.6806558 0.1372908 0.4751555 -0.7388448 0.1372908 0.4751555 -0.7998369 0.1372908 0.4751555 -0.8636691 0.1372908 0.4751555 -0.9303782 0.1372908 0.4751555 -1 0.1372908 0.4751555 -0 0.1606827 0.4751555 -0.002418731 0.1606827 0.4751555 -0.005155668 0.1606827 0.4751555 -0.009080105 0.1606827 0.4751555 -0.01434988 0.1606827 0.4751555 -0.02107202 0.1606827 0.4751555 -0.02934285 0.1606827 0.4751555 -0.03925039 0.1606827 0.4751555 -0.05087609 0.1606827 0.4751555 -0.06429595 0.1606827 0.4751555 -0.07958143 0.1606827 0.4751555 -0.0968001 0.1606827 0.4751555 -0.1160161 0.1606827 0.4751555 -0.1372908 0.1606827 0.4751555 -0.1606827 0.1606827 0.4751555 -0.1862481 0.1606827 0.4751555 -0.2140411 0.1606827 0.4751555 -0.2441142 0.1606827 0.4751555 -0.2765176 0.1606827 0.4751555 -0.3113005 0.1606827 0.4751555 -0.3485102 0.1606827 0.4751555 -0.388193 0.1606827 0.4751555 -0.4303934 0.1606827 0.4751555 -0.4751555 0.1606827 0.4751555 -0.5225216 0.1606827 0.4751555 -0.5725335 0.1606827 0.4751555 -0.6252316 0.1606827 0.4751555 -0.6806558 0.1606827 0.4751555 -0.7388448 0.1606827 0.4751555 -0.7998369 0.1606827 0.4751555 -0.8636691 0.1606827 0.4751555 -0.9303782 0.1606827 0.4751555 -1 0.1606827 0.4751555 -0 0.1862481 0.4751555 -0.002418731 0.1862481 0.4751555 -0.005155668 0.1862481 0.4751555 -0.009080105 0.1862481 0.4751555 -0.01434988 0.1862481 0.4751555 -0.02107202 0.1862481 0.4751555 -0.02934285 0.1862481 0.4751555 -0.03925039 0.1862481 0.4751555 -0.05087609 0.1862481 0.4751555 -0.06429595 0.1862481 0.4751555 -0.07958143 0.1862481 0.4751555 -0.0968001 0.1862481 0.4751555 -0.1160161 0.1862481 0.4751555 -0.1372908 0.1862481 0.4751555 -0.1606827 0.1862481 0.4751555 -0.1862481 0.1862481 0.4751555 -0.2140411 0.1862481 0.4751555 -0.2441142 0.1862481 0.4751555 -0.2765176 0.1862481 0.4751555 -0.3113005 0.1862481 0.4751555 -0.3485102 0.1862481 0.4751555 -0.388193 0.1862481 0.4751555 -0.4303934 0.1862481 0.4751555 -0.4751555 0.1862481 0.4751555 -0.5225216 0.1862481 0.4751555 -0.5725335 0.1862481 0.4751555 -0.6252316 0.1862481 0.4751555 -0.6806558 0.1862481 0.4751555 -0.7388448 0.1862481 0.4751555 -0.7998369 0.1862481 0.4751555 -0.8636691 0.1862481 0.4751555 -0.9303782 0.1862481 0.4751555 -1 0.1862481 0.4751555 -0 0.2140411 0.4751555 -0.002418731 0.2140411 0.4751555 -0.005155668 0.2140411 0.4751555 -0.009080105 0.2140411 0.4751555 -0.01434988 0.2140411 0.4751555 -0.02107202 0.2140411 0.4751555 -0.02934285 0.2140411 0.4751555 -0.03925039 0.2140411 0.4751555 -0.05087609 0.2140411 0.4751555 -0.06429595 0.2140411 0.4751555 -0.07958143 0.2140411 0.4751555 -0.0968001 0.2140411 0.4751555 -0.1160161 0.2140411 0.4751555 -0.1372908 0.2140411 0.4751555 -0.1606827 0.2140411 0.4751555 -0.1862481 0.2140411 0.4751555 -0.2140411 0.2140411 0.4751555 -0.2441142 0.2140411 0.4751555 -0.2765176 0.2140411 0.4751555 -0.3113005 0.2140411 0.4751555 -0.3485102 0.2140411 0.4751555 -0.388193 0.2140411 0.4751555 -0.4303934 0.2140411 0.4751555 -0.4751555 0.2140411 0.4751555 -0.5225216 0.2140411 0.4751555 -0.5725335 0.2140411 0.4751555 -0.6252316 0.2140411 0.4751555 -0.6806558 0.2140411 0.4751555 -0.7388448 0.2140411 0.4751555 -0.7998369 0.2140411 0.4751555 -0.8636691 0.2140411 0.4751555 -0.9303782 0.2140411 0.4751555 -1 0.2140411 0.4751555 -0 0.2441142 0.4751555 -0.002418731 0.2441142 0.4751555 -0.005155668 0.2441142 0.4751555 -0.009080105 0.2441142 0.4751555 -0.01434988 0.2441142 0.4751555 -0.02107202 0.2441142 0.4751555 -0.02934285 0.2441142 0.4751555 -0.03925039 0.2441142 0.4751555 -0.05087609 0.2441142 0.4751555 -0.06429595 0.2441142 0.4751555 -0.07958143 0.2441142 0.4751555 -0.0968001 0.2441142 0.4751555 -0.1160161 0.2441142 0.4751555 -0.1372908 0.2441142 0.4751555 -0.1606827 0.2441142 0.4751555 -0.1862481 0.2441142 0.4751555 -0.2140411 0.2441142 0.4751555 -0.2441142 0.2441142 0.4751555 -0.2765176 0.2441142 0.4751555 -0.3113005 0.2441142 0.4751555 -0.3485102 0.2441142 0.4751555 -0.388193 0.2441142 0.4751555 -0.4303934 0.2441142 0.4751555 -0.4751555 0.2441142 0.4751555 -0.5225216 0.2441142 0.4751555 -0.5725335 0.2441142 0.4751555 -0.6252316 0.2441142 0.4751555 -0.6806558 0.2441142 0.4751555 -0.7388448 0.2441142 0.4751555 -0.7998369 0.2441142 0.4751555 -0.8636691 0.2441142 0.4751555 -0.9303782 0.2441142 0.4751555 -1 0.2441142 0.4751555 -0 0.2765176 0.4751555 -0.002418731 0.2765176 0.4751555 -0.005155668 0.2765176 0.4751555 -0.009080105 0.2765176 0.4751555 -0.01434988 0.2765176 0.4751555 -0.02107202 0.2765176 0.4751555 -0.02934285 0.2765176 0.4751555 -0.03925039 0.2765176 0.4751555 -0.05087609 0.2765176 0.4751555 -0.06429595 0.2765176 0.4751555 -0.07958143 0.2765176 0.4751555 -0.0968001 0.2765176 0.4751555 -0.1160161 0.2765176 0.4751555 -0.1372908 0.2765176 0.4751555 -0.1606827 0.2765176 0.4751555 -0.1862481 0.2765176 0.4751555 -0.2140411 0.2765176 0.4751555 -0.2441142 0.2765176 0.4751555 -0.2765176 0.2765176 0.4751555 -0.3113005 0.2765176 0.4751555 -0.3485102 0.2765176 0.4751555 -0.388193 0.2765176 0.4751555 -0.4303934 0.2765176 0.4751555 -0.4751555 0.2765176 0.4751555 -0.5225216 0.2765176 0.4751555 -0.5725335 0.2765176 0.4751555 -0.6252316 0.2765176 0.4751555 -0.6806558 0.2765176 0.4751555 -0.7388448 0.2765176 0.4751555 -0.7998369 0.2765176 0.4751555 -0.8636691 0.2765176 0.4751555 -0.9303782 0.2765176 0.4751555 -1 0.2765176 0.4751555 -0 0.3113005 0.4751555 -0.002418731 0.3113005 0.4751555 -0.005155668 0.3113005 0.4751555 -0.009080105 0.3113005 0.4751555 -0.01434988 0.3113005 0.4751555 -0.02107202 0.3113005 0.4751555 -0.02934285 0.3113005 0.4751555 -0.03925039 0.3113005 0.4751555 -0.05087609 0.3113005 0.4751555 -0.06429595 0.3113005 0.4751555 -0.07958143 0.3113005 0.4751555 -0.0968001 0.3113005 0.4751555 -0.1160161 0.3113005 0.4751555 -0.1372908 0.3113005 0.4751555 -0.1606827 0.3113005 0.4751555 -0.1862481 0.3113005 0.4751555 -0.2140411 0.3113005 0.4751555 -0.2441142 0.3113005 0.4751555 -0.2765176 0.3113005 0.4751555 -0.3113005 0.3113005 0.4751555 -0.3485102 0.3113005 0.4751555 -0.388193 0.3113005 0.4751555 -0.4303934 0.3113005 0.4751555 -0.4751555 0.3113005 0.4751555 -0.5225216 0.3113005 0.4751555 -0.5725335 0.3113005 0.4751555 -0.6252316 0.3113005 0.4751555 -0.6806558 0.3113005 0.4751555 -0.7388448 0.3113005 0.4751555 -0.7998369 0.3113005 0.4751555 -0.8636691 0.3113005 0.4751555 -0.9303782 0.3113005 0.4751555 -1 0.3113005 0.4751555 -0 0.3485102 0.4751555 -0.002418731 0.3485102 0.4751555 -0.005155668 0.3485102 0.4751555 -0.009080105 0.3485102 0.4751555 -0.01434988 0.3485102 0.4751555 -0.02107202 0.3485102 0.4751555 -0.02934285 0.3485102 0.4751555 -0.03925039 0.3485102 0.4751555 -0.05087609 0.3485102 0.4751555 -0.06429595 0.3485102 0.4751555 -0.07958143 0.3485102 0.4751555 -0.0968001 0.3485102 0.4751555 -0.1160161 0.3485102 0.4751555 -0.1372908 0.3485102 0.4751555 -0.1606827 0.3485102 0.4751555 -0.1862481 0.3485102 0.4751555 -0.2140411 0.3485102 0.4751555 -0.2441142 0.3485102 0.4751555 -0.2765176 0.3485102 0.4751555 -0.3113005 0.3485102 0.4751555 -0.3485102 0.3485102 0.4751555 -0.388193 0.3485102 0.4751555 -0.4303934 0.3485102 0.4751555 -0.4751555 0.3485102 0.4751555 -0.5225216 0.3485102 0.4751555 -0.5725335 0.3485102 0.4751555 -0.6252316 0.3485102 0.4751555 -0.6806558 0.3485102 0.4751555 -0.7388448 0.3485102 0.4751555 -0.7998369 0.3485102 0.4751555 -0.8636691 0.3485102 0.4751555 -0.9303782 0.3485102 0.4751555 -1 0.3485102 0.4751555 -0 0.388193 0.4751555 -0.002418731 0.388193 0.4751555 -0.005155668 0.388193 0.4751555 -0.009080105 0.388193 0.4751555 -0.01434988 0.388193 0.4751555 -0.02107202 0.388193 0.4751555 -0.02934285 0.388193 0.4751555 -0.03925039 0.388193 0.4751555 -0.05087609 0.388193 0.4751555 -0.06429595 0.388193 0.4751555 -0.07958143 0.388193 0.4751555 -0.0968001 0.388193 0.4751555 -0.1160161 0.388193 0.4751555 -0.1372908 0.388193 0.4751555 -0.1606827 0.388193 0.4751555 -0.1862481 0.388193 0.4751555 -0.2140411 0.388193 0.4751555 -0.2441142 0.388193 0.4751555 -0.2765176 0.388193 0.4751555 -0.3113005 0.388193 0.4751555 -0.3485102 0.388193 0.4751555 -0.388193 0.388193 0.4751555 -0.4303934 0.388193 0.4751555 -0.4751555 0.388193 0.4751555 -0.5225216 0.388193 0.4751555 -0.5725335 0.388193 0.4751555 -0.6252316 0.388193 0.4751555 -0.6806558 0.388193 0.4751555 -0.7388448 0.388193 0.4751555 -0.7998369 0.388193 0.4751555 -0.8636691 0.388193 0.4751555 -0.9303782 0.388193 0.4751555 -1 0.388193 0.4751555 -0 0.4303934 0.4751555 -0.002418731 0.4303934 0.4751555 -0.005155668 0.4303934 0.4751555 -0.009080105 0.4303934 0.4751555 -0.01434988 0.4303934 0.4751555 -0.02107202 0.4303934 0.4751555 -0.02934285 0.4303934 0.4751555 -0.03925039 0.4303934 0.4751555 -0.05087609 0.4303934 0.4751555 -0.06429595 0.4303934 0.4751555 -0.07958143 0.4303934 0.4751555 -0.0968001 0.4303934 0.4751555 -0.1160161 0.4303934 0.4751555 -0.1372908 0.4303934 0.4751555 -0.1606827 0.4303934 0.4751555 -0.1862481 0.4303934 0.4751555 -0.2140411 0.4303934 0.4751555 -0.2441142 0.4303934 0.4751555 -0.2765176 0.4303934 0.4751555 -0.3113005 0.4303934 0.4751555 -0.3485102 0.4303934 0.4751555 -0.388193 0.4303934 0.4751555 -0.4303934 0.4303934 0.4751555 -0.4751555 0.4303934 0.4751555 -0.5225216 0.4303934 0.4751555 -0.5725335 0.4303934 0.4751555 -0.6252316 0.4303934 0.4751555 -0.6806558 0.4303934 0.4751555 -0.7388448 0.4303934 0.4751555 -0.7998369 0.4303934 0.4751555 -0.8636691 0.4303934 0.4751555 -0.9303782 0.4303934 0.4751555 -1 0.4303934 0.4751555 -0 0.4751555 0.4751555 -0.002418731 0.4751555 0.4751555 -0.005155668 0.4751555 0.4751555 -0.009080105 0.4751555 0.4751555 -0.01434988 0.4751555 0.4751555 -0.02107202 0.4751555 0.4751555 -0.02934285 0.4751555 0.4751555 -0.03925039 0.4751555 0.4751555 -0.05087609 0.4751555 0.4751555 -0.06429595 0.4751555 0.4751555 -0.07958143 0.4751555 0.4751555 -0.0968001 0.4751555 0.4751555 -0.1160161 0.4751555 0.4751555 -0.1372908 0.4751555 0.4751555 -0.1606827 0.4751555 0.4751555 -0.1862481 0.4751555 0.4751555 -0.2140411 0.4751555 0.4751555 -0.2441142 0.4751555 0.4751555 -0.2765176 0.4751555 0.4751555 -0.3113005 0.4751555 0.4751555 -0.3485102 0.4751555 0.4751555 -0.388193 0.4751555 0.4751555 -0.4303934 0.4751555 0.4751555 -0.4751555 0.4751555 0.4751555 -0.5225216 0.4751555 0.4751555 -0.5725335 0.4751555 0.4751555 -0.6252316 0.4751555 0.4751555 -0.6806558 0.4751555 0.4751555 -0.7388448 0.4751555 0.4751555 -0.7998369 0.4751555 0.4751555 -0.8636691 0.4751555 0.4751555 -0.9303782 0.4751555 0.4751555 -1 0.4751555 0.4751555 -0 0.5225216 0.4751555 -0.002418731 0.5225216 0.4751555 -0.005155668 0.5225216 0.4751555 -0.009080105 0.5225216 0.4751555 -0.01434988 0.5225216 0.4751555 -0.02107202 0.5225216 0.4751555 -0.02934285 0.5225216 0.4751555 -0.03925039 0.5225216 0.4751555 -0.05087609 0.5225216 0.4751555 -0.06429595 0.5225216 0.4751555 -0.07958143 0.5225216 0.4751555 -0.0968001 0.5225216 0.4751555 -0.1160161 0.5225216 0.4751555 -0.1372908 0.5225216 0.4751555 -0.1606827 0.5225216 0.4751555 -0.1862481 0.5225216 0.4751555 -0.2140411 0.5225216 0.4751555 -0.2441142 0.5225216 0.4751555 -0.2765176 0.5225216 0.4751555 -0.3113005 0.5225216 0.4751555 -0.3485102 0.5225216 0.4751555 -0.388193 0.5225216 0.4751555 -0.4303934 0.5225216 0.4751555 -0.4751555 0.5225216 0.4751555 -0.5225216 0.5225216 0.4751555 -0.5725335 0.5225216 0.4751555 -0.6252316 0.5225216 0.4751555 -0.6806558 0.5225216 0.4751555 -0.7388448 0.5225216 0.4751555 -0.7998369 0.5225216 0.4751555 -0.8636691 0.5225216 0.4751555 -0.9303782 0.5225216 0.4751555 -1 0.5225216 0.4751555 -0 0.5725335 0.4751555 -0.002418731 0.5725335 0.4751555 -0.005155668 0.5725335 0.4751555 -0.009080105 0.5725335 0.4751555 -0.01434988 0.5725335 0.4751555 -0.02107202 0.5725335 0.4751555 -0.02934285 0.5725335 0.4751555 -0.03925039 0.5725335 0.4751555 -0.05087609 0.5725335 0.4751555 -0.06429595 0.5725335 0.4751555 -0.07958143 0.5725335 0.4751555 -0.0968001 0.5725335 0.4751555 -0.1160161 0.5725335 0.4751555 -0.1372908 0.5725335 0.4751555 -0.1606827 0.5725335 0.4751555 -0.1862481 0.5725335 0.4751555 -0.2140411 0.5725335 0.4751555 -0.2441142 0.5725335 0.4751555 -0.2765176 0.5725335 0.4751555 -0.3113005 0.5725335 0.4751555 -0.3485102 0.5725335 0.4751555 -0.388193 0.5725335 0.4751555 -0.4303934 0.5725335 0.4751555 -0.4751555 0.5725335 0.4751555 -0.5225216 0.5725335 0.4751555 -0.5725335 0.5725335 0.4751555 -0.6252316 0.5725335 0.4751555 -0.6806558 0.5725335 0.4751555 -0.7388448 0.5725335 0.4751555 -0.7998369 0.5725335 0.4751555 -0.8636691 0.5725335 0.4751555 -0.9303782 0.5725335 0.4751555 -1 0.5725335 0.4751555 -0 0.6252316 0.4751555 -0.002418731 0.6252316 0.4751555 -0.005155668 0.6252316 0.4751555 -0.009080105 0.6252316 0.4751555 -0.01434988 0.6252316 0.4751555 -0.02107202 0.6252316 0.4751555 -0.02934285 0.6252316 0.4751555 -0.03925039 0.6252316 0.4751555 -0.05087609 0.6252316 0.4751555 -0.06429595 0.6252316 0.4751555 -0.07958143 0.6252316 0.4751555 -0.0968001 0.6252316 0.4751555 -0.1160161 0.6252316 0.4751555 -0.1372908 0.6252316 0.4751555 -0.1606827 0.6252316 0.4751555 -0.1862481 0.6252316 0.4751555 -0.2140411 0.6252316 0.4751555 -0.2441142 0.6252316 0.4751555 -0.2765176 0.6252316 0.4751555 -0.3113005 0.6252316 0.4751555 -0.3485102 0.6252316 0.4751555 -0.388193 0.6252316 0.4751555 -0.4303934 0.6252316 0.4751555 -0.4751555 0.6252316 0.4751555 -0.5225216 0.6252316 0.4751555 -0.5725335 0.6252316 0.4751555 -0.6252316 0.6252316 0.4751555 -0.6806558 0.6252316 0.4751555 -0.7388448 0.6252316 0.4751555 -0.7998369 0.6252316 0.4751555 -0.8636691 0.6252316 0.4751555 -0.9303782 0.6252316 0.4751555 -1 0.6252316 0.4751555 -0 0.6806558 0.4751555 -0.002418731 0.6806558 0.4751555 -0.005155668 0.6806558 0.4751555 -0.009080105 0.6806558 0.4751555 -0.01434988 0.6806558 0.4751555 -0.02107202 0.6806558 0.4751555 -0.02934285 0.6806558 0.4751555 -0.03925039 0.6806558 0.4751555 -0.05087609 0.6806558 0.4751555 -0.06429595 0.6806558 0.4751555 -0.07958143 0.6806558 0.4751555 -0.0968001 0.6806558 0.4751555 -0.1160161 0.6806558 0.4751555 -0.1372908 0.6806558 0.4751555 -0.1606827 0.6806558 0.4751555 -0.1862481 0.6806558 0.4751555 -0.2140411 0.6806558 0.4751555 -0.2441142 0.6806558 0.4751555 -0.2765176 0.6806558 0.4751555 -0.3113005 0.6806558 0.4751555 -0.3485102 0.6806558 0.4751555 -0.388193 0.6806558 0.4751555 -0.4303934 0.6806558 0.4751555 -0.4751555 0.6806558 0.4751555 -0.5225216 0.6806558 0.4751555 -0.5725335 0.6806558 0.4751555 -0.6252316 0.6806558 0.4751555 -0.6806558 0.6806558 0.4751555 -0.7388448 0.6806558 0.4751555 -0.7998369 0.6806558 0.4751555 -0.8636691 0.6806558 0.4751555 -0.9303782 0.6806558 0.4751555 -1 0.6806558 0.4751555 -0 0.7388448 0.4751555 -0.002418731 0.7388448 0.4751555 -0.005155668 0.7388448 0.4751555 -0.009080105 0.7388448 0.4751555 -0.01434988 0.7388448 0.4751555 -0.02107202 0.7388448 0.4751555 -0.02934285 0.7388448 0.4751555 -0.03925039 0.7388448 0.4751555 -0.05087609 0.7388448 0.4751555 -0.06429595 0.7388448 0.4751555 -0.07958143 0.7388448 0.4751555 -0.0968001 0.7388448 0.4751555 -0.1160161 0.7388448 0.4751555 -0.1372908 0.7388448 0.4751555 -0.1606827 0.7388448 0.4751555 -0.1862481 0.7388448 0.4751555 -0.2140411 0.7388448 0.4751555 -0.2441142 0.7388448 0.4751555 -0.2765176 0.7388448 0.4751555 -0.3113005 0.7388448 0.4751555 -0.3485102 0.7388448 0.4751555 -0.388193 0.7388448 0.4751555 -0.4303934 0.7388448 0.4751555 -0.4751555 0.7388448 0.4751555 -0.5225216 0.7388448 0.4751555 -0.5725335 0.7388448 0.4751555 -0.6252316 0.7388448 0.4751555 -0.6806558 0.7388448 0.4751555 -0.7388448 0.7388448 0.4751555 -0.7998369 0.7388448 0.4751555 -0.8636691 0.7388448 0.4751555 -0.9303782 0.7388448 0.4751555 -1 0.7388448 0.4751555 -0 0.7998369 0.4751555 -0.002418731 0.7998369 0.4751555 -0.005155668 0.7998369 0.4751555 -0.009080105 0.7998369 0.4751555 -0.01434988 0.7998369 0.4751555 -0.02107202 0.7998369 0.4751555 -0.02934285 0.7998369 0.4751555 -0.03925039 0.7998369 0.4751555 -0.05087609 0.7998369 0.4751555 -0.06429595 0.7998369 0.4751555 -0.07958143 0.7998369 0.4751555 -0.0968001 0.7998369 0.4751555 -0.1160161 0.7998369 0.4751555 -0.1372908 0.7998369 0.4751555 -0.1606827 0.7998369 0.4751555 -0.1862481 0.7998369 0.4751555 -0.2140411 0.7998369 0.4751555 -0.2441142 0.7998369 0.4751555 -0.2765176 0.7998369 0.4751555 -0.3113005 0.7998369 0.4751555 -0.3485102 0.7998369 0.4751555 -0.388193 0.7998369 0.4751555 -0.4303934 0.7998369 0.4751555 -0.4751555 0.7998369 0.4751555 -0.5225216 0.7998369 0.4751555 -0.5725335 0.7998369 0.4751555 -0.6252316 0.7998369 0.4751555 -0.6806558 0.7998369 0.4751555 -0.7388448 0.7998369 0.4751555 -0.7998369 0.7998369 0.4751555 -0.8636691 0.7998369 0.4751555 -0.9303782 0.7998369 0.4751555 -1 0.7998369 0.4751555 -0 0.8636691 0.4751555 -0.002418731 0.8636691 0.4751555 -0.005155668 0.8636691 0.4751555 -0.009080105 0.8636691 0.4751555 -0.01434988 0.8636691 0.4751555 -0.02107202 0.8636691 0.4751555 -0.02934285 0.8636691 0.4751555 -0.03925039 0.8636691 0.4751555 -0.05087609 0.8636691 0.4751555 -0.06429595 0.8636691 0.4751555 -0.07958143 0.8636691 0.4751555 -0.0968001 0.8636691 0.4751555 -0.1160161 0.8636691 0.4751555 -0.1372908 0.8636691 0.4751555 -0.1606827 0.8636691 0.4751555 -0.1862481 0.8636691 0.4751555 -0.2140411 0.8636691 0.4751555 -0.2441142 0.8636691 0.4751555 -0.2765176 0.8636691 0.4751555 -0.3113005 0.8636691 0.4751555 -0.3485102 0.8636691 0.4751555 -0.388193 0.8636691 0.4751555 -0.4303934 0.8636691 0.4751555 -0.4751555 0.8636691 0.4751555 -0.5225216 0.8636691 0.4751555 -0.5725335 0.8636691 0.4751555 -0.6252316 0.8636691 0.4751555 -0.6806558 0.8636691 0.4751555 -0.7388448 0.8636691 0.4751555 -0.7998369 0.8636691 0.4751555 -0.8636691 0.8636691 0.4751555 -0.9303782 0.8636691 0.4751555 -1 0.8636691 0.4751555 -0 0.9303782 0.4751555 -0.002418731 0.9303782 0.4751555 -0.005155668 0.9303782 0.4751555 -0.009080105 0.9303782 0.4751555 -0.01434988 0.9303782 0.4751555 -0.02107202 0.9303782 0.4751555 -0.02934285 0.9303782 0.4751555 -0.03925039 0.9303782 0.4751555 -0.05087609 0.9303782 0.4751555 -0.06429595 0.9303782 0.4751555 -0.07958143 0.9303782 0.4751555 -0.0968001 0.9303782 0.4751555 -0.1160161 0.9303782 0.4751555 -0.1372908 0.9303782 0.4751555 -0.1606827 0.9303782 0.4751555 -0.1862481 0.9303782 0.4751555 -0.2140411 0.9303782 0.4751555 -0.2441142 0.9303782 0.4751555 -0.2765176 0.9303782 0.4751555 -0.3113005 0.9303782 0.4751555 -0.3485102 0.9303782 0.4751555 -0.388193 0.9303782 0.4751555 -0.4303934 0.9303782 0.4751555 -0.4751555 0.9303782 0.4751555 -0.5225216 0.9303782 0.4751555 -0.5725335 0.9303782 0.4751555 -0.6252316 0.9303782 0.4751555 -0.6806558 0.9303782 0.4751555 -0.7388448 0.9303782 0.4751555 -0.7998369 0.9303782 0.4751555 -0.8636691 0.9303782 0.4751555 -0.9303782 0.9303782 0.4751555 -1 0.9303782 0.4751555 -0 1 0.4751555 -0.002418731 1 0.4751555 -0.005155668 1 0.4751555 -0.009080105 1 0.4751555 -0.01434988 1 0.4751555 -0.02107202 1 0.4751555 -0.02934285 1 0.4751555 -0.03925039 1 0.4751555 -0.05087609 1 0.4751555 -0.06429595 1 0.4751555 -0.07958143 1 0.4751555 -0.0968001 1 0.4751555 -0.1160161 1 0.4751555 -0.1372908 1 0.4751555 -0.1606827 1 0.4751555 -0.1862481 1 0.4751555 -0.2140411 1 0.4751555 -0.2441142 1 0.4751555 -0.2765176 1 0.4751555 -0.3113005 1 0.4751555 -0.3485102 1 0.4751555 -0.388193 1 0.4751555 -0.4303934 1 0.4751555 -0.4751555 1 0.4751555 -0.5225216 1 0.4751555 -0.5725335 1 0.4751555 -0.6252316 1 0.4751555 -0.6806558 1 0.4751555 -0.7388448 1 0.4751555 -0.7998369 1 0.4751555 -0.8636691 1 0.4751555 -0.9303782 1 0.4751555 -1 1 0.4751555 -0 0 0.5225216 -0.002418731 0 0.5225216 -0.005155668 0 0.5225216 -0.009080105 0 0.5225216 -0.01434988 0 0.5225216 -0.02107202 0 0.5225216 -0.02934285 0 0.5225216 -0.03925039 0 0.5225216 -0.05087609 0 0.5225216 -0.06429595 0 0.5225216 -0.07958143 0 0.5225216 -0.0968001 0 0.5225216 -0.1160161 0 0.5225216 -0.1372908 0 0.5225216 -0.1606827 0 0.5225216 -0.1862481 0 0.5225216 -0.2140411 0 0.5225216 -0.2441142 0 0.5225216 -0.2765176 0 0.5225216 -0.3113005 0 0.5225216 -0.3485102 0 0.5225216 -0.388193 0 0.5225216 -0.4303934 0 0.5225216 -0.4751555 0 0.5225216 -0.5225216 0 0.5225216 -0.5725335 0 0.5225216 -0.6252316 0 0.5225216 -0.6806558 0 0.5225216 -0.7388448 0 0.5225216 -0.7998369 0 0.5225216 -0.8636691 0 0.5225216 -0.9303782 0 0.5225216 -1 0 0.5225216 -0 0.002418731 0.5225216 -0.002418731 0.002418731 0.5225216 -0.005155668 0.002418731 0.5225216 -0.009080105 0.002418731 0.5225216 -0.01434988 0.002418731 0.5225216 -0.02107202 0.002418731 0.5225216 -0.02934285 0.002418731 0.5225216 -0.03925039 0.002418731 0.5225216 -0.05087609 0.002418731 0.5225216 -0.06429595 0.002418731 0.5225216 -0.07958143 0.002418731 0.5225216 -0.0968001 0.002418731 0.5225216 -0.1160161 0.002418731 0.5225216 -0.1372908 0.002418731 0.5225216 -0.1606827 0.002418731 0.5225216 -0.1862481 0.002418731 0.5225216 -0.2140411 0.002418731 0.5225216 -0.2441142 0.002418731 0.5225216 -0.2765176 0.002418731 0.5225216 -0.3113005 0.002418731 0.5225216 -0.3485102 0.002418731 0.5225216 -0.388193 0.002418731 0.5225216 -0.4303934 0.002418731 0.5225216 -0.4751555 0.002418731 0.5225216 -0.5225216 0.002418731 0.5225216 -0.5725335 0.002418731 0.5225216 -0.6252316 0.002418731 0.5225216 -0.6806558 0.002418731 0.5225216 -0.7388448 0.002418731 0.5225216 -0.7998369 0.002418731 0.5225216 -0.8636691 0.002418731 0.5225216 -0.9303782 0.002418731 0.5225216 -1 0.002418731 0.5225216 -0 0.005155668 0.5225216 -0.002418731 0.005155668 0.5225216 -0.005155668 0.005155668 0.5225216 -0.009080105 0.005155668 0.5225216 -0.01434988 0.005155668 0.5225216 -0.02107202 0.005155668 0.5225216 -0.02934285 0.005155668 0.5225216 -0.03925039 0.005155668 0.5225216 -0.05087609 0.005155668 0.5225216 -0.06429595 0.005155668 0.5225216 -0.07958143 0.005155668 0.5225216 -0.0968001 0.005155668 0.5225216 -0.1160161 0.005155668 0.5225216 -0.1372908 0.005155668 0.5225216 -0.1606827 0.005155668 0.5225216 -0.1862481 0.005155668 0.5225216 -0.2140411 0.005155668 0.5225216 -0.2441142 0.005155668 0.5225216 -0.2765176 0.005155668 0.5225216 -0.3113005 0.005155668 0.5225216 -0.3485102 0.005155668 0.5225216 -0.388193 0.005155668 0.5225216 -0.4303934 0.005155668 0.5225216 -0.4751555 0.005155668 0.5225216 -0.5225216 0.005155668 0.5225216 -0.5725335 0.005155668 0.5225216 -0.6252316 0.005155668 0.5225216 -0.6806558 0.005155668 0.5225216 -0.7388448 0.005155668 0.5225216 -0.7998369 0.005155668 0.5225216 -0.8636691 0.005155668 0.5225216 -0.9303782 0.005155668 0.5225216 -1 0.005155668 0.5225216 -0 0.009080105 0.5225216 -0.002418731 0.009080105 0.5225216 -0.005155668 0.009080105 0.5225216 -0.009080105 0.009080105 0.5225216 -0.01434988 0.009080105 0.5225216 -0.02107202 0.009080105 0.5225216 -0.02934285 0.009080105 0.5225216 -0.03925039 0.009080105 0.5225216 -0.05087609 0.009080105 0.5225216 -0.06429595 0.009080105 0.5225216 -0.07958143 0.009080105 0.5225216 -0.0968001 0.009080105 0.5225216 -0.1160161 0.009080105 0.5225216 -0.1372908 0.009080105 0.5225216 -0.1606827 0.009080105 0.5225216 -0.1862481 0.009080105 0.5225216 -0.2140411 0.009080105 0.5225216 -0.2441142 0.009080105 0.5225216 -0.2765176 0.009080105 0.5225216 -0.3113005 0.009080105 0.5225216 -0.3485102 0.009080105 0.5225216 -0.388193 0.009080105 0.5225216 -0.4303934 0.009080105 0.5225216 -0.4751555 0.009080105 0.5225216 -0.5225216 0.009080105 0.5225216 -0.5725335 0.009080105 0.5225216 -0.6252316 0.009080105 0.5225216 -0.6806558 0.009080105 0.5225216 -0.7388448 0.009080105 0.5225216 -0.7998369 0.009080105 0.5225216 -0.8636691 0.009080105 0.5225216 -0.9303782 0.009080105 0.5225216 -1 0.009080105 0.5225216 -0 0.01434988 0.5225216 -0.002418731 0.01434988 0.5225216 -0.005155668 0.01434988 0.5225216 -0.009080105 0.01434988 0.5225216 -0.01434988 0.01434988 0.5225216 -0.02107202 0.01434988 0.5225216 -0.02934285 0.01434988 0.5225216 -0.03925039 0.01434988 0.5225216 -0.05087609 0.01434988 0.5225216 -0.06429595 0.01434988 0.5225216 -0.07958143 0.01434988 0.5225216 -0.0968001 0.01434988 0.5225216 -0.1160161 0.01434988 0.5225216 -0.1372908 0.01434988 0.5225216 -0.1606827 0.01434988 0.5225216 -0.1862481 0.01434988 0.5225216 -0.2140411 0.01434988 0.5225216 -0.2441142 0.01434988 0.5225216 -0.2765176 0.01434988 0.5225216 -0.3113005 0.01434988 0.5225216 -0.3485102 0.01434988 0.5225216 -0.388193 0.01434988 0.5225216 -0.4303934 0.01434988 0.5225216 -0.4751555 0.01434988 0.5225216 -0.5225216 0.01434988 0.5225216 -0.5725335 0.01434988 0.5225216 -0.6252316 0.01434988 0.5225216 -0.6806558 0.01434988 0.5225216 -0.7388448 0.01434988 0.5225216 -0.7998369 0.01434988 0.5225216 -0.8636691 0.01434988 0.5225216 -0.9303782 0.01434988 0.5225216 -1 0.01434988 0.5225216 -0 0.02107202 0.5225216 -0.002418731 0.02107202 0.5225216 -0.005155668 0.02107202 0.5225216 -0.009080105 0.02107202 0.5225216 -0.01434988 0.02107202 0.5225216 -0.02107202 0.02107202 0.5225216 -0.02934285 0.02107202 0.5225216 -0.03925039 0.02107202 0.5225216 -0.05087609 0.02107202 0.5225216 -0.06429595 0.02107202 0.5225216 -0.07958143 0.02107202 0.5225216 -0.0968001 0.02107202 0.5225216 -0.1160161 0.02107202 0.5225216 -0.1372908 0.02107202 0.5225216 -0.1606827 0.02107202 0.5225216 -0.1862481 0.02107202 0.5225216 -0.2140411 0.02107202 0.5225216 -0.2441142 0.02107202 0.5225216 -0.2765176 0.02107202 0.5225216 -0.3113005 0.02107202 0.5225216 -0.3485102 0.02107202 0.5225216 -0.388193 0.02107202 0.5225216 -0.4303934 0.02107202 0.5225216 -0.4751555 0.02107202 0.5225216 -0.5225216 0.02107202 0.5225216 -0.5725335 0.02107202 0.5225216 -0.6252316 0.02107202 0.5225216 -0.6806558 0.02107202 0.5225216 -0.7388448 0.02107202 0.5225216 -0.7998369 0.02107202 0.5225216 -0.8636691 0.02107202 0.5225216 -0.9303782 0.02107202 0.5225216 -1 0.02107202 0.5225216 -0 0.02934285 0.5225216 -0.002418731 0.02934285 0.5225216 -0.005155668 0.02934285 0.5225216 -0.009080105 0.02934285 0.5225216 -0.01434988 0.02934285 0.5225216 -0.02107202 0.02934285 0.5225216 -0.02934285 0.02934285 0.5225216 -0.03925039 0.02934285 0.5225216 -0.05087609 0.02934285 0.5225216 -0.06429595 0.02934285 0.5225216 -0.07958143 0.02934285 0.5225216 -0.0968001 0.02934285 0.5225216 -0.1160161 0.02934285 0.5225216 -0.1372908 0.02934285 0.5225216 -0.1606827 0.02934285 0.5225216 -0.1862481 0.02934285 0.5225216 -0.2140411 0.02934285 0.5225216 -0.2441142 0.02934285 0.5225216 -0.2765176 0.02934285 0.5225216 -0.3113005 0.02934285 0.5225216 -0.3485102 0.02934285 0.5225216 -0.388193 0.02934285 0.5225216 -0.4303934 0.02934285 0.5225216 -0.4751555 0.02934285 0.5225216 -0.5225216 0.02934285 0.5225216 -0.5725335 0.02934285 0.5225216 -0.6252316 0.02934285 0.5225216 -0.6806558 0.02934285 0.5225216 -0.7388448 0.02934285 0.5225216 -0.7998369 0.02934285 0.5225216 -0.8636691 0.02934285 0.5225216 -0.9303782 0.02934285 0.5225216 -1 0.02934285 0.5225216 -0 0.03925039 0.5225216 -0.002418731 0.03925039 0.5225216 -0.005155668 0.03925039 0.5225216 -0.009080105 0.03925039 0.5225216 -0.01434988 0.03925039 0.5225216 -0.02107202 0.03925039 0.5225216 -0.02934285 0.03925039 0.5225216 -0.03925039 0.03925039 0.5225216 -0.05087609 0.03925039 0.5225216 -0.06429595 0.03925039 0.5225216 -0.07958143 0.03925039 0.5225216 -0.0968001 0.03925039 0.5225216 -0.1160161 0.03925039 0.5225216 -0.1372908 0.03925039 0.5225216 -0.1606827 0.03925039 0.5225216 -0.1862481 0.03925039 0.5225216 -0.2140411 0.03925039 0.5225216 -0.2441142 0.03925039 0.5225216 -0.2765176 0.03925039 0.5225216 -0.3113005 0.03925039 0.5225216 -0.3485102 0.03925039 0.5225216 -0.388193 0.03925039 0.5225216 -0.4303934 0.03925039 0.5225216 -0.4751555 0.03925039 0.5225216 -0.5225216 0.03925039 0.5225216 -0.5725335 0.03925039 0.5225216 -0.6252316 0.03925039 0.5225216 -0.6806558 0.03925039 0.5225216 -0.7388448 0.03925039 0.5225216 -0.7998369 0.03925039 0.5225216 -0.8636691 0.03925039 0.5225216 -0.9303782 0.03925039 0.5225216 -1 0.03925039 0.5225216 -0 0.05087609 0.5225216 -0.002418731 0.05087609 0.5225216 -0.005155668 0.05087609 0.5225216 -0.009080105 0.05087609 0.5225216 -0.01434988 0.05087609 0.5225216 -0.02107202 0.05087609 0.5225216 -0.02934285 0.05087609 0.5225216 -0.03925039 0.05087609 0.5225216 -0.05087609 0.05087609 0.5225216 -0.06429595 0.05087609 0.5225216 -0.07958143 0.05087609 0.5225216 -0.0968001 0.05087609 0.5225216 -0.1160161 0.05087609 0.5225216 -0.1372908 0.05087609 0.5225216 -0.1606827 0.05087609 0.5225216 -0.1862481 0.05087609 0.5225216 -0.2140411 0.05087609 0.5225216 -0.2441142 0.05087609 0.5225216 -0.2765176 0.05087609 0.5225216 -0.3113005 0.05087609 0.5225216 -0.3485102 0.05087609 0.5225216 -0.388193 0.05087609 0.5225216 -0.4303934 0.05087609 0.5225216 -0.4751555 0.05087609 0.5225216 -0.5225216 0.05087609 0.5225216 -0.5725335 0.05087609 0.5225216 -0.6252316 0.05087609 0.5225216 -0.6806558 0.05087609 0.5225216 -0.7388448 0.05087609 0.5225216 -0.7998369 0.05087609 0.5225216 -0.8636691 0.05087609 0.5225216 -0.9303782 0.05087609 0.5225216 -1 0.05087609 0.5225216 -0 0.06429595 0.5225216 -0.002418731 0.06429595 0.5225216 -0.005155668 0.06429595 0.5225216 -0.009080105 0.06429595 0.5225216 -0.01434988 0.06429595 0.5225216 -0.02107202 0.06429595 0.5225216 -0.02934285 0.06429595 0.5225216 -0.03925039 0.06429595 0.5225216 -0.05087609 0.06429595 0.5225216 -0.06429595 0.06429595 0.5225216 -0.07958143 0.06429595 0.5225216 -0.0968001 0.06429595 0.5225216 -0.1160161 0.06429595 0.5225216 -0.1372908 0.06429595 0.5225216 -0.1606827 0.06429595 0.5225216 -0.1862481 0.06429595 0.5225216 -0.2140411 0.06429595 0.5225216 -0.2441142 0.06429595 0.5225216 -0.2765176 0.06429595 0.5225216 -0.3113005 0.06429595 0.5225216 -0.3485102 0.06429595 0.5225216 -0.388193 0.06429595 0.5225216 -0.4303934 0.06429595 0.5225216 -0.4751555 0.06429595 0.5225216 -0.5225216 0.06429595 0.5225216 -0.5725335 0.06429595 0.5225216 -0.6252316 0.06429595 0.5225216 -0.6806558 0.06429595 0.5225216 -0.7388448 0.06429595 0.5225216 -0.7998369 0.06429595 0.5225216 -0.8636691 0.06429595 0.5225216 -0.9303782 0.06429595 0.5225216 -1 0.06429595 0.5225216 -0 0.07958143 0.5225216 -0.002418731 0.07958143 0.5225216 -0.005155668 0.07958143 0.5225216 -0.009080105 0.07958143 0.5225216 -0.01434988 0.07958143 0.5225216 -0.02107202 0.07958143 0.5225216 -0.02934285 0.07958143 0.5225216 -0.03925039 0.07958143 0.5225216 -0.05087609 0.07958143 0.5225216 -0.06429595 0.07958143 0.5225216 -0.07958143 0.07958143 0.5225216 -0.0968001 0.07958143 0.5225216 -0.1160161 0.07958143 0.5225216 -0.1372908 0.07958143 0.5225216 -0.1606827 0.07958143 0.5225216 -0.1862481 0.07958143 0.5225216 -0.2140411 0.07958143 0.5225216 -0.2441142 0.07958143 0.5225216 -0.2765176 0.07958143 0.5225216 -0.3113005 0.07958143 0.5225216 -0.3485102 0.07958143 0.5225216 -0.388193 0.07958143 0.5225216 -0.4303934 0.07958143 0.5225216 -0.4751555 0.07958143 0.5225216 -0.5225216 0.07958143 0.5225216 -0.5725335 0.07958143 0.5225216 -0.6252316 0.07958143 0.5225216 -0.6806558 0.07958143 0.5225216 -0.7388448 0.07958143 0.5225216 -0.7998369 0.07958143 0.5225216 -0.8636691 0.07958143 0.5225216 -0.9303782 0.07958143 0.5225216 -1 0.07958143 0.5225216 -0 0.0968001 0.5225216 -0.002418731 0.0968001 0.5225216 -0.005155668 0.0968001 0.5225216 -0.009080105 0.0968001 0.5225216 -0.01434988 0.0968001 0.5225216 -0.02107202 0.0968001 0.5225216 -0.02934285 0.0968001 0.5225216 -0.03925039 0.0968001 0.5225216 -0.05087609 0.0968001 0.5225216 -0.06429595 0.0968001 0.5225216 -0.07958143 0.0968001 0.5225216 -0.0968001 0.0968001 0.5225216 -0.1160161 0.0968001 0.5225216 -0.1372908 0.0968001 0.5225216 -0.1606827 0.0968001 0.5225216 -0.1862481 0.0968001 0.5225216 -0.2140411 0.0968001 0.5225216 -0.2441142 0.0968001 0.5225216 -0.2765176 0.0968001 0.5225216 -0.3113005 0.0968001 0.5225216 -0.3485102 0.0968001 0.5225216 -0.388193 0.0968001 0.5225216 -0.4303934 0.0968001 0.5225216 -0.4751555 0.0968001 0.5225216 -0.5225216 0.0968001 0.5225216 -0.5725335 0.0968001 0.5225216 -0.6252316 0.0968001 0.5225216 -0.6806558 0.0968001 0.5225216 -0.7388448 0.0968001 0.5225216 -0.7998369 0.0968001 0.5225216 -0.8636691 0.0968001 0.5225216 -0.9303782 0.0968001 0.5225216 -1 0.0968001 0.5225216 -0 0.1160161 0.5225216 -0.002418731 0.1160161 0.5225216 -0.005155668 0.1160161 0.5225216 -0.009080105 0.1160161 0.5225216 -0.01434988 0.1160161 0.5225216 -0.02107202 0.1160161 0.5225216 -0.02934285 0.1160161 0.5225216 -0.03925039 0.1160161 0.5225216 -0.05087609 0.1160161 0.5225216 -0.06429595 0.1160161 0.5225216 -0.07958143 0.1160161 0.5225216 -0.0968001 0.1160161 0.5225216 -0.1160161 0.1160161 0.5225216 -0.1372908 0.1160161 0.5225216 -0.1606827 0.1160161 0.5225216 -0.1862481 0.1160161 0.5225216 -0.2140411 0.1160161 0.5225216 -0.2441142 0.1160161 0.5225216 -0.2765176 0.1160161 0.5225216 -0.3113005 0.1160161 0.5225216 -0.3485102 0.1160161 0.5225216 -0.388193 0.1160161 0.5225216 -0.4303934 0.1160161 0.5225216 -0.4751555 0.1160161 0.5225216 -0.5225216 0.1160161 0.5225216 -0.5725335 0.1160161 0.5225216 -0.6252316 0.1160161 0.5225216 -0.6806558 0.1160161 0.5225216 -0.7388448 0.1160161 0.5225216 -0.7998369 0.1160161 0.5225216 -0.8636691 0.1160161 0.5225216 -0.9303782 0.1160161 0.5225216 -1 0.1160161 0.5225216 -0 0.1372908 0.5225216 -0.002418731 0.1372908 0.5225216 -0.005155668 0.1372908 0.5225216 -0.009080105 0.1372908 0.5225216 -0.01434988 0.1372908 0.5225216 -0.02107202 0.1372908 0.5225216 -0.02934285 0.1372908 0.5225216 -0.03925039 0.1372908 0.5225216 -0.05087609 0.1372908 0.5225216 -0.06429595 0.1372908 0.5225216 -0.07958143 0.1372908 0.5225216 -0.0968001 0.1372908 0.5225216 -0.1160161 0.1372908 0.5225216 -0.1372908 0.1372908 0.5225216 -0.1606827 0.1372908 0.5225216 -0.1862481 0.1372908 0.5225216 -0.2140411 0.1372908 0.5225216 -0.2441142 0.1372908 0.5225216 -0.2765176 0.1372908 0.5225216 -0.3113005 0.1372908 0.5225216 -0.3485102 0.1372908 0.5225216 -0.388193 0.1372908 0.5225216 -0.4303934 0.1372908 0.5225216 -0.4751555 0.1372908 0.5225216 -0.5225216 0.1372908 0.5225216 -0.5725335 0.1372908 0.5225216 -0.6252316 0.1372908 0.5225216 -0.6806558 0.1372908 0.5225216 -0.7388448 0.1372908 0.5225216 -0.7998369 0.1372908 0.5225216 -0.8636691 0.1372908 0.5225216 -0.9303782 0.1372908 0.5225216 -1 0.1372908 0.5225216 -0 0.1606827 0.5225216 -0.002418731 0.1606827 0.5225216 -0.005155668 0.1606827 0.5225216 -0.009080105 0.1606827 0.5225216 -0.01434988 0.1606827 0.5225216 -0.02107202 0.1606827 0.5225216 -0.02934285 0.1606827 0.5225216 -0.03925039 0.1606827 0.5225216 -0.05087609 0.1606827 0.5225216 -0.06429595 0.1606827 0.5225216 -0.07958143 0.1606827 0.5225216 -0.0968001 0.1606827 0.5225216 -0.1160161 0.1606827 0.5225216 -0.1372908 0.1606827 0.5225216 -0.1606827 0.1606827 0.5225216 -0.1862481 0.1606827 0.5225216 -0.2140411 0.1606827 0.5225216 -0.2441142 0.1606827 0.5225216 -0.2765176 0.1606827 0.5225216 -0.3113005 0.1606827 0.5225216 -0.3485102 0.1606827 0.5225216 -0.388193 0.1606827 0.5225216 -0.4303934 0.1606827 0.5225216 -0.4751555 0.1606827 0.5225216 -0.5225216 0.1606827 0.5225216 -0.5725335 0.1606827 0.5225216 -0.6252316 0.1606827 0.5225216 -0.6806558 0.1606827 0.5225216 -0.7388448 0.1606827 0.5225216 -0.7998369 0.1606827 0.5225216 -0.8636691 0.1606827 0.5225216 -0.9303782 0.1606827 0.5225216 -1 0.1606827 0.5225216 -0 0.1862481 0.5225216 -0.002418731 0.1862481 0.5225216 -0.005155668 0.1862481 0.5225216 -0.009080105 0.1862481 0.5225216 -0.01434988 0.1862481 0.5225216 -0.02107202 0.1862481 0.5225216 -0.02934285 0.1862481 0.5225216 -0.03925039 0.1862481 0.5225216 -0.05087609 0.1862481 0.5225216 -0.06429595 0.1862481 0.5225216 -0.07958143 0.1862481 0.5225216 -0.0968001 0.1862481 0.5225216 -0.1160161 0.1862481 0.5225216 -0.1372908 0.1862481 0.5225216 -0.1606827 0.1862481 0.5225216 -0.1862481 0.1862481 0.5225216 -0.2140411 0.1862481 0.5225216 -0.2441142 0.1862481 0.5225216 -0.2765176 0.1862481 0.5225216 -0.3113005 0.1862481 0.5225216 -0.3485102 0.1862481 0.5225216 -0.388193 0.1862481 0.5225216 -0.4303934 0.1862481 0.5225216 -0.4751555 0.1862481 0.5225216 -0.5225216 0.1862481 0.5225216 -0.5725335 0.1862481 0.5225216 -0.6252316 0.1862481 0.5225216 -0.6806558 0.1862481 0.5225216 -0.7388448 0.1862481 0.5225216 -0.7998369 0.1862481 0.5225216 -0.8636691 0.1862481 0.5225216 -0.9303782 0.1862481 0.5225216 -1 0.1862481 0.5225216 -0 0.2140411 0.5225216 -0.002418731 0.2140411 0.5225216 -0.005155668 0.2140411 0.5225216 -0.009080105 0.2140411 0.5225216 -0.01434988 0.2140411 0.5225216 -0.02107202 0.2140411 0.5225216 -0.02934285 0.2140411 0.5225216 -0.03925039 0.2140411 0.5225216 -0.05087609 0.2140411 0.5225216 -0.06429595 0.2140411 0.5225216 -0.07958143 0.2140411 0.5225216 -0.0968001 0.2140411 0.5225216 -0.1160161 0.2140411 0.5225216 -0.1372908 0.2140411 0.5225216 -0.1606827 0.2140411 0.5225216 -0.1862481 0.2140411 0.5225216 -0.2140411 0.2140411 0.5225216 -0.2441142 0.2140411 0.5225216 -0.2765176 0.2140411 0.5225216 -0.3113005 0.2140411 0.5225216 -0.3485102 0.2140411 0.5225216 -0.388193 0.2140411 0.5225216 -0.4303934 0.2140411 0.5225216 -0.4751555 0.2140411 0.5225216 -0.5225216 0.2140411 0.5225216 -0.5725335 0.2140411 0.5225216 -0.6252316 0.2140411 0.5225216 -0.6806558 0.2140411 0.5225216 -0.7388448 0.2140411 0.5225216 -0.7998369 0.2140411 0.5225216 -0.8636691 0.2140411 0.5225216 -0.9303782 0.2140411 0.5225216 -1 0.2140411 0.5225216 -0 0.2441142 0.5225216 -0.002418731 0.2441142 0.5225216 -0.005155668 0.2441142 0.5225216 -0.009080105 0.2441142 0.5225216 -0.01434988 0.2441142 0.5225216 -0.02107202 0.2441142 0.5225216 -0.02934285 0.2441142 0.5225216 -0.03925039 0.2441142 0.5225216 -0.05087609 0.2441142 0.5225216 -0.06429595 0.2441142 0.5225216 -0.07958143 0.2441142 0.5225216 -0.0968001 0.2441142 0.5225216 -0.1160161 0.2441142 0.5225216 -0.1372908 0.2441142 0.5225216 -0.1606827 0.2441142 0.5225216 -0.1862481 0.2441142 0.5225216 -0.2140411 0.2441142 0.5225216 -0.2441142 0.2441142 0.5225216 -0.2765176 0.2441142 0.5225216 -0.3113005 0.2441142 0.5225216 -0.3485102 0.2441142 0.5225216 -0.388193 0.2441142 0.5225216 -0.4303934 0.2441142 0.5225216 -0.4751555 0.2441142 0.5225216 -0.5225216 0.2441142 0.5225216 -0.5725335 0.2441142 0.5225216 -0.6252316 0.2441142 0.5225216 -0.6806558 0.2441142 0.5225216 -0.7388448 0.2441142 0.5225216 -0.7998369 0.2441142 0.5225216 -0.8636691 0.2441142 0.5225216 -0.9303782 0.2441142 0.5225216 -1 0.2441142 0.5225216 -0 0.2765176 0.5225216 -0.002418731 0.2765176 0.5225216 -0.005155668 0.2765176 0.5225216 -0.009080105 0.2765176 0.5225216 -0.01434988 0.2765176 0.5225216 -0.02107202 0.2765176 0.5225216 -0.02934285 0.2765176 0.5225216 -0.03925039 0.2765176 0.5225216 -0.05087609 0.2765176 0.5225216 -0.06429595 0.2765176 0.5225216 -0.07958143 0.2765176 0.5225216 -0.0968001 0.2765176 0.5225216 -0.1160161 0.2765176 0.5225216 -0.1372908 0.2765176 0.5225216 -0.1606827 0.2765176 0.5225216 -0.1862481 0.2765176 0.5225216 -0.2140411 0.2765176 0.5225216 -0.2441142 0.2765176 0.5225216 -0.2765176 0.2765176 0.5225216 -0.3113005 0.2765176 0.5225216 -0.3485102 0.2765176 0.5225216 -0.388193 0.2765176 0.5225216 -0.4303934 0.2765176 0.5225216 -0.4751555 0.2765176 0.5225216 -0.5225216 0.2765176 0.5225216 -0.5725335 0.2765176 0.5225216 -0.6252316 0.2765176 0.5225216 -0.6806558 0.2765176 0.5225216 -0.7388448 0.2765176 0.5225216 -0.7998369 0.2765176 0.5225216 -0.8636691 0.2765176 0.5225216 -0.9303782 0.2765176 0.5225216 -1 0.2765176 0.5225216 -0 0.3113005 0.5225216 -0.002418731 0.3113005 0.5225216 -0.005155668 0.3113005 0.5225216 -0.009080105 0.3113005 0.5225216 -0.01434988 0.3113005 0.5225216 -0.02107202 0.3113005 0.5225216 -0.02934285 0.3113005 0.5225216 -0.03925039 0.3113005 0.5225216 -0.05087609 0.3113005 0.5225216 -0.06429595 0.3113005 0.5225216 -0.07958143 0.3113005 0.5225216 -0.0968001 0.3113005 0.5225216 -0.1160161 0.3113005 0.5225216 -0.1372908 0.3113005 0.5225216 -0.1606827 0.3113005 0.5225216 -0.1862481 0.3113005 0.5225216 -0.2140411 0.3113005 0.5225216 -0.2441142 0.3113005 0.5225216 -0.2765176 0.3113005 0.5225216 -0.3113005 0.3113005 0.5225216 -0.3485102 0.3113005 0.5225216 -0.388193 0.3113005 0.5225216 -0.4303934 0.3113005 0.5225216 -0.4751555 0.3113005 0.5225216 -0.5225216 0.3113005 0.5225216 -0.5725335 0.3113005 0.5225216 -0.6252316 0.3113005 0.5225216 -0.6806558 0.3113005 0.5225216 -0.7388448 0.3113005 0.5225216 -0.7998369 0.3113005 0.5225216 -0.8636691 0.3113005 0.5225216 -0.9303782 0.3113005 0.5225216 -1 0.3113005 0.5225216 -0 0.3485102 0.5225216 -0.002418731 0.3485102 0.5225216 -0.005155668 0.3485102 0.5225216 -0.009080105 0.3485102 0.5225216 -0.01434988 0.3485102 0.5225216 -0.02107202 0.3485102 0.5225216 -0.02934285 0.3485102 0.5225216 -0.03925039 0.3485102 0.5225216 -0.05087609 0.3485102 0.5225216 -0.06429595 0.3485102 0.5225216 -0.07958143 0.3485102 0.5225216 -0.0968001 0.3485102 0.5225216 -0.1160161 0.3485102 0.5225216 -0.1372908 0.3485102 0.5225216 -0.1606827 0.3485102 0.5225216 -0.1862481 0.3485102 0.5225216 -0.2140411 0.3485102 0.5225216 -0.2441142 0.3485102 0.5225216 -0.2765176 0.3485102 0.5225216 -0.3113005 0.3485102 0.5225216 -0.3485102 0.3485102 0.5225216 -0.388193 0.3485102 0.5225216 -0.4303934 0.3485102 0.5225216 -0.4751555 0.3485102 0.5225216 -0.5225216 0.3485102 0.5225216 -0.5725335 0.3485102 0.5225216 -0.6252316 0.3485102 0.5225216 -0.6806558 0.3485102 0.5225216 -0.7388448 0.3485102 0.5225216 -0.7998369 0.3485102 0.5225216 -0.8636691 0.3485102 0.5225216 -0.9303782 0.3485102 0.5225216 -1 0.3485102 0.5225216 -0 0.388193 0.5225216 -0.002418731 0.388193 0.5225216 -0.005155668 0.388193 0.5225216 -0.009080105 0.388193 0.5225216 -0.01434988 0.388193 0.5225216 -0.02107202 0.388193 0.5225216 -0.02934285 0.388193 0.5225216 -0.03925039 0.388193 0.5225216 -0.05087609 0.388193 0.5225216 -0.06429595 0.388193 0.5225216 -0.07958143 0.388193 0.5225216 -0.0968001 0.388193 0.5225216 -0.1160161 0.388193 0.5225216 -0.1372908 0.388193 0.5225216 -0.1606827 0.388193 0.5225216 -0.1862481 0.388193 0.5225216 -0.2140411 0.388193 0.5225216 -0.2441142 0.388193 0.5225216 -0.2765176 0.388193 0.5225216 -0.3113005 0.388193 0.5225216 -0.3485102 0.388193 0.5225216 -0.388193 0.388193 0.5225216 -0.4303934 0.388193 0.5225216 -0.4751555 0.388193 0.5225216 -0.5225216 0.388193 0.5225216 -0.5725335 0.388193 0.5225216 -0.6252316 0.388193 0.5225216 -0.6806558 0.388193 0.5225216 -0.7388448 0.388193 0.5225216 -0.7998369 0.388193 0.5225216 -0.8636691 0.388193 0.5225216 -0.9303782 0.388193 0.5225216 -1 0.388193 0.5225216 -0 0.4303934 0.5225216 -0.002418731 0.4303934 0.5225216 -0.005155668 0.4303934 0.5225216 -0.009080105 0.4303934 0.5225216 -0.01434988 0.4303934 0.5225216 -0.02107202 0.4303934 0.5225216 -0.02934285 0.4303934 0.5225216 -0.03925039 0.4303934 0.5225216 -0.05087609 0.4303934 0.5225216 -0.06429595 0.4303934 0.5225216 -0.07958143 0.4303934 0.5225216 -0.0968001 0.4303934 0.5225216 -0.1160161 0.4303934 0.5225216 -0.1372908 0.4303934 0.5225216 -0.1606827 0.4303934 0.5225216 -0.1862481 0.4303934 0.5225216 -0.2140411 0.4303934 0.5225216 -0.2441142 0.4303934 0.5225216 -0.2765176 0.4303934 0.5225216 -0.3113005 0.4303934 0.5225216 -0.3485102 0.4303934 0.5225216 -0.388193 0.4303934 0.5225216 -0.4303934 0.4303934 0.5225216 -0.4751555 0.4303934 0.5225216 -0.5225216 0.4303934 0.5225216 -0.5725335 0.4303934 0.5225216 -0.6252316 0.4303934 0.5225216 -0.6806558 0.4303934 0.5225216 -0.7388448 0.4303934 0.5225216 -0.7998369 0.4303934 0.5225216 -0.8636691 0.4303934 0.5225216 -0.9303782 0.4303934 0.5225216 -1 0.4303934 0.5225216 -0 0.4751555 0.5225216 -0.002418731 0.4751555 0.5225216 -0.005155668 0.4751555 0.5225216 -0.009080105 0.4751555 0.5225216 -0.01434988 0.4751555 0.5225216 -0.02107202 0.4751555 0.5225216 -0.02934285 0.4751555 0.5225216 -0.03925039 0.4751555 0.5225216 -0.05087609 0.4751555 0.5225216 -0.06429595 0.4751555 0.5225216 -0.07958143 0.4751555 0.5225216 -0.0968001 0.4751555 0.5225216 -0.1160161 0.4751555 0.5225216 -0.1372908 0.4751555 0.5225216 -0.1606827 0.4751555 0.5225216 -0.1862481 0.4751555 0.5225216 -0.2140411 0.4751555 0.5225216 -0.2441142 0.4751555 0.5225216 -0.2765176 0.4751555 0.5225216 -0.3113005 0.4751555 0.5225216 -0.3485102 0.4751555 0.5225216 -0.388193 0.4751555 0.5225216 -0.4303934 0.4751555 0.5225216 -0.4751555 0.4751555 0.5225216 -0.5225216 0.4751555 0.5225216 -0.5725335 0.4751555 0.5225216 -0.6252316 0.4751555 0.5225216 -0.6806558 0.4751555 0.5225216 -0.7388448 0.4751555 0.5225216 -0.7998369 0.4751555 0.5225216 -0.8636691 0.4751555 0.5225216 -0.9303782 0.4751555 0.5225216 -1 0.4751555 0.5225216 -0 0.5225216 0.5225216 -0.002418731 0.5225216 0.5225216 -0.005155668 0.5225216 0.5225216 -0.009080105 0.5225216 0.5225216 -0.01434988 0.5225216 0.5225216 -0.02107202 0.5225216 0.5225216 -0.02934285 0.5225216 0.5225216 -0.03925039 0.5225216 0.5225216 -0.05087609 0.5225216 0.5225216 -0.06429595 0.5225216 0.5225216 -0.07958143 0.5225216 0.5225216 -0.0968001 0.5225216 0.5225216 -0.1160161 0.5225216 0.5225216 -0.1372908 0.5225216 0.5225216 -0.1606827 0.5225216 0.5225216 -0.1862481 0.5225216 0.5225216 -0.2140411 0.5225216 0.5225216 -0.2441142 0.5225216 0.5225216 -0.2765176 0.5225216 0.5225216 -0.3113005 0.5225216 0.5225216 -0.3485102 0.5225216 0.5225216 -0.388193 0.5225216 0.5225216 -0.4303934 0.5225216 0.5225216 -0.4751555 0.5225216 0.5225216 -0.5225216 0.5225216 0.5225216 -0.5725335 0.5225216 0.5225216 -0.6252316 0.5225216 0.5225216 -0.6806558 0.5225216 0.5225216 -0.7388448 0.5225216 0.5225216 -0.7998369 0.5225216 0.5225216 -0.8636691 0.5225216 0.5225216 -0.9303782 0.5225216 0.5225216 -1 0.5225216 0.5225216 -0 0.5725335 0.5225216 -0.002418731 0.5725335 0.5225216 -0.005155668 0.5725335 0.5225216 -0.009080105 0.5725335 0.5225216 -0.01434988 0.5725335 0.5225216 -0.02107202 0.5725335 0.5225216 -0.02934285 0.5725335 0.5225216 -0.03925039 0.5725335 0.5225216 -0.05087609 0.5725335 0.5225216 -0.06429595 0.5725335 0.5225216 -0.07958143 0.5725335 0.5225216 -0.0968001 0.5725335 0.5225216 -0.1160161 0.5725335 0.5225216 -0.1372908 0.5725335 0.5225216 -0.1606827 0.5725335 0.5225216 -0.1862481 0.5725335 0.5225216 -0.2140411 0.5725335 0.5225216 -0.2441142 0.5725335 0.5225216 -0.2765176 0.5725335 0.5225216 -0.3113005 0.5725335 0.5225216 -0.3485102 0.5725335 0.5225216 -0.388193 0.5725335 0.5225216 -0.4303934 0.5725335 0.5225216 -0.4751555 0.5725335 0.5225216 -0.5225216 0.5725335 0.5225216 -0.5725335 0.5725335 0.5225216 -0.6252316 0.5725335 0.5225216 -0.6806558 0.5725335 0.5225216 -0.7388448 0.5725335 0.5225216 -0.7998369 0.5725335 0.5225216 -0.8636691 0.5725335 0.5225216 -0.9303782 0.5725335 0.5225216 -1 0.5725335 0.5225216 -0 0.6252316 0.5225216 -0.002418731 0.6252316 0.5225216 -0.005155668 0.6252316 0.5225216 -0.009080105 0.6252316 0.5225216 -0.01434988 0.6252316 0.5225216 -0.02107202 0.6252316 0.5225216 -0.02934285 0.6252316 0.5225216 -0.03925039 0.6252316 0.5225216 -0.05087609 0.6252316 0.5225216 -0.06429595 0.6252316 0.5225216 -0.07958143 0.6252316 0.5225216 -0.0968001 0.6252316 0.5225216 -0.1160161 0.6252316 0.5225216 -0.1372908 0.6252316 0.5225216 -0.1606827 0.6252316 0.5225216 -0.1862481 0.6252316 0.5225216 -0.2140411 0.6252316 0.5225216 -0.2441142 0.6252316 0.5225216 -0.2765176 0.6252316 0.5225216 -0.3113005 0.6252316 0.5225216 -0.3485102 0.6252316 0.5225216 -0.388193 0.6252316 0.5225216 -0.4303934 0.6252316 0.5225216 -0.4751555 0.6252316 0.5225216 -0.5225216 0.6252316 0.5225216 -0.5725335 0.6252316 0.5225216 -0.6252316 0.6252316 0.5225216 -0.6806558 0.6252316 0.5225216 -0.7388448 0.6252316 0.5225216 -0.7998369 0.6252316 0.5225216 -0.8636691 0.6252316 0.5225216 -0.9303782 0.6252316 0.5225216 -1 0.6252316 0.5225216 -0 0.6806558 0.5225216 -0.002418731 0.6806558 0.5225216 -0.005155668 0.6806558 0.5225216 -0.009080105 0.6806558 0.5225216 -0.01434988 0.6806558 0.5225216 -0.02107202 0.6806558 0.5225216 -0.02934285 0.6806558 0.5225216 -0.03925039 0.6806558 0.5225216 -0.05087609 0.6806558 0.5225216 -0.06429595 0.6806558 0.5225216 -0.07958143 0.6806558 0.5225216 -0.0968001 0.6806558 0.5225216 -0.1160161 0.6806558 0.5225216 -0.1372908 0.6806558 0.5225216 -0.1606827 0.6806558 0.5225216 -0.1862481 0.6806558 0.5225216 -0.2140411 0.6806558 0.5225216 -0.2441142 0.6806558 0.5225216 -0.2765176 0.6806558 0.5225216 -0.3113005 0.6806558 0.5225216 -0.3485102 0.6806558 0.5225216 -0.388193 0.6806558 0.5225216 -0.4303934 0.6806558 0.5225216 -0.4751555 0.6806558 0.5225216 -0.5225216 0.6806558 0.5225216 -0.5725335 0.6806558 0.5225216 -0.6252316 0.6806558 0.5225216 -0.6806558 0.6806558 0.5225216 -0.7388448 0.6806558 0.5225216 -0.7998369 0.6806558 0.5225216 -0.8636691 0.6806558 0.5225216 -0.9303782 0.6806558 0.5225216 -1 0.6806558 0.5225216 -0 0.7388448 0.5225216 -0.002418731 0.7388448 0.5225216 -0.005155668 0.7388448 0.5225216 -0.009080105 0.7388448 0.5225216 -0.01434988 0.7388448 0.5225216 -0.02107202 0.7388448 0.5225216 -0.02934285 0.7388448 0.5225216 -0.03925039 0.7388448 0.5225216 -0.05087609 0.7388448 0.5225216 -0.06429595 0.7388448 0.5225216 -0.07958143 0.7388448 0.5225216 -0.0968001 0.7388448 0.5225216 -0.1160161 0.7388448 0.5225216 -0.1372908 0.7388448 0.5225216 -0.1606827 0.7388448 0.5225216 -0.1862481 0.7388448 0.5225216 -0.2140411 0.7388448 0.5225216 -0.2441142 0.7388448 0.5225216 -0.2765176 0.7388448 0.5225216 -0.3113005 0.7388448 0.5225216 -0.3485102 0.7388448 0.5225216 -0.388193 0.7388448 0.5225216 -0.4303934 0.7388448 0.5225216 -0.4751555 0.7388448 0.5225216 -0.5225216 0.7388448 0.5225216 -0.5725335 0.7388448 0.5225216 -0.6252316 0.7388448 0.5225216 -0.6806558 0.7388448 0.5225216 -0.7388448 0.7388448 0.5225216 -0.7998369 0.7388448 0.5225216 -0.8636691 0.7388448 0.5225216 -0.9303782 0.7388448 0.5225216 -1 0.7388448 0.5225216 -0 0.7998369 0.5225216 -0.002418731 0.7998369 0.5225216 -0.005155668 0.7998369 0.5225216 -0.009080105 0.7998369 0.5225216 -0.01434988 0.7998369 0.5225216 -0.02107202 0.7998369 0.5225216 -0.02934285 0.7998369 0.5225216 -0.03925039 0.7998369 0.5225216 -0.05087609 0.7998369 0.5225216 -0.06429595 0.7998369 0.5225216 -0.07958143 0.7998369 0.5225216 -0.0968001 0.7998369 0.5225216 -0.1160161 0.7998369 0.5225216 -0.1372908 0.7998369 0.5225216 -0.1606827 0.7998369 0.5225216 -0.1862481 0.7998369 0.5225216 -0.2140411 0.7998369 0.5225216 -0.2441142 0.7998369 0.5225216 -0.2765176 0.7998369 0.5225216 -0.3113005 0.7998369 0.5225216 -0.3485102 0.7998369 0.5225216 -0.388193 0.7998369 0.5225216 -0.4303934 0.7998369 0.5225216 -0.4751555 0.7998369 0.5225216 -0.5225216 0.7998369 0.5225216 -0.5725335 0.7998369 0.5225216 -0.6252316 0.7998369 0.5225216 -0.6806558 0.7998369 0.5225216 -0.7388448 0.7998369 0.5225216 -0.7998369 0.7998369 0.5225216 -0.8636691 0.7998369 0.5225216 -0.9303782 0.7998369 0.5225216 -1 0.7998369 0.5225216 -0 0.8636691 0.5225216 -0.002418731 0.8636691 0.5225216 -0.005155668 0.8636691 0.5225216 -0.009080105 0.8636691 0.5225216 -0.01434988 0.8636691 0.5225216 -0.02107202 0.8636691 0.5225216 -0.02934285 0.8636691 0.5225216 -0.03925039 0.8636691 0.5225216 -0.05087609 0.8636691 0.5225216 -0.06429595 0.8636691 0.5225216 -0.07958143 0.8636691 0.5225216 -0.0968001 0.8636691 0.5225216 -0.1160161 0.8636691 0.5225216 -0.1372908 0.8636691 0.5225216 -0.1606827 0.8636691 0.5225216 -0.1862481 0.8636691 0.5225216 -0.2140411 0.8636691 0.5225216 -0.2441142 0.8636691 0.5225216 -0.2765176 0.8636691 0.5225216 -0.3113005 0.8636691 0.5225216 -0.3485102 0.8636691 0.5225216 -0.388193 0.8636691 0.5225216 -0.4303934 0.8636691 0.5225216 -0.4751555 0.8636691 0.5225216 -0.5225216 0.8636691 0.5225216 -0.5725335 0.8636691 0.5225216 -0.6252316 0.8636691 0.5225216 -0.6806558 0.8636691 0.5225216 -0.7388448 0.8636691 0.5225216 -0.7998369 0.8636691 0.5225216 -0.8636691 0.8636691 0.5225216 -0.9303782 0.8636691 0.5225216 -1 0.8636691 0.5225216 -0 0.9303782 0.5225216 -0.002418731 0.9303782 0.5225216 -0.005155668 0.9303782 0.5225216 -0.009080105 0.9303782 0.5225216 -0.01434988 0.9303782 0.5225216 -0.02107202 0.9303782 0.5225216 -0.02934285 0.9303782 0.5225216 -0.03925039 0.9303782 0.5225216 -0.05087609 0.9303782 0.5225216 -0.06429595 0.9303782 0.5225216 -0.07958143 0.9303782 0.5225216 -0.0968001 0.9303782 0.5225216 -0.1160161 0.9303782 0.5225216 -0.1372908 0.9303782 0.5225216 -0.1606827 0.9303782 0.5225216 -0.1862481 0.9303782 0.5225216 -0.2140411 0.9303782 0.5225216 -0.2441142 0.9303782 0.5225216 -0.2765176 0.9303782 0.5225216 -0.3113005 0.9303782 0.5225216 -0.3485102 0.9303782 0.5225216 -0.388193 0.9303782 0.5225216 -0.4303934 0.9303782 0.5225216 -0.4751555 0.9303782 0.5225216 -0.5225216 0.9303782 0.5225216 -0.5725335 0.9303782 0.5225216 -0.6252316 0.9303782 0.5225216 -0.6806558 0.9303782 0.5225216 -0.7388448 0.9303782 0.5225216 -0.7998369 0.9303782 0.5225216 -0.8636691 0.9303782 0.5225216 -0.9303782 0.9303782 0.5225216 -1 0.9303782 0.5225216 -0 1 0.5225216 -0.002418731 1 0.5225216 -0.005155668 1 0.5225216 -0.009080105 1 0.5225216 -0.01434988 1 0.5225216 -0.02107202 1 0.5225216 -0.02934285 1 0.5225216 -0.03925039 1 0.5225216 -0.05087609 1 0.5225216 -0.06429595 1 0.5225216 -0.07958143 1 0.5225216 -0.0968001 1 0.5225216 -0.1160161 1 0.5225216 -0.1372908 1 0.5225216 -0.1606827 1 0.5225216 -0.1862481 1 0.5225216 -0.2140411 1 0.5225216 -0.2441142 1 0.5225216 -0.2765176 1 0.5225216 -0.3113005 1 0.5225216 -0.3485102 1 0.5225216 -0.388193 1 0.5225216 -0.4303934 1 0.5225216 -0.4751555 1 0.5225216 -0.5225216 1 0.5225216 -0.5725335 1 0.5225216 -0.6252316 1 0.5225216 -0.6806558 1 0.5225216 -0.7388448 1 0.5225216 -0.7998369 1 0.5225216 -0.8636691 1 0.5225216 -0.9303782 1 0.5225216 -1 1 0.5225216 -0 0 0.5725335 -0.002418731 0 0.5725335 -0.005155668 0 0.5725335 -0.009080105 0 0.5725335 -0.01434988 0 0.5725335 -0.02107202 0 0.5725335 -0.02934285 0 0.5725335 -0.03925039 0 0.5725335 -0.05087609 0 0.5725335 -0.06429595 0 0.5725335 -0.07958143 0 0.5725335 -0.0968001 0 0.5725335 -0.1160161 0 0.5725335 -0.1372908 0 0.5725335 -0.1606827 0 0.5725335 -0.1862481 0 0.5725335 -0.2140411 0 0.5725335 -0.2441142 0 0.5725335 -0.2765176 0 0.5725335 -0.3113005 0 0.5725335 -0.3485102 0 0.5725335 -0.388193 0 0.5725335 -0.4303934 0 0.5725335 -0.4751555 0 0.5725335 -0.5225216 0 0.5725335 -0.5725335 0 0.5725335 -0.6252316 0 0.5725335 -0.6806558 0 0.5725335 -0.7388448 0 0.5725335 -0.7998369 0 0.5725335 -0.8636691 0 0.5725335 -0.9303782 0 0.5725335 -1 0 0.5725335 -0 0.002418731 0.5725335 -0.002418731 0.002418731 0.5725335 -0.005155668 0.002418731 0.5725335 -0.009080105 0.002418731 0.5725335 -0.01434988 0.002418731 0.5725335 -0.02107202 0.002418731 0.5725335 -0.02934285 0.002418731 0.5725335 -0.03925039 0.002418731 0.5725335 -0.05087609 0.002418731 0.5725335 -0.06429595 0.002418731 0.5725335 -0.07958143 0.002418731 0.5725335 -0.0968001 0.002418731 0.5725335 -0.1160161 0.002418731 0.5725335 -0.1372908 0.002418731 0.5725335 -0.1606827 0.002418731 0.5725335 -0.1862481 0.002418731 0.5725335 -0.2140411 0.002418731 0.5725335 -0.2441142 0.002418731 0.5725335 -0.2765176 0.002418731 0.5725335 -0.3113005 0.002418731 0.5725335 -0.3485102 0.002418731 0.5725335 -0.388193 0.002418731 0.5725335 -0.4303934 0.002418731 0.5725335 -0.4751555 0.002418731 0.5725335 -0.5225216 0.002418731 0.5725335 -0.5725335 0.002418731 0.5725335 -0.6252316 0.002418731 0.5725335 -0.6806558 0.002418731 0.5725335 -0.7388448 0.002418731 0.5725335 -0.7998369 0.002418731 0.5725335 -0.8636691 0.002418731 0.5725335 -0.9303782 0.002418731 0.5725335 -1 0.002418731 0.5725335 -0 0.005155668 0.5725335 -0.002418731 0.005155668 0.5725335 -0.005155668 0.005155668 0.5725335 -0.009080105 0.005155668 0.5725335 -0.01434988 0.005155668 0.5725335 -0.02107202 0.005155668 0.5725335 -0.02934285 0.005155668 0.5725335 -0.03925039 0.005155668 0.5725335 -0.05087609 0.005155668 0.5725335 -0.06429595 0.005155668 0.5725335 -0.07958143 0.005155668 0.5725335 -0.0968001 0.005155668 0.5725335 -0.1160161 0.005155668 0.5725335 -0.1372908 0.005155668 0.5725335 -0.1606827 0.005155668 0.5725335 -0.1862481 0.005155668 0.5725335 -0.2140411 0.005155668 0.5725335 -0.2441142 0.005155668 0.5725335 -0.2765176 0.005155668 0.5725335 -0.3113005 0.005155668 0.5725335 -0.3485102 0.005155668 0.5725335 -0.388193 0.005155668 0.5725335 -0.4303934 0.005155668 0.5725335 -0.4751555 0.005155668 0.5725335 -0.5225216 0.005155668 0.5725335 -0.5725335 0.005155668 0.5725335 -0.6252316 0.005155668 0.5725335 -0.6806558 0.005155668 0.5725335 -0.7388448 0.005155668 0.5725335 -0.7998369 0.005155668 0.5725335 -0.8636691 0.005155668 0.5725335 -0.9303782 0.005155668 0.5725335 -1 0.005155668 0.5725335 -0 0.009080105 0.5725335 -0.002418731 0.009080105 0.5725335 -0.005155668 0.009080105 0.5725335 -0.009080105 0.009080105 0.5725335 -0.01434988 0.009080105 0.5725335 -0.02107202 0.009080105 0.5725335 -0.02934285 0.009080105 0.5725335 -0.03925039 0.009080105 0.5725335 -0.05087609 0.009080105 0.5725335 -0.06429595 0.009080105 0.5725335 -0.07958143 0.009080105 0.5725335 -0.0968001 0.009080105 0.5725335 -0.1160161 0.009080105 0.5725335 -0.1372908 0.009080105 0.5725335 -0.1606827 0.009080105 0.5725335 -0.1862481 0.009080105 0.5725335 -0.2140411 0.009080105 0.5725335 -0.2441142 0.009080105 0.5725335 -0.2765176 0.009080105 0.5725335 -0.3113005 0.009080105 0.5725335 -0.3485102 0.009080105 0.5725335 -0.388193 0.009080105 0.5725335 -0.4303934 0.009080105 0.5725335 -0.4751555 0.009080105 0.5725335 -0.5225216 0.009080105 0.5725335 -0.5725335 0.009080105 0.5725335 -0.6252316 0.009080105 0.5725335 -0.6806558 0.009080105 0.5725335 -0.7388448 0.009080105 0.5725335 -0.7998369 0.009080105 0.5725335 -0.8636691 0.009080105 0.5725335 -0.9303782 0.009080105 0.5725335 -1 0.009080105 0.5725335 -0 0.01434988 0.5725335 -0.002418731 0.01434988 0.5725335 -0.005155668 0.01434988 0.5725335 -0.009080105 0.01434988 0.5725335 -0.01434988 0.01434988 0.5725335 -0.02107202 0.01434988 0.5725335 -0.02934285 0.01434988 0.5725335 -0.03925039 0.01434988 0.5725335 -0.05087609 0.01434988 0.5725335 -0.06429595 0.01434988 0.5725335 -0.07958143 0.01434988 0.5725335 -0.0968001 0.01434988 0.5725335 -0.1160161 0.01434988 0.5725335 -0.1372908 0.01434988 0.5725335 -0.1606827 0.01434988 0.5725335 -0.1862481 0.01434988 0.5725335 -0.2140411 0.01434988 0.5725335 -0.2441142 0.01434988 0.5725335 -0.2765176 0.01434988 0.5725335 -0.3113005 0.01434988 0.5725335 -0.3485102 0.01434988 0.5725335 -0.388193 0.01434988 0.5725335 -0.4303934 0.01434988 0.5725335 -0.4751555 0.01434988 0.5725335 -0.5225216 0.01434988 0.5725335 -0.5725335 0.01434988 0.5725335 -0.6252316 0.01434988 0.5725335 -0.6806558 0.01434988 0.5725335 -0.7388448 0.01434988 0.5725335 -0.7998369 0.01434988 0.5725335 -0.8636691 0.01434988 0.5725335 -0.9303782 0.01434988 0.5725335 -1 0.01434988 0.5725335 -0 0.02107202 0.5725335 -0.002418731 0.02107202 0.5725335 -0.005155668 0.02107202 0.5725335 -0.009080105 0.02107202 0.5725335 -0.01434988 0.02107202 0.5725335 -0.02107202 0.02107202 0.5725335 -0.02934285 0.02107202 0.5725335 -0.03925039 0.02107202 0.5725335 -0.05087609 0.02107202 0.5725335 -0.06429595 0.02107202 0.5725335 -0.07958143 0.02107202 0.5725335 -0.0968001 0.02107202 0.5725335 -0.1160161 0.02107202 0.5725335 -0.1372908 0.02107202 0.5725335 -0.1606827 0.02107202 0.5725335 -0.1862481 0.02107202 0.5725335 -0.2140411 0.02107202 0.5725335 -0.2441142 0.02107202 0.5725335 -0.2765176 0.02107202 0.5725335 -0.3113005 0.02107202 0.5725335 -0.3485102 0.02107202 0.5725335 -0.388193 0.02107202 0.5725335 -0.4303934 0.02107202 0.5725335 -0.4751555 0.02107202 0.5725335 -0.5225216 0.02107202 0.5725335 -0.5725335 0.02107202 0.5725335 -0.6252316 0.02107202 0.5725335 -0.6806558 0.02107202 0.5725335 -0.7388448 0.02107202 0.5725335 -0.7998369 0.02107202 0.5725335 -0.8636691 0.02107202 0.5725335 -0.9303782 0.02107202 0.5725335 -1 0.02107202 0.5725335 -0 0.02934285 0.5725335 -0.002418731 0.02934285 0.5725335 -0.005155668 0.02934285 0.5725335 -0.009080105 0.02934285 0.5725335 -0.01434988 0.02934285 0.5725335 -0.02107202 0.02934285 0.5725335 -0.02934285 0.02934285 0.5725335 -0.03925039 0.02934285 0.5725335 -0.05087609 0.02934285 0.5725335 -0.06429595 0.02934285 0.5725335 -0.07958143 0.02934285 0.5725335 -0.0968001 0.02934285 0.5725335 -0.1160161 0.02934285 0.5725335 -0.1372908 0.02934285 0.5725335 -0.1606827 0.02934285 0.5725335 -0.1862481 0.02934285 0.5725335 -0.2140411 0.02934285 0.5725335 -0.2441142 0.02934285 0.5725335 -0.2765176 0.02934285 0.5725335 -0.3113005 0.02934285 0.5725335 -0.3485102 0.02934285 0.5725335 -0.388193 0.02934285 0.5725335 -0.4303934 0.02934285 0.5725335 -0.4751555 0.02934285 0.5725335 -0.5225216 0.02934285 0.5725335 -0.5725335 0.02934285 0.5725335 -0.6252316 0.02934285 0.5725335 -0.6806558 0.02934285 0.5725335 -0.7388448 0.02934285 0.5725335 -0.7998369 0.02934285 0.5725335 -0.8636691 0.02934285 0.5725335 -0.9303782 0.02934285 0.5725335 -1 0.02934285 0.5725335 -0 0.03925039 0.5725335 -0.002418731 0.03925039 0.5725335 -0.005155668 0.03925039 0.5725335 -0.009080105 0.03925039 0.5725335 -0.01434988 0.03925039 0.5725335 -0.02107202 0.03925039 0.5725335 -0.02934285 0.03925039 0.5725335 -0.03925039 0.03925039 0.5725335 -0.05087609 0.03925039 0.5725335 -0.06429595 0.03925039 0.5725335 -0.07958143 0.03925039 0.5725335 -0.0968001 0.03925039 0.5725335 -0.1160161 0.03925039 0.5725335 -0.1372908 0.03925039 0.5725335 -0.1606827 0.03925039 0.5725335 -0.1862481 0.03925039 0.5725335 -0.2140411 0.03925039 0.5725335 -0.2441142 0.03925039 0.5725335 -0.2765176 0.03925039 0.5725335 -0.3113005 0.03925039 0.5725335 -0.3485102 0.03925039 0.5725335 -0.388193 0.03925039 0.5725335 -0.4303934 0.03925039 0.5725335 -0.4751555 0.03925039 0.5725335 -0.5225216 0.03925039 0.5725335 -0.5725335 0.03925039 0.5725335 -0.6252316 0.03925039 0.5725335 -0.6806558 0.03925039 0.5725335 -0.7388448 0.03925039 0.5725335 -0.7998369 0.03925039 0.5725335 -0.8636691 0.03925039 0.5725335 -0.9303782 0.03925039 0.5725335 -1 0.03925039 0.5725335 -0 0.05087609 0.5725335 -0.002418731 0.05087609 0.5725335 -0.005155668 0.05087609 0.5725335 -0.009080105 0.05087609 0.5725335 -0.01434988 0.05087609 0.5725335 -0.02107202 0.05087609 0.5725335 -0.02934285 0.05087609 0.5725335 -0.03925039 0.05087609 0.5725335 -0.05087609 0.05087609 0.5725335 -0.06429595 0.05087609 0.5725335 -0.07958143 0.05087609 0.5725335 -0.0968001 0.05087609 0.5725335 -0.1160161 0.05087609 0.5725335 -0.1372908 0.05087609 0.5725335 -0.1606827 0.05087609 0.5725335 -0.1862481 0.05087609 0.5725335 -0.2140411 0.05087609 0.5725335 -0.2441142 0.05087609 0.5725335 -0.2765176 0.05087609 0.5725335 -0.3113005 0.05087609 0.5725335 -0.3485102 0.05087609 0.5725335 -0.388193 0.05087609 0.5725335 -0.4303934 0.05087609 0.5725335 -0.4751555 0.05087609 0.5725335 -0.5225216 0.05087609 0.5725335 -0.5725335 0.05087609 0.5725335 -0.6252316 0.05087609 0.5725335 -0.6806558 0.05087609 0.5725335 -0.7388448 0.05087609 0.5725335 -0.7998369 0.05087609 0.5725335 -0.8636691 0.05087609 0.5725335 -0.9303782 0.05087609 0.5725335 -1 0.05087609 0.5725335 -0 0.06429595 0.5725335 -0.002418731 0.06429595 0.5725335 -0.005155668 0.06429595 0.5725335 -0.009080105 0.06429595 0.5725335 -0.01434988 0.06429595 0.5725335 -0.02107202 0.06429595 0.5725335 -0.02934285 0.06429595 0.5725335 -0.03925039 0.06429595 0.5725335 -0.05087609 0.06429595 0.5725335 -0.06429595 0.06429595 0.5725335 -0.07958143 0.06429595 0.5725335 -0.0968001 0.06429595 0.5725335 -0.1160161 0.06429595 0.5725335 -0.1372908 0.06429595 0.5725335 -0.1606827 0.06429595 0.5725335 -0.1862481 0.06429595 0.5725335 -0.2140411 0.06429595 0.5725335 -0.2441142 0.06429595 0.5725335 -0.2765176 0.06429595 0.5725335 -0.3113005 0.06429595 0.5725335 -0.3485102 0.06429595 0.5725335 -0.388193 0.06429595 0.5725335 -0.4303934 0.06429595 0.5725335 -0.4751555 0.06429595 0.5725335 -0.5225216 0.06429595 0.5725335 -0.5725335 0.06429595 0.5725335 -0.6252316 0.06429595 0.5725335 -0.6806558 0.06429595 0.5725335 -0.7388448 0.06429595 0.5725335 -0.7998369 0.06429595 0.5725335 -0.8636691 0.06429595 0.5725335 -0.9303782 0.06429595 0.5725335 -1 0.06429595 0.5725335 -0 0.07958143 0.5725335 -0.002418731 0.07958143 0.5725335 -0.005155668 0.07958143 0.5725335 -0.009080105 0.07958143 0.5725335 -0.01434988 0.07958143 0.5725335 -0.02107202 0.07958143 0.5725335 -0.02934285 0.07958143 0.5725335 -0.03925039 0.07958143 0.5725335 -0.05087609 0.07958143 0.5725335 -0.06429595 0.07958143 0.5725335 -0.07958143 0.07958143 0.5725335 -0.0968001 0.07958143 0.5725335 -0.1160161 0.07958143 0.5725335 -0.1372908 0.07958143 0.5725335 -0.1606827 0.07958143 0.5725335 -0.1862481 0.07958143 0.5725335 -0.2140411 0.07958143 0.5725335 -0.2441142 0.07958143 0.5725335 -0.2765176 0.07958143 0.5725335 -0.3113005 0.07958143 0.5725335 -0.3485102 0.07958143 0.5725335 -0.388193 0.07958143 0.5725335 -0.4303934 0.07958143 0.5725335 -0.4751555 0.07958143 0.5725335 -0.5225216 0.07958143 0.5725335 -0.5725335 0.07958143 0.5725335 -0.6252316 0.07958143 0.5725335 -0.6806558 0.07958143 0.5725335 -0.7388448 0.07958143 0.5725335 -0.7998369 0.07958143 0.5725335 -0.8636691 0.07958143 0.5725335 -0.9303782 0.07958143 0.5725335 -1 0.07958143 0.5725335 -0 0.0968001 0.5725335 -0.002418731 0.0968001 0.5725335 -0.005155668 0.0968001 0.5725335 -0.009080105 0.0968001 0.5725335 -0.01434988 0.0968001 0.5725335 -0.02107202 0.0968001 0.5725335 -0.02934285 0.0968001 0.5725335 -0.03925039 0.0968001 0.5725335 -0.05087609 0.0968001 0.5725335 -0.06429595 0.0968001 0.5725335 -0.07958143 0.0968001 0.5725335 -0.0968001 0.0968001 0.5725335 -0.1160161 0.0968001 0.5725335 -0.1372908 0.0968001 0.5725335 -0.1606827 0.0968001 0.5725335 -0.1862481 0.0968001 0.5725335 -0.2140411 0.0968001 0.5725335 -0.2441142 0.0968001 0.5725335 -0.2765176 0.0968001 0.5725335 -0.3113005 0.0968001 0.5725335 -0.3485102 0.0968001 0.5725335 -0.388193 0.0968001 0.5725335 -0.4303934 0.0968001 0.5725335 -0.4751555 0.0968001 0.5725335 -0.5225216 0.0968001 0.5725335 -0.5725335 0.0968001 0.5725335 -0.6252316 0.0968001 0.5725335 -0.6806558 0.0968001 0.5725335 -0.7388448 0.0968001 0.5725335 -0.7998369 0.0968001 0.5725335 -0.8636691 0.0968001 0.5725335 -0.9303782 0.0968001 0.5725335 -1 0.0968001 0.5725335 -0 0.1160161 0.5725335 -0.002418731 0.1160161 0.5725335 -0.005155668 0.1160161 0.5725335 -0.009080105 0.1160161 0.5725335 -0.01434988 0.1160161 0.5725335 -0.02107202 0.1160161 0.5725335 -0.02934285 0.1160161 0.5725335 -0.03925039 0.1160161 0.5725335 -0.05087609 0.1160161 0.5725335 -0.06429595 0.1160161 0.5725335 -0.07958143 0.1160161 0.5725335 -0.0968001 0.1160161 0.5725335 -0.1160161 0.1160161 0.5725335 -0.1372908 0.1160161 0.5725335 -0.1606827 0.1160161 0.5725335 -0.1862481 0.1160161 0.5725335 -0.2140411 0.1160161 0.5725335 -0.2441142 0.1160161 0.5725335 -0.2765176 0.1160161 0.5725335 -0.3113005 0.1160161 0.5725335 -0.3485102 0.1160161 0.5725335 -0.388193 0.1160161 0.5725335 -0.4303934 0.1160161 0.5725335 -0.4751555 0.1160161 0.5725335 -0.5225216 0.1160161 0.5725335 -0.5725335 0.1160161 0.5725335 -0.6252316 0.1160161 0.5725335 -0.6806558 0.1160161 0.5725335 -0.7388448 0.1160161 0.5725335 -0.7998369 0.1160161 0.5725335 -0.8636691 0.1160161 0.5725335 -0.9303782 0.1160161 0.5725335 -1 0.1160161 0.5725335 -0 0.1372908 0.5725335 -0.002418731 0.1372908 0.5725335 -0.005155668 0.1372908 0.5725335 -0.009080105 0.1372908 0.5725335 -0.01434988 0.1372908 0.5725335 -0.02107202 0.1372908 0.5725335 -0.02934285 0.1372908 0.5725335 -0.03925039 0.1372908 0.5725335 -0.05087609 0.1372908 0.5725335 -0.06429595 0.1372908 0.5725335 -0.07958143 0.1372908 0.5725335 -0.0968001 0.1372908 0.5725335 -0.1160161 0.1372908 0.5725335 -0.1372908 0.1372908 0.5725335 -0.1606827 0.1372908 0.5725335 -0.1862481 0.1372908 0.5725335 -0.2140411 0.1372908 0.5725335 -0.2441142 0.1372908 0.5725335 -0.2765176 0.1372908 0.5725335 -0.3113005 0.1372908 0.5725335 -0.3485102 0.1372908 0.5725335 -0.388193 0.1372908 0.5725335 -0.4303934 0.1372908 0.5725335 -0.4751555 0.1372908 0.5725335 -0.5225216 0.1372908 0.5725335 -0.5725335 0.1372908 0.5725335 -0.6252316 0.1372908 0.5725335 -0.6806558 0.1372908 0.5725335 -0.7388448 0.1372908 0.5725335 -0.7998369 0.1372908 0.5725335 -0.8636691 0.1372908 0.5725335 -0.9303782 0.1372908 0.5725335 -1 0.1372908 0.5725335 -0 0.1606827 0.5725335 -0.002418731 0.1606827 0.5725335 -0.005155668 0.1606827 0.5725335 -0.009080105 0.1606827 0.5725335 -0.01434988 0.1606827 0.5725335 -0.02107202 0.1606827 0.5725335 -0.02934285 0.1606827 0.5725335 -0.03925039 0.1606827 0.5725335 -0.05087609 0.1606827 0.5725335 -0.06429595 0.1606827 0.5725335 -0.07958143 0.1606827 0.5725335 -0.0968001 0.1606827 0.5725335 -0.1160161 0.1606827 0.5725335 -0.1372908 0.1606827 0.5725335 -0.1606827 0.1606827 0.5725335 -0.1862481 0.1606827 0.5725335 -0.2140411 0.1606827 0.5725335 -0.2441142 0.1606827 0.5725335 -0.2765176 0.1606827 0.5725335 -0.3113005 0.1606827 0.5725335 -0.3485102 0.1606827 0.5725335 -0.388193 0.1606827 0.5725335 -0.4303934 0.1606827 0.5725335 -0.4751555 0.1606827 0.5725335 -0.5225216 0.1606827 0.5725335 -0.5725335 0.1606827 0.5725335 -0.6252316 0.1606827 0.5725335 -0.6806558 0.1606827 0.5725335 -0.7388448 0.1606827 0.5725335 -0.7998369 0.1606827 0.5725335 -0.8636691 0.1606827 0.5725335 -0.9303782 0.1606827 0.5725335 -1 0.1606827 0.5725335 -0 0.1862481 0.5725335 -0.002418731 0.1862481 0.5725335 -0.005155668 0.1862481 0.5725335 -0.009080105 0.1862481 0.5725335 -0.01434988 0.1862481 0.5725335 -0.02107202 0.1862481 0.5725335 -0.02934285 0.1862481 0.5725335 -0.03925039 0.1862481 0.5725335 -0.05087609 0.1862481 0.5725335 -0.06429595 0.1862481 0.5725335 -0.07958143 0.1862481 0.5725335 -0.0968001 0.1862481 0.5725335 -0.1160161 0.1862481 0.5725335 -0.1372908 0.1862481 0.5725335 -0.1606827 0.1862481 0.5725335 -0.1862481 0.1862481 0.5725335 -0.2140411 0.1862481 0.5725335 -0.2441142 0.1862481 0.5725335 -0.2765176 0.1862481 0.5725335 -0.3113005 0.1862481 0.5725335 -0.3485102 0.1862481 0.5725335 -0.388193 0.1862481 0.5725335 -0.4303934 0.1862481 0.5725335 -0.4751555 0.1862481 0.5725335 -0.5225216 0.1862481 0.5725335 -0.5725335 0.1862481 0.5725335 -0.6252316 0.1862481 0.5725335 -0.6806558 0.1862481 0.5725335 -0.7388448 0.1862481 0.5725335 -0.7998369 0.1862481 0.5725335 -0.8636691 0.1862481 0.5725335 -0.9303782 0.1862481 0.5725335 -1 0.1862481 0.5725335 -0 0.2140411 0.5725335 -0.002418731 0.2140411 0.5725335 -0.005155668 0.2140411 0.5725335 -0.009080105 0.2140411 0.5725335 -0.01434988 0.2140411 0.5725335 -0.02107202 0.2140411 0.5725335 -0.02934285 0.2140411 0.5725335 -0.03925039 0.2140411 0.5725335 -0.05087609 0.2140411 0.5725335 -0.06429595 0.2140411 0.5725335 -0.07958143 0.2140411 0.5725335 -0.0968001 0.2140411 0.5725335 -0.1160161 0.2140411 0.5725335 -0.1372908 0.2140411 0.5725335 -0.1606827 0.2140411 0.5725335 -0.1862481 0.2140411 0.5725335 -0.2140411 0.2140411 0.5725335 -0.2441142 0.2140411 0.5725335 -0.2765176 0.2140411 0.5725335 -0.3113005 0.2140411 0.5725335 -0.3485102 0.2140411 0.5725335 -0.388193 0.2140411 0.5725335 -0.4303934 0.2140411 0.5725335 -0.4751555 0.2140411 0.5725335 -0.5225216 0.2140411 0.5725335 -0.5725335 0.2140411 0.5725335 -0.6252316 0.2140411 0.5725335 -0.6806558 0.2140411 0.5725335 -0.7388448 0.2140411 0.5725335 -0.7998369 0.2140411 0.5725335 -0.8636691 0.2140411 0.5725335 -0.9303782 0.2140411 0.5725335 -1 0.2140411 0.5725335 -0 0.2441142 0.5725335 -0.002418731 0.2441142 0.5725335 -0.005155668 0.2441142 0.5725335 -0.009080105 0.2441142 0.5725335 -0.01434988 0.2441142 0.5725335 -0.02107202 0.2441142 0.5725335 -0.02934285 0.2441142 0.5725335 -0.03925039 0.2441142 0.5725335 -0.05087609 0.2441142 0.5725335 -0.06429595 0.2441142 0.5725335 -0.07958143 0.2441142 0.5725335 -0.0968001 0.2441142 0.5725335 -0.1160161 0.2441142 0.5725335 -0.1372908 0.2441142 0.5725335 -0.1606827 0.2441142 0.5725335 -0.1862481 0.2441142 0.5725335 -0.2140411 0.2441142 0.5725335 -0.2441142 0.2441142 0.5725335 -0.2765176 0.2441142 0.5725335 -0.3113005 0.2441142 0.5725335 -0.3485102 0.2441142 0.5725335 -0.388193 0.2441142 0.5725335 -0.4303934 0.2441142 0.5725335 -0.4751555 0.2441142 0.5725335 -0.5225216 0.2441142 0.5725335 -0.5725335 0.2441142 0.5725335 -0.6252316 0.2441142 0.5725335 -0.6806558 0.2441142 0.5725335 -0.7388448 0.2441142 0.5725335 -0.7998369 0.2441142 0.5725335 -0.8636691 0.2441142 0.5725335 -0.9303782 0.2441142 0.5725335 -1 0.2441142 0.5725335 -0 0.2765176 0.5725335 -0.002418731 0.2765176 0.5725335 -0.005155668 0.2765176 0.5725335 -0.009080105 0.2765176 0.5725335 -0.01434988 0.2765176 0.5725335 -0.02107202 0.2765176 0.5725335 -0.02934285 0.2765176 0.5725335 -0.03925039 0.2765176 0.5725335 -0.05087609 0.2765176 0.5725335 -0.06429595 0.2765176 0.5725335 -0.07958143 0.2765176 0.5725335 -0.0968001 0.2765176 0.5725335 -0.1160161 0.2765176 0.5725335 -0.1372908 0.2765176 0.5725335 -0.1606827 0.2765176 0.5725335 -0.1862481 0.2765176 0.5725335 -0.2140411 0.2765176 0.5725335 -0.2441142 0.2765176 0.5725335 -0.2765176 0.2765176 0.5725335 -0.3113005 0.2765176 0.5725335 -0.3485102 0.2765176 0.5725335 -0.388193 0.2765176 0.5725335 -0.4303934 0.2765176 0.5725335 -0.4751555 0.2765176 0.5725335 -0.5225216 0.2765176 0.5725335 -0.5725335 0.2765176 0.5725335 -0.6252316 0.2765176 0.5725335 -0.6806558 0.2765176 0.5725335 -0.7388448 0.2765176 0.5725335 -0.7998369 0.2765176 0.5725335 -0.8636691 0.2765176 0.5725335 -0.9303782 0.2765176 0.5725335 -1 0.2765176 0.5725335 -0 0.3113005 0.5725335 -0.002418731 0.3113005 0.5725335 -0.005155668 0.3113005 0.5725335 -0.009080105 0.3113005 0.5725335 -0.01434988 0.3113005 0.5725335 -0.02107202 0.3113005 0.5725335 -0.02934285 0.3113005 0.5725335 -0.03925039 0.3113005 0.5725335 -0.05087609 0.3113005 0.5725335 -0.06429595 0.3113005 0.5725335 -0.07958143 0.3113005 0.5725335 -0.0968001 0.3113005 0.5725335 -0.1160161 0.3113005 0.5725335 -0.1372908 0.3113005 0.5725335 -0.1606827 0.3113005 0.5725335 -0.1862481 0.3113005 0.5725335 -0.2140411 0.3113005 0.5725335 -0.2441142 0.3113005 0.5725335 -0.2765176 0.3113005 0.5725335 -0.3113005 0.3113005 0.5725335 -0.3485102 0.3113005 0.5725335 -0.388193 0.3113005 0.5725335 -0.4303934 0.3113005 0.5725335 -0.4751555 0.3113005 0.5725335 -0.5225216 0.3113005 0.5725335 -0.5725335 0.3113005 0.5725335 -0.6252316 0.3113005 0.5725335 -0.6806558 0.3113005 0.5725335 -0.7388448 0.3113005 0.5725335 -0.7998369 0.3113005 0.5725335 -0.8636691 0.3113005 0.5725335 -0.9303782 0.3113005 0.5725335 -1 0.3113005 0.5725335 -0 0.3485102 0.5725335 -0.002418731 0.3485102 0.5725335 -0.005155668 0.3485102 0.5725335 -0.009080105 0.3485102 0.5725335 -0.01434988 0.3485102 0.5725335 -0.02107202 0.3485102 0.5725335 -0.02934285 0.3485102 0.5725335 -0.03925039 0.3485102 0.5725335 -0.05087609 0.3485102 0.5725335 -0.06429595 0.3485102 0.5725335 -0.07958143 0.3485102 0.5725335 -0.0968001 0.3485102 0.5725335 -0.1160161 0.3485102 0.5725335 -0.1372908 0.3485102 0.5725335 -0.1606827 0.3485102 0.5725335 -0.1862481 0.3485102 0.5725335 -0.2140411 0.3485102 0.5725335 -0.2441142 0.3485102 0.5725335 -0.2765176 0.3485102 0.5725335 -0.3113005 0.3485102 0.5725335 -0.3485102 0.3485102 0.5725335 -0.388193 0.3485102 0.5725335 -0.4303934 0.3485102 0.5725335 -0.4751555 0.3485102 0.5725335 -0.5225216 0.3485102 0.5725335 -0.5725335 0.3485102 0.5725335 -0.6252316 0.3485102 0.5725335 -0.6806558 0.3485102 0.5725335 -0.7388448 0.3485102 0.5725335 -0.7998369 0.3485102 0.5725335 -0.8636691 0.3485102 0.5725335 -0.9303782 0.3485102 0.5725335 -1 0.3485102 0.5725335 -0 0.388193 0.5725335 -0.002418731 0.388193 0.5725335 -0.005155668 0.388193 0.5725335 -0.009080105 0.388193 0.5725335 -0.01434988 0.388193 0.5725335 -0.02107202 0.388193 0.5725335 -0.02934285 0.388193 0.5725335 -0.03925039 0.388193 0.5725335 -0.05087609 0.388193 0.5725335 -0.06429595 0.388193 0.5725335 -0.07958143 0.388193 0.5725335 -0.0968001 0.388193 0.5725335 -0.1160161 0.388193 0.5725335 -0.1372908 0.388193 0.5725335 -0.1606827 0.388193 0.5725335 -0.1862481 0.388193 0.5725335 -0.2140411 0.388193 0.5725335 -0.2441142 0.388193 0.5725335 -0.2765176 0.388193 0.5725335 -0.3113005 0.388193 0.5725335 -0.3485102 0.388193 0.5725335 -0.388193 0.388193 0.5725335 -0.4303934 0.388193 0.5725335 -0.4751555 0.388193 0.5725335 -0.5225216 0.388193 0.5725335 -0.5725335 0.388193 0.5725335 -0.6252316 0.388193 0.5725335 -0.6806558 0.388193 0.5725335 -0.7388448 0.388193 0.5725335 -0.7998369 0.388193 0.5725335 -0.8636691 0.388193 0.5725335 -0.9303782 0.388193 0.5725335 -1 0.388193 0.5725335 -0 0.4303934 0.5725335 -0.002418731 0.4303934 0.5725335 -0.005155668 0.4303934 0.5725335 -0.009080105 0.4303934 0.5725335 -0.01434988 0.4303934 0.5725335 -0.02107202 0.4303934 0.5725335 -0.02934285 0.4303934 0.5725335 -0.03925039 0.4303934 0.5725335 -0.05087609 0.4303934 0.5725335 -0.06429595 0.4303934 0.5725335 -0.07958143 0.4303934 0.5725335 -0.0968001 0.4303934 0.5725335 -0.1160161 0.4303934 0.5725335 -0.1372908 0.4303934 0.5725335 -0.1606827 0.4303934 0.5725335 -0.1862481 0.4303934 0.5725335 -0.2140411 0.4303934 0.5725335 -0.2441142 0.4303934 0.5725335 -0.2765176 0.4303934 0.5725335 -0.3113005 0.4303934 0.5725335 -0.3485102 0.4303934 0.5725335 -0.388193 0.4303934 0.5725335 -0.4303934 0.4303934 0.5725335 -0.4751555 0.4303934 0.5725335 -0.5225216 0.4303934 0.5725335 -0.5725335 0.4303934 0.5725335 -0.6252316 0.4303934 0.5725335 -0.6806558 0.4303934 0.5725335 -0.7388448 0.4303934 0.5725335 -0.7998369 0.4303934 0.5725335 -0.8636691 0.4303934 0.5725335 -0.9303782 0.4303934 0.5725335 -1 0.4303934 0.5725335 -0 0.4751555 0.5725335 -0.002418731 0.4751555 0.5725335 -0.005155668 0.4751555 0.5725335 -0.009080105 0.4751555 0.5725335 -0.01434988 0.4751555 0.5725335 -0.02107202 0.4751555 0.5725335 -0.02934285 0.4751555 0.5725335 -0.03925039 0.4751555 0.5725335 -0.05087609 0.4751555 0.5725335 -0.06429595 0.4751555 0.5725335 -0.07958143 0.4751555 0.5725335 -0.0968001 0.4751555 0.5725335 -0.1160161 0.4751555 0.5725335 -0.1372908 0.4751555 0.5725335 -0.1606827 0.4751555 0.5725335 -0.1862481 0.4751555 0.5725335 -0.2140411 0.4751555 0.5725335 -0.2441142 0.4751555 0.5725335 -0.2765176 0.4751555 0.5725335 -0.3113005 0.4751555 0.5725335 -0.3485102 0.4751555 0.5725335 -0.388193 0.4751555 0.5725335 -0.4303934 0.4751555 0.5725335 -0.4751555 0.4751555 0.5725335 -0.5225216 0.4751555 0.5725335 -0.5725335 0.4751555 0.5725335 -0.6252316 0.4751555 0.5725335 -0.6806558 0.4751555 0.5725335 -0.7388448 0.4751555 0.5725335 -0.7998369 0.4751555 0.5725335 -0.8636691 0.4751555 0.5725335 -0.9303782 0.4751555 0.5725335 -1 0.4751555 0.5725335 -0 0.5225216 0.5725335 -0.002418731 0.5225216 0.5725335 -0.005155668 0.5225216 0.5725335 -0.009080105 0.5225216 0.5725335 -0.01434988 0.5225216 0.5725335 -0.02107202 0.5225216 0.5725335 -0.02934285 0.5225216 0.5725335 -0.03925039 0.5225216 0.5725335 -0.05087609 0.5225216 0.5725335 -0.06429595 0.5225216 0.5725335 -0.07958143 0.5225216 0.5725335 -0.0968001 0.5225216 0.5725335 -0.1160161 0.5225216 0.5725335 -0.1372908 0.5225216 0.5725335 -0.1606827 0.5225216 0.5725335 -0.1862481 0.5225216 0.5725335 -0.2140411 0.5225216 0.5725335 -0.2441142 0.5225216 0.5725335 -0.2765176 0.5225216 0.5725335 -0.3113005 0.5225216 0.5725335 -0.3485102 0.5225216 0.5725335 -0.388193 0.5225216 0.5725335 -0.4303934 0.5225216 0.5725335 -0.4751555 0.5225216 0.5725335 -0.5225216 0.5225216 0.5725335 -0.5725335 0.5225216 0.5725335 -0.6252316 0.5225216 0.5725335 -0.6806558 0.5225216 0.5725335 -0.7388448 0.5225216 0.5725335 -0.7998369 0.5225216 0.5725335 -0.8636691 0.5225216 0.5725335 -0.9303782 0.5225216 0.5725335 -1 0.5225216 0.5725335 -0 0.5725335 0.5725335 -0.002418731 0.5725335 0.5725335 -0.005155668 0.5725335 0.5725335 -0.009080105 0.5725335 0.5725335 -0.01434988 0.5725335 0.5725335 -0.02107202 0.5725335 0.5725335 -0.02934285 0.5725335 0.5725335 -0.03925039 0.5725335 0.5725335 -0.05087609 0.5725335 0.5725335 -0.06429595 0.5725335 0.5725335 -0.07958143 0.5725335 0.5725335 -0.0968001 0.5725335 0.5725335 -0.1160161 0.5725335 0.5725335 -0.1372908 0.5725335 0.5725335 -0.1606827 0.5725335 0.5725335 -0.1862481 0.5725335 0.5725335 -0.2140411 0.5725335 0.5725335 -0.2441142 0.5725335 0.5725335 -0.2765176 0.5725335 0.5725335 -0.3113005 0.5725335 0.5725335 -0.3485102 0.5725335 0.5725335 -0.388193 0.5725335 0.5725335 -0.4303934 0.5725335 0.5725335 -0.4751555 0.5725335 0.5725335 -0.5225216 0.5725335 0.5725335 -0.5725335 0.5725335 0.5725335 -0.6252316 0.5725335 0.5725335 -0.6806558 0.5725335 0.5725335 -0.7388448 0.5725335 0.5725335 -0.7998369 0.5725335 0.5725335 -0.8636691 0.5725335 0.5725335 -0.9303782 0.5725335 0.5725335 -1 0.5725335 0.5725335 -0 0.6252316 0.5725335 -0.002418731 0.6252316 0.5725335 -0.005155668 0.6252316 0.5725335 -0.009080105 0.6252316 0.5725335 -0.01434988 0.6252316 0.5725335 -0.02107202 0.6252316 0.5725335 -0.02934285 0.6252316 0.5725335 -0.03925039 0.6252316 0.5725335 -0.05087609 0.6252316 0.5725335 -0.06429595 0.6252316 0.5725335 -0.07958143 0.6252316 0.5725335 -0.0968001 0.6252316 0.5725335 -0.1160161 0.6252316 0.5725335 -0.1372908 0.6252316 0.5725335 -0.1606827 0.6252316 0.5725335 -0.1862481 0.6252316 0.5725335 -0.2140411 0.6252316 0.5725335 -0.2441142 0.6252316 0.5725335 -0.2765176 0.6252316 0.5725335 -0.3113005 0.6252316 0.5725335 -0.3485102 0.6252316 0.5725335 -0.388193 0.6252316 0.5725335 -0.4303934 0.6252316 0.5725335 -0.4751555 0.6252316 0.5725335 -0.5225216 0.6252316 0.5725335 -0.5725335 0.6252316 0.5725335 -0.6252316 0.6252316 0.5725335 -0.6806558 0.6252316 0.5725335 -0.7388448 0.6252316 0.5725335 -0.7998369 0.6252316 0.5725335 -0.8636691 0.6252316 0.5725335 -0.9303782 0.6252316 0.5725335 -1 0.6252316 0.5725335 -0 0.6806558 0.5725335 -0.002418731 0.6806558 0.5725335 -0.005155668 0.6806558 0.5725335 -0.009080105 0.6806558 0.5725335 -0.01434988 0.6806558 0.5725335 -0.02107202 0.6806558 0.5725335 -0.02934285 0.6806558 0.5725335 -0.03925039 0.6806558 0.5725335 -0.05087609 0.6806558 0.5725335 -0.06429595 0.6806558 0.5725335 -0.07958143 0.6806558 0.5725335 -0.0968001 0.6806558 0.5725335 -0.1160161 0.6806558 0.5725335 -0.1372908 0.6806558 0.5725335 -0.1606827 0.6806558 0.5725335 -0.1862481 0.6806558 0.5725335 -0.2140411 0.6806558 0.5725335 -0.2441142 0.6806558 0.5725335 -0.2765176 0.6806558 0.5725335 -0.3113005 0.6806558 0.5725335 -0.3485102 0.6806558 0.5725335 -0.388193 0.6806558 0.5725335 -0.4303934 0.6806558 0.5725335 -0.4751555 0.6806558 0.5725335 -0.5225216 0.6806558 0.5725335 -0.5725335 0.6806558 0.5725335 -0.6252316 0.6806558 0.5725335 -0.6806558 0.6806558 0.5725335 -0.7388448 0.6806558 0.5725335 -0.7998369 0.6806558 0.5725335 -0.8636691 0.6806558 0.5725335 -0.9303782 0.6806558 0.5725335 -1 0.6806558 0.5725335 -0 0.7388448 0.5725335 -0.002418731 0.7388448 0.5725335 -0.005155668 0.7388448 0.5725335 -0.009080105 0.7388448 0.5725335 -0.01434988 0.7388448 0.5725335 -0.02107202 0.7388448 0.5725335 -0.02934285 0.7388448 0.5725335 -0.03925039 0.7388448 0.5725335 -0.05087609 0.7388448 0.5725335 -0.06429595 0.7388448 0.5725335 -0.07958143 0.7388448 0.5725335 -0.0968001 0.7388448 0.5725335 -0.1160161 0.7388448 0.5725335 -0.1372908 0.7388448 0.5725335 -0.1606827 0.7388448 0.5725335 -0.1862481 0.7388448 0.5725335 -0.2140411 0.7388448 0.5725335 -0.2441142 0.7388448 0.5725335 -0.2765176 0.7388448 0.5725335 -0.3113005 0.7388448 0.5725335 -0.3485102 0.7388448 0.5725335 -0.388193 0.7388448 0.5725335 -0.4303934 0.7388448 0.5725335 -0.4751555 0.7388448 0.5725335 -0.5225216 0.7388448 0.5725335 -0.5725335 0.7388448 0.5725335 -0.6252316 0.7388448 0.5725335 -0.6806558 0.7388448 0.5725335 -0.7388448 0.7388448 0.5725335 -0.7998369 0.7388448 0.5725335 -0.8636691 0.7388448 0.5725335 -0.9303782 0.7388448 0.5725335 -1 0.7388448 0.5725335 -0 0.7998369 0.5725335 -0.002418731 0.7998369 0.5725335 -0.005155668 0.7998369 0.5725335 -0.009080105 0.7998369 0.5725335 -0.01434988 0.7998369 0.5725335 -0.02107202 0.7998369 0.5725335 -0.02934285 0.7998369 0.5725335 -0.03925039 0.7998369 0.5725335 -0.05087609 0.7998369 0.5725335 -0.06429595 0.7998369 0.5725335 -0.07958143 0.7998369 0.5725335 -0.0968001 0.7998369 0.5725335 -0.1160161 0.7998369 0.5725335 -0.1372908 0.7998369 0.5725335 -0.1606827 0.7998369 0.5725335 -0.1862481 0.7998369 0.5725335 -0.2140411 0.7998369 0.5725335 -0.2441142 0.7998369 0.5725335 -0.2765176 0.7998369 0.5725335 -0.3113005 0.7998369 0.5725335 -0.3485102 0.7998369 0.5725335 -0.388193 0.7998369 0.5725335 -0.4303934 0.7998369 0.5725335 -0.4751555 0.7998369 0.5725335 -0.5225216 0.7998369 0.5725335 -0.5725335 0.7998369 0.5725335 -0.6252316 0.7998369 0.5725335 -0.6806558 0.7998369 0.5725335 -0.7388448 0.7998369 0.5725335 -0.7998369 0.7998369 0.5725335 -0.8636691 0.7998369 0.5725335 -0.9303782 0.7998369 0.5725335 -1 0.7998369 0.5725335 -0 0.8636691 0.5725335 -0.002418731 0.8636691 0.5725335 -0.005155668 0.8636691 0.5725335 -0.009080105 0.8636691 0.5725335 -0.01434988 0.8636691 0.5725335 -0.02107202 0.8636691 0.5725335 -0.02934285 0.8636691 0.5725335 -0.03925039 0.8636691 0.5725335 -0.05087609 0.8636691 0.5725335 -0.06429595 0.8636691 0.5725335 -0.07958143 0.8636691 0.5725335 -0.0968001 0.8636691 0.5725335 -0.1160161 0.8636691 0.5725335 -0.1372908 0.8636691 0.5725335 -0.1606827 0.8636691 0.5725335 -0.1862481 0.8636691 0.5725335 -0.2140411 0.8636691 0.5725335 -0.2441142 0.8636691 0.5725335 -0.2765176 0.8636691 0.5725335 -0.3113005 0.8636691 0.5725335 -0.3485102 0.8636691 0.5725335 -0.388193 0.8636691 0.5725335 -0.4303934 0.8636691 0.5725335 -0.4751555 0.8636691 0.5725335 -0.5225216 0.8636691 0.5725335 -0.5725335 0.8636691 0.5725335 -0.6252316 0.8636691 0.5725335 -0.6806558 0.8636691 0.5725335 -0.7388448 0.8636691 0.5725335 -0.7998369 0.8636691 0.5725335 -0.8636691 0.8636691 0.5725335 -0.9303782 0.8636691 0.5725335 -1 0.8636691 0.5725335 -0 0.9303782 0.5725335 -0.002418731 0.9303782 0.5725335 -0.005155668 0.9303782 0.5725335 -0.009080105 0.9303782 0.5725335 -0.01434988 0.9303782 0.5725335 -0.02107202 0.9303782 0.5725335 -0.02934285 0.9303782 0.5725335 -0.03925039 0.9303782 0.5725335 -0.05087609 0.9303782 0.5725335 -0.06429595 0.9303782 0.5725335 -0.07958143 0.9303782 0.5725335 -0.0968001 0.9303782 0.5725335 -0.1160161 0.9303782 0.5725335 -0.1372908 0.9303782 0.5725335 -0.1606827 0.9303782 0.5725335 -0.1862481 0.9303782 0.5725335 -0.2140411 0.9303782 0.5725335 -0.2441142 0.9303782 0.5725335 -0.2765176 0.9303782 0.5725335 -0.3113005 0.9303782 0.5725335 -0.3485102 0.9303782 0.5725335 -0.388193 0.9303782 0.5725335 -0.4303934 0.9303782 0.5725335 -0.4751555 0.9303782 0.5725335 -0.5225216 0.9303782 0.5725335 -0.5725335 0.9303782 0.5725335 -0.6252316 0.9303782 0.5725335 -0.6806558 0.9303782 0.5725335 -0.7388448 0.9303782 0.5725335 -0.7998369 0.9303782 0.5725335 -0.8636691 0.9303782 0.5725335 -0.9303782 0.9303782 0.5725335 -1 0.9303782 0.5725335 -0 1 0.5725335 -0.002418731 1 0.5725335 -0.005155668 1 0.5725335 -0.009080105 1 0.5725335 -0.01434988 1 0.5725335 -0.02107202 1 0.5725335 -0.02934285 1 0.5725335 -0.03925039 1 0.5725335 -0.05087609 1 0.5725335 -0.06429595 1 0.5725335 -0.07958143 1 0.5725335 -0.0968001 1 0.5725335 -0.1160161 1 0.5725335 -0.1372908 1 0.5725335 -0.1606827 1 0.5725335 -0.1862481 1 0.5725335 -0.2140411 1 0.5725335 -0.2441142 1 0.5725335 -0.2765176 1 0.5725335 -0.3113005 1 0.5725335 -0.3485102 1 0.5725335 -0.388193 1 0.5725335 -0.4303934 1 0.5725335 -0.4751555 1 0.5725335 -0.5225216 1 0.5725335 -0.5725335 1 0.5725335 -0.6252316 1 0.5725335 -0.6806558 1 0.5725335 -0.7388448 1 0.5725335 -0.7998369 1 0.5725335 -0.8636691 1 0.5725335 -0.9303782 1 0.5725335 -1 1 0.5725335 -0 0 0.6252316 -0.002418731 0 0.6252316 -0.005155668 0 0.6252316 -0.009080105 0 0.6252316 -0.01434988 0 0.6252316 -0.02107202 0 0.6252316 -0.02934285 0 0.6252316 -0.03925039 0 0.6252316 -0.05087609 0 0.6252316 -0.06429595 0 0.6252316 -0.07958143 0 0.6252316 -0.0968001 0 0.6252316 -0.1160161 0 0.6252316 -0.1372908 0 0.6252316 -0.1606827 0 0.6252316 -0.1862481 0 0.6252316 -0.2140411 0 0.6252316 -0.2441142 0 0.6252316 -0.2765176 0 0.6252316 -0.3113005 0 0.6252316 -0.3485102 0 0.6252316 -0.388193 0 0.6252316 -0.4303934 0 0.6252316 -0.4751555 0 0.6252316 -0.5225216 0 0.6252316 -0.5725335 0 0.6252316 -0.6252316 0 0.6252316 -0.6806558 0 0.6252316 -0.7388448 0 0.6252316 -0.7998369 0 0.6252316 -0.8636691 0 0.6252316 -0.9303782 0 0.6252316 -1 0 0.6252316 -0 0.002418731 0.6252316 -0.002418731 0.002418731 0.6252316 -0.005155668 0.002418731 0.6252316 -0.009080105 0.002418731 0.6252316 -0.01434988 0.002418731 0.6252316 -0.02107202 0.002418731 0.6252316 -0.02934285 0.002418731 0.6252316 -0.03925039 0.002418731 0.6252316 -0.05087609 0.002418731 0.6252316 -0.06429595 0.002418731 0.6252316 -0.07958143 0.002418731 0.6252316 -0.0968001 0.002418731 0.6252316 -0.1160161 0.002418731 0.6252316 -0.1372908 0.002418731 0.6252316 -0.1606827 0.002418731 0.6252316 -0.1862481 0.002418731 0.6252316 -0.2140411 0.002418731 0.6252316 -0.2441142 0.002418731 0.6252316 -0.2765176 0.002418731 0.6252316 -0.3113005 0.002418731 0.6252316 -0.3485102 0.002418731 0.6252316 -0.388193 0.002418731 0.6252316 -0.4303934 0.002418731 0.6252316 -0.4751555 0.002418731 0.6252316 -0.5225216 0.002418731 0.6252316 -0.5725335 0.002418731 0.6252316 -0.6252316 0.002418731 0.6252316 -0.6806558 0.002418731 0.6252316 -0.7388448 0.002418731 0.6252316 -0.7998369 0.002418731 0.6252316 -0.8636691 0.002418731 0.6252316 -0.9303782 0.002418731 0.6252316 -1 0.002418731 0.6252316 -0 0.005155668 0.6252316 -0.002418731 0.005155668 0.6252316 -0.005155668 0.005155668 0.6252316 -0.009080105 0.005155668 0.6252316 -0.01434988 0.005155668 0.6252316 -0.02107202 0.005155668 0.6252316 -0.02934285 0.005155668 0.6252316 -0.03925039 0.005155668 0.6252316 -0.05087609 0.005155668 0.6252316 -0.06429595 0.005155668 0.6252316 -0.07958143 0.005155668 0.6252316 -0.0968001 0.005155668 0.6252316 -0.1160161 0.005155668 0.6252316 -0.1372908 0.005155668 0.6252316 -0.1606827 0.005155668 0.6252316 -0.1862481 0.005155668 0.6252316 -0.2140411 0.005155668 0.6252316 -0.2441142 0.005155668 0.6252316 -0.2765176 0.005155668 0.6252316 -0.3113005 0.005155668 0.6252316 -0.3485102 0.005155668 0.6252316 -0.388193 0.005155668 0.6252316 -0.4303934 0.005155668 0.6252316 -0.4751555 0.005155668 0.6252316 -0.5225216 0.005155668 0.6252316 -0.5725335 0.005155668 0.6252316 -0.6252316 0.005155668 0.6252316 -0.6806558 0.005155668 0.6252316 -0.7388448 0.005155668 0.6252316 -0.7998369 0.005155668 0.6252316 -0.8636691 0.005155668 0.6252316 -0.9303782 0.005155668 0.6252316 -1 0.005155668 0.6252316 -0 0.009080105 0.6252316 -0.002418731 0.009080105 0.6252316 -0.005155668 0.009080105 0.6252316 -0.009080105 0.009080105 0.6252316 -0.01434988 0.009080105 0.6252316 -0.02107202 0.009080105 0.6252316 -0.02934285 0.009080105 0.6252316 -0.03925039 0.009080105 0.6252316 -0.05087609 0.009080105 0.6252316 -0.06429595 0.009080105 0.6252316 -0.07958143 0.009080105 0.6252316 -0.0968001 0.009080105 0.6252316 -0.1160161 0.009080105 0.6252316 -0.1372908 0.009080105 0.6252316 -0.1606827 0.009080105 0.6252316 -0.1862481 0.009080105 0.6252316 -0.2140411 0.009080105 0.6252316 -0.2441142 0.009080105 0.6252316 -0.2765176 0.009080105 0.6252316 -0.3113005 0.009080105 0.6252316 -0.3485102 0.009080105 0.6252316 -0.388193 0.009080105 0.6252316 -0.4303934 0.009080105 0.6252316 -0.4751555 0.009080105 0.6252316 -0.5225216 0.009080105 0.6252316 -0.5725335 0.009080105 0.6252316 -0.6252316 0.009080105 0.6252316 -0.6806558 0.009080105 0.6252316 -0.7388448 0.009080105 0.6252316 -0.7998369 0.009080105 0.6252316 -0.8636691 0.009080105 0.6252316 -0.9303782 0.009080105 0.6252316 -1 0.009080105 0.6252316 -0 0.01434988 0.6252316 -0.002418731 0.01434988 0.6252316 -0.005155668 0.01434988 0.6252316 -0.009080105 0.01434988 0.6252316 -0.01434988 0.01434988 0.6252316 -0.02107202 0.01434988 0.6252316 -0.02934285 0.01434988 0.6252316 -0.03925039 0.01434988 0.6252316 -0.05087609 0.01434988 0.6252316 -0.06429595 0.01434988 0.6252316 -0.07958143 0.01434988 0.6252316 -0.0968001 0.01434988 0.6252316 -0.1160161 0.01434988 0.6252316 -0.1372908 0.01434988 0.6252316 -0.1606827 0.01434988 0.6252316 -0.1862481 0.01434988 0.6252316 -0.2140411 0.01434988 0.6252316 -0.2441142 0.01434988 0.6252316 -0.2765176 0.01434988 0.6252316 -0.3113005 0.01434988 0.6252316 -0.3485102 0.01434988 0.6252316 -0.388193 0.01434988 0.6252316 -0.4303934 0.01434988 0.6252316 -0.4751555 0.01434988 0.6252316 -0.5225216 0.01434988 0.6252316 -0.5725335 0.01434988 0.6252316 -0.6252316 0.01434988 0.6252316 -0.6806558 0.01434988 0.6252316 -0.7388448 0.01434988 0.6252316 -0.7998369 0.01434988 0.6252316 -0.8636691 0.01434988 0.6252316 -0.9303782 0.01434988 0.6252316 -1 0.01434988 0.6252316 -0 0.02107202 0.6252316 -0.002418731 0.02107202 0.6252316 -0.005155668 0.02107202 0.6252316 -0.009080105 0.02107202 0.6252316 -0.01434988 0.02107202 0.6252316 -0.02107202 0.02107202 0.6252316 -0.02934285 0.02107202 0.6252316 -0.03925039 0.02107202 0.6252316 -0.05087609 0.02107202 0.6252316 -0.06429595 0.02107202 0.6252316 -0.07958143 0.02107202 0.6252316 -0.0968001 0.02107202 0.6252316 -0.1160161 0.02107202 0.6252316 -0.1372908 0.02107202 0.6252316 -0.1606827 0.02107202 0.6252316 -0.1862481 0.02107202 0.6252316 -0.2140411 0.02107202 0.6252316 -0.2441142 0.02107202 0.6252316 -0.2765176 0.02107202 0.6252316 -0.3113005 0.02107202 0.6252316 -0.3485102 0.02107202 0.6252316 -0.388193 0.02107202 0.6252316 -0.4303934 0.02107202 0.6252316 -0.4751555 0.02107202 0.6252316 -0.5225216 0.02107202 0.6252316 -0.5725335 0.02107202 0.6252316 -0.6252316 0.02107202 0.6252316 -0.6806558 0.02107202 0.6252316 -0.7388448 0.02107202 0.6252316 -0.7998369 0.02107202 0.6252316 -0.8636691 0.02107202 0.6252316 -0.9303782 0.02107202 0.6252316 -1 0.02107202 0.6252316 -0 0.02934285 0.6252316 -0.002418731 0.02934285 0.6252316 -0.005155668 0.02934285 0.6252316 -0.009080105 0.02934285 0.6252316 -0.01434988 0.02934285 0.6252316 -0.02107202 0.02934285 0.6252316 -0.02934285 0.02934285 0.6252316 -0.03925039 0.02934285 0.6252316 -0.05087609 0.02934285 0.6252316 -0.06429595 0.02934285 0.6252316 -0.07958143 0.02934285 0.6252316 -0.0968001 0.02934285 0.6252316 -0.1160161 0.02934285 0.6252316 -0.1372908 0.02934285 0.6252316 -0.1606827 0.02934285 0.6252316 -0.1862481 0.02934285 0.6252316 -0.2140411 0.02934285 0.6252316 -0.2441142 0.02934285 0.6252316 -0.2765176 0.02934285 0.6252316 -0.3113005 0.02934285 0.6252316 -0.3485102 0.02934285 0.6252316 -0.388193 0.02934285 0.6252316 -0.4303934 0.02934285 0.6252316 -0.4751555 0.02934285 0.6252316 -0.5225216 0.02934285 0.6252316 -0.5725335 0.02934285 0.6252316 -0.6252316 0.02934285 0.6252316 -0.6806558 0.02934285 0.6252316 -0.7388448 0.02934285 0.6252316 -0.7998369 0.02934285 0.6252316 -0.8636691 0.02934285 0.6252316 -0.9303782 0.02934285 0.6252316 -1 0.02934285 0.6252316 -0 0.03925039 0.6252316 -0.002418731 0.03925039 0.6252316 -0.005155668 0.03925039 0.6252316 -0.009080105 0.03925039 0.6252316 -0.01434988 0.03925039 0.6252316 -0.02107202 0.03925039 0.6252316 -0.02934285 0.03925039 0.6252316 -0.03925039 0.03925039 0.6252316 -0.05087609 0.03925039 0.6252316 -0.06429595 0.03925039 0.6252316 -0.07958143 0.03925039 0.6252316 -0.0968001 0.03925039 0.6252316 -0.1160161 0.03925039 0.6252316 -0.1372908 0.03925039 0.6252316 -0.1606827 0.03925039 0.6252316 -0.1862481 0.03925039 0.6252316 -0.2140411 0.03925039 0.6252316 -0.2441142 0.03925039 0.6252316 -0.2765176 0.03925039 0.6252316 -0.3113005 0.03925039 0.6252316 -0.3485102 0.03925039 0.6252316 -0.388193 0.03925039 0.6252316 -0.4303934 0.03925039 0.6252316 -0.4751555 0.03925039 0.6252316 -0.5225216 0.03925039 0.6252316 -0.5725335 0.03925039 0.6252316 -0.6252316 0.03925039 0.6252316 -0.6806558 0.03925039 0.6252316 -0.7388448 0.03925039 0.6252316 -0.7998369 0.03925039 0.6252316 -0.8636691 0.03925039 0.6252316 -0.9303782 0.03925039 0.6252316 -1 0.03925039 0.6252316 -0 0.05087609 0.6252316 -0.002418731 0.05087609 0.6252316 -0.005155668 0.05087609 0.6252316 -0.009080105 0.05087609 0.6252316 -0.01434988 0.05087609 0.6252316 -0.02107202 0.05087609 0.6252316 -0.02934285 0.05087609 0.6252316 -0.03925039 0.05087609 0.6252316 -0.05087609 0.05087609 0.6252316 -0.06429595 0.05087609 0.6252316 -0.07958143 0.05087609 0.6252316 -0.0968001 0.05087609 0.6252316 -0.1160161 0.05087609 0.6252316 -0.1372908 0.05087609 0.6252316 -0.1606827 0.05087609 0.6252316 -0.1862481 0.05087609 0.6252316 -0.2140411 0.05087609 0.6252316 -0.2441142 0.05087609 0.6252316 -0.2765176 0.05087609 0.6252316 -0.3113005 0.05087609 0.6252316 -0.3485102 0.05087609 0.6252316 -0.388193 0.05087609 0.6252316 -0.4303934 0.05087609 0.6252316 -0.4751555 0.05087609 0.6252316 -0.5225216 0.05087609 0.6252316 -0.5725335 0.05087609 0.6252316 -0.6252316 0.05087609 0.6252316 -0.6806558 0.05087609 0.6252316 -0.7388448 0.05087609 0.6252316 -0.7998369 0.05087609 0.6252316 -0.8636691 0.05087609 0.6252316 -0.9303782 0.05087609 0.6252316 -1 0.05087609 0.6252316 -0 0.06429595 0.6252316 -0.002418731 0.06429595 0.6252316 -0.005155668 0.06429595 0.6252316 -0.009080105 0.06429595 0.6252316 -0.01434988 0.06429595 0.6252316 -0.02107202 0.06429595 0.6252316 -0.02934285 0.06429595 0.6252316 -0.03925039 0.06429595 0.6252316 -0.05087609 0.06429595 0.6252316 -0.06429595 0.06429595 0.6252316 -0.07958143 0.06429595 0.6252316 -0.0968001 0.06429595 0.6252316 -0.1160161 0.06429595 0.6252316 -0.1372908 0.06429595 0.6252316 -0.1606827 0.06429595 0.6252316 -0.1862481 0.06429595 0.6252316 -0.2140411 0.06429595 0.6252316 -0.2441142 0.06429595 0.6252316 -0.2765176 0.06429595 0.6252316 -0.3113005 0.06429595 0.6252316 -0.3485102 0.06429595 0.6252316 -0.388193 0.06429595 0.6252316 -0.4303934 0.06429595 0.6252316 -0.4751555 0.06429595 0.6252316 -0.5225216 0.06429595 0.6252316 -0.5725335 0.06429595 0.6252316 -0.6252316 0.06429595 0.6252316 -0.6806558 0.06429595 0.6252316 -0.7388448 0.06429595 0.6252316 -0.7998369 0.06429595 0.6252316 -0.8636691 0.06429595 0.6252316 -0.9303782 0.06429595 0.6252316 -1 0.06429595 0.6252316 -0 0.07958143 0.6252316 -0.002418731 0.07958143 0.6252316 -0.005155668 0.07958143 0.6252316 -0.009080105 0.07958143 0.6252316 -0.01434988 0.07958143 0.6252316 -0.02107202 0.07958143 0.6252316 -0.02934285 0.07958143 0.6252316 -0.03925039 0.07958143 0.6252316 -0.05087609 0.07958143 0.6252316 -0.06429595 0.07958143 0.6252316 -0.07958143 0.07958143 0.6252316 -0.0968001 0.07958143 0.6252316 -0.1160161 0.07958143 0.6252316 -0.1372908 0.07958143 0.6252316 -0.1606827 0.07958143 0.6252316 -0.1862481 0.07958143 0.6252316 -0.2140411 0.07958143 0.6252316 -0.2441142 0.07958143 0.6252316 -0.2765176 0.07958143 0.6252316 -0.3113005 0.07958143 0.6252316 -0.3485102 0.07958143 0.6252316 -0.388193 0.07958143 0.6252316 -0.4303934 0.07958143 0.6252316 -0.4751555 0.07958143 0.6252316 -0.5225216 0.07958143 0.6252316 -0.5725335 0.07958143 0.6252316 -0.6252316 0.07958143 0.6252316 -0.6806558 0.07958143 0.6252316 -0.7388448 0.07958143 0.6252316 -0.7998369 0.07958143 0.6252316 -0.8636691 0.07958143 0.6252316 -0.9303782 0.07958143 0.6252316 -1 0.07958143 0.6252316 -0 0.0968001 0.6252316 -0.002418731 0.0968001 0.6252316 -0.005155668 0.0968001 0.6252316 -0.009080105 0.0968001 0.6252316 -0.01434988 0.0968001 0.6252316 -0.02107202 0.0968001 0.6252316 -0.02934285 0.0968001 0.6252316 -0.03925039 0.0968001 0.6252316 -0.05087609 0.0968001 0.6252316 -0.06429595 0.0968001 0.6252316 -0.07958143 0.0968001 0.6252316 -0.0968001 0.0968001 0.6252316 -0.1160161 0.0968001 0.6252316 -0.1372908 0.0968001 0.6252316 -0.1606827 0.0968001 0.6252316 -0.1862481 0.0968001 0.6252316 -0.2140411 0.0968001 0.6252316 -0.2441142 0.0968001 0.6252316 -0.2765176 0.0968001 0.6252316 -0.3113005 0.0968001 0.6252316 -0.3485102 0.0968001 0.6252316 -0.388193 0.0968001 0.6252316 -0.4303934 0.0968001 0.6252316 -0.4751555 0.0968001 0.6252316 -0.5225216 0.0968001 0.6252316 -0.5725335 0.0968001 0.6252316 -0.6252316 0.0968001 0.6252316 -0.6806558 0.0968001 0.6252316 -0.7388448 0.0968001 0.6252316 -0.7998369 0.0968001 0.6252316 -0.8636691 0.0968001 0.6252316 -0.9303782 0.0968001 0.6252316 -1 0.0968001 0.6252316 -0 0.1160161 0.6252316 -0.002418731 0.1160161 0.6252316 -0.005155668 0.1160161 0.6252316 -0.009080105 0.1160161 0.6252316 -0.01434988 0.1160161 0.6252316 -0.02107202 0.1160161 0.6252316 -0.02934285 0.1160161 0.6252316 -0.03925039 0.1160161 0.6252316 -0.05087609 0.1160161 0.6252316 -0.06429595 0.1160161 0.6252316 -0.07958143 0.1160161 0.6252316 -0.0968001 0.1160161 0.6252316 -0.1160161 0.1160161 0.6252316 -0.1372908 0.1160161 0.6252316 -0.1606827 0.1160161 0.6252316 -0.1862481 0.1160161 0.6252316 -0.2140411 0.1160161 0.6252316 -0.2441142 0.1160161 0.6252316 -0.2765176 0.1160161 0.6252316 -0.3113005 0.1160161 0.6252316 -0.3485102 0.1160161 0.6252316 -0.388193 0.1160161 0.6252316 -0.4303934 0.1160161 0.6252316 -0.4751555 0.1160161 0.6252316 -0.5225216 0.1160161 0.6252316 -0.5725335 0.1160161 0.6252316 -0.6252316 0.1160161 0.6252316 -0.6806558 0.1160161 0.6252316 -0.7388448 0.1160161 0.6252316 -0.7998369 0.1160161 0.6252316 -0.8636691 0.1160161 0.6252316 -0.9303782 0.1160161 0.6252316 -1 0.1160161 0.6252316 -0 0.1372908 0.6252316 -0.002418731 0.1372908 0.6252316 -0.005155668 0.1372908 0.6252316 -0.009080105 0.1372908 0.6252316 -0.01434988 0.1372908 0.6252316 -0.02107202 0.1372908 0.6252316 -0.02934285 0.1372908 0.6252316 -0.03925039 0.1372908 0.6252316 -0.05087609 0.1372908 0.6252316 -0.06429595 0.1372908 0.6252316 -0.07958143 0.1372908 0.6252316 -0.0968001 0.1372908 0.6252316 -0.1160161 0.1372908 0.6252316 -0.1372908 0.1372908 0.6252316 -0.1606827 0.1372908 0.6252316 -0.1862481 0.1372908 0.6252316 -0.2140411 0.1372908 0.6252316 -0.2441142 0.1372908 0.6252316 -0.2765176 0.1372908 0.6252316 -0.3113005 0.1372908 0.6252316 -0.3485102 0.1372908 0.6252316 -0.388193 0.1372908 0.6252316 -0.4303934 0.1372908 0.6252316 -0.4751555 0.1372908 0.6252316 -0.5225216 0.1372908 0.6252316 -0.5725335 0.1372908 0.6252316 -0.6252316 0.1372908 0.6252316 -0.6806558 0.1372908 0.6252316 -0.7388448 0.1372908 0.6252316 -0.7998369 0.1372908 0.6252316 -0.8636691 0.1372908 0.6252316 -0.9303782 0.1372908 0.6252316 -1 0.1372908 0.6252316 -0 0.1606827 0.6252316 -0.002418731 0.1606827 0.6252316 -0.005155668 0.1606827 0.6252316 -0.009080105 0.1606827 0.6252316 -0.01434988 0.1606827 0.6252316 -0.02107202 0.1606827 0.6252316 -0.02934285 0.1606827 0.6252316 -0.03925039 0.1606827 0.6252316 -0.05087609 0.1606827 0.6252316 -0.06429595 0.1606827 0.6252316 -0.07958143 0.1606827 0.6252316 -0.0968001 0.1606827 0.6252316 -0.1160161 0.1606827 0.6252316 -0.1372908 0.1606827 0.6252316 -0.1606827 0.1606827 0.6252316 -0.1862481 0.1606827 0.6252316 -0.2140411 0.1606827 0.6252316 -0.2441142 0.1606827 0.6252316 -0.2765176 0.1606827 0.6252316 -0.3113005 0.1606827 0.6252316 -0.3485102 0.1606827 0.6252316 -0.388193 0.1606827 0.6252316 -0.4303934 0.1606827 0.6252316 -0.4751555 0.1606827 0.6252316 -0.5225216 0.1606827 0.6252316 -0.5725335 0.1606827 0.6252316 -0.6252316 0.1606827 0.6252316 -0.6806558 0.1606827 0.6252316 -0.7388448 0.1606827 0.6252316 -0.7998369 0.1606827 0.6252316 -0.8636691 0.1606827 0.6252316 -0.9303782 0.1606827 0.6252316 -1 0.1606827 0.6252316 -0 0.1862481 0.6252316 -0.002418731 0.1862481 0.6252316 -0.005155668 0.1862481 0.6252316 -0.009080105 0.1862481 0.6252316 -0.01434988 0.1862481 0.6252316 -0.02107202 0.1862481 0.6252316 -0.02934285 0.1862481 0.6252316 -0.03925039 0.1862481 0.6252316 -0.05087609 0.1862481 0.6252316 -0.06429595 0.1862481 0.6252316 -0.07958143 0.1862481 0.6252316 -0.0968001 0.1862481 0.6252316 -0.1160161 0.1862481 0.6252316 -0.1372908 0.1862481 0.6252316 -0.1606827 0.1862481 0.6252316 -0.1862481 0.1862481 0.6252316 -0.2140411 0.1862481 0.6252316 -0.2441142 0.1862481 0.6252316 -0.2765176 0.1862481 0.6252316 -0.3113005 0.1862481 0.6252316 -0.3485102 0.1862481 0.6252316 -0.388193 0.1862481 0.6252316 -0.4303934 0.1862481 0.6252316 -0.4751555 0.1862481 0.6252316 -0.5225216 0.1862481 0.6252316 -0.5725335 0.1862481 0.6252316 -0.6252316 0.1862481 0.6252316 -0.6806558 0.1862481 0.6252316 -0.7388448 0.1862481 0.6252316 -0.7998369 0.1862481 0.6252316 -0.8636691 0.1862481 0.6252316 -0.9303782 0.1862481 0.6252316 -1 0.1862481 0.6252316 -0 0.2140411 0.6252316 -0.002418731 0.2140411 0.6252316 -0.005155668 0.2140411 0.6252316 -0.009080105 0.2140411 0.6252316 -0.01434988 0.2140411 0.6252316 -0.02107202 0.2140411 0.6252316 -0.02934285 0.2140411 0.6252316 -0.03925039 0.2140411 0.6252316 -0.05087609 0.2140411 0.6252316 -0.06429595 0.2140411 0.6252316 -0.07958143 0.2140411 0.6252316 -0.0968001 0.2140411 0.6252316 -0.1160161 0.2140411 0.6252316 -0.1372908 0.2140411 0.6252316 -0.1606827 0.2140411 0.6252316 -0.1862481 0.2140411 0.6252316 -0.2140411 0.2140411 0.6252316 -0.2441142 0.2140411 0.6252316 -0.2765176 0.2140411 0.6252316 -0.3113005 0.2140411 0.6252316 -0.3485102 0.2140411 0.6252316 -0.388193 0.2140411 0.6252316 -0.4303934 0.2140411 0.6252316 -0.4751555 0.2140411 0.6252316 -0.5225216 0.2140411 0.6252316 -0.5725335 0.2140411 0.6252316 -0.6252316 0.2140411 0.6252316 -0.6806558 0.2140411 0.6252316 -0.7388448 0.2140411 0.6252316 -0.7998369 0.2140411 0.6252316 -0.8636691 0.2140411 0.6252316 -0.9303782 0.2140411 0.6252316 -1 0.2140411 0.6252316 -0 0.2441142 0.6252316 -0.002418731 0.2441142 0.6252316 -0.005155668 0.2441142 0.6252316 -0.009080105 0.2441142 0.6252316 -0.01434988 0.2441142 0.6252316 -0.02107202 0.2441142 0.6252316 -0.02934285 0.2441142 0.6252316 -0.03925039 0.2441142 0.6252316 -0.05087609 0.2441142 0.6252316 -0.06429595 0.2441142 0.6252316 -0.07958143 0.2441142 0.6252316 -0.0968001 0.2441142 0.6252316 -0.1160161 0.2441142 0.6252316 -0.1372908 0.2441142 0.6252316 -0.1606827 0.2441142 0.6252316 -0.1862481 0.2441142 0.6252316 -0.2140411 0.2441142 0.6252316 -0.2441142 0.2441142 0.6252316 -0.2765176 0.2441142 0.6252316 -0.3113005 0.2441142 0.6252316 -0.3485102 0.2441142 0.6252316 -0.388193 0.2441142 0.6252316 -0.4303934 0.2441142 0.6252316 -0.4751555 0.2441142 0.6252316 -0.5225216 0.2441142 0.6252316 -0.5725335 0.2441142 0.6252316 -0.6252316 0.2441142 0.6252316 -0.6806558 0.2441142 0.6252316 -0.7388448 0.2441142 0.6252316 -0.7998369 0.2441142 0.6252316 -0.8636691 0.2441142 0.6252316 -0.9303782 0.2441142 0.6252316 -1 0.2441142 0.6252316 -0 0.2765176 0.6252316 -0.002418731 0.2765176 0.6252316 -0.005155668 0.2765176 0.6252316 -0.009080105 0.2765176 0.6252316 -0.01434988 0.2765176 0.6252316 -0.02107202 0.2765176 0.6252316 -0.02934285 0.2765176 0.6252316 -0.03925039 0.2765176 0.6252316 -0.05087609 0.2765176 0.6252316 -0.06429595 0.2765176 0.6252316 -0.07958143 0.2765176 0.6252316 -0.0968001 0.2765176 0.6252316 -0.1160161 0.2765176 0.6252316 -0.1372908 0.2765176 0.6252316 -0.1606827 0.2765176 0.6252316 -0.1862481 0.2765176 0.6252316 -0.2140411 0.2765176 0.6252316 -0.2441142 0.2765176 0.6252316 -0.2765176 0.2765176 0.6252316 -0.3113005 0.2765176 0.6252316 -0.3485102 0.2765176 0.6252316 -0.388193 0.2765176 0.6252316 -0.4303934 0.2765176 0.6252316 -0.4751555 0.2765176 0.6252316 -0.5225216 0.2765176 0.6252316 -0.5725335 0.2765176 0.6252316 -0.6252316 0.2765176 0.6252316 -0.6806558 0.2765176 0.6252316 -0.7388448 0.2765176 0.6252316 -0.7998369 0.2765176 0.6252316 -0.8636691 0.2765176 0.6252316 -0.9303782 0.2765176 0.6252316 -1 0.2765176 0.6252316 -0 0.3113005 0.6252316 -0.002418731 0.3113005 0.6252316 -0.005155668 0.3113005 0.6252316 -0.009080105 0.3113005 0.6252316 -0.01434988 0.3113005 0.6252316 -0.02107202 0.3113005 0.6252316 -0.02934285 0.3113005 0.6252316 -0.03925039 0.3113005 0.6252316 -0.05087609 0.3113005 0.6252316 -0.06429595 0.3113005 0.6252316 -0.07958143 0.3113005 0.6252316 -0.0968001 0.3113005 0.6252316 -0.1160161 0.3113005 0.6252316 -0.1372908 0.3113005 0.6252316 -0.1606827 0.3113005 0.6252316 -0.1862481 0.3113005 0.6252316 -0.2140411 0.3113005 0.6252316 -0.2441142 0.3113005 0.6252316 -0.2765176 0.3113005 0.6252316 -0.3113005 0.3113005 0.6252316 -0.3485102 0.3113005 0.6252316 -0.388193 0.3113005 0.6252316 -0.4303934 0.3113005 0.6252316 -0.4751555 0.3113005 0.6252316 -0.5225216 0.3113005 0.6252316 -0.5725335 0.3113005 0.6252316 -0.6252316 0.3113005 0.6252316 -0.6806558 0.3113005 0.6252316 -0.7388448 0.3113005 0.6252316 -0.7998369 0.3113005 0.6252316 -0.8636691 0.3113005 0.6252316 -0.9303782 0.3113005 0.6252316 -1 0.3113005 0.6252316 -0 0.3485102 0.6252316 -0.002418731 0.3485102 0.6252316 -0.005155668 0.3485102 0.6252316 -0.009080105 0.3485102 0.6252316 -0.01434988 0.3485102 0.6252316 -0.02107202 0.3485102 0.6252316 -0.02934285 0.3485102 0.6252316 -0.03925039 0.3485102 0.6252316 -0.05087609 0.3485102 0.6252316 -0.06429595 0.3485102 0.6252316 -0.07958143 0.3485102 0.6252316 -0.0968001 0.3485102 0.6252316 -0.1160161 0.3485102 0.6252316 -0.1372908 0.3485102 0.6252316 -0.1606827 0.3485102 0.6252316 -0.1862481 0.3485102 0.6252316 -0.2140411 0.3485102 0.6252316 -0.2441142 0.3485102 0.6252316 -0.2765176 0.3485102 0.6252316 -0.3113005 0.3485102 0.6252316 -0.3485102 0.3485102 0.6252316 -0.388193 0.3485102 0.6252316 -0.4303934 0.3485102 0.6252316 -0.4751555 0.3485102 0.6252316 -0.5225216 0.3485102 0.6252316 -0.5725335 0.3485102 0.6252316 -0.6252316 0.3485102 0.6252316 -0.6806558 0.3485102 0.6252316 -0.7388448 0.3485102 0.6252316 -0.7998369 0.3485102 0.6252316 -0.8636691 0.3485102 0.6252316 -0.9303782 0.3485102 0.6252316 -1 0.3485102 0.6252316 -0 0.388193 0.6252316 -0.002418731 0.388193 0.6252316 -0.005155668 0.388193 0.6252316 -0.009080105 0.388193 0.6252316 -0.01434988 0.388193 0.6252316 -0.02107202 0.388193 0.6252316 -0.02934285 0.388193 0.6252316 -0.03925039 0.388193 0.6252316 -0.05087609 0.388193 0.6252316 -0.06429595 0.388193 0.6252316 -0.07958143 0.388193 0.6252316 -0.0968001 0.388193 0.6252316 -0.1160161 0.388193 0.6252316 -0.1372908 0.388193 0.6252316 -0.1606827 0.388193 0.6252316 -0.1862481 0.388193 0.6252316 -0.2140411 0.388193 0.6252316 -0.2441142 0.388193 0.6252316 -0.2765176 0.388193 0.6252316 -0.3113005 0.388193 0.6252316 -0.3485102 0.388193 0.6252316 -0.388193 0.388193 0.6252316 -0.4303934 0.388193 0.6252316 -0.4751555 0.388193 0.6252316 -0.5225216 0.388193 0.6252316 -0.5725335 0.388193 0.6252316 -0.6252316 0.388193 0.6252316 -0.6806558 0.388193 0.6252316 -0.7388448 0.388193 0.6252316 -0.7998369 0.388193 0.6252316 -0.8636691 0.388193 0.6252316 -0.9303782 0.388193 0.6252316 -1 0.388193 0.6252316 -0 0.4303934 0.6252316 -0.002418731 0.4303934 0.6252316 -0.005155668 0.4303934 0.6252316 -0.009080105 0.4303934 0.6252316 -0.01434988 0.4303934 0.6252316 -0.02107202 0.4303934 0.6252316 -0.02934285 0.4303934 0.6252316 -0.03925039 0.4303934 0.6252316 -0.05087609 0.4303934 0.6252316 -0.06429595 0.4303934 0.6252316 -0.07958143 0.4303934 0.6252316 -0.0968001 0.4303934 0.6252316 -0.1160161 0.4303934 0.6252316 -0.1372908 0.4303934 0.6252316 -0.1606827 0.4303934 0.6252316 -0.1862481 0.4303934 0.6252316 -0.2140411 0.4303934 0.6252316 -0.2441142 0.4303934 0.6252316 -0.2765176 0.4303934 0.6252316 -0.3113005 0.4303934 0.6252316 -0.3485102 0.4303934 0.6252316 -0.388193 0.4303934 0.6252316 -0.4303934 0.4303934 0.6252316 -0.4751555 0.4303934 0.6252316 -0.5225216 0.4303934 0.6252316 -0.5725335 0.4303934 0.6252316 -0.6252316 0.4303934 0.6252316 -0.6806558 0.4303934 0.6252316 -0.7388448 0.4303934 0.6252316 -0.7998369 0.4303934 0.6252316 -0.8636691 0.4303934 0.6252316 -0.9303782 0.4303934 0.6252316 -1 0.4303934 0.6252316 -0 0.4751555 0.6252316 -0.002418731 0.4751555 0.6252316 -0.005155668 0.4751555 0.6252316 -0.009080105 0.4751555 0.6252316 -0.01434988 0.4751555 0.6252316 -0.02107202 0.4751555 0.6252316 -0.02934285 0.4751555 0.6252316 -0.03925039 0.4751555 0.6252316 -0.05087609 0.4751555 0.6252316 -0.06429595 0.4751555 0.6252316 -0.07958143 0.4751555 0.6252316 -0.0968001 0.4751555 0.6252316 -0.1160161 0.4751555 0.6252316 -0.1372908 0.4751555 0.6252316 -0.1606827 0.4751555 0.6252316 -0.1862481 0.4751555 0.6252316 -0.2140411 0.4751555 0.6252316 -0.2441142 0.4751555 0.6252316 -0.2765176 0.4751555 0.6252316 -0.3113005 0.4751555 0.6252316 -0.3485102 0.4751555 0.6252316 -0.388193 0.4751555 0.6252316 -0.4303934 0.4751555 0.6252316 -0.4751555 0.4751555 0.6252316 -0.5225216 0.4751555 0.6252316 -0.5725335 0.4751555 0.6252316 -0.6252316 0.4751555 0.6252316 -0.6806558 0.4751555 0.6252316 -0.7388448 0.4751555 0.6252316 -0.7998369 0.4751555 0.6252316 -0.8636691 0.4751555 0.6252316 -0.9303782 0.4751555 0.6252316 -1 0.4751555 0.6252316 -0 0.5225216 0.6252316 -0.002418731 0.5225216 0.6252316 -0.005155668 0.5225216 0.6252316 -0.009080105 0.5225216 0.6252316 -0.01434988 0.5225216 0.6252316 -0.02107202 0.5225216 0.6252316 -0.02934285 0.5225216 0.6252316 -0.03925039 0.5225216 0.6252316 -0.05087609 0.5225216 0.6252316 -0.06429595 0.5225216 0.6252316 -0.07958143 0.5225216 0.6252316 -0.0968001 0.5225216 0.6252316 -0.1160161 0.5225216 0.6252316 -0.1372908 0.5225216 0.6252316 -0.1606827 0.5225216 0.6252316 -0.1862481 0.5225216 0.6252316 -0.2140411 0.5225216 0.6252316 -0.2441142 0.5225216 0.6252316 -0.2765176 0.5225216 0.6252316 -0.3113005 0.5225216 0.6252316 -0.3485102 0.5225216 0.6252316 -0.388193 0.5225216 0.6252316 -0.4303934 0.5225216 0.6252316 -0.4751555 0.5225216 0.6252316 -0.5225216 0.5225216 0.6252316 -0.5725335 0.5225216 0.6252316 -0.6252316 0.5225216 0.6252316 -0.6806558 0.5225216 0.6252316 -0.7388448 0.5225216 0.6252316 -0.7998369 0.5225216 0.6252316 -0.8636691 0.5225216 0.6252316 -0.9303782 0.5225216 0.6252316 -1 0.5225216 0.6252316 -0 0.5725335 0.6252316 -0.002418731 0.5725335 0.6252316 -0.005155668 0.5725335 0.6252316 -0.009080105 0.5725335 0.6252316 -0.01434988 0.5725335 0.6252316 -0.02107202 0.5725335 0.6252316 -0.02934285 0.5725335 0.6252316 -0.03925039 0.5725335 0.6252316 -0.05087609 0.5725335 0.6252316 -0.06429595 0.5725335 0.6252316 -0.07958143 0.5725335 0.6252316 -0.0968001 0.5725335 0.6252316 -0.1160161 0.5725335 0.6252316 -0.1372908 0.5725335 0.6252316 -0.1606827 0.5725335 0.6252316 -0.1862481 0.5725335 0.6252316 -0.2140411 0.5725335 0.6252316 -0.2441142 0.5725335 0.6252316 -0.2765176 0.5725335 0.6252316 -0.3113005 0.5725335 0.6252316 -0.3485102 0.5725335 0.6252316 -0.388193 0.5725335 0.6252316 -0.4303934 0.5725335 0.6252316 -0.4751555 0.5725335 0.6252316 -0.5225216 0.5725335 0.6252316 -0.5725335 0.5725335 0.6252316 -0.6252316 0.5725335 0.6252316 -0.6806558 0.5725335 0.6252316 -0.7388448 0.5725335 0.6252316 -0.7998369 0.5725335 0.6252316 -0.8636691 0.5725335 0.6252316 -0.9303782 0.5725335 0.6252316 -1 0.5725335 0.6252316 -0 0.6252316 0.6252316 -0.002418731 0.6252316 0.6252316 -0.005155668 0.6252316 0.6252316 -0.009080105 0.6252316 0.6252316 -0.01434988 0.6252316 0.6252316 -0.02107202 0.6252316 0.6252316 -0.02934285 0.6252316 0.6252316 -0.03925039 0.6252316 0.6252316 -0.05087609 0.6252316 0.6252316 -0.06429595 0.6252316 0.6252316 -0.07958143 0.6252316 0.6252316 -0.0968001 0.6252316 0.6252316 -0.1160161 0.6252316 0.6252316 -0.1372908 0.6252316 0.6252316 -0.1606827 0.6252316 0.6252316 -0.1862481 0.6252316 0.6252316 -0.2140411 0.6252316 0.6252316 -0.2441142 0.6252316 0.6252316 -0.2765176 0.6252316 0.6252316 -0.3113005 0.6252316 0.6252316 -0.3485102 0.6252316 0.6252316 -0.388193 0.6252316 0.6252316 -0.4303934 0.6252316 0.6252316 -0.4751555 0.6252316 0.6252316 -0.5225216 0.6252316 0.6252316 -0.5725335 0.6252316 0.6252316 -0.6252316 0.6252316 0.6252316 -0.6806558 0.6252316 0.6252316 -0.7388448 0.6252316 0.6252316 -0.7998369 0.6252316 0.6252316 -0.8636691 0.6252316 0.6252316 -0.9303782 0.6252316 0.6252316 -1 0.6252316 0.6252316 -0 0.6806558 0.6252316 -0.002418731 0.6806558 0.6252316 -0.005155668 0.6806558 0.6252316 -0.009080105 0.6806558 0.6252316 -0.01434988 0.6806558 0.6252316 -0.02107202 0.6806558 0.6252316 -0.02934285 0.6806558 0.6252316 -0.03925039 0.6806558 0.6252316 -0.05087609 0.6806558 0.6252316 -0.06429595 0.6806558 0.6252316 -0.07958143 0.6806558 0.6252316 -0.0968001 0.6806558 0.6252316 -0.1160161 0.6806558 0.6252316 -0.1372908 0.6806558 0.6252316 -0.1606827 0.6806558 0.6252316 -0.1862481 0.6806558 0.6252316 -0.2140411 0.6806558 0.6252316 -0.2441142 0.6806558 0.6252316 -0.2765176 0.6806558 0.6252316 -0.3113005 0.6806558 0.6252316 -0.3485102 0.6806558 0.6252316 -0.388193 0.6806558 0.6252316 -0.4303934 0.6806558 0.6252316 -0.4751555 0.6806558 0.6252316 -0.5225216 0.6806558 0.6252316 -0.5725335 0.6806558 0.6252316 -0.6252316 0.6806558 0.6252316 -0.6806558 0.6806558 0.6252316 -0.7388448 0.6806558 0.6252316 -0.7998369 0.6806558 0.6252316 -0.8636691 0.6806558 0.6252316 -0.9303782 0.6806558 0.6252316 -1 0.6806558 0.6252316 -0 0.7388448 0.6252316 -0.002418731 0.7388448 0.6252316 -0.005155668 0.7388448 0.6252316 -0.009080105 0.7388448 0.6252316 -0.01434988 0.7388448 0.6252316 -0.02107202 0.7388448 0.6252316 -0.02934285 0.7388448 0.6252316 -0.03925039 0.7388448 0.6252316 -0.05087609 0.7388448 0.6252316 -0.06429595 0.7388448 0.6252316 -0.07958143 0.7388448 0.6252316 -0.0968001 0.7388448 0.6252316 -0.1160161 0.7388448 0.6252316 -0.1372908 0.7388448 0.6252316 -0.1606827 0.7388448 0.6252316 -0.1862481 0.7388448 0.6252316 -0.2140411 0.7388448 0.6252316 -0.2441142 0.7388448 0.6252316 -0.2765176 0.7388448 0.6252316 -0.3113005 0.7388448 0.6252316 -0.3485102 0.7388448 0.6252316 -0.388193 0.7388448 0.6252316 -0.4303934 0.7388448 0.6252316 -0.4751555 0.7388448 0.6252316 -0.5225216 0.7388448 0.6252316 -0.5725335 0.7388448 0.6252316 -0.6252316 0.7388448 0.6252316 -0.6806558 0.7388448 0.6252316 -0.7388448 0.7388448 0.6252316 -0.7998369 0.7388448 0.6252316 -0.8636691 0.7388448 0.6252316 -0.9303782 0.7388448 0.6252316 -1 0.7388448 0.6252316 -0 0.7998369 0.6252316 -0.002418731 0.7998369 0.6252316 -0.005155668 0.7998369 0.6252316 -0.009080105 0.7998369 0.6252316 -0.01434988 0.7998369 0.6252316 -0.02107202 0.7998369 0.6252316 -0.02934285 0.7998369 0.6252316 -0.03925039 0.7998369 0.6252316 -0.05087609 0.7998369 0.6252316 -0.06429595 0.7998369 0.6252316 -0.07958143 0.7998369 0.6252316 -0.0968001 0.7998369 0.6252316 -0.1160161 0.7998369 0.6252316 -0.1372908 0.7998369 0.6252316 -0.1606827 0.7998369 0.6252316 -0.1862481 0.7998369 0.6252316 -0.2140411 0.7998369 0.6252316 -0.2441142 0.7998369 0.6252316 -0.2765176 0.7998369 0.6252316 -0.3113005 0.7998369 0.6252316 -0.3485102 0.7998369 0.6252316 -0.388193 0.7998369 0.6252316 -0.4303934 0.7998369 0.6252316 -0.4751555 0.7998369 0.6252316 -0.5225216 0.7998369 0.6252316 -0.5725335 0.7998369 0.6252316 -0.6252316 0.7998369 0.6252316 -0.6806558 0.7998369 0.6252316 -0.7388448 0.7998369 0.6252316 -0.7998369 0.7998369 0.6252316 -0.8636691 0.7998369 0.6252316 -0.9303782 0.7998369 0.6252316 -1 0.7998369 0.6252316 -0 0.8636691 0.6252316 -0.002418731 0.8636691 0.6252316 -0.005155668 0.8636691 0.6252316 -0.009080105 0.8636691 0.6252316 -0.01434988 0.8636691 0.6252316 -0.02107202 0.8636691 0.6252316 -0.02934285 0.8636691 0.6252316 -0.03925039 0.8636691 0.6252316 -0.05087609 0.8636691 0.6252316 -0.06429595 0.8636691 0.6252316 -0.07958143 0.8636691 0.6252316 -0.0968001 0.8636691 0.6252316 -0.1160161 0.8636691 0.6252316 -0.1372908 0.8636691 0.6252316 -0.1606827 0.8636691 0.6252316 -0.1862481 0.8636691 0.6252316 -0.2140411 0.8636691 0.6252316 -0.2441142 0.8636691 0.6252316 -0.2765176 0.8636691 0.6252316 -0.3113005 0.8636691 0.6252316 -0.3485102 0.8636691 0.6252316 -0.388193 0.8636691 0.6252316 -0.4303934 0.8636691 0.6252316 -0.4751555 0.8636691 0.6252316 -0.5225216 0.8636691 0.6252316 -0.5725335 0.8636691 0.6252316 -0.6252316 0.8636691 0.6252316 -0.6806558 0.8636691 0.6252316 -0.7388448 0.8636691 0.6252316 -0.7998369 0.8636691 0.6252316 -0.8636691 0.8636691 0.6252316 -0.9303782 0.8636691 0.6252316 -1 0.8636691 0.6252316 -0 0.9303782 0.6252316 -0.002418731 0.9303782 0.6252316 -0.005155668 0.9303782 0.6252316 -0.009080105 0.9303782 0.6252316 -0.01434988 0.9303782 0.6252316 -0.02107202 0.9303782 0.6252316 -0.02934285 0.9303782 0.6252316 -0.03925039 0.9303782 0.6252316 -0.05087609 0.9303782 0.6252316 -0.06429595 0.9303782 0.6252316 -0.07958143 0.9303782 0.6252316 -0.0968001 0.9303782 0.6252316 -0.1160161 0.9303782 0.6252316 -0.1372908 0.9303782 0.6252316 -0.1606827 0.9303782 0.6252316 -0.1862481 0.9303782 0.6252316 -0.2140411 0.9303782 0.6252316 -0.2441142 0.9303782 0.6252316 -0.2765176 0.9303782 0.6252316 -0.3113005 0.9303782 0.6252316 -0.3485102 0.9303782 0.6252316 -0.388193 0.9303782 0.6252316 -0.4303934 0.9303782 0.6252316 -0.4751555 0.9303782 0.6252316 -0.5225216 0.9303782 0.6252316 -0.5725335 0.9303782 0.6252316 -0.6252316 0.9303782 0.6252316 -0.6806558 0.9303782 0.6252316 -0.7388448 0.9303782 0.6252316 -0.7998369 0.9303782 0.6252316 -0.8636691 0.9303782 0.6252316 -0.9303782 0.9303782 0.6252316 -1 0.9303782 0.6252316 -0 1 0.6252316 -0.002418731 1 0.6252316 -0.005155668 1 0.6252316 -0.009080105 1 0.6252316 -0.01434988 1 0.6252316 -0.02107202 1 0.6252316 -0.02934285 1 0.6252316 -0.03925039 1 0.6252316 -0.05087609 1 0.6252316 -0.06429595 1 0.6252316 -0.07958143 1 0.6252316 -0.0968001 1 0.6252316 -0.1160161 1 0.6252316 -0.1372908 1 0.6252316 -0.1606827 1 0.6252316 -0.1862481 1 0.6252316 -0.2140411 1 0.6252316 -0.2441142 1 0.6252316 -0.2765176 1 0.6252316 -0.3113005 1 0.6252316 -0.3485102 1 0.6252316 -0.388193 1 0.6252316 -0.4303934 1 0.6252316 -0.4751555 1 0.6252316 -0.5225216 1 0.6252316 -0.5725335 1 0.6252316 -0.6252316 1 0.6252316 -0.6806558 1 0.6252316 -0.7388448 1 0.6252316 -0.7998369 1 0.6252316 -0.8636691 1 0.6252316 -0.9303782 1 0.6252316 -1 1 0.6252316 -0 0 0.6806558 -0.002418731 0 0.6806558 -0.005155668 0 0.6806558 -0.009080105 0 0.6806558 -0.01434988 0 0.6806558 -0.02107202 0 0.6806558 -0.02934285 0 0.6806558 -0.03925039 0 0.6806558 -0.05087609 0 0.6806558 -0.06429595 0 0.6806558 -0.07958143 0 0.6806558 -0.0968001 0 0.6806558 -0.1160161 0 0.6806558 -0.1372908 0 0.6806558 -0.1606827 0 0.6806558 -0.1862481 0 0.6806558 -0.2140411 0 0.6806558 -0.2441142 0 0.6806558 -0.2765176 0 0.6806558 -0.3113005 0 0.6806558 -0.3485102 0 0.6806558 -0.388193 0 0.6806558 -0.4303934 0 0.6806558 -0.4751555 0 0.6806558 -0.5225216 0 0.6806558 -0.5725335 0 0.6806558 -0.6252316 0 0.6806558 -0.6806558 0 0.6806558 -0.7388448 0 0.6806558 -0.7998369 0 0.6806558 -0.8636691 0 0.6806558 -0.9303782 0 0.6806558 -1 0 0.6806558 -0 0.002418731 0.6806558 -0.002418731 0.002418731 0.6806558 -0.005155668 0.002418731 0.6806558 -0.009080105 0.002418731 0.6806558 -0.01434988 0.002418731 0.6806558 -0.02107202 0.002418731 0.6806558 -0.02934285 0.002418731 0.6806558 -0.03925039 0.002418731 0.6806558 -0.05087609 0.002418731 0.6806558 -0.06429595 0.002418731 0.6806558 -0.07958143 0.002418731 0.6806558 -0.0968001 0.002418731 0.6806558 -0.1160161 0.002418731 0.6806558 -0.1372908 0.002418731 0.6806558 -0.1606827 0.002418731 0.6806558 -0.1862481 0.002418731 0.6806558 -0.2140411 0.002418731 0.6806558 -0.2441142 0.002418731 0.6806558 -0.2765176 0.002418731 0.6806558 -0.3113005 0.002418731 0.6806558 -0.3485102 0.002418731 0.6806558 -0.388193 0.002418731 0.6806558 -0.4303934 0.002418731 0.6806558 -0.4751555 0.002418731 0.6806558 -0.5225216 0.002418731 0.6806558 -0.5725335 0.002418731 0.6806558 -0.6252316 0.002418731 0.6806558 -0.6806558 0.002418731 0.6806558 -0.7388448 0.002418731 0.6806558 -0.7998369 0.002418731 0.6806558 -0.8636691 0.002418731 0.6806558 -0.9303782 0.002418731 0.6806558 -1 0.002418731 0.6806558 -0 0.005155668 0.6806558 -0.002418731 0.005155668 0.6806558 -0.005155668 0.005155668 0.6806558 -0.009080105 0.005155668 0.6806558 -0.01434988 0.005155668 0.6806558 -0.02107202 0.005155668 0.6806558 -0.02934285 0.005155668 0.6806558 -0.03925039 0.005155668 0.6806558 -0.05087609 0.005155668 0.6806558 -0.06429595 0.005155668 0.6806558 -0.07958143 0.005155668 0.6806558 -0.0968001 0.005155668 0.6806558 -0.1160161 0.005155668 0.6806558 -0.1372908 0.005155668 0.6806558 -0.1606827 0.005155668 0.6806558 -0.1862481 0.005155668 0.6806558 -0.2140411 0.005155668 0.6806558 -0.2441142 0.005155668 0.6806558 -0.2765176 0.005155668 0.6806558 -0.3113005 0.005155668 0.6806558 -0.3485102 0.005155668 0.6806558 -0.388193 0.005155668 0.6806558 -0.4303934 0.005155668 0.6806558 -0.4751555 0.005155668 0.6806558 -0.5225216 0.005155668 0.6806558 -0.5725335 0.005155668 0.6806558 -0.6252316 0.005155668 0.6806558 -0.6806558 0.005155668 0.6806558 -0.7388448 0.005155668 0.6806558 -0.7998369 0.005155668 0.6806558 -0.8636691 0.005155668 0.6806558 -0.9303782 0.005155668 0.6806558 -1 0.005155668 0.6806558 -0 0.009080105 0.6806558 -0.002418731 0.009080105 0.6806558 -0.005155668 0.009080105 0.6806558 -0.009080105 0.009080105 0.6806558 -0.01434988 0.009080105 0.6806558 -0.02107202 0.009080105 0.6806558 -0.02934285 0.009080105 0.6806558 -0.03925039 0.009080105 0.6806558 -0.05087609 0.009080105 0.6806558 -0.06429595 0.009080105 0.6806558 -0.07958143 0.009080105 0.6806558 -0.0968001 0.009080105 0.6806558 -0.1160161 0.009080105 0.6806558 -0.1372908 0.009080105 0.6806558 -0.1606827 0.009080105 0.6806558 -0.1862481 0.009080105 0.6806558 -0.2140411 0.009080105 0.6806558 -0.2441142 0.009080105 0.6806558 -0.2765176 0.009080105 0.6806558 -0.3113005 0.009080105 0.6806558 -0.3485102 0.009080105 0.6806558 -0.388193 0.009080105 0.6806558 -0.4303934 0.009080105 0.6806558 -0.4751555 0.009080105 0.6806558 -0.5225216 0.009080105 0.6806558 -0.5725335 0.009080105 0.6806558 -0.6252316 0.009080105 0.6806558 -0.6806558 0.009080105 0.6806558 -0.7388448 0.009080105 0.6806558 -0.7998369 0.009080105 0.6806558 -0.8636691 0.009080105 0.6806558 -0.9303782 0.009080105 0.6806558 -1 0.009080105 0.6806558 -0 0.01434988 0.6806558 -0.002418731 0.01434988 0.6806558 -0.005155668 0.01434988 0.6806558 -0.009080105 0.01434988 0.6806558 -0.01434988 0.01434988 0.6806558 -0.02107202 0.01434988 0.6806558 -0.02934285 0.01434988 0.6806558 -0.03925039 0.01434988 0.6806558 -0.05087609 0.01434988 0.6806558 -0.06429595 0.01434988 0.6806558 -0.07958143 0.01434988 0.6806558 -0.0968001 0.01434988 0.6806558 -0.1160161 0.01434988 0.6806558 -0.1372908 0.01434988 0.6806558 -0.1606827 0.01434988 0.6806558 -0.1862481 0.01434988 0.6806558 -0.2140411 0.01434988 0.6806558 -0.2441142 0.01434988 0.6806558 -0.2765176 0.01434988 0.6806558 -0.3113005 0.01434988 0.6806558 -0.3485102 0.01434988 0.6806558 -0.388193 0.01434988 0.6806558 -0.4303934 0.01434988 0.6806558 -0.4751555 0.01434988 0.6806558 -0.5225216 0.01434988 0.6806558 -0.5725335 0.01434988 0.6806558 -0.6252316 0.01434988 0.6806558 -0.6806558 0.01434988 0.6806558 -0.7388448 0.01434988 0.6806558 -0.7998369 0.01434988 0.6806558 -0.8636691 0.01434988 0.6806558 -0.9303782 0.01434988 0.6806558 -1 0.01434988 0.6806558 -0 0.02107202 0.6806558 -0.002418731 0.02107202 0.6806558 -0.005155668 0.02107202 0.6806558 -0.009080105 0.02107202 0.6806558 -0.01434988 0.02107202 0.6806558 -0.02107202 0.02107202 0.6806558 -0.02934285 0.02107202 0.6806558 -0.03925039 0.02107202 0.6806558 -0.05087609 0.02107202 0.6806558 -0.06429595 0.02107202 0.6806558 -0.07958143 0.02107202 0.6806558 -0.0968001 0.02107202 0.6806558 -0.1160161 0.02107202 0.6806558 -0.1372908 0.02107202 0.6806558 -0.1606827 0.02107202 0.6806558 -0.1862481 0.02107202 0.6806558 -0.2140411 0.02107202 0.6806558 -0.2441142 0.02107202 0.6806558 -0.2765176 0.02107202 0.6806558 -0.3113005 0.02107202 0.6806558 -0.3485102 0.02107202 0.6806558 -0.388193 0.02107202 0.6806558 -0.4303934 0.02107202 0.6806558 -0.4751555 0.02107202 0.6806558 -0.5225216 0.02107202 0.6806558 -0.5725335 0.02107202 0.6806558 -0.6252316 0.02107202 0.6806558 -0.6806558 0.02107202 0.6806558 -0.7388448 0.02107202 0.6806558 -0.7998369 0.02107202 0.6806558 -0.8636691 0.02107202 0.6806558 -0.9303782 0.02107202 0.6806558 -1 0.02107202 0.6806558 -0 0.02934285 0.6806558 -0.002418731 0.02934285 0.6806558 -0.005155668 0.02934285 0.6806558 -0.009080105 0.02934285 0.6806558 -0.01434988 0.02934285 0.6806558 -0.02107202 0.02934285 0.6806558 -0.02934285 0.02934285 0.6806558 -0.03925039 0.02934285 0.6806558 -0.05087609 0.02934285 0.6806558 -0.06429595 0.02934285 0.6806558 -0.07958143 0.02934285 0.6806558 -0.0968001 0.02934285 0.6806558 -0.1160161 0.02934285 0.6806558 -0.1372908 0.02934285 0.6806558 -0.1606827 0.02934285 0.6806558 -0.1862481 0.02934285 0.6806558 -0.2140411 0.02934285 0.6806558 -0.2441142 0.02934285 0.6806558 -0.2765176 0.02934285 0.6806558 -0.3113005 0.02934285 0.6806558 -0.3485102 0.02934285 0.6806558 -0.388193 0.02934285 0.6806558 -0.4303934 0.02934285 0.6806558 -0.4751555 0.02934285 0.6806558 -0.5225216 0.02934285 0.6806558 -0.5725335 0.02934285 0.6806558 -0.6252316 0.02934285 0.6806558 -0.6806558 0.02934285 0.6806558 -0.7388448 0.02934285 0.6806558 -0.7998369 0.02934285 0.6806558 -0.8636691 0.02934285 0.6806558 -0.9303782 0.02934285 0.6806558 -1 0.02934285 0.6806558 -0 0.03925039 0.6806558 -0.002418731 0.03925039 0.6806558 -0.005155668 0.03925039 0.6806558 -0.009080105 0.03925039 0.6806558 -0.01434988 0.03925039 0.6806558 -0.02107202 0.03925039 0.6806558 -0.02934285 0.03925039 0.6806558 -0.03925039 0.03925039 0.6806558 -0.05087609 0.03925039 0.6806558 -0.06429595 0.03925039 0.6806558 -0.07958143 0.03925039 0.6806558 -0.0968001 0.03925039 0.6806558 -0.1160161 0.03925039 0.6806558 -0.1372908 0.03925039 0.6806558 -0.1606827 0.03925039 0.6806558 -0.1862481 0.03925039 0.6806558 -0.2140411 0.03925039 0.6806558 -0.2441142 0.03925039 0.6806558 -0.2765176 0.03925039 0.6806558 -0.3113005 0.03925039 0.6806558 -0.3485102 0.03925039 0.6806558 -0.388193 0.03925039 0.6806558 -0.4303934 0.03925039 0.6806558 -0.4751555 0.03925039 0.6806558 -0.5225216 0.03925039 0.6806558 -0.5725335 0.03925039 0.6806558 -0.6252316 0.03925039 0.6806558 -0.6806558 0.03925039 0.6806558 -0.7388448 0.03925039 0.6806558 -0.7998369 0.03925039 0.6806558 -0.8636691 0.03925039 0.6806558 -0.9303782 0.03925039 0.6806558 -1 0.03925039 0.6806558 -0 0.05087609 0.6806558 -0.002418731 0.05087609 0.6806558 -0.005155668 0.05087609 0.6806558 -0.009080105 0.05087609 0.6806558 -0.01434988 0.05087609 0.6806558 -0.02107202 0.05087609 0.6806558 -0.02934285 0.05087609 0.6806558 -0.03925039 0.05087609 0.6806558 -0.05087609 0.05087609 0.6806558 -0.06429595 0.05087609 0.6806558 -0.07958143 0.05087609 0.6806558 -0.0968001 0.05087609 0.6806558 -0.1160161 0.05087609 0.6806558 -0.1372908 0.05087609 0.6806558 -0.1606827 0.05087609 0.6806558 -0.1862481 0.05087609 0.6806558 -0.2140411 0.05087609 0.6806558 -0.2441142 0.05087609 0.6806558 -0.2765176 0.05087609 0.6806558 -0.3113005 0.05087609 0.6806558 -0.3485102 0.05087609 0.6806558 -0.388193 0.05087609 0.6806558 -0.4303934 0.05087609 0.6806558 -0.4751555 0.05087609 0.6806558 -0.5225216 0.05087609 0.6806558 -0.5725335 0.05087609 0.6806558 -0.6252316 0.05087609 0.6806558 -0.6806558 0.05087609 0.6806558 -0.7388448 0.05087609 0.6806558 -0.7998369 0.05087609 0.6806558 -0.8636691 0.05087609 0.6806558 -0.9303782 0.05087609 0.6806558 -1 0.05087609 0.6806558 -0 0.06429595 0.6806558 -0.002418731 0.06429595 0.6806558 -0.005155668 0.06429595 0.6806558 -0.009080105 0.06429595 0.6806558 -0.01434988 0.06429595 0.6806558 -0.02107202 0.06429595 0.6806558 -0.02934285 0.06429595 0.6806558 -0.03925039 0.06429595 0.6806558 -0.05087609 0.06429595 0.6806558 -0.06429595 0.06429595 0.6806558 -0.07958143 0.06429595 0.6806558 -0.0968001 0.06429595 0.6806558 -0.1160161 0.06429595 0.6806558 -0.1372908 0.06429595 0.6806558 -0.1606827 0.06429595 0.6806558 -0.1862481 0.06429595 0.6806558 -0.2140411 0.06429595 0.6806558 -0.2441142 0.06429595 0.6806558 -0.2765176 0.06429595 0.6806558 -0.3113005 0.06429595 0.6806558 -0.3485102 0.06429595 0.6806558 -0.388193 0.06429595 0.6806558 -0.4303934 0.06429595 0.6806558 -0.4751555 0.06429595 0.6806558 -0.5225216 0.06429595 0.6806558 -0.5725335 0.06429595 0.6806558 -0.6252316 0.06429595 0.6806558 -0.6806558 0.06429595 0.6806558 -0.7388448 0.06429595 0.6806558 -0.7998369 0.06429595 0.6806558 -0.8636691 0.06429595 0.6806558 -0.9303782 0.06429595 0.6806558 -1 0.06429595 0.6806558 -0 0.07958143 0.6806558 -0.002418731 0.07958143 0.6806558 -0.005155668 0.07958143 0.6806558 -0.009080105 0.07958143 0.6806558 -0.01434988 0.07958143 0.6806558 -0.02107202 0.07958143 0.6806558 -0.02934285 0.07958143 0.6806558 -0.03925039 0.07958143 0.6806558 -0.05087609 0.07958143 0.6806558 -0.06429595 0.07958143 0.6806558 -0.07958143 0.07958143 0.6806558 -0.0968001 0.07958143 0.6806558 -0.1160161 0.07958143 0.6806558 -0.1372908 0.07958143 0.6806558 -0.1606827 0.07958143 0.6806558 -0.1862481 0.07958143 0.6806558 -0.2140411 0.07958143 0.6806558 -0.2441142 0.07958143 0.6806558 -0.2765176 0.07958143 0.6806558 -0.3113005 0.07958143 0.6806558 -0.3485102 0.07958143 0.6806558 -0.388193 0.07958143 0.6806558 -0.4303934 0.07958143 0.6806558 -0.4751555 0.07958143 0.6806558 -0.5225216 0.07958143 0.6806558 -0.5725335 0.07958143 0.6806558 -0.6252316 0.07958143 0.6806558 -0.6806558 0.07958143 0.6806558 -0.7388448 0.07958143 0.6806558 -0.7998369 0.07958143 0.6806558 -0.8636691 0.07958143 0.6806558 -0.9303782 0.07958143 0.6806558 -1 0.07958143 0.6806558 -0 0.0968001 0.6806558 -0.002418731 0.0968001 0.6806558 -0.005155668 0.0968001 0.6806558 -0.009080105 0.0968001 0.6806558 -0.01434988 0.0968001 0.6806558 -0.02107202 0.0968001 0.6806558 -0.02934285 0.0968001 0.6806558 -0.03925039 0.0968001 0.6806558 -0.05087609 0.0968001 0.6806558 -0.06429595 0.0968001 0.6806558 -0.07958143 0.0968001 0.6806558 -0.0968001 0.0968001 0.6806558 -0.1160161 0.0968001 0.6806558 -0.1372908 0.0968001 0.6806558 -0.1606827 0.0968001 0.6806558 -0.1862481 0.0968001 0.6806558 -0.2140411 0.0968001 0.6806558 -0.2441142 0.0968001 0.6806558 -0.2765176 0.0968001 0.6806558 -0.3113005 0.0968001 0.6806558 -0.3485102 0.0968001 0.6806558 -0.388193 0.0968001 0.6806558 -0.4303934 0.0968001 0.6806558 -0.4751555 0.0968001 0.6806558 -0.5225216 0.0968001 0.6806558 -0.5725335 0.0968001 0.6806558 -0.6252316 0.0968001 0.6806558 -0.6806558 0.0968001 0.6806558 -0.7388448 0.0968001 0.6806558 -0.7998369 0.0968001 0.6806558 -0.8636691 0.0968001 0.6806558 -0.9303782 0.0968001 0.6806558 -1 0.0968001 0.6806558 -0 0.1160161 0.6806558 -0.002418731 0.1160161 0.6806558 -0.005155668 0.1160161 0.6806558 -0.009080105 0.1160161 0.6806558 -0.01434988 0.1160161 0.6806558 -0.02107202 0.1160161 0.6806558 -0.02934285 0.1160161 0.6806558 -0.03925039 0.1160161 0.6806558 -0.05087609 0.1160161 0.6806558 -0.06429595 0.1160161 0.6806558 -0.07958143 0.1160161 0.6806558 -0.0968001 0.1160161 0.6806558 -0.1160161 0.1160161 0.6806558 -0.1372908 0.1160161 0.6806558 -0.1606827 0.1160161 0.6806558 -0.1862481 0.1160161 0.6806558 -0.2140411 0.1160161 0.6806558 -0.2441142 0.1160161 0.6806558 -0.2765176 0.1160161 0.6806558 -0.3113005 0.1160161 0.6806558 -0.3485102 0.1160161 0.6806558 -0.388193 0.1160161 0.6806558 -0.4303934 0.1160161 0.6806558 -0.4751555 0.1160161 0.6806558 -0.5225216 0.1160161 0.6806558 -0.5725335 0.1160161 0.6806558 -0.6252316 0.1160161 0.6806558 -0.6806558 0.1160161 0.6806558 -0.7388448 0.1160161 0.6806558 -0.7998369 0.1160161 0.6806558 -0.8636691 0.1160161 0.6806558 -0.9303782 0.1160161 0.6806558 -1 0.1160161 0.6806558 -0 0.1372908 0.6806558 -0.002418731 0.1372908 0.6806558 -0.005155668 0.1372908 0.6806558 -0.009080105 0.1372908 0.6806558 -0.01434988 0.1372908 0.6806558 -0.02107202 0.1372908 0.6806558 -0.02934285 0.1372908 0.6806558 -0.03925039 0.1372908 0.6806558 -0.05087609 0.1372908 0.6806558 -0.06429595 0.1372908 0.6806558 -0.07958143 0.1372908 0.6806558 -0.0968001 0.1372908 0.6806558 -0.1160161 0.1372908 0.6806558 -0.1372908 0.1372908 0.6806558 -0.1606827 0.1372908 0.6806558 -0.1862481 0.1372908 0.6806558 -0.2140411 0.1372908 0.6806558 -0.2441142 0.1372908 0.6806558 -0.2765176 0.1372908 0.6806558 -0.3113005 0.1372908 0.6806558 -0.3485102 0.1372908 0.6806558 -0.388193 0.1372908 0.6806558 -0.4303934 0.1372908 0.6806558 -0.4751555 0.1372908 0.6806558 -0.5225216 0.1372908 0.6806558 -0.5725335 0.1372908 0.6806558 -0.6252316 0.1372908 0.6806558 -0.6806558 0.1372908 0.6806558 -0.7388448 0.1372908 0.6806558 -0.7998369 0.1372908 0.6806558 -0.8636691 0.1372908 0.6806558 -0.9303782 0.1372908 0.6806558 -1 0.1372908 0.6806558 -0 0.1606827 0.6806558 -0.002418731 0.1606827 0.6806558 -0.005155668 0.1606827 0.6806558 -0.009080105 0.1606827 0.6806558 -0.01434988 0.1606827 0.6806558 -0.02107202 0.1606827 0.6806558 -0.02934285 0.1606827 0.6806558 -0.03925039 0.1606827 0.6806558 -0.05087609 0.1606827 0.6806558 -0.06429595 0.1606827 0.6806558 -0.07958143 0.1606827 0.6806558 -0.0968001 0.1606827 0.6806558 -0.1160161 0.1606827 0.6806558 -0.1372908 0.1606827 0.6806558 -0.1606827 0.1606827 0.6806558 -0.1862481 0.1606827 0.6806558 -0.2140411 0.1606827 0.6806558 -0.2441142 0.1606827 0.6806558 -0.2765176 0.1606827 0.6806558 -0.3113005 0.1606827 0.6806558 -0.3485102 0.1606827 0.6806558 -0.388193 0.1606827 0.6806558 -0.4303934 0.1606827 0.6806558 -0.4751555 0.1606827 0.6806558 -0.5225216 0.1606827 0.6806558 -0.5725335 0.1606827 0.6806558 -0.6252316 0.1606827 0.6806558 -0.6806558 0.1606827 0.6806558 -0.7388448 0.1606827 0.6806558 -0.7998369 0.1606827 0.6806558 -0.8636691 0.1606827 0.6806558 -0.9303782 0.1606827 0.6806558 -1 0.1606827 0.6806558 -0 0.1862481 0.6806558 -0.002418731 0.1862481 0.6806558 -0.005155668 0.1862481 0.6806558 -0.009080105 0.1862481 0.6806558 -0.01434988 0.1862481 0.6806558 -0.02107202 0.1862481 0.6806558 -0.02934285 0.1862481 0.6806558 -0.03925039 0.1862481 0.6806558 -0.05087609 0.1862481 0.6806558 -0.06429595 0.1862481 0.6806558 -0.07958143 0.1862481 0.6806558 -0.0968001 0.1862481 0.6806558 -0.1160161 0.1862481 0.6806558 -0.1372908 0.1862481 0.6806558 -0.1606827 0.1862481 0.6806558 -0.1862481 0.1862481 0.6806558 -0.2140411 0.1862481 0.6806558 -0.2441142 0.1862481 0.6806558 -0.2765176 0.1862481 0.6806558 -0.3113005 0.1862481 0.6806558 -0.3485102 0.1862481 0.6806558 -0.388193 0.1862481 0.6806558 -0.4303934 0.1862481 0.6806558 -0.4751555 0.1862481 0.6806558 -0.5225216 0.1862481 0.6806558 -0.5725335 0.1862481 0.6806558 -0.6252316 0.1862481 0.6806558 -0.6806558 0.1862481 0.6806558 -0.7388448 0.1862481 0.6806558 -0.7998369 0.1862481 0.6806558 -0.8636691 0.1862481 0.6806558 -0.9303782 0.1862481 0.6806558 -1 0.1862481 0.6806558 -0 0.2140411 0.6806558 -0.002418731 0.2140411 0.6806558 -0.005155668 0.2140411 0.6806558 -0.009080105 0.2140411 0.6806558 -0.01434988 0.2140411 0.6806558 -0.02107202 0.2140411 0.6806558 -0.02934285 0.2140411 0.6806558 -0.03925039 0.2140411 0.6806558 -0.05087609 0.2140411 0.6806558 -0.06429595 0.2140411 0.6806558 -0.07958143 0.2140411 0.6806558 -0.0968001 0.2140411 0.6806558 -0.1160161 0.2140411 0.6806558 -0.1372908 0.2140411 0.6806558 -0.1606827 0.2140411 0.6806558 -0.1862481 0.2140411 0.6806558 -0.2140411 0.2140411 0.6806558 -0.2441142 0.2140411 0.6806558 -0.2765176 0.2140411 0.6806558 -0.3113005 0.2140411 0.6806558 -0.3485102 0.2140411 0.6806558 -0.388193 0.2140411 0.6806558 -0.4303934 0.2140411 0.6806558 -0.4751555 0.2140411 0.6806558 -0.5225216 0.2140411 0.6806558 -0.5725335 0.2140411 0.6806558 -0.6252316 0.2140411 0.6806558 -0.6806558 0.2140411 0.6806558 -0.7388448 0.2140411 0.6806558 -0.7998369 0.2140411 0.6806558 -0.8636691 0.2140411 0.6806558 -0.9303782 0.2140411 0.6806558 -1 0.2140411 0.6806558 -0 0.2441142 0.6806558 -0.002418731 0.2441142 0.6806558 -0.005155668 0.2441142 0.6806558 -0.009080105 0.2441142 0.6806558 -0.01434988 0.2441142 0.6806558 -0.02107202 0.2441142 0.6806558 -0.02934285 0.2441142 0.6806558 -0.03925039 0.2441142 0.6806558 -0.05087609 0.2441142 0.6806558 -0.06429595 0.2441142 0.6806558 -0.07958143 0.2441142 0.6806558 -0.0968001 0.2441142 0.6806558 -0.1160161 0.2441142 0.6806558 -0.1372908 0.2441142 0.6806558 -0.1606827 0.2441142 0.6806558 -0.1862481 0.2441142 0.6806558 -0.2140411 0.2441142 0.6806558 -0.2441142 0.2441142 0.6806558 -0.2765176 0.2441142 0.6806558 -0.3113005 0.2441142 0.6806558 -0.3485102 0.2441142 0.6806558 -0.388193 0.2441142 0.6806558 -0.4303934 0.2441142 0.6806558 -0.4751555 0.2441142 0.6806558 -0.5225216 0.2441142 0.6806558 -0.5725335 0.2441142 0.6806558 -0.6252316 0.2441142 0.6806558 -0.6806558 0.2441142 0.6806558 -0.7388448 0.2441142 0.6806558 -0.7998369 0.2441142 0.6806558 -0.8636691 0.2441142 0.6806558 -0.9303782 0.2441142 0.6806558 -1 0.2441142 0.6806558 -0 0.2765176 0.6806558 -0.002418731 0.2765176 0.6806558 -0.005155668 0.2765176 0.6806558 -0.009080105 0.2765176 0.6806558 -0.01434988 0.2765176 0.6806558 -0.02107202 0.2765176 0.6806558 -0.02934285 0.2765176 0.6806558 -0.03925039 0.2765176 0.6806558 -0.05087609 0.2765176 0.6806558 -0.06429595 0.2765176 0.6806558 -0.07958143 0.2765176 0.6806558 -0.0968001 0.2765176 0.6806558 -0.1160161 0.2765176 0.6806558 -0.1372908 0.2765176 0.6806558 -0.1606827 0.2765176 0.6806558 -0.1862481 0.2765176 0.6806558 -0.2140411 0.2765176 0.6806558 -0.2441142 0.2765176 0.6806558 -0.2765176 0.2765176 0.6806558 -0.3113005 0.2765176 0.6806558 -0.3485102 0.2765176 0.6806558 -0.388193 0.2765176 0.6806558 -0.4303934 0.2765176 0.6806558 -0.4751555 0.2765176 0.6806558 -0.5225216 0.2765176 0.6806558 -0.5725335 0.2765176 0.6806558 -0.6252316 0.2765176 0.6806558 -0.6806558 0.2765176 0.6806558 -0.7388448 0.2765176 0.6806558 -0.7998369 0.2765176 0.6806558 -0.8636691 0.2765176 0.6806558 -0.9303782 0.2765176 0.6806558 -1 0.2765176 0.6806558 -0 0.3113005 0.6806558 -0.002418731 0.3113005 0.6806558 -0.005155668 0.3113005 0.6806558 -0.009080105 0.3113005 0.6806558 -0.01434988 0.3113005 0.6806558 -0.02107202 0.3113005 0.6806558 -0.02934285 0.3113005 0.6806558 -0.03925039 0.3113005 0.6806558 -0.05087609 0.3113005 0.6806558 -0.06429595 0.3113005 0.6806558 -0.07958143 0.3113005 0.6806558 -0.0968001 0.3113005 0.6806558 -0.1160161 0.3113005 0.6806558 -0.1372908 0.3113005 0.6806558 -0.1606827 0.3113005 0.6806558 -0.1862481 0.3113005 0.6806558 -0.2140411 0.3113005 0.6806558 -0.2441142 0.3113005 0.6806558 -0.2765176 0.3113005 0.6806558 -0.3113005 0.3113005 0.6806558 -0.3485102 0.3113005 0.6806558 -0.388193 0.3113005 0.6806558 -0.4303934 0.3113005 0.6806558 -0.4751555 0.3113005 0.6806558 -0.5225216 0.3113005 0.6806558 -0.5725335 0.3113005 0.6806558 -0.6252316 0.3113005 0.6806558 -0.6806558 0.3113005 0.6806558 -0.7388448 0.3113005 0.6806558 -0.7998369 0.3113005 0.6806558 -0.8636691 0.3113005 0.6806558 -0.9303782 0.3113005 0.6806558 -1 0.3113005 0.6806558 -0 0.3485102 0.6806558 -0.002418731 0.3485102 0.6806558 -0.005155668 0.3485102 0.6806558 -0.009080105 0.3485102 0.6806558 -0.01434988 0.3485102 0.6806558 -0.02107202 0.3485102 0.6806558 -0.02934285 0.3485102 0.6806558 -0.03925039 0.3485102 0.6806558 -0.05087609 0.3485102 0.6806558 -0.06429595 0.3485102 0.6806558 -0.07958143 0.3485102 0.6806558 -0.0968001 0.3485102 0.6806558 -0.1160161 0.3485102 0.6806558 -0.1372908 0.3485102 0.6806558 -0.1606827 0.3485102 0.6806558 -0.1862481 0.3485102 0.6806558 -0.2140411 0.3485102 0.6806558 -0.2441142 0.3485102 0.6806558 -0.2765176 0.3485102 0.6806558 -0.3113005 0.3485102 0.6806558 -0.3485102 0.3485102 0.6806558 -0.388193 0.3485102 0.6806558 -0.4303934 0.3485102 0.6806558 -0.4751555 0.3485102 0.6806558 -0.5225216 0.3485102 0.6806558 -0.5725335 0.3485102 0.6806558 -0.6252316 0.3485102 0.6806558 -0.6806558 0.3485102 0.6806558 -0.7388448 0.3485102 0.6806558 -0.7998369 0.3485102 0.6806558 -0.8636691 0.3485102 0.6806558 -0.9303782 0.3485102 0.6806558 -1 0.3485102 0.6806558 -0 0.388193 0.6806558 -0.002418731 0.388193 0.6806558 -0.005155668 0.388193 0.6806558 -0.009080105 0.388193 0.6806558 -0.01434988 0.388193 0.6806558 -0.02107202 0.388193 0.6806558 -0.02934285 0.388193 0.6806558 -0.03925039 0.388193 0.6806558 -0.05087609 0.388193 0.6806558 -0.06429595 0.388193 0.6806558 -0.07958143 0.388193 0.6806558 -0.0968001 0.388193 0.6806558 -0.1160161 0.388193 0.6806558 -0.1372908 0.388193 0.6806558 -0.1606827 0.388193 0.6806558 -0.1862481 0.388193 0.6806558 -0.2140411 0.388193 0.6806558 -0.2441142 0.388193 0.6806558 -0.2765176 0.388193 0.6806558 -0.3113005 0.388193 0.6806558 -0.3485102 0.388193 0.6806558 -0.388193 0.388193 0.6806558 -0.4303934 0.388193 0.6806558 -0.4751555 0.388193 0.6806558 -0.5225216 0.388193 0.6806558 -0.5725335 0.388193 0.6806558 -0.6252316 0.388193 0.6806558 -0.6806558 0.388193 0.6806558 -0.7388448 0.388193 0.6806558 -0.7998369 0.388193 0.6806558 -0.8636691 0.388193 0.6806558 -0.9303782 0.388193 0.6806558 -1 0.388193 0.6806558 -0 0.4303934 0.6806558 -0.002418731 0.4303934 0.6806558 -0.005155668 0.4303934 0.6806558 -0.009080105 0.4303934 0.6806558 -0.01434988 0.4303934 0.6806558 -0.02107202 0.4303934 0.6806558 -0.02934285 0.4303934 0.6806558 -0.03925039 0.4303934 0.6806558 -0.05087609 0.4303934 0.6806558 -0.06429595 0.4303934 0.6806558 -0.07958143 0.4303934 0.6806558 -0.0968001 0.4303934 0.6806558 -0.1160161 0.4303934 0.6806558 -0.1372908 0.4303934 0.6806558 -0.1606827 0.4303934 0.6806558 -0.1862481 0.4303934 0.6806558 -0.2140411 0.4303934 0.6806558 -0.2441142 0.4303934 0.6806558 -0.2765176 0.4303934 0.6806558 -0.3113005 0.4303934 0.6806558 -0.3485102 0.4303934 0.6806558 -0.388193 0.4303934 0.6806558 -0.4303934 0.4303934 0.6806558 -0.4751555 0.4303934 0.6806558 -0.5225216 0.4303934 0.6806558 -0.5725335 0.4303934 0.6806558 -0.6252316 0.4303934 0.6806558 -0.6806558 0.4303934 0.6806558 -0.7388448 0.4303934 0.6806558 -0.7998369 0.4303934 0.6806558 -0.8636691 0.4303934 0.6806558 -0.9303782 0.4303934 0.6806558 -1 0.4303934 0.6806558 -0 0.4751555 0.6806558 -0.002418731 0.4751555 0.6806558 -0.005155668 0.4751555 0.6806558 -0.009080105 0.4751555 0.6806558 -0.01434988 0.4751555 0.6806558 -0.02107202 0.4751555 0.6806558 -0.02934285 0.4751555 0.6806558 -0.03925039 0.4751555 0.6806558 -0.05087609 0.4751555 0.6806558 -0.06429595 0.4751555 0.6806558 -0.07958143 0.4751555 0.6806558 -0.0968001 0.4751555 0.6806558 -0.1160161 0.4751555 0.6806558 -0.1372908 0.4751555 0.6806558 -0.1606827 0.4751555 0.6806558 -0.1862481 0.4751555 0.6806558 -0.2140411 0.4751555 0.6806558 -0.2441142 0.4751555 0.6806558 -0.2765176 0.4751555 0.6806558 -0.3113005 0.4751555 0.6806558 -0.3485102 0.4751555 0.6806558 -0.388193 0.4751555 0.6806558 -0.4303934 0.4751555 0.6806558 -0.4751555 0.4751555 0.6806558 -0.5225216 0.4751555 0.6806558 -0.5725335 0.4751555 0.6806558 -0.6252316 0.4751555 0.6806558 -0.6806558 0.4751555 0.6806558 -0.7388448 0.4751555 0.6806558 -0.7998369 0.4751555 0.6806558 -0.8636691 0.4751555 0.6806558 -0.9303782 0.4751555 0.6806558 -1 0.4751555 0.6806558 -0 0.5225216 0.6806558 -0.002418731 0.5225216 0.6806558 -0.005155668 0.5225216 0.6806558 -0.009080105 0.5225216 0.6806558 -0.01434988 0.5225216 0.6806558 -0.02107202 0.5225216 0.6806558 -0.02934285 0.5225216 0.6806558 -0.03925039 0.5225216 0.6806558 -0.05087609 0.5225216 0.6806558 -0.06429595 0.5225216 0.6806558 -0.07958143 0.5225216 0.6806558 -0.0968001 0.5225216 0.6806558 -0.1160161 0.5225216 0.6806558 -0.1372908 0.5225216 0.6806558 -0.1606827 0.5225216 0.6806558 -0.1862481 0.5225216 0.6806558 -0.2140411 0.5225216 0.6806558 -0.2441142 0.5225216 0.6806558 -0.2765176 0.5225216 0.6806558 -0.3113005 0.5225216 0.6806558 -0.3485102 0.5225216 0.6806558 -0.388193 0.5225216 0.6806558 -0.4303934 0.5225216 0.6806558 -0.4751555 0.5225216 0.6806558 -0.5225216 0.5225216 0.6806558 -0.5725335 0.5225216 0.6806558 -0.6252316 0.5225216 0.6806558 -0.6806558 0.5225216 0.6806558 -0.7388448 0.5225216 0.6806558 -0.7998369 0.5225216 0.6806558 -0.8636691 0.5225216 0.6806558 -0.9303782 0.5225216 0.6806558 -1 0.5225216 0.6806558 -0 0.5725335 0.6806558 -0.002418731 0.5725335 0.6806558 -0.005155668 0.5725335 0.6806558 -0.009080105 0.5725335 0.6806558 -0.01434988 0.5725335 0.6806558 -0.02107202 0.5725335 0.6806558 -0.02934285 0.5725335 0.6806558 -0.03925039 0.5725335 0.6806558 -0.05087609 0.5725335 0.6806558 -0.06429595 0.5725335 0.6806558 -0.07958143 0.5725335 0.6806558 -0.0968001 0.5725335 0.6806558 -0.1160161 0.5725335 0.6806558 -0.1372908 0.5725335 0.6806558 -0.1606827 0.5725335 0.6806558 -0.1862481 0.5725335 0.6806558 -0.2140411 0.5725335 0.6806558 -0.2441142 0.5725335 0.6806558 -0.2765176 0.5725335 0.6806558 -0.3113005 0.5725335 0.6806558 -0.3485102 0.5725335 0.6806558 -0.388193 0.5725335 0.6806558 -0.4303934 0.5725335 0.6806558 -0.4751555 0.5725335 0.6806558 -0.5225216 0.5725335 0.6806558 -0.5725335 0.5725335 0.6806558 -0.6252316 0.5725335 0.6806558 -0.6806558 0.5725335 0.6806558 -0.7388448 0.5725335 0.6806558 -0.7998369 0.5725335 0.6806558 -0.8636691 0.5725335 0.6806558 -0.9303782 0.5725335 0.6806558 -1 0.5725335 0.6806558 -0 0.6252316 0.6806558 -0.002418731 0.6252316 0.6806558 -0.005155668 0.6252316 0.6806558 -0.009080105 0.6252316 0.6806558 -0.01434988 0.6252316 0.6806558 -0.02107202 0.6252316 0.6806558 -0.02934285 0.6252316 0.6806558 -0.03925039 0.6252316 0.6806558 -0.05087609 0.6252316 0.6806558 -0.06429595 0.6252316 0.6806558 -0.07958143 0.6252316 0.6806558 -0.0968001 0.6252316 0.6806558 -0.1160161 0.6252316 0.6806558 -0.1372908 0.6252316 0.6806558 -0.1606827 0.6252316 0.6806558 -0.1862481 0.6252316 0.6806558 -0.2140411 0.6252316 0.6806558 -0.2441142 0.6252316 0.6806558 -0.2765176 0.6252316 0.6806558 -0.3113005 0.6252316 0.6806558 -0.3485102 0.6252316 0.6806558 -0.388193 0.6252316 0.6806558 -0.4303934 0.6252316 0.6806558 -0.4751555 0.6252316 0.6806558 -0.5225216 0.6252316 0.6806558 -0.5725335 0.6252316 0.6806558 -0.6252316 0.6252316 0.6806558 -0.6806558 0.6252316 0.6806558 -0.7388448 0.6252316 0.6806558 -0.7998369 0.6252316 0.6806558 -0.8636691 0.6252316 0.6806558 -0.9303782 0.6252316 0.6806558 -1 0.6252316 0.6806558 -0 0.6806558 0.6806558 -0.002418731 0.6806558 0.6806558 -0.005155668 0.6806558 0.6806558 -0.009080105 0.6806558 0.6806558 -0.01434988 0.6806558 0.6806558 -0.02107202 0.6806558 0.6806558 -0.02934285 0.6806558 0.6806558 -0.03925039 0.6806558 0.6806558 -0.05087609 0.6806558 0.6806558 -0.06429595 0.6806558 0.6806558 -0.07958143 0.6806558 0.6806558 -0.0968001 0.6806558 0.6806558 -0.1160161 0.6806558 0.6806558 -0.1372908 0.6806558 0.6806558 -0.1606827 0.6806558 0.6806558 -0.1862481 0.6806558 0.6806558 -0.2140411 0.6806558 0.6806558 -0.2441142 0.6806558 0.6806558 -0.2765176 0.6806558 0.6806558 -0.3113005 0.6806558 0.6806558 -0.3485102 0.6806558 0.6806558 -0.388193 0.6806558 0.6806558 -0.4303934 0.6806558 0.6806558 -0.4751555 0.6806558 0.6806558 -0.5225216 0.6806558 0.6806558 -0.5725335 0.6806558 0.6806558 -0.6252316 0.6806558 0.6806558 -0.6806558 0.6806558 0.6806558 -0.7388448 0.6806558 0.6806558 -0.7998369 0.6806558 0.6806558 -0.8636691 0.6806558 0.6806558 -0.9303782 0.6806558 0.6806558 -1 0.6806558 0.6806558 -0 0.7388448 0.6806558 -0.002418731 0.7388448 0.6806558 -0.005155668 0.7388448 0.6806558 -0.009080105 0.7388448 0.6806558 -0.01434988 0.7388448 0.6806558 -0.02107202 0.7388448 0.6806558 -0.02934285 0.7388448 0.6806558 -0.03925039 0.7388448 0.6806558 -0.05087609 0.7388448 0.6806558 -0.06429595 0.7388448 0.6806558 -0.07958143 0.7388448 0.6806558 -0.0968001 0.7388448 0.6806558 -0.1160161 0.7388448 0.6806558 -0.1372908 0.7388448 0.6806558 -0.1606827 0.7388448 0.6806558 -0.1862481 0.7388448 0.6806558 -0.2140411 0.7388448 0.6806558 -0.2441142 0.7388448 0.6806558 -0.2765176 0.7388448 0.6806558 -0.3113005 0.7388448 0.6806558 -0.3485102 0.7388448 0.6806558 -0.388193 0.7388448 0.6806558 -0.4303934 0.7388448 0.6806558 -0.4751555 0.7388448 0.6806558 -0.5225216 0.7388448 0.6806558 -0.5725335 0.7388448 0.6806558 -0.6252316 0.7388448 0.6806558 -0.6806558 0.7388448 0.6806558 -0.7388448 0.7388448 0.6806558 -0.7998369 0.7388448 0.6806558 -0.8636691 0.7388448 0.6806558 -0.9303782 0.7388448 0.6806558 -1 0.7388448 0.6806558 -0 0.7998369 0.6806558 -0.002418731 0.7998369 0.6806558 -0.005155668 0.7998369 0.6806558 -0.009080105 0.7998369 0.6806558 -0.01434988 0.7998369 0.6806558 -0.02107202 0.7998369 0.6806558 -0.02934285 0.7998369 0.6806558 -0.03925039 0.7998369 0.6806558 -0.05087609 0.7998369 0.6806558 -0.06429595 0.7998369 0.6806558 -0.07958143 0.7998369 0.6806558 -0.0968001 0.7998369 0.6806558 -0.1160161 0.7998369 0.6806558 -0.1372908 0.7998369 0.6806558 -0.1606827 0.7998369 0.6806558 -0.1862481 0.7998369 0.6806558 -0.2140411 0.7998369 0.6806558 -0.2441142 0.7998369 0.6806558 -0.2765176 0.7998369 0.6806558 -0.3113005 0.7998369 0.6806558 -0.3485102 0.7998369 0.6806558 -0.388193 0.7998369 0.6806558 -0.4303934 0.7998369 0.6806558 -0.4751555 0.7998369 0.6806558 -0.5225216 0.7998369 0.6806558 -0.5725335 0.7998369 0.6806558 -0.6252316 0.7998369 0.6806558 -0.6806558 0.7998369 0.6806558 -0.7388448 0.7998369 0.6806558 -0.7998369 0.7998369 0.6806558 -0.8636691 0.7998369 0.6806558 -0.9303782 0.7998369 0.6806558 -1 0.7998369 0.6806558 -0 0.8636691 0.6806558 -0.002418731 0.8636691 0.6806558 -0.005155668 0.8636691 0.6806558 -0.009080105 0.8636691 0.6806558 -0.01434988 0.8636691 0.6806558 -0.02107202 0.8636691 0.6806558 -0.02934285 0.8636691 0.6806558 -0.03925039 0.8636691 0.6806558 -0.05087609 0.8636691 0.6806558 -0.06429595 0.8636691 0.6806558 -0.07958143 0.8636691 0.6806558 -0.0968001 0.8636691 0.6806558 -0.1160161 0.8636691 0.6806558 -0.1372908 0.8636691 0.6806558 -0.1606827 0.8636691 0.6806558 -0.1862481 0.8636691 0.6806558 -0.2140411 0.8636691 0.6806558 -0.2441142 0.8636691 0.6806558 -0.2765176 0.8636691 0.6806558 -0.3113005 0.8636691 0.6806558 -0.3485102 0.8636691 0.6806558 -0.388193 0.8636691 0.6806558 -0.4303934 0.8636691 0.6806558 -0.4751555 0.8636691 0.6806558 -0.5225216 0.8636691 0.6806558 -0.5725335 0.8636691 0.6806558 -0.6252316 0.8636691 0.6806558 -0.6806558 0.8636691 0.6806558 -0.7388448 0.8636691 0.6806558 -0.7998369 0.8636691 0.6806558 -0.8636691 0.8636691 0.6806558 -0.9303782 0.8636691 0.6806558 -1 0.8636691 0.6806558 -0 0.9303782 0.6806558 -0.002418731 0.9303782 0.6806558 -0.005155668 0.9303782 0.6806558 -0.009080105 0.9303782 0.6806558 -0.01434988 0.9303782 0.6806558 -0.02107202 0.9303782 0.6806558 -0.02934285 0.9303782 0.6806558 -0.03925039 0.9303782 0.6806558 -0.05087609 0.9303782 0.6806558 -0.06429595 0.9303782 0.6806558 -0.07958143 0.9303782 0.6806558 -0.0968001 0.9303782 0.6806558 -0.1160161 0.9303782 0.6806558 -0.1372908 0.9303782 0.6806558 -0.1606827 0.9303782 0.6806558 -0.1862481 0.9303782 0.6806558 -0.2140411 0.9303782 0.6806558 -0.2441142 0.9303782 0.6806558 -0.2765176 0.9303782 0.6806558 -0.3113005 0.9303782 0.6806558 -0.3485102 0.9303782 0.6806558 -0.388193 0.9303782 0.6806558 -0.4303934 0.9303782 0.6806558 -0.4751555 0.9303782 0.6806558 -0.5225216 0.9303782 0.6806558 -0.5725335 0.9303782 0.6806558 -0.6252316 0.9303782 0.6806558 -0.6806558 0.9303782 0.6806558 -0.7388448 0.9303782 0.6806558 -0.7998369 0.9303782 0.6806558 -0.8636691 0.9303782 0.6806558 -0.9303782 0.9303782 0.6806558 -1 0.9303782 0.6806558 -0 1 0.6806558 -0.002418731 1 0.6806558 -0.005155668 1 0.6806558 -0.009080105 1 0.6806558 -0.01434988 1 0.6806558 -0.02107202 1 0.6806558 -0.02934285 1 0.6806558 -0.03925039 1 0.6806558 -0.05087609 1 0.6806558 -0.06429595 1 0.6806558 -0.07958143 1 0.6806558 -0.0968001 1 0.6806558 -0.1160161 1 0.6806558 -0.1372908 1 0.6806558 -0.1606827 1 0.6806558 -0.1862481 1 0.6806558 -0.2140411 1 0.6806558 -0.2441142 1 0.6806558 -0.2765176 1 0.6806558 -0.3113005 1 0.6806558 -0.3485102 1 0.6806558 -0.388193 1 0.6806558 -0.4303934 1 0.6806558 -0.4751555 1 0.6806558 -0.5225216 1 0.6806558 -0.5725335 1 0.6806558 -0.6252316 1 0.6806558 -0.6806558 1 0.6806558 -0.7388448 1 0.6806558 -0.7998369 1 0.6806558 -0.8636691 1 0.6806558 -0.9303782 1 0.6806558 -1 1 0.6806558 -0 0 0.7388448 -0.002418731 0 0.7388448 -0.005155668 0 0.7388448 -0.009080105 0 0.7388448 -0.01434988 0 0.7388448 -0.02107202 0 0.7388448 -0.02934285 0 0.7388448 -0.03925039 0 0.7388448 -0.05087609 0 0.7388448 -0.06429595 0 0.7388448 -0.07958143 0 0.7388448 -0.0968001 0 0.7388448 -0.1160161 0 0.7388448 -0.1372908 0 0.7388448 -0.1606827 0 0.7388448 -0.1862481 0 0.7388448 -0.2140411 0 0.7388448 -0.2441142 0 0.7388448 -0.2765176 0 0.7388448 -0.3113005 0 0.7388448 -0.3485102 0 0.7388448 -0.388193 0 0.7388448 -0.4303934 0 0.7388448 -0.4751555 0 0.7388448 -0.5225216 0 0.7388448 -0.5725335 0 0.7388448 -0.6252316 0 0.7388448 -0.6806558 0 0.7388448 -0.7388448 0 0.7388448 -0.7998369 0 0.7388448 -0.8636691 0 0.7388448 -0.9303782 0 0.7388448 -1 0 0.7388448 -0 0.002418731 0.7388448 -0.002418731 0.002418731 0.7388448 -0.005155668 0.002418731 0.7388448 -0.009080105 0.002418731 0.7388448 -0.01434988 0.002418731 0.7388448 -0.02107202 0.002418731 0.7388448 -0.02934285 0.002418731 0.7388448 -0.03925039 0.002418731 0.7388448 -0.05087609 0.002418731 0.7388448 -0.06429595 0.002418731 0.7388448 -0.07958143 0.002418731 0.7388448 -0.0968001 0.002418731 0.7388448 -0.1160161 0.002418731 0.7388448 -0.1372908 0.002418731 0.7388448 -0.1606827 0.002418731 0.7388448 -0.1862481 0.002418731 0.7388448 -0.2140411 0.002418731 0.7388448 -0.2441142 0.002418731 0.7388448 -0.2765176 0.002418731 0.7388448 -0.3113005 0.002418731 0.7388448 -0.3485102 0.002418731 0.7388448 -0.388193 0.002418731 0.7388448 -0.4303934 0.002418731 0.7388448 -0.4751555 0.002418731 0.7388448 -0.5225216 0.002418731 0.7388448 -0.5725335 0.002418731 0.7388448 -0.6252316 0.002418731 0.7388448 -0.6806558 0.002418731 0.7388448 -0.7388448 0.002418731 0.7388448 -0.7998369 0.002418731 0.7388448 -0.8636691 0.002418731 0.7388448 -0.9303782 0.002418731 0.7388448 -1 0.002418731 0.7388448 -0 0.005155668 0.7388448 -0.002418731 0.005155668 0.7388448 -0.005155668 0.005155668 0.7388448 -0.009080105 0.005155668 0.7388448 -0.01434988 0.005155668 0.7388448 -0.02107202 0.005155668 0.7388448 -0.02934285 0.005155668 0.7388448 -0.03925039 0.005155668 0.7388448 -0.05087609 0.005155668 0.7388448 -0.06429595 0.005155668 0.7388448 -0.07958143 0.005155668 0.7388448 -0.0968001 0.005155668 0.7388448 -0.1160161 0.005155668 0.7388448 -0.1372908 0.005155668 0.7388448 -0.1606827 0.005155668 0.7388448 -0.1862481 0.005155668 0.7388448 -0.2140411 0.005155668 0.7388448 -0.2441142 0.005155668 0.7388448 -0.2765176 0.005155668 0.7388448 -0.3113005 0.005155668 0.7388448 -0.3485102 0.005155668 0.7388448 -0.388193 0.005155668 0.7388448 -0.4303934 0.005155668 0.7388448 -0.4751555 0.005155668 0.7388448 -0.5225216 0.005155668 0.7388448 -0.5725335 0.005155668 0.7388448 -0.6252316 0.005155668 0.7388448 -0.6806558 0.005155668 0.7388448 -0.7388448 0.005155668 0.7388448 -0.7998369 0.005155668 0.7388448 -0.8636691 0.005155668 0.7388448 -0.9303782 0.005155668 0.7388448 -1 0.005155668 0.7388448 -0 0.009080105 0.7388448 -0.002418731 0.009080105 0.7388448 -0.005155668 0.009080105 0.7388448 -0.009080105 0.009080105 0.7388448 -0.01434988 0.009080105 0.7388448 -0.02107202 0.009080105 0.7388448 -0.02934285 0.009080105 0.7388448 -0.03925039 0.009080105 0.7388448 -0.05087609 0.009080105 0.7388448 -0.06429595 0.009080105 0.7388448 -0.07958143 0.009080105 0.7388448 -0.0968001 0.009080105 0.7388448 -0.1160161 0.009080105 0.7388448 -0.1372908 0.009080105 0.7388448 -0.1606827 0.009080105 0.7388448 -0.1862481 0.009080105 0.7388448 -0.2140411 0.009080105 0.7388448 -0.2441142 0.009080105 0.7388448 -0.2765176 0.009080105 0.7388448 -0.3113005 0.009080105 0.7388448 -0.3485102 0.009080105 0.7388448 -0.388193 0.009080105 0.7388448 -0.4303934 0.009080105 0.7388448 -0.4751555 0.009080105 0.7388448 -0.5225216 0.009080105 0.7388448 -0.5725335 0.009080105 0.7388448 -0.6252316 0.009080105 0.7388448 -0.6806558 0.009080105 0.7388448 -0.7388448 0.009080105 0.7388448 -0.7998369 0.009080105 0.7388448 -0.8636691 0.009080105 0.7388448 -0.9303782 0.009080105 0.7388448 -1 0.009080105 0.7388448 -0 0.01434988 0.7388448 -0.002418731 0.01434988 0.7388448 -0.005155668 0.01434988 0.7388448 -0.009080105 0.01434988 0.7388448 -0.01434988 0.01434988 0.7388448 -0.02107202 0.01434988 0.7388448 -0.02934285 0.01434988 0.7388448 -0.03925039 0.01434988 0.7388448 -0.05087609 0.01434988 0.7388448 -0.06429595 0.01434988 0.7388448 -0.07958143 0.01434988 0.7388448 -0.0968001 0.01434988 0.7388448 -0.1160161 0.01434988 0.7388448 -0.1372908 0.01434988 0.7388448 -0.1606827 0.01434988 0.7388448 -0.1862481 0.01434988 0.7388448 -0.2140411 0.01434988 0.7388448 -0.2441142 0.01434988 0.7388448 -0.2765176 0.01434988 0.7388448 -0.3113005 0.01434988 0.7388448 -0.3485102 0.01434988 0.7388448 -0.388193 0.01434988 0.7388448 -0.4303934 0.01434988 0.7388448 -0.4751555 0.01434988 0.7388448 -0.5225216 0.01434988 0.7388448 -0.5725335 0.01434988 0.7388448 -0.6252316 0.01434988 0.7388448 -0.6806558 0.01434988 0.7388448 -0.7388448 0.01434988 0.7388448 -0.7998369 0.01434988 0.7388448 -0.8636691 0.01434988 0.7388448 -0.9303782 0.01434988 0.7388448 -1 0.01434988 0.7388448 -0 0.02107202 0.7388448 -0.002418731 0.02107202 0.7388448 -0.005155668 0.02107202 0.7388448 -0.009080105 0.02107202 0.7388448 -0.01434988 0.02107202 0.7388448 -0.02107202 0.02107202 0.7388448 -0.02934285 0.02107202 0.7388448 -0.03925039 0.02107202 0.7388448 -0.05087609 0.02107202 0.7388448 -0.06429595 0.02107202 0.7388448 -0.07958143 0.02107202 0.7388448 -0.0968001 0.02107202 0.7388448 -0.1160161 0.02107202 0.7388448 -0.1372908 0.02107202 0.7388448 -0.1606827 0.02107202 0.7388448 -0.1862481 0.02107202 0.7388448 -0.2140411 0.02107202 0.7388448 -0.2441142 0.02107202 0.7388448 -0.2765176 0.02107202 0.7388448 -0.3113005 0.02107202 0.7388448 -0.3485102 0.02107202 0.7388448 -0.388193 0.02107202 0.7388448 -0.4303934 0.02107202 0.7388448 -0.4751555 0.02107202 0.7388448 -0.5225216 0.02107202 0.7388448 -0.5725335 0.02107202 0.7388448 -0.6252316 0.02107202 0.7388448 -0.6806558 0.02107202 0.7388448 -0.7388448 0.02107202 0.7388448 -0.7998369 0.02107202 0.7388448 -0.8636691 0.02107202 0.7388448 -0.9303782 0.02107202 0.7388448 -1 0.02107202 0.7388448 -0 0.02934285 0.7388448 -0.002418731 0.02934285 0.7388448 -0.005155668 0.02934285 0.7388448 -0.009080105 0.02934285 0.7388448 -0.01434988 0.02934285 0.7388448 -0.02107202 0.02934285 0.7388448 -0.02934285 0.02934285 0.7388448 -0.03925039 0.02934285 0.7388448 -0.05087609 0.02934285 0.7388448 -0.06429595 0.02934285 0.7388448 -0.07958143 0.02934285 0.7388448 -0.0968001 0.02934285 0.7388448 -0.1160161 0.02934285 0.7388448 -0.1372908 0.02934285 0.7388448 -0.1606827 0.02934285 0.7388448 -0.1862481 0.02934285 0.7388448 -0.2140411 0.02934285 0.7388448 -0.2441142 0.02934285 0.7388448 -0.2765176 0.02934285 0.7388448 -0.3113005 0.02934285 0.7388448 -0.3485102 0.02934285 0.7388448 -0.388193 0.02934285 0.7388448 -0.4303934 0.02934285 0.7388448 -0.4751555 0.02934285 0.7388448 -0.5225216 0.02934285 0.7388448 -0.5725335 0.02934285 0.7388448 -0.6252316 0.02934285 0.7388448 -0.6806558 0.02934285 0.7388448 -0.7388448 0.02934285 0.7388448 -0.7998369 0.02934285 0.7388448 -0.8636691 0.02934285 0.7388448 -0.9303782 0.02934285 0.7388448 -1 0.02934285 0.7388448 -0 0.03925039 0.7388448 -0.002418731 0.03925039 0.7388448 -0.005155668 0.03925039 0.7388448 -0.009080105 0.03925039 0.7388448 -0.01434988 0.03925039 0.7388448 -0.02107202 0.03925039 0.7388448 -0.02934285 0.03925039 0.7388448 -0.03925039 0.03925039 0.7388448 -0.05087609 0.03925039 0.7388448 -0.06429595 0.03925039 0.7388448 -0.07958143 0.03925039 0.7388448 -0.0968001 0.03925039 0.7388448 -0.1160161 0.03925039 0.7388448 -0.1372908 0.03925039 0.7388448 -0.1606827 0.03925039 0.7388448 -0.1862481 0.03925039 0.7388448 -0.2140411 0.03925039 0.7388448 -0.2441142 0.03925039 0.7388448 -0.2765176 0.03925039 0.7388448 -0.3113005 0.03925039 0.7388448 -0.3485102 0.03925039 0.7388448 -0.388193 0.03925039 0.7388448 -0.4303934 0.03925039 0.7388448 -0.4751555 0.03925039 0.7388448 -0.5225216 0.03925039 0.7388448 -0.5725335 0.03925039 0.7388448 -0.6252316 0.03925039 0.7388448 -0.6806558 0.03925039 0.7388448 -0.7388448 0.03925039 0.7388448 -0.7998369 0.03925039 0.7388448 -0.8636691 0.03925039 0.7388448 -0.9303782 0.03925039 0.7388448 -1 0.03925039 0.7388448 -0 0.05087609 0.7388448 -0.002418731 0.05087609 0.7388448 -0.005155668 0.05087609 0.7388448 -0.009080105 0.05087609 0.7388448 -0.01434988 0.05087609 0.7388448 -0.02107202 0.05087609 0.7388448 -0.02934285 0.05087609 0.7388448 -0.03925039 0.05087609 0.7388448 -0.05087609 0.05087609 0.7388448 -0.06429595 0.05087609 0.7388448 -0.07958143 0.05087609 0.7388448 -0.0968001 0.05087609 0.7388448 -0.1160161 0.05087609 0.7388448 -0.1372908 0.05087609 0.7388448 -0.1606827 0.05087609 0.7388448 -0.1862481 0.05087609 0.7388448 -0.2140411 0.05087609 0.7388448 -0.2441142 0.05087609 0.7388448 -0.2765176 0.05087609 0.7388448 -0.3113005 0.05087609 0.7388448 -0.3485102 0.05087609 0.7388448 -0.388193 0.05087609 0.7388448 -0.4303934 0.05087609 0.7388448 -0.4751555 0.05087609 0.7388448 -0.5225216 0.05087609 0.7388448 -0.5725335 0.05087609 0.7388448 -0.6252316 0.05087609 0.7388448 -0.6806558 0.05087609 0.7388448 -0.7388448 0.05087609 0.7388448 -0.7998369 0.05087609 0.7388448 -0.8636691 0.05087609 0.7388448 -0.9303782 0.05087609 0.7388448 -1 0.05087609 0.7388448 -0 0.06429595 0.7388448 -0.002418731 0.06429595 0.7388448 -0.005155668 0.06429595 0.7388448 -0.009080105 0.06429595 0.7388448 -0.01434988 0.06429595 0.7388448 -0.02107202 0.06429595 0.7388448 -0.02934285 0.06429595 0.7388448 -0.03925039 0.06429595 0.7388448 -0.05087609 0.06429595 0.7388448 -0.06429595 0.06429595 0.7388448 -0.07958143 0.06429595 0.7388448 -0.0968001 0.06429595 0.7388448 -0.1160161 0.06429595 0.7388448 -0.1372908 0.06429595 0.7388448 -0.1606827 0.06429595 0.7388448 -0.1862481 0.06429595 0.7388448 -0.2140411 0.06429595 0.7388448 -0.2441142 0.06429595 0.7388448 -0.2765176 0.06429595 0.7388448 -0.3113005 0.06429595 0.7388448 -0.3485102 0.06429595 0.7388448 -0.388193 0.06429595 0.7388448 -0.4303934 0.06429595 0.7388448 -0.4751555 0.06429595 0.7388448 -0.5225216 0.06429595 0.7388448 -0.5725335 0.06429595 0.7388448 -0.6252316 0.06429595 0.7388448 -0.6806558 0.06429595 0.7388448 -0.7388448 0.06429595 0.7388448 -0.7998369 0.06429595 0.7388448 -0.8636691 0.06429595 0.7388448 -0.9303782 0.06429595 0.7388448 -1 0.06429595 0.7388448 -0 0.07958143 0.7388448 -0.002418731 0.07958143 0.7388448 -0.005155668 0.07958143 0.7388448 -0.009080105 0.07958143 0.7388448 -0.01434988 0.07958143 0.7388448 -0.02107202 0.07958143 0.7388448 -0.02934285 0.07958143 0.7388448 -0.03925039 0.07958143 0.7388448 -0.05087609 0.07958143 0.7388448 -0.06429595 0.07958143 0.7388448 -0.07958143 0.07958143 0.7388448 -0.0968001 0.07958143 0.7388448 -0.1160161 0.07958143 0.7388448 -0.1372908 0.07958143 0.7388448 -0.1606827 0.07958143 0.7388448 -0.1862481 0.07958143 0.7388448 -0.2140411 0.07958143 0.7388448 -0.2441142 0.07958143 0.7388448 -0.2765176 0.07958143 0.7388448 -0.3113005 0.07958143 0.7388448 -0.3485102 0.07958143 0.7388448 -0.388193 0.07958143 0.7388448 -0.4303934 0.07958143 0.7388448 -0.4751555 0.07958143 0.7388448 -0.5225216 0.07958143 0.7388448 -0.5725335 0.07958143 0.7388448 -0.6252316 0.07958143 0.7388448 -0.6806558 0.07958143 0.7388448 -0.7388448 0.07958143 0.7388448 -0.7998369 0.07958143 0.7388448 -0.8636691 0.07958143 0.7388448 -0.9303782 0.07958143 0.7388448 -1 0.07958143 0.7388448 -0 0.0968001 0.7388448 -0.002418731 0.0968001 0.7388448 -0.005155668 0.0968001 0.7388448 -0.009080105 0.0968001 0.7388448 -0.01434988 0.0968001 0.7388448 -0.02107202 0.0968001 0.7388448 -0.02934285 0.0968001 0.7388448 -0.03925039 0.0968001 0.7388448 -0.05087609 0.0968001 0.7388448 -0.06429595 0.0968001 0.7388448 -0.07958143 0.0968001 0.7388448 -0.0968001 0.0968001 0.7388448 -0.1160161 0.0968001 0.7388448 -0.1372908 0.0968001 0.7388448 -0.1606827 0.0968001 0.7388448 -0.1862481 0.0968001 0.7388448 -0.2140411 0.0968001 0.7388448 -0.2441142 0.0968001 0.7388448 -0.2765176 0.0968001 0.7388448 -0.3113005 0.0968001 0.7388448 -0.3485102 0.0968001 0.7388448 -0.388193 0.0968001 0.7388448 -0.4303934 0.0968001 0.7388448 -0.4751555 0.0968001 0.7388448 -0.5225216 0.0968001 0.7388448 -0.5725335 0.0968001 0.7388448 -0.6252316 0.0968001 0.7388448 -0.6806558 0.0968001 0.7388448 -0.7388448 0.0968001 0.7388448 -0.7998369 0.0968001 0.7388448 -0.8636691 0.0968001 0.7388448 -0.9303782 0.0968001 0.7388448 -1 0.0968001 0.7388448 -0 0.1160161 0.7388448 -0.002418731 0.1160161 0.7388448 -0.005155668 0.1160161 0.7388448 -0.009080105 0.1160161 0.7388448 -0.01434988 0.1160161 0.7388448 -0.02107202 0.1160161 0.7388448 -0.02934285 0.1160161 0.7388448 -0.03925039 0.1160161 0.7388448 -0.05087609 0.1160161 0.7388448 -0.06429595 0.1160161 0.7388448 -0.07958143 0.1160161 0.7388448 -0.0968001 0.1160161 0.7388448 -0.1160161 0.1160161 0.7388448 -0.1372908 0.1160161 0.7388448 -0.1606827 0.1160161 0.7388448 -0.1862481 0.1160161 0.7388448 -0.2140411 0.1160161 0.7388448 -0.2441142 0.1160161 0.7388448 -0.2765176 0.1160161 0.7388448 -0.3113005 0.1160161 0.7388448 -0.3485102 0.1160161 0.7388448 -0.388193 0.1160161 0.7388448 -0.4303934 0.1160161 0.7388448 -0.4751555 0.1160161 0.7388448 -0.5225216 0.1160161 0.7388448 -0.5725335 0.1160161 0.7388448 -0.6252316 0.1160161 0.7388448 -0.6806558 0.1160161 0.7388448 -0.7388448 0.1160161 0.7388448 -0.7998369 0.1160161 0.7388448 -0.8636691 0.1160161 0.7388448 -0.9303782 0.1160161 0.7388448 -1 0.1160161 0.7388448 -0 0.1372908 0.7388448 -0.002418731 0.1372908 0.7388448 -0.005155668 0.1372908 0.7388448 -0.009080105 0.1372908 0.7388448 -0.01434988 0.1372908 0.7388448 -0.02107202 0.1372908 0.7388448 -0.02934285 0.1372908 0.7388448 -0.03925039 0.1372908 0.7388448 -0.05087609 0.1372908 0.7388448 -0.06429595 0.1372908 0.7388448 -0.07958143 0.1372908 0.7388448 -0.0968001 0.1372908 0.7388448 -0.1160161 0.1372908 0.7388448 -0.1372908 0.1372908 0.7388448 -0.1606827 0.1372908 0.7388448 -0.1862481 0.1372908 0.7388448 -0.2140411 0.1372908 0.7388448 -0.2441142 0.1372908 0.7388448 -0.2765176 0.1372908 0.7388448 -0.3113005 0.1372908 0.7388448 -0.3485102 0.1372908 0.7388448 -0.388193 0.1372908 0.7388448 -0.4303934 0.1372908 0.7388448 -0.4751555 0.1372908 0.7388448 -0.5225216 0.1372908 0.7388448 -0.5725335 0.1372908 0.7388448 -0.6252316 0.1372908 0.7388448 -0.6806558 0.1372908 0.7388448 -0.7388448 0.1372908 0.7388448 -0.7998369 0.1372908 0.7388448 -0.8636691 0.1372908 0.7388448 -0.9303782 0.1372908 0.7388448 -1 0.1372908 0.7388448 -0 0.1606827 0.7388448 -0.002418731 0.1606827 0.7388448 -0.005155668 0.1606827 0.7388448 -0.009080105 0.1606827 0.7388448 -0.01434988 0.1606827 0.7388448 -0.02107202 0.1606827 0.7388448 -0.02934285 0.1606827 0.7388448 -0.03925039 0.1606827 0.7388448 -0.05087609 0.1606827 0.7388448 -0.06429595 0.1606827 0.7388448 -0.07958143 0.1606827 0.7388448 -0.0968001 0.1606827 0.7388448 -0.1160161 0.1606827 0.7388448 -0.1372908 0.1606827 0.7388448 -0.1606827 0.1606827 0.7388448 -0.1862481 0.1606827 0.7388448 -0.2140411 0.1606827 0.7388448 -0.2441142 0.1606827 0.7388448 -0.2765176 0.1606827 0.7388448 -0.3113005 0.1606827 0.7388448 -0.3485102 0.1606827 0.7388448 -0.388193 0.1606827 0.7388448 -0.4303934 0.1606827 0.7388448 -0.4751555 0.1606827 0.7388448 -0.5225216 0.1606827 0.7388448 -0.5725335 0.1606827 0.7388448 -0.6252316 0.1606827 0.7388448 -0.6806558 0.1606827 0.7388448 -0.7388448 0.1606827 0.7388448 -0.7998369 0.1606827 0.7388448 -0.8636691 0.1606827 0.7388448 -0.9303782 0.1606827 0.7388448 -1 0.1606827 0.7388448 -0 0.1862481 0.7388448 -0.002418731 0.1862481 0.7388448 -0.005155668 0.1862481 0.7388448 -0.009080105 0.1862481 0.7388448 -0.01434988 0.1862481 0.7388448 -0.02107202 0.1862481 0.7388448 -0.02934285 0.1862481 0.7388448 -0.03925039 0.1862481 0.7388448 -0.05087609 0.1862481 0.7388448 -0.06429595 0.1862481 0.7388448 -0.07958143 0.1862481 0.7388448 -0.0968001 0.1862481 0.7388448 -0.1160161 0.1862481 0.7388448 -0.1372908 0.1862481 0.7388448 -0.1606827 0.1862481 0.7388448 -0.1862481 0.1862481 0.7388448 -0.2140411 0.1862481 0.7388448 -0.2441142 0.1862481 0.7388448 -0.2765176 0.1862481 0.7388448 -0.3113005 0.1862481 0.7388448 -0.3485102 0.1862481 0.7388448 -0.388193 0.1862481 0.7388448 -0.4303934 0.1862481 0.7388448 -0.4751555 0.1862481 0.7388448 -0.5225216 0.1862481 0.7388448 -0.5725335 0.1862481 0.7388448 -0.6252316 0.1862481 0.7388448 -0.6806558 0.1862481 0.7388448 -0.7388448 0.1862481 0.7388448 -0.7998369 0.1862481 0.7388448 -0.8636691 0.1862481 0.7388448 -0.9303782 0.1862481 0.7388448 -1 0.1862481 0.7388448 -0 0.2140411 0.7388448 -0.002418731 0.2140411 0.7388448 -0.005155668 0.2140411 0.7388448 -0.009080105 0.2140411 0.7388448 -0.01434988 0.2140411 0.7388448 -0.02107202 0.2140411 0.7388448 -0.02934285 0.2140411 0.7388448 -0.03925039 0.2140411 0.7388448 -0.05087609 0.2140411 0.7388448 -0.06429595 0.2140411 0.7388448 -0.07958143 0.2140411 0.7388448 -0.0968001 0.2140411 0.7388448 -0.1160161 0.2140411 0.7388448 -0.1372908 0.2140411 0.7388448 -0.1606827 0.2140411 0.7388448 -0.1862481 0.2140411 0.7388448 -0.2140411 0.2140411 0.7388448 -0.2441142 0.2140411 0.7388448 -0.2765176 0.2140411 0.7388448 -0.3113005 0.2140411 0.7388448 -0.3485102 0.2140411 0.7388448 -0.388193 0.2140411 0.7388448 -0.4303934 0.2140411 0.7388448 -0.4751555 0.2140411 0.7388448 -0.5225216 0.2140411 0.7388448 -0.5725335 0.2140411 0.7388448 -0.6252316 0.2140411 0.7388448 -0.6806558 0.2140411 0.7388448 -0.7388448 0.2140411 0.7388448 -0.7998369 0.2140411 0.7388448 -0.8636691 0.2140411 0.7388448 -0.9303782 0.2140411 0.7388448 -1 0.2140411 0.7388448 -0 0.2441142 0.7388448 -0.002418731 0.2441142 0.7388448 -0.005155668 0.2441142 0.7388448 -0.009080105 0.2441142 0.7388448 -0.01434988 0.2441142 0.7388448 -0.02107202 0.2441142 0.7388448 -0.02934285 0.2441142 0.7388448 -0.03925039 0.2441142 0.7388448 -0.05087609 0.2441142 0.7388448 -0.06429595 0.2441142 0.7388448 -0.07958143 0.2441142 0.7388448 -0.0968001 0.2441142 0.7388448 -0.1160161 0.2441142 0.7388448 -0.1372908 0.2441142 0.7388448 -0.1606827 0.2441142 0.7388448 -0.1862481 0.2441142 0.7388448 -0.2140411 0.2441142 0.7388448 -0.2441142 0.2441142 0.7388448 -0.2765176 0.2441142 0.7388448 -0.3113005 0.2441142 0.7388448 -0.3485102 0.2441142 0.7388448 -0.388193 0.2441142 0.7388448 -0.4303934 0.2441142 0.7388448 -0.4751555 0.2441142 0.7388448 -0.5225216 0.2441142 0.7388448 -0.5725335 0.2441142 0.7388448 -0.6252316 0.2441142 0.7388448 -0.6806558 0.2441142 0.7388448 -0.7388448 0.2441142 0.7388448 -0.7998369 0.2441142 0.7388448 -0.8636691 0.2441142 0.7388448 -0.9303782 0.2441142 0.7388448 -1 0.2441142 0.7388448 -0 0.2765176 0.7388448 -0.002418731 0.2765176 0.7388448 -0.005155668 0.2765176 0.7388448 -0.009080105 0.2765176 0.7388448 -0.01434988 0.2765176 0.7388448 -0.02107202 0.2765176 0.7388448 -0.02934285 0.2765176 0.7388448 -0.03925039 0.2765176 0.7388448 -0.05087609 0.2765176 0.7388448 -0.06429595 0.2765176 0.7388448 -0.07958143 0.2765176 0.7388448 -0.0968001 0.2765176 0.7388448 -0.1160161 0.2765176 0.7388448 -0.1372908 0.2765176 0.7388448 -0.1606827 0.2765176 0.7388448 -0.1862481 0.2765176 0.7388448 -0.2140411 0.2765176 0.7388448 -0.2441142 0.2765176 0.7388448 -0.2765176 0.2765176 0.7388448 -0.3113005 0.2765176 0.7388448 -0.3485102 0.2765176 0.7388448 -0.388193 0.2765176 0.7388448 -0.4303934 0.2765176 0.7388448 -0.4751555 0.2765176 0.7388448 -0.5225216 0.2765176 0.7388448 -0.5725335 0.2765176 0.7388448 -0.6252316 0.2765176 0.7388448 -0.6806558 0.2765176 0.7388448 -0.7388448 0.2765176 0.7388448 -0.7998369 0.2765176 0.7388448 -0.8636691 0.2765176 0.7388448 -0.9303782 0.2765176 0.7388448 -1 0.2765176 0.7388448 -0 0.3113005 0.7388448 -0.002418731 0.3113005 0.7388448 -0.005155668 0.3113005 0.7388448 -0.009080105 0.3113005 0.7388448 -0.01434988 0.3113005 0.7388448 -0.02107202 0.3113005 0.7388448 -0.02934285 0.3113005 0.7388448 -0.03925039 0.3113005 0.7388448 -0.05087609 0.3113005 0.7388448 -0.06429595 0.3113005 0.7388448 -0.07958143 0.3113005 0.7388448 -0.0968001 0.3113005 0.7388448 -0.1160161 0.3113005 0.7388448 -0.1372908 0.3113005 0.7388448 -0.1606827 0.3113005 0.7388448 -0.1862481 0.3113005 0.7388448 -0.2140411 0.3113005 0.7388448 -0.2441142 0.3113005 0.7388448 -0.2765176 0.3113005 0.7388448 -0.3113005 0.3113005 0.7388448 -0.3485102 0.3113005 0.7388448 -0.388193 0.3113005 0.7388448 -0.4303934 0.3113005 0.7388448 -0.4751555 0.3113005 0.7388448 -0.5225216 0.3113005 0.7388448 -0.5725335 0.3113005 0.7388448 -0.6252316 0.3113005 0.7388448 -0.6806558 0.3113005 0.7388448 -0.7388448 0.3113005 0.7388448 -0.7998369 0.3113005 0.7388448 -0.8636691 0.3113005 0.7388448 -0.9303782 0.3113005 0.7388448 -1 0.3113005 0.7388448 -0 0.3485102 0.7388448 -0.002418731 0.3485102 0.7388448 -0.005155668 0.3485102 0.7388448 -0.009080105 0.3485102 0.7388448 -0.01434988 0.3485102 0.7388448 -0.02107202 0.3485102 0.7388448 -0.02934285 0.3485102 0.7388448 -0.03925039 0.3485102 0.7388448 -0.05087609 0.3485102 0.7388448 -0.06429595 0.3485102 0.7388448 -0.07958143 0.3485102 0.7388448 -0.0968001 0.3485102 0.7388448 -0.1160161 0.3485102 0.7388448 -0.1372908 0.3485102 0.7388448 -0.1606827 0.3485102 0.7388448 -0.1862481 0.3485102 0.7388448 -0.2140411 0.3485102 0.7388448 -0.2441142 0.3485102 0.7388448 -0.2765176 0.3485102 0.7388448 -0.3113005 0.3485102 0.7388448 -0.3485102 0.3485102 0.7388448 -0.388193 0.3485102 0.7388448 -0.4303934 0.3485102 0.7388448 -0.4751555 0.3485102 0.7388448 -0.5225216 0.3485102 0.7388448 -0.5725335 0.3485102 0.7388448 -0.6252316 0.3485102 0.7388448 -0.6806558 0.3485102 0.7388448 -0.7388448 0.3485102 0.7388448 -0.7998369 0.3485102 0.7388448 -0.8636691 0.3485102 0.7388448 -0.9303782 0.3485102 0.7388448 -1 0.3485102 0.7388448 -0 0.388193 0.7388448 -0.002418731 0.388193 0.7388448 -0.005155668 0.388193 0.7388448 -0.009080105 0.388193 0.7388448 -0.01434988 0.388193 0.7388448 -0.02107202 0.388193 0.7388448 -0.02934285 0.388193 0.7388448 -0.03925039 0.388193 0.7388448 -0.05087609 0.388193 0.7388448 -0.06429595 0.388193 0.7388448 -0.07958143 0.388193 0.7388448 -0.0968001 0.388193 0.7388448 -0.1160161 0.388193 0.7388448 -0.1372908 0.388193 0.7388448 -0.1606827 0.388193 0.7388448 -0.1862481 0.388193 0.7388448 -0.2140411 0.388193 0.7388448 -0.2441142 0.388193 0.7388448 -0.2765176 0.388193 0.7388448 -0.3113005 0.388193 0.7388448 -0.3485102 0.388193 0.7388448 -0.388193 0.388193 0.7388448 -0.4303934 0.388193 0.7388448 -0.4751555 0.388193 0.7388448 -0.5225216 0.388193 0.7388448 -0.5725335 0.388193 0.7388448 -0.6252316 0.388193 0.7388448 -0.6806558 0.388193 0.7388448 -0.7388448 0.388193 0.7388448 -0.7998369 0.388193 0.7388448 -0.8636691 0.388193 0.7388448 -0.9303782 0.388193 0.7388448 -1 0.388193 0.7388448 -0 0.4303934 0.7388448 -0.002418731 0.4303934 0.7388448 -0.005155668 0.4303934 0.7388448 -0.009080105 0.4303934 0.7388448 -0.01434988 0.4303934 0.7388448 -0.02107202 0.4303934 0.7388448 -0.02934285 0.4303934 0.7388448 -0.03925039 0.4303934 0.7388448 -0.05087609 0.4303934 0.7388448 -0.06429595 0.4303934 0.7388448 -0.07958143 0.4303934 0.7388448 -0.0968001 0.4303934 0.7388448 -0.1160161 0.4303934 0.7388448 -0.1372908 0.4303934 0.7388448 -0.1606827 0.4303934 0.7388448 -0.1862481 0.4303934 0.7388448 -0.2140411 0.4303934 0.7388448 -0.2441142 0.4303934 0.7388448 -0.2765176 0.4303934 0.7388448 -0.3113005 0.4303934 0.7388448 -0.3485102 0.4303934 0.7388448 -0.388193 0.4303934 0.7388448 -0.4303934 0.4303934 0.7388448 -0.4751555 0.4303934 0.7388448 -0.5225216 0.4303934 0.7388448 -0.5725335 0.4303934 0.7388448 -0.6252316 0.4303934 0.7388448 -0.6806558 0.4303934 0.7388448 -0.7388448 0.4303934 0.7388448 -0.7998369 0.4303934 0.7388448 -0.8636691 0.4303934 0.7388448 -0.9303782 0.4303934 0.7388448 -1 0.4303934 0.7388448 -0 0.4751555 0.7388448 -0.002418731 0.4751555 0.7388448 -0.005155668 0.4751555 0.7388448 -0.009080105 0.4751555 0.7388448 -0.01434988 0.4751555 0.7388448 -0.02107202 0.4751555 0.7388448 -0.02934285 0.4751555 0.7388448 -0.03925039 0.4751555 0.7388448 -0.05087609 0.4751555 0.7388448 -0.06429595 0.4751555 0.7388448 -0.07958143 0.4751555 0.7388448 -0.0968001 0.4751555 0.7388448 -0.1160161 0.4751555 0.7388448 -0.1372908 0.4751555 0.7388448 -0.1606827 0.4751555 0.7388448 -0.1862481 0.4751555 0.7388448 -0.2140411 0.4751555 0.7388448 -0.2441142 0.4751555 0.7388448 -0.2765176 0.4751555 0.7388448 -0.3113005 0.4751555 0.7388448 -0.3485102 0.4751555 0.7388448 -0.388193 0.4751555 0.7388448 -0.4303934 0.4751555 0.7388448 -0.4751555 0.4751555 0.7388448 -0.5225216 0.4751555 0.7388448 -0.5725335 0.4751555 0.7388448 -0.6252316 0.4751555 0.7388448 -0.6806558 0.4751555 0.7388448 -0.7388448 0.4751555 0.7388448 -0.7998369 0.4751555 0.7388448 -0.8636691 0.4751555 0.7388448 -0.9303782 0.4751555 0.7388448 -1 0.4751555 0.7388448 -0 0.5225216 0.7388448 -0.002418731 0.5225216 0.7388448 -0.005155668 0.5225216 0.7388448 -0.009080105 0.5225216 0.7388448 -0.01434988 0.5225216 0.7388448 -0.02107202 0.5225216 0.7388448 -0.02934285 0.5225216 0.7388448 -0.03925039 0.5225216 0.7388448 -0.05087609 0.5225216 0.7388448 -0.06429595 0.5225216 0.7388448 -0.07958143 0.5225216 0.7388448 -0.0968001 0.5225216 0.7388448 -0.1160161 0.5225216 0.7388448 -0.1372908 0.5225216 0.7388448 -0.1606827 0.5225216 0.7388448 -0.1862481 0.5225216 0.7388448 -0.2140411 0.5225216 0.7388448 -0.2441142 0.5225216 0.7388448 -0.2765176 0.5225216 0.7388448 -0.3113005 0.5225216 0.7388448 -0.3485102 0.5225216 0.7388448 -0.388193 0.5225216 0.7388448 -0.4303934 0.5225216 0.7388448 -0.4751555 0.5225216 0.7388448 -0.5225216 0.5225216 0.7388448 -0.5725335 0.5225216 0.7388448 -0.6252316 0.5225216 0.7388448 -0.6806558 0.5225216 0.7388448 -0.7388448 0.5225216 0.7388448 -0.7998369 0.5225216 0.7388448 -0.8636691 0.5225216 0.7388448 -0.9303782 0.5225216 0.7388448 -1 0.5225216 0.7388448 -0 0.5725335 0.7388448 -0.002418731 0.5725335 0.7388448 -0.005155668 0.5725335 0.7388448 -0.009080105 0.5725335 0.7388448 -0.01434988 0.5725335 0.7388448 -0.02107202 0.5725335 0.7388448 -0.02934285 0.5725335 0.7388448 -0.03925039 0.5725335 0.7388448 -0.05087609 0.5725335 0.7388448 -0.06429595 0.5725335 0.7388448 -0.07958143 0.5725335 0.7388448 -0.0968001 0.5725335 0.7388448 -0.1160161 0.5725335 0.7388448 -0.1372908 0.5725335 0.7388448 -0.1606827 0.5725335 0.7388448 -0.1862481 0.5725335 0.7388448 -0.2140411 0.5725335 0.7388448 -0.2441142 0.5725335 0.7388448 -0.2765176 0.5725335 0.7388448 -0.3113005 0.5725335 0.7388448 -0.3485102 0.5725335 0.7388448 -0.388193 0.5725335 0.7388448 -0.4303934 0.5725335 0.7388448 -0.4751555 0.5725335 0.7388448 -0.5225216 0.5725335 0.7388448 -0.5725335 0.5725335 0.7388448 -0.6252316 0.5725335 0.7388448 -0.6806558 0.5725335 0.7388448 -0.7388448 0.5725335 0.7388448 -0.7998369 0.5725335 0.7388448 -0.8636691 0.5725335 0.7388448 -0.9303782 0.5725335 0.7388448 -1 0.5725335 0.7388448 -0 0.6252316 0.7388448 -0.002418731 0.6252316 0.7388448 -0.005155668 0.6252316 0.7388448 -0.009080105 0.6252316 0.7388448 -0.01434988 0.6252316 0.7388448 -0.02107202 0.6252316 0.7388448 -0.02934285 0.6252316 0.7388448 -0.03925039 0.6252316 0.7388448 -0.05087609 0.6252316 0.7388448 -0.06429595 0.6252316 0.7388448 -0.07958143 0.6252316 0.7388448 -0.0968001 0.6252316 0.7388448 -0.1160161 0.6252316 0.7388448 -0.1372908 0.6252316 0.7388448 -0.1606827 0.6252316 0.7388448 -0.1862481 0.6252316 0.7388448 -0.2140411 0.6252316 0.7388448 -0.2441142 0.6252316 0.7388448 -0.2765176 0.6252316 0.7388448 -0.3113005 0.6252316 0.7388448 -0.3485102 0.6252316 0.7388448 -0.388193 0.6252316 0.7388448 -0.4303934 0.6252316 0.7388448 -0.4751555 0.6252316 0.7388448 -0.5225216 0.6252316 0.7388448 -0.5725335 0.6252316 0.7388448 -0.6252316 0.6252316 0.7388448 -0.6806558 0.6252316 0.7388448 -0.7388448 0.6252316 0.7388448 -0.7998369 0.6252316 0.7388448 -0.8636691 0.6252316 0.7388448 -0.9303782 0.6252316 0.7388448 -1 0.6252316 0.7388448 -0 0.6806558 0.7388448 -0.002418731 0.6806558 0.7388448 -0.005155668 0.6806558 0.7388448 -0.009080105 0.6806558 0.7388448 -0.01434988 0.6806558 0.7388448 -0.02107202 0.6806558 0.7388448 -0.02934285 0.6806558 0.7388448 -0.03925039 0.6806558 0.7388448 -0.05087609 0.6806558 0.7388448 -0.06429595 0.6806558 0.7388448 -0.07958143 0.6806558 0.7388448 -0.0968001 0.6806558 0.7388448 -0.1160161 0.6806558 0.7388448 -0.1372908 0.6806558 0.7388448 -0.1606827 0.6806558 0.7388448 -0.1862481 0.6806558 0.7388448 -0.2140411 0.6806558 0.7388448 -0.2441142 0.6806558 0.7388448 -0.2765176 0.6806558 0.7388448 -0.3113005 0.6806558 0.7388448 -0.3485102 0.6806558 0.7388448 -0.388193 0.6806558 0.7388448 -0.4303934 0.6806558 0.7388448 -0.4751555 0.6806558 0.7388448 -0.5225216 0.6806558 0.7388448 -0.5725335 0.6806558 0.7388448 -0.6252316 0.6806558 0.7388448 -0.6806558 0.6806558 0.7388448 -0.7388448 0.6806558 0.7388448 -0.7998369 0.6806558 0.7388448 -0.8636691 0.6806558 0.7388448 -0.9303782 0.6806558 0.7388448 -1 0.6806558 0.7388448 -0 0.7388448 0.7388448 -0.002418731 0.7388448 0.7388448 -0.005155668 0.7388448 0.7388448 -0.009080105 0.7388448 0.7388448 -0.01434988 0.7388448 0.7388448 -0.02107202 0.7388448 0.7388448 -0.02934285 0.7388448 0.7388448 -0.03925039 0.7388448 0.7388448 -0.05087609 0.7388448 0.7388448 -0.06429595 0.7388448 0.7388448 -0.07958143 0.7388448 0.7388448 -0.0968001 0.7388448 0.7388448 -0.1160161 0.7388448 0.7388448 -0.1372908 0.7388448 0.7388448 -0.1606827 0.7388448 0.7388448 -0.1862481 0.7388448 0.7388448 -0.2140411 0.7388448 0.7388448 -0.2441142 0.7388448 0.7388448 -0.2765176 0.7388448 0.7388448 -0.3113005 0.7388448 0.7388448 -0.3485102 0.7388448 0.7388448 -0.388193 0.7388448 0.7388448 -0.4303934 0.7388448 0.7388448 -0.4751555 0.7388448 0.7388448 -0.5225216 0.7388448 0.7388448 -0.5725335 0.7388448 0.7388448 -0.6252316 0.7388448 0.7388448 -0.6806558 0.7388448 0.7388448 -0.7388448 0.7388448 0.7388448 -0.7998369 0.7388448 0.7388448 -0.8636691 0.7388448 0.7388448 -0.9303782 0.7388448 0.7388448 -1 0.7388448 0.7388448 -0 0.7998369 0.7388448 -0.002418731 0.7998369 0.7388448 -0.005155668 0.7998369 0.7388448 -0.009080105 0.7998369 0.7388448 -0.01434988 0.7998369 0.7388448 -0.02107202 0.7998369 0.7388448 -0.02934285 0.7998369 0.7388448 -0.03925039 0.7998369 0.7388448 -0.05087609 0.7998369 0.7388448 -0.06429595 0.7998369 0.7388448 -0.07958143 0.7998369 0.7388448 -0.0968001 0.7998369 0.7388448 -0.1160161 0.7998369 0.7388448 -0.1372908 0.7998369 0.7388448 -0.1606827 0.7998369 0.7388448 -0.1862481 0.7998369 0.7388448 -0.2140411 0.7998369 0.7388448 -0.2441142 0.7998369 0.7388448 -0.2765176 0.7998369 0.7388448 -0.3113005 0.7998369 0.7388448 -0.3485102 0.7998369 0.7388448 -0.388193 0.7998369 0.7388448 -0.4303934 0.7998369 0.7388448 -0.4751555 0.7998369 0.7388448 -0.5225216 0.7998369 0.7388448 -0.5725335 0.7998369 0.7388448 -0.6252316 0.7998369 0.7388448 -0.6806558 0.7998369 0.7388448 -0.7388448 0.7998369 0.7388448 -0.7998369 0.7998369 0.7388448 -0.8636691 0.7998369 0.7388448 -0.9303782 0.7998369 0.7388448 -1 0.7998369 0.7388448 -0 0.8636691 0.7388448 -0.002418731 0.8636691 0.7388448 -0.005155668 0.8636691 0.7388448 -0.009080105 0.8636691 0.7388448 -0.01434988 0.8636691 0.7388448 -0.02107202 0.8636691 0.7388448 -0.02934285 0.8636691 0.7388448 -0.03925039 0.8636691 0.7388448 -0.05087609 0.8636691 0.7388448 -0.06429595 0.8636691 0.7388448 -0.07958143 0.8636691 0.7388448 -0.0968001 0.8636691 0.7388448 -0.1160161 0.8636691 0.7388448 -0.1372908 0.8636691 0.7388448 -0.1606827 0.8636691 0.7388448 -0.1862481 0.8636691 0.7388448 -0.2140411 0.8636691 0.7388448 -0.2441142 0.8636691 0.7388448 -0.2765176 0.8636691 0.7388448 -0.3113005 0.8636691 0.7388448 -0.3485102 0.8636691 0.7388448 -0.388193 0.8636691 0.7388448 -0.4303934 0.8636691 0.7388448 -0.4751555 0.8636691 0.7388448 -0.5225216 0.8636691 0.7388448 -0.5725335 0.8636691 0.7388448 -0.6252316 0.8636691 0.7388448 -0.6806558 0.8636691 0.7388448 -0.7388448 0.8636691 0.7388448 -0.7998369 0.8636691 0.7388448 -0.8636691 0.8636691 0.7388448 -0.9303782 0.8636691 0.7388448 -1 0.8636691 0.7388448 -0 0.9303782 0.7388448 -0.002418731 0.9303782 0.7388448 -0.005155668 0.9303782 0.7388448 -0.009080105 0.9303782 0.7388448 -0.01434988 0.9303782 0.7388448 -0.02107202 0.9303782 0.7388448 -0.02934285 0.9303782 0.7388448 -0.03925039 0.9303782 0.7388448 -0.05087609 0.9303782 0.7388448 -0.06429595 0.9303782 0.7388448 -0.07958143 0.9303782 0.7388448 -0.0968001 0.9303782 0.7388448 -0.1160161 0.9303782 0.7388448 -0.1372908 0.9303782 0.7388448 -0.1606827 0.9303782 0.7388448 -0.1862481 0.9303782 0.7388448 -0.2140411 0.9303782 0.7388448 -0.2441142 0.9303782 0.7388448 -0.2765176 0.9303782 0.7388448 -0.3113005 0.9303782 0.7388448 -0.3485102 0.9303782 0.7388448 -0.388193 0.9303782 0.7388448 -0.4303934 0.9303782 0.7388448 -0.4751555 0.9303782 0.7388448 -0.5225216 0.9303782 0.7388448 -0.5725335 0.9303782 0.7388448 -0.6252316 0.9303782 0.7388448 -0.6806558 0.9303782 0.7388448 -0.7388448 0.9303782 0.7388448 -0.7998369 0.9303782 0.7388448 -0.8636691 0.9303782 0.7388448 -0.9303782 0.9303782 0.7388448 -1 0.9303782 0.7388448 -0 1 0.7388448 -0.002418731 1 0.7388448 -0.005155668 1 0.7388448 -0.009080105 1 0.7388448 -0.01434988 1 0.7388448 -0.02107202 1 0.7388448 -0.02934285 1 0.7388448 -0.03925039 1 0.7388448 -0.05087609 1 0.7388448 -0.06429595 1 0.7388448 -0.07958143 1 0.7388448 -0.0968001 1 0.7388448 -0.1160161 1 0.7388448 -0.1372908 1 0.7388448 -0.1606827 1 0.7388448 -0.1862481 1 0.7388448 -0.2140411 1 0.7388448 -0.2441142 1 0.7388448 -0.2765176 1 0.7388448 -0.3113005 1 0.7388448 -0.3485102 1 0.7388448 -0.388193 1 0.7388448 -0.4303934 1 0.7388448 -0.4751555 1 0.7388448 -0.5225216 1 0.7388448 -0.5725335 1 0.7388448 -0.6252316 1 0.7388448 -0.6806558 1 0.7388448 -0.7388448 1 0.7388448 -0.7998369 1 0.7388448 -0.8636691 1 0.7388448 -0.9303782 1 0.7388448 -1 1 0.7388448 -0 0 0.7998369 -0.002418731 0 0.7998369 -0.005155668 0 0.7998369 -0.009080105 0 0.7998369 -0.01434988 0 0.7998369 -0.02107202 0 0.7998369 -0.02934285 0 0.7998369 -0.03925039 0 0.7998369 -0.05087609 0 0.7998369 -0.06429595 0 0.7998369 -0.07958143 0 0.7998369 -0.0968001 0 0.7998369 -0.1160161 0 0.7998369 -0.1372908 0 0.7998369 -0.1606827 0 0.7998369 -0.1862481 0 0.7998369 -0.2140411 0 0.7998369 -0.2441142 0 0.7998369 -0.2765176 0 0.7998369 -0.3113005 0 0.7998369 -0.3485102 0 0.7998369 -0.388193 0 0.7998369 -0.4303934 0 0.7998369 -0.4751555 0 0.7998369 -0.5225216 0 0.7998369 -0.5725335 0 0.7998369 -0.6252316 0 0.7998369 -0.6806558 0 0.7998369 -0.7388448 0 0.7998369 -0.7998369 0 0.7998369 -0.8636691 0 0.7998369 -0.9303782 0 0.7998369 -1 0 0.7998369 -0 0.002418731 0.7998369 -0.002418731 0.002418731 0.7998369 -0.005155668 0.002418731 0.7998369 -0.009080105 0.002418731 0.7998369 -0.01434988 0.002418731 0.7998369 -0.02107202 0.002418731 0.7998369 -0.02934285 0.002418731 0.7998369 -0.03925039 0.002418731 0.7998369 -0.05087609 0.002418731 0.7998369 -0.06429595 0.002418731 0.7998369 -0.07958143 0.002418731 0.7998369 -0.0968001 0.002418731 0.7998369 -0.1160161 0.002418731 0.7998369 -0.1372908 0.002418731 0.7998369 -0.1606827 0.002418731 0.7998369 -0.1862481 0.002418731 0.7998369 -0.2140411 0.002418731 0.7998369 -0.2441142 0.002418731 0.7998369 -0.2765176 0.002418731 0.7998369 -0.3113005 0.002418731 0.7998369 -0.3485102 0.002418731 0.7998369 -0.388193 0.002418731 0.7998369 -0.4303934 0.002418731 0.7998369 -0.4751555 0.002418731 0.7998369 -0.5225216 0.002418731 0.7998369 -0.5725335 0.002418731 0.7998369 -0.6252316 0.002418731 0.7998369 -0.6806558 0.002418731 0.7998369 -0.7388448 0.002418731 0.7998369 -0.7998369 0.002418731 0.7998369 -0.8636691 0.002418731 0.7998369 -0.9303782 0.002418731 0.7998369 -1 0.002418731 0.7998369 -0 0.005155668 0.7998369 -0.002418731 0.005155668 0.7998369 -0.005155668 0.005155668 0.7998369 -0.009080105 0.005155668 0.7998369 -0.01434988 0.005155668 0.7998369 -0.02107202 0.005155668 0.7998369 -0.02934285 0.005155668 0.7998369 -0.03925039 0.005155668 0.7998369 -0.05087609 0.005155668 0.7998369 -0.06429595 0.005155668 0.7998369 -0.07958143 0.005155668 0.7998369 -0.0968001 0.005155668 0.7998369 -0.1160161 0.005155668 0.7998369 -0.1372908 0.005155668 0.7998369 -0.1606827 0.005155668 0.7998369 -0.1862481 0.005155668 0.7998369 -0.2140411 0.005155668 0.7998369 -0.2441142 0.005155668 0.7998369 -0.2765176 0.005155668 0.7998369 -0.3113005 0.005155668 0.7998369 -0.3485102 0.005155668 0.7998369 -0.388193 0.005155668 0.7998369 -0.4303934 0.005155668 0.7998369 -0.4751555 0.005155668 0.7998369 -0.5225216 0.005155668 0.7998369 -0.5725335 0.005155668 0.7998369 -0.6252316 0.005155668 0.7998369 -0.6806558 0.005155668 0.7998369 -0.7388448 0.005155668 0.7998369 -0.7998369 0.005155668 0.7998369 -0.8636691 0.005155668 0.7998369 -0.9303782 0.005155668 0.7998369 -1 0.005155668 0.7998369 -0 0.009080105 0.7998369 -0.002418731 0.009080105 0.7998369 -0.005155668 0.009080105 0.7998369 -0.009080105 0.009080105 0.7998369 -0.01434988 0.009080105 0.7998369 -0.02107202 0.009080105 0.7998369 -0.02934285 0.009080105 0.7998369 -0.03925039 0.009080105 0.7998369 -0.05087609 0.009080105 0.7998369 -0.06429595 0.009080105 0.7998369 -0.07958143 0.009080105 0.7998369 -0.0968001 0.009080105 0.7998369 -0.1160161 0.009080105 0.7998369 -0.1372908 0.009080105 0.7998369 -0.1606827 0.009080105 0.7998369 -0.1862481 0.009080105 0.7998369 -0.2140411 0.009080105 0.7998369 -0.2441142 0.009080105 0.7998369 -0.2765176 0.009080105 0.7998369 -0.3113005 0.009080105 0.7998369 -0.3485102 0.009080105 0.7998369 -0.388193 0.009080105 0.7998369 -0.4303934 0.009080105 0.7998369 -0.4751555 0.009080105 0.7998369 -0.5225216 0.009080105 0.7998369 -0.5725335 0.009080105 0.7998369 -0.6252316 0.009080105 0.7998369 -0.6806558 0.009080105 0.7998369 -0.7388448 0.009080105 0.7998369 -0.7998369 0.009080105 0.7998369 -0.8636691 0.009080105 0.7998369 -0.9303782 0.009080105 0.7998369 -1 0.009080105 0.7998369 -0 0.01434988 0.7998369 -0.002418731 0.01434988 0.7998369 -0.005155668 0.01434988 0.7998369 -0.009080105 0.01434988 0.7998369 -0.01434988 0.01434988 0.7998369 -0.02107202 0.01434988 0.7998369 -0.02934285 0.01434988 0.7998369 -0.03925039 0.01434988 0.7998369 -0.05087609 0.01434988 0.7998369 -0.06429595 0.01434988 0.7998369 -0.07958143 0.01434988 0.7998369 -0.0968001 0.01434988 0.7998369 -0.1160161 0.01434988 0.7998369 -0.1372908 0.01434988 0.7998369 -0.1606827 0.01434988 0.7998369 -0.1862481 0.01434988 0.7998369 -0.2140411 0.01434988 0.7998369 -0.2441142 0.01434988 0.7998369 -0.2765176 0.01434988 0.7998369 -0.3113005 0.01434988 0.7998369 -0.3485102 0.01434988 0.7998369 -0.388193 0.01434988 0.7998369 -0.4303934 0.01434988 0.7998369 -0.4751555 0.01434988 0.7998369 -0.5225216 0.01434988 0.7998369 -0.5725335 0.01434988 0.7998369 -0.6252316 0.01434988 0.7998369 -0.6806558 0.01434988 0.7998369 -0.7388448 0.01434988 0.7998369 -0.7998369 0.01434988 0.7998369 -0.8636691 0.01434988 0.7998369 -0.9303782 0.01434988 0.7998369 -1 0.01434988 0.7998369 -0 0.02107202 0.7998369 -0.002418731 0.02107202 0.7998369 -0.005155668 0.02107202 0.7998369 -0.009080105 0.02107202 0.7998369 -0.01434988 0.02107202 0.7998369 -0.02107202 0.02107202 0.7998369 -0.02934285 0.02107202 0.7998369 -0.03925039 0.02107202 0.7998369 -0.05087609 0.02107202 0.7998369 -0.06429595 0.02107202 0.7998369 -0.07958143 0.02107202 0.7998369 -0.0968001 0.02107202 0.7998369 -0.1160161 0.02107202 0.7998369 -0.1372908 0.02107202 0.7998369 -0.1606827 0.02107202 0.7998369 -0.1862481 0.02107202 0.7998369 -0.2140411 0.02107202 0.7998369 -0.2441142 0.02107202 0.7998369 -0.2765176 0.02107202 0.7998369 -0.3113005 0.02107202 0.7998369 -0.3485102 0.02107202 0.7998369 -0.388193 0.02107202 0.7998369 -0.4303934 0.02107202 0.7998369 -0.4751555 0.02107202 0.7998369 -0.5225216 0.02107202 0.7998369 -0.5725335 0.02107202 0.7998369 -0.6252316 0.02107202 0.7998369 -0.6806558 0.02107202 0.7998369 -0.7388448 0.02107202 0.7998369 -0.7998369 0.02107202 0.7998369 -0.8636691 0.02107202 0.7998369 -0.9303782 0.02107202 0.7998369 -1 0.02107202 0.7998369 -0 0.02934285 0.7998369 -0.002418731 0.02934285 0.7998369 -0.005155668 0.02934285 0.7998369 -0.009080105 0.02934285 0.7998369 -0.01434988 0.02934285 0.7998369 -0.02107202 0.02934285 0.7998369 -0.02934285 0.02934285 0.7998369 -0.03925039 0.02934285 0.7998369 -0.05087609 0.02934285 0.7998369 -0.06429595 0.02934285 0.7998369 -0.07958143 0.02934285 0.7998369 -0.0968001 0.02934285 0.7998369 -0.1160161 0.02934285 0.7998369 -0.1372908 0.02934285 0.7998369 -0.1606827 0.02934285 0.7998369 -0.1862481 0.02934285 0.7998369 -0.2140411 0.02934285 0.7998369 -0.2441142 0.02934285 0.7998369 -0.2765176 0.02934285 0.7998369 -0.3113005 0.02934285 0.7998369 -0.3485102 0.02934285 0.7998369 -0.388193 0.02934285 0.7998369 -0.4303934 0.02934285 0.7998369 -0.4751555 0.02934285 0.7998369 -0.5225216 0.02934285 0.7998369 -0.5725335 0.02934285 0.7998369 -0.6252316 0.02934285 0.7998369 -0.6806558 0.02934285 0.7998369 -0.7388448 0.02934285 0.7998369 -0.7998369 0.02934285 0.7998369 -0.8636691 0.02934285 0.7998369 -0.9303782 0.02934285 0.7998369 -1 0.02934285 0.7998369 -0 0.03925039 0.7998369 -0.002418731 0.03925039 0.7998369 -0.005155668 0.03925039 0.7998369 -0.009080105 0.03925039 0.7998369 -0.01434988 0.03925039 0.7998369 -0.02107202 0.03925039 0.7998369 -0.02934285 0.03925039 0.7998369 -0.03925039 0.03925039 0.7998369 -0.05087609 0.03925039 0.7998369 -0.06429595 0.03925039 0.7998369 -0.07958143 0.03925039 0.7998369 -0.0968001 0.03925039 0.7998369 -0.1160161 0.03925039 0.7998369 -0.1372908 0.03925039 0.7998369 -0.1606827 0.03925039 0.7998369 -0.1862481 0.03925039 0.7998369 -0.2140411 0.03925039 0.7998369 -0.2441142 0.03925039 0.7998369 -0.2765176 0.03925039 0.7998369 -0.3113005 0.03925039 0.7998369 -0.3485102 0.03925039 0.7998369 -0.388193 0.03925039 0.7998369 -0.4303934 0.03925039 0.7998369 -0.4751555 0.03925039 0.7998369 -0.5225216 0.03925039 0.7998369 -0.5725335 0.03925039 0.7998369 -0.6252316 0.03925039 0.7998369 -0.6806558 0.03925039 0.7998369 -0.7388448 0.03925039 0.7998369 -0.7998369 0.03925039 0.7998369 -0.8636691 0.03925039 0.7998369 -0.9303782 0.03925039 0.7998369 -1 0.03925039 0.7998369 -0 0.05087609 0.7998369 -0.002418731 0.05087609 0.7998369 -0.005155668 0.05087609 0.7998369 -0.009080105 0.05087609 0.7998369 -0.01434988 0.05087609 0.7998369 -0.02107202 0.05087609 0.7998369 -0.02934285 0.05087609 0.7998369 -0.03925039 0.05087609 0.7998369 -0.05087609 0.05087609 0.7998369 -0.06429595 0.05087609 0.7998369 -0.07958143 0.05087609 0.7998369 -0.0968001 0.05087609 0.7998369 -0.1160161 0.05087609 0.7998369 -0.1372908 0.05087609 0.7998369 -0.1606827 0.05087609 0.7998369 -0.1862481 0.05087609 0.7998369 -0.2140411 0.05087609 0.7998369 -0.2441142 0.05087609 0.7998369 -0.2765176 0.05087609 0.7998369 -0.3113005 0.05087609 0.7998369 -0.3485102 0.05087609 0.7998369 -0.388193 0.05087609 0.7998369 -0.4303934 0.05087609 0.7998369 -0.4751555 0.05087609 0.7998369 -0.5225216 0.05087609 0.7998369 -0.5725335 0.05087609 0.7998369 -0.6252316 0.05087609 0.7998369 -0.6806558 0.05087609 0.7998369 -0.7388448 0.05087609 0.7998369 -0.7998369 0.05087609 0.7998369 -0.8636691 0.05087609 0.7998369 -0.9303782 0.05087609 0.7998369 -1 0.05087609 0.7998369 -0 0.06429595 0.7998369 -0.002418731 0.06429595 0.7998369 -0.005155668 0.06429595 0.7998369 -0.009080105 0.06429595 0.7998369 -0.01434988 0.06429595 0.7998369 -0.02107202 0.06429595 0.7998369 -0.02934285 0.06429595 0.7998369 -0.03925039 0.06429595 0.7998369 -0.05087609 0.06429595 0.7998369 -0.06429595 0.06429595 0.7998369 -0.07958143 0.06429595 0.7998369 -0.0968001 0.06429595 0.7998369 -0.1160161 0.06429595 0.7998369 -0.1372908 0.06429595 0.7998369 -0.1606827 0.06429595 0.7998369 -0.1862481 0.06429595 0.7998369 -0.2140411 0.06429595 0.7998369 -0.2441142 0.06429595 0.7998369 -0.2765176 0.06429595 0.7998369 -0.3113005 0.06429595 0.7998369 -0.3485102 0.06429595 0.7998369 -0.388193 0.06429595 0.7998369 -0.4303934 0.06429595 0.7998369 -0.4751555 0.06429595 0.7998369 -0.5225216 0.06429595 0.7998369 -0.5725335 0.06429595 0.7998369 -0.6252316 0.06429595 0.7998369 -0.6806558 0.06429595 0.7998369 -0.7388448 0.06429595 0.7998369 -0.7998369 0.06429595 0.7998369 -0.8636691 0.06429595 0.7998369 -0.9303782 0.06429595 0.7998369 -1 0.06429595 0.7998369 -0 0.07958143 0.7998369 -0.002418731 0.07958143 0.7998369 -0.005155668 0.07958143 0.7998369 -0.009080105 0.07958143 0.7998369 -0.01434988 0.07958143 0.7998369 -0.02107202 0.07958143 0.7998369 -0.02934285 0.07958143 0.7998369 -0.03925039 0.07958143 0.7998369 -0.05087609 0.07958143 0.7998369 -0.06429595 0.07958143 0.7998369 -0.07958143 0.07958143 0.7998369 -0.0968001 0.07958143 0.7998369 -0.1160161 0.07958143 0.7998369 -0.1372908 0.07958143 0.7998369 -0.1606827 0.07958143 0.7998369 -0.1862481 0.07958143 0.7998369 -0.2140411 0.07958143 0.7998369 -0.2441142 0.07958143 0.7998369 -0.2765176 0.07958143 0.7998369 -0.3113005 0.07958143 0.7998369 -0.3485102 0.07958143 0.7998369 -0.388193 0.07958143 0.7998369 -0.4303934 0.07958143 0.7998369 -0.4751555 0.07958143 0.7998369 -0.5225216 0.07958143 0.7998369 -0.5725335 0.07958143 0.7998369 -0.6252316 0.07958143 0.7998369 -0.6806558 0.07958143 0.7998369 -0.7388448 0.07958143 0.7998369 -0.7998369 0.07958143 0.7998369 -0.8636691 0.07958143 0.7998369 -0.9303782 0.07958143 0.7998369 -1 0.07958143 0.7998369 -0 0.0968001 0.7998369 -0.002418731 0.0968001 0.7998369 -0.005155668 0.0968001 0.7998369 -0.009080105 0.0968001 0.7998369 -0.01434988 0.0968001 0.7998369 -0.02107202 0.0968001 0.7998369 -0.02934285 0.0968001 0.7998369 -0.03925039 0.0968001 0.7998369 -0.05087609 0.0968001 0.7998369 -0.06429595 0.0968001 0.7998369 -0.07958143 0.0968001 0.7998369 -0.0968001 0.0968001 0.7998369 -0.1160161 0.0968001 0.7998369 -0.1372908 0.0968001 0.7998369 -0.1606827 0.0968001 0.7998369 -0.1862481 0.0968001 0.7998369 -0.2140411 0.0968001 0.7998369 -0.2441142 0.0968001 0.7998369 -0.2765176 0.0968001 0.7998369 -0.3113005 0.0968001 0.7998369 -0.3485102 0.0968001 0.7998369 -0.388193 0.0968001 0.7998369 -0.4303934 0.0968001 0.7998369 -0.4751555 0.0968001 0.7998369 -0.5225216 0.0968001 0.7998369 -0.5725335 0.0968001 0.7998369 -0.6252316 0.0968001 0.7998369 -0.6806558 0.0968001 0.7998369 -0.7388448 0.0968001 0.7998369 -0.7998369 0.0968001 0.7998369 -0.8636691 0.0968001 0.7998369 -0.9303782 0.0968001 0.7998369 -1 0.0968001 0.7998369 -0 0.1160161 0.7998369 -0.002418731 0.1160161 0.7998369 -0.005155668 0.1160161 0.7998369 -0.009080105 0.1160161 0.7998369 -0.01434988 0.1160161 0.7998369 -0.02107202 0.1160161 0.7998369 -0.02934285 0.1160161 0.7998369 -0.03925039 0.1160161 0.7998369 -0.05087609 0.1160161 0.7998369 -0.06429595 0.1160161 0.7998369 -0.07958143 0.1160161 0.7998369 -0.0968001 0.1160161 0.7998369 -0.1160161 0.1160161 0.7998369 -0.1372908 0.1160161 0.7998369 -0.1606827 0.1160161 0.7998369 -0.1862481 0.1160161 0.7998369 -0.2140411 0.1160161 0.7998369 -0.2441142 0.1160161 0.7998369 -0.2765176 0.1160161 0.7998369 -0.3113005 0.1160161 0.7998369 -0.3485102 0.1160161 0.7998369 -0.388193 0.1160161 0.7998369 -0.4303934 0.1160161 0.7998369 -0.4751555 0.1160161 0.7998369 -0.5225216 0.1160161 0.7998369 -0.5725335 0.1160161 0.7998369 -0.6252316 0.1160161 0.7998369 -0.6806558 0.1160161 0.7998369 -0.7388448 0.1160161 0.7998369 -0.7998369 0.1160161 0.7998369 -0.8636691 0.1160161 0.7998369 -0.9303782 0.1160161 0.7998369 -1 0.1160161 0.7998369 -0 0.1372908 0.7998369 -0.002418731 0.1372908 0.7998369 -0.005155668 0.1372908 0.7998369 -0.009080105 0.1372908 0.7998369 -0.01434988 0.1372908 0.7998369 -0.02107202 0.1372908 0.7998369 -0.02934285 0.1372908 0.7998369 -0.03925039 0.1372908 0.7998369 -0.05087609 0.1372908 0.7998369 -0.06429595 0.1372908 0.7998369 -0.07958143 0.1372908 0.7998369 -0.0968001 0.1372908 0.7998369 -0.1160161 0.1372908 0.7998369 -0.1372908 0.1372908 0.7998369 -0.1606827 0.1372908 0.7998369 -0.1862481 0.1372908 0.7998369 -0.2140411 0.1372908 0.7998369 -0.2441142 0.1372908 0.7998369 -0.2765176 0.1372908 0.7998369 -0.3113005 0.1372908 0.7998369 -0.3485102 0.1372908 0.7998369 -0.388193 0.1372908 0.7998369 -0.4303934 0.1372908 0.7998369 -0.4751555 0.1372908 0.7998369 -0.5225216 0.1372908 0.7998369 -0.5725335 0.1372908 0.7998369 -0.6252316 0.1372908 0.7998369 -0.6806558 0.1372908 0.7998369 -0.7388448 0.1372908 0.7998369 -0.7998369 0.1372908 0.7998369 -0.8636691 0.1372908 0.7998369 -0.9303782 0.1372908 0.7998369 -1 0.1372908 0.7998369 -0 0.1606827 0.7998369 -0.002418731 0.1606827 0.7998369 -0.005155668 0.1606827 0.7998369 -0.009080105 0.1606827 0.7998369 -0.01434988 0.1606827 0.7998369 -0.02107202 0.1606827 0.7998369 -0.02934285 0.1606827 0.7998369 -0.03925039 0.1606827 0.7998369 -0.05087609 0.1606827 0.7998369 -0.06429595 0.1606827 0.7998369 -0.07958143 0.1606827 0.7998369 -0.0968001 0.1606827 0.7998369 -0.1160161 0.1606827 0.7998369 -0.1372908 0.1606827 0.7998369 -0.1606827 0.1606827 0.7998369 -0.1862481 0.1606827 0.7998369 -0.2140411 0.1606827 0.7998369 -0.2441142 0.1606827 0.7998369 -0.2765176 0.1606827 0.7998369 -0.3113005 0.1606827 0.7998369 -0.3485102 0.1606827 0.7998369 -0.388193 0.1606827 0.7998369 -0.4303934 0.1606827 0.7998369 -0.4751555 0.1606827 0.7998369 -0.5225216 0.1606827 0.7998369 -0.5725335 0.1606827 0.7998369 -0.6252316 0.1606827 0.7998369 -0.6806558 0.1606827 0.7998369 -0.7388448 0.1606827 0.7998369 -0.7998369 0.1606827 0.7998369 -0.8636691 0.1606827 0.7998369 -0.9303782 0.1606827 0.7998369 -1 0.1606827 0.7998369 -0 0.1862481 0.7998369 -0.002418731 0.1862481 0.7998369 -0.005155668 0.1862481 0.7998369 -0.009080105 0.1862481 0.7998369 -0.01434988 0.1862481 0.7998369 -0.02107202 0.1862481 0.7998369 -0.02934285 0.1862481 0.7998369 -0.03925039 0.1862481 0.7998369 -0.05087609 0.1862481 0.7998369 -0.06429595 0.1862481 0.7998369 -0.07958143 0.1862481 0.7998369 -0.0968001 0.1862481 0.7998369 -0.1160161 0.1862481 0.7998369 -0.1372908 0.1862481 0.7998369 -0.1606827 0.1862481 0.7998369 -0.1862481 0.1862481 0.7998369 -0.2140411 0.1862481 0.7998369 -0.2441142 0.1862481 0.7998369 -0.2765176 0.1862481 0.7998369 -0.3113005 0.1862481 0.7998369 -0.3485102 0.1862481 0.7998369 -0.388193 0.1862481 0.7998369 -0.4303934 0.1862481 0.7998369 -0.4751555 0.1862481 0.7998369 -0.5225216 0.1862481 0.7998369 -0.5725335 0.1862481 0.7998369 -0.6252316 0.1862481 0.7998369 -0.6806558 0.1862481 0.7998369 -0.7388448 0.1862481 0.7998369 -0.7998369 0.1862481 0.7998369 -0.8636691 0.1862481 0.7998369 -0.9303782 0.1862481 0.7998369 -1 0.1862481 0.7998369 -0 0.2140411 0.7998369 -0.002418731 0.2140411 0.7998369 -0.005155668 0.2140411 0.7998369 -0.009080105 0.2140411 0.7998369 -0.01434988 0.2140411 0.7998369 -0.02107202 0.2140411 0.7998369 -0.02934285 0.2140411 0.7998369 -0.03925039 0.2140411 0.7998369 -0.05087609 0.2140411 0.7998369 -0.06429595 0.2140411 0.7998369 -0.07958143 0.2140411 0.7998369 -0.0968001 0.2140411 0.7998369 -0.1160161 0.2140411 0.7998369 -0.1372908 0.2140411 0.7998369 -0.1606827 0.2140411 0.7998369 -0.1862481 0.2140411 0.7998369 -0.2140411 0.2140411 0.7998369 -0.2441142 0.2140411 0.7998369 -0.2765176 0.2140411 0.7998369 -0.3113005 0.2140411 0.7998369 -0.3485102 0.2140411 0.7998369 -0.388193 0.2140411 0.7998369 -0.4303934 0.2140411 0.7998369 -0.4751555 0.2140411 0.7998369 -0.5225216 0.2140411 0.7998369 -0.5725335 0.2140411 0.7998369 -0.6252316 0.2140411 0.7998369 -0.6806558 0.2140411 0.7998369 -0.7388448 0.2140411 0.7998369 -0.7998369 0.2140411 0.7998369 -0.8636691 0.2140411 0.7998369 -0.9303782 0.2140411 0.7998369 -1 0.2140411 0.7998369 -0 0.2441142 0.7998369 -0.002418731 0.2441142 0.7998369 -0.005155668 0.2441142 0.7998369 -0.009080105 0.2441142 0.7998369 -0.01434988 0.2441142 0.7998369 -0.02107202 0.2441142 0.7998369 -0.02934285 0.2441142 0.7998369 -0.03925039 0.2441142 0.7998369 -0.05087609 0.2441142 0.7998369 -0.06429595 0.2441142 0.7998369 -0.07958143 0.2441142 0.7998369 -0.0968001 0.2441142 0.7998369 -0.1160161 0.2441142 0.7998369 -0.1372908 0.2441142 0.7998369 -0.1606827 0.2441142 0.7998369 -0.1862481 0.2441142 0.7998369 -0.2140411 0.2441142 0.7998369 -0.2441142 0.2441142 0.7998369 -0.2765176 0.2441142 0.7998369 -0.3113005 0.2441142 0.7998369 -0.3485102 0.2441142 0.7998369 -0.388193 0.2441142 0.7998369 -0.4303934 0.2441142 0.7998369 -0.4751555 0.2441142 0.7998369 -0.5225216 0.2441142 0.7998369 -0.5725335 0.2441142 0.7998369 -0.6252316 0.2441142 0.7998369 -0.6806558 0.2441142 0.7998369 -0.7388448 0.2441142 0.7998369 -0.7998369 0.2441142 0.7998369 -0.8636691 0.2441142 0.7998369 -0.9303782 0.2441142 0.7998369 -1 0.2441142 0.7998369 -0 0.2765176 0.7998369 -0.002418731 0.2765176 0.7998369 -0.005155668 0.2765176 0.7998369 -0.009080105 0.2765176 0.7998369 -0.01434988 0.2765176 0.7998369 -0.02107202 0.2765176 0.7998369 -0.02934285 0.2765176 0.7998369 -0.03925039 0.2765176 0.7998369 -0.05087609 0.2765176 0.7998369 -0.06429595 0.2765176 0.7998369 -0.07958143 0.2765176 0.7998369 -0.0968001 0.2765176 0.7998369 -0.1160161 0.2765176 0.7998369 -0.1372908 0.2765176 0.7998369 -0.1606827 0.2765176 0.7998369 -0.1862481 0.2765176 0.7998369 -0.2140411 0.2765176 0.7998369 -0.2441142 0.2765176 0.7998369 -0.2765176 0.2765176 0.7998369 -0.3113005 0.2765176 0.7998369 -0.3485102 0.2765176 0.7998369 -0.388193 0.2765176 0.7998369 -0.4303934 0.2765176 0.7998369 -0.4751555 0.2765176 0.7998369 -0.5225216 0.2765176 0.7998369 -0.5725335 0.2765176 0.7998369 -0.6252316 0.2765176 0.7998369 -0.6806558 0.2765176 0.7998369 -0.7388448 0.2765176 0.7998369 -0.7998369 0.2765176 0.7998369 -0.8636691 0.2765176 0.7998369 -0.9303782 0.2765176 0.7998369 -1 0.2765176 0.7998369 -0 0.3113005 0.7998369 -0.002418731 0.3113005 0.7998369 -0.005155668 0.3113005 0.7998369 -0.009080105 0.3113005 0.7998369 -0.01434988 0.3113005 0.7998369 -0.02107202 0.3113005 0.7998369 -0.02934285 0.3113005 0.7998369 -0.03925039 0.3113005 0.7998369 -0.05087609 0.3113005 0.7998369 -0.06429595 0.3113005 0.7998369 -0.07958143 0.3113005 0.7998369 -0.0968001 0.3113005 0.7998369 -0.1160161 0.3113005 0.7998369 -0.1372908 0.3113005 0.7998369 -0.1606827 0.3113005 0.7998369 -0.1862481 0.3113005 0.7998369 -0.2140411 0.3113005 0.7998369 -0.2441142 0.3113005 0.7998369 -0.2765176 0.3113005 0.7998369 -0.3113005 0.3113005 0.7998369 -0.3485102 0.3113005 0.7998369 -0.388193 0.3113005 0.7998369 -0.4303934 0.3113005 0.7998369 -0.4751555 0.3113005 0.7998369 -0.5225216 0.3113005 0.7998369 -0.5725335 0.3113005 0.7998369 -0.6252316 0.3113005 0.7998369 -0.6806558 0.3113005 0.7998369 -0.7388448 0.3113005 0.7998369 -0.7998369 0.3113005 0.7998369 -0.8636691 0.3113005 0.7998369 -0.9303782 0.3113005 0.7998369 -1 0.3113005 0.7998369 -0 0.3485102 0.7998369 -0.002418731 0.3485102 0.7998369 -0.005155668 0.3485102 0.7998369 -0.009080105 0.3485102 0.7998369 -0.01434988 0.3485102 0.7998369 -0.02107202 0.3485102 0.7998369 -0.02934285 0.3485102 0.7998369 -0.03925039 0.3485102 0.7998369 -0.05087609 0.3485102 0.7998369 -0.06429595 0.3485102 0.7998369 -0.07958143 0.3485102 0.7998369 -0.0968001 0.3485102 0.7998369 -0.1160161 0.3485102 0.7998369 -0.1372908 0.3485102 0.7998369 -0.1606827 0.3485102 0.7998369 -0.1862481 0.3485102 0.7998369 -0.2140411 0.3485102 0.7998369 -0.2441142 0.3485102 0.7998369 -0.2765176 0.3485102 0.7998369 -0.3113005 0.3485102 0.7998369 -0.3485102 0.3485102 0.7998369 -0.388193 0.3485102 0.7998369 -0.4303934 0.3485102 0.7998369 -0.4751555 0.3485102 0.7998369 -0.5225216 0.3485102 0.7998369 -0.5725335 0.3485102 0.7998369 -0.6252316 0.3485102 0.7998369 -0.6806558 0.3485102 0.7998369 -0.7388448 0.3485102 0.7998369 -0.7998369 0.3485102 0.7998369 -0.8636691 0.3485102 0.7998369 -0.9303782 0.3485102 0.7998369 -1 0.3485102 0.7998369 -0 0.388193 0.7998369 -0.002418731 0.388193 0.7998369 -0.005155668 0.388193 0.7998369 -0.009080105 0.388193 0.7998369 -0.01434988 0.388193 0.7998369 -0.02107202 0.388193 0.7998369 -0.02934285 0.388193 0.7998369 -0.03925039 0.388193 0.7998369 -0.05087609 0.388193 0.7998369 -0.06429595 0.388193 0.7998369 -0.07958143 0.388193 0.7998369 -0.0968001 0.388193 0.7998369 -0.1160161 0.388193 0.7998369 -0.1372908 0.388193 0.7998369 -0.1606827 0.388193 0.7998369 -0.1862481 0.388193 0.7998369 -0.2140411 0.388193 0.7998369 -0.2441142 0.388193 0.7998369 -0.2765176 0.388193 0.7998369 -0.3113005 0.388193 0.7998369 -0.3485102 0.388193 0.7998369 -0.388193 0.388193 0.7998369 -0.4303934 0.388193 0.7998369 -0.4751555 0.388193 0.7998369 -0.5225216 0.388193 0.7998369 -0.5725335 0.388193 0.7998369 -0.6252316 0.388193 0.7998369 -0.6806558 0.388193 0.7998369 -0.7388448 0.388193 0.7998369 -0.7998369 0.388193 0.7998369 -0.8636691 0.388193 0.7998369 -0.9303782 0.388193 0.7998369 -1 0.388193 0.7998369 -0 0.4303934 0.7998369 -0.002418731 0.4303934 0.7998369 -0.005155668 0.4303934 0.7998369 -0.009080105 0.4303934 0.7998369 -0.01434988 0.4303934 0.7998369 -0.02107202 0.4303934 0.7998369 -0.02934285 0.4303934 0.7998369 -0.03925039 0.4303934 0.7998369 -0.05087609 0.4303934 0.7998369 -0.06429595 0.4303934 0.7998369 -0.07958143 0.4303934 0.7998369 -0.0968001 0.4303934 0.7998369 -0.1160161 0.4303934 0.7998369 -0.1372908 0.4303934 0.7998369 -0.1606827 0.4303934 0.7998369 -0.1862481 0.4303934 0.7998369 -0.2140411 0.4303934 0.7998369 -0.2441142 0.4303934 0.7998369 -0.2765176 0.4303934 0.7998369 -0.3113005 0.4303934 0.7998369 -0.3485102 0.4303934 0.7998369 -0.388193 0.4303934 0.7998369 -0.4303934 0.4303934 0.7998369 -0.4751555 0.4303934 0.7998369 -0.5225216 0.4303934 0.7998369 -0.5725335 0.4303934 0.7998369 -0.6252316 0.4303934 0.7998369 -0.6806558 0.4303934 0.7998369 -0.7388448 0.4303934 0.7998369 -0.7998369 0.4303934 0.7998369 -0.8636691 0.4303934 0.7998369 -0.9303782 0.4303934 0.7998369 -1 0.4303934 0.7998369 -0 0.4751555 0.7998369 -0.002418731 0.4751555 0.7998369 -0.005155668 0.4751555 0.7998369 -0.009080105 0.4751555 0.7998369 -0.01434988 0.4751555 0.7998369 -0.02107202 0.4751555 0.7998369 -0.02934285 0.4751555 0.7998369 -0.03925039 0.4751555 0.7998369 -0.05087609 0.4751555 0.7998369 -0.06429595 0.4751555 0.7998369 -0.07958143 0.4751555 0.7998369 -0.0968001 0.4751555 0.7998369 -0.1160161 0.4751555 0.7998369 -0.1372908 0.4751555 0.7998369 -0.1606827 0.4751555 0.7998369 -0.1862481 0.4751555 0.7998369 -0.2140411 0.4751555 0.7998369 -0.2441142 0.4751555 0.7998369 -0.2765176 0.4751555 0.7998369 -0.3113005 0.4751555 0.7998369 -0.3485102 0.4751555 0.7998369 -0.388193 0.4751555 0.7998369 -0.4303934 0.4751555 0.7998369 -0.4751555 0.4751555 0.7998369 -0.5225216 0.4751555 0.7998369 -0.5725335 0.4751555 0.7998369 -0.6252316 0.4751555 0.7998369 -0.6806558 0.4751555 0.7998369 -0.7388448 0.4751555 0.7998369 -0.7998369 0.4751555 0.7998369 -0.8636691 0.4751555 0.7998369 -0.9303782 0.4751555 0.7998369 -1 0.4751555 0.7998369 -0 0.5225216 0.7998369 -0.002418731 0.5225216 0.7998369 -0.005155668 0.5225216 0.7998369 -0.009080105 0.5225216 0.7998369 -0.01434988 0.5225216 0.7998369 -0.02107202 0.5225216 0.7998369 -0.02934285 0.5225216 0.7998369 -0.03925039 0.5225216 0.7998369 -0.05087609 0.5225216 0.7998369 -0.06429595 0.5225216 0.7998369 -0.07958143 0.5225216 0.7998369 -0.0968001 0.5225216 0.7998369 -0.1160161 0.5225216 0.7998369 -0.1372908 0.5225216 0.7998369 -0.1606827 0.5225216 0.7998369 -0.1862481 0.5225216 0.7998369 -0.2140411 0.5225216 0.7998369 -0.2441142 0.5225216 0.7998369 -0.2765176 0.5225216 0.7998369 -0.3113005 0.5225216 0.7998369 -0.3485102 0.5225216 0.7998369 -0.388193 0.5225216 0.7998369 -0.4303934 0.5225216 0.7998369 -0.4751555 0.5225216 0.7998369 -0.5225216 0.5225216 0.7998369 -0.5725335 0.5225216 0.7998369 -0.6252316 0.5225216 0.7998369 -0.6806558 0.5225216 0.7998369 -0.7388448 0.5225216 0.7998369 -0.7998369 0.5225216 0.7998369 -0.8636691 0.5225216 0.7998369 -0.9303782 0.5225216 0.7998369 -1 0.5225216 0.7998369 -0 0.5725335 0.7998369 -0.002418731 0.5725335 0.7998369 -0.005155668 0.5725335 0.7998369 -0.009080105 0.5725335 0.7998369 -0.01434988 0.5725335 0.7998369 -0.02107202 0.5725335 0.7998369 -0.02934285 0.5725335 0.7998369 -0.03925039 0.5725335 0.7998369 -0.05087609 0.5725335 0.7998369 -0.06429595 0.5725335 0.7998369 -0.07958143 0.5725335 0.7998369 -0.0968001 0.5725335 0.7998369 -0.1160161 0.5725335 0.7998369 -0.1372908 0.5725335 0.7998369 -0.1606827 0.5725335 0.7998369 -0.1862481 0.5725335 0.7998369 -0.2140411 0.5725335 0.7998369 -0.2441142 0.5725335 0.7998369 -0.2765176 0.5725335 0.7998369 -0.3113005 0.5725335 0.7998369 -0.3485102 0.5725335 0.7998369 -0.388193 0.5725335 0.7998369 -0.4303934 0.5725335 0.7998369 -0.4751555 0.5725335 0.7998369 -0.5225216 0.5725335 0.7998369 -0.5725335 0.5725335 0.7998369 -0.6252316 0.5725335 0.7998369 -0.6806558 0.5725335 0.7998369 -0.7388448 0.5725335 0.7998369 -0.7998369 0.5725335 0.7998369 -0.8636691 0.5725335 0.7998369 -0.9303782 0.5725335 0.7998369 -1 0.5725335 0.7998369 -0 0.6252316 0.7998369 -0.002418731 0.6252316 0.7998369 -0.005155668 0.6252316 0.7998369 -0.009080105 0.6252316 0.7998369 -0.01434988 0.6252316 0.7998369 -0.02107202 0.6252316 0.7998369 -0.02934285 0.6252316 0.7998369 -0.03925039 0.6252316 0.7998369 -0.05087609 0.6252316 0.7998369 -0.06429595 0.6252316 0.7998369 -0.07958143 0.6252316 0.7998369 -0.0968001 0.6252316 0.7998369 -0.1160161 0.6252316 0.7998369 -0.1372908 0.6252316 0.7998369 -0.1606827 0.6252316 0.7998369 -0.1862481 0.6252316 0.7998369 -0.2140411 0.6252316 0.7998369 -0.2441142 0.6252316 0.7998369 -0.2765176 0.6252316 0.7998369 -0.3113005 0.6252316 0.7998369 -0.3485102 0.6252316 0.7998369 -0.388193 0.6252316 0.7998369 -0.4303934 0.6252316 0.7998369 -0.4751555 0.6252316 0.7998369 -0.5225216 0.6252316 0.7998369 -0.5725335 0.6252316 0.7998369 -0.6252316 0.6252316 0.7998369 -0.6806558 0.6252316 0.7998369 -0.7388448 0.6252316 0.7998369 -0.7998369 0.6252316 0.7998369 -0.8636691 0.6252316 0.7998369 -0.9303782 0.6252316 0.7998369 -1 0.6252316 0.7998369 -0 0.6806558 0.7998369 -0.002418731 0.6806558 0.7998369 -0.005155668 0.6806558 0.7998369 -0.009080105 0.6806558 0.7998369 -0.01434988 0.6806558 0.7998369 -0.02107202 0.6806558 0.7998369 -0.02934285 0.6806558 0.7998369 -0.03925039 0.6806558 0.7998369 -0.05087609 0.6806558 0.7998369 -0.06429595 0.6806558 0.7998369 -0.07958143 0.6806558 0.7998369 -0.0968001 0.6806558 0.7998369 -0.1160161 0.6806558 0.7998369 -0.1372908 0.6806558 0.7998369 -0.1606827 0.6806558 0.7998369 -0.1862481 0.6806558 0.7998369 -0.2140411 0.6806558 0.7998369 -0.2441142 0.6806558 0.7998369 -0.2765176 0.6806558 0.7998369 -0.3113005 0.6806558 0.7998369 -0.3485102 0.6806558 0.7998369 -0.388193 0.6806558 0.7998369 -0.4303934 0.6806558 0.7998369 -0.4751555 0.6806558 0.7998369 -0.5225216 0.6806558 0.7998369 -0.5725335 0.6806558 0.7998369 -0.6252316 0.6806558 0.7998369 -0.6806558 0.6806558 0.7998369 -0.7388448 0.6806558 0.7998369 -0.7998369 0.6806558 0.7998369 -0.8636691 0.6806558 0.7998369 -0.9303782 0.6806558 0.7998369 -1 0.6806558 0.7998369 -0 0.7388448 0.7998369 -0.002418731 0.7388448 0.7998369 -0.005155668 0.7388448 0.7998369 -0.009080105 0.7388448 0.7998369 -0.01434988 0.7388448 0.7998369 -0.02107202 0.7388448 0.7998369 -0.02934285 0.7388448 0.7998369 -0.03925039 0.7388448 0.7998369 -0.05087609 0.7388448 0.7998369 -0.06429595 0.7388448 0.7998369 -0.07958143 0.7388448 0.7998369 -0.0968001 0.7388448 0.7998369 -0.1160161 0.7388448 0.7998369 -0.1372908 0.7388448 0.7998369 -0.1606827 0.7388448 0.7998369 -0.1862481 0.7388448 0.7998369 -0.2140411 0.7388448 0.7998369 -0.2441142 0.7388448 0.7998369 -0.2765176 0.7388448 0.7998369 -0.3113005 0.7388448 0.7998369 -0.3485102 0.7388448 0.7998369 -0.388193 0.7388448 0.7998369 -0.4303934 0.7388448 0.7998369 -0.4751555 0.7388448 0.7998369 -0.5225216 0.7388448 0.7998369 -0.5725335 0.7388448 0.7998369 -0.6252316 0.7388448 0.7998369 -0.6806558 0.7388448 0.7998369 -0.7388448 0.7388448 0.7998369 -0.7998369 0.7388448 0.7998369 -0.8636691 0.7388448 0.7998369 -0.9303782 0.7388448 0.7998369 -1 0.7388448 0.7998369 -0 0.7998369 0.7998369 -0.002418731 0.7998369 0.7998369 -0.005155668 0.7998369 0.7998369 -0.009080105 0.7998369 0.7998369 -0.01434988 0.7998369 0.7998369 -0.02107202 0.7998369 0.7998369 -0.02934285 0.7998369 0.7998369 -0.03925039 0.7998369 0.7998369 -0.05087609 0.7998369 0.7998369 -0.06429595 0.7998369 0.7998369 -0.07958143 0.7998369 0.7998369 -0.0968001 0.7998369 0.7998369 -0.1160161 0.7998369 0.7998369 -0.1372908 0.7998369 0.7998369 -0.1606827 0.7998369 0.7998369 -0.1862481 0.7998369 0.7998369 -0.2140411 0.7998369 0.7998369 -0.2441142 0.7998369 0.7998369 -0.2765176 0.7998369 0.7998369 -0.3113005 0.7998369 0.7998369 -0.3485102 0.7998369 0.7998369 -0.388193 0.7998369 0.7998369 -0.4303934 0.7998369 0.7998369 -0.4751555 0.7998369 0.7998369 -0.5225216 0.7998369 0.7998369 -0.5725335 0.7998369 0.7998369 -0.6252316 0.7998369 0.7998369 -0.6806558 0.7998369 0.7998369 -0.7388448 0.7998369 0.7998369 -0.7998369 0.7998369 0.7998369 -0.8636691 0.7998369 0.7998369 -0.9303782 0.7998369 0.7998369 -1 0.7998369 0.7998369 -0 0.8636691 0.7998369 -0.002418731 0.8636691 0.7998369 -0.005155668 0.8636691 0.7998369 -0.009080105 0.8636691 0.7998369 -0.01434988 0.8636691 0.7998369 -0.02107202 0.8636691 0.7998369 -0.02934285 0.8636691 0.7998369 -0.03925039 0.8636691 0.7998369 -0.05087609 0.8636691 0.7998369 -0.06429595 0.8636691 0.7998369 -0.07958143 0.8636691 0.7998369 -0.0968001 0.8636691 0.7998369 -0.1160161 0.8636691 0.7998369 -0.1372908 0.8636691 0.7998369 -0.1606827 0.8636691 0.7998369 -0.1862481 0.8636691 0.7998369 -0.2140411 0.8636691 0.7998369 -0.2441142 0.8636691 0.7998369 -0.2765176 0.8636691 0.7998369 -0.3113005 0.8636691 0.7998369 -0.3485102 0.8636691 0.7998369 -0.388193 0.8636691 0.7998369 -0.4303934 0.8636691 0.7998369 -0.4751555 0.8636691 0.7998369 -0.5225216 0.8636691 0.7998369 -0.5725335 0.8636691 0.7998369 -0.6252316 0.8636691 0.7998369 -0.6806558 0.8636691 0.7998369 -0.7388448 0.8636691 0.7998369 -0.7998369 0.8636691 0.7998369 -0.8636691 0.8636691 0.7998369 -0.9303782 0.8636691 0.7998369 -1 0.8636691 0.7998369 -0 0.9303782 0.7998369 -0.002418731 0.9303782 0.7998369 -0.005155668 0.9303782 0.7998369 -0.009080105 0.9303782 0.7998369 -0.01434988 0.9303782 0.7998369 -0.02107202 0.9303782 0.7998369 -0.02934285 0.9303782 0.7998369 -0.03925039 0.9303782 0.7998369 -0.05087609 0.9303782 0.7998369 -0.06429595 0.9303782 0.7998369 -0.07958143 0.9303782 0.7998369 -0.0968001 0.9303782 0.7998369 -0.1160161 0.9303782 0.7998369 -0.1372908 0.9303782 0.7998369 -0.1606827 0.9303782 0.7998369 -0.1862481 0.9303782 0.7998369 -0.2140411 0.9303782 0.7998369 -0.2441142 0.9303782 0.7998369 -0.2765176 0.9303782 0.7998369 -0.3113005 0.9303782 0.7998369 -0.3485102 0.9303782 0.7998369 -0.388193 0.9303782 0.7998369 -0.4303934 0.9303782 0.7998369 -0.4751555 0.9303782 0.7998369 -0.5225216 0.9303782 0.7998369 -0.5725335 0.9303782 0.7998369 -0.6252316 0.9303782 0.7998369 -0.6806558 0.9303782 0.7998369 -0.7388448 0.9303782 0.7998369 -0.7998369 0.9303782 0.7998369 -0.8636691 0.9303782 0.7998369 -0.9303782 0.9303782 0.7998369 -1 0.9303782 0.7998369 -0 1 0.7998369 -0.002418731 1 0.7998369 -0.005155668 1 0.7998369 -0.009080105 1 0.7998369 -0.01434988 1 0.7998369 -0.02107202 1 0.7998369 -0.02934285 1 0.7998369 -0.03925039 1 0.7998369 -0.05087609 1 0.7998369 -0.06429595 1 0.7998369 -0.07958143 1 0.7998369 -0.0968001 1 0.7998369 -0.1160161 1 0.7998369 -0.1372908 1 0.7998369 -0.1606827 1 0.7998369 -0.1862481 1 0.7998369 -0.2140411 1 0.7998369 -0.2441142 1 0.7998369 -0.2765176 1 0.7998369 -0.3113005 1 0.7998369 -0.3485102 1 0.7998369 -0.388193 1 0.7998369 -0.4303934 1 0.7998369 -0.4751555 1 0.7998369 -0.5225216 1 0.7998369 -0.5725335 1 0.7998369 -0.6252316 1 0.7998369 -0.6806558 1 0.7998369 -0.7388448 1 0.7998369 -0.7998369 1 0.7998369 -0.8636691 1 0.7998369 -0.9303782 1 0.7998369 -1 1 0.7998369 -0 0 0.8636691 -0.002418731 0 0.8636691 -0.005155668 0 0.8636691 -0.009080105 0 0.8636691 -0.01434988 0 0.8636691 -0.02107202 0 0.8636691 -0.02934285 0 0.8636691 -0.03925039 0 0.8636691 -0.05087609 0 0.8636691 -0.06429595 0 0.8636691 -0.07958143 0 0.8636691 -0.0968001 0 0.8636691 -0.1160161 0 0.8636691 -0.1372908 0 0.8636691 -0.1606827 0 0.8636691 -0.1862481 0 0.8636691 -0.2140411 0 0.8636691 -0.2441142 0 0.8636691 -0.2765176 0 0.8636691 -0.3113005 0 0.8636691 -0.3485102 0 0.8636691 -0.388193 0 0.8636691 -0.4303934 0 0.8636691 -0.4751555 0 0.8636691 -0.5225216 0 0.8636691 -0.5725335 0 0.8636691 -0.6252316 0 0.8636691 -0.6806558 0 0.8636691 -0.7388448 0 0.8636691 -0.7998369 0 0.8636691 -0.8636691 0 0.8636691 -0.9303782 0 0.8636691 -1 0 0.8636691 -0 0.002418731 0.8636691 -0.002418731 0.002418731 0.8636691 -0.005155668 0.002418731 0.8636691 -0.009080105 0.002418731 0.8636691 -0.01434988 0.002418731 0.8636691 -0.02107202 0.002418731 0.8636691 -0.02934285 0.002418731 0.8636691 -0.03925039 0.002418731 0.8636691 -0.05087609 0.002418731 0.8636691 -0.06429595 0.002418731 0.8636691 -0.07958143 0.002418731 0.8636691 -0.0968001 0.002418731 0.8636691 -0.1160161 0.002418731 0.8636691 -0.1372908 0.002418731 0.8636691 -0.1606827 0.002418731 0.8636691 -0.1862481 0.002418731 0.8636691 -0.2140411 0.002418731 0.8636691 -0.2441142 0.002418731 0.8636691 -0.2765176 0.002418731 0.8636691 -0.3113005 0.002418731 0.8636691 -0.3485102 0.002418731 0.8636691 -0.388193 0.002418731 0.8636691 -0.4303934 0.002418731 0.8636691 -0.4751555 0.002418731 0.8636691 -0.5225216 0.002418731 0.8636691 -0.5725335 0.002418731 0.8636691 -0.6252316 0.002418731 0.8636691 -0.6806558 0.002418731 0.8636691 -0.7388448 0.002418731 0.8636691 -0.7998369 0.002418731 0.8636691 -0.8636691 0.002418731 0.8636691 -0.9303782 0.002418731 0.8636691 -1 0.002418731 0.8636691 -0 0.005155668 0.8636691 -0.002418731 0.005155668 0.8636691 -0.005155668 0.005155668 0.8636691 -0.009080105 0.005155668 0.8636691 -0.01434988 0.005155668 0.8636691 -0.02107202 0.005155668 0.8636691 -0.02934285 0.005155668 0.8636691 -0.03925039 0.005155668 0.8636691 -0.05087609 0.005155668 0.8636691 -0.06429595 0.005155668 0.8636691 -0.07958143 0.005155668 0.8636691 -0.0968001 0.005155668 0.8636691 -0.1160161 0.005155668 0.8636691 -0.1372908 0.005155668 0.8636691 -0.1606827 0.005155668 0.8636691 -0.1862481 0.005155668 0.8636691 -0.2140411 0.005155668 0.8636691 -0.2441142 0.005155668 0.8636691 -0.2765176 0.005155668 0.8636691 -0.3113005 0.005155668 0.8636691 -0.3485102 0.005155668 0.8636691 -0.388193 0.005155668 0.8636691 -0.4303934 0.005155668 0.8636691 -0.4751555 0.005155668 0.8636691 -0.5225216 0.005155668 0.8636691 -0.5725335 0.005155668 0.8636691 -0.6252316 0.005155668 0.8636691 -0.6806558 0.005155668 0.8636691 -0.7388448 0.005155668 0.8636691 -0.7998369 0.005155668 0.8636691 -0.8636691 0.005155668 0.8636691 -0.9303782 0.005155668 0.8636691 -1 0.005155668 0.8636691 -0 0.009080105 0.8636691 -0.002418731 0.009080105 0.8636691 -0.005155668 0.009080105 0.8636691 -0.009080105 0.009080105 0.8636691 -0.01434988 0.009080105 0.8636691 -0.02107202 0.009080105 0.8636691 -0.02934285 0.009080105 0.8636691 -0.03925039 0.009080105 0.8636691 -0.05087609 0.009080105 0.8636691 -0.06429595 0.009080105 0.8636691 -0.07958143 0.009080105 0.8636691 -0.0968001 0.009080105 0.8636691 -0.1160161 0.009080105 0.8636691 -0.1372908 0.009080105 0.8636691 -0.1606827 0.009080105 0.8636691 -0.1862481 0.009080105 0.8636691 -0.2140411 0.009080105 0.8636691 -0.2441142 0.009080105 0.8636691 -0.2765176 0.009080105 0.8636691 -0.3113005 0.009080105 0.8636691 -0.3485102 0.009080105 0.8636691 -0.388193 0.009080105 0.8636691 -0.4303934 0.009080105 0.8636691 -0.4751555 0.009080105 0.8636691 -0.5225216 0.009080105 0.8636691 -0.5725335 0.009080105 0.8636691 -0.6252316 0.009080105 0.8636691 -0.6806558 0.009080105 0.8636691 -0.7388448 0.009080105 0.8636691 -0.7998369 0.009080105 0.8636691 -0.8636691 0.009080105 0.8636691 -0.9303782 0.009080105 0.8636691 -1 0.009080105 0.8636691 -0 0.01434988 0.8636691 -0.002418731 0.01434988 0.8636691 -0.005155668 0.01434988 0.8636691 -0.009080105 0.01434988 0.8636691 -0.01434988 0.01434988 0.8636691 -0.02107202 0.01434988 0.8636691 -0.02934285 0.01434988 0.8636691 -0.03925039 0.01434988 0.8636691 -0.05087609 0.01434988 0.8636691 -0.06429595 0.01434988 0.8636691 -0.07958143 0.01434988 0.8636691 -0.0968001 0.01434988 0.8636691 -0.1160161 0.01434988 0.8636691 -0.1372908 0.01434988 0.8636691 -0.1606827 0.01434988 0.8636691 -0.1862481 0.01434988 0.8636691 -0.2140411 0.01434988 0.8636691 -0.2441142 0.01434988 0.8636691 -0.2765176 0.01434988 0.8636691 -0.3113005 0.01434988 0.8636691 -0.3485102 0.01434988 0.8636691 -0.388193 0.01434988 0.8636691 -0.4303934 0.01434988 0.8636691 -0.4751555 0.01434988 0.8636691 -0.5225216 0.01434988 0.8636691 -0.5725335 0.01434988 0.8636691 -0.6252316 0.01434988 0.8636691 -0.6806558 0.01434988 0.8636691 -0.7388448 0.01434988 0.8636691 -0.7998369 0.01434988 0.8636691 -0.8636691 0.01434988 0.8636691 -0.9303782 0.01434988 0.8636691 -1 0.01434988 0.8636691 -0 0.02107202 0.8636691 -0.002418731 0.02107202 0.8636691 -0.005155668 0.02107202 0.8636691 -0.009080105 0.02107202 0.8636691 -0.01434988 0.02107202 0.8636691 -0.02107202 0.02107202 0.8636691 -0.02934285 0.02107202 0.8636691 -0.03925039 0.02107202 0.8636691 -0.05087609 0.02107202 0.8636691 -0.06429595 0.02107202 0.8636691 -0.07958143 0.02107202 0.8636691 -0.0968001 0.02107202 0.8636691 -0.1160161 0.02107202 0.8636691 -0.1372908 0.02107202 0.8636691 -0.1606827 0.02107202 0.8636691 -0.1862481 0.02107202 0.8636691 -0.2140411 0.02107202 0.8636691 -0.2441142 0.02107202 0.8636691 -0.2765176 0.02107202 0.8636691 -0.3113005 0.02107202 0.8636691 -0.3485102 0.02107202 0.8636691 -0.388193 0.02107202 0.8636691 -0.4303934 0.02107202 0.8636691 -0.4751555 0.02107202 0.8636691 -0.5225216 0.02107202 0.8636691 -0.5725335 0.02107202 0.8636691 -0.6252316 0.02107202 0.8636691 -0.6806558 0.02107202 0.8636691 -0.7388448 0.02107202 0.8636691 -0.7998369 0.02107202 0.8636691 -0.8636691 0.02107202 0.8636691 -0.9303782 0.02107202 0.8636691 -1 0.02107202 0.8636691 -0 0.02934285 0.8636691 -0.002418731 0.02934285 0.8636691 -0.005155668 0.02934285 0.8636691 -0.009080105 0.02934285 0.8636691 -0.01434988 0.02934285 0.8636691 -0.02107202 0.02934285 0.8636691 -0.02934285 0.02934285 0.8636691 -0.03925039 0.02934285 0.8636691 -0.05087609 0.02934285 0.8636691 -0.06429595 0.02934285 0.8636691 -0.07958143 0.02934285 0.8636691 -0.0968001 0.02934285 0.8636691 -0.1160161 0.02934285 0.8636691 -0.1372908 0.02934285 0.8636691 -0.1606827 0.02934285 0.8636691 -0.1862481 0.02934285 0.8636691 -0.2140411 0.02934285 0.8636691 -0.2441142 0.02934285 0.8636691 -0.2765176 0.02934285 0.8636691 -0.3113005 0.02934285 0.8636691 -0.3485102 0.02934285 0.8636691 -0.388193 0.02934285 0.8636691 -0.4303934 0.02934285 0.8636691 -0.4751555 0.02934285 0.8636691 -0.5225216 0.02934285 0.8636691 -0.5725335 0.02934285 0.8636691 -0.6252316 0.02934285 0.8636691 -0.6806558 0.02934285 0.8636691 -0.7388448 0.02934285 0.8636691 -0.7998369 0.02934285 0.8636691 -0.8636691 0.02934285 0.8636691 -0.9303782 0.02934285 0.8636691 -1 0.02934285 0.8636691 -0 0.03925039 0.8636691 -0.002418731 0.03925039 0.8636691 -0.005155668 0.03925039 0.8636691 -0.009080105 0.03925039 0.8636691 -0.01434988 0.03925039 0.8636691 -0.02107202 0.03925039 0.8636691 -0.02934285 0.03925039 0.8636691 -0.03925039 0.03925039 0.8636691 -0.05087609 0.03925039 0.8636691 -0.06429595 0.03925039 0.8636691 -0.07958143 0.03925039 0.8636691 -0.0968001 0.03925039 0.8636691 -0.1160161 0.03925039 0.8636691 -0.1372908 0.03925039 0.8636691 -0.1606827 0.03925039 0.8636691 -0.1862481 0.03925039 0.8636691 -0.2140411 0.03925039 0.8636691 -0.2441142 0.03925039 0.8636691 -0.2765176 0.03925039 0.8636691 -0.3113005 0.03925039 0.8636691 -0.3485102 0.03925039 0.8636691 -0.388193 0.03925039 0.8636691 -0.4303934 0.03925039 0.8636691 -0.4751555 0.03925039 0.8636691 -0.5225216 0.03925039 0.8636691 -0.5725335 0.03925039 0.8636691 -0.6252316 0.03925039 0.8636691 -0.6806558 0.03925039 0.8636691 -0.7388448 0.03925039 0.8636691 -0.7998369 0.03925039 0.8636691 -0.8636691 0.03925039 0.8636691 -0.9303782 0.03925039 0.8636691 -1 0.03925039 0.8636691 -0 0.05087609 0.8636691 -0.002418731 0.05087609 0.8636691 -0.005155668 0.05087609 0.8636691 -0.009080105 0.05087609 0.8636691 -0.01434988 0.05087609 0.8636691 -0.02107202 0.05087609 0.8636691 -0.02934285 0.05087609 0.8636691 -0.03925039 0.05087609 0.8636691 -0.05087609 0.05087609 0.8636691 -0.06429595 0.05087609 0.8636691 -0.07958143 0.05087609 0.8636691 -0.0968001 0.05087609 0.8636691 -0.1160161 0.05087609 0.8636691 -0.1372908 0.05087609 0.8636691 -0.1606827 0.05087609 0.8636691 -0.1862481 0.05087609 0.8636691 -0.2140411 0.05087609 0.8636691 -0.2441142 0.05087609 0.8636691 -0.2765176 0.05087609 0.8636691 -0.3113005 0.05087609 0.8636691 -0.3485102 0.05087609 0.8636691 -0.388193 0.05087609 0.8636691 -0.4303934 0.05087609 0.8636691 -0.4751555 0.05087609 0.8636691 -0.5225216 0.05087609 0.8636691 -0.5725335 0.05087609 0.8636691 -0.6252316 0.05087609 0.8636691 -0.6806558 0.05087609 0.8636691 -0.7388448 0.05087609 0.8636691 -0.7998369 0.05087609 0.8636691 -0.8636691 0.05087609 0.8636691 -0.9303782 0.05087609 0.8636691 -1 0.05087609 0.8636691 -0 0.06429595 0.8636691 -0.002418731 0.06429595 0.8636691 -0.005155668 0.06429595 0.8636691 -0.009080105 0.06429595 0.8636691 -0.01434988 0.06429595 0.8636691 -0.02107202 0.06429595 0.8636691 -0.02934285 0.06429595 0.8636691 -0.03925039 0.06429595 0.8636691 -0.05087609 0.06429595 0.8636691 -0.06429595 0.06429595 0.8636691 -0.07958143 0.06429595 0.8636691 -0.0968001 0.06429595 0.8636691 -0.1160161 0.06429595 0.8636691 -0.1372908 0.06429595 0.8636691 -0.1606827 0.06429595 0.8636691 -0.1862481 0.06429595 0.8636691 -0.2140411 0.06429595 0.8636691 -0.2441142 0.06429595 0.8636691 -0.2765176 0.06429595 0.8636691 -0.3113005 0.06429595 0.8636691 -0.3485102 0.06429595 0.8636691 -0.388193 0.06429595 0.8636691 -0.4303934 0.06429595 0.8636691 -0.4751555 0.06429595 0.8636691 -0.5225216 0.06429595 0.8636691 -0.5725335 0.06429595 0.8636691 -0.6252316 0.06429595 0.8636691 -0.6806558 0.06429595 0.8636691 -0.7388448 0.06429595 0.8636691 -0.7998369 0.06429595 0.8636691 -0.8636691 0.06429595 0.8636691 -0.9303782 0.06429595 0.8636691 -1 0.06429595 0.8636691 -0 0.07958143 0.8636691 -0.002418731 0.07958143 0.8636691 -0.005155668 0.07958143 0.8636691 -0.009080105 0.07958143 0.8636691 -0.01434988 0.07958143 0.8636691 -0.02107202 0.07958143 0.8636691 -0.02934285 0.07958143 0.8636691 -0.03925039 0.07958143 0.8636691 -0.05087609 0.07958143 0.8636691 -0.06429595 0.07958143 0.8636691 -0.07958143 0.07958143 0.8636691 -0.0968001 0.07958143 0.8636691 -0.1160161 0.07958143 0.8636691 -0.1372908 0.07958143 0.8636691 -0.1606827 0.07958143 0.8636691 -0.1862481 0.07958143 0.8636691 -0.2140411 0.07958143 0.8636691 -0.2441142 0.07958143 0.8636691 -0.2765176 0.07958143 0.8636691 -0.3113005 0.07958143 0.8636691 -0.3485102 0.07958143 0.8636691 -0.388193 0.07958143 0.8636691 -0.4303934 0.07958143 0.8636691 -0.4751555 0.07958143 0.8636691 -0.5225216 0.07958143 0.8636691 -0.5725335 0.07958143 0.8636691 -0.6252316 0.07958143 0.8636691 -0.6806558 0.07958143 0.8636691 -0.7388448 0.07958143 0.8636691 -0.7998369 0.07958143 0.8636691 -0.8636691 0.07958143 0.8636691 -0.9303782 0.07958143 0.8636691 -1 0.07958143 0.8636691 -0 0.0968001 0.8636691 -0.002418731 0.0968001 0.8636691 -0.005155668 0.0968001 0.8636691 -0.009080105 0.0968001 0.8636691 -0.01434988 0.0968001 0.8636691 -0.02107202 0.0968001 0.8636691 -0.02934285 0.0968001 0.8636691 -0.03925039 0.0968001 0.8636691 -0.05087609 0.0968001 0.8636691 -0.06429595 0.0968001 0.8636691 -0.07958143 0.0968001 0.8636691 -0.0968001 0.0968001 0.8636691 -0.1160161 0.0968001 0.8636691 -0.1372908 0.0968001 0.8636691 -0.1606827 0.0968001 0.8636691 -0.1862481 0.0968001 0.8636691 -0.2140411 0.0968001 0.8636691 -0.2441142 0.0968001 0.8636691 -0.2765176 0.0968001 0.8636691 -0.3113005 0.0968001 0.8636691 -0.3485102 0.0968001 0.8636691 -0.388193 0.0968001 0.8636691 -0.4303934 0.0968001 0.8636691 -0.4751555 0.0968001 0.8636691 -0.5225216 0.0968001 0.8636691 -0.5725335 0.0968001 0.8636691 -0.6252316 0.0968001 0.8636691 -0.6806558 0.0968001 0.8636691 -0.7388448 0.0968001 0.8636691 -0.7998369 0.0968001 0.8636691 -0.8636691 0.0968001 0.8636691 -0.9303782 0.0968001 0.8636691 -1 0.0968001 0.8636691 -0 0.1160161 0.8636691 -0.002418731 0.1160161 0.8636691 -0.005155668 0.1160161 0.8636691 -0.009080105 0.1160161 0.8636691 -0.01434988 0.1160161 0.8636691 -0.02107202 0.1160161 0.8636691 -0.02934285 0.1160161 0.8636691 -0.03925039 0.1160161 0.8636691 -0.05087609 0.1160161 0.8636691 -0.06429595 0.1160161 0.8636691 -0.07958143 0.1160161 0.8636691 -0.0968001 0.1160161 0.8636691 -0.1160161 0.1160161 0.8636691 -0.1372908 0.1160161 0.8636691 -0.1606827 0.1160161 0.8636691 -0.1862481 0.1160161 0.8636691 -0.2140411 0.1160161 0.8636691 -0.2441142 0.1160161 0.8636691 -0.2765176 0.1160161 0.8636691 -0.3113005 0.1160161 0.8636691 -0.3485102 0.1160161 0.8636691 -0.388193 0.1160161 0.8636691 -0.4303934 0.1160161 0.8636691 -0.4751555 0.1160161 0.8636691 -0.5225216 0.1160161 0.8636691 -0.5725335 0.1160161 0.8636691 -0.6252316 0.1160161 0.8636691 -0.6806558 0.1160161 0.8636691 -0.7388448 0.1160161 0.8636691 -0.7998369 0.1160161 0.8636691 -0.8636691 0.1160161 0.8636691 -0.9303782 0.1160161 0.8636691 -1 0.1160161 0.8636691 -0 0.1372908 0.8636691 -0.002418731 0.1372908 0.8636691 -0.005155668 0.1372908 0.8636691 -0.009080105 0.1372908 0.8636691 -0.01434988 0.1372908 0.8636691 -0.02107202 0.1372908 0.8636691 -0.02934285 0.1372908 0.8636691 -0.03925039 0.1372908 0.8636691 -0.05087609 0.1372908 0.8636691 -0.06429595 0.1372908 0.8636691 -0.07958143 0.1372908 0.8636691 -0.0968001 0.1372908 0.8636691 -0.1160161 0.1372908 0.8636691 -0.1372908 0.1372908 0.8636691 -0.1606827 0.1372908 0.8636691 -0.1862481 0.1372908 0.8636691 -0.2140411 0.1372908 0.8636691 -0.2441142 0.1372908 0.8636691 -0.2765176 0.1372908 0.8636691 -0.3113005 0.1372908 0.8636691 -0.3485102 0.1372908 0.8636691 -0.388193 0.1372908 0.8636691 -0.4303934 0.1372908 0.8636691 -0.4751555 0.1372908 0.8636691 -0.5225216 0.1372908 0.8636691 -0.5725335 0.1372908 0.8636691 -0.6252316 0.1372908 0.8636691 -0.6806558 0.1372908 0.8636691 -0.7388448 0.1372908 0.8636691 -0.7998369 0.1372908 0.8636691 -0.8636691 0.1372908 0.8636691 -0.9303782 0.1372908 0.8636691 -1 0.1372908 0.8636691 -0 0.1606827 0.8636691 -0.002418731 0.1606827 0.8636691 -0.005155668 0.1606827 0.8636691 -0.009080105 0.1606827 0.8636691 -0.01434988 0.1606827 0.8636691 -0.02107202 0.1606827 0.8636691 -0.02934285 0.1606827 0.8636691 -0.03925039 0.1606827 0.8636691 -0.05087609 0.1606827 0.8636691 -0.06429595 0.1606827 0.8636691 -0.07958143 0.1606827 0.8636691 -0.0968001 0.1606827 0.8636691 -0.1160161 0.1606827 0.8636691 -0.1372908 0.1606827 0.8636691 -0.1606827 0.1606827 0.8636691 -0.1862481 0.1606827 0.8636691 -0.2140411 0.1606827 0.8636691 -0.2441142 0.1606827 0.8636691 -0.2765176 0.1606827 0.8636691 -0.3113005 0.1606827 0.8636691 -0.3485102 0.1606827 0.8636691 -0.388193 0.1606827 0.8636691 -0.4303934 0.1606827 0.8636691 -0.4751555 0.1606827 0.8636691 -0.5225216 0.1606827 0.8636691 -0.5725335 0.1606827 0.8636691 -0.6252316 0.1606827 0.8636691 -0.6806558 0.1606827 0.8636691 -0.7388448 0.1606827 0.8636691 -0.7998369 0.1606827 0.8636691 -0.8636691 0.1606827 0.8636691 -0.9303782 0.1606827 0.8636691 -1 0.1606827 0.8636691 -0 0.1862481 0.8636691 -0.002418731 0.1862481 0.8636691 -0.005155668 0.1862481 0.8636691 -0.009080105 0.1862481 0.8636691 -0.01434988 0.1862481 0.8636691 -0.02107202 0.1862481 0.8636691 -0.02934285 0.1862481 0.8636691 -0.03925039 0.1862481 0.8636691 -0.05087609 0.1862481 0.8636691 -0.06429595 0.1862481 0.8636691 -0.07958143 0.1862481 0.8636691 -0.0968001 0.1862481 0.8636691 -0.1160161 0.1862481 0.8636691 -0.1372908 0.1862481 0.8636691 -0.1606827 0.1862481 0.8636691 -0.1862481 0.1862481 0.8636691 -0.2140411 0.1862481 0.8636691 -0.2441142 0.1862481 0.8636691 -0.2765176 0.1862481 0.8636691 -0.3113005 0.1862481 0.8636691 -0.3485102 0.1862481 0.8636691 -0.388193 0.1862481 0.8636691 -0.4303934 0.1862481 0.8636691 -0.4751555 0.1862481 0.8636691 -0.5225216 0.1862481 0.8636691 -0.5725335 0.1862481 0.8636691 -0.6252316 0.1862481 0.8636691 -0.6806558 0.1862481 0.8636691 -0.7388448 0.1862481 0.8636691 -0.7998369 0.1862481 0.8636691 -0.8636691 0.1862481 0.8636691 -0.9303782 0.1862481 0.8636691 -1 0.1862481 0.8636691 -0 0.2140411 0.8636691 -0.002418731 0.2140411 0.8636691 -0.005155668 0.2140411 0.8636691 -0.009080105 0.2140411 0.8636691 -0.01434988 0.2140411 0.8636691 -0.02107202 0.2140411 0.8636691 -0.02934285 0.2140411 0.8636691 -0.03925039 0.2140411 0.8636691 -0.05087609 0.2140411 0.8636691 -0.06429595 0.2140411 0.8636691 -0.07958143 0.2140411 0.8636691 -0.0968001 0.2140411 0.8636691 -0.1160161 0.2140411 0.8636691 -0.1372908 0.2140411 0.8636691 -0.1606827 0.2140411 0.8636691 -0.1862481 0.2140411 0.8636691 -0.2140411 0.2140411 0.8636691 -0.2441142 0.2140411 0.8636691 -0.2765176 0.2140411 0.8636691 -0.3113005 0.2140411 0.8636691 -0.3485102 0.2140411 0.8636691 -0.388193 0.2140411 0.8636691 -0.4303934 0.2140411 0.8636691 -0.4751555 0.2140411 0.8636691 -0.5225216 0.2140411 0.8636691 -0.5725335 0.2140411 0.8636691 -0.6252316 0.2140411 0.8636691 -0.6806558 0.2140411 0.8636691 -0.7388448 0.2140411 0.8636691 -0.7998369 0.2140411 0.8636691 -0.8636691 0.2140411 0.8636691 -0.9303782 0.2140411 0.8636691 -1 0.2140411 0.8636691 -0 0.2441142 0.8636691 -0.002418731 0.2441142 0.8636691 -0.005155668 0.2441142 0.8636691 -0.009080105 0.2441142 0.8636691 -0.01434988 0.2441142 0.8636691 -0.02107202 0.2441142 0.8636691 -0.02934285 0.2441142 0.8636691 -0.03925039 0.2441142 0.8636691 -0.05087609 0.2441142 0.8636691 -0.06429595 0.2441142 0.8636691 -0.07958143 0.2441142 0.8636691 -0.0968001 0.2441142 0.8636691 -0.1160161 0.2441142 0.8636691 -0.1372908 0.2441142 0.8636691 -0.1606827 0.2441142 0.8636691 -0.1862481 0.2441142 0.8636691 -0.2140411 0.2441142 0.8636691 -0.2441142 0.2441142 0.8636691 -0.2765176 0.2441142 0.8636691 -0.3113005 0.2441142 0.8636691 -0.3485102 0.2441142 0.8636691 -0.388193 0.2441142 0.8636691 -0.4303934 0.2441142 0.8636691 -0.4751555 0.2441142 0.8636691 -0.5225216 0.2441142 0.8636691 -0.5725335 0.2441142 0.8636691 -0.6252316 0.2441142 0.8636691 -0.6806558 0.2441142 0.8636691 -0.7388448 0.2441142 0.8636691 -0.7998369 0.2441142 0.8636691 -0.8636691 0.2441142 0.8636691 -0.9303782 0.2441142 0.8636691 -1 0.2441142 0.8636691 -0 0.2765176 0.8636691 -0.002418731 0.2765176 0.8636691 -0.005155668 0.2765176 0.8636691 -0.009080105 0.2765176 0.8636691 -0.01434988 0.2765176 0.8636691 -0.02107202 0.2765176 0.8636691 -0.02934285 0.2765176 0.8636691 -0.03925039 0.2765176 0.8636691 -0.05087609 0.2765176 0.8636691 -0.06429595 0.2765176 0.8636691 -0.07958143 0.2765176 0.8636691 -0.0968001 0.2765176 0.8636691 -0.1160161 0.2765176 0.8636691 -0.1372908 0.2765176 0.8636691 -0.1606827 0.2765176 0.8636691 -0.1862481 0.2765176 0.8636691 -0.2140411 0.2765176 0.8636691 -0.2441142 0.2765176 0.8636691 -0.2765176 0.2765176 0.8636691 -0.3113005 0.2765176 0.8636691 -0.3485102 0.2765176 0.8636691 -0.388193 0.2765176 0.8636691 -0.4303934 0.2765176 0.8636691 -0.4751555 0.2765176 0.8636691 -0.5225216 0.2765176 0.8636691 -0.5725335 0.2765176 0.8636691 -0.6252316 0.2765176 0.8636691 -0.6806558 0.2765176 0.8636691 -0.7388448 0.2765176 0.8636691 -0.7998369 0.2765176 0.8636691 -0.8636691 0.2765176 0.8636691 -0.9303782 0.2765176 0.8636691 -1 0.2765176 0.8636691 -0 0.3113005 0.8636691 -0.002418731 0.3113005 0.8636691 -0.005155668 0.3113005 0.8636691 -0.009080105 0.3113005 0.8636691 -0.01434988 0.3113005 0.8636691 -0.02107202 0.3113005 0.8636691 -0.02934285 0.3113005 0.8636691 -0.03925039 0.3113005 0.8636691 -0.05087609 0.3113005 0.8636691 -0.06429595 0.3113005 0.8636691 -0.07958143 0.3113005 0.8636691 -0.0968001 0.3113005 0.8636691 -0.1160161 0.3113005 0.8636691 -0.1372908 0.3113005 0.8636691 -0.1606827 0.3113005 0.8636691 -0.1862481 0.3113005 0.8636691 -0.2140411 0.3113005 0.8636691 -0.2441142 0.3113005 0.8636691 -0.2765176 0.3113005 0.8636691 -0.3113005 0.3113005 0.8636691 -0.3485102 0.3113005 0.8636691 -0.388193 0.3113005 0.8636691 -0.4303934 0.3113005 0.8636691 -0.4751555 0.3113005 0.8636691 -0.5225216 0.3113005 0.8636691 -0.5725335 0.3113005 0.8636691 -0.6252316 0.3113005 0.8636691 -0.6806558 0.3113005 0.8636691 -0.7388448 0.3113005 0.8636691 -0.7998369 0.3113005 0.8636691 -0.8636691 0.3113005 0.8636691 -0.9303782 0.3113005 0.8636691 -1 0.3113005 0.8636691 -0 0.3485102 0.8636691 -0.002418731 0.3485102 0.8636691 -0.005155668 0.3485102 0.8636691 -0.009080105 0.3485102 0.8636691 -0.01434988 0.3485102 0.8636691 -0.02107202 0.3485102 0.8636691 -0.02934285 0.3485102 0.8636691 -0.03925039 0.3485102 0.8636691 -0.05087609 0.3485102 0.8636691 -0.06429595 0.3485102 0.8636691 -0.07958143 0.3485102 0.8636691 -0.0968001 0.3485102 0.8636691 -0.1160161 0.3485102 0.8636691 -0.1372908 0.3485102 0.8636691 -0.1606827 0.3485102 0.8636691 -0.1862481 0.3485102 0.8636691 -0.2140411 0.3485102 0.8636691 -0.2441142 0.3485102 0.8636691 -0.2765176 0.3485102 0.8636691 -0.3113005 0.3485102 0.8636691 -0.3485102 0.3485102 0.8636691 -0.388193 0.3485102 0.8636691 -0.4303934 0.3485102 0.8636691 -0.4751555 0.3485102 0.8636691 -0.5225216 0.3485102 0.8636691 -0.5725335 0.3485102 0.8636691 -0.6252316 0.3485102 0.8636691 -0.6806558 0.3485102 0.8636691 -0.7388448 0.3485102 0.8636691 -0.7998369 0.3485102 0.8636691 -0.8636691 0.3485102 0.8636691 -0.9303782 0.3485102 0.8636691 -1 0.3485102 0.8636691 -0 0.388193 0.8636691 -0.002418731 0.388193 0.8636691 -0.005155668 0.388193 0.8636691 -0.009080105 0.388193 0.8636691 -0.01434988 0.388193 0.8636691 -0.02107202 0.388193 0.8636691 -0.02934285 0.388193 0.8636691 -0.03925039 0.388193 0.8636691 -0.05087609 0.388193 0.8636691 -0.06429595 0.388193 0.8636691 -0.07958143 0.388193 0.8636691 -0.0968001 0.388193 0.8636691 -0.1160161 0.388193 0.8636691 -0.1372908 0.388193 0.8636691 -0.1606827 0.388193 0.8636691 -0.1862481 0.388193 0.8636691 -0.2140411 0.388193 0.8636691 -0.2441142 0.388193 0.8636691 -0.2765176 0.388193 0.8636691 -0.3113005 0.388193 0.8636691 -0.3485102 0.388193 0.8636691 -0.388193 0.388193 0.8636691 -0.4303934 0.388193 0.8636691 -0.4751555 0.388193 0.8636691 -0.5225216 0.388193 0.8636691 -0.5725335 0.388193 0.8636691 -0.6252316 0.388193 0.8636691 -0.6806558 0.388193 0.8636691 -0.7388448 0.388193 0.8636691 -0.7998369 0.388193 0.8636691 -0.8636691 0.388193 0.8636691 -0.9303782 0.388193 0.8636691 -1 0.388193 0.8636691 -0 0.4303934 0.8636691 -0.002418731 0.4303934 0.8636691 -0.005155668 0.4303934 0.8636691 -0.009080105 0.4303934 0.8636691 -0.01434988 0.4303934 0.8636691 -0.02107202 0.4303934 0.8636691 -0.02934285 0.4303934 0.8636691 -0.03925039 0.4303934 0.8636691 -0.05087609 0.4303934 0.8636691 -0.06429595 0.4303934 0.8636691 -0.07958143 0.4303934 0.8636691 -0.0968001 0.4303934 0.8636691 -0.1160161 0.4303934 0.8636691 -0.1372908 0.4303934 0.8636691 -0.1606827 0.4303934 0.8636691 -0.1862481 0.4303934 0.8636691 -0.2140411 0.4303934 0.8636691 -0.2441142 0.4303934 0.8636691 -0.2765176 0.4303934 0.8636691 -0.3113005 0.4303934 0.8636691 -0.3485102 0.4303934 0.8636691 -0.388193 0.4303934 0.8636691 -0.4303934 0.4303934 0.8636691 -0.4751555 0.4303934 0.8636691 -0.5225216 0.4303934 0.8636691 -0.5725335 0.4303934 0.8636691 -0.6252316 0.4303934 0.8636691 -0.6806558 0.4303934 0.8636691 -0.7388448 0.4303934 0.8636691 -0.7998369 0.4303934 0.8636691 -0.8636691 0.4303934 0.8636691 -0.9303782 0.4303934 0.8636691 -1 0.4303934 0.8636691 -0 0.4751555 0.8636691 -0.002418731 0.4751555 0.8636691 -0.005155668 0.4751555 0.8636691 -0.009080105 0.4751555 0.8636691 -0.01434988 0.4751555 0.8636691 -0.02107202 0.4751555 0.8636691 -0.02934285 0.4751555 0.8636691 -0.03925039 0.4751555 0.8636691 -0.05087609 0.4751555 0.8636691 -0.06429595 0.4751555 0.8636691 -0.07958143 0.4751555 0.8636691 -0.0968001 0.4751555 0.8636691 -0.1160161 0.4751555 0.8636691 -0.1372908 0.4751555 0.8636691 -0.1606827 0.4751555 0.8636691 -0.1862481 0.4751555 0.8636691 -0.2140411 0.4751555 0.8636691 -0.2441142 0.4751555 0.8636691 -0.2765176 0.4751555 0.8636691 -0.3113005 0.4751555 0.8636691 -0.3485102 0.4751555 0.8636691 -0.388193 0.4751555 0.8636691 -0.4303934 0.4751555 0.8636691 -0.4751555 0.4751555 0.8636691 -0.5225216 0.4751555 0.8636691 -0.5725335 0.4751555 0.8636691 -0.6252316 0.4751555 0.8636691 -0.6806558 0.4751555 0.8636691 -0.7388448 0.4751555 0.8636691 -0.7998369 0.4751555 0.8636691 -0.8636691 0.4751555 0.8636691 -0.9303782 0.4751555 0.8636691 -1 0.4751555 0.8636691 -0 0.5225216 0.8636691 -0.002418731 0.5225216 0.8636691 -0.005155668 0.5225216 0.8636691 -0.009080105 0.5225216 0.8636691 -0.01434988 0.5225216 0.8636691 -0.02107202 0.5225216 0.8636691 -0.02934285 0.5225216 0.8636691 -0.03925039 0.5225216 0.8636691 -0.05087609 0.5225216 0.8636691 -0.06429595 0.5225216 0.8636691 -0.07958143 0.5225216 0.8636691 -0.0968001 0.5225216 0.8636691 -0.1160161 0.5225216 0.8636691 -0.1372908 0.5225216 0.8636691 -0.1606827 0.5225216 0.8636691 -0.1862481 0.5225216 0.8636691 -0.2140411 0.5225216 0.8636691 -0.2441142 0.5225216 0.8636691 -0.2765176 0.5225216 0.8636691 -0.3113005 0.5225216 0.8636691 -0.3485102 0.5225216 0.8636691 -0.388193 0.5225216 0.8636691 -0.4303934 0.5225216 0.8636691 -0.4751555 0.5225216 0.8636691 -0.5225216 0.5225216 0.8636691 -0.5725335 0.5225216 0.8636691 -0.6252316 0.5225216 0.8636691 -0.6806558 0.5225216 0.8636691 -0.7388448 0.5225216 0.8636691 -0.7998369 0.5225216 0.8636691 -0.8636691 0.5225216 0.8636691 -0.9303782 0.5225216 0.8636691 -1 0.5225216 0.8636691 -0 0.5725335 0.8636691 -0.002418731 0.5725335 0.8636691 -0.005155668 0.5725335 0.8636691 -0.009080105 0.5725335 0.8636691 -0.01434988 0.5725335 0.8636691 -0.02107202 0.5725335 0.8636691 -0.02934285 0.5725335 0.8636691 -0.03925039 0.5725335 0.8636691 -0.05087609 0.5725335 0.8636691 -0.06429595 0.5725335 0.8636691 -0.07958143 0.5725335 0.8636691 -0.0968001 0.5725335 0.8636691 -0.1160161 0.5725335 0.8636691 -0.1372908 0.5725335 0.8636691 -0.1606827 0.5725335 0.8636691 -0.1862481 0.5725335 0.8636691 -0.2140411 0.5725335 0.8636691 -0.2441142 0.5725335 0.8636691 -0.2765176 0.5725335 0.8636691 -0.3113005 0.5725335 0.8636691 -0.3485102 0.5725335 0.8636691 -0.388193 0.5725335 0.8636691 -0.4303934 0.5725335 0.8636691 -0.4751555 0.5725335 0.8636691 -0.5225216 0.5725335 0.8636691 -0.5725335 0.5725335 0.8636691 -0.6252316 0.5725335 0.8636691 -0.6806558 0.5725335 0.8636691 -0.7388448 0.5725335 0.8636691 -0.7998369 0.5725335 0.8636691 -0.8636691 0.5725335 0.8636691 -0.9303782 0.5725335 0.8636691 -1 0.5725335 0.8636691 -0 0.6252316 0.8636691 -0.002418731 0.6252316 0.8636691 -0.005155668 0.6252316 0.8636691 -0.009080105 0.6252316 0.8636691 -0.01434988 0.6252316 0.8636691 -0.02107202 0.6252316 0.8636691 -0.02934285 0.6252316 0.8636691 -0.03925039 0.6252316 0.8636691 -0.05087609 0.6252316 0.8636691 -0.06429595 0.6252316 0.8636691 -0.07958143 0.6252316 0.8636691 -0.0968001 0.6252316 0.8636691 -0.1160161 0.6252316 0.8636691 -0.1372908 0.6252316 0.8636691 -0.1606827 0.6252316 0.8636691 -0.1862481 0.6252316 0.8636691 -0.2140411 0.6252316 0.8636691 -0.2441142 0.6252316 0.8636691 -0.2765176 0.6252316 0.8636691 -0.3113005 0.6252316 0.8636691 -0.3485102 0.6252316 0.8636691 -0.388193 0.6252316 0.8636691 -0.4303934 0.6252316 0.8636691 -0.4751555 0.6252316 0.8636691 -0.5225216 0.6252316 0.8636691 -0.5725335 0.6252316 0.8636691 -0.6252316 0.6252316 0.8636691 -0.6806558 0.6252316 0.8636691 -0.7388448 0.6252316 0.8636691 -0.7998369 0.6252316 0.8636691 -0.8636691 0.6252316 0.8636691 -0.9303782 0.6252316 0.8636691 -1 0.6252316 0.8636691 -0 0.6806558 0.8636691 -0.002418731 0.6806558 0.8636691 -0.005155668 0.6806558 0.8636691 -0.009080105 0.6806558 0.8636691 -0.01434988 0.6806558 0.8636691 -0.02107202 0.6806558 0.8636691 -0.02934285 0.6806558 0.8636691 -0.03925039 0.6806558 0.8636691 -0.05087609 0.6806558 0.8636691 -0.06429595 0.6806558 0.8636691 -0.07958143 0.6806558 0.8636691 -0.0968001 0.6806558 0.8636691 -0.1160161 0.6806558 0.8636691 -0.1372908 0.6806558 0.8636691 -0.1606827 0.6806558 0.8636691 -0.1862481 0.6806558 0.8636691 -0.2140411 0.6806558 0.8636691 -0.2441142 0.6806558 0.8636691 -0.2765176 0.6806558 0.8636691 -0.3113005 0.6806558 0.8636691 -0.3485102 0.6806558 0.8636691 -0.388193 0.6806558 0.8636691 -0.4303934 0.6806558 0.8636691 -0.4751555 0.6806558 0.8636691 -0.5225216 0.6806558 0.8636691 -0.5725335 0.6806558 0.8636691 -0.6252316 0.6806558 0.8636691 -0.6806558 0.6806558 0.8636691 -0.7388448 0.6806558 0.8636691 -0.7998369 0.6806558 0.8636691 -0.8636691 0.6806558 0.8636691 -0.9303782 0.6806558 0.8636691 -1 0.6806558 0.8636691 -0 0.7388448 0.8636691 -0.002418731 0.7388448 0.8636691 -0.005155668 0.7388448 0.8636691 -0.009080105 0.7388448 0.8636691 -0.01434988 0.7388448 0.8636691 -0.02107202 0.7388448 0.8636691 -0.02934285 0.7388448 0.8636691 -0.03925039 0.7388448 0.8636691 -0.05087609 0.7388448 0.8636691 -0.06429595 0.7388448 0.8636691 -0.07958143 0.7388448 0.8636691 -0.0968001 0.7388448 0.8636691 -0.1160161 0.7388448 0.8636691 -0.1372908 0.7388448 0.8636691 -0.1606827 0.7388448 0.8636691 -0.1862481 0.7388448 0.8636691 -0.2140411 0.7388448 0.8636691 -0.2441142 0.7388448 0.8636691 -0.2765176 0.7388448 0.8636691 -0.3113005 0.7388448 0.8636691 -0.3485102 0.7388448 0.8636691 -0.388193 0.7388448 0.8636691 -0.4303934 0.7388448 0.8636691 -0.4751555 0.7388448 0.8636691 -0.5225216 0.7388448 0.8636691 -0.5725335 0.7388448 0.8636691 -0.6252316 0.7388448 0.8636691 -0.6806558 0.7388448 0.8636691 -0.7388448 0.7388448 0.8636691 -0.7998369 0.7388448 0.8636691 -0.8636691 0.7388448 0.8636691 -0.9303782 0.7388448 0.8636691 -1 0.7388448 0.8636691 -0 0.7998369 0.8636691 -0.002418731 0.7998369 0.8636691 -0.005155668 0.7998369 0.8636691 -0.009080105 0.7998369 0.8636691 -0.01434988 0.7998369 0.8636691 -0.02107202 0.7998369 0.8636691 -0.02934285 0.7998369 0.8636691 -0.03925039 0.7998369 0.8636691 -0.05087609 0.7998369 0.8636691 -0.06429595 0.7998369 0.8636691 -0.07958143 0.7998369 0.8636691 -0.0968001 0.7998369 0.8636691 -0.1160161 0.7998369 0.8636691 -0.1372908 0.7998369 0.8636691 -0.1606827 0.7998369 0.8636691 -0.1862481 0.7998369 0.8636691 -0.2140411 0.7998369 0.8636691 -0.2441142 0.7998369 0.8636691 -0.2765176 0.7998369 0.8636691 -0.3113005 0.7998369 0.8636691 -0.3485102 0.7998369 0.8636691 -0.388193 0.7998369 0.8636691 -0.4303934 0.7998369 0.8636691 -0.4751555 0.7998369 0.8636691 -0.5225216 0.7998369 0.8636691 -0.5725335 0.7998369 0.8636691 -0.6252316 0.7998369 0.8636691 -0.6806558 0.7998369 0.8636691 -0.7388448 0.7998369 0.8636691 -0.7998369 0.7998369 0.8636691 -0.8636691 0.7998369 0.8636691 -0.9303782 0.7998369 0.8636691 -1 0.7998369 0.8636691 -0 0.8636691 0.8636691 -0.002418731 0.8636691 0.8636691 -0.005155668 0.8636691 0.8636691 -0.009080105 0.8636691 0.8636691 -0.01434988 0.8636691 0.8636691 -0.02107202 0.8636691 0.8636691 -0.02934285 0.8636691 0.8636691 -0.03925039 0.8636691 0.8636691 -0.05087609 0.8636691 0.8636691 -0.06429595 0.8636691 0.8636691 -0.07958143 0.8636691 0.8636691 -0.0968001 0.8636691 0.8636691 -0.1160161 0.8636691 0.8636691 -0.1372908 0.8636691 0.8636691 -0.1606827 0.8636691 0.8636691 -0.1862481 0.8636691 0.8636691 -0.2140411 0.8636691 0.8636691 -0.2441142 0.8636691 0.8636691 -0.2765176 0.8636691 0.8636691 -0.3113005 0.8636691 0.8636691 -0.3485102 0.8636691 0.8636691 -0.388193 0.8636691 0.8636691 -0.4303934 0.8636691 0.8636691 -0.4751555 0.8636691 0.8636691 -0.5225216 0.8636691 0.8636691 -0.5725335 0.8636691 0.8636691 -0.6252316 0.8636691 0.8636691 -0.6806558 0.8636691 0.8636691 -0.7388448 0.8636691 0.8636691 -0.7998369 0.8636691 0.8636691 -0.8636691 0.8636691 0.8636691 -0.9303782 0.8636691 0.8636691 -1 0.8636691 0.8636691 -0 0.9303782 0.8636691 -0.002418731 0.9303782 0.8636691 -0.005155668 0.9303782 0.8636691 -0.009080105 0.9303782 0.8636691 -0.01434988 0.9303782 0.8636691 -0.02107202 0.9303782 0.8636691 -0.02934285 0.9303782 0.8636691 -0.03925039 0.9303782 0.8636691 -0.05087609 0.9303782 0.8636691 -0.06429595 0.9303782 0.8636691 -0.07958143 0.9303782 0.8636691 -0.0968001 0.9303782 0.8636691 -0.1160161 0.9303782 0.8636691 -0.1372908 0.9303782 0.8636691 -0.1606827 0.9303782 0.8636691 -0.1862481 0.9303782 0.8636691 -0.2140411 0.9303782 0.8636691 -0.2441142 0.9303782 0.8636691 -0.2765176 0.9303782 0.8636691 -0.3113005 0.9303782 0.8636691 -0.3485102 0.9303782 0.8636691 -0.388193 0.9303782 0.8636691 -0.4303934 0.9303782 0.8636691 -0.4751555 0.9303782 0.8636691 -0.5225216 0.9303782 0.8636691 -0.5725335 0.9303782 0.8636691 -0.6252316 0.9303782 0.8636691 -0.6806558 0.9303782 0.8636691 -0.7388448 0.9303782 0.8636691 -0.7998369 0.9303782 0.8636691 -0.8636691 0.9303782 0.8636691 -0.9303782 0.9303782 0.8636691 -1 0.9303782 0.8636691 -0 1 0.8636691 -0.002418731 1 0.8636691 -0.005155668 1 0.8636691 -0.009080105 1 0.8636691 -0.01434988 1 0.8636691 -0.02107202 1 0.8636691 -0.02934285 1 0.8636691 -0.03925039 1 0.8636691 -0.05087609 1 0.8636691 -0.06429595 1 0.8636691 -0.07958143 1 0.8636691 -0.0968001 1 0.8636691 -0.1160161 1 0.8636691 -0.1372908 1 0.8636691 -0.1606827 1 0.8636691 -0.1862481 1 0.8636691 -0.2140411 1 0.8636691 -0.2441142 1 0.8636691 -0.2765176 1 0.8636691 -0.3113005 1 0.8636691 -0.3485102 1 0.8636691 -0.388193 1 0.8636691 -0.4303934 1 0.8636691 -0.4751555 1 0.8636691 -0.5225216 1 0.8636691 -0.5725335 1 0.8636691 -0.6252316 1 0.8636691 -0.6806558 1 0.8636691 -0.7388448 1 0.8636691 -0.7998369 1 0.8636691 -0.8636691 1 0.8636691 -0.9303782 1 0.8636691 -1 1 0.8636691 -0 0 0.9303782 -0.002418731 0 0.9303782 -0.005155668 0 0.9303782 -0.009080105 0 0.9303782 -0.01434988 0 0.9303782 -0.02107202 0 0.9303782 -0.02934285 0 0.9303782 -0.03925039 0 0.9303782 -0.05087609 0 0.9303782 -0.06429595 0 0.9303782 -0.07958143 0 0.9303782 -0.0968001 0 0.9303782 -0.1160161 0 0.9303782 -0.1372908 0 0.9303782 -0.1606827 0 0.9303782 -0.1862481 0 0.9303782 -0.2140411 0 0.9303782 -0.2441142 0 0.9303782 -0.2765176 0 0.9303782 -0.3113005 0 0.9303782 -0.3485102 0 0.9303782 -0.388193 0 0.9303782 -0.4303934 0 0.9303782 -0.4751555 0 0.9303782 -0.5225216 0 0.9303782 -0.5725335 0 0.9303782 -0.6252316 0 0.9303782 -0.6806558 0 0.9303782 -0.7388448 0 0.9303782 -0.7998369 0 0.9303782 -0.8636691 0 0.9303782 -0.9303782 0 0.9303782 -1 0 0.9303782 -0 0.002418731 0.9303782 -0.002418731 0.002418731 0.9303782 -0.005155668 0.002418731 0.9303782 -0.009080105 0.002418731 0.9303782 -0.01434988 0.002418731 0.9303782 -0.02107202 0.002418731 0.9303782 -0.02934285 0.002418731 0.9303782 -0.03925039 0.002418731 0.9303782 -0.05087609 0.002418731 0.9303782 -0.06429595 0.002418731 0.9303782 -0.07958143 0.002418731 0.9303782 -0.0968001 0.002418731 0.9303782 -0.1160161 0.002418731 0.9303782 -0.1372908 0.002418731 0.9303782 -0.1606827 0.002418731 0.9303782 -0.1862481 0.002418731 0.9303782 -0.2140411 0.002418731 0.9303782 -0.2441142 0.002418731 0.9303782 -0.2765176 0.002418731 0.9303782 -0.3113005 0.002418731 0.9303782 -0.3485102 0.002418731 0.9303782 -0.388193 0.002418731 0.9303782 -0.4303934 0.002418731 0.9303782 -0.4751555 0.002418731 0.9303782 -0.5225216 0.002418731 0.9303782 -0.5725335 0.002418731 0.9303782 -0.6252316 0.002418731 0.9303782 -0.6806558 0.002418731 0.9303782 -0.7388448 0.002418731 0.9303782 -0.7998369 0.002418731 0.9303782 -0.8636691 0.002418731 0.9303782 -0.9303782 0.002418731 0.9303782 -1 0.002418731 0.9303782 -0 0.005155668 0.9303782 -0.002418731 0.005155668 0.9303782 -0.005155668 0.005155668 0.9303782 -0.009080105 0.005155668 0.9303782 -0.01434988 0.005155668 0.9303782 -0.02107202 0.005155668 0.9303782 -0.02934285 0.005155668 0.9303782 -0.03925039 0.005155668 0.9303782 -0.05087609 0.005155668 0.9303782 -0.06429595 0.005155668 0.9303782 -0.07958143 0.005155668 0.9303782 -0.0968001 0.005155668 0.9303782 -0.1160161 0.005155668 0.9303782 -0.1372908 0.005155668 0.9303782 -0.1606827 0.005155668 0.9303782 -0.1862481 0.005155668 0.9303782 -0.2140411 0.005155668 0.9303782 -0.2441142 0.005155668 0.9303782 -0.2765176 0.005155668 0.9303782 -0.3113005 0.005155668 0.9303782 -0.3485102 0.005155668 0.9303782 -0.388193 0.005155668 0.9303782 -0.4303934 0.005155668 0.9303782 -0.4751555 0.005155668 0.9303782 -0.5225216 0.005155668 0.9303782 -0.5725335 0.005155668 0.9303782 -0.6252316 0.005155668 0.9303782 -0.6806558 0.005155668 0.9303782 -0.7388448 0.005155668 0.9303782 -0.7998369 0.005155668 0.9303782 -0.8636691 0.005155668 0.9303782 -0.9303782 0.005155668 0.9303782 -1 0.005155668 0.9303782 -0 0.009080105 0.9303782 -0.002418731 0.009080105 0.9303782 -0.005155668 0.009080105 0.9303782 -0.009080105 0.009080105 0.9303782 -0.01434988 0.009080105 0.9303782 -0.02107202 0.009080105 0.9303782 -0.02934285 0.009080105 0.9303782 -0.03925039 0.009080105 0.9303782 -0.05087609 0.009080105 0.9303782 -0.06429595 0.009080105 0.9303782 -0.07958143 0.009080105 0.9303782 -0.0968001 0.009080105 0.9303782 -0.1160161 0.009080105 0.9303782 -0.1372908 0.009080105 0.9303782 -0.1606827 0.009080105 0.9303782 -0.1862481 0.009080105 0.9303782 -0.2140411 0.009080105 0.9303782 -0.2441142 0.009080105 0.9303782 -0.2765176 0.009080105 0.9303782 -0.3113005 0.009080105 0.9303782 -0.3485102 0.009080105 0.9303782 -0.388193 0.009080105 0.9303782 -0.4303934 0.009080105 0.9303782 -0.4751555 0.009080105 0.9303782 -0.5225216 0.009080105 0.9303782 -0.5725335 0.009080105 0.9303782 -0.6252316 0.009080105 0.9303782 -0.6806558 0.009080105 0.9303782 -0.7388448 0.009080105 0.9303782 -0.7998369 0.009080105 0.9303782 -0.8636691 0.009080105 0.9303782 -0.9303782 0.009080105 0.9303782 -1 0.009080105 0.9303782 -0 0.01434988 0.9303782 -0.002418731 0.01434988 0.9303782 -0.005155668 0.01434988 0.9303782 -0.009080105 0.01434988 0.9303782 -0.01434988 0.01434988 0.9303782 -0.02107202 0.01434988 0.9303782 -0.02934285 0.01434988 0.9303782 -0.03925039 0.01434988 0.9303782 -0.05087609 0.01434988 0.9303782 -0.06429595 0.01434988 0.9303782 -0.07958143 0.01434988 0.9303782 -0.0968001 0.01434988 0.9303782 -0.1160161 0.01434988 0.9303782 -0.1372908 0.01434988 0.9303782 -0.1606827 0.01434988 0.9303782 -0.1862481 0.01434988 0.9303782 -0.2140411 0.01434988 0.9303782 -0.2441142 0.01434988 0.9303782 -0.2765176 0.01434988 0.9303782 -0.3113005 0.01434988 0.9303782 -0.3485102 0.01434988 0.9303782 -0.388193 0.01434988 0.9303782 -0.4303934 0.01434988 0.9303782 -0.4751555 0.01434988 0.9303782 -0.5225216 0.01434988 0.9303782 -0.5725335 0.01434988 0.9303782 -0.6252316 0.01434988 0.9303782 -0.6806558 0.01434988 0.9303782 -0.7388448 0.01434988 0.9303782 -0.7998369 0.01434988 0.9303782 -0.8636691 0.01434988 0.9303782 -0.9303782 0.01434988 0.9303782 -1 0.01434988 0.9303782 -0 0.02107202 0.9303782 -0.002418731 0.02107202 0.9303782 -0.005155668 0.02107202 0.9303782 -0.009080105 0.02107202 0.9303782 -0.01434988 0.02107202 0.9303782 -0.02107202 0.02107202 0.9303782 -0.02934285 0.02107202 0.9303782 -0.03925039 0.02107202 0.9303782 -0.05087609 0.02107202 0.9303782 -0.06429595 0.02107202 0.9303782 -0.07958143 0.02107202 0.9303782 -0.0968001 0.02107202 0.9303782 -0.1160161 0.02107202 0.9303782 -0.1372908 0.02107202 0.9303782 -0.1606827 0.02107202 0.9303782 -0.1862481 0.02107202 0.9303782 -0.2140411 0.02107202 0.9303782 -0.2441142 0.02107202 0.9303782 -0.2765176 0.02107202 0.9303782 -0.3113005 0.02107202 0.9303782 -0.3485102 0.02107202 0.9303782 -0.388193 0.02107202 0.9303782 -0.4303934 0.02107202 0.9303782 -0.4751555 0.02107202 0.9303782 -0.5225216 0.02107202 0.9303782 -0.5725335 0.02107202 0.9303782 -0.6252316 0.02107202 0.9303782 -0.6806558 0.02107202 0.9303782 -0.7388448 0.02107202 0.9303782 -0.7998369 0.02107202 0.9303782 -0.8636691 0.02107202 0.9303782 -0.9303782 0.02107202 0.9303782 -1 0.02107202 0.9303782 -0 0.02934285 0.9303782 -0.002418731 0.02934285 0.9303782 -0.005155668 0.02934285 0.9303782 -0.009080105 0.02934285 0.9303782 -0.01434988 0.02934285 0.9303782 -0.02107202 0.02934285 0.9303782 -0.02934285 0.02934285 0.9303782 -0.03925039 0.02934285 0.9303782 -0.05087609 0.02934285 0.9303782 -0.06429595 0.02934285 0.9303782 -0.07958143 0.02934285 0.9303782 -0.0968001 0.02934285 0.9303782 -0.1160161 0.02934285 0.9303782 -0.1372908 0.02934285 0.9303782 -0.1606827 0.02934285 0.9303782 -0.1862481 0.02934285 0.9303782 -0.2140411 0.02934285 0.9303782 -0.2441142 0.02934285 0.9303782 -0.2765176 0.02934285 0.9303782 -0.3113005 0.02934285 0.9303782 -0.3485102 0.02934285 0.9303782 -0.388193 0.02934285 0.9303782 -0.4303934 0.02934285 0.9303782 -0.4751555 0.02934285 0.9303782 -0.5225216 0.02934285 0.9303782 -0.5725335 0.02934285 0.9303782 -0.6252316 0.02934285 0.9303782 -0.6806558 0.02934285 0.9303782 -0.7388448 0.02934285 0.9303782 -0.7998369 0.02934285 0.9303782 -0.8636691 0.02934285 0.9303782 -0.9303782 0.02934285 0.9303782 -1 0.02934285 0.9303782 -0 0.03925039 0.9303782 -0.002418731 0.03925039 0.9303782 -0.005155668 0.03925039 0.9303782 -0.009080105 0.03925039 0.9303782 -0.01434988 0.03925039 0.9303782 -0.02107202 0.03925039 0.9303782 -0.02934285 0.03925039 0.9303782 -0.03925039 0.03925039 0.9303782 -0.05087609 0.03925039 0.9303782 -0.06429595 0.03925039 0.9303782 -0.07958143 0.03925039 0.9303782 -0.0968001 0.03925039 0.9303782 -0.1160161 0.03925039 0.9303782 -0.1372908 0.03925039 0.9303782 -0.1606827 0.03925039 0.9303782 -0.1862481 0.03925039 0.9303782 -0.2140411 0.03925039 0.9303782 -0.2441142 0.03925039 0.9303782 -0.2765176 0.03925039 0.9303782 -0.3113005 0.03925039 0.9303782 -0.3485102 0.03925039 0.9303782 -0.388193 0.03925039 0.9303782 -0.4303934 0.03925039 0.9303782 -0.4751555 0.03925039 0.9303782 -0.5225216 0.03925039 0.9303782 -0.5725335 0.03925039 0.9303782 -0.6252316 0.03925039 0.9303782 -0.6806558 0.03925039 0.9303782 -0.7388448 0.03925039 0.9303782 -0.7998369 0.03925039 0.9303782 -0.8636691 0.03925039 0.9303782 -0.9303782 0.03925039 0.9303782 -1 0.03925039 0.9303782 -0 0.05087609 0.9303782 -0.002418731 0.05087609 0.9303782 -0.005155668 0.05087609 0.9303782 -0.009080105 0.05087609 0.9303782 -0.01434988 0.05087609 0.9303782 -0.02107202 0.05087609 0.9303782 -0.02934285 0.05087609 0.9303782 -0.03925039 0.05087609 0.9303782 -0.05087609 0.05087609 0.9303782 -0.06429595 0.05087609 0.9303782 -0.07958143 0.05087609 0.9303782 -0.0968001 0.05087609 0.9303782 -0.1160161 0.05087609 0.9303782 -0.1372908 0.05087609 0.9303782 -0.1606827 0.05087609 0.9303782 -0.1862481 0.05087609 0.9303782 -0.2140411 0.05087609 0.9303782 -0.2441142 0.05087609 0.9303782 -0.2765176 0.05087609 0.9303782 -0.3113005 0.05087609 0.9303782 -0.3485102 0.05087609 0.9303782 -0.388193 0.05087609 0.9303782 -0.4303934 0.05087609 0.9303782 -0.4751555 0.05087609 0.9303782 -0.5225216 0.05087609 0.9303782 -0.5725335 0.05087609 0.9303782 -0.6252316 0.05087609 0.9303782 -0.6806558 0.05087609 0.9303782 -0.7388448 0.05087609 0.9303782 -0.7998369 0.05087609 0.9303782 -0.8636691 0.05087609 0.9303782 -0.9303782 0.05087609 0.9303782 -1 0.05087609 0.9303782 -0 0.06429595 0.9303782 -0.002418731 0.06429595 0.9303782 -0.005155668 0.06429595 0.9303782 -0.009080105 0.06429595 0.9303782 -0.01434988 0.06429595 0.9303782 -0.02107202 0.06429595 0.9303782 -0.02934285 0.06429595 0.9303782 -0.03925039 0.06429595 0.9303782 -0.05087609 0.06429595 0.9303782 -0.06429595 0.06429595 0.9303782 -0.07958143 0.06429595 0.9303782 -0.0968001 0.06429595 0.9303782 -0.1160161 0.06429595 0.9303782 -0.1372908 0.06429595 0.9303782 -0.1606827 0.06429595 0.9303782 -0.1862481 0.06429595 0.9303782 -0.2140411 0.06429595 0.9303782 -0.2441142 0.06429595 0.9303782 -0.2765176 0.06429595 0.9303782 -0.3113005 0.06429595 0.9303782 -0.3485102 0.06429595 0.9303782 -0.388193 0.06429595 0.9303782 -0.4303934 0.06429595 0.9303782 -0.4751555 0.06429595 0.9303782 -0.5225216 0.06429595 0.9303782 -0.5725335 0.06429595 0.9303782 -0.6252316 0.06429595 0.9303782 -0.6806558 0.06429595 0.9303782 -0.7388448 0.06429595 0.9303782 -0.7998369 0.06429595 0.9303782 -0.8636691 0.06429595 0.9303782 -0.9303782 0.06429595 0.9303782 -1 0.06429595 0.9303782 -0 0.07958143 0.9303782 -0.002418731 0.07958143 0.9303782 -0.005155668 0.07958143 0.9303782 -0.009080105 0.07958143 0.9303782 -0.01434988 0.07958143 0.9303782 -0.02107202 0.07958143 0.9303782 -0.02934285 0.07958143 0.9303782 -0.03925039 0.07958143 0.9303782 -0.05087609 0.07958143 0.9303782 -0.06429595 0.07958143 0.9303782 -0.07958143 0.07958143 0.9303782 -0.0968001 0.07958143 0.9303782 -0.1160161 0.07958143 0.9303782 -0.1372908 0.07958143 0.9303782 -0.1606827 0.07958143 0.9303782 -0.1862481 0.07958143 0.9303782 -0.2140411 0.07958143 0.9303782 -0.2441142 0.07958143 0.9303782 -0.2765176 0.07958143 0.9303782 -0.3113005 0.07958143 0.9303782 -0.3485102 0.07958143 0.9303782 -0.388193 0.07958143 0.9303782 -0.4303934 0.07958143 0.9303782 -0.4751555 0.07958143 0.9303782 -0.5225216 0.07958143 0.9303782 -0.5725335 0.07958143 0.9303782 -0.6252316 0.07958143 0.9303782 -0.6806558 0.07958143 0.9303782 -0.7388448 0.07958143 0.9303782 -0.7998369 0.07958143 0.9303782 -0.8636691 0.07958143 0.9303782 -0.9303782 0.07958143 0.9303782 -1 0.07958143 0.9303782 -0 0.0968001 0.9303782 -0.002418731 0.0968001 0.9303782 -0.005155668 0.0968001 0.9303782 -0.009080105 0.0968001 0.9303782 -0.01434988 0.0968001 0.9303782 -0.02107202 0.0968001 0.9303782 -0.02934285 0.0968001 0.9303782 -0.03925039 0.0968001 0.9303782 -0.05087609 0.0968001 0.9303782 -0.06429595 0.0968001 0.9303782 -0.07958143 0.0968001 0.9303782 -0.0968001 0.0968001 0.9303782 -0.1160161 0.0968001 0.9303782 -0.1372908 0.0968001 0.9303782 -0.1606827 0.0968001 0.9303782 -0.1862481 0.0968001 0.9303782 -0.2140411 0.0968001 0.9303782 -0.2441142 0.0968001 0.9303782 -0.2765176 0.0968001 0.9303782 -0.3113005 0.0968001 0.9303782 -0.3485102 0.0968001 0.9303782 -0.388193 0.0968001 0.9303782 -0.4303934 0.0968001 0.9303782 -0.4751555 0.0968001 0.9303782 -0.5225216 0.0968001 0.9303782 -0.5725335 0.0968001 0.9303782 -0.6252316 0.0968001 0.9303782 -0.6806558 0.0968001 0.9303782 -0.7388448 0.0968001 0.9303782 -0.7998369 0.0968001 0.9303782 -0.8636691 0.0968001 0.9303782 -0.9303782 0.0968001 0.9303782 -1 0.0968001 0.9303782 -0 0.1160161 0.9303782 -0.002418731 0.1160161 0.9303782 -0.005155668 0.1160161 0.9303782 -0.009080105 0.1160161 0.9303782 -0.01434988 0.1160161 0.9303782 -0.02107202 0.1160161 0.9303782 -0.02934285 0.1160161 0.9303782 -0.03925039 0.1160161 0.9303782 -0.05087609 0.1160161 0.9303782 -0.06429595 0.1160161 0.9303782 -0.07958143 0.1160161 0.9303782 -0.0968001 0.1160161 0.9303782 -0.1160161 0.1160161 0.9303782 -0.1372908 0.1160161 0.9303782 -0.1606827 0.1160161 0.9303782 -0.1862481 0.1160161 0.9303782 -0.2140411 0.1160161 0.9303782 -0.2441142 0.1160161 0.9303782 -0.2765176 0.1160161 0.9303782 -0.3113005 0.1160161 0.9303782 -0.3485102 0.1160161 0.9303782 -0.388193 0.1160161 0.9303782 -0.4303934 0.1160161 0.9303782 -0.4751555 0.1160161 0.9303782 -0.5225216 0.1160161 0.9303782 -0.5725335 0.1160161 0.9303782 -0.6252316 0.1160161 0.9303782 -0.6806558 0.1160161 0.9303782 -0.7388448 0.1160161 0.9303782 -0.7998369 0.1160161 0.9303782 -0.8636691 0.1160161 0.9303782 -0.9303782 0.1160161 0.9303782 -1 0.1160161 0.9303782 -0 0.1372908 0.9303782 -0.002418731 0.1372908 0.9303782 -0.005155668 0.1372908 0.9303782 -0.009080105 0.1372908 0.9303782 -0.01434988 0.1372908 0.9303782 -0.02107202 0.1372908 0.9303782 -0.02934285 0.1372908 0.9303782 -0.03925039 0.1372908 0.9303782 -0.05087609 0.1372908 0.9303782 -0.06429595 0.1372908 0.9303782 -0.07958143 0.1372908 0.9303782 -0.0968001 0.1372908 0.9303782 -0.1160161 0.1372908 0.9303782 -0.1372908 0.1372908 0.9303782 -0.1606827 0.1372908 0.9303782 -0.1862481 0.1372908 0.9303782 -0.2140411 0.1372908 0.9303782 -0.2441142 0.1372908 0.9303782 -0.2765176 0.1372908 0.9303782 -0.3113005 0.1372908 0.9303782 -0.3485102 0.1372908 0.9303782 -0.388193 0.1372908 0.9303782 -0.4303934 0.1372908 0.9303782 -0.4751555 0.1372908 0.9303782 -0.5225216 0.1372908 0.9303782 -0.5725335 0.1372908 0.9303782 -0.6252316 0.1372908 0.9303782 -0.6806558 0.1372908 0.9303782 -0.7388448 0.1372908 0.9303782 -0.7998369 0.1372908 0.9303782 -0.8636691 0.1372908 0.9303782 -0.9303782 0.1372908 0.9303782 -1 0.1372908 0.9303782 -0 0.1606827 0.9303782 -0.002418731 0.1606827 0.9303782 -0.005155668 0.1606827 0.9303782 -0.009080105 0.1606827 0.9303782 -0.01434988 0.1606827 0.9303782 -0.02107202 0.1606827 0.9303782 -0.02934285 0.1606827 0.9303782 -0.03925039 0.1606827 0.9303782 -0.05087609 0.1606827 0.9303782 -0.06429595 0.1606827 0.9303782 -0.07958143 0.1606827 0.9303782 -0.0968001 0.1606827 0.9303782 -0.1160161 0.1606827 0.9303782 -0.1372908 0.1606827 0.9303782 -0.1606827 0.1606827 0.9303782 -0.1862481 0.1606827 0.9303782 -0.2140411 0.1606827 0.9303782 -0.2441142 0.1606827 0.9303782 -0.2765176 0.1606827 0.9303782 -0.3113005 0.1606827 0.9303782 -0.3485102 0.1606827 0.9303782 -0.388193 0.1606827 0.9303782 -0.4303934 0.1606827 0.9303782 -0.4751555 0.1606827 0.9303782 -0.5225216 0.1606827 0.9303782 -0.5725335 0.1606827 0.9303782 -0.6252316 0.1606827 0.9303782 -0.6806558 0.1606827 0.9303782 -0.7388448 0.1606827 0.9303782 -0.7998369 0.1606827 0.9303782 -0.8636691 0.1606827 0.9303782 -0.9303782 0.1606827 0.9303782 -1 0.1606827 0.9303782 -0 0.1862481 0.9303782 -0.002418731 0.1862481 0.9303782 -0.005155668 0.1862481 0.9303782 -0.009080105 0.1862481 0.9303782 -0.01434988 0.1862481 0.9303782 -0.02107202 0.1862481 0.9303782 -0.02934285 0.1862481 0.9303782 -0.03925039 0.1862481 0.9303782 -0.05087609 0.1862481 0.9303782 -0.06429595 0.1862481 0.9303782 -0.07958143 0.1862481 0.9303782 -0.0968001 0.1862481 0.9303782 -0.1160161 0.1862481 0.9303782 -0.1372908 0.1862481 0.9303782 -0.1606827 0.1862481 0.9303782 -0.1862481 0.1862481 0.9303782 -0.2140411 0.1862481 0.9303782 -0.2441142 0.1862481 0.9303782 -0.2765176 0.1862481 0.9303782 -0.3113005 0.1862481 0.9303782 -0.3485102 0.1862481 0.9303782 -0.388193 0.1862481 0.9303782 -0.4303934 0.1862481 0.9303782 -0.4751555 0.1862481 0.9303782 -0.5225216 0.1862481 0.9303782 -0.5725335 0.1862481 0.9303782 -0.6252316 0.1862481 0.9303782 -0.6806558 0.1862481 0.9303782 -0.7388448 0.1862481 0.9303782 -0.7998369 0.1862481 0.9303782 -0.8636691 0.1862481 0.9303782 -0.9303782 0.1862481 0.9303782 -1 0.1862481 0.9303782 -0 0.2140411 0.9303782 -0.002418731 0.2140411 0.9303782 -0.005155668 0.2140411 0.9303782 -0.009080105 0.2140411 0.9303782 -0.01434988 0.2140411 0.9303782 -0.02107202 0.2140411 0.9303782 -0.02934285 0.2140411 0.9303782 -0.03925039 0.2140411 0.9303782 -0.05087609 0.2140411 0.9303782 -0.06429595 0.2140411 0.9303782 -0.07958143 0.2140411 0.9303782 -0.0968001 0.2140411 0.9303782 -0.1160161 0.2140411 0.9303782 -0.1372908 0.2140411 0.9303782 -0.1606827 0.2140411 0.9303782 -0.1862481 0.2140411 0.9303782 -0.2140411 0.2140411 0.9303782 -0.2441142 0.2140411 0.9303782 -0.2765176 0.2140411 0.9303782 -0.3113005 0.2140411 0.9303782 -0.3485102 0.2140411 0.9303782 -0.388193 0.2140411 0.9303782 -0.4303934 0.2140411 0.9303782 -0.4751555 0.2140411 0.9303782 -0.5225216 0.2140411 0.9303782 -0.5725335 0.2140411 0.9303782 -0.6252316 0.2140411 0.9303782 -0.6806558 0.2140411 0.9303782 -0.7388448 0.2140411 0.9303782 -0.7998369 0.2140411 0.9303782 -0.8636691 0.2140411 0.9303782 -0.9303782 0.2140411 0.9303782 -1 0.2140411 0.9303782 -0 0.2441142 0.9303782 -0.002418731 0.2441142 0.9303782 -0.005155668 0.2441142 0.9303782 -0.009080105 0.2441142 0.9303782 -0.01434988 0.2441142 0.9303782 -0.02107202 0.2441142 0.9303782 -0.02934285 0.2441142 0.9303782 -0.03925039 0.2441142 0.9303782 -0.05087609 0.2441142 0.9303782 -0.06429595 0.2441142 0.9303782 -0.07958143 0.2441142 0.9303782 -0.0968001 0.2441142 0.9303782 -0.1160161 0.2441142 0.9303782 -0.1372908 0.2441142 0.9303782 -0.1606827 0.2441142 0.9303782 -0.1862481 0.2441142 0.9303782 -0.2140411 0.2441142 0.9303782 -0.2441142 0.2441142 0.9303782 -0.2765176 0.2441142 0.9303782 -0.3113005 0.2441142 0.9303782 -0.3485102 0.2441142 0.9303782 -0.388193 0.2441142 0.9303782 -0.4303934 0.2441142 0.9303782 -0.4751555 0.2441142 0.9303782 -0.5225216 0.2441142 0.9303782 -0.5725335 0.2441142 0.9303782 -0.6252316 0.2441142 0.9303782 -0.6806558 0.2441142 0.9303782 -0.7388448 0.2441142 0.9303782 -0.7998369 0.2441142 0.9303782 -0.8636691 0.2441142 0.9303782 -0.9303782 0.2441142 0.9303782 -1 0.2441142 0.9303782 -0 0.2765176 0.9303782 -0.002418731 0.2765176 0.9303782 -0.005155668 0.2765176 0.9303782 -0.009080105 0.2765176 0.9303782 -0.01434988 0.2765176 0.9303782 -0.02107202 0.2765176 0.9303782 -0.02934285 0.2765176 0.9303782 -0.03925039 0.2765176 0.9303782 -0.05087609 0.2765176 0.9303782 -0.06429595 0.2765176 0.9303782 -0.07958143 0.2765176 0.9303782 -0.0968001 0.2765176 0.9303782 -0.1160161 0.2765176 0.9303782 -0.1372908 0.2765176 0.9303782 -0.1606827 0.2765176 0.9303782 -0.1862481 0.2765176 0.9303782 -0.2140411 0.2765176 0.9303782 -0.2441142 0.2765176 0.9303782 -0.2765176 0.2765176 0.9303782 -0.3113005 0.2765176 0.9303782 -0.3485102 0.2765176 0.9303782 -0.388193 0.2765176 0.9303782 -0.4303934 0.2765176 0.9303782 -0.4751555 0.2765176 0.9303782 -0.5225216 0.2765176 0.9303782 -0.5725335 0.2765176 0.9303782 -0.6252316 0.2765176 0.9303782 -0.6806558 0.2765176 0.9303782 -0.7388448 0.2765176 0.9303782 -0.7998369 0.2765176 0.9303782 -0.8636691 0.2765176 0.9303782 -0.9303782 0.2765176 0.9303782 -1 0.2765176 0.9303782 -0 0.3113005 0.9303782 -0.002418731 0.3113005 0.9303782 -0.005155668 0.3113005 0.9303782 -0.009080105 0.3113005 0.9303782 -0.01434988 0.3113005 0.9303782 -0.02107202 0.3113005 0.9303782 -0.02934285 0.3113005 0.9303782 -0.03925039 0.3113005 0.9303782 -0.05087609 0.3113005 0.9303782 -0.06429595 0.3113005 0.9303782 -0.07958143 0.3113005 0.9303782 -0.0968001 0.3113005 0.9303782 -0.1160161 0.3113005 0.9303782 -0.1372908 0.3113005 0.9303782 -0.1606827 0.3113005 0.9303782 -0.1862481 0.3113005 0.9303782 -0.2140411 0.3113005 0.9303782 -0.2441142 0.3113005 0.9303782 -0.2765176 0.3113005 0.9303782 -0.3113005 0.3113005 0.9303782 -0.3485102 0.3113005 0.9303782 -0.388193 0.3113005 0.9303782 -0.4303934 0.3113005 0.9303782 -0.4751555 0.3113005 0.9303782 -0.5225216 0.3113005 0.9303782 -0.5725335 0.3113005 0.9303782 -0.6252316 0.3113005 0.9303782 -0.6806558 0.3113005 0.9303782 -0.7388448 0.3113005 0.9303782 -0.7998369 0.3113005 0.9303782 -0.8636691 0.3113005 0.9303782 -0.9303782 0.3113005 0.9303782 -1 0.3113005 0.9303782 -0 0.3485102 0.9303782 -0.002418731 0.3485102 0.9303782 -0.005155668 0.3485102 0.9303782 -0.009080105 0.3485102 0.9303782 -0.01434988 0.3485102 0.9303782 -0.02107202 0.3485102 0.9303782 -0.02934285 0.3485102 0.9303782 -0.03925039 0.3485102 0.9303782 -0.05087609 0.3485102 0.9303782 -0.06429595 0.3485102 0.9303782 -0.07958143 0.3485102 0.9303782 -0.0968001 0.3485102 0.9303782 -0.1160161 0.3485102 0.9303782 -0.1372908 0.3485102 0.9303782 -0.1606827 0.3485102 0.9303782 -0.1862481 0.3485102 0.9303782 -0.2140411 0.3485102 0.9303782 -0.2441142 0.3485102 0.9303782 -0.2765176 0.3485102 0.9303782 -0.3113005 0.3485102 0.9303782 -0.3485102 0.3485102 0.9303782 -0.388193 0.3485102 0.9303782 -0.4303934 0.3485102 0.9303782 -0.4751555 0.3485102 0.9303782 -0.5225216 0.3485102 0.9303782 -0.5725335 0.3485102 0.9303782 -0.6252316 0.3485102 0.9303782 -0.6806558 0.3485102 0.9303782 -0.7388448 0.3485102 0.9303782 -0.7998369 0.3485102 0.9303782 -0.8636691 0.3485102 0.9303782 -0.9303782 0.3485102 0.9303782 -1 0.3485102 0.9303782 -0 0.388193 0.9303782 -0.002418731 0.388193 0.9303782 -0.005155668 0.388193 0.9303782 -0.009080105 0.388193 0.9303782 -0.01434988 0.388193 0.9303782 -0.02107202 0.388193 0.9303782 -0.02934285 0.388193 0.9303782 -0.03925039 0.388193 0.9303782 -0.05087609 0.388193 0.9303782 -0.06429595 0.388193 0.9303782 -0.07958143 0.388193 0.9303782 -0.0968001 0.388193 0.9303782 -0.1160161 0.388193 0.9303782 -0.1372908 0.388193 0.9303782 -0.1606827 0.388193 0.9303782 -0.1862481 0.388193 0.9303782 -0.2140411 0.388193 0.9303782 -0.2441142 0.388193 0.9303782 -0.2765176 0.388193 0.9303782 -0.3113005 0.388193 0.9303782 -0.3485102 0.388193 0.9303782 -0.388193 0.388193 0.9303782 -0.4303934 0.388193 0.9303782 -0.4751555 0.388193 0.9303782 -0.5225216 0.388193 0.9303782 -0.5725335 0.388193 0.9303782 -0.6252316 0.388193 0.9303782 -0.6806558 0.388193 0.9303782 -0.7388448 0.388193 0.9303782 -0.7998369 0.388193 0.9303782 -0.8636691 0.388193 0.9303782 -0.9303782 0.388193 0.9303782 -1 0.388193 0.9303782 -0 0.4303934 0.9303782 -0.002418731 0.4303934 0.9303782 -0.005155668 0.4303934 0.9303782 -0.009080105 0.4303934 0.9303782 -0.01434988 0.4303934 0.9303782 -0.02107202 0.4303934 0.9303782 -0.02934285 0.4303934 0.9303782 -0.03925039 0.4303934 0.9303782 -0.05087609 0.4303934 0.9303782 -0.06429595 0.4303934 0.9303782 -0.07958143 0.4303934 0.9303782 -0.0968001 0.4303934 0.9303782 -0.1160161 0.4303934 0.9303782 -0.1372908 0.4303934 0.9303782 -0.1606827 0.4303934 0.9303782 -0.1862481 0.4303934 0.9303782 -0.2140411 0.4303934 0.9303782 -0.2441142 0.4303934 0.9303782 -0.2765176 0.4303934 0.9303782 -0.3113005 0.4303934 0.9303782 -0.3485102 0.4303934 0.9303782 -0.388193 0.4303934 0.9303782 -0.4303934 0.4303934 0.9303782 -0.4751555 0.4303934 0.9303782 -0.5225216 0.4303934 0.9303782 -0.5725335 0.4303934 0.9303782 -0.6252316 0.4303934 0.9303782 -0.6806558 0.4303934 0.9303782 -0.7388448 0.4303934 0.9303782 -0.7998369 0.4303934 0.9303782 -0.8636691 0.4303934 0.9303782 -0.9303782 0.4303934 0.9303782 -1 0.4303934 0.9303782 -0 0.4751555 0.9303782 -0.002418731 0.4751555 0.9303782 -0.005155668 0.4751555 0.9303782 -0.009080105 0.4751555 0.9303782 -0.01434988 0.4751555 0.9303782 -0.02107202 0.4751555 0.9303782 -0.02934285 0.4751555 0.9303782 -0.03925039 0.4751555 0.9303782 -0.05087609 0.4751555 0.9303782 -0.06429595 0.4751555 0.9303782 -0.07958143 0.4751555 0.9303782 -0.0968001 0.4751555 0.9303782 -0.1160161 0.4751555 0.9303782 -0.1372908 0.4751555 0.9303782 -0.1606827 0.4751555 0.9303782 -0.1862481 0.4751555 0.9303782 -0.2140411 0.4751555 0.9303782 -0.2441142 0.4751555 0.9303782 -0.2765176 0.4751555 0.9303782 -0.3113005 0.4751555 0.9303782 -0.3485102 0.4751555 0.9303782 -0.388193 0.4751555 0.9303782 -0.4303934 0.4751555 0.9303782 -0.4751555 0.4751555 0.9303782 -0.5225216 0.4751555 0.9303782 -0.5725335 0.4751555 0.9303782 -0.6252316 0.4751555 0.9303782 -0.6806558 0.4751555 0.9303782 -0.7388448 0.4751555 0.9303782 -0.7998369 0.4751555 0.9303782 -0.8636691 0.4751555 0.9303782 -0.9303782 0.4751555 0.9303782 -1 0.4751555 0.9303782 -0 0.5225216 0.9303782 -0.002418731 0.5225216 0.9303782 -0.005155668 0.5225216 0.9303782 -0.009080105 0.5225216 0.9303782 -0.01434988 0.5225216 0.9303782 -0.02107202 0.5225216 0.9303782 -0.02934285 0.5225216 0.9303782 -0.03925039 0.5225216 0.9303782 -0.05087609 0.5225216 0.9303782 -0.06429595 0.5225216 0.9303782 -0.07958143 0.5225216 0.9303782 -0.0968001 0.5225216 0.9303782 -0.1160161 0.5225216 0.9303782 -0.1372908 0.5225216 0.9303782 -0.1606827 0.5225216 0.9303782 -0.1862481 0.5225216 0.9303782 -0.2140411 0.5225216 0.9303782 -0.2441142 0.5225216 0.9303782 -0.2765176 0.5225216 0.9303782 -0.3113005 0.5225216 0.9303782 -0.3485102 0.5225216 0.9303782 -0.388193 0.5225216 0.9303782 -0.4303934 0.5225216 0.9303782 -0.4751555 0.5225216 0.9303782 -0.5225216 0.5225216 0.9303782 -0.5725335 0.5225216 0.9303782 -0.6252316 0.5225216 0.9303782 -0.6806558 0.5225216 0.9303782 -0.7388448 0.5225216 0.9303782 -0.7998369 0.5225216 0.9303782 -0.8636691 0.5225216 0.9303782 -0.9303782 0.5225216 0.9303782 -1 0.5225216 0.9303782 -0 0.5725335 0.9303782 -0.002418731 0.5725335 0.9303782 -0.005155668 0.5725335 0.9303782 -0.009080105 0.5725335 0.9303782 -0.01434988 0.5725335 0.9303782 -0.02107202 0.5725335 0.9303782 -0.02934285 0.5725335 0.9303782 -0.03925039 0.5725335 0.9303782 -0.05087609 0.5725335 0.9303782 -0.06429595 0.5725335 0.9303782 -0.07958143 0.5725335 0.9303782 -0.0968001 0.5725335 0.9303782 -0.1160161 0.5725335 0.9303782 -0.1372908 0.5725335 0.9303782 -0.1606827 0.5725335 0.9303782 -0.1862481 0.5725335 0.9303782 -0.2140411 0.5725335 0.9303782 -0.2441142 0.5725335 0.9303782 -0.2765176 0.5725335 0.9303782 -0.3113005 0.5725335 0.9303782 -0.3485102 0.5725335 0.9303782 -0.388193 0.5725335 0.9303782 -0.4303934 0.5725335 0.9303782 -0.4751555 0.5725335 0.9303782 -0.5225216 0.5725335 0.9303782 -0.5725335 0.5725335 0.9303782 -0.6252316 0.5725335 0.9303782 -0.6806558 0.5725335 0.9303782 -0.7388448 0.5725335 0.9303782 -0.7998369 0.5725335 0.9303782 -0.8636691 0.5725335 0.9303782 -0.9303782 0.5725335 0.9303782 -1 0.5725335 0.9303782 -0 0.6252316 0.9303782 -0.002418731 0.6252316 0.9303782 -0.005155668 0.6252316 0.9303782 -0.009080105 0.6252316 0.9303782 -0.01434988 0.6252316 0.9303782 -0.02107202 0.6252316 0.9303782 -0.02934285 0.6252316 0.9303782 -0.03925039 0.6252316 0.9303782 -0.05087609 0.6252316 0.9303782 -0.06429595 0.6252316 0.9303782 -0.07958143 0.6252316 0.9303782 -0.0968001 0.6252316 0.9303782 -0.1160161 0.6252316 0.9303782 -0.1372908 0.6252316 0.9303782 -0.1606827 0.6252316 0.9303782 -0.1862481 0.6252316 0.9303782 -0.2140411 0.6252316 0.9303782 -0.2441142 0.6252316 0.9303782 -0.2765176 0.6252316 0.9303782 -0.3113005 0.6252316 0.9303782 -0.3485102 0.6252316 0.9303782 -0.388193 0.6252316 0.9303782 -0.4303934 0.6252316 0.9303782 -0.4751555 0.6252316 0.9303782 -0.5225216 0.6252316 0.9303782 -0.5725335 0.6252316 0.9303782 -0.6252316 0.6252316 0.9303782 -0.6806558 0.6252316 0.9303782 -0.7388448 0.6252316 0.9303782 -0.7998369 0.6252316 0.9303782 -0.8636691 0.6252316 0.9303782 -0.9303782 0.6252316 0.9303782 -1 0.6252316 0.9303782 -0 0.6806558 0.9303782 -0.002418731 0.6806558 0.9303782 -0.005155668 0.6806558 0.9303782 -0.009080105 0.6806558 0.9303782 -0.01434988 0.6806558 0.9303782 -0.02107202 0.6806558 0.9303782 -0.02934285 0.6806558 0.9303782 -0.03925039 0.6806558 0.9303782 -0.05087609 0.6806558 0.9303782 -0.06429595 0.6806558 0.9303782 -0.07958143 0.6806558 0.9303782 -0.0968001 0.6806558 0.9303782 -0.1160161 0.6806558 0.9303782 -0.1372908 0.6806558 0.9303782 -0.1606827 0.6806558 0.9303782 -0.1862481 0.6806558 0.9303782 -0.2140411 0.6806558 0.9303782 -0.2441142 0.6806558 0.9303782 -0.2765176 0.6806558 0.9303782 -0.3113005 0.6806558 0.9303782 -0.3485102 0.6806558 0.9303782 -0.388193 0.6806558 0.9303782 -0.4303934 0.6806558 0.9303782 -0.4751555 0.6806558 0.9303782 -0.5225216 0.6806558 0.9303782 -0.5725335 0.6806558 0.9303782 -0.6252316 0.6806558 0.9303782 -0.6806558 0.6806558 0.9303782 -0.7388448 0.6806558 0.9303782 -0.7998369 0.6806558 0.9303782 -0.8636691 0.6806558 0.9303782 -0.9303782 0.6806558 0.9303782 -1 0.6806558 0.9303782 -0 0.7388448 0.9303782 -0.002418731 0.7388448 0.9303782 -0.005155668 0.7388448 0.9303782 -0.009080105 0.7388448 0.9303782 -0.01434988 0.7388448 0.9303782 -0.02107202 0.7388448 0.9303782 -0.02934285 0.7388448 0.9303782 -0.03925039 0.7388448 0.9303782 -0.05087609 0.7388448 0.9303782 -0.06429595 0.7388448 0.9303782 -0.07958143 0.7388448 0.9303782 -0.0968001 0.7388448 0.9303782 -0.1160161 0.7388448 0.9303782 -0.1372908 0.7388448 0.9303782 -0.1606827 0.7388448 0.9303782 -0.1862481 0.7388448 0.9303782 -0.2140411 0.7388448 0.9303782 -0.2441142 0.7388448 0.9303782 -0.2765176 0.7388448 0.9303782 -0.3113005 0.7388448 0.9303782 -0.3485102 0.7388448 0.9303782 -0.388193 0.7388448 0.9303782 -0.4303934 0.7388448 0.9303782 -0.4751555 0.7388448 0.9303782 -0.5225216 0.7388448 0.9303782 -0.5725335 0.7388448 0.9303782 -0.6252316 0.7388448 0.9303782 -0.6806558 0.7388448 0.9303782 -0.7388448 0.7388448 0.9303782 -0.7998369 0.7388448 0.9303782 -0.8636691 0.7388448 0.9303782 -0.9303782 0.7388448 0.9303782 -1 0.7388448 0.9303782 -0 0.7998369 0.9303782 -0.002418731 0.7998369 0.9303782 -0.005155668 0.7998369 0.9303782 -0.009080105 0.7998369 0.9303782 -0.01434988 0.7998369 0.9303782 -0.02107202 0.7998369 0.9303782 -0.02934285 0.7998369 0.9303782 -0.03925039 0.7998369 0.9303782 -0.05087609 0.7998369 0.9303782 -0.06429595 0.7998369 0.9303782 -0.07958143 0.7998369 0.9303782 -0.0968001 0.7998369 0.9303782 -0.1160161 0.7998369 0.9303782 -0.1372908 0.7998369 0.9303782 -0.1606827 0.7998369 0.9303782 -0.1862481 0.7998369 0.9303782 -0.2140411 0.7998369 0.9303782 -0.2441142 0.7998369 0.9303782 -0.2765176 0.7998369 0.9303782 -0.3113005 0.7998369 0.9303782 -0.3485102 0.7998369 0.9303782 -0.388193 0.7998369 0.9303782 -0.4303934 0.7998369 0.9303782 -0.4751555 0.7998369 0.9303782 -0.5225216 0.7998369 0.9303782 -0.5725335 0.7998369 0.9303782 -0.6252316 0.7998369 0.9303782 -0.6806558 0.7998369 0.9303782 -0.7388448 0.7998369 0.9303782 -0.7998369 0.7998369 0.9303782 -0.8636691 0.7998369 0.9303782 -0.9303782 0.7998369 0.9303782 -1 0.7998369 0.9303782 -0 0.8636691 0.9303782 -0.002418731 0.8636691 0.9303782 -0.005155668 0.8636691 0.9303782 -0.009080105 0.8636691 0.9303782 -0.01434988 0.8636691 0.9303782 -0.02107202 0.8636691 0.9303782 -0.02934285 0.8636691 0.9303782 -0.03925039 0.8636691 0.9303782 -0.05087609 0.8636691 0.9303782 -0.06429595 0.8636691 0.9303782 -0.07958143 0.8636691 0.9303782 -0.0968001 0.8636691 0.9303782 -0.1160161 0.8636691 0.9303782 -0.1372908 0.8636691 0.9303782 -0.1606827 0.8636691 0.9303782 -0.1862481 0.8636691 0.9303782 -0.2140411 0.8636691 0.9303782 -0.2441142 0.8636691 0.9303782 -0.2765176 0.8636691 0.9303782 -0.3113005 0.8636691 0.9303782 -0.3485102 0.8636691 0.9303782 -0.388193 0.8636691 0.9303782 -0.4303934 0.8636691 0.9303782 -0.4751555 0.8636691 0.9303782 -0.5225216 0.8636691 0.9303782 -0.5725335 0.8636691 0.9303782 -0.6252316 0.8636691 0.9303782 -0.6806558 0.8636691 0.9303782 -0.7388448 0.8636691 0.9303782 -0.7998369 0.8636691 0.9303782 -0.8636691 0.8636691 0.9303782 -0.9303782 0.8636691 0.9303782 -1 0.8636691 0.9303782 -0 0.9303782 0.9303782 -0.002418731 0.9303782 0.9303782 -0.005155668 0.9303782 0.9303782 -0.009080105 0.9303782 0.9303782 -0.01434988 0.9303782 0.9303782 -0.02107202 0.9303782 0.9303782 -0.02934285 0.9303782 0.9303782 -0.03925039 0.9303782 0.9303782 -0.05087609 0.9303782 0.9303782 -0.06429595 0.9303782 0.9303782 -0.07958143 0.9303782 0.9303782 -0.0968001 0.9303782 0.9303782 -0.1160161 0.9303782 0.9303782 -0.1372908 0.9303782 0.9303782 -0.1606827 0.9303782 0.9303782 -0.1862481 0.9303782 0.9303782 -0.2140411 0.9303782 0.9303782 -0.2441142 0.9303782 0.9303782 -0.2765176 0.9303782 0.9303782 -0.3113005 0.9303782 0.9303782 -0.3485102 0.9303782 0.9303782 -0.388193 0.9303782 0.9303782 -0.4303934 0.9303782 0.9303782 -0.4751555 0.9303782 0.9303782 -0.5225216 0.9303782 0.9303782 -0.5725335 0.9303782 0.9303782 -0.6252316 0.9303782 0.9303782 -0.6806558 0.9303782 0.9303782 -0.7388448 0.9303782 0.9303782 -0.7998369 0.9303782 0.9303782 -0.8636691 0.9303782 0.9303782 -0.9303782 0.9303782 0.9303782 -1 0.9303782 0.9303782 -0 1 0.9303782 -0.002418731 1 0.9303782 -0.005155668 1 0.9303782 -0.009080105 1 0.9303782 -0.01434988 1 0.9303782 -0.02107202 1 0.9303782 -0.02934285 1 0.9303782 -0.03925039 1 0.9303782 -0.05087609 1 0.9303782 -0.06429595 1 0.9303782 -0.07958143 1 0.9303782 -0.0968001 1 0.9303782 -0.1160161 1 0.9303782 -0.1372908 1 0.9303782 -0.1606827 1 0.9303782 -0.1862481 1 0.9303782 -0.2140411 1 0.9303782 -0.2441142 1 0.9303782 -0.2765176 1 0.9303782 -0.3113005 1 0.9303782 -0.3485102 1 0.9303782 -0.388193 1 0.9303782 -0.4303934 1 0.9303782 -0.4751555 1 0.9303782 -0.5225216 1 0.9303782 -0.5725335 1 0.9303782 -0.6252316 1 0.9303782 -0.6806558 1 0.9303782 -0.7388448 1 0.9303782 -0.7998369 1 0.9303782 -0.8636691 1 0.9303782 -0.9303782 1 0.9303782 -1 1 0.9303782 -0 0 1 -0.002418731 0 1 -0.005155668 0 1 -0.009080105 0 1 -0.01434988 0 1 -0.02107202 0 1 -0.02934285 0 1 -0.03925039 0 1 -0.05087609 0 1 -0.06429595 0 1 -0.07958143 0 1 -0.0968001 0 1 -0.1160161 0 1 -0.1372908 0 1 -0.1606827 0 1 -0.1862481 0 1 -0.2140411 0 1 -0.2441142 0 1 -0.2765176 0 1 -0.3113005 0 1 -0.3485102 0 1 -0.388193 0 1 -0.4303934 0 1 -0.4751555 0 1 -0.5225216 0 1 -0.5725335 0 1 -0.6252316 0 1 -0.6806558 0 1 -0.7388448 0 1 -0.7998369 0 1 -0.8636691 0 1 -0.9303782 0 1 -1 0 1 -0 0.002418731 1 -0.002418731 0.002418731 1 -0.005155668 0.002418731 1 -0.009080105 0.002418731 1 -0.01434988 0.002418731 1 -0.02107202 0.002418731 1 -0.02934285 0.002418731 1 -0.03925039 0.002418731 1 -0.05087609 0.002418731 1 -0.06429595 0.002418731 1 -0.07958143 0.002418731 1 -0.0968001 0.002418731 1 -0.1160161 0.002418731 1 -0.1372908 0.002418731 1 -0.1606827 0.002418731 1 -0.1862481 0.002418731 1 -0.2140411 0.002418731 1 -0.2441142 0.002418731 1 -0.2765176 0.002418731 1 -0.3113005 0.002418731 1 -0.3485102 0.002418731 1 -0.388193 0.002418731 1 -0.4303934 0.002418731 1 -0.4751555 0.002418731 1 -0.5225216 0.002418731 1 -0.5725335 0.002418731 1 -0.6252316 0.002418731 1 -0.6806558 0.002418731 1 -0.7388448 0.002418731 1 -0.7998369 0.002418731 1 -0.8636691 0.002418731 1 -0.9303782 0.002418731 1 -1 0.002418731 1 -0 0.005155668 1 -0.002418731 0.005155668 1 -0.005155668 0.005155668 1 -0.009080105 0.005155668 1 -0.01434988 0.005155668 1 -0.02107202 0.005155668 1 -0.02934285 0.005155668 1 -0.03925039 0.005155668 1 -0.05087609 0.005155668 1 -0.06429595 0.005155668 1 -0.07958143 0.005155668 1 -0.0968001 0.005155668 1 -0.1160161 0.005155668 1 -0.1372908 0.005155668 1 -0.1606827 0.005155668 1 -0.1862481 0.005155668 1 -0.2140411 0.005155668 1 -0.2441142 0.005155668 1 -0.2765176 0.005155668 1 -0.3113005 0.005155668 1 -0.3485102 0.005155668 1 -0.388193 0.005155668 1 -0.4303934 0.005155668 1 -0.4751555 0.005155668 1 -0.5225216 0.005155668 1 -0.5725335 0.005155668 1 -0.6252316 0.005155668 1 -0.6806558 0.005155668 1 -0.7388448 0.005155668 1 -0.7998369 0.005155668 1 -0.8636691 0.005155668 1 -0.9303782 0.005155668 1 -1 0.005155668 1 -0 0.009080105 1 -0.002418731 0.009080105 1 -0.005155668 0.009080105 1 -0.009080105 0.009080105 1 -0.01434988 0.009080105 1 -0.02107202 0.009080105 1 -0.02934285 0.009080105 1 -0.03925039 0.009080105 1 -0.05087609 0.009080105 1 -0.06429595 0.009080105 1 -0.07958143 0.009080105 1 -0.0968001 0.009080105 1 -0.1160161 0.009080105 1 -0.1372908 0.009080105 1 -0.1606827 0.009080105 1 -0.1862481 0.009080105 1 -0.2140411 0.009080105 1 -0.2441142 0.009080105 1 -0.2765176 0.009080105 1 -0.3113005 0.009080105 1 -0.3485102 0.009080105 1 -0.388193 0.009080105 1 -0.4303934 0.009080105 1 -0.4751555 0.009080105 1 -0.5225216 0.009080105 1 -0.5725335 0.009080105 1 -0.6252316 0.009080105 1 -0.6806558 0.009080105 1 -0.7388448 0.009080105 1 -0.7998369 0.009080105 1 -0.8636691 0.009080105 1 -0.9303782 0.009080105 1 -1 0.009080105 1 -0 0.01434988 1 -0.002418731 0.01434988 1 -0.005155668 0.01434988 1 -0.009080105 0.01434988 1 -0.01434988 0.01434988 1 -0.02107202 0.01434988 1 -0.02934285 0.01434988 1 -0.03925039 0.01434988 1 -0.05087609 0.01434988 1 -0.06429595 0.01434988 1 -0.07958143 0.01434988 1 -0.0968001 0.01434988 1 -0.1160161 0.01434988 1 -0.1372908 0.01434988 1 -0.1606827 0.01434988 1 -0.1862481 0.01434988 1 -0.2140411 0.01434988 1 -0.2441142 0.01434988 1 -0.2765176 0.01434988 1 -0.3113005 0.01434988 1 -0.3485102 0.01434988 1 -0.388193 0.01434988 1 -0.4303934 0.01434988 1 -0.4751555 0.01434988 1 -0.5225216 0.01434988 1 -0.5725335 0.01434988 1 -0.6252316 0.01434988 1 -0.6806558 0.01434988 1 -0.7388448 0.01434988 1 -0.7998369 0.01434988 1 -0.8636691 0.01434988 1 -0.9303782 0.01434988 1 -1 0.01434988 1 -0 0.02107202 1 -0.002418731 0.02107202 1 -0.005155668 0.02107202 1 -0.009080105 0.02107202 1 -0.01434988 0.02107202 1 -0.02107202 0.02107202 1 -0.02934285 0.02107202 1 -0.03925039 0.02107202 1 -0.05087609 0.02107202 1 -0.06429595 0.02107202 1 -0.07958143 0.02107202 1 -0.0968001 0.02107202 1 -0.1160161 0.02107202 1 -0.1372908 0.02107202 1 -0.1606827 0.02107202 1 -0.1862481 0.02107202 1 -0.2140411 0.02107202 1 -0.2441142 0.02107202 1 -0.2765176 0.02107202 1 -0.3113005 0.02107202 1 -0.3485102 0.02107202 1 -0.388193 0.02107202 1 -0.4303934 0.02107202 1 -0.4751555 0.02107202 1 -0.5225216 0.02107202 1 -0.5725335 0.02107202 1 -0.6252316 0.02107202 1 -0.6806558 0.02107202 1 -0.7388448 0.02107202 1 -0.7998369 0.02107202 1 -0.8636691 0.02107202 1 -0.9303782 0.02107202 1 -1 0.02107202 1 -0 0.02934285 1 -0.002418731 0.02934285 1 -0.005155668 0.02934285 1 -0.009080105 0.02934285 1 -0.01434988 0.02934285 1 -0.02107202 0.02934285 1 -0.02934285 0.02934285 1 -0.03925039 0.02934285 1 -0.05087609 0.02934285 1 -0.06429595 0.02934285 1 -0.07958143 0.02934285 1 -0.0968001 0.02934285 1 -0.1160161 0.02934285 1 -0.1372908 0.02934285 1 -0.1606827 0.02934285 1 -0.1862481 0.02934285 1 -0.2140411 0.02934285 1 -0.2441142 0.02934285 1 -0.2765176 0.02934285 1 -0.3113005 0.02934285 1 -0.3485102 0.02934285 1 -0.388193 0.02934285 1 -0.4303934 0.02934285 1 -0.4751555 0.02934285 1 -0.5225216 0.02934285 1 -0.5725335 0.02934285 1 -0.6252316 0.02934285 1 -0.6806558 0.02934285 1 -0.7388448 0.02934285 1 -0.7998369 0.02934285 1 -0.8636691 0.02934285 1 -0.9303782 0.02934285 1 -1 0.02934285 1 -0 0.03925039 1 -0.002418731 0.03925039 1 -0.005155668 0.03925039 1 -0.009080105 0.03925039 1 -0.01434988 0.03925039 1 -0.02107202 0.03925039 1 -0.02934285 0.03925039 1 -0.03925039 0.03925039 1 -0.05087609 0.03925039 1 -0.06429595 0.03925039 1 -0.07958143 0.03925039 1 -0.0968001 0.03925039 1 -0.1160161 0.03925039 1 -0.1372908 0.03925039 1 -0.1606827 0.03925039 1 -0.1862481 0.03925039 1 -0.2140411 0.03925039 1 -0.2441142 0.03925039 1 -0.2765176 0.03925039 1 -0.3113005 0.03925039 1 -0.3485102 0.03925039 1 -0.388193 0.03925039 1 -0.4303934 0.03925039 1 -0.4751555 0.03925039 1 -0.5225216 0.03925039 1 -0.5725335 0.03925039 1 -0.6252316 0.03925039 1 -0.6806558 0.03925039 1 -0.7388448 0.03925039 1 -0.7998369 0.03925039 1 -0.8636691 0.03925039 1 -0.9303782 0.03925039 1 -1 0.03925039 1 -0 0.05087609 1 -0.002418731 0.05087609 1 -0.005155668 0.05087609 1 -0.009080105 0.05087609 1 -0.01434988 0.05087609 1 -0.02107202 0.05087609 1 -0.02934285 0.05087609 1 -0.03925039 0.05087609 1 -0.05087609 0.05087609 1 -0.06429595 0.05087609 1 -0.07958143 0.05087609 1 -0.0968001 0.05087609 1 -0.1160161 0.05087609 1 -0.1372908 0.05087609 1 -0.1606827 0.05087609 1 -0.1862481 0.05087609 1 -0.2140411 0.05087609 1 -0.2441142 0.05087609 1 -0.2765176 0.05087609 1 -0.3113005 0.05087609 1 -0.3485102 0.05087609 1 -0.388193 0.05087609 1 -0.4303934 0.05087609 1 -0.4751555 0.05087609 1 -0.5225216 0.05087609 1 -0.5725335 0.05087609 1 -0.6252316 0.05087609 1 -0.6806558 0.05087609 1 -0.7388448 0.05087609 1 -0.7998369 0.05087609 1 -0.8636691 0.05087609 1 -0.9303782 0.05087609 1 -1 0.05087609 1 -0 0.06429595 1 -0.002418731 0.06429595 1 -0.005155668 0.06429595 1 -0.009080105 0.06429595 1 -0.01434988 0.06429595 1 -0.02107202 0.06429595 1 -0.02934285 0.06429595 1 -0.03925039 0.06429595 1 -0.05087609 0.06429595 1 -0.06429595 0.06429595 1 -0.07958143 0.06429595 1 -0.0968001 0.06429595 1 -0.1160161 0.06429595 1 -0.1372908 0.06429595 1 -0.1606827 0.06429595 1 -0.1862481 0.06429595 1 -0.2140411 0.06429595 1 -0.2441142 0.06429595 1 -0.2765176 0.06429595 1 -0.3113005 0.06429595 1 -0.3485102 0.06429595 1 -0.388193 0.06429595 1 -0.4303934 0.06429595 1 -0.4751555 0.06429595 1 -0.5225216 0.06429595 1 -0.5725335 0.06429595 1 -0.6252316 0.06429595 1 -0.6806558 0.06429595 1 -0.7388448 0.06429595 1 -0.7998369 0.06429595 1 -0.8636691 0.06429595 1 -0.9303782 0.06429595 1 -1 0.06429595 1 -0 0.07958143 1 -0.002418731 0.07958143 1 -0.005155668 0.07958143 1 -0.009080105 0.07958143 1 -0.01434988 0.07958143 1 -0.02107202 0.07958143 1 -0.02934285 0.07958143 1 -0.03925039 0.07958143 1 -0.05087609 0.07958143 1 -0.06429595 0.07958143 1 -0.07958143 0.07958143 1 -0.0968001 0.07958143 1 -0.1160161 0.07958143 1 -0.1372908 0.07958143 1 -0.1606827 0.07958143 1 -0.1862481 0.07958143 1 -0.2140411 0.07958143 1 -0.2441142 0.07958143 1 -0.2765176 0.07958143 1 -0.3113005 0.07958143 1 -0.3485102 0.07958143 1 -0.388193 0.07958143 1 -0.4303934 0.07958143 1 -0.4751555 0.07958143 1 -0.5225216 0.07958143 1 -0.5725335 0.07958143 1 -0.6252316 0.07958143 1 -0.6806558 0.07958143 1 -0.7388448 0.07958143 1 -0.7998369 0.07958143 1 -0.8636691 0.07958143 1 -0.9303782 0.07958143 1 -1 0.07958143 1 -0 0.0968001 1 -0.002418731 0.0968001 1 -0.005155668 0.0968001 1 -0.009080105 0.0968001 1 -0.01434988 0.0968001 1 -0.02107202 0.0968001 1 -0.02934285 0.0968001 1 -0.03925039 0.0968001 1 -0.05087609 0.0968001 1 -0.06429595 0.0968001 1 -0.07958143 0.0968001 1 -0.0968001 0.0968001 1 -0.1160161 0.0968001 1 -0.1372908 0.0968001 1 -0.1606827 0.0968001 1 -0.1862481 0.0968001 1 -0.2140411 0.0968001 1 -0.2441142 0.0968001 1 -0.2765176 0.0968001 1 -0.3113005 0.0968001 1 -0.3485102 0.0968001 1 -0.388193 0.0968001 1 -0.4303934 0.0968001 1 -0.4751555 0.0968001 1 -0.5225216 0.0968001 1 -0.5725335 0.0968001 1 -0.6252316 0.0968001 1 -0.6806558 0.0968001 1 -0.7388448 0.0968001 1 -0.7998369 0.0968001 1 -0.8636691 0.0968001 1 -0.9303782 0.0968001 1 -1 0.0968001 1 -0 0.1160161 1 -0.002418731 0.1160161 1 -0.005155668 0.1160161 1 -0.009080105 0.1160161 1 -0.01434988 0.1160161 1 -0.02107202 0.1160161 1 -0.02934285 0.1160161 1 -0.03925039 0.1160161 1 -0.05087609 0.1160161 1 -0.06429595 0.1160161 1 -0.07958143 0.1160161 1 -0.0968001 0.1160161 1 -0.1160161 0.1160161 1 -0.1372908 0.1160161 1 -0.1606827 0.1160161 1 -0.1862481 0.1160161 1 -0.2140411 0.1160161 1 -0.2441142 0.1160161 1 -0.2765176 0.1160161 1 -0.3113005 0.1160161 1 -0.3485102 0.1160161 1 -0.388193 0.1160161 1 -0.4303934 0.1160161 1 -0.4751555 0.1160161 1 -0.5225216 0.1160161 1 -0.5725335 0.1160161 1 -0.6252316 0.1160161 1 -0.6806558 0.1160161 1 -0.7388448 0.1160161 1 -0.7998369 0.1160161 1 -0.8636691 0.1160161 1 -0.9303782 0.1160161 1 -1 0.1160161 1 -0 0.1372908 1 -0.002418731 0.1372908 1 -0.005155668 0.1372908 1 -0.009080105 0.1372908 1 -0.01434988 0.1372908 1 -0.02107202 0.1372908 1 -0.02934285 0.1372908 1 -0.03925039 0.1372908 1 -0.05087609 0.1372908 1 -0.06429595 0.1372908 1 -0.07958143 0.1372908 1 -0.0968001 0.1372908 1 -0.1160161 0.1372908 1 -0.1372908 0.1372908 1 -0.1606827 0.1372908 1 -0.1862481 0.1372908 1 -0.2140411 0.1372908 1 -0.2441142 0.1372908 1 -0.2765176 0.1372908 1 -0.3113005 0.1372908 1 -0.3485102 0.1372908 1 -0.388193 0.1372908 1 -0.4303934 0.1372908 1 -0.4751555 0.1372908 1 -0.5225216 0.1372908 1 -0.5725335 0.1372908 1 -0.6252316 0.1372908 1 -0.6806558 0.1372908 1 -0.7388448 0.1372908 1 -0.7998369 0.1372908 1 -0.8636691 0.1372908 1 -0.9303782 0.1372908 1 -1 0.1372908 1 -0 0.1606827 1 -0.002418731 0.1606827 1 -0.005155668 0.1606827 1 -0.009080105 0.1606827 1 -0.01434988 0.1606827 1 -0.02107202 0.1606827 1 -0.02934285 0.1606827 1 -0.03925039 0.1606827 1 -0.05087609 0.1606827 1 -0.06429595 0.1606827 1 -0.07958143 0.1606827 1 -0.0968001 0.1606827 1 -0.1160161 0.1606827 1 -0.1372908 0.1606827 1 -0.1606827 0.1606827 1 -0.1862481 0.1606827 1 -0.2140411 0.1606827 1 -0.2441142 0.1606827 1 -0.2765176 0.1606827 1 -0.3113005 0.1606827 1 -0.3485102 0.1606827 1 -0.388193 0.1606827 1 -0.4303934 0.1606827 1 -0.4751555 0.1606827 1 -0.5225216 0.1606827 1 -0.5725335 0.1606827 1 -0.6252316 0.1606827 1 -0.6806558 0.1606827 1 -0.7388448 0.1606827 1 -0.7998369 0.1606827 1 -0.8636691 0.1606827 1 -0.9303782 0.1606827 1 -1 0.1606827 1 -0 0.1862481 1 -0.002418731 0.1862481 1 -0.005155668 0.1862481 1 -0.009080105 0.1862481 1 -0.01434988 0.1862481 1 -0.02107202 0.1862481 1 -0.02934285 0.1862481 1 -0.03925039 0.1862481 1 -0.05087609 0.1862481 1 -0.06429595 0.1862481 1 -0.07958143 0.1862481 1 -0.0968001 0.1862481 1 -0.1160161 0.1862481 1 -0.1372908 0.1862481 1 -0.1606827 0.1862481 1 -0.1862481 0.1862481 1 -0.2140411 0.1862481 1 -0.2441142 0.1862481 1 -0.2765176 0.1862481 1 -0.3113005 0.1862481 1 -0.3485102 0.1862481 1 -0.388193 0.1862481 1 -0.4303934 0.1862481 1 -0.4751555 0.1862481 1 -0.5225216 0.1862481 1 -0.5725335 0.1862481 1 -0.6252316 0.1862481 1 -0.6806558 0.1862481 1 -0.7388448 0.1862481 1 -0.7998369 0.1862481 1 -0.8636691 0.1862481 1 -0.9303782 0.1862481 1 -1 0.1862481 1 -0 0.2140411 1 -0.002418731 0.2140411 1 -0.005155668 0.2140411 1 -0.009080105 0.2140411 1 -0.01434988 0.2140411 1 -0.02107202 0.2140411 1 -0.02934285 0.2140411 1 -0.03925039 0.2140411 1 -0.05087609 0.2140411 1 -0.06429595 0.2140411 1 -0.07958143 0.2140411 1 -0.0968001 0.2140411 1 -0.1160161 0.2140411 1 -0.1372908 0.2140411 1 -0.1606827 0.2140411 1 -0.1862481 0.2140411 1 -0.2140411 0.2140411 1 -0.2441142 0.2140411 1 -0.2765176 0.2140411 1 -0.3113005 0.2140411 1 -0.3485102 0.2140411 1 -0.388193 0.2140411 1 -0.4303934 0.2140411 1 -0.4751555 0.2140411 1 -0.5225216 0.2140411 1 -0.5725335 0.2140411 1 -0.6252316 0.2140411 1 -0.6806558 0.2140411 1 -0.7388448 0.2140411 1 -0.7998369 0.2140411 1 -0.8636691 0.2140411 1 -0.9303782 0.2140411 1 -1 0.2140411 1 -0 0.2441142 1 -0.002418731 0.2441142 1 -0.005155668 0.2441142 1 -0.009080105 0.2441142 1 -0.01434988 0.2441142 1 -0.02107202 0.2441142 1 -0.02934285 0.2441142 1 -0.03925039 0.2441142 1 -0.05087609 0.2441142 1 -0.06429595 0.2441142 1 -0.07958143 0.2441142 1 -0.0968001 0.2441142 1 -0.1160161 0.2441142 1 -0.1372908 0.2441142 1 -0.1606827 0.2441142 1 -0.1862481 0.2441142 1 -0.2140411 0.2441142 1 -0.2441142 0.2441142 1 -0.2765176 0.2441142 1 -0.3113005 0.2441142 1 -0.3485102 0.2441142 1 -0.388193 0.2441142 1 -0.4303934 0.2441142 1 -0.4751555 0.2441142 1 -0.5225216 0.2441142 1 -0.5725335 0.2441142 1 -0.6252316 0.2441142 1 -0.6806558 0.2441142 1 -0.7388448 0.2441142 1 -0.7998369 0.2441142 1 -0.8636691 0.2441142 1 -0.9303782 0.2441142 1 -1 0.2441142 1 -0 0.2765176 1 -0.002418731 0.2765176 1 -0.005155668 0.2765176 1 -0.009080105 0.2765176 1 -0.01434988 0.2765176 1 -0.02107202 0.2765176 1 -0.02934285 0.2765176 1 -0.03925039 0.2765176 1 -0.05087609 0.2765176 1 -0.06429595 0.2765176 1 -0.07958143 0.2765176 1 -0.0968001 0.2765176 1 -0.1160161 0.2765176 1 -0.1372908 0.2765176 1 -0.1606827 0.2765176 1 -0.1862481 0.2765176 1 -0.2140411 0.2765176 1 -0.2441142 0.2765176 1 -0.2765176 0.2765176 1 -0.3113005 0.2765176 1 -0.3485102 0.2765176 1 -0.388193 0.2765176 1 -0.4303934 0.2765176 1 -0.4751555 0.2765176 1 -0.5225216 0.2765176 1 -0.5725335 0.2765176 1 -0.6252316 0.2765176 1 -0.6806558 0.2765176 1 -0.7388448 0.2765176 1 -0.7998369 0.2765176 1 -0.8636691 0.2765176 1 -0.9303782 0.2765176 1 -1 0.2765176 1 -0 0.3113005 1 -0.002418731 0.3113005 1 -0.005155668 0.3113005 1 -0.009080105 0.3113005 1 -0.01434988 0.3113005 1 -0.02107202 0.3113005 1 -0.02934285 0.3113005 1 -0.03925039 0.3113005 1 -0.05087609 0.3113005 1 -0.06429595 0.3113005 1 -0.07958143 0.3113005 1 -0.0968001 0.3113005 1 -0.1160161 0.3113005 1 -0.1372908 0.3113005 1 -0.1606827 0.3113005 1 -0.1862481 0.3113005 1 -0.2140411 0.3113005 1 -0.2441142 0.3113005 1 -0.2765176 0.3113005 1 -0.3113005 0.3113005 1 -0.3485102 0.3113005 1 -0.388193 0.3113005 1 -0.4303934 0.3113005 1 -0.4751555 0.3113005 1 -0.5225216 0.3113005 1 -0.5725335 0.3113005 1 -0.6252316 0.3113005 1 -0.6806558 0.3113005 1 -0.7388448 0.3113005 1 -0.7998369 0.3113005 1 -0.8636691 0.3113005 1 -0.9303782 0.3113005 1 -1 0.3113005 1 -0 0.3485102 1 -0.002418731 0.3485102 1 -0.005155668 0.3485102 1 -0.009080105 0.3485102 1 -0.01434988 0.3485102 1 -0.02107202 0.3485102 1 -0.02934285 0.3485102 1 -0.03925039 0.3485102 1 -0.05087609 0.3485102 1 -0.06429595 0.3485102 1 -0.07958143 0.3485102 1 -0.0968001 0.3485102 1 -0.1160161 0.3485102 1 -0.1372908 0.3485102 1 -0.1606827 0.3485102 1 -0.1862481 0.3485102 1 -0.2140411 0.3485102 1 -0.2441142 0.3485102 1 -0.2765176 0.3485102 1 -0.3113005 0.3485102 1 -0.3485102 0.3485102 1 -0.388193 0.3485102 1 -0.4303934 0.3485102 1 -0.4751555 0.3485102 1 -0.5225216 0.3485102 1 -0.5725335 0.3485102 1 -0.6252316 0.3485102 1 -0.6806558 0.3485102 1 -0.7388448 0.3485102 1 -0.7998369 0.3485102 1 -0.8636691 0.3485102 1 -0.9303782 0.3485102 1 -1 0.3485102 1 -0 0.388193 1 -0.002418731 0.388193 1 -0.005155668 0.388193 1 -0.009080105 0.388193 1 -0.01434988 0.388193 1 -0.02107202 0.388193 1 -0.02934285 0.388193 1 -0.03925039 0.388193 1 -0.05087609 0.388193 1 -0.06429595 0.388193 1 -0.07958143 0.388193 1 -0.0968001 0.388193 1 -0.1160161 0.388193 1 -0.1372908 0.388193 1 -0.1606827 0.388193 1 -0.1862481 0.388193 1 -0.2140411 0.388193 1 -0.2441142 0.388193 1 -0.2765176 0.388193 1 -0.3113005 0.388193 1 -0.3485102 0.388193 1 -0.388193 0.388193 1 -0.4303934 0.388193 1 -0.4751555 0.388193 1 -0.5225216 0.388193 1 -0.5725335 0.388193 1 -0.6252316 0.388193 1 -0.6806558 0.388193 1 -0.7388448 0.388193 1 -0.7998369 0.388193 1 -0.8636691 0.388193 1 -0.9303782 0.388193 1 -1 0.388193 1 -0 0.4303934 1 -0.002418731 0.4303934 1 -0.005155668 0.4303934 1 -0.009080105 0.4303934 1 -0.01434988 0.4303934 1 -0.02107202 0.4303934 1 -0.02934285 0.4303934 1 -0.03925039 0.4303934 1 -0.05087609 0.4303934 1 -0.06429595 0.4303934 1 -0.07958143 0.4303934 1 -0.0968001 0.4303934 1 -0.1160161 0.4303934 1 -0.1372908 0.4303934 1 -0.1606827 0.4303934 1 -0.1862481 0.4303934 1 -0.2140411 0.4303934 1 -0.2441142 0.4303934 1 -0.2765176 0.4303934 1 -0.3113005 0.4303934 1 -0.3485102 0.4303934 1 -0.388193 0.4303934 1 -0.4303934 0.4303934 1 -0.4751555 0.4303934 1 -0.5225216 0.4303934 1 -0.5725335 0.4303934 1 -0.6252316 0.4303934 1 -0.6806558 0.4303934 1 -0.7388448 0.4303934 1 -0.7998369 0.4303934 1 -0.8636691 0.4303934 1 -0.9303782 0.4303934 1 -1 0.4303934 1 -0 0.4751555 1 -0.002418731 0.4751555 1 -0.005155668 0.4751555 1 -0.009080105 0.4751555 1 -0.01434988 0.4751555 1 -0.02107202 0.4751555 1 -0.02934285 0.4751555 1 -0.03925039 0.4751555 1 -0.05087609 0.4751555 1 -0.06429595 0.4751555 1 -0.07958143 0.4751555 1 -0.0968001 0.4751555 1 -0.1160161 0.4751555 1 -0.1372908 0.4751555 1 -0.1606827 0.4751555 1 -0.1862481 0.4751555 1 -0.2140411 0.4751555 1 -0.2441142 0.4751555 1 -0.2765176 0.4751555 1 -0.3113005 0.4751555 1 -0.3485102 0.4751555 1 -0.388193 0.4751555 1 -0.4303934 0.4751555 1 -0.4751555 0.4751555 1 -0.5225216 0.4751555 1 -0.5725335 0.4751555 1 -0.6252316 0.4751555 1 -0.6806558 0.4751555 1 -0.7388448 0.4751555 1 -0.7998369 0.4751555 1 -0.8636691 0.4751555 1 -0.9303782 0.4751555 1 -1 0.4751555 1 -0 0.5225216 1 -0.002418731 0.5225216 1 -0.005155668 0.5225216 1 -0.009080105 0.5225216 1 -0.01434988 0.5225216 1 -0.02107202 0.5225216 1 -0.02934285 0.5225216 1 -0.03925039 0.5225216 1 -0.05087609 0.5225216 1 -0.06429595 0.5225216 1 -0.07958143 0.5225216 1 -0.0968001 0.5225216 1 -0.1160161 0.5225216 1 -0.1372908 0.5225216 1 -0.1606827 0.5225216 1 -0.1862481 0.5225216 1 -0.2140411 0.5225216 1 -0.2441142 0.5225216 1 -0.2765176 0.5225216 1 -0.3113005 0.5225216 1 -0.3485102 0.5225216 1 -0.388193 0.5225216 1 -0.4303934 0.5225216 1 -0.4751555 0.5225216 1 -0.5225216 0.5225216 1 -0.5725335 0.5225216 1 -0.6252316 0.5225216 1 -0.6806558 0.5225216 1 -0.7388448 0.5225216 1 -0.7998369 0.5225216 1 -0.8636691 0.5225216 1 -0.9303782 0.5225216 1 -1 0.5225216 1 -0 0.5725335 1 -0.002418731 0.5725335 1 -0.005155668 0.5725335 1 -0.009080105 0.5725335 1 -0.01434988 0.5725335 1 -0.02107202 0.5725335 1 -0.02934285 0.5725335 1 -0.03925039 0.5725335 1 -0.05087609 0.5725335 1 -0.06429595 0.5725335 1 -0.07958143 0.5725335 1 -0.0968001 0.5725335 1 -0.1160161 0.5725335 1 -0.1372908 0.5725335 1 -0.1606827 0.5725335 1 -0.1862481 0.5725335 1 -0.2140411 0.5725335 1 -0.2441142 0.5725335 1 -0.2765176 0.5725335 1 -0.3113005 0.5725335 1 -0.3485102 0.5725335 1 -0.388193 0.5725335 1 -0.4303934 0.5725335 1 -0.4751555 0.5725335 1 -0.5225216 0.5725335 1 -0.5725335 0.5725335 1 -0.6252316 0.5725335 1 -0.6806558 0.5725335 1 -0.7388448 0.5725335 1 -0.7998369 0.5725335 1 -0.8636691 0.5725335 1 -0.9303782 0.5725335 1 -1 0.5725335 1 -0 0.6252316 1 -0.002418731 0.6252316 1 -0.005155668 0.6252316 1 -0.009080105 0.6252316 1 -0.01434988 0.6252316 1 -0.02107202 0.6252316 1 -0.02934285 0.6252316 1 -0.03925039 0.6252316 1 -0.05087609 0.6252316 1 -0.06429595 0.6252316 1 -0.07958143 0.6252316 1 -0.0968001 0.6252316 1 -0.1160161 0.6252316 1 -0.1372908 0.6252316 1 -0.1606827 0.6252316 1 -0.1862481 0.6252316 1 -0.2140411 0.6252316 1 -0.2441142 0.6252316 1 -0.2765176 0.6252316 1 -0.3113005 0.6252316 1 -0.3485102 0.6252316 1 -0.388193 0.6252316 1 -0.4303934 0.6252316 1 -0.4751555 0.6252316 1 -0.5225216 0.6252316 1 -0.5725335 0.6252316 1 -0.6252316 0.6252316 1 -0.6806558 0.6252316 1 -0.7388448 0.6252316 1 -0.7998369 0.6252316 1 -0.8636691 0.6252316 1 -0.9303782 0.6252316 1 -1 0.6252316 1 -0 0.6806558 1 -0.002418731 0.6806558 1 -0.005155668 0.6806558 1 -0.009080105 0.6806558 1 -0.01434988 0.6806558 1 -0.02107202 0.6806558 1 -0.02934285 0.6806558 1 -0.03925039 0.6806558 1 -0.05087609 0.6806558 1 -0.06429595 0.6806558 1 -0.07958143 0.6806558 1 -0.0968001 0.6806558 1 -0.1160161 0.6806558 1 -0.1372908 0.6806558 1 -0.1606827 0.6806558 1 -0.1862481 0.6806558 1 -0.2140411 0.6806558 1 -0.2441142 0.6806558 1 -0.2765176 0.6806558 1 -0.3113005 0.6806558 1 -0.3485102 0.6806558 1 -0.388193 0.6806558 1 -0.4303934 0.6806558 1 -0.4751555 0.6806558 1 -0.5225216 0.6806558 1 -0.5725335 0.6806558 1 -0.6252316 0.6806558 1 -0.6806558 0.6806558 1 -0.7388448 0.6806558 1 -0.7998369 0.6806558 1 -0.8636691 0.6806558 1 -0.9303782 0.6806558 1 -1 0.6806558 1 -0 0.7388448 1 -0.002418731 0.7388448 1 -0.005155668 0.7388448 1 -0.009080105 0.7388448 1 -0.01434988 0.7388448 1 -0.02107202 0.7388448 1 -0.02934285 0.7388448 1 -0.03925039 0.7388448 1 -0.05087609 0.7388448 1 -0.06429595 0.7388448 1 -0.07958143 0.7388448 1 -0.0968001 0.7388448 1 -0.1160161 0.7388448 1 -0.1372908 0.7388448 1 -0.1606827 0.7388448 1 -0.1862481 0.7388448 1 -0.2140411 0.7388448 1 -0.2441142 0.7388448 1 -0.2765176 0.7388448 1 -0.3113005 0.7388448 1 -0.3485102 0.7388448 1 -0.388193 0.7388448 1 -0.4303934 0.7388448 1 -0.4751555 0.7388448 1 -0.5225216 0.7388448 1 -0.5725335 0.7388448 1 -0.6252316 0.7388448 1 -0.6806558 0.7388448 1 -0.7388448 0.7388448 1 -0.7998369 0.7388448 1 -0.8636691 0.7388448 1 -0.9303782 0.7388448 1 -1 0.7388448 1 -0 0.7998369 1 -0.002418731 0.7998369 1 -0.005155668 0.7998369 1 -0.009080105 0.7998369 1 -0.01434988 0.7998369 1 -0.02107202 0.7998369 1 -0.02934285 0.7998369 1 -0.03925039 0.7998369 1 -0.05087609 0.7998369 1 -0.06429595 0.7998369 1 -0.07958143 0.7998369 1 -0.0968001 0.7998369 1 -0.1160161 0.7998369 1 -0.1372908 0.7998369 1 -0.1606827 0.7998369 1 -0.1862481 0.7998369 1 -0.2140411 0.7998369 1 -0.2441142 0.7998369 1 -0.2765176 0.7998369 1 -0.3113005 0.7998369 1 -0.3485102 0.7998369 1 -0.388193 0.7998369 1 -0.4303934 0.7998369 1 -0.4751555 0.7998369 1 -0.5225216 0.7998369 1 -0.5725335 0.7998369 1 -0.6252316 0.7998369 1 -0.6806558 0.7998369 1 -0.7388448 0.7998369 1 -0.7998369 0.7998369 1 -0.8636691 0.7998369 1 -0.9303782 0.7998369 1 -1 0.7998369 1 -0 0.8636691 1 -0.002418731 0.8636691 1 -0.005155668 0.8636691 1 -0.009080105 0.8636691 1 -0.01434988 0.8636691 1 -0.02107202 0.8636691 1 -0.02934285 0.8636691 1 -0.03925039 0.8636691 1 -0.05087609 0.8636691 1 -0.06429595 0.8636691 1 -0.07958143 0.8636691 1 -0.0968001 0.8636691 1 -0.1160161 0.8636691 1 -0.1372908 0.8636691 1 -0.1606827 0.8636691 1 -0.1862481 0.8636691 1 -0.2140411 0.8636691 1 -0.2441142 0.8636691 1 -0.2765176 0.8636691 1 -0.3113005 0.8636691 1 -0.3485102 0.8636691 1 -0.388193 0.8636691 1 -0.4303934 0.8636691 1 -0.4751555 0.8636691 1 -0.5225216 0.8636691 1 -0.5725335 0.8636691 1 -0.6252316 0.8636691 1 -0.6806558 0.8636691 1 -0.7388448 0.8636691 1 -0.7998369 0.8636691 1 -0.8636691 0.8636691 1 -0.9303782 0.8636691 1 -1 0.8636691 1 -0 0.9303782 1 -0.002418731 0.9303782 1 -0.005155668 0.9303782 1 -0.009080105 0.9303782 1 -0.01434988 0.9303782 1 -0.02107202 0.9303782 1 -0.02934285 0.9303782 1 -0.03925039 0.9303782 1 -0.05087609 0.9303782 1 -0.06429595 0.9303782 1 -0.07958143 0.9303782 1 -0.0968001 0.9303782 1 -0.1160161 0.9303782 1 -0.1372908 0.9303782 1 -0.1606827 0.9303782 1 -0.1862481 0.9303782 1 -0.2140411 0.9303782 1 -0.2441142 0.9303782 1 -0.2765176 0.9303782 1 -0.3113005 0.9303782 1 -0.3485102 0.9303782 1 -0.388193 0.9303782 1 -0.4303934 0.9303782 1 -0.4751555 0.9303782 1 -0.5225216 0.9303782 1 -0.5725335 0.9303782 1 -0.6252316 0.9303782 1 -0.6806558 0.9303782 1 -0.7388448 0.9303782 1 -0.7998369 0.9303782 1 -0.8636691 0.9303782 1 -0.9303782 0.9303782 1 -1 0.9303782 1 -0 1 1 -0.002418731 1 1 -0.005155668 1 1 -0.009080105 1 1 -0.01434988 1 1 -0.02107202 1 1 -0.02934285 1 1 -0.03925039 1 1 -0.05087609 1 1 -0.06429595 1 1 -0.07958143 1 1 -0.0968001 1 1 -0.1160161 1 1 -0.1372908 1 1 -0.1606827 1 1 -0.1862481 1 1 -0.2140411 1 1 -0.2441142 1 1 -0.2765176 1 1 -0.3113005 1 1 -0.3485102 1 1 -0.388193 1 1 -0.4303934 1 1 -0.4751555 1 1 -0.5225216 1 1 -0.5725335 1 1 -0.6252316 1 1 -0.6806558 1 1 -0.7388448 1 1 -0.7998369 1 1 -0.8636691 1 1 -0.9303782 1 1 -1 1 1 diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/sRGB to Linear r1.cube.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/sRGB to Linear r1.cube.meta deleted file mode 100644 index 4c0ef22ca..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/sRGB to Linear r1.cube.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: bb2cdc36291ad714aaca8f440c16c51e -timeCreated: 1496826837 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/sRGB to Unity Log r1.cube b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/sRGB to Unity Log r1.cube deleted file mode 100644 index 47ba1f833..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/sRGB to Unity Log r1.cube +++ /dev/null @@ -1,35941 +0,0 @@ -TITLE "sRGB to Unity Log r1" -LUT_3D_SIZE 33 -DOMAIN_MIN 0 0 0 -DOMAIN_MAX 1 1 1 -0.092819 0.092819 0.092819 -0.1056428 0.092819 0.092819 -0.1201537 0.092819 0.092819 -0.1409607 0.092819 0.092819 -0.1678172 0.092819 0.092819 -0.1950164 0.092819 0.092819 -0.2210581 0.092819 0.092819 -0.245636 0.092819 0.092819 -0.2686816 0.092819 0.092819 -0.2902431 0.092819 0.092819 -0.3104189 0.092819 0.092819 -0.3293248 0.092819 0.092819 -0.3470774 0.092819 0.092819 -0.3637862 0.092819 0.092819 -0.3795513 0.092819 0.092819 -0.3944623 0.092819 0.092819 -0.4085988 0.092819 0.092819 -0.4220313 0.092819 0.092819 -0.4348222 0.092819 0.092819 -0.4470264 0.092819 0.092819 -0.4586928 0.092819 0.092819 -0.4698649 0.092819 0.092819 -0.4805811 0.092819 0.092819 -0.490876 0.092819 0.092819 -0.5007803 0.092819 0.092819 -0.510322 0.092819 0.092819 -0.5195258 0.092819 0.092819 -0.5284142 0.092819 0.092819 -0.5370079 0.092819 0.092819 -0.5453253 0.092819 0.092819 -0.5533834 0.092819 0.092819 -0.5611974 0.092819 0.092819 -0.5687816 0.092819 0.092819 -0.092819 0.1056428 0.092819 -0.1056428 0.1056428 0.092819 -0.1201537 0.1056428 0.092819 -0.1409607 0.1056428 0.092819 -0.1678172 0.1056428 0.092819 -0.1950164 0.1056428 0.092819 -0.2210581 0.1056428 0.092819 -0.245636 0.1056428 0.092819 -0.2686816 0.1056428 0.092819 -0.2902431 0.1056428 0.092819 -0.3104189 0.1056428 0.092819 -0.3293248 0.1056428 0.092819 -0.3470774 0.1056428 0.092819 -0.3637862 0.1056428 0.092819 -0.3795513 0.1056428 0.092819 -0.3944623 0.1056428 0.092819 -0.4085988 0.1056428 0.092819 -0.4220313 0.1056428 0.092819 -0.4348222 0.1056428 0.092819 -0.4470264 0.1056428 0.092819 -0.4586928 0.1056428 0.092819 -0.4698649 0.1056428 0.092819 -0.4805811 0.1056428 0.092819 -0.490876 0.1056428 0.092819 -0.5007803 0.1056428 0.092819 -0.510322 0.1056428 0.092819 -0.5195258 0.1056428 0.092819 -0.5284142 0.1056428 0.092819 -0.5370079 0.1056428 0.092819 -0.5453253 0.1056428 0.092819 -0.5533834 0.1056428 0.092819 -0.5611974 0.1056428 0.092819 -0.5687816 0.1056428 0.092819 -0.092819 0.1201537 0.092819 -0.1056428 0.1201537 0.092819 -0.1201537 0.1201537 0.092819 -0.1409607 0.1201537 0.092819 -0.1678172 0.1201537 0.092819 -0.1950164 0.1201537 0.092819 -0.2210581 0.1201537 0.092819 -0.245636 0.1201537 0.092819 -0.2686816 0.1201537 0.092819 -0.2902431 0.1201537 0.092819 -0.3104189 0.1201537 0.092819 -0.3293248 0.1201537 0.092819 -0.3470774 0.1201537 0.092819 -0.3637862 0.1201537 0.092819 -0.3795513 0.1201537 0.092819 -0.3944623 0.1201537 0.092819 -0.4085988 0.1201537 0.092819 -0.4220313 0.1201537 0.092819 -0.4348222 0.1201537 0.092819 -0.4470264 0.1201537 0.092819 -0.4586928 0.1201537 0.092819 -0.4698649 0.1201537 0.092819 -0.4805811 0.1201537 0.092819 -0.490876 0.1201537 0.092819 -0.5007803 0.1201537 0.092819 -0.510322 0.1201537 0.092819 -0.5195258 0.1201537 0.092819 -0.5284142 0.1201537 0.092819 -0.5370079 0.1201537 0.092819 -0.5453253 0.1201537 0.092819 -0.5533834 0.1201537 0.092819 -0.5611974 0.1201537 0.092819 -0.5687816 0.1201537 0.092819 -0.092819 0.1409607 0.092819 -0.1056428 0.1409607 0.092819 -0.1201537 0.1409607 0.092819 -0.1409607 0.1409607 0.092819 -0.1678172 0.1409607 0.092819 -0.1950164 0.1409607 0.092819 -0.2210581 0.1409607 0.092819 -0.245636 0.1409607 0.092819 -0.2686816 0.1409607 0.092819 -0.2902431 0.1409607 0.092819 -0.3104189 0.1409607 0.092819 -0.3293248 0.1409607 0.092819 -0.3470774 0.1409607 0.092819 -0.3637862 0.1409607 0.092819 -0.3795513 0.1409607 0.092819 -0.3944623 0.1409607 0.092819 -0.4085988 0.1409607 0.092819 -0.4220313 0.1409607 0.092819 -0.4348222 0.1409607 0.092819 -0.4470264 0.1409607 0.092819 -0.4586928 0.1409607 0.092819 -0.4698649 0.1409607 0.092819 -0.4805811 0.1409607 0.092819 -0.490876 0.1409607 0.092819 -0.5007803 0.1409607 0.092819 -0.510322 0.1409607 0.092819 -0.5195258 0.1409607 0.092819 -0.5284142 0.1409607 0.092819 -0.5370079 0.1409607 0.092819 -0.5453253 0.1409607 0.092819 -0.5533834 0.1409607 0.092819 -0.5611974 0.1409607 0.092819 -0.5687816 0.1409607 0.092819 -0.092819 0.1678172 0.092819 -0.1056428 0.1678172 0.092819 -0.1201537 0.1678172 0.092819 -0.1409607 0.1678172 0.092819 -0.1678172 0.1678172 0.092819 -0.1950164 0.1678172 0.092819 -0.2210581 0.1678172 0.092819 -0.245636 0.1678172 0.092819 -0.2686816 0.1678172 0.092819 -0.2902431 0.1678172 0.092819 -0.3104189 0.1678172 0.092819 -0.3293248 0.1678172 0.092819 -0.3470774 0.1678172 0.092819 -0.3637862 0.1678172 0.092819 -0.3795513 0.1678172 0.092819 -0.3944623 0.1678172 0.092819 -0.4085988 0.1678172 0.092819 -0.4220313 0.1678172 0.092819 -0.4348222 0.1678172 0.092819 -0.4470264 0.1678172 0.092819 -0.4586928 0.1678172 0.092819 -0.4698649 0.1678172 0.092819 -0.4805811 0.1678172 0.092819 -0.490876 0.1678172 0.092819 -0.5007803 0.1678172 0.092819 -0.510322 0.1678172 0.092819 -0.5195258 0.1678172 0.092819 -0.5284142 0.1678172 0.092819 -0.5370079 0.1678172 0.092819 -0.5453253 0.1678172 0.092819 -0.5533834 0.1678172 0.092819 -0.5611974 0.1678172 0.092819 -0.5687816 0.1678172 0.092819 -0.092819 0.1950164 0.092819 -0.1056428 0.1950164 0.092819 -0.1201537 0.1950164 0.092819 -0.1409607 0.1950164 0.092819 -0.1678172 0.1950164 0.092819 -0.1950164 0.1950164 0.092819 -0.2210581 0.1950164 0.092819 -0.245636 0.1950164 0.092819 -0.2686816 0.1950164 0.092819 -0.2902431 0.1950164 0.092819 -0.3104189 0.1950164 0.092819 -0.3293248 0.1950164 0.092819 -0.3470774 0.1950164 0.092819 -0.3637862 0.1950164 0.092819 -0.3795513 0.1950164 0.092819 -0.3944623 0.1950164 0.092819 -0.4085988 0.1950164 0.092819 -0.4220313 0.1950164 0.092819 -0.4348222 0.1950164 0.092819 -0.4470264 0.1950164 0.092819 -0.4586928 0.1950164 0.092819 -0.4698649 0.1950164 0.092819 -0.4805811 0.1950164 0.092819 -0.490876 0.1950164 0.092819 -0.5007803 0.1950164 0.092819 -0.510322 0.1950164 0.092819 -0.5195258 0.1950164 0.092819 -0.5284142 0.1950164 0.092819 -0.5370079 0.1950164 0.092819 -0.5453253 0.1950164 0.092819 -0.5533834 0.1950164 0.092819 -0.5611974 0.1950164 0.092819 -0.5687816 0.1950164 0.092819 -0.092819 0.2210581 0.092819 -0.1056428 0.2210581 0.092819 -0.1201537 0.2210581 0.092819 -0.1409607 0.2210581 0.092819 -0.1678172 0.2210581 0.092819 -0.1950164 0.2210581 0.092819 -0.2210581 0.2210581 0.092819 -0.245636 0.2210581 0.092819 -0.2686816 0.2210581 0.092819 -0.2902431 0.2210581 0.092819 -0.3104189 0.2210581 0.092819 -0.3293248 0.2210581 0.092819 -0.3470774 0.2210581 0.092819 -0.3637862 0.2210581 0.092819 -0.3795513 0.2210581 0.092819 -0.3944623 0.2210581 0.092819 -0.4085988 0.2210581 0.092819 -0.4220313 0.2210581 0.092819 -0.4348222 0.2210581 0.092819 -0.4470264 0.2210581 0.092819 -0.4586928 0.2210581 0.092819 -0.4698649 0.2210581 0.092819 -0.4805811 0.2210581 0.092819 -0.490876 0.2210581 0.092819 -0.5007803 0.2210581 0.092819 -0.510322 0.2210581 0.092819 -0.5195258 0.2210581 0.092819 -0.5284142 0.2210581 0.092819 -0.5370079 0.2210581 0.092819 -0.5453253 0.2210581 0.092819 -0.5533834 0.2210581 0.092819 -0.5611974 0.2210581 0.092819 -0.5687816 0.2210581 0.092819 -0.092819 0.245636 0.092819 -0.1056428 0.245636 0.092819 -0.1201537 0.245636 0.092819 -0.1409607 0.245636 0.092819 -0.1678172 0.245636 0.092819 -0.1950164 0.245636 0.092819 -0.2210581 0.245636 0.092819 -0.245636 0.245636 0.092819 -0.2686816 0.245636 0.092819 -0.2902431 0.245636 0.092819 -0.3104189 0.245636 0.092819 -0.3293248 0.245636 0.092819 -0.3470774 0.245636 0.092819 -0.3637862 0.245636 0.092819 -0.3795513 0.245636 0.092819 -0.3944623 0.245636 0.092819 -0.4085988 0.245636 0.092819 -0.4220313 0.245636 0.092819 -0.4348222 0.245636 0.092819 -0.4470264 0.245636 0.092819 -0.4586928 0.245636 0.092819 -0.4698649 0.245636 0.092819 -0.4805811 0.245636 0.092819 -0.490876 0.245636 0.092819 -0.5007803 0.245636 0.092819 -0.510322 0.245636 0.092819 -0.5195258 0.245636 0.092819 -0.5284142 0.245636 0.092819 -0.5370079 0.245636 0.092819 -0.5453253 0.245636 0.092819 -0.5533834 0.245636 0.092819 -0.5611974 0.245636 0.092819 -0.5687816 0.245636 0.092819 -0.092819 0.2686816 0.092819 -0.1056428 0.2686816 0.092819 -0.1201537 0.2686816 0.092819 -0.1409607 0.2686816 0.092819 -0.1678172 0.2686816 0.092819 -0.1950164 0.2686816 0.092819 -0.2210581 0.2686816 0.092819 -0.245636 0.2686816 0.092819 -0.2686816 0.2686816 0.092819 -0.2902431 0.2686816 0.092819 -0.3104189 0.2686816 0.092819 -0.3293248 0.2686816 0.092819 -0.3470774 0.2686816 0.092819 -0.3637862 0.2686816 0.092819 -0.3795513 0.2686816 0.092819 -0.3944623 0.2686816 0.092819 -0.4085988 0.2686816 0.092819 -0.4220313 0.2686816 0.092819 -0.4348222 0.2686816 0.092819 -0.4470264 0.2686816 0.092819 -0.4586928 0.2686816 0.092819 -0.4698649 0.2686816 0.092819 -0.4805811 0.2686816 0.092819 -0.490876 0.2686816 0.092819 -0.5007803 0.2686816 0.092819 -0.510322 0.2686816 0.092819 -0.5195258 0.2686816 0.092819 -0.5284142 0.2686816 0.092819 -0.5370079 0.2686816 0.092819 -0.5453253 0.2686816 0.092819 -0.5533834 0.2686816 0.092819 -0.5611974 0.2686816 0.092819 -0.5687816 0.2686816 0.092819 -0.092819 0.2902431 0.092819 -0.1056428 0.2902431 0.092819 -0.1201537 0.2902431 0.092819 -0.1409607 0.2902431 0.092819 -0.1678172 0.2902431 0.092819 -0.1950164 0.2902431 0.092819 -0.2210581 0.2902431 0.092819 -0.245636 0.2902431 0.092819 -0.2686816 0.2902431 0.092819 -0.2902431 0.2902431 0.092819 -0.3104189 0.2902431 0.092819 -0.3293248 0.2902431 0.092819 -0.3470774 0.2902431 0.092819 -0.3637862 0.2902431 0.092819 -0.3795513 0.2902431 0.092819 -0.3944623 0.2902431 0.092819 -0.4085988 0.2902431 0.092819 -0.4220313 0.2902431 0.092819 -0.4348222 0.2902431 0.092819 -0.4470264 0.2902431 0.092819 -0.4586928 0.2902431 0.092819 -0.4698649 0.2902431 0.092819 -0.4805811 0.2902431 0.092819 -0.490876 0.2902431 0.092819 -0.5007803 0.2902431 0.092819 -0.510322 0.2902431 0.092819 -0.5195258 0.2902431 0.092819 -0.5284142 0.2902431 0.092819 -0.5370079 0.2902431 0.092819 -0.5453253 0.2902431 0.092819 -0.5533834 0.2902431 0.092819 -0.5611974 0.2902431 0.092819 -0.5687816 0.2902431 0.092819 -0.092819 0.3104189 0.092819 -0.1056428 0.3104189 0.092819 -0.1201537 0.3104189 0.092819 -0.1409607 0.3104189 0.092819 -0.1678172 0.3104189 0.092819 -0.1950164 0.3104189 0.092819 -0.2210581 0.3104189 0.092819 -0.245636 0.3104189 0.092819 -0.2686816 0.3104189 0.092819 -0.2902431 0.3104189 0.092819 -0.3104189 0.3104189 0.092819 -0.3293248 0.3104189 0.092819 -0.3470774 0.3104189 0.092819 -0.3637862 0.3104189 0.092819 -0.3795513 0.3104189 0.092819 -0.3944623 0.3104189 0.092819 -0.4085988 0.3104189 0.092819 -0.4220313 0.3104189 0.092819 -0.4348222 0.3104189 0.092819 -0.4470264 0.3104189 0.092819 -0.4586928 0.3104189 0.092819 -0.4698649 0.3104189 0.092819 -0.4805811 0.3104189 0.092819 -0.490876 0.3104189 0.092819 -0.5007803 0.3104189 0.092819 -0.510322 0.3104189 0.092819 -0.5195258 0.3104189 0.092819 -0.5284142 0.3104189 0.092819 -0.5370079 0.3104189 0.092819 -0.5453253 0.3104189 0.092819 -0.5533834 0.3104189 0.092819 -0.5611974 0.3104189 0.092819 -0.5687816 0.3104189 0.092819 -0.092819 0.3293248 0.092819 -0.1056428 0.3293248 0.092819 -0.1201537 0.3293248 0.092819 -0.1409607 0.3293248 0.092819 -0.1678172 0.3293248 0.092819 -0.1950164 0.3293248 0.092819 -0.2210581 0.3293248 0.092819 -0.245636 0.3293248 0.092819 -0.2686816 0.3293248 0.092819 -0.2902431 0.3293248 0.092819 -0.3104189 0.3293248 0.092819 -0.3293248 0.3293248 0.092819 -0.3470774 0.3293248 0.092819 -0.3637862 0.3293248 0.092819 -0.3795513 0.3293248 0.092819 -0.3944623 0.3293248 0.092819 -0.4085988 0.3293248 0.092819 -0.4220313 0.3293248 0.092819 -0.4348222 0.3293248 0.092819 -0.4470264 0.3293248 0.092819 -0.4586928 0.3293248 0.092819 -0.4698649 0.3293248 0.092819 -0.4805811 0.3293248 0.092819 -0.490876 0.3293248 0.092819 -0.5007803 0.3293248 0.092819 -0.510322 0.3293248 0.092819 -0.5195258 0.3293248 0.092819 -0.5284142 0.3293248 0.092819 -0.5370079 0.3293248 0.092819 -0.5453253 0.3293248 0.092819 -0.5533834 0.3293248 0.092819 -0.5611974 0.3293248 0.092819 -0.5687816 0.3293248 0.092819 -0.092819 0.3470774 0.092819 -0.1056428 0.3470774 0.092819 -0.1201537 0.3470774 0.092819 -0.1409607 0.3470774 0.092819 -0.1678172 0.3470774 0.092819 -0.1950164 0.3470774 0.092819 -0.2210581 0.3470774 0.092819 -0.245636 0.3470774 0.092819 -0.2686816 0.3470774 0.092819 -0.2902431 0.3470774 0.092819 -0.3104189 0.3470774 0.092819 -0.3293248 0.3470774 0.092819 -0.3470774 0.3470774 0.092819 -0.3637862 0.3470774 0.092819 -0.3795513 0.3470774 0.092819 -0.3944623 0.3470774 0.092819 -0.4085988 0.3470774 0.092819 -0.4220313 0.3470774 0.092819 -0.4348222 0.3470774 0.092819 -0.4470264 0.3470774 0.092819 -0.4586928 0.3470774 0.092819 -0.4698649 0.3470774 0.092819 -0.4805811 0.3470774 0.092819 -0.490876 0.3470774 0.092819 -0.5007803 0.3470774 0.092819 -0.510322 0.3470774 0.092819 -0.5195258 0.3470774 0.092819 -0.5284142 0.3470774 0.092819 -0.5370079 0.3470774 0.092819 -0.5453253 0.3470774 0.092819 -0.5533834 0.3470774 0.092819 -0.5611974 0.3470774 0.092819 -0.5687816 0.3470774 0.092819 -0.092819 0.3637862 0.092819 -0.1056428 0.3637862 0.092819 -0.1201537 0.3637862 0.092819 -0.1409607 0.3637862 0.092819 -0.1678172 0.3637862 0.092819 -0.1950164 0.3637862 0.092819 -0.2210581 0.3637862 0.092819 -0.245636 0.3637862 0.092819 -0.2686816 0.3637862 0.092819 -0.2902431 0.3637862 0.092819 -0.3104189 0.3637862 0.092819 -0.3293248 0.3637862 0.092819 -0.3470774 0.3637862 0.092819 -0.3637862 0.3637862 0.092819 -0.3795513 0.3637862 0.092819 -0.3944623 0.3637862 0.092819 -0.4085988 0.3637862 0.092819 -0.4220313 0.3637862 0.092819 -0.4348222 0.3637862 0.092819 -0.4470264 0.3637862 0.092819 -0.4586928 0.3637862 0.092819 -0.4698649 0.3637862 0.092819 -0.4805811 0.3637862 0.092819 -0.490876 0.3637862 0.092819 -0.5007803 0.3637862 0.092819 -0.510322 0.3637862 0.092819 -0.5195258 0.3637862 0.092819 -0.5284142 0.3637862 0.092819 -0.5370079 0.3637862 0.092819 -0.5453253 0.3637862 0.092819 -0.5533834 0.3637862 0.092819 -0.5611974 0.3637862 0.092819 -0.5687816 0.3637862 0.092819 -0.092819 0.3795513 0.092819 -0.1056428 0.3795513 0.092819 -0.1201537 0.3795513 0.092819 -0.1409607 0.3795513 0.092819 -0.1678172 0.3795513 0.092819 -0.1950164 0.3795513 0.092819 -0.2210581 0.3795513 0.092819 -0.245636 0.3795513 0.092819 -0.2686816 0.3795513 0.092819 -0.2902431 0.3795513 0.092819 -0.3104189 0.3795513 0.092819 -0.3293248 0.3795513 0.092819 -0.3470774 0.3795513 0.092819 -0.3637862 0.3795513 0.092819 -0.3795513 0.3795513 0.092819 -0.3944623 0.3795513 0.092819 -0.4085988 0.3795513 0.092819 -0.4220313 0.3795513 0.092819 -0.4348222 0.3795513 0.092819 -0.4470264 0.3795513 0.092819 -0.4586928 0.3795513 0.092819 -0.4698649 0.3795513 0.092819 -0.4805811 0.3795513 0.092819 -0.490876 0.3795513 0.092819 -0.5007803 0.3795513 0.092819 -0.510322 0.3795513 0.092819 -0.5195258 0.3795513 0.092819 -0.5284142 0.3795513 0.092819 -0.5370079 0.3795513 0.092819 -0.5453253 0.3795513 0.092819 -0.5533834 0.3795513 0.092819 -0.5611974 0.3795513 0.092819 -0.5687816 0.3795513 0.092819 -0.092819 0.3944623 0.092819 -0.1056428 0.3944623 0.092819 -0.1201537 0.3944623 0.092819 -0.1409607 0.3944623 0.092819 -0.1678172 0.3944623 0.092819 -0.1950164 0.3944623 0.092819 -0.2210581 0.3944623 0.092819 -0.245636 0.3944623 0.092819 -0.2686816 0.3944623 0.092819 -0.2902431 0.3944623 0.092819 -0.3104189 0.3944623 0.092819 -0.3293248 0.3944623 0.092819 -0.3470774 0.3944623 0.092819 -0.3637862 0.3944623 0.092819 -0.3795513 0.3944623 0.092819 -0.3944623 0.3944623 0.092819 -0.4085988 0.3944623 0.092819 -0.4220313 0.3944623 0.092819 -0.4348222 0.3944623 0.092819 -0.4470264 0.3944623 0.092819 -0.4586928 0.3944623 0.092819 -0.4698649 0.3944623 0.092819 -0.4805811 0.3944623 0.092819 -0.490876 0.3944623 0.092819 -0.5007803 0.3944623 0.092819 -0.510322 0.3944623 0.092819 -0.5195258 0.3944623 0.092819 -0.5284142 0.3944623 0.092819 -0.5370079 0.3944623 0.092819 -0.5453253 0.3944623 0.092819 -0.5533834 0.3944623 0.092819 -0.5611974 0.3944623 0.092819 -0.5687816 0.3944623 0.092819 -0.092819 0.4085988 0.092819 -0.1056428 0.4085988 0.092819 -0.1201537 0.4085988 0.092819 -0.1409607 0.4085988 0.092819 -0.1678172 0.4085988 0.092819 -0.1950164 0.4085988 0.092819 -0.2210581 0.4085988 0.092819 -0.245636 0.4085988 0.092819 -0.2686816 0.4085988 0.092819 -0.2902431 0.4085988 0.092819 -0.3104189 0.4085988 0.092819 -0.3293248 0.4085988 0.092819 -0.3470774 0.4085988 0.092819 -0.3637862 0.4085988 0.092819 -0.3795513 0.4085988 0.092819 -0.3944623 0.4085988 0.092819 -0.4085988 0.4085988 0.092819 -0.4220313 0.4085988 0.092819 -0.4348222 0.4085988 0.092819 -0.4470264 0.4085988 0.092819 -0.4586928 0.4085988 0.092819 -0.4698649 0.4085988 0.092819 -0.4805811 0.4085988 0.092819 -0.490876 0.4085988 0.092819 -0.5007803 0.4085988 0.092819 -0.510322 0.4085988 0.092819 -0.5195258 0.4085988 0.092819 -0.5284142 0.4085988 0.092819 -0.5370079 0.4085988 0.092819 -0.5453253 0.4085988 0.092819 -0.5533834 0.4085988 0.092819 -0.5611974 0.4085988 0.092819 -0.5687816 0.4085988 0.092819 -0.092819 0.4220313 0.092819 -0.1056428 0.4220313 0.092819 -0.1201537 0.4220313 0.092819 -0.1409607 0.4220313 0.092819 -0.1678172 0.4220313 0.092819 -0.1950164 0.4220313 0.092819 -0.2210581 0.4220313 0.092819 -0.245636 0.4220313 0.092819 -0.2686816 0.4220313 0.092819 -0.2902431 0.4220313 0.092819 -0.3104189 0.4220313 0.092819 -0.3293248 0.4220313 0.092819 -0.3470774 0.4220313 0.092819 -0.3637862 0.4220313 0.092819 -0.3795513 0.4220313 0.092819 -0.3944623 0.4220313 0.092819 -0.4085988 0.4220313 0.092819 -0.4220313 0.4220313 0.092819 -0.4348222 0.4220313 0.092819 -0.4470264 0.4220313 0.092819 -0.4586928 0.4220313 0.092819 -0.4698649 0.4220313 0.092819 -0.4805811 0.4220313 0.092819 -0.490876 0.4220313 0.092819 -0.5007803 0.4220313 0.092819 -0.510322 0.4220313 0.092819 -0.5195258 0.4220313 0.092819 -0.5284142 0.4220313 0.092819 -0.5370079 0.4220313 0.092819 -0.5453253 0.4220313 0.092819 -0.5533834 0.4220313 0.092819 -0.5611974 0.4220313 0.092819 -0.5687816 0.4220313 0.092819 -0.092819 0.4348222 0.092819 -0.1056428 0.4348222 0.092819 -0.1201537 0.4348222 0.092819 -0.1409607 0.4348222 0.092819 -0.1678172 0.4348222 0.092819 -0.1950164 0.4348222 0.092819 -0.2210581 0.4348222 0.092819 -0.245636 0.4348222 0.092819 -0.2686816 0.4348222 0.092819 -0.2902431 0.4348222 0.092819 -0.3104189 0.4348222 0.092819 -0.3293248 0.4348222 0.092819 -0.3470774 0.4348222 0.092819 -0.3637862 0.4348222 0.092819 -0.3795513 0.4348222 0.092819 -0.3944623 0.4348222 0.092819 -0.4085988 0.4348222 0.092819 -0.4220313 0.4348222 0.092819 -0.4348222 0.4348222 0.092819 -0.4470264 0.4348222 0.092819 -0.4586928 0.4348222 0.092819 -0.4698649 0.4348222 0.092819 -0.4805811 0.4348222 0.092819 -0.490876 0.4348222 0.092819 -0.5007803 0.4348222 0.092819 -0.510322 0.4348222 0.092819 -0.5195258 0.4348222 0.092819 -0.5284142 0.4348222 0.092819 -0.5370079 0.4348222 0.092819 -0.5453253 0.4348222 0.092819 -0.5533834 0.4348222 0.092819 -0.5611974 0.4348222 0.092819 -0.5687816 0.4348222 0.092819 -0.092819 0.4470264 0.092819 -0.1056428 0.4470264 0.092819 -0.1201537 0.4470264 0.092819 -0.1409607 0.4470264 0.092819 -0.1678172 0.4470264 0.092819 -0.1950164 0.4470264 0.092819 -0.2210581 0.4470264 0.092819 -0.245636 0.4470264 0.092819 -0.2686816 0.4470264 0.092819 -0.2902431 0.4470264 0.092819 -0.3104189 0.4470264 0.092819 -0.3293248 0.4470264 0.092819 -0.3470774 0.4470264 0.092819 -0.3637862 0.4470264 0.092819 -0.3795513 0.4470264 0.092819 -0.3944623 0.4470264 0.092819 -0.4085988 0.4470264 0.092819 -0.4220313 0.4470264 0.092819 -0.4348222 0.4470264 0.092819 -0.4470264 0.4470264 0.092819 -0.4586928 0.4470264 0.092819 -0.4698649 0.4470264 0.092819 -0.4805811 0.4470264 0.092819 -0.490876 0.4470264 0.092819 -0.5007803 0.4470264 0.092819 -0.510322 0.4470264 0.092819 -0.5195258 0.4470264 0.092819 -0.5284142 0.4470264 0.092819 -0.5370079 0.4470264 0.092819 -0.5453253 0.4470264 0.092819 -0.5533834 0.4470264 0.092819 -0.5611974 0.4470264 0.092819 -0.5687816 0.4470264 0.092819 -0.092819 0.4586928 0.092819 -0.1056428 0.4586928 0.092819 -0.1201537 0.4586928 0.092819 -0.1409607 0.4586928 0.092819 -0.1678172 0.4586928 0.092819 -0.1950164 0.4586928 0.092819 -0.2210581 0.4586928 0.092819 -0.245636 0.4586928 0.092819 -0.2686816 0.4586928 0.092819 -0.2902431 0.4586928 0.092819 -0.3104189 0.4586928 0.092819 -0.3293248 0.4586928 0.092819 -0.3470774 0.4586928 0.092819 -0.3637862 0.4586928 0.092819 -0.3795513 0.4586928 0.092819 -0.3944623 0.4586928 0.092819 -0.4085988 0.4586928 0.092819 -0.4220313 0.4586928 0.092819 -0.4348222 0.4586928 0.092819 -0.4470264 0.4586928 0.092819 -0.4586928 0.4586928 0.092819 -0.4698649 0.4586928 0.092819 -0.4805811 0.4586928 0.092819 -0.490876 0.4586928 0.092819 -0.5007803 0.4586928 0.092819 -0.510322 0.4586928 0.092819 -0.5195258 0.4586928 0.092819 -0.5284142 0.4586928 0.092819 -0.5370079 0.4586928 0.092819 -0.5453253 0.4586928 0.092819 -0.5533834 0.4586928 0.092819 -0.5611974 0.4586928 0.092819 -0.5687816 0.4586928 0.092819 -0.092819 0.4698649 0.092819 -0.1056428 0.4698649 0.092819 -0.1201537 0.4698649 0.092819 -0.1409607 0.4698649 0.092819 -0.1678172 0.4698649 0.092819 -0.1950164 0.4698649 0.092819 -0.2210581 0.4698649 0.092819 -0.245636 0.4698649 0.092819 -0.2686816 0.4698649 0.092819 -0.2902431 0.4698649 0.092819 -0.3104189 0.4698649 0.092819 -0.3293248 0.4698649 0.092819 -0.3470774 0.4698649 0.092819 -0.3637862 0.4698649 0.092819 -0.3795513 0.4698649 0.092819 -0.3944623 0.4698649 0.092819 -0.4085988 0.4698649 0.092819 -0.4220313 0.4698649 0.092819 -0.4348222 0.4698649 0.092819 -0.4470264 0.4698649 0.092819 -0.4586928 0.4698649 0.092819 -0.4698649 0.4698649 0.092819 -0.4805811 0.4698649 0.092819 -0.490876 0.4698649 0.092819 -0.5007803 0.4698649 0.092819 -0.510322 0.4698649 0.092819 -0.5195258 0.4698649 0.092819 -0.5284142 0.4698649 0.092819 -0.5370079 0.4698649 0.092819 -0.5453253 0.4698649 0.092819 -0.5533834 0.4698649 0.092819 -0.5611974 0.4698649 0.092819 -0.5687816 0.4698649 0.092819 -0.092819 0.4805811 0.092819 -0.1056428 0.4805811 0.092819 -0.1201537 0.4805811 0.092819 -0.1409607 0.4805811 0.092819 -0.1678172 0.4805811 0.092819 -0.1950164 0.4805811 0.092819 -0.2210581 0.4805811 0.092819 -0.245636 0.4805811 0.092819 -0.2686816 0.4805811 0.092819 -0.2902431 0.4805811 0.092819 -0.3104189 0.4805811 0.092819 -0.3293248 0.4805811 0.092819 -0.3470774 0.4805811 0.092819 -0.3637862 0.4805811 0.092819 -0.3795513 0.4805811 0.092819 -0.3944623 0.4805811 0.092819 -0.4085988 0.4805811 0.092819 -0.4220313 0.4805811 0.092819 -0.4348222 0.4805811 0.092819 -0.4470264 0.4805811 0.092819 -0.4586928 0.4805811 0.092819 -0.4698649 0.4805811 0.092819 -0.4805811 0.4805811 0.092819 -0.490876 0.4805811 0.092819 -0.5007803 0.4805811 0.092819 -0.510322 0.4805811 0.092819 -0.5195258 0.4805811 0.092819 -0.5284142 0.4805811 0.092819 -0.5370079 0.4805811 0.092819 -0.5453253 0.4805811 0.092819 -0.5533834 0.4805811 0.092819 -0.5611974 0.4805811 0.092819 -0.5687816 0.4805811 0.092819 -0.092819 0.490876 0.092819 -0.1056428 0.490876 0.092819 -0.1201537 0.490876 0.092819 -0.1409607 0.490876 0.092819 -0.1678172 0.490876 0.092819 -0.1950164 0.490876 0.092819 -0.2210581 0.490876 0.092819 -0.245636 0.490876 0.092819 -0.2686816 0.490876 0.092819 -0.2902431 0.490876 0.092819 -0.3104189 0.490876 0.092819 -0.3293248 0.490876 0.092819 -0.3470774 0.490876 0.092819 -0.3637862 0.490876 0.092819 -0.3795513 0.490876 0.092819 -0.3944623 0.490876 0.092819 -0.4085988 0.490876 0.092819 -0.4220313 0.490876 0.092819 -0.4348222 0.490876 0.092819 -0.4470264 0.490876 0.092819 -0.4586928 0.490876 0.092819 -0.4698649 0.490876 0.092819 -0.4805811 0.490876 0.092819 -0.490876 0.490876 0.092819 -0.5007803 0.490876 0.092819 -0.510322 0.490876 0.092819 -0.5195258 0.490876 0.092819 -0.5284142 0.490876 0.092819 -0.5370079 0.490876 0.092819 -0.5453253 0.490876 0.092819 -0.5533834 0.490876 0.092819 -0.5611974 0.490876 0.092819 -0.5687816 0.490876 0.092819 -0.092819 0.5007803 0.092819 -0.1056428 0.5007803 0.092819 -0.1201537 0.5007803 0.092819 -0.1409607 0.5007803 0.092819 -0.1678172 0.5007803 0.092819 -0.1950164 0.5007803 0.092819 -0.2210581 0.5007803 0.092819 -0.245636 0.5007803 0.092819 -0.2686816 0.5007803 0.092819 -0.2902431 0.5007803 0.092819 -0.3104189 0.5007803 0.092819 -0.3293248 0.5007803 0.092819 -0.3470774 0.5007803 0.092819 -0.3637862 0.5007803 0.092819 -0.3795513 0.5007803 0.092819 -0.3944623 0.5007803 0.092819 -0.4085988 0.5007803 0.092819 -0.4220313 0.5007803 0.092819 -0.4348222 0.5007803 0.092819 -0.4470264 0.5007803 0.092819 -0.4586928 0.5007803 0.092819 -0.4698649 0.5007803 0.092819 -0.4805811 0.5007803 0.092819 -0.490876 0.5007803 0.092819 -0.5007803 0.5007803 0.092819 -0.510322 0.5007803 0.092819 -0.5195258 0.5007803 0.092819 -0.5284142 0.5007803 0.092819 -0.5370079 0.5007803 0.092819 -0.5453253 0.5007803 0.092819 -0.5533834 0.5007803 0.092819 -0.5611974 0.5007803 0.092819 -0.5687816 0.5007803 0.092819 -0.092819 0.510322 0.092819 -0.1056428 0.510322 0.092819 -0.1201537 0.510322 0.092819 -0.1409607 0.510322 0.092819 -0.1678172 0.510322 0.092819 -0.1950164 0.510322 0.092819 -0.2210581 0.510322 0.092819 -0.245636 0.510322 0.092819 -0.2686816 0.510322 0.092819 -0.2902431 0.510322 0.092819 -0.3104189 0.510322 0.092819 -0.3293248 0.510322 0.092819 -0.3470774 0.510322 0.092819 -0.3637862 0.510322 0.092819 -0.3795513 0.510322 0.092819 -0.3944623 0.510322 0.092819 -0.4085988 0.510322 0.092819 -0.4220313 0.510322 0.092819 -0.4348222 0.510322 0.092819 -0.4470264 0.510322 0.092819 -0.4586928 0.510322 0.092819 -0.4698649 0.510322 0.092819 -0.4805811 0.510322 0.092819 -0.490876 0.510322 0.092819 -0.5007803 0.510322 0.092819 -0.510322 0.510322 0.092819 -0.5195258 0.510322 0.092819 -0.5284142 0.510322 0.092819 -0.5370079 0.510322 0.092819 -0.5453253 0.510322 0.092819 -0.5533834 0.510322 0.092819 -0.5611974 0.510322 0.092819 -0.5687816 0.510322 0.092819 -0.092819 0.5195258 0.092819 -0.1056428 0.5195258 0.092819 -0.1201537 0.5195258 0.092819 -0.1409607 0.5195258 0.092819 -0.1678172 0.5195258 0.092819 -0.1950164 0.5195258 0.092819 -0.2210581 0.5195258 0.092819 -0.245636 0.5195258 0.092819 -0.2686816 0.5195258 0.092819 -0.2902431 0.5195258 0.092819 -0.3104189 0.5195258 0.092819 -0.3293248 0.5195258 0.092819 -0.3470774 0.5195258 0.092819 -0.3637862 0.5195258 0.092819 -0.3795513 0.5195258 0.092819 -0.3944623 0.5195258 0.092819 -0.4085988 0.5195258 0.092819 -0.4220313 0.5195258 0.092819 -0.4348222 0.5195258 0.092819 -0.4470264 0.5195258 0.092819 -0.4586928 0.5195258 0.092819 -0.4698649 0.5195258 0.092819 -0.4805811 0.5195258 0.092819 -0.490876 0.5195258 0.092819 -0.5007803 0.5195258 0.092819 -0.510322 0.5195258 0.092819 -0.5195258 0.5195258 0.092819 -0.5284142 0.5195258 0.092819 -0.5370079 0.5195258 0.092819 -0.5453253 0.5195258 0.092819 -0.5533834 0.5195258 0.092819 -0.5611974 0.5195258 0.092819 -0.5687816 0.5195258 0.092819 -0.092819 0.5284142 0.092819 -0.1056428 0.5284142 0.092819 -0.1201537 0.5284142 0.092819 -0.1409607 0.5284142 0.092819 -0.1678172 0.5284142 0.092819 -0.1950164 0.5284142 0.092819 -0.2210581 0.5284142 0.092819 -0.245636 0.5284142 0.092819 -0.2686816 0.5284142 0.092819 -0.2902431 0.5284142 0.092819 -0.3104189 0.5284142 0.092819 -0.3293248 0.5284142 0.092819 -0.3470774 0.5284142 0.092819 -0.3637862 0.5284142 0.092819 -0.3795513 0.5284142 0.092819 -0.3944623 0.5284142 0.092819 -0.4085988 0.5284142 0.092819 -0.4220313 0.5284142 0.092819 -0.4348222 0.5284142 0.092819 -0.4470264 0.5284142 0.092819 -0.4586928 0.5284142 0.092819 -0.4698649 0.5284142 0.092819 -0.4805811 0.5284142 0.092819 -0.490876 0.5284142 0.092819 -0.5007803 0.5284142 0.092819 -0.510322 0.5284142 0.092819 -0.5195258 0.5284142 0.092819 -0.5284142 0.5284142 0.092819 -0.5370079 0.5284142 0.092819 -0.5453253 0.5284142 0.092819 -0.5533834 0.5284142 0.092819 -0.5611974 0.5284142 0.092819 -0.5687816 0.5284142 0.092819 -0.092819 0.5370079 0.092819 -0.1056428 0.5370079 0.092819 -0.1201537 0.5370079 0.092819 -0.1409607 0.5370079 0.092819 -0.1678172 0.5370079 0.092819 -0.1950164 0.5370079 0.092819 -0.2210581 0.5370079 0.092819 -0.245636 0.5370079 0.092819 -0.2686816 0.5370079 0.092819 -0.2902431 0.5370079 0.092819 -0.3104189 0.5370079 0.092819 -0.3293248 0.5370079 0.092819 -0.3470774 0.5370079 0.092819 -0.3637862 0.5370079 0.092819 -0.3795513 0.5370079 0.092819 -0.3944623 0.5370079 0.092819 -0.4085988 0.5370079 0.092819 -0.4220313 0.5370079 0.092819 -0.4348222 0.5370079 0.092819 -0.4470264 0.5370079 0.092819 -0.4586928 0.5370079 0.092819 -0.4698649 0.5370079 0.092819 -0.4805811 0.5370079 0.092819 -0.490876 0.5370079 0.092819 -0.5007803 0.5370079 0.092819 -0.510322 0.5370079 0.092819 -0.5195258 0.5370079 0.092819 -0.5284142 0.5370079 0.092819 -0.5370079 0.5370079 0.092819 -0.5453253 0.5370079 0.092819 -0.5533834 0.5370079 0.092819 -0.5611974 0.5370079 0.092819 -0.5687816 0.5370079 0.092819 -0.092819 0.5453253 0.092819 -0.1056428 0.5453253 0.092819 -0.1201537 0.5453253 0.092819 -0.1409607 0.5453253 0.092819 -0.1678172 0.5453253 0.092819 -0.1950164 0.5453253 0.092819 -0.2210581 0.5453253 0.092819 -0.245636 0.5453253 0.092819 -0.2686816 0.5453253 0.092819 -0.2902431 0.5453253 0.092819 -0.3104189 0.5453253 0.092819 -0.3293248 0.5453253 0.092819 -0.3470774 0.5453253 0.092819 -0.3637862 0.5453253 0.092819 -0.3795513 0.5453253 0.092819 -0.3944623 0.5453253 0.092819 -0.4085988 0.5453253 0.092819 -0.4220313 0.5453253 0.092819 -0.4348222 0.5453253 0.092819 -0.4470264 0.5453253 0.092819 -0.4586928 0.5453253 0.092819 -0.4698649 0.5453253 0.092819 -0.4805811 0.5453253 0.092819 -0.490876 0.5453253 0.092819 -0.5007803 0.5453253 0.092819 -0.510322 0.5453253 0.092819 -0.5195258 0.5453253 0.092819 -0.5284142 0.5453253 0.092819 -0.5370079 0.5453253 0.092819 -0.5453253 0.5453253 0.092819 -0.5533834 0.5453253 0.092819 -0.5611974 0.5453253 0.092819 -0.5687816 0.5453253 0.092819 -0.092819 0.5533834 0.092819 -0.1056428 0.5533834 0.092819 -0.1201537 0.5533834 0.092819 -0.1409607 0.5533834 0.092819 -0.1678172 0.5533834 0.092819 -0.1950164 0.5533834 0.092819 -0.2210581 0.5533834 0.092819 -0.245636 0.5533834 0.092819 -0.2686816 0.5533834 0.092819 -0.2902431 0.5533834 0.092819 -0.3104189 0.5533834 0.092819 -0.3293248 0.5533834 0.092819 -0.3470774 0.5533834 0.092819 -0.3637862 0.5533834 0.092819 -0.3795513 0.5533834 0.092819 -0.3944623 0.5533834 0.092819 -0.4085988 0.5533834 0.092819 -0.4220313 0.5533834 0.092819 -0.4348222 0.5533834 0.092819 -0.4470264 0.5533834 0.092819 -0.4586928 0.5533834 0.092819 -0.4698649 0.5533834 0.092819 -0.4805811 0.5533834 0.092819 -0.490876 0.5533834 0.092819 -0.5007803 0.5533834 0.092819 -0.510322 0.5533834 0.092819 -0.5195258 0.5533834 0.092819 -0.5284142 0.5533834 0.092819 -0.5370079 0.5533834 0.092819 -0.5453253 0.5533834 0.092819 -0.5533834 0.5533834 0.092819 -0.5611974 0.5533834 0.092819 -0.5687816 0.5533834 0.092819 -0.092819 0.5611974 0.092819 -0.1056428 0.5611974 0.092819 -0.1201537 0.5611974 0.092819 -0.1409607 0.5611974 0.092819 -0.1678172 0.5611974 0.092819 -0.1950164 0.5611974 0.092819 -0.2210581 0.5611974 0.092819 -0.245636 0.5611974 0.092819 -0.2686816 0.5611974 0.092819 -0.2902431 0.5611974 0.092819 -0.3104189 0.5611974 0.092819 -0.3293248 0.5611974 0.092819 -0.3470774 0.5611974 0.092819 -0.3637862 0.5611974 0.092819 -0.3795513 0.5611974 0.092819 -0.3944623 0.5611974 0.092819 -0.4085988 0.5611974 0.092819 -0.4220313 0.5611974 0.092819 -0.4348222 0.5611974 0.092819 -0.4470264 0.5611974 0.092819 -0.4586928 0.5611974 0.092819 -0.4698649 0.5611974 0.092819 -0.4805811 0.5611974 0.092819 -0.490876 0.5611974 0.092819 -0.5007803 0.5611974 0.092819 -0.510322 0.5611974 0.092819 -0.5195258 0.5611974 0.092819 -0.5284142 0.5611974 0.092819 -0.5370079 0.5611974 0.092819 -0.5453253 0.5611974 0.092819 -0.5533834 0.5611974 0.092819 -0.5611974 0.5611974 0.092819 -0.5687816 0.5611974 0.092819 -0.092819 0.5687816 0.092819 -0.1056428 0.5687816 0.092819 -0.1201537 0.5687816 0.092819 -0.1409607 0.5687816 0.092819 -0.1678172 0.5687816 0.092819 -0.1950164 0.5687816 0.092819 -0.2210581 0.5687816 0.092819 -0.245636 0.5687816 0.092819 -0.2686816 0.5687816 0.092819 -0.2902431 0.5687816 0.092819 -0.3104189 0.5687816 0.092819 -0.3293248 0.5687816 0.092819 -0.3470774 0.5687816 0.092819 -0.3637862 0.5687816 0.092819 -0.3795513 0.5687816 0.092819 -0.3944623 0.5687816 0.092819 -0.4085988 0.5687816 0.092819 -0.4220313 0.5687816 0.092819 -0.4348222 0.5687816 0.092819 -0.4470264 0.5687816 0.092819 -0.4586928 0.5687816 0.092819 -0.4698649 0.5687816 0.092819 -0.4805811 0.5687816 0.092819 -0.490876 0.5687816 0.092819 -0.5007803 0.5687816 0.092819 -0.510322 0.5687816 0.092819 -0.5195258 0.5687816 0.092819 -0.5284142 0.5687816 0.092819 -0.5370079 0.5687816 0.092819 -0.5453253 0.5687816 0.092819 -0.5533834 0.5687816 0.092819 -0.5611974 0.5687816 0.092819 -0.5687816 0.5687816 0.092819 -0.092819 0.092819 0.1056428 -0.1056428 0.092819 0.1056428 -0.1201537 0.092819 0.1056428 -0.1409607 0.092819 0.1056428 -0.1678172 0.092819 0.1056428 -0.1950164 0.092819 0.1056428 -0.2210581 0.092819 0.1056428 -0.245636 0.092819 0.1056428 -0.2686816 0.092819 0.1056428 -0.2902431 0.092819 0.1056428 -0.3104189 0.092819 0.1056428 -0.3293248 0.092819 0.1056428 -0.3470774 0.092819 0.1056428 -0.3637862 0.092819 0.1056428 -0.3795513 0.092819 0.1056428 -0.3944623 0.092819 0.1056428 -0.4085988 0.092819 0.1056428 -0.4220313 0.092819 0.1056428 -0.4348222 0.092819 0.1056428 -0.4470264 0.092819 0.1056428 -0.4586928 0.092819 0.1056428 -0.4698649 0.092819 0.1056428 -0.4805811 0.092819 0.1056428 -0.490876 0.092819 0.1056428 -0.5007803 0.092819 0.1056428 -0.510322 0.092819 0.1056428 -0.5195258 0.092819 0.1056428 -0.5284142 0.092819 0.1056428 -0.5370079 0.092819 0.1056428 -0.5453253 0.092819 0.1056428 -0.5533834 0.092819 0.1056428 -0.5611974 0.092819 0.1056428 -0.5687816 0.092819 0.1056428 -0.092819 0.1056428 0.1056428 -0.1056428 0.1056428 0.1056428 -0.1201537 0.1056428 0.1056428 -0.1409607 0.1056428 0.1056428 -0.1678172 0.1056428 0.1056428 -0.1950164 0.1056428 0.1056428 -0.2210581 0.1056428 0.1056428 -0.245636 0.1056428 0.1056428 -0.2686816 0.1056428 0.1056428 -0.2902431 0.1056428 0.1056428 -0.3104189 0.1056428 0.1056428 -0.3293248 0.1056428 0.1056428 -0.3470774 0.1056428 0.1056428 -0.3637862 0.1056428 0.1056428 -0.3795513 0.1056428 0.1056428 -0.3944623 0.1056428 0.1056428 -0.4085988 0.1056428 0.1056428 -0.4220313 0.1056428 0.1056428 -0.4348222 0.1056428 0.1056428 -0.4470264 0.1056428 0.1056428 -0.4586928 0.1056428 0.1056428 -0.4698649 0.1056428 0.1056428 -0.4805811 0.1056428 0.1056428 -0.490876 0.1056428 0.1056428 -0.5007803 0.1056428 0.1056428 -0.510322 0.1056428 0.1056428 -0.5195258 0.1056428 0.1056428 -0.5284142 0.1056428 0.1056428 -0.5370079 0.1056428 0.1056428 -0.5453253 0.1056428 0.1056428 -0.5533834 0.1056428 0.1056428 -0.5611974 0.1056428 0.1056428 -0.5687816 0.1056428 0.1056428 -0.092819 0.1201537 0.1056428 -0.1056428 0.1201537 0.1056428 -0.1201537 0.1201537 0.1056428 -0.1409607 0.1201537 0.1056428 -0.1678172 0.1201537 0.1056428 -0.1950164 0.1201537 0.1056428 -0.2210581 0.1201537 0.1056428 -0.245636 0.1201537 0.1056428 -0.2686816 0.1201537 0.1056428 -0.2902431 0.1201537 0.1056428 -0.3104189 0.1201537 0.1056428 -0.3293248 0.1201537 0.1056428 -0.3470774 0.1201537 0.1056428 -0.3637862 0.1201537 0.1056428 -0.3795513 0.1201537 0.1056428 -0.3944623 0.1201537 0.1056428 -0.4085988 0.1201537 0.1056428 -0.4220313 0.1201537 0.1056428 -0.4348222 0.1201537 0.1056428 -0.4470264 0.1201537 0.1056428 -0.4586928 0.1201537 0.1056428 -0.4698649 0.1201537 0.1056428 -0.4805811 0.1201537 0.1056428 -0.490876 0.1201537 0.1056428 -0.5007803 0.1201537 0.1056428 -0.510322 0.1201537 0.1056428 -0.5195258 0.1201537 0.1056428 -0.5284142 0.1201537 0.1056428 -0.5370079 0.1201537 0.1056428 -0.5453253 0.1201537 0.1056428 -0.5533834 0.1201537 0.1056428 -0.5611974 0.1201537 0.1056428 -0.5687816 0.1201537 0.1056428 -0.092819 0.1409607 0.1056428 -0.1056428 0.1409607 0.1056428 -0.1201537 0.1409607 0.1056428 -0.1409607 0.1409607 0.1056428 -0.1678172 0.1409607 0.1056428 -0.1950164 0.1409607 0.1056428 -0.2210581 0.1409607 0.1056428 -0.245636 0.1409607 0.1056428 -0.2686816 0.1409607 0.1056428 -0.2902431 0.1409607 0.1056428 -0.3104189 0.1409607 0.1056428 -0.3293248 0.1409607 0.1056428 -0.3470774 0.1409607 0.1056428 -0.3637862 0.1409607 0.1056428 -0.3795513 0.1409607 0.1056428 -0.3944623 0.1409607 0.1056428 -0.4085988 0.1409607 0.1056428 -0.4220313 0.1409607 0.1056428 -0.4348222 0.1409607 0.1056428 -0.4470264 0.1409607 0.1056428 -0.4586928 0.1409607 0.1056428 -0.4698649 0.1409607 0.1056428 -0.4805811 0.1409607 0.1056428 -0.490876 0.1409607 0.1056428 -0.5007803 0.1409607 0.1056428 -0.510322 0.1409607 0.1056428 -0.5195258 0.1409607 0.1056428 -0.5284142 0.1409607 0.1056428 -0.5370079 0.1409607 0.1056428 -0.5453253 0.1409607 0.1056428 -0.5533834 0.1409607 0.1056428 -0.5611974 0.1409607 0.1056428 -0.5687816 0.1409607 0.1056428 -0.092819 0.1678172 0.1056428 -0.1056428 0.1678172 0.1056428 -0.1201537 0.1678172 0.1056428 -0.1409607 0.1678172 0.1056428 -0.1678172 0.1678172 0.1056428 -0.1950164 0.1678172 0.1056428 -0.2210581 0.1678172 0.1056428 -0.245636 0.1678172 0.1056428 -0.2686816 0.1678172 0.1056428 -0.2902431 0.1678172 0.1056428 -0.3104189 0.1678172 0.1056428 -0.3293248 0.1678172 0.1056428 -0.3470774 0.1678172 0.1056428 -0.3637862 0.1678172 0.1056428 -0.3795513 0.1678172 0.1056428 -0.3944623 0.1678172 0.1056428 -0.4085988 0.1678172 0.1056428 -0.4220313 0.1678172 0.1056428 -0.4348222 0.1678172 0.1056428 -0.4470264 0.1678172 0.1056428 -0.4586928 0.1678172 0.1056428 -0.4698649 0.1678172 0.1056428 -0.4805811 0.1678172 0.1056428 -0.490876 0.1678172 0.1056428 -0.5007803 0.1678172 0.1056428 -0.510322 0.1678172 0.1056428 -0.5195258 0.1678172 0.1056428 -0.5284142 0.1678172 0.1056428 -0.5370079 0.1678172 0.1056428 -0.5453253 0.1678172 0.1056428 -0.5533834 0.1678172 0.1056428 -0.5611974 0.1678172 0.1056428 -0.5687816 0.1678172 0.1056428 -0.092819 0.1950164 0.1056428 -0.1056428 0.1950164 0.1056428 -0.1201537 0.1950164 0.1056428 -0.1409607 0.1950164 0.1056428 -0.1678172 0.1950164 0.1056428 -0.1950164 0.1950164 0.1056428 -0.2210581 0.1950164 0.1056428 -0.245636 0.1950164 0.1056428 -0.2686816 0.1950164 0.1056428 -0.2902431 0.1950164 0.1056428 -0.3104189 0.1950164 0.1056428 -0.3293248 0.1950164 0.1056428 -0.3470774 0.1950164 0.1056428 -0.3637862 0.1950164 0.1056428 -0.3795513 0.1950164 0.1056428 -0.3944623 0.1950164 0.1056428 -0.4085988 0.1950164 0.1056428 -0.4220313 0.1950164 0.1056428 -0.4348222 0.1950164 0.1056428 -0.4470264 0.1950164 0.1056428 -0.4586928 0.1950164 0.1056428 -0.4698649 0.1950164 0.1056428 -0.4805811 0.1950164 0.1056428 -0.490876 0.1950164 0.1056428 -0.5007803 0.1950164 0.1056428 -0.510322 0.1950164 0.1056428 -0.5195258 0.1950164 0.1056428 -0.5284142 0.1950164 0.1056428 -0.5370079 0.1950164 0.1056428 -0.5453253 0.1950164 0.1056428 -0.5533834 0.1950164 0.1056428 -0.5611974 0.1950164 0.1056428 -0.5687816 0.1950164 0.1056428 -0.092819 0.2210581 0.1056428 -0.1056428 0.2210581 0.1056428 -0.1201537 0.2210581 0.1056428 -0.1409607 0.2210581 0.1056428 -0.1678172 0.2210581 0.1056428 -0.1950164 0.2210581 0.1056428 -0.2210581 0.2210581 0.1056428 -0.245636 0.2210581 0.1056428 -0.2686816 0.2210581 0.1056428 -0.2902431 0.2210581 0.1056428 -0.3104189 0.2210581 0.1056428 -0.3293248 0.2210581 0.1056428 -0.3470774 0.2210581 0.1056428 -0.3637862 0.2210581 0.1056428 -0.3795513 0.2210581 0.1056428 -0.3944623 0.2210581 0.1056428 -0.4085988 0.2210581 0.1056428 -0.4220313 0.2210581 0.1056428 -0.4348222 0.2210581 0.1056428 -0.4470264 0.2210581 0.1056428 -0.4586928 0.2210581 0.1056428 -0.4698649 0.2210581 0.1056428 -0.4805811 0.2210581 0.1056428 -0.490876 0.2210581 0.1056428 -0.5007803 0.2210581 0.1056428 -0.510322 0.2210581 0.1056428 -0.5195258 0.2210581 0.1056428 -0.5284142 0.2210581 0.1056428 -0.5370079 0.2210581 0.1056428 -0.5453253 0.2210581 0.1056428 -0.5533834 0.2210581 0.1056428 -0.5611974 0.2210581 0.1056428 -0.5687816 0.2210581 0.1056428 -0.092819 0.245636 0.1056428 -0.1056428 0.245636 0.1056428 -0.1201537 0.245636 0.1056428 -0.1409607 0.245636 0.1056428 -0.1678172 0.245636 0.1056428 -0.1950164 0.245636 0.1056428 -0.2210581 0.245636 0.1056428 -0.245636 0.245636 0.1056428 -0.2686816 0.245636 0.1056428 -0.2902431 0.245636 0.1056428 -0.3104189 0.245636 0.1056428 -0.3293248 0.245636 0.1056428 -0.3470774 0.245636 0.1056428 -0.3637862 0.245636 0.1056428 -0.3795513 0.245636 0.1056428 -0.3944623 0.245636 0.1056428 -0.4085988 0.245636 0.1056428 -0.4220313 0.245636 0.1056428 -0.4348222 0.245636 0.1056428 -0.4470264 0.245636 0.1056428 -0.4586928 0.245636 0.1056428 -0.4698649 0.245636 0.1056428 -0.4805811 0.245636 0.1056428 -0.490876 0.245636 0.1056428 -0.5007803 0.245636 0.1056428 -0.510322 0.245636 0.1056428 -0.5195258 0.245636 0.1056428 -0.5284142 0.245636 0.1056428 -0.5370079 0.245636 0.1056428 -0.5453253 0.245636 0.1056428 -0.5533834 0.245636 0.1056428 -0.5611974 0.245636 0.1056428 -0.5687816 0.245636 0.1056428 -0.092819 0.2686816 0.1056428 -0.1056428 0.2686816 0.1056428 -0.1201537 0.2686816 0.1056428 -0.1409607 0.2686816 0.1056428 -0.1678172 0.2686816 0.1056428 -0.1950164 0.2686816 0.1056428 -0.2210581 0.2686816 0.1056428 -0.245636 0.2686816 0.1056428 -0.2686816 0.2686816 0.1056428 -0.2902431 0.2686816 0.1056428 -0.3104189 0.2686816 0.1056428 -0.3293248 0.2686816 0.1056428 -0.3470774 0.2686816 0.1056428 -0.3637862 0.2686816 0.1056428 -0.3795513 0.2686816 0.1056428 -0.3944623 0.2686816 0.1056428 -0.4085988 0.2686816 0.1056428 -0.4220313 0.2686816 0.1056428 -0.4348222 0.2686816 0.1056428 -0.4470264 0.2686816 0.1056428 -0.4586928 0.2686816 0.1056428 -0.4698649 0.2686816 0.1056428 -0.4805811 0.2686816 0.1056428 -0.490876 0.2686816 0.1056428 -0.5007803 0.2686816 0.1056428 -0.510322 0.2686816 0.1056428 -0.5195258 0.2686816 0.1056428 -0.5284142 0.2686816 0.1056428 -0.5370079 0.2686816 0.1056428 -0.5453253 0.2686816 0.1056428 -0.5533834 0.2686816 0.1056428 -0.5611974 0.2686816 0.1056428 -0.5687816 0.2686816 0.1056428 -0.092819 0.2902431 0.1056428 -0.1056428 0.2902431 0.1056428 -0.1201537 0.2902431 0.1056428 -0.1409607 0.2902431 0.1056428 -0.1678172 0.2902431 0.1056428 -0.1950164 0.2902431 0.1056428 -0.2210581 0.2902431 0.1056428 -0.245636 0.2902431 0.1056428 -0.2686816 0.2902431 0.1056428 -0.2902431 0.2902431 0.1056428 -0.3104189 0.2902431 0.1056428 -0.3293248 0.2902431 0.1056428 -0.3470774 0.2902431 0.1056428 -0.3637862 0.2902431 0.1056428 -0.3795513 0.2902431 0.1056428 -0.3944623 0.2902431 0.1056428 -0.4085988 0.2902431 0.1056428 -0.4220313 0.2902431 0.1056428 -0.4348222 0.2902431 0.1056428 -0.4470264 0.2902431 0.1056428 -0.4586928 0.2902431 0.1056428 -0.4698649 0.2902431 0.1056428 -0.4805811 0.2902431 0.1056428 -0.490876 0.2902431 0.1056428 -0.5007803 0.2902431 0.1056428 -0.510322 0.2902431 0.1056428 -0.5195258 0.2902431 0.1056428 -0.5284142 0.2902431 0.1056428 -0.5370079 0.2902431 0.1056428 -0.5453253 0.2902431 0.1056428 -0.5533834 0.2902431 0.1056428 -0.5611974 0.2902431 0.1056428 -0.5687816 0.2902431 0.1056428 -0.092819 0.3104189 0.1056428 -0.1056428 0.3104189 0.1056428 -0.1201537 0.3104189 0.1056428 -0.1409607 0.3104189 0.1056428 -0.1678172 0.3104189 0.1056428 -0.1950164 0.3104189 0.1056428 -0.2210581 0.3104189 0.1056428 -0.245636 0.3104189 0.1056428 -0.2686816 0.3104189 0.1056428 -0.2902431 0.3104189 0.1056428 -0.3104189 0.3104189 0.1056428 -0.3293248 0.3104189 0.1056428 -0.3470774 0.3104189 0.1056428 -0.3637862 0.3104189 0.1056428 -0.3795513 0.3104189 0.1056428 -0.3944623 0.3104189 0.1056428 -0.4085988 0.3104189 0.1056428 -0.4220313 0.3104189 0.1056428 -0.4348222 0.3104189 0.1056428 -0.4470264 0.3104189 0.1056428 -0.4586928 0.3104189 0.1056428 -0.4698649 0.3104189 0.1056428 -0.4805811 0.3104189 0.1056428 -0.490876 0.3104189 0.1056428 -0.5007803 0.3104189 0.1056428 -0.510322 0.3104189 0.1056428 -0.5195258 0.3104189 0.1056428 -0.5284142 0.3104189 0.1056428 -0.5370079 0.3104189 0.1056428 -0.5453253 0.3104189 0.1056428 -0.5533834 0.3104189 0.1056428 -0.5611974 0.3104189 0.1056428 -0.5687816 0.3104189 0.1056428 -0.092819 0.3293248 0.1056428 -0.1056428 0.3293248 0.1056428 -0.1201537 0.3293248 0.1056428 -0.1409607 0.3293248 0.1056428 -0.1678172 0.3293248 0.1056428 -0.1950164 0.3293248 0.1056428 -0.2210581 0.3293248 0.1056428 -0.245636 0.3293248 0.1056428 -0.2686816 0.3293248 0.1056428 -0.2902431 0.3293248 0.1056428 -0.3104189 0.3293248 0.1056428 -0.3293248 0.3293248 0.1056428 -0.3470774 0.3293248 0.1056428 -0.3637862 0.3293248 0.1056428 -0.3795513 0.3293248 0.1056428 -0.3944623 0.3293248 0.1056428 -0.4085988 0.3293248 0.1056428 -0.4220313 0.3293248 0.1056428 -0.4348222 0.3293248 0.1056428 -0.4470264 0.3293248 0.1056428 -0.4586928 0.3293248 0.1056428 -0.4698649 0.3293248 0.1056428 -0.4805811 0.3293248 0.1056428 -0.490876 0.3293248 0.1056428 -0.5007803 0.3293248 0.1056428 -0.510322 0.3293248 0.1056428 -0.5195258 0.3293248 0.1056428 -0.5284142 0.3293248 0.1056428 -0.5370079 0.3293248 0.1056428 -0.5453253 0.3293248 0.1056428 -0.5533834 0.3293248 0.1056428 -0.5611974 0.3293248 0.1056428 -0.5687816 0.3293248 0.1056428 -0.092819 0.3470774 0.1056428 -0.1056428 0.3470774 0.1056428 -0.1201537 0.3470774 0.1056428 -0.1409607 0.3470774 0.1056428 -0.1678172 0.3470774 0.1056428 -0.1950164 0.3470774 0.1056428 -0.2210581 0.3470774 0.1056428 -0.245636 0.3470774 0.1056428 -0.2686816 0.3470774 0.1056428 -0.2902431 0.3470774 0.1056428 -0.3104189 0.3470774 0.1056428 -0.3293248 0.3470774 0.1056428 -0.3470774 0.3470774 0.1056428 -0.3637862 0.3470774 0.1056428 -0.3795513 0.3470774 0.1056428 -0.3944623 0.3470774 0.1056428 -0.4085988 0.3470774 0.1056428 -0.4220313 0.3470774 0.1056428 -0.4348222 0.3470774 0.1056428 -0.4470264 0.3470774 0.1056428 -0.4586928 0.3470774 0.1056428 -0.4698649 0.3470774 0.1056428 -0.4805811 0.3470774 0.1056428 -0.490876 0.3470774 0.1056428 -0.5007803 0.3470774 0.1056428 -0.510322 0.3470774 0.1056428 -0.5195258 0.3470774 0.1056428 -0.5284142 0.3470774 0.1056428 -0.5370079 0.3470774 0.1056428 -0.5453253 0.3470774 0.1056428 -0.5533834 0.3470774 0.1056428 -0.5611974 0.3470774 0.1056428 -0.5687816 0.3470774 0.1056428 -0.092819 0.3637862 0.1056428 -0.1056428 0.3637862 0.1056428 -0.1201537 0.3637862 0.1056428 -0.1409607 0.3637862 0.1056428 -0.1678172 0.3637862 0.1056428 -0.1950164 0.3637862 0.1056428 -0.2210581 0.3637862 0.1056428 -0.245636 0.3637862 0.1056428 -0.2686816 0.3637862 0.1056428 -0.2902431 0.3637862 0.1056428 -0.3104189 0.3637862 0.1056428 -0.3293248 0.3637862 0.1056428 -0.3470774 0.3637862 0.1056428 -0.3637862 0.3637862 0.1056428 -0.3795513 0.3637862 0.1056428 -0.3944623 0.3637862 0.1056428 -0.4085988 0.3637862 0.1056428 -0.4220313 0.3637862 0.1056428 -0.4348222 0.3637862 0.1056428 -0.4470264 0.3637862 0.1056428 -0.4586928 0.3637862 0.1056428 -0.4698649 0.3637862 0.1056428 -0.4805811 0.3637862 0.1056428 -0.490876 0.3637862 0.1056428 -0.5007803 0.3637862 0.1056428 -0.510322 0.3637862 0.1056428 -0.5195258 0.3637862 0.1056428 -0.5284142 0.3637862 0.1056428 -0.5370079 0.3637862 0.1056428 -0.5453253 0.3637862 0.1056428 -0.5533834 0.3637862 0.1056428 -0.5611974 0.3637862 0.1056428 -0.5687816 0.3637862 0.1056428 -0.092819 0.3795513 0.1056428 -0.1056428 0.3795513 0.1056428 -0.1201537 0.3795513 0.1056428 -0.1409607 0.3795513 0.1056428 -0.1678172 0.3795513 0.1056428 -0.1950164 0.3795513 0.1056428 -0.2210581 0.3795513 0.1056428 -0.245636 0.3795513 0.1056428 -0.2686816 0.3795513 0.1056428 -0.2902431 0.3795513 0.1056428 -0.3104189 0.3795513 0.1056428 -0.3293248 0.3795513 0.1056428 -0.3470774 0.3795513 0.1056428 -0.3637862 0.3795513 0.1056428 -0.3795513 0.3795513 0.1056428 -0.3944623 0.3795513 0.1056428 -0.4085988 0.3795513 0.1056428 -0.4220313 0.3795513 0.1056428 -0.4348222 0.3795513 0.1056428 -0.4470264 0.3795513 0.1056428 -0.4586928 0.3795513 0.1056428 -0.4698649 0.3795513 0.1056428 -0.4805811 0.3795513 0.1056428 -0.490876 0.3795513 0.1056428 -0.5007803 0.3795513 0.1056428 -0.510322 0.3795513 0.1056428 -0.5195258 0.3795513 0.1056428 -0.5284142 0.3795513 0.1056428 -0.5370079 0.3795513 0.1056428 -0.5453253 0.3795513 0.1056428 -0.5533834 0.3795513 0.1056428 -0.5611974 0.3795513 0.1056428 -0.5687816 0.3795513 0.1056428 -0.092819 0.3944623 0.1056428 -0.1056428 0.3944623 0.1056428 -0.1201537 0.3944623 0.1056428 -0.1409607 0.3944623 0.1056428 -0.1678172 0.3944623 0.1056428 -0.1950164 0.3944623 0.1056428 -0.2210581 0.3944623 0.1056428 -0.245636 0.3944623 0.1056428 -0.2686816 0.3944623 0.1056428 -0.2902431 0.3944623 0.1056428 -0.3104189 0.3944623 0.1056428 -0.3293248 0.3944623 0.1056428 -0.3470774 0.3944623 0.1056428 -0.3637862 0.3944623 0.1056428 -0.3795513 0.3944623 0.1056428 -0.3944623 0.3944623 0.1056428 -0.4085988 0.3944623 0.1056428 -0.4220313 0.3944623 0.1056428 -0.4348222 0.3944623 0.1056428 -0.4470264 0.3944623 0.1056428 -0.4586928 0.3944623 0.1056428 -0.4698649 0.3944623 0.1056428 -0.4805811 0.3944623 0.1056428 -0.490876 0.3944623 0.1056428 -0.5007803 0.3944623 0.1056428 -0.510322 0.3944623 0.1056428 -0.5195258 0.3944623 0.1056428 -0.5284142 0.3944623 0.1056428 -0.5370079 0.3944623 0.1056428 -0.5453253 0.3944623 0.1056428 -0.5533834 0.3944623 0.1056428 -0.5611974 0.3944623 0.1056428 -0.5687816 0.3944623 0.1056428 -0.092819 0.4085988 0.1056428 -0.1056428 0.4085988 0.1056428 -0.1201537 0.4085988 0.1056428 -0.1409607 0.4085988 0.1056428 -0.1678172 0.4085988 0.1056428 -0.1950164 0.4085988 0.1056428 -0.2210581 0.4085988 0.1056428 -0.245636 0.4085988 0.1056428 -0.2686816 0.4085988 0.1056428 -0.2902431 0.4085988 0.1056428 -0.3104189 0.4085988 0.1056428 -0.3293248 0.4085988 0.1056428 -0.3470774 0.4085988 0.1056428 -0.3637862 0.4085988 0.1056428 -0.3795513 0.4085988 0.1056428 -0.3944623 0.4085988 0.1056428 -0.4085988 0.4085988 0.1056428 -0.4220313 0.4085988 0.1056428 -0.4348222 0.4085988 0.1056428 -0.4470264 0.4085988 0.1056428 -0.4586928 0.4085988 0.1056428 -0.4698649 0.4085988 0.1056428 -0.4805811 0.4085988 0.1056428 -0.490876 0.4085988 0.1056428 -0.5007803 0.4085988 0.1056428 -0.510322 0.4085988 0.1056428 -0.5195258 0.4085988 0.1056428 -0.5284142 0.4085988 0.1056428 -0.5370079 0.4085988 0.1056428 -0.5453253 0.4085988 0.1056428 -0.5533834 0.4085988 0.1056428 -0.5611974 0.4085988 0.1056428 -0.5687816 0.4085988 0.1056428 -0.092819 0.4220313 0.1056428 -0.1056428 0.4220313 0.1056428 -0.1201537 0.4220313 0.1056428 -0.1409607 0.4220313 0.1056428 -0.1678172 0.4220313 0.1056428 -0.1950164 0.4220313 0.1056428 -0.2210581 0.4220313 0.1056428 -0.245636 0.4220313 0.1056428 -0.2686816 0.4220313 0.1056428 -0.2902431 0.4220313 0.1056428 -0.3104189 0.4220313 0.1056428 -0.3293248 0.4220313 0.1056428 -0.3470774 0.4220313 0.1056428 -0.3637862 0.4220313 0.1056428 -0.3795513 0.4220313 0.1056428 -0.3944623 0.4220313 0.1056428 -0.4085988 0.4220313 0.1056428 -0.4220313 0.4220313 0.1056428 -0.4348222 0.4220313 0.1056428 -0.4470264 0.4220313 0.1056428 -0.4586928 0.4220313 0.1056428 -0.4698649 0.4220313 0.1056428 -0.4805811 0.4220313 0.1056428 -0.490876 0.4220313 0.1056428 -0.5007803 0.4220313 0.1056428 -0.510322 0.4220313 0.1056428 -0.5195258 0.4220313 0.1056428 -0.5284142 0.4220313 0.1056428 -0.5370079 0.4220313 0.1056428 -0.5453253 0.4220313 0.1056428 -0.5533834 0.4220313 0.1056428 -0.5611974 0.4220313 0.1056428 -0.5687816 0.4220313 0.1056428 -0.092819 0.4348222 0.1056428 -0.1056428 0.4348222 0.1056428 -0.1201537 0.4348222 0.1056428 -0.1409607 0.4348222 0.1056428 -0.1678172 0.4348222 0.1056428 -0.1950164 0.4348222 0.1056428 -0.2210581 0.4348222 0.1056428 -0.245636 0.4348222 0.1056428 -0.2686816 0.4348222 0.1056428 -0.2902431 0.4348222 0.1056428 -0.3104189 0.4348222 0.1056428 -0.3293248 0.4348222 0.1056428 -0.3470774 0.4348222 0.1056428 -0.3637862 0.4348222 0.1056428 -0.3795513 0.4348222 0.1056428 -0.3944623 0.4348222 0.1056428 -0.4085988 0.4348222 0.1056428 -0.4220313 0.4348222 0.1056428 -0.4348222 0.4348222 0.1056428 -0.4470264 0.4348222 0.1056428 -0.4586928 0.4348222 0.1056428 -0.4698649 0.4348222 0.1056428 -0.4805811 0.4348222 0.1056428 -0.490876 0.4348222 0.1056428 -0.5007803 0.4348222 0.1056428 -0.510322 0.4348222 0.1056428 -0.5195258 0.4348222 0.1056428 -0.5284142 0.4348222 0.1056428 -0.5370079 0.4348222 0.1056428 -0.5453253 0.4348222 0.1056428 -0.5533834 0.4348222 0.1056428 -0.5611974 0.4348222 0.1056428 -0.5687816 0.4348222 0.1056428 -0.092819 0.4470264 0.1056428 -0.1056428 0.4470264 0.1056428 -0.1201537 0.4470264 0.1056428 -0.1409607 0.4470264 0.1056428 -0.1678172 0.4470264 0.1056428 -0.1950164 0.4470264 0.1056428 -0.2210581 0.4470264 0.1056428 -0.245636 0.4470264 0.1056428 -0.2686816 0.4470264 0.1056428 -0.2902431 0.4470264 0.1056428 -0.3104189 0.4470264 0.1056428 -0.3293248 0.4470264 0.1056428 -0.3470774 0.4470264 0.1056428 -0.3637862 0.4470264 0.1056428 -0.3795513 0.4470264 0.1056428 -0.3944623 0.4470264 0.1056428 -0.4085988 0.4470264 0.1056428 -0.4220313 0.4470264 0.1056428 -0.4348222 0.4470264 0.1056428 -0.4470264 0.4470264 0.1056428 -0.4586928 0.4470264 0.1056428 -0.4698649 0.4470264 0.1056428 -0.4805811 0.4470264 0.1056428 -0.490876 0.4470264 0.1056428 -0.5007803 0.4470264 0.1056428 -0.510322 0.4470264 0.1056428 -0.5195258 0.4470264 0.1056428 -0.5284142 0.4470264 0.1056428 -0.5370079 0.4470264 0.1056428 -0.5453253 0.4470264 0.1056428 -0.5533834 0.4470264 0.1056428 -0.5611974 0.4470264 0.1056428 -0.5687816 0.4470264 0.1056428 -0.092819 0.4586928 0.1056428 -0.1056428 0.4586928 0.1056428 -0.1201537 0.4586928 0.1056428 -0.1409607 0.4586928 0.1056428 -0.1678172 0.4586928 0.1056428 -0.1950164 0.4586928 0.1056428 -0.2210581 0.4586928 0.1056428 -0.245636 0.4586928 0.1056428 -0.2686816 0.4586928 0.1056428 -0.2902431 0.4586928 0.1056428 -0.3104189 0.4586928 0.1056428 -0.3293248 0.4586928 0.1056428 -0.3470774 0.4586928 0.1056428 -0.3637862 0.4586928 0.1056428 -0.3795513 0.4586928 0.1056428 -0.3944623 0.4586928 0.1056428 -0.4085988 0.4586928 0.1056428 -0.4220313 0.4586928 0.1056428 -0.4348222 0.4586928 0.1056428 -0.4470264 0.4586928 0.1056428 -0.4586928 0.4586928 0.1056428 -0.4698649 0.4586928 0.1056428 -0.4805811 0.4586928 0.1056428 -0.490876 0.4586928 0.1056428 -0.5007803 0.4586928 0.1056428 -0.510322 0.4586928 0.1056428 -0.5195258 0.4586928 0.1056428 -0.5284142 0.4586928 0.1056428 -0.5370079 0.4586928 0.1056428 -0.5453253 0.4586928 0.1056428 -0.5533834 0.4586928 0.1056428 -0.5611974 0.4586928 0.1056428 -0.5687816 0.4586928 0.1056428 -0.092819 0.4698649 0.1056428 -0.1056428 0.4698649 0.1056428 -0.1201537 0.4698649 0.1056428 -0.1409607 0.4698649 0.1056428 -0.1678172 0.4698649 0.1056428 -0.1950164 0.4698649 0.1056428 -0.2210581 0.4698649 0.1056428 -0.245636 0.4698649 0.1056428 -0.2686816 0.4698649 0.1056428 -0.2902431 0.4698649 0.1056428 -0.3104189 0.4698649 0.1056428 -0.3293248 0.4698649 0.1056428 -0.3470774 0.4698649 0.1056428 -0.3637862 0.4698649 0.1056428 -0.3795513 0.4698649 0.1056428 -0.3944623 0.4698649 0.1056428 -0.4085988 0.4698649 0.1056428 -0.4220313 0.4698649 0.1056428 -0.4348222 0.4698649 0.1056428 -0.4470264 0.4698649 0.1056428 -0.4586928 0.4698649 0.1056428 -0.4698649 0.4698649 0.1056428 -0.4805811 0.4698649 0.1056428 -0.490876 0.4698649 0.1056428 -0.5007803 0.4698649 0.1056428 -0.510322 0.4698649 0.1056428 -0.5195258 0.4698649 0.1056428 -0.5284142 0.4698649 0.1056428 -0.5370079 0.4698649 0.1056428 -0.5453253 0.4698649 0.1056428 -0.5533834 0.4698649 0.1056428 -0.5611974 0.4698649 0.1056428 -0.5687816 0.4698649 0.1056428 -0.092819 0.4805811 0.1056428 -0.1056428 0.4805811 0.1056428 -0.1201537 0.4805811 0.1056428 -0.1409607 0.4805811 0.1056428 -0.1678172 0.4805811 0.1056428 -0.1950164 0.4805811 0.1056428 -0.2210581 0.4805811 0.1056428 -0.245636 0.4805811 0.1056428 -0.2686816 0.4805811 0.1056428 -0.2902431 0.4805811 0.1056428 -0.3104189 0.4805811 0.1056428 -0.3293248 0.4805811 0.1056428 -0.3470774 0.4805811 0.1056428 -0.3637862 0.4805811 0.1056428 -0.3795513 0.4805811 0.1056428 -0.3944623 0.4805811 0.1056428 -0.4085988 0.4805811 0.1056428 -0.4220313 0.4805811 0.1056428 -0.4348222 0.4805811 0.1056428 -0.4470264 0.4805811 0.1056428 -0.4586928 0.4805811 0.1056428 -0.4698649 0.4805811 0.1056428 -0.4805811 0.4805811 0.1056428 -0.490876 0.4805811 0.1056428 -0.5007803 0.4805811 0.1056428 -0.510322 0.4805811 0.1056428 -0.5195258 0.4805811 0.1056428 -0.5284142 0.4805811 0.1056428 -0.5370079 0.4805811 0.1056428 -0.5453253 0.4805811 0.1056428 -0.5533834 0.4805811 0.1056428 -0.5611974 0.4805811 0.1056428 -0.5687816 0.4805811 0.1056428 -0.092819 0.490876 0.1056428 -0.1056428 0.490876 0.1056428 -0.1201537 0.490876 0.1056428 -0.1409607 0.490876 0.1056428 -0.1678172 0.490876 0.1056428 -0.1950164 0.490876 0.1056428 -0.2210581 0.490876 0.1056428 -0.245636 0.490876 0.1056428 -0.2686816 0.490876 0.1056428 -0.2902431 0.490876 0.1056428 -0.3104189 0.490876 0.1056428 -0.3293248 0.490876 0.1056428 -0.3470774 0.490876 0.1056428 -0.3637862 0.490876 0.1056428 -0.3795513 0.490876 0.1056428 -0.3944623 0.490876 0.1056428 -0.4085988 0.490876 0.1056428 -0.4220313 0.490876 0.1056428 -0.4348222 0.490876 0.1056428 -0.4470264 0.490876 0.1056428 -0.4586928 0.490876 0.1056428 -0.4698649 0.490876 0.1056428 -0.4805811 0.490876 0.1056428 -0.490876 0.490876 0.1056428 -0.5007803 0.490876 0.1056428 -0.510322 0.490876 0.1056428 -0.5195258 0.490876 0.1056428 -0.5284142 0.490876 0.1056428 -0.5370079 0.490876 0.1056428 -0.5453253 0.490876 0.1056428 -0.5533834 0.490876 0.1056428 -0.5611974 0.490876 0.1056428 -0.5687816 0.490876 0.1056428 -0.092819 0.5007803 0.1056428 -0.1056428 0.5007803 0.1056428 -0.1201537 0.5007803 0.1056428 -0.1409607 0.5007803 0.1056428 -0.1678172 0.5007803 0.1056428 -0.1950164 0.5007803 0.1056428 -0.2210581 0.5007803 0.1056428 -0.245636 0.5007803 0.1056428 -0.2686816 0.5007803 0.1056428 -0.2902431 0.5007803 0.1056428 -0.3104189 0.5007803 0.1056428 -0.3293248 0.5007803 0.1056428 -0.3470774 0.5007803 0.1056428 -0.3637862 0.5007803 0.1056428 -0.3795513 0.5007803 0.1056428 -0.3944623 0.5007803 0.1056428 -0.4085988 0.5007803 0.1056428 -0.4220313 0.5007803 0.1056428 -0.4348222 0.5007803 0.1056428 -0.4470264 0.5007803 0.1056428 -0.4586928 0.5007803 0.1056428 -0.4698649 0.5007803 0.1056428 -0.4805811 0.5007803 0.1056428 -0.490876 0.5007803 0.1056428 -0.5007803 0.5007803 0.1056428 -0.510322 0.5007803 0.1056428 -0.5195258 0.5007803 0.1056428 -0.5284142 0.5007803 0.1056428 -0.5370079 0.5007803 0.1056428 -0.5453253 0.5007803 0.1056428 -0.5533834 0.5007803 0.1056428 -0.5611974 0.5007803 0.1056428 -0.5687816 0.5007803 0.1056428 -0.092819 0.510322 0.1056428 -0.1056428 0.510322 0.1056428 -0.1201537 0.510322 0.1056428 -0.1409607 0.510322 0.1056428 -0.1678172 0.510322 0.1056428 -0.1950164 0.510322 0.1056428 -0.2210581 0.510322 0.1056428 -0.245636 0.510322 0.1056428 -0.2686816 0.510322 0.1056428 -0.2902431 0.510322 0.1056428 -0.3104189 0.510322 0.1056428 -0.3293248 0.510322 0.1056428 -0.3470774 0.510322 0.1056428 -0.3637862 0.510322 0.1056428 -0.3795513 0.510322 0.1056428 -0.3944623 0.510322 0.1056428 -0.4085988 0.510322 0.1056428 -0.4220313 0.510322 0.1056428 -0.4348222 0.510322 0.1056428 -0.4470264 0.510322 0.1056428 -0.4586928 0.510322 0.1056428 -0.4698649 0.510322 0.1056428 -0.4805811 0.510322 0.1056428 -0.490876 0.510322 0.1056428 -0.5007803 0.510322 0.1056428 -0.510322 0.510322 0.1056428 -0.5195258 0.510322 0.1056428 -0.5284142 0.510322 0.1056428 -0.5370079 0.510322 0.1056428 -0.5453253 0.510322 0.1056428 -0.5533834 0.510322 0.1056428 -0.5611974 0.510322 0.1056428 -0.5687816 0.510322 0.1056428 -0.092819 0.5195258 0.1056428 -0.1056428 0.5195258 0.1056428 -0.1201537 0.5195258 0.1056428 -0.1409607 0.5195258 0.1056428 -0.1678172 0.5195258 0.1056428 -0.1950164 0.5195258 0.1056428 -0.2210581 0.5195258 0.1056428 -0.245636 0.5195258 0.1056428 -0.2686816 0.5195258 0.1056428 -0.2902431 0.5195258 0.1056428 -0.3104189 0.5195258 0.1056428 -0.3293248 0.5195258 0.1056428 -0.3470774 0.5195258 0.1056428 -0.3637862 0.5195258 0.1056428 -0.3795513 0.5195258 0.1056428 -0.3944623 0.5195258 0.1056428 -0.4085988 0.5195258 0.1056428 -0.4220313 0.5195258 0.1056428 -0.4348222 0.5195258 0.1056428 -0.4470264 0.5195258 0.1056428 -0.4586928 0.5195258 0.1056428 -0.4698649 0.5195258 0.1056428 -0.4805811 0.5195258 0.1056428 -0.490876 0.5195258 0.1056428 -0.5007803 0.5195258 0.1056428 -0.510322 0.5195258 0.1056428 -0.5195258 0.5195258 0.1056428 -0.5284142 0.5195258 0.1056428 -0.5370079 0.5195258 0.1056428 -0.5453253 0.5195258 0.1056428 -0.5533834 0.5195258 0.1056428 -0.5611974 0.5195258 0.1056428 -0.5687816 0.5195258 0.1056428 -0.092819 0.5284142 0.1056428 -0.1056428 0.5284142 0.1056428 -0.1201537 0.5284142 0.1056428 -0.1409607 0.5284142 0.1056428 -0.1678172 0.5284142 0.1056428 -0.1950164 0.5284142 0.1056428 -0.2210581 0.5284142 0.1056428 -0.245636 0.5284142 0.1056428 -0.2686816 0.5284142 0.1056428 -0.2902431 0.5284142 0.1056428 -0.3104189 0.5284142 0.1056428 -0.3293248 0.5284142 0.1056428 -0.3470774 0.5284142 0.1056428 -0.3637862 0.5284142 0.1056428 -0.3795513 0.5284142 0.1056428 -0.3944623 0.5284142 0.1056428 -0.4085988 0.5284142 0.1056428 -0.4220313 0.5284142 0.1056428 -0.4348222 0.5284142 0.1056428 -0.4470264 0.5284142 0.1056428 -0.4586928 0.5284142 0.1056428 -0.4698649 0.5284142 0.1056428 -0.4805811 0.5284142 0.1056428 -0.490876 0.5284142 0.1056428 -0.5007803 0.5284142 0.1056428 -0.510322 0.5284142 0.1056428 -0.5195258 0.5284142 0.1056428 -0.5284142 0.5284142 0.1056428 -0.5370079 0.5284142 0.1056428 -0.5453253 0.5284142 0.1056428 -0.5533834 0.5284142 0.1056428 -0.5611974 0.5284142 0.1056428 -0.5687816 0.5284142 0.1056428 -0.092819 0.5370079 0.1056428 -0.1056428 0.5370079 0.1056428 -0.1201537 0.5370079 0.1056428 -0.1409607 0.5370079 0.1056428 -0.1678172 0.5370079 0.1056428 -0.1950164 0.5370079 0.1056428 -0.2210581 0.5370079 0.1056428 -0.245636 0.5370079 0.1056428 -0.2686816 0.5370079 0.1056428 -0.2902431 0.5370079 0.1056428 -0.3104189 0.5370079 0.1056428 -0.3293248 0.5370079 0.1056428 -0.3470774 0.5370079 0.1056428 -0.3637862 0.5370079 0.1056428 -0.3795513 0.5370079 0.1056428 -0.3944623 0.5370079 0.1056428 -0.4085988 0.5370079 0.1056428 -0.4220313 0.5370079 0.1056428 -0.4348222 0.5370079 0.1056428 -0.4470264 0.5370079 0.1056428 -0.4586928 0.5370079 0.1056428 -0.4698649 0.5370079 0.1056428 -0.4805811 0.5370079 0.1056428 -0.490876 0.5370079 0.1056428 -0.5007803 0.5370079 0.1056428 -0.510322 0.5370079 0.1056428 -0.5195258 0.5370079 0.1056428 -0.5284142 0.5370079 0.1056428 -0.5370079 0.5370079 0.1056428 -0.5453253 0.5370079 0.1056428 -0.5533834 0.5370079 0.1056428 -0.5611974 0.5370079 0.1056428 -0.5687816 0.5370079 0.1056428 -0.092819 0.5453253 0.1056428 -0.1056428 0.5453253 0.1056428 -0.1201537 0.5453253 0.1056428 -0.1409607 0.5453253 0.1056428 -0.1678172 0.5453253 0.1056428 -0.1950164 0.5453253 0.1056428 -0.2210581 0.5453253 0.1056428 -0.245636 0.5453253 0.1056428 -0.2686816 0.5453253 0.1056428 -0.2902431 0.5453253 0.1056428 -0.3104189 0.5453253 0.1056428 -0.3293248 0.5453253 0.1056428 -0.3470774 0.5453253 0.1056428 -0.3637862 0.5453253 0.1056428 -0.3795513 0.5453253 0.1056428 -0.3944623 0.5453253 0.1056428 -0.4085988 0.5453253 0.1056428 -0.4220313 0.5453253 0.1056428 -0.4348222 0.5453253 0.1056428 -0.4470264 0.5453253 0.1056428 -0.4586928 0.5453253 0.1056428 -0.4698649 0.5453253 0.1056428 -0.4805811 0.5453253 0.1056428 -0.490876 0.5453253 0.1056428 -0.5007803 0.5453253 0.1056428 -0.510322 0.5453253 0.1056428 -0.5195258 0.5453253 0.1056428 -0.5284142 0.5453253 0.1056428 -0.5370079 0.5453253 0.1056428 -0.5453253 0.5453253 0.1056428 -0.5533834 0.5453253 0.1056428 -0.5611974 0.5453253 0.1056428 -0.5687816 0.5453253 0.1056428 -0.092819 0.5533834 0.1056428 -0.1056428 0.5533834 0.1056428 -0.1201537 0.5533834 0.1056428 -0.1409607 0.5533834 0.1056428 -0.1678172 0.5533834 0.1056428 -0.1950164 0.5533834 0.1056428 -0.2210581 0.5533834 0.1056428 -0.245636 0.5533834 0.1056428 -0.2686816 0.5533834 0.1056428 -0.2902431 0.5533834 0.1056428 -0.3104189 0.5533834 0.1056428 -0.3293248 0.5533834 0.1056428 -0.3470774 0.5533834 0.1056428 -0.3637862 0.5533834 0.1056428 -0.3795513 0.5533834 0.1056428 -0.3944623 0.5533834 0.1056428 -0.4085988 0.5533834 0.1056428 -0.4220313 0.5533834 0.1056428 -0.4348222 0.5533834 0.1056428 -0.4470264 0.5533834 0.1056428 -0.4586928 0.5533834 0.1056428 -0.4698649 0.5533834 0.1056428 -0.4805811 0.5533834 0.1056428 -0.490876 0.5533834 0.1056428 -0.5007803 0.5533834 0.1056428 -0.510322 0.5533834 0.1056428 -0.5195258 0.5533834 0.1056428 -0.5284142 0.5533834 0.1056428 -0.5370079 0.5533834 0.1056428 -0.5453253 0.5533834 0.1056428 -0.5533834 0.5533834 0.1056428 -0.5611974 0.5533834 0.1056428 -0.5687816 0.5533834 0.1056428 -0.092819 0.5611974 0.1056428 -0.1056428 0.5611974 0.1056428 -0.1201537 0.5611974 0.1056428 -0.1409607 0.5611974 0.1056428 -0.1678172 0.5611974 0.1056428 -0.1950164 0.5611974 0.1056428 -0.2210581 0.5611974 0.1056428 -0.245636 0.5611974 0.1056428 -0.2686816 0.5611974 0.1056428 -0.2902431 0.5611974 0.1056428 -0.3104189 0.5611974 0.1056428 -0.3293248 0.5611974 0.1056428 -0.3470774 0.5611974 0.1056428 -0.3637862 0.5611974 0.1056428 -0.3795513 0.5611974 0.1056428 -0.3944623 0.5611974 0.1056428 -0.4085988 0.5611974 0.1056428 -0.4220313 0.5611974 0.1056428 -0.4348222 0.5611974 0.1056428 -0.4470264 0.5611974 0.1056428 -0.4586928 0.5611974 0.1056428 -0.4698649 0.5611974 0.1056428 -0.4805811 0.5611974 0.1056428 -0.490876 0.5611974 0.1056428 -0.5007803 0.5611974 0.1056428 -0.510322 0.5611974 0.1056428 -0.5195258 0.5611974 0.1056428 -0.5284142 0.5611974 0.1056428 -0.5370079 0.5611974 0.1056428 -0.5453253 0.5611974 0.1056428 -0.5533834 0.5611974 0.1056428 -0.5611974 0.5611974 0.1056428 -0.5687816 0.5611974 0.1056428 -0.092819 0.5687816 0.1056428 -0.1056428 0.5687816 0.1056428 -0.1201537 0.5687816 0.1056428 -0.1409607 0.5687816 0.1056428 -0.1678172 0.5687816 0.1056428 -0.1950164 0.5687816 0.1056428 -0.2210581 0.5687816 0.1056428 -0.245636 0.5687816 0.1056428 -0.2686816 0.5687816 0.1056428 -0.2902431 0.5687816 0.1056428 -0.3104189 0.5687816 0.1056428 -0.3293248 0.5687816 0.1056428 -0.3470774 0.5687816 0.1056428 -0.3637862 0.5687816 0.1056428 -0.3795513 0.5687816 0.1056428 -0.3944623 0.5687816 0.1056428 -0.4085988 0.5687816 0.1056428 -0.4220313 0.5687816 0.1056428 -0.4348222 0.5687816 0.1056428 -0.4470264 0.5687816 0.1056428 -0.4586928 0.5687816 0.1056428 -0.4698649 0.5687816 0.1056428 -0.4805811 0.5687816 0.1056428 -0.490876 0.5687816 0.1056428 -0.5007803 0.5687816 0.1056428 -0.510322 0.5687816 0.1056428 -0.5195258 0.5687816 0.1056428 -0.5284142 0.5687816 0.1056428 -0.5370079 0.5687816 0.1056428 -0.5453253 0.5687816 0.1056428 -0.5533834 0.5687816 0.1056428 -0.5611974 0.5687816 0.1056428 -0.5687816 0.5687816 0.1056428 -0.092819 0.092819 0.1201537 -0.1056428 0.092819 0.1201537 -0.1201537 0.092819 0.1201537 -0.1409607 0.092819 0.1201537 -0.1678172 0.092819 0.1201537 -0.1950164 0.092819 0.1201537 -0.2210581 0.092819 0.1201537 -0.245636 0.092819 0.1201537 -0.2686816 0.092819 0.1201537 -0.2902431 0.092819 0.1201537 -0.3104189 0.092819 0.1201537 -0.3293248 0.092819 0.1201537 -0.3470774 0.092819 0.1201537 -0.3637862 0.092819 0.1201537 -0.3795513 0.092819 0.1201537 -0.3944623 0.092819 0.1201537 -0.4085988 0.092819 0.1201537 -0.4220313 0.092819 0.1201537 -0.4348222 0.092819 0.1201537 -0.4470264 0.092819 0.1201537 -0.4586928 0.092819 0.1201537 -0.4698649 0.092819 0.1201537 -0.4805811 0.092819 0.1201537 -0.490876 0.092819 0.1201537 -0.5007803 0.092819 0.1201537 -0.510322 0.092819 0.1201537 -0.5195258 0.092819 0.1201537 -0.5284142 0.092819 0.1201537 -0.5370079 0.092819 0.1201537 -0.5453253 0.092819 0.1201537 -0.5533834 0.092819 0.1201537 -0.5611974 0.092819 0.1201537 -0.5687816 0.092819 0.1201537 -0.092819 0.1056428 0.1201537 -0.1056428 0.1056428 0.1201537 -0.1201537 0.1056428 0.1201537 -0.1409607 0.1056428 0.1201537 -0.1678172 0.1056428 0.1201537 -0.1950164 0.1056428 0.1201537 -0.2210581 0.1056428 0.1201537 -0.245636 0.1056428 0.1201537 -0.2686816 0.1056428 0.1201537 -0.2902431 0.1056428 0.1201537 -0.3104189 0.1056428 0.1201537 -0.3293248 0.1056428 0.1201537 -0.3470774 0.1056428 0.1201537 -0.3637862 0.1056428 0.1201537 -0.3795513 0.1056428 0.1201537 -0.3944623 0.1056428 0.1201537 -0.4085988 0.1056428 0.1201537 -0.4220313 0.1056428 0.1201537 -0.4348222 0.1056428 0.1201537 -0.4470264 0.1056428 0.1201537 -0.4586928 0.1056428 0.1201537 -0.4698649 0.1056428 0.1201537 -0.4805811 0.1056428 0.1201537 -0.490876 0.1056428 0.1201537 -0.5007803 0.1056428 0.1201537 -0.510322 0.1056428 0.1201537 -0.5195258 0.1056428 0.1201537 -0.5284142 0.1056428 0.1201537 -0.5370079 0.1056428 0.1201537 -0.5453253 0.1056428 0.1201537 -0.5533834 0.1056428 0.1201537 -0.5611974 0.1056428 0.1201537 -0.5687816 0.1056428 0.1201537 -0.092819 0.1201537 0.1201537 -0.1056428 0.1201537 0.1201537 -0.1201537 0.1201537 0.1201537 -0.1409607 0.1201537 0.1201537 -0.1678172 0.1201537 0.1201537 -0.1950164 0.1201537 0.1201537 -0.2210581 0.1201537 0.1201537 -0.245636 0.1201537 0.1201537 -0.2686816 0.1201537 0.1201537 -0.2902431 0.1201537 0.1201537 -0.3104189 0.1201537 0.1201537 -0.3293248 0.1201537 0.1201537 -0.3470774 0.1201537 0.1201537 -0.3637862 0.1201537 0.1201537 -0.3795513 0.1201537 0.1201537 -0.3944623 0.1201537 0.1201537 -0.4085988 0.1201537 0.1201537 -0.4220313 0.1201537 0.1201537 -0.4348222 0.1201537 0.1201537 -0.4470264 0.1201537 0.1201537 -0.4586928 0.1201537 0.1201537 -0.4698649 0.1201537 0.1201537 -0.4805811 0.1201537 0.1201537 -0.490876 0.1201537 0.1201537 -0.5007803 0.1201537 0.1201537 -0.510322 0.1201537 0.1201537 -0.5195258 0.1201537 0.1201537 -0.5284142 0.1201537 0.1201537 -0.5370079 0.1201537 0.1201537 -0.5453253 0.1201537 0.1201537 -0.5533834 0.1201537 0.1201537 -0.5611974 0.1201537 0.1201537 -0.5687816 0.1201537 0.1201537 -0.092819 0.1409607 0.1201537 -0.1056428 0.1409607 0.1201537 -0.1201537 0.1409607 0.1201537 -0.1409607 0.1409607 0.1201537 -0.1678172 0.1409607 0.1201537 -0.1950164 0.1409607 0.1201537 -0.2210581 0.1409607 0.1201537 -0.245636 0.1409607 0.1201537 -0.2686816 0.1409607 0.1201537 -0.2902431 0.1409607 0.1201537 -0.3104189 0.1409607 0.1201537 -0.3293248 0.1409607 0.1201537 -0.3470774 0.1409607 0.1201537 -0.3637862 0.1409607 0.1201537 -0.3795513 0.1409607 0.1201537 -0.3944623 0.1409607 0.1201537 -0.4085988 0.1409607 0.1201537 -0.4220313 0.1409607 0.1201537 -0.4348222 0.1409607 0.1201537 -0.4470264 0.1409607 0.1201537 -0.4586928 0.1409607 0.1201537 -0.4698649 0.1409607 0.1201537 -0.4805811 0.1409607 0.1201537 -0.490876 0.1409607 0.1201537 -0.5007803 0.1409607 0.1201537 -0.510322 0.1409607 0.1201537 -0.5195258 0.1409607 0.1201537 -0.5284142 0.1409607 0.1201537 -0.5370079 0.1409607 0.1201537 -0.5453253 0.1409607 0.1201537 -0.5533834 0.1409607 0.1201537 -0.5611974 0.1409607 0.1201537 -0.5687816 0.1409607 0.1201537 -0.092819 0.1678172 0.1201537 -0.1056428 0.1678172 0.1201537 -0.1201537 0.1678172 0.1201537 -0.1409607 0.1678172 0.1201537 -0.1678172 0.1678172 0.1201537 -0.1950164 0.1678172 0.1201537 -0.2210581 0.1678172 0.1201537 -0.245636 0.1678172 0.1201537 -0.2686816 0.1678172 0.1201537 -0.2902431 0.1678172 0.1201537 -0.3104189 0.1678172 0.1201537 -0.3293248 0.1678172 0.1201537 -0.3470774 0.1678172 0.1201537 -0.3637862 0.1678172 0.1201537 -0.3795513 0.1678172 0.1201537 -0.3944623 0.1678172 0.1201537 -0.4085988 0.1678172 0.1201537 -0.4220313 0.1678172 0.1201537 -0.4348222 0.1678172 0.1201537 -0.4470264 0.1678172 0.1201537 -0.4586928 0.1678172 0.1201537 -0.4698649 0.1678172 0.1201537 -0.4805811 0.1678172 0.1201537 -0.490876 0.1678172 0.1201537 -0.5007803 0.1678172 0.1201537 -0.510322 0.1678172 0.1201537 -0.5195258 0.1678172 0.1201537 -0.5284142 0.1678172 0.1201537 -0.5370079 0.1678172 0.1201537 -0.5453253 0.1678172 0.1201537 -0.5533834 0.1678172 0.1201537 -0.5611974 0.1678172 0.1201537 -0.5687816 0.1678172 0.1201537 -0.092819 0.1950164 0.1201537 -0.1056428 0.1950164 0.1201537 -0.1201537 0.1950164 0.1201537 -0.1409607 0.1950164 0.1201537 -0.1678172 0.1950164 0.1201537 -0.1950164 0.1950164 0.1201537 -0.2210581 0.1950164 0.1201537 -0.245636 0.1950164 0.1201537 -0.2686816 0.1950164 0.1201537 -0.2902431 0.1950164 0.1201537 -0.3104189 0.1950164 0.1201537 -0.3293248 0.1950164 0.1201537 -0.3470774 0.1950164 0.1201537 -0.3637862 0.1950164 0.1201537 -0.3795513 0.1950164 0.1201537 -0.3944623 0.1950164 0.1201537 -0.4085988 0.1950164 0.1201537 -0.4220313 0.1950164 0.1201537 -0.4348222 0.1950164 0.1201537 -0.4470264 0.1950164 0.1201537 -0.4586928 0.1950164 0.1201537 -0.4698649 0.1950164 0.1201537 -0.4805811 0.1950164 0.1201537 -0.490876 0.1950164 0.1201537 -0.5007803 0.1950164 0.1201537 -0.510322 0.1950164 0.1201537 -0.5195258 0.1950164 0.1201537 -0.5284142 0.1950164 0.1201537 -0.5370079 0.1950164 0.1201537 -0.5453253 0.1950164 0.1201537 -0.5533834 0.1950164 0.1201537 -0.5611974 0.1950164 0.1201537 -0.5687816 0.1950164 0.1201537 -0.092819 0.2210581 0.1201537 -0.1056428 0.2210581 0.1201537 -0.1201537 0.2210581 0.1201537 -0.1409607 0.2210581 0.1201537 -0.1678172 0.2210581 0.1201537 -0.1950164 0.2210581 0.1201537 -0.2210581 0.2210581 0.1201537 -0.245636 0.2210581 0.1201537 -0.2686816 0.2210581 0.1201537 -0.2902431 0.2210581 0.1201537 -0.3104189 0.2210581 0.1201537 -0.3293248 0.2210581 0.1201537 -0.3470774 0.2210581 0.1201537 -0.3637862 0.2210581 0.1201537 -0.3795513 0.2210581 0.1201537 -0.3944623 0.2210581 0.1201537 -0.4085988 0.2210581 0.1201537 -0.4220313 0.2210581 0.1201537 -0.4348222 0.2210581 0.1201537 -0.4470264 0.2210581 0.1201537 -0.4586928 0.2210581 0.1201537 -0.4698649 0.2210581 0.1201537 -0.4805811 0.2210581 0.1201537 -0.490876 0.2210581 0.1201537 -0.5007803 0.2210581 0.1201537 -0.510322 0.2210581 0.1201537 -0.5195258 0.2210581 0.1201537 -0.5284142 0.2210581 0.1201537 -0.5370079 0.2210581 0.1201537 -0.5453253 0.2210581 0.1201537 -0.5533834 0.2210581 0.1201537 -0.5611974 0.2210581 0.1201537 -0.5687816 0.2210581 0.1201537 -0.092819 0.245636 0.1201537 -0.1056428 0.245636 0.1201537 -0.1201537 0.245636 0.1201537 -0.1409607 0.245636 0.1201537 -0.1678172 0.245636 0.1201537 -0.1950164 0.245636 0.1201537 -0.2210581 0.245636 0.1201537 -0.245636 0.245636 0.1201537 -0.2686816 0.245636 0.1201537 -0.2902431 0.245636 0.1201537 -0.3104189 0.245636 0.1201537 -0.3293248 0.245636 0.1201537 -0.3470774 0.245636 0.1201537 -0.3637862 0.245636 0.1201537 -0.3795513 0.245636 0.1201537 -0.3944623 0.245636 0.1201537 -0.4085988 0.245636 0.1201537 -0.4220313 0.245636 0.1201537 -0.4348222 0.245636 0.1201537 -0.4470264 0.245636 0.1201537 -0.4586928 0.245636 0.1201537 -0.4698649 0.245636 0.1201537 -0.4805811 0.245636 0.1201537 -0.490876 0.245636 0.1201537 -0.5007803 0.245636 0.1201537 -0.510322 0.245636 0.1201537 -0.5195258 0.245636 0.1201537 -0.5284142 0.245636 0.1201537 -0.5370079 0.245636 0.1201537 -0.5453253 0.245636 0.1201537 -0.5533834 0.245636 0.1201537 -0.5611974 0.245636 0.1201537 -0.5687816 0.245636 0.1201537 -0.092819 0.2686816 0.1201537 -0.1056428 0.2686816 0.1201537 -0.1201537 0.2686816 0.1201537 -0.1409607 0.2686816 0.1201537 -0.1678172 0.2686816 0.1201537 -0.1950164 0.2686816 0.1201537 -0.2210581 0.2686816 0.1201537 -0.245636 0.2686816 0.1201537 -0.2686816 0.2686816 0.1201537 -0.2902431 0.2686816 0.1201537 -0.3104189 0.2686816 0.1201537 -0.3293248 0.2686816 0.1201537 -0.3470774 0.2686816 0.1201537 -0.3637862 0.2686816 0.1201537 -0.3795513 0.2686816 0.1201537 -0.3944623 0.2686816 0.1201537 -0.4085988 0.2686816 0.1201537 -0.4220313 0.2686816 0.1201537 -0.4348222 0.2686816 0.1201537 -0.4470264 0.2686816 0.1201537 -0.4586928 0.2686816 0.1201537 -0.4698649 0.2686816 0.1201537 -0.4805811 0.2686816 0.1201537 -0.490876 0.2686816 0.1201537 -0.5007803 0.2686816 0.1201537 -0.510322 0.2686816 0.1201537 -0.5195258 0.2686816 0.1201537 -0.5284142 0.2686816 0.1201537 -0.5370079 0.2686816 0.1201537 -0.5453253 0.2686816 0.1201537 -0.5533834 0.2686816 0.1201537 -0.5611974 0.2686816 0.1201537 -0.5687816 0.2686816 0.1201537 -0.092819 0.2902431 0.1201537 -0.1056428 0.2902431 0.1201537 -0.1201537 0.2902431 0.1201537 -0.1409607 0.2902431 0.1201537 -0.1678172 0.2902431 0.1201537 -0.1950164 0.2902431 0.1201537 -0.2210581 0.2902431 0.1201537 -0.245636 0.2902431 0.1201537 -0.2686816 0.2902431 0.1201537 -0.2902431 0.2902431 0.1201537 -0.3104189 0.2902431 0.1201537 -0.3293248 0.2902431 0.1201537 -0.3470774 0.2902431 0.1201537 -0.3637862 0.2902431 0.1201537 -0.3795513 0.2902431 0.1201537 -0.3944623 0.2902431 0.1201537 -0.4085988 0.2902431 0.1201537 -0.4220313 0.2902431 0.1201537 -0.4348222 0.2902431 0.1201537 -0.4470264 0.2902431 0.1201537 -0.4586928 0.2902431 0.1201537 -0.4698649 0.2902431 0.1201537 -0.4805811 0.2902431 0.1201537 -0.490876 0.2902431 0.1201537 -0.5007803 0.2902431 0.1201537 -0.510322 0.2902431 0.1201537 -0.5195258 0.2902431 0.1201537 -0.5284142 0.2902431 0.1201537 -0.5370079 0.2902431 0.1201537 -0.5453253 0.2902431 0.1201537 -0.5533834 0.2902431 0.1201537 -0.5611974 0.2902431 0.1201537 -0.5687816 0.2902431 0.1201537 -0.092819 0.3104189 0.1201537 -0.1056428 0.3104189 0.1201537 -0.1201537 0.3104189 0.1201537 -0.1409607 0.3104189 0.1201537 -0.1678172 0.3104189 0.1201537 -0.1950164 0.3104189 0.1201537 -0.2210581 0.3104189 0.1201537 -0.245636 0.3104189 0.1201537 -0.2686816 0.3104189 0.1201537 -0.2902431 0.3104189 0.1201537 -0.3104189 0.3104189 0.1201537 -0.3293248 0.3104189 0.1201537 -0.3470774 0.3104189 0.1201537 -0.3637862 0.3104189 0.1201537 -0.3795513 0.3104189 0.1201537 -0.3944623 0.3104189 0.1201537 -0.4085988 0.3104189 0.1201537 -0.4220313 0.3104189 0.1201537 -0.4348222 0.3104189 0.1201537 -0.4470264 0.3104189 0.1201537 -0.4586928 0.3104189 0.1201537 -0.4698649 0.3104189 0.1201537 -0.4805811 0.3104189 0.1201537 -0.490876 0.3104189 0.1201537 -0.5007803 0.3104189 0.1201537 -0.510322 0.3104189 0.1201537 -0.5195258 0.3104189 0.1201537 -0.5284142 0.3104189 0.1201537 -0.5370079 0.3104189 0.1201537 -0.5453253 0.3104189 0.1201537 -0.5533834 0.3104189 0.1201537 -0.5611974 0.3104189 0.1201537 -0.5687816 0.3104189 0.1201537 -0.092819 0.3293248 0.1201537 -0.1056428 0.3293248 0.1201537 -0.1201537 0.3293248 0.1201537 -0.1409607 0.3293248 0.1201537 -0.1678172 0.3293248 0.1201537 -0.1950164 0.3293248 0.1201537 -0.2210581 0.3293248 0.1201537 -0.245636 0.3293248 0.1201537 -0.2686816 0.3293248 0.1201537 -0.2902431 0.3293248 0.1201537 -0.3104189 0.3293248 0.1201537 -0.3293248 0.3293248 0.1201537 -0.3470774 0.3293248 0.1201537 -0.3637862 0.3293248 0.1201537 -0.3795513 0.3293248 0.1201537 -0.3944623 0.3293248 0.1201537 -0.4085988 0.3293248 0.1201537 -0.4220313 0.3293248 0.1201537 -0.4348222 0.3293248 0.1201537 -0.4470264 0.3293248 0.1201537 -0.4586928 0.3293248 0.1201537 -0.4698649 0.3293248 0.1201537 -0.4805811 0.3293248 0.1201537 -0.490876 0.3293248 0.1201537 -0.5007803 0.3293248 0.1201537 -0.510322 0.3293248 0.1201537 -0.5195258 0.3293248 0.1201537 -0.5284142 0.3293248 0.1201537 -0.5370079 0.3293248 0.1201537 -0.5453253 0.3293248 0.1201537 -0.5533834 0.3293248 0.1201537 -0.5611974 0.3293248 0.1201537 -0.5687816 0.3293248 0.1201537 -0.092819 0.3470774 0.1201537 -0.1056428 0.3470774 0.1201537 -0.1201537 0.3470774 0.1201537 -0.1409607 0.3470774 0.1201537 -0.1678172 0.3470774 0.1201537 -0.1950164 0.3470774 0.1201537 -0.2210581 0.3470774 0.1201537 -0.245636 0.3470774 0.1201537 -0.2686816 0.3470774 0.1201537 -0.2902431 0.3470774 0.1201537 -0.3104189 0.3470774 0.1201537 -0.3293248 0.3470774 0.1201537 -0.3470774 0.3470774 0.1201537 -0.3637862 0.3470774 0.1201537 -0.3795513 0.3470774 0.1201537 -0.3944623 0.3470774 0.1201537 -0.4085988 0.3470774 0.1201537 -0.4220313 0.3470774 0.1201537 -0.4348222 0.3470774 0.1201537 -0.4470264 0.3470774 0.1201537 -0.4586928 0.3470774 0.1201537 -0.4698649 0.3470774 0.1201537 -0.4805811 0.3470774 0.1201537 -0.490876 0.3470774 0.1201537 -0.5007803 0.3470774 0.1201537 -0.510322 0.3470774 0.1201537 -0.5195258 0.3470774 0.1201537 -0.5284142 0.3470774 0.1201537 -0.5370079 0.3470774 0.1201537 -0.5453253 0.3470774 0.1201537 -0.5533834 0.3470774 0.1201537 -0.5611974 0.3470774 0.1201537 -0.5687816 0.3470774 0.1201537 -0.092819 0.3637862 0.1201537 -0.1056428 0.3637862 0.1201537 -0.1201537 0.3637862 0.1201537 -0.1409607 0.3637862 0.1201537 -0.1678172 0.3637862 0.1201537 -0.1950164 0.3637862 0.1201537 -0.2210581 0.3637862 0.1201537 -0.245636 0.3637862 0.1201537 -0.2686816 0.3637862 0.1201537 -0.2902431 0.3637862 0.1201537 -0.3104189 0.3637862 0.1201537 -0.3293248 0.3637862 0.1201537 -0.3470774 0.3637862 0.1201537 -0.3637862 0.3637862 0.1201537 -0.3795513 0.3637862 0.1201537 -0.3944623 0.3637862 0.1201537 -0.4085988 0.3637862 0.1201537 -0.4220313 0.3637862 0.1201537 -0.4348222 0.3637862 0.1201537 -0.4470264 0.3637862 0.1201537 -0.4586928 0.3637862 0.1201537 -0.4698649 0.3637862 0.1201537 -0.4805811 0.3637862 0.1201537 -0.490876 0.3637862 0.1201537 -0.5007803 0.3637862 0.1201537 -0.510322 0.3637862 0.1201537 -0.5195258 0.3637862 0.1201537 -0.5284142 0.3637862 0.1201537 -0.5370079 0.3637862 0.1201537 -0.5453253 0.3637862 0.1201537 -0.5533834 0.3637862 0.1201537 -0.5611974 0.3637862 0.1201537 -0.5687816 0.3637862 0.1201537 -0.092819 0.3795513 0.1201537 -0.1056428 0.3795513 0.1201537 -0.1201537 0.3795513 0.1201537 -0.1409607 0.3795513 0.1201537 -0.1678172 0.3795513 0.1201537 -0.1950164 0.3795513 0.1201537 -0.2210581 0.3795513 0.1201537 -0.245636 0.3795513 0.1201537 -0.2686816 0.3795513 0.1201537 -0.2902431 0.3795513 0.1201537 -0.3104189 0.3795513 0.1201537 -0.3293248 0.3795513 0.1201537 -0.3470774 0.3795513 0.1201537 -0.3637862 0.3795513 0.1201537 -0.3795513 0.3795513 0.1201537 -0.3944623 0.3795513 0.1201537 -0.4085988 0.3795513 0.1201537 -0.4220313 0.3795513 0.1201537 -0.4348222 0.3795513 0.1201537 -0.4470264 0.3795513 0.1201537 -0.4586928 0.3795513 0.1201537 -0.4698649 0.3795513 0.1201537 -0.4805811 0.3795513 0.1201537 -0.490876 0.3795513 0.1201537 -0.5007803 0.3795513 0.1201537 -0.510322 0.3795513 0.1201537 -0.5195258 0.3795513 0.1201537 -0.5284142 0.3795513 0.1201537 -0.5370079 0.3795513 0.1201537 -0.5453253 0.3795513 0.1201537 -0.5533834 0.3795513 0.1201537 -0.5611974 0.3795513 0.1201537 -0.5687816 0.3795513 0.1201537 -0.092819 0.3944623 0.1201537 -0.1056428 0.3944623 0.1201537 -0.1201537 0.3944623 0.1201537 -0.1409607 0.3944623 0.1201537 -0.1678172 0.3944623 0.1201537 -0.1950164 0.3944623 0.1201537 -0.2210581 0.3944623 0.1201537 -0.245636 0.3944623 0.1201537 -0.2686816 0.3944623 0.1201537 -0.2902431 0.3944623 0.1201537 -0.3104189 0.3944623 0.1201537 -0.3293248 0.3944623 0.1201537 -0.3470774 0.3944623 0.1201537 -0.3637862 0.3944623 0.1201537 -0.3795513 0.3944623 0.1201537 -0.3944623 0.3944623 0.1201537 -0.4085988 0.3944623 0.1201537 -0.4220313 0.3944623 0.1201537 -0.4348222 0.3944623 0.1201537 -0.4470264 0.3944623 0.1201537 -0.4586928 0.3944623 0.1201537 -0.4698649 0.3944623 0.1201537 -0.4805811 0.3944623 0.1201537 -0.490876 0.3944623 0.1201537 -0.5007803 0.3944623 0.1201537 -0.510322 0.3944623 0.1201537 -0.5195258 0.3944623 0.1201537 -0.5284142 0.3944623 0.1201537 -0.5370079 0.3944623 0.1201537 -0.5453253 0.3944623 0.1201537 -0.5533834 0.3944623 0.1201537 -0.5611974 0.3944623 0.1201537 -0.5687816 0.3944623 0.1201537 -0.092819 0.4085988 0.1201537 -0.1056428 0.4085988 0.1201537 -0.1201537 0.4085988 0.1201537 -0.1409607 0.4085988 0.1201537 -0.1678172 0.4085988 0.1201537 -0.1950164 0.4085988 0.1201537 -0.2210581 0.4085988 0.1201537 -0.245636 0.4085988 0.1201537 -0.2686816 0.4085988 0.1201537 -0.2902431 0.4085988 0.1201537 -0.3104189 0.4085988 0.1201537 -0.3293248 0.4085988 0.1201537 -0.3470774 0.4085988 0.1201537 -0.3637862 0.4085988 0.1201537 -0.3795513 0.4085988 0.1201537 -0.3944623 0.4085988 0.1201537 -0.4085988 0.4085988 0.1201537 -0.4220313 0.4085988 0.1201537 -0.4348222 0.4085988 0.1201537 -0.4470264 0.4085988 0.1201537 -0.4586928 0.4085988 0.1201537 -0.4698649 0.4085988 0.1201537 -0.4805811 0.4085988 0.1201537 -0.490876 0.4085988 0.1201537 -0.5007803 0.4085988 0.1201537 -0.510322 0.4085988 0.1201537 -0.5195258 0.4085988 0.1201537 -0.5284142 0.4085988 0.1201537 -0.5370079 0.4085988 0.1201537 -0.5453253 0.4085988 0.1201537 -0.5533834 0.4085988 0.1201537 -0.5611974 0.4085988 0.1201537 -0.5687816 0.4085988 0.1201537 -0.092819 0.4220313 0.1201537 -0.1056428 0.4220313 0.1201537 -0.1201537 0.4220313 0.1201537 -0.1409607 0.4220313 0.1201537 -0.1678172 0.4220313 0.1201537 -0.1950164 0.4220313 0.1201537 -0.2210581 0.4220313 0.1201537 -0.245636 0.4220313 0.1201537 -0.2686816 0.4220313 0.1201537 -0.2902431 0.4220313 0.1201537 -0.3104189 0.4220313 0.1201537 -0.3293248 0.4220313 0.1201537 -0.3470774 0.4220313 0.1201537 -0.3637862 0.4220313 0.1201537 -0.3795513 0.4220313 0.1201537 -0.3944623 0.4220313 0.1201537 -0.4085988 0.4220313 0.1201537 -0.4220313 0.4220313 0.1201537 -0.4348222 0.4220313 0.1201537 -0.4470264 0.4220313 0.1201537 -0.4586928 0.4220313 0.1201537 -0.4698649 0.4220313 0.1201537 -0.4805811 0.4220313 0.1201537 -0.490876 0.4220313 0.1201537 -0.5007803 0.4220313 0.1201537 -0.510322 0.4220313 0.1201537 -0.5195258 0.4220313 0.1201537 -0.5284142 0.4220313 0.1201537 -0.5370079 0.4220313 0.1201537 -0.5453253 0.4220313 0.1201537 -0.5533834 0.4220313 0.1201537 -0.5611974 0.4220313 0.1201537 -0.5687816 0.4220313 0.1201537 -0.092819 0.4348222 0.1201537 -0.1056428 0.4348222 0.1201537 -0.1201537 0.4348222 0.1201537 -0.1409607 0.4348222 0.1201537 -0.1678172 0.4348222 0.1201537 -0.1950164 0.4348222 0.1201537 -0.2210581 0.4348222 0.1201537 -0.245636 0.4348222 0.1201537 -0.2686816 0.4348222 0.1201537 -0.2902431 0.4348222 0.1201537 -0.3104189 0.4348222 0.1201537 -0.3293248 0.4348222 0.1201537 -0.3470774 0.4348222 0.1201537 -0.3637862 0.4348222 0.1201537 -0.3795513 0.4348222 0.1201537 -0.3944623 0.4348222 0.1201537 -0.4085988 0.4348222 0.1201537 -0.4220313 0.4348222 0.1201537 -0.4348222 0.4348222 0.1201537 -0.4470264 0.4348222 0.1201537 -0.4586928 0.4348222 0.1201537 -0.4698649 0.4348222 0.1201537 -0.4805811 0.4348222 0.1201537 -0.490876 0.4348222 0.1201537 -0.5007803 0.4348222 0.1201537 -0.510322 0.4348222 0.1201537 -0.5195258 0.4348222 0.1201537 -0.5284142 0.4348222 0.1201537 -0.5370079 0.4348222 0.1201537 -0.5453253 0.4348222 0.1201537 -0.5533834 0.4348222 0.1201537 -0.5611974 0.4348222 0.1201537 -0.5687816 0.4348222 0.1201537 -0.092819 0.4470264 0.1201537 -0.1056428 0.4470264 0.1201537 -0.1201537 0.4470264 0.1201537 -0.1409607 0.4470264 0.1201537 -0.1678172 0.4470264 0.1201537 -0.1950164 0.4470264 0.1201537 -0.2210581 0.4470264 0.1201537 -0.245636 0.4470264 0.1201537 -0.2686816 0.4470264 0.1201537 -0.2902431 0.4470264 0.1201537 -0.3104189 0.4470264 0.1201537 -0.3293248 0.4470264 0.1201537 -0.3470774 0.4470264 0.1201537 -0.3637862 0.4470264 0.1201537 -0.3795513 0.4470264 0.1201537 -0.3944623 0.4470264 0.1201537 -0.4085988 0.4470264 0.1201537 -0.4220313 0.4470264 0.1201537 -0.4348222 0.4470264 0.1201537 -0.4470264 0.4470264 0.1201537 -0.4586928 0.4470264 0.1201537 -0.4698649 0.4470264 0.1201537 -0.4805811 0.4470264 0.1201537 -0.490876 0.4470264 0.1201537 -0.5007803 0.4470264 0.1201537 -0.510322 0.4470264 0.1201537 -0.5195258 0.4470264 0.1201537 -0.5284142 0.4470264 0.1201537 -0.5370079 0.4470264 0.1201537 -0.5453253 0.4470264 0.1201537 -0.5533834 0.4470264 0.1201537 -0.5611974 0.4470264 0.1201537 -0.5687816 0.4470264 0.1201537 -0.092819 0.4586928 0.1201537 -0.1056428 0.4586928 0.1201537 -0.1201537 0.4586928 0.1201537 -0.1409607 0.4586928 0.1201537 -0.1678172 0.4586928 0.1201537 -0.1950164 0.4586928 0.1201537 -0.2210581 0.4586928 0.1201537 -0.245636 0.4586928 0.1201537 -0.2686816 0.4586928 0.1201537 -0.2902431 0.4586928 0.1201537 -0.3104189 0.4586928 0.1201537 -0.3293248 0.4586928 0.1201537 -0.3470774 0.4586928 0.1201537 -0.3637862 0.4586928 0.1201537 -0.3795513 0.4586928 0.1201537 -0.3944623 0.4586928 0.1201537 -0.4085988 0.4586928 0.1201537 -0.4220313 0.4586928 0.1201537 -0.4348222 0.4586928 0.1201537 -0.4470264 0.4586928 0.1201537 -0.4586928 0.4586928 0.1201537 -0.4698649 0.4586928 0.1201537 -0.4805811 0.4586928 0.1201537 -0.490876 0.4586928 0.1201537 -0.5007803 0.4586928 0.1201537 -0.510322 0.4586928 0.1201537 -0.5195258 0.4586928 0.1201537 -0.5284142 0.4586928 0.1201537 -0.5370079 0.4586928 0.1201537 -0.5453253 0.4586928 0.1201537 -0.5533834 0.4586928 0.1201537 -0.5611974 0.4586928 0.1201537 -0.5687816 0.4586928 0.1201537 -0.092819 0.4698649 0.1201537 -0.1056428 0.4698649 0.1201537 -0.1201537 0.4698649 0.1201537 -0.1409607 0.4698649 0.1201537 -0.1678172 0.4698649 0.1201537 -0.1950164 0.4698649 0.1201537 -0.2210581 0.4698649 0.1201537 -0.245636 0.4698649 0.1201537 -0.2686816 0.4698649 0.1201537 -0.2902431 0.4698649 0.1201537 -0.3104189 0.4698649 0.1201537 -0.3293248 0.4698649 0.1201537 -0.3470774 0.4698649 0.1201537 -0.3637862 0.4698649 0.1201537 -0.3795513 0.4698649 0.1201537 -0.3944623 0.4698649 0.1201537 -0.4085988 0.4698649 0.1201537 -0.4220313 0.4698649 0.1201537 -0.4348222 0.4698649 0.1201537 -0.4470264 0.4698649 0.1201537 -0.4586928 0.4698649 0.1201537 -0.4698649 0.4698649 0.1201537 -0.4805811 0.4698649 0.1201537 -0.490876 0.4698649 0.1201537 -0.5007803 0.4698649 0.1201537 -0.510322 0.4698649 0.1201537 -0.5195258 0.4698649 0.1201537 -0.5284142 0.4698649 0.1201537 -0.5370079 0.4698649 0.1201537 -0.5453253 0.4698649 0.1201537 -0.5533834 0.4698649 0.1201537 -0.5611974 0.4698649 0.1201537 -0.5687816 0.4698649 0.1201537 -0.092819 0.4805811 0.1201537 -0.1056428 0.4805811 0.1201537 -0.1201537 0.4805811 0.1201537 -0.1409607 0.4805811 0.1201537 -0.1678172 0.4805811 0.1201537 -0.1950164 0.4805811 0.1201537 -0.2210581 0.4805811 0.1201537 -0.245636 0.4805811 0.1201537 -0.2686816 0.4805811 0.1201537 -0.2902431 0.4805811 0.1201537 -0.3104189 0.4805811 0.1201537 -0.3293248 0.4805811 0.1201537 -0.3470774 0.4805811 0.1201537 -0.3637862 0.4805811 0.1201537 -0.3795513 0.4805811 0.1201537 -0.3944623 0.4805811 0.1201537 -0.4085988 0.4805811 0.1201537 -0.4220313 0.4805811 0.1201537 -0.4348222 0.4805811 0.1201537 -0.4470264 0.4805811 0.1201537 -0.4586928 0.4805811 0.1201537 -0.4698649 0.4805811 0.1201537 -0.4805811 0.4805811 0.1201537 -0.490876 0.4805811 0.1201537 -0.5007803 0.4805811 0.1201537 -0.510322 0.4805811 0.1201537 -0.5195258 0.4805811 0.1201537 -0.5284142 0.4805811 0.1201537 -0.5370079 0.4805811 0.1201537 -0.5453253 0.4805811 0.1201537 -0.5533834 0.4805811 0.1201537 -0.5611974 0.4805811 0.1201537 -0.5687816 0.4805811 0.1201537 -0.092819 0.490876 0.1201537 -0.1056428 0.490876 0.1201537 -0.1201537 0.490876 0.1201537 -0.1409607 0.490876 0.1201537 -0.1678172 0.490876 0.1201537 -0.1950164 0.490876 0.1201537 -0.2210581 0.490876 0.1201537 -0.245636 0.490876 0.1201537 -0.2686816 0.490876 0.1201537 -0.2902431 0.490876 0.1201537 -0.3104189 0.490876 0.1201537 -0.3293248 0.490876 0.1201537 -0.3470774 0.490876 0.1201537 -0.3637862 0.490876 0.1201537 -0.3795513 0.490876 0.1201537 -0.3944623 0.490876 0.1201537 -0.4085988 0.490876 0.1201537 -0.4220313 0.490876 0.1201537 -0.4348222 0.490876 0.1201537 -0.4470264 0.490876 0.1201537 -0.4586928 0.490876 0.1201537 -0.4698649 0.490876 0.1201537 -0.4805811 0.490876 0.1201537 -0.490876 0.490876 0.1201537 -0.5007803 0.490876 0.1201537 -0.510322 0.490876 0.1201537 -0.5195258 0.490876 0.1201537 -0.5284142 0.490876 0.1201537 -0.5370079 0.490876 0.1201537 -0.5453253 0.490876 0.1201537 -0.5533834 0.490876 0.1201537 -0.5611974 0.490876 0.1201537 -0.5687816 0.490876 0.1201537 -0.092819 0.5007803 0.1201537 -0.1056428 0.5007803 0.1201537 -0.1201537 0.5007803 0.1201537 -0.1409607 0.5007803 0.1201537 -0.1678172 0.5007803 0.1201537 -0.1950164 0.5007803 0.1201537 -0.2210581 0.5007803 0.1201537 -0.245636 0.5007803 0.1201537 -0.2686816 0.5007803 0.1201537 -0.2902431 0.5007803 0.1201537 -0.3104189 0.5007803 0.1201537 -0.3293248 0.5007803 0.1201537 -0.3470774 0.5007803 0.1201537 -0.3637862 0.5007803 0.1201537 -0.3795513 0.5007803 0.1201537 -0.3944623 0.5007803 0.1201537 -0.4085988 0.5007803 0.1201537 -0.4220313 0.5007803 0.1201537 -0.4348222 0.5007803 0.1201537 -0.4470264 0.5007803 0.1201537 -0.4586928 0.5007803 0.1201537 -0.4698649 0.5007803 0.1201537 -0.4805811 0.5007803 0.1201537 -0.490876 0.5007803 0.1201537 -0.5007803 0.5007803 0.1201537 -0.510322 0.5007803 0.1201537 -0.5195258 0.5007803 0.1201537 -0.5284142 0.5007803 0.1201537 -0.5370079 0.5007803 0.1201537 -0.5453253 0.5007803 0.1201537 -0.5533834 0.5007803 0.1201537 -0.5611974 0.5007803 0.1201537 -0.5687816 0.5007803 0.1201537 -0.092819 0.510322 0.1201537 -0.1056428 0.510322 0.1201537 -0.1201537 0.510322 0.1201537 -0.1409607 0.510322 0.1201537 -0.1678172 0.510322 0.1201537 -0.1950164 0.510322 0.1201537 -0.2210581 0.510322 0.1201537 -0.245636 0.510322 0.1201537 -0.2686816 0.510322 0.1201537 -0.2902431 0.510322 0.1201537 -0.3104189 0.510322 0.1201537 -0.3293248 0.510322 0.1201537 -0.3470774 0.510322 0.1201537 -0.3637862 0.510322 0.1201537 -0.3795513 0.510322 0.1201537 -0.3944623 0.510322 0.1201537 -0.4085988 0.510322 0.1201537 -0.4220313 0.510322 0.1201537 -0.4348222 0.510322 0.1201537 -0.4470264 0.510322 0.1201537 -0.4586928 0.510322 0.1201537 -0.4698649 0.510322 0.1201537 -0.4805811 0.510322 0.1201537 -0.490876 0.510322 0.1201537 -0.5007803 0.510322 0.1201537 -0.510322 0.510322 0.1201537 -0.5195258 0.510322 0.1201537 -0.5284142 0.510322 0.1201537 -0.5370079 0.510322 0.1201537 -0.5453253 0.510322 0.1201537 -0.5533834 0.510322 0.1201537 -0.5611974 0.510322 0.1201537 -0.5687816 0.510322 0.1201537 -0.092819 0.5195258 0.1201537 -0.1056428 0.5195258 0.1201537 -0.1201537 0.5195258 0.1201537 -0.1409607 0.5195258 0.1201537 -0.1678172 0.5195258 0.1201537 -0.1950164 0.5195258 0.1201537 -0.2210581 0.5195258 0.1201537 -0.245636 0.5195258 0.1201537 -0.2686816 0.5195258 0.1201537 -0.2902431 0.5195258 0.1201537 -0.3104189 0.5195258 0.1201537 -0.3293248 0.5195258 0.1201537 -0.3470774 0.5195258 0.1201537 -0.3637862 0.5195258 0.1201537 -0.3795513 0.5195258 0.1201537 -0.3944623 0.5195258 0.1201537 -0.4085988 0.5195258 0.1201537 -0.4220313 0.5195258 0.1201537 -0.4348222 0.5195258 0.1201537 -0.4470264 0.5195258 0.1201537 -0.4586928 0.5195258 0.1201537 -0.4698649 0.5195258 0.1201537 -0.4805811 0.5195258 0.1201537 -0.490876 0.5195258 0.1201537 -0.5007803 0.5195258 0.1201537 -0.510322 0.5195258 0.1201537 -0.5195258 0.5195258 0.1201537 -0.5284142 0.5195258 0.1201537 -0.5370079 0.5195258 0.1201537 -0.5453253 0.5195258 0.1201537 -0.5533834 0.5195258 0.1201537 -0.5611974 0.5195258 0.1201537 -0.5687816 0.5195258 0.1201537 -0.092819 0.5284142 0.1201537 -0.1056428 0.5284142 0.1201537 -0.1201537 0.5284142 0.1201537 -0.1409607 0.5284142 0.1201537 -0.1678172 0.5284142 0.1201537 -0.1950164 0.5284142 0.1201537 -0.2210581 0.5284142 0.1201537 -0.245636 0.5284142 0.1201537 -0.2686816 0.5284142 0.1201537 -0.2902431 0.5284142 0.1201537 -0.3104189 0.5284142 0.1201537 -0.3293248 0.5284142 0.1201537 -0.3470774 0.5284142 0.1201537 -0.3637862 0.5284142 0.1201537 -0.3795513 0.5284142 0.1201537 -0.3944623 0.5284142 0.1201537 -0.4085988 0.5284142 0.1201537 -0.4220313 0.5284142 0.1201537 -0.4348222 0.5284142 0.1201537 -0.4470264 0.5284142 0.1201537 -0.4586928 0.5284142 0.1201537 -0.4698649 0.5284142 0.1201537 -0.4805811 0.5284142 0.1201537 -0.490876 0.5284142 0.1201537 -0.5007803 0.5284142 0.1201537 -0.510322 0.5284142 0.1201537 -0.5195258 0.5284142 0.1201537 -0.5284142 0.5284142 0.1201537 -0.5370079 0.5284142 0.1201537 -0.5453253 0.5284142 0.1201537 -0.5533834 0.5284142 0.1201537 -0.5611974 0.5284142 0.1201537 -0.5687816 0.5284142 0.1201537 -0.092819 0.5370079 0.1201537 -0.1056428 0.5370079 0.1201537 -0.1201537 0.5370079 0.1201537 -0.1409607 0.5370079 0.1201537 -0.1678172 0.5370079 0.1201537 -0.1950164 0.5370079 0.1201537 -0.2210581 0.5370079 0.1201537 -0.245636 0.5370079 0.1201537 -0.2686816 0.5370079 0.1201537 -0.2902431 0.5370079 0.1201537 -0.3104189 0.5370079 0.1201537 -0.3293248 0.5370079 0.1201537 -0.3470774 0.5370079 0.1201537 -0.3637862 0.5370079 0.1201537 -0.3795513 0.5370079 0.1201537 -0.3944623 0.5370079 0.1201537 -0.4085988 0.5370079 0.1201537 -0.4220313 0.5370079 0.1201537 -0.4348222 0.5370079 0.1201537 -0.4470264 0.5370079 0.1201537 -0.4586928 0.5370079 0.1201537 -0.4698649 0.5370079 0.1201537 -0.4805811 0.5370079 0.1201537 -0.490876 0.5370079 0.1201537 -0.5007803 0.5370079 0.1201537 -0.510322 0.5370079 0.1201537 -0.5195258 0.5370079 0.1201537 -0.5284142 0.5370079 0.1201537 -0.5370079 0.5370079 0.1201537 -0.5453253 0.5370079 0.1201537 -0.5533834 0.5370079 0.1201537 -0.5611974 0.5370079 0.1201537 -0.5687816 0.5370079 0.1201537 -0.092819 0.5453253 0.1201537 -0.1056428 0.5453253 0.1201537 -0.1201537 0.5453253 0.1201537 -0.1409607 0.5453253 0.1201537 -0.1678172 0.5453253 0.1201537 -0.1950164 0.5453253 0.1201537 -0.2210581 0.5453253 0.1201537 -0.245636 0.5453253 0.1201537 -0.2686816 0.5453253 0.1201537 -0.2902431 0.5453253 0.1201537 -0.3104189 0.5453253 0.1201537 -0.3293248 0.5453253 0.1201537 -0.3470774 0.5453253 0.1201537 -0.3637862 0.5453253 0.1201537 -0.3795513 0.5453253 0.1201537 -0.3944623 0.5453253 0.1201537 -0.4085988 0.5453253 0.1201537 -0.4220313 0.5453253 0.1201537 -0.4348222 0.5453253 0.1201537 -0.4470264 0.5453253 0.1201537 -0.4586928 0.5453253 0.1201537 -0.4698649 0.5453253 0.1201537 -0.4805811 0.5453253 0.1201537 -0.490876 0.5453253 0.1201537 -0.5007803 0.5453253 0.1201537 -0.510322 0.5453253 0.1201537 -0.5195258 0.5453253 0.1201537 -0.5284142 0.5453253 0.1201537 -0.5370079 0.5453253 0.1201537 -0.5453253 0.5453253 0.1201537 -0.5533834 0.5453253 0.1201537 -0.5611974 0.5453253 0.1201537 -0.5687816 0.5453253 0.1201537 -0.092819 0.5533834 0.1201537 -0.1056428 0.5533834 0.1201537 -0.1201537 0.5533834 0.1201537 -0.1409607 0.5533834 0.1201537 -0.1678172 0.5533834 0.1201537 -0.1950164 0.5533834 0.1201537 -0.2210581 0.5533834 0.1201537 -0.245636 0.5533834 0.1201537 -0.2686816 0.5533834 0.1201537 -0.2902431 0.5533834 0.1201537 -0.3104189 0.5533834 0.1201537 -0.3293248 0.5533834 0.1201537 -0.3470774 0.5533834 0.1201537 -0.3637862 0.5533834 0.1201537 -0.3795513 0.5533834 0.1201537 -0.3944623 0.5533834 0.1201537 -0.4085988 0.5533834 0.1201537 -0.4220313 0.5533834 0.1201537 -0.4348222 0.5533834 0.1201537 -0.4470264 0.5533834 0.1201537 -0.4586928 0.5533834 0.1201537 -0.4698649 0.5533834 0.1201537 -0.4805811 0.5533834 0.1201537 -0.490876 0.5533834 0.1201537 -0.5007803 0.5533834 0.1201537 -0.510322 0.5533834 0.1201537 -0.5195258 0.5533834 0.1201537 -0.5284142 0.5533834 0.1201537 -0.5370079 0.5533834 0.1201537 -0.5453253 0.5533834 0.1201537 -0.5533834 0.5533834 0.1201537 -0.5611974 0.5533834 0.1201537 -0.5687816 0.5533834 0.1201537 -0.092819 0.5611974 0.1201537 -0.1056428 0.5611974 0.1201537 -0.1201537 0.5611974 0.1201537 -0.1409607 0.5611974 0.1201537 -0.1678172 0.5611974 0.1201537 -0.1950164 0.5611974 0.1201537 -0.2210581 0.5611974 0.1201537 -0.245636 0.5611974 0.1201537 -0.2686816 0.5611974 0.1201537 -0.2902431 0.5611974 0.1201537 -0.3104189 0.5611974 0.1201537 -0.3293248 0.5611974 0.1201537 -0.3470774 0.5611974 0.1201537 -0.3637862 0.5611974 0.1201537 -0.3795513 0.5611974 0.1201537 -0.3944623 0.5611974 0.1201537 -0.4085988 0.5611974 0.1201537 -0.4220313 0.5611974 0.1201537 -0.4348222 0.5611974 0.1201537 -0.4470264 0.5611974 0.1201537 -0.4586928 0.5611974 0.1201537 -0.4698649 0.5611974 0.1201537 -0.4805811 0.5611974 0.1201537 -0.490876 0.5611974 0.1201537 -0.5007803 0.5611974 0.1201537 -0.510322 0.5611974 0.1201537 -0.5195258 0.5611974 0.1201537 -0.5284142 0.5611974 0.1201537 -0.5370079 0.5611974 0.1201537 -0.5453253 0.5611974 0.1201537 -0.5533834 0.5611974 0.1201537 -0.5611974 0.5611974 0.1201537 -0.5687816 0.5611974 0.1201537 -0.092819 0.5687816 0.1201537 -0.1056428 0.5687816 0.1201537 -0.1201537 0.5687816 0.1201537 -0.1409607 0.5687816 0.1201537 -0.1678172 0.5687816 0.1201537 -0.1950164 0.5687816 0.1201537 -0.2210581 0.5687816 0.1201537 -0.245636 0.5687816 0.1201537 -0.2686816 0.5687816 0.1201537 -0.2902431 0.5687816 0.1201537 -0.3104189 0.5687816 0.1201537 -0.3293248 0.5687816 0.1201537 -0.3470774 0.5687816 0.1201537 -0.3637862 0.5687816 0.1201537 -0.3795513 0.5687816 0.1201537 -0.3944623 0.5687816 0.1201537 -0.4085988 0.5687816 0.1201537 -0.4220313 0.5687816 0.1201537 -0.4348222 0.5687816 0.1201537 -0.4470264 0.5687816 0.1201537 -0.4586928 0.5687816 0.1201537 -0.4698649 0.5687816 0.1201537 -0.4805811 0.5687816 0.1201537 -0.490876 0.5687816 0.1201537 -0.5007803 0.5687816 0.1201537 -0.510322 0.5687816 0.1201537 -0.5195258 0.5687816 0.1201537 -0.5284142 0.5687816 0.1201537 -0.5370079 0.5687816 0.1201537 -0.5453253 0.5687816 0.1201537 -0.5533834 0.5687816 0.1201537 -0.5611974 0.5687816 0.1201537 -0.5687816 0.5687816 0.1201537 -0.092819 0.092819 0.1409607 -0.1056428 0.092819 0.1409607 -0.1201537 0.092819 0.1409607 -0.1409607 0.092819 0.1409607 -0.1678172 0.092819 0.1409607 -0.1950164 0.092819 0.1409607 -0.2210581 0.092819 0.1409607 -0.245636 0.092819 0.1409607 -0.2686816 0.092819 0.1409607 -0.2902431 0.092819 0.1409607 -0.3104189 0.092819 0.1409607 -0.3293248 0.092819 0.1409607 -0.3470774 0.092819 0.1409607 -0.3637862 0.092819 0.1409607 -0.3795513 0.092819 0.1409607 -0.3944623 0.092819 0.1409607 -0.4085988 0.092819 0.1409607 -0.4220313 0.092819 0.1409607 -0.4348222 0.092819 0.1409607 -0.4470264 0.092819 0.1409607 -0.4586928 0.092819 0.1409607 -0.4698649 0.092819 0.1409607 -0.4805811 0.092819 0.1409607 -0.490876 0.092819 0.1409607 -0.5007803 0.092819 0.1409607 -0.510322 0.092819 0.1409607 -0.5195258 0.092819 0.1409607 -0.5284142 0.092819 0.1409607 -0.5370079 0.092819 0.1409607 -0.5453253 0.092819 0.1409607 -0.5533834 0.092819 0.1409607 -0.5611974 0.092819 0.1409607 -0.5687816 0.092819 0.1409607 -0.092819 0.1056428 0.1409607 -0.1056428 0.1056428 0.1409607 -0.1201537 0.1056428 0.1409607 -0.1409607 0.1056428 0.1409607 -0.1678172 0.1056428 0.1409607 -0.1950164 0.1056428 0.1409607 -0.2210581 0.1056428 0.1409607 -0.245636 0.1056428 0.1409607 -0.2686816 0.1056428 0.1409607 -0.2902431 0.1056428 0.1409607 -0.3104189 0.1056428 0.1409607 -0.3293248 0.1056428 0.1409607 -0.3470774 0.1056428 0.1409607 -0.3637862 0.1056428 0.1409607 -0.3795513 0.1056428 0.1409607 -0.3944623 0.1056428 0.1409607 -0.4085988 0.1056428 0.1409607 -0.4220313 0.1056428 0.1409607 -0.4348222 0.1056428 0.1409607 -0.4470264 0.1056428 0.1409607 -0.4586928 0.1056428 0.1409607 -0.4698649 0.1056428 0.1409607 -0.4805811 0.1056428 0.1409607 -0.490876 0.1056428 0.1409607 -0.5007803 0.1056428 0.1409607 -0.510322 0.1056428 0.1409607 -0.5195258 0.1056428 0.1409607 -0.5284142 0.1056428 0.1409607 -0.5370079 0.1056428 0.1409607 -0.5453253 0.1056428 0.1409607 -0.5533834 0.1056428 0.1409607 -0.5611974 0.1056428 0.1409607 -0.5687816 0.1056428 0.1409607 -0.092819 0.1201537 0.1409607 -0.1056428 0.1201537 0.1409607 -0.1201537 0.1201537 0.1409607 -0.1409607 0.1201537 0.1409607 -0.1678172 0.1201537 0.1409607 -0.1950164 0.1201537 0.1409607 -0.2210581 0.1201537 0.1409607 -0.245636 0.1201537 0.1409607 -0.2686816 0.1201537 0.1409607 -0.2902431 0.1201537 0.1409607 -0.3104189 0.1201537 0.1409607 -0.3293248 0.1201537 0.1409607 -0.3470774 0.1201537 0.1409607 -0.3637862 0.1201537 0.1409607 -0.3795513 0.1201537 0.1409607 -0.3944623 0.1201537 0.1409607 -0.4085988 0.1201537 0.1409607 -0.4220313 0.1201537 0.1409607 -0.4348222 0.1201537 0.1409607 -0.4470264 0.1201537 0.1409607 -0.4586928 0.1201537 0.1409607 -0.4698649 0.1201537 0.1409607 -0.4805811 0.1201537 0.1409607 -0.490876 0.1201537 0.1409607 -0.5007803 0.1201537 0.1409607 -0.510322 0.1201537 0.1409607 -0.5195258 0.1201537 0.1409607 -0.5284142 0.1201537 0.1409607 -0.5370079 0.1201537 0.1409607 -0.5453253 0.1201537 0.1409607 -0.5533834 0.1201537 0.1409607 -0.5611974 0.1201537 0.1409607 -0.5687816 0.1201537 0.1409607 -0.092819 0.1409607 0.1409607 -0.1056428 0.1409607 0.1409607 -0.1201537 0.1409607 0.1409607 -0.1409607 0.1409607 0.1409607 -0.1678172 0.1409607 0.1409607 -0.1950164 0.1409607 0.1409607 -0.2210581 0.1409607 0.1409607 -0.245636 0.1409607 0.1409607 -0.2686816 0.1409607 0.1409607 -0.2902431 0.1409607 0.1409607 -0.3104189 0.1409607 0.1409607 -0.3293248 0.1409607 0.1409607 -0.3470774 0.1409607 0.1409607 -0.3637862 0.1409607 0.1409607 -0.3795513 0.1409607 0.1409607 -0.3944623 0.1409607 0.1409607 -0.4085988 0.1409607 0.1409607 -0.4220313 0.1409607 0.1409607 -0.4348222 0.1409607 0.1409607 -0.4470264 0.1409607 0.1409607 -0.4586928 0.1409607 0.1409607 -0.4698649 0.1409607 0.1409607 -0.4805811 0.1409607 0.1409607 -0.490876 0.1409607 0.1409607 -0.5007803 0.1409607 0.1409607 -0.510322 0.1409607 0.1409607 -0.5195258 0.1409607 0.1409607 -0.5284142 0.1409607 0.1409607 -0.5370079 0.1409607 0.1409607 -0.5453253 0.1409607 0.1409607 -0.5533834 0.1409607 0.1409607 -0.5611974 0.1409607 0.1409607 -0.5687816 0.1409607 0.1409607 -0.092819 0.1678172 0.1409607 -0.1056428 0.1678172 0.1409607 -0.1201537 0.1678172 0.1409607 -0.1409607 0.1678172 0.1409607 -0.1678172 0.1678172 0.1409607 -0.1950164 0.1678172 0.1409607 -0.2210581 0.1678172 0.1409607 -0.245636 0.1678172 0.1409607 -0.2686816 0.1678172 0.1409607 -0.2902431 0.1678172 0.1409607 -0.3104189 0.1678172 0.1409607 -0.3293248 0.1678172 0.1409607 -0.3470774 0.1678172 0.1409607 -0.3637862 0.1678172 0.1409607 -0.3795513 0.1678172 0.1409607 -0.3944623 0.1678172 0.1409607 -0.4085988 0.1678172 0.1409607 -0.4220313 0.1678172 0.1409607 -0.4348222 0.1678172 0.1409607 -0.4470264 0.1678172 0.1409607 -0.4586928 0.1678172 0.1409607 -0.4698649 0.1678172 0.1409607 -0.4805811 0.1678172 0.1409607 -0.490876 0.1678172 0.1409607 -0.5007803 0.1678172 0.1409607 -0.510322 0.1678172 0.1409607 -0.5195258 0.1678172 0.1409607 -0.5284142 0.1678172 0.1409607 -0.5370079 0.1678172 0.1409607 -0.5453253 0.1678172 0.1409607 -0.5533834 0.1678172 0.1409607 -0.5611974 0.1678172 0.1409607 -0.5687816 0.1678172 0.1409607 -0.092819 0.1950164 0.1409607 -0.1056428 0.1950164 0.1409607 -0.1201537 0.1950164 0.1409607 -0.1409607 0.1950164 0.1409607 -0.1678172 0.1950164 0.1409607 -0.1950164 0.1950164 0.1409607 -0.2210581 0.1950164 0.1409607 -0.245636 0.1950164 0.1409607 -0.2686816 0.1950164 0.1409607 -0.2902431 0.1950164 0.1409607 -0.3104189 0.1950164 0.1409607 -0.3293248 0.1950164 0.1409607 -0.3470774 0.1950164 0.1409607 -0.3637862 0.1950164 0.1409607 -0.3795513 0.1950164 0.1409607 -0.3944623 0.1950164 0.1409607 -0.4085988 0.1950164 0.1409607 -0.4220313 0.1950164 0.1409607 -0.4348222 0.1950164 0.1409607 -0.4470264 0.1950164 0.1409607 -0.4586928 0.1950164 0.1409607 -0.4698649 0.1950164 0.1409607 -0.4805811 0.1950164 0.1409607 -0.490876 0.1950164 0.1409607 -0.5007803 0.1950164 0.1409607 -0.510322 0.1950164 0.1409607 -0.5195258 0.1950164 0.1409607 -0.5284142 0.1950164 0.1409607 -0.5370079 0.1950164 0.1409607 -0.5453253 0.1950164 0.1409607 -0.5533834 0.1950164 0.1409607 -0.5611974 0.1950164 0.1409607 -0.5687816 0.1950164 0.1409607 -0.092819 0.2210581 0.1409607 -0.1056428 0.2210581 0.1409607 -0.1201537 0.2210581 0.1409607 -0.1409607 0.2210581 0.1409607 -0.1678172 0.2210581 0.1409607 -0.1950164 0.2210581 0.1409607 -0.2210581 0.2210581 0.1409607 -0.245636 0.2210581 0.1409607 -0.2686816 0.2210581 0.1409607 -0.2902431 0.2210581 0.1409607 -0.3104189 0.2210581 0.1409607 -0.3293248 0.2210581 0.1409607 -0.3470774 0.2210581 0.1409607 -0.3637862 0.2210581 0.1409607 -0.3795513 0.2210581 0.1409607 -0.3944623 0.2210581 0.1409607 -0.4085988 0.2210581 0.1409607 -0.4220313 0.2210581 0.1409607 -0.4348222 0.2210581 0.1409607 -0.4470264 0.2210581 0.1409607 -0.4586928 0.2210581 0.1409607 -0.4698649 0.2210581 0.1409607 -0.4805811 0.2210581 0.1409607 -0.490876 0.2210581 0.1409607 -0.5007803 0.2210581 0.1409607 -0.510322 0.2210581 0.1409607 -0.5195258 0.2210581 0.1409607 -0.5284142 0.2210581 0.1409607 -0.5370079 0.2210581 0.1409607 -0.5453253 0.2210581 0.1409607 -0.5533834 0.2210581 0.1409607 -0.5611974 0.2210581 0.1409607 -0.5687816 0.2210581 0.1409607 -0.092819 0.245636 0.1409607 -0.1056428 0.245636 0.1409607 -0.1201537 0.245636 0.1409607 -0.1409607 0.245636 0.1409607 -0.1678172 0.245636 0.1409607 -0.1950164 0.245636 0.1409607 -0.2210581 0.245636 0.1409607 -0.245636 0.245636 0.1409607 -0.2686816 0.245636 0.1409607 -0.2902431 0.245636 0.1409607 -0.3104189 0.245636 0.1409607 -0.3293248 0.245636 0.1409607 -0.3470774 0.245636 0.1409607 -0.3637862 0.245636 0.1409607 -0.3795513 0.245636 0.1409607 -0.3944623 0.245636 0.1409607 -0.4085988 0.245636 0.1409607 -0.4220313 0.245636 0.1409607 -0.4348222 0.245636 0.1409607 -0.4470264 0.245636 0.1409607 -0.4586928 0.245636 0.1409607 -0.4698649 0.245636 0.1409607 -0.4805811 0.245636 0.1409607 -0.490876 0.245636 0.1409607 -0.5007803 0.245636 0.1409607 -0.510322 0.245636 0.1409607 -0.5195258 0.245636 0.1409607 -0.5284142 0.245636 0.1409607 -0.5370079 0.245636 0.1409607 -0.5453253 0.245636 0.1409607 -0.5533834 0.245636 0.1409607 -0.5611974 0.245636 0.1409607 -0.5687816 0.245636 0.1409607 -0.092819 0.2686816 0.1409607 -0.1056428 0.2686816 0.1409607 -0.1201537 0.2686816 0.1409607 -0.1409607 0.2686816 0.1409607 -0.1678172 0.2686816 0.1409607 -0.1950164 0.2686816 0.1409607 -0.2210581 0.2686816 0.1409607 -0.245636 0.2686816 0.1409607 -0.2686816 0.2686816 0.1409607 -0.2902431 0.2686816 0.1409607 -0.3104189 0.2686816 0.1409607 -0.3293248 0.2686816 0.1409607 -0.3470774 0.2686816 0.1409607 -0.3637862 0.2686816 0.1409607 -0.3795513 0.2686816 0.1409607 -0.3944623 0.2686816 0.1409607 -0.4085988 0.2686816 0.1409607 -0.4220313 0.2686816 0.1409607 -0.4348222 0.2686816 0.1409607 -0.4470264 0.2686816 0.1409607 -0.4586928 0.2686816 0.1409607 -0.4698649 0.2686816 0.1409607 -0.4805811 0.2686816 0.1409607 -0.490876 0.2686816 0.1409607 -0.5007803 0.2686816 0.1409607 -0.510322 0.2686816 0.1409607 -0.5195258 0.2686816 0.1409607 -0.5284142 0.2686816 0.1409607 -0.5370079 0.2686816 0.1409607 -0.5453253 0.2686816 0.1409607 -0.5533834 0.2686816 0.1409607 -0.5611974 0.2686816 0.1409607 -0.5687816 0.2686816 0.1409607 -0.092819 0.2902431 0.1409607 -0.1056428 0.2902431 0.1409607 -0.1201537 0.2902431 0.1409607 -0.1409607 0.2902431 0.1409607 -0.1678172 0.2902431 0.1409607 -0.1950164 0.2902431 0.1409607 -0.2210581 0.2902431 0.1409607 -0.245636 0.2902431 0.1409607 -0.2686816 0.2902431 0.1409607 -0.2902431 0.2902431 0.1409607 -0.3104189 0.2902431 0.1409607 -0.3293248 0.2902431 0.1409607 -0.3470774 0.2902431 0.1409607 -0.3637862 0.2902431 0.1409607 -0.3795513 0.2902431 0.1409607 -0.3944623 0.2902431 0.1409607 -0.4085988 0.2902431 0.1409607 -0.4220313 0.2902431 0.1409607 -0.4348222 0.2902431 0.1409607 -0.4470264 0.2902431 0.1409607 -0.4586928 0.2902431 0.1409607 -0.4698649 0.2902431 0.1409607 -0.4805811 0.2902431 0.1409607 -0.490876 0.2902431 0.1409607 -0.5007803 0.2902431 0.1409607 -0.510322 0.2902431 0.1409607 -0.5195258 0.2902431 0.1409607 -0.5284142 0.2902431 0.1409607 -0.5370079 0.2902431 0.1409607 -0.5453253 0.2902431 0.1409607 -0.5533834 0.2902431 0.1409607 -0.5611974 0.2902431 0.1409607 -0.5687816 0.2902431 0.1409607 -0.092819 0.3104189 0.1409607 -0.1056428 0.3104189 0.1409607 -0.1201537 0.3104189 0.1409607 -0.1409607 0.3104189 0.1409607 -0.1678172 0.3104189 0.1409607 -0.1950164 0.3104189 0.1409607 -0.2210581 0.3104189 0.1409607 -0.245636 0.3104189 0.1409607 -0.2686816 0.3104189 0.1409607 -0.2902431 0.3104189 0.1409607 -0.3104189 0.3104189 0.1409607 -0.3293248 0.3104189 0.1409607 -0.3470774 0.3104189 0.1409607 -0.3637862 0.3104189 0.1409607 -0.3795513 0.3104189 0.1409607 -0.3944623 0.3104189 0.1409607 -0.4085988 0.3104189 0.1409607 -0.4220313 0.3104189 0.1409607 -0.4348222 0.3104189 0.1409607 -0.4470264 0.3104189 0.1409607 -0.4586928 0.3104189 0.1409607 -0.4698649 0.3104189 0.1409607 -0.4805811 0.3104189 0.1409607 -0.490876 0.3104189 0.1409607 -0.5007803 0.3104189 0.1409607 -0.510322 0.3104189 0.1409607 -0.5195258 0.3104189 0.1409607 -0.5284142 0.3104189 0.1409607 -0.5370079 0.3104189 0.1409607 -0.5453253 0.3104189 0.1409607 -0.5533834 0.3104189 0.1409607 -0.5611974 0.3104189 0.1409607 -0.5687816 0.3104189 0.1409607 -0.092819 0.3293248 0.1409607 -0.1056428 0.3293248 0.1409607 -0.1201537 0.3293248 0.1409607 -0.1409607 0.3293248 0.1409607 -0.1678172 0.3293248 0.1409607 -0.1950164 0.3293248 0.1409607 -0.2210581 0.3293248 0.1409607 -0.245636 0.3293248 0.1409607 -0.2686816 0.3293248 0.1409607 -0.2902431 0.3293248 0.1409607 -0.3104189 0.3293248 0.1409607 -0.3293248 0.3293248 0.1409607 -0.3470774 0.3293248 0.1409607 -0.3637862 0.3293248 0.1409607 -0.3795513 0.3293248 0.1409607 -0.3944623 0.3293248 0.1409607 -0.4085988 0.3293248 0.1409607 -0.4220313 0.3293248 0.1409607 -0.4348222 0.3293248 0.1409607 -0.4470264 0.3293248 0.1409607 -0.4586928 0.3293248 0.1409607 -0.4698649 0.3293248 0.1409607 -0.4805811 0.3293248 0.1409607 -0.490876 0.3293248 0.1409607 -0.5007803 0.3293248 0.1409607 -0.510322 0.3293248 0.1409607 -0.5195258 0.3293248 0.1409607 -0.5284142 0.3293248 0.1409607 -0.5370079 0.3293248 0.1409607 -0.5453253 0.3293248 0.1409607 -0.5533834 0.3293248 0.1409607 -0.5611974 0.3293248 0.1409607 -0.5687816 0.3293248 0.1409607 -0.092819 0.3470774 0.1409607 -0.1056428 0.3470774 0.1409607 -0.1201537 0.3470774 0.1409607 -0.1409607 0.3470774 0.1409607 -0.1678172 0.3470774 0.1409607 -0.1950164 0.3470774 0.1409607 -0.2210581 0.3470774 0.1409607 -0.245636 0.3470774 0.1409607 -0.2686816 0.3470774 0.1409607 -0.2902431 0.3470774 0.1409607 -0.3104189 0.3470774 0.1409607 -0.3293248 0.3470774 0.1409607 -0.3470774 0.3470774 0.1409607 -0.3637862 0.3470774 0.1409607 -0.3795513 0.3470774 0.1409607 -0.3944623 0.3470774 0.1409607 -0.4085988 0.3470774 0.1409607 -0.4220313 0.3470774 0.1409607 -0.4348222 0.3470774 0.1409607 -0.4470264 0.3470774 0.1409607 -0.4586928 0.3470774 0.1409607 -0.4698649 0.3470774 0.1409607 -0.4805811 0.3470774 0.1409607 -0.490876 0.3470774 0.1409607 -0.5007803 0.3470774 0.1409607 -0.510322 0.3470774 0.1409607 -0.5195258 0.3470774 0.1409607 -0.5284142 0.3470774 0.1409607 -0.5370079 0.3470774 0.1409607 -0.5453253 0.3470774 0.1409607 -0.5533834 0.3470774 0.1409607 -0.5611974 0.3470774 0.1409607 -0.5687816 0.3470774 0.1409607 -0.092819 0.3637862 0.1409607 -0.1056428 0.3637862 0.1409607 -0.1201537 0.3637862 0.1409607 -0.1409607 0.3637862 0.1409607 -0.1678172 0.3637862 0.1409607 -0.1950164 0.3637862 0.1409607 -0.2210581 0.3637862 0.1409607 -0.245636 0.3637862 0.1409607 -0.2686816 0.3637862 0.1409607 -0.2902431 0.3637862 0.1409607 -0.3104189 0.3637862 0.1409607 -0.3293248 0.3637862 0.1409607 -0.3470774 0.3637862 0.1409607 -0.3637862 0.3637862 0.1409607 -0.3795513 0.3637862 0.1409607 -0.3944623 0.3637862 0.1409607 -0.4085988 0.3637862 0.1409607 -0.4220313 0.3637862 0.1409607 -0.4348222 0.3637862 0.1409607 -0.4470264 0.3637862 0.1409607 -0.4586928 0.3637862 0.1409607 -0.4698649 0.3637862 0.1409607 -0.4805811 0.3637862 0.1409607 -0.490876 0.3637862 0.1409607 -0.5007803 0.3637862 0.1409607 -0.510322 0.3637862 0.1409607 -0.5195258 0.3637862 0.1409607 -0.5284142 0.3637862 0.1409607 -0.5370079 0.3637862 0.1409607 -0.5453253 0.3637862 0.1409607 -0.5533834 0.3637862 0.1409607 -0.5611974 0.3637862 0.1409607 -0.5687816 0.3637862 0.1409607 -0.092819 0.3795513 0.1409607 -0.1056428 0.3795513 0.1409607 -0.1201537 0.3795513 0.1409607 -0.1409607 0.3795513 0.1409607 -0.1678172 0.3795513 0.1409607 -0.1950164 0.3795513 0.1409607 -0.2210581 0.3795513 0.1409607 -0.245636 0.3795513 0.1409607 -0.2686816 0.3795513 0.1409607 -0.2902431 0.3795513 0.1409607 -0.3104189 0.3795513 0.1409607 -0.3293248 0.3795513 0.1409607 -0.3470774 0.3795513 0.1409607 -0.3637862 0.3795513 0.1409607 -0.3795513 0.3795513 0.1409607 -0.3944623 0.3795513 0.1409607 -0.4085988 0.3795513 0.1409607 -0.4220313 0.3795513 0.1409607 -0.4348222 0.3795513 0.1409607 -0.4470264 0.3795513 0.1409607 -0.4586928 0.3795513 0.1409607 -0.4698649 0.3795513 0.1409607 -0.4805811 0.3795513 0.1409607 -0.490876 0.3795513 0.1409607 -0.5007803 0.3795513 0.1409607 -0.510322 0.3795513 0.1409607 -0.5195258 0.3795513 0.1409607 -0.5284142 0.3795513 0.1409607 -0.5370079 0.3795513 0.1409607 -0.5453253 0.3795513 0.1409607 -0.5533834 0.3795513 0.1409607 -0.5611974 0.3795513 0.1409607 -0.5687816 0.3795513 0.1409607 -0.092819 0.3944623 0.1409607 -0.1056428 0.3944623 0.1409607 -0.1201537 0.3944623 0.1409607 -0.1409607 0.3944623 0.1409607 -0.1678172 0.3944623 0.1409607 -0.1950164 0.3944623 0.1409607 -0.2210581 0.3944623 0.1409607 -0.245636 0.3944623 0.1409607 -0.2686816 0.3944623 0.1409607 -0.2902431 0.3944623 0.1409607 -0.3104189 0.3944623 0.1409607 -0.3293248 0.3944623 0.1409607 -0.3470774 0.3944623 0.1409607 -0.3637862 0.3944623 0.1409607 -0.3795513 0.3944623 0.1409607 -0.3944623 0.3944623 0.1409607 -0.4085988 0.3944623 0.1409607 -0.4220313 0.3944623 0.1409607 -0.4348222 0.3944623 0.1409607 -0.4470264 0.3944623 0.1409607 -0.4586928 0.3944623 0.1409607 -0.4698649 0.3944623 0.1409607 -0.4805811 0.3944623 0.1409607 -0.490876 0.3944623 0.1409607 -0.5007803 0.3944623 0.1409607 -0.510322 0.3944623 0.1409607 -0.5195258 0.3944623 0.1409607 -0.5284142 0.3944623 0.1409607 -0.5370079 0.3944623 0.1409607 -0.5453253 0.3944623 0.1409607 -0.5533834 0.3944623 0.1409607 -0.5611974 0.3944623 0.1409607 -0.5687816 0.3944623 0.1409607 -0.092819 0.4085988 0.1409607 -0.1056428 0.4085988 0.1409607 -0.1201537 0.4085988 0.1409607 -0.1409607 0.4085988 0.1409607 -0.1678172 0.4085988 0.1409607 -0.1950164 0.4085988 0.1409607 -0.2210581 0.4085988 0.1409607 -0.245636 0.4085988 0.1409607 -0.2686816 0.4085988 0.1409607 -0.2902431 0.4085988 0.1409607 -0.3104189 0.4085988 0.1409607 -0.3293248 0.4085988 0.1409607 -0.3470774 0.4085988 0.1409607 -0.3637862 0.4085988 0.1409607 -0.3795513 0.4085988 0.1409607 -0.3944623 0.4085988 0.1409607 -0.4085988 0.4085988 0.1409607 -0.4220313 0.4085988 0.1409607 -0.4348222 0.4085988 0.1409607 -0.4470264 0.4085988 0.1409607 -0.4586928 0.4085988 0.1409607 -0.4698649 0.4085988 0.1409607 -0.4805811 0.4085988 0.1409607 -0.490876 0.4085988 0.1409607 -0.5007803 0.4085988 0.1409607 -0.510322 0.4085988 0.1409607 -0.5195258 0.4085988 0.1409607 -0.5284142 0.4085988 0.1409607 -0.5370079 0.4085988 0.1409607 -0.5453253 0.4085988 0.1409607 -0.5533834 0.4085988 0.1409607 -0.5611974 0.4085988 0.1409607 -0.5687816 0.4085988 0.1409607 -0.092819 0.4220313 0.1409607 -0.1056428 0.4220313 0.1409607 -0.1201537 0.4220313 0.1409607 -0.1409607 0.4220313 0.1409607 -0.1678172 0.4220313 0.1409607 -0.1950164 0.4220313 0.1409607 -0.2210581 0.4220313 0.1409607 -0.245636 0.4220313 0.1409607 -0.2686816 0.4220313 0.1409607 -0.2902431 0.4220313 0.1409607 -0.3104189 0.4220313 0.1409607 -0.3293248 0.4220313 0.1409607 -0.3470774 0.4220313 0.1409607 -0.3637862 0.4220313 0.1409607 -0.3795513 0.4220313 0.1409607 -0.3944623 0.4220313 0.1409607 -0.4085988 0.4220313 0.1409607 -0.4220313 0.4220313 0.1409607 -0.4348222 0.4220313 0.1409607 -0.4470264 0.4220313 0.1409607 -0.4586928 0.4220313 0.1409607 -0.4698649 0.4220313 0.1409607 -0.4805811 0.4220313 0.1409607 -0.490876 0.4220313 0.1409607 -0.5007803 0.4220313 0.1409607 -0.510322 0.4220313 0.1409607 -0.5195258 0.4220313 0.1409607 -0.5284142 0.4220313 0.1409607 -0.5370079 0.4220313 0.1409607 -0.5453253 0.4220313 0.1409607 -0.5533834 0.4220313 0.1409607 -0.5611974 0.4220313 0.1409607 -0.5687816 0.4220313 0.1409607 -0.092819 0.4348222 0.1409607 -0.1056428 0.4348222 0.1409607 -0.1201537 0.4348222 0.1409607 -0.1409607 0.4348222 0.1409607 -0.1678172 0.4348222 0.1409607 -0.1950164 0.4348222 0.1409607 -0.2210581 0.4348222 0.1409607 -0.245636 0.4348222 0.1409607 -0.2686816 0.4348222 0.1409607 -0.2902431 0.4348222 0.1409607 -0.3104189 0.4348222 0.1409607 -0.3293248 0.4348222 0.1409607 -0.3470774 0.4348222 0.1409607 -0.3637862 0.4348222 0.1409607 -0.3795513 0.4348222 0.1409607 -0.3944623 0.4348222 0.1409607 -0.4085988 0.4348222 0.1409607 -0.4220313 0.4348222 0.1409607 -0.4348222 0.4348222 0.1409607 -0.4470264 0.4348222 0.1409607 -0.4586928 0.4348222 0.1409607 -0.4698649 0.4348222 0.1409607 -0.4805811 0.4348222 0.1409607 -0.490876 0.4348222 0.1409607 -0.5007803 0.4348222 0.1409607 -0.510322 0.4348222 0.1409607 -0.5195258 0.4348222 0.1409607 -0.5284142 0.4348222 0.1409607 -0.5370079 0.4348222 0.1409607 -0.5453253 0.4348222 0.1409607 -0.5533834 0.4348222 0.1409607 -0.5611974 0.4348222 0.1409607 -0.5687816 0.4348222 0.1409607 -0.092819 0.4470264 0.1409607 -0.1056428 0.4470264 0.1409607 -0.1201537 0.4470264 0.1409607 -0.1409607 0.4470264 0.1409607 -0.1678172 0.4470264 0.1409607 -0.1950164 0.4470264 0.1409607 -0.2210581 0.4470264 0.1409607 -0.245636 0.4470264 0.1409607 -0.2686816 0.4470264 0.1409607 -0.2902431 0.4470264 0.1409607 -0.3104189 0.4470264 0.1409607 -0.3293248 0.4470264 0.1409607 -0.3470774 0.4470264 0.1409607 -0.3637862 0.4470264 0.1409607 -0.3795513 0.4470264 0.1409607 -0.3944623 0.4470264 0.1409607 -0.4085988 0.4470264 0.1409607 -0.4220313 0.4470264 0.1409607 -0.4348222 0.4470264 0.1409607 -0.4470264 0.4470264 0.1409607 -0.4586928 0.4470264 0.1409607 -0.4698649 0.4470264 0.1409607 -0.4805811 0.4470264 0.1409607 -0.490876 0.4470264 0.1409607 -0.5007803 0.4470264 0.1409607 -0.510322 0.4470264 0.1409607 -0.5195258 0.4470264 0.1409607 -0.5284142 0.4470264 0.1409607 -0.5370079 0.4470264 0.1409607 -0.5453253 0.4470264 0.1409607 -0.5533834 0.4470264 0.1409607 -0.5611974 0.4470264 0.1409607 -0.5687816 0.4470264 0.1409607 -0.092819 0.4586928 0.1409607 -0.1056428 0.4586928 0.1409607 -0.1201537 0.4586928 0.1409607 -0.1409607 0.4586928 0.1409607 -0.1678172 0.4586928 0.1409607 -0.1950164 0.4586928 0.1409607 -0.2210581 0.4586928 0.1409607 -0.245636 0.4586928 0.1409607 -0.2686816 0.4586928 0.1409607 -0.2902431 0.4586928 0.1409607 -0.3104189 0.4586928 0.1409607 -0.3293248 0.4586928 0.1409607 -0.3470774 0.4586928 0.1409607 -0.3637862 0.4586928 0.1409607 -0.3795513 0.4586928 0.1409607 -0.3944623 0.4586928 0.1409607 -0.4085988 0.4586928 0.1409607 -0.4220313 0.4586928 0.1409607 -0.4348222 0.4586928 0.1409607 -0.4470264 0.4586928 0.1409607 -0.4586928 0.4586928 0.1409607 -0.4698649 0.4586928 0.1409607 -0.4805811 0.4586928 0.1409607 -0.490876 0.4586928 0.1409607 -0.5007803 0.4586928 0.1409607 -0.510322 0.4586928 0.1409607 -0.5195258 0.4586928 0.1409607 -0.5284142 0.4586928 0.1409607 -0.5370079 0.4586928 0.1409607 -0.5453253 0.4586928 0.1409607 -0.5533834 0.4586928 0.1409607 -0.5611974 0.4586928 0.1409607 -0.5687816 0.4586928 0.1409607 -0.092819 0.4698649 0.1409607 -0.1056428 0.4698649 0.1409607 -0.1201537 0.4698649 0.1409607 -0.1409607 0.4698649 0.1409607 -0.1678172 0.4698649 0.1409607 -0.1950164 0.4698649 0.1409607 -0.2210581 0.4698649 0.1409607 -0.245636 0.4698649 0.1409607 -0.2686816 0.4698649 0.1409607 -0.2902431 0.4698649 0.1409607 -0.3104189 0.4698649 0.1409607 -0.3293248 0.4698649 0.1409607 -0.3470774 0.4698649 0.1409607 -0.3637862 0.4698649 0.1409607 -0.3795513 0.4698649 0.1409607 -0.3944623 0.4698649 0.1409607 -0.4085988 0.4698649 0.1409607 -0.4220313 0.4698649 0.1409607 -0.4348222 0.4698649 0.1409607 -0.4470264 0.4698649 0.1409607 -0.4586928 0.4698649 0.1409607 -0.4698649 0.4698649 0.1409607 -0.4805811 0.4698649 0.1409607 -0.490876 0.4698649 0.1409607 -0.5007803 0.4698649 0.1409607 -0.510322 0.4698649 0.1409607 -0.5195258 0.4698649 0.1409607 -0.5284142 0.4698649 0.1409607 -0.5370079 0.4698649 0.1409607 -0.5453253 0.4698649 0.1409607 -0.5533834 0.4698649 0.1409607 -0.5611974 0.4698649 0.1409607 -0.5687816 0.4698649 0.1409607 -0.092819 0.4805811 0.1409607 -0.1056428 0.4805811 0.1409607 -0.1201537 0.4805811 0.1409607 -0.1409607 0.4805811 0.1409607 -0.1678172 0.4805811 0.1409607 -0.1950164 0.4805811 0.1409607 -0.2210581 0.4805811 0.1409607 -0.245636 0.4805811 0.1409607 -0.2686816 0.4805811 0.1409607 -0.2902431 0.4805811 0.1409607 -0.3104189 0.4805811 0.1409607 -0.3293248 0.4805811 0.1409607 -0.3470774 0.4805811 0.1409607 -0.3637862 0.4805811 0.1409607 -0.3795513 0.4805811 0.1409607 -0.3944623 0.4805811 0.1409607 -0.4085988 0.4805811 0.1409607 -0.4220313 0.4805811 0.1409607 -0.4348222 0.4805811 0.1409607 -0.4470264 0.4805811 0.1409607 -0.4586928 0.4805811 0.1409607 -0.4698649 0.4805811 0.1409607 -0.4805811 0.4805811 0.1409607 -0.490876 0.4805811 0.1409607 -0.5007803 0.4805811 0.1409607 -0.510322 0.4805811 0.1409607 -0.5195258 0.4805811 0.1409607 -0.5284142 0.4805811 0.1409607 -0.5370079 0.4805811 0.1409607 -0.5453253 0.4805811 0.1409607 -0.5533834 0.4805811 0.1409607 -0.5611974 0.4805811 0.1409607 -0.5687816 0.4805811 0.1409607 -0.092819 0.490876 0.1409607 -0.1056428 0.490876 0.1409607 -0.1201537 0.490876 0.1409607 -0.1409607 0.490876 0.1409607 -0.1678172 0.490876 0.1409607 -0.1950164 0.490876 0.1409607 -0.2210581 0.490876 0.1409607 -0.245636 0.490876 0.1409607 -0.2686816 0.490876 0.1409607 -0.2902431 0.490876 0.1409607 -0.3104189 0.490876 0.1409607 -0.3293248 0.490876 0.1409607 -0.3470774 0.490876 0.1409607 -0.3637862 0.490876 0.1409607 -0.3795513 0.490876 0.1409607 -0.3944623 0.490876 0.1409607 -0.4085988 0.490876 0.1409607 -0.4220313 0.490876 0.1409607 -0.4348222 0.490876 0.1409607 -0.4470264 0.490876 0.1409607 -0.4586928 0.490876 0.1409607 -0.4698649 0.490876 0.1409607 -0.4805811 0.490876 0.1409607 -0.490876 0.490876 0.1409607 -0.5007803 0.490876 0.1409607 -0.510322 0.490876 0.1409607 -0.5195258 0.490876 0.1409607 -0.5284142 0.490876 0.1409607 -0.5370079 0.490876 0.1409607 -0.5453253 0.490876 0.1409607 -0.5533834 0.490876 0.1409607 -0.5611974 0.490876 0.1409607 -0.5687816 0.490876 0.1409607 -0.092819 0.5007803 0.1409607 -0.1056428 0.5007803 0.1409607 -0.1201537 0.5007803 0.1409607 -0.1409607 0.5007803 0.1409607 -0.1678172 0.5007803 0.1409607 -0.1950164 0.5007803 0.1409607 -0.2210581 0.5007803 0.1409607 -0.245636 0.5007803 0.1409607 -0.2686816 0.5007803 0.1409607 -0.2902431 0.5007803 0.1409607 -0.3104189 0.5007803 0.1409607 -0.3293248 0.5007803 0.1409607 -0.3470774 0.5007803 0.1409607 -0.3637862 0.5007803 0.1409607 -0.3795513 0.5007803 0.1409607 -0.3944623 0.5007803 0.1409607 -0.4085988 0.5007803 0.1409607 -0.4220313 0.5007803 0.1409607 -0.4348222 0.5007803 0.1409607 -0.4470264 0.5007803 0.1409607 -0.4586928 0.5007803 0.1409607 -0.4698649 0.5007803 0.1409607 -0.4805811 0.5007803 0.1409607 -0.490876 0.5007803 0.1409607 -0.5007803 0.5007803 0.1409607 -0.510322 0.5007803 0.1409607 -0.5195258 0.5007803 0.1409607 -0.5284142 0.5007803 0.1409607 -0.5370079 0.5007803 0.1409607 -0.5453253 0.5007803 0.1409607 -0.5533834 0.5007803 0.1409607 -0.5611974 0.5007803 0.1409607 -0.5687816 0.5007803 0.1409607 -0.092819 0.510322 0.1409607 -0.1056428 0.510322 0.1409607 -0.1201537 0.510322 0.1409607 -0.1409607 0.510322 0.1409607 -0.1678172 0.510322 0.1409607 -0.1950164 0.510322 0.1409607 -0.2210581 0.510322 0.1409607 -0.245636 0.510322 0.1409607 -0.2686816 0.510322 0.1409607 -0.2902431 0.510322 0.1409607 -0.3104189 0.510322 0.1409607 -0.3293248 0.510322 0.1409607 -0.3470774 0.510322 0.1409607 -0.3637862 0.510322 0.1409607 -0.3795513 0.510322 0.1409607 -0.3944623 0.510322 0.1409607 -0.4085988 0.510322 0.1409607 -0.4220313 0.510322 0.1409607 -0.4348222 0.510322 0.1409607 -0.4470264 0.510322 0.1409607 -0.4586928 0.510322 0.1409607 -0.4698649 0.510322 0.1409607 -0.4805811 0.510322 0.1409607 -0.490876 0.510322 0.1409607 -0.5007803 0.510322 0.1409607 -0.510322 0.510322 0.1409607 -0.5195258 0.510322 0.1409607 -0.5284142 0.510322 0.1409607 -0.5370079 0.510322 0.1409607 -0.5453253 0.510322 0.1409607 -0.5533834 0.510322 0.1409607 -0.5611974 0.510322 0.1409607 -0.5687816 0.510322 0.1409607 -0.092819 0.5195258 0.1409607 -0.1056428 0.5195258 0.1409607 -0.1201537 0.5195258 0.1409607 -0.1409607 0.5195258 0.1409607 -0.1678172 0.5195258 0.1409607 -0.1950164 0.5195258 0.1409607 -0.2210581 0.5195258 0.1409607 -0.245636 0.5195258 0.1409607 -0.2686816 0.5195258 0.1409607 -0.2902431 0.5195258 0.1409607 -0.3104189 0.5195258 0.1409607 -0.3293248 0.5195258 0.1409607 -0.3470774 0.5195258 0.1409607 -0.3637862 0.5195258 0.1409607 -0.3795513 0.5195258 0.1409607 -0.3944623 0.5195258 0.1409607 -0.4085988 0.5195258 0.1409607 -0.4220313 0.5195258 0.1409607 -0.4348222 0.5195258 0.1409607 -0.4470264 0.5195258 0.1409607 -0.4586928 0.5195258 0.1409607 -0.4698649 0.5195258 0.1409607 -0.4805811 0.5195258 0.1409607 -0.490876 0.5195258 0.1409607 -0.5007803 0.5195258 0.1409607 -0.510322 0.5195258 0.1409607 -0.5195258 0.5195258 0.1409607 -0.5284142 0.5195258 0.1409607 -0.5370079 0.5195258 0.1409607 -0.5453253 0.5195258 0.1409607 -0.5533834 0.5195258 0.1409607 -0.5611974 0.5195258 0.1409607 -0.5687816 0.5195258 0.1409607 -0.092819 0.5284142 0.1409607 -0.1056428 0.5284142 0.1409607 -0.1201537 0.5284142 0.1409607 -0.1409607 0.5284142 0.1409607 -0.1678172 0.5284142 0.1409607 -0.1950164 0.5284142 0.1409607 -0.2210581 0.5284142 0.1409607 -0.245636 0.5284142 0.1409607 -0.2686816 0.5284142 0.1409607 -0.2902431 0.5284142 0.1409607 -0.3104189 0.5284142 0.1409607 -0.3293248 0.5284142 0.1409607 -0.3470774 0.5284142 0.1409607 -0.3637862 0.5284142 0.1409607 -0.3795513 0.5284142 0.1409607 -0.3944623 0.5284142 0.1409607 -0.4085988 0.5284142 0.1409607 -0.4220313 0.5284142 0.1409607 -0.4348222 0.5284142 0.1409607 -0.4470264 0.5284142 0.1409607 -0.4586928 0.5284142 0.1409607 -0.4698649 0.5284142 0.1409607 -0.4805811 0.5284142 0.1409607 -0.490876 0.5284142 0.1409607 -0.5007803 0.5284142 0.1409607 -0.510322 0.5284142 0.1409607 -0.5195258 0.5284142 0.1409607 -0.5284142 0.5284142 0.1409607 -0.5370079 0.5284142 0.1409607 -0.5453253 0.5284142 0.1409607 -0.5533834 0.5284142 0.1409607 -0.5611974 0.5284142 0.1409607 -0.5687816 0.5284142 0.1409607 -0.092819 0.5370079 0.1409607 -0.1056428 0.5370079 0.1409607 -0.1201537 0.5370079 0.1409607 -0.1409607 0.5370079 0.1409607 -0.1678172 0.5370079 0.1409607 -0.1950164 0.5370079 0.1409607 -0.2210581 0.5370079 0.1409607 -0.245636 0.5370079 0.1409607 -0.2686816 0.5370079 0.1409607 -0.2902431 0.5370079 0.1409607 -0.3104189 0.5370079 0.1409607 -0.3293248 0.5370079 0.1409607 -0.3470774 0.5370079 0.1409607 -0.3637862 0.5370079 0.1409607 -0.3795513 0.5370079 0.1409607 -0.3944623 0.5370079 0.1409607 -0.4085988 0.5370079 0.1409607 -0.4220313 0.5370079 0.1409607 -0.4348222 0.5370079 0.1409607 -0.4470264 0.5370079 0.1409607 -0.4586928 0.5370079 0.1409607 -0.4698649 0.5370079 0.1409607 -0.4805811 0.5370079 0.1409607 -0.490876 0.5370079 0.1409607 -0.5007803 0.5370079 0.1409607 -0.510322 0.5370079 0.1409607 -0.5195258 0.5370079 0.1409607 -0.5284142 0.5370079 0.1409607 -0.5370079 0.5370079 0.1409607 -0.5453253 0.5370079 0.1409607 -0.5533834 0.5370079 0.1409607 -0.5611974 0.5370079 0.1409607 -0.5687816 0.5370079 0.1409607 -0.092819 0.5453253 0.1409607 -0.1056428 0.5453253 0.1409607 -0.1201537 0.5453253 0.1409607 -0.1409607 0.5453253 0.1409607 -0.1678172 0.5453253 0.1409607 -0.1950164 0.5453253 0.1409607 -0.2210581 0.5453253 0.1409607 -0.245636 0.5453253 0.1409607 -0.2686816 0.5453253 0.1409607 -0.2902431 0.5453253 0.1409607 -0.3104189 0.5453253 0.1409607 -0.3293248 0.5453253 0.1409607 -0.3470774 0.5453253 0.1409607 -0.3637862 0.5453253 0.1409607 -0.3795513 0.5453253 0.1409607 -0.3944623 0.5453253 0.1409607 -0.4085988 0.5453253 0.1409607 -0.4220313 0.5453253 0.1409607 -0.4348222 0.5453253 0.1409607 -0.4470264 0.5453253 0.1409607 -0.4586928 0.5453253 0.1409607 -0.4698649 0.5453253 0.1409607 -0.4805811 0.5453253 0.1409607 -0.490876 0.5453253 0.1409607 -0.5007803 0.5453253 0.1409607 -0.510322 0.5453253 0.1409607 -0.5195258 0.5453253 0.1409607 -0.5284142 0.5453253 0.1409607 -0.5370079 0.5453253 0.1409607 -0.5453253 0.5453253 0.1409607 -0.5533834 0.5453253 0.1409607 -0.5611974 0.5453253 0.1409607 -0.5687816 0.5453253 0.1409607 -0.092819 0.5533834 0.1409607 -0.1056428 0.5533834 0.1409607 -0.1201537 0.5533834 0.1409607 -0.1409607 0.5533834 0.1409607 -0.1678172 0.5533834 0.1409607 -0.1950164 0.5533834 0.1409607 -0.2210581 0.5533834 0.1409607 -0.245636 0.5533834 0.1409607 -0.2686816 0.5533834 0.1409607 -0.2902431 0.5533834 0.1409607 -0.3104189 0.5533834 0.1409607 -0.3293248 0.5533834 0.1409607 -0.3470774 0.5533834 0.1409607 -0.3637862 0.5533834 0.1409607 -0.3795513 0.5533834 0.1409607 -0.3944623 0.5533834 0.1409607 -0.4085988 0.5533834 0.1409607 -0.4220313 0.5533834 0.1409607 -0.4348222 0.5533834 0.1409607 -0.4470264 0.5533834 0.1409607 -0.4586928 0.5533834 0.1409607 -0.4698649 0.5533834 0.1409607 -0.4805811 0.5533834 0.1409607 -0.490876 0.5533834 0.1409607 -0.5007803 0.5533834 0.1409607 -0.510322 0.5533834 0.1409607 -0.5195258 0.5533834 0.1409607 -0.5284142 0.5533834 0.1409607 -0.5370079 0.5533834 0.1409607 -0.5453253 0.5533834 0.1409607 -0.5533834 0.5533834 0.1409607 -0.5611974 0.5533834 0.1409607 -0.5687816 0.5533834 0.1409607 -0.092819 0.5611974 0.1409607 -0.1056428 0.5611974 0.1409607 -0.1201537 0.5611974 0.1409607 -0.1409607 0.5611974 0.1409607 -0.1678172 0.5611974 0.1409607 -0.1950164 0.5611974 0.1409607 -0.2210581 0.5611974 0.1409607 -0.245636 0.5611974 0.1409607 -0.2686816 0.5611974 0.1409607 -0.2902431 0.5611974 0.1409607 -0.3104189 0.5611974 0.1409607 -0.3293248 0.5611974 0.1409607 -0.3470774 0.5611974 0.1409607 -0.3637862 0.5611974 0.1409607 -0.3795513 0.5611974 0.1409607 -0.3944623 0.5611974 0.1409607 -0.4085988 0.5611974 0.1409607 -0.4220313 0.5611974 0.1409607 -0.4348222 0.5611974 0.1409607 -0.4470264 0.5611974 0.1409607 -0.4586928 0.5611974 0.1409607 -0.4698649 0.5611974 0.1409607 -0.4805811 0.5611974 0.1409607 -0.490876 0.5611974 0.1409607 -0.5007803 0.5611974 0.1409607 -0.510322 0.5611974 0.1409607 -0.5195258 0.5611974 0.1409607 -0.5284142 0.5611974 0.1409607 -0.5370079 0.5611974 0.1409607 -0.5453253 0.5611974 0.1409607 -0.5533834 0.5611974 0.1409607 -0.5611974 0.5611974 0.1409607 -0.5687816 0.5611974 0.1409607 -0.092819 0.5687816 0.1409607 -0.1056428 0.5687816 0.1409607 -0.1201537 0.5687816 0.1409607 -0.1409607 0.5687816 0.1409607 -0.1678172 0.5687816 0.1409607 -0.1950164 0.5687816 0.1409607 -0.2210581 0.5687816 0.1409607 -0.245636 0.5687816 0.1409607 -0.2686816 0.5687816 0.1409607 -0.2902431 0.5687816 0.1409607 -0.3104189 0.5687816 0.1409607 -0.3293248 0.5687816 0.1409607 -0.3470774 0.5687816 0.1409607 -0.3637862 0.5687816 0.1409607 -0.3795513 0.5687816 0.1409607 -0.3944623 0.5687816 0.1409607 -0.4085988 0.5687816 0.1409607 -0.4220313 0.5687816 0.1409607 -0.4348222 0.5687816 0.1409607 -0.4470264 0.5687816 0.1409607 -0.4586928 0.5687816 0.1409607 -0.4698649 0.5687816 0.1409607 -0.4805811 0.5687816 0.1409607 -0.490876 0.5687816 0.1409607 -0.5007803 0.5687816 0.1409607 -0.510322 0.5687816 0.1409607 -0.5195258 0.5687816 0.1409607 -0.5284142 0.5687816 0.1409607 -0.5370079 0.5687816 0.1409607 -0.5453253 0.5687816 0.1409607 -0.5533834 0.5687816 0.1409607 -0.5611974 0.5687816 0.1409607 -0.5687816 0.5687816 0.1409607 -0.092819 0.092819 0.1678172 -0.1056428 0.092819 0.1678172 -0.1201537 0.092819 0.1678172 -0.1409607 0.092819 0.1678172 -0.1678172 0.092819 0.1678172 -0.1950164 0.092819 0.1678172 -0.2210581 0.092819 0.1678172 -0.245636 0.092819 0.1678172 -0.2686816 0.092819 0.1678172 -0.2902431 0.092819 0.1678172 -0.3104189 0.092819 0.1678172 -0.3293248 0.092819 0.1678172 -0.3470774 0.092819 0.1678172 -0.3637862 0.092819 0.1678172 -0.3795513 0.092819 0.1678172 -0.3944623 0.092819 0.1678172 -0.4085988 0.092819 0.1678172 -0.4220313 0.092819 0.1678172 -0.4348222 0.092819 0.1678172 -0.4470264 0.092819 0.1678172 -0.4586928 0.092819 0.1678172 -0.4698649 0.092819 0.1678172 -0.4805811 0.092819 0.1678172 -0.490876 0.092819 0.1678172 -0.5007803 0.092819 0.1678172 -0.510322 0.092819 0.1678172 -0.5195258 0.092819 0.1678172 -0.5284142 0.092819 0.1678172 -0.5370079 0.092819 0.1678172 -0.5453253 0.092819 0.1678172 -0.5533834 0.092819 0.1678172 -0.5611974 0.092819 0.1678172 -0.5687816 0.092819 0.1678172 -0.092819 0.1056428 0.1678172 -0.1056428 0.1056428 0.1678172 -0.1201537 0.1056428 0.1678172 -0.1409607 0.1056428 0.1678172 -0.1678172 0.1056428 0.1678172 -0.1950164 0.1056428 0.1678172 -0.2210581 0.1056428 0.1678172 -0.245636 0.1056428 0.1678172 -0.2686816 0.1056428 0.1678172 -0.2902431 0.1056428 0.1678172 -0.3104189 0.1056428 0.1678172 -0.3293248 0.1056428 0.1678172 -0.3470774 0.1056428 0.1678172 -0.3637862 0.1056428 0.1678172 -0.3795513 0.1056428 0.1678172 -0.3944623 0.1056428 0.1678172 -0.4085988 0.1056428 0.1678172 -0.4220313 0.1056428 0.1678172 -0.4348222 0.1056428 0.1678172 -0.4470264 0.1056428 0.1678172 -0.4586928 0.1056428 0.1678172 -0.4698649 0.1056428 0.1678172 -0.4805811 0.1056428 0.1678172 -0.490876 0.1056428 0.1678172 -0.5007803 0.1056428 0.1678172 -0.510322 0.1056428 0.1678172 -0.5195258 0.1056428 0.1678172 -0.5284142 0.1056428 0.1678172 -0.5370079 0.1056428 0.1678172 -0.5453253 0.1056428 0.1678172 -0.5533834 0.1056428 0.1678172 -0.5611974 0.1056428 0.1678172 -0.5687816 0.1056428 0.1678172 -0.092819 0.1201537 0.1678172 -0.1056428 0.1201537 0.1678172 -0.1201537 0.1201537 0.1678172 -0.1409607 0.1201537 0.1678172 -0.1678172 0.1201537 0.1678172 -0.1950164 0.1201537 0.1678172 -0.2210581 0.1201537 0.1678172 -0.245636 0.1201537 0.1678172 -0.2686816 0.1201537 0.1678172 -0.2902431 0.1201537 0.1678172 -0.3104189 0.1201537 0.1678172 -0.3293248 0.1201537 0.1678172 -0.3470774 0.1201537 0.1678172 -0.3637862 0.1201537 0.1678172 -0.3795513 0.1201537 0.1678172 -0.3944623 0.1201537 0.1678172 -0.4085988 0.1201537 0.1678172 -0.4220313 0.1201537 0.1678172 -0.4348222 0.1201537 0.1678172 -0.4470264 0.1201537 0.1678172 -0.4586928 0.1201537 0.1678172 -0.4698649 0.1201537 0.1678172 -0.4805811 0.1201537 0.1678172 -0.490876 0.1201537 0.1678172 -0.5007803 0.1201537 0.1678172 -0.510322 0.1201537 0.1678172 -0.5195258 0.1201537 0.1678172 -0.5284142 0.1201537 0.1678172 -0.5370079 0.1201537 0.1678172 -0.5453253 0.1201537 0.1678172 -0.5533834 0.1201537 0.1678172 -0.5611974 0.1201537 0.1678172 -0.5687816 0.1201537 0.1678172 -0.092819 0.1409607 0.1678172 -0.1056428 0.1409607 0.1678172 -0.1201537 0.1409607 0.1678172 -0.1409607 0.1409607 0.1678172 -0.1678172 0.1409607 0.1678172 -0.1950164 0.1409607 0.1678172 -0.2210581 0.1409607 0.1678172 -0.245636 0.1409607 0.1678172 -0.2686816 0.1409607 0.1678172 -0.2902431 0.1409607 0.1678172 -0.3104189 0.1409607 0.1678172 -0.3293248 0.1409607 0.1678172 -0.3470774 0.1409607 0.1678172 -0.3637862 0.1409607 0.1678172 -0.3795513 0.1409607 0.1678172 -0.3944623 0.1409607 0.1678172 -0.4085988 0.1409607 0.1678172 -0.4220313 0.1409607 0.1678172 -0.4348222 0.1409607 0.1678172 -0.4470264 0.1409607 0.1678172 -0.4586928 0.1409607 0.1678172 -0.4698649 0.1409607 0.1678172 -0.4805811 0.1409607 0.1678172 -0.490876 0.1409607 0.1678172 -0.5007803 0.1409607 0.1678172 -0.510322 0.1409607 0.1678172 -0.5195258 0.1409607 0.1678172 -0.5284142 0.1409607 0.1678172 -0.5370079 0.1409607 0.1678172 -0.5453253 0.1409607 0.1678172 -0.5533834 0.1409607 0.1678172 -0.5611974 0.1409607 0.1678172 -0.5687816 0.1409607 0.1678172 -0.092819 0.1678172 0.1678172 -0.1056428 0.1678172 0.1678172 -0.1201537 0.1678172 0.1678172 -0.1409607 0.1678172 0.1678172 -0.1678172 0.1678172 0.1678172 -0.1950164 0.1678172 0.1678172 -0.2210581 0.1678172 0.1678172 -0.245636 0.1678172 0.1678172 -0.2686816 0.1678172 0.1678172 -0.2902431 0.1678172 0.1678172 -0.3104189 0.1678172 0.1678172 -0.3293248 0.1678172 0.1678172 -0.3470774 0.1678172 0.1678172 -0.3637862 0.1678172 0.1678172 -0.3795513 0.1678172 0.1678172 -0.3944623 0.1678172 0.1678172 -0.4085988 0.1678172 0.1678172 -0.4220313 0.1678172 0.1678172 -0.4348222 0.1678172 0.1678172 -0.4470264 0.1678172 0.1678172 -0.4586928 0.1678172 0.1678172 -0.4698649 0.1678172 0.1678172 -0.4805811 0.1678172 0.1678172 -0.490876 0.1678172 0.1678172 -0.5007803 0.1678172 0.1678172 -0.510322 0.1678172 0.1678172 -0.5195258 0.1678172 0.1678172 -0.5284142 0.1678172 0.1678172 -0.5370079 0.1678172 0.1678172 -0.5453253 0.1678172 0.1678172 -0.5533834 0.1678172 0.1678172 -0.5611974 0.1678172 0.1678172 -0.5687816 0.1678172 0.1678172 -0.092819 0.1950164 0.1678172 -0.1056428 0.1950164 0.1678172 -0.1201537 0.1950164 0.1678172 -0.1409607 0.1950164 0.1678172 -0.1678172 0.1950164 0.1678172 -0.1950164 0.1950164 0.1678172 -0.2210581 0.1950164 0.1678172 -0.245636 0.1950164 0.1678172 -0.2686816 0.1950164 0.1678172 -0.2902431 0.1950164 0.1678172 -0.3104189 0.1950164 0.1678172 -0.3293248 0.1950164 0.1678172 -0.3470774 0.1950164 0.1678172 -0.3637862 0.1950164 0.1678172 -0.3795513 0.1950164 0.1678172 -0.3944623 0.1950164 0.1678172 -0.4085988 0.1950164 0.1678172 -0.4220313 0.1950164 0.1678172 -0.4348222 0.1950164 0.1678172 -0.4470264 0.1950164 0.1678172 -0.4586928 0.1950164 0.1678172 -0.4698649 0.1950164 0.1678172 -0.4805811 0.1950164 0.1678172 -0.490876 0.1950164 0.1678172 -0.5007803 0.1950164 0.1678172 -0.510322 0.1950164 0.1678172 -0.5195258 0.1950164 0.1678172 -0.5284142 0.1950164 0.1678172 -0.5370079 0.1950164 0.1678172 -0.5453253 0.1950164 0.1678172 -0.5533834 0.1950164 0.1678172 -0.5611974 0.1950164 0.1678172 -0.5687816 0.1950164 0.1678172 -0.092819 0.2210581 0.1678172 -0.1056428 0.2210581 0.1678172 -0.1201537 0.2210581 0.1678172 -0.1409607 0.2210581 0.1678172 -0.1678172 0.2210581 0.1678172 -0.1950164 0.2210581 0.1678172 -0.2210581 0.2210581 0.1678172 -0.245636 0.2210581 0.1678172 -0.2686816 0.2210581 0.1678172 -0.2902431 0.2210581 0.1678172 -0.3104189 0.2210581 0.1678172 -0.3293248 0.2210581 0.1678172 -0.3470774 0.2210581 0.1678172 -0.3637862 0.2210581 0.1678172 -0.3795513 0.2210581 0.1678172 -0.3944623 0.2210581 0.1678172 -0.4085988 0.2210581 0.1678172 -0.4220313 0.2210581 0.1678172 -0.4348222 0.2210581 0.1678172 -0.4470264 0.2210581 0.1678172 -0.4586928 0.2210581 0.1678172 -0.4698649 0.2210581 0.1678172 -0.4805811 0.2210581 0.1678172 -0.490876 0.2210581 0.1678172 -0.5007803 0.2210581 0.1678172 -0.510322 0.2210581 0.1678172 -0.5195258 0.2210581 0.1678172 -0.5284142 0.2210581 0.1678172 -0.5370079 0.2210581 0.1678172 -0.5453253 0.2210581 0.1678172 -0.5533834 0.2210581 0.1678172 -0.5611974 0.2210581 0.1678172 -0.5687816 0.2210581 0.1678172 -0.092819 0.245636 0.1678172 -0.1056428 0.245636 0.1678172 -0.1201537 0.245636 0.1678172 -0.1409607 0.245636 0.1678172 -0.1678172 0.245636 0.1678172 -0.1950164 0.245636 0.1678172 -0.2210581 0.245636 0.1678172 -0.245636 0.245636 0.1678172 -0.2686816 0.245636 0.1678172 -0.2902431 0.245636 0.1678172 -0.3104189 0.245636 0.1678172 -0.3293248 0.245636 0.1678172 -0.3470774 0.245636 0.1678172 -0.3637862 0.245636 0.1678172 -0.3795513 0.245636 0.1678172 -0.3944623 0.245636 0.1678172 -0.4085988 0.245636 0.1678172 -0.4220313 0.245636 0.1678172 -0.4348222 0.245636 0.1678172 -0.4470264 0.245636 0.1678172 -0.4586928 0.245636 0.1678172 -0.4698649 0.245636 0.1678172 -0.4805811 0.245636 0.1678172 -0.490876 0.245636 0.1678172 -0.5007803 0.245636 0.1678172 -0.510322 0.245636 0.1678172 -0.5195258 0.245636 0.1678172 -0.5284142 0.245636 0.1678172 -0.5370079 0.245636 0.1678172 -0.5453253 0.245636 0.1678172 -0.5533834 0.245636 0.1678172 -0.5611974 0.245636 0.1678172 -0.5687816 0.245636 0.1678172 -0.092819 0.2686816 0.1678172 -0.1056428 0.2686816 0.1678172 -0.1201537 0.2686816 0.1678172 -0.1409607 0.2686816 0.1678172 -0.1678172 0.2686816 0.1678172 -0.1950164 0.2686816 0.1678172 -0.2210581 0.2686816 0.1678172 -0.245636 0.2686816 0.1678172 -0.2686816 0.2686816 0.1678172 -0.2902431 0.2686816 0.1678172 -0.3104189 0.2686816 0.1678172 -0.3293248 0.2686816 0.1678172 -0.3470774 0.2686816 0.1678172 -0.3637862 0.2686816 0.1678172 -0.3795513 0.2686816 0.1678172 -0.3944623 0.2686816 0.1678172 -0.4085988 0.2686816 0.1678172 -0.4220313 0.2686816 0.1678172 -0.4348222 0.2686816 0.1678172 -0.4470264 0.2686816 0.1678172 -0.4586928 0.2686816 0.1678172 -0.4698649 0.2686816 0.1678172 -0.4805811 0.2686816 0.1678172 -0.490876 0.2686816 0.1678172 -0.5007803 0.2686816 0.1678172 -0.510322 0.2686816 0.1678172 -0.5195258 0.2686816 0.1678172 -0.5284142 0.2686816 0.1678172 -0.5370079 0.2686816 0.1678172 -0.5453253 0.2686816 0.1678172 -0.5533834 0.2686816 0.1678172 -0.5611974 0.2686816 0.1678172 -0.5687816 0.2686816 0.1678172 -0.092819 0.2902431 0.1678172 -0.1056428 0.2902431 0.1678172 -0.1201537 0.2902431 0.1678172 -0.1409607 0.2902431 0.1678172 -0.1678172 0.2902431 0.1678172 -0.1950164 0.2902431 0.1678172 -0.2210581 0.2902431 0.1678172 -0.245636 0.2902431 0.1678172 -0.2686816 0.2902431 0.1678172 -0.2902431 0.2902431 0.1678172 -0.3104189 0.2902431 0.1678172 -0.3293248 0.2902431 0.1678172 -0.3470774 0.2902431 0.1678172 -0.3637862 0.2902431 0.1678172 -0.3795513 0.2902431 0.1678172 -0.3944623 0.2902431 0.1678172 -0.4085988 0.2902431 0.1678172 -0.4220313 0.2902431 0.1678172 -0.4348222 0.2902431 0.1678172 -0.4470264 0.2902431 0.1678172 -0.4586928 0.2902431 0.1678172 -0.4698649 0.2902431 0.1678172 -0.4805811 0.2902431 0.1678172 -0.490876 0.2902431 0.1678172 -0.5007803 0.2902431 0.1678172 -0.510322 0.2902431 0.1678172 -0.5195258 0.2902431 0.1678172 -0.5284142 0.2902431 0.1678172 -0.5370079 0.2902431 0.1678172 -0.5453253 0.2902431 0.1678172 -0.5533834 0.2902431 0.1678172 -0.5611974 0.2902431 0.1678172 -0.5687816 0.2902431 0.1678172 -0.092819 0.3104189 0.1678172 -0.1056428 0.3104189 0.1678172 -0.1201537 0.3104189 0.1678172 -0.1409607 0.3104189 0.1678172 -0.1678172 0.3104189 0.1678172 -0.1950164 0.3104189 0.1678172 -0.2210581 0.3104189 0.1678172 -0.245636 0.3104189 0.1678172 -0.2686816 0.3104189 0.1678172 -0.2902431 0.3104189 0.1678172 -0.3104189 0.3104189 0.1678172 -0.3293248 0.3104189 0.1678172 -0.3470774 0.3104189 0.1678172 -0.3637862 0.3104189 0.1678172 -0.3795513 0.3104189 0.1678172 -0.3944623 0.3104189 0.1678172 -0.4085988 0.3104189 0.1678172 -0.4220313 0.3104189 0.1678172 -0.4348222 0.3104189 0.1678172 -0.4470264 0.3104189 0.1678172 -0.4586928 0.3104189 0.1678172 -0.4698649 0.3104189 0.1678172 -0.4805811 0.3104189 0.1678172 -0.490876 0.3104189 0.1678172 -0.5007803 0.3104189 0.1678172 -0.510322 0.3104189 0.1678172 -0.5195258 0.3104189 0.1678172 -0.5284142 0.3104189 0.1678172 -0.5370079 0.3104189 0.1678172 -0.5453253 0.3104189 0.1678172 -0.5533834 0.3104189 0.1678172 -0.5611974 0.3104189 0.1678172 -0.5687816 0.3104189 0.1678172 -0.092819 0.3293248 0.1678172 -0.1056428 0.3293248 0.1678172 -0.1201537 0.3293248 0.1678172 -0.1409607 0.3293248 0.1678172 -0.1678172 0.3293248 0.1678172 -0.1950164 0.3293248 0.1678172 -0.2210581 0.3293248 0.1678172 -0.245636 0.3293248 0.1678172 -0.2686816 0.3293248 0.1678172 -0.2902431 0.3293248 0.1678172 -0.3104189 0.3293248 0.1678172 -0.3293248 0.3293248 0.1678172 -0.3470774 0.3293248 0.1678172 -0.3637862 0.3293248 0.1678172 -0.3795513 0.3293248 0.1678172 -0.3944623 0.3293248 0.1678172 -0.4085988 0.3293248 0.1678172 -0.4220313 0.3293248 0.1678172 -0.4348222 0.3293248 0.1678172 -0.4470264 0.3293248 0.1678172 -0.4586928 0.3293248 0.1678172 -0.4698649 0.3293248 0.1678172 -0.4805811 0.3293248 0.1678172 -0.490876 0.3293248 0.1678172 -0.5007803 0.3293248 0.1678172 -0.510322 0.3293248 0.1678172 -0.5195258 0.3293248 0.1678172 -0.5284142 0.3293248 0.1678172 -0.5370079 0.3293248 0.1678172 -0.5453253 0.3293248 0.1678172 -0.5533834 0.3293248 0.1678172 -0.5611974 0.3293248 0.1678172 -0.5687816 0.3293248 0.1678172 -0.092819 0.3470774 0.1678172 -0.1056428 0.3470774 0.1678172 -0.1201537 0.3470774 0.1678172 -0.1409607 0.3470774 0.1678172 -0.1678172 0.3470774 0.1678172 -0.1950164 0.3470774 0.1678172 -0.2210581 0.3470774 0.1678172 -0.245636 0.3470774 0.1678172 -0.2686816 0.3470774 0.1678172 -0.2902431 0.3470774 0.1678172 -0.3104189 0.3470774 0.1678172 -0.3293248 0.3470774 0.1678172 -0.3470774 0.3470774 0.1678172 -0.3637862 0.3470774 0.1678172 -0.3795513 0.3470774 0.1678172 -0.3944623 0.3470774 0.1678172 -0.4085988 0.3470774 0.1678172 -0.4220313 0.3470774 0.1678172 -0.4348222 0.3470774 0.1678172 -0.4470264 0.3470774 0.1678172 -0.4586928 0.3470774 0.1678172 -0.4698649 0.3470774 0.1678172 -0.4805811 0.3470774 0.1678172 -0.490876 0.3470774 0.1678172 -0.5007803 0.3470774 0.1678172 -0.510322 0.3470774 0.1678172 -0.5195258 0.3470774 0.1678172 -0.5284142 0.3470774 0.1678172 -0.5370079 0.3470774 0.1678172 -0.5453253 0.3470774 0.1678172 -0.5533834 0.3470774 0.1678172 -0.5611974 0.3470774 0.1678172 -0.5687816 0.3470774 0.1678172 -0.092819 0.3637862 0.1678172 -0.1056428 0.3637862 0.1678172 -0.1201537 0.3637862 0.1678172 -0.1409607 0.3637862 0.1678172 -0.1678172 0.3637862 0.1678172 -0.1950164 0.3637862 0.1678172 -0.2210581 0.3637862 0.1678172 -0.245636 0.3637862 0.1678172 -0.2686816 0.3637862 0.1678172 -0.2902431 0.3637862 0.1678172 -0.3104189 0.3637862 0.1678172 -0.3293248 0.3637862 0.1678172 -0.3470774 0.3637862 0.1678172 -0.3637862 0.3637862 0.1678172 -0.3795513 0.3637862 0.1678172 -0.3944623 0.3637862 0.1678172 -0.4085988 0.3637862 0.1678172 -0.4220313 0.3637862 0.1678172 -0.4348222 0.3637862 0.1678172 -0.4470264 0.3637862 0.1678172 -0.4586928 0.3637862 0.1678172 -0.4698649 0.3637862 0.1678172 -0.4805811 0.3637862 0.1678172 -0.490876 0.3637862 0.1678172 -0.5007803 0.3637862 0.1678172 -0.510322 0.3637862 0.1678172 -0.5195258 0.3637862 0.1678172 -0.5284142 0.3637862 0.1678172 -0.5370079 0.3637862 0.1678172 -0.5453253 0.3637862 0.1678172 -0.5533834 0.3637862 0.1678172 -0.5611974 0.3637862 0.1678172 -0.5687816 0.3637862 0.1678172 -0.092819 0.3795513 0.1678172 -0.1056428 0.3795513 0.1678172 -0.1201537 0.3795513 0.1678172 -0.1409607 0.3795513 0.1678172 -0.1678172 0.3795513 0.1678172 -0.1950164 0.3795513 0.1678172 -0.2210581 0.3795513 0.1678172 -0.245636 0.3795513 0.1678172 -0.2686816 0.3795513 0.1678172 -0.2902431 0.3795513 0.1678172 -0.3104189 0.3795513 0.1678172 -0.3293248 0.3795513 0.1678172 -0.3470774 0.3795513 0.1678172 -0.3637862 0.3795513 0.1678172 -0.3795513 0.3795513 0.1678172 -0.3944623 0.3795513 0.1678172 -0.4085988 0.3795513 0.1678172 -0.4220313 0.3795513 0.1678172 -0.4348222 0.3795513 0.1678172 -0.4470264 0.3795513 0.1678172 -0.4586928 0.3795513 0.1678172 -0.4698649 0.3795513 0.1678172 -0.4805811 0.3795513 0.1678172 -0.490876 0.3795513 0.1678172 -0.5007803 0.3795513 0.1678172 -0.510322 0.3795513 0.1678172 -0.5195258 0.3795513 0.1678172 -0.5284142 0.3795513 0.1678172 -0.5370079 0.3795513 0.1678172 -0.5453253 0.3795513 0.1678172 -0.5533834 0.3795513 0.1678172 -0.5611974 0.3795513 0.1678172 -0.5687816 0.3795513 0.1678172 -0.092819 0.3944623 0.1678172 -0.1056428 0.3944623 0.1678172 -0.1201537 0.3944623 0.1678172 -0.1409607 0.3944623 0.1678172 -0.1678172 0.3944623 0.1678172 -0.1950164 0.3944623 0.1678172 -0.2210581 0.3944623 0.1678172 -0.245636 0.3944623 0.1678172 -0.2686816 0.3944623 0.1678172 -0.2902431 0.3944623 0.1678172 -0.3104189 0.3944623 0.1678172 -0.3293248 0.3944623 0.1678172 -0.3470774 0.3944623 0.1678172 -0.3637862 0.3944623 0.1678172 -0.3795513 0.3944623 0.1678172 -0.3944623 0.3944623 0.1678172 -0.4085988 0.3944623 0.1678172 -0.4220313 0.3944623 0.1678172 -0.4348222 0.3944623 0.1678172 -0.4470264 0.3944623 0.1678172 -0.4586928 0.3944623 0.1678172 -0.4698649 0.3944623 0.1678172 -0.4805811 0.3944623 0.1678172 -0.490876 0.3944623 0.1678172 -0.5007803 0.3944623 0.1678172 -0.510322 0.3944623 0.1678172 -0.5195258 0.3944623 0.1678172 -0.5284142 0.3944623 0.1678172 -0.5370079 0.3944623 0.1678172 -0.5453253 0.3944623 0.1678172 -0.5533834 0.3944623 0.1678172 -0.5611974 0.3944623 0.1678172 -0.5687816 0.3944623 0.1678172 -0.092819 0.4085988 0.1678172 -0.1056428 0.4085988 0.1678172 -0.1201537 0.4085988 0.1678172 -0.1409607 0.4085988 0.1678172 -0.1678172 0.4085988 0.1678172 -0.1950164 0.4085988 0.1678172 -0.2210581 0.4085988 0.1678172 -0.245636 0.4085988 0.1678172 -0.2686816 0.4085988 0.1678172 -0.2902431 0.4085988 0.1678172 -0.3104189 0.4085988 0.1678172 -0.3293248 0.4085988 0.1678172 -0.3470774 0.4085988 0.1678172 -0.3637862 0.4085988 0.1678172 -0.3795513 0.4085988 0.1678172 -0.3944623 0.4085988 0.1678172 -0.4085988 0.4085988 0.1678172 -0.4220313 0.4085988 0.1678172 -0.4348222 0.4085988 0.1678172 -0.4470264 0.4085988 0.1678172 -0.4586928 0.4085988 0.1678172 -0.4698649 0.4085988 0.1678172 -0.4805811 0.4085988 0.1678172 -0.490876 0.4085988 0.1678172 -0.5007803 0.4085988 0.1678172 -0.510322 0.4085988 0.1678172 -0.5195258 0.4085988 0.1678172 -0.5284142 0.4085988 0.1678172 -0.5370079 0.4085988 0.1678172 -0.5453253 0.4085988 0.1678172 -0.5533834 0.4085988 0.1678172 -0.5611974 0.4085988 0.1678172 -0.5687816 0.4085988 0.1678172 -0.092819 0.4220313 0.1678172 -0.1056428 0.4220313 0.1678172 -0.1201537 0.4220313 0.1678172 -0.1409607 0.4220313 0.1678172 -0.1678172 0.4220313 0.1678172 -0.1950164 0.4220313 0.1678172 -0.2210581 0.4220313 0.1678172 -0.245636 0.4220313 0.1678172 -0.2686816 0.4220313 0.1678172 -0.2902431 0.4220313 0.1678172 -0.3104189 0.4220313 0.1678172 -0.3293248 0.4220313 0.1678172 -0.3470774 0.4220313 0.1678172 -0.3637862 0.4220313 0.1678172 -0.3795513 0.4220313 0.1678172 -0.3944623 0.4220313 0.1678172 -0.4085988 0.4220313 0.1678172 -0.4220313 0.4220313 0.1678172 -0.4348222 0.4220313 0.1678172 -0.4470264 0.4220313 0.1678172 -0.4586928 0.4220313 0.1678172 -0.4698649 0.4220313 0.1678172 -0.4805811 0.4220313 0.1678172 -0.490876 0.4220313 0.1678172 -0.5007803 0.4220313 0.1678172 -0.510322 0.4220313 0.1678172 -0.5195258 0.4220313 0.1678172 -0.5284142 0.4220313 0.1678172 -0.5370079 0.4220313 0.1678172 -0.5453253 0.4220313 0.1678172 -0.5533834 0.4220313 0.1678172 -0.5611974 0.4220313 0.1678172 -0.5687816 0.4220313 0.1678172 -0.092819 0.4348222 0.1678172 -0.1056428 0.4348222 0.1678172 -0.1201537 0.4348222 0.1678172 -0.1409607 0.4348222 0.1678172 -0.1678172 0.4348222 0.1678172 -0.1950164 0.4348222 0.1678172 -0.2210581 0.4348222 0.1678172 -0.245636 0.4348222 0.1678172 -0.2686816 0.4348222 0.1678172 -0.2902431 0.4348222 0.1678172 -0.3104189 0.4348222 0.1678172 -0.3293248 0.4348222 0.1678172 -0.3470774 0.4348222 0.1678172 -0.3637862 0.4348222 0.1678172 -0.3795513 0.4348222 0.1678172 -0.3944623 0.4348222 0.1678172 -0.4085988 0.4348222 0.1678172 -0.4220313 0.4348222 0.1678172 -0.4348222 0.4348222 0.1678172 -0.4470264 0.4348222 0.1678172 -0.4586928 0.4348222 0.1678172 -0.4698649 0.4348222 0.1678172 -0.4805811 0.4348222 0.1678172 -0.490876 0.4348222 0.1678172 -0.5007803 0.4348222 0.1678172 -0.510322 0.4348222 0.1678172 -0.5195258 0.4348222 0.1678172 -0.5284142 0.4348222 0.1678172 -0.5370079 0.4348222 0.1678172 -0.5453253 0.4348222 0.1678172 -0.5533834 0.4348222 0.1678172 -0.5611974 0.4348222 0.1678172 -0.5687816 0.4348222 0.1678172 -0.092819 0.4470264 0.1678172 -0.1056428 0.4470264 0.1678172 -0.1201537 0.4470264 0.1678172 -0.1409607 0.4470264 0.1678172 -0.1678172 0.4470264 0.1678172 -0.1950164 0.4470264 0.1678172 -0.2210581 0.4470264 0.1678172 -0.245636 0.4470264 0.1678172 -0.2686816 0.4470264 0.1678172 -0.2902431 0.4470264 0.1678172 -0.3104189 0.4470264 0.1678172 -0.3293248 0.4470264 0.1678172 -0.3470774 0.4470264 0.1678172 -0.3637862 0.4470264 0.1678172 -0.3795513 0.4470264 0.1678172 -0.3944623 0.4470264 0.1678172 -0.4085988 0.4470264 0.1678172 -0.4220313 0.4470264 0.1678172 -0.4348222 0.4470264 0.1678172 -0.4470264 0.4470264 0.1678172 -0.4586928 0.4470264 0.1678172 -0.4698649 0.4470264 0.1678172 -0.4805811 0.4470264 0.1678172 -0.490876 0.4470264 0.1678172 -0.5007803 0.4470264 0.1678172 -0.510322 0.4470264 0.1678172 -0.5195258 0.4470264 0.1678172 -0.5284142 0.4470264 0.1678172 -0.5370079 0.4470264 0.1678172 -0.5453253 0.4470264 0.1678172 -0.5533834 0.4470264 0.1678172 -0.5611974 0.4470264 0.1678172 -0.5687816 0.4470264 0.1678172 -0.092819 0.4586928 0.1678172 -0.1056428 0.4586928 0.1678172 -0.1201537 0.4586928 0.1678172 -0.1409607 0.4586928 0.1678172 -0.1678172 0.4586928 0.1678172 -0.1950164 0.4586928 0.1678172 -0.2210581 0.4586928 0.1678172 -0.245636 0.4586928 0.1678172 -0.2686816 0.4586928 0.1678172 -0.2902431 0.4586928 0.1678172 -0.3104189 0.4586928 0.1678172 -0.3293248 0.4586928 0.1678172 -0.3470774 0.4586928 0.1678172 -0.3637862 0.4586928 0.1678172 -0.3795513 0.4586928 0.1678172 -0.3944623 0.4586928 0.1678172 -0.4085988 0.4586928 0.1678172 -0.4220313 0.4586928 0.1678172 -0.4348222 0.4586928 0.1678172 -0.4470264 0.4586928 0.1678172 -0.4586928 0.4586928 0.1678172 -0.4698649 0.4586928 0.1678172 -0.4805811 0.4586928 0.1678172 -0.490876 0.4586928 0.1678172 -0.5007803 0.4586928 0.1678172 -0.510322 0.4586928 0.1678172 -0.5195258 0.4586928 0.1678172 -0.5284142 0.4586928 0.1678172 -0.5370079 0.4586928 0.1678172 -0.5453253 0.4586928 0.1678172 -0.5533834 0.4586928 0.1678172 -0.5611974 0.4586928 0.1678172 -0.5687816 0.4586928 0.1678172 -0.092819 0.4698649 0.1678172 -0.1056428 0.4698649 0.1678172 -0.1201537 0.4698649 0.1678172 -0.1409607 0.4698649 0.1678172 -0.1678172 0.4698649 0.1678172 -0.1950164 0.4698649 0.1678172 -0.2210581 0.4698649 0.1678172 -0.245636 0.4698649 0.1678172 -0.2686816 0.4698649 0.1678172 -0.2902431 0.4698649 0.1678172 -0.3104189 0.4698649 0.1678172 -0.3293248 0.4698649 0.1678172 -0.3470774 0.4698649 0.1678172 -0.3637862 0.4698649 0.1678172 -0.3795513 0.4698649 0.1678172 -0.3944623 0.4698649 0.1678172 -0.4085988 0.4698649 0.1678172 -0.4220313 0.4698649 0.1678172 -0.4348222 0.4698649 0.1678172 -0.4470264 0.4698649 0.1678172 -0.4586928 0.4698649 0.1678172 -0.4698649 0.4698649 0.1678172 -0.4805811 0.4698649 0.1678172 -0.490876 0.4698649 0.1678172 -0.5007803 0.4698649 0.1678172 -0.510322 0.4698649 0.1678172 -0.5195258 0.4698649 0.1678172 -0.5284142 0.4698649 0.1678172 -0.5370079 0.4698649 0.1678172 -0.5453253 0.4698649 0.1678172 -0.5533834 0.4698649 0.1678172 -0.5611974 0.4698649 0.1678172 -0.5687816 0.4698649 0.1678172 -0.092819 0.4805811 0.1678172 -0.1056428 0.4805811 0.1678172 -0.1201537 0.4805811 0.1678172 -0.1409607 0.4805811 0.1678172 -0.1678172 0.4805811 0.1678172 -0.1950164 0.4805811 0.1678172 -0.2210581 0.4805811 0.1678172 -0.245636 0.4805811 0.1678172 -0.2686816 0.4805811 0.1678172 -0.2902431 0.4805811 0.1678172 -0.3104189 0.4805811 0.1678172 -0.3293248 0.4805811 0.1678172 -0.3470774 0.4805811 0.1678172 -0.3637862 0.4805811 0.1678172 -0.3795513 0.4805811 0.1678172 -0.3944623 0.4805811 0.1678172 -0.4085988 0.4805811 0.1678172 -0.4220313 0.4805811 0.1678172 -0.4348222 0.4805811 0.1678172 -0.4470264 0.4805811 0.1678172 -0.4586928 0.4805811 0.1678172 -0.4698649 0.4805811 0.1678172 -0.4805811 0.4805811 0.1678172 -0.490876 0.4805811 0.1678172 -0.5007803 0.4805811 0.1678172 -0.510322 0.4805811 0.1678172 -0.5195258 0.4805811 0.1678172 -0.5284142 0.4805811 0.1678172 -0.5370079 0.4805811 0.1678172 -0.5453253 0.4805811 0.1678172 -0.5533834 0.4805811 0.1678172 -0.5611974 0.4805811 0.1678172 -0.5687816 0.4805811 0.1678172 -0.092819 0.490876 0.1678172 -0.1056428 0.490876 0.1678172 -0.1201537 0.490876 0.1678172 -0.1409607 0.490876 0.1678172 -0.1678172 0.490876 0.1678172 -0.1950164 0.490876 0.1678172 -0.2210581 0.490876 0.1678172 -0.245636 0.490876 0.1678172 -0.2686816 0.490876 0.1678172 -0.2902431 0.490876 0.1678172 -0.3104189 0.490876 0.1678172 -0.3293248 0.490876 0.1678172 -0.3470774 0.490876 0.1678172 -0.3637862 0.490876 0.1678172 -0.3795513 0.490876 0.1678172 -0.3944623 0.490876 0.1678172 -0.4085988 0.490876 0.1678172 -0.4220313 0.490876 0.1678172 -0.4348222 0.490876 0.1678172 -0.4470264 0.490876 0.1678172 -0.4586928 0.490876 0.1678172 -0.4698649 0.490876 0.1678172 -0.4805811 0.490876 0.1678172 -0.490876 0.490876 0.1678172 -0.5007803 0.490876 0.1678172 -0.510322 0.490876 0.1678172 -0.5195258 0.490876 0.1678172 -0.5284142 0.490876 0.1678172 -0.5370079 0.490876 0.1678172 -0.5453253 0.490876 0.1678172 -0.5533834 0.490876 0.1678172 -0.5611974 0.490876 0.1678172 -0.5687816 0.490876 0.1678172 -0.092819 0.5007803 0.1678172 -0.1056428 0.5007803 0.1678172 -0.1201537 0.5007803 0.1678172 -0.1409607 0.5007803 0.1678172 -0.1678172 0.5007803 0.1678172 -0.1950164 0.5007803 0.1678172 -0.2210581 0.5007803 0.1678172 -0.245636 0.5007803 0.1678172 -0.2686816 0.5007803 0.1678172 -0.2902431 0.5007803 0.1678172 -0.3104189 0.5007803 0.1678172 -0.3293248 0.5007803 0.1678172 -0.3470774 0.5007803 0.1678172 -0.3637862 0.5007803 0.1678172 -0.3795513 0.5007803 0.1678172 -0.3944623 0.5007803 0.1678172 -0.4085988 0.5007803 0.1678172 -0.4220313 0.5007803 0.1678172 -0.4348222 0.5007803 0.1678172 -0.4470264 0.5007803 0.1678172 -0.4586928 0.5007803 0.1678172 -0.4698649 0.5007803 0.1678172 -0.4805811 0.5007803 0.1678172 -0.490876 0.5007803 0.1678172 -0.5007803 0.5007803 0.1678172 -0.510322 0.5007803 0.1678172 -0.5195258 0.5007803 0.1678172 -0.5284142 0.5007803 0.1678172 -0.5370079 0.5007803 0.1678172 -0.5453253 0.5007803 0.1678172 -0.5533834 0.5007803 0.1678172 -0.5611974 0.5007803 0.1678172 -0.5687816 0.5007803 0.1678172 -0.092819 0.510322 0.1678172 -0.1056428 0.510322 0.1678172 -0.1201537 0.510322 0.1678172 -0.1409607 0.510322 0.1678172 -0.1678172 0.510322 0.1678172 -0.1950164 0.510322 0.1678172 -0.2210581 0.510322 0.1678172 -0.245636 0.510322 0.1678172 -0.2686816 0.510322 0.1678172 -0.2902431 0.510322 0.1678172 -0.3104189 0.510322 0.1678172 -0.3293248 0.510322 0.1678172 -0.3470774 0.510322 0.1678172 -0.3637862 0.510322 0.1678172 -0.3795513 0.510322 0.1678172 -0.3944623 0.510322 0.1678172 -0.4085988 0.510322 0.1678172 -0.4220313 0.510322 0.1678172 -0.4348222 0.510322 0.1678172 -0.4470264 0.510322 0.1678172 -0.4586928 0.510322 0.1678172 -0.4698649 0.510322 0.1678172 -0.4805811 0.510322 0.1678172 -0.490876 0.510322 0.1678172 -0.5007803 0.510322 0.1678172 -0.510322 0.510322 0.1678172 -0.5195258 0.510322 0.1678172 -0.5284142 0.510322 0.1678172 -0.5370079 0.510322 0.1678172 -0.5453253 0.510322 0.1678172 -0.5533834 0.510322 0.1678172 -0.5611974 0.510322 0.1678172 -0.5687816 0.510322 0.1678172 -0.092819 0.5195258 0.1678172 -0.1056428 0.5195258 0.1678172 -0.1201537 0.5195258 0.1678172 -0.1409607 0.5195258 0.1678172 -0.1678172 0.5195258 0.1678172 -0.1950164 0.5195258 0.1678172 -0.2210581 0.5195258 0.1678172 -0.245636 0.5195258 0.1678172 -0.2686816 0.5195258 0.1678172 -0.2902431 0.5195258 0.1678172 -0.3104189 0.5195258 0.1678172 -0.3293248 0.5195258 0.1678172 -0.3470774 0.5195258 0.1678172 -0.3637862 0.5195258 0.1678172 -0.3795513 0.5195258 0.1678172 -0.3944623 0.5195258 0.1678172 -0.4085988 0.5195258 0.1678172 -0.4220313 0.5195258 0.1678172 -0.4348222 0.5195258 0.1678172 -0.4470264 0.5195258 0.1678172 -0.4586928 0.5195258 0.1678172 -0.4698649 0.5195258 0.1678172 -0.4805811 0.5195258 0.1678172 -0.490876 0.5195258 0.1678172 -0.5007803 0.5195258 0.1678172 -0.510322 0.5195258 0.1678172 -0.5195258 0.5195258 0.1678172 -0.5284142 0.5195258 0.1678172 -0.5370079 0.5195258 0.1678172 -0.5453253 0.5195258 0.1678172 -0.5533834 0.5195258 0.1678172 -0.5611974 0.5195258 0.1678172 -0.5687816 0.5195258 0.1678172 -0.092819 0.5284142 0.1678172 -0.1056428 0.5284142 0.1678172 -0.1201537 0.5284142 0.1678172 -0.1409607 0.5284142 0.1678172 -0.1678172 0.5284142 0.1678172 -0.1950164 0.5284142 0.1678172 -0.2210581 0.5284142 0.1678172 -0.245636 0.5284142 0.1678172 -0.2686816 0.5284142 0.1678172 -0.2902431 0.5284142 0.1678172 -0.3104189 0.5284142 0.1678172 -0.3293248 0.5284142 0.1678172 -0.3470774 0.5284142 0.1678172 -0.3637862 0.5284142 0.1678172 -0.3795513 0.5284142 0.1678172 -0.3944623 0.5284142 0.1678172 -0.4085988 0.5284142 0.1678172 -0.4220313 0.5284142 0.1678172 -0.4348222 0.5284142 0.1678172 -0.4470264 0.5284142 0.1678172 -0.4586928 0.5284142 0.1678172 -0.4698649 0.5284142 0.1678172 -0.4805811 0.5284142 0.1678172 -0.490876 0.5284142 0.1678172 -0.5007803 0.5284142 0.1678172 -0.510322 0.5284142 0.1678172 -0.5195258 0.5284142 0.1678172 -0.5284142 0.5284142 0.1678172 -0.5370079 0.5284142 0.1678172 -0.5453253 0.5284142 0.1678172 -0.5533834 0.5284142 0.1678172 -0.5611974 0.5284142 0.1678172 -0.5687816 0.5284142 0.1678172 -0.092819 0.5370079 0.1678172 -0.1056428 0.5370079 0.1678172 -0.1201537 0.5370079 0.1678172 -0.1409607 0.5370079 0.1678172 -0.1678172 0.5370079 0.1678172 -0.1950164 0.5370079 0.1678172 -0.2210581 0.5370079 0.1678172 -0.245636 0.5370079 0.1678172 -0.2686816 0.5370079 0.1678172 -0.2902431 0.5370079 0.1678172 -0.3104189 0.5370079 0.1678172 -0.3293248 0.5370079 0.1678172 -0.3470774 0.5370079 0.1678172 -0.3637862 0.5370079 0.1678172 -0.3795513 0.5370079 0.1678172 -0.3944623 0.5370079 0.1678172 -0.4085988 0.5370079 0.1678172 -0.4220313 0.5370079 0.1678172 -0.4348222 0.5370079 0.1678172 -0.4470264 0.5370079 0.1678172 -0.4586928 0.5370079 0.1678172 -0.4698649 0.5370079 0.1678172 -0.4805811 0.5370079 0.1678172 -0.490876 0.5370079 0.1678172 -0.5007803 0.5370079 0.1678172 -0.510322 0.5370079 0.1678172 -0.5195258 0.5370079 0.1678172 -0.5284142 0.5370079 0.1678172 -0.5370079 0.5370079 0.1678172 -0.5453253 0.5370079 0.1678172 -0.5533834 0.5370079 0.1678172 -0.5611974 0.5370079 0.1678172 -0.5687816 0.5370079 0.1678172 -0.092819 0.5453253 0.1678172 -0.1056428 0.5453253 0.1678172 -0.1201537 0.5453253 0.1678172 -0.1409607 0.5453253 0.1678172 -0.1678172 0.5453253 0.1678172 -0.1950164 0.5453253 0.1678172 -0.2210581 0.5453253 0.1678172 -0.245636 0.5453253 0.1678172 -0.2686816 0.5453253 0.1678172 -0.2902431 0.5453253 0.1678172 -0.3104189 0.5453253 0.1678172 -0.3293248 0.5453253 0.1678172 -0.3470774 0.5453253 0.1678172 -0.3637862 0.5453253 0.1678172 -0.3795513 0.5453253 0.1678172 -0.3944623 0.5453253 0.1678172 -0.4085988 0.5453253 0.1678172 -0.4220313 0.5453253 0.1678172 -0.4348222 0.5453253 0.1678172 -0.4470264 0.5453253 0.1678172 -0.4586928 0.5453253 0.1678172 -0.4698649 0.5453253 0.1678172 -0.4805811 0.5453253 0.1678172 -0.490876 0.5453253 0.1678172 -0.5007803 0.5453253 0.1678172 -0.510322 0.5453253 0.1678172 -0.5195258 0.5453253 0.1678172 -0.5284142 0.5453253 0.1678172 -0.5370079 0.5453253 0.1678172 -0.5453253 0.5453253 0.1678172 -0.5533834 0.5453253 0.1678172 -0.5611974 0.5453253 0.1678172 -0.5687816 0.5453253 0.1678172 -0.092819 0.5533834 0.1678172 -0.1056428 0.5533834 0.1678172 -0.1201537 0.5533834 0.1678172 -0.1409607 0.5533834 0.1678172 -0.1678172 0.5533834 0.1678172 -0.1950164 0.5533834 0.1678172 -0.2210581 0.5533834 0.1678172 -0.245636 0.5533834 0.1678172 -0.2686816 0.5533834 0.1678172 -0.2902431 0.5533834 0.1678172 -0.3104189 0.5533834 0.1678172 -0.3293248 0.5533834 0.1678172 -0.3470774 0.5533834 0.1678172 -0.3637862 0.5533834 0.1678172 -0.3795513 0.5533834 0.1678172 -0.3944623 0.5533834 0.1678172 -0.4085988 0.5533834 0.1678172 -0.4220313 0.5533834 0.1678172 -0.4348222 0.5533834 0.1678172 -0.4470264 0.5533834 0.1678172 -0.4586928 0.5533834 0.1678172 -0.4698649 0.5533834 0.1678172 -0.4805811 0.5533834 0.1678172 -0.490876 0.5533834 0.1678172 -0.5007803 0.5533834 0.1678172 -0.510322 0.5533834 0.1678172 -0.5195258 0.5533834 0.1678172 -0.5284142 0.5533834 0.1678172 -0.5370079 0.5533834 0.1678172 -0.5453253 0.5533834 0.1678172 -0.5533834 0.5533834 0.1678172 -0.5611974 0.5533834 0.1678172 -0.5687816 0.5533834 0.1678172 -0.092819 0.5611974 0.1678172 -0.1056428 0.5611974 0.1678172 -0.1201537 0.5611974 0.1678172 -0.1409607 0.5611974 0.1678172 -0.1678172 0.5611974 0.1678172 -0.1950164 0.5611974 0.1678172 -0.2210581 0.5611974 0.1678172 -0.245636 0.5611974 0.1678172 -0.2686816 0.5611974 0.1678172 -0.2902431 0.5611974 0.1678172 -0.3104189 0.5611974 0.1678172 -0.3293248 0.5611974 0.1678172 -0.3470774 0.5611974 0.1678172 -0.3637862 0.5611974 0.1678172 -0.3795513 0.5611974 0.1678172 -0.3944623 0.5611974 0.1678172 -0.4085988 0.5611974 0.1678172 -0.4220313 0.5611974 0.1678172 -0.4348222 0.5611974 0.1678172 -0.4470264 0.5611974 0.1678172 -0.4586928 0.5611974 0.1678172 -0.4698649 0.5611974 0.1678172 -0.4805811 0.5611974 0.1678172 -0.490876 0.5611974 0.1678172 -0.5007803 0.5611974 0.1678172 -0.510322 0.5611974 0.1678172 -0.5195258 0.5611974 0.1678172 -0.5284142 0.5611974 0.1678172 -0.5370079 0.5611974 0.1678172 -0.5453253 0.5611974 0.1678172 -0.5533834 0.5611974 0.1678172 -0.5611974 0.5611974 0.1678172 -0.5687816 0.5611974 0.1678172 -0.092819 0.5687816 0.1678172 -0.1056428 0.5687816 0.1678172 -0.1201537 0.5687816 0.1678172 -0.1409607 0.5687816 0.1678172 -0.1678172 0.5687816 0.1678172 -0.1950164 0.5687816 0.1678172 -0.2210581 0.5687816 0.1678172 -0.245636 0.5687816 0.1678172 -0.2686816 0.5687816 0.1678172 -0.2902431 0.5687816 0.1678172 -0.3104189 0.5687816 0.1678172 -0.3293248 0.5687816 0.1678172 -0.3470774 0.5687816 0.1678172 -0.3637862 0.5687816 0.1678172 -0.3795513 0.5687816 0.1678172 -0.3944623 0.5687816 0.1678172 -0.4085988 0.5687816 0.1678172 -0.4220313 0.5687816 0.1678172 -0.4348222 0.5687816 0.1678172 -0.4470264 0.5687816 0.1678172 -0.4586928 0.5687816 0.1678172 -0.4698649 0.5687816 0.1678172 -0.4805811 0.5687816 0.1678172 -0.490876 0.5687816 0.1678172 -0.5007803 0.5687816 0.1678172 -0.510322 0.5687816 0.1678172 -0.5195258 0.5687816 0.1678172 -0.5284142 0.5687816 0.1678172 -0.5370079 0.5687816 0.1678172 -0.5453253 0.5687816 0.1678172 -0.5533834 0.5687816 0.1678172 -0.5611974 0.5687816 0.1678172 -0.5687816 0.5687816 0.1678172 -0.092819 0.092819 0.1950164 -0.1056428 0.092819 0.1950164 -0.1201537 0.092819 0.1950164 -0.1409607 0.092819 0.1950164 -0.1678172 0.092819 0.1950164 -0.1950164 0.092819 0.1950164 -0.2210581 0.092819 0.1950164 -0.245636 0.092819 0.1950164 -0.2686816 0.092819 0.1950164 -0.2902431 0.092819 0.1950164 -0.3104189 0.092819 0.1950164 -0.3293248 0.092819 0.1950164 -0.3470774 0.092819 0.1950164 -0.3637862 0.092819 0.1950164 -0.3795513 0.092819 0.1950164 -0.3944623 0.092819 0.1950164 -0.4085988 0.092819 0.1950164 -0.4220313 0.092819 0.1950164 -0.4348222 0.092819 0.1950164 -0.4470264 0.092819 0.1950164 -0.4586928 0.092819 0.1950164 -0.4698649 0.092819 0.1950164 -0.4805811 0.092819 0.1950164 -0.490876 0.092819 0.1950164 -0.5007803 0.092819 0.1950164 -0.510322 0.092819 0.1950164 -0.5195258 0.092819 0.1950164 -0.5284142 0.092819 0.1950164 -0.5370079 0.092819 0.1950164 -0.5453253 0.092819 0.1950164 -0.5533834 0.092819 0.1950164 -0.5611974 0.092819 0.1950164 -0.5687816 0.092819 0.1950164 -0.092819 0.1056428 0.1950164 -0.1056428 0.1056428 0.1950164 -0.1201537 0.1056428 0.1950164 -0.1409607 0.1056428 0.1950164 -0.1678172 0.1056428 0.1950164 -0.1950164 0.1056428 0.1950164 -0.2210581 0.1056428 0.1950164 -0.245636 0.1056428 0.1950164 -0.2686816 0.1056428 0.1950164 -0.2902431 0.1056428 0.1950164 -0.3104189 0.1056428 0.1950164 -0.3293248 0.1056428 0.1950164 -0.3470774 0.1056428 0.1950164 -0.3637862 0.1056428 0.1950164 -0.3795513 0.1056428 0.1950164 -0.3944623 0.1056428 0.1950164 -0.4085988 0.1056428 0.1950164 -0.4220313 0.1056428 0.1950164 -0.4348222 0.1056428 0.1950164 -0.4470264 0.1056428 0.1950164 -0.4586928 0.1056428 0.1950164 -0.4698649 0.1056428 0.1950164 -0.4805811 0.1056428 0.1950164 -0.490876 0.1056428 0.1950164 -0.5007803 0.1056428 0.1950164 -0.510322 0.1056428 0.1950164 -0.5195258 0.1056428 0.1950164 -0.5284142 0.1056428 0.1950164 -0.5370079 0.1056428 0.1950164 -0.5453253 0.1056428 0.1950164 -0.5533834 0.1056428 0.1950164 -0.5611974 0.1056428 0.1950164 -0.5687816 0.1056428 0.1950164 -0.092819 0.1201537 0.1950164 -0.1056428 0.1201537 0.1950164 -0.1201537 0.1201537 0.1950164 -0.1409607 0.1201537 0.1950164 -0.1678172 0.1201537 0.1950164 -0.1950164 0.1201537 0.1950164 -0.2210581 0.1201537 0.1950164 -0.245636 0.1201537 0.1950164 -0.2686816 0.1201537 0.1950164 -0.2902431 0.1201537 0.1950164 -0.3104189 0.1201537 0.1950164 -0.3293248 0.1201537 0.1950164 -0.3470774 0.1201537 0.1950164 -0.3637862 0.1201537 0.1950164 -0.3795513 0.1201537 0.1950164 -0.3944623 0.1201537 0.1950164 -0.4085988 0.1201537 0.1950164 -0.4220313 0.1201537 0.1950164 -0.4348222 0.1201537 0.1950164 -0.4470264 0.1201537 0.1950164 -0.4586928 0.1201537 0.1950164 -0.4698649 0.1201537 0.1950164 -0.4805811 0.1201537 0.1950164 -0.490876 0.1201537 0.1950164 -0.5007803 0.1201537 0.1950164 -0.510322 0.1201537 0.1950164 -0.5195258 0.1201537 0.1950164 -0.5284142 0.1201537 0.1950164 -0.5370079 0.1201537 0.1950164 -0.5453253 0.1201537 0.1950164 -0.5533834 0.1201537 0.1950164 -0.5611974 0.1201537 0.1950164 -0.5687816 0.1201537 0.1950164 -0.092819 0.1409607 0.1950164 -0.1056428 0.1409607 0.1950164 -0.1201537 0.1409607 0.1950164 -0.1409607 0.1409607 0.1950164 -0.1678172 0.1409607 0.1950164 -0.1950164 0.1409607 0.1950164 -0.2210581 0.1409607 0.1950164 -0.245636 0.1409607 0.1950164 -0.2686816 0.1409607 0.1950164 -0.2902431 0.1409607 0.1950164 -0.3104189 0.1409607 0.1950164 -0.3293248 0.1409607 0.1950164 -0.3470774 0.1409607 0.1950164 -0.3637862 0.1409607 0.1950164 -0.3795513 0.1409607 0.1950164 -0.3944623 0.1409607 0.1950164 -0.4085988 0.1409607 0.1950164 -0.4220313 0.1409607 0.1950164 -0.4348222 0.1409607 0.1950164 -0.4470264 0.1409607 0.1950164 -0.4586928 0.1409607 0.1950164 -0.4698649 0.1409607 0.1950164 -0.4805811 0.1409607 0.1950164 -0.490876 0.1409607 0.1950164 -0.5007803 0.1409607 0.1950164 -0.510322 0.1409607 0.1950164 -0.5195258 0.1409607 0.1950164 -0.5284142 0.1409607 0.1950164 -0.5370079 0.1409607 0.1950164 -0.5453253 0.1409607 0.1950164 -0.5533834 0.1409607 0.1950164 -0.5611974 0.1409607 0.1950164 -0.5687816 0.1409607 0.1950164 -0.092819 0.1678172 0.1950164 -0.1056428 0.1678172 0.1950164 -0.1201537 0.1678172 0.1950164 -0.1409607 0.1678172 0.1950164 -0.1678172 0.1678172 0.1950164 -0.1950164 0.1678172 0.1950164 -0.2210581 0.1678172 0.1950164 -0.245636 0.1678172 0.1950164 -0.2686816 0.1678172 0.1950164 -0.2902431 0.1678172 0.1950164 -0.3104189 0.1678172 0.1950164 -0.3293248 0.1678172 0.1950164 -0.3470774 0.1678172 0.1950164 -0.3637862 0.1678172 0.1950164 -0.3795513 0.1678172 0.1950164 -0.3944623 0.1678172 0.1950164 -0.4085988 0.1678172 0.1950164 -0.4220313 0.1678172 0.1950164 -0.4348222 0.1678172 0.1950164 -0.4470264 0.1678172 0.1950164 -0.4586928 0.1678172 0.1950164 -0.4698649 0.1678172 0.1950164 -0.4805811 0.1678172 0.1950164 -0.490876 0.1678172 0.1950164 -0.5007803 0.1678172 0.1950164 -0.510322 0.1678172 0.1950164 -0.5195258 0.1678172 0.1950164 -0.5284142 0.1678172 0.1950164 -0.5370079 0.1678172 0.1950164 -0.5453253 0.1678172 0.1950164 -0.5533834 0.1678172 0.1950164 -0.5611974 0.1678172 0.1950164 -0.5687816 0.1678172 0.1950164 -0.092819 0.1950164 0.1950164 -0.1056428 0.1950164 0.1950164 -0.1201537 0.1950164 0.1950164 -0.1409607 0.1950164 0.1950164 -0.1678172 0.1950164 0.1950164 -0.1950164 0.1950164 0.1950164 -0.2210581 0.1950164 0.1950164 -0.245636 0.1950164 0.1950164 -0.2686816 0.1950164 0.1950164 -0.2902431 0.1950164 0.1950164 -0.3104189 0.1950164 0.1950164 -0.3293248 0.1950164 0.1950164 -0.3470774 0.1950164 0.1950164 -0.3637862 0.1950164 0.1950164 -0.3795513 0.1950164 0.1950164 -0.3944623 0.1950164 0.1950164 -0.4085988 0.1950164 0.1950164 -0.4220313 0.1950164 0.1950164 -0.4348222 0.1950164 0.1950164 -0.4470264 0.1950164 0.1950164 -0.4586928 0.1950164 0.1950164 -0.4698649 0.1950164 0.1950164 -0.4805811 0.1950164 0.1950164 -0.490876 0.1950164 0.1950164 -0.5007803 0.1950164 0.1950164 -0.510322 0.1950164 0.1950164 -0.5195258 0.1950164 0.1950164 -0.5284142 0.1950164 0.1950164 -0.5370079 0.1950164 0.1950164 -0.5453253 0.1950164 0.1950164 -0.5533834 0.1950164 0.1950164 -0.5611974 0.1950164 0.1950164 -0.5687816 0.1950164 0.1950164 -0.092819 0.2210581 0.1950164 -0.1056428 0.2210581 0.1950164 -0.1201537 0.2210581 0.1950164 -0.1409607 0.2210581 0.1950164 -0.1678172 0.2210581 0.1950164 -0.1950164 0.2210581 0.1950164 -0.2210581 0.2210581 0.1950164 -0.245636 0.2210581 0.1950164 -0.2686816 0.2210581 0.1950164 -0.2902431 0.2210581 0.1950164 -0.3104189 0.2210581 0.1950164 -0.3293248 0.2210581 0.1950164 -0.3470774 0.2210581 0.1950164 -0.3637862 0.2210581 0.1950164 -0.3795513 0.2210581 0.1950164 -0.3944623 0.2210581 0.1950164 -0.4085988 0.2210581 0.1950164 -0.4220313 0.2210581 0.1950164 -0.4348222 0.2210581 0.1950164 -0.4470264 0.2210581 0.1950164 -0.4586928 0.2210581 0.1950164 -0.4698649 0.2210581 0.1950164 -0.4805811 0.2210581 0.1950164 -0.490876 0.2210581 0.1950164 -0.5007803 0.2210581 0.1950164 -0.510322 0.2210581 0.1950164 -0.5195258 0.2210581 0.1950164 -0.5284142 0.2210581 0.1950164 -0.5370079 0.2210581 0.1950164 -0.5453253 0.2210581 0.1950164 -0.5533834 0.2210581 0.1950164 -0.5611974 0.2210581 0.1950164 -0.5687816 0.2210581 0.1950164 -0.092819 0.245636 0.1950164 -0.1056428 0.245636 0.1950164 -0.1201537 0.245636 0.1950164 -0.1409607 0.245636 0.1950164 -0.1678172 0.245636 0.1950164 -0.1950164 0.245636 0.1950164 -0.2210581 0.245636 0.1950164 -0.245636 0.245636 0.1950164 -0.2686816 0.245636 0.1950164 -0.2902431 0.245636 0.1950164 -0.3104189 0.245636 0.1950164 -0.3293248 0.245636 0.1950164 -0.3470774 0.245636 0.1950164 -0.3637862 0.245636 0.1950164 -0.3795513 0.245636 0.1950164 -0.3944623 0.245636 0.1950164 -0.4085988 0.245636 0.1950164 -0.4220313 0.245636 0.1950164 -0.4348222 0.245636 0.1950164 -0.4470264 0.245636 0.1950164 -0.4586928 0.245636 0.1950164 -0.4698649 0.245636 0.1950164 -0.4805811 0.245636 0.1950164 -0.490876 0.245636 0.1950164 -0.5007803 0.245636 0.1950164 -0.510322 0.245636 0.1950164 -0.5195258 0.245636 0.1950164 -0.5284142 0.245636 0.1950164 -0.5370079 0.245636 0.1950164 -0.5453253 0.245636 0.1950164 -0.5533834 0.245636 0.1950164 -0.5611974 0.245636 0.1950164 -0.5687816 0.245636 0.1950164 -0.092819 0.2686816 0.1950164 -0.1056428 0.2686816 0.1950164 -0.1201537 0.2686816 0.1950164 -0.1409607 0.2686816 0.1950164 -0.1678172 0.2686816 0.1950164 -0.1950164 0.2686816 0.1950164 -0.2210581 0.2686816 0.1950164 -0.245636 0.2686816 0.1950164 -0.2686816 0.2686816 0.1950164 -0.2902431 0.2686816 0.1950164 -0.3104189 0.2686816 0.1950164 -0.3293248 0.2686816 0.1950164 -0.3470774 0.2686816 0.1950164 -0.3637862 0.2686816 0.1950164 -0.3795513 0.2686816 0.1950164 -0.3944623 0.2686816 0.1950164 -0.4085988 0.2686816 0.1950164 -0.4220313 0.2686816 0.1950164 -0.4348222 0.2686816 0.1950164 -0.4470264 0.2686816 0.1950164 -0.4586928 0.2686816 0.1950164 -0.4698649 0.2686816 0.1950164 -0.4805811 0.2686816 0.1950164 -0.490876 0.2686816 0.1950164 -0.5007803 0.2686816 0.1950164 -0.510322 0.2686816 0.1950164 -0.5195258 0.2686816 0.1950164 -0.5284142 0.2686816 0.1950164 -0.5370079 0.2686816 0.1950164 -0.5453253 0.2686816 0.1950164 -0.5533834 0.2686816 0.1950164 -0.5611974 0.2686816 0.1950164 -0.5687816 0.2686816 0.1950164 -0.092819 0.2902431 0.1950164 -0.1056428 0.2902431 0.1950164 -0.1201537 0.2902431 0.1950164 -0.1409607 0.2902431 0.1950164 -0.1678172 0.2902431 0.1950164 -0.1950164 0.2902431 0.1950164 -0.2210581 0.2902431 0.1950164 -0.245636 0.2902431 0.1950164 -0.2686816 0.2902431 0.1950164 -0.2902431 0.2902431 0.1950164 -0.3104189 0.2902431 0.1950164 -0.3293248 0.2902431 0.1950164 -0.3470774 0.2902431 0.1950164 -0.3637862 0.2902431 0.1950164 -0.3795513 0.2902431 0.1950164 -0.3944623 0.2902431 0.1950164 -0.4085988 0.2902431 0.1950164 -0.4220313 0.2902431 0.1950164 -0.4348222 0.2902431 0.1950164 -0.4470264 0.2902431 0.1950164 -0.4586928 0.2902431 0.1950164 -0.4698649 0.2902431 0.1950164 -0.4805811 0.2902431 0.1950164 -0.490876 0.2902431 0.1950164 -0.5007803 0.2902431 0.1950164 -0.510322 0.2902431 0.1950164 -0.5195258 0.2902431 0.1950164 -0.5284142 0.2902431 0.1950164 -0.5370079 0.2902431 0.1950164 -0.5453253 0.2902431 0.1950164 -0.5533834 0.2902431 0.1950164 -0.5611974 0.2902431 0.1950164 -0.5687816 0.2902431 0.1950164 -0.092819 0.3104189 0.1950164 -0.1056428 0.3104189 0.1950164 -0.1201537 0.3104189 0.1950164 -0.1409607 0.3104189 0.1950164 -0.1678172 0.3104189 0.1950164 -0.1950164 0.3104189 0.1950164 -0.2210581 0.3104189 0.1950164 -0.245636 0.3104189 0.1950164 -0.2686816 0.3104189 0.1950164 -0.2902431 0.3104189 0.1950164 -0.3104189 0.3104189 0.1950164 -0.3293248 0.3104189 0.1950164 -0.3470774 0.3104189 0.1950164 -0.3637862 0.3104189 0.1950164 -0.3795513 0.3104189 0.1950164 -0.3944623 0.3104189 0.1950164 -0.4085988 0.3104189 0.1950164 -0.4220313 0.3104189 0.1950164 -0.4348222 0.3104189 0.1950164 -0.4470264 0.3104189 0.1950164 -0.4586928 0.3104189 0.1950164 -0.4698649 0.3104189 0.1950164 -0.4805811 0.3104189 0.1950164 -0.490876 0.3104189 0.1950164 -0.5007803 0.3104189 0.1950164 -0.510322 0.3104189 0.1950164 -0.5195258 0.3104189 0.1950164 -0.5284142 0.3104189 0.1950164 -0.5370079 0.3104189 0.1950164 -0.5453253 0.3104189 0.1950164 -0.5533834 0.3104189 0.1950164 -0.5611974 0.3104189 0.1950164 -0.5687816 0.3104189 0.1950164 -0.092819 0.3293248 0.1950164 -0.1056428 0.3293248 0.1950164 -0.1201537 0.3293248 0.1950164 -0.1409607 0.3293248 0.1950164 -0.1678172 0.3293248 0.1950164 -0.1950164 0.3293248 0.1950164 -0.2210581 0.3293248 0.1950164 -0.245636 0.3293248 0.1950164 -0.2686816 0.3293248 0.1950164 -0.2902431 0.3293248 0.1950164 -0.3104189 0.3293248 0.1950164 -0.3293248 0.3293248 0.1950164 -0.3470774 0.3293248 0.1950164 -0.3637862 0.3293248 0.1950164 -0.3795513 0.3293248 0.1950164 -0.3944623 0.3293248 0.1950164 -0.4085988 0.3293248 0.1950164 -0.4220313 0.3293248 0.1950164 -0.4348222 0.3293248 0.1950164 -0.4470264 0.3293248 0.1950164 -0.4586928 0.3293248 0.1950164 -0.4698649 0.3293248 0.1950164 -0.4805811 0.3293248 0.1950164 -0.490876 0.3293248 0.1950164 -0.5007803 0.3293248 0.1950164 -0.510322 0.3293248 0.1950164 -0.5195258 0.3293248 0.1950164 -0.5284142 0.3293248 0.1950164 -0.5370079 0.3293248 0.1950164 -0.5453253 0.3293248 0.1950164 -0.5533834 0.3293248 0.1950164 -0.5611974 0.3293248 0.1950164 -0.5687816 0.3293248 0.1950164 -0.092819 0.3470774 0.1950164 -0.1056428 0.3470774 0.1950164 -0.1201537 0.3470774 0.1950164 -0.1409607 0.3470774 0.1950164 -0.1678172 0.3470774 0.1950164 -0.1950164 0.3470774 0.1950164 -0.2210581 0.3470774 0.1950164 -0.245636 0.3470774 0.1950164 -0.2686816 0.3470774 0.1950164 -0.2902431 0.3470774 0.1950164 -0.3104189 0.3470774 0.1950164 -0.3293248 0.3470774 0.1950164 -0.3470774 0.3470774 0.1950164 -0.3637862 0.3470774 0.1950164 -0.3795513 0.3470774 0.1950164 -0.3944623 0.3470774 0.1950164 -0.4085988 0.3470774 0.1950164 -0.4220313 0.3470774 0.1950164 -0.4348222 0.3470774 0.1950164 -0.4470264 0.3470774 0.1950164 -0.4586928 0.3470774 0.1950164 -0.4698649 0.3470774 0.1950164 -0.4805811 0.3470774 0.1950164 -0.490876 0.3470774 0.1950164 -0.5007803 0.3470774 0.1950164 -0.510322 0.3470774 0.1950164 -0.5195258 0.3470774 0.1950164 -0.5284142 0.3470774 0.1950164 -0.5370079 0.3470774 0.1950164 -0.5453253 0.3470774 0.1950164 -0.5533834 0.3470774 0.1950164 -0.5611974 0.3470774 0.1950164 -0.5687816 0.3470774 0.1950164 -0.092819 0.3637862 0.1950164 -0.1056428 0.3637862 0.1950164 -0.1201537 0.3637862 0.1950164 -0.1409607 0.3637862 0.1950164 -0.1678172 0.3637862 0.1950164 -0.1950164 0.3637862 0.1950164 -0.2210581 0.3637862 0.1950164 -0.245636 0.3637862 0.1950164 -0.2686816 0.3637862 0.1950164 -0.2902431 0.3637862 0.1950164 -0.3104189 0.3637862 0.1950164 -0.3293248 0.3637862 0.1950164 -0.3470774 0.3637862 0.1950164 -0.3637862 0.3637862 0.1950164 -0.3795513 0.3637862 0.1950164 -0.3944623 0.3637862 0.1950164 -0.4085988 0.3637862 0.1950164 -0.4220313 0.3637862 0.1950164 -0.4348222 0.3637862 0.1950164 -0.4470264 0.3637862 0.1950164 -0.4586928 0.3637862 0.1950164 -0.4698649 0.3637862 0.1950164 -0.4805811 0.3637862 0.1950164 -0.490876 0.3637862 0.1950164 -0.5007803 0.3637862 0.1950164 -0.510322 0.3637862 0.1950164 -0.5195258 0.3637862 0.1950164 -0.5284142 0.3637862 0.1950164 -0.5370079 0.3637862 0.1950164 -0.5453253 0.3637862 0.1950164 -0.5533834 0.3637862 0.1950164 -0.5611974 0.3637862 0.1950164 -0.5687816 0.3637862 0.1950164 -0.092819 0.3795513 0.1950164 -0.1056428 0.3795513 0.1950164 -0.1201537 0.3795513 0.1950164 -0.1409607 0.3795513 0.1950164 -0.1678172 0.3795513 0.1950164 -0.1950164 0.3795513 0.1950164 -0.2210581 0.3795513 0.1950164 -0.245636 0.3795513 0.1950164 -0.2686816 0.3795513 0.1950164 -0.2902431 0.3795513 0.1950164 -0.3104189 0.3795513 0.1950164 -0.3293248 0.3795513 0.1950164 -0.3470774 0.3795513 0.1950164 -0.3637862 0.3795513 0.1950164 -0.3795513 0.3795513 0.1950164 -0.3944623 0.3795513 0.1950164 -0.4085988 0.3795513 0.1950164 -0.4220313 0.3795513 0.1950164 -0.4348222 0.3795513 0.1950164 -0.4470264 0.3795513 0.1950164 -0.4586928 0.3795513 0.1950164 -0.4698649 0.3795513 0.1950164 -0.4805811 0.3795513 0.1950164 -0.490876 0.3795513 0.1950164 -0.5007803 0.3795513 0.1950164 -0.510322 0.3795513 0.1950164 -0.5195258 0.3795513 0.1950164 -0.5284142 0.3795513 0.1950164 -0.5370079 0.3795513 0.1950164 -0.5453253 0.3795513 0.1950164 -0.5533834 0.3795513 0.1950164 -0.5611974 0.3795513 0.1950164 -0.5687816 0.3795513 0.1950164 -0.092819 0.3944623 0.1950164 -0.1056428 0.3944623 0.1950164 -0.1201537 0.3944623 0.1950164 -0.1409607 0.3944623 0.1950164 -0.1678172 0.3944623 0.1950164 -0.1950164 0.3944623 0.1950164 -0.2210581 0.3944623 0.1950164 -0.245636 0.3944623 0.1950164 -0.2686816 0.3944623 0.1950164 -0.2902431 0.3944623 0.1950164 -0.3104189 0.3944623 0.1950164 -0.3293248 0.3944623 0.1950164 -0.3470774 0.3944623 0.1950164 -0.3637862 0.3944623 0.1950164 -0.3795513 0.3944623 0.1950164 -0.3944623 0.3944623 0.1950164 -0.4085988 0.3944623 0.1950164 -0.4220313 0.3944623 0.1950164 -0.4348222 0.3944623 0.1950164 -0.4470264 0.3944623 0.1950164 -0.4586928 0.3944623 0.1950164 -0.4698649 0.3944623 0.1950164 -0.4805811 0.3944623 0.1950164 -0.490876 0.3944623 0.1950164 -0.5007803 0.3944623 0.1950164 -0.510322 0.3944623 0.1950164 -0.5195258 0.3944623 0.1950164 -0.5284142 0.3944623 0.1950164 -0.5370079 0.3944623 0.1950164 -0.5453253 0.3944623 0.1950164 -0.5533834 0.3944623 0.1950164 -0.5611974 0.3944623 0.1950164 -0.5687816 0.3944623 0.1950164 -0.092819 0.4085988 0.1950164 -0.1056428 0.4085988 0.1950164 -0.1201537 0.4085988 0.1950164 -0.1409607 0.4085988 0.1950164 -0.1678172 0.4085988 0.1950164 -0.1950164 0.4085988 0.1950164 -0.2210581 0.4085988 0.1950164 -0.245636 0.4085988 0.1950164 -0.2686816 0.4085988 0.1950164 -0.2902431 0.4085988 0.1950164 -0.3104189 0.4085988 0.1950164 -0.3293248 0.4085988 0.1950164 -0.3470774 0.4085988 0.1950164 -0.3637862 0.4085988 0.1950164 -0.3795513 0.4085988 0.1950164 -0.3944623 0.4085988 0.1950164 -0.4085988 0.4085988 0.1950164 -0.4220313 0.4085988 0.1950164 -0.4348222 0.4085988 0.1950164 -0.4470264 0.4085988 0.1950164 -0.4586928 0.4085988 0.1950164 -0.4698649 0.4085988 0.1950164 -0.4805811 0.4085988 0.1950164 -0.490876 0.4085988 0.1950164 -0.5007803 0.4085988 0.1950164 -0.510322 0.4085988 0.1950164 -0.5195258 0.4085988 0.1950164 -0.5284142 0.4085988 0.1950164 -0.5370079 0.4085988 0.1950164 -0.5453253 0.4085988 0.1950164 -0.5533834 0.4085988 0.1950164 -0.5611974 0.4085988 0.1950164 -0.5687816 0.4085988 0.1950164 -0.092819 0.4220313 0.1950164 -0.1056428 0.4220313 0.1950164 -0.1201537 0.4220313 0.1950164 -0.1409607 0.4220313 0.1950164 -0.1678172 0.4220313 0.1950164 -0.1950164 0.4220313 0.1950164 -0.2210581 0.4220313 0.1950164 -0.245636 0.4220313 0.1950164 -0.2686816 0.4220313 0.1950164 -0.2902431 0.4220313 0.1950164 -0.3104189 0.4220313 0.1950164 -0.3293248 0.4220313 0.1950164 -0.3470774 0.4220313 0.1950164 -0.3637862 0.4220313 0.1950164 -0.3795513 0.4220313 0.1950164 -0.3944623 0.4220313 0.1950164 -0.4085988 0.4220313 0.1950164 -0.4220313 0.4220313 0.1950164 -0.4348222 0.4220313 0.1950164 -0.4470264 0.4220313 0.1950164 -0.4586928 0.4220313 0.1950164 -0.4698649 0.4220313 0.1950164 -0.4805811 0.4220313 0.1950164 -0.490876 0.4220313 0.1950164 -0.5007803 0.4220313 0.1950164 -0.510322 0.4220313 0.1950164 -0.5195258 0.4220313 0.1950164 -0.5284142 0.4220313 0.1950164 -0.5370079 0.4220313 0.1950164 -0.5453253 0.4220313 0.1950164 -0.5533834 0.4220313 0.1950164 -0.5611974 0.4220313 0.1950164 -0.5687816 0.4220313 0.1950164 -0.092819 0.4348222 0.1950164 -0.1056428 0.4348222 0.1950164 -0.1201537 0.4348222 0.1950164 -0.1409607 0.4348222 0.1950164 -0.1678172 0.4348222 0.1950164 -0.1950164 0.4348222 0.1950164 -0.2210581 0.4348222 0.1950164 -0.245636 0.4348222 0.1950164 -0.2686816 0.4348222 0.1950164 -0.2902431 0.4348222 0.1950164 -0.3104189 0.4348222 0.1950164 -0.3293248 0.4348222 0.1950164 -0.3470774 0.4348222 0.1950164 -0.3637862 0.4348222 0.1950164 -0.3795513 0.4348222 0.1950164 -0.3944623 0.4348222 0.1950164 -0.4085988 0.4348222 0.1950164 -0.4220313 0.4348222 0.1950164 -0.4348222 0.4348222 0.1950164 -0.4470264 0.4348222 0.1950164 -0.4586928 0.4348222 0.1950164 -0.4698649 0.4348222 0.1950164 -0.4805811 0.4348222 0.1950164 -0.490876 0.4348222 0.1950164 -0.5007803 0.4348222 0.1950164 -0.510322 0.4348222 0.1950164 -0.5195258 0.4348222 0.1950164 -0.5284142 0.4348222 0.1950164 -0.5370079 0.4348222 0.1950164 -0.5453253 0.4348222 0.1950164 -0.5533834 0.4348222 0.1950164 -0.5611974 0.4348222 0.1950164 -0.5687816 0.4348222 0.1950164 -0.092819 0.4470264 0.1950164 -0.1056428 0.4470264 0.1950164 -0.1201537 0.4470264 0.1950164 -0.1409607 0.4470264 0.1950164 -0.1678172 0.4470264 0.1950164 -0.1950164 0.4470264 0.1950164 -0.2210581 0.4470264 0.1950164 -0.245636 0.4470264 0.1950164 -0.2686816 0.4470264 0.1950164 -0.2902431 0.4470264 0.1950164 -0.3104189 0.4470264 0.1950164 -0.3293248 0.4470264 0.1950164 -0.3470774 0.4470264 0.1950164 -0.3637862 0.4470264 0.1950164 -0.3795513 0.4470264 0.1950164 -0.3944623 0.4470264 0.1950164 -0.4085988 0.4470264 0.1950164 -0.4220313 0.4470264 0.1950164 -0.4348222 0.4470264 0.1950164 -0.4470264 0.4470264 0.1950164 -0.4586928 0.4470264 0.1950164 -0.4698649 0.4470264 0.1950164 -0.4805811 0.4470264 0.1950164 -0.490876 0.4470264 0.1950164 -0.5007803 0.4470264 0.1950164 -0.510322 0.4470264 0.1950164 -0.5195258 0.4470264 0.1950164 -0.5284142 0.4470264 0.1950164 -0.5370079 0.4470264 0.1950164 -0.5453253 0.4470264 0.1950164 -0.5533834 0.4470264 0.1950164 -0.5611974 0.4470264 0.1950164 -0.5687816 0.4470264 0.1950164 -0.092819 0.4586928 0.1950164 -0.1056428 0.4586928 0.1950164 -0.1201537 0.4586928 0.1950164 -0.1409607 0.4586928 0.1950164 -0.1678172 0.4586928 0.1950164 -0.1950164 0.4586928 0.1950164 -0.2210581 0.4586928 0.1950164 -0.245636 0.4586928 0.1950164 -0.2686816 0.4586928 0.1950164 -0.2902431 0.4586928 0.1950164 -0.3104189 0.4586928 0.1950164 -0.3293248 0.4586928 0.1950164 -0.3470774 0.4586928 0.1950164 -0.3637862 0.4586928 0.1950164 -0.3795513 0.4586928 0.1950164 -0.3944623 0.4586928 0.1950164 -0.4085988 0.4586928 0.1950164 -0.4220313 0.4586928 0.1950164 -0.4348222 0.4586928 0.1950164 -0.4470264 0.4586928 0.1950164 -0.4586928 0.4586928 0.1950164 -0.4698649 0.4586928 0.1950164 -0.4805811 0.4586928 0.1950164 -0.490876 0.4586928 0.1950164 -0.5007803 0.4586928 0.1950164 -0.510322 0.4586928 0.1950164 -0.5195258 0.4586928 0.1950164 -0.5284142 0.4586928 0.1950164 -0.5370079 0.4586928 0.1950164 -0.5453253 0.4586928 0.1950164 -0.5533834 0.4586928 0.1950164 -0.5611974 0.4586928 0.1950164 -0.5687816 0.4586928 0.1950164 -0.092819 0.4698649 0.1950164 -0.1056428 0.4698649 0.1950164 -0.1201537 0.4698649 0.1950164 -0.1409607 0.4698649 0.1950164 -0.1678172 0.4698649 0.1950164 -0.1950164 0.4698649 0.1950164 -0.2210581 0.4698649 0.1950164 -0.245636 0.4698649 0.1950164 -0.2686816 0.4698649 0.1950164 -0.2902431 0.4698649 0.1950164 -0.3104189 0.4698649 0.1950164 -0.3293248 0.4698649 0.1950164 -0.3470774 0.4698649 0.1950164 -0.3637862 0.4698649 0.1950164 -0.3795513 0.4698649 0.1950164 -0.3944623 0.4698649 0.1950164 -0.4085988 0.4698649 0.1950164 -0.4220313 0.4698649 0.1950164 -0.4348222 0.4698649 0.1950164 -0.4470264 0.4698649 0.1950164 -0.4586928 0.4698649 0.1950164 -0.4698649 0.4698649 0.1950164 -0.4805811 0.4698649 0.1950164 -0.490876 0.4698649 0.1950164 -0.5007803 0.4698649 0.1950164 -0.510322 0.4698649 0.1950164 -0.5195258 0.4698649 0.1950164 -0.5284142 0.4698649 0.1950164 -0.5370079 0.4698649 0.1950164 -0.5453253 0.4698649 0.1950164 -0.5533834 0.4698649 0.1950164 -0.5611974 0.4698649 0.1950164 -0.5687816 0.4698649 0.1950164 -0.092819 0.4805811 0.1950164 -0.1056428 0.4805811 0.1950164 -0.1201537 0.4805811 0.1950164 -0.1409607 0.4805811 0.1950164 -0.1678172 0.4805811 0.1950164 -0.1950164 0.4805811 0.1950164 -0.2210581 0.4805811 0.1950164 -0.245636 0.4805811 0.1950164 -0.2686816 0.4805811 0.1950164 -0.2902431 0.4805811 0.1950164 -0.3104189 0.4805811 0.1950164 -0.3293248 0.4805811 0.1950164 -0.3470774 0.4805811 0.1950164 -0.3637862 0.4805811 0.1950164 -0.3795513 0.4805811 0.1950164 -0.3944623 0.4805811 0.1950164 -0.4085988 0.4805811 0.1950164 -0.4220313 0.4805811 0.1950164 -0.4348222 0.4805811 0.1950164 -0.4470264 0.4805811 0.1950164 -0.4586928 0.4805811 0.1950164 -0.4698649 0.4805811 0.1950164 -0.4805811 0.4805811 0.1950164 -0.490876 0.4805811 0.1950164 -0.5007803 0.4805811 0.1950164 -0.510322 0.4805811 0.1950164 -0.5195258 0.4805811 0.1950164 -0.5284142 0.4805811 0.1950164 -0.5370079 0.4805811 0.1950164 -0.5453253 0.4805811 0.1950164 -0.5533834 0.4805811 0.1950164 -0.5611974 0.4805811 0.1950164 -0.5687816 0.4805811 0.1950164 -0.092819 0.490876 0.1950164 -0.1056428 0.490876 0.1950164 -0.1201537 0.490876 0.1950164 -0.1409607 0.490876 0.1950164 -0.1678172 0.490876 0.1950164 -0.1950164 0.490876 0.1950164 -0.2210581 0.490876 0.1950164 -0.245636 0.490876 0.1950164 -0.2686816 0.490876 0.1950164 -0.2902431 0.490876 0.1950164 -0.3104189 0.490876 0.1950164 -0.3293248 0.490876 0.1950164 -0.3470774 0.490876 0.1950164 -0.3637862 0.490876 0.1950164 -0.3795513 0.490876 0.1950164 -0.3944623 0.490876 0.1950164 -0.4085988 0.490876 0.1950164 -0.4220313 0.490876 0.1950164 -0.4348222 0.490876 0.1950164 -0.4470264 0.490876 0.1950164 -0.4586928 0.490876 0.1950164 -0.4698649 0.490876 0.1950164 -0.4805811 0.490876 0.1950164 -0.490876 0.490876 0.1950164 -0.5007803 0.490876 0.1950164 -0.510322 0.490876 0.1950164 -0.5195258 0.490876 0.1950164 -0.5284142 0.490876 0.1950164 -0.5370079 0.490876 0.1950164 -0.5453253 0.490876 0.1950164 -0.5533834 0.490876 0.1950164 -0.5611974 0.490876 0.1950164 -0.5687816 0.490876 0.1950164 -0.092819 0.5007803 0.1950164 -0.1056428 0.5007803 0.1950164 -0.1201537 0.5007803 0.1950164 -0.1409607 0.5007803 0.1950164 -0.1678172 0.5007803 0.1950164 -0.1950164 0.5007803 0.1950164 -0.2210581 0.5007803 0.1950164 -0.245636 0.5007803 0.1950164 -0.2686816 0.5007803 0.1950164 -0.2902431 0.5007803 0.1950164 -0.3104189 0.5007803 0.1950164 -0.3293248 0.5007803 0.1950164 -0.3470774 0.5007803 0.1950164 -0.3637862 0.5007803 0.1950164 -0.3795513 0.5007803 0.1950164 -0.3944623 0.5007803 0.1950164 -0.4085988 0.5007803 0.1950164 -0.4220313 0.5007803 0.1950164 -0.4348222 0.5007803 0.1950164 -0.4470264 0.5007803 0.1950164 -0.4586928 0.5007803 0.1950164 -0.4698649 0.5007803 0.1950164 -0.4805811 0.5007803 0.1950164 -0.490876 0.5007803 0.1950164 -0.5007803 0.5007803 0.1950164 -0.510322 0.5007803 0.1950164 -0.5195258 0.5007803 0.1950164 -0.5284142 0.5007803 0.1950164 -0.5370079 0.5007803 0.1950164 -0.5453253 0.5007803 0.1950164 -0.5533834 0.5007803 0.1950164 -0.5611974 0.5007803 0.1950164 -0.5687816 0.5007803 0.1950164 -0.092819 0.510322 0.1950164 -0.1056428 0.510322 0.1950164 -0.1201537 0.510322 0.1950164 -0.1409607 0.510322 0.1950164 -0.1678172 0.510322 0.1950164 -0.1950164 0.510322 0.1950164 -0.2210581 0.510322 0.1950164 -0.245636 0.510322 0.1950164 -0.2686816 0.510322 0.1950164 -0.2902431 0.510322 0.1950164 -0.3104189 0.510322 0.1950164 -0.3293248 0.510322 0.1950164 -0.3470774 0.510322 0.1950164 -0.3637862 0.510322 0.1950164 -0.3795513 0.510322 0.1950164 -0.3944623 0.510322 0.1950164 -0.4085988 0.510322 0.1950164 -0.4220313 0.510322 0.1950164 -0.4348222 0.510322 0.1950164 -0.4470264 0.510322 0.1950164 -0.4586928 0.510322 0.1950164 -0.4698649 0.510322 0.1950164 -0.4805811 0.510322 0.1950164 -0.490876 0.510322 0.1950164 -0.5007803 0.510322 0.1950164 -0.510322 0.510322 0.1950164 -0.5195258 0.510322 0.1950164 -0.5284142 0.510322 0.1950164 -0.5370079 0.510322 0.1950164 -0.5453253 0.510322 0.1950164 -0.5533834 0.510322 0.1950164 -0.5611974 0.510322 0.1950164 -0.5687816 0.510322 0.1950164 -0.092819 0.5195258 0.1950164 -0.1056428 0.5195258 0.1950164 -0.1201537 0.5195258 0.1950164 -0.1409607 0.5195258 0.1950164 -0.1678172 0.5195258 0.1950164 -0.1950164 0.5195258 0.1950164 -0.2210581 0.5195258 0.1950164 -0.245636 0.5195258 0.1950164 -0.2686816 0.5195258 0.1950164 -0.2902431 0.5195258 0.1950164 -0.3104189 0.5195258 0.1950164 -0.3293248 0.5195258 0.1950164 -0.3470774 0.5195258 0.1950164 -0.3637862 0.5195258 0.1950164 -0.3795513 0.5195258 0.1950164 -0.3944623 0.5195258 0.1950164 -0.4085988 0.5195258 0.1950164 -0.4220313 0.5195258 0.1950164 -0.4348222 0.5195258 0.1950164 -0.4470264 0.5195258 0.1950164 -0.4586928 0.5195258 0.1950164 -0.4698649 0.5195258 0.1950164 -0.4805811 0.5195258 0.1950164 -0.490876 0.5195258 0.1950164 -0.5007803 0.5195258 0.1950164 -0.510322 0.5195258 0.1950164 -0.5195258 0.5195258 0.1950164 -0.5284142 0.5195258 0.1950164 -0.5370079 0.5195258 0.1950164 -0.5453253 0.5195258 0.1950164 -0.5533834 0.5195258 0.1950164 -0.5611974 0.5195258 0.1950164 -0.5687816 0.5195258 0.1950164 -0.092819 0.5284142 0.1950164 -0.1056428 0.5284142 0.1950164 -0.1201537 0.5284142 0.1950164 -0.1409607 0.5284142 0.1950164 -0.1678172 0.5284142 0.1950164 -0.1950164 0.5284142 0.1950164 -0.2210581 0.5284142 0.1950164 -0.245636 0.5284142 0.1950164 -0.2686816 0.5284142 0.1950164 -0.2902431 0.5284142 0.1950164 -0.3104189 0.5284142 0.1950164 -0.3293248 0.5284142 0.1950164 -0.3470774 0.5284142 0.1950164 -0.3637862 0.5284142 0.1950164 -0.3795513 0.5284142 0.1950164 -0.3944623 0.5284142 0.1950164 -0.4085988 0.5284142 0.1950164 -0.4220313 0.5284142 0.1950164 -0.4348222 0.5284142 0.1950164 -0.4470264 0.5284142 0.1950164 -0.4586928 0.5284142 0.1950164 -0.4698649 0.5284142 0.1950164 -0.4805811 0.5284142 0.1950164 -0.490876 0.5284142 0.1950164 -0.5007803 0.5284142 0.1950164 -0.510322 0.5284142 0.1950164 -0.5195258 0.5284142 0.1950164 -0.5284142 0.5284142 0.1950164 -0.5370079 0.5284142 0.1950164 -0.5453253 0.5284142 0.1950164 -0.5533834 0.5284142 0.1950164 -0.5611974 0.5284142 0.1950164 -0.5687816 0.5284142 0.1950164 -0.092819 0.5370079 0.1950164 -0.1056428 0.5370079 0.1950164 -0.1201537 0.5370079 0.1950164 -0.1409607 0.5370079 0.1950164 -0.1678172 0.5370079 0.1950164 -0.1950164 0.5370079 0.1950164 -0.2210581 0.5370079 0.1950164 -0.245636 0.5370079 0.1950164 -0.2686816 0.5370079 0.1950164 -0.2902431 0.5370079 0.1950164 -0.3104189 0.5370079 0.1950164 -0.3293248 0.5370079 0.1950164 -0.3470774 0.5370079 0.1950164 -0.3637862 0.5370079 0.1950164 -0.3795513 0.5370079 0.1950164 -0.3944623 0.5370079 0.1950164 -0.4085988 0.5370079 0.1950164 -0.4220313 0.5370079 0.1950164 -0.4348222 0.5370079 0.1950164 -0.4470264 0.5370079 0.1950164 -0.4586928 0.5370079 0.1950164 -0.4698649 0.5370079 0.1950164 -0.4805811 0.5370079 0.1950164 -0.490876 0.5370079 0.1950164 -0.5007803 0.5370079 0.1950164 -0.510322 0.5370079 0.1950164 -0.5195258 0.5370079 0.1950164 -0.5284142 0.5370079 0.1950164 -0.5370079 0.5370079 0.1950164 -0.5453253 0.5370079 0.1950164 -0.5533834 0.5370079 0.1950164 -0.5611974 0.5370079 0.1950164 -0.5687816 0.5370079 0.1950164 -0.092819 0.5453253 0.1950164 -0.1056428 0.5453253 0.1950164 -0.1201537 0.5453253 0.1950164 -0.1409607 0.5453253 0.1950164 -0.1678172 0.5453253 0.1950164 -0.1950164 0.5453253 0.1950164 -0.2210581 0.5453253 0.1950164 -0.245636 0.5453253 0.1950164 -0.2686816 0.5453253 0.1950164 -0.2902431 0.5453253 0.1950164 -0.3104189 0.5453253 0.1950164 -0.3293248 0.5453253 0.1950164 -0.3470774 0.5453253 0.1950164 -0.3637862 0.5453253 0.1950164 -0.3795513 0.5453253 0.1950164 -0.3944623 0.5453253 0.1950164 -0.4085988 0.5453253 0.1950164 -0.4220313 0.5453253 0.1950164 -0.4348222 0.5453253 0.1950164 -0.4470264 0.5453253 0.1950164 -0.4586928 0.5453253 0.1950164 -0.4698649 0.5453253 0.1950164 -0.4805811 0.5453253 0.1950164 -0.490876 0.5453253 0.1950164 -0.5007803 0.5453253 0.1950164 -0.510322 0.5453253 0.1950164 -0.5195258 0.5453253 0.1950164 -0.5284142 0.5453253 0.1950164 -0.5370079 0.5453253 0.1950164 -0.5453253 0.5453253 0.1950164 -0.5533834 0.5453253 0.1950164 -0.5611974 0.5453253 0.1950164 -0.5687816 0.5453253 0.1950164 -0.092819 0.5533834 0.1950164 -0.1056428 0.5533834 0.1950164 -0.1201537 0.5533834 0.1950164 -0.1409607 0.5533834 0.1950164 -0.1678172 0.5533834 0.1950164 -0.1950164 0.5533834 0.1950164 -0.2210581 0.5533834 0.1950164 -0.245636 0.5533834 0.1950164 -0.2686816 0.5533834 0.1950164 -0.2902431 0.5533834 0.1950164 -0.3104189 0.5533834 0.1950164 -0.3293248 0.5533834 0.1950164 -0.3470774 0.5533834 0.1950164 -0.3637862 0.5533834 0.1950164 -0.3795513 0.5533834 0.1950164 -0.3944623 0.5533834 0.1950164 -0.4085988 0.5533834 0.1950164 -0.4220313 0.5533834 0.1950164 -0.4348222 0.5533834 0.1950164 -0.4470264 0.5533834 0.1950164 -0.4586928 0.5533834 0.1950164 -0.4698649 0.5533834 0.1950164 -0.4805811 0.5533834 0.1950164 -0.490876 0.5533834 0.1950164 -0.5007803 0.5533834 0.1950164 -0.510322 0.5533834 0.1950164 -0.5195258 0.5533834 0.1950164 -0.5284142 0.5533834 0.1950164 -0.5370079 0.5533834 0.1950164 -0.5453253 0.5533834 0.1950164 -0.5533834 0.5533834 0.1950164 -0.5611974 0.5533834 0.1950164 -0.5687816 0.5533834 0.1950164 -0.092819 0.5611974 0.1950164 -0.1056428 0.5611974 0.1950164 -0.1201537 0.5611974 0.1950164 -0.1409607 0.5611974 0.1950164 -0.1678172 0.5611974 0.1950164 -0.1950164 0.5611974 0.1950164 -0.2210581 0.5611974 0.1950164 -0.245636 0.5611974 0.1950164 -0.2686816 0.5611974 0.1950164 -0.2902431 0.5611974 0.1950164 -0.3104189 0.5611974 0.1950164 -0.3293248 0.5611974 0.1950164 -0.3470774 0.5611974 0.1950164 -0.3637862 0.5611974 0.1950164 -0.3795513 0.5611974 0.1950164 -0.3944623 0.5611974 0.1950164 -0.4085988 0.5611974 0.1950164 -0.4220313 0.5611974 0.1950164 -0.4348222 0.5611974 0.1950164 -0.4470264 0.5611974 0.1950164 -0.4586928 0.5611974 0.1950164 -0.4698649 0.5611974 0.1950164 -0.4805811 0.5611974 0.1950164 -0.490876 0.5611974 0.1950164 -0.5007803 0.5611974 0.1950164 -0.510322 0.5611974 0.1950164 -0.5195258 0.5611974 0.1950164 -0.5284142 0.5611974 0.1950164 -0.5370079 0.5611974 0.1950164 -0.5453253 0.5611974 0.1950164 -0.5533834 0.5611974 0.1950164 -0.5611974 0.5611974 0.1950164 -0.5687816 0.5611974 0.1950164 -0.092819 0.5687816 0.1950164 -0.1056428 0.5687816 0.1950164 -0.1201537 0.5687816 0.1950164 -0.1409607 0.5687816 0.1950164 -0.1678172 0.5687816 0.1950164 -0.1950164 0.5687816 0.1950164 -0.2210581 0.5687816 0.1950164 -0.245636 0.5687816 0.1950164 -0.2686816 0.5687816 0.1950164 -0.2902431 0.5687816 0.1950164 -0.3104189 0.5687816 0.1950164 -0.3293248 0.5687816 0.1950164 -0.3470774 0.5687816 0.1950164 -0.3637862 0.5687816 0.1950164 -0.3795513 0.5687816 0.1950164 -0.3944623 0.5687816 0.1950164 -0.4085988 0.5687816 0.1950164 -0.4220313 0.5687816 0.1950164 -0.4348222 0.5687816 0.1950164 -0.4470264 0.5687816 0.1950164 -0.4586928 0.5687816 0.1950164 -0.4698649 0.5687816 0.1950164 -0.4805811 0.5687816 0.1950164 -0.490876 0.5687816 0.1950164 -0.5007803 0.5687816 0.1950164 -0.510322 0.5687816 0.1950164 -0.5195258 0.5687816 0.1950164 -0.5284142 0.5687816 0.1950164 -0.5370079 0.5687816 0.1950164 -0.5453253 0.5687816 0.1950164 -0.5533834 0.5687816 0.1950164 -0.5611974 0.5687816 0.1950164 -0.5687816 0.5687816 0.1950164 -0.092819 0.092819 0.2210581 -0.1056428 0.092819 0.2210581 -0.1201537 0.092819 0.2210581 -0.1409607 0.092819 0.2210581 -0.1678172 0.092819 0.2210581 -0.1950164 0.092819 0.2210581 -0.2210581 0.092819 0.2210581 -0.245636 0.092819 0.2210581 -0.2686816 0.092819 0.2210581 -0.2902431 0.092819 0.2210581 -0.3104189 0.092819 0.2210581 -0.3293248 0.092819 0.2210581 -0.3470774 0.092819 0.2210581 -0.3637862 0.092819 0.2210581 -0.3795513 0.092819 0.2210581 -0.3944623 0.092819 0.2210581 -0.4085988 0.092819 0.2210581 -0.4220313 0.092819 0.2210581 -0.4348222 0.092819 0.2210581 -0.4470264 0.092819 0.2210581 -0.4586928 0.092819 0.2210581 -0.4698649 0.092819 0.2210581 -0.4805811 0.092819 0.2210581 -0.490876 0.092819 0.2210581 -0.5007803 0.092819 0.2210581 -0.510322 0.092819 0.2210581 -0.5195258 0.092819 0.2210581 -0.5284142 0.092819 0.2210581 -0.5370079 0.092819 0.2210581 -0.5453253 0.092819 0.2210581 -0.5533834 0.092819 0.2210581 -0.5611974 0.092819 0.2210581 -0.5687816 0.092819 0.2210581 -0.092819 0.1056428 0.2210581 -0.1056428 0.1056428 0.2210581 -0.1201537 0.1056428 0.2210581 -0.1409607 0.1056428 0.2210581 -0.1678172 0.1056428 0.2210581 -0.1950164 0.1056428 0.2210581 -0.2210581 0.1056428 0.2210581 -0.245636 0.1056428 0.2210581 -0.2686816 0.1056428 0.2210581 -0.2902431 0.1056428 0.2210581 -0.3104189 0.1056428 0.2210581 -0.3293248 0.1056428 0.2210581 -0.3470774 0.1056428 0.2210581 -0.3637862 0.1056428 0.2210581 -0.3795513 0.1056428 0.2210581 -0.3944623 0.1056428 0.2210581 -0.4085988 0.1056428 0.2210581 -0.4220313 0.1056428 0.2210581 -0.4348222 0.1056428 0.2210581 -0.4470264 0.1056428 0.2210581 -0.4586928 0.1056428 0.2210581 -0.4698649 0.1056428 0.2210581 -0.4805811 0.1056428 0.2210581 -0.490876 0.1056428 0.2210581 -0.5007803 0.1056428 0.2210581 -0.510322 0.1056428 0.2210581 -0.5195258 0.1056428 0.2210581 -0.5284142 0.1056428 0.2210581 -0.5370079 0.1056428 0.2210581 -0.5453253 0.1056428 0.2210581 -0.5533834 0.1056428 0.2210581 -0.5611974 0.1056428 0.2210581 -0.5687816 0.1056428 0.2210581 -0.092819 0.1201537 0.2210581 -0.1056428 0.1201537 0.2210581 -0.1201537 0.1201537 0.2210581 -0.1409607 0.1201537 0.2210581 -0.1678172 0.1201537 0.2210581 -0.1950164 0.1201537 0.2210581 -0.2210581 0.1201537 0.2210581 -0.245636 0.1201537 0.2210581 -0.2686816 0.1201537 0.2210581 -0.2902431 0.1201537 0.2210581 -0.3104189 0.1201537 0.2210581 -0.3293248 0.1201537 0.2210581 -0.3470774 0.1201537 0.2210581 -0.3637862 0.1201537 0.2210581 -0.3795513 0.1201537 0.2210581 -0.3944623 0.1201537 0.2210581 -0.4085988 0.1201537 0.2210581 -0.4220313 0.1201537 0.2210581 -0.4348222 0.1201537 0.2210581 -0.4470264 0.1201537 0.2210581 -0.4586928 0.1201537 0.2210581 -0.4698649 0.1201537 0.2210581 -0.4805811 0.1201537 0.2210581 -0.490876 0.1201537 0.2210581 -0.5007803 0.1201537 0.2210581 -0.510322 0.1201537 0.2210581 -0.5195258 0.1201537 0.2210581 -0.5284142 0.1201537 0.2210581 -0.5370079 0.1201537 0.2210581 -0.5453253 0.1201537 0.2210581 -0.5533834 0.1201537 0.2210581 -0.5611974 0.1201537 0.2210581 -0.5687816 0.1201537 0.2210581 -0.092819 0.1409607 0.2210581 -0.1056428 0.1409607 0.2210581 -0.1201537 0.1409607 0.2210581 -0.1409607 0.1409607 0.2210581 -0.1678172 0.1409607 0.2210581 -0.1950164 0.1409607 0.2210581 -0.2210581 0.1409607 0.2210581 -0.245636 0.1409607 0.2210581 -0.2686816 0.1409607 0.2210581 -0.2902431 0.1409607 0.2210581 -0.3104189 0.1409607 0.2210581 -0.3293248 0.1409607 0.2210581 -0.3470774 0.1409607 0.2210581 -0.3637862 0.1409607 0.2210581 -0.3795513 0.1409607 0.2210581 -0.3944623 0.1409607 0.2210581 -0.4085988 0.1409607 0.2210581 -0.4220313 0.1409607 0.2210581 -0.4348222 0.1409607 0.2210581 -0.4470264 0.1409607 0.2210581 -0.4586928 0.1409607 0.2210581 -0.4698649 0.1409607 0.2210581 -0.4805811 0.1409607 0.2210581 -0.490876 0.1409607 0.2210581 -0.5007803 0.1409607 0.2210581 -0.510322 0.1409607 0.2210581 -0.5195258 0.1409607 0.2210581 -0.5284142 0.1409607 0.2210581 -0.5370079 0.1409607 0.2210581 -0.5453253 0.1409607 0.2210581 -0.5533834 0.1409607 0.2210581 -0.5611974 0.1409607 0.2210581 -0.5687816 0.1409607 0.2210581 -0.092819 0.1678172 0.2210581 -0.1056428 0.1678172 0.2210581 -0.1201537 0.1678172 0.2210581 -0.1409607 0.1678172 0.2210581 -0.1678172 0.1678172 0.2210581 -0.1950164 0.1678172 0.2210581 -0.2210581 0.1678172 0.2210581 -0.245636 0.1678172 0.2210581 -0.2686816 0.1678172 0.2210581 -0.2902431 0.1678172 0.2210581 -0.3104189 0.1678172 0.2210581 -0.3293248 0.1678172 0.2210581 -0.3470774 0.1678172 0.2210581 -0.3637862 0.1678172 0.2210581 -0.3795513 0.1678172 0.2210581 -0.3944623 0.1678172 0.2210581 -0.4085988 0.1678172 0.2210581 -0.4220313 0.1678172 0.2210581 -0.4348222 0.1678172 0.2210581 -0.4470264 0.1678172 0.2210581 -0.4586928 0.1678172 0.2210581 -0.4698649 0.1678172 0.2210581 -0.4805811 0.1678172 0.2210581 -0.490876 0.1678172 0.2210581 -0.5007803 0.1678172 0.2210581 -0.510322 0.1678172 0.2210581 -0.5195258 0.1678172 0.2210581 -0.5284142 0.1678172 0.2210581 -0.5370079 0.1678172 0.2210581 -0.5453253 0.1678172 0.2210581 -0.5533834 0.1678172 0.2210581 -0.5611974 0.1678172 0.2210581 -0.5687816 0.1678172 0.2210581 -0.092819 0.1950164 0.2210581 -0.1056428 0.1950164 0.2210581 -0.1201537 0.1950164 0.2210581 -0.1409607 0.1950164 0.2210581 -0.1678172 0.1950164 0.2210581 -0.1950164 0.1950164 0.2210581 -0.2210581 0.1950164 0.2210581 -0.245636 0.1950164 0.2210581 -0.2686816 0.1950164 0.2210581 -0.2902431 0.1950164 0.2210581 -0.3104189 0.1950164 0.2210581 -0.3293248 0.1950164 0.2210581 -0.3470774 0.1950164 0.2210581 -0.3637862 0.1950164 0.2210581 -0.3795513 0.1950164 0.2210581 -0.3944623 0.1950164 0.2210581 -0.4085988 0.1950164 0.2210581 -0.4220313 0.1950164 0.2210581 -0.4348222 0.1950164 0.2210581 -0.4470264 0.1950164 0.2210581 -0.4586928 0.1950164 0.2210581 -0.4698649 0.1950164 0.2210581 -0.4805811 0.1950164 0.2210581 -0.490876 0.1950164 0.2210581 -0.5007803 0.1950164 0.2210581 -0.510322 0.1950164 0.2210581 -0.5195258 0.1950164 0.2210581 -0.5284142 0.1950164 0.2210581 -0.5370079 0.1950164 0.2210581 -0.5453253 0.1950164 0.2210581 -0.5533834 0.1950164 0.2210581 -0.5611974 0.1950164 0.2210581 -0.5687816 0.1950164 0.2210581 -0.092819 0.2210581 0.2210581 -0.1056428 0.2210581 0.2210581 -0.1201537 0.2210581 0.2210581 -0.1409607 0.2210581 0.2210581 -0.1678172 0.2210581 0.2210581 -0.1950164 0.2210581 0.2210581 -0.2210581 0.2210581 0.2210581 -0.245636 0.2210581 0.2210581 -0.2686816 0.2210581 0.2210581 -0.2902431 0.2210581 0.2210581 -0.3104189 0.2210581 0.2210581 -0.3293248 0.2210581 0.2210581 -0.3470774 0.2210581 0.2210581 -0.3637862 0.2210581 0.2210581 -0.3795513 0.2210581 0.2210581 -0.3944623 0.2210581 0.2210581 -0.4085988 0.2210581 0.2210581 -0.4220313 0.2210581 0.2210581 -0.4348222 0.2210581 0.2210581 -0.4470264 0.2210581 0.2210581 -0.4586928 0.2210581 0.2210581 -0.4698649 0.2210581 0.2210581 -0.4805811 0.2210581 0.2210581 -0.490876 0.2210581 0.2210581 -0.5007803 0.2210581 0.2210581 -0.510322 0.2210581 0.2210581 -0.5195258 0.2210581 0.2210581 -0.5284142 0.2210581 0.2210581 -0.5370079 0.2210581 0.2210581 -0.5453253 0.2210581 0.2210581 -0.5533834 0.2210581 0.2210581 -0.5611974 0.2210581 0.2210581 -0.5687816 0.2210581 0.2210581 -0.092819 0.245636 0.2210581 -0.1056428 0.245636 0.2210581 -0.1201537 0.245636 0.2210581 -0.1409607 0.245636 0.2210581 -0.1678172 0.245636 0.2210581 -0.1950164 0.245636 0.2210581 -0.2210581 0.245636 0.2210581 -0.245636 0.245636 0.2210581 -0.2686816 0.245636 0.2210581 -0.2902431 0.245636 0.2210581 -0.3104189 0.245636 0.2210581 -0.3293248 0.245636 0.2210581 -0.3470774 0.245636 0.2210581 -0.3637862 0.245636 0.2210581 -0.3795513 0.245636 0.2210581 -0.3944623 0.245636 0.2210581 -0.4085988 0.245636 0.2210581 -0.4220313 0.245636 0.2210581 -0.4348222 0.245636 0.2210581 -0.4470264 0.245636 0.2210581 -0.4586928 0.245636 0.2210581 -0.4698649 0.245636 0.2210581 -0.4805811 0.245636 0.2210581 -0.490876 0.245636 0.2210581 -0.5007803 0.245636 0.2210581 -0.510322 0.245636 0.2210581 -0.5195258 0.245636 0.2210581 -0.5284142 0.245636 0.2210581 -0.5370079 0.245636 0.2210581 -0.5453253 0.245636 0.2210581 -0.5533834 0.245636 0.2210581 -0.5611974 0.245636 0.2210581 -0.5687816 0.245636 0.2210581 -0.092819 0.2686816 0.2210581 -0.1056428 0.2686816 0.2210581 -0.1201537 0.2686816 0.2210581 -0.1409607 0.2686816 0.2210581 -0.1678172 0.2686816 0.2210581 -0.1950164 0.2686816 0.2210581 -0.2210581 0.2686816 0.2210581 -0.245636 0.2686816 0.2210581 -0.2686816 0.2686816 0.2210581 -0.2902431 0.2686816 0.2210581 -0.3104189 0.2686816 0.2210581 -0.3293248 0.2686816 0.2210581 -0.3470774 0.2686816 0.2210581 -0.3637862 0.2686816 0.2210581 -0.3795513 0.2686816 0.2210581 -0.3944623 0.2686816 0.2210581 -0.4085988 0.2686816 0.2210581 -0.4220313 0.2686816 0.2210581 -0.4348222 0.2686816 0.2210581 -0.4470264 0.2686816 0.2210581 -0.4586928 0.2686816 0.2210581 -0.4698649 0.2686816 0.2210581 -0.4805811 0.2686816 0.2210581 -0.490876 0.2686816 0.2210581 -0.5007803 0.2686816 0.2210581 -0.510322 0.2686816 0.2210581 -0.5195258 0.2686816 0.2210581 -0.5284142 0.2686816 0.2210581 -0.5370079 0.2686816 0.2210581 -0.5453253 0.2686816 0.2210581 -0.5533834 0.2686816 0.2210581 -0.5611974 0.2686816 0.2210581 -0.5687816 0.2686816 0.2210581 -0.092819 0.2902431 0.2210581 -0.1056428 0.2902431 0.2210581 -0.1201537 0.2902431 0.2210581 -0.1409607 0.2902431 0.2210581 -0.1678172 0.2902431 0.2210581 -0.1950164 0.2902431 0.2210581 -0.2210581 0.2902431 0.2210581 -0.245636 0.2902431 0.2210581 -0.2686816 0.2902431 0.2210581 -0.2902431 0.2902431 0.2210581 -0.3104189 0.2902431 0.2210581 -0.3293248 0.2902431 0.2210581 -0.3470774 0.2902431 0.2210581 -0.3637862 0.2902431 0.2210581 -0.3795513 0.2902431 0.2210581 -0.3944623 0.2902431 0.2210581 -0.4085988 0.2902431 0.2210581 -0.4220313 0.2902431 0.2210581 -0.4348222 0.2902431 0.2210581 -0.4470264 0.2902431 0.2210581 -0.4586928 0.2902431 0.2210581 -0.4698649 0.2902431 0.2210581 -0.4805811 0.2902431 0.2210581 -0.490876 0.2902431 0.2210581 -0.5007803 0.2902431 0.2210581 -0.510322 0.2902431 0.2210581 -0.5195258 0.2902431 0.2210581 -0.5284142 0.2902431 0.2210581 -0.5370079 0.2902431 0.2210581 -0.5453253 0.2902431 0.2210581 -0.5533834 0.2902431 0.2210581 -0.5611974 0.2902431 0.2210581 -0.5687816 0.2902431 0.2210581 -0.092819 0.3104189 0.2210581 -0.1056428 0.3104189 0.2210581 -0.1201537 0.3104189 0.2210581 -0.1409607 0.3104189 0.2210581 -0.1678172 0.3104189 0.2210581 -0.1950164 0.3104189 0.2210581 -0.2210581 0.3104189 0.2210581 -0.245636 0.3104189 0.2210581 -0.2686816 0.3104189 0.2210581 -0.2902431 0.3104189 0.2210581 -0.3104189 0.3104189 0.2210581 -0.3293248 0.3104189 0.2210581 -0.3470774 0.3104189 0.2210581 -0.3637862 0.3104189 0.2210581 -0.3795513 0.3104189 0.2210581 -0.3944623 0.3104189 0.2210581 -0.4085988 0.3104189 0.2210581 -0.4220313 0.3104189 0.2210581 -0.4348222 0.3104189 0.2210581 -0.4470264 0.3104189 0.2210581 -0.4586928 0.3104189 0.2210581 -0.4698649 0.3104189 0.2210581 -0.4805811 0.3104189 0.2210581 -0.490876 0.3104189 0.2210581 -0.5007803 0.3104189 0.2210581 -0.510322 0.3104189 0.2210581 -0.5195258 0.3104189 0.2210581 -0.5284142 0.3104189 0.2210581 -0.5370079 0.3104189 0.2210581 -0.5453253 0.3104189 0.2210581 -0.5533834 0.3104189 0.2210581 -0.5611974 0.3104189 0.2210581 -0.5687816 0.3104189 0.2210581 -0.092819 0.3293248 0.2210581 -0.1056428 0.3293248 0.2210581 -0.1201537 0.3293248 0.2210581 -0.1409607 0.3293248 0.2210581 -0.1678172 0.3293248 0.2210581 -0.1950164 0.3293248 0.2210581 -0.2210581 0.3293248 0.2210581 -0.245636 0.3293248 0.2210581 -0.2686816 0.3293248 0.2210581 -0.2902431 0.3293248 0.2210581 -0.3104189 0.3293248 0.2210581 -0.3293248 0.3293248 0.2210581 -0.3470774 0.3293248 0.2210581 -0.3637862 0.3293248 0.2210581 -0.3795513 0.3293248 0.2210581 -0.3944623 0.3293248 0.2210581 -0.4085988 0.3293248 0.2210581 -0.4220313 0.3293248 0.2210581 -0.4348222 0.3293248 0.2210581 -0.4470264 0.3293248 0.2210581 -0.4586928 0.3293248 0.2210581 -0.4698649 0.3293248 0.2210581 -0.4805811 0.3293248 0.2210581 -0.490876 0.3293248 0.2210581 -0.5007803 0.3293248 0.2210581 -0.510322 0.3293248 0.2210581 -0.5195258 0.3293248 0.2210581 -0.5284142 0.3293248 0.2210581 -0.5370079 0.3293248 0.2210581 -0.5453253 0.3293248 0.2210581 -0.5533834 0.3293248 0.2210581 -0.5611974 0.3293248 0.2210581 -0.5687816 0.3293248 0.2210581 -0.092819 0.3470774 0.2210581 -0.1056428 0.3470774 0.2210581 -0.1201537 0.3470774 0.2210581 -0.1409607 0.3470774 0.2210581 -0.1678172 0.3470774 0.2210581 -0.1950164 0.3470774 0.2210581 -0.2210581 0.3470774 0.2210581 -0.245636 0.3470774 0.2210581 -0.2686816 0.3470774 0.2210581 -0.2902431 0.3470774 0.2210581 -0.3104189 0.3470774 0.2210581 -0.3293248 0.3470774 0.2210581 -0.3470774 0.3470774 0.2210581 -0.3637862 0.3470774 0.2210581 -0.3795513 0.3470774 0.2210581 -0.3944623 0.3470774 0.2210581 -0.4085988 0.3470774 0.2210581 -0.4220313 0.3470774 0.2210581 -0.4348222 0.3470774 0.2210581 -0.4470264 0.3470774 0.2210581 -0.4586928 0.3470774 0.2210581 -0.4698649 0.3470774 0.2210581 -0.4805811 0.3470774 0.2210581 -0.490876 0.3470774 0.2210581 -0.5007803 0.3470774 0.2210581 -0.510322 0.3470774 0.2210581 -0.5195258 0.3470774 0.2210581 -0.5284142 0.3470774 0.2210581 -0.5370079 0.3470774 0.2210581 -0.5453253 0.3470774 0.2210581 -0.5533834 0.3470774 0.2210581 -0.5611974 0.3470774 0.2210581 -0.5687816 0.3470774 0.2210581 -0.092819 0.3637862 0.2210581 -0.1056428 0.3637862 0.2210581 -0.1201537 0.3637862 0.2210581 -0.1409607 0.3637862 0.2210581 -0.1678172 0.3637862 0.2210581 -0.1950164 0.3637862 0.2210581 -0.2210581 0.3637862 0.2210581 -0.245636 0.3637862 0.2210581 -0.2686816 0.3637862 0.2210581 -0.2902431 0.3637862 0.2210581 -0.3104189 0.3637862 0.2210581 -0.3293248 0.3637862 0.2210581 -0.3470774 0.3637862 0.2210581 -0.3637862 0.3637862 0.2210581 -0.3795513 0.3637862 0.2210581 -0.3944623 0.3637862 0.2210581 -0.4085988 0.3637862 0.2210581 -0.4220313 0.3637862 0.2210581 -0.4348222 0.3637862 0.2210581 -0.4470264 0.3637862 0.2210581 -0.4586928 0.3637862 0.2210581 -0.4698649 0.3637862 0.2210581 -0.4805811 0.3637862 0.2210581 -0.490876 0.3637862 0.2210581 -0.5007803 0.3637862 0.2210581 -0.510322 0.3637862 0.2210581 -0.5195258 0.3637862 0.2210581 -0.5284142 0.3637862 0.2210581 -0.5370079 0.3637862 0.2210581 -0.5453253 0.3637862 0.2210581 -0.5533834 0.3637862 0.2210581 -0.5611974 0.3637862 0.2210581 -0.5687816 0.3637862 0.2210581 -0.092819 0.3795513 0.2210581 -0.1056428 0.3795513 0.2210581 -0.1201537 0.3795513 0.2210581 -0.1409607 0.3795513 0.2210581 -0.1678172 0.3795513 0.2210581 -0.1950164 0.3795513 0.2210581 -0.2210581 0.3795513 0.2210581 -0.245636 0.3795513 0.2210581 -0.2686816 0.3795513 0.2210581 -0.2902431 0.3795513 0.2210581 -0.3104189 0.3795513 0.2210581 -0.3293248 0.3795513 0.2210581 -0.3470774 0.3795513 0.2210581 -0.3637862 0.3795513 0.2210581 -0.3795513 0.3795513 0.2210581 -0.3944623 0.3795513 0.2210581 -0.4085988 0.3795513 0.2210581 -0.4220313 0.3795513 0.2210581 -0.4348222 0.3795513 0.2210581 -0.4470264 0.3795513 0.2210581 -0.4586928 0.3795513 0.2210581 -0.4698649 0.3795513 0.2210581 -0.4805811 0.3795513 0.2210581 -0.490876 0.3795513 0.2210581 -0.5007803 0.3795513 0.2210581 -0.510322 0.3795513 0.2210581 -0.5195258 0.3795513 0.2210581 -0.5284142 0.3795513 0.2210581 -0.5370079 0.3795513 0.2210581 -0.5453253 0.3795513 0.2210581 -0.5533834 0.3795513 0.2210581 -0.5611974 0.3795513 0.2210581 -0.5687816 0.3795513 0.2210581 -0.092819 0.3944623 0.2210581 -0.1056428 0.3944623 0.2210581 -0.1201537 0.3944623 0.2210581 -0.1409607 0.3944623 0.2210581 -0.1678172 0.3944623 0.2210581 -0.1950164 0.3944623 0.2210581 -0.2210581 0.3944623 0.2210581 -0.245636 0.3944623 0.2210581 -0.2686816 0.3944623 0.2210581 -0.2902431 0.3944623 0.2210581 -0.3104189 0.3944623 0.2210581 -0.3293248 0.3944623 0.2210581 -0.3470774 0.3944623 0.2210581 -0.3637862 0.3944623 0.2210581 -0.3795513 0.3944623 0.2210581 -0.3944623 0.3944623 0.2210581 -0.4085988 0.3944623 0.2210581 -0.4220313 0.3944623 0.2210581 -0.4348222 0.3944623 0.2210581 -0.4470264 0.3944623 0.2210581 -0.4586928 0.3944623 0.2210581 -0.4698649 0.3944623 0.2210581 -0.4805811 0.3944623 0.2210581 -0.490876 0.3944623 0.2210581 -0.5007803 0.3944623 0.2210581 -0.510322 0.3944623 0.2210581 -0.5195258 0.3944623 0.2210581 -0.5284142 0.3944623 0.2210581 -0.5370079 0.3944623 0.2210581 -0.5453253 0.3944623 0.2210581 -0.5533834 0.3944623 0.2210581 -0.5611974 0.3944623 0.2210581 -0.5687816 0.3944623 0.2210581 -0.092819 0.4085988 0.2210581 -0.1056428 0.4085988 0.2210581 -0.1201537 0.4085988 0.2210581 -0.1409607 0.4085988 0.2210581 -0.1678172 0.4085988 0.2210581 -0.1950164 0.4085988 0.2210581 -0.2210581 0.4085988 0.2210581 -0.245636 0.4085988 0.2210581 -0.2686816 0.4085988 0.2210581 -0.2902431 0.4085988 0.2210581 -0.3104189 0.4085988 0.2210581 -0.3293248 0.4085988 0.2210581 -0.3470774 0.4085988 0.2210581 -0.3637862 0.4085988 0.2210581 -0.3795513 0.4085988 0.2210581 -0.3944623 0.4085988 0.2210581 -0.4085988 0.4085988 0.2210581 -0.4220313 0.4085988 0.2210581 -0.4348222 0.4085988 0.2210581 -0.4470264 0.4085988 0.2210581 -0.4586928 0.4085988 0.2210581 -0.4698649 0.4085988 0.2210581 -0.4805811 0.4085988 0.2210581 -0.490876 0.4085988 0.2210581 -0.5007803 0.4085988 0.2210581 -0.510322 0.4085988 0.2210581 -0.5195258 0.4085988 0.2210581 -0.5284142 0.4085988 0.2210581 -0.5370079 0.4085988 0.2210581 -0.5453253 0.4085988 0.2210581 -0.5533834 0.4085988 0.2210581 -0.5611974 0.4085988 0.2210581 -0.5687816 0.4085988 0.2210581 -0.092819 0.4220313 0.2210581 -0.1056428 0.4220313 0.2210581 -0.1201537 0.4220313 0.2210581 -0.1409607 0.4220313 0.2210581 -0.1678172 0.4220313 0.2210581 -0.1950164 0.4220313 0.2210581 -0.2210581 0.4220313 0.2210581 -0.245636 0.4220313 0.2210581 -0.2686816 0.4220313 0.2210581 -0.2902431 0.4220313 0.2210581 -0.3104189 0.4220313 0.2210581 -0.3293248 0.4220313 0.2210581 -0.3470774 0.4220313 0.2210581 -0.3637862 0.4220313 0.2210581 -0.3795513 0.4220313 0.2210581 -0.3944623 0.4220313 0.2210581 -0.4085988 0.4220313 0.2210581 -0.4220313 0.4220313 0.2210581 -0.4348222 0.4220313 0.2210581 -0.4470264 0.4220313 0.2210581 -0.4586928 0.4220313 0.2210581 -0.4698649 0.4220313 0.2210581 -0.4805811 0.4220313 0.2210581 -0.490876 0.4220313 0.2210581 -0.5007803 0.4220313 0.2210581 -0.510322 0.4220313 0.2210581 -0.5195258 0.4220313 0.2210581 -0.5284142 0.4220313 0.2210581 -0.5370079 0.4220313 0.2210581 -0.5453253 0.4220313 0.2210581 -0.5533834 0.4220313 0.2210581 -0.5611974 0.4220313 0.2210581 -0.5687816 0.4220313 0.2210581 -0.092819 0.4348222 0.2210581 -0.1056428 0.4348222 0.2210581 -0.1201537 0.4348222 0.2210581 -0.1409607 0.4348222 0.2210581 -0.1678172 0.4348222 0.2210581 -0.1950164 0.4348222 0.2210581 -0.2210581 0.4348222 0.2210581 -0.245636 0.4348222 0.2210581 -0.2686816 0.4348222 0.2210581 -0.2902431 0.4348222 0.2210581 -0.3104189 0.4348222 0.2210581 -0.3293248 0.4348222 0.2210581 -0.3470774 0.4348222 0.2210581 -0.3637862 0.4348222 0.2210581 -0.3795513 0.4348222 0.2210581 -0.3944623 0.4348222 0.2210581 -0.4085988 0.4348222 0.2210581 -0.4220313 0.4348222 0.2210581 -0.4348222 0.4348222 0.2210581 -0.4470264 0.4348222 0.2210581 -0.4586928 0.4348222 0.2210581 -0.4698649 0.4348222 0.2210581 -0.4805811 0.4348222 0.2210581 -0.490876 0.4348222 0.2210581 -0.5007803 0.4348222 0.2210581 -0.510322 0.4348222 0.2210581 -0.5195258 0.4348222 0.2210581 -0.5284142 0.4348222 0.2210581 -0.5370079 0.4348222 0.2210581 -0.5453253 0.4348222 0.2210581 -0.5533834 0.4348222 0.2210581 -0.5611974 0.4348222 0.2210581 -0.5687816 0.4348222 0.2210581 -0.092819 0.4470264 0.2210581 -0.1056428 0.4470264 0.2210581 -0.1201537 0.4470264 0.2210581 -0.1409607 0.4470264 0.2210581 -0.1678172 0.4470264 0.2210581 -0.1950164 0.4470264 0.2210581 -0.2210581 0.4470264 0.2210581 -0.245636 0.4470264 0.2210581 -0.2686816 0.4470264 0.2210581 -0.2902431 0.4470264 0.2210581 -0.3104189 0.4470264 0.2210581 -0.3293248 0.4470264 0.2210581 -0.3470774 0.4470264 0.2210581 -0.3637862 0.4470264 0.2210581 -0.3795513 0.4470264 0.2210581 -0.3944623 0.4470264 0.2210581 -0.4085988 0.4470264 0.2210581 -0.4220313 0.4470264 0.2210581 -0.4348222 0.4470264 0.2210581 -0.4470264 0.4470264 0.2210581 -0.4586928 0.4470264 0.2210581 -0.4698649 0.4470264 0.2210581 -0.4805811 0.4470264 0.2210581 -0.490876 0.4470264 0.2210581 -0.5007803 0.4470264 0.2210581 -0.510322 0.4470264 0.2210581 -0.5195258 0.4470264 0.2210581 -0.5284142 0.4470264 0.2210581 -0.5370079 0.4470264 0.2210581 -0.5453253 0.4470264 0.2210581 -0.5533834 0.4470264 0.2210581 -0.5611974 0.4470264 0.2210581 -0.5687816 0.4470264 0.2210581 -0.092819 0.4586928 0.2210581 -0.1056428 0.4586928 0.2210581 -0.1201537 0.4586928 0.2210581 -0.1409607 0.4586928 0.2210581 -0.1678172 0.4586928 0.2210581 -0.1950164 0.4586928 0.2210581 -0.2210581 0.4586928 0.2210581 -0.245636 0.4586928 0.2210581 -0.2686816 0.4586928 0.2210581 -0.2902431 0.4586928 0.2210581 -0.3104189 0.4586928 0.2210581 -0.3293248 0.4586928 0.2210581 -0.3470774 0.4586928 0.2210581 -0.3637862 0.4586928 0.2210581 -0.3795513 0.4586928 0.2210581 -0.3944623 0.4586928 0.2210581 -0.4085988 0.4586928 0.2210581 -0.4220313 0.4586928 0.2210581 -0.4348222 0.4586928 0.2210581 -0.4470264 0.4586928 0.2210581 -0.4586928 0.4586928 0.2210581 -0.4698649 0.4586928 0.2210581 -0.4805811 0.4586928 0.2210581 -0.490876 0.4586928 0.2210581 -0.5007803 0.4586928 0.2210581 -0.510322 0.4586928 0.2210581 -0.5195258 0.4586928 0.2210581 -0.5284142 0.4586928 0.2210581 -0.5370079 0.4586928 0.2210581 -0.5453253 0.4586928 0.2210581 -0.5533834 0.4586928 0.2210581 -0.5611974 0.4586928 0.2210581 -0.5687816 0.4586928 0.2210581 -0.092819 0.4698649 0.2210581 -0.1056428 0.4698649 0.2210581 -0.1201537 0.4698649 0.2210581 -0.1409607 0.4698649 0.2210581 -0.1678172 0.4698649 0.2210581 -0.1950164 0.4698649 0.2210581 -0.2210581 0.4698649 0.2210581 -0.245636 0.4698649 0.2210581 -0.2686816 0.4698649 0.2210581 -0.2902431 0.4698649 0.2210581 -0.3104189 0.4698649 0.2210581 -0.3293248 0.4698649 0.2210581 -0.3470774 0.4698649 0.2210581 -0.3637862 0.4698649 0.2210581 -0.3795513 0.4698649 0.2210581 -0.3944623 0.4698649 0.2210581 -0.4085988 0.4698649 0.2210581 -0.4220313 0.4698649 0.2210581 -0.4348222 0.4698649 0.2210581 -0.4470264 0.4698649 0.2210581 -0.4586928 0.4698649 0.2210581 -0.4698649 0.4698649 0.2210581 -0.4805811 0.4698649 0.2210581 -0.490876 0.4698649 0.2210581 -0.5007803 0.4698649 0.2210581 -0.510322 0.4698649 0.2210581 -0.5195258 0.4698649 0.2210581 -0.5284142 0.4698649 0.2210581 -0.5370079 0.4698649 0.2210581 -0.5453253 0.4698649 0.2210581 -0.5533834 0.4698649 0.2210581 -0.5611974 0.4698649 0.2210581 -0.5687816 0.4698649 0.2210581 -0.092819 0.4805811 0.2210581 -0.1056428 0.4805811 0.2210581 -0.1201537 0.4805811 0.2210581 -0.1409607 0.4805811 0.2210581 -0.1678172 0.4805811 0.2210581 -0.1950164 0.4805811 0.2210581 -0.2210581 0.4805811 0.2210581 -0.245636 0.4805811 0.2210581 -0.2686816 0.4805811 0.2210581 -0.2902431 0.4805811 0.2210581 -0.3104189 0.4805811 0.2210581 -0.3293248 0.4805811 0.2210581 -0.3470774 0.4805811 0.2210581 -0.3637862 0.4805811 0.2210581 -0.3795513 0.4805811 0.2210581 -0.3944623 0.4805811 0.2210581 -0.4085988 0.4805811 0.2210581 -0.4220313 0.4805811 0.2210581 -0.4348222 0.4805811 0.2210581 -0.4470264 0.4805811 0.2210581 -0.4586928 0.4805811 0.2210581 -0.4698649 0.4805811 0.2210581 -0.4805811 0.4805811 0.2210581 -0.490876 0.4805811 0.2210581 -0.5007803 0.4805811 0.2210581 -0.510322 0.4805811 0.2210581 -0.5195258 0.4805811 0.2210581 -0.5284142 0.4805811 0.2210581 -0.5370079 0.4805811 0.2210581 -0.5453253 0.4805811 0.2210581 -0.5533834 0.4805811 0.2210581 -0.5611974 0.4805811 0.2210581 -0.5687816 0.4805811 0.2210581 -0.092819 0.490876 0.2210581 -0.1056428 0.490876 0.2210581 -0.1201537 0.490876 0.2210581 -0.1409607 0.490876 0.2210581 -0.1678172 0.490876 0.2210581 -0.1950164 0.490876 0.2210581 -0.2210581 0.490876 0.2210581 -0.245636 0.490876 0.2210581 -0.2686816 0.490876 0.2210581 -0.2902431 0.490876 0.2210581 -0.3104189 0.490876 0.2210581 -0.3293248 0.490876 0.2210581 -0.3470774 0.490876 0.2210581 -0.3637862 0.490876 0.2210581 -0.3795513 0.490876 0.2210581 -0.3944623 0.490876 0.2210581 -0.4085988 0.490876 0.2210581 -0.4220313 0.490876 0.2210581 -0.4348222 0.490876 0.2210581 -0.4470264 0.490876 0.2210581 -0.4586928 0.490876 0.2210581 -0.4698649 0.490876 0.2210581 -0.4805811 0.490876 0.2210581 -0.490876 0.490876 0.2210581 -0.5007803 0.490876 0.2210581 -0.510322 0.490876 0.2210581 -0.5195258 0.490876 0.2210581 -0.5284142 0.490876 0.2210581 -0.5370079 0.490876 0.2210581 -0.5453253 0.490876 0.2210581 -0.5533834 0.490876 0.2210581 -0.5611974 0.490876 0.2210581 -0.5687816 0.490876 0.2210581 -0.092819 0.5007803 0.2210581 -0.1056428 0.5007803 0.2210581 -0.1201537 0.5007803 0.2210581 -0.1409607 0.5007803 0.2210581 -0.1678172 0.5007803 0.2210581 -0.1950164 0.5007803 0.2210581 -0.2210581 0.5007803 0.2210581 -0.245636 0.5007803 0.2210581 -0.2686816 0.5007803 0.2210581 -0.2902431 0.5007803 0.2210581 -0.3104189 0.5007803 0.2210581 -0.3293248 0.5007803 0.2210581 -0.3470774 0.5007803 0.2210581 -0.3637862 0.5007803 0.2210581 -0.3795513 0.5007803 0.2210581 -0.3944623 0.5007803 0.2210581 -0.4085988 0.5007803 0.2210581 -0.4220313 0.5007803 0.2210581 -0.4348222 0.5007803 0.2210581 -0.4470264 0.5007803 0.2210581 -0.4586928 0.5007803 0.2210581 -0.4698649 0.5007803 0.2210581 -0.4805811 0.5007803 0.2210581 -0.490876 0.5007803 0.2210581 -0.5007803 0.5007803 0.2210581 -0.510322 0.5007803 0.2210581 -0.5195258 0.5007803 0.2210581 -0.5284142 0.5007803 0.2210581 -0.5370079 0.5007803 0.2210581 -0.5453253 0.5007803 0.2210581 -0.5533834 0.5007803 0.2210581 -0.5611974 0.5007803 0.2210581 -0.5687816 0.5007803 0.2210581 -0.092819 0.510322 0.2210581 -0.1056428 0.510322 0.2210581 -0.1201537 0.510322 0.2210581 -0.1409607 0.510322 0.2210581 -0.1678172 0.510322 0.2210581 -0.1950164 0.510322 0.2210581 -0.2210581 0.510322 0.2210581 -0.245636 0.510322 0.2210581 -0.2686816 0.510322 0.2210581 -0.2902431 0.510322 0.2210581 -0.3104189 0.510322 0.2210581 -0.3293248 0.510322 0.2210581 -0.3470774 0.510322 0.2210581 -0.3637862 0.510322 0.2210581 -0.3795513 0.510322 0.2210581 -0.3944623 0.510322 0.2210581 -0.4085988 0.510322 0.2210581 -0.4220313 0.510322 0.2210581 -0.4348222 0.510322 0.2210581 -0.4470264 0.510322 0.2210581 -0.4586928 0.510322 0.2210581 -0.4698649 0.510322 0.2210581 -0.4805811 0.510322 0.2210581 -0.490876 0.510322 0.2210581 -0.5007803 0.510322 0.2210581 -0.510322 0.510322 0.2210581 -0.5195258 0.510322 0.2210581 -0.5284142 0.510322 0.2210581 -0.5370079 0.510322 0.2210581 -0.5453253 0.510322 0.2210581 -0.5533834 0.510322 0.2210581 -0.5611974 0.510322 0.2210581 -0.5687816 0.510322 0.2210581 -0.092819 0.5195258 0.2210581 -0.1056428 0.5195258 0.2210581 -0.1201537 0.5195258 0.2210581 -0.1409607 0.5195258 0.2210581 -0.1678172 0.5195258 0.2210581 -0.1950164 0.5195258 0.2210581 -0.2210581 0.5195258 0.2210581 -0.245636 0.5195258 0.2210581 -0.2686816 0.5195258 0.2210581 -0.2902431 0.5195258 0.2210581 -0.3104189 0.5195258 0.2210581 -0.3293248 0.5195258 0.2210581 -0.3470774 0.5195258 0.2210581 -0.3637862 0.5195258 0.2210581 -0.3795513 0.5195258 0.2210581 -0.3944623 0.5195258 0.2210581 -0.4085988 0.5195258 0.2210581 -0.4220313 0.5195258 0.2210581 -0.4348222 0.5195258 0.2210581 -0.4470264 0.5195258 0.2210581 -0.4586928 0.5195258 0.2210581 -0.4698649 0.5195258 0.2210581 -0.4805811 0.5195258 0.2210581 -0.490876 0.5195258 0.2210581 -0.5007803 0.5195258 0.2210581 -0.510322 0.5195258 0.2210581 -0.5195258 0.5195258 0.2210581 -0.5284142 0.5195258 0.2210581 -0.5370079 0.5195258 0.2210581 -0.5453253 0.5195258 0.2210581 -0.5533834 0.5195258 0.2210581 -0.5611974 0.5195258 0.2210581 -0.5687816 0.5195258 0.2210581 -0.092819 0.5284142 0.2210581 -0.1056428 0.5284142 0.2210581 -0.1201537 0.5284142 0.2210581 -0.1409607 0.5284142 0.2210581 -0.1678172 0.5284142 0.2210581 -0.1950164 0.5284142 0.2210581 -0.2210581 0.5284142 0.2210581 -0.245636 0.5284142 0.2210581 -0.2686816 0.5284142 0.2210581 -0.2902431 0.5284142 0.2210581 -0.3104189 0.5284142 0.2210581 -0.3293248 0.5284142 0.2210581 -0.3470774 0.5284142 0.2210581 -0.3637862 0.5284142 0.2210581 -0.3795513 0.5284142 0.2210581 -0.3944623 0.5284142 0.2210581 -0.4085988 0.5284142 0.2210581 -0.4220313 0.5284142 0.2210581 -0.4348222 0.5284142 0.2210581 -0.4470264 0.5284142 0.2210581 -0.4586928 0.5284142 0.2210581 -0.4698649 0.5284142 0.2210581 -0.4805811 0.5284142 0.2210581 -0.490876 0.5284142 0.2210581 -0.5007803 0.5284142 0.2210581 -0.510322 0.5284142 0.2210581 -0.5195258 0.5284142 0.2210581 -0.5284142 0.5284142 0.2210581 -0.5370079 0.5284142 0.2210581 -0.5453253 0.5284142 0.2210581 -0.5533834 0.5284142 0.2210581 -0.5611974 0.5284142 0.2210581 -0.5687816 0.5284142 0.2210581 -0.092819 0.5370079 0.2210581 -0.1056428 0.5370079 0.2210581 -0.1201537 0.5370079 0.2210581 -0.1409607 0.5370079 0.2210581 -0.1678172 0.5370079 0.2210581 -0.1950164 0.5370079 0.2210581 -0.2210581 0.5370079 0.2210581 -0.245636 0.5370079 0.2210581 -0.2686816 0.5370079 0.2210581 -0.2902431 0.5370079 0.2210581 -0.3104189 0.5370079 0.2210581 -0.3293248 0.5370079 0.2210581 -0.3470774 0.5370079 0.2210581 -0.3637862 0.5370079 0.2210581 -0.3795513 0.5370079 0.2210581 -0.3944623 0.5370079 0.2210581 -0.4085988 0.5370079 0.2210581 -0.4220313 0.5370079 0.2210581 -0.4348222 0.5370079 0.2210581 -0.4470264 0.5370079 0.2210581 -0.4586928 0.5370079 0.2210581 -0.4698649 0.5370079 0.2210581 -0.4805811 0.5370079 0.2210581 -0.490876 0.5370079 0.2210581 -0.5007803 0.5370079 0.2210581 -0.510322 0.5370079 0.2210581 -0.5195258 0.5370079 0.2210581 -0.5284142 0.5370079 0.2210581 -0.5370079 0.5370079 0.2210581 -0.5453253 0.5370079 0.2210581 -0.5533834 0.5370079 0.2210581 -0.5611974 0.5370079 0.2210581 -0.5687816 0.5370079 0.2210581 -0.092819 0.5453253 0.2210581 -0.1056428 0.5453253 0.2210581 -0.1201537 0.5453253 0.2210581 -0.1409607 0.5453253 0.2210581 -0.1678172 0.5453253 0.2210581 -0.1950164 0.5453253 0.2210581 -0.2210581 0.5453253 0.2210581 -0.245636 0.5453253 0.2210581 -0.2686816 0.5453253 0.2210581 -0.2902431 0.5453253 0.2210581 -0.3104189 0.5453253 0.2210581 -0.3293248 0.5453253 0.2210581 -0.3470774 0.5453253 0.2210581 -0.3637862 0.5453253 0.2210581 -0.3795513 0.5453253 0.2210581 -0.3944623 0.5453253 0.2210581 -0.4085988 0.5453253 0.2210581 -0.4220313 0.5453253 0.2210581 -0.4348222 0.5453253 0.2210581 -0.4470264 0.5453253 0.2210581 -0.4586928 0.5453253 0.2210581 -0.4698649 0.5453253 0.2210581 -0.4805811 0.5453253 0.2210581 -0.490876 0.5453253 0.2210581 -0.5007803 0.5453253 0.2210581 -0.510322 0.5453253 0.2210581 -0.5195258 0.5453253 0.2210581 -0.5284142 0.5453253 0.2210581 -0.5370079 0.5453253 0.2210581 -0.5453253 0.5453253 0.2210581 -0.5533834 0.5453253 0.2210581 -0.5611974 0.5453253 0.2210581 -0.5687816 0.5453253 0.2210581 -0.092819 0.5533834 0.2210581 -0.1056428 0.5533834 0.2210581 -0.1201537 0.5533834 0.2210581 -0.1409607 0.5533834 0.2210581 -0.1678172 0.5533834 0.2210581 -0.1950164 0.5533834 0.2210581 -0.2210581 0.5533834 0.2210581 -0.245636 0.5533834 0.2210581 -0.2686816 0.5533834 0.2210581 -0.2902431 0.5533834 0.2210581 -0.3104189 0.5533834 0.2210581 -0.3293248 0.5533834 0.2210581 -0.3470774 0.5533834 0.2210581 -0.3637862 0.5533834 0.2210581 -0.3795513 0.5533834 0.2210581 -0.3944623 0.5533834 0.2210581 -0.4085988 0.5533834 0.2210581 -0.4220313 0.5533834 0.2210581 -0.4348222 0.5533834 0.2210581 -0.4470264 0.5533834 0.2210581 -0.4586928 0.5533834 0.2210581 -0.4698649 0.5533834 0.2210581 -0.4805811 0.5533834 0.2210581 -0.490876 0.5533834 0.2210581 -0.5007803 0.5533834 0.2210581 -0.510322 0.5533834 0.2210581 -0.5195258 0.5533834 0.2210581 -0.5284142 0.5533834 0.2210581 -0.5370079 0.5533834 0.2210581 -0.5453253 0.5533834 0.2210581 -0.5533834 0.5533834 0.2210581 -0.5611974 0.5533834 0.2210581 -0.5687816 0.5533834 0.2210581 -0.092819 0.5611974 0.2210581 -0.1056428 0.5611974 0.2210581 -0.1201537 0.5611974 0.2210581 -0.1409607 0.5611974 0.2210581 -0.1678172 0.5611974 0.2210581 -0.1950164 0.5611974 0.2210581 -0.2210581 0.5611974 0.2210581 -0.245636 0.5611974 0.2210581 -0.2686816 0.5611974 0.2210581 -0.2902431 0.5611974 0.2210581 -0.3104189 0.5611974 0.2210581 -0.3293248 0.5611974 0.2210581 -0.3470774 0.5611974 0.2210581 -0.3637862 0.5611974 0.2210581 -0.3795513 0.5611974 0.2210581 -0.3944623 0.5611974 0.2210581 -0.4085988 0.5611974 0.2210581 -0.4220313 0.5611974 0.2210581 -0.4348222 0.5611974 0.2210581 -0.4470264 0.5611974 0.2210581 -0.4586928 0.5611974 0.2210581 -0.4698649 0.5611974 0.2210581 -0.4805811 0.5611974 0.2210581 -0.490876 0.5611974 0.2210581 -0.5007803 0.5611974 0.2210581 -0.510322 0.5611974 0.2210581 -0.5195258 0.5611974 0.2210581 -0.5284142 0.5611974 0.2210581 -0.5370079 0.5611974 0.2210581 -0.5453253 0.5611974 0.2210581 -0.5533834 0.5611974 0.2210581 -0.5611974 0.5611974 0.2210581 -0.5687816 0.5611974 0.2210581 -0.092819 0.5687816 0.2210581 -0.1056428 0.5687816 0.2210581 -0.1201537 0.5687816 0.2210581 -0.1409607 0.5687816 0.2210581 -0.1678172 0.5687816 0.2210581 -0.1950164 0.5687816 0.2210581 -0.2210581 0.5687816 0.2210581 -0.245636 0.5687816 0.2210581 -0.2686816 0.5687816 0.2210581 -0.2902431 0.5687816 0.2210581 -0.3104189 0.5687816 0.2210581 -0.3293248 0.5687816 0.2210581 -0.3470774 0.5687816 0.2210581 -0.3637862 0.5687816 0.2210581 -0.3795513 0.5687816 0.2210581 -0.3944623 0.5687816 0.2210581 -0.4085988 0.5687816 0.2210581 -0.4220313 0.5687816 0.2210581 -0.4348222 0.5687816 0.2210581 -0.4470264 0.5687816 0.2210581 -0.4586928 0.5687816 0.2210581 -0.4698649 0.5687816 0.2210581 -0.4805811 0.5687816 0.2210581 -0.490876 0.5687816 0.2210581 -0.5007803 0.5687816 0.2210581 -0.510322 0.5687816 0.2210581 -0.5195258 0.5687816 0.2210581 -0.5284142 0.5687816 0.2210581 -0.5370079 0.5687816 0.2210581 -0.5453253 0.5687816 0.2210581 -0.5533834 0.5687816 0.2210581 -0.5611974 0.5687816 0.2210581 -0.5687816 0.5687816 0.2210581 -0.092819 0.092819 0.245636 -0.1056428 0.092819 0.245636 -0.1201537 0.092819 0.245636 -0.1409607 0.092819 0.245636 -0.1678172 0.092819 0.245636 -0.1950164 0.092819 0.245636 -0.2210581 0.092819 0.245636 -0.245636 0.092819 0.245636 -0.2686816 0.092819 0.245636 -0.2902431 0.092819 0.245636 -0.3104189 0.092819 0.245636 -0.3293248 0.092819 0.245636 -0.3470774 0.092819 0.245636 -0.3637862 0.092819 0.245636 -0.3795513 0.092819 0.245636 -0.3944623 0.092819 0.245636 -0.4085988 0.092819 0.245636 -0.4220313 0.092819 0.245636 -0.4348222 0.092819 0.245636 -0.4470264 0.092819 0.245636 -0.4586928 0.092819 0.245636 -0.4698649 0.092819 0.245636 -0.4805811 0.092819 0.245636 -0.490876 0.092819 0.245636 -0.5007803 0.092819 0.245636 -0.510322 0.092819 0.245636 -0.5195258 0.092819 0.245636 -0.5284142 0.092819 0.245636 -0.5370079 0.092819 0.245636 -0.5453253 0.092819 0.245636 -0.5533834 0.092819 0.245636 -0.5611974 0.092819 0.245636 -0.5687816 0.092819 0.245636 -0.092819 0.1056428 0.245636 -0.1056428 0.1056428 0.245636 -0.1201537 0.1056428 0.245636 -0.1409607 0.1056428 0.245636 -0.1678172 0.1056428 0.245636 -0.1950164 0.1056428 0.245636 -0.2210581 0.1056428 0.245636 -0.245636 0.1056428 0.245636 -0.2686816 0.1056428 0.245636 -0.2902431 0.1056428 0.245636 -0.3104189 0.1056428 0.245636 -0.3293248 0.1056428 0.245636 -0.3470774 0.1056428 0.245636 -0.3637862 0.1056428 0.245636 -0.3795513 0.1056428 0.245636 -0.3944623 0.1056428 0.245636 -0.4085988 0.1056428 0.245636 -0.4220313 0.1056428 0.245636 -0.4348222 0.1056428 0.245636 -0.4470264 0.1056428 0.245636 -0.4586928 0.1056428 0.245636 -0.4698649 0.1056428 0.245636 -0.4805811 0.1056428 0.245636 -0.490876 0.1056428 0.245636 -0.5007803 0.1056428 0.245636 -0.510322 0.1056428 0.245636 -0.5195258 0.1056428 0.245636 -0.5284142 0.1056428 0.245636 -0.5370079 0.1056428 0.245636 -0.5453253 0.1056428 0.245636 -0.5533834 0.1056428 0.245636 -0.5611974 0.1056428 0.245636 -0.5687816 0.1056428 0.245636 -0.092819 0.1201537 0.245636 -0.1056428 0.1201537 0.245636 -0.1201537 0.1201537 0.245636 -0.1409607 0.1201537 0.245636 -0.1678172 0.1201537 0.245636 -0.1950164 0.1201537 0.245636 -0.2210581 0.1201537 0.245636 -0.245636 0.1201537 0.245636 -0.2686816 0.1201537 0.245636 -0.2902431 0.1201537 0.245636 -0.3104189 0.1201537 0.245636 -0.3293248 0.1201537 0.245636 -0.3470774 0.1201537 0.245636 -0.3637862 0.1201537 0.245636 -0.3795513 0.1201537 0.245636 -0.3944623 0.1201537 0.245636 -0.4085988 0.1201537 0.245636 -0.4220313 0.1201537 0.245636 -0.4348222 0.1201537 0.245636 -0.4470264 0.1201537 0.245636 -0.4586928 0.1201537 0.245636 -0.4698649 0.1201537 0.245636 -0.4805811 0.1201537 0.245636 -0.490876 0.1201537 0.245636 -0.5007803 0.1201537 0.245636 -0.510322 0.1201537 0.245636 -0.5195258 0.1201537 0.245636 -0.5284142 0.1201537 0.245636 -0.5370079 0.1201537 0.245636 -0.5453253 0.1201537 0.245636 -0.5533834 0.1201537 0.245636 -0.5611974 0.1201537 0.245636 -0.5687816 0.1201537 0.245636 -0.092819 0.1409607 0.245636 -0.1056428 0.1409607 0.245636 -0.1201537 0.1409607 0.245636 -0.1409607 0.1409607 0.245636 -0.1678172 0.1409607 0.245636 -0.1950164 0.1409607 0.245636 -0.2210581 0.1409607 0.245636 -0.245636 0.1409607 0.245636 -0.2686816 0.1409607 0.245636 -0.2902431 0.1409607 0.245636 -0.3104189 0.1409607 0.245636 -0.3293248 0.1409607 0.245636 -0.3470774 0.1409607 0.245636 -0.3637862 0.1409607 0.245636 -0.3795513 0.1409607 0.245636 -0.3944623 0.1409607 0.245636 -0.4085988 0.1409607 0.245636 -0.4220313 0.1409607 0.245636 -0.4348222 0.1409607 0.245636 -0.4470264 0.1409607 0.245636 -0.4586928 0.1409607 0.245636 -0.4698649 0.1409607 0.245636 -0.4805811 0.1409607 0.245636 -0.490876 0.1409607 0.245636 -0.5007803 0.1409607 0.245636 -0.510322 0.1409607 0.245636 -0.5195258 0.1409607 0.245636 -0.5284142 0.1409607 0.245636 -0.5370079 0.1409607 0.245636 -0.5453253 0.1409607 0.245636 -0.5533834 0.1409607 0.245636 -0.5611974 0.1409607 0.245636 -0.5687816 0.1409607 0.245636 -0.092819 0.1678172 0.245636 -0.1056428 0.1678172 0.245636 -0.1201537 0.1678172 0.245636 -0.1409607 0.1678172 0.245636 -0.1678172 0.1678172 0.245636 -0.1950164 0.1678172 0.245636 -0.2210581 0.1678172 0.245636 -0.245636 0.1678172 0.245636 -0.2686816 0.1678172 0.245636 -0.2902431 0.1678172 0.245636 -0.3104189 0.1678172 0.245636 -0.3293248 0.1678172 0.245636 -0.3470774 0.1678172 0.245636 -0.3637862 0.1678172 0.245636 -0.3795513 0.1678172 0.245636 -0.3944623 0.1678172 0.245636 -0.4085988 0.1678172 0.245636 -0.4220313 0.1678172 0.245636 -0.4348222 0.1678172 0.245636 -0.4470264 0.1678172 0.245636 -0.4586928 0.1678172 0.245636 -0.4698649 0.1678172 0.245636 -0.4805811 0.1678172 0.245636 -0.490876 0.1678172 0.245636 -0.5007803 0.1678172 0.245636 -0.510322 0.1678172 0.245636 -0.5195258 0.1678172 0.245636 -0.5284142 0.1678172 0.245636 -0.5370079 0.1678172 0.245636 -0.5453253 0.1678172 0.245636 -0.5533834 0.1678172 0.245636 -0.5611974 0.1678172 0.245636 -0.5687816 0.1678172 0.245636 -0.092819 0.1950164 0.245636 -0.1056428 0.1950164 0.245636 -0.1201537 0.1950164 0.245636 -0.1409607 0.1950164 0.245636 -0.1678172 0.1950164 0.245636 -0.1950164 0.1950164 0.245636 -0.2210581 0.1950164 0.245636 -0.245636 0.1950164 0.245636 -0.2686816 0.1950164 0.245636 -0.2902431 0.1950164 0.245636 -0.3104189 0.1950164 0.245636 -0.3293248 0.1950164 0.245636 -0.3470774 0.1950164 0.245636 -0.3637862 0.1950164 0.245636 -0.3795513 0.1950164 0.245636 -0.3944623 0.1950164 0.245636 -0.4085988 0.1950164 0.245636 -0.4220313 0.1950164 0.245636 -0.4348222 0.1950164 0.245636 -0.4470264 0.1950164 0.245636 -0.4586928 0.1950164 0.245636 -0.4698649 0.1950164 0.245636 -0.4805811 0.1950164 0.245636 -0.490876 0.1950164 0.245636 -0.5007803 0.1950164 0.245636 -0.510322 0.1950164 0.245636 -0.5195258 0.1950164 0.245636 -0.5284142 0.1950164 0.245636 -0.5370079 0.1950164 0.245636 -0.5453253 0.1950164 0.245636 -0.5533834 0.1950164 0.245636 -0.5611974 0.1950164 0.245636 -0.5687816 0.1950164 0.245636 -0.092819 0.2210581 0.245636 -0.1056428 0.2210581 0.245636 -0.1201537 0.2210581 0.245636 -0.1409607 0.2210581 0.245636 -0.1678172 0.2210581 0.245636 -0.1950164 0.2210581 0.245636 -0.2210581 0.2210581 0.245636 -0.245636 0.2210581 0.245636 -0.2686816 0.2210581 0.245636 -0.2902431 0.2210581 0.245636 -0.3104189 0.2210581 0.245636 -0.3293248 0.2210581 0.245636 -0.3470774 0.2210581 0.245636 -0.3637862 0.2210581 0.245636 -0.3795513 0.2210581 0.245636 -0.3944623 0.2210581 0.245636 -0.4085988 0.2210581 0.245636 -0.4220313 0.2210581 0.245636 -0.4348222 0.2210581 0.245636 -0.4470264 0.2210581 0.245636 -0.4586928 0.2210581 0.245636 -0.4698649 0.2210581 0.245636 -0.4805811 0.2210581 0.245636 -0.490876 0.2210581 0.245636 -0.5007803 0.2210581 0.245636 -0.510322 0.2210581 0.245636 -0.5195258 0.2210581 0.245636 -0.5284142 0.2210581 0.245636 -0.5370079 0.2210581 0.245636 -0.5453253 0.2210581 0.245636 -0.5533834 0.2210581 0.245636 -0.5611974 0.2210581 0.245636 -0.5687816 0.2210581 0.245636 -0.092819 0.245636 0.245636 -0.1056428 0.245636 0.245636 -0.1201537 0.245636 0.245636 -0.1409607 0.245636 0.245636 -0.1678172 0.245636 0.245636 -0.1950164 0.245636 0.245636 -0.2210581 0.245636 0.245636 -0.245636 0.245636 0.245636 -0.2686816 0.245636 0.245636 -0.2902431 0.245636 0.245636 -0.3104189 0.245636 0.245636 -0.3293248 0.245636 0.245636 -0.3470774 0.245636 0.245636 -0.3637862 0.245636 0.245636 -0.3795513 0.245636 0.245636 -0.3944623 0.245636 0.245636 -0.4085988 0.245636 0.245636 -0.4220313 0.245636 0.245636 -0.4348222 0.245636 0.245636 -0.4470264 0.245636 0.245636 -0.4586928 0.245636 0.245636 -0.4698649 0.245636 0.245636 -0.4805811 0.245636 0.245636 -0.490876 0.245636 0.245636 -0.5007803 0.245636 0.245636 -0.510322 0.245636 0.245636 -0.5195258 0.245636 0.245636 -0.5284142 0.245636 0.245636 -0.5370079 0.245636 0.245636 -0.5453253 0.245636 0.245636 -0.5533834 0.245636 0.245636 -0.5611974 0.245636 0.245636 -0.5687816 0.245636 0.245636 -0.092819 0.2686816 0.245636 -0.1056428 0.2686816 0.245636 -0.1201537 0.2686816 0.245636 -0.1409607 0.2686816 0.245636 -0.1678172 0.2686816 0.245636 -0.1950164 0.2686816 0.245636 -0.2210581 0.2686816 0.245636 -0.245636 0.2686816 0.245636 -0.2686816 0.2686816 0.245636 -0.2902431 0.2686816 0.245636 -0.3104189 0.2686816 0.245636 -0.3293248 0.2686816 0.245636 -0.3470774 0.2686816 0.245636 -0.3637862 0.2686816 0.245636 -0.3795513 0.2686816 0.245636 -0.3944623 0.2686816 0.245636 -0.4085988 0.2686816 0.245636 -0.4220313 0.2686816 0.245636 -0.4348222 0.2686816 0.245636 -0.4470264 0.2686816 0.245636 -0.4586928 0.2686816 0.245636 -0.4698649 0.2686816 0.245636 -0.4805811 0.2686816 0.245636 -0.490876 0.2686816 0.245636 -0.5007803 0.2686816 0.245636 -0.510322 0.2686816 0.245636 -0.5195258 0.2686816 0.245636 -0.5284142 0.2686816 0.245636 -0.5370079 0.2686816 0.245636 -0.5453253 0.2686816 0.245636 -0.5533834 0.2686816 0.245636 -0.5611974 0.2686816 0.245636 -0.5687816 0.2686816 0.245636 -0.092819 0.2902431 0.245636 -0.1056428 0.2902431 0.245636 -0.1201537 0.2902431 0.245636 -0.1409607 0.2902431 0.245636 -0.1678172 0.2902431 0.245636 -0.1950164 0.2902431 0.245636 -0.2210581 0.2902431 0.245636 -0.245636 0.2902431 0.245636 -0.2686816 0.2902431 0.245636 -0.2902431 0.2902431 0.245636 -0.3104189 0.2902431 0.245636 -0.3293248 0.2902431 0.245636 -0.3470774 0.2902431 0.245636 -0.3637862 0.2902431 0.245636 -0.3795513 0.2902431 0.245636 -0.3944623 0.2902431 0.245636 -0.4085988 0.2902431 0.245636 -0.4220313 0.2902431 0.245636 -0.4348222 0.2902431 0.245636 -0.4470264 0.2902431 0.245636 -0.4586928 0.2902431 0.245636 -0.4698649 0.2902431 0.245636 -0.4805811 0.2902431 0.245636 -0.490876 0.2902431 0.245636 -0.5007803 0.2902431 0.245636 -0.510322 0.2902431 0.245636 -0.5195258 0.2902431 0.245636 -0.5284142 0.2902431 0.245636 -0.5370079 0.2902431 0.245636 -0.5453253 0.2902431 0.245636 -0.5533834 0.2902431 0.245636 -0.5611974 0.2902431 0.245636 -0.5687816 0.2902431 0.245636 -0.092819 0.3104189 0.245636 -0.1056428 0.3104189 0.245636 -0.1201537 0.3104189 0.245636 -0.1409607 0.3104189 0.245636 -0.1678172 0.3104189 0.245636 -0.1950164 0.3104189 0.245636 -0.2210581 0.3104189 0.245636 -0.245636 0.3104189 0.245636 -0.2686816 0.3104189 0.245636 -0.2902431 0.3104189 0.245636 -0.3104189 0.3104189 0.245636 -0.3293248 0.3104189 0.245636 -0.3470774 0.3104189 0.245636 -0.3637862 0.3104189 0.245636 -0.3795513 0.3104189 0.245636 -0.3944623 0.3104189 0.245636 -0.4085988 0.3104189 0.245636 -0.4220313 0.3104189 0.245636 -0.4348222 0.3104189 0.245636 -0.4470264 0.3104189 0.245636 -0.4586928 0.3104189 0.245636 -0.4698649 0.3104189 0.245636 -0.4805811 0.3104189 0.245636 -0.490876 0.3104189 0.245636 -0.5007803 0.3104189 0.245636 -0.510322 0.3104189 0.245636 -0.5195258 0.3104189 0.245636 -0.5284142 0.3104189 0.245636 -0.5370079 0.3104189 0.245636 -0.5453253 0.3104189 0.245636 -0.5533834 0.3104189 0.245636 -0.5611974 0.3104189 0.245636 -0.5687816 0.3104189 0.245636 -0.092819 0.3293248 0.245636 -0.1056428 0.3293248 0.245636 -0.1201537 0.3293248 0.245636 -0.1409607 0.3293248 0.245636 -0.1678172 0.3293248 0.245636 -0.1950164 0.3293248 0.245636 -0.2210581 0.3293248 0.245636 -0.245636 0.3293248 0.245636 -0.2686816 0.3293248 0.245636 -0.2902431 0.3293248 0.245636 -0.3104189 0.3293248 0.245636 -0.3293248 0.3293248 0.245636 -0.3470774 0.3293248 0.245636 -0.3637862 0.3293248 0.245636 -0.3795513 0.3293248 0.245636 -0.3944623 0.3293248 0.245636 -0.4085988 0.3293248 0.245636 -0.4220313 0.3293248 0.245636 -0.4348222 0.3293248 0.245636 -0.4470264 0.3293248 0.245636 -0.4586928 0.3293248 0.245636 -0.4698649 0.3293248 0.245636 -0.4805811 0.3293248 0.245636 -0.490876 0.3293248 0.245636 -0.5007803 0.3293248 0.245636 -0.510322 0.3293248 0.245636 -0.5195258 0.3293248 0.245636 -0.5284142 0.3293248 0.245636 -0.5370079 0.3293248 0.245636 -0.5453253 0.3293248 0.245636 -0.5533834 0.3293248 0.245636 -0.5611974 0.3293248 0.245636 -0.5687816 0.3293248 0.245636 -0.092819 0.3470774 0.245636 -0.1056428 0.3470774 0.245636 -0.1201537 0.3470774 0.245636 -0.1409607 0.3470774 0.245636 -0.1678172 0.3470774 0.245636 -0.1950164 0.3470774 0.245636 -0.2210581 0.3470774 0.245636 -0.245636 0.3470774 0.245636 -0.2686816 0.3470774 0.245636 -0.2902431 0.3470774 0.245636 -0.3104189 0.3470774 0.245636 -0.3293248 0.3470774 0.245636 -0.3470774 0.3470774 0.245636 -0.3637862 0.3470774 0.245636 -0.3795513 0.3470774 0.245636 -0.3944623 0.3470774 0.245636 -0.4085988 0.3470774 0.245636 -0.4220313 0.3470774 0.245636 -0.4348222 0.3470774 0.245636 -0.4470264 0.3470774 0.245636 -0.4586928 0.3470774 0.245636 -0.4698649 0.3470774 0.245636 -0.4805811 0.3470774 0.245636 -0.490876 0.3470774 0.245636 -0.5007803 0.3470774 0.245636 -0.510322 0.3470774 0.245636 -0.5195258 0.3470774 0.245636 -0.5284142 0.3470774 0.245636 -0.5370079 0.3470774 0.245636 -0.5453253 0.3470774 0.245636 -0.5533834 0.3470774 0.245636 -0.5611974 0.3470774 0.245636 -0.5687816 0.3470774 0.245636 -0.092819 0.3637862 0.245636 -0.1056428 0.3637862 0.245636 -0.1201537 0.3637862 0.245636 -0.1409607 0.3637862 0.245636 -0.1678172 0.3637862 0.245636 -0.1950164 0.3637862 0.245636 -0.2210581 0.3637862 0.245636 -0.245636 0.3637862 0.245636 -0.2686816 0.3637862 0.245636 -0.2902431 0.3637862 0.245636 -0.3104189 0.3637862 0.245636 -0.3293248 0.3637862 0.245636 -0.3470774 0.3637862 0.245636 -0.3637862 0.3637862 0.245636 -0.3795513 0.3637862 0.245636 -0.3944623 0.3637862 0.245636 -0.4085988 0.3637862 0.245636 -0.4220313 0.3637862 0.245636 -0.4348222 0.3637862 0.245636 -0.4470264 0.3637862 0.245636 -0.4586928 0.3637862 0.245636 -0.4698649 0.3637862 0.245636 -0.4805811 0.3637862 0.245636 -0.490876 0.3637862 0.245636 -0.5007803 0.3637862 0.245636 -0.510322 0.3637862 0.245636 -0.5195258 0.3637862 0.245636 -0.5284142 0.3637862 0.245636 -0.5370079 0.3637862 0.245636 -0.5453253 0.3637862 0.245636 -0.5533834 0.3637862 0.245636 -0.5611974 0.3637862 0.245636 -0.5687816 0.3637862 0.245636 -0.092819 0.3795513 0.245636 -0.1056428 0.3795513 0.245636 -0.1201537 0.3795513 0.245636 -0.1409607 0.3795513 0.245636 -0.1678172 0.3795513 0.245636 -0.1950164 0.3795513 0.245636 -0.2210581 0.3795513 0.245636 -0.245636 0.3795513 0.245636 -0.2686816 0.3795513 0.245636 -0.2902431 0.3795513 0.245636 -0.3104189 0.3795513 0.245636 -0.3293248 0.3795513 0.245636 -0.3470774 0.3795513 0.245636 -0.3637862 0.3795513 0.245636 -0.3795513 0.3795513 0.245636 -0.3944623 0.3795513 0.245636 -0.4085988 0.3795513 0.245636 -0.4220313 0.3795513 0.245636 -0.4348222 0.3795513 0.245636 -0.4470264 0.3795513 0.245636 -0.4586928 0.3795513 0.245636 -0.4698649 0.3795513 0.245636 -0.4805811 0.3795513 0.245636 -0.490876 0.3795513 0.245636 -0.5007803 0.3795513 0.245636 -0.510322 0.3795513 0.245636 -0.5195258 0.3795513 0.245636 -0.5284142 0.3795513 0.245636 -0.5370079 0.3795513 0.245636 -0.5453253 0.3795513 0.245636 -0.5533834 0.3795513 0.245636 -0.5611974 0.3795513 0.245636 -0.5687816 0.3795513 0.245636 -0.092819 0.3944623 0.245636 -0.1056428 0.3944623 0.245636 -0.1201537 0.3944623 0.245636 -0.1409607 0.3944623 0.245636 -0.1678172 0.3944623 0.245636 -0.1950164 0.3944623 0.245636 -0.2210581 0.3944623 0.245636 -0.245636 0.3944623 0.245636 -0.2686816 0.3944623 0.245636 -0.2902431 0.3944623 0.245636 -0.3104189 0.3944623 0.245636 -0.3293248 0.3944623 0.245636 -0.3470774 0.3944623 0.245636 -0.3637862 0.3944623 0.245636 -0.3795513 0.3944623 0.245636 -0.3944623 0.3944623 0.245636 -0.4085988 0.3944623 0.245636 -0.4220313 0.3944623 0.245636 -0.4348222 0.3944623 0.245636 -0.4470264 0.3944623 0.245636 -0.4586928 0.3944623 0.245636 -0.4698649 0.3944623 0.245636 -0.4805811 0.3944623 0.245636 -0.490876 0.3944623 0.245636 -0.5007803 0.3944623 0.245636 -0.510322 0.3944623 0.245636 -0.5195258 0.3944623 0.245636 -0.5284142 0.3944623 0.245636 -0.5370079 0.3944623 0.245636 -0.5453253 0.3944623 0.245636 -0.5533834 0.3944623 0.245636 -0.5611974 0.3944623 0.245636 -0.5687816 0.3944623 0.245636 -0.092819 0.4085988 0.245636 -0.1056428 0.4085988 0.245636 -0.1201537 0.4085988 0.245636 -0.1409607 0.4085988 0.245636 -0.1678172 0.4085988 0.245636 -0.1950164 0.4085988 0.245636 -0.2210581 0.4085988 0.245636 -0.245636 0.4085988 0.245636 -0.2686816 0.4085988 0.245636 -0.2902431 0.4085988 0.245636 -0.3104189 0.4085988 0.245636 -0.3293248 0.4085988 0.245636 -0.3470774 0.4085988 0.245636 -0.3637862 0.4085988 0.245636 -0.3795513 0.4085988 0.245636 -0.3944623 0.4085988 0.245636 -0.4085988 0.4085988 0.245636 -0.4220313 0.4085988 0.245636 -0.4348222 0.4085988 0.245636 -0.4470264 0.4085988 0.245636 -0.4586928 0.4085988 0.245636 -0.4698649 0.4085988 0.245636 -0.4805811 0.4085988 0.245636 -0.490876 0.4085988 0.245636 -0.5007803 0.4085988 0.245636 -0.510322 0.4085988 0.245636 -0.5195258 0.4085988 0.245636 -0.5284142 0.4085988 0.245636 -0.5370079 0.4085988 0.245636 -0.5453253 0.4085988 0.245636 -0.5533834 0.4085988 0.245636 -0.5611974 0.4085988 0.245636 -0.5687816 0.4085988 0.245636 -0.092819 0.4220313 0.245636 -0.1056428 0.4220313 0.245636 -0.1201537 0.4220313 0.245636 -0.1409607 0.4220313 0.245636 -0.1678172 0.4220313 0.245636 -0.1950164 0.4220313 0.245636 -0.2210581 0.4220313 0.245636 -0.245636 0.4220313 0.245636 -0.2686816 0.4220313 0.245636 -0.2902431 0.4220313 0.245636 -0.3104189 0.4220313 0.245636 -0.3293248 0.4220313 0.245636 -0.3470774 0.4220313 0.245636 -0.3637862 0.4220313 0.245636 -0.3795513 0.4220313 0.245636 -0.3944623 0.4220313 0.245636 -0.4085988 0.4220313 0.245636 -0.4220313 0.4220313 0.245636 -0.4348222 0.4220313 0.245636 -0.4470264 0.4220313 0.245636 -0.4586928 0.4220313 0.245636 -0.4698649 0.4220313 0.245636 -0.4805811 0.4220313 0.245636 -0.490876 0.4220313 0.245636 -0.5007803 0.4220313 0.245636 -0.510322 0.4220313 0.245636 -0.5195258 0.4220313 0.245636 -0.5284142 0.4220313 0.245636 -0.5370079 0.4220313 0.245636 -0.5453253 0.4220313 0.245636 -0.5533834 0.4220313 0.245636 -0.5611974 0.4220313 0.245636 -0.5687816 0.4220313 0.245636 -0.092819 0.4348222 0.245636 -0.1056428 0.4348222 0.245636 -0.1201537 0.4348222 0.245636 -0.1409607 0.4348222 0.245636 -0.1678172 0.4348222 0.245636 -0.1950164 0.4348222 0.245636 -0.2210581 0.4348222 0.245636 -0.245636 0.4348222 0.245636 -0.2686816 0.4348222 0.245636 -0.2902431 0.4348222 0.245636 -0.3104189 0.4348222 0.245636 -0.3293248 0.4348222 0.245636 -0.3470774 0.4348222 0.245636 -0.3637862 0.4348222 0.245636 -0.3795513 0.4348222 0.245636 -0.3944623 0.4348222 0.245636 -0.4085988 0.4348222 0.245636 -0.4220313 0.4348222 0.245636 -0.4348222 0.4348222 0.245636 -0.4470264 0.4348222 0.245636 -0.4586928 0.4348222 0.245636 -0.4698649 0.4348222 0.245636 -0.4805811 0.4348222 0.245636 -0.490876 0.4348222 0.245636 -0.5007803 0.4348222 0.245636 -0.510322 0.4348222 0.245636 -0.5195258 0.4348222 0.245636 -0.5284142 0.4348222 0.245636 -0.5370079 0.4348222 0.245636 -0.5453253 0.4348222 0.245636 -0.5533834 0.4348222 0.245636 -0.5611974 0.4348222 0.245636 -0.5687816 0.4348222 0.245636 -0.092819 0.4470264 0.245636 -0.1056428 0.4470264 0.245636 -0.1201537 0.4470264 0.245636 -0.1409607 0.4470264 0.245636 -0.1678172 0.4470264 0.245636 -0.1950164 0.4470264 0.245636 -0.2210581 0.4470264 0.245636 -0.245636 0.4470264 0.245636 -0.2686816 0.4470264 0.245636 -0.2902431 0.4470264 0.245636 -0.3104189 0.4470264 0.245636 -0.3293248 0.4470264 0.245636 -0.3470774 0.4470264 0.245636 -0.3637862 0.4470264 0.245636 -0.3795513 0.4470264 0.245636 -0.3944623 0.4470264 0.245636 -0.4085988 0.4470264 0.245636 -0.4220313 0.4470264 0.245636 -0.4348222 0.4470264 0.245636 -0.4470264 0.4470264 0.245636 -0.4586928 0.4470264 0.245636 -0.4698649 0.4470264 0.245636 -0.4805811 0.4470264 0.245636 -0.490876 0.4470264 0.245636 -0.5007803 0.4470264 0.245636 -0.510322 0.4470264 0.245636 -0.5195258 0.4470264 0.245636 -0.5284142 0.4470264 0.245636 -0.5370079 0.4470264 0.245636 -0.5453253 0.4470264 0.245636 -0.5533834 0.4470264 0.245636 -0.5611974 0.4470264 0.245636 -0.5687816 0.4470264 0.245636 -0.092819 0.4586928 0.245636 -0.1056428 0.4586928 0.245636 -0.1201537 0.4586928 0.245636 -0.1409607 0.4586928 0.245636 -0.1678172 0.4586928 0.245636 -0.1950164 0.4586928 0.245636 -0.2210581 0.4586928 0.245636 -0.245636 0.4586928 0.245636 -0.2686816 0.4586928 0.245636 -0.2902431 0.4586928 0.245636 -0.3104189 0.4586928 0.245636 -0.3293248 0.4586928 0.245636 -0.3470774 0.4586928 0.245636 -0.3637862 0.4586928 0.245636 -0.3795513 0.4586928 0.245636 -0.3944623 0.4586928 0.245636 -0.4085988 0.4586928 0.245636 -0.4220313 0.4586928 0.245636 -0.4348222 0.4586928 0.245636 -0.4470264 0.4586928 0.245636 -0.4586928 0.4586928 0.245636 -0.4698649 0.4586928 0.245636 -0.4805811 0.4586928 0.245636 -0.490876 0.4586928 0.245636 -0.5007803 0.4586928 0.245636 -0.510322 0.4586928 0.245636 -0.5195258 0.4586928 0.245636 -0.5284142 0.4586928 0.245636 -0.5370079 0.4586928 0.245636 -0.5453253 0.4586928 0.245636 -0.5533834 0.4586928 0.245636 -0.5611974 0.4586928 0.245636 -0.5687816 0.4586928 0.245636 -0.092819 0.4698649 0.245636 -0.1056428 0.4698649 0.245636 -0.1201537 0.4698649 0.245636 -0.1409607 0.4698649 0.245636 -0.1678172 0.4698649 0.245636 -0.1950164 0.4698649 0.245636 -0.2210581 0.4698649 0.245636 -0.245636 0.4698649 0.245636 -0.2686816 0.4698649 0.245636 -0.2902431 0.4698649 0.245636 -0.3104189 0.4698649 0.245636 -0.3293248 0.4698649 0.245636 -0.3470774 0.4698649 0.245636 -0.3637862 0.4698649 0.245636 -0.3795513 0.4698649 0.245636 -0.3944623 0.4698649 0.245636 -0.4085988 0.4698649 0.245636 -0.4220313 0.4698649 0.245636 -0.4348222 0.4698649 0.245636 -0.4470264 0.4698649 0.245636 -0.4586928 0.4698649 0.245636 -0.4698649 0.4698649 0.245636 -0.4805811 0.4698649 0.245636 -0.490876 0.4698649 0.245636 -0.5007803 0.4698649 0.245636 -0.510322 0.4698649 0.245636 -0.5195258 0.4698649 0.245636 -0.5284142 0.4698649 0.245636 -0.5370079 0.4698649 0.245636 -0.5453253 0.4698649 0.245636 -0.5533834 0.4698649 0.245636 -0.5611974 0.4698649 0.245636 -0.5687816 0.4698649 0.245636 -0.092819 0.4805811 0.245636 -0.1056428 0.4805811 0.245636 -0.1201537 0.4805811 0.245636 -0.1409607 0.4805811 0.245636 -0.1678172 0.4805811 0.245636 -0.1950164 0.4805811 0.245636 -0.2210581 0.4805811 0.245636 -0.245636 0.4805811 0.245636 -0.2686816 0.4805811 0.245636 -0.2902431 0.4805811 0.245636 -0.3104189 0.4805811 0.245636 -0.3293248 0.4805811 0.245636 -0.3470774 0.4805811 0.245636 -0.3637862 0.4805811 0.245636 -0.3795513 0.4805811 0.245636 -0.3944623 0.4805811 0.245636 -0.4085988 0.4805811 0.245636 -0.4220313 0.4805811 0.245636 -0.4348222 0.4805811 0.245636 -0.4470264 0.4805811 0.245636 -0.4586928 0.4805811 0.245636 -0.4698649 0.4805811 0.245636 -0.4805811 0.4805811 0.245636 -0.490876 0.4805811 0.245636 -0.5007803 0.4805811 0.245636 -0.510322 0.4805811 0.245636 -0.5195258 0.4805811 0.245636 -0.5284142 0.4805811 0.245636 -0.5370079 0.4805811 0.245636 -0.5453253 0.4805811 0.245636 -0.5533834 0.4805811 0.245636 -0.5611974 0.4805811 0.245636 -0.5687816 0.4805811 0.245636 -0.092819 0.490876 0.245636 -0.1056428 0.490876 0.245636 -0.1201537 0.490876 0.245636 -0.1409607 0.490876 0.245636 -0.1678172 0.490876 0.245636 -0.1950164 0.490876 0.245636 -0.2210581 0.490876 0.245636 -0.245636 0.490876 0.245636 -0.2686816 0.490876 0.245636 -0.2902431 0.490876 0.245636 -0.3104189 0.490876 0.245636 -0.3293248 0.490876 0.245636 -0.3470774 0.490876 0.245636 -0.3637862 0.490876 0.245636 -0.3795513 0.490876 0.245636 -0.3944623 0.490876 0.245636 -0.4085988 0.490876 0.245636 -0.4220313 0.490876 0.245636 -0.4348222 0.490876 0.245636 -0.4470264 0.490876 0.245636 -0.4586928 0.490876 0.245636 -0.4698649 0.490876 0.245636 -0.4805811 0.490876 0.245636 -0.490876 0.490876 0.245636 -0.5007803 0.490876 0.245636 -0.510322 0.490876 0.245636 -0.5195258 0.490876 0.245636 -0.5284142 0.490876 0.245636 -0.5370079 0.490876 0.245636 -0.5453253 0.490876 0.245636 -0.5533834 0.490876 0.245636 -0.5611974 0.490876 0.245636 -0.5687816 0.490876 0.245636 -0.092819 0.5007803 0.245636 -0.1056428 0.5007803 0.245636 -0.1201537 0.5007803 0.245636 -0.1409607 0.5007803 0.245636 -0.1678172 0.5007803 0.245636 -0.1950164 0.5007803 0.245636 -0.2210581 0.5007803 0.245636 -0.245636 0.5007803 0.245636 -0.2686816 0.5007803 0.245636 -0.2902431 0.5007803 0.245636 -0.3104189 0.5007803 0.245636 -0.3293248 0.5007803 0.245636 -0.3470774 0.5007803 0.245636 -0.3637862 0.5007803 0.245636 -0.3795513 0.5007803 0.245636 -0.3944623 0.5007803 0.245636 -0.4085988 0.5007803 0.245636 -0.4220313 0.5007803 0.245636 -0.4348222 0.5007803 0.245636 -0.4470264 0.5007803 0.245636 -0.4586928 0.5007803 0.245636 -0.4698649 0.5007803 0.245636 -0.4805811 0.5007803 0.245636 -0.490876 0.5007803 0.245636 -0.5007803 0.5007803 0.245636 -0.510322 0.5007803 0.245636 -0.5195258 0.5007803 0.245636 -0.5284142 0.5007803 0.245636 -0.5370079 0.5007803 0.245636 -0.5453253 0.5007803 0.245636 -0.5533834 0.5007803 0.245636 -0.5611974 0.5007803 0.245636 -0.5687816 0.5007803 0.245636 -0.092819 0.510322 0.245636 -0.1056428 0.510322 0.245636 -0.1201537 0.510322 0.245636 -0.1409607 0.510322 0.245636 -0.1678172 0.510322 0.245636 -0.1950164 0.510322 0.245636 -0.2210581 0.510322 0.245636 -0.245636 0.510322 0.245636 -0.2686816 0.510322 0.245636 -0.2902431 0.510322 0.245636 -0.3104189 0.510322 0.245636 -0.3293248 0.510322 0.245636 -0.3470774 0.510322 0.245636 -0.3637862 0.510322 0.245636 -0.3795513 0.510322 0.245636 -0.3944623 0.510322 0.245636 -0.4085988 0.510322 0.245636 -0.4220313 0.510322 0.245636 -0.4348222 0.510322 0.245636 -0.4470264 0.510322 0.245636 -0.4586928 0.510322 0.245636 -0.4698649 0.510322 0.245636 -0.4805811 0.510322 0.245636 -0.490876 0.510322 0.245636 -0.5007803 0.510322 0.245636 -0.510322 0.510322 0.245636 -0.5195258 0.510322 0.245636 -0.5284142 0.510322 0.245636 -0.5370079 0.510322 0.245636 -0.5453253 0.510322 0.245636 -0.5533834 0.510322 0.245636 -0.5611974 0.510322 0.245636 -0.5687816 0.510322 0.245636 -0.092819 0.5195258 0.245636 -0.1056428 0.5195258 0.245636 -0.1201537 0.5195258 0.245636 -0.1409607 0.5195258 0.245636 -0.1678172 0.5195258 0.245636 -0.1950164 0.5195258 0.245636 -0.2210581 0.5195258 0.245636 -0.245636 0.5195258 0.245636 -0.2686816 0.5195258 0.245636 -0.2902431 0.5195258 0.245636 -0.3104189 0.5195258 0.245636 -0.3293248 0.5195258 0.245636 -0.3470774 0.5195258 0.245636 -0.3637862 0.5195258 0.245636 -0.3795513 0.5195258 0.245636 -0.3944623 0.5195258 0.245636 -0.4085988 0.5195258 0.245636 -0.4220313 0.5195258 0.245636 -0.4348222 0.5195258 0.245636 -0.4470264 0.5195258 0.245636 -0.4586928 0.5195258 0.245636 -0.4698649 0.5195258 0.245636 -0.4805811 0.5195258 0.245636 -0.490876 0.5195258 0.245636 -0.5007803 0.5195258 0.245636 -0.510322 0.5195258 0.245636 -0.5195258 0.5195258 0.245636 -0.5284142 0.5195258 0.245636 -0.5370079 0.5195258 0.245636 -0.5453253 0.5195258 0.245636 -0.5533834 0.5195258 0.245636 -0.5611974 0.5195258 0.245636 -0.5687816 0.5195258 0.245636 -0.092819 0.5284142 0.245636 -0.1056428 0.5284142 0.245636 -0.1201537 0.5284142 0.245636 -0.1409607 0.5284142 0.245636 -0.1678172 0.5284142 0.245636 -0.1950164 0.5284142 0.245636 -0.2210581 0.5284142 0.245636 -0.245636 0.5284142 0.245636 -0.2686816 0.5284142 0.245636 -0.2902431 0.5284142 0.245636 -0.3104189 0.5284142 0.245636 -0.3293248 0.5284142 0.245636 -0.3470774 0.5284142 0.245636 -0.3637862 0.5284142 0.245636 -0.3795513 0.5284142 0.245636 -0.3944623 0.5284142 0.245636 -0.4085988 0.5284142 0.245636 -0.4220313 0.5284142 0.245636 -0.4348222 0.5284142 0.245636 -0.4470264 0.5284142 0.245636 -0.4586928 0.5284142 0.245636 -0.4698649 0.5284142 0.245636 -0.4805811 0.5284142 0.245636 -0.490876 0.5284142 0.245636 -0.5007803 0.5284142 0.245636 -0.510322 0.5284142 0.245636 -0.5195258 0.5284142 0.245636 -0.5284142 0.5284142 0.245636 -0.5370079 0.5284142 0.245636 -0.5453253 0.5284142 0.245636 -0.5533834 0.5284142 0.245636 -0.5611974 0.5284142 0.245636 -0.5687816 0.5284142 0.245636 -0.092819 0.5370079 0.245636 -0.1056428 0.5370079 0.245636 -0.1201537 0.5370079 0.245636 -0.1409607 0.5370079 0.245636 -0.1678172 0.5370079 0.245636 -0.1950164 0.5370079 0.245636 -0.2210581 0.5370079 0.245636 -0.245636 0.5370079 0.245636 -0.2686816 0.5370079 0.245636 -0.2902431 0.5370079 0.245636 -0.3104189 0.5370079 0.245636 -0.3293248 0.5370079 0.245636 -0.3470774 0.5370079 0.245636 -0.3637862 0.5370079 0.245636 -0.3795513 0.5370079 0.245636 -0.3944623 0.5370079 0.245636 -0.4085988 0.5370079 0.245636 -0.4220313 0.5370079 0.245636 -0.4348222 0.5370079 0.245636 -0.4470264 0.5370079 0.245636 -0.4586928 0.5370079 0.245636 -0.4698649 0.5370079 0.245636 -0.4805811 0.5370079 0.245636 -0.490876 0.5370079 0.245636 -0.5007803 0.5370079 0.245636 -0.510322 0.5370079 0.245636 -0.5195258 0.5370079 0.245636 -0.5284142 0.5370079 0.245636 -0.5370079 0.5370079 0.245636 -0.5453253 0.5370079 0.245636 -0.5533834 0.5370079 0.245636 -0.5611974 0.5370079 0.245636 -0.5687816 0.5370079 0.245636 -0.092819 0.5453253 0.245636 -0.1056428 0.5453253 0.245636 -0.1201537 0.5453253 0.245636 -0.1409607 0.5453253 0.245636 -0.1678172 0.5453253 0.245636 -0.1950164 0.5453253 0.245636 -0.2210581 0.5453253 0.245636 -0.245636 0.5453253 0.245636 -0.2686816 0.5453253 0.245636 -0.2902431 0.5453253 0.245636 -0.3104189 0.5453253 0.245636 -0.3293248 0.5453253 0.245636 -0.3470774 0.5453253 0.245636 -0.3637862 0.5453253 0.245636 -0.3795513 0.5453253 0.245636 -0.3944623 0.5453253 0.245636 -0.4085988 0.5453253 0.245636 -0.4220313 0.5453253 0.245636 -0.4348222 0.5453253 0.245636 -0.4470264 0.5453253 0.245636 -0.4586928 0.5453253 0.245636 -0.4698649 0.5453253 0.245636 -0.4805811 0.5453253 0.245636 -0.490876 0.5453253 0.245636 -0.5007803 0.5453253 0.245636 -0.510322 0.5453253 0.245636 -0.5195258 0.5453253 0.245636 -0.5284142 0.5453253 0.245636 -0.5370079 0.5453253 0.245636 -0.5453253 0.5453253 0.245636 -0.5533834 0.5453253 0.245636 -0.5611974 0.5453253 0.245636 -0.5687816 0.5453253 0.245636 -0.092819 0.5533834 0.245636 -0.1056428 0.5533834 0.245636 -0.1201537 0.5533834 0.245636 -0.1409607 0.5533834 0.245636 -0.1678172 0.5533834 0.245636 -0.1950164 0.5533834 0.245636 -0.2210581 0.5533834 0.245636 -0.245636 0.5533834 0.245636 -0.2686816 0.5533834 0.245636 -0.2902431 0.5533834 0.245636 -0.3104189 0.5533834 0.245636 -0.3293248 0.5533834 0.245636 -0.3470774 0.5533834 0.245636 -0.3637862 0.5533834 0.245636 -0.3795513 0.5533834 0.245636 -0.3944623 0.5533834 0.245636 -0.4085988 0.5533834 0.245636 -0.4220313 0.5533834 0.245636 -0.4348222 0.5533834 0.245636 -0.4470264 0.5533834 0.245636 -0.4586928 0.5533834 0.245636 -0.4698649 0.5533834 0.245636 -0.4805811 0.5533834 0.245636 -0.490876 0.5533834 0.245636 -0.5007803 0.5533834 0.245636 -0.510322 0.5533834 0.245636 -0.5195258 0.5533834 0.245636 -0.5284142 0.5533834 0.245636 -0.5370079 0.5533834 0.245636 -0.5453253 0.5533834 0.245636 -0.5533834 0.5533834 0.245636 -0.5611974 0.5533834 0.245636 -0.5687816 0.5533834 0.245636 -0.092819 0.5611974 0.245636 -0.1056428 0.5611974 0.245636 -0.1201537 0.5611974 0.245636 -0.1409607 0.5611974 0.245636 -0.1678172 0.5611974 0.245636 -0.1950164 0.5611974 0.245636 -0.2210581 0.5611974 0.245636 -0.245636 0.5611974 0.245636 -0.2686816 0.5611974 0.245636 -0.2902431 0.5611974 0.245636 -0.3104189 0.5611974 0.245636 -0.3293248 0.5611974 0.245636 -0.3470774 0.5611974 0.245636 -0.3637862 0.5611974 0.245636 -0.3795513 0.5611974 0.245636 -0.3944623 0.5611974 0.245636 -0.4085988 0.5611974 0.245636 -0.4220313 0.5611974 0.245636 -0.4348222 0.5611974 0.245636 -0.4470264 0.5611974 0.245636 -0.4586928 0.5611974 0.245636 -0.4698649 0.5611974 0.245636 -0.4805811 0.5611974 0.245636 -0.490876 0.5611974 0.245636 -0.5007803 0.5611974 0.245636 -0.510322 0.5611974 0.245636 -0.5195258 0.5611974 0.245636 -0.5284142 0.5611974 0.245636 -0.5370079 0.5611974 0.245636 -0.5453253 0.5611974 0.245636 -0.5533834 0.5611974 0.245636 -0.5611974 0.5611974 0.245636 -0.5687816 0.5611974 0.245636 -0.092819 0.5687816 0.245636 -0.1056428 0.5687816 0.245636 -0.1201537 0.5687816 0.245636 -0.1409607 0.5687816 0.245636 -0.1678172 0.5687816 0.245636 -0.1950164 0.5687816 0.245636 -0.2210581 0.5687816 0.245636 -0.245636 0.5687816 0.245636 -0.2686816 0.5687816 0.245636 -0.2902431 0.5687816 0.245636 -0.3104189 0.5687816 0.245636 -0.3293248 0.5687816 0.245636 -0.3470774 0.5687816 0.245636 -0.3637862 0.5687816 0.245636 -0.3795513 0.5687816 0.245636 -0.3944623 0.5687816 0.245636 -0.4085988 0.5687816 0.245636 -0.4220313 0.5687816 0.245636 -0.4348222 0.5687816 0.245636 -0.4470264 0.5687816 0.245636 -0.4586928 0.5687816 0.245636 -0.4698649 0.5687816 0.245636 -0.4805811 0.5687816 0.245636 -0.490876 0.5687816 0.245636 -0.5007803 0.5687816 0.245636 -0.510322 0.5687816 0.245636 -0.5195258 0.5687816 0.245636 -0.5284142 0.5687816 0.245636 -0.5370079 0.5687816 0.245636 -0.5453253 0.5687816 0.245636 -0.5533834 0.5687816 0.245636 -0.5611974 0.5687816 0.245636 -0.5687816 0.5687816 0.245636 -0.092819 0.092819 0.2686816 -0.1056428 0.092819 0.2686816 -0.1201537 0.092819 0.2686816 -0.1409607 0.092819 0.2686816 -0.1678172 0.092819 0.2686816 -0.1950164 0.092819 0.2686816 -0.2210581 0.092819 0.2686816 -0.245636 0.092819 0.2686816 -0.2686816 0.092819 0.2686816 -0.2902431 0.092819 0.2686816 -0.3104189 0.092819 0.2686816 -0.3293248 0.092819 0.2686816 -0.3470774 0.092819 0.2686816 -0.3637862 0.092819 0.2686816 -0.3795513 0.092819 0.2686816 -0.3944623 0.092819 0.2686816 -0.4085988 0.092819 0.2686816 -0.4220313 0.092819 0.2686816 -0.4348222 0.092819 0.2686816 -0.4470264 0.092819 0.2686816 -0.4586928 0.092819 0.2686816 -0.4698649 0.092819 0.2686816 -0.4805811 0.092819 0.2686816 -0.490876 0.092819 0.2686816 -0.5007803 0.092819 0.2686816 -0.510322 0.092819 0.2686816 -0.5195258 0.092819 0.2686816 -0.5284142 0.092819 0.2686816 -0.5370079 0.092819 0.2686816 -0.5453253 0.092819 0.2686816 -0.5533834 0.092819 0.2686816 -0.5611974 0.092819 0.2686816 -0.5687816 0.092819 0.2686816 -0.092819 0.1056428 0.2686816 -0.1056428 0.1056428 0.2686816 -0.1201537 0.1056428 0.2686816 -0.1409607 0.1056428 0.2686816 -0.1678172 0.1056428 0.2686816 -0.1950164 0.1056428 0.2686816 -0.2210581 0.1056428 0.2686816 -0.245636 0.1056428 0.2686816 -0.2686816 0.1056428 0.2686816 -0.2902431 0.1056428 0.2686816 -0.3104189 0.1056428 0.2686816 -0.3293248 0.1056428 0.2686816 -0.3470774 0.1056428 0.2686816 -0.3637862 0.1056428 0.2686816 -0.3795513 0.1056428 0.2686816 -0.3944623 0.1056428 0.2686816 -0.4085988 0.1056428 0.2686816 -0.4220313 0.1056428 0.2686816 -0.4348222 0.1056428 0.2686816 -0.4470264 0.1056428 0.2686816 -0.4586928 0.1056428 0.2686816 -0.4698649 0.1056428 0.2686816 -0.4805811 0.1056428 0.2686816 -0.490876 0.1056428 0.2686816 -0.5007803 0.1056428 0.2686816 -0.510322 0.1056428 0.2686816 -0.5195258 0.1056428 0.2686816 -0.5284142 0.1056428 0.2686816 -0.5370079 0.1056428 0.2686816 -0.5453253 0.1056428 0.2686816 -0.5533834 0.1056428 0.2686816 -0.5611974 0.1056428 0.2686816 -0.5687816 0.1056428 0.2686816 -0.092819 0.1201537 0.2686816 -0.1056428 0.1201537 0.2686816 -0.1201537 0.1201537 0.2686816 -0.1409607 0.1201537 0.2686816 -0.1678172 0.1201537 0.2686816 -0.1950164 0.1201537 0.2686816 -0.2210581 0.1201537 0.2686816 -0.245636 0.1201537 0.2686816 -0.2686816 0.1201537 0.2686816 -0.2902431 0.1201537 0.2686816 -0.3104189 0.1201537 0.2686816 -0.3293248 0.1201537 0.2686816 -0.3470774 0.1201537 0.2686816 -0.3637862 0.1201537 0.2686816 -0.3795513 0.1201537 0.2686816 -0.3944623 0.1201537 0.2686816 -0.4085988 0.1201537 0.2686816 -0.4220313 0.1201537 0.2686816 -0.4348222 0.1201537 0.2686816 -0.4470264 0.1201537 0.2686816 -0.4586928 0.1201537 0.2686816 -0.4698649 0.1201537 0.2686816 -0.4805811 0.1201537 0.2686816 -0.490876 0.1201537 0.2686816 -0.5007803 0.1201537 0.2686816 -0.510322 0.1201537 0.2686816 -0.5195258 0.1201537 0.2686816 -0.5284142 0.1201537 0.2686816 -0.5370079 0.1201537 0.2686816 -0.5453253 0.1201537 0.2686816 -0.5533834 0.1201537 0.2686816 -0.5611974 0.1201537 0.2686816 -0.5687816 0.1201537 0.2686816 -0.092819 0.1409607 0.2686816 -0.1056428 0.1409607 0.2686816 -0.1201537 0.1409607 0.2686816 -0.1409607 0.1409607 0.2686816 -0.1678172 0.1409607 0.2686816 -0.1950164 0.1409607 0.2686816 -0.2210581 0.1409607 0.2686816 -0.245636 0.1409607 0.2686816 -0.2686816 0.1409607 0.2686816 -0.2902431 0.1409607 0.2686816 -0.3104189 0.1409607 0.2686816 -0.3293248 0.1409607 0.2686816 -0.3470774 0.1409607 0.2686816 -0.3637862 0.1409607 0.2686816 -0.3795513 0.1409607 0.2686816 -0.3944623 0.1409607 0.2686816 -0.4085988 0.1409607 0.2686816 -0.4220313 0.1409607 0.2686816 -0.4348222 0.1409607 0.2686816 -0.4470264 0.1409607 0.2686816 -0.4586928 0.1409607 0.2686816 -0.4698649 0.1409607 0.2686816 -0.4805811 0.1409607 0.2686816 -0.490876 0.1409607 0.2686816 -0.5007803 0.1409607 0.2686816 -0.510322 0.1409607 0.2686816 -0.5195258 0.1409607 0.2686816 -0.5284142 0.1409607 0.2686816 -0.5370079 0.1409607 0.2686816 -0.5453253 0.1409607 0.2686816 -0.5533834 0.1409607 0.2686816 -0.5611974 0.1409607 0.2686816 -0.5687816 0.1409607 0.2686816 -0.092819 0.1678172 0.2686816 -0.1056428 0.1678172 0.2686816 -0.1201537 0.1678172 0.2686816 -0.1409607 0.1678172 0.2686816 -0.1678172 0.1678172 0.2686816 -0.1950164 0.1678172 0.2686816 -0.2210581 0.1678172 0.2686816 -0.245636 0.1678172 0.2686816 -0.2686816 0.1678172 0.2686816 -0.2902431 0.1678172 0.2686816 -0.3104189 0.1678172 0.2686816 -0.3293248 0.1678172 0.2686816 -0.3470774 0.1678172 0.2686816 -0.3637862 0.1678172 0.2686816 -0.3795513 0.1678172 0.2686816 -0.3944623 0.1678172 0.2686816 -0.4085988 0.1678172 0.2686816 -0.4220313 0.1678172 0.2686816 -0.4348222 0.1678172 0.2686816 -0.4470264 0.1678172 0.2686816 -0.4586928 0.1678172 0.2686816 -0.4698649 0.1678172 0.2686816 -0.4805811 0.1678172 0.2686816 -0.490876 0.1678172 0.2686816 -0.5007803 0.1678172 0.2686816 -0.510322 0.1678172 0.2686816 -0.5195258 0.1678172 0.2686816 -0.5284142 0.1678172 0.2686816 -0.5370079 0.1678172 0.2686816 -0.5453253 0.1678172 0.2686816 -0.5533834 0.1678172 0.2686816 -0.5611974 0.1678172 0.2686816 -0.5687816 0.1678172 0.2686816 -0.092819 0.1950164 0.2686816 -0.1056428 0.1950164 0.2686816 -0.1201537 0.1950164 0.2686816 -0.1409607 0.1950164 0.2686816 -0.1678172 0.1950164 0.2686816 -0.1950164 0.1950164 0.2686816 -0.2210581 0.1950164 0.2686816 -0.245636 0.1950164 0.2686816 -0.2686816 0.1950164 0.2686816 -0.2902431 0.1950164 0.2686816 -0.3104189 0.1950164 0.2686816 -0.3293248 0.1950164 0.2686816 -0.3470774 0.1950164 0.2686816 -0.3637862 0.1950164 0.2686816 -0.3795513 0.1950164 0.2686816 -0.3944623 0.1950164 0.2686816 -0.4085988 0.1950164 0.2686816 -0.4220313 0.1950164 0.2686816 -0.4348222 0.1950164 0.2686816 -0.4470264 0.1950164 0.2686816 -0.4586928 0.1950164 0.2686816 -0.4698649 0.1950164 0.2686816 -0.4805811 0.1950164 0.2686816 -0.490876 0.1950164 0.2686816 -0.5007803 0.1950164 0.2686816 -0.510322 0.1950164 0.2686816 -0.5195258 0.1950164 0.2686816 -0.5284142 0.1950164 0.2686816 -0.5370079 0.1950164 0.2686816 -0.5453253 0.1950164 0.2686816 -0.5533834 0.1950164 0.2686816 -0.5611974 0.1950164 0.2686816 -0.5687816 0.1950164 0.2686816 -0.092819 0.2210581 0.2686816 -0.1056428 0.2210581 0.2686816 -0.1201537 0.2210581 0.2686816 -0.1409607 0.2210581 0.2686816 -0.1678172 0.2210581 0.2686816 -0.1950164 0.2210581 0.2686816 -0.2210581 0.2210581 0.2686816 -0.245636 0.2210581 0.2686816 -0.2686816 0.2210581 0.2686816 -0.2902431 0.2210581 0.2686816 -0.3104189 0.2210581 0.2686816 -0.3293248 0.2210581 0.2686816 -0.3470774 0.2210581 0.2686816 -0.3637862 0.2210581 0.2686816 -0.3795513 0.2210581 0.2686816 -0.3944623 0.2210581 0.2686816 -0.4085988 0.2210581 0.2686816 -0.4220313 0.2210581 0.2686816 -0.4348222 0.2210581 0.2686816 -0.4470264 0.2210581 0.2686816 -0.4586928 0.2210581 0.2686816 -0.4698649 0.2210581 0.2686816 -0.4805811 0.2210581 0.2686816 -0.490876 0.2210581 0.2686816 -0.5007803 0.2210581 0.2686816 -0.510322 0.2210581 0.2686816 -0.5195258 0.2210581 0.2686816 -0.5284142 0.2210581 0.2686816 -0.5370079 0.2210581 0.2686816 -0.5453253 0.2210581 0.2686816 -0.5533834 0.2210581 0.2686816 -0.5611974 0.2210581 0.2686816 -0.5687816 0.2210581 0.2686816 -0.092819 0.245636 0.2686816 -0.1056428 0.245636 0.2686816 -0.1201537 0.245636 0.2686816 -0.1409607 0.245636 0.2686816 -0.1678172 0.245636 0.2686816 -0.1950164 0.245636 0.2686816 -0.2210581 0.245636 0.2686816 -0.245636 0.245636 0.2686816 -0.2686816 0.245636 0.2686816 -0.2902431 0.245636 0.2686816 -0.3104189 0.245636 0.2686816 -0.3293248 0.245636 0.2686816 -0.3470774 0.245636 0.2686816 -0.3637862 0.245636 0.2686816 -0.3795513 0.245636 0.2686816 -0.3944623 0.245636 0.2686816 -0.4085988 0.245636 0.2686816 -0.4220313 0.245636 0.2686816 -0.4348222 0.245636 0.2686816 -0.4470264 0.245636 0.2686816 -0.4586928 0.245636 0.2686816 -0.4698649 0.245636 0.2686816 -0.4805811 0.245636 0.2686816 -0.490876 0.245636 0.2686816 -0.5007803 0.245636 0.2686816 -0.510322 0.245636 0.2686816 -0.5195258 0.245636 0.2686816 -0.5284142 0.245636 0.2686816 -0.5370079 0.245636 0.2686816 -0.5453253 0.245636 0.2686816 -0.5533834 0.245636 0.2686816 -0.5611974 0.245636 0.2686816 -0.5687816 0.245636 0.2686816 -0.092819 0.2686816 0.2686816 -0.1056428 0.2686816 0.2686816 -0.1201537 0.2686816 0.2686816 -0.1409607 0.2686816 0.2686816 -0.1678172 0.2686816 0.2686816 -0.1950164 0.2686816 0.2686816 -0.2210581 0.2686816 0.2686816 -0.245636 0.2686816 0.2686816 -0.2686816 0.2686816 0.2686816 -0.2902431 0.2686816 0.2686816 -0.3104189 0.2686816 0.2686816 -0.3293248 0.2686816 0.2686816 -0.3470774 0.2686816 0.2686816 -0.3637862 0.2686816 0.2686816 -0.3795513 0.2686816 0.2686816 -0.3944623 0.2686816 0.2686816 -0.4085988 0.2686816 0.2686816 -0.4220313 0.2686816 0.2686816 -0.4348222 0.2686816 0.2686816 -0.4470264 0.2686816 0.2686816 -0.4586928 0.2686816 0.2686816 -0.4698649 0.2686816 0.2686816 -0.4805811 0.2686816 0.2686816 -0.490876 0.2686816 0.2686816 -0.5007803 0.2686816 0.2686816 -0.510322 0.2686816 0.2686816 -0.5195258 0.2686816 0.2686816 -0.5284142 0.2686816 0.2686816 -0.5370079 0.2686816 0.2686816 -0.5453253 0.2686816 0.2686816 -0.5533834 0.2686816 0.2686816 -0.5611974 0.2686816 0.2686816 -0.5687816 0.2686816 0.2686816 -0.092819 0.2902431 0.2686816 -0.1056428 0.2902431 0.2686816 -0.1201537 0.2902431 0.2686816 -0.1409607 0.2902431 0.2686816 -0.1678172 0.2902431 0.2686816 -0.1950164 0.2902431 0.2686816 -0.2210581 0.2902431 0.2686816 -0.245636 0.2902431 0.2686816 -0.2686816 0.2902431 0.2686816 -0.2902431 0.2902431 0.2686816 -0.3104189 0.2902431 0.2686816 -0.3293248 0.2902431 0.2686816 -0.3470774 0.2902431 0.2686816 -0.3637862 0.2902431 0.2686816 -0.3795513 0.2902431 0.2686816 -0.3944623 0.2902431 0.2686816 -0.4085988 0.2902431 0.2686816 -0.4220313 0.2902431 0.2686816 -0.4348222 0.2902431 0.2686816 -0.4470264 0.2902431 0.2686816 -0.4586928 0.2902431 0.2686816 -0.4698649 0.2902431 0.2686816 -0.4805811 0.2902431 0.2686816 -0.490876 0.2902431 0.2686816 -0.5007803 0.2902431 0.2686816 -0.510322 0.2902431 0.2686816 -0.5195258 0.2902431 0.2686816 -0.5284142 0.2902431 0.2686816 -0.5370079 0.2902431 0.2686816 -0.5453253 0.2902431 0.2686816 -0.5533834 0.2902431 0.2686816 -0.5611974 0.2902431 0.2686816 -0.5687816 0.2902431 0.2686816 -0.092819 0.3104189 0.2686816 -0.1056428 0.3104189 0.2686816 -0.1201537 0.3104189 0.2686816 -0.1409607 0.3104189 0.2686816 -0.1678172 0.3104189 0.2686816 -0.1950164 0.3104189 0.2686816 -0.2210581 0.3104189 0.2686816 -0.245636 0.3104189 0.2686816 -0.2686816 0.3104189 0.2686816 -0.2902431 0.3104189 0.2686816 -0.3104189 0.3104189 0.2686816 -0.3293248 0.3104189 0.2686816 -0.3470774 0.3104189 0.2686816 -0.3637862 0.3104189 0.2686816 -0.3795513 0.3104189 0.2686816 -0.3944623 0.3104189 0.2686816 -0.4085988 0.3104189 0.2686816 -0.4220313 0.3104189 0.2686816 -0.4348222 0.3104189 0.2686816 -0.4470264 0.3104189 0.2686816 -0.4586928 0.3104189 0.2686816 -0.4698649 0.3104189 0.2686816 -0.4805811 0.3104189 0.2686816 -0.490876 0.3104189 0.2686816 -0.5007803 0.3104189 0.2686816 -0.510322 0.3104189 0.2686816 -0.5195258 0.3104189 0.2686816 -0.5284142 0.3104189 0.2686816 -0.5370079 0.3104189 0.2686816 -0.5453253 0.3104189 0.2686816 -0.5533834 0.3104189 0.2686816 -0.5611974 0.3104189 0.2686816 -0.5687816 0.3104189 0.2686816 -0.092819 0.3293248 0.2686816 -0.1056428 0.3293248 0.2686816 -0.1201537 0.3293248 0.2686816 -0.1409607 0.3293248 0.2686816 -0.1678172 0.3293248 0.2686816 -0.1950164 0.3293248 0.2686816 -0.2210581 0.3293248 0.2686816 -0.245636 0.3293248 0.2686816 -0.2686816 0.3293248 0.2686816 -0.2902431 0.3293248 0.2686816 -0.3104189 0.3293248 0.2686816 -0.3293248 0.3293248 0.2686816 -0.3470774 0.3293248 0.2686816 -0.3637862 0.3293248 0.2686816 -0.3795513 0.3293248 0.2686816 -0.3944623 0.3293248 0.2686816 -0.4085988 0.3293248 0.2686816 -0.4220313 0.3293248 0.2686816 -0.4348222 0.3293248 0.2686816 -0.4470264 0.3293248 0.2686816 -0.4586928 0.3293248 0.2686816 -0.4698649 0.3293248 0.2686816 -0.4805811 0.3293248 0.2686816 -0.490876 0.3293248 0.2686816 -0.5007803 0.3293248 0.2686816 -0.510322 0.3293248 0.2686816 -0.5195258 0.3293248 0.2686816 -0.5284142 0.3293248 0.2686816 -0.5370079 0.3293248 0.2686816 -0.5453253 0.3293248 0.2686816 -0.5533834 0.3293248 0.2686816 -0.5611974 0.3293248 0.2686816 -0.5687816 0.3293248 0.2686816 -0.092819 0.3470774 0.2686816 -0.1056428 0.3470774 0.2686816 -0.1201537 0.3470774 0.2686816 -0.1409607 0.3470774 0.2686816 -0.1678172 0.3470774 0.2686816 -0.1950164 0.3470774 0.2686816 -0.2210581 0.3470774 0.2686816 -0.245636 0.3470774 0.2686816 -0.2686816 0.3470774 0.2686816 -0.2902431 0.3470774 0.2686816 -0.3104189 0.3470774 0.2686816 -0.3293248 0.3470774 0.2686816 -0.3470774 0.3470774 0.2686816 -0.3637862 0.3470774 0.2686816 -0.3795513 0.3470774 0.2686816 -0.3944623 0.3470774 0.2686816 -0.4085988 0.3470774 0.2686816 -0.4220313 0.3470774 0.2686816 -0.4348222 0.3470774 0.2686816 -0.4470264 0.3470774 0.2686816 -0.4586928 0.3470774 0.2686816 -0.4698649 0.3470774 0.2686816 -0.4805811 0.3470774 0.2686816 -0.490876 0.3470774 0.2686816 -0.5007803 0.3470774 0.2686816 -0.510322 0.3470774 0.2686816 -0.5195258 0.3470774 0.2686816 -0.5284142 0.3470774 0.2686816 -0.5370079 0.3470774 0.2686816 -0.5453253 0.3470774 0.2686816 -0.5533834 0.3470774 0.2686816 -0.5611974 0.3470774 0.2686816 -0.5687816 0.3470774 0.2686816 -0.092819 0.3637862 0.2686816 -0.1056428 0.3637862 0.2686816 -0.1201537 0.3637862 0.2686816 -0.1409607 0.3637862 0.2686816 -0.1678172 0.3637862 0.2686816 -0.1950164 0.3637862 0.2686816 -0.2210581 0.3637862 0.2686816 -0.245636 0.3637862 0.2686816 -0.2686816 0.3637862 0.2686816 -0.2902431 0.3637862 0.2686816 -0.3104189 0.3637862 0.2686816 -0.3293248 0.3637862 0.2686816 -0.3470774 0.3637862 0.2686816 -0.3637862 0.3637862 0.2686816 -0.3795513 0.3637862 0.2686816 -0.3944623 0.3637862 0.2686816 -0.4085988 0.3637862 0.2686816 -0.4220313 0.3637862 0.2686816 -0.4348222 0.3637862 0.2686816 -0.4470264 0.3637862 0.2686816 -0.4586928 0.3637862 0.2686816 -0.4698649 0.3637862 0.2686816 -0.4805811 0.3637862 0.2686816 -0.490876 0.3637862 0.2686816 -0.5007803 0.3637862 0.2686816 -0.510322 0.3637862 0.2686816 -0.5195258 0.3637862 0.2686816 -0.5284142 0.3637862 0.2686816 -0.5370079 0.3637862 0.2686816 -0.5453253 0.3637862 0.2686816 -0.5533834 0.3637862 0.2686816 -0.5611974 0.3637862 0.2686816 -0.5687816 0.3637862 0.2686816 -0.092819 0.3795513 0.2686816 -0.1056428 0.3795513 0.2686816 -0.1201537 0.3795513 0.2686816 -0.1409607 0.3795513 0.2686816 -0.1678172 0.3795513 0.2686816 -0.1950164 0.3795513 0.2686816 -0.2210581 0.3795513 0.2686816 -0.245636 0.3795513 0.2686816 -0.2686816 0.3795513 0.2686816 -0.2902431 0.3795513 0.2686816 -0.3104189 0.3795513 0.2686816 -0.3293248 0.3795513 0.2686816 -0.3470774 0.3795513 0.2686816 -0.3637862 0.3795513 0.2686816 -0.3795513 0.3795513 0.2686816 -0.3944623 0.3795513 0.2686816 -0.4085988 0.3795513 0.2686816 -0.4220313 0.3795513 0.2686816 -0.4348222 0.3795513 0.2686816 -0.4470264 0.3795513 0.2686816 -0.4586928 0.3795513 0.2686816 -0.4698649 0.3795513 0.2686816 -0.4805811 0.3795513 0.2686816 -0.490876 0.3795513 0.2686816 -0.5007803 0.3795513 0.2686816 -0.510322 0.3795513 0.2686816 -0.5195258 0.3795513 0.2686816 -0.5284142 0.3795513 0.2686816 -0.5370079 0.3795513 0.2686816 -0.5453253 0.3795513 0.2686816 -0.5533834 0.3795513 0.2686816 -0.5611974 0.3795513 0.2686816 -0.5687816 0.3795513 0.2686816 -0.092819 0.3944623 0.2686816 -0.1056428 0.3944623 0.2686816 -0.1201537 0.3944623 0.2686816 -0.1409607 0.3944623 0.2686816 -0.1678172 0.3944623 0.2686816 -0.1950164 0.3944623 0.2686816 -0.2210581 0.3944623 0.2686816 -0.245636 0.3944623 0.2686816 -0.2686816 0.3944623 0.2686816 -0.2902431 0.3944623 0.2686816 -0.3104189 0.3944623 0.2686816 -0.3293248 0.3944623 0.2686816 -0.3470774 0.3944623 0.2686816 -0.3637862 0.3944623 0.2686816 -0.3795513 0.3944623 0.2686816 -0.3944623 0.3944623 0.2686816 -0.4085988 0.3944623 0.2686816 -0.4220313 0.3944623 0.2686816 -0.4348222 0.3944623 0.2686816 -0.4470264 0.3944623 0.2686816 -0.4586928 0.3944623 0.2686816 -0.4698649 0.3944623 0.2686816 -0.4805811 0.3944623 0.2686816 -0.490876 0.3944623 0.2686816 -0.5007803 0.3944623 0.2686816 -0.510322 0.3944623 0.2686816 -0.5195258 0.3944623 0.2686816 -0.5284142 0.3944623 0.2686816 -0.5370079 0.3944623 0.2686816 -0.5453253 0.3944623 0.2686816 -0.5533834 0.3944623 0.2686816 -0.5611974 0.3944623 0.2686816 -0.5687816 0.3944623 0.2686816 -0.092819 0.4085988 0.2686816 -0.1056428 0.4085988 0.2686816 -0.1201537 0.4085988 0.2686816 -0.1409607 0.4085988 0.2686816 -0.1678172 0.4085988 0.2686816 -0.1950164 0.4085988 0.2686816 -0.2210581 0.4085988 0.2686816 -0.245636 0.4085988 0.2686816 -0.2686816 0.4085988 0.2686816 -0.2902431 0.4085988 0.2686816 -0.3104189 0.4085988 0.2686816 -0.3293248 0.4085988 0.2686816 -0.3470774 0.4085988 0.2686816 -0.3637862 0.4085988 0.2686816 -0.3795513 0.4085988 0.2686816 -0.3944623 0.4085988 0.2686816 -0.4085988 0.4085988 0.2686816 -0.4220313 0.4085988 0.2686816 -0.4348222 0.4085988 0.2686816 -0.4470264 0.4085988 0.2686816 -0.4586928 0.4085988 0.2686816 -0.4698649 0.4085988 0.2686816 -0.4805811 0.4085988 0.2686816 -0.490876 0.4085988 0.2686816 -0.5007803 0.4085988 0.2686816 -0.510322 0.4085988 0.2686816 -0.5195258 0.4085988 0.2686816 -0.5284142 0.4085988 0.2686816 -0.5370079 0.4085988 0.2686816 -0.5453253 0.4085988 0.2686816 -0.5533834 0.4085988 0.2686816 -0.5611974 0.4085988 0.2686816 -0.5687816 0.4085988 0.2686816 -0.092819 0.4220313 0.2686816 -0.1056428 0.4220313 0.2686816 -0.1201537 0.4220313 0.2686816 -0.1409607 0.4220313 0.2686816 -0.1678172 0.4220313 0.2686816 -0.1950164 0.4220313 0.2686816 -0.2210581 0.4220313 0.2686816 -0.245636 0.4220313 0.2686816 -0.2686816 0.4220313 0.2686816 -0.2902431 0.4220313 0.2686816 -0.3104189 0.4220313 0.2686816 -0.3293248 0.4220313 0.2686816 -0.3470774 0.4220313 0.2686816 -0.3637862 0.4220313 0.2686816 -0.3795513 0.4220313 0.2686816 -0.3944623 0.4220313 0.2686816 -0.4085988 0.4220313 0.2686816 -0.4220313 0.4220313 0.2686816 -0.4348222 0.4220313 0.2686816 -0.4470264 0.4220313 0.2686816 -0.4586928 0.4220313 0.2686816 -0.4698649 0.4220313 0.2686816 -0.4805811 0.4220313 0.2686816 -0.490876 0.4220313 0.2686816 -0.5007803 0.4220313 0.2686816 -0.510322 0.4220313 0.2686816 -0.5195258 0.4220313 0.2686816 -0.5284142 0.4220313 0.2686816 -0.5370079 0.4220313 0.2686816 -0.5453253 0.4220313 0.2686816 -0.5533834 0.4220313 0.2686816 -0.5611974 0.4220313 0.2686816 -0.5687816 0.4220313 0.2686816 -0.092819 0.4348222 0.2686816 -0.1056428 0.4348222 0.2686816 -0.1201537 0.4348222 0.2686816 -0.1409607 0.4348222 0.2686816 -0.1678172 0.4348222 0.2686816 -0.1950164 0.4348222 0.2686816 -0.2210581 0.4348222 0.2686816 -0.245636 0.4348222 0.2686816 -0.2686816 0.4348222 0.2686816 -0.2902431 0.4348222 0.2686816 -0.3104189 0.4348222 0.2686816 -0.3293248 0.4348222 0.2686816 -0.3470774 0.4348222 0.2686816 -0.3637862 0.4348222 0.2686816 -0.3795513 0.4348222 0.2686816 -0.3944623 0.4348222 0.2686816 -0.4085988 0.4348222 0.2686816 -0.4220313 0.4348222 0.2686816 -0.4348222 0.4348222 0.2686816 -0.4470264 0.4348222 0.2686816 -0.4586928 0.4348222 0.2686816 -0.4698649 0.4348222 0.2686816 -0.4805811 0.4348222 0.2686816 -0.490876 0.4348222 0.2686816 -0.5007803 0.4348222 0.2686816 -0.510322 0.4348222 0.2686816 -0.5195258 0.4348222 0.2686816 -0.5284142 0.4348222 0.2686816 -0.5370079 0.4348222 0.2686816 -0.5453253 0.4348222 0.2686816 -0.5533834 0.4348222 0.2686816 -0.5611974 0.4348222 0.2686816 -0.5687816 0.4348222 0.2686816 -0.092819 0.4470264 0.2686816 -0.1056428 0.4470264 0.2686816 -0.1201537 0.4470264 0.2686816 -0.1409607 0.4470264 0.2686816 -0.1678172 0.4470264 0.2686816 -0.1950164 0.4470264 0.2686816 -0.2210581 0.4470264 0.2686816 -0.245636 0.4470264 0.2686816 -0.2686816 0.4470264 0.2686816 -0.2902431 0.4470264 0.2686816 -0.3104189 0.4470264 0.2686816 -0.3293248 0.4470264 0.2686816 -0.3470774 0.4470264 0.2686816 -0.3637862 0.4470264 0.2686816 -0.3795513 0.4470264 0.2686816 -0.3944623 0.4470264 0.2686816 -0.4085988 0.4470264 0.2686816 -0.4220313 0.4470264 0.2686816 -0.4348222 0.4470264 0.2686816 -0.4470264 0.4470264 0.2686816 -0.4586928 0.4470264 0.2686816 -0.4698649 0.4470264 0.2686816 -0.4805811 0.4470264 0.2686816 -0.490876 0.4470264 0.2686816 -0.5007803 0.4470264 0.2686816 -0.510322 0.4470264 0.2686816 -0.5195258 0.4470264 0.2686816 -0.5284142 0.4470264 0.2686816 -0.5370079 0.4470264 0.2686816 -0.5453253 0.4470264 0.2686816 -0.5533834 0.4470264 0.2686816 -0.5611974 0.4470264 0.2686816 -0.5687816 0.4470264 0.2686816 -0.092819 0.4586928 0.2686816 -0.1056428 0.4586928 0.2686816 -0.1201537 0.4586928 0.2686816 -0.1409607 0.4586928 0.2686816 -0.1678172 0.4586928 0.2686816 -0.1950164 0.4586928 0.2686816 -0.2210581 0.4586928 0.2686816 -0.245636 0.4586928 0.2686816 -0.2686816 0.4586928 0.2686816 -0.2902431 0.4586928 0.2686816 -0.3104189 0.4586928 0.2686816 -0.3293248 0.4586928 0.2686816 -0.3470774 0.4586928 0.2686816 -0.3637862 0.4586928 0.2686816 -0.3795513 0.4586928 0.2686816 -0.3944623 0.4586928 0.2686816 -0.4085988 0.4586928 0.2686816 -0.4220313 0.4586928 0.2686816 -0.4348222 0.4586928 0.2686816 -0.4470264 0.4586928 0.2686816 -0.4586928 0.4586928 0.2686816 -0.4698649 0.4586928 0.2686816 -0.4805811 0.4586928 0.2686816 -0.490876 0.4586928 0.2686816 -0.5007803 0.4586928 0.2686816 -0.510322 0.4586928 0.2686816 -0.5195258 0.4586928 0.2686816 -0.5284142 0.4586928 0.2686816 -0.5370079 0.4586928 0.2686816 -0.5453253 0.4586928 0.2686816 -0.5533834 0.4586928 0.2686816 -0.5611974 0.4586928 0.2686816 -0.5687816 0.4586928 0.2686816 -0.092819 0.4698649 0.2686816 -0.1056428 0.4698649 0.2686816 -0.1201537 0.4698649 0.2686816 -0.1409607 0.4698649 0.2686816 -0.1678172 0.4698649 0.2686816 -0.1950164 0.4698649 0.2686816 -0.2210581 0.4698649 0.2686816 -0.245636 0.4698649 0.2686816 -0.2686816 0.4698649 0.2686816 -0.2902431 0.4698649 0.2686816 -0.3104189 0.4698649 0.2686816 -0.3293248 0.4698649 0.2686816 -0.3470774 0.4698649 0.2686816 -0.3637862 0.4698649 0.2686816 -0.3795513 0.4698649 0.2686816 -0.3944623 0.4698649 0.2686816 -0.4085988 0.4698649 0.2686816 -0.4220313 0.4698649 0.2686816 -0.4348222 0.4698649 0.2686816 -0.4470264 0.4698649 0.2686816 -0.4586928 0.4698649 0.2686816 -0.4698649 0.4698649 0.2686816 -0.4805811 0.4698649 0.2686816 -0.490876 0.4698649 0.2686816 -0.5007803 0.4698649 0.2686816 -0.510322 0.4698649 0.2686816 -0.5195258 0.4698649 0.2686816 -0.5284142 0.4698649 0.2686816 -0.5370079 0.4698649 0.2686816 -0.5453253 0.4698649 0.2686816 -0.5533834 0.4698649 0.2686816 -0.5611974 0.4698649 0.2686816 -0.5687816 0.4698649 0.2686816 -0.092819 0.4805811 0.2686816 -0.1056428 0.4805811 0.2686816 -0.1201537 0.4805811 0.2686816 -0.1409607 0.4805811 0.2686816 -0.1678172 0.4805811 0.2686816 -0.1950164 0.4805811 0.2686816 -0.2210581 0.4805811 0.2686816 -0.245636 0.4805811 0.2686816 -0.2686816 0.4805811 0.2686816 -0.2902431 0.4805811 0.2686816 -0.3104189 0.4805811 0.2686816 -0.3293248 0.4805811 0.2686816 -0.3470774 0.4805811 0.2686816 -0.3637862 0.4805811 0.2686816 -0.3795513 0.4805811 0.2686816 -0.3944623 0.4805811 0.2686816 -0.4085988 0.4805811 0.2686816 -0.4220313 0.4805811 0.2686816 -0.4348222 0.4805811 0.2686816 -0.4470264 0.4805811 0.2686816 -0.4586928 0.4805811 0.2686816 -0.4698649 0.4805811 0.2686816 -0.4805811 0.4805811 0.2686816 -0.490876 0.4805811 0.2686816 -0.5007803 0.4805811 0.2686816 -0.510322 0.4805811 0.2686816 -0.5195258 0.4805811 0.2686816 -0.5284142 0.4805811 0.2686816 -0.5370079 0.4805811 0.2686816 -0.5453253 0.4805811 0.2686816 -0.5533834 0.4805811 0.2686816 -0.5611974 0.4805811 0.2686816 -0.5687816 0.4805811 0.2686816 -0.092819 0.490876 0.2686816 -0.1056428 0.490876 0.2686816 -0.1201537 0.490876 0.2686816 -0.1409607 0.490876 0.2686816 -0.1678172 0.490876 0.2686816 -0.1950164 0.490876 0.2686816 -0.2210581 0.490876 0.2686816 -0.245636 0.490876 0.2686816 -0.2686816 0.490876 0.2686816 -0.2902431 0.490876 0.2686816 -0.3104189 0.490876 0.2686816 -0.3293248 0.490876 0.2686816 -0.3470774 0.490876 0.2686816 -0.3637862 0.490876 0.2686816 -0.3795513 0.490876 0.2686816 -0.3944623 0.490876 0.2686816 -0.4085988 0.490876 0.2686816 -0.4220313 0.490876 0.2686816 -0.4348222 0.490876 0.2686816 -0.4470264 0.490876 0.2686816 -0.4586928 0.490876 0.2686816 -0.4698649 0.490876 0.2686816 -0.4805811 0.490876 0.2686816 -0.490876 0.490876 0.2686816 -0.5007803 0.490876 0.2686816 -0.510322 0.490876 0.2686816 -0.5195258 0.490876 0.2686816 -0.5284142 0.490876 0.2686816 -0.5370079 0.490876 0.2686816 -0.5453253 0.490876 0.2686816 -0.5533834 0.490876 0.2686816 -0.5611974 0.490876 0.2686816 -0.5687816 0.490876 0.2686816 -0.092819 0.5007803 0.2686816 -0.1056428 0.5007803 0.2686816 -0.1201537 0.5007803 0.2686816 -0.1409607 0.5007803 0.2686816 -0.1678172 0.5007803 0.2686816 -0.1950164 0.5007803 0.2686816 -0.2210581 0.5007803 0.2686816 -0.245636 0.5007803 0.2686816 -0.2686816 0.5007803 0.2686816 -0.2902431 0.5007803 0.2686816 -0.3104189 0.5007803 0.2686816 -0.3293248 0.5007803 0.2686816 -0.3470774 0.5007803 0.2686816 -0.3637862 0.5007803 0.2686816 -0.3795513 0.5007803 0.2686816 -0.3944623 0.5007803 0.2686816 -0.4085988 0.5007803 0.2686816 -0.4220313 0.5007803 0.2686816 -0.4348222 0.5007803 0.2686816 -0.4470264 0.5007803 0.2686816 -0.4586928 0.5007803 0.2686816 -0.4698649 0.5007803 0.2686816 -0.4805811 0.5007803 0.2686816 -0.490876 0.5007803 0.2686816 -0.5007803 0.5007803 0.2686816 -0.510322 0.5007803 0.2686816 -0.5195258 0.5007803 0.2686816 -0.5284142 0.5007803 0.2686816 -0.5370079 0.5007803 0.2686816 -0.5453253 0.5007803 0.2686816 -0.5533834 0.5007803 0.2686816 -0.5611974 0.5007803 0.2686816 -0.5687816 0.5007803 0.2686816 -0.092819 0.510322 0.2686816 -0.1056428 0.510322 0.2686816 -0.1201537 0.510322 0.2686816 -0.1409607 0.510322 0.2686816 -0.1678172 0.510322 0.2686816 -0.1950164 0.510322 0.2686816 -0.2210581 0.510322 0.2686816 -0.245636 0.510322 0.2686816 -0.2686816 0.510322 0.2686816 -0.2902431 0.510322 0.2686816 -0.3104189 0.510322 0.2686816 -0.3293248 0.510322 0.2686816 -0.3470774 0.510322 0.2686816 -0.3637862 0.510322 0.2686816 -0.3795513 0.510322 0.2686816 -0.3944623 0.510322 0.2686816 -0.4085988 0.510322 0.2686816 -0.4220313 0.510322 0.2686816 -0.4348222 0.510322 0.2686816 -0.4470264 0.510322 0.2686816 -0.4586928 0.510322 0.2686816 -0.4698649 0.510322 0.2686816 -0.4805811 0.510322 0.2686816 -0.490876 0.510322 0.2686816 -0.5007803 0.510322 0.2686816 -0.510322 0.510322 0.2686816 -0.5195258 0.510322 0.2686816 -0.5284142 0.510322 0.2686816 -0.5370079 0.510322 0.2686816 -0.5453253 0.510322 0.2686816 -0.5533834 0.510322 0.2686816 -0.5611974 0.510322 0.2686816 -0.5687816 0.510322 0.2686816 -0.092819 0.5195258 0.2686816 -0.1056428 0.5195258 0.2686816 -0.1201537 0.5195258 0.2686816 -0.1409607 0.5195258 0.2686816 -0.1678172 0.5195258 0.2686816 -0.1950164 0.5195258 0.2686816 -0.2210581 0.5195258 0.2686816 -0.245636 0.5195258 0.2686816 -0.2686816 0.5195258 0.2686816 -0.2902431 0.5195258 0.2686816 -0.3104189 0.5195258 0.2686816 -0.3293248 0.5195258 0.2686816 -0.3470774 0.5195258 0.2686816 -0.3637862 0.5195258 0.2686816 -0.3795513 0.5195258 0.2686816 -0.3944623 0.5195258 0.2686816 -0.4085988 0.5195258 0.2686816 -0.4220313 0.5195258 0.2686816 -0.4348222 0.5195258 0.2686816 -0.4470264 0.5195258 0.2686816 -0.4586928 0.5195258 0.2686816 -0.4698649 0.5195258 0.2686816 -0.4805811 0.5195258 0.2686816 -0.490876 0.5195258 0.2686816 -0.5007803 0.5195258 0.2686816 -0.510322 0.5195258 0.2686816 -0.5195258 0.5195258 0.2686816 -0.5284142 0.5195258 0.2686816 -0.5370079 0.5195258 0.2686816 -0.5453253 0.5195258 0.2686816 -0.5533834 0.5195258 0.2686816 -0.5611974 0.5195258 0.2686816 -0.5687816 0.5195258 0.2686816 -0.092819 0.5284142 0.2686816 -0.1056428 0.5284142 0.2686816 -0.1201537 0.5284142 0.2686816 -0.1409607 0.5284142 0.2686816 -0.1678172 0.5284142 0.2686816 -0.1950164 0.5284142 0.2686816 -0.2210581 0.5284142 0.2686816 -0.245636 0.5284142 0.2686816 -0.2686816 0.5284142 0.2686816 -0.2902431 0.5284142 0.2686816 -0.3104189 0.5284142 0.2686816 -0.3293248 0.5284142 0.2686816 -0.3470774 0.5284142 0.2686816 -0.3637862 0.5284142 0.2686816 -0.3795513 0.5284142 0.2686816 -0.3944623 0.5284142 0.2686816 -0.4085988 0.5284142 0.2686816 -0.4220313 0.5284142 0.2686816 -0.4348222 0.5284142 0.2686816 -0.4470264 0.5284142 0.2686816 -0.4586928 0.5284142 0.2686816 -0.4698649 0.5284142 0.2686816 -0.4805811 0.5284142 0.2686816 -0.490876 0.5284142 0.2686816 -0.5007803 0.5284142 0.2686816 -0.510322 0.5284142 0.2686816 -0.5195258 0.5284142 0.2686816 -0.5284142 0.5284142 0.2686816 -0.5370079 0.5284142 0.2686816 -0.5453253 0.5284142 0.2686816 -0.5533834 0.5284142 0.2686816 -0.5611974 0.5284142 0.2686816 -0.5687816 0.5284142 0.2686816 -0.092819 0.5370079 0.2686816 -0.1056428 0.5370079 0.2686816 -0.1201537 0.5370079 0.2686816 -0.1409607 0.5370079 0.2686816 -0.1678172 0.5370079 0.2686816 -0.1950164 0.5370079 0.2686816 -0.2210581 0.5370079 0.2686816 -0.245636 0.5370079 0.2686816 -0.2686816 0.5370079 0.2686816 -0.2902431 0.5370079 0.2686816 -0.3104189 0.5370079 0.2686816 -0.3293248 0.5370079 0.2686816 -0.3470774 0.5370079 0.2686816 -0.3637862 0.5370079 0.2686816 -0.3795513 0.5370079 0.2686816 -0.3944623 0.5370079 0.2686816 -0.4085988 0.5370079 0.2686816 -0.4220313 0.5370079 0.2686816 -0.4348222 0.5370079 0.2686816 -0.4470264 0.5370079 0.2686816 -0.4586928 0.5370079 0.2686816 -0.4698649 0.5370079 0.2686816 -0.4805811 0.5370079 0.2686816 -0.490876 0.5370079 0.2686816 -0.5007803 0.5370079 0.2686816 -0.510322 0.5370079 0.2686816 -0.5195258 0.5370079 0.2686816 -0.5284142 0.5370079 0.2686816 -0.5370079 0.5370079 0.2686816 -0.5453253 0.5370079 0.2686816 -0.5533834 0.5370079 0.2686816 -0.5611974 0.5370079 0.2686816 -0.5687816 0.5370079 0.2686816 -0.092819 0.5453253 0.2686816 -0.1056428 0.5453253 0.2686816 -0.1201537 0.5453253 0.2686816 -0.1409607 0.5453253 0.2686816 -0.1678172 0.5453253 0.2686816 -0.1950164 0.5453253 0.2686816 -0.2210581 0.5453253 0.2686816 -0.245636 0.5453253 0.2686816 -0.2686816 0.5453253 0.2686816 -0.2902431 0.5453253 0.2686816 -0.3104189 0.5453253 0.2686816 -0.3293248 0.5453253 0.2686816 -0.3470774 0.5453253 0.2686816 -0.3637862 0.5453253 0.2686816 -0.3795513 0.5453253 0.2686816 -0.3944623 0.5453253 0.2686816 -0.4085988 0.5453253 0.2686816 -0.4220313 0.5453253 0.2686816 -0.4348222 0.5453253 0.2686816 -0.4470264 0.5453253 0.2686816 -0.4586928 0.5453253 0.2686816 -0.4698649 0.5453253 0.2686816 -0.4805811 0.5453253 0.2686816 -0.490876 0.5453253 0.2686816 -0.5007803 0.5453253 0.2686816 -0.510322 0.5453253 0.2686816 -0.5195258 0.5453253 0.2686816 -0.5284142 0.5453253 0.2686816 -0.5370079 0.5453253 0.2686816 -0.5453253 0.5453253 0.2686816 -0.5533834 0.5453253 0.2686816 -0.5611974 0.5453253 0.2686816 -0.5687816 0.5453253 0.2686816 -0.092819 0.5533834 0.2686816 -0.1056428 0.5533834 0.2686816 -0.1201537 0.5533834 0.2686816 -0.1409607 0.5533834 0.2686816 -0.1678172 0.5533834 0.2686816 -0.1950164 0.5533834 0.2686816 -0.2210581 0.5533834 0.2686816 -0.245636 0.5533834 0.2686816 -0.2686816 0.5533834 0.2686816 -0.2902431 0.5533834 0.2686816 -0.3104189 0.5533834 0.2686816 -0.3293248 0.5533834 0.2686816 -0.3470774 0.5533834 0.2686816 -0.3637862 0.5533834 0.2686816 -0.3795513 0.5533834 0.2686816 -0.3944623 0.5533834 0.2686816 -0.4085988 0.5533834 0.2686816 -0.4220313 0.5533834 0.2686816 -0.4348222 0.5533834 0.2686816 -0.4470264 0.5533834 0.2686816 -0.4586928 0.5533834 0.2686816 -0.4698649 0.5533834 0.2686816 -0.4805811 0.5533834 0.2686816 -0.490876 0.5533834 0.2686816 -0.5007803 0.5533834 0.2686816 -0.510322 0.5533834 0.2686816 -0.5195258 0.5533834 0.2686816 -0.5284142 0.5533834 0.2686816 -0.5370079 0.5533834 0.2686816 -0.5453253 0.5533834 0.2686816 -0.5533834 0.5533834 0.2686816 -0.5611974 0.5533834 0.2686816 -0.5687816 0.5533834 0.2686816 -0.092819 0.5611974 0.2686816 -0.1056428 0.5611974 0.2686816 -0.1201537 0.5611974 0.2686816 -0.1409607 0.5611974 0.2686816 -0.1678172 0.5611974 0.2686816 -0.1950164 0.5611974 0.2686816 -0.2210581 0.5611974 0.2686816 -0.245636 0.5611974 0.2686816 -0.2686816 0.5611974 0.2686816 -0.2902431 0.5611974 0.2686816 -0.3104189 0.5611974 0.2686816 -0.3293248 0.5611974 0.2686816 -0.3470774 0.5611974 0.2686816 -0.3637862 0.5611974 0.2686816 -0.3795513 0.5611974 0.2686816 -0.3944623 0.5611974 0.2686816 -0.4085988 0.5611974 0.2686816 -0.4220313 0.5611974 0.2686816 -0.4348222 0.5611974 0.2686816 -0.4470264 0.5611974 0.2686816 -0.4586928 0.5611974 0.2686816 -0.4698649 0.5611974 0.2686816 -0.4805811 0.5611974 0.2686816 -0.490876 0.5611974 0.2686816 -0.5007803 0.5611974 0.2686816 -0.510322 0.5611974 0.2686816 -0.5195258 0.5611974 0.2686816 -0.5284142 0.5611974 0.2686816 -0.5370079 0.5611974 0.2686816 -0.5453253 0.5611974 0.2686816 -0.5533834 0.5611974 0.2686816 -0.5611974 0.5611974 0.2686816 -0.5687816 0.5611974 0.2686816 -0.092819 0.5687816 0.2686816 -0.1056428 0.5687816 0.2686816 -0.1201537 0.5687816 0.2686816 -0.1409607 0.5687816 0.2686816 -0.1678172 0.5687816 0.2686816 -0.1950164 0.5687816 0.2686816 -0.2210581 0.5687816 0.2686816 -0.245636 0.5687816 0.2686816 -0.2686816 0.5687816 0.2686816 -0.2902431 0.5687816 0.2686816 -0.3104189 0.5687816 0.2686816 -0.3293248 0.5687816 0.2686816 -0.3470774 0.5687816 0.2686816 -0.3637862 0.5687816 0.2686816 -0.3795513 0.5687816 0.2686816 -0.3944623 0.5687816 0.2686816 -0.4085988 0.5687816 0.2686816 -0.4220313 0.5687816 0.2686816 -0.4348222 0.5687816 0.2686816 -0.4470264 0.5687816 0.2686816 -0.4586928 0.5687816 0.2686816 -0.4698649 0.5687816 0.2686816 -0.4805811 0.5687816 0.2686816 -0.490876 0.5687816 0.2686816 -0.5007803 0.5687816 0.2686816 -0.510322 0.5687816 0.2686816 -0.5195258 0.5687816 0.2686816 -0.5284142 0.5687816 0.2686816 -0.5370079 0.5687816 0.2686816 -0.5453253 0.5687816 0.2686816 -0.5533834 0.5687816 0.2686816 -0.5611974 0.5687816 0.2686816 -0.5687816 0.5687816 0.2686816 -0.092819 0.092819 0.2902431 -0.1056428 0.092819 0.2902431 -0.1201537 0.092819 0.2902431 -0.1409607 0.092819 0.2902431 -0.1678172 0.092819 0.2902431 -0.1950164 0.092819 0.2902431 -0.2210581 0.092819 0.2902431 -0.245636 0.092819 0.2902431 -0.2686816 0.092819 0.2902431 -0.2902431 0.092819 0.2902431 -0.3104189 0.092819 0.2902431 -0.3293248 0.092819 0.2902431 -0.3470774 0.092819 0.2902431 -0.3637862 0.092819 0.2902431 -0.3795513 0.092819 0.2902431 -0.3944623 0.092819 0.2902431 -0.4085988 0.092819 0.2902431 -0.4220313 0.092819 0.2902431 -0.4348222 0.092819 0.2902431 -0.4470264 0.092819 0.2902431 -0.4586928 0.092819 0.2902431 -0.4698649 0.092819 0.2902431 -0.4805811 0.092819 0.2902431 -0.490876 0.092819 0.2902431 -0.5007803 0.092819 0.2902431 -0.510322 0.092819 0.2902431 -0.5195258 0.092819 0.2902431 -0.5284142 0.092819 0.2902431 -0.5370079 0.092819 0.2902431 -0.5453253 0.092819 0.2902431 -0.5533834 0.092819 0.2902431 -0.5611974 0.092819 0.2902431 -0.5687816 0.092819 0.2902431 -0.092819 0.1056428 0.2902431 -0.1056428 0.1056428 0.2902431 -0.1201537 0.1056428 0.2902431 -0.1409607 0.1056428 0.2902431 -0.1678172 0.1056428 0.2902431 -0.1950164 0.1056428 0.2902431 -0.2210581 0.1056428 0.2902431 -0.245636 0.1056428 0.2902431 -0.2686816 0.1056428 0.2902431 -0.2902431 0.1056428 0.2902431 -0.3104189 0.1056428 0.2902431 -0.3293248 0.1056428 0.2902431 -0.3470774 0.1056428 0.2902431 -0.3637862 0.1056428 0.2902431 -0.3795513 0.1056428 0.2902431 -0.3944623 0.1056428 0.2902431 -0.4085988 0.1056428 0.2902431 -0.4220313 0.1056428 0.2902431 -0.4348222 0.1056428 0.2902431 -0.4470264 0.1056428 0.2902431 -0.4586928 0.1056428 0.2902431 -0.4698649 0.1056428 0.2902431 -0.4805811 0.1056428 0.2902431 -0.490876 0.1056428 0.2902431 -0.5007803 0.1056428 0.2902431 -0.510322 0.1056428 0.2902431 -0.5195258 0.1056428 0.2902431 -0.5284142 0.1056428 0.2902431 -0.5370079 0.1056428 0.2902431 -0.5453253 0.1056428 0.2902431 -0.5533834 0.1056428 0.2902431 -0.5611974 0.1056428 0.2902431 -0.5687816 0.1056428 0.2902431 -0.092819 0.1201537 0.2902431 -0.1056428 0.1201537 0.2902431 -0.1201537 0.1201537 0.2902431 -0.1409607 0.1201537 0.2902431 -0.1678172 0.1201537 0.2902431 -0.1950164 0.1201537 0.2902431 -0.2210581 0.1201537 0.2902431 -0.245636 0.1201537 0.2902431 -0.2686816 0.1201537 0.2902431 -0.2902431 0.1201537 0.2902431 -0.3104189 0.1201537 0.2902431 -0.3293248 0.1201537 0.2902431 -0.3470774 0.1201537 0.2902431 -0.3637862 0.1201537 0.2902431 -0.3795513 0.1201537 0.2902431 -0.3944623 0.1201537 0.2902431 -0.4085988 0.1201537 0.2902431 -0.4220313 0.1201537 0.2902431 -0.4348222 0.1201537 0.2902431 -0.4470264 0.1201537 0.2902431 -0.4586928 0.1201537 0.2902431 -0.4698649 0.1201537 0.2902431 -0.4805811 0.1201537 0.2902431 -0.490876 0.1201537 0.2902431 -0.5007803 0.1201537 0.2902431 -0.510322 0.1201537 0.2902431 -0.5195258 0.1201537 0.2902431 -0.5284142 0.1201537 0.2902431 -0.5370079 0.1201537 0.2902431 -0.5453253 0.1201537 0.2902431 -0.5533834 0.1201537 0.2902431 -0.5611974 0.1201537 0.2902431 -0.5687816 0.1201537 0.2902431 -0.092819 0.1409607 0.2902431 -0.1056428 0.1409607 0.2902431 -0.1201537 0.1409607 0.2902431 -0.1409607 0.1409607 0.2902431 -0.1678172 0.1409607 0.2902431 -0.1950164 0.1409607 0.2902431 -0.2210581 0.1409607 0.2902431 -0.245636 0.1409607 0.2902431 -0.2686816 0.1409607 0.2902431 -0.2902431 0.1409607 0.2902431 -0.3104189 0.1409607 0.2902431 -0.3293248 0.1409607 0.2902431 -0.3470774 0.1409607 0.2902431 -0.3637862 0.1409607 0.2902431 -0.3795513 0.1409607 0.2902431 -0.3944623 0.1409607 0.2902431 -0.4085988 0.1409607 0.2902431 -0.4220313 0.1409607 0.2902431 -0.4348222 0.1409607 0.2902431 -0.4470264 0.1409607 0.2902431 -0.4586928 0.1409607 0.2902431 -0.4698649 0.1409607 0.2902431 -0.4805811 0.1409607 0.2902431 -0.490876 0.1409607 0.2902431 -0.5007803 0.1409607 0.2902431 -0.510322 0.1409607 0.2902431 -0.5195258 0.1409607 0.2902431 -0.5284142 0.1409607 0.2902431 -0.5370079 0.1409607 0.2902431 -0.5453253 0.1409607 0.2902431 -0.5533834 0.1409607 0.2902431 -0.5611974 0.1409607 0.2902431 -0.5687816 0.1409607 0.2902431 -0.092819 0.1678172 0.2902431 -0.1056428 0.1678172 0.2902431 -0.1201537 0.1678172 0.2902431 -0.1409607 0.1678172 0.2902431 -0.1678172 0.1678172 0.2902431 -0.1950164 0.1678172 0.2902431 -0.2210581 0.1678172 0.2902431 -0.245636 0.1678172 0.2902431 -0.2686816 0.1678172 0.2902431 -0.2902431 0.1678172 0.2902431 -0.3104189 0.1678172 0.2902431 -0.3293248 0.1678172 0.2902431 -0.3470774 0.1678172 0.2902431 -0.3637862 0.1678172 0.2902431 -0.3795513 0.1678172 0.2902431 -0.3944623 0.1678172 0.2902431 -0.4085988 0.1678172 0.2902431 -0.4220313 0.1678172 0.2902431 -0.4348222 0.1678172 0.2902431 -0.4470264 0.1678172 0.2902431 -0.4586928 0.1678172 0.2902431 -0.4698649 0.1678172 0.2902431 -0.4805811 0.1678172 0.2902431 -0.490876 0.1678172 0.2902431 -0.5007803 0.1678172 0.2902431 -0.510322 0.1678172 0.2902431 -0.5195258 0.1678172 0.2902431 -0.5284142 0.1678172 0.2902431 -0.5370079 0.1678172 0.2902431 -0.5453253 0.1678172 0.2902431 -0.5533834 0.1678172 0.2902431 -0.5611974 0.1678172 0.2902431 -0.5687816 0.1678172 0.2902431 -0.092819 0.1950164 0.2902431 -0.1056428 0.1950164 0.2902431 -0.1201537 0.1950164 0.2902431 -0.1409607 0.1950164 0.2902431 -0.1678172 0.1950164 0.2902431 -0.1950164 0.1950164 0.2902431 -0.2210581 0.1950164 0.2902431 -0.245636 0.1950164 0.2902431 -0.2686816 0.1950164 0.2902431 -0.2902431 0.1950164 0.2902431 -0.3104189 0.1950164 0.2902431 -0.3293248 0.1950164 0.2902431 -0.3470774 0.1950164 0.2902431 -0.3637862 0.1950164 0.2902431 -0.3795513 0.1950164 0.2902431 -0.3944623 0.1950164 0.2902431 -0.4085988 0.1950164 0.2902431 -0.4220313 0.1950164 0.2902431 -0.4348222 0.1950164 0.2902431 -0.4470264 0.1950164 0.2902431 -0.4586928 0.1950164 0.2902431 -0.4698649 0.1950164 0.2902431 -0.4805811 0.1950164 0.2902431 -0.490876 0.1950164 0.2902431 -0.5007803 0.1950164 0.2902431 -0.510322 0.1950164 0.2902431 -0.5195258 0.1950164 0.2902431 -0.5284142 0.1950164 0.2902431 -0.5370079 0.1950164 0.2902431 -0.5453253 0.1950164 0.2902431 -0.5533834 0.1950164 0.2902431 -0.5611974 0.1950164 0.2902431 -0.5687816 0.1950164 0.2902431 -0.092819 0.2210581 0.2902431 -0.1056428 0.2210581 0.2902431 -0.1201537 0.2210581 0.2902431 -0.1409607 0.2210581 0.2902431 -0.1678172 0.2210581 0.2902431 -0.1950164 0.2210581 0.2902431 -0.2210581 0.2210581 0.2902431 -0.245636 0.2210581 0.2902431 -0.2686816 0.2210581 0.2902431 -0.2902431 0.2210581 0.2902431 -0.3104189 0.2210581 0.2902431 -0.3293248 0.2210581 0.2902431 -0.3470774 0.2210581 0.2902431 -0.3637862 0.2210581 0.2902431 -0.3795513 0.2210581 0.2902431 -0.3944623 0.2210581 0.2902431 -0.4085988 0.2210581 0.2902431 -0.4220313 0.2210581 0.2902431 -0.4348222 0.2210581 0.2902431 -0.4470264 0.2210581 0.2902431 -0.4586928 0.2210581 0.2902431 -0.4698649 0.2210581 0.2902431 -0.4805811 0.2210581 0.2902431 -0.490876 0.2210581 0.2902431 -0.5007803 0.2210581 0.2902431 -0.510322 0.2210581 0.2902431 -0.5195258 0.2210581 0.2902431 -0.5284142 0.2210581 0.2902431 -0.5370079 0.2210581 0.2902431 -0.5453253 0.2210581 0.2902431 -0.5533834 0.2210581 0.2902431 -0.5611974 0.2210581 0.2902431 -0.5687816 0.2210581 0.2902431 -0.092819 0.245636 0.2902431 -0.1056428 0.245636 0.2902431 -0.1201537 0.245636 0.2902431 -0.1409607 0.245636 0.2902431 -0.1678172 0.245636 0.2902431 -0.1950164 0.245636 0.2902431 -0.2210581 0.245636 0.2902431 -0.245636 0.245636 0.2902431 -0.2686816 0.245636 0.2902431 -0.2902431 0.245636 0.2902431 -0.3104189 0.245636 0.2902431 -0.3293248 0.245636 0.2902431 -0.3470774 0.245636 0.2902431 -0.3637862 0.245636 0.2902431 -0.3795513 0.245636 0.2902431 -0.3944623 0.245636 0.2902431 -0.4085988 0.245636 0.2902431 -0.4220313 0.245636 0.2902431 -0.4348222 0.245636 0.2902431 -0.4470264 0.245636 0.2902431 -0.4586928 0.245636 0.2902431 -0.4698649 0.245636 0.2902431 -0.4805811 0.245636 0.2902431 -0.490876 0.245636 0.2902431 -0.5007803 0.245636 0.2902431 -0.510322 0.245636 0.2902431 -0.5195258 0.245636 0.2902431 -0.5284142 0.245636 0.2902431 -0.5370079 0.245636 0.2902431 -0.5453253 0.245636 0.2902431 -0.5533834 0.245636 0.2902431 -0.5611974 0.245636 0.2902431 -0.5687816 0.245636 0.2902431 -0.092819 0.2686816 0.2902431 -0.1056428 0.2686816 0.2902431 -0.1201537 0.2686816 0.2902431 -0.1409607 0.2686816 0.2902431 -0.1678172 0.2686816 0.2902431 -0.1950164 0.2686816 0.2902431 -0.2210581 0.2686816 0.2902431 -0.245636 0.2686816 0.2902431 -0.2686816 0.2686816 0.2902431 -0.2902431 0.2686816 0.2902431 -0.3104189 0.2686816 0.2902431 -0.3293248 0.2686816 0.2902431 -0.3470774 0.2686816 0.2902431 -0.3637862 0.2686816 0.2902431 -0.3795513 0.2686816 0.2902431 -0.3944623 0.2686816 0.2902431 -0.4085988 0.2686816 0.2902431 -0.4220313 0.2686816 0.2902431 -0.4348222 0.2686816 0.2902431 -0.4470264 0.2686816 0.2902431 -0.4586928 0.2686816 0.2902431 -0.4698649 0.2686816 0.2902431 -0.4805811 0.2686816 0.2902431 -0.490876 0.2686816 0.2902431 -0.5007803 0.2686816 0.2902431 -0.510322 0.2686816 0.2902431 -0.5195258 0.2686816 0.2902431 -0.5284142 0.2686816 0.2902431 -0.5370079 0.2686816 0.2902431 -0.5453253 0.2686816 0.2902431 -0.5533834 0.2686816 0.2902431 -0.5611974 0.2686816 0.2902431 -0.5687816 0.2686816 0.2902431 -0.092819 0.2902431 0.2902431 -0.1056428 0.2902431 0.2902431 -0.1201537 0.2902431 0.2902431 -0.1409607 0.2902431 0.2902431 -0.1678172 0.2902431 0.2902431 -0.1950164 0.2902431 0.2902431 -0.2210581 0.2902431 0.2902431 -0.245636 0.2902431 0.2902431 -0.2686816 0.2902431 0.2902431 -0.2902431 0.2902431 0.2902431 -0.3104189 0.2902431 0.2902431 -0.3293248 0.2902431 0.2902431 -0.3470774 0.2902431 0.2902431 -0.3637862 0.2902431 0.2902431 -0.3795513 0.2902431 0.2902431 -0.3944623 0.2902431 0.2902431 -0.4085988 0.2902431 0.2902431 -0.4220313 0.2902431 0.2902431 -0.4348222 0.2902431 0.2902431 -0.4470264 0.2902431 0.2902431 -0.4586928 0.2902431 0.2902431 -0.4698649 0.2902431 0.2902431 -0.4805811 0.2902431 0.2902431 -0.490876 0.2902431 0.2902431 -0.5007803 0.2902431 0.2902431 -0.510322 0.2902431 0.2902431 -0.5195258 0.2902431 0.2902431 -0.5284142 0.2902431 0.2902431 -0.5370079 0.2902431 0.2902431 -0.5453253 0.2902431 0.2902431 -0.5533834 0.2902431 0.2902431 -0.5611974 0.2902431 0.2902431 -0.5687816 0.2902431 0.2902431 -0.092819 0.3104189 0.2902431 -0.1056428 0.3104189 0.2902431 -0.1201537 0.3104189 0.2902431 -0.1409607 0.3104189 0.2902431 -0.1678172 0.3104189 0.2902431 -0.1950164 0.3104189 0.2902431 -0.2210581 0.3104189 0.2902431 -0.245636 0.3104189 0.2902431 -0.2686816 0.3104189 0.2902431 -0.2902431 0.3104189 0.2902431 -0.3104189 0.3104189 0.2902431 -0.3293248 0.3104189 0.2902431 -0.3470774 0.3104189 0.2902431 -0.3637862 0.3104189 0.2902431 -0.3795513 0.3104189 0.2902431 -0.3944623 0.3104189 0.2902431 -0.4085988 0.3104189 0.2902431 -0.4220313 0.3104189 0.2902431 -0.4348222 0.3104189 0.2902431 -0.4470264 0.3104189 0.2902431 -0.4586928 0.3104189 0.2902431 -0.4698649 0.3104189 0.2902431 -0.4805811 0.3104189 0.2902431 -0.490876 0.3104189 0.2902431 -0.5007803 0.3104189 0.2902431 -0.510322 0.3104189 0.2902431 -0.5195258 0.3104189 0.2902431 -0.5284142 0.3104189 0.2902431 -0.5370079 0.3104189 0.2902431 -0.5453253 0.3104189 0.2902431 -0.5533834 0.3104189 0.2902431 -0.5611974 0.3104189 0.2902431 -0.5687816 0.3104189 0.2902431 -0.092819 0.3293248 0.2902431 -0.1056428 0.3293248 0.2902431 -0.1201537 0.3293248 0.2902431 -0.1409607 0.3293248 0.2902431 -0.1678172 0.3293248 0.2902431 -0.1950164 0.3293248 0.2902431 -0.2210581 0.3293248 0.2902431 -0.245636 0.3293248 0.2902431 -0.2686816 0.3293248 0.2902431 -0.2902431 0.3293248 0.2902431 -0.3104189 0.3293248 0.2902431 -0.3293248 0.3293248 0.2902431 -0.3470774 0.3293248 0.2902431 -0.3637862 0.3293248 0.2902431 -0.3795513 0.3293248 0.2902431 -0.3944623 0.3293248 0.2902431 -0.4085988 0.3293248 0.2902431 -0.4220313 0.3293248 0.2902431 -0.4348222 0.3293248 0.2902431 -0.4470264 0.3293248 0.2902431 -0.4586928 0.3293248 0.2902431 -0.4698649 0.3293248 0.2902431 -0.4805811 0.3293248 0.2902431 -0.490876 0.3293248 0.2902431 -0.5007803 0.3293248 0.2902431 -0.510322 0.3293248 0.2902431 -0.5195258 0.3293248 0.2902431 -0.5284142 0.3293248 0.2902431 -0.5370079 0.3293248 0.2902431 -0.5453253 0.3293248 0.2902431 -0.5533834 0.3293248 0.2902431 -0.5611974 0.3293248 0.2902431 -0.5687816 0.3293248 0.2902431 -0.092819 0.3470774 0.2902431 -0.1056428 0.3470774 0.2902431 -0.1201537 0.3470774 0.2902431 -0.1409607 0.3470774 0.2902431 -0.1678172 0.3470774 0.2902431 -0.1950164 0.3470774 0.2902431 -0.2210581 0.3470774 0.2902431 -0.245636 0.3470774 0.2902431 -0.2686816 0.3470774 0.2902431 -0.2902431 0.3470774 0.2902431 -0.3104189 0.3470774 0.2902431 -0.3293248 0.3470774 0.2902431 -0.3470774 0.3470774 0.2902431 -0.3637862 0.3470774 0.2902431 -0.3795513 0.3470774 0.2902431 -0.3944623 0.3470774 0.2902431 -0.4085988 0.3470774 0.2902431 -0.4220313 0.3470774 0.2902431 -0.4348222 0.3470774 0.2902431 -0.4470264 0.3470774 0.2902431 -0.4586928 0.3470774 0.2902431 -0.4698649 0.3470774 0.2902431 -0.4805811 0.3470774 0.2902431 -0.490876 0.3470774 0.2902431 -0.5007803 0.3470774 0.2902431 -0.510322 0.3470774 0.2902431 -0.5195258 0.3470774 0.2902431 -0.5284142 0.3470774 0.2902431 -0.5370079 0.3470774 0.2902431 -0.5453253 0.3470774 0.2902431 -0.5533834 0.3470774 0.2902431 -0.5611974 0.3470774 0.2902431 -0.5687816 0.3470774 0.2902431 -0.092819 0.3637862 0.2902431 -0.1056428 0.3637862 0.2902431 -0.1201537 0.3637862 0.2902431 -0.1409607 0.3637862 0.2902431 -0.1678172 0.3637862 0.2902431 -0.1950164 0.3637862 0.2902431 -0.2210581 0.3637862 0.2902431 -0.245636 0.3637862 0.2902431 -0.2686816 0.3637862 0.2902431 -0.2902431 0.3637862 0.2902431 -0.3104189 0.3637862 0.2902431 -0.3293248 0.3637862 0.2902431 -0.3470774 0.3637862 0.2902431 -0.3637862 0.3637862 0.2902431 -0.3795513 0.3637862 0.2902431 -0.3944623 0.3637862 0.2902431 -0.4085988 0.3637862 0.2902431 -0.4220313 0.3637862 0.2902431 -0.4348222 0.3637862 0.2902431 -0.4470264 0.3637862 0.2902431 -0.4586928 0.3637862 0.2902431 -0.4698649 0.3637862 0.2902431 -0.4805811 0.3637862 0.2902431 -0.490876 0.3637862 0.2902431 -0.5007803 0.3637862 0.2902431 -0.510322 0.3637862 0.2902431 -0.5195258 0.3637862 0.2902431 -0.5284142 0.3637862 0.2902431 -0.5370079 0.3637862 0.2902431 -0.5453253 0.3637862 0.2902431 -0.5533834 0.3637862 0.2902431 -0.5611974 0.3637862 0.2902431 -0.5687816 0.3637862 0.2902431 -0.092819 0.3795513 0.2902431 -0.1056428 0.3795513 0.2902431 -0.1201537 0.3795513 0.2902431 -0.1409607 0.3795513 0.2902431 -0.1678172 0.3795513 0.2902431 -0.1950164 0.3795513 0.2902431 -0.2210581 0.3795513 0.2902431 -0.245636 0.3795513 0.2902431 -0.2686816 0.3795513 0.2902431 -0.2902431 0.3795513 0.2902431 -0.3104189 0.3795513 0.2902431 -0.3293248 0.3795513 0.2902431 -0.3470774 0.3795513 0.2902431 -0.3637862 0.3795513 0.2902431 -0.3795513 0.3795513 0.2902431 -0.3944623 0.3795513 0.2902431 -0.4085988 0.3795513 0.2902431 -0.4220313 0.3795513 0.2902431 -0.4348222 0.3795513 0.2902431 -0.4470264 0.3795513 0.2902431 -0.4586928 0.3795513 0.2902431 -0.4698649 0.3795513 0.2902431 -0.4805811 0.3795513 0.2902431 -0.490876 0.3795513 0.2902431 -0.5007803 0.3795513 0.2902431 -0.510322 0.3795513 0.2902431 -0.5195258 0.3795513 0.2902431 -0.5284142 0.3795513 0.2902431 -0.5370079 0.3795513 0.2902431 -0.5453253 0.3795513 0.2902431 -0.5533834 0.3795513 0.2902431 -0.5611974 0.3795513 0.2902431 -0.5687816 0.3795513 0.2902431 -0.092819 0.3944623 0.2902431 -0.1056428 0.3944623 0.2902431 -0.1201537 0.3944623 0.2902431 -0.1409607 0.3944623 0.2902431 -0.1678172 0.3944623 0.2902431 -0.1950164 0.3944623 0.2902431 -0.2210581 0.3944623 0.2902431 -0.245636 0.3944623 0.2902431 -0.2686816 0.3944623 0.2902431 -0.2902431 0.3944623 0.2902431 -0.3104189 0.3944623 0.2902431 -0.3293248 0.3944623 0.2902431 -0.3470774 0.3944623 0.2902431 -0.3637862 0.3944623 0.2902431 -0.3795513 0.3944623 0.2902431 -0.3944623 0.3944623 0.2902431 -0.4085988 0.3944623 0.2902431 -0.4220313 0.3944623 0.2902431 -0.4348222 0.3944623 0.2902431 -0.4470264 0.3944623 0.2902431 -0.4586928 0.3944623 0.2902431 -0.4698649 0.3944623 0.2902431 -0.4805811 0.3944623 0.2902431 -0.490876 0.3944623 0.2902431 -0.5007803 0.3944623 0.2902431 -0.510322 0.3944623 0.2902431 -0.5195258 0.3944623 0.2902431 -0.5284142 0.3944623 0.2902431 -0.5370079 0.3944623 0.2902431 -0.5453253 0.3944623 0.2902431 -0.5533834 0.3944623 0.2902431 -0.5611974 0.3944623 0.2902431 -0.5687816 0.3944623 0.2902431 -0.092819 0.4085988 0.2902431 -0.1056428 0.4085988 0.2902431 -0.1201537 0.4085988 0.2902431 -0.1409607 0.4085988 0.2902431 -0.1678172 0.4085988 0.2902431 -0.1950164 0.4085988 0.2902431 -0.2210581 0.4085988 0.2902431 -0.245636 0.4085988 0.2902431 -0.2686816 0.4085988 0.2902431 -0.2902431 0.4085988 0.2902431 -0.3104189 0.4085988 0.2902431 -0.3293248 0.4085988 0.2902431 -0.3470774 0.4085988 0.2902431 -0.3637862 0.4085988 0.2902431 -0.3795513 0.4085988 0.2902431 -0.3944623 0.4085988 0.2902431 -0.4085988 0.4085988 0.2902431 -0.4220313 0.4085988 0.2902431 -0.4348222 0.4085988 0.2902431 -0.4470264 0.4085988 0.2902431 -0.4586928 0.4085988 0.2902431 -0.4698649 0.4085988 0.2902431 -0.4805811 0.4085988 0.2902431 -0.490876 0.4085988 0.2902431 -0.5007803 0.4085988 0.2902431 -0.510322 0.4085988 0.2902431 -0.5195258 0.4085988 0.2902431 -0.5284142 0.4085988 0.2902431 -0.5370079 0.4085988 0.2902431 -0.5453253 0.4085988 0.2902431 -0.5533834 0.4085988 0.2902431 -0.5611974 0.4085988 0.2902431 -0.5687816 0.4085988 0.2902431 -0.092819 0.4220313 0.2902431 -0.1056428 0.4220313 0.2902431 -0.1201537 0.4220313 0.2902431 -0.1409607 0.4220313 0.2902431 -0.1678172 0.4220313 0.2902431 -0.1950164 0.4220313 0.2902431 -0.2210581 0.4220313 0.2902431 -0.245636 0.4220313 0.2902431 -0.2686816 0.4220313 0.2902431 -0.2902431 0.4220313 0.2902431 -0.3104189 0.4220313 0.2902431 -0.3293248 0.4220313 0.2902431 -0.3470774 0.4220313 0.2902431 -0.3637862 0.4220313 0.2902431 -0.3795513 0.4220313 0.2902431 -0.3944623 0.4220313 0.2902431 -0.4085988 0.4220313 0.2902431 -0.4220313 0.4220313 0.2902431 -0.4348222 0.4220313 0.2902431 -0.4470264 0.4220313 0.2902431 -0.4586928 0.4220313 0.2902431 -0.4698649 0.4220313 0.2902431 -0.4805811 0.4220313 0.2902431 -0.490876 0.4220313 0.2902431 -0.5007803 0.4220313 0.2902431 -0.510322 0.4220313 0.2902431 -0.5195258 0.4220313 0.2902431 -0.5284142 0.4220313 0.2902431 -0.5370079 0.4220313 0.2902431 -0.5453253 0.4220313 0.2902431 -0.5533834 0.4220313 0.2902431 -0.5611974 0.4220313 0.2902431 -0.5687816 0.4220313 0.2902431 -0.092819 0.4348222 0.2902431 -0.1056428 0.4348222 0.2902431 -0.1201537 0.4348222 0.2902431 -0.1409607 0.4348222 0.2902431 -0.1678172 0.4348222 0.2902431 -0.1950164 0.4348222 0.2902431 -0.2210581 0.4348222 0.2902431 -0.245636 0.4348222 0.2902431 -0.2686816 0.4348222 0.2902431 -0.2902431 0.4348222 0.2902431 -0.3104189 0.4348222 0.2902431 -0.3293248 0.4348222 0.2902431 -0.3470774 0.4348222 0.2902431 -0.3637862 0.4348222 0.2902431 -0.3795513 0.4348222 0.2902431 -0.3944623 0.4348222 0.2902431 -0.4085988 0.4348222 0.2902431 -0.4220313 0.4348222 0.2902431 -0.4348222 0.4348222 0.2902431 -0.4470264 0.4348222 0.2902431 -0.4586928 0.4348222 0.2902431 -0.4698649 0.4348222 0.2902431 -0.4805811 0.4348222 0.2902431 -0.490876 0.4348222 0.2902431 -0.5007803 0.4348222 0.2902431 -0.510322 0.4348222 0.2902431 -0.5195258 0.4348222 0.2902431 -0.5284142 0.4348222 0.2902431 -0.5370079 0.4348222 0.2902431 -0.5453253 0.4348222 0.2902431 -0.5533834 0.4348222 0.2902431 -0.5611974 0.4348222 0.2902431 -0.5687816 0.4348222 0.2902431 -0.092819 0.4470264 0.2902431 -0.1056428 0.4470264 0.2902431 -0.1201537 0.4470264 0.2902431 -0.1409607 0.4470264 0.2902431 -0.1678172 0.4470264 0.2902431 -0.1950164 0.4470264 0.2902431 -0.2210581 0.4470264 0.2902431 -0.245636 0.4470264 0.2902431 -0.2686816 0.4470264 0.2902431 -0.2902431 0.4470264 0.2902431 -0.3104189 0.4470264 0.2902431 -0.3293248 0.4470264 0.2902431 -0.3470774 0.4470264 0.2902431 -0.3637862 0.4470264 0.2902431 -0.3795513 0.4470264 0.2902431 -0.3944623 0.4470264 0.2902431 -0.4085988 0.4470264 0.2902431 -0.4220313 0.4470264 0.2902431 -0.4348222 0.4470264 0.2902431 -0.4470264 0.4470264 0.2902431 -0.4586928 0.4470264 0.2902431 -0.4698649 0.4470264 0.2902431 -0.4805811 0.4470264 0.2902431 -0.490876 0.4470264 0.2902431 -0.5007803 0.4470264 0.2902431 -0.510322 0.4470264 0.2902431 -0.5195258 0.4470264 0.2902431 -0.5284142 0.4470264 0.2902431 -0.5370079 0.4470264 0.2902431 -0.5453253 0.4470264 0.2902431 -0.5533834 0.4470264 0.2902431 -0.5611974 0.4470264 0.2902431 -0.5687816 0.4470264 0.2902431 -0.092819 0.4586928 0.2902431 -0.1056428 0.4586928 0.2902431 -0.1201537 0.4586928 0.2902431 -0.1409607 0.4586928 0.2902431 -0.1678172 0.4586928 0.2902431 -0.1950164 0.4586928 0.2902431 -0.2210581 0.4586928 0.2902431 -0.245636 0.4586928 0.2902431 -0.2686816 0.4586928 0.2902431 -0.2902431 0.4586928 0.2902431 -0.3104189 0.4586928 0.2902431 -0.3293248 0.4586928 0.2902431 -0.3470774 0.4586928 0.2902431 -0.3637862 0.4586928 0.2902431 -0.3795513 0.4586928 0.2902431 -0.3944623 0.4586928 0.2902431 -0.4085988 0.4586928 0.2902431 -0.4220313 0.4586928 0.2902431 -0.4348222 0.4586928 0.2902431 -0.4470264 0.4586928 0.2902431 -0.4586928 0.4586928 0.2902431 -0.4698649 0.4586928 0.2902431 -0.4805811 0.4586928 0.2902431 -0.490876 0.4586928 0.2902431 -0.5007803 0.4586928 0.2902431 -0.510322 0.4586928 0.2902431 -0.5195258 0.4586928 0.2902431 -0.5284142 0.4586928 0.2902431 -0.5370079 0.4586928 0.2902431 -0.5453253 0.4586928 0.2902431 -0.5533834 0.4586928 0.2902431 -0.5611974 0.4586928 0.2902431 -0.5687816 0.4586928 0.2902431 -0.092819 0.4698649 0.2902431 -0.1056428 0.4698649 0.2902431 -0.1201537 0.4698649 0.2902431 -0.1409607 0.4698649 0.2902431 -0.1678172 0.4698649 0.2902431 -0.1950164 0.4698649 0.2902431 -0.2210581 0.4698649 0.2902431 -0.245636 0.4698649 0.2902431 -0.2686816 0.4698649 0.2902431 -0.2902431 0.4698649 0.2902431 -0.3104189 0.4698649 0.2902431 -0.3293248 0.4698649 0.2902431 -0.3470774 0.4698649 0.2902431 -0.3637862 0.4698649 0.2902431 -0.3795513 0.4698649 0.2902431 -0.3944623 0.4698649 0.2902431 -0.4085988 0.4698649 0.2902431 -0.4220313 0.4698649 0.2902431 -0.4348222 0.4698649 0.2902431 -0.4470264 0.4698649 0.2902431 -0.4586928 0.4698649 0.2902431 -0.4698649 0.4698649 0.2902431 -0.4805811 0.4698649 0.2902431 -0.490876 0.4698649 0.2902431 -0.5007803 0.4698649 0.2902431 -0.510322 0.4698649 0.2902431 -0.5195258 0.4698649 0.2902431 -0.5284142 0.4698649 0.2902431 -0.5370079 0.4698649 0.2902431 -0.5453253 0.4698649 0.2902431 -0.5533834 0.4698649 0.2902431 -0.5611974 0.4698649 0.2902431 -0.5687816 0.4698649 0.2902431 -0.092819 0.4805811 0.2902431 -0.1056428 0.4805811 0.2902431 -0.1201537 0.4805811 0.2902431 -0.1409607 0.4805811 0.2902431 -0.1678172 0.4805811 0.2902431 -0.1950164 0.4805811 0.2902431 -0.2210581 0.4805811 0.2902431 -0.245636 0.4805811 0.2902431 -0.2686816 0.4805811 0.2902431 -0.2902431 0.4805811 0.2902431 -0.3104189 0.4805811 0.2902431 -0.3293248 0.4805811 0.2902431 -0.3470774 0.4805811 0.2902431 -0.3637862 0.4805811 0.2902431 -0.3795513 0.4805811 0.2902431 -0.3944623 0.4805811 0.2902431 -0.4085988 0.4805811 0.2902431 -0.4220313 0.4805811 0.2902431 -0.4348222 0.4805811 0.2902431 -0.4470264 0.4805811 0.2902431 -0.4586928 0.4805811 0.2902431 -0.4698649 0.4805811 0.2902431 -0.4805811 0.4805811 0.2902431 -0.490876 0.4805811 0.2902431 -0.5007803 0.4805811 0.2902431 -0.510322 0.4805811 0.2902431 -0.5195258 0.4805811 0.2902431 -0.5284142 0.4805811 0.2902431 -0.5370079 0.4805811 0.2902431 -0.5453253 0.4805811 0.2902431 -0.5533834 0.4805811 0.2902431 -0.5611974 0.4805811 0.2902431 -0.5687816 0.4805811 0.2902431 -0.092819 0.490876 0.2902431 -0.1056428 0.490876 0.2902431 -0.1201537 0.490876 0.2902431 -0.1409607 0.490876 0.2902431 -0.1678172 0.490876 0.2902431 -0.1950164 0.490876 0.2902431 -0.2210581 0.490876 0.2902431 -0.245636 0.490876 0.2902431 -0.2686816 0.490876 0.2902431 -0.2902431 0.490876 0.2902431 -0.3104189 0.490876 0.2902431 -0.3293248 0.490876 0.2902431 -0.3470774 0.490876 0.2902431 -0.3637862 0.490876 0.2902431 -0.3795513 0.490876 0.2902431 -0.3944623 0.490876 0.2902431 -0.4085988 0.490876 0.2902431 -0.4220313 0.490876 0.2902431 -0.4348222 0.490876 0.2902431 -0.4470264 0.490876 0.2902431 -0.4586928 0.490876 0.2902431 -0.4698649 0.490876 0.2902431 -0.4805811 0.490876 0.2902431 -0.490876 0.490876 0.2902431 -0.5007803 0.490876 0.2902431 -0.510322 0.490876 0.2902431 -0.5195258 0.490876 0.2902431 -0.5284142 0.490876 0.2902431 -0.5370079 0.490876 0.2902431 -0.5453253 0.490876 0.2902431 -0.5533834 0.490876 0.2902431 -0.5611974 0.490876 0.2902431 -0.5687816 0.490876 0.2902431 -0.092819 0.5007803 0.2902431 -0.1056428 0.5007803 0.2902431 -0.1201537 0.5007803 0.2902431 -0.1409607 0.5007803 0.2902431 -0.1678172 0.5007803 0.2902431 -0.1950164 0.5007803 0.2902431 -0.2210581 0.5007803 0.2902431 -0.245636 0.5007803 0.2902431 -0.2686816 0.5007803 0.2902431 -0.2902431 0.5007803 0.2902431 -0.3104189 0.5007803 0.2902431 -0.3293248 0.5007803 0.2902431 -0.3470774 0.5007803 0.2902431 -0.3637862 0.5007803 0.2902431 -0.3795513 0.5007803 0.2902431 -0.3944623 0.5007803 0.2902431 -0.4085988 0.5007803 0.2902431 -0.4220313 0.5007803 0.2902431 -0.4348222 0.5007803 0.2902431 -0.4470264 0.5007803 0.2902431 -0.4586928 0.5007803 0.2902431 -0.4698649 0.5007803 0.2902431 -0.4805811 0.5007803 0.2902431 -0.490876 0.5007803 0.2902431 -0.5007803 0.5007803 0.2902431 -0.510322 0.5007803 0.2902431 -0.5195258 0.5007803 0.2902431 -0.5284142 0.5007803 0.2902431 -0.5370079 0.5007803 0.2902431 -0.5453253 0.5007803 0.2902431 -0.5533834 0.5007803 0.2902431 -0.5611974 0.5007803 0.2902431 -0.5687816 0.5007803 0.2902431 -0.092819 0.510322 0.2902431 -0.1056428 0.510322 0.2902431 -0.1201537 0.510322 0.2902431 -0.1409607 0.510322 0.2902431 -0.1678172 0.510322 0.2902431 -0.1950164 0.510322 0.2902431 -0.2210581 0.510322 0.2902431 -0.245636 0.510322 0.2902431 -0.2686816 0.510322 0.2902431 -0.2902431 0.510322 0.2902431 -0.3104189 0.510322 0.2902431 -0.3293248 0.510322 0.2902431 -0.3470774 0.510322 0.2902431 -0.3637862 0.510322 0.2902431 -0.3795513 0.510322 0.2902431 -0.3944623 0.510322 0.2902431 -0.4085988 0.510322 0.2902431 -0.4220313 0.510322 0.2902431 -0.4348222 0.510322 0.2902431 -0.4470264 0.510322 0.2902431 -0.4586928 0.510322 0.2902431 -0.4698649 0.510322 0.2902431 -0.4805811 0.510322 0.2902431 -0.490876 0.510322 0.2902431 -0.5007803 0.510322 0.2902431 -0.510322 0.510322 0.2902431 -0.5195258 0.510322 0.2902431 -0.5284142 0.510322 0.2902431 -0.5370079 0.510322 0.2902431 -0.5453253 0.510322 0.2902431 -0.5533834 0.510322 0.2902431 -0.5611974 0.510322 0.2902431 -0.5687816 0.510322 0.2902431 -0.092819 0.5195258 0.2902431 -0.1056428 0.5195258 0.2902431 -0.1201537 0.5195258 0.2902431 -0.1409607 0.5195258 0.2902431 -0.1678172 0.5195258 0.2902431 -0.1950164 0.5195258 0.2902431 -0.2210581 0.5195258 0.2902431 -0.245636 0.5195258 0.2902431 -0.2686816 0.5195258 0.2902431 -0.2902431 0.5195258 0.2902431 -0.3104189 0.5195258 0.2902431 -0.3293248 0.5195258 0.2902431 -0.3470774 0.5195258 0.2902431 -0.3637862 0.5195258 0.2902431 -0.3795513 0.5195258 0.2902431 -0.3944623 0.5195258 0.2902431 -0.4085988 0.5195258 0.2902431 -0.4220313 0.5195258 0.2902431 -0.4348222 0.5195258 0.2902431 -0.4470264 0.5195258 0.2902431 -0.4586928 0.5195258 0.2902431 -0.4698649 0.5195258 0.2902431 -0.4805811 0.5195258 0.2902431 -0.490876 0.5195258 0.2902431 -0.5007803 0.5195258 0.2902431 -0.510322 0.5195258 0.2902431 -0.5195258 0.5195258 0.2902431 -0.5284142 0.5195258 0.2902431 -0.5370079 0.5195258 0.2902431 -0.5453253 0.5195258 0.2902431 -0.5533834 0.5195258 0.2902431 -0.5611974 0.5195258 0.2902431 -0.5687816 0.5195258 0.2902431 -0.092819 0.5284142 0.2902431 -0.1056428 0.5284142 0.2902431 -0.1201537 0.5284142 0.2902431 -0.1409607 0.5284142 0.2902431 -0.1678172 0.5284142 0.2902431 -0.1950164 0.5284142 0.2902431 -0.2210581 0.5284142 0.2902431 -0.245636 0.5284142 0.2902431 -0.2686816 0.5284142 0.2902431 -0.2902431 0.5284142 0.2902431 -0.3104189 0.5284142 0.2902431 -0.3293248 0.5284142 0.2902431 -0.3470774 0.5284142 0.2902431 -0.3637862 0.5284142 0.2902431 -0.3795513 0.5284142 0.2902431 -0.3944623 0.5284142 0.2902431 -0.4085988 0.5284142 0.2902431 -0.4220313 0.5284142 0.2902431 -0.4348222 0.5284142 0.2902431 -0.4470264 0.5284142 0.2902431 -0.4586928 0.5284142 0.2902431 -0.4698649 0.5284142 0.2902431 -0.4805811 0.5284142 0.2902431 -0.490876 0.5284142 0.2902431 -0.5007803 0.5284142 0.2902431 -0.510322 0.5284142 0.2902431 -0.5195258 0.5284142 0.2902431 -0.5284142 0.5284142 0.2902431 -0.5370079 0.5284142 0.2902431 -0.5453253 0.5284142 0.2902431 -0.5533834 0.5284142 0.2902431 -0.5611974 0.5284142 0.2902431 -0.5687816 0.5284142 0.2902431 -0.092819 0.5370079 0.2902431 -0.1056428 0.5370079 0.2902431 -0.1201537 0.5370079 0.2902431 -0.1409607 0.5370079 0.2902431 -0.1678172 0.5370079 0.2902431 -0.1950164 0.5370079 0.2902431 -0.2210581 0.5370079 0.2902431 -0.245636 0.5370079 0.2902431 -0.2686816 0.5370079 0.2902431 -0.2902431 0.5370079 0.2902431 -0.3104189 0.5370079 0.2902431 -0.3293248 0.5370079 0.2902431 -0.3470774 0.5370079 0.2902431 -0.3637862 0.5370079 0.2902431 -0.3795513 0.5370079 0.2902431 -0.3944623 0.5370079 0.2902431 -0.4085988 0.5370079 0.2902431 -0.4220313 0.5370079 0.2902431 -0.4348222 0.5370079 0.2902431 -0.4470264 0.5370079 0.2902431 -0.4586928 0.5370079 0.2902431 -0.4698649 0.5370079 0.2902431 -0.4805811 0.5370079 0.2902431 -0.490876 0.5370079 0.2902431 -0.5007803 0.5370079 0.2902431 -0.510322 0.5370079 0.2902431 -0.5195258 0.5370079 0.2902431 -0.5284142 0.5370079 0.2902431 -0.5370079 0.5370079 0.2902431 -0.5453253 0.5370079 0.2902431 -0.5533834 0.5370079 0.2902431 -0.5611974 0.5370079 0.2902431 -0.5687816 0.5370079 0.2902431 -0.092819 0.5453253 0.2902431 -0.1056428 0.5453253 0.2902431 -0.1201537 0.5453253 0.2902431 -0.1409607 0.5453253 0.2902431 -0.1678172 0.5453253 0.2902431 -0.1950164 0.5453253 0.2902431 -0.2210581 0.5453253 0.2902431 -0.245636 0.5453253 0.2902431 -0.2686816 0.5453253 0.2902431 -0.2902431 0.5453253 0.2902431 -0.3104189 0.5453253 0.2902431 -0.3293248 0.5453253 0.2902431 -0.3470774 0.5453253 0.2902431 -0.3637862 0.5453253 0.2902431 -0.3795513 0.5453253 0.2902431 -0.3944623 0.5453253 0.2902431 -0.4085988 0.5453253 0.2902431 -0.4220313 0.5453253 0.2902431 -0.4348222 0.5453253 0.2902431 -0.4470264 0.5453253 0.2902431 -0.4586928 0.5453253 0.2902431 -0.4698649 0.5453253 0.2902431 -0.4805811 0.5453253 0.2902431 -0.490876 0.5453253 0.2902431 -0.5007803 0.5453253 0.2902431 -0.510322 0.5453253 0.2902431 -0.5195258 0.5453253 0.2902431 -0.5284142 0.5453253 0.2902431 -0.5370079 0.5453253 0.2902431 -0.5453253 0.5453253 0.2902431 -0.5533834 0.5453253 0.2902431 -0.5611974 0.5453253 0.2902431 -0.5687816 0.5453253 0.2902431 -0.092819 0.5533834 0.2902431 -0.1056428 0.5533834 0.2902431 -0.1201537 0.5533834 0.2902431 -0.1409607 0.5533834 0.2902431 -0.1678172 0.5533834 0.2902431 -0.1950164 0.5533834 0.2902431 -0.2210581 0.5533834 0.2902431 -0.245636 0.5533834 0.2902431 -0.2686816 0.5533834 0.2902431 -0.2902431 0.5533834 0.2902431 -0.3104189 0.5533834 0.2902431 -0.3293248 0.5533834 0.2902431 -0.3470774 0.5533834 0.2902431 -0.3637862 0.5533834 0.2902431 -0.3795513 0.5533834 0.2902431 -0.3944623 0.5533834 0.2902431 -0.4085988 0.5533834 0.2902431 -0.4220313 0.5533834 0.2902431 -0.4348222 0.5533834 0.2902431 -0.4470264 0.5533834 0.2902431 -0.4586928 0.5533834 0.2902431 -0.4698649 0.5533834 0.2902431 -0.4805811 0.5533834 0.2902431 -0.490876 0.5533834 0.2902431 -0.5007803 0.5533834 0.2902431 -0.510322 0.5533834 0.2902431 -0.5195258 0.5533834 0.2902431 -0.5284142 0.5533834 0.2902431 -0.5370079 0.5533834 0.2902431 -0.5453253 0.5533834 0.2902431 -0.5533834 0.5533834 0.2902431 -0.5611974 0.5533834 0.2902431 -0.5687816 0.5533834 0.2902431 -0.092819 0.5611974 0.2902431 -0.1056428 0.5611974 0.2902431 -0.1201537 0.5611974 0.2902431 -0.1409607 0.5611974 0.2902431 -0.1678172 0.5611974 0.2902431 -0.1950164 0.5611974 0.2902431 -0.2210581 0.5611974 0.2902431 -0.245636 0.5611974 0.2902431 -0.2686816 0.5611974 0.2902431 -0.2902431 0.5611974 0.2902431 -0.3104189 0.5611974 0.2902431 -0.3293248 0.5611974 0.2902431 -0.3470774 0.5611974 0.2902431 -0.3637862 0.5611974 0.2902431 -0.3795513 0.5611974 0.2902431 -0.3944623 0.5611974 0.2902431 -0.4085988 0.5611974 0.2902431 -0.4220313 0.5611974 0.2902431 -0.4348222 0.5611974 0.2902431 -0.4470264 0.5611974 0.2902431 -0.4586928 0.5611974 0.2902431 -0.4698649 0.5611974 0.2902431 -0.4805811 0.5611974 0.2902431 -0.490876 0.5611974 0.2902431 -0.5007803 0.5611974 0.2902431 -0.510322 0.5611974 0.2902431 -0.5195258 0.5611974 0.2902431 -0.5284142 0.5611974 0.2902431 -0.5370079 0.5611974 0.2902431 -0.5453253 0.5611974 0.2902431 -0.5533834 0.5611974 0.2902431 -0.5611974 0.5611974 0.2902431 -0.5687816 0.5611974 0.2902431 -0.092819 0.5687816 0.2902431 -0.1056428 0.5687816 0.2902431 -0.1201537 0.5687816 0.2902431 -0.1409607 0.5687816 0.2902431 -0.1678172 0.5687816 0.2902431 -0.1950164 0.5687816 0.2902431 -0.2210581 0.5687816 0.2902431 -0.245636 0.5687816 0.2902431 -0.2686816 0.5687816 0.2902431 -0.2902431 0.5687816 0.2902431 -0.3104189 0.5687816 0.2902431 -0.3293248 0.5687816 0.2902431 -0.3470774 0.5687816 0.2902431 -0.3637862 0.5687816 0.2902431 -0.3795513 0.5687816 0.2902431 -0.3944623 0.5687816 0.2902431 -0.4085988 0.5687816 0.2902431 -0.4220313 0.5687816 0.2902431 -0.4348222 0.5687816 0.2902431 -0.4470264 0.5687816 0.2902431 -0.4586928 0.5687816 0.2902431 -0.4698649 0.5687816 0.2902431 -0.4805811 0.5687816 0.2902431 -0.490876 0.5687816 0.2902431 -0.5007803 0.5687816 0.2902431 -0.510322 0.5687816 0.2902431 -0.5195258 0.5687816 0.2902431 -0.5284142 0.5687816 0.2902431 -0.5370079 0.5687816 0.2902431 -0.5453253 0.5687816 0.2902431 -0.5533834 0.5687816 0.2902431 -0.5611974 0.5687816 0.2902431 -0.5687816 0.5687816 0.2902431 -0.092819 0.092819 0.3104189 -0.1056428 0.092819 0.3104189 -0.1201537 0.092819 0.3104189 -0.1409607 0.092819 0.3104189 -0.1678172 0.092819 0.3104189 -0.1950164 0.092819 0.3104189 -0.2210581 0.092819 0.3104189 -0.245636 0.092819 0.3104189 -0.2686816 0.092819 0.3104189 -0.2902431 0.092819 0.3104189 -0.3104189 0.092819 0.3104189 -0.3293248 0.092819 0.3104189 -0.3470774 0.092819 0.3104189 -0.3637862 0.092819 0.3104189 -0.3795513 0.092819 0.3104189 -0.3944623 0.092819 0.3104189 -0.4085988 0.092819 0.3104189 -0.4220313 0.092819 0.3104189 -0.4348222 0.092819 0.3104189 -0.4470264 0.092819 0.3104189 -0.4586928 0.092819 0.3104189 -0.4698649 0.092819 0.3104189 -0.4805811 0.092819 0.3104189 -0.490876 0.092819 0.3104189 -0.5007803 0.092819 0.3104189 -0.510322 0.092819 0.3104189 -0.5195258 0.092819 0.3104189 -0.5284142 0.092819 0.3104189 -0.5370079 0.092819 0.3104189 -0.5453253 0.092819 0.3104189 -0.5533834 0.092819 0.3104189 -0.5611974 0.092819 0.3104189 -0.5687816 0.092819 0.3104189 -0.092819 0.1056428 0.3104189 -0.1056428 0.1056428 0.3104189 -0.1201537 0.1056428 0.3104189 -0.1409607 0.1056428 0.3104189 -0.1678172 0.1056428 0.3104189 -0.1950164 0.1056428 0.3104189 -0.2210581 0.1056428 0.3104189 -0.245636 0.1056428 0.3104189 -0.2686816 0.1056428 0.3104189 -0.2902431 0.1056428 0.3104189 -0.3104189 0.1056428 0.3104189 -0.3293248 0.1056428 0.3104189 -0.3470774 0.1056428 0.3104189 -0.3637862 0.1056428 0.3104189 -0.3795513 0.1056428 0.3104189 -0.3944623 0.1056428 0.3104189 -0.4085988 0.1056428 0.3104189 -0.4220313 0.1056428 0.3104189 -0.4348222 0.1056428 0.3104189 -0.4470264 0.1056428 0.3104189 -0.4586928 0.1056428 0.3104189 -0.4698649 0.1056428 0.3104189 -0.4805811 0.1056428 0.3104189 -0.490876 0.1056428 0.3104189 -0.5007803 0.1056428 0.3104189 -0.510322 0.1056428 0.3104189 -0.5195258 0.1056428 0.3104189 -0.5284142 0.1056428 0.3104189 -0.5370079 0.1056428 0.3104189 -0.5453253 0.1056428 0.3104189 -0.5533834 0.1056428 0.3104189 -0.5611974 0.1056428 0.3104189 -0.5687816 0.1056428 0.3104189 -0.092819 0.1201537 0.3104189 -0.1056428 0.1201537 0.3104189 -0.1201537 0.1201537 0.3104189 -0.1409607 0.1201537 0.3104189 -0.1678172 0.1201537 0.3104189 -0.1950164 0.1201537 0.3104189 -0.2210581 0.1201537 0.3104189 -0.245636 0.1201537 0.3104189 -0.2686816 0.1201537 0.3104189 -0.2902431 0.1201537 0.3104189 -0.3104189 0.1201537 0.3104189 -0.3293248 0.1201537 0.3104189 -0.3470774 0.1201537 0.3104189 -0.3637862 0.1201537 0.3104189 -0.3795513 0.1201537 0.3104189 -0.3944623 0.1201537 0.3104189 -0.4085988 0.1201537 0.3104189 -0.4220313 0.1201537 0.3104189 -0.4348222 0.1201537 0.3104189 -0.4470264 0.1201537 0.3104189 -0.4586928 0.1201537 0.3104189 -0.4698649 0.1201537 0.3104189 -0.4805811 0.1201537 0.3104189 -0.490876 0.1201537 0.3104189 -0.5007803 0.1201537 0.3104189 -0.510322 0.1201537 0.3104189 -0.5195258 0.1201537 0.3104189 -0.5284142 0.1201537 0.3104189 -0.5370079 0.1201537 0.3104189 -0.5453253 0.1201537 0.3104189 -0.5533834 0.1201537 0.3104189 -0.5611974 0.1201537 0.3104189 -0.5687816 0.1201537 0.3104189 -0.092819 0.1409607 0.3104189 -0.1056428 0.1409607 0.3104189 -0.1201537 0.1409607 0.3104189 -0.1409607 0.1409607 0.3104189 -0.1678172 0.1409607 0.3104189 -0.1950164 0.1409607 0.3104189 -0.2210581 0.1409607 0.3104189 -0.245636 0.1409607 0.3104189 -0.2686816 0.1409607 0.3104189 -0.2902431 0.1409607 0.3104189 -0.3104189 0.1409607 0.3104189 -0.3293248 0.1409607 0.3104189 -0.3470774 0.1409607 0.3104189 -0.3637862 0.1409607 0.3104189 -0.3795513 0.1409607 0.3104189 -0.3944623 0.1409607 0.3104189 -0.4085988 0.1409607 0.3104189 -0.4220313 0.1409607 0.3104189 -0.4348222 0.1409607 0.3104189 -0.4470264 0.1409607 0.3104189 -0.4586928 0.1409607 0.3104189 -0.4698649 0.1409607 0.3104189 -0.4805811 0.1409607 0.3104189 -0.490876 0.1409607 0.3104189 -0.5007803 0.1409607 0.3104189 -0.510322 0.1409607 0.3104189 -0.5195258 0.1409607 0.3104189 -0.5284142 0.1409607 0.3104189 -0.5370079 0.1409607 0.3104189 -0.5453253 0.1409607 0.3104189 -0.5533834 0.1409607 0.3104189 -0.5611974 0.1409607 0.3104189 -0.5687816 0.1409607 0.3104189 -0.092819 0.1678172 0.3104189 -0.1056428 0.1678172 0.3104189 -0.1201537 0.1678172 0.3104189 -0.1409607 0.1678172 0.3104189 -0.1678172 0.1678172 0.3104189 -0.1950164 0.1678172 0.3104189 -0.2210581 0.1678172 0.3104189 -0.245636 0.1678172 0.3104189 -0.2686816 0.1678172 0.3104189 -0.2902431 0.1678172 0.3104189 -0.3104189 0.1678172 0.3104189 -0.3293248 0.1678172 0.3104189 -0.3470774 0.1678172 0.3104189 -0.3637862 0.1678172 0.3104189 -0.3795513 0.1678172 0.3104189 -0.3944623 0.1678172 0.3104189 -0.4085988 0.1678172 0.3104189 -0.4220313 0.1678172 0.3104189 -0.4348222 0.1678172 0.3104189 -0.4470264 0.1678172 0.3104189 -0.4586928 0.1678172 0.3104189 -0.4698649 0.1678172 0.3104189 -0.4805811 0.1678172 0.3104189 -0.490876 0.1678172 0.3104189 -0.5007803 0.1678172 0.3104189 -0.510322 0.1678172 0.3104189 -0.5195258 0.1678172 0.3104189 -0.5284142 0.1678172 0.3104189 -0.5370079 0.1678172 0.3104189 -0.5453253 0.1678172 0.3104189 -0.5533834 0.1678172 0.3104189 -0.5611974 0.1678172 0.3104189 -0.5687816 0.1678172 0.3104189 -0.092819 0.1950164 0.3104189 -0.1056428 0.1950164 0.3104189 -0.1201537 0.1950164 0.3104189 -0.1409607 0.1950164 0.3104189 -0.1678172 0.1950164 0.3104189 -0.1950164 0.1950164 0.3104189 -0.2210581 0.1950164 0.3104189 -0.245636 0.1950164 0.3104189 -0.2686816 0.1950164 0.3104189 -0.2902431 0.1950164 0.3104189 -0.3104189 0.1950164 0.3104189 -0.3293248 0.1950164 0.3104189 -0.3470774 0.1950164 0.3104189 -0.3637862 0.1950164 0.3104189 -0.3795513 0.1950164 0.3104189 -0.3944623 0.1950164 0.3104189 -0.4085988 0.1950164 0.3104189 -0.4220313 0.1950164 0.3104189 -0.4348222 0.1950164 0.3104189 -0.4470264 0.1950164 0.3104189 -0.4586928 0.1950164 0.3104189 -0.4698649 0.1950164 0.3104189 -0.4805811 0.1950164 0.3104189 -0.490876 0.1950164 0.3104189 -0.5007803 0.1950164 0.3104189 -0.510322 0.1950164 0.3104189 -0.5195258 0.1950164 0.3104189 -0.5284142 0.1950164 0.3104189 -0.5370079 0.1950164 0.3104189 -0.5453253 0.1950164 0.3104189 -0.5533834 0.1950164 0.3104189 -0.5611974 0.1950164 0.3104189 -0.5687816 0.1950164 0.3104189 -0.092819 0.2210581 0.3104189 -0.1056428 0.2210581 0.3104189 -0.1201537 0.2210581 0.3104189 -0.1409607 0.2210581 0.3104189 -0.1678172 0.2210581 0.3104189 -0.1950164 0.2210581 0.3104189 -0.2210581 0.2210581 0.3104189 -0.245636 0.2210581 0.3104189 -0.2686816 0.2210581 0.3104189 -0.2902431 0.2210581 0.3104189 -0.3104189 0.2210581 0.3104189 -0.3293248 0.2210581 0.3104189 -0.3470774 0.2210581 0.3104189 -0.3637862 0.2210581 0.3104189 -0.3795513 0.2210581 0.3104189 -0.3944623 0.2210581 0.3104189 -0.4085988 0.2210581 0.3104189 -0.4220313 0.2210581 0.3104189 -0.4348222 0.2210581 0.3104189 -0.4470264 0.2210581 0.3104189 -0.4586928 0.2210581 0.3104189 -0.4698649 0.2210581 0.3104189 -0.4805811 0.2210581 0.3104189 -0.490876 0.2210581 0.3104189 -0.5007803 0.2210581 0.3104189 -0.510322 0.2210581 0.3104189 -0.5195258 0.2210581 0.3104189 -0.5284142 0.2210581 0.3104189 -0.5370079 0.2210581 0.3104189 -0.5453253 0.2210581 0.3104189 -0.5533834 0.2210581 0.3104189 -0.5611974 0.2210581 0.3104189 -0.5687816 0.2210581 0.3104189 -0.092819 0.245636 0.3104189 -0.1056428 0.245636 0.3104189 -0.1201537 0.245636 0.3104189 -0.1409607 0.245636 0.3104189 -0.1678172 0.245636 0.3104189 -0.1950164 0.245636 0.3104189 -0.2210581 0.245636 0.3104189 -0.245636 0.245636 0.3104189 -0.2686816 0.245636 0.3104189 -0.2902431 0.245636 0.3104189 -0.3104189 0.245636 0.3104189 -0.3293248 0.245636 0.3104189 -0.3470774 0.245636 0.3104189 -0.3637862 0.245636 0.3104189 -0.3795513 0.245636 0.3104189 -0.3944623 0.245636 0.3104189 -0.4085988 0.245636 0.3104189 -0.4220313 0.245636 0.3104189 -0.4348222 0.245636 0.3104189 -0.4470264 0.245636 0.3104189 -0.4586928 0.245636 0.3104189 -0.4698649 0.245636 0.3104189 -0.4805811 0.245636 0.3104189 -0.490876 0.245636 0.3104189 -0.5007803 0.245636 0.3104189 -0.510322 0.245636 0.3104189 -0.5195258 0.245636 0.3104189 -0.5284142 0.245636 0.3104189 -0.5370079 0.245636 0.3104189 -0.5453253 0.245636 0.3104189 -0.5533834 0.245636 0.3104189 -0.5611974 0.245636 0.3104189 -0.5687816 0.245636 0.3104189 -0.092819 0.2686816 0.3104189 -0.1056428 0.2686816 0.3104189 -0.1201537 0.2686816 0.3104189 -0.1409607 0.2686816 0.3104189 -0.1678172 0.2686816 0.3104189 -0.1950164 0.2686816 0.3104189 -0.2210581 0.2686816 0.3104189 -0.245636 0.2686816 0.3104189 -0.2686816 0.2686816 0.3104189 -0.2902431 0.2686816 0.3104189 -0.3104189 0.2686816 0.3104189 -0.3293248 0.2686816 0.3104189 -0.3470774 0.2686816 0.3104189 -0.3637862 0.2686816 0.3104189 -0.3795513 0.2686816 0.3104189 -0.3944623 0.2686816 0.3104189 -0.4085988 0.2686816 0.3104189 -0.4220313 0.2686816 0.3104189 -0.4348222 0.2686816 0.3104189 -0.4470264 0.2686816 0.3104189 -0.4586928 0.2686816 0.3104189 -0.4698649 0.2686816 0.3104189 -0.4805811 0.2686816 0.3104189 -0.490876 0.2686816 0.3104189 -0.5007803 0.2686816 0.3104189 -0.510322 0.2686816 0.3104189 -0.5195258 0.2686816 0.3104189 -0.5284142 0.2686816 0.3104189 -0.5370079 0.2686816 0.3104189 -0.5453253 0.2686816 0.3104189 -0.5533834 0.2686816 0.3104189 -0.5611974 0.2686816 0.3104189 -0.5687816 0.2686816 0.3104189 -0.092819 0.2902431 0.3104189 -0.1056428 0.2902431 0.3104189 -0.1201537 0.2902431 0.3104189 -0.1409607 0.2902431 0.3104189 -0.1678172 0.2902431 0.3104189 -0.1950164 0.2902431 0.3104189 -0.2210581 0.2902431 0.3104189 -0.245636 0.2902431 0.3104189 -0.2686816 0.2902431 0.3104189 -0.2902431 0.2902431 0.3104189 -0.3104189 0.2902431 0.3104189 -0.3293248 0.2902431 0.3104189 -0.3470774 0.2902431 0.3104189 -0.3637862 0.2902431 0.3104189 -0.3795513 0.2902431 0.3104189 -0.3944623 0.2902431 0.3104189 -0.4085988 0.2902431 0.3104189 -0.4220313 0.2902431 0.3104189 -0.4348222 0.2902431 0.3104189 -0.4470264 0.2902431 0.3104189 -0.4586928 0.2902431 0.3104189 -0.4698649 0.2902431 0.3104189 -0.4805811 0.2902431 0.3104189 -0.490876 0.2902431 0.3104189 -0.5007803 0.2902431 0.3104189 -0.510322 0.2902431 0.3104189 -0.5195258 0.2902431 0.3104189 -0.5284142 0.2902431 0.3104189 -0.5370079 0.2902431 0.3104189 -0.5453253 0.2902431 0.3104189 -0.5533834 0.2902431 0.3104189 -0.5611974 0.2902431 0.3104189 -0.5687816 0.2902431 0.3104189 -0.092819 0.3104189 0.3104189 -0.1056428 0.3104189 0.3104189 -0.1201537 0.3104189 0.3104189 -0.1409607 0.3104189 0.3104189 -0.1678172 0.3104189 0.3104189 -0.1950164 0.3104189 0.3104189 -0.2210581 0.3104189 0.3104189 -0.245636 0.3104189 0.3104189 -0.2686816 0.3104189 0.3104189 -0.2902431 0.3104189 0.3104189 -0.3104189 0.3104189 0.3104189 -0.3293248 0.3104189 0.3104189 -0.3470774 0.3104189 0.3104189 -0.3637862 0.3104189 0.3104189 -0.3795513 0.3104189 0.3104189 -0.3944623 0.3104189 0.3104189 -0.4085988 0.3104189 0.3104189 -0.4220313 0.3104189 0.3104189 -0.4348222 0.3104189 0.3104189 -0.4470264 0.3104189 0.3104189 -0.4586928 0.3104189 0.3104189 -0.4698649 0.3104189 0.3104189 -0.4805811 0.3104189 0.3104189 -0.490876 0.3104189 0.3104189 -0.5007803 0.3104189 0.3104189 -0.510322 0.3104189 0.3104189 -0.5195258 0.3104189 0.3104189 -0.5284142 0.3104189 0.3104189 -0.5370079 0.3104189 0.3104189 -0.5453253 0.3104189 0.3104189 -0.5533834 0.3104189 0.3104189 -0.5611974 0.3104189 0.3104189 -0.5687816 0.3104189 0.3104189 -0.092819 0.3293248 0.3104189 -0.1056428 0.3293248 0.3104189 -0.1201537 0.3293248 0.3104189 -0.1409607 0.3293248 0.3104189 -0.1678172 0.3293248 0.3104189 -0.1950164 0.3293248 0.3104189 -0.2210581 0.3293248 0.3104189 -0.245636 0.3293248 0.3104189 -0.2686816 0.3293248 0.3104189 -0.2902431 0.3293248 0.3104189 -0.3104189 0.3293248 0.3104189 -0.3293248 0.3293248 0.3104189 -0.3470774 0.3293248 0.3104189 -0.3637862 0.3293248 0.3104189 -0.3795513 0.3293248 0.3104189 -0.3944623 0.3293248 0.3104189 -0.4085988 0.3293248 0.3104189 -0.4220313 0.3293248 0.3104189 -0.4348222 0.3293248 0.3104189 -0.4470264 0.3293248 0.3104189 -0.4586928 0.3293248 0.3104189 -0.4698649 0.3293248 0.3104189 -0.4805811 0.3293248 0.3104189 -0.490876 0.3293248 0.3104189 -0.5007803 0.3293248 0.3104189 -0.510322 0.3293248 0.3104189 -0.5195258 0.3293248 0.3104189 -0.5284142 0.3293248 0.3104189 -0.5370079 0.3293248 0.3104189 -0.5453253 0.3293248 0.3104189 -0.5533834 0.3293248 0.3104189 -0.5611974 0.3293248 0.3104189 -0.5687816 0.3293248 0.3104189 -0.092819 0.3470774 0.3104189 -0.1056428 0.3470774 0.3104189 -0.1201537 0.3470774 0.3104189 -0.1409607 0.3470774 0.3104189 -0.1678172 0.3470774 0.3104189 -0.1950164 0.3470774 0.3104189 -0.2210581 0.3470774 0.3104189 -0.245636 0.3470774 0.3104189 -0.2686816 0.3470774 0.3104189 -0.2902431 0.3470774 0.3104189 -0.3104189 0.3470774 0.3104189 -0.3293248 0.3470774 0.3104189 -0.3470774 0.3470774 0.3104189 -0.3637862 0.3470774 0.3104189 -0.3795513 0.3470774 0.3104189 -0.3944623 0.3470774 0.3104189 -0.4085988 0.3470774 0.3104189 -0.4220313 0.3470774 0.3104189 -0.4348222 0.3470774 0.3104189 -0.4470264 0.3470774 0.3104189 -0.4586928 0.3470774 0.3104189 -0.4698649 0.3470774 0.3104189 -0.4805811 0.3470774 0.3104189 -0.490876 0.3470774 0.3104189 -0.5007803 0.3470774 0.3104189 -0.510322 0.3470774 0.3104189 -0.5195258 0.3470774 0.3104189 -0.5284142 0.3470774 0.3104189 -0.5370079 0.3470774 0.3104189 -0.5453253 0.3470774 0.3104189 -0.5533834 0.3470774 0.3104189 -0.5611974 0.3470774 0.3104189 -0.5687816 0.3470774 0.3104189 -0.092819 0.3637862 0.3104189 -0.1056428 0.3637862 0.3104189 -0.1201537 0.3637862 0.3104189 -0.1409607 0.3637862 0.3104189 -0.1678172 0.3637862 0.3104189 -0.1950164 0.3637862 0.3104189 -0.2210581 0.3637862 0.3104189 -0.245636 0.3637862 0.3104189 -0.2686816 0.3637862 0.3104189 -0.2902431 0.3637862 0.3104189 -0.3104189 0.3637862 0.3104189 -0.3293248 0.3637862 0.3104189 -0.3470774 0.3637862 0.3104189 -0.3637862 0.3637862 0.3104189 -0.3795513 0.3637862 0.3104189 -0.3944623 0.3637862 0.3104189 -0.4085988 0.3637862 0.3104189 -0.4220313 0.3637862 0.3104189 -0.4348222 0.3637862 0.3104189 -0.4470264 0.3637862 0.3104189 -0.4586928 0.3637862 0.3104189 -0.4698649 0.3637862 0.3104189 -0.4805811 0.3637862 0.3104189 -0.490876 0.3637862 0.3104189 -0.5007803 0.3637862 0.3104189 -0.510322 0.3637862 0.3104189 -0.5195258 0.3637862 0.3104189 -0.5284142 0.3637862 0.3104189 -0.5370079 0.3637862 0.3104189 -0.5453253 0.3637862 0.3104189 -0.5533834 0.3637862 0.3104189 -0.5611974 0.3637862 0.3104189 -0.5687816 0.3637862 0.3104189 -0.092819 0.3795513 0.3104189 -0.1056428 0.3795513 0.3104189 -0.1201537 0.3795513 0.3104189 -0.1409607 0.3795513 0.3104189 -0.1678172 0.3795513 0.3104189 -0.1950164 0.3795513 0.3104189 -0.2210581 0.3795513 0.3104189 -0.245636 0.3795513 0.3104189 -0.2686816 0.3795513 0.3104189 -0.2902431 0.3795513 0.3104189 -0.3104189 0.3795513 0.3104189 -0.3293248 0.3795513 0.3104189 -0.3470774 0.3795513 0.3104189 -0.3637862 0.3795513 0.3104189 -0.3795513 0.3795513 0.3104189 -0.3944623 0.3795513 0.3104189 -0.4085988 0.3795513 0.3104189 -0.4220313 0.3795513 0.3104189 -0.4348222 0.3795513 0.3104189 -0.4470264 0.3795513 0.3104189 -0.4586928 0.3795513 0.3104189 -0.4698649 0.3795513 0.3104189 -0.4805811 0.3795513 0.3104189 -0.490876 0.3795513 0.3104189 -0.5007803 0.3795513 0.3104189 -0.510322 0.3795513 0.3104189 -0.5195258 0.3795513 0.3104189 -0.5284142 0.3795513 0.3104189 -0.5370079 0.3795513 0.3104189 -0.5453253 0.3795513 0.3104189 -0.5533834 0.3795513 0.3104189 -0.5611974 0.3795513 0.3104189 -0.5687816 0.3795513 0.3104189 -0.092819 0.3944623 0.3104189 -0.1056428 0.3944623 0.3104189 -0.1201537 0.3944623 0.3104189 -0.1409607 0.3944623 0.3104189 -0.1678172 0.3944623 0.3104189 -0.1950164 0.3944623 0.3104189 -0.2210581 0.3944623 0.3104189 -0.245636 0.3944623 0.3104189 -0.2686816 0.3944623 0.3104189 -0.2902431 0.3944623 0.3104189 -0.3104189 0.3944623 0.3104189 -0.3293248 0.3944623 0.3104189 -0.3470774 0.3944623 0.3104189 -0.3637862 0.3944623 0.3104189 -0.3795513 0.3944623 0.3104189 -0.3944623 0.3944623 0.3104189 -0.4085988 0.3944623 0.3104189 -0.4220313 0.3944623 0.3104189 -0.4348222 0.3944623 0.3104189 -0.4470264 0.3944623 0.3104189 -0.4586928 0.3944623 0.3104189 -0.4698649 0.3944623 0.3104189 -0.4805811 0.3944623 0.3104189 -0.490876 0.3944623 0.3104189 -0.5007803 0.3944623 0.3104189 -0.510322 0.3944623 0.3104189 -0.5195258 0.3944623 0.3104189 -0.5284142 0.3944623 0.3104189 -0.5370079 0.3944623 0.3104189 -0.5453253 0.3944623 0.3104189 -0.5533834 0.3944623 0.3104189 -0.5611974 0.3944623 0.3104189 -0.5687816 0.3944623 0.3104189 -0.092819 0.4085988 0.3104189 -0.1056428 0.4085988 0.3104189 -0.1201537 0.4085988 0.3104189 -0.1409607 0.4085988 0.3104189 -0.1678172 0.4085988 0.3104189 -0.1950164 0.4085988 0.3104189 -0.2210581 0.4085988 0.3104189 -0.245636 0.4085988 0.3104189 -0.2686816 0.4085988 0.3104189 -0.2902431 0.4085988 0.3104189 -0.3104189 0.4085988 0.3104189 -0.3293248 0.4085988 0.3104189 -0.3470774 0.4085988 0.3104189 -0.3637862 0.4085988 0.3104189 -0.3795513 0.4085988 0.3104189 -0.3944623 0.4085988 0.3104189 -0.4085988 0.4085988 0.3104189 -0.4220313 0.4085988 0.3104189 -0.4348222 0.4085988 0.3104189 -0.4470264 0.4085988 0.3104189 -0.4586928 0.4085988 0.3104189 -0.4698649 0.4085988 0.3104189 -0.4805811 0.4085988 0.3104189 -0.490876 0.4085988 0.3104189 -0.5007803 0.4085988 0.3104189 -0.510322 0.4085988 0.3104189 -0.5195258 0.4085988 0.3104189 -0.5284142 0.4085988 0.3104189 -0.5370079 0.4085988 0.3104189 -0.5453253 0.4085988 0.3104189 -0.5533834 0.4085988 0.3104189 -0.5611974 0.4085988 0.3104189 -0.5687816 0.4085988 0.3104189 -0.092819 0.4220313 0.3104189 -0.1056428 0.4220313 0.3104189 -0.1201537 0.4220313 0.3104189 -0.1409607 0.4220313 0.3104189 -0.1678172 0.4220313 0.3104189 -0.1950164 0.4220313 0.3104189 -0.2210581 0.4220313 0.3104189 -0.245636 0.4220313 0.3104189 -0.2686816 0.4220313 0.3104189 -0.2902431 0.4220313 0.3104189 -0.3104189 0.4220313 0.3104189 -0.3293248 0.4220313 0.3104189 -0.3470774 0.4220313 0.3104189 -0.3637862 0.4220313 0.3104189 -0.3795513 0.4220313 0.3104189 -0.3944623 0.4220313 0.3104189 -0.4085988 0.4220313 0.3104189 -0.4220313 0.4220313 0.3104189 -0.4348222 0.4220313 0.3104189 -0.4470264 0.4220313 0.3104189 -0.4586928 0.4220313 0.3104189 -0.4698649 0.4220313 0.3104189 -0.4805811 0.4220313 0.3104189 -0.490876 0.4220313 0.3104189 -0.5007803 0.4220313 0.3104189 -0.510322 0.4220313 0.3104189 -0.5195258 0.4220313 0.3104189 -0.5284142 0.4220313 0.3104189 -0.5370079 0.4220313 0.3104189 -0.5453253 0.4220313 0.3104189 -0.5533834 0.4220313 0.3104189 -0.5611974 0.4220313 0.3104189 -0.5687816 0.4220313 0.3104189 -0.092819 0.4348222 0.3104189 -0.1056428 0.4348222 0.3104189 -0.1201537 0.4348222 0.3104189 -0.1409607 0.4348222 0.3104189 -0.1678172 0.4348222 0.3104189 -0.1950164 0.4348222 0.3104189 -0.2210581 0.4348222 0.3104189 -0.245636 0.4348222 0.3104189 -0.2686816 0.4348222 0.3104189 -0.2902431 0.4348222 0.3104189 -0.3104189 0.4348222 0.3104189 -0.3293248 0.4348222 0.3104189 -0.3470774 0.4348222 0.3104189 -0.3637862 0.4348222 0.3104189 -0.3795513 0.4348222 0.3104189 -0.3944623 0.4348222 0.3104189 -0.4085988 0.4348222 0.3104189 -0.4220313 0.4348222 0.3104189 -0.4348222 0.4348222 0.3104189 -0.4470264 0.4348222 0.3104189 -0.4586928 0.4348222 0.3104189 -0.4698649 0.4348222 0.3104189 -0.4805811 0.4348222 0.3104189 -0.490876 0.4348222 0.3104189 -0.5007803 0.4348222 0.3104189 -0.510322 0.4348222 0.3104189 -0.5195258 0.4348222 0.3104189 -0.5284142 0.4348222 0.3104189 -0.5370079 0.4348222 0.3104189 -0.5453253 0.4348222 0.3104189 -0.5533834 0.4348222 0.3104189 -0.5611974 0.4348222 0.3104189 -0.5687816 0.4348222 0.3104189 -0.092819 0.4470264 0.3104189 -0.1056428 0.4470264 0.3104189 -0.1201537 0.4470264 0.3104189 -0.1409607 0.4470264 0.3104189 -0.1678172 0.4470264 0.3104189 -0.1950164 0.4470264 0.3104189 -0.2210581 0.4470264 0.3104189 -0.245636 0.4470264 0.3104189 -0.2686816 0.4470264 0.3104189 -0.2902431 0.4470264 0.3104189 -0.3104189 0.4470264 0.3104189 -0.3293248 0.4470264 0.3104189 -0.3470774 0.4470264 0.3104189 -0.3637862 0.4470264 0.3104189 -0.3795513 0.4470264 0.3104189 -0.3944623 0.4470264 0.3104189 -0.4085988 0.4470264 0.3104189 -0.4220313 0.4470264 0.3104189 -0.4348222 0.4470264 0.3104189 -0.4470264 0.4470264 0.3104189 -0.4586928 0.4470264 0.3104189 -0.4698649 0.4470264 0.3104189 -0.4805811 0.4470264 0.3104189 -0.490876 0.4470264 0.3104189 -0.5007803 0.4470264 0.3104189 -0.510322 0.4470264 0.3104189 -0.5195258 0.4470264 0.3104189 -0.5284142 0.4470264 0.3104189 -0.5370079 0.4470264 0.3104189 -0.5453253 0.4470264 0.3104189 -0.5533834 0.4470264 0.3104189 -0.5611974 0.4470264 0.3104189 -0.5687816 0.4470264 0.3104189 -0.092819 0.4586928 0.3104189 -0.1056428 0.4586928 0.3104189 -0.1201537 0.4586928 0.3104189 -0.1409607 0.4586928 0.3104189 -0.1678172 0.4586928 0.3104189 -0.1950164 0.4586928 0.3104189 -0.2210581 0.4586928 0.3104189 -0.245636 0.4586928 0.3104189 -0.2686816 0.4586928 0.3104189 -0.2902431 0.4586928 0.3104189 -0.3104189 0.4586928 0.3104189 -0.3293248 0.4586928 0.3104189 -0.3470774 0.4586928 0.3104189 -0.3637862 0.4586928 0.3104189 -0.3795513 0.4586928 0.3104189 -0.3944623 0.4586928 0.3104189 -0.4085988 0.4586928 0.3104189 -0.4220313 0.4586928 0.3104189 -0.4348222 0.4586928 0.3104189 -0.4470264 0.4586928 0.3104189 -0.4586928 0.4586928 0.3104189 -0.4698649 0.4586928 0.3104189 -0.4805811 0.4586928 0.3104189 -0.490876 0.4586928 0.3104189 -0.5007803 0.4586928 0.3104189 -0.510322 0.4586928 0.3104189 -0.5195258 0.4586928 0.3104189 -0.5284142 0.4586928 0.3104189 -0.5370079 0.4586928 0.3104189 -0.5453253 0.4586928 0.3104189 -0.5533834 0.4586928 0.3104189 -0.5611974 0.4586928 0.3104189 -0.5687816 0.4586928 0.3104189 -0.092819 0.4698649 0.3104189 -0.1056428 0.4698649 0.3104189 -0.1201537 0.4698649 0.3104189 -0.1409607 0.4698649 0.3104189 -0.1678172 0.4698649 0.3104189 -0.1950164 0.4698649 0.3104189 -0.2210581 0.4698649 0.3104189 -0.245636 0.4698649 0.3104189 -0.2686816 0.4698649 0.3104189 -0.2902431 0.4698649 0.3104189 -0.3104189 0.4698649 0.3104189 -0.3293248 0.4698649 0.3104189 -0.3470774 0.4698649 0.3104189 -0.3637862 0.4698649 0.3104189 -0.3795513 0.4698649 0.3104189 -0.3944623 0.4698649 0.3104189 -0.4085988 0.4698649 0.3104189 -0.4220313 0.4698649 0.3104189 -0.4348222 0.4698649 0.3104189 -0.4470264 0.4698649 0.3104189 -0.4586928 0.4698649 0.3104189 -0.4698649 0.4698649 0.3104189 -0.4805811 0.4698649 0.3104189 -0.490876 0.4698649 0.3104189 -0.5007803 0.4698649 0.3104189 -0.510322 0.4698649 0.3104189 -0.5195258 0.4698649 0.3104189 -0.5284142 0.4698649 0.3104189 -0.5370079 0.4698649 0.3104189 -0.5453253 0.4698649 0.3104189 -0.5533834 0.4698649 0.3104189 -0.5611974 0.4698649 0.3104189 -0.5687816 0.4698649 0.3104189 -0.092819 0.4805811 0.3104189 -0.1056428 0.4805811 0.3104189 -0.1201537 0.4805811 0.3104189 -0.1409607 0.4805811 0.3104189 -0.1678172 0.4805811 0.3104189 -0.1950164 0.4805811 0.3104189 -0.2210581 0.4805811 0.3104189 -0.245636 0.4805811 0.3104189 -0.2686816 0.4805811 0.3104189 -0.2902431 0.4805811 0.3104189 -0.3104189 0.4805811 0.3104189 -0.3293248 0.4805811 0.3104189 -0.3470774 0.4805811 0.3104189 -0.3637862 0.4805811 0.3104189 -0.3795513 0.4805811 0.3104189 -0.3944623 0.4805811 0.3104189 -0.4085988 0.4805811 0.3104189 -0.4220313 0.4805811 0.3104189 -0.4348222 0.4805811 0.3104189 -0.4470264 0.4805811 0.3104189 -0.4586928 0.4805811 0.3104189 -0.4698649 0.4805811 0.3104189 -0.4805811 0.4805811 0.3104189 -0.490876 0.4805811 0.3104189 -0.5007803 0.4805811 0.3104189 -0.510322 0.4805811 0.3104189 -0.5195258 0.4805811 0.3104189 -0.5284142 0.4805811 0.3104189 -0.5370079 0.4805811 0.3104189 -0.5453253 0.4805811 0.3104189 -0.5533834 0.4805811 0.3104189 -0.5611974 0.4805811 0.3104189 -0.5687816 0.4805811 0.3104189 -0.092819 0.490876 0.3104189 -0.1056428 0.490876 0.3104189 -0.1201537 0.490876 0.3104189 -0.1409607 0.490876 0.3104189 -0.1678172 0.490876 0.3104189 -0.1950164 0.490876 0.3104189 -0.2210581 0.490876 0.3104189 -0.245636 0.490876 0.3104189 -0.2686816 0.490876 0.3104189 -0.2902431 0.490876 0.3104189 -0.3104189 0.490876 0.3104189 -0.3293248 0.490876 0.3104189 -0.3470774 0.490876 0.3104189 -0.3637862 0.490876 0.3104189 -0.3795513 0.490876 0.3104189 -0.3944623 0.490876 0.3104189 -0.4085988 0.490876 0.3104189 -0.4220313 0.490876 0.3104189 -0.4348222 0.490876 0.3104189 -0.4470264 0.490876 0.3104189 -0.4586928 0.490876 0.3104189 -0.4698649 0.490876 0.3104189 -0.4805811 0.490876 0.3104189 -0.490876 0.490876 0.3104189 -0.5007803 0.490876 0.3104189 -0.510322 0.490876 0.3104189 -0.5195258 0.490876 0.3104189 -0.5284142 0.490876 0.3104189 -0.5370079 0.490876 0.3104189 -0.5453253 0.490876 0.3104189 -0.5533834 0.490876 0.3104189 -0.5611974 0.490876 0.3104189 -0.5687816 0.490876 0.3104189 -0.092819 0.5007803 0.3104189 -0.1056428 0.5007803 0.3104189 -0.1201537 0.5007803 0.3104189 -0.1409607 0.5007803 0.3104189 -0.1678172 0.5007803 0.3104189 -0.1950164 0.5007803 0.3104189 -0.2210581 0.5007803 0.3104189 -0.245636 0.5007803 0.3104189 -0.2686816 0.5007803 0.3104189 -0.2902431 0.5007803 0.3104189 -0.3104189 0.5007803 0.3104189 -0.3293248 0.5007803 0.3104189 -0.3470774 0.5007803 0.3104189 -0.3637862 0.5007803 0.3104189 -0.3795513 0.5007803 0.3104189 -0.3944623 0.5007803 0.3104189 -0.4085988 0.5007803 0.3104189 -0.4220313 0.5007803 0.3104189 -0.4348222 0.5007803 0.3104189 -0.4470264 0.5007803 0.3104189 -0.4586928 0.5007803 0.3104189 -0.4698649 0.5007803 0.3104189 -0.4805811 0.5007803 0.3104189 -0.490876 0.5007803 0.3104189 -0.5007803 0.5007803 0.3104189 -0.510322 0.5007803 0.3104189 -0.5195258 0.5007803 0.3104189 -0.5284142 0.5007803 0.3104189 -0.5370079 0.5007803 0.3104189 -0.5453253 0.5007803 0.3104189 -0.5533834 0.5007803 0.3104189 -0.5611974 0.5007803 0.3104189 -0.5687816 0.5007803 0.3104189 -0.092819 0.510322 0.3104189 -0.1056428 0.510322 0.3104189 -0.1201537 0.510322 0.3104189 -0.1409607 0.510322 0.3104189 -0.1678172 0.510322 0.3104189 -0.1950164 0.510322 0.3104189 -0.2210581 0.510322 0.3104189 -0.245636 0.510322 0.3104189 -0.2686816 0.510322 0.3104189 -0.2902431 0.510322 0.3104189 -0.3104189 0.510322 0.3104189 -0.3293248 0.510322 0.3104189 -0.3470774 0.510322 0.3104189 -0.3637862 0.510322 0.3104189 -0.3795513 0.510322 0.3104189 -0.3944623 0.510322 0.3104189 -0.4085988 0.510322 0.3104189 -0.4220313 0.510322 0.3104189 -0.4348222 0.510322 0.3104189 -0.4470264 0.510322 0.3104189 -0.4586928 0.510322 0.3104189 -0.4698649 0.510322 0.3104189 -0.4805811 0.510322 0.3104189 -0.490876 0.510322 0.3104189 -0.5007803 0.510322 0.3104189 -0.510322 0.510322 0.3104189 -0.5195258 0.510322 0.3104189 -0.5284142 0.510322 0.3104189 -0.5370079 0.510322 0.3104189 -0.5453253 0.510322 0.3104189 -0.5533834 0.510322 0.3104189 -0.5611974 0.510322 0.3104189 -0.5687816 0.510322 0.3104189 -0.092819 0.5195258 0.3104189 -0.1056428 0.5195258 0.3104189 -0.1201537 0.5195258 0.3104189 -0.1409607 0.5195258 0.3104189 -0.1678172 0.5195258 0.3104189 -0.1950164 0.5195258 0.3104189 -0.2210581 0.5195258 0.3104189 -0.245636 0.5195258 0.3104189 -0.2686816 0.5195258 0.3104189 -0.2902431 0.5195258 0.3104189 -0.3104189 0.5195258 0.3104189 -0.3293248 0.5195258 0.3104189 -0.3470774 0.5195258 0.3104189 -0.3637862 0.5195258 0.3104189 -0.3795513 0.5195258 0.3104189 -0.3944623 0.5195258 0.3104189 -0.4085988 0.5195258 0.3104189 -0.4220313 0.5195258 0.3104189 -0.4348222 0.5195258 0.3104189 -0.4470264 0.5195258 0.3104189 -0.4586928 0.5195258 0.3104189 -0.4698649 0.5195258 0.3104189 -0.4805811 0.5195258 0.3104189 -0.490876 0.5195258 0.3104189 -0.5007803 0.5195258 0.3104189 -0.510322 0.5195258 0.3104189 -0.5195258 0.5195258 0.3104189 -0.5284142 0.5195258 0.3104189 -0.5370079 0.5195258 0.3104189 -0.5453253 0.5195258 0.3104189 -0.5533834 0.5195258 0.3104189 -0.5611974 0.5195258 0.3104189 -0.5687816 0.5195258 0.3104189 -0.092819 0.5284142 0.3104189 -0.1056428 0.5284142 0.3104189 -0.1201537 0.5284142 0.3104189 -0.1409607 0.5284142 0.3104189 -0.1678172 0.5284142 0.3104189 -0.1950164 0.5284142 0.3104189 -0.2210581 0.5284142 0.3104189 -0.245636 0.5284142 0.3104189 -0.2686816 0.5284142 0.3104189 -0.2902431 0.5284142 0.3104189 -0.3104189 0.5284142 0.3104189 -0.3293248 0.5284142 0.3104189 -0.3470774 0.5284142 0.3104189 -0.3637862 0.5284142 0.3104189 -0.3795513 0.5284142 0.3104189 -0.3944623 0.5284142 0.3104189 -0.4085988 0.5284142 0.3104189 -0.4220313 0.5284142 0.3104189 -0.4348222 0.5284142 0.3104189 -0.4470264 0.5284142 0.3104189 -0.4586928 0.5284142 0.3104189 -0.4698649 0.5284142 0.3104189 -0.4805811 0.5284142 0.3104189 -0.490876 0.5284142 0.3104189 -0.5007803 0.5284142 0.3104189 -0.510322 0.5284142 0.3104189 -0.5195258 0.5284142 0.3104189 -0.5284142 0.5284142 0.3104189 -0.5370079 0.5284142 0.3104189 -0.5453253 0.5284142 0.3104189 -0.5533834 0.5284142 0.3104189 -0.5611974 0.5284142 0.3104189 -0.5687816 0.5284142 0.3104189 -0.092819 0.5370079 0.3104189 -0.1056428 0.5370079 0.3104189 -0.1201537 0.5370079 0.3104189 -0.1409607 0.5370079 0.3104189 -0.1678172 0.5370079 0.3104189 -0.1950164 0.5370079 0.3104189 -0.2210581 0.5370079 0.3104189 -0.245636 0.5370079 0.3104189 -0.2686816 0.5370079 0.3104189 -0.2902431 0.5370079 0.3104189 -0.3104189 0.5370079 0.3104189 -0.3293248 0.5370079 0.3104189 -0.3470774 0.5370079 0.3104189 -0.3637862 0.5370079 0.3104189 -0.3795513 0.5370079 0.3104189 -0.3944623 0.5370079 0.3104189 -0.4085988 0.5370079 0.3104189 -0.4220313 0.5370079 0.3104189 -0.4348222 0.5370079 0.3104189 -0.4470264 0.5370079 0.3104189 -0.4586928 0.5370079 0.3104189 -0.4698649 0.5370079 0.3104189 -0.4805811 0.5370079 0.3104189 -0.490876 0.5370079 0.3104189 -0.5007803 0.5370079 0.3104189 -0.510322 0.5370079 0.3104189 -0.5195258 0.5370079 0.3104189 -0.5284142 0.5370079 0.3104189 -0.5370079 0.5370079 0.3104189 -0.5453253 0.5370079 0.3104189 -0.5533834 0.5370079 0.3104189 -0.5611974 0.5370079 0.3104189 -0.5687816 0.5370079 0.3104189 -0.092819 0.5453253 0.3104189 -0.1056428 0.5453253 0.3104189 -0.1201537 0.5453253 0.3104189 -0.1409607 0.5453253 0.3104189 -0.1678172 0.5453253 0.3104189 -0.1950164 0.5453253 0.3104189 -0.2210581 0.5453253 0.3104189 -0.245636 0.5453253 0.3104189 -0.2686816 0.5453253 0.3104189 -0.2902431 0.5453253 0.3104189 -0.3104189 0.5453253 0.3104189 -0.3293248 0.5453253 0.3104189 -0.3470774 0.5453253 0.3104189 -0.3637862 0.5453253 0.3104189 -0.3795513 0.5453253 0.3104189 -0.3944623 0.5453253 0.3104189 -0.4085988 0.5453253 0.3104189 -0.4220313 0.5453253 0.3104189 -0.4348222 0.5453253 0.3104189 -0.4470264 0.5453253 0.3104189 -0.4586928 0.5453253 0.3104189 -0.4698649 0.5453253 0.3104189 -0.4805811 0.5453253 0.3104189 -0.490876 0.5453253 0.3104189 -0.5007803 0.5453253 0.3104189 -0.510322 0.5453253 0.3104189 -0.5195258 0.5453253 0.3104189 -0.5284142 0.5453253 0.3104189 -0.5370079 0.5453253 0.3104189 -0.5453253 0.5453253 0.3104189 -0.5533834 0.5453253 0.3104189 -0.5611974 0.5453253 0.3104189 -0.5687816 0.5453253 0.3104189 -0.092819 0.5533834 0.3104189 -0.1056428 0.5533834 0.3104189 -0.1201537 0.5533834 0.3104189 -0.1409607 0.5533834 0.3104189 -0.1678172 0.5533834 0.3104189 -0.1950164 0.5533834 0.3104189 -0.2210581 0.5533834 0.3104189 -0.245636 0.5533834 0.3104189 -0.2686816 0.5533834 0.3104189 -0.2902431 0.5533834 0.3104189 -0.3104189 0.5533834 0.3104189 -0.3293248 0.5533834 0.3104189 -0.3470774 0.5533834 0.3104189 -0.3637862 0.5533834 0.3104189 -0.3795513 0.5533834 0.3104189 -0.3944623 0.5533834 0.3104189 -0.4085988 0.5533834 0.3104189 -0.4220313 0.5533834 0.3104189 -0.4348222 0.5533834 0.3104189 -0.4470264 0.5533834 0.3104189 -0.4586928 0.5533834 0.3104189 -0.4698649 0.5533834 0.3104189 -0.4805811 0.5533834 0.3104189 -0.490876 0.5533834 0.3104189 -0.5007803 0.5533834 0.3104189 -0.510322 0.5533834 0.3104189 -0.5195258 0.5533834 0.3104189 -0.5284142 0.5533834 0.3104189 -0.5370079 0.5533834 0.3104189 -0.5453253 0.5533834 0.3104189 -0.5533834 0.5533834 0.3104189 -0.5611974 0.5533834 0.3104189 -0.5687816 0.5533834 0.3104189 -0.092819 0.5611974 0.3104189 -0.1056428 0.5611974 0.3104189 -0.1201537 0.5611974 0.3104189 -0.1409607 0.5611974 0.3104189 -0.1678172 0.5611974 0.3104189 -0.1950164 0.5611974 0.3104189 -0.2210581 0.5611974 0.3104189 -0.245636 0.5611974 0.3104189 -0.2686816 0.5611974 0.3104189 -0.2902431 0.5611974 0.3104189 -0.3104189 0.5611974 0.3104189 -0.3293248 0.5611974 0.3104189 -0.3470774 0.5611974 0.3104189 -0.3637862 0.5611974 0.3104189 -0.3795513 0.5611974 0.3104189 -0.3944623 0.5611974 0.3104189 -0.4085988 0.5611974 0.3104189 -0.4220313 0.5611974 0.3104189 -0.4348222 0.5611974 0.3104189 -0.4470264 0.5611974 0.3104189 -0.4586928 0.5611974 0.3104189 -0.4698649 0.5611974 0.3104189 -0.4805811 0.5611974 0.3104189 -0.490876 0.5611974 0.3104189 -0.5007803 0.5611974 0.3104189 -0.510322 0.5611974 0.3104189 -0.5195258 0.5611974 0.3104189 -0.5284142 0.5611974 0.3104189 -0.5370079 0.5611974 0.3104189 -0.5453253 0.5611974 0.3104189 -0.5533834 0.5611974 0.3104189 -0.5611974 0.5611974 0.3104189 -0.5687816 0.5611974 0.3104189 -0.092819 0.5687816 0.3104189 -0.1056428 0.5687816 0.3104189 -0.1201537 0.5687816 0.3104189 -0.1409607 0.5687816 0.3104189 -0.1678172 0.5687816 0.3104189 -0.1950164 0.5687816 0.3104189 -0.2210581 0.5687816 0.3104189 -0.245636 0.5687816 0.3104189 -0.2686816 0.5687816 0.3104189 -0.2902431 0.5687816 0.3104189 -0.3104189 0.5687816 0.3104189 -0.3293248 0.5687816 0.3104189 -0.3470774 0.5687816 0.3104189 -0.3637862 0.5687816 0.3104189 -0.3795513 0.5687816 0.3104189 -0.3944623 0.5687816 0.3104189 -0.4085988 0.5687816 0.3104189 -0.4220313 0.5687816 0.3104189 -0.4348222 0.5687816 0.3104189 -0.4470264 0.5687816 0.3104189 -0.4586928 0.5687816 0.3104189 -0.4698649 0.5687816 0.3104189 -0.4805811 0.5687816 0.3104189 -0.490876 0.5687816 0.3104189 -0.5007803 0.5687816 0.3104189 -0.510322 0.5687816 0.3104189 -0.5195258 0.5687816 0.3104189 -0.5284142 0.5687816 0.3104189 -0.5370079 0.5687816 0.3104189 -0.5453253 0.5687816 0.3104189 -0.5533834 0.5687816 0.3104189 -0.5611974 0.5687816 0.3104189 -0.5687816 0.5687816 0.3104189 -0.092819 0.092819 0.3293248 -0.1056428 0.092819 0.3293248 -0.1201537 0.092819 0.3293248 -0.1409607 0.092819 0.3293248 -0.1678172 0.092819 0.3293248 -0.1950164 0.092819 0.3293248 -0.2210581 0.092819 0.3293248 -0.245636 0.092819 0.3293248 -0.2686816 0.092819 0.3293248 -0.2902431 0.092819 0.3293248 -0.3104189 0.092819 0.3293248 -0.3293248 0.092819 0.3293248 -0.3470774 0.092819 0.3293248 -0.3637862 0.092819 0.3293248 -0.3795513 0.092819 0.3293248 -0.3944623 0.092819 0.3293248 -0.4085988 0.092819 0.3293248 -0.4220313 0.092819 0.3293248 -0.4348222 0.092819 0.3293248 -0.4470264 0.092819 0.3293248 -0.4586928 0.092819 0.3293248 -0.4698649 0.092819 0.3293248 -0.4805811 0.092819 0.3293248 -0.490876 0.092819 0.3293248 -0.5007803 0.092819 0.3293248 -0.510322 0.092819 0.3293248 -0.5195258 0.092819 0.3293248 -0.5284142 0.092819 0.3293248 -0.5370079 0.092819 0.3293248 -0.5453253 0.092819 0.3293248 -0.5533834 0.092819 0.3293248 -0.5611974 0.092819 0.3293248 -0.5687816 0.092819 0.3293248 -0.092819 0.1056428 0.3293248 -0.1056428 0.1056428 0.3293248 -0.1201537 0.1056428 0.3293248 -0.1409607 0.1056428 0.3293248 -0.1678172 0.1056428 0.3293248 -0.1950164 0.1056428 0.3293248 -0.2210581 0.1056428 0.3293248 -0.245636 0.1056428 0.3293248 -0.2686816 0.1056428 0.3293248 -0.2902431 0.1056428 0.3293248 -0.3104189 0.1056428 0.3293248 -0.3293248 0.1056428 0.3293248 -0.3470774 0.1056428 0.3293248 -0.3637862 0.1056428 0.3293248 -0.3795513 0.1056428 0.3293248 -0.3944623 0.1056428 0.3293248 -0.4085988 0.1056428 0.3293248 -0.4220313 0.1056428 0.3293248 -0.4348222 0.1056428 0.3293248 -0.4470264 0.1056428 0.3293248 -0.4586928 0.1056428 0.3293248 -0.4698649 0.1056428 0.3293248 -0.4805811 0.1056428 0.3293248 -0.490876 0.1056428 0.3293248 -0.5007803 0.1056428 0.3293248 -0.510322 0.1056428 0.3293248 -0.5195258 0.1056428 0.3293248 -0.5284142 0.1056428 0.3293248 -0.5370079 0.1056428 0.3293248 -0.5453253 0.1056428 0.3293248 -0.5533834 0.1056428 0.3293248 -0.5611974 0.1056428 0.3293248 -0.5687816 0.1056428 0.3293248 -0.092819 0.1201537 0.3293248 -0.1056428 0.1201537 0.3293248 -0.1201537 0.1201537 0.3293248 -0.1409607 0.1201537 0.3293248 -0.1678172 0.1201537 0.3293248 -0.1950164 0.1201537 0.3293248 -0.2210581 0.1201537 0.3293248 -0.245636 0.1201537 0.3293248 -0.2686816 0.1201537 0.3293248 -0.2902431 0.1201537 0.3293248 -0.3104189 0.1201537 0.3293248 -0.3293248 0.1201537 0.3293248 -0.3470774 0.1201537 0.3293248 -0.3637862 0.1201537 0.3293248 -0.3795513 0.1201537 0.3293248 -0.3944623 0.1201537 0.3293248 -0.4085988 0.1201537 0.3293248 -0.4220313 0.1201537 0.3293248 -0.4348222 0.1201537 0.3293248 -0.4470264 0.1201537 0.3293248 -0.4586928 0.1201537 0.3293248 -0.4698649 0.1201537 0.3293248 -0.4805811 0.1201537 0.3293248 -0.490876 0.1201537 0.3293248 -0.5007803 0.1201537 0.3293248 -0.510322 0.1201537 0.3293248 -0.5195258 0.1201537 0.3293248 -0.5284142 0.1201537 0.3293248 -0.5370079 0.1201537 0.3293248 -0.5453253 0.1201537 0.3293248 -0.5533834 0.1201537 0.3293248 -0.5611974 0.1201537 0.3293248 -0.5687816 0.1201537 0.3293248 -0.092819 0.1409607 0.3293248 -0.1056428 0.1409607 0.3293248 -0.1201537 0.1409607 0.3293248 -0.1409607 0.1409607 0.3293248 -0.1678172 0.1409607 0.3293248 -0.1950164 0.1409607 0.3293248 -0.2210581 0.1409607 0.3293248 -0.245636 0.1409607 0.3293248 -0.2686816 0.1409607 0.3293248 -0.2902431 0.1409607 0.3293248 -0.3104189 0.1409607 0.3293248 -0.3293248 0.1409607 0.3293248 -0.3470774 0.1409607 0.3293248 -0.3637862 0.1409607 0.3293248 -0.3795513 0.1409607 0.3293248 -0.3944623 0.1409607 0.3293248 -0.4085988 0.1409607 0.3293248 -0.4220313 0.1409607 0.3293248 -0.4348222 0.1409607 0.3293248 -0.4470264 0.1409607 0.3293248 -0.4586928 0.1409607 0.3293248 -0.4698649 0.1409607 0.3293248 -0.4805811 0.1409607 0.3293248 -0.490876 0.1409607 0.3293248 -0.5007803 0.1409607 0.3293248 -0.510322 0.1409607 0.3293248 -0.5195258 0.1409607 0.3293248 -0.5284142 0.1409607 0.3293248 -0.5370079 0.1409607 0.3293248 -0.5453253 0.1409607 0.3293248 -0.5533834 0.1409607 0.3293248 -0.5611974 0.1409607 0.3293248 -0.5687816 0.1409607 0.3293248 -0.092819 0.1678172 0.3293248 -0.1056428 0.1678172 0.3293248 -0.1201537 0.1678172 0.3293248 -0.1409607 0.1678172 0.3293248 -0.1678172 0.1678172 0.3293248 -0.1950164 0.1678172 0.3293248 -0.2210581 0.1678172 0.3293248 -0.245636 0.1678172 0.3293248 -0.2686816 0.1678172 0.3293248 -0.2902431 0.1678172 0.3293248 -0.3104189 0.1678172 0.3293248 -0.3293248 0.1678172 0.3293248 -0.3470774 0.1678172 0.3293248 -0.3637862 0.1678172 0.3293248 -0.3795513 0.1678172 0.3293248 -0.3944623 0.1678172 0.3293248 -0.4085988 0.1678172 0.3293248 -0.4220313 0.1678172 0.3293248 -0.4348222 0.1678172 0.3293248 -0.4470264 0.1678172 0.3293248 -0.4586928 0.1678172 0.3293248 -0.4698649 0.1678172 0.3293248 -0.4805811 0.1678172 0.3293248 -0.490876 0.1678172 0.3293248 -0.5007803 0.1678172 0.3293248 -0.510322 0.1678172 0.3293248 -0.5195258 0.1678172 0.3293248 -0.5284142 0.1678172 0.3293248 -0.5370079 0.1678172 0.3293248 -0.5453253 0.1678172 0.3293248 -0.5533834 0.1678172 0.3293248 -0.5611974 0.1678172 0.3293248 -0.5687816 0.1678172 0.3293248 -0.092819 0.1950164 0.3293248 -0.1056428 0.1950164 0.3293248 -0.1201537 0.1950164 0.3293248 -0.1409607 0.1950164 0.3293248 -0.1678172 0.1950164 0.3293248 -0.1950164 0.1950164 0.3293248 -0.2210581 0.1950164 0.3293248 -0.245636 0.1950164 0.3293248 -0.2686816 0.1950164 0.3293248 -0.2902431 0.1950164 0.3293248 -0.3104189 0.1950164 0.3293248 -0.3293248 0.1950164 0.3293248 -0.3470774 0.1950164 0.3293248 -0.3637862 0.1950164 0.3293248 -0.3795513 0.1950164 0.3293248 -0.3944623 0.1950164 0.3293248 -0.4085988 0.1950164 0.3293248 -0.4220313 0.1950164 0.3293248 -0.4348222 0.1950164 0.3293248 -0.4470264 0.1950164 0.3293248 -0.4586928 0.1950164 0.3293248 -0.4698649 0.1950164 0.3293248 -0.4805811 0.1950164 0.3293248 -0.490876 0.1950164 0.3293248 -0.5007803 0.1950164 0.3293248 -0.510322 0.1950164 0.3293248 -0.5195258 0.1950164 0.3293248 -0.5284142 0.1950164 0.3293248 -0.5370079 0.1950164 0.3293248 -0.5453253 0.1950164 0.3293248 -0.5533834 0.1950164 0.3293248 -0.5611974 0.1950164 0.3293248 -0.5687816 0.1950164 0.3293248 -0.092819 0.2210581 0.3293248 -0.1056428 0.2210581 0.3293248 -0.1201537 0.2210581 0.3293248 -0.1409607 0.2210581 0.3293248 -0.1678172 0.2210581 0.3293248 -0.1950164 0.2210581 0.3293248 -0.2210581 0.2210581 0.3293248 -0.245636 0.2210581 0.3293248 -0.2686816 0.2210581 0.3293248 -0.2902431 0.2210581 0.3293248 -0.3104189 0.2210581 0.3293248 -0.3293248 0.2210581 0.3293248 -0.3470774 0.2210581 0.3293248 -0.3637862 0.2210581 0.3293248 -0.3795513 0.2210581 0.3293248 -0.3944623 0.2210581 0.3293248 -0.4085988 0.2210581 0.3293248 -0.4220313 0.2210581 0.3293248 -0.4348222 0.2210581 0.3293248 -0.4470264 0.2210581 0.3293248 -0.4586928 0.2210581 0.3293248 -0.4698649 0.2210581 0.3293248 -0.4805811 0.2210581 0.3293248 -0.490876 0.2210581 0.3293248 -0.5007803 0.2210581 0.3293248 -0.510322 0.2210581 0.3293248 -0.5195258 0.2210581 0.3293248 -0.5284142 0.2210581 0.3293248 -0.5370079 0.2210581 0.3293248 -0.5453253 0.2210581 0.3293248 -0.5533834 0.2210581 0.3293248 -0.5611974 0.2210581 0.3293248 -0.5687816 0.2210581 0.3293248 -0.092819 0.245636 0.3293248 -0.1056428 0.245636 0.3293248 -0.1201537 0.245636 0.3293248 -0.1409607 0.245636 0.3293248 -0.1678172 0.245636 0.3293248 -0.1950164 0.245636 0.3293248 -0.2210581 0.245636 0.3293248 -0.245636 0.245636 0.3293248 -0.2686816 0.245636 0.3293248 -0.2902431 0.245636 0.3293248 -0.3104189 0.245636 0.3293248 -0.3293248 0.245636 0.3293248 -0.3470774 0.245636 0.3293248 -0.3637862 0.245636 0.3293248 -0.3795513 0.245636 0.3293248 -0.3944623 0.245636 0.3293248 -0.4085988 0.245636 0.3293248 -0.4220313 0.245636 0.3293248 -0.4348222 0.245636 0.3293248 -0.4470264 0.245636 0.3293248 -0.4586928 0.245636 0.3293248 -0.4698649 0.245636 0.3293248 -0.4805811 0.245636 0.3293248 -0.490876 0.245636 0.3293248 -0.5007803 0.245636 0.3293248 -0.510322 0.245636 0.3293248 -0.5195258 0.245636 0.3293248 -0.5284142 0.245636 0.3293248 -0.5370079 0.245636 0.3293248 -0.5453253 0.245636 0.3293248 -0.5533834 0.245636 0.3293248 -0.5611974 0.245636 0.3293248 -0.5687816 0.245636 0.3293248 -0.092819 0.2686816 0.3293248 -0.1056428 0.2686816 0.3293248 -0.1201537 0.2686816 0.3293248 -0.1409607 0.2686816 0.3293248 -0.1678172 0.2686816 0.3293248 -0.1950164 0.2686816 0.3293248 -0.2210581 0.2686816 0.3293248 -0.245636 0.2686816 0.3293248 -0.2686816 0.2686816 0.3293248 -0.2902431 0.2686816 0.3293248 -0.3104189 0.2686816 0.3293248 -0.3293248 0.2686816 0.3293248 -0.3470774 0.2686816 0.3293248 -0.3637862 0.2686816 0.3293248 -0.3795513 0.2686816 0.3293248 -0.3944623 0.2686816 0.3293248 -0.4085988 0.2686816 0.3293248 -0.4220313 0.2686816 0.3293248 -0.4348222 0.2686816 0.3293248 -0.4470264 0.2686816 0.3293248 -0.4586928 0.2686816 0.3293248 -0.4698649 0.2686816 0.3293248 -0.4805811 0.2686816 0.3293248 -0.490876 0.2686816 0.3293248 -0.5007803 0.2686816 0.3293248 -0.510322 0.2686816 0.3293248 -0.5195258 0.2686816 0.3293248 -0.5284142 0.2686816 0.3293248 -0.5370079 0.2686816 0.3293248 -0.5453253 0.2686816 0.3293248 -0.5533834 0.2686816 0.3293248 -0.5611974 0.2686816 0.3293248 -0.5687816 0.2686816 0.3293248 -0.092819 0.2902431 0.3293248 -0.1056428 0.2902431 0.3293248 -0.1201537 0.2902431 0.3293248 -0.1409607 0.2902431 0.3293248 -0.1678172 0.2902431 0.3293248 -0.1950164 0.2902431 0.3293248 -0.2210581 0.2902431 0.3293248 -0.245636 0.2902431 0.3293248 -0.2686816 0.2902431 0.3293248 -0.2902431 0.2902431 0.3293248 -0.3104189 0.2902431 0.3293248 -0.3293248 0.2902431 0.3293248 -0.3470774 0.2902431 0.3293248 -0.3637862 0.2902431 0.3293248 -0.3795513 0.2902431 0.3293248 -0.3944623 0.2902431 0.3293248 -0.4085988 0.2902431 0.3293248 -0.4220313 0.2902431 0.3293248 -0.4348222 0.2902431 0.3293248 -0.4470264 0.2902431 0.3293248 -0.4586928 0.2902431 0.3293248 -0.4698649 0.2902431 0.3293248 -0.4805811 0.2902431 0.3293248 -0.490876 0.2902431 0.3293248 -0.5007803 0.2902431 0.3293248 -0.510322 0.2902431 0.3293248 -0.5195258 0.2902431 0.3293248 -0.5284142 0.2902431 0.3293248 -0.5370079 0.2902431 0.3293248 -0.5453253 0.2902431 0.3293248 -0.5533834 0.2902431 0.3293248 -0.5611974 0.2902431 0.3293248 -0.5687816 0.2902431 0.3293248 -0.092819 0.3104189 0.3293248 -0.1056428 0.3104189 0.3293248 -0.1201537 0.3104189 0.3293248 -0.1409607 0.3104189 0.3293248 -0.1678172 0.3104189 0.3293248 -0.1950164 0.3104189 0.3293248 -0.2210581 0.3104189 0.3293248 -0.245636 0.3104189 0.3293248 -0.2686816 0.3104189 0.3293248 -0.2902431 0.3104189 0.3293248 -0.3104189 0.3104189 0.3293248 -0.3293248 0.3104189 0.3293248 -0.3470774 0.3104189 0.3293248 -0.3637862 0.3104189 0.3293248 -0.3795513 0.3104189 0.3293248 -0.3944623 0.3104189 0.3293248 -0.4085988 0.3104189 0.3293248 -0.4220313 0.3104189 0.3293248 -0.4348222 0.3104189 0.3293248 -0.4470264 0.3104189 0.3293248 -0.4586928 0.3104189 0.3293248 -0.4698649 0.3104189 0.3293248 -0.4805811 0.3104189 0.3293248 -0.490876 0.3104189 0.3293248 -0.5007803 0.3104189 0.3293248 -0.510322 0.3104189 0.3293248 -0.5195258 0.3104189 0.3293248 -0.5284142 0.3104189 0.3293248 -0.5370079 0.3104189 0.3293248 -0.5453253 0.3104189 0.3293248 -0.5533834 0.3104189 0.3293248 -0.5611974 0.3104189 0.3293248 -0.5687816 0.3104189 0.3293248 -0.092819 0.3293248 0.3293248 -0.1056428 0.3293248 0.3293248 -0.1201537 0.3293248 0.3293248 -0.1409607 0.3293248 0.3293248 -0.1678172 0.3293248 0.3293248 -0.1950164 0.3293248 0.3293248 -0.2210581 0.3293248 0.3293248 -0.245636 0.3293248 0.3293248 -0.2686816 0.3293248 0.3293248 -0.2902431 0.3293248 0.3293248 -0.3104189 0.3293248 0.3293248 -0.3293248 0.3293248 0.3293248 -0.3470774 0.3293248 0.3293248 -0.3637862 0.3293248 0.3293248 -0.3795513 0.3293248 0.3293248 -0.3944623 0.3293248 0.3293248 -0.4085988 0.3293248 0.3293248 -0.4220313 0.3293248 0.3293248 -0.4348222 0.3293248 0.3293248 -0.4470264 0.3293248 0.3293248 -0.4586928 0.3293248 0.3293248 -0.4698649 0.3293248 0.3293248 -0.4805811 0.3293248 0.3293248 -0.490876 0.3293248 0.3293248 -0.5007803 0.3293248 0.3293248 -0.510322 0.3293248 0.3293248 -0.5195258 0.3293248 0.3293248 -0.5284142 0.3293248 0.3293248 -0.5370079 0.3293248 0.3293248 -0.5453253 0.3293248 0.3293248 -0.5533834 0.3293248 0.3293248 -0.5611974 0.3293248 0.3293248 -0.5687816 0.3293248 0.3293248 -0.092819 0.3470774 0.3293248 -0.1056428 0.3470774 0.3293248 -0.1201537 0.3470774 0.3293248 -0.1409607 0.3470774 0.3293248 -0.1678172 0.3470774 0.3293248 -0.1950164 0.3470774 0.3293248 -0.2210581 0.3470774 0.3293248 -0.245636 0.3470774 0.3293248 -0.2686816 0.3470774 0.3293248 -0.2902431 0.3470774 0.3293248 -0.3104189 0.3470774 0.3293248 -0.3293248 0.3470774 0.3293248 -0.3470774 0.3470774 0.3293248 -0.3637862 0.3470774 0.3293248 -0.3795513 0.3470774 0.3293248 -0.3944623 0.3470774 0.3293248 -0.4085988 0.3470774 0.3293248 -0.4220313 0.3470774 0.3293248 -0.4348222 0.3470774 0.3293248 -0.4470264 0.3470774 0.3293248 -0.4586928 0.3470774 0.3293248 -0.4698649 0.3470774 0.3293248 -0.4805811 0.3470774 0.3293248 -0.490876 0.3470774 0.3293248 -0.5007803 0.3470774 0.3293248 -0.510322 0.3470774 0.3293248 -0.5195258 0.3470774 0.3293248 -0.5284142 0.3470774 0.3293248 -0.5370079 0.3470774 0.3293248 -0.5453253 0.3470774 0.3293248 -0.5533834 0.3470774 0.3293248 -0.5611974 0.3470774 0.3293248 -0.5687816 0.3470774 0.3293248 -0.092819 0.3637862 0.3293248 -0.1056428 0.3637862 0.3293248 -0.1201537 0.3637862 0.3293248 -0.1409607 0.3637862 0.3293248 -0.1678172 0.3637862 0.3293248 -0.1950164 0.3637862 0.3293248 -0.2210581 0.3637862 0.3293248 -0.245636 0.3637862 0.3293248 -0.2686816 0.3637862 0.3293248 -0.2902431 0.3637862 0.3293248 -0.3104189 0.3637862 0.3293248 -0.3293248 0.3637862 0.3293248 -0.3470774 0.3637862 0.3293248 -0.3637862 0.3637862 0.3293248 -0.3795513 0.3637862 0.3293248 -0.3944623 0.3637862 0.3293248 -0.4085988 0.3637862 0.3293248 -0.4220313 0.3637862 0.3293248 -0.4348222 0.3637862 0.3293248 -0.4470264 0.3637862 0.3293248 -0.4586928 0.3637862 0.3293248 -0.4698649 0.3637862 0.3293248 -0.4805811 0.3637862 0.3293248 -0.490876 0.3637862 0.3293248 -0.5007803 0.3637862 0.3293248 -0.510322 0.3637862 0.3293248 -0.5195258 0.3637862 0.3293248 -0.5284142 0.3637862 0.3293248 -0.5370079 0.3637862 0.3293248 -0.5453253 0.3637862 0.3293248 -0.5533834 0.3637862 0.3293248 -0.5611974 0.3637862 0.3293248 -0.5687816 0.3637862 0.3293248 -0.092819 0.3795513 0.3293248 -0.1056428 0.3795513 0.3293248 -0.1201537 0.3795513 0.3293248 -0.1409607 0.3795513 0.3293248 -0.1678172 0.3795513 0.3293248 -0.1950164 0.3795513 0.3293248 -0.2210581 0.3795513 0.3293248 -0.245636 0.3795513 0.3293248 -0.2686816 0.3795513 0.3293248 -0.2902431 0.3795513 0.3293248 -0.3104189 0.3795513 0.3293248 -0.3293248 0.3795513 0.3293248 -0.3470774 0.3795513 0.3293248 -0.3637862 0.3795513 0.3293248 -0.3795513 0.3795513 0.3293248 -0.3944623 0.3795513 0.3293248 -0.4085988 0.3795513 0.3293248 -0.4220313 0.3795513 0.3293248 -0.4348222 0.3795513 0.3293248 -0.4470264 0.3795513 0.3293248 -0.4586928 0.3795513 0.3293248 -0.4698649 0.3795513 0.3293248 -0.4805811 0.3795513 0.3293248 -0.490876 0.3795513 0.3293248 -0.5007803 0.3795513 0.3293248 -0.510322 0.3795513 0.3293248 -0.5195258 0.3795513 0.3293248 -0.5284142 0.3795513 0.3293248 -0.5370079 0.3795513 0.3293248 -0.5453253 0.3795513 0.3293248 -0.5533834 0.3795513 0.3293248 -0.5611974 0.3795513 0.3293248 -0.5687816 0.3795513 0.3293248 -0.092819 0.3944623 0.3293248 -0.1056428 0.3944623 0.3293248 -0.1201537 0.3944623 0.3293248 -0.1409607 0.3944623 0.3293248 -0.1678172 0.3944623 0.3293248 -0.1950164 0.3944623 0.3293248 -0.2210581 0.3944623 0.3293248 -0.245636 0.3944623 0.3293248 -0.2686816 0.3944623 0.3293248 -0.2902431 0.3944623 0.3293248 -0.3104189 0.3944623 0.3293248 -0.3293248 0.3944623 0.3293248 -0.3470774 0.3944623 0.3293248 -0.3637862 0.3944623 0.3293248 -0.3795513 0.3944623 0.3293248 -0.3944623 0.3944623 0.3293248 -0.4085988 0.3944623 0.3293248 -0.4220313 0.3944623 0.3293248 -0.4348222 0.3944623 0.3293248 -0.4470264 0.3944623 0.3293248 -0.4586928 0.3944623 0.3293248 -0.4698649 0.3944623 0.3293248 -0.4805811 0.3944623 0.3293248 -0.490876 0.3944623 0.3293248 -0.5007803 0.3944623 0.3293248 -0.510322 0.3944623 0.3293248 -0.5195258 0.3944623 0.3293248 -0.5284142 0.3944623 0.3293248 -0.5370079 0.3944623 0.3293248 -0.5453253 0.3944623 0.3293248 -0.5533834 0.3944623 0.3293248 -0.5611974 0.3944623 0.3293248 -0.5687816 0.3944623 0.3293248 -0.092819 0.4085988 0.3293248 -0.1056428 0.4085988 0.3293248 -0.1201537 0.4085988 0.3293248 -0.1409607 0.4085988 0.3293248 -0.1678172 0.4085988 0.3293248 -0.1950164 0.4085988 0.3293248 -0.2210581 0.4085988 0.3293248 -0.245636 0.4085988 0.3293248 -0.2686816 0.4085988 0.3293248 -0.2902431 0.4085988 0.3293248 -0.3104189 0.4085988 0.3293248 -0.3293248 0.4085988 0.3293248 -0.3470774 0.4085988 0.3293248 -0.3637862 0.4085988 0.3293248 -0.3795513 0.4085988 0.3293248 -0.3944623 0.4085988 0.3293248 -0.4085988 0.4085988 0.3293248 -0.4220313 0.4085988 0.3293248 -0.4348222 0.4085988 0.3293248 -0.4470264 0.4085988 0.3293248 -0.4586928 0.4085988 0.3293248 -0.4698649 0.4085988 0.3293248 -0.4805811 0.4085988 0.3293248 -0.490876 0.4085988 0.3293248 -0.5007803 0.4085988 0.3293248 -0.510322 0.4085988 0.3293248 -0.5195258 0.4085988 0.3293248 -0.5284142 0.4085988 0.3293248 -0.5370079 0.4085988 0.3293248 -0.5453253 0.4085988 0.3293248 -0.5533834 0.4085988 0.3293248 -0.5611974 0.4085988 0.3293248 -0.5687816 0.4085988 0.3293248 -0.092819 0.4220313 0.3293248 -0.1056428 0.4220313 0.3293248 -0.1201537 0.4220313 0.3293248 -0.1409607 0.4220313 0.3293248 -0.1678172 0.4220313 0.3293248 -0.1950164 0.4220313 0.3293248 -0.2210581 0.4220313 0.3293248 -0.245636 0.4220313 0.3293248 -0.2686816 0.4220313 0.3293248 -0.2902431 0.4220313 0.3293248 -0.3104189 0.4220313 0.3293248 -0.3293248 0.4220313 0.3293248 -0.3470774 0.4220313 0.3293248 -0.3637862 0.4220313 0.3293248 -0.3795513 0.4220313 0.3293248 -0.3944623 0.4220313 0.3293248 -0.4085988 0.4220313 0.3293248 -0.4220313 0.4220313 0.3293248 -0.4348222 0.4220313 0.3293248 -0.4470264 0.4220313 0.3293248 -0.4586928 0.4220313 0.3293248 -0.4698649 0.4220313 0.3293248 -0.4805811 0.4220313 0.3293248 -0.490876 0.4220313 0.3293248 -0.5007803 0.4220313 0.3293248 -0.510322 0.4220313 0.3293248 -0.5195258 0.4220313 0.3293248 -0.5284142 0.4220313 0.3293248 -0.5370079 0.4220313 0.3293248 -0.5453253 0.4220313 0.3293248 -0.5533834 0.4220313 0.3293248 -0.5611974 0.4220313 0.3293248 -0.5687816 0.4220313 0.3293248 -0.092819 0.4348222 0.3293248 -0.1056428 0.4348222 0.3293248 -0.1201537 0.4348222 0.3293248 -0.1409607 0.4348222 0.3293248 -0.1678172 0.4348222 0.3293248 -0.1950164 0.4348222 0.3293248 -0.2210581 0.4348222 0.3293248 -0.245636 0.4348222 0.3293248 -0.2686816 0.4348222 0.3293248 -0.2902431 0.4348222 0.3293248 -0.3104189 0.4348222 0.3293248 -0.3293248 0.4348222 0.3293248 -0.3470774 0.4348222 0.3293248 -0.3637862 0.4348222 0.3293248 -0.3795513 0.4348222 0.3293248 -0.3944623 0.4348222 0.3293248 -0.4085988 0.4348222 0.3293248 -0.4220313 0.4348222 0.3293248 -0.4348222 0.4348222 0.3293248 -0.4470264 0.4348222 0.3293248 -0.4586928 0.4348222 0.3293248 -0.4698649 0.4348222 0.3293248 -0.4805811 0.4348222 0.3293248 -0.490876 0.4348222 0.3293248 -0.5007803 0.4348222 0.3293248 -0.510322 0.4348222 0.3293248 -0.5195258 0.4348222 0.3293248 -0.5284142 0.4348222 0.3293248 -0.5370079 0.4348222 0.3293248 -0.5453253 0.4348222 0.3293248 -0.5533834 0.4348222 0.3293248 -0.5611974 0.4348222 0.3293248 -0.5687816 0.4348222 0.3293248 -0.092819 0.4470264 0.3293248 -0.1056428 0.4470264 0.3293248 -0.1201537 0.4470264 0.3293248 -0.1409607 0.4470264 0.3293248 -0.1678172 0.4470264 0.3293248 -0.1950164 0.4470264 0.3293248 -0.2210581 0.4470264 0.3293248 -0.245636 0.4470264 0.3293248 -0.2686816 0.4470264 0.3293248 -0.2902431 0.4470264 0.3293248 -0.3104189 0.4470264 0.3293248 -0.3293248 0.4470264 0.3293248 -0.3470774 0.4470264 0.3293248 -0.3637862 0.4470264 0.3293248 -0.3795513 0.4470264 0.3293248 -0.3944623 0.4470264 0.3293248 -0.4085988 0.4470264 0.3293248 -0.4220313 0.4470264 0.3293248 -0.4348222 0.4470264 0.3293248 -0.4470264 0.4470264 0.3293248 -0.4586928 0.4470264 0.3293248 -0.4698649 0.4470264 0.3293248 -0.4805811 0.4470264 0.3293248 -0.490876 0.4470264 0.3293248 -0.5007803 0.4470264 0.3293248 -0.510322 0.4470264 0.3293248 -0.5195258 0.4470264 0.3293248 -0.5284142 0.4470264 0.3293248 -0.5370079 0.4470264 0.3293248 -0.5453253 0.4470264 0.3293248 -0.5533834 0.4470264 0.3293248 -0.5611974 0.4470264 0.3293248 -0.5687816 0.4470264 0.3293248 -0.092819 0.4586928 0.3293248 -0.1056428 0.4586928 0.3293248 -0.1201537 0.4586928 0.3293248 -0.1409607 0.4586928 0.3293248 -0.1678172 0.4586928 0.3293248 -0.1950164 0.4586928 0.3293248 -0.2210581 0.4586928 0.3293248 -0.245636 0.4586928 0.3293248 -0.2686816 0.4586928 0.3293248 -0.2902431 0.4586928 0.3293248 -0.3104189 0.4586928 0.3293248 -0.3293248 0.4586928 0.3293248 -0.3470774 0.4586928 0.3293248 -0.3637862 0.4586928 0.3293248 -0.3795513 0.4586928 0.3293248 -0.3944623 0.4586928 0.3293248 -0.4085988 0.4586928 0.3293248 -0.4220313 0.4586928 0.3293248 -0.4348222 0.4586928 0.3293248 -0.4470264 0.4586928 0.3293248 -0.4586928 0.4586928 0.3293248 -0.4698649 0.4586928 0.3293248 -0.4805811 0.4586928 0.3293248 -0.490876 0.4586928 0.3293248 -0.5007803 0.4586928 0.3293248 -0.510322 0.4586928 0.3293248 -0.5195258 0.4586928 0.3293248 -0.5284142 0.4586928 0.3293248 -0.5370079 0.4586928 0.3293248 -0.5453253 0.4586928 0.3293248 -0.5533834 0.4586928 0.3293248 -0.5611974 0.4586928 0.3293248 -0.5687816 0.4586928 0.3293248 -0.092819 0.4698649 0.3293248 -0.1056428 0.4698649 0.3293248 -0.1201537 0.4698649 0.3293248 -0.1409607 0.4698649 0.3293248 -0.1678172 0.4698649 0.3293248 -0.1950164 0.4698649 0.3293248 -0.2210581 0.4698649 0.3293248 -0.245636 0.4698649 0.3293248 -0.2686816 0.4698649 0.3293248 -0.2902431 0.4698649 0.3293248 -0.3104189 0.4698649 0.3293248 -0.3293248 0.4698649 0.3293248 -0.3470774 0.4698649 0.3293248 -0.3637862 0.4698649 0.3293248 -0.3795513 0.4698649 0.3293248 -0.3944623 0.4698649 0.3293248 -0.4085988 0.4698649 0.3293248 -0.4220313 0.4698649 0.3293248 -0.4348222 0.4698649 0.3293248 -0.4470264 0.4698649 0.3293248 -0.4586928 0.4698649 0.3293248 -0.4698649 0.4698649 0.3293248 -0.4805811 0.4698649 0.3293248 -0.490876 0.4698649 0.3293248 -0.5007803 0.4698649 0.3293248 -0.510322 0.4698649 0.3293248 -0.5195258 0.4698649 0.3293248 -0.5284142 0.4698649 0.3293248 -0.5370079 0.4698649 0.3293248 -0.5453253 0.4698649 0.3293248 -0.5533834 0.4698649 0.3293248 -0.5611974 0.4698649 0.3293248 -0.5687816 0.4698649 0.3293248 -0.092819 0.4805811 0.3293248 -0.1056428 0.4805811 0.3293248 -0.1201537 0.4805811 0.3293248 -0.1409607 0.4805811 0.3293248 -0.1678172 0.4805811 0.3293248 -0.1950164 0.4805811 0.3293248 -0.2210581 0.4805811 0.3293248 -0.245636 0.4805811 0.3293248 -0.2686816 0.4805811 0.3293248 -0.2902431 0.4805811 0.3293248 -0.3104189 0.4805811 0.3293248 -0.3293248 0.4805811 0.3293248 -0.3470774 0.4805811 0.3293248 -0.3637862 0.4805811 0.3293248 -0.3795513 0.4805811 0.3293248 -0.3944623 0.4805811 0.3293248 -0.4085988 0.4805811 0.3293248 -0.4220313 0.4805811 0.3293248 -0.4348222 0.4805811 0.3293248 -0.4470264 0.4805811 0.3293248 -0.4586928 0.4805811 0.3293248 -0.4698649 0.4805811 0.3293248 -0.4805811 0.4805811 0.3293248 -0.490876 0.4805811 0.3293248 -0.5007803 0.4805811 0.3293248 -0.510322 0.4805811 0.3293248 -0.5195258 0.4805811 0.3293248 -0.5284142 0.4805811 0.3293248 -0.5370079 0.4805811 0.3293248 -0.5453253 0.4805811 0.3293248 -0.5533834 0.4805811 0.3293248 -0.5611974 0.4805811 0.3293248 -0.5687816 0.4805811 0.3293248 -0.092819 0.490876 0.3293248 -0.1056428 0.490876 0.3293248 -0.1201537 0.490876 0.3293248 -0.1409607 0.490876 0.3293248 -0.1678172 0.490876 0.3293248 -0.1950164 0.490876 0.3293248 -0.2210581 0.490876 0.3293248 -0.245636 0.490876 0.3293248 -0.2686816 0.490876 0.3293248 -0.2902431 0.490876 0.3293248 -0.3104189 0.490876 0.3293248 -0.3293248 0.490876 0.3293248 -0.3470774 0.490876 0.3293248 -0.3637862 0.490876 0.3293248 -0.3795513 0.490876 0.3293248 -0.3944623 0.490876 0.3293248 -0.4085988 0.490876 0.3293248 -0.4220313 0.490876 0.3293248 -0.4348222 0.490876 0.3293248 -0.4470264 0.490876 0.3293248 -0.4586928 0.490876 0.3293248 -0.4698649 0.490876 0.3293248 -0.4805811 0.490876 0.3293248 -0.490876 0.490876 0.3293248 -0.5007803 0.490876 0.3293248 -0.510322 0.490876 0.3293248 -0.5195258 0.490876 0.3293248 -0.5284142 0.490876 0.3293248 -0.5370079 0.490876 0.3293248 -0.5453253 0.490876 0.3293248 -0.5533834 0.490876 0.3293248 -0.5611974 0.490876 0.3293248 -0.5687816 0.490876 0.3293248 -0.092819 0.5007803 0.3293248 -0.1056428 0.5007803 0.3293248 -0.1201537 0.5007803 0.3293248 -0.1409607 0.5007803 0.3293248 -0.1678172 0.5007803 0.3293248 -0.1950164 0.5007803 0.3293248 -0.2210581 0.5007803 0.3293248 -0.245636 0.5007803 0.3293248 -0.2686816 0.5007803 0.3293248 -0.2902431 0.5007803 0.3293248 -0.3104189 0.5007803 0.3293248 -0.3293248 0.5007803 0.3293248 -0.3470774 0.5007803 0.3293248 -0.3637862 0.5007803 0.3293248 -0.3795513 0.5007803 0.3293248 -0.3944623 0.5007803 0.3293248 -0.4085988 0.5007803 0.3293248 -0.4220313 0.5007803 0.3293248 -0.4348222 0.5007803 0.3293248 -0.4470264 0.5007803 0.3293248 -0.4586928 0.5007803 0.3293248 -0.4698649 0.5007803 0.3293248 -0.4805811 0.5007803 0.3293248 -0.490876 0.5007803 0.3293248 -0.5007803 0.5007803 0.3293248 -0.510322 0.5007803 0.3293248 -0.5195258 0.5007803 0.3293248 -0.5284142 0.5007803 0.3293248 -0.5370079 0.5007803 0.3293248 -0.5453253 0.5007803 0.3293248 -0.5533834 0.5007803 0.3293248 -0.5611974 0.5007803 0.3293248 -0.5687816 0.5007803 0.3293248 -0.092819 0.510322 0.3293248 -0.1056428 0.510322 0.3293248 -0.1201537 0.510322 0.3293248 -0.1409607 0.510322 0.3293248 -0.1678172 0.510322 0.3293248 -0.1950164 0.510322 0.3293248 -0.2210581 0.510322 0.3293248 -0.245636 0.510322 0.3293248 -0.2686816 0.510322 0.3293248 -0.2902431 0.510322 0.3293248 -0.3104189 0.510322 0.3293248 -0.3293248 0.510322 0.3293248 -0.3470774 0.510322 0.3293248 -0.3637862 0.510322 0.3293248 -0.3795513 0.510322 0.3293248 -0.3944623 0.510322 0.3293248 -0.4085988 0.510322 0.3293248 -0.4220313 0.510322 0.3293248 -0.4348222 0.510322 0.3293248 -0.4470264 0.510322 0.3293248 -0.4586928 0.510322 0.3293248 -0.4698649 0.510322 0.3293248 -0.4805811 0.510322 0.3293248 -0.490876 0.510322 0.3293248 -0.5007803 0.510322 0.3293248 -0.510322 0.510322 0.3293248 -0.5195258 0.510322 0.3293248 -0.5284142 0.510322 0.3293248 -0.5370079 0.510322 0.3293248 -0.5453253 0.510322 0.3293248 -0.5533834 0.510322 0.3293248 -0.5611974 0.510322 0.3293248 -0.5687816 0.510322 0.3293248 -0.092819 0.5195258 0.3293248 -0.1056428 0.5195258 0.3293248 -0.1201537 0.5195258 0.3293248 -0.1409607 0.5195258 0.3293248 -0.1678172 0.5195258 0.3293248 -0.1950164 0.5195258 0.3293248 -0.2210581 0.5195258 0.3293248 -0.245636 0.5195258 0.3293248 -0.2686816 0.5195258 0.3293248 -0.2902431 0.5195258 0.3293248 -0.3104189 0.5195258 0.3293248 -0.3293248 0.5195258 0.3293248 -0.3470774 0.5195258 0.3293248 -0.3637862 0.5195258 0.3293248 -0.3795513 0.5195258 0.3293248 -0.3944623 0.5195258 0.3293248 -0.4085988 0.5195258 0.3293248 -0.4220313 0.5195258 0.3293248 -0.4348222 0.5195258 0.3293248 -0.4470264 0.5195258 0.3293248 -0.4586928 0.5195258 0.3293248 -0.4698649 0.5195258 0.3293248 -0.4805811 0.5195258 0.3293248 -0.490876 0.5195258 0.3293248 -0.5007803 0.5195258 0.3293248 -0.510322 0.5195258 0.3293248 -0.5195258 0.5195258 0.3293248 -0.5284142 0.5195258 0.3293248 -0.5370079 0.5195258 0.3293248 -0.5453253 0.5195258 0.3293248 -0.5533834 0.5195258 0.3293248 -0.5611974 0.5195258 0.3293248 -0.5687816 0.5195258 0.3293248 -0.092819 0.5284142 0.3293248 -0.1056428 0.5284142 0.3293248 -0.1201537 0.5284142 0.3293248 -0.1409607 0.5284142 0.3293248 -0.1678172 0.5284142 0.3293248 -0.1950164 0.5284142 0.3293248 -0.2210581 0.5284142 0.3293248 -0.245636 0.5284142 0.3293248 -0.2686816 0.5284142 0.3293248 -0.2902431 0.5284142 0.3293248 -0.3104189 0.5284142 0.3293248 -0.3293248 0.5284142 0.3293248 -0.3470774 0.5284142 0.3293248 -0.3637862 0.5284142 0.3293248 -0.3795513 0.5284142 0.3293248 -0.3944623 0.5284142 0.3293248 -0.4085988 0.5284142 0.3293248 -0.4220313 0.5284142 0.3293248 -0.4348222 0.5284142 0.3293248 -0.4470264 0.5284142 0.3293248 -0.4586928 0.5284142 0.3293248 -0.4698649 0.5284142 0.3293248 -0.4805811 0.5284142 0.3293248 -0.490876 0.5284142 0.3293248 -0.5007803 0.5284142 0.3293248 -0.510322 0.5284142 0.3293248 -0.5195258 0.5284142 0.3293248 -0.5284142 0.5284142 0.3293248 -0.5370079 0.5284142 0.3293248 -0.5453253 0.5284142 0.3293248 -0.5533834 0.5284142 0.3293248 -0.5611974 0.5284142 0.3293248 -0.5687816 0.5284142 0.3293248 -0.092819 0.5370079 0.3293248 -0.1056428 0.5370079 0.3293248 -0.1201537 0.5370079 0.3293248 -0.1409607 0.5370079 0.3293248 -0.1678172 0.5370079 0.3293248 -0.1950164 0.5370079 0.3293248 -0.2210581 0.5370079 0.3293248 -0.245636 0.5370079 0.3293248 -0.2686816 0.5370079 0.3293248 -0.2902431 0.5370079 0.3293248 -0.3104189 0.5370079 0.3293248 -0.3293248 0.5370079 0.3293248 -0.3470774 0.5370079 0.3293248 -0.3637862 0.5370079 0.3293248 -0.3795513 0.5370079 0.3293248 -0.3944623 0.5370079 0.3293248 -0.4085988 0.5370079 0.3293248 -0.4220313 0.5370079 0.3293248 -0.4348222 0.5370079 0.3293248 -0.4470264 0.5370079 0.3293248 -0.4586928 0.5370079 0.3293248 -0.4698649 0.5370079 0.3293248 -0.4805811 0.5370079 0.3293248 -0.490876 0.5370079 0.3293248 -0.5007803 0.5370079 0.3293248 -0.510322 0.5370079 0.3293248 -0.5195258 0.5370079 0.3293248 -0.5284142 0.5370079 0.3293248 -0.5370079 0.5370079 0.3293248 -0.5453253 0.5370079 0.3293248 -0.5533834 0.5370079 0.3293248 -0.5611974 0.5370079 0.3293248 -0.5687816 0.5370079 0.3293248 -0.092819 0.5453253 0.3293248 -0.1056428 0.5453253 0.3293248 -0.1201537 0.5453253 0.3293248 -0.1409607 0.5453253 0.3293248 -0.1678172 0.5453253 0.3293248 -0.1950164 0.5453253 0.3293248 -0.2210581 0.5453253 0.3293248 -0.245636 0.5453253 0.3293248 -0.2686816 0.5453253 0.3293248 -0.2902431 0.5453253 0.3293248 -0.3104189 0.5453253 0.3293248 -0.3293248 0.5453253 0.3293248 -0.3470774 0.5453253 0.3293248 -0.3637862 0.5453253 0.3293248 -0.3795513 0.5453253 0.3293248 -0.3944623 0.5453253 0.3293248 -0.4085988 0.5453253 0.3293248 -0.4220313 0.5453253 0.3293248 -0.4348222 0.5453253 0.3293248 -0.4470264 0.5453253 0.3293248 -0.4586928 0.5453253 0.3293248 -0.4698649 0.5453253 0.3293248 -0.4805811 0.5453253 0.3293248 -0.490876 0.5453253 0.3293248 -0.5007803 0.5453253 0.3293248 -0.510322 0.5453253 0.3293248 -0.5195258 0.5453253 0.3293248 -0.5284142 0.5453253 0.3293248 -0.5370079 0.5453253 0.3293248 -0.5453253 0.5453253 0.3293248 -0.5533834 0.5453253 0.3293248 -0.5611974 0.5453253 0.3293248 -0.5687816 0.5453253 0.3293248 -0.092819 0.5533834 0.3293248 -0.1056428 0.5533834 0.3293248 -0.1201537 0.5533834 0.3293248 -0.1409607 0.5533834 0.3293248 -0.1678172 0.5533834 0.3293248 -0.1950164 0.5533834 0.3293248 -0.2210581 0.5533834 0.3293248 -0.245636 0.5533834 0.3293248 -0.2686816 0.5533834 0.3293248 -0.2902431 0.5533834 0.3293248 -0.3104189 0.5533834 0.3293248 -0.3293248 0.5533834 0.3293248 -0.3470774 0.5533834 0.3293248 -0.3637862 0.5533834 0.3293248 -0.3795513 0.5533834 0.3293248 -0.3944623 0.5533834 0.3293248 -0.4085988 0.5533834 0.3293248 -0.4220313 0.5533834 0.3293248 -0.4348222 0.5533834 0.3293248 -0.4470264 0.5533834 0.3293248 -0.4586928 0.5533834 0.3293248 -0.4698649 0.5533834 0.3293248 -0.4805811 0.5533834 0.3293248 -0.490876 0.5533834 0.3293248 -0.5007803 0.5533834 0.3293248 -0.510322 0.5533834 0.3293248 -0.5195258 0.5533834 0.3293248 -0.5284142 0.5533834 0.3293248 -0.5370079 0.5533834 0.3293248 -0.5453253 0.5533834 0.3293248 -0.5533834 0.5533834 0.3293248 -0.5611974 0.5533834 0.3293248 -0.5687816 0.5533834 0.3293248 -0.092819 0.5611974 0.3293248 -0.1056428 0.5611974 0.3293248 -0.1201537 0.5611974 0.3293248 -0.1409607 0.5611974 0.3293248 -0.1678172 0.5611974 0.3293248 -0.1950164 0.5611974 0.3293248 -0.2210581 0.5611974 0.3293248 -0.245636 0.5611974 0.3293248 -0.2686816 0.5611974 0.3293248 -0.2902431 0.5611974 0.3293248 -0.3104189 0.5611974 0.3293248 -0.3293248 0.5611974 0.3293248 -0.3470774 0.5611974 0.3293248 -0.3637862 0.5611974 0.3293248 -0.3795513 0.5611974 0.3293248 -0.3944623 0.5611974 0.3293248 -0.4085988 0.5611974 0.3293248 -0.4220313 0.5611974 0.3293248 -0.4348222 0.5611974 0.3293248 -0.4470264 0.5611974 0.3293248 -0.4586928 0.5611974 0.3293248 -0.4698649 0.5611974 0.3293248 -0.4805811 0.5611974 0.3293248 -0.490876 0.5611974 0.3293248 -0.5007803 0.5611974 0.3293248 -0.510322 0.5611974 0.3293248 -0.5195258 0.5611974 0.3293248 -0.5284142 0.5611974 0.3293248 -0.5370079 0.5611974 0.3293248 -0.5453253 0.5611974 0.3293248 -0.5533834 0.5611974 0.3293248 -0.5611974 0.5611974 0.3293248 -0.5687816 0.5611974 0.3293248 -0.092819 0.5687816 0.3293248 -0.1056428 0.5687816 0.3293248 -0.1201537 0.5687816 0.3293248 -0.1409607 0.5687816 0.3293248 -0.1678172 0.5687816 0.3293248 -0.1950164 0.5687816 0.3293248 -0.2210581 0.5687816 0.3293248 -0.245636 0.5687816 0.3293248 -0.2686816 0.5687816 0.3293248 -0.2902431 0.5687816 0.3293248 -0.3104189 0.5687816 0.3293248 -0.3293248 0.5687816 0.3293248 -0.3470774 0.5687816 0.3293248 -0.3637862 0.5687816 0.3293248 -0.3795513 0.5687816 0.3293248 -0.3944623 0.5687816 0.3293248 -0.4085988 0.5687816 0.3293248 -0.4220313 0.5687816 0.3293248 -0.4348222 0.5687816 0.3293248 -0.4470264 0.5687816 0.3293248 -0.4586928 0.5687816 0.3293248 -0.4698649 0.5687816 0.3293248 -0.4805811 0.5687816 0.3293248 -0.490876 0.5687816 0.3293248 -0.5007803 0.5687816 0.3293248 -0.510322 0.5687816 0.3293248 -0.5195258 0.5687816 0.3293248 -0.5284142 0.5687816 0.3293248 -0.5370079 0.5687816 0.3293248 -0.5453253 0.5687816 0.3293248 -0.5533834 0.5687816 0.3293248 -0.5611974 0.5687816 0.3293248 -0.5687816 0.5687816 0.3293248 -0.092819 0.092819 0.3470774 -0.1056428 0.092819 0.3470774 -0.1201537 0.092819 0.3470774 -0.1409607 0.092819 0.3470774 -0.1678172 0.092819 0.3470774 -0.1950164 0.092819 0.3470774 -0.2210581 0.092819 0.3470774 -0.245636 0.092819 0.3470774 -0.2686816 0.092819 0.3470774 -0.2902431 0.092819 0.3470774 -0.3104189 0.092819 0.3470774 -0.3293248 0.092819 0.3470774 -0.3470774 0.092819 0.3470774 -0.3637862 0.092819 0.3470774 -0.3795513 0.092819 0.3470774 -0.3944623 0.092819 0.3470774 -0.4085988 0.092819 0.3470774 -0.4220313 0.092819 0.3470774 -0.4348222 0.092819 0.3470774 -0.4470264 0.092819 0.3470774 -0.4586928 0.092819 0.3470774 -0.4698649 0.092819 0.3470774 -0.4805811 0.092819 0.3470774 -0.490876 0.092819 0.3470774 -0.5007803 0.092819 0.3470774 -0.510322 0.092819 0.3470774 -0.5195258 0.092819 0.3470774 -0.5284142 0.092819 0.3470774 -0.5370079 0.092819 0.3470774 -0.5453253 0.092819 0.3470774 -0.5533834 0.092819 0.3470774 -0.5611974 0.092819 0.3470774 -0.5687816 0.092819 0.3470774 -0.092819 0.1056428 0.3470774 -0.1056428 0.1056428 0.3470774 -0.1201537 0.1056428 0.3470774 -0.1409607 0.1056428 0.3470774 -0.1678172 0.1056428 0.3470774 -0.1950164 0.1056428 0.3470774 -0.2210581 0.1056428 0.3470774 -0.245636 0.1056428 0.3470774 -0.2686816 0.1056428 0.3470774 -0.2902431 0.1056428 0.3470774 -0.3104189 0.1056428 0.3470774 -0.3293248 0.1056428 0.3470774 -0.3470774 0.1056428 0.3470774 -0.3637862 0.1056428 0.3470774 -0.3795513 0.1056428 0.3470774 -0.3944623 0.1056428 0.3470774 -0.4085988 0.1056428 0.3470774 -0.4220313 0.1056428 0.3470774 -0.4348222 0.1056428 0.3470774 -0.4470264 0.1056428 0.3470774 -0.4586928 0.1056428 0.3470774 -0.4698649 0.1056428 0.3470774 -0.4805811 0.1056428 0.3470774 -0.490876 0.1056428 0.3470774 -0.5007803 0.1056428 0.3470774 -0.510322 0.1056428 0.3470774 -0.5195258 0.1056428 0.3470774 -0.5284142 0.1056428 0.3470774 -0.5370079 0.1056428 0.3470774 -0.5453253 0.1056428 0.3470774 -0.5533834 0.1056428 0.3470774 -0.5611974 0.1056428 0.3470774 -0.5687816 0.1056428 0.3470774 -0.092819 0.1201537 0.3470774 -0.1056428 0.1201537 0.3470774 -0.1201537 0.1201537 0.3470774 -0.1409607 0.1201537 0.3470774 -0.1678172 0.1201537 0.3470774 -0.1950164 0.1201537 0.3470774 -0.2210581 0.1201537 0.3470774 -0.245636 0.1201537 0.3470774 -0.2686816 0.1201537 0.3470774 -0.2902431 0.1201537 0.3470774 -0.3104189 0.1201537 0.3470774 -0.3293248 0.1201537 0.3470774 -0.3470774 0.1201537 0.3470774 -0.3637862 0.1201537 0.3470774 -0.3795513 0.1201537 0.3470774 -0.3944623 0.1201537 0.3470774 -0.4085988 0.1201537 0.3470774 -0.4220313 0.1201537 0.3470774 -0.4348222 0.1201537 0.3470774 -0.4470264 0.1201537 0.3470774 -0.4586928 0.1201537 0.3470774 -0.4698649 0.1201537 0.3470774 -0.4805811 0.1201537 0.3470774 -0.490876 0.1201537 0.3470774 -0.5007803 0.1201537 0.3470774 -0.510322 0.1201537 0.3470774 -0.5195258 0.1201537 0.3470774 -0.5284142 0.1201537 0.3470774 -0.5370079 0.1201537 0.3470774 -0.5453253 0.1201537 0.3470774 -0.5533834 0.1201537 0.3470774 -0.5611974 0.1201537 0.3470774 -0.5687816 0.1201537 0.3470774 -0.092819 0.1409607 0.3470774 -0.1056428 0.1409607 0.3470774 -0.1201537 0.1409607 0.3470774 -0.1409607 0.1409607 0.3470774 -0.1678172 0.1409607 0.3470774 -0.1950164 0.1409607 0.3470774 -0.2210581 0.1409607 0.3470774 -0.245636 0.1409607 0.3470774 -0.2686816 0.1409607 0.3470774 -0.2902431 0.1409607 0.3470774 -0.3104189 0.1409607 0.3470774 -0.3293248 0.1409607 0.3470774 -0.3470774 0.1409607 0.3470774 -0.3637862 0.1409607 0.3470774 -0.3795513 0.1409607 0.3470774 -0.3944623 0.1409607 0.3470774 -0.4085988 0.1409607 0.3470774 -0.4220313 0.1409607 0.3470774 -0.4348222 0.1409607 0.3470774 -0.4470264 0.1409607 0.3470774 -0.4586928 0.1409607 0.3470774 -0.4698649 0.1409607 0.3470774 -0.4805811 0.1409607 0.3470774 -0.490876 0.1409607 0.3470774 -0.5007803 0.1409607 0.3470774 -0.510322 0.1409607 0.3470774 -0.5195258 0.1409607 0.3470774 -0.5284142 0.1409607 0.3470774 -0.5370079 0.1409607 0.3470774 -0.5453253 0.1409607 0.3470774 -0.5533834 0.1409607 0.3470774 -0.5611974 0.1409607 0.3470774 -0.5687816 0.1409607 0.3470774 -0.092819 0.1678172 0.3470774 -0.1056428 0.1678172 0.3470774 -0.1201537 0.1678172 0.3470774 -0.1409607 0.1678172 0.3470774 -0.1678172 0.1678172 0.3470774 -0.1950164 0.1678172 0.3470774 -0.2210581 0.1678172 0.3470774 -0.245636 0.1678172 0.3470774 -0.2686816 0.1678172 0.3470774 -0.2902431 0.1678172 0.3470774 -0.3104189 0.1678172 0.3470774 -0.3293248 0.1678172 0.3470774 -0.3470774 0.1678172 0.3470774 -0.3637862 0.1678172 0.3470774 -0.3795513 0.1678172 0.3470774 -0.3944623 0.1678172 0.3470774 -0.4085988 0.1678172 0.3470774 -0.4220313 0.1678172 0.3470774 -0.4348222 0.1678172 0.3470774 -0.4470264 0.1678172 0.3470774 -0.4586928 0.1678172 0.3470774 -0.4698649 0.1678172 0.3470774 -0.4805811 0.1678172 0.3470774 -0.490876 0.1678172 0.3470774 -0.5007803 0.1678172 0.3470774 -0.510322 0.1678172 0.3470774 -0.5195258 0.1678172 0.3470774 -0.5284142 0.1678172 0.3470774 -0.5370079 0.1678172 0.3470774 -0.5453253 0.1678172 0.3470774 -0.5533834 0.1678172 0.3470774 -0.5611974 0.1678172 0.3470774 -0.5687816 0.1678172 0.3470774 -0.092819 0.1950164 0.3470774 -0.1056428 0.1950164 0.3470774 -0.1201537 0.1950164 0.3470774 -0.1409607 0.1950164 0.3470774 -0.1678172 0.1950164 0.3470774 -0.1950164 0.1950164 0.3470774 -0.2210581 0.1950164 0.3470774 -0.245636 0.1950164 0.3470774 -0.2686816 0.1950164 0.3470774 -0.2902431 0.1950164 0.3470774 -0.3104189 0.1950164 0.3470774 -0.3293248 0.1950164 0.3470774 -0.3470774 0.1950164 0.3470774 -0.3637862 0.1950164 0.3470774 -0.3795513 0.1950164 0.3470774 -0.3944623 0.1950164 0.3470774 -0.4085988 0.1950164 0.3470774 -0.4220313 0.1950164 0.3470774 -0.4348222 0.1950164 0.3470774 -0.4470264 0.1950164 0.3470774 -0.4586928 0.1950164 0.3470774 -0.4698649 0.1950164 0.3470774 -0.4805811 0.1950164 0.3470774 -0.490876 0.1950164 0.3470774 -0.5007803 0.1950164 0.3470774 -0.510322 0.1950164 0.3470774 -0.5195258 0.1950164 0.3470774 -0.5284142 0.1950164 0.3470774 -0.5370079 0.1950164 0.3470774 -0.5453253 0.1950164 0.3470774 -0.5533834 0.1950164 0.3470774 -0.5611974 0.1950164 0.3470774 -0.5687816 0.1950164 0.3470774 -0.092819 0.2210581 0.3470774 -0.1056428 0.2210581 0.3470774 -0.1201537 0.2210581 0.3470774 -0.1409607 0.2210581 0.3470774 -0.1678172 0.2210581 0.3470774 -0.1950164 0.2210581 0.3470774 -0.2210581 0.2210581 0.3470774 -0.245636 0.2210581 0.3470774 -0.2686816 0.2210581 0.3470774 -0.2902431 0.2210581 0.3470774 -0.3104189 0.2210581 0.3470774 -0.3293248 0.2210581 0.3470774 -0.3470774 0.2210581 0.3470774 -0.3637862 0.2210581 0.3470774 -0.3795513 0.2210581 0.3470774 -0.3944623 0.2210581 0.3470774 -0.4085988 0.2210581 0.3470774 -0.4220313 0.2210581 0.3470774 -0.4348222 0.2210581 0.3470774 -0.4470264 0.2210581 0.3470774 -0.4586928 0.2210581 0.3470774 -0.4698649 0.2210581 0.3470774 -0.4805811 0.2210581 0.3470774 -0.490876 0.2210581 0.3470774 -0.5007803 0.2210581 0.3470774 -0.510322 0.2210581 0.3470774 -0.5195258 0.2210581 0.3470774 -0.5284142 0.2210581 0.3470774 -0.5370079 0.2210581 0.3470774 -0.5453253 0.2210581 0.3470774 -0.5533834 0.2210581 0.3470774 -0.5611974 0.2210581 0.3470774 -0.5687816 0.2210581 0.3470774 -0.092819 0.245636 0.3470774 -0.1056428 0.245636 0.3470774 -0.1201537 0.245636 0.3470774 -0.1409607 0.245636 0.3470774 -0.1678172 0.245636 0.3470774 -0.1950164 0.245636 0.3470774 -0.2210581 0.245636 0.3470774 -0.245636 0.245636 0.3470774 -0.2686816 0.245636 0.3470774 -0.2902431 0.245636 0.3470774 -0.3104189 0.245636 0.3470774 -0.3293248 0.245636 0.3470774 -0.3470774 0.245636 0.3470774 -0.3637862 0.245636 0.3470774 -0.3795513 0.245636 0.3470774 -0.3944623 0.245636 0.3470774 -0.4085988 0.245636 0.3470774 -0.4220313 0.245636 0.3470774 -0.4348222 0.245636 0.3470774 -0.4470264 0.245636 0.3470774 -0.4586928 0.245636 0.3470774 -0.4698649 0.245636 0.3470774 -0.4805811 0.245636 0.3470774 -0.490876 0.245636 0.3470774 -0.5007803 0.245636 0.3470774 -0.510322 0.245636 0.3470774 -0.5195258 0.245636 0.3470774 -0.5284142 0.245636 0.3470774 -0.5370079 0.245636 0.3470774 -0.5453253 0.245636 0.3470774 -0.5533834 0.245636 0.3470774 -0.5611974 0.245636 0.3470774 -0.5687816 0.245636 0.3470774 -0.092819 0.2686816 0.3470774 -0.1056428 0.2686816 0.3470774 -0.1201537 0.2686816 0.3470774 -0.1409607 0.2686816 0.3470774 -0.1678172 0.2686816 0.3470774 -0.1950164 0.2686816 0.3470774 -0.2210581 0.2686816 0.3470774 -0.245636 0.2686816 0.3470774 -0.2686816 0.2686816 0.3470774 -0.2902431 0.2686816 0.3470774 -0.3104189 0.2686816 0.3470774 -0.3293248 0.2686816 0.3470774 -0.3470774 0.2686816 0.3470774 -0.3637862 0.2686816 0.3470774 -0.3795513 0.2686816 0.3470774 -0.3944623 0.2686816 0.3470774 -0.4085988 0.2686816 0.3470774 -0.4220313 0.2686816 0.3470774 -0.4348222 0.2686816 0.3470774 -0.4470264 0.2686816 0.3470774 -0.4586928 0.2686816 0.3470774 -0.4698649 0.2686816 0.3470774 -0.4805811 0.2686816 0.3470774 -0.490876 0.2686816 0.3470774 -0.5007803 0.2686816 0.3470774 -0.510322 0.2686816 0.3470774 -0.5195258 0.2686816 0.3470774 -0.5284142 0.2686816 0.3470774 -0.5370079 0.2686816 0.3470774 -0.5453253 0.2686816 0.3470774 -0.5533834 0.2686816 0.3470774 -0.5611974 0.2686816 0.3470774 -0.5687816 0.2686816 0.3470774 -0.092819 0.2902431 0.3470774 -0.1056428 0.2902431 0.3470774 -0.1201537 0.2902431 0.3470774 -0.1409607 0.2902431 0.3470774 -0.1678172 0.2902431 0.3470774 -0.1950164 0.2902431 0.3470774 -0.2210581 0.2902431 0.3470774 -0.245636 0.2902431 0.3470774 -0.2686816 0.2902431 0.3470774 -0.2902431 0.2902431 0.3470774 -0.3104189 0.2902431 0.3470774 -0.3293248 0.2902431 0.3470774 -0.3470774 0.2902431 0.3470774 -0.3637862 0.2902431 0.3470774 -0.3795513 0.2902431 0.3470774 -0.3944623 0.2902431 0.3470774 -0.4085988 0.2902431 0.3470774 -0.4220313 0.2902431 0.3470774 -0.4348222 0.2902431 0.3470774 -0.4470264 0.2902431 0.3470774 -0.4586928 0.2902431 0.3470774 -0.4698649 0.2902431 0.3470774 -0.4805811 0.2902431 0.3470774 -0.490876 0.2902431 0.3470774 -0.5007803 0.2902431 0.3470774 -0.510322 0.2902431 0.3470774 -0.5195258 0.2902431 0.3470774 -0.5284142 0.2902431 0.3470774 -0.5370079 0.2902431 0.3470774 -0.5453253 0.2902431 0.3470774 -0.5533834 0.2902431 0.3470774 -0.5611974 0.2902431 0.3470774 -0.5687816 0.2902431 0.3470774 -0.092819 0.3104189 0.3470774 -0.1056428 0.3104189 0.3470774 -0.1201537 0.3104189 0.3470774 -0.1409607 0.3104189 0.3470774 -0.1678172 0.3104189 0.3470774 -0.1950164 0.3104189 0.3470774 -0.2210581 0.3104189 0.3470774 -0.245636 0.3104189 0.3470774 -0.2686816 0.3104189 0.3470774 -0.2902431 0.3104189 0.3470774 -0.3104189 0.3104189 0.3470774 -0.3293248 0.3104189 0.3470774 -0.3470774 0.3104189 0.3470774 -0.3637862 0.3104189 0.3470774 -0.3795513 0.3104189 0.3470774 -0.3944623 0.3104189 0.3470774 -0.4085988 0.3104189 0.3470774 -0.4220313 0.3104189 0.3470774 -0.4348222 0.3104189 0.3470774 -0.4470264 0.3104189 0.3470774 -0.4586928 0.3104189 0.3470774 -0.4698649 0.3104189 0.3470774 -0.4805811 0.3104189 0.3470774 -0.490876 0.3104189 0.3470774 -0.5007803 0.3104189 0.3470774 -0.510322 0.3104189 0.3470774 -0.5195258 0.3104189 0.3470774 -0.5284142 0.3104189 0.3470774 -0.5370079 0.3104189 0.3470774 -0.5453253 0.3104189 0.3470774 -0.5533834 0.3104189 0.3470774 -0.5611974 0.3104189 0.3470774 -0.5687816 0.3104189 0.3470774 -0.092819 0.3293248 0.3470774 -0.1056428 0.3293248 0.3470774 -0.1201537 0.3293248 0.3470774 -0.1409607 0.3293248 0.3470774 -0.1678172 0.3293248 0.3470774 -0.1950164 0.3293248 0.3470774 -0.2210581 0.3293248 0.3470774 -0.245636 0.3293248 0.3470774 -0.2686816 0.3293248 0.3470774 -0.2902431 0.3293248 0.3470774 -0.3104189 0.3293248 0.3470774 -0.3293248 0.3293248 0.3470774 -0.3470774 0.3293248 0.3470774 -0.3637862 0.3293248 0.3470774 -0.3795513 0.3293248 0.3470774 -0.3944623 0.3293248 0.3470774 -0.4085988 0.3293248 0.3470774 -0.4220313 0.3293248 0.3470774 -0.4348222 0.3293248 0.3470774 -0.4470264 0.3293248 0.3470774 -0.4586928 0.3293248 0.3470774 -0.4698649 0.3293248 0.3470774 -0.4805811 0.3293248 0.3470774 -0.490876 0.3293248 0.3470774 -0.5007803 0.3293248 0.3470774 -0.510322 0.3293248 0.3470774 -0.5195258 0.3293248 0.3470774 -0.5284142 0.3293248 0.3470774 -0.5370079 0.3293248 0.3470774 -0.5453253 0.3293248 0.3470774 -0.5533834 0.3293248 0.3470774 -0.5611974 0.3293248 0.3470774 -0.5687816 0.3293248 0.3470774 -0.092819 0.3470774 0.3470774 -0.1056428 0.3470774 0.3470774 -0.1201537 0.3470774 0.3470774 -0.1409607 0.3470774 0.3470774 -0.1678172 0.3470774 0.3470774 -0.1950164 0.3470774 0.3470774 -0.2210581 0.3470774 0.3470774 -0.245636 0.3470774 0.3470774 -0.2686816 0.3470774 0.3470774 -0.2902431 0.3470774 0.3470774 -0.3104189 0.3470774 0.3470774 -0.3293248 0.3470774 0.3470774 -0.3470774 0.3470774 0.3470774 -0.3637862 0.3470774 0.3470774 -0.3795513 0.3470774 0.3470774 -0.3944623 0.3470774 0.3470774 -0.4085988 0.3470774 0.3470774 -0.4220313 0.3470774 0.3470774 -0.4348222 0.3470774 0.3470774 -0.4470264 0.3470774 0.3470774 -0.4586928 0.3470774 0.3470774 -0.4698649 0.3470774 0.3470774 -0.4805811 0.3470774 0.3470774 -0.490876 0.3470774 0.3470774 -0.5007803 0.3470774 0.3470774 -0.510322 0.3470774 0.3470774 -0.5195258 0.3470774 0.3470774 -0.5284142 0.3470774 0.3470774 -0.5370079 0.3470774 0.3470774 -0.5453253 0.3470774 0.3470774 -0.5533834 0.3470774 0.3470774 -0.5611974 0.3470774 0.3470774 -0.5687816 0.3470774 0.3470774 -0.092819 0.3637862 0.3470774 -0.1056428 0.3637862 0.3470774 -0.1201537 0.3637862 0.3470774 -0.1409607 0.3637862 0.3470774 -0.1678172 0.3637862 0.3470774 -0.1950164 0.3637862 0.3470774 -0.2210581 0.3637862 0.3470774 -0.245636 0.3637862 0.3470774 -0.2686816 0.3637862 0.3470774 -0.2902431 0.3637862 0.3470774 -0.3104189 0.3637862 0.3470774 -0.3293248 0.3637862 0.3470774 -0.3470774 0.3637862 0.3470774 -0.3637862 0.3637862 0.3470774 -0.3795513 0.3637862 0.3470774 -0.3944623 0.3637862 0.3470774 -0.4085988 0.3637862 0.3470774 -0.4220313 0.3637862 0.3470774 -0.4348222 0.3637862 0.3470774 -0.4470264 0.3637862 0.3470774 -0.4586928 0.3637862 0.3470774 -0.4698649 0.3637862 0.3470774 -0.4805811 0.3637862 0.3470774 -0.490876 0.3637862 0.3470774 -0.5007803 0.3637862 0.3470774 -0.510322 0.3637862 0.3470774 -0.5195258 0.3637862 0.3470774 -0.5284142 0.3637862 0.3470774 -0.5370079 0.3637862 0.3470774 -0.5453253 0.3637862 0.3470774 -0.5533834 0.3637862 0.3470774 -0.5611974 0.3637862 0.3470774 -0.5687816 0.3637862 0.3470774 -0.092819 0.3795513 0.3470774 -0.1056428 0.3795513 0.3470774 -0.1201537 0.3795513 0.3470774 -0.1409607 0.3795513 0.3470774 -0.1678172 0.3795513 0.3470774 -0.1950164 0.3795513 0.3470774 -0.2210581 0.3795513 0.3470774 -0.245636 0.3795513 0.3470774 -0.2686816 0.3795513 0.3470774 -0.2902431 0.3795513 0.3470774 -0.3104189 0.3795513 0.3470774 -0.3293248 0.3795513 0.3470774 -0.3470774 0.3795513 0.3470774 -0.3637862 0.3795513 0.3470774 -0.3795513 0.3795513 0.3470774 -0.3944623 0.3795513 0.3470774 -0.4085988 0.3795513 0.3470774 -0.4220313 0.3795513 0.3470774 -0.4348222 0.3795513 0.3470774 -0.4470264 0.3795513 0.3470774 -0.4586928 0.3795513 0.3470774 -0.4698649 0.3795513 0.3470774 -0.4805811 0.3795513 0.3470774 -0.490876 0.3795513 0.3470774 -0.5007803 0.3795513 0.3470774 -0.510322 0.3795513 0.3470774 -0.5195258 0.3795513 0.3470774 -0.5284142 0.3795513 0.3470774 -0.5370079 0.3795513 0.3470774 -0.5453253 0.3795513 0.3470774 -0.5533834 0.3795513 0.3470774 -0.5611974 0.3795513 0.3470774 -0.5687816 0.3795513 0.3470774 -0.092819 0.3944623 0.3470774 -0.1056428 0.3944623 0.3470774 -0.1201537 0.3944623 0.3470774 -0.1409607 0.3944623 0.3470774 -0.1678172 0.3944623 0.3470774 -0.1950164 0.3944623 0.3470774 -0.2210581 0.3944623 0.3470774 -0.245636 0.3944623 0.3470774 -0.2686816 0.3944623 0.3470774 -0.2902431 0.3944623 0.3470774 -0.3104189 0.3944623 0.3470774 -0.3293248 0.3944623 0.3470774 -0.3470774 0.3944623 0.3470774 -0.3637862 0.3944623 0.3470774 -0.3795513 0.3944623 0.3470774 -0.3944623 0.3944623 0.3470774 -0.4085988 0.3944623 0.3470774 -0.4220313 0.3944623 0.3470774 -0.4348222 0.3944623 0.3470774 -0.4470264 0.3944623 0.3470774 -0.4586928 0.3944623 0.3470774 -0.4698649 0.3944623 0.3470774 -0.4805811 0.3944623 0.3470774 -0.490876 0.3944623 0.3470774 -0.5007803 0.3944623 0.3470774 -0.510322 0.3944623 0.3470774 -0.5195258 0.3944623 0.3470774 -0.5284142 0.3944623 0.3470774 -0.5370079 0.3944623 0.3470774 -0.5453253 0.3944623 0.3470774 -0.5533834 0.3944623 0.3470774 -0.5611974 0.3944623 0.3470774 -0.5687816 0.3944623 0.3470774 -0.092819 0.4085988 0.3470774 -0.1056428 0.4085988 0.3470774 -0.1201537 0.4085988 0.3470774 -0.1409607 0.4085988 0.3470774 -0.1678172 0.4085988 0.3470774 -0.1950164 0.4085988 0.3470774 -0.2210581 0.4085988 0.3470774 -0.245636 0.4085988 0.3470774 -0.2686816 0.4085988 0.3470774 -0.2902431 0.4085988 0.3470774 -0.3104189 0.4085988 0.3470774 -0.3293248 0.4085988 0.3470774 -0.3470774 0.4085988 0.3470774 -0.3637862 0.4085988 0.3470774 -0.3795513 0.4085988 0.3470774 -0.3944623 0.4085988 0.3470774 -0.4085988 0.4085988 0.3470774 -0.4220313 0.4085988 0.3470774 -0.4348222 0.4085988 0.3470774 -0.4470264 0.4085988 0.3470774 -0.4586928 0.4085988 0.3470774 -0.4698649 0.4085988 0.3470774 -0.4805811 0.4085988 0.3470774 -0.490876 0.4085988 0.3470774 -0.5007803 0.4085988 0.3470774 -0.510322 0.4085988 0.3470774 -0.5195258 0.4085988 0.3470774 -0.5284142 0.4085988 0.3470774 -0.5370079 0.4085988 0.3470774 -0.5453253 0.4085988 0.3470774 -0.5533834 0.4085988 0.3470774 -0.5611974 0.4085988 0.3470774 -0.5687816 0.4085988 0.3470774 -0.092819 0.4220313 0.3470774 -0.1056428 0.4220313 0.3470774 -0.1201537 0.4220313 0.3470774 -0.1409607 0.4220313 0.3470774 -0.1678172 0.4220313 0.3470774 -0.1950164 0.4220313 0.3470774 -0.2210581 0.4220313 0.3470774 -0.245636 0.4220313 0.3470774 -0.2686816 0.4220313 0.3470774 -0.2902431 0.4220313 0.3470774 -0.3104189 0.4220313 0.3470774 -0.3293248 0.4220313 0.3470774 -0.3470774 0.4220313 0.3470774 -0.3637862 0.4220313 0.3470774 -0.3795513 0.4220313 0.3470774 -0.3944623 0.4220313 0.3470774 -0.4085988 0.4220313 0.3470774 -0.4220313 0.4220313 0.3470774 -0.4348222 0.4220313 0.3470774 -0.4470264 0.4220313 0.3470774 -0.4586928 0.4220313 0.3470774 -0.4698649 0.4220313 0.3470774 -0.4805811 0.4220313 0.3470774 -0.490876 0.4220313 0.3470774 -0.5007803 0.4220313 0.3470774 -0.510322 0.4220313 0.3470774 -0.5195258 0.4220313 0.3470774 -0.5284142 0.4220313 0.3470774 -0.5370079 0.4220313 0.3470774 -0.5453253 0.4220313 0.3470774 -0.5533834 0.4220313 0.3470774 -0.5611974 0.4220313 0.3470774 -0.5687816 0.4220313 0.3470774 -0.092819 0.4348222 0.3470774 -0.1056428 0.4348222 0.3470774 -0.1201537 0.4348222 0.3470774 -0.1409607 0.4348222 0.3470774 -0.1678172 0.4348222 0.3470774 -0.1950164 0.4348222 0.3470774 -0.2210581 0.4348222 0.3470774 -0.245636 0.4348222 0.3470774 -0.2686816 0.4348222 0.3470774 -0.2902431 0.4348222 0.3470774 -0.3104189 0.4348222 0.3470774 -0.3293248 0.4348222 0.3470774 -0.3470774 0.4348222 0.3470774 -0.3637862 0.4348222 0.3470774 -0.3795513 0.4348222 0.3470774 -0.3944623 0.4348222 0.3470774 -0.4085988 0.4348222 0.3470774 -0.4220313 0.4348222 0.3470774 -0.4348222 0.4348222 0.3470774 -0.4470264 0.4348222 0.3470774 -0.4586928 0.4348222 0.3470774 -0.4698649 0.4348222 0.3470774 -0.4805811 0.4348222 0.3470774 -0.490876 0.4348222 0.3470774 -0.5007803 0.4348222 0.3470774 -0.510322 0.4348222 0.3470774 -0.5195258 0.4348222 0.3470774 -0.5284142 0.4348222 0.3470774 -0.5370079 0.4348222 0.3470774 -0.5453253 0.4348222 0.3470774 -0.5533834 0.4348222 0.3470774 -0.5611974 0.4348222 0.3470774 -0.5687816 0.4348222 0.3470774 -0.092819 0.4470264 0.3470774 -0.1056428 0.4470264 0.3470774 -0.1201537 0.4470264 0.3470774 -0.1409607 0.4470264 0.3470774 -0.1678172 0.4470264 0.3470774 -0.1950164 0.4470264 0.3470774 -0.2210581 0.4470264 0.3470774 -0.245636 0.4470264 0.3470774 -0.2686816 0.4470264 0.3470774 -0.2902431 0.4470264 0.3470774 -0.3104189 0.4470264 0.3470774 -0.3293248 0.4470264 0.3470774 -0.3470774 0.4470264 0.3470774 -0.3637862 0.4470264 0.3470774 -0.3795513 0.4470264 0.3470774 -0.3944623 0.4470264 0.3470774 -0.4085988 0.4470264 0.3470774 -0.4220313 0.4470264 0.3470774 -0.4348222 0.4470264 0.3470774 -0.4470264 0.4470264 0.3470774 -0.4586928 0.4470264 0.3470774 -0.4698649 0.4470264 0.3470774 -0.4805811 0.4470264 0.3470774 -0.490876 0.4470264 0.3470774 -0.5007803 0.4470264 0.3470774 -0.510322 0.4470264 0.3470774 -0.5195258 0.4470264 0.3470774 -0.5284142 0.4470264 0.3470774 -0.5370079 0.4470264 0.3470774 -0.5453253 0.4470264 0.3470774 -0.5533834 0.4470264 0.3470774 -0.5611974 0.4470264 0.3470774 -0.5687816 0.4470264 0.3470774 -0.092819 0.4586928 0.3470774 -0.1056428 0.4586928 0.3470774 -0.1201537 0.4586928 0.3470774 -0.1409607 0.4586928 0.3470774 -0.1678172 0.4586928 0.3470774 -0.1950164 0.4586928 0.3470774 -0.2210581 0.4586928 0.3470774 -0.245636 0.4586928 0.3470774 -0.2686816 0.4586928 0.3470774 -0.2902431 0.4586928 0.3470774 -0.3104189 0.4586928 0.3470774 -0.3293248 0.4586928 0.3470774 -0.3470774 0.4586928 0.3470774 -0.3637862 0.4586928 0.3470774 -0.3795513 0.4586928 0.3470774 -0.3944623 0.4586928 0.3470774 -0.4085988 0.4586928 0.3470774 -0.4220313 0.4586928 0.3470774 -0.4348222 0.4586928 0.3470774 -0.4470264 0.4586928 0.3470774 -0.4586928 0.4586928 0.3470774 -0.4698649 0.4586928 0.3470774 -0.4805811 0.4586928 0.3470774 -0.490876 0.4586928 0.3470774 -0.5007803 0.4586928 0.3470774 -0.510322 0.4586928 0.3470774 -0.5195258 0.4586928 0.3470774 -0.5284142 0.4586928 0.3470774 -0.5370079 0.4586928 0.3470774 -0.5453253 0.4586928 0.3470774 -0.5533834 0.4586928 0.3470774 -0.5611974 0.4586928 0.3470774 -0.5687816 0.4586928 0.3470774 -0.092819 0.4698649 0.3470774 -0.1056428 0.4698649 0.3470774 -0.1201537 0.4698649 0.3470774 -0.1409607 0.4698649 0.3470774 -0.1678172 0.4698649 0.3470774 -0.1950164 0.4698649 0.3470774 -0.2210581 0.4698649 0.3470774 -0.245636 0.4698649 0.3470774 -0.2686816 0.4698649 0.3470774 -0.2902431 0.4698649 0.3470774 -0.3104189 0.4698649 0.3470774 -0.3293248 0.4698649 0.3470774 -0.3470774 0.4698649 0.3470774 -0.3637862 0.4698649 0.3470774 -0.3795513 0.4698649 0.3470774 -0.3944623 0.4698649 0.3470774 -0.4085988 0.4698649 0.3470774 -0.4220313 0.4698649 0.3470774 -0.4348222 0.4698649 0.3470774 -0.4470264 0.4698649 0.3470774 -0.4586928 0.4698649 0.3470774 -0.4698649 0.4698649 0.3470774 -0.4805811 0.4698649 0.3470774 -0.490876 0.4698649 0.3470774 -0.5007803 0.4698649 0.3470774 -0.510322 0.4698649 0.3470774 -0.5195258 0.4698649 0.3470774 -0.5284142 0.4698649 0.3470774 -0.5370079 0.4698649 0.3470774 -0.5453253 0.4698649 0.3470774 -0.5533834 0.4698649 0.3470774 -0.5611974 0.4698649 0.3470774 -0.5687816 0.4698649 0.3470774 -0.092819 0.4805811 0.3470774 -0.1056428 0.4805811 0.3470774 -0.1201537 0.4805811 0.3470774 -0.1409607 0.4805811 0.3470774 -0.1678172 0.4805811 0.3470774 -0.1950164 0.4805811 0.3470774 -0.2210581 0.4805811 0.3470774 -0.245636 0.4805811 0.3470774 -0.2686816 0.4805811 0.3470774 -0.2902431 0.4805811 0.3470774 -0.3104189 0.4805811 0.3470774 -0.3293248 0.4805811 0.3470774 -0.3470774 0.4805811 0.3470774 -0.3637862 0.4805811 0.3470774 -0.3795513 0.4805811 0.3470774 -0.3944623 0.4805811 0.3470774 -0.4085988 0.4805811 0.3470774 -0.4220313 0.4805811 0.3470774 -0.4348222 0.4805811 0.3470774 -0.4470264 0.4805811 0.3470774 -0.4586928 0.4805811 0.3470774 -0.4698649 0.4805811 0.3470774 -0.4805811 0.4805811 0.3470774 -0.490876 0.4805811 0.3470774 -0.5007803 0.4805811 0.3470774 -0.510322 0.4805811 0.3470774 -0.5195258 0.4805811 0.3470774 -0.5284142 0.4805811 0.3470774 -0.5370079 0.4805811 0.3470774 -0.5453253 0.4805811 0.3470774 -0.5533834 0.4805811 0.3470774 -0.5611974 0.4805811 0.3470774 -0.5687816 0.4805811 0.3470774 -0.092819 0.490876 0.3470774 -0.1056428 0.490876 0.3470774 -0.1201537 0.490876 0.3470774 -0.1409607 0.490876 0.3470774 -0.1678172 0.490876 0.3470774 -0.1950164 0.490876 0.3470774 -0.2210581 0.490876 0.3470774 -0.245636 0.490876 0.3470774 -0.2686816 0.490876 0.3470774 -0.2902431 0.490876 0.3470774 -0.3104189 0.490876 0.3470774 -0.3293248 0.490876 0.3470774 -0.3470774 0.490876 0.3470774 -0.3637862 0.490876 0.3470774 -0.3795513 0.490876 0.3470774 -0.3944623 0.490876 0.3470774 -0.4085988 0.490876 0.3470774 -0.4220313 0.490876 0.3470774 -0.4348222 0.490876 0.3470774 -0.4470264 0.490876 0.3470774 -0.4586928 0.490876 0.3470774 -0.4698649 0.490876 0.3470774 -0.4805811 0.490876 0.3470774 -0.490876 0.490876 0.3470774 -0.5007803 0.490876 0.3470774 -0.510322 0.490876 0.3470774 -0.5195258 0.490876 0.3470774 -0.5284142 0.490876 0.3470774 -0.5370079 0.490876 0.3470774 -0.5453253 0.490876 0.3470774 -0.5533834 0.490876 0.3470774 -0.5611974 0.490876 0.3470774 -0.5687816 0.490876 0.3470774 -0.092819 0.5007803 0.3470774 -0.1056428 0.5007803 0.3470774 -0.1201537 0.5007803 0.3470774 -0.1409607 0.5007803 0.3470774 -0.1678172 0.5007803 0.3470774 -0.1950164 0.5007803 0.3470774 -0.2210581 0.5007803 0.3470774 -0.245636 0.5007803 0.3470774 -0.2686816 0.5007803 0.3470774 -0.2902431 0.5007803 0.3470774 -0.3104189 0.5007803 0.3470774 -0.3293248 0.5007803 0.3470774 -0.3470774 0.5007803 0.3470774 -0.3637862 0.5007803 0.3470774 -0.3795513 0.5007803 0.3470774 -0.3944623 0.5007803 0.3470774 -0.4085988 0.5007803 0.3470774 -0.4220313 0.5007803 0.3470774 -0.4348222 0.5007803 0.3470774 -0.4470264 0.5007803 0.3470774 -0.4586928 0.5007803 0.3470774 -0.4698649 0.5007803 0.3470774 -0.4805811 0.5007803 0.3470774 -0.490876 0.5007803 0.3470774 -0.5007803 0.5007803 0.3470774 -0.510322 0.5007803 0.3470774 -0.5195258 0.5007803 0.3470774 -0.5284142 0.5007803 0.3470774 -0.5370079 0.5007803 0.3470774 -0.5453253 0.5007803 0.3470774 -0.5533834 0.5007803 0.3470774 -0.5611974 0.5007803 0.3470774 -0.5687816 0.5007803 0.3470774 -0.092819 0.510322 0.3470774 -0.1056428 0.510322 0.3470774 -0.1201537 0.510322 0.3470774 -0.1409607 0.510322 0.3470774 -0.1678172 0.510322 0.3470774 -0.1950164 0.510322 0.3470774 -0.2210581 0.510322 0.3470774 -0.245636 0.510322 0.3470774 -0.2686816 0.510322 0.3470774 -0.2902431 0.510322 0.3470774 -0.3104189 0.510322 0.3470774 -0.3293248 0.510322 0.3470774 -0.3470774 0.510322 0.3470774 -0.3637862 0.510322 0.3470774 -0.3795513 0.510322 0.3470774 -0.3944623 0.510322 0.3470774 -0.4085988 0.510322 0.3470774 -0.4220313 0.510322 0.3470774 -0.4348222 0.510322 0.3470774 -0.4470264 0.510322 0.3470774 -0.4586928 0.510322 0.3470774 -0.4698649 0.510322 0.3470774 -0.4805811 0.510322 0.3470774 -0.490876 0.510322 0.3470774 -0.5007803 0.510322 0.3470774 -0.510322 0.510322 0.3470774 -0.5195258 0.510322 0.3470774 -0.5284142 0.510322 0.3470774 -0.5370079 0.510322 0.3470774 -0.5453253 0.510322 0.3470774 -0.5533834 0.510322 0.3470774 -0.5611974 0.510322 0.3470774 -0.5687816 0.510322 0.3470774 -0.092819 0.5195258 0.3470774 -0.1056428 0.5195258 0.3470774 -0.1201537 0.5195258 0.3470774 -0.1409607 0.5195258 0.3470774 -0.1678172 0.5195258 0.3470774 -0.1950164 0.5195258 0.3470774 -0.2210581 0.5195258 0.3470774 -0.245636 0.5195258 0.3470774 -0.2686816 0.5195258 0.3470774 -0.2902431 0.5195258 0.3470774 -0.3104189 0.5195258 0.3470774 -0.3293248 0.5195258 0.3470774 -0.3470774 0.5195258 0.3470774 -0.3637862 0.5195258 0.3470774 -0.3795513 0.5195258 0.3470774 -0.3944623 0.5195258 0.3470774 -0.4085988 0.5195258 0.3470774 -0.4220313 0.5195258 0.3470774 -0.4348222 0.5195258 0.3470774 -0.4470264 0.5195258 0.3470774 -0.4586928 0.5195258 0.3470774 -0.4698649 0.5195258 0.3470774 -0.4805811 0.5195258 0.3470774 -0.490876 0.5195258 0.3470774 -0.5007803 0.5195258 0.3470774 -0.510322 0.5195258 0.3470774 -0.5195258 0.5195258 0.3470774 -0.5284142 0.5195258 0.3470774 -0.5370079 0.5195258 0.3470774 -0.5453253 0.5195258 0.3470774 -0.5533834 0.5195258 0.3470774 -0.5611974 0.5195258 0.3470774 -0.5687816 0.5195258 0.3470774 -0.092819 0.5284142 0.3470774 -0.1056428 0.5284142 0.3470774 -0.1201537 0.5284142 0.3470774 -0.1409607 0.5284142 0.3470774 -0.1678172 0.5284142 0.3470774 -0.1950164 0.5284142 0.3470774 -0.2210581 0.5284142 0.3470774 -0.245636 0.5284142 0.3470774 -0.2686816 0.5284142 0.3470774 -0.2902431 0.5284142 0.3470774 -0.3104189 0.5284142 0.3470774 -0.3293248 0.5284142 0.3470774 -0.3470774 0.5284142 0.3470774 -0.3637862 0.5284142 0.3470774 -0.3795513 0.5284142 0.3470774 -0.3944623 0.5284142 0.3470774 -0.4085988 0.5284142 0.3470774 -0.4220313 0.5284142 0.3470774 -0.4348222 0.5284142 0.3470774 -0.4470264 0.5284142 0.3470774 -0.4586928 0.5284142 0.3470774 -0.4698649 0.5284142 0.3470774 -0.4805811 0.5284142 0.3470774 -0.490876 0.5284142 0.3470774 -0.5007803 0.5284142 0.3470774 -0.510322 0.5284142 0.3470774 -0.5195258 0.5284142 0.3470774 -0.5284142 0.5284142 0.3470774 -0.5370079 0.5284142 0.3470774 -0.5453253 0.5284142 0.3470774 -0.5533834 0.5284142 0.3470774 -0.5611974 0.5284142 0.3470774 -0.5687816 0.5284142 0.3470774 -0.092819 0.5370079 0.3470774 -0.1056428 0.5370079 0.3470774 -0.1201537 0.5370079 0.3470774 -0.1409607 0.5370079 0.3470774 -0.1678172 0.5370079 0.3470774 -0.1950164 0.5370079 0.3470774 -0.2210581 0.5370079 0.3470774 -0.245636 0.5370079 0.3470774 -0.2686816 0.5370079 0.3470774 -0.2902431 0.5370079 0.3470774 -0.3104189 0.5370079 0.3470774 -0.3293248 0.5370079 0.3470774 -0.3470774 0.5370079 0.3470774 -0.3637862 0.5370079 0.3470774 -0.3795513 0.5370079 0.3470774 -0.3944623 0.5370079 0.3470774 -0.4085988 0.5370079 0.3470774 -0.4220313 0.5370079 0.3470774 -0.4348222 0.5370079 0.3470774 -0.4470264 0.5370079 0.3470774 -0.4586928 0.5370079 0.3470774 -0.4698649 0.5370079 0.3470774 -0.4805811 0.5370079 0.3470774 -0.490876 0.5370079 0.3470774 -0.5007803 0.5370079 0.3470774 -0.510322 0.5370079 0.3470774 -0.5195258 0.5370079 0.3470774 -0.5284142 0.5370079 0.3470774 -0.5370079 0.5370079 0.3470774 -0.5453253 0.5370079 0.3470774 -0.5533834 0.5370079 0.3470774 -0.5611974 0.5370079 0.3470774 -0.5687816 0.5370079 0.3470774 -0.092819 0.5453253 0.3470774 -0.1056428 0.5453253 0.3470774 -0.1201537 0.5453253 0.3470774 -0.1409607 0.5453253 0.3470774 -0.1678172 0.5453253 0.3470774 -0.1950164 0.5453253 0.3470774 -0.2210581 0.5453253 0.3470774 -0.245636 0.5453253 0.3470774 -0.2686816 0.5453253 0.3470774 -0.2902431 0.5453253 0.3470774 -0.3104189 0.5453253 0.3470774 -0.3293248 0.5453253 0.3470774 -0.3470774 0.5453253 0.3470774 -0.3637862 0.5453253 0.3470774 -0.3795513 0.5453253 0.3470774 -0.3944623 0.5453253 0.3470774 -0.4085988 0.5453253 0.3470774 -0.4220313 0.5453253 0.3470774 -0.4348222 0.5453253 0.3470774 -0.4470264 0.5453253 0.3470774 -0.4586928 0.5453253 0.3470774 -0.4698649 0.5453253 0.3470774 -0.4805811 0.5453253 0.3470774 -0.490876 0.5453253 0.3470774 -0.5007803 0.5453253 0.3470774 -0.510322 0.5453253 0.3470774 -0.5195258 0.5453253 0.3470774 -0.5284142 0.5453253 0.3470774 -0.5370079 0.5453253 0.3470774 -0.5453253 0.5453253 0.3470774 -0.5533834 0.5453253 0.3470774 -0.5611974 0.5453253 0.3470774 -0.5687816 0.5453253 0.3470774 -0.092819 0.5533834 0.3470774 -0.1056428 0.5533834 0.3470774 -0.1201537 0.5533834 0.3470774 -0.1409607 0.5533834 0.3470774 -0.1678172 0.5533834 0.3470774 -0.1950164 0.5533834 0.3470774 -0.2210581 0.5533834 0.3470774 -0.245636 0.5533834 0.3470774 -0.2686816 0.5533834 0.3470774 -0.2902431 0.5533834 0.3470774 -0.3104189 0.5533834 0.3470774 -0.3293248 0.5533834 0.3470774 -0.3470774 0.5533834 0.3470774 -0.3637862 0.5533834 0.3470774 -0.3795513 0.5533834 0.3470774 -0.3944623 0.5533834 0.3470774 -0.4085988 0.5533834 0.3470774 -0.4220313 0.5533834 0.3470774 -0.4348222 0.5533834 0.3470774 -0.4470264 0.5533834 0.3470774 -0.4586928 0.5533834 0.3470774 -0.4698649 0.5533834 0.3470774 -0.4805811 0.5533834 0.3470774 -0.490876 0.5533834 0.3470774 -0.5007803 0.5533834 0.3470774 -0.510322 0.5533834 0.3470774 -0.5195258 0.5533834 0.3470774 -0.5284142 0.5533834 0.3470774 -0.5370079 0.5533834 0.3470774 -0.5453253 0.5533834 0.3470774 -0.5533834 0.5533834 0.3470774 -0.5611974 0.5533834 0.3470774 -0.5687816 0.5533834 0.3470774 -0.092819 0.5611974 0.3470774 -0.1056428 0.5611974 0.3470774 -0.1201537 0.5611974 0.3470774 -0.1409607 0.5611974 0.3470774 -0.1678172 0.5611974 0.3470774 -0.1950164 0.5611974 0.3470774 -0.2210581 0.5611974 0.3470774 -0.245636 0.5611974 0.3470774 -0.2686816 0.5611974 0.3470774 -0.2902431 0.5611974 0.3470774 -0.3104189 0.5611974 0.3470774 -0.3293248 0.5611974 0.3470774 -0.3470774 0.5611974 0.3470774 -0.3637862 0.5611974 0.3470774 -0.3795513 0.5611974 0.3470774 -0.3944623 0.5611974 0.3470774 -0.4085988 0.5611974 0.3470774 -0.4220313 0.5611974 0.3470774 -0.4348222 0.5611974 0.3470774 -0.4470264 0.5611974 0.3470774 -0.4586928 0.5611974 0.3470774 -0.4698649 0.5611974 0.3470774 -0.4805811 0.5611974 0.3470774 -0.490876 0.5611974 0.3470774 -0.5007803 0.5611974 0.3470774 -0.510322 0.5611974 0.3470774 -0.5195258 0.5611974 0.3470774 -0.5284142 0.5611974 0.3470774 -0.5370079 0.5611974 0.3470774 -0.5453253 0.5611974 0.3470774 -0.5533834 0.5611974 0.3470774 -0.5611974 0.5611974 0.3470774 -0.5687816 0.5611974 0.3470774 -0.092819 0.5687816 0.3470774 -0.1056428 0.5687816 0.3470774 -0.1201537 0.5687816 0.3470774 -0.1409607 0.5687816 0.3470774 -0.1678172 0.5687816 0.3470774 -0.1950164 0.5687816 0.3470774 -0.2210581 0.5687816 0.3470774 -0.245636 0.5687816 0.3470774 -0.2686816 0.5687816 0.3470774 -0.2902431 0.5687816 0.3470774 -0.3104189 0.5687816 0.3470774 -0.3293248 0.5687816 0.3470774 -0.3470774 0.5687816 0.3470774 -0.3637862 0.5687816 0.3470774 -0.3795513 0.5687816 0.3470774 -0.3944623 0.5687816 0.3470774 -0.4085988 0.5687816 0.3470774 -0.4220313 0.5687816 0.3470774 -0.4348222 0.5687816 0.3470774 -0.4470264 0.5687816 0.3470774 -0.4586928 0.5687816 0.3470774 -0.4698649 0.5687816 0.3470774 -0.4805811 0.5687816 0.3470774 -0.490876 0.5687816 0.3470774 -0.5007803 0.5687816 0.3470774 -0.510322 0.5687816 0.3470774 -0.5195258 0.5687816 0.3470774 -0.5284142 0.5687816 0.3470774 -0.5370079 0.5687816 0.3470774 -0.5453253 0.5687816 0.3470774 -0.5533834 0.5687816 0.3470774 -0.5611974 0.5687816 0.3470774 -0.5687816 0.5687816 0.3470774 -0.092819 0.092819 0.3637862 -0.1056428 0.092819 0.3637862 -0.1201537 0.092819 0.3637862 -0.1409607 0.092819 0.3637862 -0.1678172 0.092819 0.3637862 -0.1950164 0.092819 0.3637862 -0.2210581 0.092819 0.3637862 -0.245636 0.092819 0.3637862 -0.2686816 0.092819 0.3637862 -0.2902431 0.092819 0.3637862 -0.3104189 0.092819 0.3637862 -0.3293248 0.092819 0.3637862 -0.3470774 0.092819 0.3637862 -0.3637862 0.092819 0.3637862 -0.3795513 0.092819 0.3637862 -0.3944623 0.092819 0.3637862 -0.4085988 0.092819 0.3637862 -0.4220313 0.092819 0.3637862 -0.4348222 0.092819 0.3637862 -0.4470264 0.092819 0.3637862 -0.4586928 0.092819 0.3637862 -0.4698649 0.092819 0.3637862 -0.4805811 0.092819 0.3637862 -0.490876 0.092819 0.3637862 -0.5007803 0.092819 0.3637862 -0.510322 0.092819 0.3637862 -0.5195258 0.092819 0.3637862 -0.5284142 0.092819 0.3637862 -0.5370079 0.092819 0.3637862 -0.5453253 0.092819 0.3637862 -0.5533834 0.092819 0.3637862 -0.5611974 0.092819 0.3637862 -0.5687816 0.092819 0.3637862 -0.092819 0.1056428 0.3637862 -0.1056428 0.1056428 0.3637862 -0.1201537 0.1056428 0.3637862 -0.1409607 0.1056428 0.3637862 -0.1678172 0.1056428 0.3637862 -0.1950164 0.1056428 0.3637862 -0.2210581 0.1056428 0.3637862 -0.245636 0.1056428 0.3637862 -0.2686816 0.1056428 0.3637862 -0.2902431 0.1056428 0.3637862 -0.3104189 0.1056428 0.3637862 -0.3293248 0.1056428 0.3637862 -0.3470774 0.1056428 0.3637862 -0.3637862 0.1056428 0.3637862 -0.3795513 0.1056428 0.3637862 -0.3944623 0.1056428 0.3637862 -0.4085988 0.1056428 0.3637862 -0.4220313 0.1056428 0.3637862 -0.4348222 0.1056428 0.3637862 -0.4470264 0.1056428 0.3637862 -0.4586928 0.1056428 0.3637862 -0.4698649 0.1056428 0.3637862 -0.4805811 0.1056428 0.3637862 -0.490876 0.1056428 0.3637862 -0.5007803 0.1056428 0.3637862 -0.510322 0.1056428 0.3637862 -0.5195258 0.1056428 0.3637862 -0.5284142 0.1056428 0.3637862 -0.5370079 0.1056428 0.3637862 -0.5453253 0.1056428 0.3637862 -0.5533834 0.1056428 0.3637862 -0.5611974 0.1056428 0.3637862 -0.5687816 0.1056428 0.3637862 -0.092819 0.1201537 0.3637862 -0.1056428 0.1201537 0.3637862 -0.1201537 0.1201537 0.3637862 -0.1409607 0.1201537 0.3637862 -0.1678172 0.1201537 0.3637862 -0.1950164 0.1201537 0.3637862 -0.2210581 0.1201537 0.3637862 -0.245636 0.1201537 0.3637862 -0.2686816 0.1201537 0.3637862 -0.2902431 0.1201537 0.3637862 -0.3104189 0.1201537 0.3637862 -0.3293248 0.1201537 0.3637862 -0.3470774 0.1201537 0.3637862 -0.3637862 0.1201537 0.3637862 -0.3795513 0.1201537 0.3637862 -0.3944623 0.1201537 0.3637862 -0.4085988 0.1201537 0.3637862 -0.4220313 0.1201537 0.3637862 -0.4348222 0.1201537 0.3637862 -0.4470264 0.1201537 0.3637862 -0.4586928 0.1201537 0.3637862 -0.4698649 0.1201537 0.3637862 -0.4805811 0.1201537 0.3637862 -0.490876 0.1201537 0.3637862 -0.5007803 0.1201537 0.3637862 -0.510322 0.1201537 0.3637862 -0.5195258 0.1201537 0.3637862 -0.5284142 0.1201537 0.3637862 -0.5370079 0.1201537 0.3637862 -0.5453253 0.1201537 0.3637862 -0.5533834 0.1201537 0.3637862 -0.5611974 0.1201537 0.3637862 -0.5687816 0.1201537 0.3637862 -0.092819 0.1409607 0.3637862 -0.1056428 0.1409607 0.3637862 -0.1201537 0.1409607 0.3637862 -0.1409607 0.1409607 0.3637862 -0.1678172 0.1409607 0.3637862 -0.1950164 0.1409607 0.3637862 -0.2210581 0.1409607 0.3637862 -0.245636 0.1409607 0.3637862 -0.2686816 0.1409607 0.3637862 -0.2902431 0.1409607 0.3637862 -0.3104189 0.1409607 0.3637862 -0.3293248 0.1409607 0.3637862 -0.3470774 0.1409607 0.3637862 -0.3637862 0.1409607 0.3637862 -0.3795513 0.1409607 0.3637862 -0.3944623 0.1409607 0.3637862 -0.4085988 0.1409607 0.3637862 -0.4220313 0.1409607 0.3637862 -0.4348222 0.1409607 0.3637862 -0.4470264 0.1409607 0.3637862 -0.4586928 0.1409607 0.3637862 -0.4698649 0.1409607 0.3637862 -0.4805811 0.1409607 0.3637862 -0.490876 0.1409607 0.3637862 -0.5007803 0.1409607 0.3637862 -0.510322 0.1409607 0.3637862 -0.5195258 0.1409607 0.3637862 -0.5284142 0.1409607 0.3637862 -0.5370079 0.1409607 0.3637862 -0.5453253 0.1409607 0.3637862 -0.5533834 0.1409607 0.3637862 -0.5611974 0.1409607 0.3637862 -0.5687816 0.1409607 0.3637862 -0.092819 0.1678172 0.3637862 -0.1056428 0.1678172 0.3637862 -0.1201537 0.1678172 0.3637862 -0.1409607 0.1678172 0.3637862 -0.1678172 0.1678172 0.3637862 -0.1950164 0.1678172 0.3637862 -0.2210581 0.1678172 0.3637862 -0.245636 0.1678172 0.3637862 -0.2686816 0.1678172 0.3637862 -0.2902431 0.1678172 0.3637862 -0.3104189 0.1678172 0.3637862 -0.3293248 0.1678172 0.3637862 -0.3470774 0.1678172 0.3637862 -0.3637862 0.1678172 0.3637862 -0.3795513 0.1678172 0.3637862 -0.3944623 0.1678172 0.3637862 -0.4085988 0.1678172 0.3637862 -0.4220313 0.1678172 0.3637862 -0.4348222 0.1678172 0.3637862 -0.4470264 0.1678172 0.3637862 -0.4586928 0.1678172 0.3637862 -0.4698649 0.1678172 0.3637862 -0.4805811 0.1678172 0.3637862 -0.490876 0.1678172 0.3637862 -0.5007803 0.1678172 0.3637862 -0.510322 0.1678172 0.3637862 -0.5195258 0.1678172 0.3637862 -0.5284142 0.1678172 0.3637862 -0.5370079 0.1678172 0.3637862 -0.5453253 0.1678172 0.3637862 -0.5533834 0.1678172 0.3637862 -0.5611974 0.1678172 0.3637862 -0.5687816 0.1678172 0.3637862 -0.092819 0.1950164 0.3637862 -0.1056428 0.1950164 0.3637862 -0.1201537 0.1950164 0.3637862 -0.1409607 0.1950164 0.3637862 -0.1678172 0.1950164 0.3637862 -0.1950164 0.1950164 0.3637862 -0.2210581 0.1950164 0.3637862 -0.245636 0.1950164 0.3637862 -0.2686816 0.1950164 0.3637862 -0.2902431 0.1950164 0.3637862 -0.3104189 0.1950164 0.3637862 -0.3293248 0.1950164 0.3637862 -0.3470774 0.1950164 0.3637862 -0.3637862 0.1950164 0.3637862 -0.3795513 0.1950164 0.3637862 -0.3944623 0.1950164 0.3637862 -0.4085988 0.1950164 0.3637862 -0.4220313 0.1950164 0.3637862 -0.4348222 0.1950164 0.3637862 -0.4470264 0.1950164 0.3637862 -0.4586928 0.1950164 0.3637862 -0.4698649 0.1950164 0.3637862 -0.4805811 0.1950164 0.3637862 -0.490876 0.1950164 0.3637862 -0.5007803 0.1950164 0.3637862 -0.510322 0.1950164 0.3637862 -0.5195258 0.1950164 0.3637862 -0.5284142 0.1950164 0.3637862 -0.5370079 0.1950164 0.3637862 -0.5453253 0.1950164 0.3637862 -0.5533834 0.1950164 0.3637862 -0.5611974 0.1950164 0.3637862 -0.5687816 0.1950164 0.3637862 -0.092819 0.2210581 0.3637862 -0.1056428 0.2210581 0.3637862 -0.1201537 0.2210581 0.3637862 -0.1409607 0.2210581 0.3637862 -0.1678172 0.2210581 0.3637862 -0.1950164 0.2210581 0.3637862 -0.2210581 0.2210581 0.3637862 -0.245636 0.2210581 0.3637862 -0.2686816 0.2210581 0.3637862 -0.2902431 0.2210581 0.3637862 -0.3104189 0.2210581 0.3637862 -0.3293248 0.2210581 0.3637862 -0.3470774 0.2210581 0.3637862 -0.3637862 0.2210581 0.3637862 -0.3795513 0.2210581 0.3637862 -0.3944623 0.2210581 0.3637862 -0.4085988 0.2210581 0.3637862 -0.4220313 0.2210581 0.3637862 -0.4348222 0.2210581 0.3637862 -0.4470264 0.2210581 0.3637862 -0.4586928 0.2210581 0.3637862 -0.4698649 0.2210581 0.3637862 -0.4805811 0.2210581 0.3637862 -0.490876 0.2210581 0.3637862 -0.5007803 0.2210581 0.3637862 -0.510322 0.2210581 0.3637862 -0.5195258 0.2210581 0.3637862 -0.5284142 0.2210581 0.3637862 -0.5370079 0.2210581 0.3637862 -0.5453253 0.2210581 0.3637862 -0.5533834 0.2210581 0.3637862 -0.5611974 0.2210581 0.3637862 -0.5687816 0.2210581 0.3637862 -0.092819 0.245636 0.3637862 -0.1056428 0.245636 0.3637862 -0.1201537 0.245636 0.3637862 -0.1409607 0.245636 0.3637862 -0.1678172 0.245636 0.3637862 -0.1950164 0.245636 0.3637862 -0.2210581 0.245636 0.3637862 -0.245636 0.245636 0.3637862 -0.2686816 0.245636 0.3637862 -0.2902431 0.245636 0.3637862 -0.3104189 0.245636 0.3637862 -0.3293248 0.245636 0.3637862 -0.3470774 0.245636 0.3637862 -0.3637862 0.245636 0.3637862 -0.3795513 0.245636 0.3637862 -0.3944623 0.245636 0.3637862 -0.4085988 0.245636 0.3637862 -0.4220313 0.245636 0.3637862 -0.4348222 0.245636 0.3637862 -0.4470264 0.245636 0.3637862 -0.4586928 0.245636 0.3637862 -0.4698649 0.245636 0.3637862 -0.4805811 0.245636 0.3637862 -0.490876 0.245636 0.3637862 -0.5007803 0.245636 0.3637862 -0.510322 0.245636 0.3637862 -0.5195258 0.245636 0.3637862 -0.5284142 0.245636 0.3637862 -0.5370079 0.245636 0.3637862 -0.5453253 0.245636 0.3637862 -0.5533834 0.245636 0.3637862 -0.5611974 0.245636 0.3637862 -0.5687816 0.245636 0.3637862 -0.092819 0.2686816 0.3637862 -0.1056428 0.2686816 0.3637862 -0.1201537 0.2686816 0.3637862 -0.1409607 0.2686816 0.3637862 -0.1678172 0.2686816 0.3637862 -0.1950164 0.2686816 0.3637862 -0.2210581 0.2686816 0.3637862 -0.245636 0.2686816 0.3637862 -0.2686816 0.2686816 0.3637862 -0.2902431 0.2686816 0.3637862 -0.3104189 0.2686816 0.3637862 -0.3293248 0.2686816 0.3637862 -0.3470774 0.2686816 0.3637862 -0.3637862 0.2686816 0.3637862 -0.3795513 0.2686816 0.3637862 -0.3944623 0.2686816 0.3637862 -0.4085988 0.2686816 0.3637862 -0.4220313 0.2686816 0.3637862 -0.4348222 0.2686816 0.3637862 -0.4470264 0.2686816 0.3637862 -0.4586928 0.2686816 0.3637862 -0.4698649 0.2686816 0.3637862 -0.4805811 0.2686816 0.3637862 -0.490876 0.2686816 0.3637862 -0.5007803 0.2686816 0.3637862 -0.510322 0.2686816 0.3637862 -0.5195258 0.2686816 0.3637862 -0.5284142 0.2686816 0.3637862 -0.5370079 0.2686816 0.3637862 -0.5453253 0.2686816 0.3637862 -0.5533834 0.2686816 0.3637862 -0.5611974 0.2686816 0.3637862 -0.5687816 0.2686816 0.3637862 -0.092819 0.2902431 0.3637862 -0.1056428 0.2902431 0.3637862 -0.1201537 0.2902431 0.3637862 -0.1409607 0.2902431 0.3637862 -0.1678172 0.2902431 0.3637862 -0.1950164 0.2902431 0.3637862 -0.2210581 0.2902431 0.3637862 -0.245636 0.2902431 0.3637862 -0.2686816 0.2902431 0.3637862 -0.2902431 0.2902431 0.3637862 -0.3104189 0.2902431 0.3637862 -0.3293248 0.2902431 0.3637862 -0.3470774 0.2902431 0.3637862 -0.3637862 0.2902431 0.3637862 -0.3795513 0.2902431 0.3637862 -0.3944623 0.2902431 0.3637862 -0.4085988 0.2902431 0.3637862 -0.4220313 0.2902431 0.3637862 -0.4348222 0.2902431 0.3637862 -0.4470264 0.2902431 0.3637862 -0.4586928 0.2902431 0.3637862 -0.4698649 0.2902431 0.3637862 -0.4805811 0.2902431 0.3637862 -0.490876 0.2902431 0.3637862 -0.5007803 0.2902431 0.3637862 -0.510322 0.2902431 0.3637862 -0.5195258 0.2902431 0.3637862 -0.5284142 0.2902431 0.3637862 -0.5370079 0.2902431 0.3637862 -0.5453253 0.2902431 0.3637862 -0.5533834 0.2902431 0.3637862 -0.5611974 0.2902431 0.3637862 -0.5687816 0.2902431 0.3637862 -0.092819 0.3104189 0.3637862 -0.1056428 0.3104189 0.3637862 -0.1201537 0.3104189 0.3637862 -0.1409607 0.3104189 0.3637862 -0.1678172 0.3104189 0.3637862 -0.1950164 0.3104189 0.3637862 -0.2210581 0.3104189 0.3637862 -0.245636 0.3104189 0.3637862 -0.2686816 0.3104189 0.3637862 -0.2902431 0.3104189 0.3637862 -0.3104189 0.3104189 0.3637862 -0.3293248 0.3104189 0.3637862 -0.3470774 0.3104189 0.3637862 -0.3637862 0.3104189 0.3637862 -0.3795513 0.3104189 0.3637862 -0.3944623 0.3104189 0.3637862 -0.4085988 0.3104189 0.3637862 -0.4220313 0.3104189 0.3637862 -0.4348222 0.3104189 0.3637862 -0.4470264 0.3104189 0.3637862 -0.4586928 0.3104189 0.3637862 -0.4698649 0.3104189 0.3637862 -0.4805811 0.3104189 0.3637862 -0.490876 0.3104189 0.3637862 -0.5007803 0.3104189 0.3637862 -0.510322 0.3104189 0.3637862 -0.5195258 0.3104189 0.3637862 -0.5284142 0.3104189 0.3637862 -0.5370079 0.3104189 0.3637862 -0.5453253 0.3104189 0.3637862 -0.5533834 0.3104189 0.3637862 -0.5611974 0.3104189 0.3637862 -0.5687816 0.3104189 0.3637862 -0.092819 0.3293248 0.3637862 -0.1056428 0.3293248 0.3637862 -0.1201537 0.3293248 0.3637862 -0.1409607 0.3293248 0.3637862 -0.1678172 0.3293248 0.3637862 -0.1950164 0.3293248 0.3637862 -0.2210581 0.3293248 0.3637862 -0.245636 0.3293248 0.3637862 -0.2686816 0.3293248 0.3637862 -0.2902431 0.3293248 0.3637862 -0.3104189 0.3293248 0.3637862 -0.3293248 0.3293248 0.3637862 -0.3470774 0.3293248 0.3637862 -0.3637862 0.3293248 0.3637862 -0.3795513 0.3293248 0.3637862 -0.3944623 0.3293248 0.3637862 -0.4085988 0.3293248 0.3637862 -0.4220313 0.3293248 0.3637862 -0.4348222 0.3293248 0.3637862 -0.4470264 0.3293248 0.3637862 -0.4586928 0.3293248 0.3637862 -0.4698649 0.3293248 0.3637862 -0.4805811 0.3293248 0.3637862 -0.490876 0.3293248 0.3637862 -0.5007803 0.3293248 0.3637862 -0.510322 0.3293248 0.3637862 -0.5195258 0.3293248 0.3637862 -0.5284142 0.3293248 0.3637862 -0.5370079 0.3293248 0.3637862 -0.5453253 0.3293248 0.3637862 -0.5533834 0.3293248 0.3637862 -0.5611974 0.3293248 0.3637862 -0.5687816 0.3293248 0.3637862 -0.092819 0.3470774 0.3637862 -0.1056428 0.3470774 0.3637862 -0.1201537 0.3470774 0.3637862 -0.1409607 0.3470774 0.3637862 -0.1678172 0.3470774 0.3637862 -0.1950164 0.3470774 0.3637862 -0.2210581 0.3470774 0.3637862 -0.245636 0.3470774 0.3637862 -0.2686816 0.3470774 0.3637862 -0.2902431 0.3470774 0.3637862 -0.3104189 0.3470774 0.3637862 -0.3293248 0.3470774 0.3637862 -0.3470774 0.3470774 0.3637862 -0.3637862 0.3470774 0.3637862 -0.3795513 0.3470774 0.3637862 -0.3944623 0.3470774 0.3637862 -0.4085988 0.3470774 0.3637862 -0.4220313 0.3470774 0.3637862 -0.4348222 0.3470774 0.3637862 -0.4470264 0.3470774 0.3637862 -0.4586928 0.3470774 0.3637862 -0.4698649 0.3470774 0.3637862 -0.4805811 0.3470774 0.3637862 -0.490876 0.3470774 0.3637862 -0.5007803 0.3470774 0.3637862 -0.510322 0.3470774 0.3637862 -0.5195258 0.3470774 0.3637862 -0.5284142 0.3470774 0.3637862 -0.5370079 0.3470774 0.3637862 -0.5453253 0.3470774 0.3637862 -0.5533834 0.3470774 0.3637862 -0.5611974 0.3470774 0.3637862 -0.5687816 0.3470774 0.3637862 -0.092819 0.3637862 0.3637862 -0.1056428 0.3637862 0.3637862 -0.1201537 0.3637862 0.3637862 -0.1409607 0.3637862 0.3637862 -0.1678172 0.3637862 0.3637862 -0.1950164 0.3637862 0.3637862 -0.2210581 0.3637862 0.3637862 -0.245636 0.3637862 0.3637862 -0.2686816 0.3637862 0.3637862 -0.2902431 0.3637862 0.3637862 -0.3104189 0.3637862 0.3637862 -0.3293248 0.3637862 0.3637862 -0.3470774 0.3637862 0.3637862 -0.3637862 0.3637862 0.3637862 -0.3795513 0.3637862 0.3637862 -0.3944623 0.3637862 0.3637862 -0.4085988 0.3637862 0.3637862 -0.4220313 0.3637862 0.3637862 -0.4348222 0.3637862 0.3637862 -0.4470264 0.3637862 0.3637862 -0.4586928 0.3637862 0.3637862 -0.4698649 0.3637862 0.3637862 -0.4805811 0.3637862 0.3637862 -0.490876 0.3637862 0.3637862 -0.5007803 0.3637862 0.3637862 -0.510322 0.3637862 0.3637862 -0.5195258 0.3637862 0.3637862 -0.5284142 0.3637862 0.3637862 -0.5370079 0.3637862 0.3637862 -0.5453253 0.3637862 0.3637862 -0.5533834 0.3637862 0.3637862 -0.5611974 0.3637862 0.3637862 -0.5687816 0.3637862 0.3637862 -0.092819 0.3795513 0.3637862 -0.1056428 0.3795513 0.3637862 -0.1201537 0.3795513 0.3637862 -0.1409607 0.3795513 0.3637862 -0.1678172 0.3795513 0.3637862 -0.1950164 0.3795513 0.3637862 -0.2210581 0.3795513 0.3637862 -0.245636 0.3795513 0.3637862 -0.2686816 0.3795513 0.3637862 -0.2902431 0.3795513 0.3637862 -0.3104189 0.3795513 0.3637862 -0.3293248 0.3795513 0.3637862 -0.3470774 0.3795513 0.3637862 -0.3637862 0.3795513 0.3637862 -0.3795513 0.3795513 0.3637862 -0.3944623 0.3795513 0.3637862 -0.4085988 0.3795513 0.3637862 -0.4220313 0.3795513 0.3637862 -0.4348222 0.3795513 0.3637862 -0.4470264 0.3795513 0.3637862 -0.4586928 0.3795513 0.3637862 -0.4698649 0.3795513 0.3637862 -0.4805811 0.3795513 0.3637862 -0.490876 0.3795513 0.3637862 -0.5007803 0.3795513 0.3637862 -0.510322 0.3795513 0.3637862 -0.5195258 0.3795513 0.3637862 -0.5284142 0.3795513 0.3637862 -0.5370079 0.3795513 0.3637862 -0.5453253 0.3795513 0.3637862 -0.5533834 0.3795513 0.3637862 -0.5611974 0.3795513 0.3637862 -0.5687816 0.3795513 0.3637862 -0.092819 0.3944623 0.3637862 -0.1056428 0.3944623 0.3637862 -0.1201537 0.3944623 0.3637862 -0.1409607 0.3944623 0.3637862 -0.1678172 0.3944623 0.3637862 -0.1950164 0.3944623 0.3637862 -0.2210581 0.3944623 0.3637862 -0.245636 0.3944623 0.3637862 -0.2686816 0.3944623 0.3637862 -0.2902431 0.3944623 0.3637862 -0.3104189 0.3944623 0.3637862 -0.3293248 0.3944623 0.3637862 -0.3470774 0.3944623 0.3637862 -0.3637862 0.3944623 0.3637862 -0.3795513 0.3944623 0.3637862 -0.3944623 0.3944623 0.3637862 -0.4085988 0.3944623 0.3637862 -0.4220313 0.3944623 0.3637862 -0.4348222 0.3944623 0.3637862 -0.4470264 0.3944623 0.3637862 -0.4586928 0.3944623 0.3637862 -0.4698649 0.3944623 0.3637862 -0.4805811 0.3944623 0.3637862 -0.490876 0.3944623 0.3637862 -0.5007803 0.3944623 0.3637862 -0.510322 0.3944623 0.3637862 -0.5195258 0.3944623 0.3637862 -0.5284142 0.3944623 0.3637862 -0.5370079 0.3944623 0.3637862 -0.5453253 0.3944623 0.3637862 -0.5533834 0.3944623 0.3637862 -0.5611974 0.3944623 0.3637862 -0.5687816 0.3944623 0.3637862 -0.092819 0.4085988 0.3637862 -0.1056428 0.4085988 0.3637862 -0.1201537 0.4085988 0.3637862 -0.1409607 0.4085988 0.3637862 -0.1678172 0.4085988 0.3637862 -0.1950164 0.4085988 0.3637862 -0.2210581 0.4085988 0.3637862 -0.245636 0.4085988 0.3637862 -0.2686816 0.4085988 0.3637862 -0.2902431 0.4085988 0.3637862 -0.3104189 0.4085988 0.3637862 -0.3293248 0.4085988 0.3637862 -0.3470774 0.4085988 0.3637862 -0.3637862 0.4085988 0.3637862 -0.3795513 0.4085988 0.3637862 -0.3944623 0.4085988 0.3637862 -0.4085988 0.4085988 0.3637862 -0.4220313 0.4085988 0.3637862 -0.4348222 0.4085988 0.3637862 -0.4470264 0.4085988 0.3637862 -0.4586928 0.4085988 0.3637862 -0.4698649 0.4085988 0.3637862 -0.4805811 0.4085988 0.3637862 -0.490876 0.4085988 0.3637862 -0.5007803 0.4085988 0.3637862 -0.510322 0.4085988 0.3637862 -0.5195258 0.4085988 0.3637862 -0.5284142 0.4085988 0.3637862 -0.5370079 0.4085988 0.3637862 -0.5453253 0.4085988 0.3637862 -0.5533834 0.4085988 0.3637862 -0.5611974 0.4085988 0.3637862 -0.5687816 0.4085988 0.3637862 -0.092819 0.4220313 0.3637862 -0.1056428 0.4220313 0.3637862 -0.1201537 0.4220313 0.3637862 -0.1409607 0.4220313 0.3637862 -0.1678172 0.4220313 0.3637862 -0.1950164 0.4220313 0.3637862 -0.2210581 0.4220313 0.3637862 -0.245636 0.4220313 0.3637862 -0.2686816 0.4220313 0.3637862 -0.2902431 0.4220313 0.3637862 -0.3104189 0.4220313 0.3637862 -0.3293248 0.4220313 0.3637862 -0.3470774 0.4220313 0.3637862 -0.3637862 0.4220313 0.3637862 -0.3795513 0.4220313 0.3637862 -0.3944623 0.4220313 0.3637862 -0.4085988 0.4220313 0.3637862 -0.4220313 0.4220313 0.3637862 -0.4348222 0.4220313 0.3637862 -0.4470264 0.4220313 0.3637862 -0.4586928 0.4220313 0.3637862 -0.4698649 0.4220313 0.3637862 -0.4805811 0.4220313 0.3637862 -0.490876 0.4220313 0.3637862 -0.5007803 0.4220313 0.3637862 -0.510322 0.4220313 0.3637862 -0.5195258 0.4220313 0.3637862 -0.5284142 0.4220313 0.3637862 -0.5370079 0.4220313 0.3637862 -0.5453253 0.4220313 0.3637862 -0.5533834 0.4220313 0.3637862 -0.5611974 0.4220313 0.3637862 -0.5687816 0.4220313 0.3637862 -0.092819 0.4348222 0.3637862 -0.1056428 0.4348222 0.3637862 -0.1201537 0.4348222 0.3637862 -0.1409607 0.4348222 0.3637862 -0.1678172 0.4348222 0.3637862 -0.1950164 0.4348222 0.3637862 -0.2210581 0.4348222 0.3637862 -0.245636 0.4348222 0.3637862 -0.2686816 0.4348222 0.3637862 -0.2902431 0.4348222 0.3637862 -0.3104189 0.4348222 0.3637862 -0.3293248 0.4348222 0.3637862 -0.3470774 0.4348222 0.3637862 -0.3637862 0.4348222 0.3637862 -0.3795513 0.4348222 0.3637862 -0.3944623 0.4348222 0.3637862 -0.4085988 0.4348222 0.3637862 -0.4220313 0.4348222 0.3637862 -0.4348222 0.4348222 0.3637862 -0.4470264 0.4348222 0.3637862 -0.4586928 0.4348222 0.3637862 -0.4698649 0.4348222 0.3637862 -0.4805811 0.4348222 0.3637862 -0.490876 0.4348222 0.3637862 -0.5007803 0.4348222 0.3637862 -0.510322 0.4348222 0.3637862 -0.5195258 0.4348222 0.3637862 -0.5284142 0.4348222 0.3637862 -0.5370079 0.4348222 0.3637862 -0.5453253 0.4348222 0.3637862 -0.5533834 0.4348222 0.3637862 -0.5611974 0.4348222 0.3637862 -0.5687816 0.4348222 0.3637862 -0.092819 0.4470264 0.3637862 -0.1056428 0.4470264 0.3637862 -0.1201537 0.4470264 0.3637862 -0.1409607 0.4470264 0.3637862 -0.1678172 0.4470264 0.3637862 -0.1950164 0.4470264 0.3637862 -0.2210581 0.4470264 0.3637862 -0.245636 0.4470264 0.3637862 -0.2686816 0.4470264 0.3637862 -0.2902431 0.4470264 0.3637862 -0.3104189 0.4470264 0.3637862 -0.3293248 0.4470264 0.3637862 -0.3470774 0.4470264 0.3637862 -0.3637862 0.4470264 0.3637862 -0.3795513 0.4470264 0.3637862 -0.3944623 0.4470264 0.3637862 -0.4085988 0.4470264 0.3637862 -0.4220313 0.4470264 0.3637862 -0.4348222 0.4470264 0.3637862 -0.4470264 0.4470264 0.3637862 -0.4586928 0.4470264 0.3637862 -0.4698649 0.4470264 0.3637862 -0.4805811 0.4470264 0.3637862 -0.490876 0.4470264 0.3637862 -0.5007803 0.4470264 0.3637862 -0.510322 0.4470264 0.3637862 -0.5195258 0.4470264 0.3637862 -0.5284142 0.4470264 0.3637862 -0.5370079 0.4470264 0.3637862 -0.5453253 0.4470264 0.3637862 -0.5533834 0.4470264 0.3637862 -0.5611974 0.4470264 0.3637862 -0.5687816 0.4470264 0.3637862 -0.092819 0.4586928 0.3637862 -0.1056428 0.4586928 0.3637862 -0.1201537 0.4586928 0.3637862 -0.1409607 0.4586928 0.3637862 -0.1678172 0.4586928 0.3637862 -0.1950164 0.4586928 0.3637862 -0.2210581 0.4586928 0.3637862 -0.245636 0.4586928 0.3637862 -0.2686816 0.4586928 0.3637862 -0.2902431 0.4586928 0.3637862 -0.3104189 0.4586928 0.3637862 -0.3293248 0.4586928 0.3637862 -0.3470774 0.4586928 0.3637862 -0.3637862 0.4586928 0.3637862 -0.3795513 0.4586928 0.3637862 -0.3944623 0.4586928 0.3637862 -0.4085988 0.4586928 0.3637862 -0.4220313 0.4586928 0.3637862 -0.4348222 0.4586928 0.3637862 -0.4470264 0.4586928 0.3637862 -0.4586928 0.4586928 0.3637862 -0.4698649 0.4586928 0.3637862 -0.4805811 0.4586928 0.3637862 -0.490876 0.4586928 0.3637862 -0.5007803 0.4586928 0.3637862 -0.510322 0.4586928 0.3637862 -0.5195258 0.4586928 0.3637862 -0.5284142 0.4586928 0.3637862 -0.5370079 0.4586928 0.3637862 -0.5453253 0.4586928 0.3637862 -0.5533834 0.4586928 0.3637862 -0.5611974 0.4586928 0.3637862 -0.5687816 0.4586928 0.3637862 -0.092819 0.4698649 0.3637862 -0.1056428 0.4698649 0.3637862 -0.1201537 0.4698649 0.3637862 -0.1409607 0.4698649 0.3637862 -0.1678172 0.4698649 0.3637862 -0.1950164 0.4698649 0.3637862 -0.2210581 0.4698649 0.3637862 -0.245636 0.4698649 0.3637862 -0.2686816 0.4698649 0.3637862 -0.2902431 0.4698649 0.3637862 -0.3104189 0.4698649 0.3637862 -0.3293248 0.4698649 0.3637862 -0.3470774 0.4698649 0.3637862 -0.3637862 0.4698649 0.3637862 -0.3795513 0.4698649 0.3637862 -0.3944623 0.4698649 0.3637862 -0.4085988 0.4698649 0.3637862 -0.4220313 0.4698649 0.3637862 -0.4348222 0.4698649 0.3637862 -0.4470264 0.4698649 0.3637862 -0.4586928 0.4698649 0.3637862 -0.4698649 0.4698649 0.3637862 -0.4805811 0.4698649 0.3637862 -0.490876 0.4698649 0.3637862 -0.5007803 0.4698649 0.3637862 -0.510322 0.4698649 0.3637862 -0.5195258 0.4698649 0.3637862 -0.5284142 0.4698649 0.3637862 -0.5370079 0.4698649 0.3637862 -0.5453253 0.4698649 0.3637862 -0.5533834 0.4698649 0.3637862 -0.5611974 0.4698649 0.3637862 -0.5687816 0.4698649 0.3637862 -0.092819 0.4805811 0.3637862 -0.1056428 0.4805811 0.3637862 -0.1201537 0.4805811 0.3637862 -0.1409607 0.4805811 0.3637862 -0.1678172 0.4805811 0.3637862 -0.1950164 0.4805811 0.3637862 -0.2210581 0.4805811 0.3637862 -0.245636 0.4805811 0.3637862 -0.2686816 0.4805811 0.3637862 -0.2902431 0.4805811 0.3637862 -0.3104189 0.4805811 0.3637862 -0.3293248 0.4805811 0.3637862 -0.3470774 0.4805811 0.3637862 -0.3637862 0.4805811 0.3637862 -0.3795513 0.4805811 0.3637862 -0.3944623 0.4805811 0.3637862 -0.4085988 0.4805811 0.3637862 -0.4220313 0.4805811 0.3637862 -0.4348222 0.4805811 0.3637862 -0.4470264 0.4805811 0.3637862 -0.4586928 0.4805811 0.3637862 -0.4698649 0.4805811 0.3637862 -0.4805811 0.4805811 0.3637862 -0.490876 0.4805811 0.3637862 -0.5007803 0.4805811 0.3637862 -0.510322 0.4805811 0.3637862 -0.5195258 0.4805811 0.3637862 -0.5284142 0.4805811 0.3637862 -0.5370079 0.4805811 0.3637862 -0.5453253 0.4805811 0.3637862 -0.5533834 0.4805811 0.3637862 -0.5611974 0.4805811 0.3637862 -0.5687816 0.4805811 0.3637862 -0.092819 0.490876 0.3637862 -0.1056428 0.490876 0.3637862 -0.1201537 0.490876 0.3637862 -0.1409607 0.490876 0.3637862 -0.1678172 0.490876 0.3637862 -0.1950164 0.490876 0.3637862 -0.2210581 0.490876 0.3637862 -0.245636 0.490876 0.3637862 -0.2686816 0.490876 0.3637862 -0.2902431 0.490876 0.3637862 -0.3104189 0.490876 0.3637862 -0.3293248 0.490876 0.3637862 -0.3470774 0.490876 0.3637862 -0.3637862 0.490876 0.3637862 -0.3795513 0.490876 0.3637862 -0.3944623 0.490876 0.3637862 -0.4085988 0.490876 0.3637862 -0.4220313 0.490876 0.3637862 -0.4348222 0.490876 0.3637862 -0.4470264 0.490876 0.3637862 -0.4586928 0.490876 0.3637862 -0.4698649 0.490876 0.3637862 -0.4805811 0.490876 0.3637862 -0.490876 0.490876 0.3637862 -0.5007803 0.490876 0.3637862 -0.510322 0.490876 0.3637862 -0.5195258 0.490876 0.3637862 -0.5284142 0.490876 0.3637862 -0.5370079 0.490876 0.3637862 -0.5453253 0.490876 0.3637862 -0.5533834 0.490876 0.3637862 -0.5611974 0.490876 0.3637862 -0.5687816 0.490876 0.3637862 -0.092819 0.5007803 0.3637862 -0.1056428 0.5007803 0.3637862 -0.1201537 0.5007803 0.3637862 -0.1409607 0.5007803 0.3637862 -0.1678172 0.5007803 0.3637862 -0.1950164 0.5007803 0.3637862 -0.2210581 0.5007803 0.3637862 -0.245636 0.5007803 0.3637862 -0.2686816 0.5007803 0.3637862 -0.2902431 0.5007803 0.3637862 -0.3104189 0.5007803 0.3637862 -0.3293248 0.5007803 0.3637862 -0.3470774 0.5007803 0.3637862 -0.3637862 0.5007803 0.3637862 -0.3795513 0.5007803 0.3637862 -0.3944623 0.5007803 0.3637862 -0.4085988 0.5007803 0.3637862 -0.4220313 0.5007803 0.3637862 -0.4348222 0.5007803 0.3637862 -0.4470264 0.5007803 0.3637862 -0.4586928 0.5007803 0.3637862 -0.4698649 0.5007803 0.3637862 -0.4805811 0.5007803 0.3637862 -0.490876 0.5007803 0.3637862 -0.5007803 0.5007803 0.3637862 -0.510322 0.5007803 0.3637862 -0.5195258 0.5007803 0.3637862 -0.5284142 0.5007803 0.3637862 -0.5370079 0.5007803 0.3637862 -0.5453253 0.5007803 0.3637862 -0.5533834 0.5007803 0.3637862 -0.5611974 0.5007803 0.3637862 -0.5687816 0.5007803 0.3637862 -0.092819 0.510322 0.3637862 -0.1056428 0.510322 0.3637862 -0.1201537 0.510322 0.3637862 -0.1409607 0.510322 0.3637862 -0.1678172 0.510322 0.3637862 -0.1950164 0.510322 0.3637862 -0.2210581 0.510322 0.3637862 -0.245636 0.510322 0.3637862 -0.2686816 0.510322 0.3637862 -0.2902431 0.510322 0.3637862 -0.3104189 0.510322 0.3637862 -0.3293248 0.510322 0.3637862 -0.3470774 0.510322 0.3637862 -0.3637862 0.510322 0.3637862 -0.3795513 0.510322 0.3637862 -0.3944623 0.510322 0.3637862 -0.4085988 0.510322 0.3637862 -0.4220313 0.510322 0.3637862 -0.4348222 0.510322 0.3637862 -0.4470264 0.510322 0.3637862 -0.4586928 0.510322 0.3637862 -0.4698649 0.510322 0.3637862 -0.4805811 0.510322 0.3637862 -0.490876 0.510322 0.3637862 -0.5007803 0.510322 0.3637862 -0.510322 0.510322 0.3637862 -0.5195258 0.510322 0.3637862 -0.5284142 0.510322 0.3637862 -0.5370079 0.510322 0.3637862 -0.5453253 0.510322 0.3637862 -0.5533834 0.510322 0.3637862 -0.5611974 0.510322 0.3637862 -0.5687816 0.510322 0.3637862 -0.092819 0.5195258 0.3637862 -0.1056428 0.5195258 0.3637862 -0.1201537 0.5195258 0.3637862 -0.1409607 0.5195258 0.3637862 -0.1678172 0.5195258 0.3637862 -0.1950164 0.5195258 0.3637862 -0.2210581 0.5195258 0.3637862 -0.245636 0.5195258 0.3637862 -0.2686816 0.5195258 0.3637862 -0.2902431 0.5195258 0.3637862 -0.3104189 0.5195258 0.3637862 -0.3293248 0.5195258 0.3637862 -0.3470774 0.5195258 0.3637862 -0.3637862 0.5195258 0.3637862 -0.3795513 0.5195258 0.3637862 -0.3944623 0.5195258 0.3637862 -0.4085988 0.5195258 0.3637862 -0.4220313 0.5195258 0.3637862 -0.4348222 0.5195258 0.3637862 -0.4470264 0.5195258 0.3637862 -0.4586928 0.5195258 0.3637862 -0.4698649 0.5195258 0.3637862 -0.4805811 0.5195258 0.3637862 -0.490876 0.5195258 0.3637862 -0.5007803 0.5195258 0.3637862 -0.510322 0.5195258 0.3637862 -0.5195258 0.5195258 0.3637862 -0.5284142 0.5195258 0.3637862 -0.5370079 0.5195258 0.3637862 -0.5453253 0.5195258 0.3637862 -0.5533834 0.5195258 0.3637862 -0.5611974 0.5195258 0.3637862 -0.5687816 0.5195258 0.3637862 -0.092819 0.5284142 0.3637862 -0.1056428 0.5284142 0.3637862 -0.1201537 0.5284142 0.3637862 -0.1409607 0.5284142 0.3637862 -0.1678172 0.5284142 0.3637862 -0.1950164 0.5284142 0.3637862 -0.2210581 0.5284142 0.3637862 -0.245636 0.5284142 0.3637862 -0.2686816 0.5284142 0.3637862 -0.2902431 0.5284142 0.3637862 -0.3104189 0.5284142 0.3637862 -0.3293248 0.5284142 0.3637862 -0.3470774 0.5284142 0.3637862 -0.3637862 0.5284142 0.3637862 -0.3795513 0.5284142 0.3637862 -0.3944623 0.5284142 0.3637862 -0.4085988 0.5284142 0.3637862 -0.4220313 0.5284142 0.3637862 -0.4348222 0.5284142 0.3637862 -0.4470264 0.5284142 0.3637862 -0.4586928 0.5284142 0.3637862 -0.4698649 0.5284142 0.3637862 -0.4805811 0.5284142 0.3637862 -0.490876 0.5284142 0.3637862 -0.5007803 0.5284142 0.3637862 -0.510322 0.5284142 0.3637862 -0.5195258 0.5284142 0.3637862 -0.5284142 0.5284142 0.3637862 -0.5370079 0.5284142 0.3637862 -0.5453253 0.5284142 0.3637862 -0.5533834 0.5284142 0.3637862 -0.5611974 0.5284142 0.3637862 -0.5687816 0.5284142 0.3637862 -0.092819 0.5370079 0.3637862 -0.1056428 0.5370079 0.3637862 -0.1201537 0.5370079 0.3637862 -0.1409607 0.5370079 0.3637862 -0.1678172 0.5370079 0.3637862 -0.1950164 0.5370079 0.3637862 -0.2210581 0.5370079 0.3637862 -0.245636 0.5370079 0.3637862 -0.2686816 0.5370079 0.3637862 -0.2902431 0.5370079 0.3637862 -0.3104189 0.5370079 0.3637862 -0.3293248 0.5370079 0.3637862 -0.3470774 0.5370079 0.3637862 -0.3637862 0.5370079 0.3637862 -0.3795513 0.5370079 0.3637862 -0.3944623 0.5370079 0.3637862 -0.4085988 0.5370079 0.3637862 -0.4220313 0.5370079 0.3637862 -0.4348222 0.5370079 0.3637862 -0.4470264 0.5370079 0.3637862 -0.4586928 0.5370079 0.3637862 -0.4698649 0.5370079 0.3637862 -0.4805811 0.5370079 0.3637862 -0.490876 0.5370079 0.3637862 -0.5007803 0.5370079 0.3637862 -0.510322 0.5370079 0.3637862 -0.5195258 0.5370079 0.3637862 -0.5284142 0.5370079 0.3637862 -0.5370079 0.5370079 0.3637862 -0.5453253 0.5370079 0.3637862 -0.5533834 0.5370079 0.3637862 -0.5611974 0.5370079 0.3637862 -0.5687816 0.5370079 0.3637862 -0.092819 0.5453253 0.3637862 -0.1056428 0.5453253 0.3637862 -0.1201537 0.5453253 0.3637862 -0.1409607 0.5453253 0.3637862 -0.1678172 0.5453253 0.3637862 -0.1950164 0.5453253 0.3637862 -0.2210581 0.5453253 0.3637862 -0.245636 0.5453253 0.3637862 -0.2686816 0.5453253 0.3637862 -0.2902431 0.5453253 0.3637862 -0.3104189 0.5453253 0.3637862 -0.3293248 0.5453253 0.3637862 -0.3470774 0.5453253 0.3637862 -0.3637862 0.5453253 0.3637862 -0.3795513 0.5453253 0.3637862 -0.3944623 0.5453253 0.3637862 -0.4085988 0.5453253 0.3637862 -0.4220313 0.5453253 0.3637862 -0.4348222 0.5453253 0.3637862 -0.4470264 0.5453253 0.3637862 -0.4586928 0.5453253 0.3637862 -0.4698649 0.5453253 0.3637862 -0.4805811 0.5453253 0.3637862 -0.490876 0.5453253 0.3637862 -0.5007803 0.5453253 0.3637862 -0.510322 0.5453253 0.3637862 -0.5195258 0.5453253 0.3637862 -0.5284142 0.5453253 0.3637862 -0.5370079 0.5453253 0.3637862 -0.5453253 0.5453253 0.3637862 -0.5533834 0.5453253 0.3637862 -0.5611974 0.5453253 0.3637862 -0.5687816 0.5453253 0.3637862 -0.092819 0.5533834 0.3637862 -0.1056428 0.5533834 0.3637862 -0.1201537 0.5533834 0.3637862 -0.1409607 0.5533834 0.3637862 -0.1678172 0.5533834 0.3637862 -0.1950164 0.5533834 0.3637862 -0.2210581 0.5533834 0.3637862 -0.245636 0.5533834 0.3637862 -0.2686816 0.5533834 0.3637862 -0.2902431 0.5533834 0.3637862 -0.3104189 0.5533834 0.3637862 -0.3293248 0.5533834 0.3637862 -0.3470774 0.5533834 0.3637862 -0.3637862 0.5533834 0.3637862 -0.3795513 0.5533834 0.3637862 -0.3944623 0.5533834 0.3637862 -0.4085988 0.5533834 0.3637862 -0.4220313 0.5533834 0.3637862 -0.4348222 0.5533834 0.3637862 -0.4470264 0.5533834 0.3637862 -0.4586928 0.5533834 0.3637862 -0.4698649 0.5533834 0.3637862 -0.4805811 0.5533834 0.3637862 -0.490876 0.5533834 0.3637862 -0.5007803 0.5533834 0.3637862 -0.510322 0.5533834 0.3637862 -0.5195258 0.5533834 0.3637862 -0.5284142 0.5533834 0.3637862 -0.5370079 0.5533834 0.3637862 -0.5453253 0.5533834 0.3637862 -0.5533834 0.5533834 0.3637862 -0.5611974 0.5533834 0.3637862 -0.5687816 0.5533834 0.3637862 -0.092819 0.5611974 0.3637862 -0.1056428 0.5611974 0.3637862 -0.1201537 0.5611974 0.3637862 -0.1409607 0.5611974 0.3637862 -0.1678172 0.5611974 0.3637862 -0.1950164 0.5611974 0.3637862 -0.2210581 0.5611974 0.3637862 -0.245636 0.5611974 0.3637862 -0.2686816 0.5611974 0.3637862 -0.2902431 0.5611974 0.3637862 -0.3104189 0.5611974 0.3637862 -0.3293248 0.5611974 0.3637862 -0.3470774 0.5611974 0.3637862 -0.3637862 0.5611974 0.3637862 -0.3795513 0.5611974 0.3637862 -0.3944623 0.5611974 0.3637862 -0.4085988 0.5611974 0.3637862 -0.4220313 0.5611974 0.3637862 -0.4348222 0.5611974 0.3637862 -0.4470264 0.5611974 0.3637862 -0.4586928 0.5611974 0.3637862 -0.4698649 0.5611974 0.3637862 -0.4805811 0.5611974 0.3637862 -0.490876 0.5611974 0.3637862 -0.5007803 0.5611974 0.3637862 -0.510322 0.5611974 0.3637862 -0.5195258 0.5611974 0.3637862 -0.5284142 0.5611974 0.3637862 -0.5370079 0.5611974 0.3637862 -0.5453253 0.5611974 0.3637862 -0.5533834 0.5611974 0.3637862 -0.5611974 0.5611974 0.3637862 -0.5687816 0.5611974 0.3637862 -0.092819 0.5687816 0.3637862 -0.1056428 0.5687816 0.3637862 -0.1201537 0.5687816 0.3637862 -0.1409607 0.5687816 0.3637862 -0.1678172 0.5687816 0.3637862 -0.1950164 0.5687816 0.3637862 -0.2210581 0.5687816 0.3637862 -0.245636 0.5687816 0.3637862 -0.2686816 0.5687816 0.3637862 -0.2902431 0.5687816 0.3637862 -0.3104189 0.5687816 0.3637862 -0.3293248 0.5687816 0.3637862 -0.3470774 0.5687816 0.3637862 -0.3637862 0.5687816 0.3637862 -0.3795513 0.5687816 0.3637862 -0.3944623 0.5687816 0.3637862 -0.4085988 0.5687816 0.3637862 -0.4220313 0.5687816 0.3637862 -0.4348222 0.5687816 0.3637862 -0.4470264 0.5687816 0.3637862 -0.4586928 0.5687816 0.3637862 -0.4698649 0.5687816 0.3637862 -0.4805811 0.5687816 0.3637862 -0.490876 0.5687816 0.3637862 -0.5007803 0.5687816 0.3637862 -0.510322 0.5687816 0.3637862 -0.5195258 0.5687816 0.3637862 -0.5284142 0.5687816 0.3637862 -0.5370079 0.5687816 0.3637862 -0.5453253 0.5687816 0.3637862 -0.5533834 0.5687816 0.3637862 -0.5611974 0.5687816 0.3637862 -0.5687816 0.5687816 0.3637862 -0.092819 0.092819 0.3795513 -0.1056428 0.092819 0.3795513 -0.1201537 0.092819 0.3795513 -0.1409607 0.092819 0.3795513 -0.1678172 0.092819 0.3795513 -0.1950164 0.092819 0.3795513 -0.2210581 0.092819 0.3795513 -0.245636 0.092819 0.3795513 -0.2686816 0.092819 0.3795513 -0.2902431 0.092819 0.3795513 -0.3104189 0.092819 0.3795513 -0.3293248 0.092819 0.3795513 -0.3470774 0.092819 0.3795513 -0.3637862 0.092819 0.3795513 -0.3795513 0.092819 0.3795513 -0.3944623 0.092819 0.3795513 -0.4085988 0.092819 0.3795513 -0.4220313 0.092819 0.3795513 -0.4348222 0.092819 0.3795513 -0.4470264 0.092819 0.3795513 -0.4586928 0.092819 0.3795513 -0.4698649 0.092819 0.3795513 -0.4805811 0.092819 0.3795513 -0.490876 0.092819 0.3795513 -0.5007803 0.092819 0.3795513 -0.510322 0.092819 0.3795513 -0.5195258 0.092819 0.3795513 -0.5284142 0.092819 0.3795513 -0.5370079 0.092819 0.3795513 -0.5453253 0.092819 0.3795513 -0.5533834 0.092819 0.3795513 -0.5611974 0.092819 0.3795513 -0.5687816 0.092819 0.3795513 -0.092819 0.1056428 0.3795513 -0.1056428 0.1056428 0.3795513 -0.1201537 0.1056428 0.3795513 -0.1409607 0.1056428 0.3795513 -0.1678172 0.1056428 0.3795513 -0.1950164 0.1056428 0.3795513 -0.2210581 0.1056428 0.3795513 -0.245636 0.1056428 0.3795513 -0.2686816 0.1056428 0.3795513 -0.2902431 0.1056428 0.3795513 -0.3104189 0.1056428 0.3795513 -0.3293248 0.1056428 0.3795513 -0.3470774 0.1056428 0.3795513 -0.3637862 0.1056428 0.3795513 -0.3795513 0.1056428 0.3795513 -0.3944623 0.1056428 0.3795513 -0.4085988 0.1056428 0.3795513 -0.4220313 0.1056428 0.3795513 -0.4348222 0.1056428 0.3795513 -0.4470264 0.1056428 0.3795513 -0.4586928 0.1056428 0.3795513 -0.4698649 0.1056428 0.3795513 -0.4805811 0.1056428 0.3795513 -0.490876 0.1056428 0.3795513 -0.5007803 0.1056428 0.3795513 -0.510322 0.1056428 0.3795513 -0.5195258 0.1056428 0.3795513 -0.5284142 0.1056428 0.3795513 -0.5370079 0.1056428 0.3795513 -0.5453253 0.1056428 0.3795513 -0.5533834 0.1056428 0.3795513 -0.5611974 0.1056428 0.3795513 -0.5687816 0.1056428 0.3795513 -0.092819 0.1201537 0.3795513 -0.1056428 0.1201537 0.3795513 -0.1201537 0.1201537 0.3795513 -0.1409607 0.1201537 0.3795513 -0.1678172 0.1201537 0.3795513 -0.1950164 0.1201537 0.3795513 -0.2210581 0.1201537 0.3795513 -0.245636 0.1201537 0.3795513 -0.2686816 0.1201537 0.3795513 -0.2902431 0.1201537 0.3795513 -0.3104189 0.1201537 0.3795513 -0.3293248 0.1201537 0.3795513 -0.3470774 0.1201537 0.3795513 -0.3637862 0.1201537 0.3795513 -0.3795513 0.1201537 0.3795513 -0.3944623 0.1201537 0.3795513 -0.4085988 0.1201537 0.3795513 -0.4220313 0.1201537 0.3795513 -0.4348222 0.1201537 0.3795513 -0.4470264 0.1201537 0.3795513 -0.4586928 0.1201537 0.3795513 -0.4698649 0.1201537 0.3795513 -0.4805811 0.1201537 0.3795513 -0.490876 0.1201537 0.3795513 -0.5007803 0.1201537 0.3795513 -0.510322 0.1201537 0.3795513 -0.5195258 0.1201537 0.3795513 -0.5284142 0.1201537 0.3795513 -0.5370079 0.1201537 0.3795513 -0.5453253 0.1201537 0.3795513 -0.5533834 0.1201537 0.3795513 -0.5611974 0.1201537 0.3795513 -0.5687816 0.1201537 0.3795513 -0.092819 0.1409607 0.3795513 -0.1056428 0.1409607 0.3795513 -0.1201537 0.1409607 0.3795513 -0.1409607 0.1409607 0.3795513 -0.1678172 0.1409607 0.3795513 -0.1950164 0.1409607 0.3795513 -0.2210581 0.1409607 0.3795513 -0.245636 0.1409607 0.3795513 -0.2686816 0.1409607 0.3795513 -0.2902431 0.1409607 0.3795513 -0.3104189 0.1409607 0.3795513 -0.3293248 0.1409607 0.3795513 -0.3470774 0.1409607 0.3795513 -0.3637862 0.1409607 0.3795513 -0.3795513 0.1409607 0.3795513 -0.3944623 0.1409607 0.3795513 -0.4085988 0.1409607 0.3795513 -0.4220313 0.1409607 0.3795513 -0.4348222 0.1409607 0.3795513 -0.4470264 0.1409607 0.3795513 -0.4586928 0.1409607 0.3795513 -0.4698649 0.1409607 0.3795513 -0.4805811 0.1409607 0.3795513 -0.490876 0.1409607 0.3795513 -0.5007803 0.1409607 0.3795513 -0.510322 0.1409607 0.3795513 -0.5195258 0.1409607 0.3795513 -0.5284142 0.1409607 0.3795513 -0.5370079 0.1409607 0.3795513 -0.5453253 0.1409607 0.3795513 -0.5533834 0.1409607 0.3795513 -0.5611974 0.1409607 0.3795513 -0.5687816 0.1409607 0.3795513 -0.092819 0.1678172 0.3795513 -0.1056428 0.1678172 0.3795513 -0.1201537 0.1678172 0.3795513 -0.1409607 0.1678172 0.3795513 -0.1678172 0.1678172 0.3795513 -0.1950164 0.1678172 0.3795513 -0.2210581 0.1678172 0.3795513 -0.245636 0.1678172 0.3795513 -0.2686816 0.1678172 0.3795513 -0.2902431 0.1678172 0.3795513 -0.3104189 0.1678172 0.3795513 -0.3293248 0.1678172 0.3795513 -0.3470774 0.1678172 0.3795513 -0.3637862 0.1678172 0.3795513 -0.3795513 0.1678172 0.3795513 -0.3944623 0.1678172 0.3795513 -0.4085988 0.1678172 0.3795513 -0.4220313 0.1678172 0.3795513 -0.4348222 0.1678172 0.3795513 -0.4470264 0.1678172 0.3795513 -0.4586928 0.1678172 0.3795513 -0.4698649 0.1678172 0.3795513 -0.4805811 0.1678172 0.3795513 -0.490876 0.1678172 0.3795513 -0.5007803 0.1678172 0.3795513 -0.510322 0.1678172 0.3795513 -0.5195258 0.1678172 0.3795513 -0.5284142 0.1678172 0.3795513 -0.5370079 0.1678172 0.3795513 -0.5453253 0.1678172 0.3795513 -0.5533834 0.1678172 0.3795513 -0.5611974 0.1678172 0.3795513 -0.5687816 0.1678172 0.3795513 -0.092819 0.1950164 0.3795513 -0.1056428 0.1950164 0.3795513 -0.1201537 0.1950164 0.3795513 -0.1409607 0.1950164 0.3795513 -0.1678172 0.1950164 0.3795513 -0.1950164 0.1950164 0.3795513 -0.2210581 0.1950164 0.3795513 -0.245636 0.1950164 0.3795513 -0.2686816 0.1950164 0.3795513 -0.2902431 0.1950164 0.3795513 -0.3104189 0.1950164 0.3795513 -0.3293248 0.1950164 0.3795513 -0.3470774 0.1950164 0.3795513 -0.3637862 0.1950164 0.3795513 -0.3795513 0.1950164 0.3795513 -0.3944623 0.1950164 0.3795513 -0.4085988 0.1950164 0.3795513 -0.4220313 0.1950164 0.3795513 -0.4348222 0.1950164 0.3795513 -0.4470264 0.1950164 0.3795513 -0.4586928 0.1950164 0.3795513 -0.4698649 0.1950164 0.3795513 -0.4805811 0.1950164 0.3795513 -0.490876 0.1950164 0.3795513 -0.5007803 0.1950164 0.3795513 -0.510322 0.1950164 0.3795513 -0.5195258 0.1950164 0.3795513 -0.5284142 0.1950164 0.3795513 -0.5370079 0.1950164 0.3795513 -0.5453253 0.1950164 0.3795513 -0.5533834 0.1950164 0.3795513 -0.5611974 0.1950164 0.3795513 -0.5687816 0.1950164 0.3795513 -0.092819 0.2210581 0.3795513 -0.1056428 0.2210581 0.3795513 -0.1201537 0.2210581 0.3795513 -0.1409607 0.2210581 0.3795513 -0.1678172 0.2210581 0.3795513 -0.1950164 0.2210581 0.3795513 -0.2210581 0.2210581 0.3795513 -0.245636 0.2210581 0.3795513 -0.2686816 0.2210581 0.3795513 -0.2902431 0.2210581 0.3795513 -0.3104189 0.2210581 0.3795513 -0.3293248 0.2210581 0.3795513 -0.3470774 0.2210581 0.3795513 -0.3637862 0.2210581 0.3795513 -0.3795513 0.2210581 0.3795513 -0.3944623 0.2210581 0.3795513 -0.4085988 0.2210581 0.3795513 -0.4220313 0.2210581 0.3795513 -0.4348222 0.2210581 0.3795513 -0.4470264 0.2210581 0.3795513 -0.4586928 0.2210581 0.3795513 -0.4698649 0.2210581 0.3795513 -0.4805811 0.2210581 0.3795513 -0.490876 0.2210581 0.3795513 -0.5007803 0.2210581 0.3795513 -0.510322 0.2210581 0.3795513 -0.5195258 0.2210581 0.3795513 -0.5284142 0.2210581 0.3795513 -0.5370079 0.2210581 0.3795513 -0.5453253 0.2210581 0.3795513 -0.5533834 0.2210581 0.3795513 -0.5611974 0.2210581 0.3795513 -0.5687816 0.2210581 0.3795513 -0.092819 0.245636 0.3795513 -0.1056428 0.245636 0.3795513 -0.1201537 0.245636 0.3795513 -0.1409607 0.245636 0.3795513 -0.1678172 0.245636 0.3795513 -0.1950164 0.245636 0.3795513 -0.2210581 0.245636 0.3795513 -0.245636 0.245636 0.3795513 -0.2686816 0.245636 0.3795513 -0.2902431 0.245636 0.3795513 -0.3104189 0.245636 0.3795513 -0.3293248 0.245636 0.3795513 -0.3470774 0.245636 0.3795513 -0.3637862 0.245636 0.3795513 -0.3795513 0.245636 0.3795513 -0.3944623 0.245636 0.3795513 -0.4085988 0.245636 0.3795513 -0.4220313 0.245636 0.3795513 -0.4348222 0.245636 0.3795513 -0.4470264 0.245636 0.3795513 -0.4586928 0.245636 0.3795513 -0.4698649 0.245636 0.3795513 -0.4805811 0.245636 0.3795513 -0.490876 0.245636 0.3795513 -0.5007803 0.245636 0.3795513 -0.510322 0.245636 0.3795513 -0.5195258 0.245636 0.3795513 -0.5284142 0.245636 0.3795513 -0.5370079 0.245636 0.3795513 -0.5453253 0.245636 0.3795513 -0.5533834 0.245636 0.3795513 -0.5611974 0.245636 0.3795513 -0.5687816 0.245636 0.3795513 -0.092819 0.2686816 0.3795513 -0.1056428 0.2686816 0.3795513 -0.1201537 0.2686816 0.3795513 -0.1409607 0.2686816 0.3795513 -0.1678172 0.2686816 0.3795513 -0.1950164 0.2686816 0.3795513 -0.2210581 0.2686816 0.3795513 -0.245636 0.2686816 0.3795513 -0.2686816 0.2686816 0.3795513 -0.2902431 0.2686816 0.3795513 -0.3104189 0.2686816 0.3795513 -0.3293248 0.2686816 0.3795513 -0.3470774 0.2686816 0.3795513 -0.3637862 0.2686816 0.3795513 -0.3795513 0.2686816 0.3795513 -0.3944623 0.2686816 0.3795513 -0.4085988 0.2686816 0.3795513 -0.4220313 0.2686816 0.3795513 -0.4348222 0.2686816 0.3795513 -0.4470264 0.2686816 0.3795513 -0.4586928 0.2686816 0.3795513 -0.4698649 0.2686816 0.3795513 -0.4805811 0.2686816 0.3795513 -0.490876 0.2686816 0.3795513 -0.5007803 0.2686816 0.3795513 -0.510322 0.2686816 0.3795513 -0.5195258 0.2686816 0.3795513 -0.5284142 0.2686816 0.3795513 -0.5370079 0.2686816 0.3795513 -0.5453253 0.2686816 0.3795513 -0.5533834 0.2686816 0.3795513 -0.5611974 0.2686816 0.3795513 -0.5687816 0.2686816 0.3795513 -0.092819 0.2902431 0.3795513 -0.1056428 0.2902431 0.3795513 -0.1201537 0.2902431 0.3795513 -0.1409607 0.2902431 0.3795513 -0.1678172 0.2902431 0.3795513 -0.1950164 0.2902431 0.3795513 -0.2210581 0.2902431 0.3795513 -0.245636 0.2902431 0.3795513 -0.2686816 0.2902431 0.3795513 -0.2902431 0.2902431 0.3795513 -0.3104189 0.2902431 0.3795513 -0.3293248 0.2902431 0.3795513 -0.3470774 0.2902431 0.3795513 -0.3637862 0.2902431 0.3795513 -0.3795513 0.2902431 0.3795513 -0.3944623 0.2902431 0.3795513 -0.4085988 0.2902431 0.3795513 -0.4220313 0.2902431 0.3795513 -0.4348222 0.2902431 0.3795513 -0.4470264 0.2902431 0.3795513 -0.4586928 0.2902431 0.3795513 -0.4698649 0.2902431 0.3795513 -0.4805811 0.2902431 0.3795513 -0.490876 0.2902431 0.3795513 -0.5007803 0.2902431 0.3795513 -0.510322 0.2902431 0.3795513 -0.5195258 0.2902431 0.3795513 -0.5284142 0.2902431 0.3795513 -0.5370079 0.2902431 0.3795513 -0.5453253 0.2902431 0.3795513 -0.5533834 0.2902431 0.3795513 -0.5611974 0.2902431 0.3795513 -0.5687816 0.2902431 0.3795513 -0.092819 0.3104189 0.3795513 -0.1056428 0.3104189 0.3795513 -0.1201537 0.3104189 0.3795513 -0.1409607 0.3104189 0.3795513 -0.1678172 0.3104189 0.3795513 -0.1950164 0.3104189 0.3795513 -0.2210581 0.3104189 0.3795513 -0.245636 0.3104189 0.3795513 -0.2686816 0.3104189 0.3795513 -0.2902431 0.3104189 0.3795513 -0.3104189 0.3104189 0.3795513 -0.3293248 0.3104189 0.3795513 -0.3470774 0.3104189 0.3795513 -0.3637862 0.3104189 0.3795513 -0.3795513 0.3104189 0.3795513 -0.3944623 0.3104189 0.3795513 -0.4085988 0.3104189 0.3795513 -0.4220313 0.3104189 0.3795513 -0.4348222 0.3104189 0.3795513 -0.4470264 0.3104189 0.3795513 -0.4586928 0.3104189 0.3795513 -0.4698649 0.3104189 0.3795513 -0.4805811 0.3104189 0.3795513 -0.490876 0.3104189 0.3795513 -0.5007803 0.3104189 0.3795513 -0.510322 0.3104189 0.3795513 -0.5195258 0.3104189 0.3795513 -0.5284142 0.3104189 0.3795513 -0.5370079 0.3104189 0.3795513 -0.5453253 0.3104189 0.3795513 -0.5533834 0.3104189 0.3795513 -0.5611974 0.3104189 0.3795513 -0.5687816 0.3104189 0.3795513 -0.092819 0.3293248 0.3795513 -0.1056428 0.3293248 0.3795513 -0.1201537 0.3293248 0.3795513 -0.1409607 0.3293248 0.3795513 -0.1678172 0.3293248 0.3795513 -0.1950164 0.3293248 0.3795513 -0.2210581 0.3293248 0.3795513 -0.245636 0.3293248 0.3795513 -0.2686816 0.3293248 0.3795513 -0.2902431 0.3293248 0.3795513 -0.3104189 0.3293248 0.3795513 -0.3293248 0.3293248 0.3795513 -0.3470774 0.3293248 0.3795513 -0.3637862 0.3293248 0.3795513 -0.3795513 0.3293248 0.3795513 -0.3944623 0.3293248 0.3795513 -0.4085988 0.3293248 0.3795513 -0.4220313 0.3293248 0.3795513 -0.4348222 0.3293248 0.3795513 -0.4470264 0.3293248 0.3795513 -0.4586928 0.3293248 0.3795513 -0.4698649 0.3293248 0.3795513 -0.4805811 0.3293248 0.3795513 -0.490876 0.3293248 0.3795513 -0.5007803 0.3293248 0.3795513 -0.510322 0.3293248 0.3795513 -0.5195258 0.3293248 0.3795513 -0.5284142 0.3293248 0.3795513 -0.5370079 0.3293248 0.3795513 -0.5453253 0.3293248 0.3795513 -0.5533834 0.3293248 0.3795513 -0.5611974 0.3293248 0.3795513 -0.5687816 0.3293248 0.3795513 -0.092819 0.3470774 0.3795513 -0.1056428 0.3470774 0.3795513 -0.1201537 0.3470774 0.3795513 -0.1409607 0.3470774 0.3795513 -0.1678172 0.3470774 0.3795513 -0.1950164 0.3470774 0.3795513 -0.2210581 0.3470774 0.3795513 -0.245636 0.3470774 0.3795513 -0.2686816 0.3470774 0.3795513 -0.2902431 0.3470774 0.3795513 -0.3104189 0.3470774 0.3795513 -0.3293248 0.3470774 0.3795513 -0.3470774 0.3470774 0.3795513 -0.3637862 0.3470774 0.3795513 -0.3795513 0.3470774 0.3795513 -0.3944623 0.3470774 0.3795513 -0.4085988 0.3470774 0.3795513 -0.4220313 0.3470774 0.3795513 -0.4348222 0.3470774 0.3795513 -0.4470264 0.3470774 0.3795513 -0.4586928 0.3470774 0.3795513 -0.4698649 0.3470774 0.3795513 -0.4805811 0.3470774 0.3795513 -0.490876 0.3470774 0.3795513 -0.5007803 0.3470774 0.3795513 -0.510322 0.3470774 0.3795513 -0.5195258 0.3470774 0.3795513 -0.5284142 0.3470774 0.3795513 -0.5370079 0.3470774 0.3795513 -0.5453253 0.3470774 0.3795513 -0.5533834 0.3470774 0.3795513 -0.5611974 0.3470774 0.3795513 -0.5687816 0.3470774 0.3795513 -0.092819 0.3637862 0.3795513 -0.1056428 0.3637862 0.3795513 -0.1201537 0.3637862 0.3795513 -0.1409607 0.3637862 0.3795513 -0.1678172 0.3637862 0.3795513 -0.1950164 0.3637862 0.3795513 -0.2210581 0.3637862 0.3795513 -0.245636 0.3637862 0.3795513 -0.2686816 0.3637862 0.3795513 -0.2902431 0.3637862 0.3795513 -0.3104189 0.3637862 0.3795513 -0.3293248 0.3637862 0.3795513 -0.3470774 0.3637862 0.3795513 -0.3637862 0.3637862 0.3795513 -0.3795513 0.3637862 0.3795513 -0.3944623 0.3637862 0.3795513 -0.4085988 0.3637862 0.3795513 -0.4220313 0.3637862 0.3795513 -0.4348222 0.3637862 0.3795513 -0.4470264 0.3637862 0.3795513 -0.4586928 0.3637862 0.3795513 -0.4698649 0.3637862 0.3795513 -0.4805811 0.3637862 0.3795513 -0.490876 0.3637862 0.3795513 -0.5007803 0.3637862 0.3795513 -0.510322 0.3637862 0.3795513 -0.5195258 0.3637862 0.3795513 -0.5284142 0.3637862 0.3795513 -0.5370079 0.3637862 0.3795513 -0.5453253 0.3637862 0.3795513 -0.5533834 0.3637862 0.3795513 -0.5611974 0.3637862 0.3795513 -0.5687816 0.3637862 0.3795513 -0.092819 0.3795513 0.3795513 -0.1056428 0.3795513 0.3795513 -0.1201537 0.3795513 0.3795513 -0.1409607 0.3795513 0.3795513 -0.1678172 0.3795513 0.3795513 -0.1950164 0.3795513 0.3795513 -0.2210581 0.3795513 0.3795513 -0.245636 0.3795513 0.3795513 -0.2686816 0.3795513 0.3795513 -0.2902431 0.3795513 0.3795513 -0.3104189 0.3795513 0.3795513 -0.3293248 0.3795513 0.3795513 -0.3470774 0.3795513 0.3795513 -0.3637862 0.3795513 0.3795513 -0.3795513 0.3795513 0.3795513 -0.3944623 0.3795513 0.3795513 -0.4085988 0.3795513 0.3795513 -0.4220313 0.3795513 0.3795513 -0.4348222 0.3795513 0.3795513 -0.4470264 0.3795513 0.3795513 -0.4586928 0.3795513 0.3795513 -0.4698649 0.3795513 0.3795513 -0.4805811 0.3795513 0.3795513 -0.490876 0.3795513 0.3795513 -0.5007803 0.3795513 0.3795513 -0.510322 0.3795513 0.3795513 -0.5195258 0.3795513 0.3795513 -0.5284142 0.3795513 0.3795513 -0.5370079 0.3795513 0.3795513 -0.5453253 0.3795513 0.3795513 -0.5533834 0.3795513 0.3795513 -0.5611974 0.3795513 0.3795513 -0.5687816 0.3795513 0.3795513 -0.092819 0.3944623 0.3795513 -0.1056428 0.3944623 0.3795513 -0.1201537 0.3944623 0.3795513 -0.1409607 0.3944623 0.3795513 -0.1678172 0.3944623 0.3795513 -0.1950164 0.3944623 0.3795513 -0.2210581 0.3944623 0.3795513 -0.245636 0.3944623 0.3795513 -0.2686816 0.3944623 0.3795513 -0.2902431 0.3944623 0.3795513 -0.3104189 0.3944623 0.3795513 -0.3293248 0.3944623 0.3795513 -0.3470774 0.3944623 0.3795513 -0.3637862 0.3944623 0.3795513 -0.3795513 0.3944623 0.3795513 -0.3944623 0.3944623 0.3795513 -0.4085988 0.3944623 0.3795513 -0.4220313 0.3944623 0.3795513 -0.4348222 0.3944623 0.3795513 -0.4470264 0.3944623 0.3795513 -0.4586928 0.3944623 0.3795513 -0.4698649 0.3944623 0.3795513 -0.4805811 0.3944623 0.3795513 -0.490876 0.3944623 0.3795513 -0.5007803 0.3944623 0.3795513 -0.510322 0.3944623 0.3795513 -0.5195258 0.3944623 0.3795513 -0.5284142 0.3944623 0.3795513 -0.5370079 0.3944623 0.3795513 -0.5453253 0.3944623 0.3795513 -0.5533834 0.3944623 0.3795513 -0.5611974 0.3944623 0.3795513 -0.5687816 0.3944623 0.3795513 -0.092819 0.4085988 0.3795513 -0.1056428 0.4085988 0.3795513 -0.1201537 0.4085988 0.3795513 -0.1409607 0.4085988 0.3795513 -0.1678172 0.4085988 0.3795513 -0.1950164 0.4085988 0.3795513 -0.2210581 0.4085988 0.3795513 -0.245636 0.4085988 0.3795513 -0.2686816 0.4085988 0.3795513 -0.2902431 0.4085988 0.3795513 -0.3104189 0.4085988 0.3795513 -0.3293248 0.4085988 0.3795513 -0.3470774 0.4085988 0.3795513 -0.3637862 0.4085988 0.3795513 -0.3795513 0.4085988 0.3795513 -0.3944623 0.4085988 0.3795513 -0.4085988 0.4085988 0.3795513 -0.4220313 0.4085988 0.3795513 -0.4348222 0.4085988 0.3795513 -0.4470264 0.4085988 0.3795513 -0.4586928 0.4085988 0.3795513 -0.4698649 0.4085988 0.3795513 -0.4805811 0.4085988 0.3795513 -0.490876 0.4085988 0.3795513 -0.5007803 0.4085988 0.3795513 -0.510322 0.4085988 0.3795513 -0.5195258 0.4085988 0.3795513 -0.5284142 0.4085988 0.3795513 -0.5370079 0.4085988 0.3795513 -0.5453253 0.4085988 0.3795513 -0.5533834 0.4085988 0.3795513 -0.5611974 0.4085988 0.3795513 -0.5687816 0.4085988 0.3795513 -0.092819 0.4220313 0.3795513 -0.1056428 0.4220313 0.3795513 -0.1201537 0.4220313 0.3795513 -0.1409607 0.4220313 0.3795513 -0.1678172 0.4220313 0.3795513 -0.1950164 0.4220313 0.3795513 -0.2210581 0.4220313 0.3795513 -0.245636 0.4220313 0.3795513 -0.2686816 0.4220313 0.3795513 -0.2902431 0.4220313 0.3795513 -0.3104189 0.4220313 0.3795513 -0.3293248 0.4220313 0.3795513 -0.3470774 0.4220313 0.3795513 -0.3637862 0.4220313 0.3795513 -0.3795513 0.4220313 0.3795513 -0.3944623 0.4220313 0.3795513 -0.4085988 0.4220313 0.3795513 -0.4220313 0.4220313 0.3795513 -0.4348222 0.4220313 0.3795513 -0.4470264 0.4220313 0.3795513 -0.4586928 0.4220313 0.3795513 -0.4698649 0.4220313 0.3795513 -0.4805811 0.4220313 0.3795513 -0.490876 0.4220313 0.3795513 -0.5007803 0.4220313 0.3795513 -0.510322 0.4220313 0.3795513 -0.5195258 0.4220313 0.3795513 -0.5284142 0.4220313 0.3795513 -0.5370079 0.4220313 0.3795513 -0.5453253 0.4220313 0.3795513 -0.5533834 0.4220313 0.3795513 -0.5611974 0.4220313 0.3795513 -0.5687816 0.4220313 0.3795513 -0.092819 0.4348222 0.3795513 -0.1056428 0.4348222 0.3795513 -0.1201537 0.4348222 0.3795513 -0.1409607 0.4348222 0.3795513 -0.1678172 0.4348222 0.3795513 -0.1950164 0.4348222 0.3795513 -0.2210581 0.4348222 0.3795513 -0.245636 0.4348222 0.3795513 -0.2686816 0.4348222 0.3795513 -0.2902431 0.4348222 0.3795513 -0.3104189 0.4348222 0.3795513 -0.3293248 0.4348222 0.3795513 -0.3470774 0.4348222 0.3795513 -0.3637862 0.4348222 0.3795513 -0.3795513 0.4348222 0.3795513 -0.3944623 0.4348222 0.3795513 -0.4085988 0.4348222 0.3795513 -0.4220313 0.4348222 0.3795513 -0.4348222 0.4348222 0.3795513 -0.4470264 0.4348222 0.3795513 -0.4586928 0.4348222 0.3795513 -0.4698649 0.4348222 0.3795513 -0.4805811 0.4348222 0.3795513 -0.490876 0.4348222 0.3795513 -0.5007803 0.4348222 0.3795513 -0.510322 0.4348222 0.3795513 -0.5195258 0.4348222 0.3795513 -0.5284142 0.4348222 0.3795513 -0.5370079 0.4348222 0.3795513 -0.5453253 0.4348222 0.3795513 -0.5533834 0.4348222 0.3795513 -0.5611974 0.4348222 0.3795513 -0.5687816 0.4348222 0.3795513 -0.092819 0.4470264 0.3795513 -0.1056428 0.4470264 0.3795513 -0.1201537 0.4470264 0.3795513 -0.1409607 0.4470264 0.3795513 -0.1678172 0.4470264 0.3795513 -0.1950164 0.4470264 0.3795513 -0.2210581 0.4470264 0.3795513 -0.245636 0.4470264 0.3795513 -0.2686816 0.4470264 0.3795513 -0.2902431 0.4470264 0.3795513 -0.3104189 0.4470264 0.3795513 -0.3293248 0.4470264 0.3795513 -0.3470774 0.4470264 0.3795513 -0.3637862 0.4470264 0.3795513 -0.3795513 0.4470264 0.3795513 -0.3944623 0.4470264 0.3795513 -0.4085988 0.4470264 0.3795513 -0.4220313 0.4470264 0.3795513 -0.4348222 0.4470264 0.3795513 -0.4470264 0.4470264 0.3795513 -0.4586928 0.4470264 0.3795513 -0.4698649 0.4470264 0.3795513 -0.4805811 0.4470264 0.3795513 -0.490876 0.4470264 0.3795513 -0.5007803 0.4470264 0.3795513 -0.510322 0.4470264 0.3795513 -0.5195258 0.4470264 0.3795513 -0.5284142 0.4470264 0.3795513 -0.5370079 0.4470264 0.3795513 -0.5453253 0.4470264 0.3795513 -0.5533834 0.4470264 0.3795513 -0.5611974 0.4470264 0.3795513 -0.5687816 0.4470264 0.3795513 -0.092819 0.4586928 0.3795513 -0.1056428 0.4586928 0.3795513 -0.1201537 0.4586928 0.3795513 -0.1409607 0.4586928 0.3795513 -0.1678172 0.4586928 0.3795513 -0.1950164 0.4586928 0.3795513 -0.2210581 0.4586928 0.3795513 -0.245636 0.4586928 0.3795513 -0.2686816 0.4586928 0.3795513 -0.2902431 0.4586928 0.3795513 -0.3104189 0.4586928 0.3795513 -0.3293248 0.4586928 0.3795513 -0.3470774 0.4586928 0.3795513 -0.3637862 0.4586928 0.3795513 -0.3795513 0.4586928 0.3795513 -0.3944623 0.4586928 0.3795513 -0.4085988 0.4586928 0.3795513 -0.4220313 0.4586928 0.3795513 -0.4348222 0.4586928 0.3795513 -0.4470264 0.4586928 0.3795513 -0.4586928 0.4586928 0.3795513 -0.4698649 0.4586928 0.3795513 -0.4805811 0.4586928 0.3795513 -0.490876 0.4586928 0.3795513 -0.5007803 0.4586928 0.3795513 -0.510322 0.4586928 0.3795513 -0.5195258 0.4586928 0.3795513 -0.5284142 0.4586928 0.3795513 -0.5370079 0.4586928 0.3795513 -0.5453253 0.4586928 0.3795513 -0.5533834 0.4586928 0.3795513 -0.5611974 0.4586928 0.3795513 -0.5687816 0.4586928 0.3795513 -0.092819 0.4698649 0.3795513 -0.1056428 0.4698649 0.3795513 -0.1201537 0.4698649 0.3795513 -0.1409607 0.4698649 0.3795513 -0.1678172 0.4698649 0.3795513 -0.1950164 0.4698649 0.3795513 -0.2210581 0.4698649 0.3795513 -0.245636 0.4698649 0.3795513 -0.2686816 0.4698649 0.3795513 -0.2902431 0.4698649 0.3795513 -0.3104189 0.4698649 0.3795513 -0.3293248 0.4698649 0.3795513 -0.3470774 0.4698649 0.3795513 -0.3637862 0.4698649 0.3795513 -0.3795513 0.4698649 0.3795513 -0.3944623 0.4698649 0.3795513 -0.4085988 0.4698649 0.3795513 -0.4220313 0.4698649 0.3795513 -0.4348222 0.4698649 0.3795513 -0.4470264 0.4698649 0.3795513 -0.4586928 0.4698649 0.3795513 -0.4698649 0.4698649 0.3795513 -0.4805811 0.4698649 0.3795513 -0.490876 0.4698649 0.3795513 -0.5007803 0.4698649 0.3795513 -0.510322 0.4698649 0.3795513 -0.5195258 0.4698649 0.3795513 -0.5284142 0.4698649 0.3795513 -0.5370079 0.4698649 0.3795513 -0.5453253 0.4698649 0.3795513 -0.5533834 0.4698649 0.3795513 -0.5611974 0.4698649 0.3795513 -0.5687816 0.4698649 0.3795513 -0.092819 0.4805811 0.3795513 -0.1056428 0.4805811 0.3795513 -0.1201537 0.4805811 0.3795513 -0.1409607 0.4805811 0.3795513 -0.1678172 0.4805811 0.3795513 -0.1950164 0.4805811 0.3795513 -0.2210581 0.4805811 0.3795513 -0.245636 0.4805811 0.3795513 -0.2686816 0.4805811 0.3795513 -0.2902431 0.4805811 0.3795513 -0.3104189 0.4805811 0.3795513 -0.3293248 0.4805811 0.3795513 -0.3470774 0.4805811 0.3795513 -0.3637862 0.4805811 0.3795513 -0.3795513 0.4805811 0.3795513 -0.3944623 0.4805811 0.3795513 -0.4085988 0.4805811 0.3795513 -0.4220313 0.4805811 0.3795513 -0.4348222 0.4805811 0.3795513 -0.4470264 0.4805811 0.3795513 -0.4586928 0.4805811 0.3795513 -0.4698649 0.4805811 0.3795513 -0.4805811 0.4805811 0.3795513 -0.490876 0.4805811 0.3795513 -0.5007803 0.4805811 0.3795513 -0.510322 0.4805811 0.3795513 -0.5195258 0.4805811 0.3795513 -0.5284142 0.4805811 0.3795513 -0.5370079 0.4805811 0.3795513 -0.5453253 0.4805811 0.3795513 -0.5533834 0.4805811 0.3795513 -0.5611974 0.4805811 0.3795513 -0.5687816 0.4805811 0.3795513 -0.092819 0.490876 0.3795513 -0.1056428 0.490876 0.3795513 -0.1201537 0.490876 0.3795513 -0.1409607 0.490876 0.3795513 -0.1678172 0.490876 0.3795513 -0.1950164 0.490876 0.3795513 -0.2210581 0.490876 0.3795513 -0.245636 0.490876 0.3795513 -0.2686816 0.490876 0.3795513 -0.2902431 0.490876 0.3795513 -0.3104189 0.490876 0.3795513 -0.3293248 0.490876 0.3795513 -0.3470774 0.490876 0.3795513 -0.3637862 0.490876 0.3795513 -0.3795513 0.490876 0.3795513 -0.3944623 0.490876 0.3795513 -0.4085988 0.490876 0.3795513 -0.4220313 0.490876 0.3795513 -0.4348222 0.490876 0.3795513 -0.4470264 0.490876 0.3795513 -0.4586928 0.490876 0.3795513 -0.4698649 0.490876 0.3795513 -0.4805811 0.490876 0.3795513 -0.490876 0.490876 0.3795513 -0.5007803 0.490876 0.3795513 -0.510322 0.490876 0.3795513 -0.5195258 0.490876 0.3795513 -0.5284142 0.490876 0.3795513 -0.5370079 0.490876 0.3795513 -0.5453253 0.490876 0.3795513 -0.5533834 0.490876 0.3795513 -0.5611974 0.490876 0.3795513 -0.5687816 0.490876 0.3795513 -0.092819 0.5007803 0.3795513 -0.1056428 0.5007803 0.3795513 -0.1201537 0.5007803 0.3795513 -0.1409607 0.5007803 0.3795513 -0.1678172 0.5007803 0.3795513 -0.1950164 0.5007803 0.3795513 -0.2210581 0.5007803 0.3795513 -0.245636 0.5007803 0.3795513 -0.2686816 0.5007803 0.3795513 -0.2902431 0.5007803 0.3795513 -0.3104189 0.5007803 0.3795513 -0.3293248 0.5007803 0.3795513 -0.3470774 0.5007803 0.3795513 -0.3637862 0.5007803 0.3795513 -0.3795513 0.5007803 0.3795513 -0.3944623 0.5007803 0.3795513 -0.4085988 0.5007803 0.3795513 -0.4220313 0.5007803 0.3795513 -0.4348222 0.5007803 0.3795513 -0.4470264 0.5007803 0.3795513 -0.4586928 0.5007803 0.3795513 -0.4698649 0.5007803 0.3795513 -0.4805811 0.5007803 0.3795513 -0.490876 0.5007803 0.3795513 -0.5007803 0.5007803 0.3795513 -0.510322 0.5007803 0.3795513 -0.5195258 0.5007803 0.3795513 -0.5284142 0.5007803 0.3795513 -0.5370079 0.5007803 0.3795513 -0.5453253 0.5007803 0.3795513 -0.5533834 0.5007803 0.3795513 -0.5611974 0.5007803 0.3795513 -0.5687816 0.5007803 0.3795513 -0.092819 0.510322 0.3795513 -0.1056428 0.510322 0.3795513 -0.1201537 0.510322 0.3795513 -0.1409607 0.510322 0.3795513 -0.1678172 0.510322 0.3795513 -0.1950164 0.510322 0.3795513 -0.2210581 0.510322 0.3795513 -0.245636 0.510322 0.3795513 -0.2686816 0.510322 0.3795513 -0.2902431 0.510322 0.3795513 -0.3104189 0.510322 0.3795513 -0.3293248 0.510322 0.3795513 -0.3470774 0.510322 0.3795513 -0.3637862 0.510322 0.3795513 -0.3795513 0.510322 0.3795513 -0.3944623 0.510322 0.3795513 -0.4085988 0.510322 0.3795513 -0.4220313 0.510322 0.3795513 -0.4348222 0.510322 0.3795513 -0.4470264 0.510322 0.3795513 -0.4586928 0.510322 0.3795513 -0.4698649 0.510322 0.3795513 -0.4805811 0.510322 0.3795513 -0.490876 0.510322 0.3795513 -0.5007803 0.510322 0.3795513 -0.510322 0.510322 0.3795513 -0.5195258 0.510322 0.3795513 -0.5284142 0.510322 0.3795513 -0.5370079 0.510322 0.3795513 -0.5453253 0.510322 0.3795513 -0.5533834 0.510322 0.3795513 -0.5611974 0.510322 0.3795513 -0.5687816 0.510322 0.3795513 -0.092819 0.5195258 0.3795513 -0.1056428 0.5195258 0.3795513 -0.1201537 0.5195258 0.3795513 -0.1409607 0.5195258 0.3795513 -0.1678172 0.5195258 0.3795513 -0.1950164 0.5195258 0.3795513 -0.2210581 0.5195258 0.3795513 -0.245636 0.5195258 0.3795513 -0.2686816 0.5195258 0.3795513 -0.2902431 0.5195258 0.3795513 -0.3104189 0.5195258 0.3795513 -0.3293248 0.5195258 0.3795513 -0.3470774 0.5195258 0.3795513 -0.3637862 0.5195258 0.3795513 -0.3795513 0.5195258 0.3795513 -0.3944623 0.5195258 0.3795513 -0.4085988 0.5195258 0.3795513 -0.4220313 0.5195258 0.3795513 -0.4348222 0.5195258 0.3795513 -0.4470264 0.5195258 0.3795513 -0.4586928 0.5195258 0.3795513 -0.4698649 0.5195258 0.3795513 -0.4805811 0.5195258 0.3795513 -0.490876 0.5195258 0.3795513 -0.5007803 0.5195258 0.3795513 -0.510322 0.5195258 0.3795513 -0.5195258 0.5195258 0.3795513 -0.5284142 0.5195258 0.3795513 -0.5370079 0.5195258 0.3795513 -0.5453253 0.5195258 0.3795513 -0.5533834 0.5195258 0.3795513 -0.5611974 0.5195258 0.3795513 -0.5687816 0.5195258 0.3795513 -0.092819 0.5284142 0.3795513 -0.1056428 0.5284142 0.3795513 -0.1201537 0.5284142 0.3795513 -0.1409607 0.5284142 0.3795513 -0.1678172 0.5284142 0.3795513 -0.1950164 0.5284142 0.3795513 -0.2210581 0.5284142 0.3795513 -0.245636 0.5284142 0.3795513 -0.2686816 0.5284142 0.3795513 -0.2902431 0.5284142 0.3795513 -0.3104189 0.5284142 0.3795513 -0.3293248 0.5284142 0.3795513 -0.3470774 0.5284142 0.3795513 -0.3637862 0.5284142 0.3795513 -0.3795513 0.5284142 0.3795513 -0.3944623 0.5284142 0.3795513 -0.4085988 0.5284142 0.3795513 -0.4220313 0.5284142 0.3795513 -0.4348222 0.5284142 0.3795513 -0.4470264 0.5284142 0.3795513 -0.4586928 0.5284142 0.3795513 -0.4698649 0.5284142 0.3795513 -0.4805811 0.5284142 0.3795513 -0.490876 0.5284142 0.3795513 -0.5007803 0.5284142 0.3795513 -0.510322 0.5284142 0.3795513 -0.5195258 0.5284142 0.3795513 -0.5284142 0.5284142 0.3795513 -0.5370079 0.5284142 0.3795513 -0.5453253 0.5284142 0.3795513 -0.5533834 0.5284142 0.3795513 -0.5611974 0.5284142 0.3795513 -0.5687816 0.5284142 0.3795513 -0.092819 0.5370079 0.3795513 -0.1056428 0.5370079 0.3795513 -0.1201537 0.5370079 0.3795513 -0.1409607 0.5370079 0.3795513 -0.1678172 0.5370079 0.3795513 -0.1950164 0.5370079 0.3795513 -0.2210581 0.5370079 0.3795513 -0.245636 0.5370079 0.3795513 -0.2686816 0.5370079 0.3795513 -0.2902431 0.5370079 0.3795513 -0.3104189 0.5370079 0.3795513 -0.3293248 0.5370079 0.3795513 -0.3470774 0.5370079 0.3795513 -0.3637862 0.5370079 0.3795513 -0.3795513 0.5370079 0.3795513 -0.3944623 0.5370079 0.3795513 -0.4085988 0.5370079 0.3795513 -0.4220313 0.5370079 0.3795513 -0.4348222 0.5370079 0.3795513 -0.4470264 0.5370079 0.3795513 -0.4586928 0.5370079 0.3795513 -0.4698649 0.5370079 0.3795513 -0.4805811 0.5370079 0.3795513 -0.490876 0.5370079 0.3795513 -0.5007803 0.5370079 0.3795513 -0.510322 0.5370079 0.3795513 -0.5195258 0.5370079 0.3795513 -0.5284142 0.5370079 0.3795513 -0.5370079 0.5370079 0.3795513 -0.5453253 0.5370079 0.3795513 -0.5533834 0.5370079 0.3795513 -0.5611974 0.5370079 0.3795513 -0.5687816 0.5370079 0.3795513 -0.092819 0.5453253 0.3795513 -0.1056428 0.5453253 0.3795513 -0.1201537 0.5453253 0.3795513 -0.1409607 0.5453253 0.3795513 -0.1678172 0.5453253 0.3795513 -0.1950164 0.5453253 0.3795513 -0.2210581 0.5453253 0.3795513 -0.245636 0.5453253 0.3795513 -0.2686816 0.5453253 0.3795513 -0.2902431 0.5453253 0.3795513 -0.3104189 0.5453253 0.3795513 -0.3293248 0.5453253 0.3795513 -0.3470774 0.5453253 0.3795513 -0.3637862 0.5453253 0.3795513 -0.3795513 0.5453253 0.3795513 -0.3944623 0.5453253 0.3795513 -0.4085988 0.5453253 0.3795513 -0.4220313 0.5453253 0.3795513 -0.4348222 0.5453253 0.3795513 -0.4470264 0.5453253 0.3795513 -0.4586928 0.5453253 0.3795513 -0.4698649 0.5453253 0.3795513 -0.4805811 0.5453253 0.3795513 -0.490876 0.5453253 0.3795513 -0.5007803 0.5453253 0.3795513 -0.510322 0.5453253 0.3795513 -0.5195258 0.5453253 0.3795513 -0.5284142 0.5453253 0.3795513 -0.5370079 0.5453253 0.3795513 -0.5453253 0.5453253 0.3795513 -0.5533834 0.5453253 0.3795513 -0.5611974 0.5453253 0.3795513 -0.5687816 0.5453253 0.3795513 -0.092819 0.5533834 0.3795513 -0.1056428 0.5533834 0.3795513 -0.1201537 0.5533834 0.3795513 -0.1409607 0.5533834 0.3795513 -0.1678172 0.5533834 0.3795513 -0.1950164 0.5533834 0.3795513 -0.2210581 0.5533834 0.3795513 -0.245636 0.5533834 0.3795513 -0.2686816 0.5533834 0.3795513 -0.2902431 0.5533834 0.3795513 -0.3104189 0.5533834 0.3795513 -0.3293248 0.5533834 0.3795513 -0.3470774 0.5533834 0.3795513 -0.3637862 0.5533834 0.3795513 -0.3795513 0.5533834 0.3795513 -0.3944623 0.5533834 0.3795513 -0.4085988 0.5533834 0.3795513 -0.4220313 0.5533834 0.3795513 -0.4348222 0.5533834 0.3795513 -0.4470264 0.5533834 0.3795513 -0.4586928 0.5533834 0.3795513 -0.4698649 0.5533834 0.3795513 -0.4805811 0.5533834 0.3795513 -0.490876 0.5533834 0.3795513 -0.5007803 0.5533834 0.3795513 -0.510322 0.5533834 0.3795513 -0.5195258 0.5533834 0.3795513 -0.5284142 0.5533834 0.3795513 -0.5370079 0.5533834 0.3795513 -0.5453253 0.5533834 0.3795513 -0.5533834 0.5533834 0.3795513 -0.5611974 0.5533834 0.3795513 -0.5687816 0.5533834 0.3795513 -0.092819 0.5611974 0.3795513 -0.1056428 0.5611974 0.3795513 -0.1201537 0.5611974 0.3795513 -0.1409607 0.5611974 0.3795513 -0.1678172 0.5611974 0.3795513 -0.1950164 0.5611974 0.3795513 -0.2210581 0.5611974 0.3795513 -0.245636 0.5611974 0.3795513 -0.2686816 0.5611974 0.3795513 -0.2902431 0.5611974 0.3795513 -0.3104189 0.5611974 0.3795513 -0.3293248 0.5611974 0.3795513 -0.3470774 0.5611974 0.3795513 -0.3637862 0.5611974 0.3795513 -0.3795513 0.5611974 0.3795513 -0.3944623 0.5611974 0.3795513 -0.4085988 0.5611974 0.3795513 -0.4220313 0.5611974 0.3795513 -0.4348222 0.5611974 0.3795513 -0.4470264 0.5611974 0.3795513 -0.4586928 0.5611974 0.3795513 -0.4698649 0.5611974 0.3795513 -0.4805811 0.5611974 0.3795513 -0.490876 0.5611974 0.3795513 -0.5007803 0.5611974 0.3795513 -0.510322 0.5611974 0.3795513 -0.5195258 0.5611974 0.3795513 -0.5284142 0.5611974 0.3795513 -0.5370079 0.5611974 0.3795513 -0.5453253 0.5611974 0.3795513 -0.5533834 0.5611974 0.3795513 -0.5611974 0.5611974 0.3795513 -0.5687816 0.5611974 0.3795513 -0.092819 0.5687816 0.3795513 -0.1056428 0.5687816 0.3795513 -0.1201537 0.5687816 0.3795513 -0.1409607 0.5687816 0.3795513 -0.1678172 0.5687816 0.3795513 -0.1950164 0.5687816 0.3795513 -0.2210581 0.5687816 0.3795513 -0.245636 0.5687816 0.3795513 -0.2686816 0.5687816 0.3795513 -0.2902431 0.5687816 0.3795513 -0.3104189 0.5687816 0.3795513 -0.3293248 0.5687816 0.3795513 -0.3470774 0.5687816 0.3795513 -0.3637862 0.5687816 0.3795513 -0.3795513 0.5687816 0.3795513 -0.3944623 0.5687816 0.3795513 -0.4085988 0.5687816 0.3795513 -0.4220313 0.5687816 0.3795513 -0.4348222 0.5687816 0.3795513 -0.4470264 0.5687816 0.3795513 -0.4586928 0.5687816 0.3795513 -0.4698649 0.5687816 0.3795513 -0.4805811 0.5687816 0.3795513 -0.490876 0.5687816 0.3795513 -0.5007803 0.5687816 0.3795513 -0.510322 0.5687816 0.3795513 -0.5195258 0.5687816 0.3795513 -0.5284142 0.5687816 0.3795513 -0.5370079 0.5687816 0.3795513 -0.5453253 0.5687816 0.3795513 -0.5533834 0.5687816 0.3795513 -0.5611974 0.5687816 0.3795513 -0.5687816 0.5687816 0.3795513 -0.092819 0.092819 0.3944623 -0.1056428 0.092819 0.3944623 -0.1201537 0.092819 0.3944623 -0.1409607 0.092819 0.3944623 -0.1678172 0.092819 0.3944623 -0.1950164 0.092819 0.3944623 -0.2210581 0.092819 0.3944623 -0.245636 0.092819 0.3944623 -0.2686816 0.092819 0.3944623 -0.2902431 0.092819 0.3944623 -0.3104189 0.092819 0.3944623 -0.3293248 0.092819 0.3944623 -0.3470774 0.092819 0.3944623 -0.3637862 0.092819 0.3944623 -0.3795513 0.092819 0.3944623 -0.3944623 0.092819 0.3944623 -0.4085988 0.092819 0.3944623 -0.4220313 0.092819 0.3944623 -0.4348222 0.092819 0.3944623 -0.4470264 0.092819 0.3944623 -0.4586928 0.092819 0.3944623 -0.4698649 0.092819 0.3944623 -0.4805811 0.092819 0.3944623 -0.490876 0.092819 0.3944623 -0.5007803 0.092819 0.3944623 -0.510322 0.092819 0.3944623 -0.5195258 0.092819 0.3944623 -0.5284142 0.092819 0.3944623 -0.5370079 0.092819 0.3944623 -0.5453253 0.092819 0.3944623 -0.5533834 0.092819 0.3944623 -0.5611974 0.092819 0.3944623 -0.5687816 0.092819 0.3944623 -0.092819 0.1056428 0.3944623 -0.1056428 0.1056428 0.3944623 -0.1201537 0.1056428 0.3944623 -0.1409607 0.1056428 0.3944623 -0.1678172 0.1056428 0.3944623 -0.1950164 0.1056428 0.3944623 -0.2210581 0.1056428 0.3944623 -0.245636 0.1056428 0.3944623 -0.2686816 0.1056428 0.3944623 -0.2902431 0.1056428 0.3944623 -0.3104189 0.1056428 0.3944623 -0.3293248 0.1056428 0.3944623 -0.3470774 0.1056428 0.3944623 -0.3637862 0.1056428 0.3944623 -0.3795513 0.1056428 0.3944623 -0.3944623 0.1056428 0.3944623 -0.4085988 0.1056428 0.3944623 -0.4220313 0.1056428 0.3944623 -0.4348222 0.1056428 0.3944623 -0.4470264 0.1056428 0.3944623 -0.4586928 0.1056428 0.3944623 -0.4698649 0.1056428 0.3944623 -0.4805811 0.1056428 0.3944623 -0.490876 0.1056428 0.3944623 -0.5007803 0.1056428 0.3944623 -0.510322 0.1056428 0.3944623 -0.5195258 0.1056428 0.3944623 -0.5284142 0.1056428 0.3944623 -0.5370079 0.1056428 0.3944623 -0.5453253 0.1056428 0.3944623 -0.5533834 0.1056428 0.3944623 -0.5611974 0.1056428 0.3944623 -0.5687816 0.1056428 0.3944623 -0.092819 0.1201537 0.3944623 -0.1056428 0.1201537 0.3944623 -0.1201537 0.1201537 0.3944623 -0.1409607 0.1201537 0.3944623 -0.1678172 0.1201537 0.3944623 -0.1950164 0.1201537 0.3944623 -0.2210581 0.1201537 0.3944623 -0.245636 0.1201537 0.3944623 -0.2686816 0.1201537 0.3944623 -0.2902431 0.1201537 0.3944623 -0.3104189 0.1201537 0.3944623 -0.3293248 0.1201537 0.3944623 -0.3470774 0.1201537 0.3944623 -0.3637862 0.1201537 0.3944623 -0.3795513 0.1201537 0.3944623 -0.3944623 0.1201537 0.3944623 -0.4085988 0.1201537 0.3944623 -0.4220313 0.1201537 0.3944623 -0.4348222 0.1201537 0.3944623 -0.4470264 0.1201537 0.3944623 -0.4586928 0.1201537 0.3944623 -0.4698649 0.1201537 0.3944623 -0.4805811 0.1201537 0.3944623 -0.490876 0.1201537 0.3944623 -0.5007803 0.1201537 0.3944623 -0.510322 0.1201537 0.3944623 -0.5195258 0.1201537 0.3944623 -0.5284142 0.1201537 0.3944623 -0.5370079 0.1201537 0.3944623 -0.5453253 0.1201537 0.3944623 -0.5533834 0.1201537 0.3944623 -0.5611974 0.1201537 0.3944623 -0.5687816 0.1201537 0.3944623 -0.092819 0.1409607 0.3944623 -0.1056428 0.1409607 0.3944623 -0.1201537 0.1409607 0.3944623 -0.1409607 0.1409607 0.3944623 -0.1678172 0.1409607 0.3944623 -0.1950164 0.1409607 0.3944623 -0.2210581 0.1409607 0.3944623 -0.245636 0.1409607 0.3944623 -0.2686816 0.1409607 0.3944623 -0.2902431 0.1409607 0.3944623 -0.3104189 0.1409607 0.3944623 -0.3293248 0.1409607 0.3944623 -0.3470774 0.1409607 0.3944623 -0.3637862 0.1409607 0.3944623 -0.3795513 0.1409607 0.3944623 -0.3944623 0.1409607 0.3944623 -0.4085988 0.1409607 0.3944623 -0.4220313 0.1409607 0.3944623 -0.4348222 0.1409607 0.3944623 -0.4470264 0.1409607 0.3944623 -0.4586928 0.1409607 0.3944623 -0.4698649 0.1409607 0.3944623 -0.4805811 0.1409607 0.3944623 -0.490876 0.1409607 0.3944623 -0.5007803 0.1409607 0.3944623 -0.510322 0.1409607 0.3944623 -0.5195258 0.1409607 0.3944623 -0.5284142 0.1409607 0.3944623 -0.5370079 0.1409607 0.3944623 -0.5453253 0.1409607 0.3944623 -0.5533834 0.1409607 0.3944623 -0.5611974 0.1409607 0.3944623 -0.5687816 0.1409607 0.3944623 -0.092819 0.1678172 0.3944623 -0.1056428 0.1678172 0.3944623 -0.1201537 0.1678172 0.3944623 -0.1409607 0.1678172 0.3944623 -0.1678172 0.1678172 0.3944623 -0.1950164 0.1678172 0.3944623 -0.2210581 0.1678172 0.3944623 -0.245636 0.1678172 0.3944623 -0.2686816 0.1678172 0.3944623 -0.2902431 0.1678172 0.3944623 -0.3104189 0.1678172 0.3944623 -0.3293248 0.1678172 0.3944623 -0.3470774 0.1678172 0.3944623 -0.3637862 0.1678172 0.3944623 -0.3795513 0.1678172 0.3944623 -0.3944623 0.1678172 0.3944623 -0.4085988 0.1678172 0.3944623 -0.4220313 0.1678172 0.3944623 -0.4348222 0.1678172 0.3944623 -0.4470264 0.1678172 0.3944623 -0.4586928 0.1678172 0.3944623 -0.4698649 0.1678172 0.3944623 -0.4805811 0.1678172 0.3944623 -0.490876 0.1678172 0.3944623 -0.5007803 0.1678172 0.3944623 -0.510322 0.1678172 0.3944623 -0.5195258 0.1678172 0.3944623 -0.5284142 0.1678172 0.3944623 -0.5370079 0.1678172 0.3944623 -0.5453253 0.1678172 0.3944623 -0.5533834 0.1678172 0.3944623 -0.5611974 0.1678172 0.3944623 -0.5687816 0.1678172 0.3944623 -0.092819 0.1950164 0.3944623 -0.1056428 0.1950164 0.3944623 -0.1201537 0.1950164 0.3944623 -0.1409607 0.1950164 0.3944623 -0.1678172 0.1950164 0.3944623 -0.1950164 0.1950164 0.3944623 -0.2210581 0.1950164 0.3944623 -0.245636 0.1950164 0.3944623 -0.2686816 0.1950164 0.3944623 -0.2902431 0.1950164 0.3944623 -0.3104189 0.1950164 0.3944623 -0.3293248 0.1950164 0.3944623 -0.3470774 0.1950164 0.3944623 -0.3637862 0.1950164 0.3944623 -0.3795513 0.1950164 0.3944623 -0.3944623 0.1950164 0.3944623 -0.4085988 0.1950164 0.3944623 -0.4220313 0.1950164 0.3944623 -0.4348222 0.1950164 0.3944623 -0.4470264 0.1950164 0.3944623 -0.4586928 0.1950164 0.3944623 -0.4698649 0.1950164 0.3944623 -0.4805811 0.1950164 0.3944623 -0.490876 0.1950164 0.3944623 -0.5007803 0.1950164 0.3944623 -0.510322 0.1950164 0.3944623 -0.5195258 0.1950164 0.3944623 -0.5284142 0.1950164 0.3944623 -0.5370079 0.1950164 0.3944623 -0.5453253 0.1950164 0.3944623 -0.5533834 0.1950164 0.3944623 -0.5611974 0.1950164 0.3944623 -0.5687816 0.1950164 0.3944623 -0.092819 0.2210581 0.3944623 -0.1056428 0.2210581 0.3944623 -0.1201537 0.2210581 0.3944623 -0.1409607 0.2210581 0.3944623 -0.1678172 0.2210581 0.3944623 -0.1950164 0.2210581 0.3944623 -0.2210581 0.2210581 0.3944623 -0.245636 0.2210581 0.3944623 -0.2686816 0.2210581 0.3944623 -0.2902431 0.2210581 0.3944623 -0.3104189 0.2210581 0.3944623 -0.3293248 0.2210581 0.3944623 -0.3470774 0.2210581 0.3944623 -0.3637862 0.2210581 0.3944623 -0.3795513 0.2210581 0.3944623 -0.3944623 0.2210581 0.3944623 -0.4085988 0.2210581 0.3944623 -0.4220313 0.2210581 0.3944623 -0.4348222 0.2210581 0.3944623 -0.4470264 0.2210581 0.3944623 -0.4586928 0.2210581 0.3944623 -0.4698649 0.2210581 0.3944623 -0.4805811 0.2210581 0.3944623 -0.490876 0.2210581 0.3944623 -0.5007803 0.2210581 0.3944623 -0.510322 0.2210581 0.3944623 -0.5195258 0.2210581 0.3944623 -0.5284142 0.2210581 0.3944623 -0.5370079 0.2210581 0.3944623 -0.5453253 0.2210581 0.3944623 -0.5533834 0.2210581 0.3944623 -0.5611974 0.2210581 0.3944623 -0.5687816 0.2210581 0.3944623 -0.092819 0.245636 0.3944623 -0.1056428 0.245636 0.3944623 -0.1201537 0.245636 0.3944623 -0.1409607 0.245636 0.3944623 -0.1678172 0.245636 0.3944623 -0.1950164 0.245636 0.3944623 -0.2210581 0.245636 0.3944623 -0.245636 0.245636 0.3944623 -0.2686816 0.245636 0.3944623 -0.2902431 0.245636 0.3944623 -0.3104189 0.245636 0.3944623 -0.3293248 0.245636 0.3944623 -0.3470774 0.245636 0.3944623 -0.3637862 0.245636 0.3944623 -0.3795513 0.245636 0.3944623 -0.3944623 0.245636 0.3944623 -0.4085988 0.245636 0.3944623 -0.4220313 0.245636 0.3944623 -0.4348222 0.245636 0.3944623 -0.4470264 0.245636 0.3944623 -0.4586928 0.245636 0.3944623 -0.4698649 0.245636 0.3944623 -0.4805811 0.245636 0.3944623 -0.490876 0.245636 0.3944623 -0.5007803 0.245636 0.3944623 -0.510322 0.245636 0.3944623 -0.5195258 0.245636 0.3944623 -0.5284142 0.245636 0.3944623 -0.5370079 0.245636 0.3944623 -0.5453253 0.245636 0.3944623 -0.5533834 0.245636 0.3944623 -0.5611974 0.245636 0.3944623 -0.5687816 0.245636 0.3944623 -0.092819 0.2686816 0.3944623 -0.1056428 0.2686816 0.3944623 -0.1201537 0.2686816 0.3944623 -0.1409607 0.2686816 0.3944623 -0.1678172 0.2686816 0.3944623 -0.1950164 0.2686816 0.3944623 -0.2210581 0.2686816 0.3944623 -0.245636 0.2686816 0.3944623 -0.2686816 0.2686816 0.3944623 -0.2902431 0.2686816 0.3944623 -0.3104189 0.2686816 0.3944623 -0.3293248 0.2686816 0.3944623 -0.3470774 0.2686816 0.3944623 -0.3637862 0.2686816 0.3944623 -0.3795513 0.2686816 0.3944623 -0.3944623 0.2686816 0.3944623 -0.4085988 0.2686816 0.3944623 -0.4220313 0.2686816 0.3944623 -0.4348222 0.2686816 0.3944623 -0.4470264 0.2686816 0.3944623 -0.4586928 0.2686816 0.3944623 -0.4698649 0.2686816 0.3944623 -0.4805811 0.2686816 0.3944623 -0.490876 0.2686816 0.3944623 -0.5007803 0.2686816 0.3944623 -0.510322 0.2686816 0.3944623 -0.5195258 0.2686816 0.3944623 -0.5284142 0.2686816 0.3944623 -0.5370079 0.2686816 0.3944623 -0.5453253 0.2686816 0.3944623 -0.5533834 0.2686816 0.3944623 -0.5611974 0.2686816 0.3944623 -0.5687816 0.2686816 0.3944623 -0.092819 0.2902431 0.3944623 -0.1056428 0.2902431 0.3944623 -0.1201537 0.2902431 0.3944623 -0.1409607 0.2902431 0.3944623 -0.1678172 0.2902431 0.3944623 -0.1950164 0.2902431 0.3944623 -0.2210581 0.2902431 0.3944623 -0.245636 0.2902431 0.3944623 -0.2686816 0.2902431 0.3944623 -0.2902431 0.2902431 0.3944623 -0.3104189 0.2902431 0.3944623 -0.3293248 0.2902431 0.3944623 -0.3470774 0.2902431 0.3944623 -0.3637862 0.2902431 0.3944623 -0.3795513 0.2902431 0.3944623 -0.3944623 0.2902431 0.3944623 -0.4085988 0.2902431 0.3944623 -0.4220313 0.2902431 0.3944623 -0.4348222 0.2902431 0.3944623 -0.4470264 0.2902431 0.3944623 -0.4586928 0.2902431 0.3944623 -0.4698649 0.2902431 0.3944623 -0.4805811 0.2902431 0.3944623 -0.490876 0.2902431 0.3944623 -0.5007803 0.2902431 0.3944623 -0.510322 0.2902431 0.3944623 -0.5195258 0.2902431 0.3944623 -0.5284142 0.2902431 0.3944623 -0.5370079 0.2902431 0.3944623 -0.5453253 0.2902431 0.3944623 -0.5533834 0.2902431 0.3944623 -0.5611974 0.2902431 0.3944623 -0.5687816 0.2902431 0.3944623 -0.092819 0.3104189 0.3944623 -0.1056428 0.3104189 0.3944623 -0.1201537 0.3104189 0.3944623 -0.1409607 0.3104189 0.3944623 -0.1678172 0.3104189 0.3944623 -0.1950164 0.3104189 0.3944623 -0.2210581 0.3104189 0.3944623 -0.245636 0.3104189 0.3944623 -0.2686816 0.3104189 0.3944623 -0.2902431 0.3104189 0.3944623 -0.3104189 0.3104189 0.3944623 -0.3293248 0.3104189 0.3944623 -0.3470774 0.3104189 0.3944623 -0.3637862 0.3104189 0.3944623 -0.3795513 0.3104189 0.3944623 -0.3944623 0.3104189 0.3944623 -0.4085988 0.3104189 0.3944623 -0.4220313 0.3104189 0.3944623 -0.4348222 0.3104189 0.3944623 -0.4470264 0.3104189 0.3944623 -0.4586928 0.3104189 0.3944623 -0.4698649 0.3104189 0.3944623 -0.4805811 0.3104189 0.3944623 -0.490876 0.3104189 0.3944623 -0.5007803 0.3104189 0.3944623 -0.510322 0.3104189 0.3944623 -0.5195258 0.3104189 0.3944623 -0.5284142 0.3104189 0.3944623 -0.5370079 0.3104189 0.3944623 -0.5453253 0.3104189 0.3944623 -0.5533834 0.3104189 0.3944623 -0.5611974 0.3104189 0.3944623 -0.5687816 0.3104189 0.3944623 -0.092819 0.3293248 0.3944623 -0.1056428 0.3293248 0.3944623 -0.1201537 0.3293248 0.3944623 -0.1409607 0.3293248 0.3944623 -0.1678172 0.3293248 0.3944623 -0.1950164 0.3293248 0.3944623 -0.2210581 0.3293248 0.3944623 -0.245636 0.3293248 0.3944623 -0.2686816 0.3293248 0.3944623 -0.2902431 0.3293248 0.3944623 -0.3104189 0.3293248 0.3944623 -0.3293248 0.3293248 0.3944623 -0.3470774 0.3293248 0.3944623 -0.3637862 0.3293248 0.3944623 -0.3795513 0.3293248 0.3944623 -0.3944623 0.3293248 0.3944623 -0.4085988 0.3293248 0.3944623 -0.4220313 0.3293248 0.3944623 -0.4348222 0.3293248 0.3944623 -0.4470264 0.3293248 0.3944623 -0.4586928 0.3293248 0.3944623 -0.4698649 0.3293248 0.3944623 -0.4805811 0.3293248 0.3944623 -0.490876 0.3293248 0.3944623 -0.5007803 0.3293248 0.3944623 -0.510322 0.3293248 0.3944623 -0.5195258 0.3293248 0.3944623 -0.5284142 0.3293248 0.3944623 -0.5370079 0.3293248 0.3944623 -0.5453253 0.3293248 0.3944623 -0.5533834 0.3293248 0.3944623 -0.5611974 0.3293248 0.3944623 -0.5687816 0.3293248 0.3944623 -0.092819 0.3470774 0.3944623 -0.1056428 0.3470774 0.3944623 -0.1201537 0.3470774 0.3944623 -0.1409607 0.3470774 0.3944623 -0.1678172 0.3470774 0.3944623 -0.1950164 0.3470774 0.3944623 -0.2210581 0.3470774 0.3944623 -0.245636 0.3470774 0.3944623 -0.2686816 0.3470774 0.3944623 -0.2902431 0.3470774 0.3944623 -0.3104189 0.3470774 0.3944623 -0.3293248 0.3470774 0.3944623 -0.3470774 0.3470774 0.3944623 -0.3637862 0.3470774 0.3944623 -0.3795513 0.3470774 0.3944623 -0.3944623 0.3470774 0.3944623 -0.4085988 0.3470774 0.3944623 -0.4220313 0.3470774 0.3944623 -0.4348222 0.3470774 0.3944623 -0.4470264 0.3470774 0.3944623 -0.4586928 0.3470774 0.3944623 -0.4698649 0.3470774 0.3944623 -0.4805811 0.3470774 0.3944623 -0.490876 0.3470774 0.3944623 -0.5007803 0.3470774 0.3944623 -0.510322 0.3470774 0.3944623 -0.5195258 0.3470774 0.3944623 -0.5284142 0.3470774 0.3944623 -0.5370079 0.3470774 0.3944623 -0.5453253 0.3470774 0.3944623 -0.5533834 0.3470774 0.3944623 -0.5611974 0.3470774 0.3944623 -0.5687816 0.3470774 0.3944623 -0.092819 0.3637862 0.3944623 -0.1056428 0.3637862 0.3944623 -0.1201537 0.3637862 0.3944623 -0.1409607 0.3637862 0.3944623 -0.1678172 0.3637862 0.3944623 -0.1950164 0.3637862 0.3944623 -0.2210581 0.3637862 0.3944623 -0.245636 0.3637862 0.3944623 -0.2686816 0.3637862 0.3944623 -0.2902431 0.3637862 0.3944623 -0.3104189 0.3637862 0.3944623 -0.3293248 0.3637862 0.3944623 -0.3470774 0.3637862 0.3944623 -0.3637862 0.3637862 0.3944623 -0.3795513 0.3637862 0.3944623 -0.3944623 0.3637862 0.3944623 -0.4085988 0.3637862 0.3944623 -0.4220313 0.3637862 0.3944623 -0.4348222 0.3637862 0.3944623 -0.4470264 0.3637862 0.3944623 -0.4586928 0.3637862 0.3944623 -0.4698649 0.3637862 0.3944623 -0.4805811 0.3637862 0.3944623 -0.490876 0.3637862 0.3944623 -0.5007803 0.3637862 0.3944623 -0.510322 0.3637862 0.3944623 -0.5195258 0.3637862 0.3944623 -0.5284142 0.3637862 0.3944623 -0.5370079 0.3637862 0.3944623 -0.5453253 0.3637862 0.3944623 -0.5533834 0.3637862 0.3944623 -0.5611974 0.3637862 0.3944623 -0.5687816 0.3637862 0.3944623 -0.092819 0.3795513 0.3944623 -0.1056428 0.3795513 0.3944623 -0.1201537 0.3795513 0.3944623 -0.1409607 0.3795513 0.3944623 -0.1678172 0.3795513 0.3944623 -0.1950164 0.3795513 0.3944623 -0.2210581 0.3795513 0.3944623 -0.245636 0.3795513 0.3944623 -0.2686816 0.3795513 0.3944623 -0.2902431 0.3795513 0.3944623 -0.3104189 0.3795513 0.3944623 -0.3293248 0.3795513 0.3944623 -0.3470774 0.3795513 0.3944623 -0.3637862 0.3795513 0.3944623 -0.3795513 0.3795513 0.3944623 -0.3944623 0.3795513 0.3944623 -0.4085988 0.3795513 0.3944623 -0.4220313 0.3795513 0.3944623 -0.4348222 0.3795513 0.3944623 -0.4470264 0.3795513 0.3944623 -0.4586928 0.3795513 0.3944623 -0.4698649 0.3795513 0.3944623 -0.4805811 0.3795513 0.3944623 -0.490876 0.3795513 0.3944623 -0.5007803 0.3795513 0.3944623 -0.510322 0.3795513 0.3944623 -0.5195258 0.3795513 0.3944623 -0.5284142 0.3795513 0.3944623 -0.5370079 0.3795513 0.3944623 -0.5453253 0.3795513 0.3944623 -0.5533834 0.3795513 0.3944623 -0.5611974 0.3795513 0.3944623 -0.5687816 0.3795513 0.3944623 -0.092819 0.3944623 0.3944623 -0.1056428 0.3944623 0.3944623 -0.1201537 0.3944623 0.3944623 -0.1409607 0.3944623 0.3944623 -0.1678172 0.3944623 0.3944623 -0.1950164 0.3944623 0.3944623 -0.2210581 0.3944623 0.3944623 -0.245636 0.3944623 0.3944623 -0.2686816 0.3944623 0.3944623 -0.2902431 0.3944623 0.3944623 -0.3104189 0.3944623 0.3944623 -0.3293248 0.3944623 0.3944623 -0.3470774 0.3944623 0.3944623 -0.3637862 0.3944623 0.3944623 -0.3795513 0.3944623 0.3944623 -0.3944623 0.3944623 0.3944623 -0.4085988 0.3944623 0.3944623 -0.4220313 0.3944623 0.3944623 -0.4348222 0.3944623 0.3944623 -0.4470264 0.3944623 0.3944623 -0.4586928 0.3944623 0.3944623 -0.4698649 0.3944623 0.3944623 -0.4805811 0.3944623 0.3944623 -0.490876 0.3944623 0.3944623 -0.5007803 0.3944623 0.3944623 -0.510322 0.3944623 0.3944623 -0.5195258 0.3944623 0.3944623 -0.5284142 0.3944623 0.3944623 -0.5370079 0.3944623 0.3944623 -0.5453253 0.3944623 0.3944623 -0.5533834 0.3944623 0.3944623 -0.5611974 0.3944623 0.3944623 -0.5687816 0.3944623 0.3944623 -0.092819 0.4085988 0.3944623 -0.1056428 0.4085988 0.3944623 -0.1201537 0.4085988 0.3944623 -0.1409607 0.4085988 0.3944623 -0.1678172 0.4085988 0.3944623 -0.1950164 0.4085988 0.3944623 -0.2210581 0.4085988 0.3944623 -0.245636 0.4085988 0.3944623 -0.2686816 0.4085988 0.3944623 -0.2902431 0.4085988 0.3944623 -0.3104189 0.4085988 0.3944623 -0.3293248 0.4085988 0.3944623 -0.3470774 0.4085988 0.3944623 -0.3637862 0.4085988 0.3944623 -0.3795513 0.4085988 0.3944623 -0.3944623 0.4085988 0.3944623 -0.4085988 0.4085988 0.3944623 -0.4220313 0.4085988 0.3944623 -0.4348222 0.4085988 0.3944623 -0.4470264 0.4085988 0.3944623 -0.4586928 0.4085988 0.3944623 -0.4698649 0.4085988 0.3944623 -0.4805811 0.4085988 0.3944623 -0.490876 0.4085988 0.3944623 -0.5007803 0.4085988 0.3944623 -0.510322 0.4085988 0.3944623 -0.5195258 0.4085988 0.3944623 -0.5284142 0.4085988 0.3944623 -0.5370079 0.4085988 0.3944623 -0.5453253 0.4085988 0.3944623 -0.5533834 0.4085988 0.3944623 -0.5611974 0.4085988 0.3944623 -0.5687816 0.4085988 0.3944623 -0.092819 0.4220313 0.3944623 -0.1056428 0.4220313 0.3944623 -0.1201537 0.4220313 0.3944623 -0.1409607 0.4220313 0.3944623 -0.1678172 0.4220313 0.3944623 -0.1950164 0.4220313 0.3944623 -0.2210581 0.4220313 0.3944623 -0.245636 0.4220313 0.3944623 -0.2686816 0.4220313 0.3944623 -0.2902431 0.4220313 0.3944623 -0.3104189 0.4220313 0.3944623 -0.3293248 0.4220313 0.3944623 -0.3470774 0.4220313 0.3944623 -0.3637862 0.4220313 0.3944623 -0.3795513 0.4220313 0.3944623 -0.3944623 0.4220313 0.3944623 -0.4085988 0.4220313 0.3944623 -0.4220313 0.4220313 0.3944623 -0.4348222 0.4220313 0.3944623 -0.4470264 0.4220313 0.3944623 -0.4586928 0.4220313 0.3944623 -0.4698649 0.4220313 0.3944623 -0.4805811 0.4220313 0.3944623 -0.490876 0.4220313 0.3944623 -0.5007803 0.4220313 0.3944623 -0.510322 0.4220313 0.3944623 -0.5195258 0.4220313 0.3944623 -0.5284142 0.4220313 0.3944623 -0.5370079 0.4220313 0.3944623 -0.5453253 0.4220313 0.3944623 -0.5533834 0.4220313 0.3944623 -0.5611974 0.4220313 0.3944623 -0.5687816 0.4220313 0.3944623 -0.092819 0.4348222 0.3944623 -0.1056428 0.4348222 0.3944623 -0.1201537 0.4348222 0.3944623 -0.1409607 0.4348222 0.3944623 -0.1678172 0.4348222 0.3944623 -0.1950164 0.4348222 0.3944623 -0.2210581 0.4348222 0.3944623 -0.245636 0.4348222 0.3944623 -0.2686816 0.4348222 0.3944623 -0.2902431 0.4348222 0.3944623 -0.3104189 0.4348222 0.3944623 -0.3293248 0.4348222 0.3944623 -0.3470774 0.4348222 0.3944623 -0.3637862 0.4348222 0.3944623 -0.3795513 0.4348222 0.3944623 -0.3944623 0.4348222 0.3944623 -0.4085988 0.4348222 0.3944623 -0.4220313 0.4348222 0.3944623 -0.4348222 0.4348222 0.3944623 -0.4470264 0.4348222 0.3944623 -0.4586928 0.4348222 0.3944623 -0.4698649 0.4348222 0.3944623 -0.4805811 0.4348222 0.3944623 -0.490876 0.4348222 0.3944623 -0.5007803 0.4348222 0.3944623 -0.510322 0.4348222 0.3944623 -0.5195258 0.4348222 0.3944623 -0.5284142 0.4348222 0.3944623 -0.5370079 0.4348222 0.3944623 -0.5453253 0.4348222 0.3944623 -0.5533834 0.4348222 0.3944623 -0.5611974 0.4348222 0.3944623 -0.5687816 0.4348222 0.3944623 -0.092819 0.4470264 0.3944623 -0.1056428 0.4470264 0.3944623 -0.1201537 0.4470264 0.3944623 -0.1409607 0.4470264 0.3944623 -0.1678172 0.4470264 0.3944623 -0.1950164 0.4470264 0.3944623 -0.2210581 0.4470264 0.3944623 -0.245636 0.4470264 0.3944623 -0.2686816 0.4470264 0.3944623 -0.2902431 0.4470264 0.3944623 -0.3104189 0.4470264 0.3944623 -0.3293248 0.4470264 0.3944623 -0.3470774 0.4470264 0.3944623 -0.3637862 0.4470264 0.3944623 -0.3795513 0.4470264 0.3944623 -0.3944623 0.4470264 0.3944623 -0.4085988 0.4470264 0.3944623 -0.4220313 0.4470264 0.3944623 -0.4348222 0.4470264 0.3944623 -0.4470264 0.4470264 0.3944623 -0.4586928 0.4470264 0.3944623 -0.4698649 0.4470264 0.3944623 -0.4805811 0.4470264 0.3944623 -0.490876 0.4470264 0.3944623 -0.5007803 0.4470264 0.3944623 -0.510322 0.4470264 0.3944623 -0.5195258 0.4470264 0.3944623 -0.5284142 0.4470264 0.3944623 -0.5370079 0.4470264 0.3944623 -0.5453253 0.4470264 0.3944623 -0.5533834 0.4470264 0.3944623 -0.5611974 0.4470264 0.3944623 -0.5687816 0.4470264 0.3944623 -0.092819 0.4586928 0.3944623 -0.1056428 0.4586928 0.3944623 -0.1201537 0.4586928 0.3944623 -0.1409607 0.4586928 0.3944623 -0.1678172 0.4586928 0.3944623 -0.1950164 0.4586928 0.3944623 -0.2210581 0.4586928 0.3944623 -0.245636 0.4586928 0.3944623 -0.2686816 0.4586928 0.3944623 -0.2902431 0.4586928 0.3944623 -0.3104189 0.4586928 0.3944623 -0.3293248 0.4586928 0.3944623 -0.3470774 0.4586928 0.3944623 -0.3637862 0.4586928 0.3944623 -0.3795513 0.4586928 0.3944623 -0.3944623 0.4586928 0.3944623 -0.4085988 0.4586928 0.3944623 -0.4220313 0.4586928 0.3944623 -0.4348222 0.4586928 0.3944623 -0.4470264 0.4586928 0.3944623 -0.4586928 0.4586928 0.3944623 -0.4698649 0.4586928 0.3944623 -0.4805811 0.4586928 0.3944623 -0.490876 0.4586928 0.3944623 -0.5007803 0.4586928 0.3944623 -0.510322 0.4586928 0.3944623 -0.5195258 0.4586928 0.3944623 -0.5284142 0.4586928 0.3944623 -0.5370079 0.4586928 0.3944623 -0.5453253 0.4586928 0.3944623 -0.5533834 0.4586928 0.3944623 -0.5611974 0.4586928 0.3944623 -0.5687816 0.4586928 0.3944623 -0.092819 0.4698649 0.3944623 -0.1056428 0.4698649 0.3944623 -0.1201537 0.4698649 0.3944623 -0.1409607 0.4698649 0.3944623 -0.1678172 0.4698649 0.3944623 -0.1950164 0.4698649 0.3944623 -0.2210581 0.4698649 0.3944623 -0.245636 0.4698649 0.3944623 -0.2686816 0.4698649 0.3944623 -0.2902431 0.4698649 0.3944623 -0.3104189 0.4698649 0.3944623 -0.3293248 0.4698649 0.3944623 -0.3470774 0.4698649 0.3944623 -0.3637862 0.4698649 0.3944623 -0.3795513 0.4698649 0.3944623 -0.3944623 0.4698649 0.3944623 -0.4085988 0.4698649 0.3944623 -0.4220313 0.4698649 0.3944623 -0.4348222 0.4698649 0.3944623 -0.4470264 0.4698649 0.3944623 -0.4586928 0.4698649 0.3944623 -0.4698649 0.4698649 0.3944623 -0.4805811 0.4698649 0.3944623 -0.490876 0.4698649 0.3944623 -0.5007803 0.4698649 0.3944623 -0.510322 0.4698649 0.3944623 -0.5195258 0.4698649 0.3944623 -0.5284142 0.4698649 0.3944623 -0.5370079 0.4698649 0.3944623 -0.5453253 0.4698649 0.3944623 -0.5533834 0.4698649 0.3944623 -0.5611974 0.4698649 0.3944623 -0.5687816 0.4698649 0.3944623 -0.092819 0.4805811 0.3944623 -0.1056428 0.4805811 0.3944623 -0.1201537 0.4805811 0.3944623 -0.1409607 0.4805811 0.3944623 -0.1678172 0.4805811 0.3944623 -0.1950164 0.4805811 0.3944623 -0.2210581 0.4805811 0.3944623 -0.245636 0.4805811 0.3944623 -0.2686816 0.4805811 0.3944623 -0.2902431 0.4805811 0.3944623 -0.3104189 0.4805811 0.3944623 -0.3293248 0.4805811 0.3944623 -0.3470774 0.4805811 0.3944623 -0.3637862 0.4805811 0.3944623 -0.3795513 0.4805811 0.3944623 -0.3944623 0.4805811 0.3944623 -0.4085988 0.4805811 0.3944623 -0.4220313 0.4805811 0.3944623 -0.4348222 0.4805811 0.3944623 -0.4470264 0.4805811 0.3944623 -0.4586928 0.4805811 0.3944623 -0.4698649 0.4805811 0.3944623 -0.4805811 0.4805811 0.3944623 -0.490876 0.4805811 0.3944623 -0.5007803 0.4805811 0.3944623 -0.510322 0.4805811 0.3944623 -0.5195258 0.4805811 0.3944623 -0.5284142 0.4805811 0.3944623 -0.5370079 0.4805811 0.3944623 -0.5453253 0.4805811 0.3944623 -0.5533834 0.4805811 0.3944623 -0.5611974 0.4805811 0.3944623 -0.5687816 0.4805811 0.3944623 -0.092819 0.490876 0.3944623 -0.1056428 0.490876 0.3944623 -0.1201537 0.490876 0.3944623 -0.1409607 0.490876 0.3944623 -0.1678172 0.490876 0.3944623 -0.1950164 0.490876 0.3944623 -0.2210581 0.490876 0.3944623 -0.245636 0.490876 0.3944623 -0.2686816 0.490876 0.3944623 -0.2902431 0.490876 0.3944623 -0.3104189 0.490876 0.3944623 -0.3293248 0.490876 0.3944623 -0.3470774 0.490876 0.3944623 -0.3637862 0.490876 0.3944623 -0.3795513 0.490876 0.3944623 -0.3944623 0.490876 0.3944623 -0.4085988 0.490876 0.3944623 -0.4220313 0.490876 0.3944623 -0.4348222 0.490876 0.3944623 -0.4470264 0.490876 0.3944623 -0.4586928 0.490876 0.3944623 -0.4698649 0.490876 0.3944623 -0.4805811 0.490876 0.3944623 -0.490876 0.490876 0.3944623 -0.5007803 0.490876 0.3944623 -0.510322 0.490876 0.3944623 -0.5195258 0.490876 0.3944623 -0.5284142 0.490876 0.3944623 -0.5370079 0.490876 0.3944623 -0.5453253 0.490876 0.3944623 -0.5533834 0.490876 0.3944623 -0.5611974 0.490876 0.3944623 -0.5687816 0.490876 0.3944623 -0.092819 0.5007803 0.3944623 -0.1056428 0.5007803 0.3944623 -0.1201537 0.5007803 0.3944623 -0.1409607 0.5007803 0.3944623 -0.1678172 0.5007803 0.3944623 -0.1950164 0.5007803 0.3944623 -0.2210581 0.5007803 0.3944623 -0.245636 0.5007803 0.3944623 -0.2686816 0.5007803 0.3944623 -0.2902431 0.5007803 0.3944623 -0.3104189 0.5007803 0.3944623 -0.3293248 0.5007803 0.3944623 -0.3470774 0.5007803 0.3944623 -0.3637862 0.5007803 0.3944623 -0.3795513 0.5007803 0.3944623 -0.3944623 0.5007803 0.3944623 -0.4085988 0.5007803 0.3944623 -0.4220313 0.5007803 0.3944623 -0.4348222 0.5007803 0.3944623 -0.4470264 0.5007803 0.3944623 -0.4586928 0.5007803 0.3944623 -0.4698649 0.5007803 0.3944623 -0.4805811 0.5007803 0.3944623 -0.490876 0.5007803 0.3944623 -0.5007803 0.5007803 0.3944623 -0.510322 0.5007803 0.3944623 -0.5195258 0.5007803 0.3944623 -0.5284142 0.5007803 0.3944623 -0.5370079 0.5007803 0.3944623 -0.5453253 0.5007803 0.3944623 -0.5533834 0.5007803 0.3944623 -0.5611974 0.5007803 0.3944623 -0.5687816 0.5007803 0.3944623 -0.092819 0.510322 0.3944623 -0.1056428 0.510322 0.3944623 -0.1201537 0.510322 0.3944623 -0.1409607 0.510322 0.3944623 -0.1678172 0.510322 0.3944623 -0.1950164 0.510322 0.3944623 -0.2210581 0.510322 0.3944623 -0.245636 0.510322 0.3944623 -0.2686816 0.510322 0.3944623 -0.2902431 0.510322 0.3944623 -0.3104189 0.510322 0.3944623 -0.3293248 0.510322 0.3944623 -0.3470774 0.510322 0.3944623 -0.3637862 0.510322 0.3944623 -0.3795513 0.510322 0.3944623 -0.3944623 0.510322 0.3944623 -0.4085988 0.510322 0.3944623 -0.4220313 0.510322 0.3944623 -0.4348222 0.510322 0.3944623 -0.4470264 0.510322 0.3944623 -0.4586928 0.510322 0.3944623 -0.4698649 0.510322 0.3944623 -0.4805811 0.510322 0.3944623 -0.490876 0.510322 0.3944623 -0.5007803 0.510322 0.3944623 -0.510322 0.510322 0.3944623 -0.5195258 0.510322 0.3944623 -0.5284142 0.510322 0.3944623 -0.5370079 0.510322 0.3944623 -0.5453253 0.510322 0.3944623 -0.5533834 0.510322 0.3944623 -0.5611974 0.510322 0.3944623 -0.5687816 0.510322 0.3944623 -0.092819 0.5195258 0.3944623 -0.1056428 0.5195258 0.3944623 -0.1201537 0.5195258 0.3944623 -0.1409607 0.5195258 0.3944623 -0.1678172 0.5195258 0.3944623 -0.1950164 0.5195258 0.3944623 -0.2210581 0.5195258 0.3944623 -0.245636 0.5195258 0.3944623 -0.2686816 0.5195258 0.3944623 -0.2902431 0.5195258 0.3944623 -0.3104189 0.5195258 0.3944623 -0.3293248 0.5195258 0.3944623 -0.3470774 0.5195258 0.3944623 -0.3637862 0.5195258 0.3944623 -0.3795513 0.5195258 0.3944623 -0.3944623 0.5195258 0.3944623 -0.4085988 0.5195258 0.3944623 -0.4220313 0.5195258 0.3944623 -0.4348222 0.5195258 0.3944623 -0.4470264 0.5195258 0.3944623 -0.4586928 0.5195258 0.3944623 -0.4698649 0.5195258 0.3944623 -0.4805811 0.5195258 0.3944623 -0.490876 0.5195258 0.3944623 -0.5007803 0.5195258 0.3944623 -0.510322 0.5195258 0.3944623 -0.5195258 0.5195258 0.3944623 -0.5284142 0.5195258 0.3944623 -0.5370079 0.5195258 0.3944623 -0.5453253 0.5195258 0.3944623 -0.5533834 0.5195258 0.3944623 -0.5611974 0.5195258 0.3944623 -0.5687816 0.5195258 0.3944623 -0.092819 0.5284142 0.3944623 -0.1056428 0.5284142 0.3944623 -0.1201537 0.5284142 0.3944623 -0.1409607 0.5284142 0.3944623 -0.1678172 0.5284142 0.3944623 -0.1950164 0.5284142 0.3944623 -0.2210581 0.5284142 0.3944623 -0.245636 0.5284142 0.3944623 -0.2686816 0.5284142 0.3944623 -0.2902431 0.5284142 0.3944623 -0.3104189 0.5284142 0.3944623 -0.3293248 0.5284142 0.3944623 -0.3470774 0.5284142 0.3944623 -0.3637862 0.5284142 0.3944623 -0.3795513 0.5284142 0.3944623 -0.3944623 0.5284142 0.3944623 -0.4085988 0.5284142 0.3944623 -0.4220313 0.5284142 0.3944623 -0.4348222 0.5284142 0.3944623 -0.4470264 0.5284142 0.3944623 -0.4586928 0.5284142 0.3944623 -0.4698649 0.5284142 0.3944623 -0.4805811 0.5284142 0.3944623 -0.490876 0.5284142 0.3944623 -0.5007803 0.5284142 0.3944623 -0.510322 0.5284142 0.3944623 -0.5195258 0.5284142 0.3944623 -0.5284142 0.5284142 0.3944623 -0.5370079 0.5284142 0.3944623 -0.5453253 0.5284142 0.3944623 -0.5533834 0.5284142 0.3944623 -0.5611974 0.5284142 0.3944623 -0.5687816 0.5284142 0.3944623 -0.092819 0.5370079 0.3944623 -0.1056428 0.5370079 0.3944623 -0.1201537 0.5370079 0.3944623 -0.1409607 0.5370079 0.3944623 -0.1678172 0.5370079 0.3944623 -0.1950164 0.5370079 0.3944623 -0.2210581 0.5370079 0.3944623 -0.245636 0.5370079 0.3944623 -0.2686816 0.5370079 0.3944623 -0.2902431 0.5370079 0.3944623 -0.3104189 0.5370079 0.3944623 -0.3293248 0.5370079 0.3944623 -0.3470774 0.5370079 0.3944623 -0.3637862 0.5370079 0.3944623 -0.3795513 0.5370079 0.3944623 -0.3944623 0.5370079 0.3944623 -0.4085988 0.5370079 0.3944623 -0.4220313 0.5370079 0.3944623 -0.4348222 0.5370079 0.3944623 -0.4470264 0.5370079 0.3944623 -0.4586928 0.5370079 0.3944623 -0.4698649 0.5370079 0.3944623 -0.4805811 0.5370079 0.3944623 -0.490876 0.5370079 0.3944623 -0.5007803 0.5370079 0.3944623 -0.510322 0.5370079 0.3944623 -0.5195258 0.5370079 0.3944623 -0.5284142 0.5370079 0.3944623 -0.5370079 0.5370079 0.3944623 -0.5453253 0.5370079 0.3944623 -0.5533834 0.5370079 0.3944623 -0.5611974 0.5370079 0.3944623 -0.5687816 0.5370079 0.3944623 -0.092819 0.5453253 0.3944623 -0.1056428 0.5453253 0.3944623 -0.1201537 0.5453253 0.3944623 -0.1409607 0.5453253 0.3944623 -0.1678172 0.5453253 0.3944623 -0.1950164 0.5453253 0.3944623 -0.2210581 0.5453253 0.3944623 -0.245636 0.5453253 0.3944623 -0.2686816 0.5453253 0.3944623 -0.2902431 0.5453253 0.3944623 -0.3104189 0.5453253 0.3944623 -0.3293248 0.5453253 0.3944623 -0.3470774 0.5453253 0.3944623 -0.3637862 0.5453253 0.3944623 -0.3795513 0.5453253 0.3944623 -0.3944623 0.5453253 0.3944623 -0.4085988 0.5453253 0.3944623 -0.4220313 0.5453253 0.3944623 -0.4348222 0.5453253 0.3944623 -0.4470264 0.5453253 0.3944623 -0.4586928 0.5453253 0.3944623 -0.4698649 0.5453253 0.3944623 -0.4805811 0.5453253 0.3944623 -0.490876 0.5453253 0.3944623 -0.5007803 0.5453253 0.3944623 -0.510322 0.5453253 0.3944623 -0.5195258 0.5453253 0.3944623 -0.5284142 0.5453253 0.3944623 -0.5370079 0.5453253 0.3944623 -0.5453253 0.5453253 0.3944623 -0.5533834 0.5453253 0.3944623 -0.5611974 0.5453253 0.3944623 -0.5687816 0.5453253 0.3944623 -0.092819 0.5533834 0.3944623 -0.1056428 0.5533834 0.3944623 -0.1201537 0.5533834 0.3944623 -0.1409607 0.5533834 0.3944623 -0.1678172 0.5533834 0.3944623 -0.1950164 0.5533834 0.3944623 -0.2210581 0.5533834 0.3944623 -0.245636 0.5533834 0.3944623 -0.2686816 0.5533834 0.3944623 -0.2902431 0.5533834 0.3944623 -0.3104189 0.5533834 0.3944623 -0.3293248 0.5533834 0.3944623 -0.3470774 0.5533834 0.3944623 -0.3637862 0.5533834 0.3944623 -0.3795513 0.5533834 0.3944623 -0.3944623 0.5533834 0.3944623 -0.4085988 0.5533834 0.3944623 -0.4220313 0.5533834 0.3944623 -0.4348222 0.5533834 0.3944623 -0.4470264 0.5533834 0.3944623 -0.4586928 0.5533834 0.3944623 -0.4698649 0.5533834 0.3944623 -0.4805811 0.5533834 0.3944623 -0.490876 0.5533834 0.3944623 -0.5007803 0.5533834 0.3944623 -0.510322 0.5533834 0.3944623 -0.5195258 0.5533834 0.3944623 -0.5284142 0.5533834 0.3944623 -0.5370079 0.5533834 0.3944623 -0.5453253 0.5533834 0.3944623 -0.5533834 0.5533834 0.3944623 -0.5611974 0.5533834 0.3944623 -0.5687816 0.5533834 0.3944623 -0.092819 0.5611974 0.3944623 -0.1056428 0.5611974 0.3944623 -0.1201537 0.5611974 0.3944623 -0.1409607 0.5611974 0.3944623 -0.1678172 0.5611974 0.3944623 -0.1950164 0.5611974 0.3944623 -0.2210581 0.5611974 0.3944623 -0.245636 0.5611974 0.3944623 -0.2686816 0.5611974 0.3944623 -0.2902431 0.5611974 0.3944623 -0.3104189 0.5611974 0.3944623 -0.3293248 0.5611974 0.3944623 -0.3470774 0.5611974 0.3944623 -0.3637862 0.5611974 0.3944623 -0.3795513 0.5611974 0.3944623 -0.3944623 0.5611974 0.3944623 -0.4085988 0.5611974 0.3944623 -0.4220313 0.5611974 0.3944623 -0.4348222 0.5611974 0.3944623 -0.4470264 0.5611974 0.3944623 -0.4586928 0.5611974 0.3944623 -0.4698649 0.5611974 0.3944623 -0.4805811 0.5611974 0.3944623 -0.490876 0.5611974 0.3944623 -0.5007803 0.5611974 0.3944623 -0.510322 0.5611974 0.3944623 -0.5195258 0.5611974 0.3944623 -0.5284142 0.5611974 0.3944623 -0.5370079 0.5611974 0.3944623 -0.5453253 0.5611974 0.3944623 -0.5533834 0.5611974 0.3944623 -0.5611974 0.5611974 0.3944623 -0.5687816 0.5611974 0.3944623 -0.092819 0.5687816 0.3944623 -0.1056428 0.5687816 0.3944623 -0.1201537 0.5687816 0.3944623 -0.1409607 0.5687816 0.3944623 -0.1678172 0.5687816 0.3944623 -0.1950164 0.5687816 0.3944623 -0.2210581 0.5687816 0.3944623 -0.245636 0.5687816 0.3944623 -0.2686816 0.5687816 0.3944623 -0.2902431 0.5687816 0.3944623 -0.3104189 0.5687816 0.3944623 -0.3293248 0.5687816 0.3944623 -0.3470774 0.5687816 0.3944623 -0.3637862 0.5687816 0.3944623 -0.3795513 0.5687816 0.3944623 -0.3944623 0.5687816 0.3944623 -0.4085988 0.5687816 0.3944623 -0.4220313 0.5687816 0.3944623 -0.4348222 0.5687816 0.3944623 -0.4470264 0.5687816 0.3944623 -0.4586928 0.5687816 0.3944623 -0.4698649 0.5687816 0.3944623 -0.4805811 0.5687816 0.3944623 -0.490876 0.5687816 0.3944623 -0.5007803 0.5687816 0.3944623 -0.510322 0.5687816 0.3944623 -0.5195258 0.5687816 0.3944623 -0.5284142 0.5687816 0.3944623 -0.5370079 0.5687816 0.3944623 -0.5453253 0.5687816 0.3944623 -0.5533834 0.5687816 0.3944623 -0.5611974 0.5687816 0.3944623 -0.5687816 0.5687816 0.3944623 -0.092819 0.092819 0.4085988 -0.1056428 0.092819 0.4085988 -0.1201537 0.092819 0.4085988 -0.1409607 0.092819 0.4085988 -0.1678172 0.092819 0.4085988 -0.1950164 0.092819 0.4085988 -0.2210581 0.092819 0.4085988 -0.245636 0.092819 0.4085988 -0.2686816 0.092819 0.4085988 -0.2902431 0.092819 0.4085988 -0.3104189 0.092819 0.4085988 -0.3293248 0.092819 0.4085988 -0.3470774 0.092819 0.4085988 -0.3637862 0.092819 0.4085988 -0.3795513 0.092819 0.4085988 -0.3944623 0.092819 0.4085988 -0.4085988 0.092819 0.4085988 -0.4220313 0.092819 0.4085988 -0.4348222 0.092819 0.4085988 -0.4470264 0.092819 0.4085988 -0.4586928 0.092819 0.4085988 -0.4698649 0.092819 0.4085988 -0.4805811 0.092819 0.4085988 -0.490876 0.092819 0.4085988 -0.5007803 0.092819 0.4085988 -0.510322 0.092819 0.4085988 -0.5195258 0.092819 0.4085988 -0.5284142 0.092819 0.4085988 -0.5370079 0.092819 0.4085988 -0.5453253 0.092819 0.4085988 -0.5533834 0.092819 0.4085988 -0.5611974 0.092819 0.4085988 -0.5687816 0.092819 0.4085988 -0.092819 0.1056428 0.4085988 -0.1056428 0.1056428 0.4085988 -0.1201537 0.1056428 0.4085988 -0.1409607 0.1056428 0.4085988 -0.1678172 0.1056428 0.4085988 -0.1950164 0.1056428 0.4085988 -0.2210581 0.1056428 0.4085988 -0.245636 0.1056428 0.4085988 -0.2686816 0.1056428 0.4085988 -0.2902431 0.1056428 0.4085988 -0.3104189 0.1056428 0.4085988 -0.3293248 0.1056428 0.4085988 -0.3470774 0.1056428 0.4085988 -0.3637862 0.1056428 0.4085988 -0.3795513 0.1056428 0.4085988 -0.3944623 0.1056428 0.4085988 -0.4085988 0.1056428 0.4085988 -0.4220313 0.1056428 0.4085988 -0.4348222 0.1056428 0.4085988 -0.4470264 0.1056428 0.4085988 -0.4586928 0.1056428 0.4085988 -0.4698649 0.1056428 0.4085988 -0.4805811 0.1056428 0.4085988 -0.490876 0.1056428 0.4085988 -0.5007803 0.1056428 0.4085988 -0.510322 0.1056428 0.4085988 -0.5195258 0.1056428 0.4085988 -0.5284142 0.1056428 0.4085988 -0.5370079 0.1056428 0.4085988 -0.5453253 0.1056428 0.4085988 -0.5533834 0.1056428 0.4085988 -0.5611974 0.1056428 0.4085988 -0.5687816 0.1056428 0.4085988 -0.092819 0.1201537 0.4085988 -0.1056428 0.1201537 0.4085988 -0.1201537 0.1201537 0.4085988 -0.1409607 0.1201537 0.4085988 -0.1678172 0.1201537 0.4085988 -0.1950164 0.1201537 0.4085988 -0.2210581 0.1201537 0.4085988 -0.245636 0.1201537 0.4085988 -0.2686816 0.1201537 0.4085988 -0.2902431 0.1201537 0.4085988 -0.3104189 0.1201537 0.4085988 -0.3293248 0.1201537 0.4085988 -0.3470774 0.1201537 0.4085988 -0.3637862 0.1201537 0.4085988 -0.3795513 0.1201537 0.4085988 -0.3944623 0.1201537 0.4085988 -0.4085988 0.1201537 0.4085988 -0.4220313 0.1201537 0.4085988 -0.4348222 0.1201537 0.4085988 -0.4470264 0.1201537 0.4085988 -0.4586928 0.1201537 0.4085988 -0.4698649 0.1201537 0.4085988 -0.4805811 0.1201537 0.4085988 -0.490876 0.1201537 0.4085988 -0.5007803 0.1201537 0.4085988 -0.510322 0.1201537 0.4085988 -0.5195258 0.1201537 0.4085988 -0.5284142 0.1201537 0.4085988 -0.5370079 0.1201537 0.4085988 -0.5453253 0.1201537 0.4085988 -0.5533834 0.1201537 0.4085988 -0.5611974 0.1201537 0.4085988 -0.5687816 0.1201537 0.4085988 -0.092819 0.1409607 0.4085988 -0.1056428 0.1409607 0.4085988 -0.1201537 0.1409607 0.4085988 -0.1409607 0.1409607 0.4085988 -0.1678172 0.1409607 0.4085988 -0.1950164 0.1409607 0.4085988 -0.2210581 0.1409607 0.4085988 -0.245636 0.1409607 0.4085988 -0.2686816 0.1409607 0.4085988 -0.2902431 0.1409607 0.4085988 -0.3104189 0.1409607 0.4085988 -0.3293248 0.1409607 0.4085988 -0.3470774 0.1409607 0.4085988 -0.3637862 0.1409607 0.4085988 -0.3795513 0.1409607 0.4085988 -0.3944623 0.1409607 0.4085988 -0.4085988 0.1409607 0.4085988 -0.4220313 0.1409607 0.4085988 -0.4348222 0.1409607 0.4085988 -0.4470264 0.1409607 0.4085988 -0.4586928 0.1409607 0.4085988 -0.4698649 0.1409607 0.4085988 -0.4805811 0.1409607 0.4085988 -0.490876 0.1409607 0.4085988 -0.5007803 0.1409607 0.4085988 -0.510322 0.1409607 0.4085988 -0.5195258 0.1409607 0.4085988 -0.5284142 0.1409607 0.4085988 -0.5370079 0.1409607 0.4085988 -0.5453253 0.1409607 0.4085988 -0.5533834 0.1409607 0.4085988 -0.5611974 0.1409607 0.4085988 -0.5687816 0.1409607 0.4085988 -0.092819 0.1678172 0.4085988 -0.1056428 0.1678172 0.4085988 -0.1201537 0.1678172 0.4085988 -0.1409607 0.1678172 0.4085988 -0.1678172 0.1678172 0.4085988 -0.1950164 0.1678172 0.4085988 -0.2210581 0.1678172 0.4085988 -0.245636 0.1678172 0.4085988 -0.2686816 0.1678172 0.4085988 -0.2902431 0.1678172 0.4085988 -0.3104189 0.1678172 0.4085988 -0.3293248 0.1678172 0.4085988 -0.3470774 0.1678172 0.4085988 -0.3637862 0.1678172 0.4085988 -0.3795513 0.1678172 0.4085988 -0.3944623 0.1678172 0.4085988 -0.4085988 0.1678172 0.4085988 -0.4220313 0.1678172 0.4085988 -0.4348222 0.1678172 0.4085988 -0.4470264 0.1678172 0.4085988 -0.4586928 0.1678172 0.4085988 -0.4698649 0.1678172 0.4085988 -0.4805811 0.1678172 0.4085988 -0.490876 0.1678172 0.4085988 -0.5007803 0.1678172 0.4085988 -0.510322 0.1678172 0.4085988 -0.5195258 0.1678172 0.4085988 -0.5284142 0.1678172 0.4085988 -0.5370079 0.1678172 0.4085988 -0.5453253 0.1678172 0.4085988 -0.5533834 0.1678172 0.4085988 -0.5611974 0.1678172 0.4085988 -0.5687816 0.1678172 0.4085988 -0.092819 0.1950164 0.4085988 -0.1056428 0.1950164 0.4085988 -0.1201537 0.1950164 0.4085988 -0.1409607 0.1950164 0.4085988 -0.1678172 0.1950164 0.4085988 -0.1950164 0.1950164 0.4085988 -0.2210581 0.1950164 0.4085988 -0.245636 0.1950164 0.4085988 -0.2686816 0.1950164 0.4085988 -0.2902431 0.1950164 0.4085988 -0.3104189 0.1950164 0.4085988 -0.3293248 0.1950164 0.4085988 -0.3470774 0.1950164 0.4085988 -0.3637862 0.1950164 0.4085988 -0.3795513 0.1950164 0.4085988 -0.3944623 0.1950164 0.4085988 -0.4085988 0.1950164 0.4085988 -0.4220313 0.1950164 0.4085988 -0.4348222 0.1950164 0.4085988 -0.4470264 0.1950164 0.4085988 -0.4586928 0.1950164 0.4085988 -0.4698649 0.1950164 0.4085988 -0.4805811 0.1950164 0.4085988 -0.490876 0.1950164 0.4085988 -0.5007803 0.1950164 0.4085988 -0.510322 0.1950164 0.4085988 -0.5195258 0.1950164 0.4085988 -0.5284142 0.1950164 0.4085988 -0.5370079 0.1950164 0.4085988 -0.5453253 0.1950164 0.4085988 -0.5533834 0.1950164 0.4085988 -0.5611974 0.1950164 0.4085988 -0.5687816 0.1950164 0.4085988 -0.092819 0.2210581 0.4085988 -0.1056428 0.2210581 0.4085988 -0.1201537 0.2210581 0.4085988 -0.1409607 0.2210581 0.4085988 -0.1678172 0.2210581 0.4085988 -0.1950164 0.2210581 0.4085988 -0.2210581 0.2210581 0.4085988 -0.245636 0.2210581 0.4085988 -0.2686816 0.2210581 0.4085988 -0.2902431 0.2210581 0.4085988 -0.3104189 0.2210581 0.4085988 -0.3293248 0.2210581 0.4085988 -0.3470774 0.2210581 0.4085988 -0.3637862 0.2210581 0.4085988 -0.3795513 0.2210581 0.4085988 -0.3944623 0.2210581 0.4085988 -0.4085988 0.2210581 0.4085988 -0.4220313 0.2210581 0.4085988 -0.4348222 0.2210581 0.4085988 -0.4470264 0.2210581 0.4085988 -0.4586928 0.2210581 0.4085988 -0.4698649 0.2210581 0.4085988 -0.4805811 0.2210581 0.4085988 -0.490876 0.2210581 0.4085988 -0.5007803 0.2210581 0.4085988 -0.510322 0.2210581 0.4085988 -0.5195258 0.2210581 0.4085988 -0.5284142 0.2210581 0.4085988 -0.5370079 0.2210581 0.4085988 -0.5453253 0.2210581 0.4085988 -0.5533834 0.2210581 0.4085988 -0.5611974 0.2210581 0.4085988 -0.5687816 0.2210581 0.4085988 -0.092819 0.245636 0.4085988 -0.1056428 0.245636 0.4085988 -0.1201537 0.245636 0.4085988 -0.1409607 0.245636 0.4085988 -0.1678172 0.245636 0.4085988 -0.1950164 0.245636 0.4085988 -0.2210581 0.245636 0.4085988 -0.245636 0.245636 0.4085988 -0.2686816 0.245636 0.4085988 -0.2902431 0.245636 0.4085988 -0.3104189 0.245636 0.4085988 -0.3293248 0.245636 0.4085988 -0.3470774 0.245636 0.4085988 -0.3637862 0.245636 0.4085988 -0.3795513 0.245636 0.4085988 -0.3944623 0.245636 0.4085988 -0.4085988 0.245636 0.4085988 -0.4220313 0.245636 0.4085988 -0.4348222 0.245636 0.4085988 -0.4470264 0.245636 0.4085988 -0.4586928 0.245636 0.4085988 -0.4698649 0.245636 0.4085988 -0.4805811 0.245636 0.4085988 -0.490876 0.245636 0.4085988 -0.5007803 0.245636 0.4085988 -0.510322 0.245636 0.4085988 -0.5195258 0.245636 0.4085988 -0.5284142 0.245636 0.4085988 -0.5370079 0.245636 0.4085988 -0.5453253 0.245636 0.4085988 -0.5533834 0.245636 0.4085988 -0.5611974 0.245636 0.4085988 -0.5687816 0.245636 0.4085988 -0.092819 0.2686816 0.4085988 -0.1056428 0.2686816 0.4085988 -0.1201537 0.2686816 0.4085988 -0.1409607 0.2686816 0.4085988 -0.1678172 0.2686816 0.4085988 -0.1950164 0.2686816 0.4085988 -0.2210581 0.2686816 0.4085988 -0.245636 0.2686816 0.4085988 -0.2686816 0.2686816 0.4085988 -0.2902431 0.2686816 0.4085988 -0.3104189 0.2686816 0.4085988 -0.3293248 0.2686816 0.4085988 -0.3470774 0.2686816 0.4085988 -0.3637862 0.2686816 0.4085988 -0.3795513 0.2686816 0.4085988 -0.3944623 0.2686816 0.4085988 -0.4085988 0.2686816 0.4085988 -0.4220313 0.2686816 0.4085988 -0.4348222 0.2686816 0.4085988 -0.4470264 0.2686816 0.4085988 -0.4586928 0.2686816 0.4085988 -0.4698649 0.2686816 0.4085988 -0.4805811 0.2686816 0.4085988 -0.490876 0.2686816 0.4085988 -0.5007803 0.2686816 0.4085988 -0.510322 0.2686816 0.4085988 -0.5195258 0.2686816 0.4085988 -0.5284142 0.2686816 0.4085988 -0.5370079 0.2686816 0.4085988 -0.5453253 0.2686816 0.4085988 -0.5533834 0.2686816 0.4085988 -0.5611974 0.2686816 0.4085988 -0.5687816 0.2686816 0.4085988 -0.092819 0.2902431 0.4085988 -0.1056428 0.2902431 0.4085988 -0.1201537 0.2902431 0.4085988 -0.1409607 0.2902431 0.4085988 -0.1678172 0.2902431 0.4085988 -0.1950164 0.2902431 0.4085988 -0.2210581 0.2902431 0.4085988 -0.245636 0.2902431 0.4085988 -0.2686816 0.2902431 0.4085988 -0.2902431 0.2902431 0.4085988 -0.3104189 0.2902431 0.4085988 -0.3293248 0.2902431 0.4085988 -0.3470774 0.2902431 0.4085988 -0.3637862 0.2902431 0.4085988 -0.3795513 0.2902431 0.4085988 -0.3944623 0.2902431 0.4085988 -0.4085988 0.2902431 0.4085988 -0.4220313 0.2902431 0.4085988 -0.4348222 0.2902431 0.4085988 -0.4470264 0.2902431 0.4085988 -0.4586928 0.2902431 0.4085988 -0.4698649 0.2902431 0.4085988 -0.4805811 0.2902431 0.4085988 -0.490876 0.2902431 0.4085988 -0.5007803 0.2902431 0.4085988 -0.510322 0.2902431 0.4085988 -0.5195258 0.2902431 0.4085988 -0.5284142 0.2902431 0.4085988 -0.5370079 0.2902431 0.4085988 -0.5453253 0.2902431 0.4085988 -0.5533834 0.2902431 0.4085988 -0.5611974 0.2902431 0.4085988 -0.5687816 0.2902431 0.4085988 -0.092819 0.3104189 0.4085988 -0.1056428 0.3104189 0.4085988 -0.1201537 0.3104189 0.4085988 -0.1409607 0.3104189 0.4085988 -0.1678172 0.3104189 0.4085988 -0.1950164 0.3104189 0.4085988 -0.2210581 0.3104189 0.4085988 -0.245636 0.3104189 0.4085988 -0.2686816 0.3104189 0.4085988 -0.2902431 0.3104189 0.4085988 -0.3104189 0.3104189 0.4085988 -0.3293248 0.3104189 0.4085988 -0.3470774 0.3104189 0.4085988 -0.3637862 0.3104189 0.4085988 -0.3795513 0.3104189 0.4085988 -0.3944623 0.3104189 0.4085988 -0.4085988 0.3104189 0.4085988 -0.4220313 0.3104189 0.4085988 -0.4348222 0.3104189 0.4085988 -0.4470264 0.3104189 0.4085988 -0.4586928 0.3104189 0.4085988 -0.4698649 0.3104189 0.4085988 -0.4805811 0.3104189 0.4085988 -0.490876 0.3104189 0.4085988 -0.5007803 0.3104189 0.4085988 -0.510322 0.3104189 0.4085988 -0.5195258 0.3104189 0.4085988 -0.5284142 0.3104189 0.4085988 -0.5370079 0.3104189 0.4085988 -0.5453253 0.3104189 0.4085988 -0.5533834 0.3104189 0.4085988 -0.5611974 0.3104189 0.4085988 -0.5687816 0.3104189 0.4085988 -0.092819 0.3293248 0.4085988 -0.1056428 0.3293248 0.4085988 -0.1201537 0.3293248 0.4085988 -0.1409607 0.3293248 0.4085988 -0.1678172 0.3293248 0.4085988 -0.1950164 0.3293248 0.4085988 -0.2210581 0.3293248 0.4085988 -0.245636 0.3293248 0.4085988 -0.2686816 0.3293248 0.4085988 -0.2902431 0.3293248 0.4085988 -0.3104189 0.3293248 0.4085988 -0.3293248 0.3293248 0.4085988 -0.3470774 0.3293248 0.4085988 -0.3637862 0.3293248 0.4085988 -0.3795513 0.3293248 0.4085988 -0.3944623 0.3293248 0.4085988 -0.4085988 0.3293248 0.4085988 -0.4220313 0.3293248 0.4085988 -0.4348222 0.3293248 0.4085988 -0.4470264 0.3293248 0.4085988 -0.4586928 0.3293248 0.4085988 -0.4698649 0.3293248 0.4085988 -0.4805811 0.3293248 0.4085988 -0.490876 0.3293248 0.4085988 -0.5007803 0.3293248 0.4085988 -0.510322 0.3293248 0.4085988 -0.5195258 0.3293248 0.4085988 -0.5284142 0.3293248 0.4085988 -0.5370079 0.3293248 0.4085988 -0.5453253 0.3293248 0.4085988 -0.5533834 0.3293248 0.4085988 -0.5611974 0.3293248 0.4085988 -0.5687816 0.3293248 0.4085988 -0.092819 0.3470774 0.4085988 -0.1056428 0.3470774 0.4085988 -0.1201537 0.3470774 0.4085988 -0.1409607 0.3470774 0.4085988 -0.1678172 0.3470774 0.4085988 -0.1950164 0.3470774 0.4085988 -0.2210581 0.3470774 0.4085988 -0.245636 0.3470774 0.4085988 -0.2686816 0.3470774 0.4085988 -0.2902431 0.3470774 0.4085988 -0.3104189 0.3470774 0.4085988 -0.3293248 0.3470774 0.4085988 -0.3470774 0.3470774 0.4085988 -0.3637862 0.3470774 0.4085988 -0.3795513 0.3470774 0.4085988 -0.3944623 0.3470774 0.4085988 -0.4085988 0.3470774 0.4085988 -0.4220313 0.3470774 0.4085988 -0.4348222 0.3470774 0.4085988 -0.4470264 0.3470774 0.4085988 -0.4586928 0.3470774 0.4085988 -0.4698649 0.3470774 0.4085988 -0.4805811 0.3470774 0.4085988 -0.490876 0.3470774 0.4085988 -0.5007803 0.3470774 0.4085988 -0.510322 0.3470774 0.4085988 -0.5195258 0.3470774 0.4085988 -0.5284142 0.3470774 0.4085988 -0.5370079 0.3470774 0.4085988 -0.5453253 0.3470774 0.4085988 -0.5533834 0.3470774 0.4085988 -0.5611974 0.3470774 0.4085988 -0.5687816 0.3470774 0.4085988 -0.092819 0.3637862 0.4085988 -0.1056428 0.3637862 0.4085988 -0.1201537 0.3637862 0.4085988 -0.1409607 0.3637862 0.4085988 -0.1678172 0.3637862 0.4085988 -0.1950164 0.3637862 0.4085988 -0.2210581 0.3637862 0.4085988 -0.245636 0.3637862 0.4085988 -0.2686816 0.3637862 0.4085988 -0.2902431 0.3637862 0.4085988 -0.3104189 0.3637862 0.4085988 -0.3293248 0.3637862 0.4085988 -0.3470774 0.3637862 0.4085988 -0.3637862 0.3637862 0.4085988 -0.3795513 0.3637862 0.4085988 -0.3944623 0.3637862 0.4085988 -0.4085988 0.3637862 0.4085988 -0.4220313 0.3637862 0.4085988 -0.4348222 0.3637862 0.4085988 -0.4470264 0.3637862 0.4085988 -0.4586928 0.3637862 0.4085988 -0.4698649 0.3637862 0.4085988 -0.4805811 0.3637862 0.4085988 -0.490876 0.3637862 0.4085988 -0.5007803 0.3637862 0.4085988 -0.510322 0.3637862 0.4085988 -0.5195258 0.3637862 0.4085988 -0.5284142 0.3637862 0.4085988 -0.5370079 0.3637862 0.4085988 -0.5453253 0.3637862 0.4085988 -0.5533834 0.3637862 0.4085988 -0.5611974 0.3637862 0.4085988 -0.5687816 0.3637862 0.4085988 -0.092819 0.3795513 0.4085988 -0.1056428 0.3795513 0.4085988 -0.1201537 0.3795513 0.4085988 -0.1409607 0.3795513 0.4085988 -0.1678172 0.3795513 0.4085988 -0.1950164 0.3795513 0.4085988 -0.2210581 0.3795513 0.4085988 -0.245636 0.3795513 0.4085988 -0.2686816 0.3795513 0.4085988 -0.2902431 0.3795513 0.4085988 -0.3104189 0.3795513 0.4085988 -0.3293248 0.3795513 0.4085988 -0.3470774 0.3795513 0.4085988 -0.3637862 0.3795513 0.4085988 -0.3795513 0.3795513 0.4085988 -0.3944623 0.3795513 0.4085988 -0.4085988 0.3795513 0.4085988 -0.4220313 0.3795513 0.4085988 -0.4348222 0.3795513 0.4085988 -0.4470264 0.3795513 0.4085988 -0.4586928 0.3795513 0.4085988 -0.4698649 0.3795513 0.4085988 -0.4805811 0.3795513 0.4085988 -0.490876 0.3795513 0.4085988 -0.5007803 0.3795513 0.4085988 -0.510322 0.3795513 0.4085988 -0.5195258 0.3795513 0.4085988 -0.5284142 0.3795513 0.4085988 -0.5370079 0.3795513 0.4085988 -0.5453253 0.3795513 0.4085988 -0.5533834 0.3795513 0.4085988 -0.5611974 0.3795513 0.4085988 -0.5687816 0.3795513 0.4085988 -0.092819 0.3944623 0.4085988 -0.1056428 0.3944623 0.4085988 -0.1201537 0.3944623 0.4085988 -0.1409607 0.3944623 0.4085988 -0.1678172 0.3944623 0.4085988 -0.1950164 0.3944623 0.4085988 -0.2210581 0.3944623 0.4085988 -0.245636 0.3944623 0.4085988 -0.2686816 0.3944623 0.4085988 -0.2902431 0.3944623 0.4085988 -0.3104189 0.3944623 0.4085988 -0.3293248 0.3944623 0.4085988 -0.3470774 0.3944623 0.4085988 -0.3637862 0.3944623 0.4085988 -0.3795513 0.3944623 0.4085988 -0.3944623 0.3944623 0.4085988 -0.4085988 0.3944623 0.4085988 -0.4220313 0.3944623 0.4085988 -0.4348222 0.3944623 0.4085988 -0.4470264 0.3944623 0.4085988 -0.4586928 0.3944623 0.4085988 -0.4698649 0.3944623 0.4085988 -0.4805811 0.3944623 0.4085988 -0.490876 0.3944623 0.4085988 -0.5007803 0.3944623 0.4085988 -0.510322 0.3944623 0.4085988 -0.5195258 0.3944623 0.4085988 -0.5284142 0.3944623 0.4085988 -0.5370079 0.3944623 0.4085988 -0.5453253 0.3944623 0.4085988 -0.5533834 0.3944623 0.4085988 -0.5611974 0.3944623 0.4085988 -0.5687816 0.3944623 0.4085988 -0.092819 0.4085988 0.4085988 -0.1056428 0.4085988 0.4085988 -0.1201537 0.4085988 0.4085988 -0.1409607 0.4085988 0.4085988 -0.1678172 0.4085988 0.4085988 -0.1950164 0.4085988 0.4085988 -0.2210581 0.4085988 0.4085988 -0.245636 0.4085988 0.4085988 -0.2686816 0.4085988 0.4085988 -0.2902431 0.4085988 0.4085988 -0.3104189 0.4085988 0.4085988 -0.3293248 0.4085988 0.4085988 -0.3470774 0.4085988 0.4085988 -0.3637862 0.4085988 0.4085988 -0.3795513 0.4085988 0.4085988 -0.3944623 0.4085988 0.4085988 -0.4085988 0.4085988 0.4085988 -0.4220313 0.4085988 0.4085988 -0.4348222 0.4085988 0.4085988 -0.4470264 0.4085988 0.4085988 -0.4586928 0.4085988 0.4085988 -0.4698649 0.4085988 0.4085988 -0.4805811 0.4085988 0.4085988 -0.490876 0.4085988 0.4085988 -0.5007803 0.4085988 0.4085988 -0.510322 0.4085988 0.4085988 -0.5195258 0.4085988 0.4085988 -0.5284142 0.4085988 0.4085988 -0.5370079 0.4085988 0.4085988 -0.5453253 0.4085988 0.4085988 -0.5533834 0.4085988 0.4085988 -0.5611974 0.4085988 0.4085988 -0.5687816 0.4085988 0.4085988 -0.092819 0.4220313 0.4085988 -0.1056428 0.4220313 0.4085988 -0.1201537 0.4220313 0.4085988 -0.1409607 0.4220313 0.4085988 -0.1678172 0.4220313 0.4085988 -0.1950164 0.4220313 0.4085988 -0.2210581 0.4220313 0.4085988 -0.245636 0.4220313 0.4085988 -0.2686816 0.4220313 0.4085988 -0.2902431 0.4220313 0.4085988 -0.3104189 0.4220313 0.4085988 -0.3293248 0.4220313 0.4085988 -0.3470774 0.4220313 0.4085988 -0.3637862 0.4220313 0.4085988 -0.3795513 0.4220313 0.4085988 -0.3944623 0.4220313 0.4085988 -0.4085988 0.4220313 0.4085988 -0.4220313 0.4220313 0.4085988 -0.4348222 0.4220313 0.4085988 -0.4470264 0.4220313 0.4085988 -0.4586928 0.4220313 0.4085988 -0.4698649 0.4220313 0.4085988 -0.4805811 0.4220313 0.4085988 -0.490876 0.4220313 0.4085988 -0.5007803 0.4220313 0.4085988 -0.510322 0.4220313 0.4085988 -0.5195258 0.4220313 0.4085988 -0.5284142 0.4220313 0.4085988 -0.5370079 0.4220313 0.4085988 -0.5453253 0.4220313 0.4085988 -0.5533834 0.4220313 0.4085988 -0.5611974 0.4220313 0.4085988 -0.5687816 0.4220313 0.4085988 -0.092819 0.4348222 0.4085988 -0.1056428 0.4348222 0.4085988 -0.1201537 0.4348222 0.4085988 -0.1409607 0.4348222 0.4085988 -0.1678172 0.4348222 0.4085988 -0.1950164 0.4348222 0.4085988 -0.2210581 0.4348222 0.4085988 -0.245636 0.4348222 0.4085988 -0.2686816 0.4348222 0.4085988 -0.2902431 0.4348222 0.4085988 -0.3104189 0.4348222 0.4085988 -0.3293248 0.4348222 0.4085988 -0.3470774 0.4348222 0.4085988 -0.3637862 0.4348222 0.4085988 -0.3795513 0.4348222 0.4085988 -0.3944623 0.4348222 0.4085988 -0.4085988 0.4348222 0.4085988 -0.4220313 0.4348222 0.4085988 -0.4348222 0.4348222 0.4085988 -0.4470264 0.4348222 0.4085988 -0.4586928 0.4348222 0.4085988 -0.4698649 0.4348222 0.4085988 -0.4805811 0.4348222 0.4085988 -0.490876 0.4348222 0.4085988 -0.5007803 0.4348222 0.4085988 -0.510322 0.4348222 0.4085988 -0.5195258 0.4348222 0.4085988 -0.5284142 0.4348222 0.4085988 -0.5370079 0.4348222 0.4085988 -0.5453253 0.4348222 0.4085988 -0.5533834 0.4348222 0.4085988 -0.5611974 0.4348222 0.4085988 -0.5687816 0.4348222 0.4085988 -0.092819 0.4470264 0.4085988 -0.1056428 0.4470264 0.4085988 -0.1201537 0.4470264 0.4085988 -0.1409607 0.4470264 0.4085988 -0.1678172 0.4470264 0.4085988 -0.1950164 0.4470264 0.4085988 -0.2210581 0.4470264 0.4085988 -0.245636 0.4470264 0.4085988 -0.2686816 0.4470264 0.4085988 -0.2902431 0.4470264 0.4085988 -0.3104189 0.4470264 0.4085988 -0.3293248 0.4470264 0.4085988 -0.3470774 0.4470264 0.4085988 -0.3637862 0.4470264 0.4085988 -0.3795513 0.4470264 0.4085988 -0.3944623 0.4470264 0.4085988 -0.4085988 0.4470264 0.4085988 -0.4220313 0.4470264 0.4085988 -0.4348222 0.4470264 0.4085988 -0.4470264 0.4470264 0.4085988 -0.4586928 0.4470264 0.4085988 -0.4698649 0.4470264 0.4085988 -0.4805811 0.4470264 0.4085988 -0.490876 0.4470264 0.4085988 -0.5007803 0.4470264 0.4085988 -0.510322 0.4470264 0.4085988 -0.5195258 0.4470264 0.4085988 -0.5284142 0.4470264 0.4085988 -0.5370079 0.4470264 0.4085988 -0.5453253 0.4470264 0.4085988 -0.5533834 0.4470264 0.4085988 -0.5611974 0.4470264 0.4085988 -0.5687816 0.4470264 0.4085988 -0.092819 0.4586928 0.4085988 -0.1056428 0.4586928 0.4085988 -0.1201537 0.4586928 0.4085988 -0.1409607 0.4586928 0.4085988 -0.1678172 0.4586928 0.4085988 -0.1950164 0.4586928 0.4085988 -0.2210581 0.4586928 0.4085988 -0.245636 0.4586928 0.4085988 -0.2686816 0.4586928 0.4085988 -0.2902431 0.4586928 0.4085988 -0.3104189 0.4586928 0.4085988 -0.3293248 0.4586928 0.4085988 -0.3470774 0.4586928 0.4085988 -0.3637862 0.4586928 0.4085988 -0.3795513 0.4586928 0.4085988 -0.3944623 0.4586928 0.4085988 -0.4085988 0.4586928 0.4085988 -0.4220313 0.4586928 0.4085988 -0.4348222 0.4586928 0.4085988 -0.4470264 0.4586928 0.4085988 -0.4586928 0.4586928 0.4085988 -0.4698649 0.4586928 0.4085988 -0.4805811 0.4586928 0.4085988 -0.490876 0.4586928 0.4085988 -0.5007803 0.4586928 0.4085988 -0.510322 0.4586928 0.4085988 -0.5195258 0.4586928 0.4085988 -0.5284142 0.4586928 0.4085988 -0.5370079 0.4586928 0.4085988 -0.5453253 0.4586928 0.4085988 -0.5533834 0.4586928 0.4085988 -0.5611974 0.4586928 0.4085988 -0.5687816 0.4586928 0.4085988 -0.092819 0.4698649 0.4085988 -0.1056428 0.4698649 0.4085988 -0.1201537 0.4698649 0.4085988 -0.1409607 0.4698649 0.4085988 -0.1678172 0.4698649 0.4085988 -0.1950164 0.4698649 0.4085988 -0.2210581 0.4698649 0.4085988 -0.245636 0.4698649 0.4085988 -0.2686816 0.4698649 0.4085988 -0.2902431 0.4698649 0.4085988 -0.3104189 0.4698649 0.4085988 -0.3293248 0.4698649 0.4085988 -0.3470774 0.4698649 0.4085988 -0.3637862 0.4698649 0.4085988 -0.3795513 0.4698649 0.4085988 -0.3944623 0.4698649 0.4085988 -0.4085988 0.4698649 0.4085988 -0.4220313 0.4698649 0.4085988 -0.4348222 0.4698649 0.4085988 -0.4470264 0.4698649 0.4085988 -0.4586928 0.4698649 0.4085988 -0.4698649 0.4698649 0.4085988 -0.4805811 0.4698649 0.4085988 -0.490876 0.4698649 0.4085988 -0.5007803 0.4698649 0.4085988 -0.510322 0.4698649 0.4085988 -0.5195258 0.4698649 0.4085988 -0.5284142 0.4698649 0.4085988 -0.5370079 0.4698649 0.4085988 -0.5453253 0.4698649 0.4085988 -0.5533834 0.4698649 0.4085988 -0.5611974 0.4698649 0.4085988 -0.5687816 0.4698649 0.4085988 -0.092819 0.4805811 0.4085988 -0.1056428 0.4805811 0.4085988 -0.1201537 0.4805811 0.4085988 -0.1409607 0.4805811 0.4085988 -0.1678172 0.4805811 0.4085988 -0.1950164 0.4805811 0.4085988 -0.2210581 0.4805811 0.4085988 -0.245636 0.4805811 0.4085988 -0.2686816 0.4805811 0.4085988 -0.2902431 0.4805811 0.4085988 -0.3104189 0.4805811 0.4085988 -0.3293248 0.4805811 0.4085988 -0.3470774 0.4805811 0.4085988 -0.3637862 0.4805811 0.4085988 -0.3795513 0.4805811 0.4085988 -0.3944623 0.4805811 0.4085988 -0.4085988 0.4805811 0.4085988 -0.4220313 0.4805811 0.4085988 -0.4348222 0.4805811 0.4085988 -0.4470264 0.4805811 0.4085988 -0.4586928 0.4805811 0.4085988 -0.4698649 0.4805811 0.4085988 -0.4805811 0.4805811 0.4085988 -0.490876 0.4805811 0.4085988 -0.5007803 0.4805811 0.4085988 -0.510322 0.4805811 0.4085988 -0.5195258 0.4805811 0.4085988 -0.5284142 0.4805811 0.4085988 -0.5370079 0.4805811 0.4085988 -0.5453253 0.4805811 0.4085988 -0.5533834 0.4805811 0.4085988 -0.5611974 0.4805811 0.4085988 -0.5687816 0.4805811 0.4085988 -0.092819 0.490876 0.4085988 -0.1056428 0.490876 0.4085988 -0.1201537 0.490876 0.4085988 -0.1409607 0.490876 0.4085988 -0.1678172 0.490876 0.4085988 -0.1950164 0.490876 0.4085988 -0.2210581 0.490876 0.4085988 -0.245636 0.490876 0.4085988 -0.2686816 0.490876 0.4085988 -0.2902431 0.490876 0.4085988 -0.3104189 0.490876 0.4085988 -0.3293248 0.490876 0.4085988 -0.3470774 0.490876 0.4085988 -0.3637862 0.490876 0.4085988 -0.3795513 0.490876 0.4085988 -0.3944623 0.490876 0.4085988 -0.4085988 0.490876 0.4085988 -0.4220313 0.490876 0.4085988 -0.4348222 0.490876 0.4085988 -0.4470264 0.490876 0.4085988 -0.4586928 0.490876 0.4085988 -0.4698649 0.490876 0.4085988 -0.4805811 0.490876 0.4085988 -0.490876 0.490876 0.4085988 -0.5007803 0.490876 0.4085988 -0.510322 0.490876 0.4085988 -0.5195258 0.490876 0.4085988 -0.5284142 0.490876 0.4085988 -0.5370079 0.490876 0.4085988 -0.5453253 0.490876 0.4085988 -0.5533834 0.490876 0.4085988 -0.5611974 0.490876 0.4085988 -0.5687816 0.490876 0.4085988 -0.092819 0.5007803 0.4085988 -0.1056428 0.5007803 0.4085988 -0.1201537 0.5007803 0.4085988 -0.1409607 0.5007803 0.4085988 -0.1678172 0.5007803 0.4085988 -0.1950164 0.5007803 0.4085988 -0.2210581 0.5007803 0.4085988 -0.245636 0.5007803 0.4085988 -0.2686816 0.5007803 0.4085988 -0.2902431 0.5007803 0.4085988 -0.3104189 0.5007803 0.4085988 -0.3293248 0.5007803 0.4085988 -0.3470774 0.5007803 0.4085988 -0.3637862 0.5007803 0.4085988 -0.3795513 0.5007803 0.4085988 -0.3944623 0.5007803 0.4085988 -0.4085988 0.5007803 0.4085988 -0.4220313 0.5007803 0.4085988 -0.4348222 0.5007803 0.4085988 -0.4470264 0.5007803 0.4085988 -0.4586928 0.5007803 0.4085988 -0.4698649 0.5007803 0.4085988 -0.4805811 0.5007803 0.4085988 -0.490876 0.5007803 0.4085988 -0.5007803 0.5007803 0.4085988 -0.510322 0.5007803 0.4085988 -0.5195258 0.5007803 0.4085988 -0.5284142 0.5007803 0.4085988 -0.5370079 0.5007803 0.4085988 -0.5453253 0.5007803 0.4085988 -0.5533834 0.5007803 0.4085988 -0.5611974 0.5007803 0.4085988 -0.5687816 0.5007803 0.4085988 -0.092819 0.510322 0.4085988 -0.1056428 0.510322 0.4085988 -0.1201537 0.510322 0.4085988 -0.1409607 0.510322 0.4085988 -0.1678172 0.510322 0.4085988 -0.1950164 0.510322 0.4085988 -0.2210581 0.510322 0.4085988 -0.245636 0.510322 0.4085988 -0.2686816 0.510322 0.4085988 -0.2902431 0.510322 0.4085988 -0.3104189 0.510322 0.4085988 -0.3293248 0.510322 0.4085988 -0.3470774 0.510322 0.4085988 -0.3637862 0.510322 0.4085988 -0.3795513 0.510322 0.4085988 -0.3944623 0.510322 0.4085988 -0.4085988 0.510322 0.4085988 -0.4220313 0.510322 0.4085988 -0.4348222 0.510322 0.4085988 -0.4470264 0.510322 0.4085988 -0.4586928 0.510322 0.4085988 -0.4698649 0.510322 0.4085988 -0.4805811 0.510322 0.4085988 -0.490876 0.510322 0.4085988 -0.5007803 0.510322 0.4085988 -0.510322 0.510322 0.4085988 -0.5195258 0.510322 0.4085988 -0.5284142 0.510322 0.4085988 -0.5370079 0.510322 0.4085988 -0.5453253 0.510322 0.4085988 -0.5533834 0.510322 0.4085988 -0.5611974 0.510322 0.4085988 -0.5687816 0.510322 0.4085988 -0.092819 0.5195258 0.4085988 -0.1056428 0.5195258 0.4085988 -0.1201537 0.5195258 0.4085988 -0.1409607 0.5195258 0.4085988 -0.1678172 0.5195258 0.4085988 -0.1950164 0.5195258 0.4085988 -0.2210581 0.5195258 0.4085988 -0.245636 0.5195258 0.4085988 -0.2686816 0.5195258 0.4085988 -0.2902431 0.5195258 0.4085988 -0.3104189 0.5195258 0.4085988 -0.3293248 0.5195258 0.4085988 -0.3470774 0.5195258 0.4085988 -0.3637862 0.5195258 0.4085988 -0.3795513 0.5195258 0.4085988 -0.3944623 0.5195258 0.4085988 -0.4085988 0.5195258 0.4085988 -0.4220313 0.5195258 0.4085988 -0.4348222 0.5195258 0.4085988 -0.4470264 0.5195258 0.4085988 -0.4586928 0.5195258 0.4085988 -0.4698649 0.5195258 0.4085988 -0.4805811 0.5195258 0.4085988 -0.490876 0.5195258 0.4085988 -0.5007803 0.5195258 0.4085988 -0.510322 0.5195258 0.4085988 -0.5195258 0.5195258 0.4085988 -0.5284142 0.5195258 0.4085988 -0.5370079 0.5195258 0.4085988 -0.5453253 0.5195258 0.4085988 -0.5533834 0.5195258 0.4085988 -0.5611974 0.5195258 0.4085988 -0.5687816 0.5195258 0.4085988 -0.092819 0.5284142 0.4085988 -0.1056428 0.5284142 0.4085988 -0.1201537 0.5284142 0.4085988 -0.1409607 0.5284142 0.4085988 -0.1678172 0.5284142 0.4085988 -0.1950164 0.5284142 0.4085988 -0.2210581 0.5284142 0.4085988 -0.245636 0.5284142 0.4085988 -0.2686816 0.5284142 0.4085988 -0.2902431 0.5284142 0.4085988 -0.3104189 0.5284142 0.4085988 -0.3293248 0.5284142 0.4085988 -0.3470774 0.5284142 0.4085988 -0.3637862 0.5284142 0.4085988 -0.3795513 0.5284142 0.4085988 -0.3944623 0.5284142 0.4085988 -0.4085988 0.5284142 0.4085988 -0.4220313 0.5284142 0.4085988 -0.4348222 0.5284142 0.4085988 -0.4470264 0.5284142 0.4085988 -0.4586928 0.5284142 0.4085988 -0.4698649 0.5284142 0.4085988 -0.4805811 0.5284142 0.4085988 -0.490876 0.5284142 0.4085988 -0.5007803 0.5284142 0.4085988 -0.510322 0.5284142 0.4085988 -0.5195258 0.5284142 0.4085988 -0.5284142 0.5284142 0.4085988 -0.5370079 0.5284142 0.4085988 -0.5453253 0.5284142 0.4085988 -0.5533834 0.5284142 0.4085988 -0.5611974 0.5284142 0.4085988 -0.5687816 0.5284142 0.4085988 -0.092819 0.5370079 0.4085988 -0.1056428 0.5370079 0.4085988 -0.1201537 0.5370079 0.4085988 -0.1409607 0.5370079 0.4085988 -0.1678172 0.5370079 0.4085988 -0.1950164 0.5370079 0.4085988 -0.2210581 0.5370079 0.4085988 -0.245636 0.5370079 0.4085988 -0.2686816 0.5370079 0.4085988 -0.2902431 0.5370079 0.4085988 -0.3104189 0.5370079 0.4085988 -0.3293248 0.5370079 0.4085988 -0.3470774 0.5370079 0.4085988 -0.3637862 0.5370079 0.4085988 -0.3795513 0.5370079 0.4085988 -0.3944623 0.5370079 0.4085988 -0.4085988 0.5370079 0.4085988 -0.4220313 0.5370079 0.4085988 -0.4348222 0.5370079 0.4085988 -0.4470264 0.5370079 0.4085988 -0.4586928 0.5370079 0.4085988 -0.4698649 0.5370079 0.4085988 -0.4805811 0.5370079 0.4085988 -0.490876 0.5370079 0.4085988 -0.5007803 0.5370079 0.4085988 -0.510322 0.5370079 0.4085988 -0.5195258 0.5370079 0.4085988 -0.5284142 0.5370079 0.4085988 -0.5370079 0.5370079 0.4085988 -0.5453253 0.5370079 0.4085988 -0.5533834 0.5370079 0.4085988 -0.5611974 0.5370079 0.4085988 -0.5687816 0.5370079 0.4085988 -0.092819 0.5453253 0.4085988 -0.1056428 0.5453253 0.4085988 -0.1201537 0.5453253 0.4085988 -0.1409607 0.5453253 0.4085988 -0.1678172 0.5453253 0.4085988 -0.1950164 0.5453253 0.4085988 -0.2210581 0.5453253 0.4085988 -0.245636 0.5453253 0.4085988 -0.2686816 0.5453253 0.4085988 -0.2902431 0.5453253 0.4085988 -0.3104189 0.5453253 0.4085988 -0.3293248 0.5453253 0.4085988 -0.3470774 0.5453253 0.4085988 -0.3637862 0.5453253 0.4085988 -0.3795513 0.5453253 0.4085988 -0.3944623 0.5453253 0.4085988 -0.4085988 0.5453253 0.4085988 -0.4220313 0.5453253 0.4085988 -0.4348222 0.5453253 0.4085988 -0.4470264 0.5453253 0.4085988 -0.4586928 0.5453253 0.4085988 -0.4698649 0.5453253 0.4085988 -0.4805811 0.5453253 0.4085988 -0.490876 0.5453253 0.4085988 -0.5007803 0.5453253 0.4085988 -0.510322 0.5453253 0.4085988 -0.5195258 0.5453253 0.4085988 -0.5284142 0.5453253 0.4085988 -0.5370079 0.5453253 0.4085988 -0.5453253 0.5453253 0.4085988 -0.5533834 0.5453253 0.4085988 -0.5611974 0.5453253 0.4085988 -0.5687816 0.5453253 0.4085988 -0.092819 0.5533834 0.4085988 -0.1056428 0.5533834 0.4085988 -0.1201537 0.5533834 0.4085988 -0.1409607 0.5533834 0.4085988 -0.1678172 0.5533834 0.4085988 -0.1950164 0.5533834 0.4085988 -0.2210581 0.5533834 0.4085988 -0.245636 0.5533834 0.4085988 -0.2686816 0.5533834 0.4085988 -0.2902431 0.5533834 0.4085988 -0.3104189 0.5533834 0.4085988 -0.3293248 0.5533834 0.4085988 -0.3470774 0.5533834 0.4085988 -0.3637862 0.5533834 0.4085988 -0.3795513 0.5533834 0.4085988 -0.3944623 0.5533834 0.4085988 -0.4085988 0.5533834 0.4085988 -0.4220313 0.5533834 0.4085988 -0.4348222 0.5533834 0.4085988 -0.4470264 0.5533834 0.4085988 -0.4586928 0.5533834 0.4085988 -0.4698649 0.5533834 0.4085988 -0.4805811 0.5533834 0.4085988 -0.490876 0.5533834 0.4085988 -0.5007803 0.5533834 0.4085988 -0.510322 0.5533834 0.4085988 -0.5195258 0.5533834 0.4085988 -0.5284142 0.5533834 0.4085988 -0.5370079 0.5533834 0.4085988 -0.5453253 0.5533834 0.4085988 -0.5533834 0.5533834 0.4085988 -0.5611974 0.5533834 0.4085988 -0.5687816 0.5533834 0.4085988 -0.092819 0.5611974 0.4085988 -0.1056428 0.5611974 0.4085988 -0.1201537 0.5611974 0.4085988 -0.1409607 0.5611974 0.4085988 -0.1678172 0.5611974 0.4085988 -0.1950164 0.5611974 0.4085988 -0.2210581 0.5611974 0.4085988 -0.245636 0.5611974 0.4085988 -0.2686816 0.5611974 0.4085988 -0.2902431 0.5611974 0.4085988 -0.3104189 0.5611974 0.4085988 -0.3293248 0.5611974 0.4085988 -0.3470774 0.5611974 0.4085988 -0.3637862 0.5611974 0.4085988 -0.3795513 0.5611974 0.4085988 -0.3944623 0.5611974 0.4085988 -0.4085988 0.5611974 0.4085988 -0.4220313 0.5611974 0.4085988 -0.4348222 0.5611974 0.4085988 -0.4470264 0.5611974 0.4085988 -0.4586928 0.5611974 0.4085988 -0.4698649 0.5611974 0.4085988 -0.4805811 0.5611974 0.4085988 -0.490876 0.5611974 0.4085988 -0.5007803 0.5611974 0.4085988 -0.510322 0.5611974 0.4085988 -0.5195258 0.5611974 0.4085988 -0.5284142 0.5611974 0.4085988 -0.5370079 0.5611974 0.4085988 -0.5453253 0.5611974 0.4085988 -0.5533834 0.5611974 0.4085988 -0.5611974 0.5611974 0.4085988 -0.5687816 0.5611974 0.4085988 -0.092819 0.5687816 0.4085988 -0.1056428 0.5687816 0.4085988 -0.1201537 0.5687816 0.4085988 -0.1409607 0.5687816 0.4085988 -0.1678172 0.5687816 0.4085988 -0.1950164 0.5687816 0.4085988 -0.2210581 0.5687816 0.4085988 -0.245636 0.5687816 0.4085988 -0.2686816 0.5687816 0.4085988 -0.2902431 0.5687816 0.4085988 -0.3104189 0.5687816 0.4085988 -0.3293248 0.5687816 0.4085988 -0.3470774 0.5687816 0.4085988 -0.3637862 0.5687816 0.4085988 -0.3795513 0.5687816 0.4085988 -0.3944623 0.5687816 0.4085988 -0.4085988 0.5687816 0.4085988 -0.4220313 0.5687816 0.4085988 -0.4348222 0.5687816 0.4085988 -0.4470264 0.5687816 0.4085988 -0.4586928 0.5687816 0.4085988 -0.4698649 0.5687816 0.4085988 -0.4805811 0.5687816 0.4085988 -0.490876 0.5687816 0.4085988 -0.5007803 0.5687816 0.4085988 -0.510322 0.5687816 0.4085988 -0.5195258 0.5687816 0.4085988 -0.5284142 0.5687816 0.4085988 -0.5370079 0.5687816 0.4085988 -0.5453253 0.5687816 0.4085988 -0.5533834 0.5687816 0.4085988 -0.5611974 0.5687816 0.4085988 -0.5687816 0.5687816 0.4085988 -0.092819 0.092819 0.4220313 -0.1056428 0.092819 0.4220313 -0.1201537 0.092819 0.4220313 -0.1409607 0.092819 0.4220313 -0.1678172 0.092819 0.4220313 -0.1950164 0.092819 0.4220313 -0.2210581 0.092819 0.4220313 -0.245636 0.092819 0.4220313 -0.2686816 0.092819 0.4220313 -0.2902431 0.092819 0.4220313 -0.3104189 0.092819 0.4220313 -0.3293248 0.092819 0.4220313 -0.3470774 0.092819 0.4220313 -0.3637862 0.092819 0.4220313 -0.3795513 0.092819 0.4220313 -0.3944623 0.092819 0.4220313 -0.4085988 0.092819 0.4220313 -0.4220313 0.092819 0.4220313 -0.4348222 0.092819 0.4220313 -0.4470264 0.092819 0.4220313 -0.4586928 0.092819 0.4220313 -0.4698649 0.092819 0.4220313 -0.4805811 0.092819 0.4220313 -0.490876 0.092819 0.4220313 -0.5007803 0.092819 0.4220313 -0.510322 0.092819 0.4220313 -0.5195258 0.092819 0.4220313 -0.5284142 0.092819 0.4220313 -0.5370079 0.092819 0.4220313 -0.5453253 0.092819 0.4220313 -0.5533834 0.092819 0.4220313 -0.5611974 0.092819 0.4220313 -0.5687816 0.092819 0.4220313 -0.092819 0.1056428 0.4220313 -0.1056428 0.1056428 0.4220313 -0.1201537 0.1056428 0.4220313 -0.1409607 0.1056428 0.4220313 -0.1678172 0.1056428 0.4220313 -0.1950164 0.1056428 0.4220313 -0.2210581 0.1056428 0.4220313 -0.245636 0.1056428 0.4220313 -0.2686816 0.1056428 0.4220313 -0.2902431 0.1056428 0.4220313 -0.3104189 0.1056428 0.4220313 -0.3293248 0.1056428 0.4220313 -0.3470774 0.1056428 0.4220313 -0.3637862 0.1056428 0.4220313 -0.3795513 0.1056428 0.4220313 -0.3944623 0.1056428 0.4220313 -0.4085988 0.1056428 0.4220313 -0.4220313 0.1056428 0.4220313 -0.4348222 0.1056428 0.4220313 -0.4470264 0.1056428 0.4220313 -0.4586928 0.1056428 0.4220313 -0.4698649 0.1056428 0.4220313 -0.4805811 0.1056428 0.4220313 -0.490876 0.1056428 0.4220313 -0.5007803 0.1056428 0.4220313 -0.510322 0.1056428 0.4220313 -0.5195258 0.1056428 0.4220313 -0.5284142 0.1056428 0.4220313 -0.5370079 0.1056428 0.4220313 -0.5453253 0.1056428 0.4220313 -0.5533834 0.1056428 0.4220313 -0.5611974 0.1056428 0.4220313 -0.5687816 0.1056428 0.4220313 -0.092819 0.1201537 0.4220313 -0.1056428 0.1201537 0.4220313 -0.1201537 0.1201537 0.4220313 -0.1409607 0.1201537 0.4220313 -0.1678172 0.1201537 0.4220313 -0.1950164 0.1201537 0.4220313 -0.2210581 0.1201537 0.4220313 -0.245636 0.1201537 0.4220313 -0.2686816 0.1201537 0.4220313 -0.2902431 0.1201537 0.4220313 -0.3104189 0.1201537 0.4220313 -0.3293248 0.1201537 0.4220313 -0.3470774 0.1201537 0.4220313 -0.3637862 0.1201537 0.4220313 -0.3795513 0.1201537 0.4220313 -0.3944623 0.1201537 0.4220313 -0.4085988 0.1201537 0.4220313 -0.4220313 0.1201537 0.4220313 -0.4348222 0.1201537 0.4220313 -0.4470264 0.1201537 0.4220313 -0.4586928 0.1201537 0.4220313 -0.4698649 0.1201537 0.4220313 -0.4805811 0.1201537 0.4220313 -0.490876 0.1201537 0.4220313 -0.5007803 0.1201537 0.4220313 -0.510322 0.1201537 0.4220313 -0.5195258 0.1201537 0.4220313 -0.5284142 0.1201537 0.4220313 -0.5370079 0.1201537 0.4220313 -0.5453253 0.1201537 0.4220313 -0.5533834 0.1201537 0.4220313 -0.5611974 0.1201537 0.4220313 -0.5687816 0.1201537 0.4220313 -0.092819 0.1409607 0.4220313 -0.1056428 0.1409607 0.4220313 -0.1201537 0.1409607 0.4220313 -0.1409607 0.1409607 0.4220313 -0.1678172 0.1409607 0.4220313 -0.1950164 0.1409607 0.4220313 -0.2210581 0.1409607 0.4220313 -0.245636 0.1409607 0.4220313 -0.2686816 0.1409607 0.4220313 -0.2902431 0.1409607 0.4220313 -0.3104189 0.1409607 0.4220313 -0.3293248 0.1409607 0.4220313 -0.3470774 0.1409607 0.4220313 -0.3637862 0.1409607 0.4220313 -0.3795513 0.1409607 0.4220313 -0.3944623 0.1409607 0.4220313 -0.4085988 0.1409607 0.4220313 -0.4220313 0.1409607 0.4220313 -0.4348222 0.1409607 0.4220313 -0.4470264 0.1409607 0.4220313 -0.4586928 0.1409607 0.4220313 -0.4698649 0.1409607 0.4220313 -0.4805811 0.1409607 0.4220313 -0.490876 0.1409607 0.4220313 -0.5007803 0.1409607 0.4220313 -0.510322 0.1409607 0.4220313 -0.5195258 0.1409607 0.4220313 -0.5284142 0.1409607 0.4220313 -0.5370079 0.1409607 0.4220313 -0.5453253 0.1409607 0.4220313 -0.5533834 0.1409607 0.4220313 -0.5611974 0.1409607 0.4220313 -0.5687816 0.1409607 0.4220313 -0.092819 0.1678172 0.4220313 -0.1056428 0.1678172 0.4220313 -0.1201537 0.1678172 0.4220313 -0.1409607 0.1678172 0.4220313 -0.1678172 0.1678172 0.4220313 -0.1950164 0.1678172 0.4220313 -0.2210581 0.1678172 0.4220313 -0.245636 0.1678172 0.4220313 -0.2686816 0.1678172 0.4220313 -0.2902431 0.1678172 0.4220313 -0.3104189 0.1678172 0.4220313 -0.3293248 0.1678172 0.4220313 -0.3470774 0.1678172 0.4220313 -0.3637862 0.1678172 0.4220313 -0.3795513 0.1678172 0.4220313 -0.3944623 0.1678172 0.4220313 -0.4085988 0.1678172 0.4220313 -0.4220313 0.1678172 0.4220313 -0.4348222 0.1678172 0.4220313 -0.4470264 0.1678172 0.4220313 -0.4586928 0.1678172 0.4220313 -0.4698649 0.1678172 0.4220313 -0.4805811 0.1678172 0.4220313 -0.490876 0.1678172 0.4220313 -0.5007803 0.1678172 0.4220313 -0.510322 0.1678172 0.4220313 -0.5195258 0.1678172 0.4220313 -0.5284142 0.1678172 0.4220313 -0.5370079 0.1678172 0.4220313 -0.5453253 0.1678172 0.4220313 -0.5533834 0.1678172 0.4220313 -0.5611974 0.1678172 0.4220313 -0.5687816 0.1678172 0.4220313 -0.092819 0.1950164 0.4220313 -0.1056428 0.1950164 0.4220313 -0.1201537 0.1950164 0.4220313 -0.1409607 0.1950164 0.4220313 -0.1678172 0.1950164 0.4220313 -0.1950164 0.1950164 0.4220313 -0.2210581 0.1950164 0.4220313 -0.245636 0.1950164 0.4220313 -0.2686816 0.1950164 0.4220313 -0.2902431 0.1950164 0.4220313 -0.3104189 0.1950164 0.4220313 -0.3293248 0.1950164 0.4220313 -0.3470774 0.1950164 0.4220313 -0.3637862 0.1950164 0.4220313 -0.3795513 0.1950164 0.4220313 -0.3944623 0.1950164 0.4220313 -0.4085988 0.1950164 0.4220313 -0.4220313 0.1950164 0.4220313 -0.4348222 0.1950164 0.4220313 -0.4470264 0.1950164 0.4220313 -0.4586928 0.1950164 0.4220313 -0.4698649 0.1950164 0.4220313 -0.4805811 0.1950164 0.4220313 -0.490876 0.1950164 0.4220313 -0.5007803 0.1950164 0.4220313 -0.510322 0.1950164 0.4220313 -0.5195258 0.1950164 0.4220313 -0.5284142 0.1950164 0.4220313 -0.5370079 0.1950164 0.4220313 -0.5453253 0.1950164 0.4220313 -0.5533834 0.1950164 0.4220313 -0.5611974 0.1950164 0.4220313 -0.5687816 0.1950164 0.4220313 -0.092819 0.2210581 0.4220313 -0.1056428 0.2210581 0.4220313 -0.1201537 0.2210581 0.4220313 -0.1409607 0.2210581 0.4220313 -0.1678172 0.2210581 0.4220313 -0.1950164 0.2210581 0.4220313 -0.2210581 0.2210581 0.4220313 -0.245636 0.2210581 0.4220313 -0.2686816 0.2210581 0.4220313 -0.2902431 0.2210581 0.4220313 -0.3104189 0.2210581 0.4220313 -0.3293248 0.2210581 0.4220313 -0.3470774 0.2210581 0.4220313 -0.3637862 0.2210581 0.4220313 -0.3795513 0.2210581 0.4220313 -0.3944623 0.2210581 0.4220313 -0.4085988 0.2210581 0.4220313 -0.4220313 0.2210581 0.4220313 -0.4348222 0.2210581 0.4220313 -0.4470264 0.2210581 0.4220313 -0.4586928 0.2210581 0.4220313 -0.4698649 0.2210581 0.4220313 -0.4805811 0.2210581 0.4220313 -0.490876 0.2210581 0.4220313 -0.5007803 0.2210581 0.4220313 -0.510322 0.2210581 0.4220313 -0.5195258 0.2210581 0.4220313 -0.5284142 0.2210581 0.4220313 -0.5370079 0.2210581 0.4220313 -0.5453253 0.2210581 0.4220313 -0.5533834 0.2210581 0.4220313 -0.5611974 0.2210581 0.4220313 -0.5687816 0.2210581 0.4220313 -0.092819 0.245636 0.4220313 -0.1056428 0.245636 0.4220313 -0.1201537 0.245636 0.4220313 -0.1409607 0.245636 0.4220313 -0.1678172 0.245636 0.4220313 -0.1950164 0.245636 0.4220313 -0.2210581 0.245636 0.4220313 -0.245636 0.245636 0.4220313 -0.2686816 0.245636 0.4220313 -0.2902431 0.245636 0.4220313 -0.3104189 0.245636 0.4220313 -0.3293248 0.245636 0.4220313 -0.3470774 0.245636 0.4220313 -0.3637862 0.245636 0.4220313 -0.3795513 0.245636 0.4220313 -0.3944623 0.245636 0.4220313 -0.4085988 0.245636 0.4220313 -0.4220313 0.245636 0.4220313 -0.4348222 0.245636 0.4220313 -0.4470264 0.245636 0.4220313 -0.4586928 0.245636 0.4220313 -0.4698649 0.245636 0.4220313 -0.4805811 0.245636 0.4220313 -0.490876 0.245636 0.4220313 -0.5007803 0.245636 0.4220313 -0.510322 0.245636 0.4220313 -0.5195258 0.245636 0.4220313 -0.5284142 0.245636 0.4220313 -0.5370079 0.245636 0.4220313 -0.5453253 0.245636 0.4220313 -0.5533834 0.245636 0.4220313 -0.5611974 0.245636 0.4220313 -0.5687816 0.245636 0.4220313 -0.092819 0.2686816 0.4220313 -0.1056428 0.2686816 0.4220313 -0.1201537 0.2686816 0.4220313 -0.1409607 0.2686816 0.4220313 -0.1678172 0.2686816 0.4220313 -0.1950164 0.2686816 0.4220313 -0.2210581 0.2686816 0.4220313 -0.245636 0.2686816 0.4220313 -0.2686816 0.2686816 0.4220313 -0.2902431 0.2686816 0.4220313 -0.3104189 0.2686816 0.4220313 -0.3293248 0.2686816 0.4220313 -0.3470774 0.2686816 0.4220313 -0.3637862 0.2686816 0.4220313 -0.3795513 0.2686816 0.4220313 -0.3944623 0.2686816 0.4220313 -0.4085988 0.2686816 0.4220313 -0.4220313 0.2686816 0.4220313 -0.4348222 0.2686816 0.4220313 -0.4470264 0.2686816 0.4220313 -0.4586928 0.2686816 0.4220313 -0.4698649 0.2686816 0.4220313 -0.4805811 0.2686816 0.4220313 -0.490876 0.2686816 0.4220313 -0.5007803 0.2686816 0.4220313 -0.510322 0.2686816 0.4220313 -0.5195258 0.2686816 0.4220313 -0.5284142 0.2686816 0.4220313 -0.5370079 0.2686816 0.4220313 -0.5453253 0.2686816 0.4220313 -0.5533834 0.2686816 0.4220313 -0.5611974 0.2686816 0.4220313 -0.5687816 0.2686816 0.4220313 -0.092819 0.2902431 0.4220313 -0.1056428 0.2902431 0.4220313 -0.1201537 0.2902431 0.4220313 -0.1409607 0.2902431 0.4220313 -0.1678172 0.2902431 0.4220313 -0.1950164 0.2902431 0.4220313 -0.2210581 0.2902431 0.4220313 -0.245636 0.2902431 0.4220313 -0.2686816 0.2902431 0.4220313 -0.2902431 0.2902431 0.4220313 -0.3104189 0.2902431 0.4220313 -0.3293248 0.2902431 0.4220313 -0.3470774 0.2902431 0.4220313 -0.3637862 0.2902431 0.4220313 -0.3795513 0.2902431 0.4220313 -0.3944623 0.2902431 0.4220313 -0.4085988 0.2902431 0.4220313 -0.4220313 0.2902431 0.4220313 -0.4348222 0.2902431 0.4220313 -0.4470264 0.2902431 0.4220313 -0.4586928 0.2902431 0.4220313 -0.4698649 0.2902431 0.4220313 -0.4805811 0.2902431 0.4220313 -0.490876 0.2902431 0.4220313 -0.5007803 0.2902431 0.4220313 -0.510322 0.2902431 0.4220313 -0.5195258 0.2902431 0.4220313 -0.5284142 0.2902431 0.4220313 -0.5370079 0.2902431 0.4220313 -0.5453253 0.2902431 0.4220313 -0.5533834 0.2902431 0.4220313 -0.5611974 0.2902431 0.4220313 -0.5687816 0.2902431 0.4220313 -0.092819 0.3104189 0.4220313 -0.1056428 0.3104189 0.4220313 -0.1201537 0.3104189 0.4220313 -0.1409607 0.3104189 0.4220313 -0.1678172 0.3104189 0.4220313 -0.1950164 0.3104189 0.4220313 -0.2210581 0.3104189 0.4220313 -0.245636 0.3104189 0.4220313 -0.2686816 0.3104189 0.4220313 -0.2902431 0.3104189 0.4220313 -0.3104189 0.3104189 0.4220313 -0.3293248 0.3104189 0.4220313 -0.3470774 0.3104189 0.4220313 -0.3637862 0.3104189 0.4220313 -0.3795513 0.3104189 0.4220313 -0.3944623 0.3104189 0.4220313 -0.4085988 0.3104189 0.4220313 -0.4220313 0.3104189 0.4220313 -0.4348222 0.3104189 0.4220313 -0.4470264 0.3104189 0.4220313 -0.4586928 0.3104189 0.4220313 -0.4698649 0.3104189 0.4220313 -0.4805811 0.3104189 0.4220313 -0.490876 0.3104189 0.4220313 -0.5007803 0.3104189 0.4220313 -0.510322 0.3104189 0.4220313 -0.5195258 0.3104189 0.4220313 -0.5284142 0.3104189 0.4220313 -0.5370079 0.3104189 0.4220313 -0.5453253 0.3104189 0.4220313 -0.5533834 0.3104189 0.4220313 -0.5611974 0.3104189 0.4220313 -0.5687816 0.3104189 0.4220313 -0.092819 0.3293248 0.4220313 -0.1056428 0.3293248 0.4220313 -0.1201537 0.3293248 0.4220313 -0.1409607 0.3293248 0.4220313 -0.1678172 0.3293248 0.4220313 -0.1950164 0.3293248 0.4220313 -0.2210581 0.3293248 0.4220313 -0.245636 0.3293248 0.4220313 -0.2686816 0.3293248 0.4220313 -0.2902431 0.3293248 0.4220313 -0.3104189 0.3293248 0.4220313 -0.3293248 0.3293248 0.4220313 -0.3470774 0.3293248 0.4220313 -0.3637862 0.3293248 0.4220313 -0.3795513 0.3293248 0.4220313 -0.3944623 0.3293248 0.4220313 -0.4085988 0.3293248 0.4220313 -0.4220313 0.3293248 0.4220313 -0.4348222 0.3293248 0.4220313 -0.4470264 0.3293248 0.4220313 -0.4586928 0.3293248 0.4220313 -0.4698649 0.3293248 0.4220313 -0.4805811 0.3293248 0.4220313 -0.490876 0.3293248 0.4220313 -0.5007803 0.3293248 0.4220313 -0.510322 0.3293248 0.4220313 -0.5195258 0.3293248 0.4220313 -0.5284142 0.3293248 0.4220313 -0.5370079 0.3293248 0.4220313 -0.5453253 0.3293248 0.4220313 -0.5533834 0.3293248 0.4220313 -0.5611974 0.3293248 0.4220313 -0.5687816 0.3293248 0.4220313 -0.092819 0.3470774 0.4220313 -0.1056428 0.3470774 0.4220313 -0.1201537 0.3470774 0.4220313 -0.1409607 0.3470774 0.4220313 -0.1678172 0.3470774 0.4220313 -0.1950164 0.3470774 0.4220313 -0.2210581 0.3470774 0.4220313 -0.245636 0.3470774 0.4220313 -0.2686816 0.3470774 0.4220313 -0.2902431 0.3470774 0.4220313 -0.3104189 0.3470774 0.4220313 -0.3293248 0.3470774 0.4220313 -0.3470774 0.3470774 0.4220313 -0.3637862 0.3470774 0.4220313 -0.3795513 0.3470774 0.4220313 -0.3944623 0.3470774 0.4220313 -0.4085988 0.3470774 0.4220313 -0.4220313 0.3470774 0.4220313 -0.4348222 0.3470774 0.4220313 -0.4470264 0.3470774 0.4220313 -0.4586928 0.3470774 0.4220313 -0.4698649 0.3470774 0.4220313 -0.4805811 0.3470774 0.4220313 -0.490876 0.3470774 0.4220313 -0.5007803 0.3470774 0.4220313 -0.510322 0.3470774 0.4220313 -0.5195258 0.3470774 0.4220313 -0.5284142 0.3470774 0.4220313 -0.5370079 0.3470774 0.4220313 -0.5453253 0.3470774 0.4220313 -0.5533834 0.3470774 0.4220313 -0.5611974 0.3470774 0.4220313 -0.5687816 0.3470774 0.4220313 -0.092819 0.3637862 0.4220313 -0.1056428 0.3637862 0.4220313 -0.1201537 0.3637862 0.4220313 -0.1409607 0.3637862 0.4220313 -0.1678172 0.3637862 0.4220313 -0.1950164 0.3637862 0.4220313 -0.2210581 0.3637862 0.4220313 -0.245636 0.3637862 0.4220313 -0.2686816 0.3637862 0.4220313 -0.2902431 0.3637862 0.4220313 -0.3104189 0.3637862 0.4220313 -0.3293248 0.3637862 0.4220313 -0.3470774 0.3637862 0.4220313 -0.3637862 0.3637862 0.4220313 -0.3795513 0.3637862 0.4220313 -0.3944623 0.3637862 0.4220313 -0.4085988 0.3637862 0.4220313 -0.4220313 0.3637862 0.4220313 -0.4348222 0.3637862 0.4220313 -0.4470264 0.3637862 0.4220313 -0.4586928 0.3637862 0.4220313 -0.4698649 0.3637862 0.4220313 -0.4805811 0.3637862 0.4220313 -0.490876 0.3637862 0.4220313 -0.5007803 0.3637862 0.4220313 -0.510322 0.3637862 0.4220313 -0.5195258 0.3637862 0.4220313 -0.5284142 0.3637862 0.4220313 -0.5370079 0.3637862 0.4220313 -0.5453253 0.3637862 0.4220313 -0.5533834 0.3637862 0.4220313 -0.5611974 0.3637862 0.4220313 -0.5687816 0.3637862 0.4220313 -0.092819 0.3795513 0.4220313 -0.1056428 0.3795513 0.4220313 -0.1201537 0.3795513 0.4220313 -0.1409607 0.3795513 0.4220313 -0.1678172 0.3795513 0.4220313 -0.1950164 0.3795513 0.4220313 -0.2210581 0.3795513 0.4220313 -0.245636 0.3795513 0.4220313 -0.2686816 0.3795513 0.4220313 -0.2902431 0.3795513 0.4220313 -0.3104189 0.3795513 0.4220313 -0.3293248 0.3795513 0.4220313 -0.3470774 0.3795513 0.4220313 -0.3637862 0.3795513 0.4220313 -0.3795513 0.3795513 0.4220313 -0.3944623 0.3795513 0.4220313 -0.4085988 0.3795513 0.4220313 -0.4220313 0.3795513 0.4220313 -0.4348222 0.3795513 0.4220313 -0.4470264 0.3795513 0.4220313 -0.4586928 0.3795513 0.4220313 -0.4698649 0.3795513 0.4220313 -0.4805811 0.3795513 0.4220313 -0.490876 0.3795513 0.4220313 -0.5007803 0.3795513 0.4220313 -0.510322 0.3795513 0.4220313 -0.5195258 0.3795513 0.4220313 -0.5284142 0.3795513 0.4220313 -0.5370079 0.3795513 0.4220313 -0.5453253 0.3795513 0.4220313 -0.5533834 0.3795513 0.4220313 -0.5611974 0.3795513 0.4220313 -0.5687816 0.3795513 0.4220313 -0.092819 0.3944623 0.4220313 -0.1056428 0.3944623 0.4220313 -0.1201537 0.3944623 0.4220313 -0.1409607 0.3944623 0.4220313 -0.1678172 0.3944623 0.4220313 -0.1950164 0.3944623 0.4220313 -0.2210581 0.3944623 0.4220313 -0.245636 0.3944623 0.4220313 -0.2686816 0.3944623 0.4220313 -0.2902431 0.3944623 0.4220313 -0.3104189 0.3944623 0.4220313 -0.3293248 0.3944623 0.4220313 -0.3470774 0.3944623 0.4220313 -0.3637862 0.3944623 0.4220313 -0.3795513 0.3944623 0.4220313 -0.3944623 0.3944623 0.4220313 -0.4085988 0.3944623 0.4220313 -0.4220313 0.3944623 0.4220313 -0.4348222 0.3944623 0.4220313 -0.4470264 0.3944623 0.4220313 -0.4586928 0.3944623 0.4220313 -0.4698649 0.3944623 0.4220313 -0.4805811 0.3944623 0.4220313 -0.490876 0.3944623 0.4220313 -0.5007803 0.3944623 0.4220313 -0.510322 0.3944623 0.4220313 -0.5195258 0.3944623 0.4220313 -0.5284142 0.3944623 0.4220313 -0.5370079 0.3944623 0.4220313 -0.5453253 0.3944623 0.4220313 -0.5533834 0.3944623 0.4220313 -0.5611974 0.3944623 0.4220313 -0.5687816 0.3944623 0.4220313 -0.092819 0.4085988 0.4220313 -0.1056428 0.4085988 0.4220313 -0.1201537 0.4085988 0.4220313 -0.1409607 0.4085988 0.4220313 -0.1678172 0.4085988 0.4220313 -0.1950164 0.4085988 0.4220313 -0.2210581 0.4085988 0.4220313 -0.245636 0.4085988 0.4220313 -0.2686816 0.4085988 0.4220313 -0.2902431 0.4085988 0.4220313 -0.3104189 0.4085988 0.4220313 -0.3293248 0.4085988 0.4220313 -0.3470774 0.4085988 0.4220313 -0.3637862 0.4085988 0.4220313 -0.3795513 0.4085988 0.4220313 -0.3944623 0.4085988 0.4220313 -0.4085988 0.4085988 0.4220313 -0.4220313 0.4085988 0.4220313 -0.4348222 0.4085988 0.4220313 -0.4470264 0.4085988 0.4220313 -0.4586928 0.4085988 0.4220313 -0.4698649 0.4085988 0.4220313 -0.4805811 0.4085988 0.4220313 -0.490876 0.4085988 0.4220313 -0.5007803 0.4085988 0.4220313 -0.510322 0.4085988 0.4220313 -0.5195258 0.4085988 0.4220313 -0.5284142 0.4085988 0.4220313 -0.5370079 0.4085988 0.4220313 -0.5453253 0.4085988 0.4220313 -0.5533834 0.4085988 0.4220313 -0.5611974 0.4085988 0.4220313 -0.5687816 0.4085988 0.4220313 -0.092819 0.4220313 0.4220313 -0.1056428 0.4220313 0.4220313 -0.1201537 0.4220313 0.4220313 -0.1409607 0.4220313 0.4220313 -0.1678172 0.4220313 0.4220313 -0.1950164 0.4220313 0.4220313 -0.2210581 0.4220313 0.4220313 -0.245636 0.4220313 0.4220313 -0.2686816 0.4220313 0.4220313 -0.2902431 0.4220313 0.4220313 -0.3104189 0.4220313 0.4220313 -0.3293248 0.4220313 0.4220313 -0.3470774 0.4220313 0.4220313 -0.3637862 0.4220313 0.4220313 -0.3795513 0.4220313 0.4220313 -0.3944623 0.4220313 0.4220313 -0.4085988 0.4220313 0.4220313 -0.4220313 0.4220313 0.4220313 -0.4348222 0.4220313 0.4220313 -0.4470264 0.4220313 0.4220313 -0.4586928 0.4220313 0.4220313 -0.4698649 0.4220313 0.4220313 -0.4805811 0.4220313 0.4220313 -0.490876 0.4220313 0.4220313 -0.5007803 0.4220313 0.4220313 -0.510322 0.4220313 0.4220313 -0.5195258 0.4220313 0.4220313 -0.5284142 0.4220313 0.4220313 -0.5370079 0.4220313 0.4220313 -0.5453253 0.4220313 0.4220313 -0.5533834 0.4220313 0.4220313 -0.5611974 0.4220313 0.4220313 -0.5687816 0.4220313 0.4220313 -0.092819 0.4348222 0.4220313 -0.1056428 0.4348222 0.4220313 -0.1201537 0.4348222 0.4220313 -0.1409607 0.4348222 0.4220313 -0.1678172 0.4348222 0.4220313 -0.1950164 0.4348222 0.4220313 -0.2210581 0.4348222 0.4220313 -0.245636 0.4348222 0.4220313 -0.2686816 0.4348222 0.4220313 -0.2902431 0.4348222 0.4220313 -0.3104189 0.4348222 0.4220313 -0.3293248 0.4348222 0.4220313 -0.3470774 0.4348222 0.4220313 -0.3637862 0.4348222 0.4220313 -0.3795513 0.4348222 0.4220313 -0.3944623 0.4348222 0.4220313 -0.4085988 0.4348222 0.4220313 -0.4220313 0.4348222 0.4220313 -0.4348222 0.4348222 0.4220313 -0.4470264 0.4348222 0.4220313 -0.4586928 0.4348222 0.4220313 -0.4698649 0.4348222 0.4220313 -0.4805811 0.4348222 0.4220313 -0.490876 0.4348222 0.4220313 -0.5007803 0.4348222 0.4220313 -0.510322 0.4348222 0.4220313 -0.5195258 0.4348222 0.4220313 -0.5284142 0.4348222 0.4220313 -0.5370079 0.4348222 0.4220313 -0.5453253 0.4348222 0.4220313 -0.5533834 0.4348222 0.4220313 -0.5611974 0.4348222 0.4220313 -0.5687816 0.4348222 0.4220313 -0.092819 0.4470264 0.4220313 -0.1056428 0.4470264 0.4220313 -0.1201537 0.4470264 0.4220313 -0.1409607 0.4470264 0.4220313 -0.1678172 0.4470264 0.4220313 -0.1950164 0.4470264 0.4220313 -0.2210581 0.4470264 0.4220313 -0.245636 0.4470264 0.4220313 -0.2686816 0.4470264 0.4220313 -0.2902431 0.4470264 0.4220313 -0.3104189 0.4470264 0.4220313 -0.3293248 0.4470264 0.4220313 -0.3470774 0.4470264 0.4220313 -0.3637862 0.4470264 0.4220313 -0.3795513 0.4470264 0.4220313 -0.3944623 0.4470264 0.4220313 -0.4085988 0.4470264 0.4220313 -0.4220313 0.4470264 0.4220313 -0.4348222 0.4470264 0.4220313 -0.4470264 0.4470264 0.4220313 -0.4586928 0.4470264 0.4220313 -0.4698649 0.4470264 0.4220313 -0.4805811 0.4470264 0.4220313 -0.490876 0.4470264 0.4220313 -0.5007803 0.4470264 0.4220313 -0.510322 0.4470264 0.4220313 -0.5195258 0.4470264 0.4220313 -0.5284142 0.4470264 0.4220313 -0.5370079 0.4470264 0.4220313 -0.5453253 0.4470264 0.4220313 -0.5533834 0.4470264 0.4220313 -0.5611974 0.4470264 0.4220313 -0.5687816 0.4470264 0.4220313 -0.092819 0.4586928 0.4220313 -0.1056428 0.4586928 0.4220313 -0.1201537 0.4586928 0.4220313 -0.1409607 0.4586928 0.4220313 -0.1678172 0.4586928 0.4220313 -0.1950164 0.4586928 0.4220313 -0.2210581 0.4586928 0.4220313 -0.245636 0.4586928 0.4220313 -0.2686816 0.4586928 0.4220313 -0.2902431 0.4586928 0.4220313 -0.3104189 0.4586928 0.4220313 -0.3293248 0.4586928 0.4220313 -0.3470774 0.4586928 0.4220313 -0.3637862 0.4586928 0.4220313 -0.3795513 0.4586928 0.4220313 -0.3944623 0.4586928 0.4220313 -0.4085988 0.4586928 0.4220313 -0.4220313 0.4586928 0.4220313 -0.4348222 0.4586928 0.4220313 -0.4470264 0.4586928 0.4220313 -0.4586928 0.4586928 0.4220313 -0.4698649 0.4586928 0.4220313 -0.4805811 0.4586928 0.4220313 -0.490876 0.4586928 0.4220313 -0.5007803 0.4586928 0.4220313 -0.510322 0.4586928 0.4220313 -0.5195258 0.4586928 0.4220313 -0.5284142 0.4586928 0.4220313 -0.5370079 0.4586928 0.4220313 -0.5453253 0.4586928 0.4220313 -0.5533834 0.4586928 0.4220313 -0.5611974 0.4586928 0.4220313 -0.5687816 0.4586928 0.4220313 -0.092819 0.4698649 0.4220313 -0.1056428 0.4698649 0.4220313 -0.1201537 0.4698649 0.4220313 -0.1409607 0.4698649 0.4220313 -0.1678172 0.4698649 0.4220313 -0.1950164 0.4698649 0.4220313 -0.2210581 0.4698649 0.4220313 -0.245636 0.4698649 0.4220313 -0.2686816 0.4698649 0.4220313 -0.2902431 0.4698649 0.4220313 -0.3104189 0.4698649 0.4220313 -0.3293248 0.4698649 0.4220313 -0.3470774 0.4698649 0.4220313 -0.3637862 0.4698649 0.4220313 -0.3795513 0.4698649 0.4220313 -0.3944623 0.4698649 0.4220313 -0.4085988 0.4698649 0.4220313 -0.4220313 0.4698649 0.4220313 -0.4348222 0.4698649 0.4220313 -0.4470264 0.4698649 0.4220313 -0.4586928 0.4698649 0.4220313 -0.4698649 0.4698649 0.4220313 -0.4805811 0.4698649 0.4220313 -0.490876 0.4698649 0.4220313 -0.5007803 0.4698649 0.4220313 -0.510322 0.4698649 0.4220313 -0.5195258 0.4698649 0.4220313 -0.5284142 0.4698649 0.4220313 -0.5370079 0.4698649 0.4220313 -0.5453253 0.4698649 0.4220313 -0.5533834 0.4698649 0.4220313 -0.5611974 0.4698649 0.4220313 -0.5687816 0.4698649 0.4220313 -0.092819 0.4805811 0.4220313 -0.1056428 0.4805811 0.4220313 -0.1201537 0.4805811 0.4220313 -0.1409607 0.4805811 0.4220313 -0.1678172 0.4805811 0.4220313 -0.1950164 0.4805811 0.4220313 -0.2210581 0.4805811 0.4220313 -0.245636 0.4805811 0.4220313 -0.2686816 0.4805811 0.4220313 -0.2902431 0.4805811 0.4220313 -0.3104189 0.4805811 0.4220313 -0.3293248 0.4805811 0.4220313 -0.3470774 0.4805811 0.4220313 -0.3637862 0.4805811 0.4220313 -0.3795513 0.4805811 0.4220313 -0.3944623 0.4805811 0.4220313 -0.4085988 0.4805811 0.4220313 -0.4220313 0.4805811 0.4220313 -0.4348222 0.4805811 0.4220313 -0.4470264 0.4805811 0.4220313 -0.4586928 0.4805811 0.4220313 -0.4698649 0.4805811 0.4220313 -0.4805811 0.4805811 0.4220313 -0.490876 0.4805811 0.4220313 -0.5007803 0.4805811 0.4220313 -0.510322 0.4805811 0.4220313 -0.5195258 0.4805811 0.4220313 -0.5284142 0.4805811 0.4220313 -0.5370079 0.4805811 0.4220313 -0.5453253 0.4805811 0.4220313 -0.5533834 0.4805811 0.4220313 -0.5611974 0.4805811 0.4220313 -0.5687816 0.4805811 0.4220313 -0.092819 0.490876 0.4220313 -0.1056428 0.490876 0.4220313 -0.1201537 0.490876 0.4220313 -0.1409607 0.490876 0.4220313 -0.1678172 0.490876 0.4220313 -0.1950164 0.490876 0.4220313 -0.2210581 0.490876 0.4220313 -0.245636 0.490876 0.4220313 -0.2686816 0.490876 0.4220313 -0.2902431 0.490876 0.4220313 -0.3104189 0.490876 0.4220313 -0.3293248 0.490876 0.4220313 -0.3470774 0.490876 0.4220313 -0.3637862 0.490876 0.4220313 -0.3795513 0.490876 0.4220313 -0.3944623 0.490876 0.4220313 -0.4085988 0.490876 0.4220313 -0.4220313 0.490876 0.4220313 -0.4348222 0.490876 0.4220313 -0.4470264 0.490876 0.4220313 -0.4586928 0.490876 0.4220313 -0.4698649 0.490876 0.4220313 -0.4805811 0.490876 0.4220313 -0.490876 0.490876 0.4220313 -0.5007803 0.490876 0.4220313 -0.510322 0.490876 0.4220313 -0.5195258 0.490876 0.4220313 -0.5284142 0.490876 0.4220313 -0.5370079 0.490876 0.4220313 -0.5453253 0.490876 0.4220313 -0.5533834 0.490876 0.4220313 -0.5611974 0.490876 0.4220313 -0.5687816 0.490876 0.4220313 -0.092819 0.5007803 0.4220313 -0.1056428 0.5007803 0.4220313 -0.1201537 0.5007803 0.4220313 -0.1409607 0.5007803 0.4220313 -0.1678172 0.5007803 0.4220313 -0.1950164 0.5007803 0.4220313 -0.2210581 0.5007803 0.4220313 -0.245636 0.5007803 0.4220313 -0.2686816 0.5007803 0.4220313 -0.2902431 0.5007803 0.4220313 -0.3104189 0.5007803 0.4220313 -0.3293248 0.5007803 0.4220313 -0.3470774 0.5007803 0.4220313 -0.3637862 0.5007803 0.4220313 -0.3795513 0.5007803 0.4220313 -0.3944623 0.5007803 0.4220313 -0.4085988 0.5007803 0.4220313 -0.4220313 0.5007803 0.4220313 -0.4348222 0.5007803 0.4220313 -0.4470264 0.5007803 0.4220313 -0.4586928 0.5007803 0.4220313 -0.4698649 0.5007803 0.4220313 -0.4805811 0.5007803 0.4220313 -0.490876 0.5007803 0.4220313 -0.5007803 0.5007803 0.4220313 -0.510322 0.5007803 0.4220313 -0.5195258 0.5007803 0.4220313 -0.5284142 0.5007803 0.4220313 -0.5370079 0.5007803 0.4220313 -0.5453253 0.5007803 0.4220313 -0.5533834 0.5007803 0.4220313 -0.5611974 0.5007803 0.4220313 -0.5687816 0.5007803 0.4220313 -0.092819 0.510322 0.4220313 -0.1056428 0.510322 0.4220313 -0.1201537 0.510322 0.4220313 -0.1409607 0.510322 0.4220313 -0.1678172 0.510322 0.4220313 -0.1950164 0.510322 0.4220313 -0.2210581 0.510322 0.4220313 -0.245636 0.510322 0.4220313 -0.2686816 0.510322 0.4220313 -0.2902431 0.510322 0.4220313 -0.3104189 0.510322 0.4220313 -0.3293248 0.510322 0.4220313 -0.3470774 0.510322 0.4220313 -0.3637862 0.510322 0.4220313 -0.3795513 0.510322 0.4220313 -0.3944623 0.510322 0.4220313 -0.4085988 0.510322 0.4220313 -0.4220313 0.510322 0.4220313 -0.4348222 0.510322 0.4220313 -0.4470264 0.510322 0.4220313 -0.4586928 0.510322 0.4220313 -0.4698649 0.510322 0.4220313 -0.4805811 0.510322 0.4220313 -0.490876 0.510322 0.4220313 -0.5007803 0.510322 0.4220313 -0.510322 0.510322 0.4220313 -0.5195258 0.510322 0.4220313 -0.5284142 0.510322 0.4220313 -0.5370079 0.510322 0.4220313 -0.5453253 0.510322 0.4220313 -0.5533834 0.510322 0.4220313 -0.5611974 0.510322 0.4220313 -0.5687816 0.510322 0.4220313 -0.092819 0.5195258 0.4220313 -0.1056428 0.5195258 0.4220313 -0.1201537 0.5195258 0.4220313 -0.1409607 0.5195258 0.4220313 -0.1678172 0.5195258 0.4220313 -0.1950164 0.5195258 0.4220313 -0.2210581 0.5195258 0.4220313 -0.245636 0.5195258 0.4220313 -0.2686816 0.5195258 0.4220313 -0.2902431 0.5195258 0.4220313 -0.3104189 0.5195258 0.4220313 -0.3293248 0.5195258 0.4220313 -0.3470774 0.5195258 0.4220313 -0.3637862 0.5195258 0.4220313 -0.3795513 0.5195258 0.4220313 -0.3944623 0.5195258 0.4220313 -0.4085988 0.5195258 0.4220313 -0.4220313 0.5195258 0.4220313 -0.4348222 0.5195258 0.4220313 -0.4470264 0.5195258 0.4220313 -0.4586928 0.5195258 0.4220313 -0.4698649 0.5195258 0.4220313 -0.4805811 0.5195258 0.4220313 -0.490876 0.5195258 0.4220313 -0.5007803 0.5195258 0.4220313 -0.510322 0.5195258 0.4220313 -0.5195258 0.5195258 0.4220313 -0.5284142 0.5195258 0.4220313 -0.5370079 0.5195258 0.4220313 -0.5453253 0.5195258 0.4220313 -0.5533834 0.5195258 0.4220313 -0.5611974 0.5195258 0.4220313 -0.5687816 0.5195258 0.4220313 -0.092819 0.5284142 0.4220313 -0.1056428 0.5284142 0.4220313 -0.1201537 0.5284142 0.4220313 -0.1409607 0.5284142 0.4220313 -0.1678172 0.5284142 0.4220313 -0.1950164 0.5284142 0.4220313 -0.2210581 0.5284142 0.4220313 -0.245636 0.5284142 0.4220313 -0.2686816 0.5284142 0.4220313 -0.2902431 0.5284142 0.4220313 -0.3104189 0.5284142 0.4220313 -0.3293248 0.5284142 0.4220313 -0.3470774 0.5284142 0.4220313 -0.3637862 0.5284142 0.4220313 -0.3795513 0.5284142 0.4220313 -0.3944623 0.5284142 0.4220313 -0.4085988 0.5284142 0.4220313 -0.4220313 0.5284142 0.4220313 -0.4348222 0.5284142 0.4220313 -0.4470264 0.5284142 0.4220313 -0.4586928 0.5284142 0.4220313 -0.4698649 0.5284142 0.4220313 -0.4805811 0.5284142 0.4220313 -0.490876 0.5284142 0.4220313 -0.5007803 0.5284142 0.4220313 -0.510322 0.5284142 0.4220313 -0.5195258 0.5284142 0.4220313 -0.5284142 0.5284142 0.4220313 -0.5370079 0.5284142 0.4220313 -0.5453253 0.5284142 0.4220313 -0.5533834 0.5284142 0.4220313 -0.5611974 0.5284142 0.4220313 -0.5687816 0.5284142 0.4220313 -0.092819 0.5370079 0.4220313 -0.1056428 0.5370079 0.4220313 -0.1201537 0.5370079 0.4220313 -0.1409607 0.5370079 0.4220313 -0.1678172 0.5370079 0.4220313 -0.1950164 0.5370079 0.4220313 -0.2210581 0.5370079 0.4220313 -0.245636 0.5370079 0.4220313 -0.2686816 0.5370079 0.4220313 -0.2902431 0.5370079 0.4220313 -0.3104189 0.5370079 0.4220313 -0.3293248 0.5370079 0.4220313 -0.3470774 0.5370079 0.4220313 -0.3637862 0.5370079 0.4220313 -0.3795513 0.5370079 0.4220313 -0.3944623 0.5370079 0.4220313 -0.4085988 0.5370079 0.4220313 -0.4220313 0.5370079 0.4220313 -0.4348222 0.5370079 0.4220313 -0.4470264 0.5370079 0.4220313 -0.4586928 0.5370079 0.4220313 -0.4698649 0.5370079 0.4220313 -0.4805811 0.5370079 0.4220313 -0.490876 0.5370079 0.4220313 -0.5007803 0.5370079 0.4220313 -0.510322 0.5370079 0.4220313 -0.5195258 0.5370079 0.4220313 -0.5284142 0.5370079 0.4220313 -0.5370079 0.5370079 0.4220313 -0.5453253 0.5370079 0.4220313 -0.5533834 0.5370079 0.4220313 -0.5611974 0.5370079 0.4220313 -0.5687816 0.5370079 0.4220313 -0.092819 0.5453253 0.4220313 -0.1056428 0.5453253 0.4220313 -0.1201537 0.5453253 0.4220313 -0.1409607 0.5453253 0.4220313 -0.1678172 0.5453253 0.4220313 -0.1950164 0.5453253 0.4220313 -0.2210581 0.5453253 0.4220313 -0.245636 0.5453253 0.4220313 -0.2686816 0.5453253 0.4220313 -0.2902431 0.5453253 0.4220313 -0.3104189 0.5453253 0.4220313 -0.3293248 0.5453253 0.4220313 -0.3470774 0.5453253 0.4220313 -0.3637862 0.5453253 0.4220313 -0.3795513 0.5453253 0.4220313 -0.3944623 0.5453253 0.4220313 -0.4085988 0.5453253 0.4220313 -0.4220313 0.5453253 0.4220313 -0.4348222 0.5453253 0.4220313 -0.4470264 0.5453253 0.4220313 -0.4586928 0.5453253 0.4220313 -0.4698649 0.5453253 0.4220313 -0.4805811 0.5453253 0.4220313 -0.490876 0.5453253 0.4220313 -0.5007803 0.5453253 0.4220313 -0.510322 0.5453253 0.4220313 -0.5195258 0.5453253 0.4220313 -0.5284142 0.5453253 0.4220313 -0.5370079 0.5453253 0.4220313 -0.5453253 0.5453253 0.4220313 -0.5533834 0.5453253 0.4220313 -0.5611974 0.5453253 0.4220313 -0.5687816 0.5453253 0.4220313 -0.092819 0.5533834 0.4220313 -0.1056428 0.5533834 0.4220313 -0.1201537 0.5533834 0.4220313 -0.1409607 0.5533834 0.4220313 -0.1678172 0.5533834 0.4220313 -0.1950164 0.5533834 0.4220313 -0.2210581 0.5533834 0.4220313 -0.245636 0.5533834 0.4220313 -0.2686816 0.5533834 0.4220313 -0.2902431 0.5533834 0.4220313 -0.3104189 0.5533834 0.4220313 -0.3293248 0.5533834 0.4220313 -0.3470774 0.5533834 0.4220313 -0.3637862 0.5533834 0.4220313 -0.3795513 0.5533834 0.4220313 -0.3944623 0.5533834 0.4220313 -0.4085988 0.5533834 0.4220313 -0.4220313 0.5533834 0.4220313 -0.4348222 0.5533834 0.4220313 -0.4470264 0.5533834 0.4220313 -0.4586928 0.5533834 0.4220313 -0.4698649 0.5533834 0.4220313 -0.4805811 0.5533834 0.4220313 -0.490876 0.5533834 0.4220313 -0.5007803 0.5533834 0.4220313 -0.510322 0.5533834 0.4220313 -0.5195258 0.5533834 0.4220313 -0.5284142 0.5533834 0.4220313 -0.5370079 0.5533834 0.4220313 -0.5453253 0.5533834 0.4220313 -0.5533834 0.5533834 0.4220313 -0.5611974 0.5533834 0.4220313 -0.5687816 0.5533834 0.4220313 -0.092819 0.5611974 0.4220313 -0.1056428 0.5611974 0.4220313 -0.1201537 0.5611974 0.4220313 -0.1409607 0.5611974 0.4220313 -0.1678172 0.5611974 0.4220313 -0.1950164 0.5611974 0.4220313 -0.2210581 0.5611974 0.4220313 -0.245636 0.5611974 0.4220313 -0.2686816 0.5611974 0.4220313 -0.2902431 0.5611974 0.4220313 -0.3104189 0.5611974 0.4220313 -0.3293248 0.5611974 0.4220313 -0.3470774 0.5611974 0.4220313 -0.3637862 0.5611974 0.4220313 -0.3795513 0.5611974 0.4220313 -0.3944623 0.5611974 0.4220313 -0.4085988 0.5611974 0.4220313 -0.4220313 0.5611974 0.4220313 -0.4348222 0.5611974 0.4220313 -0.4470264 0.5611974 0.4220313 -0.4586928 0.5611974 0.4220313 -0.4698649 0.5611974 0.4220313 -0.4805811 0.5611974 0.4220313 -0.490876 0.5611974 0.4220313 -0.5007803 0.5611974 0.4220313 -0.510322 0.5611974 0.4220313 -0.5195258 0.5611974 0.4220313 -0.5284142 0.5611974 0.4220313 -0.5370079 0.5611974 0.4220313 -0.5453253 0.5611974 0.4220313 -0.5533834 0.5611974 0.4220313 -0.5611974 0.5611974 0.4220313 -0.5687816 0.5611974 0.4220313 -0.092819 0.5687816 0.4220313 -0.1056428 0.5687816 0.4220313 -0.1201537 0.5687816 0.4220313 -0.1409607 0.5687816 0.4220313 -0.1678172 0.5687816 0.4220313 -0.1950164 0.5687816 0.4220313 -0.2210581 0.5687816 0.4220313 -0.245636 0.5687816 0.4220313 -0.2686816 0.5687816 0.4220313 -0.2902431 0.5687816 0.4220313 -0.3104189 0.5687816 0.4220313 -0.3293248 0.5687816 0.4220313 -0.3470774 0.5687816 0.4220313 -0.3637862 0.5687816 0.4220313 -0.3795513 0.5687816 0.4220313 -0.3944623 0.5687816 0.4220313 -0.4085988 0.5687816 0.4220313 -0.4220313 0.5687816 0.4220313 -0.4348222 0.5687816 0.4220313 -0.4470264 0.5687816 0.4220313 -0.4586928 0.5687816 0.4220313 -0.4698649 0.5687816 0.4220313 -0.4805811 0.5687816 0.4220313 -0.490876 0.5687816 0.4220313 -0.5007803 0.5687816 0.4220313 -0.510322 0.5687816 0.4220313 -0.5195258 0.5687816 0.4220313 -0.5284142 0.5687816 0.4220313 -0.5370079 0.5687816 0.4220313 -0.5453253 0.5687816 0.4220313 -0.5533834 0.5687816 0.4220313 -0.5611974 0.5687816 0.4220313 -0.5687816 0.5687816 0.4220313 -0.092819 0.092819 0.4348222 -0.1056428 0.092819 0.4348222 -0.1201537 0.092819 0.4348222 -0.1409607 0.092819 0.4348222 -0.1678172 0.092819 0.4348222 -0.1950164 0.092819 0.4348222 -0.2210581 0.092819 0.4348222 -0.245636 0.092819 0.4348222 -0.2686816 0.092819 0.4348222 -0.2902431 0.092819 0.4348222 -0.3104189 0.092819 0.4348222 -0.3293248 0.092819 0.4348222 -0.3470774 0.092819 0.4348222 -0.3637862 0.092819 0.4348222 -0.3795513 0.092819 0.4348222 -0.3944623 0.092819 0.4348222 -0.4085988 0.092819 0.4348222 -0.4220313 0.092819 0.4348222 -0.4348222 0.092819 0.4348222 -0.4470264 0.092819 0.4348222 -0.4586928 0.092819 0.4348222 -0.4698649 0.092819 0.4348222 -0.4805811 0.092819 0.4348222 -0.490876 0.092819 0.4348222 -0.5007803 0.092819 0.4348222 -0.510322 0.092819 0.4348222 -0.5195258 0.092819 0.4348222 -0.5284142 0.092819 0.4348222 -0.5370079 0.092819 0.4348222 -0.5453253 0.092819 0.4348222 -0.5533834 0.092819 0.4348222 -0.5611974 0.092819 0.4348222 -0.5687816 0.092819 0.4348222 -0.092819 0.1056428 0.4348222 -0.1056428 0.1056428 0.4348222 -0.1201537 0.1056428 0.4348222 -0.1409607 0.1056428 0.4348222 -0.1678172 0.1056428 0.4348222 -0.1950164 0.1056428 0.4348222 -0.2210581 0.1056428 0.4348222 -0.245636 0.1056428 0.4348222 -0.2686816 0.1056428 0.4348222 -0.2902431 0.1056428 0.4348222 -0.3104189 0.1056428 0.4348222 -0.3293248 0.1056428 0.4348222 -0.3470774 0.1056428 0.4348222 -0.3637862 0.1056428 0.4348222 -0.3795513 0.1056428 0.4348222 -0.3944623 0.1056428 0.4348222 -0.4085988 0.1056428 0.4348222 -0.4220313 0.1056428 0.4348222 -0.4348222 0.1056428 0.4348222 -0.4470264 0.1056428 0.4348222 -0.4586928 0.1056428 0.4348222 -0.4698649 0.1056428 0.4348222 -0.4805811 0.1056428 0.4348222 -0.490876 0.1056428 0.4348222 -0.5007803 0.1056428 0.4348222 -0.510322 0.1056428 0.4348222 -0.5195258 0.1056428 0.4348222 -0.5284142 0.1056428 0.4348222 -0.5370079 0.1056428 0.4348222 -0.5453253 0.1056428 0.4348222 -0.5533834 0.1056428 0.4348222 -0.5611974 0.1056428 0.4348222 -0.5687816 0.1056428 0.4348222 -0.092819 0.1201537 0.4348222 -0.1056428 0.1201537 0.4348222 -0.1201537 0.1201537 0.4348222 -0.1409607 0.1201537 0.4348222 -0.1678172 0.1201537 0.4348222 -0.1950164 0.1201537 0.4348222 -0.2210581 0.1201537 0.4348222 -0.245636 0.1201537 0.4348222 -0.2686816 0.1201537 0.4348222 -0.2902431 0.1201537 0.4348222 -0.3104189 0.1201537 0.4348222 -0.3293248 0.1201537 0.4348222 -0.3470774 0.1201537 0.4348222 -0.3637862 0.1201537 0.4348222 -0.3795513 0.1201537 0.4348222 -0.3944623 0.1201537 0.4348222 -0.4085988 0.1201537 0.4348222 -0.4220313 0.1201537 0.4348222 -0.4348222 0.1201537 0.4348222 -0.4470264 0.1201537 0.4348222 -0.4586928 0.1201537 0.4348222 -0.4698649 0.1201537 0.4348222 -0.4805811 0.1201537 0.4348222 -0.490876 0.1201537 0.4348222 -0.5007803 0.1201537 0.4348222 -0.510322 0.1201537 0.4348222 -0.5195258 0.1201537 0.4348222 -0.5284142 0.1201537 0.4348222 -0.5370079 0.1201537 0.4348222 -0.5453253 0.1201537 0.4348222 -0.5533834 0.1201537 0.4348222 -0.5611974 0.1201537 0.4348222 -0.5687816 0.1201537 0.4348222 -0.092819 0.1409607 0.4348222 -0.1056428 0.1409607 0.4348222 -0.1201537 0.1409607 0.4348222 -0.1409607 0.1409607 0.4348222 -0.1678172 0.1409607 0.4348222 -0.1950164 0.1409607 0.4348222 -0.2210581 0.1409607 0.4348222 -0.245636 0.1409607 0.4348222 -0.2686816 0.1409607 0.4348222 -0.2902431 0.1409607 0.4348222 -0.3104189 0.1409607 0.4348222 -0.3293248 0.1409607 0.4348222 -0.3470774 0.1409607 0.4348222 -0.3637862 0.1409607 0.4348222 -0.3795513 0.1409607 0.4348222 -0.3944623 0.1409607 0.4348222 -0.4085988 0.1409607 0.4348222 -0.4220313 0.1409607 0.4348222 -0.4348222 0.1409607 0.4348222 -0.4470264 0.1409607 0.4348222 -0.4586928 0.1409607 0.4348222 -0.4698649 0.1409607 0.4348222 -0.4805811 0.1409607 0.4348222 -0.490876 0.1409607 0.4348222 -0.5007803 0.1409607 0.4348222 -0.510322 0.1409607 0.4348222 -0.5195258 0.1409607 0.4348222 -0.5284142 0.1409607 0.4348222 -0.5370079 0.1409607 0.4348222 -0.5453253 0.1409607 0.4348222 -0.5533834 0.1409607 0.4348222 -0.5611974 0.1409607 0.4348222 -0.5687816 0.1409607 0.4348222 -0.092819 0.1678172 0.4348222 -0.1056428 0.1678172 0.4348222 -0.1201537 0.1678172 0.4348222 -0.1409607 0.1678172 0.4348222 -0.1678172 0.1678172 0.4348222 -0.1950164 0.1678172 0.4348222 -0.2210581 0.1678172 0.4348222 -0.245636 0.1678172 0.4348222 -0.2686816 0.1678172 0.4348222 -0.2902431 0.1678172 0.4348222 -0.3104189 0.1678172 0.4348222 -0.3293248 0.1678172 0.4348222 -0.3470774 0.1678172 0.4348222 -0.3637862 0.1678172 0.4348222 -0.3795513 0.1678172 0.4348222 -0.3944623 0.1678172 0.4348222 -0.4085988 0.1678172 0.4348222 -0.4220313 0.1678172 0.4348222 -0.4348222 0.1678172 0.4348222 -0.4470264 0.1678172 0.4348222 -0.4586928 0.1678172 0.4348222 -0.4698649 0.1678172 0.4348222 -0.4805811 0.1678172 0.4348222 -0.490876 0.1678172 0.4348222 -0.5007803 0.1678172 0.4348222 -0.510322 0.1678172 0.4348222 -0.5195258 0.1678172 0.4348222 -0.5284142 0.1678172 0.4348222 -0.5370079 0.1678172 0.4348222 -0.5453253 0.1678172 0.4348222 -0.5533834 0.1678172 0.4348222 -0.5611974 0.1678172 0.4348222 -0.5687816 0.1678172 0.4348222 -0.092819 0.1950164 0.4348222 -0.1056428 0.1950164 0.4348222 -0.1201537 0.1950164 0.4348222 -0.1409607 0.1950164 0.4348222 -0.1678172 0.1950164 0.4348222 -0.1950164 0.1950164 0.4348222 -0.2210581 0.1950164 0.4348222 -0.245636 0.1950164 0.4348222 -0.2686816 0.1950164 0.4348222 -0.2902431 0.1950164 0.4348222 -0.3104189 0.1950164 0.4348222 -0.3293248 0.1950164 0.4348222 -0.3470774 0.1950164 0.4348222 -0.3637862 0.1950164 0.4348222 -0.3795513 0.1950164 0.4348222 -0.3944623 0.1950164 0.4348222 -0.4085988 0.1950164 0.4348222 -0.4220313 0.1950164 0.4348222 -0.4348222 0.1950164 0.4348222 -0.4470264 0.1950164 0.4348222 -0.4586928 0.1950164 0.4348222 -0.4698649 0.1950164 0.4348222 -0.4805811 0.1950164 0.4348222 -0.490876 0.1950164 0.4348222 -0.5007803 0.1950164 0.4348222 -0.510322 0.1950164 0.4348222 -0.5195258 0.1950164 0.4348222 -0.5284142 0.1950164 0.4348222 -0.5370079 0.1950164 0.4348222 -0.5453253 0.1950164 0.4348222 -0.5533834 0.1950164 0.4348222 -0.5611974 0.1950164 0.4348222 -0.5687816 0.1950164 0.4348222 -0.092819 0.2210581 0.4348222 -0.1056428 0.2210581 0.4348222 -0.1201537 0.2210581 0.4348222 -0.1409607 0.2210581 0.4348222 -0.1678172 0.2210581 0.4348222 -0.1950164 0.2210581 0.4348222 -0.2210581 0.2210581 0.4348222 -0.245636 0.2210581 0.4348222 -0.2686816 0.2210581 0.4348222 -0.2902431 0.2210581 0.4348222 -0.3104189 0.2210581 0.4348222 -0.3293248 0.2210581 0.4348222 -0.3470774 0.2210581 0.4348222 -0.3637862 0.2210581 0.4348222 -0.3795513 0.2210581 0.4348222 -0.3944623 0.2210581 0.4348222 -0.4085988 0.2210581 0.4348222 -0.4220313 0.2210581 0.4348222 -0.4348222 0.2210581 0.4348222 -0.4470264 0.2210581 0.4348222 -0.4586928 0.2210581 0.4348222 -0.4698649 0.2210581 0.4348222 -0.4805811 0.2210581 0.4348222 -0.490876 0.2210581 0.4348222 -0.5007803 0.2210581 0.4348222 -0.510322 0.2210581 0.4348222 -0.5195258 0.2210581 0.4348222 -0.5284142 0.2210581 0.4348222 -0.5370079 0.2210581 0.4348222 -0.5453253 0.2210581 0.4348222 -0.5533834 0.2210581 0.4348222 -0.5611974 0.2210581 0.4348222 -0.5687816 0.2210581 0.4348222 -0.092819 0.245636 0.4348222 -0.1056428 0.245636 0.4348222 -0.1201537 0.245636 0.4348222 -0.1409607 0.245636 0.4348222 -0.1678172 0.245636 0.4348222 -0.1950164 0.245636 0.4348222 -0.2210581 0.245636 0.4348222 -0.245636 0.245636 0.4348222 -0.2686816 0.245636 0.4348222 -0.2902431 0.245636 0.4348222 -0.3104189 0.245636 0.4348222 -0.3293248 0.245636 0.4348222 -0.3470774 0.245636 0.4348222 -0.3637862 0.245636 0.4348222 -0.3795513 0.245636 0.4348222 -0.3944623 0.245636 0.4348222 -0.4085988 0.245636 0.4348222 -0.4220313 0.245636 0.4348222 -0.4348222 0.245636 0.4348222 -0.4470264 0.245636 0.4348222 -0.4586928 0.245636 0.4348222 -0.4698649 0.245636 0.4348222 -0.4805811 0.245636 0.4348222 -0.490876 0.245636 0.4348222 -0.5007803 0.245636 0.4348222 -0.510322 0.245636 0.4348222 -0.5195258 0.245636 0.4348222 -0.5284142 0.245636 0.4348222 -0.5370079 0.245636 0.4348222 -0.5453253 0.245636 0.4348222 -0.5533834 0.245636 0.4348222 -0.5611974 0.245636 0.4348222 -0.5687816 0.245636 0.4348222 -0.092819 0.2686816 0.4348222 -0.1056428 0.2686816 0.4348222 -0.1201537 0.2686816 0.4348222 -0.1409607 0.2686816 0.4348222 -0.1678172 0.2686816 0.4348222 -0.1950164 0.2686816 0.4348222 -0.2210581 0.2686816 0.4348222 -0.245636 0.2686816 0.4348222 -0.2686816 0.2686816 0.4348222 -0.2902431 0.2686816 0.4348222 -0.3104189 0.2686816 0.4348222 -0.3293248 0.2686816 0.4348222 -0.3470774 0.2686816 0.4348222 -0.3637862 0.2686816 0.4348222 -0.3795513 0.2686816 0.4348222 -0.3944623 0.2686816 0.4348222 -0.4085988 0.2686816 0.4348222 -0.4220313 0.2686816 0.4348222 -0.4348222 0.2686816 0.4348222 -0.4470264 0.2686816 0.4348222 -0.4586928 0.2686816 0.4348222 -0.4698649 0.2686816 0.4348222 -0.4805811 0.2686816 0.4348222 -0.490876 0.2686816 0.4348222 -0.5007803 0.2686816 0.4348222 -0.510322 0.2686816 0.4348222 -0.5195258 0.2686816 0.4348222 -0.5284142 0.2686816 0.4348222 -0.5370079 0.2686816 0.4348222 -0.5453253 0.2686816 0.4348222 -0.5533834 0.2686816 0.4348222 -0.5611974 0.2686816 0.4348222 -0.5687816 0.2686816 0.4348222 -0.092819 0.2902431 0.4348222 -0.1056428 0.2902431 0.4348222 -0.1201537 0.2902431 0.4348222 -0.1409607 0.2902431 0.4348222 -0.1678172 0.2902431 0.4348222 -0.1950164 0.2902431 0.4348222 -0.2210581 0.2902431 0.4348222 -0.245636 0.2902431 0.4348222 -0.2686816 0.2902431 0.4348222 -0.2902431 0.2902431 0.4348222 -0.3104189 0.2902431 0.4348222 -0.3293248 0.2902431 0.4348222 -0.3470774 0.2902431 0.4348222 -0.3637862 0.2902431 0.4348222 -0.3795513 0.2902431 0.4348222 -0.3944623 0.2902431 0.4348222 -0.4085988 0.2902431 0.4348222 -0.4220313 0.2902431 0.4348222 -0.4348222 0.2902431 0.4348222 -0.4470264 0.2902431 0.4348222 -0.4586928 0.2902431 0.4348222 -0.4698649 0.2902431 0.4348222 -0.4805811 0.2902431 0.4348222 -0.490876 0.2902431 0.4348222 -0.5007803 0.2902431 0.4348222 -0.510322 0.2902431 0.4348222 -0.5195258 0.2902431 0.4348222 -0.5284142 0.2902431 0.4348222 -0.5370079 0.2902431 0.4348222 -0.5453253 0.2902431 0.4348222 -0.5533834 0.2902431 0.4348222 -0.5611974 0.2902431 0.4348222 -0.5687816 0.2902431 0.4348222 -0.092819 0.3104189 0.4348222 -0.1056428 0.3104189 0.4348222 -0.1201537 0.3104189 0.4348222 -0.1409607 0.3104189 0.4348222 -0.1678172 0.3104189 0.4348222 -0.1950164 0.3104189 0.4348222 -0.2210581 0.3104189 0.4348222 -0.245636 0.3104189 0.4348222 -0.2686816 0.3104189 0.4348222 -0.2902431 0.3104189 0.4348222 -0.3104189 0.3104189 0.4348222 -0.3293248 0.3104189 0.4348222 -0.3470774 0.3104189 0.4348222 -0.3637862 0.3104189 0.4348222 -0.3795513 0.3104189 0.4348222 -0.3944623 0.3104189 0.4348222 -0.4085988 0.3104189 0.4348222 -0.4220313 0.3104189 0.4348222 -0.4348222 0.3104189 0.4348222 -0.4470264 0.3104189 0.4348222 -0.4586928 0.3104189 0.4348222 -0.4698649 0.3104189 0.4348222 -0.4805811 0.3104189 0.4348222 -0.490876 0.3104189 0.4348222 -0.5007803 0.3104189 0.4348222 -0.510322 0.3104189 0.4348222 -0.5195258 0.3104189 0.4348222 -0.5284142 0.3104189 0.4348222 -0.5370079 0.3104189 0.4348222 -0.5453253 0.3104189 0.4348222 -0.5533834 0.3104189 0.4348222 -0.5611974 0.3104189 0.4348222 -0.5687816 0.3104189 0.4348222 -0.092819 0.3293248 0.4348222 -0.1056428 0.3293248 0.4348222 -0.1201537 0.3293248 0.4348222 -0.1409607 0.3293248 0.4348222 -0.1678172 0.3293248 0.4348222 -0.1950164 0.3293248 0.4348222 -0.2210581 0.3293248 0.4348222 -0.245636 0.3293248 0.4348222 -0.2686816 0.3293248 0.4348222 -0.2902431 0.3293248 0.4348222 -0.3104189 0.3293248 0.4348222 -0.3293248 0.3293248 0.4348222 -0.3470774 0.3293248 0.4348222 -0.3637862 0.3293248 0.4348222 -0.3795513 0.3293248 0.4348222 -0.3944623 0.3293248 0.4348222 -0.4085988 0.3293248 0.4348222 -0.4220313 0.3293248 0.4348222 -0.4348222 0.3293248 0.4348222 -0.4470264 0.3293248 0.4348222 -0.4586928 0.3293248 0.4348222 -0.4698649 0.3293248 0.4348222 -0.4805811 0.3293248 0.4348222 -0.490876 0.3293248 0.4348222 -0.5007803 0.3293248 0.4348222 -0.510322 0.3293248 0.4348222 -0.5195258 0.3293248 0.4348222 -0.5284142 0.3293248 0.4348222 -0.5370079 0.3293248 0.4348222 -0.5453253 0.3293248 0.4348222 -0.5533834 0.3293248 0.4348222 -0.5611974 0.3293248 0.4348222 -0.5687816 0.3293248 0.4348222 -0.092819 0.3470774 0.4348222 -0.1056428 0.3470774 0.4348222 -0.1201537 0.3470774 0.4348222 -0.1409607 0.3470774 0.4348222 -0.1678172 0.3470774 0.4348222 -0.1950164 0.3470774 0.4348222 -0.2210581 0.3470774 0.4348222 -0.245636 0.3470774 0.4348222 -0.2686816 0.3470774 0.4348222 -0.2902431 0.3470774 0.4348222 -0.3104189 0.3470774 0.4348222 -0.3293248 0.3470774 0.4348222 -0.3470774 0.3470774 0.4348222 -0.3637862 0.3470774 0.4348222 -0.3795513 0.3470774 0.4348222 -0.3944623 0.3470774 0.4348222 -0.4085988 0.3470774 0.4348222 -0.4220313 0.3470774 0.4348222 -0.4348222 0.3470774 0.4348222 -0.4470264 0.3470774 0.4348222 -0.4586928 0.3470774 0.4348222 -0.4698649 0.3470774 0.4348222 -0.4805811 0.3470774 0.4348222 -0.490876 0.3470774 0.4348222 -0.5007803 0.3470774 0.4348222 -0.510322 0.3470774 0.4348222 -0.5195258 0.3470774 0.4348222 -0.5284142 0.3470774 0.4348222 -0.5370079 0.3470774 0.4348222 -0.5453253 0.3470774 0.4348222 -0.5533834 0.3470774 0.4348222 -0.5611974 0.3470774 0.4348222 -0.5687816 0.3470774 0.4348222 -0.092819 0.3637862 0.4348222 -0.1056428 0.3637862 0.4348222 -0.1201537 0.3637862 0.4348222 -0.1409607 0.3637862 0.4348222 -0.1678172 0.3637862 0.4348222 -0.1950164 0.3637862 0.4348222 -0.2210581 0.3637862 0.4348222 -0.245636 0.3637862 0.4348222 -0.2686816 0.3637862 0.4348222 -0.2902431 0.3637862 0.4348222 -0.3104189 0.3637862 0.4348222 -0.3293248 0.3637862 0.4348222 -0.3470774 0.3637862 0.4348222 -0.3637862 0.3637862 0.4348222 -0.3795513 0.3637862 0.4348222 -0.3944623 0.3637862 0.4348222 -0.4085988 0.3637862 0.4348222 -0.4220313 0.3637862 0.4348222 -0.4348222 0.3637862 0.4348222 -0.4470264 0.3637862 0.4348222 -0.4586928 0.3637862 0.4348222 -0.4698649 0.3637862 0.4348222 -0.4805811 0.3637862 0.4348222 -0.490876 0.3637862 0.4348222 -0.5007803 0.3637862 0.4348222 -0.510322 0.3637862 0.4348222 -0.5195258 0.3637862 0.4348222 -0.5284142 0.3637862 0.4348222 -0.5370079 0.3637862 0.4348222 -0.5453253 0.3637862 0.4348222 -0.5533834 0.3637862 0.4348222 -0.5611974 0.3637862 0.4348222 -0.5687816 0.3637862 0.4348222 -0.092819 0.3795513 0.4348222 -0.1056428 0.3795513 0.4348222 -0.1201537 0.3795513 0.4348222 -0.1409607 0.3795513 0.4348222 -0.1678172 0.3795513 0.4348222 -0.1950164 0.3795513 0.4348222 -0.2210581 0.3795513 0.4348222 -0.245636 0.3795513 0.4348222 -0.2686816 0.3795513 0.4348222 -0.2902431 0.3795513 0.4348222 -0.3104189 0.3795513 0.4348222 -0.3293248 0.3795513 0.4348222 -0.3470774 0.3795513 0.4348222 -0.3637862 0.3795513 0.4348222 -0.3795513 0.3795513 0.4348222 -0.3944623 0.3795513 0.4348222 -0.4085988 0.3795513 0.4348222 -0.4220313 0.3795513 0.4348222 -0.4348222 0.3795513 0.4348222 -0.4470264 0.3795513 0.4348222 -0.4586928 0.3795513 0.4348222 -0.4698649 0.3795513 0.4348222 -0.4805811 0.3795513 0.4348222 -0.490876 0.3795513 0.4348222 -0.5007803 0.3795513 0.4348222 -0.510322 0.3795513 0.4348222 -0.5195258 0.3795513 0.4348222 -0.5284142 0.3795513 0.4348222 -0.5370079 0.3795513 0.4348222 -0.5453253 0.3795513 0.4348222 -0.5533834 0.3795513 0.4348222 -0.5611974 0.3795513 0.4348222 -0.5687816 0.3795513 0.4348222 -0.092819 0.3944623 0.4348222 -0.1056428 0.3944623 0.4348222 -0.1201537 0.3944623 0.4348222 -0.1409607 0.3944623 0.4348222 -0.1678172 0.3944623 0.4348222 -0.1950164 0.3944623 0.4348222 -0.2210581 0.3944623 0.4348222 -0.245636 0.3944623 0.4348222 -0.2686816 0.3944623 0.4348222 -0.2902431 0.3944623 0.4348222 -0.3104189 0.3944623 0.4348222 -0.3293248 0.3944623 0.4348222 -0.3470774 0.3944623 0.4348222 -0.3637862 0.3944623 0.4348222 -0.3795513 0.3944623 0.4348222 -0.3944623 0.3944623 0.4348222 -0.4085988 0.3944623 0.4348222 -0.4220313 0.3944623 0.4348222 -0.4348222 0.3944623 0.4348222 -0.4470264 0.3944623 0.4348222 -0.4586928 0.3944623 0.4348222 -0.4698649 0.3944623 0.4348222 -0.4805811 0.3944623 0.4348222 -0.490876 0.3944623 0.4348222 -0.5007803 0.3944623 0.4348222 -0.510322 0.3944623 0.4348222 -0.5195258 0.3944623 0.4348222 -0.5284142 0.3944623 0.4348222 -0.5370079 0.3944623 0.4348222 -0.5453253 0.3944623 0.4348222 -0.5533834 0.3944623 0.4348222 -0.5611974 0.3944623 0.4348222 -0.5687816 0.3944623 0.4348222 -0.092819 0.4085988 0.4348222 -0.1056428 0.4085988 0.4348222 -0.1201537 0.4085988 0.4348222 -0.1409607 0.4085988 0.4348222 -0.1678172 0.4085988 0.4348222 -0.1950164 0.4085988 0.4348222 -0.2210581 0.4085988 0.4348222 -0.245636 0.4085988 0.4348222 -0.2686816 0.4085988 0.4348222 -0.2902431 0.4085988 0.4348222 -0.3104189 0.4085988 0.4348222 -0.3293248 0.4085988 0.4348222 -0.3470774 0.4085988 0.4348222 -0.3637862 0.4085988 0.4348222 -0.3795513 0.4085988 0.4348222 -0.3944623 0.4085988 0.4348222 -0.4085988 0.4085988 0.4348222 -0.4220313 0.4085988 0.4348222 -0.4348222 0.4085988 0.4348222 -0.4470264 0.4085988 0.4348222 -0.4586928 0.4085988 0.4348222 -0.4698649 0.4085988 0.4348222 -0.4805811 0.4085988 0.4348222 -0.490876 0.4085988 0.4348222 -0.5007803 0.4085988 0.4348222 -0.510322 0.4085988 0.4348222 -0.5195258 0.4085988 0.4348222 -0.5284142 0.4085988 0.4348222 -0.5370079 0.4085988 0.4348222 -0.5453253 0.4085988 0.4348222 -0.5533834 0.4085988 0.4348222 -0.5611974 0.4085988 0.4348222 -0.5687816 0.4085988 0.4348222 -0.092819 0.4220313 0.4348222 -0.1056428 0.4220313 0.4348222 -0.1201537 0.4220313 0.4348222 -0.1409607 0.4220313 0.4348222 -0.1678172 0.4220313 0.4348222 -0.1950164 0.4220313 0.4348222 -0.2210581 0.4220313 0.4348222 -0.245636 0.4220313 0.4348222 -0.2686816 0.4220313 0.4348222 -0.2902431 0.4220313 0.4348222 -0.3104189 0.4220313 0.4348222 -0.3293248 0.4220313 0.4348222 -0.3470774 0.4220313 0.4348222 -0.3637862 0.4220313 0.4348222 -0.3795513 0.4220313 0.4348222 -0.3944623 0.4220313 0.4348222 -0.4085988 0.4220313 0.4348222 -0.4220313 0.4220313 0.4348222 -0.4348222 0.4220313 0.4348222 -0.4470264 0.4220313 0.4348222 -0.4586928 0.4220313 0.4348222 -0.4698649 0.4220313 0.4348222 -0.4805811 0.4220313 0.4348222 -0.490876 0.4220313 0.4348222 -0.5007803 0.4220313 0.4348222 -0.510322 0.4220313 0.4348222 -0.5195258 0.4220313 0.4348222 -0.5284142 0.4220313 0.4348222 -0.5370079 0.4220313 0.4348222 -0.5453253 0.4220313 0.4348222 -0.5533834 0.4220313 0.4348222 -0.5611974 0.4220313 0.4348222 -0.5687816 0.4220313 0.4348222 -0.092819 0.4348222 0.4348222 -0.1056428 0.4348222 0.4348222 -0.1201537 0.4348222 0.4348222 -0.1409607 0.4348222 0.4348222 -0.1678172 0.4348222 0.4348222 -0.1950164 0.4348222 0.4348222 -0.2210581 0.4348222 0.4348222 -0.245636 0.4348222 0.4348222 -0.2686816 0.4348222 0.4348222 -0.2902431 0.4348222 0.4348222 -0.3104189 0.4348222 0.4348222 -0.3293248 0.4348222 0.4348222 -0.3470774 0.4348222 0.4348222 -0.3637862 0.4348222 0.4348222 -0.3795513 0.4348222 0.4348222 -0.3944623 0.4348222 0.4348222 -0.4085988 0.4348222 0.4348222 -0.4220313 0.4348222 0.4348222 -0.4348222 0.4348222 0.4348222 -0.4470264 0.4348222 0.4348222 -0.4586928 0.4348222 0.4348222 -0.4698649 0.4348222 0.4348222 -0.4805811 0.4348222 0.4348222 -0.490876 0.4348222 0.4348222 -0.5007803 0.4348222 0.4348222 -0.510322 0.4348222 0.4348222 -0.5195258 0.4348222 0.4348222 -0.5284142 0.4348222 0.4348222 -0.5370079 0.4348222 0.4348222 -0.5453253 0.4348222 0.4348222 -0.5533834 0.4348222 0.4348222 -0.5611974 0.4348222 0.4348222 -0.5687816 0.4348222 0.4348222 -0.092819 0.4470264 0.4348222 -0.1056428 0.4470264 0.4348222 -0.1201537 0.4470264 0.4348222 -0.1409607 0.4470264 0.4348222 -0.1678172 0.4470264 0.4348222 -0.1950164 0.4470264 0.4348222 -0.2210581 0.4470264 0.4348222 -0.245636 0.4470264 0.4348222 -0.2686816 0.4470264 0.4348222 -0.2902431 0.4470264 0.4348222 -0.3104189 0.4470264 0.4348222 -0.3293248 0.4470264 0.4348222 -0.3470774 0.4470264 0.4348222 -0.3637862 0.4470264 0.4348222 -0.3795513 0.4470264 0.4348222 -0.3944623 0.4470264 0.4348222 -0.4085988 0.4470264 0.4348222 -0.4220313 0.4470264 0.4348222 -0.4348222 0.4470264 0.4348222 -0.4470264 0.4470264 0.4348222 -0.4586928 0.4470264 0.4348222 -0.4698649 0.4470264 0.4348222 -0.4805811 0.4470264 0.4348222 -0.490876 0.4470264 0.4348222 -0.5007803 0.4470264 0.4348222 -0.510322 0.4470264 0.4348222 -0.5195258 0.4470264 0.4348222 -0.5284142 0.4470264 0.4348222 -0.5370079 0.4470264 0.4348222 -0.5453253 0.4470264 0.4348222 -0.5533834 0.4470264 0.4348222 -0.5611974 0.4470264 0.4348222 -0.5687816 0.4470264 0.4348222 -0.092819 0.4586928 0.4348222 -0.1056428 0.4586928 0.4348222 -0.1201537 0.4586928 0.4348222 -0.1409607 0.4586928 0.4348222 -0.1678172 0.4586928 0.4348222 -0.1950164 0.4586928 0.4348222 -0.2210581 0.4586928 0.4348222 -0.245636 0.4586928 0.4348222 -0.2686816 0.4586928 0.4348222 -0.2902431 0.4586928 0.4348222 -0.3104189 0.4586928 0.4348222 -0.3293248 0.4586928 0.4348222 -0.3470774 0.4586928 0.4348222 -0.3637862 0.4586928 0.4348222 -0.3795513 0.4586928 0.4348222 -0.3944623 0.4586928 0.4348222 -0.4085988 0.4586928 0.4348222 -0.4220313 0.4586928 0.4348222 -0.4348222 0.4586928 0.4348222 -0.4470264 0.4586928 0.4348222 -0.4586928 0.4586928 0.4348222 -0.4698649 0.4586928 0.4348222 -0.4805811 0.4586928 0.4348222 -0.490876 0.4586928 0.4348222 -0.5007803 0.4586928 0.4348222 -0.510322 0.4586928 0.4348222 -0.5195258 0.4586928 0.4348222 -0.5284142 0.4586928 0.4348222 -0.5370079 0.4586928 0.4348222 -0.5453253 0.4586928 0.4348222 -0.5533834 0.4586928 0.4348222 -0.5611974 0.4586928 0.4348222 -0.5687816 0.4586928 0.4348222 -0.092819 0.4698649 0.4348222 -0.1056428 0.4698649 0.4348222 -0.1201537 0.4698649 0.4348222 -0.1409607 0.4698649 0.4348222 -0.1678172 0.4698649 0.4348222 -0.1950164 0.4698649 0.4348222 -0.2210581 0.4698649 0.4348222 -0.245636 0.4698649 0.4348222 -0.2686816 0.4698649 0.4348222 -0.2902431 0.4698649 0.4348222 -0.3104189 0.4698649 0.4348222 -0.3293248 0.4698649 0.4348222 -0.3470774 0.4698649 0.4348222 -0.3637862 0.4698649 0.4348222 -0.3795513 0.4698649 0.4348222 -0.3944623 0.4698649 0.4348222 -0.4085988 0.4698649 0.4348222 -0.4220313 0.4698649 0.4348222 -0.4348222 0.4698649 0.4348222 -0.4470264 0.4698649 0.4348222 -0.4586928 0.4698649 0.4348222 -0.4698649 0.4698649 0.4348222 -0.4805811 0.4698649 0.4348222 -0.490876 0.4698649 0.4348222 -0.5007803 0.4698649 0.4348222 -0.510322 0.4698649 0.4348222 -0.5195258 0.4698649 0.4348222 -0.5284142 0.4698649 0.4348222 -0.5370079 0.4698649 0.4348222 -0.5453253 0.4698649 0.4348222 -0.5533834 0.4698649 0.4348222 -0.5611974 0.4698649 0.4348222 -0.5687816 0.4698649 0.4348222 -0.092819 0.4805811 0.4348222 -0.1056428 0.4805811 0.4348222 -0.1201537 0.4805811 0.4348222 -0.1409607 0.4805811 0.4348222 -0.1678172 0.4805811 0.4348222 -0.1950164 0.4805811 0.4348222 -0.2210581 0.4805811 0.4348222 -0.245636 0.4805811 0.4348222 -0.2686816 0.4805811 0.4348222 -0.2902431 0.4805811 0.4348222 -0.3104189 0.4805811 0.4348222 -0.3293248 0.4805811 0.4348222 -0.3470774 0.4805811 0.4348222 -0.3637862 0.4805811 0.4348222 -0.3795513 0.4805811 0.4348222 -0.3944623 0.4805811 0.4348222 -0.4085988 0.4805811 0.4348222 -0.4220313 0.4805811 0.4348222 -0.4348222 0.4805811 0.4348222 -0.4470264 0.4805811 0.4348222 -0.4586928 0.4805811 0.4348222 -0.4698649 0.4805811 0.4348222 -0.4805811 0.4805811 0.4348222 -0.490876 0.4805811 0.4348222 -0.5007803 0.4805811 0.4348222 -0.510322 0.4805811 0.4348222 -0.5195258 0.4805811 0.4348222 -0.5284142 0.4805811 0.4348222 -0.5370079 0.4805811 0.4348222 -0.5453253 0.4805811 0.4348222 -0.5533834 0.4805811 0.4348222 -0.5611974 0.4805811 0.4348222 -0.5687816 0.4805811 0.4348222 -0.092819 0.490876 0.4348222 -0.1056428 0.490876 0.4348222 -0.1201537 0.490876 0.4348222 -0.1409607 0.490876 0.4348222 -0.1678172 0.490876 0.4348222 -0.1950164 0.490876 0.4348222 -0.2210581 0.490876 0.4348222 -0.245636 0.490876 0.4348222 -0.2686816 0.490876 0.4348222 -0.2902431 0.490876 0.4348222 -0.3104189 0.490876 0.4348222 -0.3293248 0.490876 0.4348222 -0.3470774 0.490876 0.4348222 -0.3637862 0.490876 0.4348222 -0.3795513 0.490876 0.4348222 -0.3944623 0.490876 0.4348222 -0.4085988 0.490876 0.4348222 -0.4220313 0.490876 0.4348222 -0.4348222 0.490876 0.4348222 -0.4470264 0.490876 0.4348222 -0.4586928 0.490876 0.4348222 -0.4698649 0.490876 0.4348222 -0.4805811 0.490876 0.4348222 -0.490876 0.490876 0.4348222 -0.5007803 0.490876 0.4348222 -0.510322 0.490876 0.4348222 -0.5195258 0.490876 0.4348222 -0.5284142 0.490876 0.4348222 -0.5370079 0.490876 0.4348222 -0.5453253 0.490876 0.4348222 -0.5533834 0.490876 0.4348222 -0.5611974 0.490876 0.4348222 -0.5687816 0.490876 0.4348222 -0.092819 0.5007803 0.4348222 -0.1056428 0.5007803 0.4348222 -0.1201537 0.5007803 0.4348222 -0.1409607 0.5007803 0.4348222 -0.1678172 0.5007803 0.4348222 -0.1950164 0.5007803 0.4348222 -0.2210581 0.5007803 0.4348222 -0.245636 0.5007803 0.4348222 -0.2686816 0.5007803 0.4348222 -0.2902431 0.5007803 0.4348222 -0.3104189 0.5007803 0.4348222 -0.3293248 0.5007803 0.4348222 -0.3470774 0.5007803 0.4348222 -0.3637862 0.5007803 0.4348222 -0.3795513 0.5007803 0.4348222 -0.3944623 0.5007803 0.4348222 -0.4085988 0.5007803 0.4348222 -0.4220313 0.5007803 0.4348222 -0.4348222 0.5007803 0.4348222 -0.4470264 0.5007803 0.4348222 -0.4586928 0.5007803 0.4348222 -0.4698649 0.5007803 0.4348222 -0.4805811 0.5007803 0.4348222 -0.490876 0.5007803 0.4348222 -0.5007803 0.5007803 0.4348222 -0.510322 0.5007803 0.4348222 -0.5195258 0.5007803 0.4348222 -0.5284142 0.5007803 0.4348222 -0.5370079 0.5007803 0.4348222 -0.5453253 0.5007803 0.4348222 -0.5533834 0.5007803 0.4348222 -0.5611974 0.5007803 0.4348222 -0.5687816 0.5007803 0.4348222 -0.092819 0.510322 0.4348222 -0.1056428 0.510322 0.4348222 -0.1201537 0.510322 0.4348222 -0.1409607 0.510322 0.4348222 -0.1678172 0.510322 0.4348222 -0.1950164 0.510322 0.4348222 -0.2210581 0.510322 0.4348222 -0.245636 0.510322 0.4348222 -0.2686816 0.510322 0.4348222 -0.2902431 0.510322 0.4348222 -0.3104189 0.510322 0.4348222 -0.3293248 0.510322 0.4348222 -0.3470774 0.510322 0.4348222 -0.3637862 0.510322 0.4348222 -0.3795513 0.510322 0.4348222 -0.3944623 0.510322 0.4348222 -0.4085988 0.510322 0.4348222 -0.4220313 0.510322 0.4348222 -0.4348222 0.510322 0.4348222 -0.4470264 0.510322 0.4348222 -0.4586928 0.510322 0.4348222 -0.4698649 0.510322 0.4348222 -0.4805811 0.510322 0.4348222 -0.490876 0.510322 0.4348222 -0.5007803 0.510322 0.4348222 -0.510322 0.510322 0.4348222 -0.5195258 0.510322 0.4348222 -0.5284142 0.510322 0.4348222 -0.5370079 0.510322 0.4348222 -0.5453253 0.510322 0.4348222 -0.5533834 0.510322 0.4348222 -0.5611974 0.510322 0.4348222 -0.5687816 0.510322 0.4348222 -0.092819 0.5195258 0.4348222 -0.1056428 0.5195258 0.4348222 -0.1201537 0.5195258 0.4348222 -0.1409607 0.5195258 0.4348222 -0.1678172 0.5195258 0.4348222 -0.1950164 0.5195258 0.4348222 -0.2210581 0.5195258 0.4348222 -0.245636 0.5195258 0.4348222 -0.2686816 0.5195258 0.4348222 -0.2902431 0.5195258 0.4348222 -0.3104189 0.5195258 0.4348222 -0.3293248 0.5195258 0.4348222 -0.3470774 0.5195258 0.4348222 -0.3637862 0.5195258 0.4348222 -0.3795513 0.5195258 0.4348222 -0.3944623 0.5195258 0.4348222 -0.4085988 0.5195258 0.4348222 -0.4220313 0.5195258 0.4348222 -0.4348222 0.5195258 0.4348222 -0.4470264 0.5195258 0.4348222 -0.4586928 0.5195258 0.4348222 -0.4698649 0.5195258 0.4348222 -0.4805811 0.5195258 0.4348222 -0.490876 0.5195258 0.4348222 -0.5007803 0.5195258 0.4348222 -0.510322 0.5195258 0.4348222 -0.5195258 0.5195258 0.4348222 -0.5284142 0.5195258 0.4348222 -0.5370079 0.5195258 0.4348222 -0.5453253 0.5195258 0.4348222 -0.5533834 0.5195258 0.4348222 -0.5611974 0.5195258 0.4348222 -0.5687816 0.5195258 0.4348222 -0.092819 0.5284142 0.4348222 -0.1056428 0.5284142 0.4348222 -0.1201537 0.5284142 0.4348222 -0.1409607 0.5284142 0.4348222 -0.1678172 0.5284142 0.4348222 -0.1950164 0.5284142 0.4348222 -0.2210581 0.5284142 0.4348222 -0.245636 0.5284142 0.4348222 -0.2686816 0.5284142 0.4348222 -0.2902431 0.5284142 0.4348222 -0.3104189 0.5284142 0.4348222 -0.3293248 0.5284142 0.4348222 -0.3470774 0.5284142 0.4348222 -0.3637862 0.5284142 0.4348222 -0.3795513 0.5284142 0.4348222 -0.3944623 0.5284142 0.4348222 -0.4085988 0.5284142 0.4348222 -0.4220313 0.5284142 0.4348222 -0.4348222 0.5284142 0.4348222 -0.4470264 0.5284142 0.4348222 -0.4586928 0.5284142 0.4348222 -0.4698649 0.5284142 0.4348222 -0.4805811 0.5284142 0.4348222 -0.490876 0.5284142 0.4348222 -0.5007803 0.5284142 0.4348222 -0.510322 0.5284142 0.4348222 -0.5195258 0.5284142 0.4348222 -0.5284142 0.5284142 0.4348222 -0.5370079 0.5284142 0.4348222 -0.5453253 0.5284142 0.4348222 -0.5533834 0.5284142 0.4348222 -0.5611974 0.5284142 0.4348222 -0.5687816 0.5284142 0.4348222 -0.092819 0.5370079 0.4348222 -0.1056428 0.5370079 0.4348222 -0.1201537 0.5370079 0.4348222 -0.1409607 0.5370079 0.4348222 -0.1678172 0.5370079 0.4348222 -0.1950164 0.5370079 0.4348222 -0.2210581 0.5370079 0.4348222 -0.245636 0.5370079 0.4348222 -0.2686816 0.5370079 0.4348222 -0.2902431 0.5370079 0.4348222 -0.3104189 0.5370079 0.4348222 -0.3293248 0.5370079 0.4348222 -0.3470774 0.5370079 0.4348222 -0.3637862 0.5370079 0.4348222 -0.3795513 0.5370079 0.4348222 -0.3944623 0.5370079 0.4348222 -0.4085988 0.5370079 0.4348222 -0.4220313 0.5370079 0.4348222 -0.4348222 0.5370079 0.4348222 -0.4470264 0.5370079 0.4348222 -0.4586928 0.5370079 0.4348222 -0.4698649 0.5370079 0.4348222 -0.4805811 0.5370079 0.4348222 -0.490876 0.5370079 0.4348222 -0.5007803 0.5370079 0.4348222 -0.510322 0.5370079 0.4348222 -0.5195258 0.5370079 0.4348222 -0.5284142 0.5370079 0.4348222 -0.5370079 0.5370079 0.4348222 -0.5453253 0.5370079 0.4348222 -0.5533834 0.5370079 0.4348222 -0.5611974 0.5370079 0.4348222 -0.5687816 0.5370079 0.4348222 -0.092819 0.5453253 0.4348222 -0.1056428 0.5453253 0.4348222 -0.1201537 0.5453253 0.4348222 -0.1409607 0.5453253 0.4348222 -0.1678172 0.5453253 0.4348222 -0.1950164 0.5453253 0.4348222 -0.2210581 0.5453253 0.4348222 -0.245636 0.5453253 0.4348222 -0.2686816 0.5453253 0.4348222 -0.2902431 0.5453253 0.4348222 -0.3104189 0.5453253 0.4348222 -0.3293248 0.5453253 0.4348222 -0.3470774 0.5453253 0.4348222 -0.3637862 0.5453253 0.4348222 -0.3795513 0.5453253 0.4348222 -0.3944623 0.5453253 0.4348222 -0.4085988 0.5453253 0.4348222 -0.4220313 0.5453253 0.4348222 -0.4348222 0.5453253 0.4348222 -0.4470264 0.5453253 0.4348222 -0.4586928 0.5453253 0.4348222 -0.4698649 0.5453253 0.4348222 -0.4805811 0.5453253 0.4348222 -0.490876 0.5453253 0.4348222 -0.5007803 0.5453253 0.4348222 -0.510322 0.5453253 0.4348222 -0.5195258 0.5453253 0.4348222 -0.5284142 0.5453253 0.4348222 -0.5370079 0.5453253 0.4348222 -0.5453253 0.5453253 0.4348222 -0.5533834 0.5453253 0.4348222 -0.5611974 0.5453253 0.4348222 -0.5687816 0.5453253 0.4348222 -0.092819 0.5533834 0.4348222 -0.1056428 0.5533834 0.4348222 -0.1201537 0.5533834 0.4348222 -0.1409607 0.5533834 0.4348222 -0.1678172 0.5533834 0.4348222 -0.1950164 0.5533834 0.4348222 -0.2210581 0.5533834 0.4348222 -0.245636 0.5533834 0.4348222 -0.2686816 0.5533834 0.4348222 -0.2902431 0.5533834 0.4348222 -0.3104189 0.5533834 0.4348222 -0.3293248 0.5533834 0.4348222 -0.3470774 0.5533834 0.4348222 -0.3637862 0.5533834 0.4348222 -0.3795513 0.5533834 0.4348222 -0.3944623 0.5533834 0.4348222 -0.4085988 0.5533834 0.4348222 -0.4220313 0.5533834 0.4348222 -0.4348222 0.5533834 0.4348222 -0.4470264 0.5533834 0.4348222 -0.4586928 0.5533834 0.4348222 -0.4698649 0.5533834 0.4348222 -0.4805811 0.5533834 0.4348222 -0.490876 0.5533834 0.4348222 -0.5007803 0.5533834 0.4348222 -0.510322 0.5533834 0.4348222 -0.5195258 0.5533834 0.4348222 -0.5284142 0.5533834 0.4348222 -0.5370079 0.5533834 0.4348222 -0.5453253 0.5533834 0.4348222 -0.5533834 0.5533834 0.4348222 -0.5611974 0.5533834 0.4348222 -0.5687816 0.5533834 0.4348222 -0.092819 0.5611974 0.4348222 -0.1056428 0.5611974 0.4348222 -0.1201537 0.5611974 0.4348222 -0.1409607 0.5611974 0.4348222 -0.1678172 0.5611974 0.4348222 -0.1950164 0.5611974 0.4348222 -0.2210581 0.5611974 0.4348222 -0.245636 0.5611974 0.4348222 -0.2686816 0.5611974 0.4348222 -0.2902431 0.5611974 0.4348222 -0.3104189 0.5611974 0.4348222 -0.3293248 0.5611974 0.4348222 -0.3470774 0.5611974 0.4348222 -0.3637862 0.5611974 0.4348222 -0.3795513 0.5611974 0.4348222 -0.3944623 0.5611974 0.4348222 -0.4085988 0.5611974 0.4348222 -0.4220313 0.5611974 0.4348222 -0.4348222 0.5611974 0.4348222 -0.4470264 0.5611974 0.4348222 -0.4586928 0.5611974 0.4348222 -0.4698649 0.5611974 0.4348222 -0.4805811 0.5611974 0.4348222 -0.490876 0.5611974 0.4348222 -0.5007803 0.5611974 0.4348222 -0.510322 0.5611974 0.4348222 -0.5195258 0.5611974 0.4348222 -0.5284142 0.5611974 0.4348222 -0.5370079 0.5611974 0.4348222 -0.5453253 0.5611974 0.4348222 -0.5533834 0.5611974 0.4348222 -0.5611974 0.5611974 0.4348222 -0.5687816 0.5611974 0.4348222 -0.092819 0.5687816 0.4348222 -0.1056428 0.5687816 0.4348222 -0.1201537 0.5687816 0.4348222 -0.1409607 0.5687816 0.4348222 -0.1678172 0.5687816 0.4348222 -0.1950164 0.5687816 0.4348222 -0.2210581 0.5687816 0.4348222 -0.245636 0.5687816 0.4348222 -0.2686816 0.5687816 0.4348222 -0.2902431 0.5687816 0.4348222 -0.3104189 0.5687816 0.4348222 -0.3293248 0.5687816 0.4348222 -0.3470774 0.5687816 0.4348222 -0.3637862 0.5687816 0.4348222 -0.3795513 0.5687816 0.4348222 -0.3944623 0.5687816 0.4348222 -0.4085988 0.5687816 0.4348222 -0.4220313 0.5687816 0.4348222 -0.4348222 0.5687816 0.4348222 -0.4470264 0.5687816 0.4348222 -0.4586928 0.5687816 0.4348222 -0.4698649 0.5687816 0.4348222 -0.4805811 0.5687816 0.4348222 -0.490876 0.5687816 0.4348222 -0.5007803 0.5687816 0.4348222 -0.510322 0.5687816 0.4348222 -0.5195258 0.5687816 0.4348222 -0.5284142 0.5687816 0.4348222 -0.5370079 0.5687816 0.4348222 -0.5453253 0.5687816 0.4348222 -0.5533834 0.5687816 0.4348222 -0.5611974 0.5687816 0.4348222 -0.5687816 0.5687816 0.4348222 -0.092819 0.092819 0.4470264 -0.1056428 0.092819 0.4470264 -0.1201537 0.092819 0.4470264 -0.1409607 0.092819 0.4470264 -0.1678172 0.092819 0.4470264 -0.1950164 0.092819 0.4470264 -0.2210581 0.092819 0.4470264 -0.245636 0.092819 0.4470264 -0.2686816 0.092819 0.4470264 -0.2902431 0.092819 0.4470264 -0.3104189 0.092819 0.4470264 -0.3293248 0.092819 0.4470264 -0.3470774 0.092819 0.4470264 -0.3637862 0.092819 0.4470264 -0.3795513 0.092819 0.4470264 -0.3944623 0.092819 0.4470264 -0.4085988 0.092819 0.4470264 -0.4220313 0.092819 0.4470264 -0.4348222 0.092819 0.4470264 -0.4470264 0.092819 0.4470264 -0.4586928 0.092819 0.4470264 -0.4698649 0.092819 0.4470264 -0.4805811 0.092819 0.4470264 -0.490876 0.092819 0.4470264 -0.5007803 0.092819 0.4470264 -0.510322 0.092819 0.4470264 -0.5195258 0.092819 0.4470264 -0.5284142 0.092819 0.4470264 -0.5370079 0.092819 0.4470264 -0.5453253 0.092819 0.4470264 -0.5533834 0.092819 0.4470264 -0.5611974 0.092819 0.4470264 -0.5687816 0.092819 0.4470264 -0.092819 0.1056428 0.4470264 -0.1056428 0.1056428 0.4470264 -0.1201537 0.1056428 0.4470264 -0.1409607 0.1056428 0.4470264 -0.1678172 0.1056428 0.4470264 -0.1950164 0.1056428 0.4470264 -0.2210581 0.1056428 0.4470264 -0.245636 0.1056428 0.4470264 -0.2686816 0.1056428 0.4470264 -0.2902431 0.1056428 0.4470264 -0.3104189 0.1056428 0.4470264 -0.3293248 0.1056428 0.4470264 -0.3470774 0.1056428 0.4470264 -0.3637862 0.1056428 0.4470264 -0.3795513 0.1056428 0.4470264 -0.3944623 0.1056428 0.4470264 -0.4085988 0.1056428 0.4470264 -0.4220313 0.1056428 0.4470264 -0.4348222 0.1056428 0.4470264 -0.4470264 0.1056428 0.4470264 -0.4586928 0.1056428 0.4470264 -0.4698649 0.1056428 0.4470264 -0.4805811 0.1056428 0.4470264 -0.490876 0.1056428 0.4470264 -0.5007803 0.1056428 0.4470264 -0.510322 0.1056428 0.4470264 -0.5195258 0.1056428 0.4470264 -0.5284142 0.1056428 0.4470264 -0.5370079 0.1056428 0.4470264 -0.5453253 0.1056428 0.4470264 -0.5533834 0.1056428 0.4470264 -0.5611974 0.1056428 0.4470264 -0.5687816 0.1056428 0.4470264 -0.092819 0.1201537 0.4470264 -0.1056428 0.1201537 0.4470264 -0.1201537 0.1201537 0.4470264 -0.1409607 0.1201537 0.4470264 -0.1678172 0.1201537 0.4470264 -0.1950164 0.1201537 0.4470264 -0.2210581 0.1201537 0.4470264 -0.245636 0.1201537 0.4470264 -0.2686816 0.1201537 0.4470264 -0.2902431 0.1201537 0.4470264 -0.3104189 0.1201537 0.4470264 -0.3293248 0.1201537 0.4470264 -0.3470774 0.1201537 0.4470264 -0.3637862 0.1201537 0.4470264 -0.3795513 0.1201537 0.4470264 -0.3944623 0.1201537 0.4470264 -0.4085988 0.1201537 0.4470264 -0.4220313 0.1201537 0.4470264 -0.4348222 0.1201537 0.4470264 -0.4470264 0.1201537 0.4470264 -0.4586928 0.1201537 0.4470264 -0.4698649 0.1201537 0.4470264 -0.4805811 0.1201537 0.4470264 -0.490876 0.1201537 0.4470264 -0.5007803 0.1201537 0.4470264 -0.510322 0.1201537 0.4470264 -0.5195258 0.1201537 0.4470264 -0.5284142 0.1201537 0.4470264 -0.5370079 0.1201537 0.4470264 -0.5453253 0.1201537 0.4470264 -0.5533834 0.1201537 0.4470264 -0.5611974 0.1201537 0.4470264 -0.5687816 0.1201537 0.4470264 -0.092819 0.1409607 0.4470264 -0.1056428 0.1409607 0.4470264 -0.1201537 0.1409607 0.4470264 -0.1409607 0.1409607 0.4470264 -0.1678172 0.1409607 0.4470264 -0.1950164 0.1409607 0.4470264 -0.2210581 0.1409607 0.4470264 -0.245636 0.1409607 0.4470264 -0.2686816 0.1409607 0.4470264 -0.2902431 0.1409607 0.4470264 -0.3104189 0.1409607 0.4470264 -0.3293248 0.1409607 0.4470264 -0.3470774 0.1409607 0.4470264 -0.3637862 0.1409607 0.4470264 -0.3795513 0.1409607 0.4470264 -0.3944623 0.1409607 0.4470264 -0.4085988 0.1409607 0.4470264 -0.4220313 0.1409607 0.4470264 -0.4348222 0.1409607 0.4470264 -0.4470264 0.1409607 0.4470264 -0.4586928 0.1409607 0.4470264 -0.4698649 0.1409607 0.4470264 -0.4805811 0.1409607 0.4470264 -0.490876 0.1409607 0.4470264 -0.5007803 0.1409607 0.4470264 -0.510322 0.1409607 0.4470264 -0.5195258 0.1409607 0.4470264 -0.5284142 0.1409607 0.4470264 -0.5370079 0.1409607 0.4470264 -0.5453253 0.1409607 0.4470264 -0.5533834 0.1409607 0.4470264 -0.5611974 0.1409607 0.4470264 -0.5687816 0.1409607 0.4470264 -0.092819 0.1678172 0.4470264 -0.1056428 0.1678172 0.4470264 -0.1201537 0.1678172 0.4470264 -0.1409607 0.1678172 0.4470264 -0.1678172 0.1678172 0.4470264 -0.1950164 0.1678172 0.4470264 -0.2210581 0.1678172 0.4470264 -0.245636 0.1678172 0.4470264 -0.2686816 0.1678172 0.4470264 -0.2902431 0.1678172 0.4470264 -0.3104189 0.1678172 0.4470264 -0.3293248 0.1678172 0.4470264 -0.3470774 0.1678172 0.4470264 -0.3637862 0.1678172 0.4470264 -0.3795513 0.1678172 0.4470264 -0.3944623 0.1678172 0.4470264 -0.4085988 0.1678172 0.4470264 -0.4220313 0.1678172 0.4470264 -0.4348222 0.1678172 0.4470264 -0.4470264 0.1678172 0.4470264 -0.4586928 0.1678172 0.4470264 -0.4698649 0.1678172 0.4470264 -0.4805811 0.1678172 0.4470264 -0.490876 0.1678172 0.4470264 -0.5007803 0.1678172 0.4470264 -0.510322 0.1678172 0.4470264 -0.5195258 0.1678172 0.4470264 -0.5284142 0.1678172 0.4470264 -0.5370079 0.1678172 0.4470264 -0.5453253 0.1678172 0.4470264 -0.5533834 0.1678172 0.4470264 -0.5611974 0.1678172 0.4470264 -0.5687816 0.1678172 0.4470264 -0.092819 0.1950164 0.4470264 -0.1056428 0.1950164 0.4470264 -0.1201537 0.1950164 0.4470264 -0.1409607 0.1950164 0.4470264 -0.1678172 0.1950164 0.4470264 -0.1950164 0.1950164 0.4470264 -0.2210581 0.1950164 0.4470264 -0.245636 0.1950164 0.4470264 -0.2686816 0.1950164 0.4470264 -0.2902431 0.1950164 0.4470264 -0.3104189 0.1950164 0.4470264 -0.3293248 0.1950164 0.4470264 -0.3470774 0.1950164 0.4470264 -0.3637862 0.1950164 0.4470264 -0.3795513 0.1950164 0.4470264 -0.3944623 0.1950164 0.4470264 -0.4085988 0.1950164 0.4470264 -0.4220313 0.1950164 0.4470264 -0.4348222 0.1950164 0.4470264 -0.4470264 0.1950164 0.4470264 -0.4586928 0.1950164 0.4470264 -0.4698649 0.1950164 0.4470264 -0.4805811 0.1950164 0.4470264 -0.490876 0.1950164 0.4470264 -0.5007803 0.1950164 0.4470264 -0.510322 0.1950164 0.4470264 -0.5195258 0.1950164 0.4470264 -0.5284142 0.1950164 0.4470264 -0.5370079 0.1950164 0.4470264 -0.5453253 0.1950164 0.4470264 -0.5533834 0.1950164 0.4470264 -0.5611974 0.1950164 0.4470264 -0.5687816 0.1950164 0.4470264 -0.092819 0.2210581 0.4470264 -0.1056428 0.2210581 0.4470264 -0.1201537 0.2210581 0.4470264 -0.1409607 0.2210581 0.4470264 -0.1678172 0.2210581 0.4470264 -0.1950164 0.2210581 0.4470264 -0.2210581 0.2210581 0.4470264 -0.245636 0.2210581 0.4470264 -0.2686816 0.2210581 0.4470264 -0.2902431 0.2210581 0.4470264 -0.3104189 0.2210581 0.4470264 -0.3293248 0.2210581 0.4470264 -0.3470774 0.2210581 0.4470264 -0.3637862 0.2210581 0.4470264 -0.3795513 0.2210581 0.4470264 -0.3944623 0.2210581 0.4470264 -0.4085988 0.2210581 0.4470264 -0.4220313 0.2210581 0.4470264 -0.4348222 0.2210581 0.4470264 -0.4470264 0.2210581 0.4470264 -0.4586928 0.2210581 0.4470264 -0.4698649 0.2210581 0.4470264 -0.4805811 0.2210581 0.4470264 -0.490876 0.2210581 0.4470264 -0.5007803 0.2210581 0.4470264 -0.510322 0.2210581 0.4470264 -0.5195258 0.2210581 0.4470264 -0.5284142 0.2210581 0.4470264 -0.5370079 0.2210581 0.4470264 -0.5453253 0.2210581 0.4470264 -0.5533834 0.2210581 0.4470264 -0.5611974 0.2210581 0.4470264 -0.5687816 0.2210581 0.4470264 -0.092819 0.245636 0.4470264 -0.1056428 0.245636 0.4470264 -0.1201537 0.245636 0.4470264 -0.1409607 0.245636 0.4470264 -0.1678172 0.245636 0.4470264 -0.1950164 0.245636 0.4470264 -0.2210581 0.245636 0.4470264 -0.245636 0.245636 0.4470264 -0.2686816 0.245636 0.4470264 -0.2902431 0.245636 0.4470264 -0.3104189 0.245636 0.4470264 -0.3293248 0.245636 0.4470264 -0.3470774 0.245636 0.4470264 -0.3637862 0.245636 0.4470264 -0.3795513 0.245636 0.4470264 -0.3944623 0.245636 0.4470264 -0.4085988 0.245636 0.4470264 -0.4220313 0.245636 0.4470264 -0.4348222 0.245636 0.4470264 -0.4470264 0.245636 0.4470264 -0.4586928 0.245636 0.4470264 -0.4698649 0.245636 0.4470264 -0.4805811 0.245636 0.4470264 -0.490876 0.245636 0.4470264 -0.5007803 0.245636 0.4470264 -0.510322 0.245636 0.4470264 -0.5195258 0.245636 0.4470264 -0.5284142 0.245636 0.4470264 -0.5370079 0.245636 0.4470264 -0.5453253 0.245636 0.4470264 -0.5533834 0.245636 0.4470264 -0.5611974 0.245636 0.4470264 -0.5687816 0.245636 0.4470264 -0.092819 0.2686816 0.4470264 -0.1056428 0.2686816 0.4470264 -0.1201537 0.2686816 0.4470264 -0.1409607 0.2686816 0.4470264 -0.1678172 0.2686816 0.4470264 -0.1950164 0.2686816 0.4470264 -0.2210581 0.2686816 0.4470264 -0.245636 0.2686816 0.4470264 -0.2686816 0.2686816 0.4470264 -0.2902431 0.2686816 0.4470264 -0.3104189 0.2686816 0.4470264 -0.3293248 0.2686816 0.4470264 -0.3470774 0.2686816 0.4470264 -0.3637862 0.2686816 0.4470264 -0.3795513 0.2686816 0.4470264 -0.3944623 0.2686816 0.4470264 -0.4085988 0.2686816 0.4470264 -0.4220313 0.2686816 0.4470264 -0.4348222 0.2686816 0.4470264 -0.4470264 0.2686816 0.4470264 -0.4586928 0.2686816 0.4470264 -0.4698649 0.2686816 0.4470264 -0.4805811 0.2686816 0.4470264 -0.490876 0.2686816 0.4470264 -0.5007803 0.2686816 0.4470264 -0.510322 0.2686816 0.4470264 -0.5195258 0.2686816 0.4470264 -0.5284142 0.2686816 0.4470264 -0.5370079 0.2686816 0.4470264 -0.5453253 0.2686816 0.4470264 -0.5533834 0.2686816 0.4470264 -0.5611974 0.2686816 0.4470264 -0.5687816 0.2686816 0.4470264 -0.092819 0.2902431 0.4470264 -0.1056428 0.2902431 0.4470264 -0.1201537 0.2902431 0.4470264 -0.1409607 0.2902431 0.4470264 -0.1678172 0.2902431 0.4470264 -0.1950164 0.2902431 0.4470264 -0.2210581 0.2902431 0.4470264 -0.245636 0.2902431 0.4470264 -0.2686816 0.2902431 0.4470264 -0.2902431 0.2902431 0.4470264 -0.3104189 0.2902431 0.4470264 -0.3293248 0.2902431 0.4470264 -0.3470774 0.2902431 0.4470264 -0.3637862 0.2902431 0.4470264 -0.3795513 0.2902431 0.4470264 -0.3944623 0.2902431 0.4470264 -0.4085988 0.2902431 0.4470264 -0.4220313 0.2902431 0.4470264 -0.4348222 0.2902431 0.4470264 -0.4470264 0.2902431 0.4470264 -0.4586928 0.2902431 0.4470264 -0.4698649 0.2902431 0.4470264 -0.4805811 0.2902431 0.4470264 -0.490876 0.2902431 0.4470264 -0.5007803 0.2902431 0.4470264 -0.510322 0.2902431 0.4470264 -0.5195258 0.2902431 0.4470264 -0.5284142 0.2902431 0.4470264 -0.5370079 0.2902431 0.4470264 -0.5453253 0.2902431 0.4470264 -0.5533834 0.2902431 0.4470264 -0.5611974 0.2902431 0.4470264 -0.5687816 0.2902431 0.4470264 -0.092819 0.3104189 0.4470264 -0.1056428 0.3104189 0.4470264 -0.1201537 0.3104189 0.4470264 -0.1409607 0.3104189 0.4470264 -0.1678172 0.3104189 0.4470264 -0.1950164 0.3104189 0.4470264 -0.2210581 0.3104189 0.4470264 -0.245636 0.3104189 0.4470264 -0.2686816 0.3104189 0.4470264 -0.2902431 0.3104189 0.4470264 -0.3104189 0.3104189 0.4470264 -0.3293248 0.3104189 0.4470264 -0.3470774 0.3104189 0.4470264 -0.3637862 0.3104189 0.4470264 -0.3795513 0.3104189 0.4470264 -0.3944623 0.3104189 0.4470264 -0.4085988 0.3104189 0.4470264 -0.4220313 0.3104189 0.4470264 -0.4348222 0.3104189 0.4470264 -0.4470264 0.3104189 0.4470264 -0.4586928 0.3104189 0.4470264 -0.4698649 0.3104189 0.4470264 -0.4805811 0.3104189 0.4470264 -0.490876 0.3104189 0.4470264 -0.5007803 0.3104189 0.4470264 -0.510322 0.3104189 0.4470264 -0.5195258 0.3104189 0.4470264 -0.5284142 0.3104189 0.4470264 -0.5370079 0.3104189 0.4470264 -0.5453253 0.3104189 0.4470264 -0.5533834 0.3104189 0.4470264 -0.5611974 0.3104189 0.4470264 -0.5687816 0.3104189 0.4470264 -0.092819 0.3293248 0.4470264 -0.1056428 0.3293248 0.4470264 -0.1201537 0.3293248 0.4470264 -0.1409607 0.3293248 0.4470264 -0.1678172 0.3293248 0.4470264 -0.1950164 0.3293248 0.4470264 -0.2210581 0.3293248 0.4470264 -0.245636 0.3293248 0.4470264 -0.2686816 0.3293248 0.4470264 -0.2902431 0.3293248 0.4470264 -0.3104189 0.3293248 0.4470264 -0.3293248 0.3293248 0.4470264 -0.3470774 0.3293248 0.4470264 -0.3637862 0.3293248 0.4470264 -0.3795513 0.3293248 0.4470264 -0.3944623 0.3293248 0.4470264 -0.4085988 0.3293248 0.4470264 -0.4220313 0.3293248 0.4470264 -0.4348222 0.3293248 0.4470264 -0.4470264 0.3293248 0.4470264 -0.4586928 0.3293248 0.4470264 -0.4698649 0.3293248 0.4470264 -0.4805811 0.3293248 0.4470264 -0.490876 0.3293248 0.4470264 -0.5007803 0.3293248 0.4470264 -0.510322 0.3293248 0.4470264 -0.5195258 0.3293248 0.4470264 -0.5284142 0.3293248 0.4470264 -0.5370079 0.3293248 0.4470264 -0.5453253 0.3293248 0.4470264 -0.5533834 0.3293248 0.4470264 -0.5611974 0.3293248 0.4470264 -0.5687816 0.3293248 0.4470264 -0.092819 0.3470774 0.4470264 -0.1056428 0.3470774 0.4470264 -0.1201537 0.3470774 0.4470264 -0.1409607 0.3470774 0.4470264 -0.1678172 0.3470774 0.4470264 -0.1950164 0.3470774 0.4470264 -0.2210581 0.3470774 0.4470264 -0.245636 0.3470774 0.4470264 -0.2686816 0.3470774 0.4470264 -0.2902431 0.3470774 0.4470264 -0.3104189 0.3470774 0.4470264 -0.3293248 0.3470774 0.4470264 -0.3470774 0.3470774 0.4470264 -0.3637862 0.3470774 0.4470264 -0.3795513 0.3470774 0.4470264 -0.3944623 0.3470774 0.4470264 -0.4085988 0.3470774 0.4470264 -0.4220313 0.3470774 0.4470264 -0.4348222 0.3470774 0.4470264 -0.4470264 0.3470774 0.4470264 -0.4586928 0.3470774 0.4470264 -0.4698649 0.3470774 0.4470264 -0.4805811 0.3470774 0.4470264 -0.490876 0.3470774 0.4470264 -0.5007803 0.3470774 0.4470264 -0.510322 0.3470774 0.4470264 -0.5195258 0.3470774 0.4470264 -0.5284142 0.3470774 0.4470264 -0.5370079 0.3470774 0.4470264 -0.5453253 0.3470774 0.4470264 -0.5533834 0.3470774 0.4470264 -0.5611974 0.3470774 0.4470264 -0.5687816 0.3470774 0.4470264 -0.092819 0.3637862 0.4470264 -0.1056428 0.3637862 0.4470264 -0.1201537 0.3637862 0.4470264 -0.1409607 0.3637862 0.4470264 -0.1678172 0.3637862 0.4470264 -0.1950164 0.3637862 0.4470264 -0.2210581 0.3637862 0.4470264 -0.245636 0.3637862 0.4470264 -0.2686816 0.3637862 0.4470264 -0.2902431 0.3637862 0.4470264 -0.3104189 0.3637862 0.4470264 -0.3293248 0.3637862 0.4470264 -0.3470774 0.3637862 0.4470264 -0.3637862 0.3637862 0.4470264 -0.3795513 0.3637862 0.4470264 -0.3944623 0.3637862 0.4470264 -0.4085988 0.3637862 0.4470264 -0.4220313 0.3637862 0.4470264 -0.4348222 0.3637862 0.4470264 -0.4470264 0.3637862 0.4470264 -0.4586928 0.3637862 0.4470264 -0.4698649 0.3637862 0.4470264 -0.4805811 0.3637862 0.4470264 -0.490876 0.3637862 0.4470264 -0.5007803 0.3637862 0.4470264 -0.510322 0.3637862 0.4470264 -0.5195258 0.3637862 0.4470264 -0.5284142 0.3637862 0.4470264 -0.5370079 0.3637862 0.4470264 -0.5453253 0.3637862 0.4470264 -0.5533834 0.3637862 0.4470264 -0.5611974 0.3637862 0.4470264 -0.5687816 0.3637862 0.4470264 -0.092819 0.3795513 0.4470264 -0.1056428 0.3795513 0.4470264 -0.1201537 0.3795513 0.4470264 -0.1409607 0.3795513 0.4470264 -0.1678172 0.3795513 0.4470264 -0.1950164 0.3795513 0.4470264 -0.2210581 0.3795513 0.4470264 -0.245636 0.3795513 0.4470264 -0.2686816 0.3795513 0.4470264 -0.2902431 0.3795513 0.4470264 -0.3104189 0.3795513 0.4470264 -0.3293248 0.3795513 0.4470264 -0.3470774 0.3795513 0.4470264 -0.3637862 0.3795513 0.4470264 -0.3795513 0.3795513 0.4470264 -0.3944623 0.3795513 0.4470264 -0.4085988 0.3795513 0.4470264 -0.4220313 0.3795513 0.4470264 -0.4348222 0.3795513 0.4470264 -0.4470264 0.3795513 0.4470264 -0.4586928 0.3795513 0.4470264 -0.4698649 0.3795513 0.4470264 -0.4805811 0.3795513 0.4470264 -0.490876 0.3795513 0.4470264 -0.5007803 0.3795513 0.4470264 -0.510322 0.3795513 0.4470264 -0.5195258 0.3795513 0.4470264 -0.5284142 0.3795513 0.4470264 -0.5370079 0.3795513 0.4470264 -0.5453253 0.3795513 0.4470264 -0.5533834 0.3795513 0.4470264 -0.5611974 0.3795513 0.4470264 -0.5687816 0.3795513 0.4470264 -0.092819 0.3944623 0.4470264 -0.1056428 0.3944623 0.4470264 -0.1201537 0.3944623 0.4470264 -0.1409607 0.3944623 0.4470264 -0.1678172 0.3944623 0.4470264 -0.1950164 0.3944623 0.4470264 -0.2210581 0.3944623 0.4470264 -0.245636 0.3944623 0.4470264 -0.2686816 0.3944623 0.4470264 -0.2902431 0.3944623 0.4470264 -0.3104189 0.3944623 0.4470264 -0.3293248 0.3944623 0.4470264 -0.3470774 0.3944623 0.4470264 -0.3637862 0.3944623 0.4470264 -0.3795513 0.3944623 0.4470264 -0.3944623 0.3944623 0.4470264 -0.4085988 0.3944623 0.4470264 -0.4220313 0.3944623 0.4470264 -0.4348222 0.3944623 0.4470264 -0.4470264 0.3944623 0.4470264 -0.4586928 0.3944623 0.4470264 -0.4698649 0.3944623 0.4470264 -0.4805811 0.3944623 0.4470264 -0.490876 0.3944623 0.4470264 -0.5007803 0.3944623 0.4470264 -0.510322 0.3944623 0.4470264 -0.5195258 0.3944623 0.4470264 -0.5284142 0.3944623 0.4470264 -0.5370079 0.3944623 0.4470264 -0.5453253 0.3944623 0.4470264 -0.5533834 0.3944623 0.4470264 -0.5611974 0.3944623 0.4470264 -0.5687816 0.3944623 0.4470264 -0.092819 0.4085988 0.4470264 -0.1056428 0.4085988 0.4470264 -0.1201537 0.4085988 0.4470264 -0.1409607 0.4085988 0.4470264 -0.1678172 0.4085988 0.4470264 -0.1950164 0.4085988 0.4470264 -0.2210581 0.4085988 0.4470264 -0.245636 0.4085988 0.4470264 -0.2686816 0.4085988 0.4470264 -0.2902431 0.4085988 0.4470264 -0.3104189 0.4085988 0.4470264 -0.3293248 0.4085988 0.4470264 -0.3470774 0.4085988 0.4470264 -0.3637862 0.4085988 0.4470264 -0.3795513 0.4085988 0.4470264 -0.3944623 0.4085988 0.4470264 -0.4085988 0.4085988 0.4470264 -0.4220313 0.4085988 0.4470264 -0.4348222 0.4085988 0.4470264 -0.4470264 0.4085988 0.4470264 -0.4586928 0.4085988 0.4470264 -0.4698649 0.4085988 0.4470264 -0.4805811 0.4085988 0.4470264 -0.490876 0.4085988 0.4470264 -0.5007803 0.4085988 0.4470264 -0.510322 0.4085988 0.4470264 -0.5195258 0.4085988 0.4470264 -0.5284142 0.4085988 0.4470264 -0.5370079 0.4085988 0.4470264 -0.5453253 0.4085988 0.4470264 -0.5533834 0.4085988 0.4470264 -0.5611974 0.4085988 0.4470264 -0.5687816 0.4085988 0.4470264 -0.092819 0.4220313 0.4470264 -0.1056428 0.4220313 0.4470264 -0.1201537 0.4220313 0.4470264 -0.1409607 0.4220313 0.4470264 -0.1678172 0.4220313 0.4470264 -0.1950164 0.4220313 0.4470264 -0.2210581 0.4220313 0.4470264 -0.245636 0.4220313 0.4470264 -0.2686816 0.4220313 0.4470264 -0.2902431 0.4220313 0.4470264 -0.3104189 0.4220313 0.4470264 -0.3293248 0.4220313 0.4470264 -0.3470774 0.4220313 0.4470264 -0.3637862 0.4220313 0.4470264 -0.3795513 0.4220313 0.4470264 -0.3944623 0.4220313 0.4470264 -0.4085988 0.4220313 0.4470264 -0.4220313 0.4220313 0.4470264 -0.4348222 0.4220313 0.4470264 -0.4470264 0.4220313 0.4470264 -0.4586928 0.4220313 0.4470264 -0.4698649 0.4220313 0.4470264 -0.4805811 0.4220313 0.4470264 -0.490876 0.4220313 0.4470264 -0.5007803 0.4220313 0.4470264 -0.510322 0.4220313 0.4470264 -0.5195258 0.4220313 0.4470264 -0.5284142 0.4220313 0.4470264 -0.5370079 0.4220313 0.4470264 -0.5453253 0.4220313 0.4470264 -0.5533834 0.4220313 0.4470264 -0.5611974 0.4220313 0.4470264 -0.5687816 0.4220313 0.4470264 -0.092819 0.4348222 0.4470264 -0.1056428 0.4348222 0.4470264 -0.1201537 0.4348222 0.4470264 -0.1409607 0.4348222 0.4470264 -0.1678172 0.4348222 0.4470264 -0.1950164 0.4348222 0.4470264 -0.2210581 0.4348222 0.4470264 -0.245636 0.4348222 0.4470264 -0.2686816 0.4348222 0.4470264 -0.2902431 0.4348222 0.4470264 -0.3104189 0.4348222 0.4470264 -0.3293248 0.4348222 0.4470264 -0.3470774 0.4348222 0.4470264 -0.3637862 0.4348222 0.4470264 -0.3795513 0.4348222 0.4470264 -0.3944623 0.4348222 0.4470264 -0.4085988 0.4348222 0.4470264 -0.4220313 0.4348222 0.4470264 -0.4348222 0.4348222 0.4470264 -0.4470264 0.4348222 0.4470264 -0.4586928 0.4348222 0.4470264 -0.4698649 0.4348222 0.4470264 -0.4805811 0.4348222 0.4470264 -0.490876 0.4348222 0.4470264 -0.5007803 0.4348222 0.4470264 -0.510322 0.4348222 0.4470264 -0.5195258 0.4348222 0.4470264 -0.5284142 0.4348222 0.4470264 -0.5370079 0.4348222 0.4470264 -0.5453253 0.4348222 0.4470264 -0.5533834 0.4348222 0.4470264 -0.5611974 0.4348222 0.4470264 -0.5687816 0.4348222 0.4470264 -0.092819 0.4470264 0.4470264 -0.1056428 0.4470264 0.4470264 -0.1201537 0.4470264 0.4470264 -0.1409607 0.4470264 0.4470264 -0.1678172 0.4470264 0.4470264 -0.1950164 0.4470264 0.4470264 -0.2210581 0.4470264 0.4470264 -0.245636 0.4470264 0.4470264 -0.2686816 0.4470264 0.4470264 -0.2902431 0.4470264 0.4470264 -0.3104189 0.4470264 0.4470264 -0.3293248 0.4470264 0.4470264 -0.3470774 0.4470264 0.4470264 -0.3637862 0.4470264 0.4470264 -0.3795513 0.4470264 0.4470264 -0.3944623 0.4470264 0.4470264 -0.4085988 0.4470264 0.4470264 -0.4220313 0.4470264 0.4470264 -0.4348222 0.4470264 0.4470264 -0.4470264 0.4470264 0.4470264 -0.4586928 0.4470264 0.4470264 -0.4698649 0.4470264 0.4470264 -0.4805811 0.4470264 0.4470264 -0.490876 0.4470264 0.4470264 -0.5007803 0.4470264 0.4470264 -0.510322 0.4470264 0.4470264 -0.5195258 0.4470264 0.4470264 -0.5284142 0.4470264 0.4470264 -0.5370079 0.4470264 0.4470264 -0.5453253 0.4470264 0.4470264 -0.5533834 0.4470264 0.4470264 -0.5611974 0.4470264 0.4470264 -0.5687816 0.4470264 0.4470264 -0.092819 0.4586928 0.4470264 -0.1056428 0.4586928 0.4470264 -0.1201537 0.4586928 0.4470264 -0.1409607 0.4586928 0.4470264 -0.1678172 0.4586928 0.4470264 -0.1950164 0.4586928 0.4470264 -0.2210581 0.4586928 0.4470264 -0.245636 0.4586928 0.4470264 -0.2686816 0.4586928 0.4470264 -0.2902431 0.4586928 0.4470264 -0.3104189 0.4586928 0.4470264 -0.3293248 0.4586928 0.4470264 -0.3470774 0.4586928 0.4470264 -0.3637862 0.4586928 0.4470264 -0.3795513 0.4586928 0.4470264 -0.3944623 0.4586928 0.4470264 -0.4085988 0.4586928 0.4470264 -0.4220313 0.4586928 0.4470264 -0.4348222 0.4586928 0.4470264 -0.4470264 0.4586928 0.4470264 -0.4586928 0.4586928 0.4470264 -0.4698649 0.4586928 0.4470264 -0.4805811 0.4586928 0.4470264 -0.490876 0.4586928 0.4470264 -0.5007803 0.4586928 0.4470264 -0.510322 0.4586928 0.4470264 -0.5195258 0.4586928 0.4470264 -0.5284142 0.4586928 0.4470264 -0.5370079 0.4586928 0.4470264 -0.5453253 0.4586928 0.4470264 -0.5533834 0.4586928 0.4470264 -0.5611974 0.4586928 0.4470264 -0.5687816 0.4586928 0.4470264 -0.092819 0.4698649 0.4470264 -0.1056428 0.4698649 0.4470264 -0.1201537 0.4698649 0.4470264 -0.1409607 0.4698649 0.4470264 -0.1678172 0.4698649 0.4470264 -0.1950164 0.4698649 0.4470264 -0.2210581 0.4698649 0.4470264 -0.245636 0.4698649 0.4470264 -0.2686816 0.4698649 0.4470264 -0.2902431 0.4698649 0.4470264 -0.3104189 0.4698649 0.4470264 -0.3293248 0.4698649 0.4470264 -0.3470774 0.4698649 0.4470264 -0.3637862 0.4698649 0.4470264 -0.3795513 0.4698649 0.4470264 -0.3944623 0.4698649 0.4470264 -0.4085988 0.4698649 0.4470264 -0.4220313 0.4698649 0.4470264 -0.4348222 0.4698649 0.4470264 -0.4470264 0.4698649 0.4470264 -0.4586928 0.4698649 0.4470264 -0.4698649 0.4698649 0.4470264 -0.4805811 0.4698649 0.4470264 -0.490876 0.4698649 0.4470264 -0.5007803 0.4698649 0.4470264 -0.510322 0.4698649 0.4470264 -0.5195258 0.4698649 0.4470264 -0.5284142 0.4698649 0.4470264 -0.5370079 0.4698649 0.4470264 -0.5453253 0.4698649 0.4470264 -0.5533834 0.4698649 0.4470264 -0.5611974 0.4698649 0.4470264 -0.5687816 0.4698649 0.4470264 -0.092819 0.4805811 0.4470264 -0.1056428 0.4805811 0.4470264 -0.1201537 0.4805811 0.4470264 -0.1409607 0.4805811 0.4470264 -0.1678172 0.4805811 0.4470264 -0.1950164 0.4805811 0.4470264 -0.2210581 0.4805811 0.4470264 -0.245636 0.4805811 0.4470264 -0.2686816 0.4805811 0.4470264 -0.2902431 0.4805811 0.4470264 -0.3104189 0.4805811 0.4470264 -0.3293248 0.4805811 0.4470264 -0.3470774 0.4805811 0.4470264 -0.3637862 0.4805811 0.4470264 -0.3795513 0.4805811 0.4470264 -0.3944623 0.4805811 0.4470264 -0.4085988 0.4805811 0.4470264 -0.4220313 0.4805811 0.4470264 -0.4348222 0.4805811 0.4470264 -0.4470264 0.4805811 0.4470264 -0.4586928 0.4805811 0.4470264 -0.4698649 0.4805811 0.4470264 -0.4805811 0.4805811 0.4470264 -0.490876 0.4805811 0.4470264 -0.5007803 0.4805811 0.4470264 -0.510322 0.4805811 0.4470264 -0.5195258 0.4805811 0.4470264 -0.5284142 0.4805811 0.4470264 -0.5370079 0.4805811 0.4470264 -0.5453253 0.4805811 0.4470264 -0.5533834 0.4805811 0.4470264 -0.5611974 0.4805811 0.4470264 -0.5687816 0.4805811 0.4470264 -0.092819 0.490876 0.4470264 -0.1056428 0.490876 0.4470264 -0.1201537 0.490876 0.4470264 -0.1409607 0.490876 0.4470264 -0.1678172 0.490876 0.4470264 -0.1950164 0.490876 0.4470264 -0.2210581 0.490876 0.4470264 -0.245636 0.490876 0.4470264 -0.2686816 0.490876 0.4470264 -0.2902431 0.490876 0.4470264 -0.3104189 0.490876 0.4470264 -0.3293248 0.490876 0.4470264 -0.3470774 0.490876 0.4470264 -0.3637862 0.490876 0.4470264 -0.3795513 0.490876 0.4470264 -0.3944623 0.490876 0.4470264 -0.4085988 0.490876 0.4470264 -0.4220313 0.490876 0.4470264 -0.4348222 0.490876 0.4470264 -0.4470264 0.490876 0.4470264 -0.4586928 0.490876 0.4470264 -0.4698649 0.490876 0.4470264 -0.4805811 0.490876 0.4470264 -0.490876 0.490876 0.4470264 -0.5007803 0.490876 0.4470264 -0.510322 0.490876 0.4470264 -0.5195258 0.490876 0.4470264 -0.5284142 0.490876 0.4470264 -0.5370079 0.490876 0.4470264 -0.5453253 0.490876 0.4470264 -0.5533834 0.490876 0.4470264 -0.5611974 0.490876 0.4470264 -0.5687816 0.490876 0.4470264 -0.092819 0.5007803 0.4470264 -0.1056428 0.5007803 0.4470264 -0.1201537 0.5007803 0.4470264 -0.1409607 0.5007803 0.4470264 -0.1678172 0.5007803 0.4470264 -0.1950164 0.5007803 0.4470264 -0.2210581 0.5007803 0.4470264 -0.245636 0.5007803 0.4470264 -0.2686816 0.5007803 0.4470264 -0.2902431 0.5007803 0.4470264 -0.3104189 0.5007803 0.4470264 -0.3293248 0.5007803 0.4470264 -0.3470774 0.5007803 0.4470264 -0.3637862 0.5007803 0.4470264 -0.3795513 0.5007803 0.4470264 -0.3944623 0.5007803 0.4470264 -0.4085988 0.5007803 0.4470264 -0.4220313 0.5007803 0.4470264 -0.4348222 0.5007803 0.4470264 -0.4470264 0.5007803 0.4470264 -0.4586928 0.5007803 0.4470264 -0.4698649 0.5007803 0.4470264 -0.4805811 0.5007803 0.4470264 -0.490876 0.5007803 0.4470264 -0.5007803 0.5007803 0.4470264 -0.510322 0.5007803 0.4470264 -0.5195258 0.5007803 0.4470264 -0.5284142 0.5007803 0.4470264 -0.5370079 0.5007803 0.4470264 -0.5453253 0.5007803 0.4470264 -0.5533834 0.5007803 0.4470264 -0.5611974 0.5007803 0.4470264 -0.5687816 0.5007803 0.4470264 -0.092819 0.510322 0.4470264 -0.1056428 0.510322 0.4470264 -0.1201537 0.510322 0.4470264 -0.1409607 0.510322 0.4470264 -0.1678172 0.510322 0.4470264 -0.1950164 0.510322 0.4470264 -0.2210581 0.510322 0.4470264 -0.245636 0.510322 0.4470264 -0.2686816 0.510322 0.4470264 -0.2902431 0.510322 0.4470264 -0.3104189 0.510322 0.4470264 -0.3293248 0.510322 0.4470264 -0.3470774 0.510322 0.4470264 -0.3637862 0.510322 0.4470264 -0.3795513 0.510322 0.4470264 -0.3944623 0.510322 0.4470264 -0.4085988 0.510322 0.4470264 -0.4220313 0.510322 0.4470264 -0.4348222 0.510322 0.4470264 -0.4470264 0.510322 0.4470264 -0.4586928 0.510322 0.4470264 -0.4698649 0.510322 0.4470264 -0.4805811 0.510322 0.4470264 -0.490876 0.510322 0.4470264 -0.5007803 0.510322 0.4470264 -0.510322 0.510322 0.4470264 -0.5195258 0.510322 0.4470264 -0.5284142 0.510322 0.4470264 -0.5370079 0.510322 0.4470264 -0.5453253 0.510322 0.4470264 -0.5533834 0.510322 0.4470264 -0.5611974 0.510322 0.4470264 -0.5687816 0.510322 0.4470264 -0.092819 0.5195258 0.4470264 -0.1056428 0.5195258 0.4470264 -0.1201537 0.5195258 0.4470264 -0.1409607 0.5195258 0.4470264 -0.1678172 0.5195258 0.4470264 -0.1950164 0.5195258 0.4470264 -0.2210581 0.5195258 0.4470264 -0.245636 0.5195258 0.4470264 -0.2686816 0.5195258 0.4470264 -0.2902431 0.5195258 0.4470264 -0.3104189 0.5195258 0.4470264 -0.3293248 0.5195258 0.4470264 -0.3470774 0.5195258 0.4470264 -0.3637862 0.5195258 0.4470264 -0.3795513 0.5195258 0.4470264 -0.3944623 0.5195258 0.4470264 -0.4085988 0.5195258 0.4470264 -0.4220313 0.5195258 0.4470264 -0.4348222 0.5195258 0.4470264 -0.4470264 0.5195258 0.4470264 -0.4586928 0.5195258 0.4470264 -0.4698649 0.5195258 0.4470264 -0.4805811 0.5195258 0.4470264 -0.490876 0.5195258 0.4470264 -0.5007803 0.5195258 0.4470264 -0.510322 0.5195258 0.4470264 -0.5195258 0.5195258 0.4470264 -0.5284142 0.5195258 0.4470264 -0.5370079 0.5195258 0.4470264 -0.5453253 0.5195258 0.4470264 -0.5533834 0.5195258 0.4470264 -0.5611974 0.5195258 0.4470264 -0.5687816 0.5195258 0.4470264 -0.092819 0.5284142 0.4470264 -0.1056428 0.5284142 0.4470264 -0.1201537 0.5284142 0.4470264 -0.1409607 0.5284142 0.4470264 -0.1678172 0.5284142 0.4470264 -0.1950164 0.5284142 0.4470264 -0.2210581 0.5284142 0.4470264 -0.245636 0.5284142 0.4470264 -0.2686816 0.5284142 0.4470264 -0.2902431 0.5284142 0.4470264 -0.3104189 0.5284142 0.4470264 -0.3293248 0.5284142 0.4470264 -0.3470774 0.5284142 0.4470264 -0.3637862 0.5284142 0.4470264 -0.3795513 0.5284142 0.4470264 -0.3944623 0.5284142 0.4470264 -0.4085988 0.5284142 0.4470264 -0.4220313 0.5284142 0.4470264 -0.4348222 0.5284142 0.4470264 -0.4470264 0.5284142 0.4470264 -0.4586928 0.5284142 0.4470264 -0.4698649 0.5284142 0.4470264 -0.4805811 0.5284142 0.4470264 -0.490876 0.5284142 0.4470264 -0.5007803 0.5284142 0.4470264 -0.510322 0.5284142 0.4470264 -0.5195258 0.5284142 0.4470264 -0.5284142 0.5284142 0.4470264 -0.5370079 0.5284142 0.4470264 -0.5453253 0.5284142 0.4470264 -0.5533834 0.5284142 0.4470264 -0.5611974 0.5284142 0.4470264 -0.5687816 0.5284142 0.4470264 -0.092819 0.5370079 0.4470264 -0.1056428 0.5370079 0.4470264 -0.1201537 0.5370079 0.4470264 -0.1409607 0.5370079 0.4470264 -0.1678172 0.5370079 0.4470264 -0.1950164 0.5370079 0.4470264 -0.2210581 0.5370079 0.4470264 -0.245636 0.5370079 0.4470264 -0.2686816 0.5370079 0.4470264 -0.2902431 0.5370079 0.4470264 -0.3104189 0.5370079 0.4470264 -0.3293248 0.5370079 0.4470264 -0.3470774 0.5370079 0.4470264 -0.3637862 0.5370079 0.4470264 -0.3795513 0.5370079 0.4470264 -0.3944623 0.5370079 0.4470264 -0.4085988 0.5370079 0.4470264 -0.4220313 0.5370079 0.4470264 -0.4348222 0.5370079 0.4470264 -0.4470264 0.5370079 0.4470264 -0.4586928 0.5370079 0.4470264 -0.4698649 0.5370079 0.4470264 -0.4805811 0.5370079 0.4470264 -0.490876 0.5370079 0.4470264 -0.5007803 0.5370079 0.4470264 -0.510322 0.5370079 0.4470264 -0.5195258 0.5370079 0.4470264 -0.5284142 0.5370079 0.4470264 -0.5370079 0.5370079 0.4470264 -0.5453253 0.5370079 0.4470264 -0.5533834 0.5370079 0.4470264 -0.5611974 0.5370079 0.4470264 -0.5687816 0.5370079 0.4470264 -0.092819 0.5453253 0.4470264 -0.1056428 0.5453253 0.4470264 -0.1201537 0.5453253 0.4470264 -0.1409607 0.5453253 0.4470264 -0.1678172 0.5453253 0.4470264 -0.1950164 0.5453253 0.4470264 -0.2210581 0.5453253 0.4470264 -0.245636 0.5453253 0.4470264 -0.2686816 0.5453253 0.4470264 -0.2902431 0.5453253 0.4470264 -0.3104189 0.5453253 0.4470264 -0.3293248 0.5453253 0.4470264 -0.3470774 0.5453253 0.4470264 -0.3637862 0.5453253 0.4470264 -0.3795513 0.5453253 0.4470264 -0.3944623 0.5453253 0.4470264 -0.4085988 0.5453253 0.4470264 -0.4220313 0.5453253 0.4470264 -0.4348222 0.5453253 0.4470264 -0.4470264 0.5453253 0.4470264 -0.4586928 0.5453253 0.4470264 -0.4698649 0.5453253 0.4470264 -0.4805811 0.5453253 0.4470264 -0.490876 0.5453253 0.4470264 -0.5007803 0.5453253 0.4470264 -0.510322 0.5453253 0.4470264 -0.5195258 0.5453253 0.4470264 -0.5284142 0.5453253 0.4470264 -0.5370079 0.5453253 0.4470264 -0.5453253 0.5453253 0.4470264 -0.5533834 0.5453253 0.4470264 -0.5611974 0.5453253 0.4470264 -0.5687816 0.5453253 0.4470264 -0.092819 0.5533834 0.4470264 -0.1056428 0.5533834 0.4470264 -0.1201537 0.5533834 0.4470264 -0.1409607 0.5533834 0.4470264 -0.1678172 0.5533834 0.4470264 -0.1950164 0.5533834 0.4470264 -0.2210581 0.5533834 0.4470264 -0.245636 0.5533834 0.4470264 -0.2686816 0.5533834 0.4470264 -0.2902431 0.5533834 0.4470264 -0.3104189 0.5533834 0.4470264 -0.3293248 0.5533834 0.4470264 -0.3470774 0.5533834 0.4470264 -0.3637862 0.5533834 0.4470264 -0.3795513 0.5533834 0.4470264 -0.3944623 0.5533834 0.4470264 -0.4085988 0.5533834 0.4470264 -0.4220313 0.5533834 0.4470264 -0.4348222 0.5533834 0.4470264 -0.4470264 0.5533834 0.4470264 -0.4586928 0.5533834 0.4470264 -0.4698649 0.5533834 0.4470264 -0.4805811 0.5533834 0.4470264 -0.490876 0.5533834 0.4470264 -0.5007803 0.5533834 0.4470264 -0.510322 0.5533834 0.4470264 -0.5195258 0.5533834 0.4470264 -0.5284142 0.5533834 0.4470264 -0.5370079 0.5533834 0.4470264 -0.5453253 0.5533834 0.4470264 -0.5533834 0.5533834 0.4470264 -0.5611974 0.5533834 0.4470264 -0.5687816 0.5533834 0.4470264 -0.092819 0.5611974 0.4470264 -0.1056428 0.5611974 0.4470264 -0.1201537 0.5611974 0.4470264 -0.1409607 0.5611974 0.4470264 -0.1678172 0.5611974 0.4470264 -0.1950164 0.5611974 0.4470264 -0.2210581 0.5611974 0.4470264 -0.245636 0.5611974 0.4470264 -0.2686816 0.5611974 0.4470264 -0.2902431 0.5611974 0.4470264 -0.3104189 0.5611974 0.4470264 -0.3293248 0.5611974 0.4470264 -0.3470774 0.5611974 0.4470264 -0.3637862 0.5611974 0.4470264 -0.3795513 0.5611974 0.4470264 -0.3944623 0.5611974 0.4470264 -0.4085988 0.5611974 0.4470264 -0.4220313 0.5611974 0.4470264 -0.4348222 0.5611974 0.4470264 -0.4470264 0.5611974 0.4470264 -0.4586928 0.5611974 0.4470264 -0.4698649 0.5611974 0.4470264 -0.4805811 0.5611974 0.4470264 -0.490876 0.5611974 0.4470264 -0.5007803 0.5611974 0.4470264 -0.510322 0.5611974 0.4470264 -0.5195258 0.5611974 0.4470264 -0.5284142 0.5611974 0.4470264 -0.5370079 0.5611974 0.4470264 -0.5453253 0.5611974 0.4470264 -0.5533834 0.5611974 0.4470264 -0.5611974 0.5611974 0.4470264 -0.5687816 0.5611974 0.4470264 -0.092819 0.5687816 0.4470264 -0.1056428 0.5687816 0.4470264 -0.1201537 0.5687816 0.4470264 -0.1409607 0.5687816 0.4470264 -0.1678172 0.5687816 0.4470264 -0.1950164 0.5687816 0.4470264 -0.2210581 0.5687816 0.4470264 -0.245636 0.5687816 0.4470264 -0.2686816 0.5687816 0.4470264 -0.2902431 0.5687816 0.4470264 -0.3104189 0.5687816 0.4470264 -0.3293248 0.5687816 0.4470264 -0.3470774 0.5687816 0.4470264 -0.3637862 0.5687816 0.4470264 -0.3795513 0.5687816 0.4470264 -0.3944623 0.5687816 0.4470264 -0.4085988 0.5687816 0.4470264 -0.4220313 0.5687816 0.4470264 -0.4348222 0.5687816 0.4470264 -0.4470264 0.5687816 0.4470264 -0.4586928 0.5687816 0.4470264 -0.4698649 0.5687816 0.4470264 -0.4805811 0.5687816 0.4470264 -0.490876 0.5687816 0.4470264 -0.5007803 0.5687816 0.4470264 -0.510322 0.5687816 0.4470264 -0.5195258 0.5687816 0.4470264 -0.5284142 0.5687816 0.4470264 -0.5370079 0.5687816 0.4470264 -0.5453253 0.5687816 0.4470264 -0.5533834 0.5687816 0.4470264 -0.5611974 0.5687816 0.4470264 -0.5687816 0.5687816 0.4470264 -0.092819 0.092819 0.4586928 -0.1056428 0.092819 0.4586928 -0.1201537 0.092819 0.4586928 -0.1409607 0.092819 0.4586928 -0.1678172 0.092819 0.4586928 -0.1950164 0.092819 0.4586928 -0.2210581 0.092819 0.4586928 -0.245636 0.092819 0.4586928 -0.2686816 0.092819 0.4586928 -0.2902431 0.092819 0.4586928 -0.3104189 0.092819 0.4586928 -0.3293248 0.092819 0.4586928 -0.3470774 0.092819 0.4586928 -0.3637862 0.092819 0.4586928 -0.3795513 0.092819 0.4586928 -0.3944623 0.092819 0.4586928 -0.4085988 0.092819 0.4586928 -0.4220313 0.092819 0.4586928 -0.4348222 0.092819 0.4586928 -0.4470264 0.092819 0.4586928 -0.4586928 0.092819 0.4586928 -0.4698649 0.092819 0.4586928 -0.4805811 0.092819 0.4586928 -0.490876 0.092819 0.4586928 -0.5007803 0.092819 0.4586928 -0.510322 0.092819 0.4586928 -0.5195258 0.092819 0.4586928 -0.5284142 0.092819 0.4586928 -0.5370079 0.092819 0.4586928 -0.5453253 0.092819 0.4586928 -0.5533834 0.092819 0.4586928 -0.5611974 0.092819 0.4586928 -0.5687816 0.092819 0.4586928 -0.092819 0.1056428 0.4586928 -0.1056428 0.1056428 0.4586928 -0.1201537 0.1056428 0.4586928 -0.1409607 0.1056428 0.4586928 -0.1678172 0.1056428 0.4586928 -0.1950164 0.1056428 0.4586928 -0.2210581 0.1056428 0.4586928 -0.245636 0.1056428 0.4586928 -0.2686816 0.1056428 0.4586928 -0.2902431 0.1056428 0.4586928 -0.3104189 0.1056428 0.4586928 -0.3293248 0.1056428 0.4586928 -0.3470774 0.1056428 0.4586928 -0.3637862 0.1056428 0.4586928 -0.3795513 0.1056428 0.4586928 -0.3944623 0.1056428 0.4586928 -0.4085988 0.1056428 0.4586928 -0.4220313 0.1056428 0.4586928 -0.4348222 0.1056428 0.4586928 -0.4470264 0.1056428 0.4586928 -0.4586928 0.1056428 0.4586928 -0.4698649 0.1056428 0.4586928 -0.4805811 0.1056428 0.4586928 -0.490876 0.1056428 0.4586928 -0.5007803 0.1056428 0.4586928 -0.510322 0.1056428 0.4586928 -0.5195258 0.1056428 0.4586928 -0.5284142 0.1056428 0.4586928 -0.5370079 0.1056428 0.4586928 -0.5453253 0.1056428 0.4586928 -0.5533834 0.1056428 0.4586928 -0.5611974 0.1056428 0.4586928 -0.5687816 0.1056428 0.4586928 -0.092819 0.1201537 0.4586928 -0.1056428 0.1201537 0.4586928 -0.1201537 0.1201537 0.4586928 -0.1409607 0.1201537 0.4586928 -0.1678172 0.1201537 0.4586928 -0.1950164 0.1201537 0.4586928 -0.2210581 0.1201537 0.4586928 -0.245636 0.1201537 0.4586928 -0.2686816 0.1201537 0.4586928 -0.2902431 0.1201537 0.4586928 -0.3104189 0.1201537 0.4586928 -0.3293248 0.1201537 0.4586928 -0.3470774 0.1201537 0.4586928 -0.3637862 0.1201537 0.4586928 -0.3795513 0.1201537 0.4586928 -0.3944623 0.1201537 0.4586928 -0.4085988 0.1201537 0.4586928 -0.4220313 0.1201537 0.4586928 -0.4348222 0.1201537 0.4586928 -0.4470264 0.1201537 0.4586928 -0.4586928 0.1201537 0.4586928 -0.4698649 0.1201537 0.4586928 -0.4805811 0.1201537 0.4586928 -0.490876 0.1201537 0.4586928 -0.5007803 0.1201537 0.4586928 -0.510322 0.1201537 0.4586928 -0.5195258 0.1201537 0.4586928 -0.5284142 0.1201537 0.4586928 -0.5370079 0.1201537 0.4586928 -0.5453253 0.1201537 0.4586928 -0.5533834 0.1201537 0.4586928 -0.5611974 0.1201537 0.4586928 -0.5687816 0.1201537 0.4586928 -0.092819 0.1409607 0.4586928 -0.1056428 0.1409607 0.4586928 -0.1201537 0.1409607 0.4586928 -0.1409607 0.1409607 0.4586928 -0.1678172 0.1409607 0.4586928 -0.1950164 0.1409607 0.4586928 -0.2210581 0.1409607 0.4586928 -0.245636 0.1409607 0.4586928 -0.2686816 0.1409607 0.4586928 -0.2902431 0.1409607 0.4586928 -0.3104189 0.1409607 0.4586928 -0.3293248 0.1409607 0.4586928 -0.3470774 0.1409607 0.4586928 -0.3637862 0.1409607 0.4586928 -0.3795513 0.1409607 0.4586928 -0.3944623 0.1409607 0.4586928 -0.4085988 0.1409607 0.4586928 -0.4220313 0.1409607 0.4586928 -0.4348222 0.1409607 0.4586928 -0.4470264 0.1409607 0.4586928 -0.4586928 0.1409607 0.4586928 -0.4698649 0.1409607 0.4586928 -0.4805811 0.1409607 0.4586928 -0.490876 0.1409607 0.4586928 -0.5007803 0.1409607 0.4586928 -0.510322 0.1409607 0.4586928 -0.5195258 0.1409607 0.4586928 -0.5284142 0.1409607 0.4586928 -0.5370079 0.1409607 0.4586928 -0.5453253 0.1409607 0.4586928 -0.5533834 0.1409607 0.4586928 -0.5611974 0.1409607 0.4586928 -0.5687816 0.1409607 0.4586928 -0.092819 0.1678172 0.4586928 -0.1056428 0.1678172 0.4586928 -0.1201537 0.1678172 0.4586928 -0.1409607 0.1678172 0.4586928 -0.1678172 0.1678172 0.4586928 -0.1950164 0.1678172 0.4586928 -0.2210581 0.1678172 0.4586928 -0.245636 0.1678172 0.4586928 -0.2686816 0.1678172 0.4586928 -0.2902431 0.1678172 0.4586928 -0.3104189 0.1678172 0.4586928 -0.3293248 0.1678172 0.4586928 -0.3470774 0.1678172 0.4586928 -0.3637862 0.1678172 0.4586928 -0.3795513 0.1678172 0.4586928 -0.3944623 0.1678172 0.4586928 -0.4085988 0.1678172 0.4586928 -0.4220313 0.1678172 0.4586928 -0.4348222 0.1678172 0.4586928 -0.4470264 0.1678172 0.4586928 -0.4586928 0.1678172 0.4586928 -0.4698649 0.1678172 0.4586928 -0.4805811 0.1678172 0.4586928 -0.490876 0.1678172 0.4586928 -0.5007803 0.1678172 0.4586928 -0.510322 0.1678172 0.4586928 -0.5195258 0.1678172 0.4586928 -0.5284142 0.1678172 0.4586928 -0.5370079 0.1678172 0.4586928 -0.5453253 0.1678172 0.4586928 -0.5533834 0.1678172 0.4586928 -0.5611974 0.1678172 0.4586928 -0.5687816 0.1678172 0.4586928 -0.092819 0.1950164 0.4586928 -0.1056428 0.1950164 0.4586928 -0.1201537 0.1950164 0.4586928 -0.1409607 0.1950164 0.4586928 -0.1678172 0.1950164 0.4586928 -0.1950164 0.1950164 0.4586928 -0.2210581 0.1950164 0.4586928 -0.245636 0.1950164 0.4586928 -0.2686816 0.1950164 0.4586928 -0.2902431 0.1950164 0.4586928 -0.3104189 0.1950164 0.4586928 -0.3293248 0.1950164 0.4586928 -0.3470774 0.1950164 0.4586928 -0.3637862 0.1950164 0.4586928 -0.3795513 0.1950164 0.4586928 -0.3944623 0.1950164 0.4586928 -0.4085988 0.1950164 0.4586928 -0.4220313 0.1950164 0.4586928 -0.4348222 0.1950164 0.4586928 -0.4470264 0.1950164 0.4586928 -0.4586928 0.1950164 0.4586928 -0.4698649 0.1950164 0.4586928 -0.4805811 0.1950164 0.4586928 -0.490876 0.1950164 0.4586928 -0.5007803 0.1950164 0.4586928 -0.510322 0.1950164 0.4586928 -0.5195258 0.1950164 0.4586928 -0.5284142 0.1950164 0.4586928 -0.5370079 0.1950164 0.4586928 -0.5453253 0.1950164 0.4586928 -0.5533834 0.1950164 0.4586928 -0.5611974 0.1950164 0.4586928 -0.5687816 0.1950164 0.4586928 -0.092819 0.2210581 0.4586928 -0.1056428 0.2210581 0.4586928 -0.1201537 0.2210581 0.4586928 -0.1409607 0.2210581 0.4586928 -0.1678172 0.2210581 0.4586928 -0.1950164 0.2210581 0.4586928 -0.2210581 0.2210581 0.4586928 -0.245636 0.2210581 0.4586928 -0.2686816 0.2210581 0.4586928 -0.2902431 0.2210581 0.4586928 -0.3104189 0.2210581 0.4586928 -0.3293248 0.2210581 0.4586928 -0.3470774 0.2210581 0.4586928 -0.3637862 0.2210581 0.4586928 -0.3795513 0.2210581 0.4586928 -0.3944623 0.2210581 0.4586928 -0.4085988 0.2210581 0.4586928 -0.4220313 0.2210581 0.4586928 -0.4348222 0.2210581 0.4586928 -0.4470264 0.2210581 0.4586928 -0.4586928 0.2210581 0.4586928 -0.4698649 0.2210581 0.4586928 -0.4805811 0.2210581 0.4586928 -0.490876 0.2210581 0.4586928 -0.5007803 0.2210581 0.4586928 -0.510322 0.2210581 0.4586928 -0.5195258 0.2210581 0.4586928 -0.5284142 0.2210581 0.4586928 -0.5370079 0.2210581 0.4586928 -0.5453253 0.2210581 0.4586928 -0.5533834 0.2210581 0.4586928 -0.5611974 0.2210581 0.4586928 -0.5687816 0.2210581 0.4586928 -0.092819 0.245636 0.4586928 -0.1056428 0.245636 0.4586928 -0.1201537 0.245636 0.4586928 -0.1409607 0.245636 0.4586928 -0.1678172 0.245636 0.4586928 -0.1950164 0.245636 0.4586928 -0.2210581 0.245636 0.4586928 -0.245636 0.245636 0.4586928 -0.2686816 0.245636 0.4586928 -0.2902431 0.245636 0.4586928 -0.3104189 0.245636 0.4586928 -0.3293248 0.245636 0.4586928 -0.3470774 0.245636 0.4586928 -0.3637862 0.245636 0.4586928 -0.3795513 0.245636 0.4586928 -0.3944623 0.245636 0.4586928 -0.4085988 0.245636 0.4586928 -0.4220313 0.245636 0.4586928 -0.4348222 0.245636 0.4586928 -0.4470264 0.245636 0.4586928 -0.4586928 0.245636 0.4586928 -0.4698649 0.245636 0.4586928 -0.4805811 0.245636 0.4586928 -0.490876 0.245636 0.4586928 -0.5007803 0.245636 0.4586928 -0.510322 0.245636 0.4586928 -0.5195258 0.245636 0.4586928 -0.5284142 0.245636 0.4586928 -0.5370079 0.245636 0.4586928 -0.5453253 0.245636 0.4586928 -0.5533834 0.245636 0.4586928 -0.5611974 0.245636 0.4586928 -0.5687816 0.245636 0.4586928 -0.092819 0.2686816 0.4586928 -0.1056428 0.2686816 0.4586928 -0.1201537 0.2686816 0.4586928 -0.1409607 0.2686816 0.4586928 -0.1678172 0.2686816 0.4586928 -0.1950164 0.2686816 0.4586928 -0.2210581 0.2686816 0.4586928 -0.245636 0.2686816 0.4586928 -0.2686816 0.2686816 0.4586928 -0.2902431 0.2686816 0.4586928 -0.3104189 0.2686816 0.4586928 -0.3293248 0.2686816 0.4586928 -0.3470774 0.2686816 0.4586928 -0.3637862 0.2686816 0.4586928 -0.3795513 0.2686816 0.4586928 -0.3944623 0.2686816 0.4586928 -0.4085988 0.2686816 0.4586928 -0.4220313 0.2686816 0.4586928 -0.4348222 0.2686816 0.4586928 -0.4470264 0.2686816 0.4586928 -0.4586928 0.2686816 0.4586928 -0.4698649 0.2686816 0.4586928 -0.4805811 0.2686816 0.4586928 -0.490876 0.2686816 0.4586928 -0.5007803 0.2686816 0.4586928 -0.510322 0.2686816 0.4586928 -0.5195258 0.2686816 0.4586928 -0.5284142 0.2686816 0.4586928 -0.5370079 0.2686816 0.4586928 -0.5453253 0.2686816 0.4586928 -0.5533834 0.2686816 0.4586928 -0.5611974 0.2686816 0.4586928 -0.5687816 0.2686816 0.4586928 -0.092819 0.2902431 0.4586928 -0.1056428 0.2902431 0.4586928 -0.1201537 0.2902431 0.4586928 -0.1409607 0.2902431 0.4586928 -0.1678172 0.2902431 0.4586928 -0.1950164 0.2902431 0.4586928 -0.2210581 0.2902431 0.4586928 -0.245636 0.2902431 0.4586928 -0.2686816 0.2902431 0.4586928 -0.2902431 0.2902431 0.4586928 -0.3104189 0.2902431 0.4586928 -0.3293248 0.2902431 0.4586928 -0.3470774 0.2902431 0.4586928 -0.3637862 0.2902431 0.4586928 -0.3795513 0.2902431 0.4586928 -0.3944623 0.2902431 0.4586928 -0.4085988 0.2902431 0.4586928 -0.4220313 0.2902431 0.4586928 -0.4348222 0.2902431 0.4586928 -0.4470264 0.2902431 0.4586928 -0.4586928 0.2902431 0.4586928 -0.4698649 0.2902431 0.4586928 -0.4805811 0.2902431 0.4586928 -0.490876 0.2902431 0.4586928 -0.5007803 0.2902431 0.4586928 -0.510322 0.2902431 0.4586928 -0.5195258 0.2902431 0.4586928 -0.5284142 0.2902431 0.4586928 -0.5370079 0.2902431 0.4586928 -0.5453253 0.2902431 0.4586928 -0.5533834 0.2902431 0.4586928 -0.5611974 0.2902431 0.4586928 -0.5687816 0.2902431 0.4586928 -0.092819 0.3104189 0.4586928 -0.1056428 0.3104189 0.4586928 -0.1201537 0.3104189 0.4586928 -0.1409607 0.3104189 0.4586928 -0.1678172 0.3104189 0.4586928 -0.1950164 0.3104189 0.4586928 -0.2210581 0.3104189 0.4586928 -0.245636 0.3104189 0.4586928 -0.2686816 0.3104189 0.4586928 -0.2902431 0.3104189 0.4586928 -0.3104189 0.3104189 0.4586928 -0.3293248 0.3104189 0.4586928 -0.3470774 0.3104189 0.4586928 -0.3637862 0.3104189 0.4586928 -0.3795513 0.3104189 0.4586928 -0.3944623 0.3104189 0.4586928 -0.4085988 0.3104189 0.4586928 -0.4220313 0.3104189 0.4586928 -0.4348222 0.3104189 0.4586928 -0.4470264 0.3104189 0.4586928 -0.4586928 0.3104189 0.4586928 -0.4698649 0.3104189 0.4586928 -0.4805811 0.3104189 0.4586928 -0.490876 0.3104189 0.4586928 -0.5007803 0.3104189 0.4586928 -0.510322 0.3104189 0.4586928 -0.5195258 0.3104189 0.4586928 -0.5284142 0.3104189 0.4586928 -0.5370079 0.3104189 0.4586928 -0.5453253 0.3104189 0.4586928 -0.5533834 0.3104189 0.4586928 -0.5611974 0.3104189 0.4586928 -0.5687816 0.3104189 0.4586928 -0.092819 0.3293248 0.4586928 -0.1056428 0.3293248 0.4586928 -0.1201537 0.3293248 0.4586928 -0.1409607 0.3293248 0.4586928 -0.1678172 0.3293248 0.4586928 -0.1950164 0.3293248 0.4586928 -0.2210581 0.3293248 0.4586928 -0.245636 0.3293248 0.4586928 -0.2686816 0.3293248 0.4586928 -0.2902431 0.3293248 0.4586928 -0.3104189 0.3293248 0.4586928 -0.3293248 0.3293248 0.4586928 -0.3470774 0.3293248 0.4586928 -0.3637862 0.3293248 0.4586928 -0.3795513 0.3293248 0.4586928 -0.3944623 0.3293248 0.4586928 -0.4085988 0.3293248 0.4586928 -0.4220313 0.3293248 0.4586928 -0.4348222 0.3293248 0.4586928 -0.4470264 0.3293248 0.4586928 -0.4586928 0.3293248 0.4586928 -0.4698649 0.3293248 0.4586928 -0.4805811 0.3293248 0.4586928 -0.490876 0.3293248 0.4586928 -0.5007803 0.3293248 0.4586928 -0.510322 0.3293248 0.4586928 -0.5195258 0.3293248 0.4586928 -0.5284142 0.3293248 0.4586928 -0.5370079 0.3293248 0.4586928 -0.5453253 0.3293248 0.4586928 -0.5533834 0.3293248 0.4586928 -0.5611974 0.3293248 0.4586928 -0.5687816 0.3293248 0.4586928 -0.092819 0.3470774 0.4586928 -0.1056428 0.3470774 0.4586928 -0.1201537 0.3470774 0.4586928 -0.1409607 0.3470774 0.4586928 -0.1678172 0.3470774 0.4586928 -0.1950164 0.3470774 0.4586928 -0.2210581 0.3470774 0.4586928 -0.245636 0.3470774 0.4586928 -0.2686816 0.3470774 0.4586928 -0.2902431 0.3470774 0.4586928 -0.3104189 0.3470774 0.4586928 -0.3293248 0.3470774 0.4586928 -0.3470774 0.3470774 0.4586928 -0.3637862 0.3470774 0.4586928 -0.3795513 0.3470774 0.4586928 -0.3944623 0.3470774 0.4586928 -0.4085988 0.3470774 0.4586928 -0.4220313 0.3470774 0.4586928 -0.4348222 0.3470774 0.4586928 -0.4470264 0.3470774 0.4586928 -0.4586928 0.3470774 0.4586928 -0.4698649 0.3470774 0.4586928 -0.4805811 0.3470774 0.4586928 -0.490876 0.3470774 0.4586928 -0.5007803 0.3470774 0.4586928 -0.510322 0.3470774 0.4586928 -0.5195258 0.3470774 0.4586928 -0.5284142 0.3470774 0.4586928 -0.5370079 0.3470774 0.4586928 -0.5453253 0.3470774 0.4586928 -0.5533834 0.3470774 0.4586928 -0.5611974 0.3470774 0.4586928 -0.5687816 0.3470774 0.4586928 -0.092819 0.3637862 0.4586928 -0.1056428 0.3637862 0.4586928 -0.1201537 0.3637862 0.4586928 -0.1409607 0.3637862 0.4586928 -0.1678172 0.3637862 0.4586928 -0.1950164 0.3637862 0.4586928 -0.2210581 0.3637862 0.4586928 -0.245636 0.3637862 0.4586928 -0.2686816 0.3637862 0.4586928 -0.2902431 0.3637862 0.4586928 -0.3104189 0.3637862 0.4586928 -0.3293248 0.3637862 0.4586928 -0.3470774 0.3637862 0.4586928 -0.3637862 0.3637862 0.4586928 -0.3795513 0.3637862 0.4586928 -0.3944623 0.3637862 0.4586928 -0.4085988 0.3637862 0.4586928 -0.4220313 0.3637862 0.4586928 -0.4348222 0.3637862 0.4586928 -0.4470264 0.3637862 0.4586928 -0.4586928 0.3637862 0.4586928 -0.4698649 0.3637862 0.4586928 -0.4805811 0.3637862 0.4586928 -0.490876 0.3637862 0.4586928 -0.5007803 0.3637862 0.4586928 -0.510322 0.3637862 0.4586928 -0.5195258 0.3637862 0.4586928 -0.5284142 0.3637862 0.4586928 -0.5370079 0.3637862 0.4586928 -0.5453253 0.3637862 0.4586928 -0.5533834 0.3637862 0.4586928 -0.5611974 0.3637862 0.4586928 -0.5687816 0.3637862 0.4586928 -0.092819 0.3795513 0.4586928 -0.1056428 0.3795513 0.4586928 -0.1201537 0.3795513 0.4586928 -0.1409607 0.3795513 0.4586928 -0.1678172 0.3795513 0.4586928 -0.1950164 0.3795513 0.4586928 -0.2210581 0.3795513 0.4586928 -0.245636 0.3795513 0.4586928 -0.2686816 0.3795513 0.4586928 -0.2902431 0.3795513 0.4586928 -0.3104189 0.3795513 0.4586928 -0.3293248 0.3795513 0.4586928 -0.3470774 0.3795513 0.4586928 -0.3637862 0.3795513 0.4586928 -0.3795513 0.3795513 0.4586928 -0.3944623 0.3795513 0.4586928 -0.4085988 0.3795513 0.4586928 -0.4220313 0.3795513 0.4586928 -0.4348222 0.3795513 0.4586928 -0.4470264 0.3795513 0.4586928 -0.4586928 0.3795513 0.4586928 -0.4698649 0.3795513 0.4586928 -0.4805811 0.3795513 0.4586928 -0.490876 0.3795513 0.4586928 -0.5007803 0.3795513 0.4586928 -0.510322 0.3795513 0.4586928 -0.5195258 0.3795513 0.4586928 -0.5284142 0.3795513 0.4586928 -0.5370079 0.3795513 0.4586928 -0.5453253 0.3795513 0.4586928 -0.5533834 0.3795513 0.4586928 -0.5611974 0.3795513 0.4586928 -0.5687816 0.3795513 0.4586928 -0.092819 0.3944623 0.4586928 -0.1056428 0.3944623 0.4586928 -0.1201537 0.3944623 0.4586928 -0.1409607 0.3944623 0.4586928 -0.1678172 0.3944623 0.4586928 -0.1950164 0.3944623 0.4586928 -0.2210581 0.3944623 0.4586928 -0.245636 0.3944623 0.4586928 -0.2686816 0.3944623 0.4586928 -0.2902431 0.3944623 0.4586928 -0.3104189 0.3944623 0.4586928 -0.3293248 0.3944623 0.4586928 -0.3470774 0.3944623 0.4586928 -0.3637862 0.3944623 0.4586928 -0.3795513 0.3944623 0.4586928 -0.3944623 0.3944623 0.4586928 -0.4085988 0.3944623 0.4586928 -0.4220313 0.3944623 0.4586928 -0.4348222 0.3944623 0.4586928 -0.4470264 0.3944623 0.4586928 -0.4586928 0.3944623 0.4586928 -0.4698649 0.3944623 0.4586928 -0.4805811 0.3944623 0.4586928 -0.490876 0.3944623 0.4586928 -0.5007803 0.3944623 0.4586928 -0.510322 0.3944623 0.4586928 -0.5195258 0.3944623 0.4586928 -0.5284142 0.3944623 0.4586928 -0.5370079 0.3944623 0.4586928 -0.5453253 0.3944623 0.4586928 -0.5533834 0.3944623 0.4586928 -0.5611974 0.3944623 0.4586928 -0.5687816 0.3944623 0.4586928 -0.092819 0.4085988 0.4586928 -0.1056428 0.4085988 0.4586928 -0.1201537 0.4085988 0.4586928 -0.1409607 0.4085988 0.4586928 -0.1678172 0.4085988 0.4586928 -0.1950164 0.4085988 0.4586928 -0.2210581 0.4085988 0.4586928 -0.245636 0.4085988 0.4586928 -0.2686816 0.4085988 0.4586928 -0.2902431 0.4085988 0.4586928 -0.3104189 0.4085988 0.4586928 -0.3293248 0.4085988 0.4586928 -0.3470774 0.4085988 0.4586928 -0.3637862 0.4085988 0.4586928 -0.3795513 0.4085988 0.4586928 -0.3944623 0.4085988 0.4586928 -0.4085988 0.4085988 0.4586928 -0.4220313 0.4085988 0.4586928 -0.4348222 0.4085988 0.4586928 -0.4470264 0.4085988 0.4586928 -0.4586928 0.4085988 0.4586928 -0.4698649 0.4085988 0.4586928 -0.4805811 0.4085988 0.4586928 -0.490876 0.4085988 0.4586928 -0.5007803 0.4085988 0.4586928 -0.510322 0.4085988 0.4586928 -0.5195258 0.4085988 0.4586928 -0.5284142 0.4085988 0.4586928 -0.5370079 0.4085988 0.4586928 -0.5453253 0.4085988 0.4586928 -0.5533834 0.4085988 0.4586928 -0.5611974 0.4085988 0.4586928 -0.5687816 0.4085988 0.4586928 -0.092819 0.4220313 0.4586928 -0.1056428 0.4220313 0.4586928 -0.1201537 0.4220313 0.4586928 -0.1409607 0.4220313 0.4586928 -0.1678172 0.4220313 0.4586928 -0.1950164 0.4220313 0.4586928 -0.2210581 0.4220313 0.4586928 -0.245636 0.4220313 0.4586928 -0.2686816 0.4220313 0.4586928 -0.2902431 0.4220313 0.4586928 -0.3104189 0.4220313 0.4586928 -0.3293248 0.4220313 0.4586928 -0.3470774 0.4220313 0.4586928 -0.3637862 0.4220313 0.4586928 -0.3795513 0.4220313 0.4586928 -0.3944623 0.4220313 0.4586928 -0.4085988 0.4220313 0.4586928 -0.4220313 0.4220313 0.4586928 -0.4348222 0.4220313 0.4586928 -0.4470264 0.4220313 0.4586928 -0.4586928 0.4220313 0.4586928 -0.4698649 0.4220313 0.4586928 -0.4805811 0.4220313 0.4586928 -0.490876 0.4220313 0.4586928 -0.5007803 0.4220313 0.4586928 -0.510322 0.4220313 0.4586928 -0.5195258 0.4220313 0.4586928 -0.5284142 0.4220313 0.4586928 -0.5370079 0.4220313 0.4586928 -0.5453253 0.4220313 0.4586928 -0.5533834 0.4220313 0.4586928 -0.5611974 0.4220313 0.4586928 -0.5687816 0.4220313 0.4586928 -0.092819 0.4348222 0.4586928 -0.1056428 0.4348222 0.4586928 -0.1201537 0.4348222 0.4586928 -0.1409607 0.4348222 0.4586928 -0.1678172 0.4348222 0.4586928 -0.1950164 0.4348222 0.4586928 -0.2210581 0.4348222 0.4586928 -0.245636 0.4348222 0.4586928 -0.2686816 0.4348222 0.4586928 -0.2902431 0.4348222 0.4586928 -0.3104189 0.4348222 0.4586928 -0.3293248 0.4348222 0.4586928 -0.3470774 0.4348222 0.4586928 -0.3637862 0.4348222 0.4586928 -0.3795513 0.4348222 0.4586928 -0.3944623 0.4348222 0.4586928 -0.4085988 0.4348222 0.4586928 -0.4220313 0.4348222 0.4586928 -0.4348222 0.4348222 0.4586928 -0.4470264 0.4348222 0.4586928 -0.4586928 0.4348222 0.4586928 -0.4698649 0.4348222 0.4586928 -0.4805811 0.4348222 0.4586928 -0.490876 0.4348222 0.4586928 -0.5007803 0.4348222 0.4586928 -0.510322 0.4348222 0.4586928 -0.5195258 0.4348222 0.4586928 -0.5284142 0.4348222 0.4586928 -0.5370079 0.4348222 0.4586928 -0.5453253 0.4348222 0.4586928 -0.5533834 0.4348222 0.4586928 -0.5611974 0.4348222 0.4586928 -0.5687816 0.4348222 0.4586928 -0.092819 0.4470264 0.4586928 -0.1056428 0.4470264 0.4586928 -0.1201537 0.4470264 0.4586928 -0.1409607 0.4470264 0.4586928 -0.1678172 0.4470264 0.4586928 -0.1950164 0.4470264 0.4586928 -0.2210581 0.4470264 0.4586928 -0.245636 0.4470264 0.4586928 -0.2686816 0.4470264 0.4586928 -0.2902431 0.4470264 0.4586928 -0.3104189 0.4470264 0.4586928 -0.3293248 0.4470264 0.4586928 -0.3470774 0.4470264 0.4586928 -0.3637862 0.4470264 0.4586928 -0.3795513 0.4470264 0.4586928 -0.3944623 0.4470264 0.4586928 -0.4085988 0.4470264 0.4586928 -0.4220313 0.4470264 0.4586928 -0.4348222 0.4470264 0.4586928 -0.4470264 0.4470264 0.4586928 -0.4586928 0.4470264 0.4586928 -0.4698649 0.4470264 0.4586928 -0.4805811 0.4470264 0.4586928 -0.490876 0.4470264 0.4586928 -0.5007803 0.4470264 0.4586928 -0.510322 0.4470264 0.4586928 -0.5195258 0.4470264 0.4586928 -0.5284142 0.4470264 0.4586928 -0.5370079 0.4470264 0.4586928 -0.5453253 0.4470264 0.4586928 -0.5533834 0.4470264 0.4586928 -0.5611974 0.4470264 0.4586928 -0.5687816 0.4470264 0.4586928 -0.092819 0.4586928 0.4586928 -0.1056428 0.4586928 0.4586928 -0.1201537 0.4586928 0.4586928 -0.1409607 0.4586928 0.4586928 -0.1678172 0.4586928 0.4586928 -0.1950164 0.4586928 0.4586928 -0.2210581 0.4586928 0.4586928 -0.245636 0.4586928 0.4586928 -0.2686816 0.4586928 0.4586928 -0.2902431 0.4586928 0.4586928 -0.3104189 0.4586928 0.4586928 -0.3293248 0.4586928 0.4586928 -0.3470774 0.4586928 0.4586928 -0.3637862 0.4586928 0.4586928 -0.3795513 0.4586928 0.4586928 -0.3944623 0.4586928 0.4586928 -0.4085988 0.4586928 0.4586928 -0.4220313 0.4586928 0.4586928 -0.4348222 0.4586928 0.4586928 -0.4470264 0.4586928 0.4586928 -0.4586928 0.4586928 0.4586928 -0.4698649 0.4586928 0.4586928 -0.4805811 0.4586928 0.4586928 -0.490876 0.4586928 0.4586928 -0.5007803 0.4586928 0.4586928 -0.510322 0.4586928 0.4586928 -0.5195258 0.4586928 0.4586928 -0.5284142 0.4586928 0.4586928 -0.5370079 0.4586928 0.4586928 -0.5453253 0.4586928 0.4586928 -0.5533834 0.4586928 0.4586928 -0.5611974 0.4586928 0.4586928 -0.5687816 0.4586928 0.4586928 -0.092819 0.4698649 0.4586928 -0.1056428 0.4698649 0.4586928 -0.1201537 0.4698649 0.4586928 -0.1409607 0.4698649 0.4586928 -0.1678172 0.4698649 0.4586928 -0.1950164 0.4698649 0.4586928 -0.2210581 0.4698649 0.4586928 -0.245636 0.4698649 0.4586928 -0.2686816 0.4698649 0.4586928 -0.2902431 0.4698649 0.4586928 -0.3104189 0.4698649 0.4586928 -0.3293248 0.4698649 0.4586928 -0.3470774 0.4698649 0.4586928 -0.3637862 0.4698649 0.4586928 -0.3795513 0.4698649 0.4586928 -0.3944623 0.4698649 0.4586928 -0.4085988 0.4698649 0.4586928 -0.4220313 0.4698649 0.4586928 -0.4348222 0.4698649 0.4586928 -0.4470264 0.4698649 0.4586928 -0.4586928 0.4698649 0.4586928 -0.4698649 0.4698649 0.4586928 -0.4805811 0.4698649 0.4586928 -0.490876 0.4698649 0.4586928 -0.5007803 0.4698649 0.4586928 -0.510322 0.4698649 0.4586928 -0.5195258 0.4698649 0.4586928 -0.5284142 0.4698649 0.4586928 -0.5370079 0.4698649 0.4586928 -0.5453253 0.4698649 0.4586928 -0.5533834 0.4698649 0.4586928 -0.5611974 0.4698649 0.4586928 -0.5687816 0.4698649 0.4586928 -0.092819 0.4805811 0.4586928 -0.1056428 0.4805811 0.4586928 -0.1201537 0.4805811 0.4586928 -0.1409607 0.4805811 0.4586928 -0.1678172 0.4805811 0.4586928 -0.1950164 0.4805811 0.4586928 -0.2210581 0.4805811 0.4586928 -0.245636 0.4805811 0.4586928 -0.2686816 0.4805811 0.4586928 -0.2902431 0.4805811 0.4586928 -0.3104189 0.4805811 0.4586928 -0.3293248 0.4805811 0.4586928 -0.3470774 0.4805811 0.4586928 -0.3637862 0.4805811 0.4586928 -0.3795513 0.4805811 0.4586928 -0.3944623 0.4805811 0.4586928 -0.4085988 0.4805811 0.4586928 -0.4220313 0.4805811 0.4586928 -0.4348222 0.4805811 0.4586928 -0.4470264 0.4805811 0.4586928 -0.4586928 0.4805811 0.4586928 -0.4698649 0.4805811 0.4586928 -0.4805811 0.4805811 0.4586928 -0.490876 0.4805811 0.4586928 -0.5007803 0.4805811 0.4586928 -0.510322 0.4805811 0.4586928 -0.5195258 0.4805811 0.4586928 -0.5284142 0.4805811 0.4586928 -0.5370079 0.4805811 0.4586928 -0.5453253 0.4805811 0.4586928 -0.5533834 0.4805811 0.4586928 -0.5611974 0.4805811 0.4586928 -0.5687816 0.4805811 0.4586928 -0.092819 0.490876 0.4586928 -0.1056428 0.490876 0.4586928 -0.1201537 0.490876 0.4586928 -0.1409607 0.490876 0.4586928 -0.1678172 0.490876 0.4586928 -0.1950164 0.490876 0.4586928 -0.2210581 0.490876 0.4586928 -0.245636 0.490876 0.4586928 -0.2686816 0.490876 0.4586928 -0.2902431 0.490876 0.4586928 -0.3104189 0.490876 0.4586928 -0.3293248 0.490876 0.4586928 -0.3470774 0.490876 0.4586928 -0.3637862 0.490876 0.4586928 -0.3795513 0.490876 0.4586928 -0.3944623 0.490876 0.4586928 -0.4085988 0.490876 0.4586928 -0.4220313 0.490876 0.4586928 -0.4348222 0.490876 0.4586928 -0.4470264 0.490876 0.4586928 -0.4586928 0.490876 0.4586928 -0.4698649 0.490876 0.4586928 -0.4805811 0.490876 0.4586928 -0.490876 0.490876 0.4586928 -0.5007803 0.490876 0.4586928 -0.510322 0.490876 0.4586928 -0.5195258 0.490876 0.4586928 -0.5284142 0.490876 0.4586928 -0.5370079 0.490876 0.4586928 -0.5453253 0.490876 0.4586928 -0.5533834 0.490876 0.4586928 -0.5611974 0.490876 0.4586928 -0.5687816 0.490876 0.4586928 -0.092819 0.5007803 0.4586928 -0.1056428 0.5007803 0.4586928 -0.1201537 0.5007803 0.4586928 -0.1409607 0.5007803 0.4586928 -0.1678172 0.5007803 0.4586928 -0.1950164 0.5007803 0.4586928 -0.2210581 0.5007803 0.4586928 -0.245636 0.5007803 0.4586928 -0.2686816 0.5007803 0.4586928 -0.2902431 0.5007803 0.4586928 -0.3104189 0.5007803 0.4586928 -0.3293248 0.5007803 0.4586928 -0.3470774 0.5007803 0.4586928 -0.3637862 0.5007803 0.4586928 -0.3795513 0.5007803 0.4586928 -0.3944623 0.5007803 0.4586928 -0.4085988 0.5007803 0.4586928 -0.4220313 0.5007803 0.4586928 -0.4348222 0.5007803 0.4586928 -0.4470264 0.5007803 0.4586928 -0.4586928 0.5007803 0.4586928 -0.4698649 0.5007803 0.4586928 -0.4805811 0.5007803 0.4586928 -0.490876 0.5007803 0.4586928 -0.5007803 0.5007803 0.4586928 -0.510322 0.5007803 0.4586928 -0.5195258 0.5007803 0.4586928 -0.5284142 0.5007803 0.4586928 -0.5370079 0.5007803 0.4586928 -0.5453253 0.5007803 0.4586928 -0.5533834 0.5007803 0.4586928 -0.5611974 0.5007803 0.4586928 -0.5687816 0.5007803 0.4586928 -0.092819 0.510322 0.4586928 -0.1056428 0.510322 0.4586928 -0.1201537 0.510322 0.4586928 -0.1409607 0.510322 0.4586928 -0.1678172 0.510322 0.4586928 -0.1950164 0.510322 0.4586928 -0.2210581 0.510322 0.4586928 -0.245636 0.510322 0.4586928 -0.2686816 0.510322 0.4586928 -0.2902431 0.510322 0.4586928 -0.3104189 0.510322 0.4586928 -0.3293248 0.510322 0.4586928 -0.3470774 0.510322 0.4586928 -0.3637862 0.510322 0.4586928 -0.3795513 0.510322 0.4586928 -0.3944623 0.510322 0.4586928 -0.4085988 0.510322 0.4586928 -0.4220313 0.510322 0.4586928 -0.4348222 0.510322 0.4586928 -0.4470264 0.510322 0.4586928 -0.4586928 0.510322 0.4586928 -0.4698649 0.510322 0.4586928 -0.4805811 0.510322 0.4586928 -0.490876 0.510322 0.4586928 -0.5007803 0.510322 0.4586928 -0.510322 0.510322 0.4586928 -0.5195258 0.510322 0.4586928 -0.5284142 0.510322 0.4586928 -0.5370079 0.510322 0.4586928 -0.5453253 0.510322 0.4586928 -0.5533834 0.510322 0.4586928 -0.5611974 0.510322 0.4586928 -0.5687816 0.510322 0.4586928 -0.092819 0.5195258 0.4586928 -0.1056428 0.5195258 0.4586928 -0.1201537 0.5195258 0.4586928 -0.1409607 0.5195258 0.4586928 -0.1678172 0.5195258 0.4586928 -0.1950164 0.5195258 0.4586928 -0.2210581 0.5195258 0.4586928 -0.245636 0.5195258 0.4586928 -0.2686816 0.5195258 0.4586928 -0.2902431 0.5195258 0.4586928 -0.3104189 0.5195258 0.4586928 -0.3293248 0.5195258 0.4586928 -0.3470774 0.5195258 0.4586928 -0.3637862 0.5195258 0.4586928 -0.3795513 0.5195258 0.4586928 -0.3944623 0.5195258 0.4586928 -0.4085988 0.5195258 0.4586928 -0.4220313 0.5195258 0.4586928 -0.4348222 0.5195258 0.4586928 -0.4470264 0.5195258 0.4586928 -0.4586928 0.5195258 0.4586928 -0.4698649 0.5195258 0.4586928 -0.4805811 0.5195258 0.4586928 -0.490876 0.5195258 0.4586928 -0.5007803 0.5195258 0.4586928 -0.510322 0.5195258 0.4586928 -0.5195258 0.5195258 0.4586928 -0.5284142 0.5195258 0.4586928 -0.5370079 0.5195258 0.4586928 -0.5453253 0.5195258 0.4586928 -0.5533834 0.5195258 0.4586928 -0.5611974 0.5195258 0.4586928 -0.5687816 0.5195258 0.4586928 -0.092819 0.5284142 0.4586928 -0.1056428 0.5284142 0.4586928 -0.1201537 0.5284142 0.4586928 -0.1409607 0.5284142 0.4586928 -0.1678172 0.5284142 0.4586928 -0.1950164 0.5284142 0.4586928 -0.2210581 0.5284142 0.4586928 -0.245636 0.5284142 0.4586928 -0.2686816 0.5284142 0.4586928 -0.2902431 0.5284142 0.4586928 -0.3104189 0.5284142 0.4586928 -0.3293248 0.5284142 0.4586928 -0.3470774 0.5284142 0.4586928 -0.3637862 0.5284142 0.4586928 -0.3795513 0.5284142 0.4586928 -0.3944623 0.5284142 0.4586928 -0.4085988 0.5284142 0.4586928 -0.4220313 0.5284142 0.4586928 -0.4348222 0.5284142 0.4586928 -0.4470264 0.5284142 0.4586928 -0.4586928 0.5284142 0.4586928 -0.4698649 0.5284142 0.4586928 -0.4805811 0.5284142 0.4586928 -0.490876 0.5284142 0.4586928 -0.5007803 0.5284142 0.4586928 -0.510322 0.5284142 0.4586928 -0.5195258 0.5284142 0.4586928 -0.5284142 0.5284142 0.4586928 -0.5370079 0.5284142 0.4586928 -0.5453253 0.5284142 0.4586928 -0.5533834 0.5284142 0.4586928 -0.5611974 0.5284142 0.4586928 -0.5687816 0.5284142 0.4586928 -0.092819 0.5370079 0.4586928 -0.1056428 0.5370079 0.4586928 -0.1201537 0.5370079 0.4586928 -0.1409607 0.5370079 0.4586928 -0.1678172 0.5370079 0.4586928 -0.1950164 0.5370079 0.4586928 -0.2210581 0.5370079 0.4586928 -0.245636 0.5370079 0.4586928 -0.2686816 0.5370079 0.4586928 -0.2902431 0.5370079 0.4586928 -0.3104189 0.5370079 0.4586928 -0.3293248 0.5370079 0.4586928 -0.3470774 0.5370079 0.4586928 -0.3637862 0.5370079 0.4586928 -0.3795513 0.5370079 0.4586928 -0.3944623 0.5370079 0.4586928 -0.4085988 0.5370079 0.4586928 -0.4220313 0.5370079 0.4586928 -0.4348222 0.5370079 0.4586928 -0.4470264 0.5370079 0.4586928 -0.4586928 0.5370079 0.4586928 -0.4698649 0.5370079 0.4586928 -0.4805811 0.5370079 0.4586928 -0.490876 0.5370079 0.4586928 -0.5007803 0.5370079 0.4586928 -0.510322 0.5370079 0.4586928 -0.5195258 0.5370079 0.4586928 -0.5284142 0.5370079 0.4586928 -0.5370079 0.5370079 0.4586928 -0.5453253 0.5370079 0.4586928 -0.5533834 0.5370079 0.4586928 -0.5611974 0.5370079 0.4586928 -0.5687816 0.5370079 0.4586928 -0.092819 0.5453253 0.4586928 -0.1056428 0.5453253 0.4586928 -0.1201537 0.5453253 0.4586928 -0.1409607 0.5453253 0.4586928 -0.1678172 0.5453253 0.4586928 -0.1950164 0.5453253 0.4586928 -0.2210581 0.5453253 0.4586928 -0.245636 0.5453253 0.4586928 -0.2686816 0.5453253 0.4586928 -0.2902431 0.5453253 0.4586928 -0.3104189 0.5453253 0.4586928 -0.3293248 0.5453253 0.4586928 -0.3470774 0.5453253 0.4586928 -0.3637862 0.5453253 0.4586928 -0.3795513 0.5453253 0.4586928 -0.3944623 0.5453253 0.4586928 -0.4085988 0.5453253 0.4586928 -0.4220313 0.5453253 0.4586928 -0.4348222 0.5453253 0.4586928 -0.4470264 0.5453253 0.4586928 -0.4586928 0.5453253 0.4586928 -0.4698649 0.5453253 0.4586928 -0.4805811 0.5453253 0.4586928 -0.490876 0.5453253 0.4586928 -0.5007803 0.5453253 0.4586928 -0.510322 0.5453253 0.4586928 -0.5195258 0.5453253 0.4586928 -0.5284142 0.5453253 0.4586928 -0.5370079 0.5453253 0.4586928 -0.5453253 0.5453253 0.4586928 -0.5533834 0.5453253 0.4586928 -0.5611974 0.5453253 0.4586928 -0.5687816 0.5453253 0.4586928 -0.092819 0.5533834 0.4586928 -0.1056428 0.5533834 0.4586928 -0.1201537 0.5533834 0.4586928 -0.1409607 0.5533834 0.4586928 -0.1678172 0.5533834 0.4586928 -0.1950164 0.5533834 0.4586928 -0.2210581 0.5533834 0.4586928 -0.245636 0.5533834 0.4586928 -0.2686816 0.5533834 0.4586928 -0.2902431 0.5533834 0.4586928 -0.3104189 0.5533834 0.4586928 -0.3293248 0.5533834 0.4586928 -0.3470774 0.5533834 0.4586928 -0.3637862 0.5533834 0.4586928 -0.3795513 0.5533834 0.4586928 -0.3944623 0.5533834 0.4586928 -0.4085988 0.5533834 0.4586928 -0.4220313 0.5533834 0.4586928 -0.4348222 0.5533834 0.4586928 -0.4470264 0.5533834 0.4586928 -0.4586928 0.5533834 0.4586928 -0.4698649 0.5533834 0.4586928 -0.4805811 0.5533834 0.4586928 -0.490876 0.5533834 0.4586928 -0.5007803 0.5533834 0.4586928 -0.510322 0.5533834 0.4586928 -0.5195258 0.5533834 0.4586928 -0.5284142 0.5533834 0.4586928 -0.5370079 0.5533834 0.4586928 -0.5453253 0.5533834 0.4586928 -0.5533834 0.5533834 0.4586928 -0.5611974 0.5533834 0.4586928 -0.5687816 0.5533834 0.4586928 -0.092819 0.5611974 0.4586928 -0.1056428 0.5611974 0.4586928 -0.1201537 0.5611974 0.4586928 -0.1409607 0.5611974 0.4586928 -0.1678172 0.5611974 0.4586928 -0.1950164 0.5611974 0.4586928 -0.2210581 0.5611974 0.4586928 -0.245636 0.5611974 0.4586928 -0.2686816 0.5611974 0.4586928 -0.2902431 0.5611974 0.4586928 -0.3104189 0.5611974 0.4586928 -0.3293248 0.5611974 0.4586928 -0.3470774 0.5611974 0.4586928 -0.3637862 0.5611974 0.4586928 -0.3795513 0.5611974 0.4586928 -0.3944623 0.5611974 0.4586928 -0.4085988 0.5611974 0.4586928 -0.4220313 0.5611974 0.4586928 -0.4348222 0.5611974 0.4586928 -0.4470264 0.5611974 0.4586928 -0.4586928 0.5611974 0.4586928 -0.4698649 0.5611974 0.4586928 -0.4805811 0.5611974 0.4586928 -0.490876 0.5611974 0.4586928 -0.5007803 0.5611974 0.4586928 -0.510322 0.5611974 0.4586928 -0.5195258 0.5611974 0.4586928 -0.5284142 0.5611974 0.4586928 -0.5370079 0.5611974 0.4586928 -0.5453253 0.5611974 0.4586928 -0.5533834 0.5611974 0.4586928 -0.5611974 0.5611974 0.4586928 -0.5687816 0.5611974 0.4586928 -0.092819 0.5687816 0.4586928 -0.1056428 0.5687816 0.4586928 -0.1201537 0.5687816 0.4586928 -0.1409607 0.5687816 0.4586928 -0.1678172 0.5687816 0.4586928 -0.1950164 0.5687816 0.4586928 -0.2210581 0.5687816 0.4586928 -0.245636 0.5687816 0.4586928 -0.2686816 0.5687816 0.4586928 -0.2902431 0.5687816 0.4586928 -0.3104189 0.5687816 0.4586928 -0.3293248 0.5687816 0.4586928 -0.3470774 0.5687816 0.4586928 -0.3637862 0.5687816 0.4586928 -0.3795513 0.5687816 0.4586928 -0.3944623 0.5687816 0.4586928 -0.4085988 0.5687816 0.4586928 -0.4220313 0.5687816 0.4586928 -0.4348222 0.5687816 0.4586928 -0.4470264 0.5687816 0.4586928 -0.4586928 0.5687816 0.4586928 -0.4698649 0.5687816 0.4586928 -0.4805811 0.5687816 0.4586928 -0.490876 0.5687816 0.4586928 -0.5007803 0.5687816 0.4586928 -0.510322 0.5687816 0.4586928 -0.5195258 0.5687816 0.4586928 -0.5284142 0.5687816 0.4586928 -0.5370079 0.5687816 0.4586928 -0.5453253 0.5687816 0.4586928 -0.5533834 0.5687816 0.4586928 -0.5611974 0.5687816 0.4586928 -0.5687816 0.5687816 0.4586928 -0.092819 0.092819 0.4698649 -0.1056428 0.092819 0.4698649 -0.1201537 0.092819 0.4698649 -0.1409607 0.092819 0.4698649 -0.1678172 0.092819 0.4698649 -0.1950164 0.092819 0.4698649 -0.2210581 0.092819 0.4698649 -0.245636 0.092819 0.4698649 -0.2686816 0.092819 0.4698649 -0.2902431 0.092819 0.4698649 -0.3104189 0.092819 0.4698649 -0.3293248 0.092819 0.4698649 -0.3470774 0.092819 0.4698649 -0.3637862 0.092819 0.4698649 -0.3795513 0.092819 0.4698649 -0.3944623 0.092819 0.4698649 -0.4085988 0.092819 0.4698649 -0.4220313 0.092819 0.4698649 -0.4348222 0.092819 0.4698649 -0.4470264 0.092819 0.4698649 -0.4586928 0.092819 0.4698649 -0.4698649 0.092819 0.4698649 -0.4805811 0.092819 0.4698649 -0.490876 0.092819 0.4698649 -0.5007803 0.092819 0.4698649 -0.510322 0.092819 0.4698649 -0.5195258 0.092819 0.4698649 -0.5284142 0.092819 0.4698649 -0.5370079 0.092819 0.4698649 -0.5453253 0.092819 0.4698649 -0.5533834 0.092819 0.4698649 -0.5611974 0.092819 0.4698649 -0.5687816 0.092819 0.4698649 -0.092819 0.1056428 0.4698649 -0.1056428 0.1056428 0.4698649 -0.1201537 0.1056428 0.4698649 -0.1409607 0.1056428 0.4698649 -0.1678172 0.1056428 0.4698649 -0.1950164 0.1056428 0.4698649 -0.2210581 0.1056428 0.4698649 -0.245636 0.1056428 0.4698649 -0.2686816 0.1056428 0.4698649 -0.2902431 0.1056428 0.4698649 -0.3104189 0.1056428 0.4698649 -0.3293248 0.1056428 0.4698649 -0.3470774 0.1056428 0.4698649 -0.3637862 0.1056428 0.4698649 -0.3795513 0.1056428 0.4698649 -0.3944623 0.1056428 0.4698649 -0.4085988 0.1056428 0.4698649 -0.4220313 0.1056428 0.4698649 -0.4348222 0.1056428 0.4698649 -0.4470264 0.1056428 0.4698649 -0.4586928 0.1056428 0.4698649 -0.4698649 0.1056428 0.4698649 -0.4805811 0.1056428 0.4698649 -0.490876 0.1056428 0.4698649 -0.5007803 0.1056428 0.4698649 -0.510322 0.1056428 0.4698649 -0.5195258 0.1056428 0.4698649 -0.5284142 0.1056428 0.4698649 -0.5370079 0.1056428 0.4698649 -0.5453253 0.1056428 0.4698649 -0.5533834 0.1056428 0.4698649 -0.5611974 0.1056428 0.4698649 -0.5687816 0.1056428 0.4698649 -0.092819 0.1201537 0.4698649 -0.1056428 0.1201537 0.4698649 -0.1201537 0.1201537 0.4698649 -0.1409607 0.1201537 0.4698649 -0.1678172 0.1201537 0.4698649 -0.1950164 0.1201537 0.4698649 -0.2210581 0.1201537 0.4698649 -0.245636 0.1201537 0.4698649 -0.2686816 0.1201537 0.4698649 -0.2902431 0.1201537 0.4698649 -0.3104189 0.1201537 0.4698649 -0.3293248 0.1201537 0.4698649 -0.3470774 0.1201537 0.4698649 -0.3637862 0.1201537 0.4698649 -0.3795513 0.1201537 0.4698649 -0.3944623 0.1201537 0.4698649 -0.4085988 0.1201537 0.4698649 -0.4220313 0.1201537 0.4698649 -0.4348222 0.1201537 0.4698649 -0.4470264 0.1201537 0.4698649 -0.4586928 0.1201537 0.4698649 -0.4698649 0.1201537 0.4698649 -0.4805811 0.1201537 0.4698649 -0.490876 0.1201537 0.4698649 -0.5007803 0.1201537 0.4698649 -0.510322 0.1201537 0.4698649 -0.5195258 0.1201537 0.4698649 -0.5284142 0.1201537 0.4698649 -0.5370079 0.1201537 0.4698649 -0.5453253 0.1201537 0.4698649 -0.5533834 0.1201537 0.4698649 -0.5611974 0.1201537 0.4698649 -0.5687816 0.1201537 0.4698649 -0.092819 0.1409607 0.4698649 -0.1056428 0.1409607 0.4698649 -0.1201537 0.1409607 0.4698649 -0.1409607 0.1409607 0.4698649 -0.1678172 0.1409607 0.4698649 -0.1950164 0.1409607 0.4698649 -0.2210581 0.1409607 0.4698649 -0.245636 0.1409607 0.4698649 -0.2686816 0.1409607 0.4698649 -0.2902431 0.1409607 0.4698649 -0.3104189 0.1409607 0.4698649 -0.3293248 0.1409607 0.4698649 -0.3470774 0.1409607 0.4698649 -0.3637862 0.1409607 0.4698649 -0.3795513 0.1409607 0.4698649 -0.3944623 0.1409607 0.4698649 -0.4085988 0.1409607 0.4698649 -0.4220313 0.1409607 0.4698649 -0.4348222 0.1409607 0.4698649 -0.4470264 0.1409607 0.4698649 -0.4586928 0.1409607 0.4698649 -0.4698649 0.1409607 0.4698649 -0.4805811 0.1409607 0.4698649 -0.490876 0.1409607 0.4698649 -0.5007803 0.1409607 0.4698649 -0.510322 0.1409607 0.4698649 -0.5195258 0.1409607 0.4698649 -0.5284142 0.1409607 0.4698649 -0.5370079 0.1409607 0.4698649 -0.5453253 0.1409607 0.4698649 -0.5533834 0.1409607 0.4698649 -0.5611974 0.1409607 0.4698649 -0.5687816 0.1409607 0.4698649 -0.092819 0.1678172 0.4698649 -0.1056428 0.1678172 0.4698649 -0.1201537 0.1678172 0.4698649 -0.1409607 0.1678172 0.4698649 -0.1678172 0.1678172 0.4698649 -0.1950164 0.1678172 0.4698649 -0.2210581 0.1678172 0.4698649 -0.245636 0.1678172 0.4698649 -0.2686816 0.1678172 0.4698649 -0.2902431 0.1678172 0.4698649 -0.3104189 0.1678172 0.4698649 -0.3293248 0.1678172 0.4698649 -0.3470774 0.1678172 0.4698649 -0.3637862 0.1678172 0.4698649 -0.3795513 0.1678172 0.4698649 -0.3944623 0.1678172 0.4698649 -0.4085988 0.1678172 0.4698649 -0.4220313 0.1678172 0.4698649 -0.4348222 0.1678172 0.4698649 -0.4470264 0.1678172 0.4698649 -0.4586928 0.1678172 0.4698649 -0.4698649 0.1678172 0.4698649 -0.4805811 0.1678172 0.4698649 -0.490876 0.1678172 0.4698649 -0.5007803 0.1678172 0.4698649 -0.510322 0.1678172 0.4698649 -0.5195258 0.1678172 0.4698649 -0.5284142 0.1678172 0.4698649 -0.5370079 0.1678172 0.4698649 -0.5453253 0.1678172 0.4698649 -0.5533834 0.1678172 0.4698649 -0.5611974 0.1678172 0.4698649 -0.5687816 0.1678172 0.4698649 -0.092819 0.1950164 0.4698649 -0.1056428 0.1950164 0.4698649 -0.1201537 0.1950164 0.4698649 -0.1409607 0.1950164 0.4698649 -0.1678172 0.1950164 0.4698649 -0.1950164 0.1950164 0.4698649 -0.2210581 0.1950164 0.4698649 -0.245636 0.1950164 0.4698649 -0.2686816 0.1950164 0.4698649 -0.2902431 0.1950164 0.4698649 -0.3104189 0.1950164 0.4698649 -0.3293248 0.1950164 0.4698649 -0.3470774 0.1950164 0.4698649 -0.3637862 0.1950164 0.4698649 -0.3795513 0.1950164 0.4698649 -0.3944623 0.1950164 0.4698649 -0.4085988 0.1950164 0.4698649 -0.4220313 0.1950164 0.4698649 -0.4348222 0.1950164 0.4698649 -0.4470264 0.1950164 0.4698649 -0.4586928 0.1950164 0.4698649 -0.4698649 0.1950164 0.4698649 -0.4805811 0.1950164 0.4698649 -0.490876 0.1950164 0.4698649 -0.5007803 0.1950164 0.4698649 -0.510322 0.1950164 0.4698649 -0.5195258 0.1950164 0.4698649 -0.5284142 0.1950164 0.4698649 -0.5370079 0.1950164 0.4698649 -0.5453253 0.1950164 0.4698649 -0.5533834 0.1950164 0.4698649 -0.5611974 0.1950164 0.4698649 -0.5687816 0.1950164 0.4698649 -0.092819 0.2210581 0.4698649 -0.1056428 0.2210581 0.4698649 -0.1201537 0.2210581 0.4698649 -0.1409607 0.2210581 0.4698649 -0.1678172 0.2210581 0.4698649 -0.1950164 0.2210581 0.4698649 -0.2210581 0.2210581 0.4698649 -0.245636 0.2210581 0.4698649 -0.2686816 0.2210581 0.4698649 -0.2902431 0.2210581 0.4698649 -0.3104189 0.2210581 0.4698649 -0.3293248 0.2210581 0.4698649 -0.3470774 0.2210581 0.4698649 -0.3637862 0.2210581 0.4698649 -0.3795513 0.2210581 0.4698649 -0.3944623 0.2210581 0.4698649 -0.4085988 0.2210581 0.4698649 -0.4220313 0.2210581 0.4698649 -0.4348222 0.2210581 0.4698649 -0.4470264 0.2210581 0.4698649 -0.4586928 0.2210581 0.4698649 -0.4698649 0.2210581 0.4698649 -0.4805811 0.2210581 0.4698649 -0.490876 0.2210581 0.4698649 -0.5007803 0.2210581 0.4698649 -0.510322 0.2210581 0.4698649 -0.5195258 0.2210581 0.4698649 -0.5284142 0.2210581 0.4698649 -0.5370079 0.2210581 0.4698649 -0.5453253 0.2210581 0.4698649 -0.5533834 0.2210581 0.4698649 -0.5611974 0.2210581 0.4698649 -0.5687816 0.2210581 0.4698649 -0.092819 0.245636 0.4698649 -0.1056428 0.245636 0.4698649 -0.1201537 0.245636 0.4698649 -0.1409607 0.245636 0.4698649 -0.1678172 0.245636 0.4698649 -0.1950164 0.245636 0.4698649 -0.2210581 0.245636 0.4698649 -0.245636 0.245636 0.4698649 -0.2686816 0.245636 0.4698649 -0.2902431 0.245636 0.4698649 -0.3104189 0.245636 0.4698649 -0.3293248 0.245636 0.4698649 -0.3470774 0.245636 0.4698649 -0.3637862 0.245636 0.4698649 -0.3795513 0.245636 0.4698649 -0.3944623 0.245636 0.4698649 -0.4085988 0.245636 0.4698649 -0.4220313 0.245636 0.4698649 -0.4348222 0.245636 0.4698649 -0.4470264 0.245636 0.4698649 -0.4586928 0.245636 0.4698649 -0.4698649 0.245636 0.4698649 -0.4805811 0.245636 0.4698649 -0.490876 0.245636 0.4698649 -0.5007803 0.245636 0.4698649 -0.510322 0.245636 0.4698649 -0.5195258 0.245636 0.4698649 -0.5284142 0.245636 0.4698649 -0.5370079 0.245636 0.4698649 -0.5453253 0.245636 0.4698649 -0.5533834 0.245636 0.4698649 -0.5611974 0.245636 0.4698649 -0.5687816 0.245636 0.4698649 -0.092819 0.2686816 0.4698649 -0.1056428 0.2686816 0.4698649 -0.1201537 0.2686816 0.4698649 -0.1409607 0.2686816 0.4698649 -0.1678172 0.2686816 0.4698649 -0.1950164 0.2686816 0.4698649 -0.2210581 0.2686816 0.4698649 -0.245636 0.2686816 0.4698649 -0.2686816 0.2686816 0.4698649 -0.2902431 0.2686816 0.4698649 -0.3104189 0.2686816 0.4698649 -0.3293248 0.2686816 0.4698649 -0.3470774 0.2686816 0.4698649 -0.3637862 0.2686816 0.4698649 -0.3795513 0.2686816 0.4698649 -0.3944623 0.2686816 0.4698649 -0.4085988 0.2686816 0.4698649 -0.4220313 0.2686816 0.4698649 -0.4348222 0.2686816 0.4698649 -0.4470264 0.2686816 0.4698649 -0.4586928 0.2686816 0.4698649 -0.4698649 0.2686816 0.4698649 -0.4805811 0.2686816 0.4698649 -0.490876 0.2686816 0.4698649 -0.5007803 0.2686816 0.4698649 -0.510322 0.2686816 0.4698649 -0.5195258 0.2686816 0.4698649 -0.5284142 0.2686816 0.4698649 -0.5370079 0.2686816 0.4698649 -0.5453253 0.2686816 0.4698649 -0.5533834 0.2686816 0.4698649 -0.5611974 0.2686816 0.4698649 -0.5687816 0.2686816 0.4698649 -0.092819 0.2902431 0.4698649 -0.1056428 0.2902431 0.4698649 -0.1201537 0.2902431 0.4698649 -0.1409607 0.2902431 0.4698649 -0.1678172 0.2902431 0.4698649 -0.1950164 0.2902431 0.4698649 -0.2210581 0.2902431 0.4698649 -0.245636 0.2902431 0.4698649 -0.2686816 0.2902431 0.4698649 -0.2902431 0.2902431 0.4698649 -0.3104189 0.2902431 0.4698649 -0.3293248 0.2902431 0.4698649 -0.3470774 0.2902431 0.4698649 -0.3637862 0.2902431 0.4698649 -0.3795513 0.2902431 0.4698649 -0.3944623 0.2902431 0.4698649 -0.4085988 0.2902431 0.4698649 -0.4220313 0.2902431 0.4698649 -0.4348222 0.2902431 0.4698649 -0.4470264 0.2902431 0.4698649 -0.4586928 0.2902431 0.4698649 -0.4698649 0.2902431 0.4698649 -0.4805811 0.2902431 0.4698649 -0.490876 0.2902431 0.4698649 -0.5007803 0.2902431 0.4698649 -0.510322 0.2902431 0.4698649 -0.5195258 0.2902431 0.4698649 -0.5284142 0.2902431 0.4698649 -0.5370079 0.2902431 0.4698649 -0.5453253 0.2902431 0.4698649 -0.5533834 0.2902431 0.4698649 -0.5611974 0.2902431 0.4698649 -0.5687816 0.2902431 0.4698649 -0.092819 0.3104189 0.4698649 -0.1056428 0.3104189 0.4698649 -0.1201537 0.3104189 0.4698649 -0.1409607 0.3104189 0.4698649 -0.1678172 0.3104189 0.4698649 -0.1950164 0.3104189 0.4698649 -0.2210581 0.3104189 0.4698649 -0.245636 0.3104189 0.4698649 -0.2686816 0.3104189 0.4698649 -0.2902431 0.3104189 0.4698649 -0.3104189 0.3104189 0.4698649 -0.3293248 0.3104189 0.4698649 -0.3470774 0.3104189 0.4698649 -0.3637862 0.3104189 0.4698649 -0.3795513 0.3104189 0.4698649 -0.3944623 0.3104189 0.4698649 -0.4085988 0.3104189 0.4698649 -0.4220313 0.3104189 0.4698649 -0.4348222 0.3104189 0.4698649 -0.4470264 0.3104189 0.4698649 -0.4586928 0.3104189 0.4698649 -0.4698649 0.3104189 0.4698649 -0.4805811 0.3104189 0.4698649 -0.490876 0.3104189 0.4698649 -0.5007803 0.3104189 0.4698649 -0.510322 0.3104189 0.4698649 -0.5195258 0.3104189 0.4698649 -0.5284142 0.3104189 0.4698649 -0.5370079 0.3104189 0.4698649 -0.5453253 0.3104189 0.4698649 -0.5533834 0.3104189 0.4698649 -0.5611974 0.3104189 0.4698649 -0.5687816 0.3104189 0.4698649 -0.092819 0.3293248 0.4698649 -0.1056428 0.3293248 0.4698649 -0.1201537 0.3293248 0.4698649 -0.1409607 0.3293248 0.4698649 -0.1678172 0.3293248 0.4698649 -0.1950164 0.3293248 0.4698649 -0.2210581 0.3293248 0.4698649 -0.245636 0.3293248 0.4698649 -0.2686816 0.3293248 0.4698649 -0.2902431 0.3293248 0.4698649 -0.3104189 0.3293248 0.4698649 -0.3293248 0.3293248 0.4698649 -0.3470774 0.3293248 0.4698649 -0.3637862 0.3293248 0.4698649 -0.3795513 0.3293248 0.4698649 -0.3944623 0.3293248 0.4698649 -0.4085988 0.3293248 0.4698649 -0.4220313 0.3293248 0.4698649 -0.4348222 0.3293248 0.4698649 -0.4470264 0.3293248 0.4698649 -0.4586928 0.3293248 0.4698649 -0.4698649 0.3293248 0.4698649 -0.4805811 0.3293248 0.4698649 -0.490876 0.3293248 0.4698649 -0.5007803 0.3293248 0.4698649 -0.510322 0.3293248 0.4698649 -0.5195258 0.3293248 0.4698649 -0.5284142 0.3293248 0.4698649 -0.5370079 0.3293248 0.4698649 -0.5453253 0.3293248 0.4698649 -0.5533834 0.3293248 0.4698649 -0.5611974 0.3293248 0.4698649 -0.5687816 0.3293248 0.4698649 -0.092819 0.3470774 0.4698649 -0.1056428 0.3470774 0.4698649 -0.1201537 0.3470774 0.4698649 -0.1409607 0.3470774 0.4698649 -0.1678172 0.3470774 0.4698649 -0.1950164 0.3470774 0.4698649 -0.2210581 0.3470774 0.4698649 -0.245636 0.3470774 0.4698649 -0.2686816 0.3470774 0.4698649 -0.2902431 0.3470774 0.4698649 -0.3104189 0.3470774 0.4698649 -0.3293248 0.3470774 0.4698649 -0.3470774 0.3470774 0.4698649 -0.3637862 0.3470774 0.4698649 -0.3795513 0.3470774 0.4698649 -0.3944623 0.3470774 0.4698649 -0.4085988 0.3470774 0.4698649 -0.4220313 0.3470774 0.4698649 -0.4348222 0.3470774 0.4698649 -0.4470264 0.3470774 0.4698649 -0.4586928 0.3470774 0.4698649 -0.4698649 0.3470774 0.4698649 -0.4805811 0.3470774 0.4698649 -0.490876 0.3470774 0.4698649 -0.5007803 0.3470774 0.4698649 -0.510322 0.3470774 0.4698649 -0.5195258 0.3470774 0.4698649 -0.5284142 0.3470774 0.4698649 -0.5370079 0.3470774 0.4698649 -0.5453253 0.3470774 0.4698649 -0.5533834 0.3470774 0.4698649 -0.5611974 0.3470774 0.4698649 -0.5687816 0.3470774 0.4698649 -0.092819 0.3637862 0.4698649 -0.1056428 0.3637862 0.4698649 -0.1201537 0.3637862 0.4698649 -0.1409607 0.3637862 0.4698649 -0.1678172 0.3637862 0.4698649 -0.1950164 0.3637862 0.4698649 -0.2210581 0.3637862 0.4698649 -0.245636 0.3637862 0.4698649 -0.2686816 0.3637862 0.4698649 -0.2902431 0.3637862 0.4698649 -0.3104189 0.3637862 0.4698649 -0.3293248 0.3637862 0.4698649 -0.3470774 0.3637862 0.4698649 -0.3637862 0.3637862 0.4698649 -0.3795513 0.3637862 0.4698649 -0.3944623 0.3637862 0.4698649 -0.4085988 0.3637862 0.4698649 -0.4220313 0.3637862 0.4698649 -0.4348222 0.3637862 0.4698649 -0.4470264 0.3637862 0.4698649 -0.4586928 0.3637862 0.4698649 -0.4698649 0.3637862 0.4698649 -0.4805811 0.3637862 0.4698649 -0.490876 0.3637862 0.4698649 -0.5007803 0.3637862 0.4698649 -0.510322 0.3637862 0.4698649 -0.5195258 0.3637862 0.4698649 -0.5284142 0.3637862 0.4698649 -0.5370079 0.3637862 0.4698649 -0.5453253 0.3637862 0.4698649 -0.5533834 0.3637862 0.4698649 -0.5611974 0.3637862 0.4698649 -0.5687816 0.3637862 0.4698649 -0.092819 0.3795513 0.4698649 -0.1056428 0.3795513 0.4698649 -0.1201537 0.3795513 0.4698649 -0.1409607 0.3795513 0.4698649 -0.1678172 0.3795513 0.4698649 -0.1950164 0.3795513 0.4698649 -0.2210581 0.3795513 0.4698649 -0.245636 0.3795513 0.4698649 -0.2686816 0.3795513 0.4698649 -0.2902431 0.3795513 0.4698649 -0.3104189 0.3795513 0.4698649 -0.3293248 0.3795513 0.4698649 -0.3470774 0.3795513 0.4698649 -0.3637862 0.3795513 0.4698649 -0.3795513 0.3795513 0.4698649 -0.3944623 0.3795513 0.4698649 -0.4085988 0.3795513 0.4698649 -0.4220313 0.3795513 0.4698649 -0.4348222 0.3795513 0.4698649 -0.4470264 0.3795513 0.4698649 -0.4586928 0.3795513 0.4698649 -0.4698649 0.3795513 0.4698649 -0.4805811 0.3795513 0.4698649 -0.490876 0.3795513 0.4698649 -0.5007803 0.3795513 0.4698649 -0.510322 0.3795513 0.4698649 -0.5195258 0.3795513 0.4698649 -0.5284142 0.3795513 0.4698649 -0.5370079 0.3795513 0.4698649 -0.5453253 0.3795513 0.4698649 -0.5533834 0.3795513 0.4698649 -0.5611974 0.3795513 0.4698649 -0.5687816 0.3795513 0.4698649 -0.092819 0.3944623 0.4698649 -0.1056428 0.3944623 0.4698649 -0.1201537 0.3944623 0.4698649 -0.1409607 0.3944623 0.4698649 -0.1678172 0.3944623 0.4698649 -0.1950164 0.3944623 0.4698649 -0.2210581 0.3944623 0.4698649 -0.245636 0.3944623 0.4698649 -0.2686816 0.3944623 0.4698649 -0.2902431 0.3944623 0.4698649 -0.3104189 0.3944623 0.4698649 -0.3293248 0.3944623 0.4698649 -0.3470774 0.3944623 0.4698649 -0.3637862 0.3944623 0.4698649 -0.3795513 0.3944623 0.4698649 -0.3944623 0.3944623 0.4698649 -0.4085988 0.3944623 0.4698649 -0.4220313 0.3944623 0.4698649 -0.4348222 0.3944623 0.4698649 -0.4470264 0.3944623 0.4698649 -0.4586928 0.3944623 0.4698649 -0.4698649 0.3944623 0.4698649 -0.4805811 0.3944623 0.4698649 -0.490876 0.3944623 0.4698649 -0.5007803 0.3944623 0.4698649 -0.510322 0.3944623 0.4698649 -0.5195258 0.3944623 0.4698649 -0.5284142 0.3944623 0.4698649 -0.5370079 0.3944623 0.4698649 -0.5453253 0.3944623 0.4698649 -0.5533834 0.3944623 0.4698649 -0.5611974 0.3944623 0.4698649 -0.5687816 0.3944623 0.4698649 -0.092819 0.4085988 0.4698649 -0.1056428 0.4085988 0.4698649 -0.1201537 0.4085988 0.4698649 -0.1409607 0.4085988 0.4698649 -0.1678172 0.4085988 0.4698649 -0.1950164 0.4085988 0.4698649 -0.2210581 0.4085988 0.4698649 -0.245636 0.4085988 0.4698649 -0.2686816 0.4085988 0.4698649 -0.2902431 0.4085988 0.4698649 -0.3104189 0.4085988 0.4698649 -0.3293248 0.4085988 0.4698649 -0.3470774 0.4085988 0.4698649 -0.3637862 0.4085988 0.4698649 -0.3795513 0.4085988 0.4698649 -0.3944623 0.4085988 0.4698649 -0.4085988 0.4085988 0.4698649 -0.4220313 0.4085988 0.4698649 -0.4348222 0.4085988 0.4698649 -0.4470264 0.4085988 0.4698649 -0.4586928 0.4085988 0.4698649 -0.4698649 0.4085988 0.4698649 -0.4805811 0.4085988 0.4698649 -0.490876 0.4085988 0.4698649 -0.5007803 0.4085988 0.4698649 -0.510322 0.4085988 0.4698649 -0.5195258 0.4085988 0.4698649 -0.5284142 0.4085988 0.4698649 -0.5370079 0.4085988 0.4698649 -0.5453253 0.4085988 0.4698649 -0.5533834 0.4085988 0.4698649 -0.5611974 0.4085988 0.4698649 -0.5687816 0.4085988 0.4698649 -0.092819 0.4220313 0.4698649 -0.1056428 0.4220313 0.4698649 -0.1201537 0.4220313 0.4698649 -0.1409607 0.4220313 0.4698649 -0.1678172 0.4220313 0.4698649 -0.1950164 0.4220313 0.4698649 -0.2210581 0.4220313 0.4698649 -0.245636 0.4220313 0.4698649 -0.2686816 0.4220313 0.4698649 -0.2902431 0.4220313 0.4698649 -0.3104189 0.4220313 0.4698649 -0.3293248 0.4220313 0.4698649 -0.3470774 0.4220313 0.4698649 -0.3637862 0.4220313 0.4698649 -0.3795513 0.4220313 0.4698649 -0.3944623 0.4220313 0.4698649 -0.4085988 0.4220313 0.4698649 -0.4220313 0.4220313 0.4698649 -0.4348222 0.4220313 0.4698649 -0.4470264 0.4220313 0.4698649 -0.4586928 0.4220313 0.4698649 -0.4698649 0.4220313 0.4698649 -0.4805811 0.4220313 0.4698649 -0.490876 0.4220313 0.4698649 -0.5007803 0.4220313 0.4698649 -0.510322 0.4220313 0.4698649 -0.5195258 0.4220313 0.4698649 -0.5284142 0.4220313 0.4698649 -0.5370079 0.4220313 0.4698649 -0.5453253 0.4220313 0.4698649 -0.5533834 0.4220313 0.4698649 -0.5611974 0.4220313 0.4698649 -0.5687816 0.4220313 0.4698649 -0.092819 0.4348222 0.4698649 -0.1056428 0.4348222 0.4698649 -0.1201537 0.4348222 0.4698649 -0.1409607 0.4348222 0.4698649 -0.1678172 0.4348222 0.4698649 -0.1950164 0.4348222 0.4698649 -0.2210581 0.4348222 0.4698649 -0.245636 0.4348222 0.4698649 -0.2686816 0.4348222 0.4698649 -0.2902431 0.4348222 0.4698649 -0.3104189 0.4348222 0.4698649 -0.3293248 0.4348222 0.4698649 -0.3470774 0.4348222 0.4698649 -0.3637862 0.4348222 0.4698649 -0.3795513 0.4348222 0.4698649 -0.3944623 0.4348222 0.4698649 -0.4085988 0.4348222 0.4698649 -0.4220313 0.4348222 0.4698649 -0.4348222 0.4348222 0.4698649 -0.4470264 0.4348222 0.4698649 -0.4586928 0.4348222 0.4698649 -0.4698649 0.4348222 0.4698649 -0.4805811 0.4348222 0.4698649 -0.490876 0.4348222 0.4698649 -0.5007803 0.4348222 0.4698649 -0.510322 0.4348222 0.4698649 -0.5195258 0.4348222 0.4698649 -0.5284142 0.4348222 0.4698649 -0.5370079 0.4348222 0.4698649 -0.5453253 0.4348222 0.4698649 -0.5533834 0.4348222 0.4698649 -0.5611974 0.4348222 0.4698649 -0.5687816 0.4348222 0.4698649 -0.092819 0.4470264 0.4698649 -0.1056428 0.4470264 0.4698649 -0.1201537 0.4470264 0.4698649 -0.1409607 0.4470264 0.4698649 -0.1678172 0.4470264 0.4698649 -0.1950164 0.4470264 0.4698649 -0.2210581 0.4470264 0.4698649 -0.245636 0.4470264 0.4698649 -0.2686816 0.4470264 0.4698649 -0.2902431 0.4470264 0.4698649 -0.3104189 0.4470264 0.4698649 -0.3293248 0.4470264 0.4698649 -0.3470774 0.4470264 0.4698649 -0.3637862 0.4470264 0.4698649 -0.3795513 0.4470264 0.4698649 -0.3944623 0.4470264 0.4698649 -0.4085988 0.4470264 0.4698649 -0.4220313 0.4470264 0.4698649 -0.4348222 0.4470264 0.4698649 -0.4470264 0.4470264 0.4698649 -0.4586928 0.4470264 0.4698649 -0.4698649 0.4470264 0.4698649 -0.4805811 0.4470264 0.4698649 -0.490876 0.4470264 0.4698649 -0.5007803 0.4470264 0.4698649 -0.510322 0.4470264 0.4698649 -0.5195258 0.4470264 0.4698649 -0.5284142 0.4470264 0.4698649 -0.5370079 0.4470264 0.4698649 -0.5453253 0.4470264 0.4698649 -0.5533834 0.4470264 0.4698649 -0.5611974 0.4470264 0.4698649 -0.5687816 0.4470264 0.4698649 -0.092819 0.4586928 0.4698649 -0.1056428 0.4586928 0.4698649 -0.1201537 0.4586928 0.4698649 -0.1409607 0.4586928 0.4698649 -0.1678172 0.4586928 0.4698649 -0.1950164 0.4586928 0.4698649 -0.2210581 0.4586928 0.4698649 -0.245636 0.4586928 0.4698649 -0.2686816 0.4586928 0.4698649 -0.2902431 0.4586928 0.4698649 -0.3104189 0.4586928 0.4698649 -0.3293248 0.4586928 0.4698649 -0.3470774 0.4586928 0.4698649 -0.3637862 0.4586928 0.4698649 -0.3795513 0.4586928 0.4698649 -0.3944623 0.4586928 0.4698649 -0.4085988 0.4586928 0.4698649 -0.4220313 0.4586928 0.4698649 -0.4348222 0.4586928 0.4698649 -0.4470264 0.4586928 0.4698649 -0.4586928 0.4586928 0.4698649 -0.4698649 0.4586928 0.4698649 -0.4805811 0.4586928 0.4698649 -0.490876 0.4586928 0.4698649 -0.5007803 0.4586928 0.4698649 -0.510322 0.4586928 0.4698649 -0.5195258 0.4586928 0.4698649 -0.5284142 0.4586928 0.4698649 -0.5370079 0.4586928 0.4698649 -0.5453253 0.4586928 0.4698649 -0.5533834 0.4586928 0.4698649 -0.5611974 0.4586928 0.4698649 -0.5687816 0.4586928 0.4698649 -0.092819 0.4698649 0.4698649 -0.1056428 0.4698649 0.4698649 -0.1201537 0.4698649 0.4698649 -0.1409607 0.4698649 0.4698649 -0.1678172 0.4698649 0.4698649 -0.1950164 0.4698649 0.4698649 -0.2210581 0.4698649 0.4698649 -0.245636 0.4698649 0.4698649 -0.2686816 0.4698649 0.4698649 -0.2902431 0.4698649 0.4698649 -0.3104189 0.4698649 0.4698649 -0.3293248 0.4698649 0.4698649 -0.3470774 0.4698649 0.4698649 -0.3637862 0.4698649 0.4698649 -0.3795513 0.4698649 0.4698649 -0.3944623 0.4698649 0.4698649 -0.4085988 0.4698649 0.4698649 -0.4220313 0.4698649 0.4698649 -0.4348222 0.4698649 0.4698649 -0.4470264 0.4698649 0.4698649 -0.4586928 0.4698649 0.4698649 -0.4698649 0.4698649 0.4698649 -0.4805811 0.4698649 0.4698649 -0.490876 0.4698649 0.4698649 -0.5007803 0.4698649 0.4698649 -0.510322 0.4698649 0.4698649 -0.5195258 0.4698649 0.4698649 -0.5284142 0.4698649 0.4698649 -0.5370079 0.4698649 0.4698649 -0.5453253 0.4698649 0.4698649 -0.5533834 0.4698649 0.4698649 -0.5611974 0.4698649 0.4698649 -0.5687816 0.4698649 0.4698649 -0.092819 0.4805811 0.4698649 -0.1056428 0.4805811 0.4698649 -0.1201537 0.4805811 0.4698649 -0.1409607 0.4805811 0.4698649 -0.1678172 0.4805811 0.4698649 -0.1950164 0.4805811 0.4698649 -0.2210581 0.4805811 0.4698649 -0.245636 0.4805811 0.4698649 -0.2686816 0.4805811 0.4698649 -0.2902431 0.4805811 0.4698649 -0.3104189 0.4805811 0.4698649 -0.3293248 0.4805811 0.4698649 -0.3470774 0.4805811 0.4698649 -0.3637862 0.4805811 0.4698649 -0.3795513 0.4805811 0.4698649 -0.3944623 0.4805811 0.4698649 -0.4085988 0.4805811 0.4698649 -0.4220313 0.4805811 0.4698649 -0.4348222 0.4805811 0.4698649 -0.4470264 0.4805811 0.4698649 -0.4586928 0.4805811 0.4698649 -0.4698649 0.4805811 0.4698649 -0.4805811 0.4805811 0.4698649 -0.490876 0.4805811 0.4698649 -0.5007803 0.4805811 0.4698649 -0.510322 0.4805811 0.4698649 -0.5195258 0.4805811 0.4698649 -0.5284142 0.4805811 0.4698649 -0.5370079 0.4805811 0.4698649 -0.5453253 0.4805811 0.4698649 -0.5533834 0.4805811 0.4698649 -0.5611974 0.4805811 0.4698649 -0.5687816 0.4805811 0.4698649 -0.092819 0.490876 0.4698649 -0.1056428 0.490876 0.4698649 -0.1201537 0.490876 0.4698649 -0.1409607 0.490876 0.4698649 -0.1678172 0.490876 0.4698649 -0.1950164 0.490876 0.4698649 -0.2210581 0.490876 0.4698649 -0.245636 0.490876 0.4698649 -0.2686816 0.490876 0.4698649 -0.2902431 0.490876 0.4698649 -0.3104189 0.490876 0.4698649 -0.3293248 0.490876 0.4698649 -0.3470774 0.490876 0.4698649 -0.3637862 0.490876 0.4698649 -0.3795513 0.490876 0.4698649 -0.3944623 0.490876 0.4698649 -0.4085988 0.490876 0.4698649 -0.4220313 0.490876 0.4698649 -0.4348222 0.490876 0.4698649 -0.4470264 0.490876 0.4698649 -0.4586928 0.490876 0.4698649 -0.4698649 0.490876 0.4698649 -0.4805811 0.490876 0.4698649 -0.490876 0.490876 0.4698649 -0.5007803 0.490876 0.4698649 -0.510322 0.490876 0.4698649 -0.5195258 0.490876 0.4698649 -0.5284142 0.490876 0.4698649 -0.5370079 0.490876 0.4698649 -0.5453253 0.490876 0.4698649 -0.5533834 0.490876 0.4698649 -0.5611974 0.490876 0.4698649 -0.5687816 0.490876 0.4698649 -0.092819 0.5007803 0.4698649 -0.1056428 0.5007803 0.4698649 -0.1201537 0.5007803 0.4698649 -0.1409607 0.5007803 0.4698649 -0.1678172 0.5007803 0.4698649 -0.1950164 0.5007803 0.4698649 -0.2210581 0.5007803 0.4698649 -0.245636 0.5007803 0.4698649 -0.2686816 0.5007803 0.4698649 -0.2902431 0.5007803 0.4698649 -0.3104189 0.5007803 0.4698649 -0.3293248 0.5007803 0.4698649 -0.3470774 0.5007803 0.4698649 -0.3637862 0.5007803 0.4698649 -0.3795513 0.5007803 0.4698649 -0.3944623 0.5007803 0.4698649 -0.4085988 0.5007803 0.4698649 -0.4220313 0.5007803 0.4698649 -0.4348222 0.5007803 0.4698649 -0.4470264 0.5007803 0.4698649 -0.4586928 0.5007803 0.4698649 -0.4698649 0.5007803 0.4698649 -0.4805811 0.5007803 0.4698649 -0.490876 0.5007803 0.4698649 -0.5007803 0.5007803 0.4698649 -0.510322 0.5007803 0.4698649 -0.5195258 0.5007803 0.4698649 -0.5284142 0.5007803 0.4698649 -0.5370079 0.5007803 0.4698649 -0.5453253 0.5007803 0.4698649 -0.5533834 0.5007803 0.4698649 -0.5611974 0.5007803 0.4698649 -0.5687816 0.5007803 0.4698649 -0.092819 0.510322 0.4698649 -0.1056428 0.510322 0.4698649 -0.1201537 0.510322 0.4698649 -0.1409607 0.510322 0.4698649 -0.1678172 0.510322 0.4698649 -0.1950164 0.510322 0.4698649 -0.2210581 0.510322 0.4698649 -0.245636 0.510322 0.4698649 -0.2686816 0.510322 0.4698649 -0.2902431 0.510322 0.4698649 -0.3104189 0.510322 0.4698649 -0.3293248 0.510322 0.4698649 -0.3470774 0.510322 0.4698649 -0.3637862 0.510322 0.4698649 -0.3795513 0.510322 0.4698649 -0.3944623 0.510322 0.4698649 -0.4085988 0.510322 0.4698649 -0.4220313 0.510322 0.4698649 -0.4348222 0.510322 0.4698649 -0.4470264 0.510322 0.4698649 -0.4586928 0.510322 0.4698649 -0.4698649 0.510322 0.4698649 -0.4805811 0.510322 0.4698649 -0.490876 0.510322 0.4698649 -0.5007803 0.510322 0.4698649 -0.510322 0.510322 0.4698649 -0.5195258 0.510322 0.4698649 -0.5284142 0.510322 0.4698649 -0.5370079 0.510322 0.4698649 -0.5453253 0.510322 0.4698649 -0.5533834 0.510322 0.4698649 -0.5611974 0.510322 0.4698649 -0.5687816 0.510322 0.4698649 -0.092819 0.5195258 0.4698649 -0.1056428 0.5195258 0.4698649 -0.1201537 0.5195258 0.4698649 -0.1409607 0.5195258 0.4698649 -0.1678172 0.5195258 0.4698649 -0.1950164 0.5195258 0.4698649 -0.2210581 0.5195258 0.4698649 -0.245636 0.5195258 0.4698649 -0.2686816 0.5195258 0.4698649 -0.2902431 0.5195258 0.4698649 -0.3104189 0.5195258 0.4698649 -0.3293248 0.5195258 0.4698649 -0.3470774 0.5195258 0.4698649 -0.3637862 0.5195258 0.4698649 -0.3795513 0.5195258 0.4698649 -0.3944623 0.5195258 0.4698649 -0.4085988 0.5195258 0.4698649 -0.4220313 0.5195258 0.4698649 -0.4348222 0.5195258 0.4698649 -0.4470264 0.5195258 0.4698649 -0.4586928 0.5195258 0.4698649 -0.4698649 0.5195258 0.4698649 -0.4805811 0.5195258 0.4698649 -0.490876 0.5195258 0.4698649 -0.5007803 0.5195258 0.4698649 -0.510322 0.5195258 0.4698649 -0.5195258 0.5195258 0.4698649 -0.5284142 0.5195258 0.4698649 -0.5370079 0.5195258 0.4698649 -0.5453253 0.5195258 0.4698649 -0.5533834 0.5195258 0.4698649 -0.5611974 0.5195258 0.4698649 -0.5687816 0.5195258 0.4698649 -0.092819 0.5284142 0.4698649 -0.1056428 0.5284142 0.4698649 -0.1201537 0.5284142 0.4698649 -0.1409607 0.5284142 0.4698649 -0.1678172 0.5284142 0.4698649 -0.1950164 0.5284142 0.4698649 -0.2210581 0.5284142 0.4698649 -0.245636 0.5284142 0.4698649 -0.2686816 0.5284142 0.4698649 -0.2902431 0.5284142 0.4698649 -0.3104189 0.5284142 0.4698649 -0.3293248 0.5284142 0.4698649 -0.3470774 0.5284142 0.4698649 -0.3637862 0.5284142 0.4698649 -0.3795513 0.5284142 0.4698649 -0.3944623 0.5284142 0.4698649 -0.4085988 0.5284142 0.4698649 -0.4220313 0.5284142 0.4698649 -0.4348222 0.5284142 0.4698649 -0.4470264 0.5284142 0.4698649 -0.4586928 0.5284142 0.4698649 -0.4698649 0.5284142 0.4698649 -0.4805811 0.5284142 0.4698649 -0.490876 0.5284142 0.4698649 -0.5007803 0.5284142 0.4698649 -0.510322 0.5284142 0.4698649 -0.5195258 0.5284142 0.4698649 -0.5284142 0.5284142 0.4698649 -0.5370079 0.5284142 0.4698649 -0.5453253 0.5284142 0.4698649 -0.5533834 0.5284142 0.4698649 -0.5611974 0.5284142 0.4698649 -0.5687816 0.5284142 0.4698649 -0.092819 0.5370079 0.4698649 -0.1056428 0.5370079 0.4698649 -0.1201537 0.5370079 0.4698649 -0.1409607 0.5370079 0.4698649 -0.1678172 0.5370079 0.4698649 -0.1950164 0.5370079 0.4698649 -0.2210581 0.5370079 0.4698649 -0.245636 0.5370079 0.4698649 -0.2686816 0.5370079 0.4698649 -0.2902431 0.5370079 0.4698649 -0.3104189 0.5370079 0.4698649 -0.3293248 0.5370079 0.4698649 -0.3470774 0.5370079 0.4698649 -0.3637862 0.5370079 0.4698649 -0.3795513 0.5370079 0.4698649 -0.3944623 0.5370079 0.4698649 -0.4085988 0.5370079 0.4698649 -0.4220313 0.5370079 0.4698649 -0.4348222 0.5370079 0.4698649 -0.4470264 0.5370079 0.4698649 -0.4586928 0.5370079 0.4698649 -0.4698649 0.5370079 0.4698649 -0.4805811 0.5370079 0.4698649 -0.490876 0.5370079 0.4698649 -0.5007803 0.5370079 0.4698649 -0.510322 0.5370079 0.4698649 -0.5195258 0.5370079 0.4698649 -0.5284142 0.5370079 0.4698649 -0.5370079 0.5370079 0.4698649 -0.5453253 0.5370079 0.4698649 -0.5533834 0.5370079 0.4698649 -0.5611974 0.5370079 0.4698649 -0.5687816 0.5370079 0.4698649 -0.092819 0.5453253 0.4698649 -0.1056428 0.5453253 0.4698649 -0.1201537 0.5453253 0.4698649 -0.1409607 0.5453253 0.4698649 -0.1678172 0.5453253 0.4698649 -0.1950164 0.5453253 0.4698649 -0.2210581 0.5453253 0.4698649 -0.245636 0.5453253 0.4698649 -0.2686816 0.5453253 0.4698649 -0.2902431 0.5453253 0.4698649 -0.3104189 0.5453253 0.4698649 -0.3293248 0.5453253 0.4698649 -0.3470774 0.5453253 0.4698649 -0.3637862 0.5453253 0.4698649 -0.3795513 0.5453253 0.4698649 -0.3944623 0.5453253 0.4698649 -0.4085988 0.5453253 0.4698649 -0.4220313 0.5453253 0.4698649 -0.4348222 0.5453253 0.4698649 -0.4470264 0.5453253 0.4698649 -0.4586928 0.5453253 0.4698649 -0.4698649 0.5453253 0.4698649 -0.4805811 0.5453253 0.4698649 -0.490876 0.5453253 0.4698649 -0.5007803 0.5453253 0.4698649 -0.510322 0.5453253 0.4698649 -0.5195258 0.5453253 0.4698649 -0.5284142 0.5453253 0.4698649 -0.5370079 0.5453253 0.4698649 -0.5453253 0.5453253 0.4698649 -0.5533834 0.5453253 0.4698649 -0.5611974 0.5453253 0.4698649 -0.5687816 0.5453253 0.4698649 -0.092819 0.5533834 0.4698649 -0.1056428 0.5533834 0.4698649 -0.1201537 0.5533834 0.4698649 -0.1409607 0.5533834 0.4698649 -0.1678172 0.5533834 0.4698649 -0.1950164 0.5533834 0.4698649 -0.2210581 0.5533834 0.4698649 -0.245636 0.5533834 0.4698649 -0.2686816 0.5533834 0.4698649 -0.2902431 0.5533834 0.4698649 -0.3104189 0.5533834 0.4698649 -0.3293248 0.5533834 0.4698649 -0.3470774 0.5533834 0.4698649 -0.3637862 0.5533834 0.4698649 -0.3795513 0.5533834 0.4698649 -0.3944623 0.5533834 0.4698649 -0.4085988 0.5533834 0.4698649 -0.4220313 0.5533834 0.4698649 -0.4348222 0.5533834 0.4698649 -0.4470264 0.5533834 0.4698649 -0.4586928 0.5533834 0.4698649 -0.4698649 0.5533834 0.4698649 -0.4805811 0.5533834 0.4698649 -0.490876 0.5533834 0.4698649 -0.5007803 0.5533834 0.4698649 -0.510322 0.5533834 0.4698649 -0.5195258 0.5533834 0.4698649 -0.5284142 0.5533834 0.4698649 -0.5370079 0.5533834 0.4698649 -0.5453253 0.5533834 0.4698649 -0.5533834 0.5533834 0.4698649 -0.5611974 0.5533834 0.4698649 -0.5687816 0.5533834 0.4698649 -0.092819 0.5611974 0.4698649 -0.1056428 0.5611974 0.4698649 -0.1201537 0.5611974 0.4698649 -0.1409607 0.5611974 0.4698649 -0.1678172 0.5611974 0.4698649 -0.1950164 0.5611974 0.4698649 -0.2210581 0.5611974 0.4698649 -0.245636 0.5611974 0.4698649 -0.2686816 0.5611974 0.4698649 -0.2902431 0.5611974 0.4698649 -0.3104189 0.5611974 0.4698649 -0.3293248 0.5611974 0.4698649 -0.3470774 0.5611974 0.4698649 -0.3637862 0.5611974 0.4698649 -0.3795513 0.5611974 0.4698649 -0.3944623 0.5611974 0.4698649 -0.4085988 0.5611974 0.4698649 -0.4220313 0.5611974 0.4698649 -0.4348222 0.5611974 0.4698649 -0.4470264 0.5611974 0.4698649 -0.4586928 0.5611974 0.4698649 -0.4698649 0.5611974 0.4698649 -0.4805811 0.5611974 0.4698649 -0.490876 0.5611974 0.4698649 -0.5007803 0.5611974 0.4698649 -0.510322 0.5611974 0.4698649 -0.5195258 0.5611974 0.4698649 -0.5284142 0.5611974 0.4698649 -0.5370079 0.5611974 0.4698649 -0.5453253 0.5611974 0.4698649 -0.5533834 0.5611974 0.4698649 -0.5611974 0.5611974 0.4698649 -0.5687816 0.5611974 0.4698649 -0.092819 0.5687816 0.4698649 -0.1056428 0.5687816 0.4698649 -0.1201537 0.5687816 0.4698649 -0.1409607 0.5687816 0.4698649 -0.1678172 0.5687816 0.4698649 -0.1950164 0.5687816 0.4698649 -0.2210581 0.5687816 0.4698649 -0.245636 0.5687816 0.4698649 -0.2686816 0.5687816 0.4698649 -0.2902431 0.5687816 0.4698649 -0.3104189 0.5687816 0.4698649 -0.3293248 0.5687816 0.4698649 -0.3470774 0.5687816 0.4698649 -0.3637862 0.5687816 0.4698649 -0.3795513 0.5687816 0.4698649 -0.3944623 0.5687816 0.4698649 -0.4085988 0.5687816 0.4698649 -0.4220313 0.5687816 0.4698649 -0.4348222 0.5687816 0.4698649 -0.4470264 0.5687816 0.4698649 -0.4586928 0.5687816 0.4698649 -0.4698649 0.5687816 0.4698649 -0.4805811 0.5687816 0.4698649 -0.490876 0.5687816 0.4698649 -0.5007803 0.5687816 0.4698649 -0.510322 0.5687816 0.4698649 -0.5195258 0.5687816 0.4698649 -0.5284142 0.5687816 0.4698649 -0.5370079 0.5687816 0.4698649 -0.5453253 0.5687816 0.4698649 -0.5533834 0.5687816 0.4698649 -0.5611974 0.5687816 0.4698649 -0.5687816 0.5687816 0.4698649 -0.092819 0.092819 0.4805811 -0.1056428 0.092819 0.4805811 -0.1201537 0.092819 0.4805811 -0.1409607 0.092819 0.4805811 -0.1678172 0.092819 0.4805811 -0.1950164 0.092819 0.4805811 -0.2210581 0.092819 0.4805811 -0.245636 0.092819 0.4805811 -0.2686816 0.092819 0.4805811 -0.2902431 0.092819 0.4805811 -0.3104189 0.092819 0.4805811 -0.3293248 0.092819 0.4805811 -0.3470774 0.092819 0.4805811 -0.3637862 0.092819 0.4805811 -0.3795513 0.092819 0.4805811 -0.3944623 0.092819 0.4805811 -0.4085988 0.092819 0.4805811 -0.4220313 0.092819 0.4805811 -0.4348222 0.092819 0.4805811 -0.4470264 0.092819 0.4805811 -0.4586928 0.092819 0.4805811 -0.4698649 0.092819 0.4805811 -0.4805811 0.092819 0.4805811 -0.490876 0.092819 0.4805811 -0.5007803 0.092819 0.4805811 -0.510322 0.092819 0.4805811 -0.5195258 0.092819 0.4805811 -0.5284142 0.092819 0.4805811 -0.5370079 0.092819 0.4805811 -0.5453253 0.092819 0.4805811 -0.5533834 0.092819 0.4805811 -0.5611974 0.092819 0.4805811 -0.5687816 0.092819 0.4805811 -0.092819 0.1056428 0.4805811 -0.1056428 0.1056428 0.4805811 -0.1201537 0.1056428 0.4805811 -0.1409607 0.1056428 0.4805811 -0.1678172 0.1056428 0.4805811 -0.1950164 0.1056428 0.4805811 -0.2210581 0.1056428 0.4805811 -0.245636 0.1056428 0.4805811 -0.2686816 0.1056428 0.4805811 -0.2902431 0.1056428 0.4805811 -0.3104189 0.1056428 0.4805811 -0.3293248 0.1056428 0.4805811 -0.3470774 0.1056428 0.4805811 -0.3637862 0.1056428 0.4805811 -0.3795513 0.1056428 0.4805811 -0.3944623 0.1056428 0.4805811 -0.4085988 0.1056428 0.4805811 -0.4220313 0.1056428 0.4805811 -0.4348222 0.1056428 0.4805811 -0.4470264 0.1056428 0.4805811 -0.4586928 0.1056428 0.4805811 -0.4698649 0.1056428 0.4805811 -0.4805811 0.1056428 0.4805811 -0.490876 0.1056428 0.4805811 -0.5007803 0.1056428 0.4805811 -0.510322 0.1056428 0.4805811 -0.5195258 0.1056428 0.4805811 -0.5284142 0.1056428 0.4805811 -0.5370079 0.1056428 0.4805811 -0.5453253 0.1056428 0.4805811 -0.5533834 0.1056428 0.4805811 -0.5611974 0.1056428 0.4805811 -0.5687816 0.1056428 0.4805811 -0.092819 0.1201537 0.4805811 -0.1056428 0.1201537 0.4805811 -0.1201537 0.1201537 0.4805811 -0.1409607 0.1201537 0.4805811 -0.1678172 0.1201537 0.4805811 -0.1950164 0.1201537 0.4805811 -0.2210581 0.1201537 0.4805811 -0.245636 0.1201537 0.4805811 -0.2686816 0.1201537 0.4805811 -0.2902431 0.1201537 0.4805811 -0.3104189 0.1201537 0.4805811 -0.3293248 0.1201537 0.4805811 -0.3470774 0.1201537 0.4805811 -0.3637862 0.1201537 0.4805811 -0.3795513 0.1201537 0.4805811 -0.3944623 0.1201537 0.4805811 -0.4085988 0.1201537 0.4805811 -0.4220313 0.1201537 0.4805811 -0.4348222 0.1201537 0.4805811 -0.4470264 0.1201537 0.4805811 -0.4586928 0.1201537 0.4805811 -0.4698649 0.1201537 0.4805811 -0.4805811 0.1201537 0.4805811 -0.490876 0.1201537 0.4805811 -0.5007803 0.1201537 0.4805811 -0.510322 0.1201537 0.4805811 -0.5195258 0.1201537 0.4805811 -0.5284142 0.1201537 0.4805811 -0.5370079 0.1201537 0.4805811 -0.5453253 0.1201537 0.4805811 -0.5533834 0.1201537 0.4805811 -0.5611974 0.1201537 0.4805811 -0.5687816 0.1201537 0.4805811 -0.092819 0.1409607 0.4805811 -0.1056428 0.1409607 0.4805811 -0.1201537 0.1409607 0.4805811 -0.1409607 0.1409607 0.4805811 -0.1678172 0.1409607 0.4805811 -0.1950164 0.1409607 0.4805811 -0.2210581 0.1409607 0.4805811 -0.245636 0.1409607 0.4805811 -0.2686816 0.1409607 0.4805811 -0.2902431 0.1409607 0.4805811 -0.3104189 0.1409607 0.4805811 -0.3293248 0.1409607 0.4805811 -0.3470774 0.1409607 0.4805811 -0.3637862 0.1409607 0.4805811 -0.3795513 0.1409607 0.4805811 -0.3944623 0.1409607 0.4805811 -0.4085988 0.1409607 0.4805811 -0.4220313 0.1409607 0.4805811 -0.4348222 0.1409607 0.4805811 -0.4470264 0.1409607 0.4805811 -0.4586928 0.1409607 0.4805811 -0.4698649 0.1409607 0.4805811 -0.4805811 0.1409607 0.4805811 -0.490876 0.1409607 0.4805811 -0.5007803 0.1409607 0.4805811 -0.510322 0.1409607 0.4805811 -0.5195258 0.1409607 0.4805811 -0.5284142 0.1409607 0.4805811 -0.5370079 0.1409607 0.4805811 -0.5453253 0.1409607 0.4805811 -0.5533834 0.1409607 0.4805811 -0.5611974 0.1409607 0.4805811 -0.5687816 0.1409607 0.4805811 -0.092819 0.1678172 0.4805811 -0.1056428 0.1678172 0.4805811 -0.1201537 0.1678172 0.4805811 -0.1409607 0.1678172 0.4805811 -0.1678172 0.1678172 0.4805811 -0.1950164 0.1678172 0.4805811 -0.2210581 0.1678172 0.4805811 -0.245636 0.1678172 0.4805811 -0.2686816 0.1678172 0.4805811 -0.2902431 0.1678172 0.4805811 -0.3104189 0.1678172 0.4805811 -0.3293248 0.1678172 0.4805811 -0.3470774 0.1678172 0.4805811 -0.3637862 0.1678172 0.4805811 -0.3795513 0.1678172 0.4805811 -0.3944623 0.1678172 0.4805811 -0.4085988 0.1678172 0.4805811 -0.4220313 0.1678172 0.4805811 -0.4348222 0.1678172 0.4805811 -0.4470264 0.1678172 0.4805811 -0.4586928 0.1678172 0.4805811 -0.4698649 0.1678172 0.4805811 -0.4805811 0.1678172 0.4805811 -0.490876 0.1678172 0.4805811 -0.5007803 0.1678172 0.4805811 -0.510322 0.1678172 0.4805811 -0.5195258 0.1678172 0.4805811 -0.5284142 0.1678172 0.4805811 -0.5370079 0.1678172 0.4805811 -0.5453253 0.1678172 0.4805811 -0.5533834 0.1678172 0.4805811 -0.5611974 0.1678172 0.4805811 -0.5687816 0.1678172 0.4805811 -0.092819 0.1950164 0.4805811 -0.1056428 0.1950164 0.4805811 -0.1201537 0.1950164 0.4805811 -0.1409607 0.1950164 0.4805811 -0.1678172 0.1950164 0.4805811 -0.1950164 0.1950164 0.4805811 -0.2210581 0.1950164 0.4805811 -0.245636 0.1950164 0.4805811 -0.2686816 0.1950164 0.4805811 -0.2902431 0.1950164 0.4805811 -0.3104189 0.1950164 0.4805811 -0.3293248 0.1950164 0.4805811 -0.3470774 0.1950164 0.4805811 -0.3637862 0.1950164 0.4805811 -0.3795513 0.1950164 0.4805811 -0.3944623 0.1950164 0.4805811 -0.4085988 0.1950164 0.4805811 -0.4220313 0.1950164 0.4805811 -0.4348222 0.1950164 0.4805811 -0.4470264 0.1950164 0.4805811 -0.4586928 0.1950164 0.4805811 -0.4698649 0.1950164 0.4805811 -0.4805811 0.1950164 0.4805811 -0.490876 0.1950164 0.4805811 -0.5007803 0.1950164 0.4805811 -0.510322 0.1950164 0.4805811 -0.5195258 0.1950164 0.4805811 -0.5284142 0.1950164 0.4805811 -0.5370079 0.1950164 0.4805811 -0.5453253 0.1950164 0.4805811 -0.5533834 0.1950164 0.4805811 -0.5611974 0.1950164 0.4805811 -0.5687816 0.1950164 0.4805811 -0.092819 0.2210581 0.4805811 -0.1056428 0.2210581 0.4805811 -0.1201537 0.2210581 0.4805811 -0.1409607 0.2210581 0.4805811 -0.1678172 0.2210581 0.4805811 -0.1950164 0.2210581 0.4805811 -0.2210581 0.2210581 0.4805811 -0.245636 0.2210581 0.4805811 -0.2686816 0.2210581 0.4805811 -0.2902431 0.2210581 0.4805811 -0.3104189 0.2210581 0.4805811 -0.3293248 0.2210581 0.4805811 -0.3470774 0.2210581 0.4805811 -0.3637862 0.2210581 0.4805811 -0.3795513 0.2210581 0.4805811 -0.3944623 0.2210581 0.4805811 -0.4085988 0.2210581 0.4805811 -0.4220313 0.2210581 0.4805811 -0.4348222 0.2210581 0.4805811 -0.4470264 0.2210581 0.4805811 -0.4586928 0.2210581 0.4805811 -0.4698649 0.2210581 0.4805811 -0.4805811 0.2210581 0.4805811 -0.490876 0.2210581 0.4805811 -0.5007803 0.2210581 0.4805811 -0.510322 0.2210581 0.4805811 -0.5195258 0.2210581 0.4805811 -0.5284142 0.2210581 0.4805811 -0.5370079 0.2210581 0.4805811 -0.5453253 0.2210581 0.4805811 -0.5533834 0.2210581 0.4805811 -0.5611974 0.2210581 0.4805811 -0.5687816 0.2210581 0.4805811 -0.092819 0.245636 0.4805811 -0.1056428 0.245636 0.4805811 -0.1201537 0.245636 0.4805811 -0.1409607 0.245636 0.4805811 -0.1678172 0.245636 0.4805811 -0.1950164 0.245636 0.4805811 -0.2210581 0.245636 0.4805811 -0.245636 0.245636 0.4805811 -0.2686816 0.245636 0.4805811 -0.2902431 0.245636 0.4805811 -0.3104189 0.245636 0.4805811 -0.3293248 0.245636 0.4805811 -0.3470774 0.245636 0.4805811 -0.3637862 0.245636 0.4805811 -0.3795513 0.245636 0.4805811 -0.3944623 0.245636 0.4805811 -0.4085988 0.245636 0.4805811 -0.4220313 0.245636 0.4805811 -0.4348222 0.245636 0.4805811 -0.4470264 0.245636 0.4805811 -0.4586928 0.245636 0.4805811 -0.4698649 0.245636 0.4805811 -0.4805811 0.245636 0.4805811 -0.490876 0.245636 0.4805811 -0.5007803 0.245636 0.4805811 -0.510322 0.245636 0.4805811 -0.5195258 0.245636 0.4805811 -0.5284142 0.245636 0.4805811 -0.5370079 0.245636 0.4805811 -0.5453253 0.245636 0.4805811 -0.5533834 0.245636 0.4805811 -0.5611974 0.245636 0.4805811 -0.5687816 0.245636 0.4805811 -0.092819 0.2686816 0.4805811 -0.1056428 0.2686816 0.4805811 -0.1201537 0.2686816 0.4805811 -0.1409607 0.2686816 0.4805811 -0.1678172 0.2686816 0.4805811 -0.1950164 0.2686816 0.4805811 -0.2210581 0.2686816 0.4805811 -0.245636 0.2686816 0.4805811 -0.2686816 0.2686816 0.4805811 -0.2902431 0.2686816 0.4805811 -0.3104189 0.2686816 0.4805811 -0.3293248 0.2686816 0.4805811 -0.3470774 0.2686816 0.4805811 -0.3637862 0.2686816 0.4805811 -0.3795513 0.2686816 0.4805811 -0.3944623 0.2686816 0.4805811 -0.4085988 0.2686816 0.4805811 -0.4220313 0.2686816 0.4805811 -0.4348222 0.2686816 0.4805811 -0.4470264 0.2686816 0.4805811 -0.4586928 0.2686816 0.4805811 -0.4698649 0.2686816 0.4805811 -0.4805811 0.2686816 0.4805811 -0.490876 0.2686816 0.4805811 -0.5007803 0.2686816 0.4805811 -0.510322 0.2686816 0.4805811 -0.5195258 0.2686816 0.4805811 -0.5284142 0.2686816 0.4805811 -0.5370079 0.2686816 0.4805811 -0.5453253 0.2686816 0.4805811 -0.5533834 0.2686816 0.4805811 -0.5611974 0.2686816 0.4805811 -0.5687816 0.2686816 0.4805811 -0.092819 0.2902431 0.4805811 -0.1056428 0.2902431 0.4805811 -0.1201537 0.2902431 0.4805811 -0.1409607 0.2902431 0.4805811 -0.1678172 0.2902431 0.4805811 -0.1950164 0.2902431 0.4805811 -0.2210581 0.2902431 0.4805811 -0.245636 0.2902431 0.4805811 -0.2686816 0.2902431 0.4805811 -0.2902431 0.2902431 0.4805811 -0.3104189 0.2902431 0.4805811 -0.3293248 0.2902431 0.4805811 -0.3470774 0.2902431 0.4805811 -0.3637862 0.2902431 0.4805811 -0.3795513 0.2902431 0.4805811 -0.3944623 0.2902431 0.4805811 -0.4085988 0.2902431 0.4805811 -0.4220313 0.2902431 0.4805811 -0.4348222 0.2902431 0.4805811 -0.4470264 0.2902431 0.4805811 -0.4586928 0.2902431 0.4805811 -0.4698649 0.2902431 0.4805811 -0.4805811 0.2902431 0.4805811 -0.490876 0.2902431 0.4805811 -0.5007803 0.2902431 0.4805811 -0.510322 0.2902431 0.4805811 -0.5195258 0.2902431 0.4805811 -0.5284142 0.2902431 0.4805811 -0.5370079 0.2902431 0.4805811 -0.5453253 0.2902431 0.4805811 -0.5533834 0.2902431 0.4805811 -0.5611974 0.2902431 0.4805811 -0.5687816 0.2902431 0.4805811 -0.092819 0.3104189 0.4805811 -0.1056428 0.3104189 0.4805811 -0.1201537 0.3104189 0.4805811 -0.1409607 0.3104189 0.4805811 -0.1678172 0.3104189 0.4805811 -0.1950164 0.3104189 0.4805811 -0.2210581 0.3104189 0.4805811 -0.245636 0.3104189 0.4805811 -0.2686816 0.3104189 0.4805811 -0.2902431 0.3104189 0.4805811 -0.3104189 0.3104189 0.4805811 -0.3293248 0.3104189 0.4805811 -0.3470774 0.3104189 0.4805811 -0.3637862 0.3104189 0.4805811 -0.3795513 0.3104189 0.4805811 -0.3944623 0.3104189 0.4805811 -0.4085988 0.3104189 0.4805811 -0.4220313 0.3104189 0.4805811 -0.4348222 0.3104189 0.4805811 -0.4470264 0.3104189 0.4805811 -0.4586928 0.3104189 0.4805811 -0.4698649 0.3104189 0.4805811 -0.4805811 0.3104189 0.4805811 -0.490876 0.3104189 0.4805811 -0.5007803 0.3104189 0.4805811 -0.510322 0.3104189 0.4805811 -0.5195258 0.3104189 0.4805811 -0.5284142 0.3104189 0.4805811 -0.5370079 0.3104189 0.4805811 -0.5453253 0.3104189 0.4805811 -0.5533834 0.3104189 0.4805811 -0.5611974 0.3104189 0.4805811 -0.5687816 0.3104189 0.4805811 -0.092819 0.3293248 0.4805811 -0.1056428 0.3293248 0.4805811 -0.1201537 0.3293248 0.4805811 -0.1409607 0.3293248 0.4805811 -0.1678172 0.3293248 0.4805811 -0.1950164 0.3293248 0.4805811 -0.2210581 0.3293248 0.4805811 -0.245636 0.3293248 0.4805811 -0.2686816 0.3293248 0.4805811 -0.2902431 0.3293248 0.4805811 -0.3104189 0.3293248 0.4805811 -0.3293248 0.3293248 0.4805811 -0.3470774 0.3293248 0.4805811 -0.3637862 0.3293248 0.4805811 -0.3795513 0.3293248 0.4805811 -0.3944623 0.3293248 0.4805811 -0.4085988 0.3293248 0.4805811 -0.4220313 0.3293248 0.4805811 -0.4348222 0.3293248 0.4805811 -0.4470264 0.3293248 0.4805811 -0.4586928 0.3293248 0.4805811 -0.4698649 0.3293248 0.4805811 -0.4805811 0.3293248 0.4805811 -0.490876 0.3293248 0.4805811 -0.5007803 0.3293248 0.4805811 -0.510322 0.3293248 0.4805811 -0.5195258 0.3293248 0.4805811 -0.5284142 0.3293248 0.4805811 -0.5370079 0.3293248 0.4805811 -0.5453253 0.3293248 0.4805811 -0.5533834 0.3293248 0.4805811 -0.5611974 0.3293248 0.4805811 -0.5687816 0.3293248 0.4805811 -0.092819 0.3470774 0.4805811 -0.1056428 0.3470774 0.4805811 -0.1201537 0.3470774 0.4805811 -0.1409607 0.3470774 0.4805811 -0.1678172 0.3470774 0.4805811 -0.1950164 0.3470774 0.4805811 -0.2210581 0.3470774 0.4805811 -0.245636 0.3470774 0.4805811 -0.2686816 0.3470774 0.4805811 -0.2902431 0.3470774 0.4805811 -0.3104189 0.3470774 0.4805811 -0.3293248 0.3470774 0.4805811 -0.3470774 0.3470774 0.4805811 -0.3637862 0.3470774 0.4805811 -0.3795513 0.3470774 0.4805811 -0.3944623 0.3470774 0.4805811 -0.4085988 0.3470774 0.4805811 -0.4220313 0.3470774 0.4805811 -0.4348222 0.3470774 0.4805811 -0.4470264 0.3470774 0.4805811 -0.4586928 0.3470774 0.4805811 -0.4698649 0.3470774 0.4805811 -0.4805811 0.3470774 0.4805811 -0.490876 0.3470774 0.4805811 -0.5007803 0.3470774 0.4805811 -0.510322 0.3470774 0.4805811 -0.5195258 0.3470774 0.4805811 -0.5284142 0.3470774 0.4805811 -0.5370079 0.3470774 0.4805811 -0.5453253 0.3470774 0.4805811 -0.5533834 0.3470774 0.4805811 -0.5611974 0.3470774 0.4805811 -0.5687816 0.3470774 0.4805811 -0.092819 0.3637862 0.4805811 -0.1056428 0.3637862 0.4805811 -0.1201537 0.3637862 0.4805811 -0.1409607 0.3637862 0.4805811 -0.1678172 0.3637862 0.4805811 -0.1950164 0.3637862 0.4805811 -0.2210581 0.3637862 0.4805811 -0.245636 0.3637862 0.4805811 -0.2686816 0.3637862 0.4805811 -0.2902431 0.3637862 0.4805811 -0.3104189 0.3637862 0.4805811 -0.3293248 0.3637862 0.4805811 -0.3470774 0.3637862 0.4805811 -0.3637862 0.3637862 0.4805811 -0.3795513 0.3637862 0.4805811 -0.3944623 0.3637862 0.4805811 -0.4085988 0.3637862 0.4805811 -0.4220313 0.3637862 0.4805811 -0.4348222 0.3637862 0.4805811 -0.4470264 0.3637862 0.4805811 -0.4586928 0.3637862 0.4805811 -0.4698649 0.3637862 0.4805811 -0.4805811 0.3637862 0.4805811 -0.490876 0.3637862 0.4805811 -0.5007803 0.3637862 0.4805811 -0.510322 0.3637862 0.4805811 -0.5195258 0.3637862 0.4805811 -0.5284142 0.3637862 0.4805811 -0.5370079 0.3637862 0.4805811 -0.5453253 0.3637862 0.4805811 -0.5533834 0.3637862 0.4805811 -0.5611974 0.3637862 0.4805811 -0.5687816 0.3637862 0.4805811 -0.092819 0.3795513 0.4805811 -0.1056428 0.3795513 0.4805811 -0.1201537 0.3795513 0.4805811 -0.1409607 0.3795513 0.4805811 -0.1678172 0.3795513 0.4805811 -0.1950164 0.3795513 0.4805811 -0.2210581 0.3795513 0.4805811 -0.245636 0.3795513 0.4805811 -0.2686816 0.3795513 0.4805811 -0.2902431 0.3795513 0.4805811 -0.3104189 0.3795513 0.4805811 -0.3293248 0.3795513 0.4805811 -0.3470774 0.3795513 0.4805811 -0.3637862 0.3795513 0.4805811 -0.3795513 0.3795513 0.4805811 -0.3944623 0.3795513 0.4805811 -0.4085988 0.3795513 0.4805811 -0.4220313 0.3795513 0.4805811 -0.4348222 0.3795513 0.4805811 -0.4470264 0.3795513 0.4805811 -0.4586928 0.3795513 0.4805811 -0.4698649 0.3795513 0.4805811 -0.4805811 0.3795513 0.4805811 -0.490876 0.3795513 0.4805811 -0.5007803 0.3795513 0.4805811 -0.510322 0.3795513 0.4805811 -0.5195258 0.3795513 0.4805811 -0.5284142 0.3795513 0.4805811 -0.5370079 0.3795513 0.4805811 -0.5453253 0.3795513 0.4805811 -0.5533834 0.3795513 0.4805811 -0.5611974 0.3795513 0.4805811 -0.5687816 0.3795513 0.4805811 -0.092819 0.3944623 0.4805811 -0.1056428 0.3944623 0.4805811 -0.1201537 0.3944623 0.4805811 -0.1409607 0.3944623 0.4805811 -0.1678172 0.3944623 0.4805811 -0.1950164 0.3944623 0.4805811 -0.2210581 0.3944623 0.4805811 -0.245636 0.3944623 0.4805811 -0.2686816 0.3944623 0.4805811 -0.2902431 0.3944623 0.4805811 -0.3104189 0.3944623 0.4805811 -0.3293248 0.3944623 0.4805811 -0.3470774 0.3944623 0.4805811 -0.3637862 0.3944623 0.4805811 -0.3795513 0.3944623 0.4805811 -0.3944623 0.3944623 0.4805811 -0.4085988 0.3944623 0.4805811 -0.4220313 0.3944623 0.4805811 -0.4348222 0.3944623 0.4805811 -0.4470264 0.3944623 0.4805811 -0.4586928 0.3944623 0.4805811 -0.4698649 0.3944623 0.4805811 -0.4805811 0.3944623 0.4805811 -0.490876 0.3944623 0.4805811 -0.5007803 0.3944623 0.4805811 -0.510322 0.3944623 0.4805811 -0.5195258 0.3944623 0.4805811 -0.5284142 0.3944623 0.4805811 -0.5370079 0.3944623 0.4805811 -0.5453253 0.3944623 0.4805811 -0.5533834 0.3944623 0.4805811 -0.5611974 0.3944623 0.4805811 -0.5687816 0.3944623 0.4805811 -0.092819 0.4085988 0.4805811 -0.1056428 0.4085988 0.4805811 -0.1201537 0.4085988 0.4805811 -0.1409607 0.4085988 0.4805811 -0.1678172 0.4085988 0.4805811 -0.1950164 0.4085988 0.4805811 -0.2210581 0.4085988 0.4805811 -0.245636 0.4085988 0.4805811 -0.2686816 0.4085988 0.4805811 -0.2902431 0.4085988 0.4805811 -0.3104189 0.4085988 0.4805811 -0.3293248 0.4085988 0.4805811 -0.3470774 0.4085988 0.4805811 -0.3637862 0.4085988 0.4805811 -0.3795513 0.4085988 0.4805811 -0.3944623 0.4085988 0.4805811 -0.4085988 0.4085988 0.4805811 -0.4220313 0.4085988 0.4805811 -0.4348222 0.4085988 0.4805811 -0.4470264 0.4085988 0.4805811 -0.4586928 0.4085988 0.4805811 -0.4698649 0.4085988 0.4805811 -0.4805811 0.4085988 0.4805811 -0.490876 0.4085988 0.4805811 -0.5007803 0.4085988 0.4805811 -0.510322 0.4085988 0.4805811 -0.5195258 0.4085988 0.4805811 -0.5284142 0.4085988 0.4805811 -0.5370079 0.4085988 0.4805811 -0.5453253 0.4085988 0.4805811 -0.5533834 0.4085988 0.4805811 -0.5611974 0.4085988 0.4805811 -0.5687816 0.4085988 0.4805811 -0.092819 0.4220313 0.4805811 -0.1056428 0.4220313 0.4805811 -0.1201537 0.4220313 0.4805811 -0.1409607 0.4220313 0.4805811 -0.1678172 0.4220313 0.4805811 -0.1950164 0.4220313 0.4805811 -0.2210581 0.4220313 0.4805811 -0.245636 0.4220313 0.4805811 -0.2686816 0.4220313 0.4805811 -0.2902431 0.4220313 0.4805811 -0.3104189 0.4220313 0.4805811 -0.3293248 0.4220313 0.4805811 -0.3470774 0.4220313 0.4805811 -0.3637862 0.4220313 0.4805811 -0.3795513 0.4220313 0.4805811 -0.3944623 0.4220313 0.4805811 -0.4085988 0.4220313 0.4805811 -0.4220313 0.4220313 0.4805811 -0.4348222 0.4220313 0.4805811 -0.4470264 0.4220313 0.4805811 -0.4586928 0.4220313 0.4805811 -0.4698649 0.4220313 0.4805811 -0.4805811 0.4220313 0.4805811 -0.490876 0.4220313 0.4805811 -0.5007803 0.4220313 0.4805811 -0.510322 0.4220313 0.4805811 -0.5195258 0.4220313 0.4805811 -0.5284142 0.4220313 0.4805811 -0.5370079 0.4220313 0.4805811 -0.5453253 0.4220313 0.4805811 -0.5533834 0.4220313 0.4805811 -0.5611974 0.4220313 0.4805811 -0.5687816 0.4220313 0.4805811 -0.092819 0.4348222 0.4805811 -0.1056428 0.4348222 0.4805811 -0.1201537 0.4348222 0.4805811 -0.1409607 0.4348222 0.4805811 -0.1678172 0.4348222 0.4805811 -0.1950164 0.4348222 0.4805811 -0.2210581 0.4348222 0.4805811 -0.245636 0.4348222 0.4805811 -0.2686816 0.4348222 0.4805811 -0.2902431 0.4348222 0.4805811 -0.3104189 0.4348222 0.4805811 -0.3293248 0.4348222 0.4805811 -0.3470774 0.4348222 0.4805811 -0.3637862 0.4348222 0.4805811 -0.3795513 0.4348222 0.4805811 -0.3944623 0.4348222 0.4805811 -0.4085988 0.4348222 0.4805811 -0.4220313 0.4348222 0.4805811 -0.4348222 0.4348222 0.4805811 -0.4470264 0.4348222 0.4805811 -0.4586928 0.4348222 0.4805811 -0.4698649 0.4348222 0.4805811 -0.4805811 0.4348222 0.4805811 -0.490876 0.4348222 0.4805811 -0.5007803 0.4348222 0.4805811 -0.510322 0.4348222 0.4805811 -0.5195258 0.4348222 0.4805811 -0.5284142 0.4348222 0.4805811 -0.5370079 0.4348222 0.4805811 -0.5453253 0.4348222 0.4805811 -0.5533834 0.4348222 0.4805811 -0.5611974 0.4348222 0.4805811 -0.5687816 0.4348222 0.4805811 -0.092819 0.4470264 0.4805811 -0.1056428 0.4470264 0.4805811 -0.1201537 0.4470264 0.4805811 -0.1409607 0.4470264 0.4805811 -0.1678172 0.4470264 0.4805811 -0.1950164 0.4470264 0.4805811 -0.2210581 0.4470264 0.4805811 -0.245636 0.4470264 0.4805811 -0.2686816 0.4470264 0.4805811 -0.2902431 0.4470264 0.4805811 -0.3104189 0.4470264 0.4805811 -0.3293248 0.4470264 0.4805811 -0.3470774 0.4470264 0.4805811 -0.3637862 0.4470264 0.4805811 -0.3795513 0.4470264 0.4805811 -0.3944623 0.4470264 0.4805811 -0.4085988 0.4470264 0.4805811 -0.4220313 0.4470264 0.4805811 -0.4348222 0.4470264 0.4805811 -0.4470264 0.4470264 0.4805811 -0.4586928 0.4470264 0.4805811 -0.4698649 0.4470264 0.4805811 -0.4805811 0.4470264 0.4805811 -0.490876 0.4470264 0.4805811 -0.5007803 0.4470264 0.4805811 -0.510322 0.4470264 0.4805811 -0.5195258 0.4470264 0.4805811 -0.5284142 0.4470264 0.4805811 -0.5370079 0.4470264 0.4805811 -0.5453253 0.4470264 0.4805811 -0.5533834 0.4470264 0.4805811 -0.5611974 0.4470264 0.4805811 -0.5687816 0.4470264 0.4805811 -0.092819 0.4586928 0.4805811 -0.1056428 0.4586928 0.4805811 -0.1201537 0.4586928 0.4805811 -0.1409607 0.4586928 0.4805811 -0.1678172 0.4586928 0.4805811 -0.1950164 0.4586928 0.4805811 -0.2210581 0.4586928 0.4805811 -0.245636 0.4586928 0.4805811 -0.2686816 0.4586928 0.4805811 -0.2902431 0.4586928 0.4805811 -0.3104189 0.4586928 0.4805811 -0.3293248 0.4586928 0.4805811 -0.3470774 0.4586928 0.4805811 -0.3637862 0.4586928 0.4805811 -0.3795513 0.4586928 0.4805811 -0.3944623 0.4586928 0.4805811 -0.4085988 0.4586928 0.4805811 -0.4220313 0.4586928 0.4805811 -0.4348222 0.4586928 0.4805811 -0.4470264 0.4586928 0.4805811 -0.4586928 0.4586928 0.4805811 -0.4698649 0.4586928 0.4805811 -0.4805811 0.4586928 0.4805811 -0.490876 0.4586928 0.4805811 -0.5007803 0.4586928 0.4805811 -0.510322 0.4586928 0.4805811 -0.5195258 0.4586928 0.4805811 -0.5284142 0.4586928 0.4805811 -0.5370079 0.4586928 0.4805811 -0.5453253 0.4586928 0.4805811 -0.5533834 0.4586928 0.4805811 -0.5611974 0.4586928 0.4805811 -0.5687816 0.4586928 0.4805811 -0.092819 0.4698649 0.4805811 -0.1056428 0.4698649 0.4805811 -0.1201537 0.4698649 0.4805811 -0.1409607 0.4698649 0.4805811 -0.1678172 0.4698649 0.4805811 -0.1950164 0.4698649 0.4805811 -0.2210581 0.4698649 0.4805811 -0.245636 0.4698649 0.4805811 -0.2686816 0.4698649 0.4805811 -0.2902431 0.4698649 0.4805811 -0.3104189 0.4698649 0.4805811 -0.3293248 0.4698649 0.4805811 -0.3470774 0.4698649 0.4805811 -0.3637862 0.4698649 0.4805811 -0.3795513 0.4698649 0.4805811 -0.3944623 0.4698649 0.4805811 -0.4085988 0.4698649 0.4805811 -0.4220313 0.4698649 0.4805811 -0.4348222 0.4698649 0.4805811 -0.4470264 0.4698649 0.4805811 -0.4586928 0.4698649 0.4805811 -0.4698649 0.4698649 0.4805811 -0.4805811 0.4698649 0.4805811 -0.490876 0.4698649 0.4805811 -0.5007803 0.4698649 0.4805811 -0.510322 0.4698649 0.4805811 -0.5195258 0.4698649 0.4805811 -0.5284142 0.4698649 0.4805811 -0.5370079 0.4698649 0.4805811 -0.5453253 0.4698649 0.4805811 -0.5533834 0.4698649 0.4805811 -0.5611974 0.4698649 0.4805811 -0.5687816 0.4698649 0.4805811 -0.092819 0.4805811 0.4805811 -0.1056428 0.4805811 0.4805811 -0.1201537 0.4805811 0.4805811 -0.1409607 0.4805811 0.4805811 -0.1678172 0.4805811 0.4805811 -0.1950164 0.4805811 0.4805811 -0.2210581 0.4805811 0.4805811 -0.245636 0.4805811 0.4805811 -0.2686816 0.4805811 0.4805811 -0.2902431 0.4805811 0.4805811 -0.3104189 0.4805811 0.4805811 -0.3293248 0.4805811 0.4805811 -0.3470774 0.4805811 0.4805811 -0.3637862 0.4805811 0.4805811 -0.3795513 0.4805811 0.4805811 -0.3944623 0.4805811 0.4805811 -0.4085988 0.4805811 0.4805811 -0.4220313 0.4805811 0.4805811 -0.4348222 0.4805811 0.4805811 -0.4470264 0.4805811 0.4805811 -0.4586928 0.4805811 0.4805811 -0.4698649 0.4805811 0.4805811 -0.4805811 0.4805811 0.4805811 -0.490876 0.4805811 0.4805811 -0.5007803 0.4805811 0.4805811 -0.510322 0.4805811 0.4805811 -0.5195258 0.4805811 0.4805811 -0.5284142 0.4805811 0.4805811 -0.5370079 0.4805811 0.4805811 -0.5453253 0.4805811 0.4805811 -0.5533834 0.4805811 0.4805811 -0.5611974 0.4805811 0.4805811 -0.5687816 0.4805811 0.4805811 -0.092819 0.490876 0.4805811 -0.1056428 0.490876 0.4805811 -0.1201537 0.490876 0.4805811 -0.1409607 0.490876 0.4805811 -0.1678172 0.490876 0.4805811 -0.1950164 0.490876 0.4805811 -0.2210581 0.490876 0.4805811 -0.245636 0.490876 0.4805811 -0.2686816 0.490876 0.4805811 -0.2902431 0.490876 0.4805811 -0.3104189 0.490876 0.4805811 -0.3293248 0.490876 0.4805811 -0.3470774 0.490876 0.4805811 -0.3637862 0.490876 0.4805811 -0.3795513 0.490876 0.4805811 -0.3944623 0.490876 0.4805811 -0.4085988 0.490876 0.4805811 -0.4220313 0.490876 0.4805811 -0.4348222 0.490876 0.4805811 -0.4470264 0.490876 0.4805811 -0.4586928 0.490876 0.4805811 -0.4698649 0.490876 0.4805811 -0.4805811 0.490876 0.4805811 -0.490876 0.490876 0.4805811 -0.5007803 0.490876 0.4805811 -0.510322 0.490876 0.4805811 -0.5195258 0.490876 0.4805811 -0.5284142 0.490876 0.4805811 -0.5370079 0.490876 0.4805811 -0.5453253 0.490876 0.4805811 -0.5533834 0.490876 0.4805811 -0.5611974 0.490876 0.4805811 -0.5687816 0.490876 0.4805811 -0.092819 0.5007803 0.4805811 -0.1056428 0.5007803 0.4805811 -0.1201537 0.5007803 0.4805811 -0.1409607 0.5007803 0.4805811 -0.1678172 0.5007803 0.4805811 -0.1950164 0.5007803 0.4805811 -0.2210581 0.5007803 0.4805811 -0.245636 0.5007803 0.4805811 -0.2686816 0.5007803 0.4805811 -0.2902431 0.5007803 0.4805811 -0.3104189 0.5007803 0.4805811 -0.3293248 0.5007803 0.4805811 -0.3470774 0.5007803 0.4805811 -0.3637862 0.5007803 0.4805811 -0.3795513 0.5007803 0.4805811 -0.3944623 0.5007803 0.4805811 -0.4085988 0.5007803 0.4805811 -0.4220313 0.5007803 0.4805811 -0.4348222 0.5007803 0.4805811 -0.4470264 0.5007803 0.4805811 -0.4586928 0.5007803 0.4805811 -0.4698649 0.5007803 0.4805811 -0.4805811 0.5007803 0.4805811 -0.490876 0.5007803 0.4805811 -0.5007803 0.5007803 0.4805811 -0.510322 0.5007803 0.4805811 -0.5195258 0.5007803 0.4805811 -0.5284142 0.5007803 0.4805811 -0.5370079 0.5007803 0.4805811 -0.5453253 0.5007803 0.4805811 -0.5533834 0.5007803 0.4805811 -0.5611974 0.5007803 0.4805811 -0.5687816 0.5007803 0.4805811 -0.092819 0.510322 0.4805811 -0.1056428 0.510322 0.4805811 -0.1201537 0.510322 0.4805811 -0.1409607 0.510322 0.4805811 -0.1678172 0.510322 0.4805811 -0.1950164 0.510322 0.4805811 -0.2210581 0.510322 0.4805811 -0.245636 0.510322 0.4805811 -0.2686816 0.510322 0.4805811 -0.2902431 0.510322 0.4805811 -0.3104189 0.510322 0.4805811 -0.3293248 0.510322 0.4805811 -0.3470774 0.510322 0.4805811 -0.3637862 0.510322 0.4805811 -0.3795513 0.510322 0.4805811 -0.3944623 0.510322 0.4805811 -0.4085988 0.510322 0.4805811 -0.4220313 0.510322 0.4805811 -0.4348222 0.510322 0.4805811 -0.4470264 0.510322 0.4805811 -0.4586928 0.510322 0.4805811 -0.4698649 0.510322 0.4805811 -0.4805811 0.510322 0.4805811 -0.490876 0.510322 0.4805811 -0.5007803 0.510322 0.4805811 -0.510322 0.510322 0.4805811 -0.5195258 0.510322 0.4805811 -0.5284142 0.510322 0.4805811 -0.5370079 0.510322 0.4805811 -0.5453253 0.510322 0.4805811 -0.5533834 0.510322 0.4805811 -0.5611974 0.510322 0.4805811 -0.5687816 0.510322 0.4805811 -0.092819 0.5195258 0.4805811 -0.1056428 0.5195258 0.4805811 -0.1201537 0.5195258 0.4805811 -0.1409607 0.5195258 0.4805811 -0.1678172 0.5195258 0.4805811 -0.1950164 0.5195258 0.4805811 -0.2210581 0.5195258 0.4805811 -0.245636 0.5195258 0.4805811 -0.2686816 0.5195258 0.4805811 -0.2902431 0.5195258 0.4805811 -0.3104189 0.5195258 0.4805811 -0.3293248 0.5195258 0.4805811 -0.3470774 0.5195258 0.4805811 -0.3637862 0.5195258 0.4805811 -0.3795513 0.5195258 0.4805811 -0.3944623 0.5195258 0.4805811 -0.4085988 0.5195258 0.4805811 -0.4220313 0.5195258 0.4805811 -0.4348222 0.5195258 0.4805811 -0.4470264 0.5195258 0.4805811 -0.4586928 0.5195258 0.4805811 -0.4698649 0.5195258 0.4805811 -0.4805811 0.5195258 0.4805811 -0.490876 0.5195258 0.4805811 -0.5007803 0.5195258 0.4805811 -0.510322 0.5195258 0.4805811 -0.5195258 0.5195258 0.4805811 -0.5284142 0.5195258 0.4805811 -0.5370079 0.5195258 0.4805811 -0.5453253 0.5195258 0.4805811 -0.5533834 0.5195258 0.4805811 -0.5611974 0.5195258 0.4805811 -0.5687816 0.5195258 0.4805811 -0.092819 0.5284142 0.4805811 -0.1056428 0.5284142 0.4805811 -0.1201537 0.5284142 0.4805811 -0.1409607 0.5284142 0.4805811 -0.1678172 0.5284142 0.4805811 -0.1950164 0.5284142 0.4805811 -0.2210581 0.5284142 0.4805811 -0.245636 0.5284142 0.4805811 -0.2686816 0.5284142 0.4805811 -0.2902431 0.5284142 0.4805811 -0.3104189 0.5284142 0.4805811 -0.3293248 0.5284142 0.4805811 -0.3470774 0.5284142 0.4805811 -0.3637862 0.5284142 0.4805811 -0.3795513 0.5284142 0.4805811 -0.3944623 0.5284142 0.4805811 -0.4085988 0.5284142 0.4805811 -0.4220313 0.5284142 0.4805811 -0.4348222 0.5284142 0.4805811 -0.4470264 0.5284142 0.4805811 -0.4586928 0.5284142 0.4805811 -0.4698649 0.5284142 0.4805811 -0.4805811 0.5284142 0.4805811 -0.490876 0.5284142 0.4805811 -0.5007803 0.5284142 0.4805811 -0.510322 0.5284142 0.4805811 -0.5195258 0.5284142 0.4805811 -0.5284142 0.5284142 0.4805811 -0.5370079 0.5284142 0.4805811 -0.5453253 0.5284142 0.4805811 -0.5533834 0.5284142 0.4805811 -0.5611974 0.5284142 0.4805811 -0.5687816 0.5284142 0.4805811 -0.092819 0.5370079 0.4805811 -0.1056428 0.5370079 0.4805811 -0.1201537 0.5370079 0.4805811 -0.1409607 0.5370079 0.4805811 -0.1678172 0.5370079 0.4805811 -0.1950164 0.5370079 0.4805811 -0.2210581 0.5370079 0.4805811 -0.245636 0.5370079 0.4805811 -0.2686816 0.5370079 0.4805811 -0.2902431 0.5370079 0.4805811 -0.3104189 0.5370079 0.4805811 -0.3293248 0.5370079 0.4805811 -0.3470774 0.5370079 0.4805811 -0.3637862 0.5370079 0.4805811 -0.3795513 0.5370079 0.4805811 -0.3944623 0.5370079 0.4805811 -0.4085988 0.5370079 0.4805811 -0.4220313 0.5370079 0.4805811 -0.4348222 0.5370079 0.4805811 -0.4470264 0.5370079 0.4805811 -0.4586928 0.5370079 0.4805811 -0.4698649 0.5370079 0.4805811 -0.4805811 0.5370079 0.4805811 -0.490876 0.5370079 0.4805811 -0.5007803 0.5370079 0.4805811 -0.510322 0.5370079 0.4805811 -0.5195258 0.5370079 0.4805811 -0.5284142 0.5370079 0.4805811 -0.5370079 0.5370079 0.4805811 -0.5453253 0.5370079 0.4805811 -0.5533834 0.5370079 0.4805811 -0.5611974 0.5370079 0.4805811 -0.5687816 0.5370079 0.4805811 -0.092819 0.5453253 0.4805811 -0.1056428 0.5453253 0.4805811 -0.1201537 0.5453253 0.4805811 -0.1409607 0.5453253 0.4805811 -0.1678172 0.5453253 0.4805811 -0.1950164 0.5453253 0.4805811 -0.2210581 0.5453253 0.4805811 -0.245636 0.5453253 0.4805811 -0.2686816 0.5453253 0.4805811 -0.2902431 0.5453253 0.4805811 -0.3104189 0.5453253 0.4805811 -0.3293248 0.5453253 0.4805811 -0.3470774 0.5453253 0.4805811 -0.3637862 0.5453253 0.4805811 -0.3795513 0.5453253 0.4805811 -0.3944623 0.5453253 0.4805811 -0.4085988 0.5453253 0.4805811 -0.4220313 0.5453253 0.4805811 -0.4348222 0.5453253 0.4805811 -0.4470264 0.5453253 0.4805811 -0.4586928 0.5453253 0.4805811 -0.4698649 0.5453253 0.4805811 -0.4805811 0.5453253 0.4805811 -0.490876 0.5453253 0.4805811 -0.5007803 0.5453253 0.4805811 -0.510322 0.5453253 0.4805811 -0.5195258 0.5453253 0.4805811 -0.5284142 0.5453253 0.4805811 -0.5370079 0.5453253 0.4805811 -0.5453253 0.5453253 0.4805811 -0.5533834 0.5453253 0.4805811 -0.5611974 0.5453253 0.4805811 -0.5687816 0.5453253 0.4805811 -0.092819 0.5533834 0.4805811 -0.1056428 0.5533834 0.4805811 -0.1201537 0.5533834 0.4805811 -0.1409607 0.5533834 0.4805811 -0.1678172 0.5533834 0.4805811 -0.1950164 0.5533834 0.4805811 -0.2210581 0.5533834 0.4805811 -0.245636 0.5533834 0.4805811 -0.2686816 0.5533834 0.4805811 -0.2902431 0.5533834 0.4805811 -0.3104189 0.5533834 0.4805811 -0.3293248 0.5533834 0.4805811 -0.3470774 0.5533834 0.4805811 -0.3637862 0.5533834 0.4805811 -0.3795513 0.5533834 0.4805811 -0.3944623 0.5533834 0.4805811 -0.4085988 0.5533834 0.4805811 -0.4220313 0.5533834 0.4805811 -0.4348222 0.5533834 0.4805811 -0.4470264 0.5533834 0.4805811 -0.4586928 0.5533834 0.4805811 -0.4698649 0.5533834 0.4805811 -0.4805811 0.5533834 0.4805811 -0.490876 0.5533834 0.4805811 -0.5007803 0.5533834 0.4805811 -0.510322 0.5533834 0.4805811 -0.5195258 0.5533834 0.4805811 -0.5284142 0.5533834 0.4805811 -0.5370079 0.5533834 0.4805811 -0.5453253 0.5533834 0.4805811 -0.5533834 0.5533834 0.4805811 -0.5611974 0.5533834 0.4805811 -0.5687816 0.5533834 0.4805811 -0.092819 0.5611974 0.4805811 -0.1056428 0.5611974 0.4805811 -0.1201537 0.5611974 0.4805811 -0.1409607 0.5611974 0.4805811 -0.1678172 0.5611974 0.4805811 -0.1950164 0.5611974 0.4805811 -0.2210581 0.5611974 0.4805811 -0.245636 0.5611974 0.4805811 -0.2686816 0.5611974 0.4805811 -0.2902431 0.5611974 0.4805811 -0.3104189 0.5611974 0.4805811 -0.3293248 0.5611974 0.4805811 -0.3470774 0.5611974 0.4805811 -0.3637862 0.5611974 0.4805811 -0.3795513 0.5611974 0.4805811 -0.3944623 0.5611974 0.4805811 -0.4085988 0.5611974 0.4805811 -0.4220313 0.5611974 0.4805811 -0.4348222 0.5611974 0.4805811 -0.4470264 0.5611974 0.4805811 -0.4586928 0.5611974 0.4805811 -0.4698649 0.5611974 0.4805811 -0.4805811 0.5611974 0.4805811 -0.490876 0.5611974 0.4805811 -0.5007803 0.5611974 0.4805811 -0.510322 0.5611974 0.4805811 -0.5195258 0.5611974 0.4805811 -0.5284142 0.5611974 0.4805811 -0.5370079 0.5611974 0.4805811 -0.5453253 0.5611974 0.4805811 -0.5533834 0.5611974 0.4805811 -0.5611974 0.5611974 0.4805811 -0.5687816 0.5611974 0.4805811 -0.092819 0.5687816 0.4805811 -0.1056428 0.5687816 0.4805811 -0.1201537 0.5687816 0.4805811 -0.1409607 0.5687816 0.4805811 -0.1678172 0.5687816 0.4805811 -0.1950164 0.5687816 0.4805811 -0.2210581 0.5687816 0.4805811 -0.245636 0.5687816 0.4805811 -0.2686816 0.5687816 0.4805811 -0.2902431 0.5687816 0.4805811 -0.3104189 0.5687816 0.4805811 -0.3293248 0.5687816 0.4805811 -0.3470774 0.5687816 0.4805811 -0.3637862 0.5687816 0.4805811 -0.3795513 0.5687816 0.4805811 -0.3944623 0.5687816 0.4805811 -0.4085988 0.5687816 0.4805811 -0.4220313 0.5687816 0.4805811 -0.4348222 0.5687816 0.4805811 -0.4470264 0.5687816 0.4805811 -0.4586928 0.5687816 0.4805811 -0.4698649 0.5687816 0.4805811 -0.4805811 0.5687816 0.4805811 -0.490876 0.5687816 0.4805811 -0.5007803 0.5687816 0.4805811 -0.510322 0.5687816 0.4805811 -0.5195258 0.5687816 0.4805811 -0.5284142 0.5687816 0.4805811 -0.5370079 0.5687816 0.4805811 -0.5453253 0.5687816 0.4805811 -0.5533834 0.5687816 0.4805811 -0.5611974 0.5687816 0.4805811 -0.5687816 0.5687816 0.4805811 -0.092819 0.092819 0.490876 -0.1056428 0.092819 0.490876 -0.1201537 0.092819 0.490876 -0.1409607 0.092819 0.490876 -0.1678172 0.092819 0.490876 -0.1950164 0.092819 0.490876 -0.2210581 0.092819 0.490876 -0.245636 0.092819 0.490876 -0.2686816 0.092819 0.490876 -0.2902431 0.092819 0.490876 -0.3104189 0.092819 0.490876 -0.3293248 0.092819 0.490876 -0.3470774 0.092819 0.490876 -0.3637862 0.092819 0.490876 -0.3795513 0.092819 0.490876 -0.3944623 0.092819 0.490876 -0.4085988 0.092819 0.490876 -0.4220313 0.092819 0.490876 -0.4348222 0.092819 0.490876 -0.4470264 0.092819 0.490876 -0.4586928 0.092819 0.490876 -0.4698649 0.092819 0.490876 -0.4805811 0.092819 0.490876 -0.490876 0.092819 0.490876 -0.5007803 0.092819 0.490876 -0.510322 0.092819 0.490876 -0.5195258 0.092819 0.490876 -0.5284142 0.092819 0.490876 -0.5370079 0.092819 0.490876 -0.5453253 0.092819 0.490876 -0.5533834 0.092819 0.490876 -0.5611974 0.092819 0.490876 -0.5687816 0.092819 0.490876 -0.092819 0.1056428 0.490876 -0.1056428 0.1056428 0.490876 -0.1201537 0.1056428 0.490876 -0.1409607 0.1056428 0.490876 -0.1678172 0.1056428 0.490876 -0.1950164 0.1056428 0.490876 -0.2210581 0.1056428 0.490876 -0.245636 0.1056428 0.490876 -0.2686816 0.1056428 0.490876 -0.2902431 0.1056428 0.490876 -0.3104189 0.1056428 0.490876 -0.3293248 0.1056428 0.490876 -0.3470774 0.1056428 0.490876 -0.3637862 0.1056428 0.490876 -0.3795513 0.1056428 0.490876 -0.3944623 0.1056428 0.490876 -0.4085988 0.1056428 0.490876 -0.4220313 0.1056428 0.490876 -0.4348222 0.1056428 0.490876 -0.4470264 0.1056428 0.490876 -0.4586928 0.1056428 0.490876 -0.4698649 0.1056428 0.490876 -0.4805811 0.1056428 0.490876 -0.490876 0.1056428 0.490876 -0.5007803 0.1056428 0.490876 -0.510322 0.1056428 0.490876 -0.5195258 0.1056428 0.490876 -0.5284142 0.1056428 0.490876 -0.5370079 0.1056428 0.490876 -0.5453253 0.1056428 0.490876 -0.5533834 0.1056428 0.490876 -0.5611974 0.1056428 0.490876 -0.5687816 0.1056428 0.490876 -0.092819 0.1201537 0.490876 -0.1056428 0.1201537 0.490876 -0.1201537 0.1201537 0.490876 -0.1409607 0.1201537 0.490876 -0.1678172 0.1201537 0.490876 -0.1950164 0.1201537 0.490876 -0.2210581 0.1201537 0.490876 -0.245636 0.1201537 0.490876 -0.2686816 0.1201537 0.490876 -0.2902431 0.1201537 0.490876 -0.3104189 0.1201537 0.490876 -0.3293248 0.1201537 0.490876 -0.3470774 0.1201537 0.490876 -0.3637862 0.1201537 0.490876 -0.3795513 0.1201537 0.490876 -0.3944623 0.1201537 0.490876 -0.4085988 0.1201537 0.490876 -0.4220313 0.1201537 0.490876 -0.4348222 0.1201537 0.490876 -0.4470264 0.1201537 0.490876 -0.4586928 0.1201537 0.490876 -0.4698649 0.1201537 0.490876 -0.4805811 0.1201537 0.490876 -0.490876 0.1201537 0.490876 -0.5007803 0.1201537 0.490876 -0.510322 0.1201537 0.490876 -0.5195258 0.1201537 0.490876 -0.5284142 0.1201537 0.490876 -0.5370079 0.1201537 0.490876 -0.5453253 0.1201537 0.490876 -0.5533834 0.1201537 0.490876 -0.5611974 0.1201537 0.490876 -0.5687816 0.1201537 0.490876 -0.092819 0.1409607 0.490876 -0.1056428 0.1409607 0.490876 -0.1201537 0.1409607 0.490876 -0.1409607 0.1409607 0.490876 -0.1678172 0.1409607 0.490876 -0.1950164 0.1409607 0.490876 -0.2210581 0.1409607 0.490876 -0.245636 0.1409607 0.490876 -0.2686816 0.1409607 0.490876 -0.2902431 0.1409607 0.490876 -0.3104189 0.1409607 0.490876 -0.3293248 0.1409607 0.490876 -0.3470774 0.1409607 0.490876 -0.3637862 0.1409607 0.490876 -0.3795513 0.1409607 0.490876 -0.3944623 0.1409607 0.490876 -0.4085988 0.1409607 0.490876 -0.4220313 0.1409607 0.490876 -0.4348222 0.1409607 0.490876 -0.4470264 0.1409607 0.490876 -0.4586928 0.1409607 0.490876 -0.4698649 0.1409607 0.490876 -0.4805811 0.1409607 0.490876 -0.490876 0.1409607 0.490876 -0.5007803 0.1409607 0.490876 -0.510322 0.1409607 0.490876 -0.5195258 0.1409607 0.490876 -0.5284142 0.1409607 0.490876 -0.5370079 0.1409607 0.490876 -0.5453253 0.1409607 0.490876 -0.5533834 0.1409607 0.490876 -0.5611974 0.1409607 0.490876 -0.5687816 0.1409607 0.490876 -0.092819 0.1678172 0.490876 -0.1056428 0.1678172 0.490876 -0.1201537 0.1678172 0.490876 -0.1409607 0.1678172 0.490876 -0.1678172 0.1678172 0.490876 -0.1950164 0.1678172 0.490876 -0.2210581 0.1678172 0.490876 -0.245636 0.1678172 0.490876 -0.2686816 0.1678172 0.490876 -0.2902431 0.1678172 0.490876 -0.3104189 0.1678172 0.490876 -0.3293248 0.1678172 0.490876 -0.3470774 0.1678172 0.490876 -0.3637862 0.1678172 0.490876 -0.3795513 0.1678172 0.490876 -0.3944623 0.1678172 0.490876 -0.4085988 0.1678172 0.490876 -0.4220313 0.1678172 0.490876 -0.4348222 0.1678172 0.490876 -0.4470264 0.1678172 0.490876 -0.4586928 0.1678172 0.490876 -0.4698649 0.1678172 0.490876 -0.4805811 0.1678172 0.490876 -0.490876 0.1678172 0.490876 -0.5007803 0.1678172 0.490876 -0.510322 0.1678172 0.490876 -0.5195258 0.1678172 0.490876 -0.5284142 0.1678172 0.490876 -0.5370079 0.1678172 0.490876 -0.5453253 0.1678172 0.490876 -0.5533834 0.1678172 0.490876 -0.5611974 0.1678172 0.490876 -0.5687816 0.1678172 0.490876 -0.092819 0.1950164 0.490876 -0.1056428 0.1950164 0.490876 -0.1201537 0.1950164 0.490876 -0.1409607 0.1950164 0.490876 -0.1678172 0.1950164 0.490876 -0.1950164 0.1950164 0.490876 -0.2210581 0.1950164 0.490876 -0.245636 0.1950164 0.490876 -0.2686816 0.1950164 0.490876 -0.2902431 0.1950164 0.490876 -0.3104189 0.1950164 0.490876 -0.3293248 0.1950164 0.490876 -0.3470774 0.1950164 0.490876 -0.3637862 0.1950164 0.490876 -0.3795513 0.1950164 0.490876 -0.3944623 0.1950164 0.490876 -0.4085988 0.1950164 0.490876 -0.4220313 0.1950164 0.490876 -0.4348222 0.1950164 0.490876 -0.4470264 0.1950164 0.490876 -0.4586928 0.1950164 0.490876 -0.4698649 0.1950164 0.490876 -0.4805811 0.1950164 0.490876 -0.490876 0.1950164 0.490876 -0.5007803 0.1950164 0.490876 -0.510322 0.1950164 0.490876 -0.5195258 0.1950164 0.490876 -0.5284142 0.1950164 0.490876 -0.5370079 0.1950164 0.490876 -0.5453253 0.1950164 0.490876 -0.5533834 0.1950164 0.490876 -0.5611974 0.1950164 0.490876 -0.5687816 0.1950164 0.490876 -0.092819 0.2210581 0.490876 -0.1056428 0.2210581 0.490876 -0.1201537 0.2210581 0.490876 -0.1409607 0.2210581 0.490876 -0.1678172 0.2210581 0.490876 -0.1950164 0.2210581 0.490876 -0.2210581 0.2210581 0.490876 -0.245636 0.2210581 0.490876 -0.2686816 0.2210581 0.490876 -0.2902431 0.2210581 0.490876 -0.3104189 0.2210581 0.490876 -0.3293248 0.2210581 0.490876 -0.3470774 0.2210581 0.490876 -0.3637862 0.2210581 0.490876 -0.3795513 0.2210581 0.490876 -0.3944623 0.2210581 0.490876 -0.4085988 0.2210581 0.490876 -0.4220313 0.2210581 0.490876 -0.4348222 0.2210581 0.490876 -0.4470264 0.2210581 0.490876 -0.4586928 0.2210581 0.490876 -0.4698649 0.2210581 0.490876 -0.4805811 0.2210581 0.490876 -0.490876 0.2210581 0.490876 -0.5007803 0.2210581 0.490876 -0.510322 0.2210581 0.490876 -0.5195258 0.2210581 0.490876 -0.5284142 0.2210581 0.490876 -0.5370079 0.2210581 0.490876 -0.5453253 0.2210581 0.490876 -0.5533834 0.2210581 0.490876 -0.5611974 0.2210581 0.490876 -0.5687816 0.2210581 0.490876 -0.092819 0.245636 0.490876 -0.1056428 0.245636 0.490876 -0.1201537 0.245636 0.490876 -0.1409607 0.245636 0.490876 -0.1678172 0.245636 0.490876 -0.1950164 0.245636 0.490876 -0.2210581 0.245636 0.490876 -0.245636 0.245636 0.490876 -0.2686816 0.245636 0.490876 -0.2902431 0.245636 0.490876 -0.3104189 0.245636 0.490876 -0.3293248 0.245636 0.490876 -0.3470774 0.245636 0.490876 -0.3637862 0.245636 0.490876 -0.3795513 0.245636 0.490876 -0.3944623 0.245636 0.490876 -0.4085988 0.245636 0.490876 -0.4220313 0.245636 0.490876 -0.4348222 0.245636 0.490876 -0.4470264 0.245636 0.490876 -0.4586928 0.245636 0.490876 -0.4698649 0.245636 0.490876 -0.4805811 0.245636 0.490876 -0.490876 0.245636 0.490876 -0.5007803 0.245636 0.490876 -0.510322 0.245636 0.490876 -0.5195258 0.245636 0.490876 -0.5284142 0.245636 0.490876 -0.5370079 0.245636 0.490876 -0.5453253 0.245636 0.490876 -0.5533834 0.245636 0.490876 -0.5611974 0.245636 0.490876 -0.5687816 0.245636 0.490876 -0.092819 0.2686816 0.490876 -0.1056428 0.2686816 0.490876 -0.1201537 0.2686816 0.490876 -0.1409607 0.2686816 0.490876 -0.1678172 0.2686816 0.490876 -0.1950164 0.2686816 0.490876 -0.2210581 0.2686816 0.490876 -0.245636 0.2686816 0.490876 -0.2686816 0.2686816 0.490876 -0.2902431 0.2686816 0.490876 -0.3104189 0.2686816 0.490876 -0.3293248 0.2686816 0.490876 -0.3470774 0.2686816 0.490876 -0.3637862 0.2686816 0.490876 -0.3795513 0.2686816 0.490876 -0.3944623 0.2686816 0.490876 -0.4085988 0.2686816 0.490876 -0.4220313 0.2686816 0.490876 -0.4348222 0.2686816 0.490876 -0.4470264 0.2686816 0.490876 -0.4586928 0.2686816 0.490876 -0.4698649 0.2686816 0.490876 -0.4805811 0.2686816 0.490876 -0.490876 0.2686816 0.490876 -0.5007803 0.2686816 0.490876 -0.510322 0.2686816 0.490876 -0.5195258 0.2686816 0.490876 -0.5284142 0.2686816 0.490876 -0.5370079 0.2686816 0.490876 -0.5453253 0.2686816 0.490876 -0.5533834 0.2686816 0.490876 -0.5611974 0.2686816 0.490876 -0.5687816 0.2686816 0.490876 -0.092819 0.2902431 0.490876 -0.1056428 0.2902431 0.490876 -0.1201537 0.2902431 0.490876 -0.1409607 0.2902431 0.490876 -0.1678172 0.2902431 0.490876 -0.1950164 0.2902431 0.490876 -0.2210581 0.2902431 0.490876 -0.245636 0.2902431 0.490876 -0.2686816 0.2902431 0.490876 -0.2902431 0.2902431 0.490876 -0.3104189 0.2902431 0.490876 -0.3293248 0.2902431 0.490876 -0.3470774 0.2902431 0.490876 -0.3637862 0.2902431 0.490876 -0.3795513 0.2902431 0.490876 -0.3944623 0.2902431 0.490876 -0.4085988 0.2902431 0.490876 -0.4220313 0.2902431 0.490876 -0.4348222 0.2902431 0.490876 -0.4470264 0.2902431 0.490876 -0.4586928 0.2902431 0.490876 -0.4698649 0.2902431 0.490876 -0.4805811 0.2902431 0.490876 -0.490876 0.2902431 0.490876 -0.5007803 0.2902431 0.490876 -0.510322 0.2902431 0.490876 -0.5195258 0.2902431 0.490876 -0.5284142 0.2902431 0.490876 -0.5370079 0.2902431 0.490876 -0.5453253 0.2902431 0.490876 -0.5533834 0.2902431 0.490876 -0.5611974 0.2902431 0.490876 -0.5687816 0.2902431 0.490876 -0.092819 0.3104189 0.490876 -0.1056428 0.3104189 0.490876 -0.1201537 0.3104189 0.490876 -0.1409607 0.3104189 0.490876 -0.1678172 0.3104189 0.490876 -0.1950164 0.3104189 0.490876 -0.2210581 0.3104189 0.490876 -0.245636 0.3104189 0.490876 -0.2686816 0.3104189 0.490876 -0.2902431 0.3104189 0.490876 -0.3104189 0.3104189 0.490876 -0.3293248 0.3104189 0.490876 -0.3470774 0.3104189 0.490876 -0.3637862 0.3104189 0.490876 -0.3795513 0.3104189 0.490876 -0.3944623 0.3104189 0.490876 -0.4085988 0.3104189 0.490876 -0.4220313 0.3104189 0.490876 -0.4348222 0.3104189 0.490876 -0.4470264 0.3104189 0.490876 -0.4586928 0.3104189 0.490876 -0.4698649 0.3104189 0.490876 -0.4805811 0.3104189 0.490876 -0.490876 0.3104189 0.490876 -0.5007803 0.3104189 0.490876 -0.510322 0.3104189 0.490876 -0.5195258 0.3104189 0.490876 -0.5284142 0.3104189 0.490876 -0.5370079 0.3104189 0.490876 -0.5453253 0.3104189 0.490876 -0.5533834 0.3104189 0.490876 -0.5611974 0.3104189 0.490876 -0.5687816 0.3104189 0.490876 -0.092819 0.3293248 0.490876 -0.1056428 0.3293248 0.490876 -0.1201537 0.3293248 0.490876 -0.1409607 0.3293248 0.490876 -0.1678172 0.3293248 0.490876 -0.1950164 0.3293248 0.490876 -0.2210581 0.3293248 0.490876 -0.245636 0.3293248 0.490876 -0.2686816 0.3293248 0.490876 -0.2902431 0.3293248 0.490876 -0.3104189 0.3293248 0.490876 -0.3293248 0.3293248 0.490876 -0.3470774 0.3293248 0.490876 -0.3637862 0.3293248 0.490876 -0.3795513 0.3293248 0.490876 -0.3944623 0.3293248 0.490876 -0.4085988 0.3293248 0.490876 -0.4220313 0.3293248 0.490876 -0.4348222 0.3293248 0.490876 -0.4470264 0.3293248 0.490876 -0.4586928 0.3293248 0.490876 -0.4698649 0.3293248 0.490876 -0.4805811 0.3293248 0.490876 -0.490876 0.3293248 0.490876 -0.5007803 0.3293248 0.490876 -0.510322 0.3293248 0.490876 -0.5195258 0.3293248 0.490876 -0.5284142 0.3293248 0.490876 -0.5370079 0.3293248 0.490876 -0.5453253 0.3293248 0.490876 -0.5533834 0.3293248 0.490876 -0.5611974 0.3293248 0.490876 -0.5687816 0.3293248 0.490876 -0.092819 0.3470774 0.490876 -0.1056428 0.3470774 0.490876 -0.1201537 0.3470774 0.490876 -0.1409607 0.3470774 0.490876 -0.1678172 0.3470774 0.490876 -0.1950164 0.3470774 0.490876 -0.2210581 0.3470774 0.490876 -0.245636 0.3470774 0.490876 -0.2686816 0.3470774 0.490876 -0.2902431 0.3470774 0.490876 -0.3104189 0.3470774 0.490876 -0.3293248 0.3470774 0.490876 -0.3470774 0.3470774 0.490876 -0.3637862 0.3470774 0.490876 -0.3795513 0.3470774 0.490876 -0.3944623 0.3470774 0.490876 -0.4085988 0.3470774 0.490876 -0.4220313 0.3470774 0.490876 -0.4348222 0.3470774 0.490876 -0.4470264 0.3470774 0.490876 -0.4586928 0.3470774 0.490876 -0.4698649 0.3470774 0.490876 -0.4805811 0.3470774 0.490876 -0.490876 0.3470774 0.490876 -0.5007803 0.3470774 0.490876 -0.510322 0.3470774 0.490876 -0.5195258 0.3470774 0.490876 -0.5284142 0.3470774 0.490876 -0.5370079 0.3470774 0.490876 -0.5453253 0.3470774 0.490876 -0.5533834 0.3470774 0.490876 -0.5611974 0.3470774 0.490876 -0.5687816 0.3470774 0.490876 -0.092819 0.3637862 0.490876 -0.1056428 0.3637862 0.490876 -0.1201537 0.3637862 0.490876 -0.1409607 0.3637862 0.490876 -0.1678172 0.3637862 0.490876 -0.1950164 0.3637862 0.490876 -0.2210581 0.3637862 0.490876 -0.245636 0.3637862 0.490876 -0.2686816 0.3637862 0.490876 -0.2902431 0.3637862 0.490876 -0.3104189 0.3637862 0.490876 -0.3293248 0.3637862 0.490876 -0.3470774 0.3637862 0.490876 -0.3637862 0.3637862 0.490876 -0.3795513 0.3637862 0.490876 -0.3944623 0.3637862 0.490876 -0.4085988 0.3637862 0.490876 -0.4220313 0.3637862 0.490876 -0.4348222 0.3637862 0.490876 -0.4470264 0.3637862 0.490876 -0.4586928 0.3637862 0.490876 -0.4698649 0.3637862 0.490876 -0.4805811 0.3637862 0.490876 -0.490876 0.3637862 0.490876 -0.5007803 0.3637862 0.490876 -0.510322 0.3637862 0.490876 -0.5195258 0.3637862 0.490876 -0.5284142 0.3637862 0.490876 -0.5370079 0.3637862 0.490876 -0.5453253 0.3637862 0.490876 -0.5533834 0.3637862 0.490876 -0.5611974 0.3637862 0.490876 -0.5687816 0.3637862 0.490876 -0.092819 0.3795513 0.490876 -0.1056428 0.3795513 0.490876 -0.1201537 0.3795513 0.490876 -0.1409607 0.3795513 0.490876 -0.1678172 0.3795513 0.490876 -0.1950164 0.3795513 0.490876 -0.2210581 0.3795513 0.490876 -0.245636 0.3795513 0.490876 -0.2686816 0.3795513 0.490876 -0.2902431 0.3795513 0.490876 -0.3104189 0.3795513 0.490876 -0.3293248 0.3795513 0.490876 -0.3470774 0.3795513 0.490876 -0.3637862 0.3795513 0.490876 -0.3795513 0.3795513 0.490876 -0.3944623 0.3795513 0.490876 -0.4085988 0.3795513 0.490876 -0.4220313 0.3795513 0.490876 -0.4348222 0.3795513 0.490876 -0.4470264 0.3795513 0.490876 -0.4586928 0.3795513 0.490876 -0.4698649 0.3795513 0.490876 -0.4805811 0.3795513 0.490876 -0.490876 0.3795513 0.490876 -0.5007803 0.3795513 0.490876 -0.510322 0.3795513 0.490876 -0.5195258 0.3795513 0.490876 -0.5284142 0.3795513 0.490876 -0.5370079 0.3795513 0.490876 -0.5453253 0.3795513 0.490876 -0.5533834 0.3795513 0.490876 -0.5611974 0.3795513 0.490876 -0.5687816 0.3795513 0.490876 -0.092819 0.3944623 0.490876 -0.1056428 0.3944623 0.490876 -0.1201537 0.3944623 0.490876 -0.1409607 0.3944623 0.490876 -0.1678172 0.3944623 0.490876 -0.1950164 0.3944623 0.490876 -0.2210581 0.3944623 0.490876 -0.245636 0.3944623 0.490876 -0.2686816 0.3944623 0.490876 -0.2902431 0.3944623 0.490876 -0.3104189 0.3944623 0.490876 -0.3293248 0.3944623 0.490876 -0.3470774 0.3944623 0.490876 -0.3637862 0.3944623 0.490876 -0.3795513 0.3944623 0.490876 -0.3944623 0.3944623 0.490876 -0.4085988 0.3944623 0.490876 -0.4220313 0.3944623 0.490876 -0.4348222 0.3944623 0.490876 -0.4470264 0.3944623 0.490876 -0.4586928 0.3944623 0.490876 -0.4698649 0.3944623 0.490876 -0.4805811 0.3944623 0.490876 -0.490876 0.3944623 0.490876 -0.5007803 0.3944623 0.490876 -0.510322 0.3944623 0.490876 -0.5195258 0.3944623 0.490876 -0.5284142 0.3944623 0.490876 -0.5370079 0.3944623 0.490876 -0.5453253 0.3944623 0.490876 -0.5533834 0.3944623 0.490876 -0.5611974 0.3944623 0.490876 -0.5687816 0.3944623 0.490876 -0.092819 0.4085988 0.490876 -0.1056428 0.4085988 0.490876 -0.1201537 0.4085988 0.490876 -0.1409607 0.4085988 0.490876 -0.1678172 0.4085988 0.490876 -0.1950164 0.4085988 0.490876 -0.2210581 0.4085988 0.490876 -0.245636 0.4085988 0.490876 -0.2686816 0.4085988 0.490876 -0.2902431 0.4085988 0.490876 -0.3104189 0.4085988 0.490876 -0.3293248 0.4085988 0.490876 -0.3470774 0.4085988 0.490876 -0.3637862 0.4085988 0.490876 -0.3795513 0.4085988 0.490876 -0.3944623 0.4085988 0.490876 -0.4085988 0.4085988 0.490876 -0.4220313 0.4085988 0.490876 -0.4348222 0.4085988 0.490876 -0.4470264 0.4085988 0.490876 -0.4586928 0.4085988 0.490876 -0.4698649 0.4085988 0.490876 -0.4805811 0.4085988 0.490876 -0.490876 0.4085988 0.490876 -0.5007803 0.4085988 0.490876 -0.510322 0.4085988 0.490876 -0.5195258 0.4085988 0.490876 -0.5284142 0.4085988 0.490876 -0.5370079 0.4085988 0.490876 -0.5453253 0.4085988 0.490876 -0.5533834 0.4085988 0.490876 -0.5611974 0.4085988 0.490876 -0.5687816 0.4085988 0.490876 -0.092819 0.4220313 0.490876 -0.1056428 0.4220313 0.490876 -0.1201537 0.4220313 0.490876 -0.1409607 0.4220313 0.490876 -0.1678172 0.4220313 0.490876 -0.1950164 0.4220313 0.490876 -0.2210581 0.4220313 0.490876 -0.245636 0.4220313 0.490876 -0.2686816 0.4220313 0.490876 -0.2902431 0.4220313 0.490876 -0.3104189 0.4220313 0.490876 -0.3293248 0.4220313 0.490876 -0.3470774 0.4220313 0.490876 -0.3637862 0.4220313 0.490876 -0.3795513 0.4220313 0.490876 -0.3944623 0.4220313 0.490876 -0.4085988 0.4220313 0.490876 -0.4220313 0.4220313 0.490876 -0.4348222 0.4220313 0.490876 -0.4470264 0.4220313 0.490876 -0.4586928 0.4220313 0.490876 -0.4698649 0.4220313 0.490876 -0.4805811 0.4220313 0.490876 -0.490876 0.4220313 0.490876 -0.5007803 0.4220313 0.490876 -0.510322 0.4220313 0.490876 -0.5195258 0.4220313 0.490876 -0.5284142 0.4220313 0.490876 -0.5370079 0.4220313 0.490876 -0.5453253 0.4220313 0.490876 -0.5533834 0.4220313 0.490876 -0.5611974 0.4220313 0.490876 -0.5687816 0.4220313 0.490876 -0.092819 0.4348222 0.490876 -0.1056428 0.4348222 0.490876 -0.1201537 0.4348222 0.490876 -0.1409607 0.4348222 0.490876 -0.1678172 0.4348222 0.490876 -0.1950164 0.4348222 0.490876 -0.2210581 0.4348222 0.490876 -0.245636 0.4348222 0.490876 -0.2686816 0.4348222 0.490876 -0.2902431 0.4348222 0.490876 -0.3104189 0.4348222 0.490876 -0.3293248 0.4348222 0.490876 -0.3470774 0.4348222 0.490876 -0.3637862 0.4348222 0.490876 -0.3795513 0.4348222 0.490876 -0.3944623 0.4348222 0.490876 -0.4085988 0.4348222 0.490876 -0.4220313 0.4348222 0.490876 -0.4348222 0.4348222 0.490876 -0.4470264 0.4348222 0.490876 -0.4586928 0.4348222 0.490876 -0.4698649 0.4348222 0.490876 -0.4805811 0.4348222 0.490876 -0.490876 0.4348222 0.490876 -0.5007803 0.4348222 0.490876 -0.510322 0.4348222 0.490876 -0.5195258 0.4348222 0.490876 -0.5284142 0.4348222 0.490876 -0.5370079 0.4348222 0.490876 -0.5453253 0.4348222 0.490876 -0.5533834 0.4348222 0.490876 -0.5611974 0.4348222 0.490876 -0.5687816 0.4348222 0.490876 -0.092819 0.4470264 0.490876 -0.1056428 0.4470264 0.490876 -0.1201537 0.4470264 0.490876 -0.1409607 0.4470264 0.490876 -0.1678172 0.4470264 0.490876 -0.1950164 0.4470264 0.490876 -0.2210581 0.4470264 0.490876 -0.245636 0.4470264 0.490876 -0.2686816 0.4470264 0.490876 -0.2902431 0.4470264 0.490876 -0.3104189 0.4470264 0.490876 -0.3293248 0.4470264 0.490876 -0.3470774 0.4470264 0.490876 -0.3637862 0.4470264 0.490876 -0.3795513 0.4470264 0.490876 -0.3944623 0.4470264 0.490876 -0.4085988 0.4470264 0.490876 -0.4220313 0.4470264 0.490876 -0.4348222 0.4470264 0.490876 -0.4470264 0.4470264 0.490876 -0.4586928 0.4470264 0.490876 -0.4698649 0.4470264 0.490876 -0.4805811 0.4470264 0.490876 -0.490876 0.4470264 0.490876 -0.5007803 0.4470264 0.490876 -0.510322 0.4470264 0.490876 -0.5195258 0.4470264 0.490876 -0.5284142 0.4470264 0.490876 -0.5370079 0.4470264 0.490876 -0.5453253 0.4470264 0.490876 -0.5533834 0.4470264 0.490876 -0.5611974 0.4470264 0.490876 -0.5687816 0.4470264 0.490876 -0.092819 0.4586928 0.490876 -0.1056428 0.4586928 0.490876 -0.1201537 0.4586928 0.490876 -0.1409607 0.4586928 0.490876 -0.1678172 0.4586928 0.490876 -0.1950164 0.4586928 0.490876 -0.2210581 0.4586928 0.490876 -0.245636 0.4586928 0.490876 -0.2686816 0.4586928 0.490876 -0.2902431 0.4586928 0.490876 -0.3104189 0.4586928 0.490876 -0.3293248 0.4586928 0.490876 -0.3470774 0.4586928 0.490876 -0.3637862 0.4586928 0.490876 -0.3795513 0.4586928 0.490876 -0.3944623 0.4586928 0.490876 -0.4085988 0.4586928 0.490876 -0.4220313 0.4586928 0.490876 -0.4348222 0.4586928 0.490876 -0.4470264 0.4586928 0.490876 -0.4586928 0.4586928 0.490876 -0.4698649 0.4586928 0.490876 -0.4805811 0.4586928 0.490876 -0.490876 0.4586928 0.490876 -0.5007803 0.4586928 0.490876 -0.510322 0.4586928 0.490876 -0.5195258 0.4586928 0.490876 -0.5284142 0.4586928 0.490876 -0.5370079 0.4586928 0.490876 -0.5453253 0.4586928 0.490876 -0.5533834 0.4586928 0.490876 -0.5611974 0.4586928 0.490876 -0.5687816 0.4586928 0.490876 -0.092819 0.4698649 0.490876 -0.1056428 0.4698649 0.490876 -0.1201537 0.4698649 0.490876 -0.1409607 0.4698649 0.490876 -0.1678172 0.4698649 0.490876 -0.1950164 0.4698649 0.490876 -0.2210581 0.4698649 0.490876 -0.245636 0.4698649 0.490876 -0.2686816 0.4698649 0.490876 -0.2902431 0.4698649 0.490876 -0.3104189 0.4698649 0.490876 -0.3293248 0.4698649 0.490876 -0.3470774 0.4698649 0.490876 -0.3637862 0.4698649 0.490876 -0.3795513 0.4698649 0.490876 -0.3944623 0.4698649 0.490876 -0.4085988 0.4698649 0.490876 -0.4220313 0.4698649 0.490876 -0.4348222 0.4698649 0.490876 -0.4470264 0.4698649 0.490876 -0.4586928 0.4698649 0.490876 -0.4698649 0.4698649 0.490876 -0.4805811 0.4698649 0.490876 -0.490876 0.4698649 0.490876 -0.5007803 0.4698649 0.490876 -0.510322 0.4698649 0.490876 -0.5195258 0.4698649 0.490876 -0.5284142 0.4698649 0.490876 -0.5370079 0.4698649 0.490876 -0.5453253 0.4698649 0.490876 -0.5533834 0.4698649 0.490876 -0.5611974 0.4698649 0.490876 -0.5687816 0.4698649 0.490876 -0.092819 0.4805811 0.490876 -0.1056428 0.4805811 0.490876 -0.1201537 0.4805811 0.490876 -0.1409607 0.4805811 0.490876 -0.1678172 0.4805811 0.490876 -0.1950164 0.4805811 0.490876 -0.2210581 0.4805811 0.490876 -0.245636 0.4805811 0.490876 -0.2686816 0.4805811 0.490876 -0.2902431 0.4805811 0.490876 -0.3104189 0.4805811 0.490876 -0.3293248 0.4805811 0.490876 -0.3470774 0.4805811 0.490876 -0.3637862 0.4805811 0.490876 -0.3795513 0.4805811 0.490876 -0.3944623 0.4805811 0.490876 -0.4085988 0.4805811 0.490876 -0.4220313 0.4805811 0.490876 -0.4348222 0.4805811 0.490876 -0.4470264 0.4805811 0.490876 -0.4586928 0.4805811 0.490876 -0.4698649 0.4805811 0.490876 -0.4805811 0.4805811 0.490876 -0.490876 0.4805811 0.490876 -0.5007803 0.4805811 0.490876 -0.510322 0.4805811 0.490876 -0.5195258 0.4805811 0.490876 -0.5284142 0.4805811 0.490876 -0.5370079 0.4805811 0.490876 -0.5453253 0.4805811 0.490876 -0.5533834 0.4805811 0.490876 -0.5611974 0.4805811 0.490876 -0.5687816 0.4805811 0.490876 -0.092819 0.490876 0.490876 -0.1056428 0.490876 0.490876 -0.1201537 0.490876 0.490876 -0.1409607 0.490876 0.490876 -0.1678172 0.490876 0.490876 -0.1950164 0.490876 0.490876 -0.2210581 0.490876 0.490876 -0.245636 0.490876 0.490876 -0.2686816 0.490876 0.490876 -0.2902431 0.490876 0.490876 -0.3104189 0.490876 0.490876 -0.3293248 0.490876 0.490876 -0.3470774 0.490876 0.490876 -0.3637862 0.490876 0.490876 -0.3795513 0.490876 0.490876 -0.3944623 0.490876 0.490876 -0.4085988 0.490876 0.490876 -0.4220313 0.490876 0.490876 -0.4348222 0.490876 0.490876 -0.4470264 0.490876 0.490876 -0.4586928 0.490876 0.490876 -0.4698649 0.490876 0.490876 -0.4805811 0.490876 0.490876 -0.490876 0.490876 0.490876 -0.5007803 0.490876 0.490876 -0.510322 0.490876 0.490876 -0.5195258 0.490876 0.490876 -0.5284142 0.490876 0.490876 -0.5370079 0.490876 0.490876 -0.5453253 0.490876 0.490876 -0.5533834 0.490876 0.490876 -0.5611974 0.490876 0.490876 -0.5687816 0.490876 0.490876 -0.092819 0.5007803 0.490876 -0.1056428 0.5007803 0.490876 -0.1201537 0.5007803 0.490876 -0.1409607 0.5007803 0.490876 -0.1678172 0.5007803 0.490876 -0.1950164 0.5007803 0.490876 -0.2210581 0.5007803 0.490876 -0.245636 0.5007803 0.490876 -0.2686816 0.5007803 0.490876 -0.2902431 0.5007803 0.490876 -0.3104189 0.5007803 0.490876 -0.3293248 0.5007803 0.490876 -0.3470774 0.5007803 0.490876 -0.3637862 0.5007803 0.490876 -0.3795513 0.5007803 0.490876 -0.3944623 0.5007803 0.490876 -0.4085988 0.5007803 0.490876 -0.4220313 0.5007803 0.490876 -0.4348222 0.5007803 0.490876 -0.4470264 0.5007803 0.490876 -0.4586928 0.5007803 0.490876 -0.4698649 0.5007803 0.490876 -0.4805811 0.5007803 0.490876 -0.490876 0.5007803 0.490876 -0.5007803 0.5007803 0.490876 -0.510322 0.5007803 0.490876 -0.5195258 0.5007803 0.490876 -0.5284142 0.5007803 0.490876 -0.5370079 0.5007803 0.490876 -0.5453253 0.5007803 0.490876 -0.5533834 0.5007803 0.490876 -0.5611974 0.5007803 0.490876 -0.5687816 0.5007803 0.490876 -0.092819 0.510322 0.490876 -0.1056428 0.510322 0.490876 -0.1201537 0.510322 0.490876 -0.1409607 0.510322 0.490876 -0.1678172 0.510322 0.490876 -0.1950164 0.510322 0.490876 -0.2210581 0.510322 0.490876 -0.245636 0.510322 0.490876 -0.2686816 0.510322 0.490876 -0.2902431 0.510322 0.490876 -0.3104189 0.510322 0.490876 -0.3293248 0.510322 0.490876 -0.3470774 0.510322 0.490876 -0.3637862 0.510322 0.490876 -0.3795513 0.510322 0.490876 -0.3944623 0.510322 0.490876 -0.4085988 0.510322 0.490876 -0.4220313 0.510322 0.490876 -0.4348222 0.510322 0.490876 -0.4470264 0.510322 0.490876 -0.4586928 0.510322 0.490876 -0.4698649 0.510322 0.490876 -0.4805811 0.510322 0.490876 -0.490876 0.510322 0.490876 -0.5007803 0.510322 0.490876 -0.510322 0.510322 0.490876 -0.5195258 0.510322 0.490876 -0.5284142 0.510322 0.490876 -0.5370079 0.510322 0.490876 -0.5453253 0.510322 0.490876 -0.5533834 0.510322 0.490876 -0.5611974 0.510322 0.490876 -0.5687816 0.510322 0.490876 -0.092819 0.5195258 0.490876 -0.1056428 0.5195258 0.490876 -0.1201537 0.5195258 0.490876 -0.1409607 0.5195258 0.490876 -0.1678172 0.5195258 0.490876 -0.1950164 0.5195258 0.490876 -0.2210581 0.5195258 0.490876 -0.245636 0.5195258 0.490876 -0.2686816 0.5195258 0.490876 -0.2902431 0.5195258 0.490876 -0.3104189 0.5195258 0.490876 -0.3293248 0.5195258 0.490876 -0.3470774 0.5195258 0.490876 -0.3637862 0.5195258 0.490876 -0.3795513 0.5195258 0.490876 -0.3944623 0.5195258 0.490876 -0.4085988 0.5195258 0.490876 -0.4220313 0.5195258 0.490876 -0.4348222 0.5195258 0.490876 -0.4470264 0.5195258 0.490876 -0.4586928 0.5195258 0.490876 -0.4698649 0.5195258 0.490876 -0.4805811 0.5195258 0.490876 -0.490876 0.5195258 0.490876 -0.5007803 0.5195258 0.490876 -0.510322 0.5195258 0.490876 -0.5195258 0.5195258 0.490876 -0.5284142 0.5195258 0.490876 -0.5370079 0.5195258 0.490876 -0.5453253 0.5195258 0.490876 -0.5533834 0.5195258 0.490876 -0.5611974 0.5195258 0.490876 -0.5687816 0.5195258 0.490876 -0.092819 0.5284142 0.490876 -0.1056428 0.5284142 0.490876 -0.1201537 0.5284142 0.490876 -0.1409607 0.5284142 0.490876 -0.1678172 0.5284142 0.490876 -0.1950164 0.5284142 0.490876 -0.2210581 0.5284142 0.490876 -0.245636 0.5284142 0.490876 -0.2686816 0.5284142 0.490876 -0.2902431 0.5284142 0.490876 -0.3104189 0.5284142 0.490876 -0.3293248 0.5284142 0.490876 -0.3470774 0.5284142 0.490876 -0.3637862 0.5284142 0.490876 -0.3795513 0.5284142 0.490876 -0.3944623 0.5284142 0.490876 -0.4085988 0.5284142 0.490876 -0.4220313 0.5284142 0.490876 -0.4348222 0.5284142 0.490876 -0.4470264 0.5284142 0.490876 -0.4586928 0.5284142 0.490876 -0.4698649 0.5284142 0.490876 -0.4805811 0.5284142 0.490876 -0.490876 0.5284142 0.490876 -0.5007803 0.5284142 0.490876 -0.510322 0.5284142 0.490876 -0.5195258 0.5284142 0.490876 -0.5284142 0.5284142 0.490876 -0.5370079 0.5284142 0.490876 -0.5453253 0.5284142 0.490876 -0.5533834 0.5284142 0.490876 -0.5611974 0.5284142 0.490876 -0.5687816 0.5284142 0.490876 -0.092819 0.5370079 0.490876 -0.1056428 0.5370079 0.490876 -0.1201537 0.5370079 0.490876 -0.1409607 0.5370079 0.490876 -0.1678172 0.5370079 0.490876 -0.1950164 0.5370079 0.490876 -0.2210581 0.5370079 0.490876 -0.245636 0.5370079 0.490876 -0.2686816 0.5370079 0.490876 -0.2902431 0.5370079 0.490876 -0.3104189 0.5370079 0.490876 -0.3293248 0.5370079 0.490876 -0.3470774 0.5370079 0.490876 -0.3637862 0.5370079 0.490876 -0.3795513 0.5370079 0.490876 -0.3944623 0.5370079 0.490876 -0.4085988 0.5370079 0.490876 -0.4220313 0.5370079 0.490876 -0.4348222 0.5370079 0.490876 -0.4470264 0.5370079 0.490876 -0.4586928 0.5370079 0.490876 -0.4698649 0.5370079 0.490876 -0.4805811 0.5370079 0.490876 -0.490876 0.5370079 0.490876 -0.5007803 0.5370079 0.490876 -0.510322 0.5370079 0.490876 -0.5195258 0.5370079 0.490876 -0.5284142 0.5370079 0.490876 -0.5370079 0.5370079 0.490876 -0.5453253 0.5370079 0.490876 -0.5533834 0.5370079 0.490876 -0.5611974 0.5370079 0.490876 -0.5687816 0.5370079 0.490876 -0.092819 0.5453253 0.490876 -0.1056428 0.5453253 0.490876 -0.1201537 0.5453253 0.490876 -0.1409607 0.5453253 0.490876 -0.1678172 0.5453253 0.490876 -0.1950164 0.5453253 0.490876 -0.2210581 0.5453253 0.490876 -0.245636 0.5453253 0.490876 -0.2686816 0.5453253 0.490876 -0.2902431 0.5453253 0.490876 -0.3104189 0.5453253 0.490876 -0.3293248 0.5453253 0.490876 -0.3470774 0.5453253 0.490876 -0.3637862 0.5453253 0.490876 -0.3795513 0.5453253 0.490876 -0.3944623 0.5453253 0.490876 -0.4085988 0.5453253 0.490876 -0.4220313 0.5453253 0.490876 -0.4348222 0.5453253 0.490876 -0.4470264 0.5453253 0.490876 -0.4586928 0.5453253 0.490876 -0.4698649 0.5453253 0.490876 -0.4805811 0.5453253 0.490876 -0.490876 0.5453253 0.490876 -0.5007803 0.5453253 0.490876 -0.510322 0.5453253 0.490876 -0.5195258 0.5453253 0.490876 -0.5284142 0.5453253 0.490876 -0.5370079 0.5453253 0.490876 -0.5453253 0.5453253 0.490876 -0.5533834 0.5453253 0.490876 -0.5611974 0.5453253 0.490876 -0.5687816 0.5453253 0.490876 -0.092819 0.5533834 0.490876 -0.1056428 0.5533834 0.490876 -0.1201537 0.5533834 0.490876 -0.1409607 0.5533834 0.490876 -0.1678172 0.5533834 0.490876 -0.1950164 0.5533834 0.490876 -0.2210581 0.5533834 0.490876 -0.245636 0.5533834 0.490876 -0.2686816 0.5533834 0.490876 -0.2902431 0.5533834 0.490876 -0.3104189 0.5533834 0.490876 -0.3293248 0.5533834 0.490876 -0.3470774 0.5533834 0.490876 -0.3637862 0.5533834 0.490876 -0.3795513 0.5533834 0.490876 -0.3944623 0.5533834 0.490876 -0.4085988 0.5533834 0.490876 -0.4220313 0.5533834 0.490876 -0.4348222 0.5533834 0.490876 -0.4470264 0.5533834 0.490876 -0.4586928 0.5533834 0.490876 -0.4698649 0.5533834 0.490876 -0.4805811 0.5533834 0.490876 -0.490876 0.5533834 0.490876 -0.5007803 0.5533834 0.490876 -0.510322 0.5533834 0.490876 -0.5195258 0.5533834 0.490876 -0.5284142 0.5533834 0.490876 -0.5370079 0.5533834 0.490876 -0.5453253 0.5533834 0.490876 -0.5533834 0.5533834 0.490876 -0.5611974 0.5533834 0.490876 -0.5687816 0.5533834 0.490876 -0.092819 0.5611974 0.490876 -0.1056428 0.5611974 0.490876 -0.1201537 0.5611974 0.490876 -0.1409607 0.5611974 0.490876 -0.1678172 0.5611974 0.490876 -0.1950164 0.5611974 0.490876 -0.2210581 0.5611974 0.490876 -0.245636 0.5611974 0.490876 -0.2686816 0.5611974 0.490876 -0.2902431 0.5611974 0.490876 -0.3104189 0.5611974 0.490876 -0.3293248 0.5611974 0.490876 -0.3470774 0.5611974 0.490876 -0.3637862 0.5611974 0.490876 -0.3795513 0.5611974 0.490876 -0.3944623 0.5611974 0.490876 -0.4085988 0.5611974 0.490876 -0.4220313 0.5611974 0.490876 -0.4348222 0.5611974 0.490876 -0.4470264 0.5611974 0.490876 -0.4586928 0.5611974 0.490876 -0.4698649 0.5611974 0.490876 -0.4805811 0.5611974 0.490876 -0.490876 0.5611974 0.490876 -0.5007803 0.5611974 0.490876 -0.510322 0.5611974 0.490876 -0.5195258 0.5611974 0.490876 -0.5284142 0.5611974 0.490876 -0.5370079 0.5611974 0.490876 -0.5453253 0.5611974 0.490876 -0.5533834 0.5611974 0.490876 -0.5611974 0.5611974 0.490876 -0.5687816 0.5611974 0.490876 -0.092819 0.5687816 0.490876 -0.1056428 0.5687816 0.490876 -0.1201537 0.5687816 0.490876 -0.1409607 0.5687816 0.490876 -0.1678172 0.5687816 0.490876 -0.1950164 0.5687816 0.490876 -0.2210581 0.5687816 0.490876 -0.245636 0.5687816 0.490876 -0.2686816 0.5687816 0.490876 -0.2902431 0.5687816 0.490876 -0.3104189 0.5687816 0.490876 -0.3293248 0.5687816 0.490876 -0.3470774 0.5687816 0.490876 -0.3637862 0.5687816 0.490876 -0.3795513 0.5687816 0.490876 -0.3944623 0.5687816 0.490876 -0.4085988 0.5687816 0.490876 -0.4220313 0.5687816 0.490876 -0.4348222 0.5687816 0.490876 -0.4470264 0.5687816 0.490876 -0.4586928 0.5687816 0.490876 -0.4698649 0.5687816 0.490876 -0.4805811 0.5687816 0.490876 -0.490876 0.5687816 0.490876 -0.5007803 0.5687816 0.490876 -0.510322 0.5687816 0.490876 -0.5195258 0.5687816 0.490876 -0.5284142 0.5687816 0.490876 -0.5370079 0.5687816 0.490876 -0.5453253 0.5687816 0.490876 -0.5533834 0.5687816 0.490876 -0.5611974 0.5687816 0.490876 -0.5687816 0.5687816 0.490876 -0.092819 0.092819 0.5007803 -0.1056428 0.092819 0.5007803 -0.1201537 0.092819 0.5007803 -0.1409607 0.092819 0.5007803 -0.1678172 0.092819 0.5007803 -0.1950164 0.092819 0.5007803 -0.2210581 0.092819 0.5007803 -0.245636 0.092819 0.5007803 -0.2686816 0.092819 0.5007803 -0.2902431 0.092819 0.5007803 -0.3104189 0.092819 0.5007803 -0.3293248 0.092819 0.5007803 -0.3470774 0.092819 0.5007803 -0.3637862 0.092819 0.5007803 -0.3795513 0.092819 0.5007803 -0.3944623 0.092819 0.5007803 -0.4085988 0.092819 0.5007803 -0.4220313 0.092819 0.5007803 -0.4348222 0.092819 0.5007803 -0.4470264 0.092819 0.5007803 -0.4586928 0.092819 0.5007803 -0.4698649 0.092819 0.5007803 -0.4805811 0.092819 0.5007803 -0.490876 0.092819 0.5007803 -0.5007803 0.092819 0.5007803 -0.510322 0.092819 0.5007803 -0.5195258 0.092819 0.5007803 -0.5284142 0.092819 0.5007803 -0.5370079 0.092819 0.5007803 -0.5453253 0.092819 0.5007803 -0.5533834 0.092819 0.5007803 -0.5611974 0.092819 0.5007803 -0.5687816 0.092819 0.5007803 -0.092819 0.1056428 0.5007803 -0.1056428 0.1056428 0.5007803 -0.1201537 0.1056428 0.5007803 -0.1409607 0.1056428 0.5007803 -0.1678172 0.1056428 0.5007803 -0.1950164 0.1056428 0.5007803 -0.2210581 0.1056428 0.5007803 -0.245636 0.1056428 0.5007803 -0.2686816 0.1056428 0.5007803 -0.2902431 0.1056428 0.5007803 -0.3104189 0.1056428 0.5007803 -0.3293248 0.1056428 0.5007803 -0.3470774 0.1056428 0.5007803 -0.3637862 0.1056428 0.5007803 -0.3795513 0.1056428 0.5007803 -0.3944623 0.1056428 0.5007803 -0.4085988 0.1056428 0.5007803 -0.4220313 0.1056428 0.5007803 -0.4348222 0.1056428 0.5007803 -0.4470264 0.1056428 0.5007803 -0.4586928 0.1056428 0.5007803 -0.4698649 0.1056428 0.5007803 -0.4805811 0.1056428 0.5007803 -0.490876 0.1056428 0.5007803 -0.5007803 0.1056428 0.5007803 -0.510322 0.1056428 0.5007803 -0.5195258 0.1056428 0.5007803 -0.5284142 0.1056428 0.5007803 -0.5370079 0.1056428 0.5007803 -0.5453253 0.1056428 0.5007803 -0.5533834 0.1056428 0.5007803 -0.5611974 0.1056428 0.5007803 -0.5687816 0.1056428 0.5007803 -0.092819 0.1201537 0.5007803 -0.1056428 0.1201537 0.5007803 -0.1201537 0.1201537 0.5007803 -0.1409607 0.1201537 0.5007803 -0.1678172 0.1201537 0.5007803 -0.1950164 0.1201537 0.5007803 -0.2210581 0.1201537 0.5007803 -0.245636 0.1201537 0.5007803 -0.2686816 0.1201537 0.5007803 -0.2902431 0.1201537 0.5007803 -0.3104189 0.1201537 0.5007803 -0.3293248 0.1201537 0.5007803 -0.3470774 0.1201537 0.5007803 -0.3637862 0.1201537 0.5007803 -0.3795513 0.1201537 0.5007803 -0.3944623 0.1201537 0.5007803 -0.4085988 0.1201537 0.5007803 -0.4220313 0.1201537 0.5007803 -0.4348222 0.1201537 0.5007803 -0.4470264 0.1201537 0.5007803 -0.4586928 0.1201537 0.5007803 -0.4698649 0.1201537 0.5007803 -0.4805811 0.1201537 0.5007803 -0.490876 0.1201537 0.5007803 -0.5007803 0.1201537 0.5007803 -0.510322 0.1201537 0.5007803 -0.5195258 0.1201537 0.5007803 -0.5284142 0.1201537 0.5007803 -0.5370079 0.1201537 0.5007803 -0.5453253 0.1201537 0.5007803 -0.5533834 0.1201537 0.5007803 -0.5611974 0.1201537 0.5007803 -0.5687816 0.1201537 0.5007803 -0.092819 0.1409607 0.5007803 -0.1056428 0.1409607 0.5007803 -0.1201537 0.1409607 0.5007803 -0.1409607 0.1409607 0.5007803 -0.1678172 0.1409607 0.5007803 -0.1950164 0.1409607 0.5007803 -0.2210581 0.1409607 0.5007803 -0.245636 0.1409607 0.5007803 -0.2686816 0.1409607 0.5007803 -0.2902431 0.1409607 0.5007803 -0.3104189 0.1409607 0.5007803 -0.3293248 0.1409607 0.5007803 -0.3470774 0.1409607 0.5007803 -0.3637862 0.1409607 0.5007803 -0.3795513 0.1409607 0.5007803 -0.3944623 0.1409607 0.5007803 -0.4085988 0.1409607 0.5007803 -0.4220313 0.1409607 0.5007803 -0.4348222 0.1409607 0.5007803 -0.4470264 0.1409607 0.5007803 -0.4586928 0.1409607 0.5007803 -0.4698649 0.1409607 0.5007803 -0.4805811 0.1409607 0.5007803 -0.490876 0.1409607 0.5007803 -0.5007803 0.1409607 0.5007803 -0.510322 0.1409607 0.5007803 -0.5195258 0.1409607 0.5007803 -0.5284142 0.1409607 0.5007803 -0.5370079 0.1409607 0.5007803 -0.5453253 0.1409607 0.5007803 -0.5533834 0.1409607 0.5007803 -0.5611974 0.1409607 0.5007803 -0.5687816 0.1409607 0.5007803 -0.092819 0.1678172 0.5007803 -0.1056428 0.1678172 0.5007803 -0.1201537 0.1678172 0.5007803 -0.1409607 0.1678172 0.5007803 -0.1678172 0.1678172 0.5007803 -0.1950164 0.1678172 0.5007803 -0.2210581 0.1678172 0.5007803 -0.245636 0.1678172 0.5007803 -0.2686816 0.1678172 0.5007803 -0.2902431 0.1678172 0.5007803 -0.3104189 0.1678172 0.5007803 -0.3293248 0.1678172 0.5007803 -0.3470774 0.1678172 0.5007803 -0.3637862 0.1678172 0.5007803 -0.3795513 0.1678172 0.5007803 -0.3944623 0.1678172 0.5007803 -0.4085988 0.1678172 0.5007803 -0.4220313 0.1678172 0.5007803 -0.4348222 0.1678172 0.5007803 -0.4470264 0.1678172 0.5007803 -0.4586928 0.1678172 0.5007803 -0.4698649 0.1678172 0.5007803 -0.4805811 0.1678172 0.5007803 -0.490876 0.1678172 0.5007803 -0.5007803 0.1678172 0.5007803 -0.510322 0.1678172 0.5007803 -0.5195258 0.1678172 0.5007803 -0.5284142 0.1678172 0.5007803 -0.5370079 0.1678172 0.5007803 -0.5453253 0.1678172 0.5007803 -0.5533834 0.1678172 0.5007803 -0.5611974 0.1678172 0.5007803 -0.5687816 0.1678172 0.5007803 -0.092819 0.1950164 0.5007803 -0.1056428 0.1950164 0.5007803 -0.1201537 0.1950164 0.5007803 -0.1409607 0.1950164 0.5007803 -0.1678172 0.1950164 0.5007803 -0.1950164 0.1950164 0.5007803 -0.2210581 0.1950164 0.5007803 -0.245636 0.1950164 0.5007803 -0.2686816 0.1950164 0.5007803 -0.2902431 0.1950164 0.5007803 -0.3104189 0.1950164 0.5007803 -0.3293248 0.1950164 0.5007803 -0.3470774 0.1950164 0.5007803 -0.3637862 0.1950164 0.5007803 -0.3795513 0.1950164 0.5007803 -0.3944623 0.1950164 0.5007803 -0.4085988 0.1950164 0.5007803 -0.4220313 0.1950164 0.5007803 -0.4348222 0.1950164 0.5007803 -0.4470264 0.1950164 0.5007803 -0.4586928 0.1950164 0.5007803 -0.4698649 0.1950164 0.5007803 -0.4805811 0.1950164 0.5007803 -0.490876 0.1950164 0.5007803 -0.5007803 0.1950164 0.5007803 -0.510322 0.1950164 0.5007803 -0.5195258 0.1950164 0.5007803 -0.5284142 0.1950164 0.5007803 -0.5370079 0.1950164 0.5007803 -0.5453253 0.1950164 0.5007803 -0.5533834 0.1950164 0.5007803 -0.5611974 0.1950164 0.5007803 -0.5687816 0.1950164 0.5007803 -0.092819 0.2210581 0.5007803 -0.1056428 0.2210581 0.5007803 -0.1201537 0.2210581 0.5007803 -0.1409607 0.2210581 0.5007803 -0.1678172 0.2210581 0.5007803 -0.1950164 0.2210581 0.5007803 -0.2210581 0.2210581 0.5007803 -0.245636 0.2210581 0.5007803 -0.2686816 0.2210581 0.5007803 -0.2902431 0.2210581 0.5007803 -0.3104189 0.2210581 0.5007803 -0.3293248 0.2210581 0.5007803 -0.3470774 0.2210581 0.5007803 -0.3637862 0.2210581 0.5007803 -0.3795513 0.2210581 0.5007803 -0.3944623 0.2210581 0.5007803 -0.4085988 0.2210581 0.5007803 -0.4220313 0.2210581 0.5007803 -0.4348222 0.2210581 0.5007803 -0.4470264 0.2210581 0.5007803 -0.4586928 0.2210581 0.5007803 -0.4698649 0.2210581 0.5007803 -0.4805811 0.2210581 0.5007803 -0.490876 0.2210581 0.5007803 -0.5007803 0.2210581 0.5007803 -0.510322 0.2210581 0.5007803 -0.5195258 0.2210581 0.5007803 -0.5284142 0.2210581 0.5007803 -0.5370079 0.2210581 0.5007803 -0.5453253 0.2210581 0.5007803 -0.5533834 0.2210581 0.5007803 -0.5611974 0.2210581 0.5007803 -0.5687816 0.2210581 0.5007803 -0.092819 0.245636 0.5007803 -0.1056428 0.245636 0.5007803 -0.1201537 0.245636 0.5007803 -0.1409607 0.245636 0.5007803 -0.1678172 0.245636 0.5007803 -0.1950164 0.245636 0.5007803 -0.2210581 0.245636 0.5007803 -0.245636 0.245636 0.5007803 -0.2686816 0.245636 0.5007803 -0.2902431 0.245636 0.5007803 -0.3104189 0.245636 0.5007803 -0.3293248 0.245636 0.5007803 -0.3470774 0.245636 0.5007803 -0.3637862 0.245636 0.5007803 -0.3795513 0.245636 0.5007803 -0.3944623 0.245636 0.5007803 -0.4085988 0.245636 0.5007803 -0.4220313 0.245636 0.5007803 -0.4348222 0.245636 0.5007803 -0.4470264 0.245636 0.5007803 -0.4586928 0.245636 0.5007803 -0.4698649 0.245636 0.5007803 -0.4805811 0.245636 0.5007803 -0.490876 0.245636 0.5007803 -0.5007803 0.245636 0.5007803 -0.510322 0.245636 0.5007803 -0.5195258 0.245636 0.5007803 -0.5284142 0.245636 0.5007803 -0.5370079 0.245636 0.5007803 -0.5453253 0.245636 0.5007803 -0.5533834 0.245636 0.5007803 -0.5611974 0.245636 0.5007803 -0.5687816 0.245636 0.5007803 -0.092819 0.2686816 0.5007803 -0.1056428 0.2686816 0.5007803 -0.1201537 0.2686816 0.5007803 -0.1409607 0.2686816 0.5007803 -0.1678172 0.2686816 0.5007803 -0.1950164 0.2686816 0.5007803 -0.2210581 0.2686816 0.5007803 -0.245636 0.2686816 0.5007803 -0.2686816 0.2686816 0.5007803 -0.2902431 0.2686816 0.5007803 -0.3104189 0.2686816 0.5007803 -0.3293248 0.2686816 0.5007803 -0.3470774 0.2686816 0.5007803 -0.3637862 0.2686816 0.5007803 -0.3795513 0.2686816 0.5007803 -0.3944623 0.2686816 0.5007803 -0.4085988 0.2686816 0.5007803 -0.4220313 0.2686816 0.5007803 -0.4348222 0.2686816 0.5007803 -0.4470264 0.2686816 0.5007803 -0.4586928 0.2686816 0.5007803 -0.4698649 0.2686816 0.5007803 -0.4805811 0.2686816 0.5007803 -0.490876 0.2686816 0.5007803 -0.5007803 0.2686816 0.5007803 -0.510322 0.2686816 0.5007803 -0.5195258 0.2686816 0.5007803 -0.5284142 0.2686816 0.5007803 -0.5370079 0.2686816 0.5007803 -0.5453253 0.2686816 0.5007803 -0.5533834 0.2686816 0.5007803 -0.5611974 0.2686816 0.5007803 -0.5687816 0.2686816 0.5007803 -0.092819 0.2902431 0.5007803 -0.1056428 0.2902431 0.5007803 -0.1201537 0.2902431 0.5007803 -0.1409607 0.2902431 0.5007803 -0.1678172 0.2902431 0.5007803 -0.1950164 0.2902431 0.5007803 -0.2210581 0.2902431 0.5007803 -0.245636 0.2902431 0.5007803 -0.2686816 0.2902431 0.5007803 -0.2902431 0.2902431 0.5007803 -0.3104189 0.2902431 0.5007803 -0.3293248 0.2902431 0.5007803 -0.3470774 0.2902431 0.5007803 -0.3637862 0.2902431 0.5007803 -0.3795513 0.2902431 0.5007803 -0.3944623 0.2902431 0.5007803 -0.4085988 0.2902431 0.5007803 -0.4220313 0.2902431 0.5007803 -0.4348222 0.2902431 0.5007803 -0.4470264 0.2902431 0.5007803 -0.4586928 0.2902431 0.5007803 -0.4698649 0.2902431 0.5007803 -0.4805811 0.2902431 0.5007803 -0.490876 0.2902431 0.5007803 -0.5007803 0.2902431 0.5007803 -0.510322 0.2902431 0.5007803 -0.5195258 0.2902431 0.5007803 -0.5284142 0.2902431 0.5007803 -0.5370079 0.2902431 0.5007803 -0.5453253 0.2902431 0.5007803 -0.5533834 0.2902431 0.5007803 -0.5611974 0.2902431 0.5007803 -0.5687816 0.2902431 0.5007803 -0.092819 0.3104189 0.5007803 -0.1056428 0.3104189 0.5007803 -0.1201537 0.3104189 0.5007803 -0.1409607 0.3104189 0.5007803 -0.1678172 0.3104189 0.5007803 -0.1950164 0.3104189 0.5007803 -0.2210581 0.3104189 0.5007803 -0.245636 0.3104189 0.5007803 -0.2686816 0.3104189 0.5007803 -0.2902431 0.3104189 0.5007803 -0.3104189 0.3104189 0.5007803 -0.3293248 0.3104189 0.5007803 -0.3470774 0.3104189 0.5007803 -0.3637862 0.3104189 0.5007803 -0.3795513 0.3104189 0.5007803 -0.3944623 0.3104189 0.5007803 -0.4085988 0.3104189 0.5007803 -0.4220313 0.3104189 0.5007803 -0.4348222 0.3104189 0.5007803 -0.4470264 0.3104189 0.5007803 -0.4586928 0.3104189 0.5007803 -0.4698649 0.3104189 0.5007803 -0.4805811 0.3104189 0.5007803 -0.490876 0.3104189 0.5007803 -0.5007803 0.3104189 0.5007803 -0.510322 0.3104189 0.5007803 -0.5195258 0.3104189 0.5007803 -0.5284142 0.3104189 0.5007803 -0.5370079 0.3104189 0.5007803 -0.5453253 0.3104189 0.5007803 -0.5533834 0.3104189 0.5007803 -0.5611974 0.3104189 0.5007803 -0.5687816 0.3104189 0.5007803 -0.092819 0.3293248 0.5007803 -0.1056428 0.3293248 0.5007803 -0.1201537 0.3293248 0.5007803 -0.1409607 0.3293248 0.5007803 -0.1678172 0.3293248 0.5007803 -0.1950164 0.3293248 0.5007803 -0.2210581 0.3293248 0.5007803 -0.245636 0.3293248 0.5007803 -0.2686816 0.3293248 0.5007803 -0.2902431 0.3293248 0.5007803 -0.3104189 0.3293248 0.5007803 -0.3293248 0.3293248 0.5007803 -0.3470774 0.3293248 0.5007803 -0.3637862 0.3293248 0.5007803 -0.3795513 0.3293248 0.5007803 -0.3944623 0.3293248 0.5007803 -0.4085988 0.3293248 0.5007803 -0.4220313 0.3293248 0.5007803 -0.4348222 0.3293248 0.5007803 -0.4470264 0.3293248 0.5007803 -0.4586928 0.3293248 0.5007803 -0.4698649 0.3293248 0.5007803 -0.4805811 0.3293248 0.5007803 -0.490876 0.3293248 0.5007803 -0.5007803 0.3293248 0.5007803 -0.510322 0.3293248 0.5007803 -0.5195258 0.3293248 0.5007803 -0.5284142 0.3293248 0.5007803 -0.5370079 0.3293248 0.5007803 -0.5453253 0.3293248 0.5007803 -0.5533834 0.3293248 0.5007803 -0.5611974 0.3293248 0.5007803 -0.5687816 0.3293248 0.5007803 -0.092819 0.3470774 0.5007803 -0.1056428 0.3470774 0.5007803 -0.1201537 0.3470774 0.5007803 -0.1409607 0.3470774 0.5007803 -0.1678172 0.3470774 0.5007803 -0.1950164 0.3470774 0.5007803 -0.2210581 0.3470774 0.5007803 -0.245636 0.3470774 0.5007803 -0.2686816 0.3470774 0.5007803 -0.2902431 0.3470774 0.5007803 -0.3104189 0.3470774 0.5007803 -0.3293248 0.3470774 0.5007803 -0.3470774 0.3470774 0.5007803 -0.3637862 0.3470774 0.5007803 -0.3795513 0.3470774 0.5007803 -0.3944623 0.3470774 0.5007803 -0.4085988 0.3470774 0.5007803 -0.4220313 0.3470774 0.5007803 -0.4348222 0.3470774 0.5007803 -0.4470264 0.3470774 0.5007803 -0.4586928 0.3470774 0.5007803 -0.4698649 0.3470774 0.5007803 -0.4805811 0.3470774 0.5007803 -0.490876 0.3470774 0.5007803 -0.5007803 0.3470774 0.5007803 -0.510322 0.3470774 0.5007803 -0.5195258 0.3470774 0.5007803 -0.5284142 0.3470774 0.5007803 -0.5370079 0.3470774 0.5007803 -0.5453253 0.3470774 0.5007803 -0.5533834 0.3470774 0.5007803 -0.5611974 0.3470774 0.5007803 -0.5687816 0.3470774 0.5007803 -0.092819 0.3637862 0.5007803 -0.1056428 0.3637862 0.5007803 -0.1201537 0.3637862 0.5007803 -0.1409607 0.3637862 0.5007803 -0.1678172 0.3637862 0.5007803 -0.1950164 0.3637862 0.5007803 -0.2210581 0.3637862 0.5007803 -0.245636 0.3637862 0.5007803 -0.2686816 0.3637862 0.5007803 -0.2902431 0.3637862 0.5007803 -0.3104189 0.3637862 0.5007803 -0.3293248 0.3637862 0.5007803 -0.3470774 0.3637862 0.5007803 -0.3637862 0.3637862 0.5007803 -0.3795513 0.3637862 0.5007803 -0.3944623 0.3637862 0.5007803 -0.4085988 0.3637862 0.5007803 -0.4220313 0.3637862 0.5007803 -0.4348222 0.3637862 0.5007803 -0.4470264 0.3637862 0.5007803 -0.4586928 0.3637862 0.5007803 -0.4698649 0.3637862 0.5007803 -0.4805811 0.3637862 0.5007803 -0.490876 0.3637862 0.5007803 -0.5007803 0.3637862 0.5007803 -0.510322 0.3637862 0.5007803 -0.5195258 0.3637862 0.5007803 -0.5284142 0.3637862 0.5007803 -0.5370079 0.3637862 0.5007803 -0.5453253 0.3637862 0.5007803 -0.5533834 0.3637862 0.5007803 -0.5611974 0.3637862 0.5007803 -0.5687816 0.3637862 0.5007803 -0.092819 0.3795513 0.5007803 -0.1056428 0.3795513 0.5007803 -0.1201537 0.3795513 0.5007803 -0.1409607 0.3795513 0.5007803 -0.1678172 0.3795513 0.5007803 -0.1950164 0.3795513 0.5007803 -0.2210581 0.3795513 0.5007803 -0.245636 0.3795513 0.5007803 -0.2686816 0.3795513 0.5007803 -0.2902431 0.3795513 0.5007803 -0.3104189 0.3795513 0.5007803 -0.3293248 0.3795513 0.5007803 -0.3470774 0.3795513 0.5007803 -0.3637862 0.3795513 0.5007803 -0.3795513 0.3795513 0.5007803 -0.3944623 0.3795513 0.5007803 -0.4085988 0.3795513 0.5007803 -0.4220313 0.3795513 0.5007803 -0.4348222 0.3795513 0.5007803 -0.4470264 0.3795513 0.5007803 -0.4586928 0.3795513 0.5007803 -0.4698649 0.3795513 0.5007803 -0.4805811 0.3795513 0.5007803 -0.490876 0.3795513 0.5007803 -0.5007803 0.3795513 0.5007803 -0.510322 0.3795513 0.5007803 -0.5195258 0.3795513 0.5007803 -0.5284142 0.3795513 0.5007803 -0.5370079 0.3795513 0.5007803 -0.5453253 0.3795513 0.5007803 -0.5533834 0.3795513 0.5007803 -0.5611974 0.3795513 0.5007803 -0.5687816 0.3795513 0.5007803 -0.092819 0.3944623 0.5007803 -0.1056428 0.3944623 0.5007803 -0.1201537 0.3944623 0.5007803 -0.1409607 0.3944623 0.5007803 -0.1678172 0.3944623 0.5007803 -0.1950164 0.3944623 0.5007803 -0.2210581 0.3944623 0.5007803 -0.245636 0.3944623 0.5007803 -0.2686816 0.3944623 0.5007803 -0.2902431 0.3944623 0.5007803 -0.3104189 0.3944623 0.5007803 -0.3293248 0.3944623 0.5007803 -0.3470774 0.3944623 0.5007803 -0.3637862 0.3944623 0.5007803 -0.3795513 0.3944623 0.5007803 -0.3944623 0.3944623 0.5007803 -0.4085988 0.3944623 0.5007803 -0.4220313 0.3944623 0.5007803 -0.4348222 0.3944623 0.5007803 -0.4470264 0.3944623 0.5007803 -0.4586928 0.3944623 0.5007803 -0.4698649 0.3944623 0.5007803 -0.4805811 0.3944623 0.5007803 -0.490876 0.3944623 0.5007803 -0.5007803 0.3944623 0.5007803 -0.510322 0.3944623 0.5007803 -0.5195258 0.3944623 0.5007803 -0.5284142 0.3944623 0.5007803 -0.5370079 0.3944623 0.5007803 -0.5453253 0.3944623 0.5007803 -0.5533834 0.3944623 0.5007803 -0.5611974 0.3944623 0.5007803 -0.5687816 0.3944623 0.5007803 -0.092819 0.4085988 0.5007803 -0.1056428 0.4085988 0.5007803 -0.1201537 0.4085988 0.5007803 -0.1409607 0.4085988 0.5007803 -0.1678172 0.4085988 0.5007803 -0.1950164 0.4085988 0.5007803 -0.2210581 0.4085988 0.5007803 -0.245636 0.4085988 0.5007803 -0.2686816 0.4085988 0.5007803 -0.2902431 0.4085988 0.5007803 -0.3104189 0.4085988 0.5007803 -0.3293248 0.4085988 0.5007803 -0.3470774 0.4085988 0.5007803 -0.3637862 0.4085988 0.5007803 -0.3795513 0.4085988 0.5007803 -0.3944623 0.4085988 0.5007803 -0.4085988 0.4085988 0.5007803 -0.4220313 0.4085988 0.5007803 -0.4348222 0.4085988 0.5007803 -0.4470264 0.4085988 0.5007803 -0.4586928 0.4085988 0.5007803 -0.4698649 0.4085988 0.5007803 -0.4805811 0.4085988 0.5007803 -0.490876 0.4085988 0.5007803 -0.5007803 0.4085988 0.5007803 -0.510322 0.4085988 0.5007803 -0.5195258 0.4085988 0.5007803 -0.5284142 0.4085988 0.5007803 -0.5370079 0.4085988 0.5007803 -0.5453253 0.4085988 0.5007803 -0.5533834 0.4085988 0.5007803 -0.5611974 0.4085988 0.5007803 -0.5687816 0.4085988 0.5007803 -0.092819 0.4220313 0.5007803 -0.1056428 0.4220313 0.5007803 -0.1201537 0.4220313 0.5007803 -0.1409607 0.4220313 0.5007803 -0.1678172 0.4220313 0.5007803 -0.1950164 0.4220313 0.5007803 -0.2210581 0.4220313 0.5007803 -0.245636 0.4220313 0.5007803 -0.2686816 0.4220313 0.5007803 -0.2902431 0.4220313 0.5007803 -0.3104189 0.4220313 0.5007803 -0.3293248 0.4220313 0.5007803 -0.3470774 0.4220313 0.5007803 -0.3637862 0.4220313 0.5007803 -0.3795513 0.4220313 0.5007803 -0.3944623 0.4220313 0.5007803 -0.4085988 0.4220313 0.5007803 -0.4220313 0.4220313 0.5007803 -0.4348222 0.4220313 0.5007803 -0.4470264 0.4220313 0.5007803 -0.4586928 0.4220313 0.5007803 -0.4698649 0.4220313 0.5007803 -0.4805811 0.4220313 0.5007803 -0.490876 0.4220313 0.5007803 -0.5007803 0.4220313 0.5007803 -0.510322 0.4220313 0.5007803 -0.5195258 0.4220313 0.5007803 -0.5284142 0.4220313 0.5007803 -0.5370079 0.4220313 0.5007803 -0.5453253 0.4220313 0.5007803 -0.5533834 0.4220313 0.5007803 -0.5611974 0.4220313 0.5007803 -0.5687816 0.4220313 0.5007803 -0.092819 0.4348222 0.5007803 -0.1056428 0.4348222 0.5007803 -0.1201537 0.4348222 0.5007803 -0.1409607 0.4348222 0.5007803 -0.1678172 0.4348222 0.5007803 -0.1950164 0.4348222 0.5007803 -0.2210581 0.4348222 0.5007803 -0.245636 0.4348222 0.5007803 -0.2686816 0.4348222 0.5007803 -0.2902431 0.4348222 0.5007803 -0.3104189 0.4348222 0.5007803 -0.3293248 0.4348222 0.5007803 -0.3470774 0.4348222 0.5007803 -0.3637862 0.4348222 0.5007803 -0.3795513 0.4348222 0.5007803 -0.3944623 0.4348222 0.5007803 -0.4085988 0.4348222 0.5007803 -0.4220313 0.4348222 0.5007803 -0.4348222 0.4348222 0.5007803 -0.4470264 0.4348222 0.5007803 -0.4586928 0.4348222 0.5007803 -0.4698649 0.4348222 0.5007803 -0.4805811 0.4348222 0.5007803 -0.490876 0.4348222 0.5007803 -0.5007803 0.4348222 0.5007803 -0.510322 0.4348222 0.5007803 -0.5195258 0.4348222 0.5007803 -0.5284142 0.4348222 0.5007803 -0.5370079 0.4348222 0.5007803 -0.5453253 0.4348222 0.5007803 -0.5533834 0.4348222 0.5007803 -0.5611974 0.4348222 0.5007803 -0.5687816 0.4348222 0.5007803 -0.092819 0.4470264 0.5007803 -0.1056428 0.4470264 0.5007803 -0.1201537 0.4470264 0.5007803 -0.1409607 0.4470264 0.5007803 -0.1678172 0.4470264 0.5007803 -0.1950164 0.4470264 0.5007803 -0.2210581 0.4470264 0.5007803 -0.245636 0.4470264 0.5007803 -0.2686816 0.4470264 0.5007803 -0.2902431 0.4470264 0.5007803 -0.3104189 0.4470264 0.5007803 -0.3293248 0.4470264 0.5007803 -0.3470774 0.4470264 0.5007803 -0.3637862 0.4470264 0.5007803 -0.3795513 0.4470264 0.5007803 -0.3944623 0.4470264 0.5007803 -0.4085988 0.4470264 0.5007803 -0.4220313 0.4470264 0.5007803 -0.4348222 0.4470264 0.5007803 -0.4470264 0.4470264 0.5007803 -0.4586928 0.4470264 0.5007803 -0.4698649 0.4470264 0.5007803 -0.4805811 0.4470264 0.5007803 -0.490876 0.4470264 0.5007803 -0.5007803 0.4470264 0.5007803 -0.510322 0.4470264 0.5007803 -0.5195258 0.4470264 0.5007803 -0.5284142 0.4470264 0.5007803 -0.5370079 0.4470264 0.5007803 -0.5453253 0.4470264 0.5007803 -0.5533834 0.4470264 0.5007803 -0.5611974 0.4470264 0.5007803 -0.5687816 0.4470264 0.5007803 -0.092819 0.4586928 0.5007803 -0.1056428 0.4586928 0.5007803 -0.1201537 0.4586928 0.5007803 -0.1409607 0.4586928 0.5007803 -0.1678172 0.4586928 0.5007803 -0.1950164 0.4586928 0.5007803 -0.2210581 0.4586928 0.5007803 -0.245636 0.4586928 0.5007803 -0.2686816 0.4586928 0.5007803 -0.2902431 0.4586928 0.5007803 -0.3104189 0.4586928 0.5007803 -0.3293248 0.4586928 0.5007803 -0.3470774 0.4586928 0.5007803 -0.3637862 0.4586928 0.5007803 -0.3795513 0.4586928 0.5007803 -0.3944623 0.4586928 0.5007803 -0.4085988 0.4586928 0.5007803 -0.4220313 0.4586928 0.5007803 -0.4348222 0.4586928 0.5007803 -0.4470264 0.4586928 0.5007803 -0.4586928 0.4586928 0.5007803 -0.4698649 0.4586928 0.5007803 -0.4805811 0.4586928 0.5007803 -0.490876 0.4586928 0.5007803 -0.5007803 0.4586928 0.5007803 -0.510322 0.4586928 0.5007803 -0.5195258 0.4586928 0.5007803 -0.5284142 0.4586928 0.5007803 -0.5370079 0.4586928 0.5007803 -0.5453253 0.4586928 0.5007803 -0.5533834 0.4586928 0.5007803 -0.5611974 0.4586928 0.5007803 -0.5687816 0.4586928 0.5007803 -0.092819 0.4698649 0.5007803 -0.1056428 0.4698649 0.5007803 -0.1201537 0.4698649 0.5007803 -0.1409607 0.4698649 0.5007803 -0.1678172 0.4698649 0.5007803 -0.1950164 0.4698649 0.5007803 -0.2210581 0.4698649 0.5007803 -0.245636 0.4698649 0.5007803 -0.2686816 0.4698649 0.5007803 -0.2902431 0.4698649 0.5007803 -0.3104189 0.4698649 0.5007803 -0.3293248 0.4698649 0.5007803 -0.3470774 0.4698649 0.5007803 -0.3637862 0.4698649 0.5007803 -0.3795513 0.4698649 0.5007803 -0.3944623 0.4698649 0.5007803 -0.4085988 0.4698649 0.5007803 -0.4220313 0.4698649 0.5007803 -0.4348222 0.4698649 0.5007803 -0.4470264 0.4698649 0.5007803 -0.4586928 0.4698649 0.5007803 -0.4698649 0.4698649 0.5007803 -0.4805811 0.4698649 0.5007803 -0.490876 0.4698649 0.5007803 -0.5007803 0.4698649 0.5007803 -0.510322 0.4698649 0.5007803 -0.5195258 0.4698649 0.5007803 -0.5284142 0.4698649 0.5007803 -0.5370079 0.4698649 0.5007803 -0.5453253 0.4698649 0.5007803 -0.5533834 0.4698649 0.5007803 -0.5611974 0.4698649 0.5007803 -0.5687816 0.4698649 0.5007803 -0.092819 0.4805811 0.5007803 -0.1056428 0.4805811 0.5007803 -0.1201537 0.4805811 0.5007803 -0.1409607 0.4805811 0.5007803 -0.1678172 0.4805811 0.5007803 -0.1950164 0.4805811 0.5007803 -0.2210581 0.4805811 0.5007803 -0.245636 0.4805811 0.5007803 -0.2686816 0.4805811 0.5007803 -0.2902431 0.4805811 0.5007803 -0.3104189 0.4805811 0.5007803 -0.3293248 0.4805811 0.5007803 -0.3470774 0.4805811 0.5007803 -0.3637862 0.4805811 0.5007803 -0.3795513 0.4805811 0.5007803 -0.3944623 0.4805811 0.5007803 -0.4085988 0.4805811 0.5007803 -0.4220313 0.4805811 0.5007803 -0.4348222 0.4805811 0.5007803 -0.4470264 0.4805811 0.5007803 -0.4586928 0.4805811 0.5007803 -0.4698649 0.4805811 0.5007803 -0.4805811 0.4805811 0.5007803 -0.490876 0.4805811 0.5007803 -0.5007803 0.4805811 0.5007803 -0.510322 0.4805811 0.5007803 -0.5195258 0.4805811 0.5007803 -0.5284142 0.4805811 0.5007803 -0.5370079 0.4805811 0.5007803 -0.5453253 0.4805811 0.5007803 -0.5533834 0.4805811 0.5007803 -0.5611974 0.4805811 0.5007803 -0.5687816 0.4805811 0.5007803 -0.092819 0.490876 0.5007803 -0.1056428 0.490876 0.5007803 -0.1201537 0.490876 0.5007803 -0.1409607 0.490876 0.5007803 -0.1678172 0.490876 0.5007803 -0.1950164 0.490876 0.5007803 -0.2210581 0.490876 0.5007803 -0.245636 0.490876 0.5007803 -0.2686816 0.490876 0.5007803 -0.2902431 0.490876 0.5007803 -0.3104189 0.490876 0.5007803 -0.3293248 0.490876 0.5007803 -0.3470774 0.490876 0.5007803 -0.3637862 0.490876 0.5007803 -0.3795513 0.490876 0.5007803 -0.3944623 0.490876 0.5007803 -0.4085988 0.490876 0.5007803 -0.4220313 0.490876 0.5007803 -0.4348222 0.490876 0.5007803 -0.4470264 0.490876 0.5007803 -0.4586928 0.490876 0.5007803 -0.4698649 0.490876 0.5007803 -0.4805811 0.490876 0.5007803 -0.490876 0.490876 0.5007803 -0.5007803 0.490876 0.5007803 -0.510322 0.490876 0.5007803 -0.5195258 0.490876 0.5007803 -0.5284142 0.490876 0.5007803 -0.5370079 0.490876 0.5007803 -0.5453253 0.490876 0.5007803 -0.5533834 0.490876 0.5007803 -0.5611974 0.490876 0.5007803 -0.5687816 0.490876 0.5007803 -0.092819 0.5007803 0.5007803 -0.1056428 0.5007803 0.5007803 -0.1201537 0.5007803 0.5007803 -0.1409607 0.5007803 0.5007803 -0.1678172 0.5007803 0.5007803 -0.1950164 0.5007803 0.5007803 -0.2210581 0.5007803 0.5007803 -0.245636 0.5007803 0.5007803 -0.2686816 0.5007803 0.5007803 -0.2902431 0.5007803 0.5007803 -0.3104189 0.5007803 0.5007803 -0.3293248 0.5007803 0.5007803 -0.3470774 0.5007803 0.5007803 -0.3637862 0.5007803 0.5007803 -0.3795513 0.5007803 0.5007803 -0.3944623 0.5007803 0.5007803 -0.4085988 0.5007803 0.5007803 -0.4220313 0.5007803 0.5007803 -0.4348222 0.5007803 0.5007803 -0.4470264 0.5007803 0.5007803 -0.4586928 0.5007803 0.5007803 -0.4698649 0.5007803 0.5007803 -0.4805811 0.5007803 0.5007803 -0.490876 0.5007803 0.5007803 -0.5007803 0.5007803 0.5007803 -0.510322 0.5007803 0.5007803 -0.5195258 0.5007803 0.5007803 -0.5284142 0.5007803 0.5007803 -0.5370079 0.5007803 0.5007803 -0.5453253 0.5007803 0.5007803 -0.5533834 0.5007803 0.5007803 -0.5611974 0.5007803 0.5007803 -0.5687816 0.5007803 0.5007803 -0.092819 0.510322 0.5007803 -0.1056428 0.510322 0.5007803 -0.1201537 0.510322 0.5007803 -0.1409607 0.510322 0.5007803 -0.1678172 0.510322 0.5007803 -0.1950164 0.510322 0.5007803 -0.2210581 0.510322 0.5007803 -0.245636 0.510322 0.5007803 -0.2686816 0.510322 0.5007803 -0.2902431 0.510322 0.5007803 -0.3104189 0.510322 0.5007803 -0.3293248 0.510322 0.5007803 -0.3470774 0.510322 0.5007803 -0.3637862 0.510322 0.5007803 -0.3795513 0.510322 0.5007803 -0.3944623 0.510322 0.5007803 -0.4085988 0.510322 0.5007803 -0.4220313 0.510322 0.5007803 -0.4348222 0.510322 0.5007803 -0.4470264 0.510322 0.5007803 -0.4586928 0.510322 0.5007803 -0.4698649 0.510322 0.5007803 -0.4805811 0.510322 0.5007803 -0.490876 0.510322 0.5007803 -0.5007803 0.510322 0.5007803 -0.510322 0.510322 0.5007803 -0.5195258 0.510322 0.5007803 -0.5284142 0.510322 0.5007803 -0.5370079 0.510322 0.5007803 -0.5453253 0.510322 0.5007803 -0.5533834 0.510322 0.5007803 -0.5611974 0.510322 0.5007803 -0.5687816 0.510322 0.5007803 -0.092819 0.5195258 0.5007803 -0.1056428 0.5195258 0.5007803 -0.1201537 0.5195258 0.5007803 -0.1409607 0.5195258 0.5007803 -0.1678172 0.5195258 0.5007803 -0.1950164 0.5195258 0.5007803 -0.2210581 0.5195258 0.5007803 -0.245636 0.5195258 0.5007803 -0.2686816 0.5195258 0.5007803 -0.2902431 0.5195258 0.5007803 -0.3104189 0.5195258 0.5007803 -0.3293248 0.5195258 0.5007803 -0.3470774 0.5195258 0.5007803 -0.3637862 0.5195258 0.5007803 -0.3795513 0.5195258 0.5007803 -0.3944623 0.5195258 0.5007803 -0.4085988 0.5195258 0.5007803 -0.4220313 0.5195258 0.5007803 -0.4348222 0.5195258 0.5007803 -0.4470264 0.5195258 0.5007803 -0.4586928 0.5195258 0.5007803 -0.4698649 0.5195258 0.5007803 -0.4805811 0.5195258 0.5007803 -0.490876 0.5195258 0.5007803 -0.5007803 0.5195258 0.5007803 -0.510322 0.5195258 0.5007803 -0.5195258 0.5195258 0.5007803 -0.5284142 0.5195258 0.5007803 -0.5370079 0.5195258 0.5007803 -0.5453253 0.5195258 0.5007803 -0.5533834 0.5195258 0.5007803 -0.5611974 0.5195258 0.5007803 -0.5687816 0.5195258 0.5007803 -0.092819 0.5284142 0.5007803 -0.1056428 0.5284142 0.5007803 -0.1201537 0.5284142 0.5007803 -0.1409607 0.5284142 0.5007803 -0.1678172 0.5284142 0.5007803 -0.1950164 0.5284142 0.5007803 -0.2210581 0.5284142 0.5007803 -0.245636 0.5284142 0.5007803 -0.2686816 0.5284142 0.5007803 -0.2902431 0.5284142 0.5007803 -0.3104189 0.5284142 0.5007803 -0.3293248 0.5284142 0.5007803 -0.3470774 0.5284142 0.5007803 -0.3637862 0.5284142 0.5007803 -0.3795513 0.5284142 0.5007803 -0.3944623 0.5284142 0.5007803 -0.4085988 0.5284142 0.5007803 -0.4220313 0.5284142 0.5007803 -0.4348222 0.5284142 0.5007803 -0.4470264 0.5284142 0.5007803 -0.4586928 0.5284142 0.5007803 -0.4698649 0.5284142 0.5007803 -0.4805811 0.5284142 0.5007803 -0.490876 0.5284142 0.5007803 -0.5007803 0.5284142 0.5007803 -0.510322 0.5284142 0.5007803 -0.5195258 0.5284142 0.5007803 -0.5284142 0.5284142 0.5007803 -0.5370079 0.5284142 0.5007803 -0.5453253 0.5284142 0.5007803 -0.5533834 0.5284142 0.5007803 -0.5611974 0.5284142 0.5007803 -0.5687816 0.5284142 0.5007803 -0.092819 0.5370079 0.5007803 -0.1056428 0.5370079 0.5007803 -0.1201537 0.5370079 0.5007803 -0.1409607 0.5370079 0.5007803 -0.1678172 0.5370079 0.5007803 -0.1950164 0.5370079 0.5007803 -0.2210581 0.5370079 0.5007803 -0.245636 0.5370079 0.5007803 -0.2686816 0.5370079 0.5007803 -0.2902431 0.5370079 0.5007803 -0.3104189 0.5370079 0.5007803 -0.3293248 0.5370079 0.5007803 -0.3470774 0.5370079 0.5007803 -0.3637862 0.5370079 0.5007803 -0.3795513 0.5370079 0.5007803 -0.3944623 0.5370079 0.5007803 -0.4085988 0.5370079 0.5007803 -0.4220313 0.5370079 0.5007803 -0.4348222 0.5370079 0.5007803 -0.4470264 0.5370079 0.5007803 -0.4586928 0.5370079 0.5007803 -0.4698649 0.5370079 0.5007803 -0.4805811 0.5370079 0.5007803 -0.490876 0.5370079 0.5007803 -0.5007803 0.5370079 0.5007803 -0.510322 0.5370079 0.5007803 -0.5195258 0.5370079 0.5007803 -0.5284142 0.5370079 0.5007803 -0.5370079 0.5370079 0.5007803 -0.5453253 0.5370079 0.5007803 -0.5533834 0.5370079 0.5007803 -0.5611974 0.5370079 0.5007803 -0.5687816 0.5370079 0.5007803 -0.092819 0.5453253 0.5007803 -0.1056428 0.5453253 0.5007803 -0.1201537 0.5453253 0.5007803 -0.1409607 0.5453253 0.5007803 -0.1678172 0.5453253 0.5007803 -0.1950164 0.5453253 0.5007803 -0.2210581 0.5453253 0.5007803 -0.245636 0.5453253 0.5007803 -0.2686816 0.5453253 0.5007803 -0.2902431 0.5453253 0.5007803 -0.3104189 0.5453253 0.5007803 -0.3293248 0.5453253 0.5007803 -0.3470774 0.5453253 0.5007803 -0.3637862 0.5453253 0.5007803 -0.3795513 0.5453253 0.5007803 -0.3944623 0.5453253 0.5007803 -0.4085988 0.5453253 0.5007803 -0.4220313 0.5453253 0.5007803 -0.4348222 0.5453253 0.5007803 -0.4470264 0.5453253 0.5007803 -0.4586928 0.5453253 0.5007803 -0.4698649 0.5453253 0.5007803 -0.4805811 0.5453253 0.5007803 -0.490876 0.5453253 0.5007803 -0.5007803 0.5453253 0.5007803 -0.510322 0.5453253 0.5007803 -0.5195258 0.5453253 0.5007803 -0.5284142 0.5453253 0.5007803 -0.5370079 0.5453253 0.5007803 -0.5453253 0.5453253 0.5007803 -0.5533834 0.5453253 0.5007803 -0.5611974 0.5453253 0.5007803 -0.5687816 0.5453253 0.5007803 -0.092819 0.5533834 0.5007803 -0.1056428 0.5533834 0.5007803 -0.1201537 0.5533834 0.5007803 -0.1409607 0.5533834 0.5007803 -0.1678172 0.5533834 0.5007803 -0.1950164 0.5533834 0.5007803 -0.2210581 0.5533834 0.5007803 -0.245636 0.5533834 0.5007803 -0.2686816 0.5533834 0.5007803 -0.2902431 0.5533834 0.5007803 -0.3104189 0.5533834 0.5007803 -0.3293248 0.5533834 0.5007803 -0.3470774 0.5533834 0.5007803 -0.3637862 0.5533834 0.5007803 -0.3795513 0.5533834 0.5007803 -0.3944623 0.5533834 0.5007803 -0.4085988 0.5533834 0.5007803 -0.4220313 0.5533834 0.5007803 -0.4348222 0.5533834 0.5007803 -0.4470264 0.5533834 0.5007803 -0.4586928 0.5533834 0.5007803 -0.4698649 0.5533834 0.5007803 -0.4805811 0.5533834 0.5007803 -0.490876 0.5533834 0.5007803 -0.5007803 0.5533834 0.5007803 -0.510322 0.5533834 0.5007803 -0.5195258 0.5533834 0.5007803 -0.5284142 0.5533834 0.5007803 -0.5370079 0.5533834 0.5007803 -0.5453253 0.5533834 0.5007803 -0.5533834 0.5533834 0.5007803 -0.5611974 0.5533834 0.5007803 -0.5687816 0.5533834 0.5007803 -0.092819 0.5611974 0.5007803 -0.1056428 0.5611974 0.5007803 -0.1201537 0.5611974 0.5007803 -0.1409607 0.5611974 0.5007803 -0.1678172 0.5611974 0.5007803 -0.1950164 0.5611974 0.5007803 -0.2210581 0.5611974 0.5007803 -0.245636 0.5611974 0.5007803 -0.2686816 0.5611974 0.5007803 -0.2902431 0.5611974 0.5007803 -0.3104189 0.5611974 0.5007803 -0.3293248 0.5611974 0.5007803 -0.3470774 0.5611974 0.5007803 -0.3637862 0.5611974 0.5007803 -0.3795513 0.5611974 0.5007803 -0.3944623 0.5611974 0.5007803 -0.4085988 0.5611974 0.5007803 -0.4220313 0.5611974 0.5007803 -0.4348222 0.5611974 0.5007803 -0.4470264 0.5611974 0.5007803 -0.4586928 0.5611974 0.5007803 -0.4698649 0.5611974 0.5007803 -0.4805811 0.5611974 0.5007803 -0.490876 0.5611974 0.5007803 -0.5007803 0.5611974 0.5007803 -0.510322 0.5611974 0.5007803 -0.5195258 0.5611974 0.5007803 -0.5284142 0.5611974 0.5007803 -0.5370079 0.5611974 0.5007803 -0.5453253 0.5611974 0.5007803 -0.5533834 0.5611974 0.5007803 -0.5611974 0.5611974 0.5007803 -0.5687816 0.5611974 0.5007803 -0.092819 0.5687816 0.5007803 -0.1056428 0.5687816 0.5007803 -0.1201537 0.5687816 0.5007803 -0.1409607 0.5687816 0.5007803 -0.1678172 0.5687816 0.5007803 -0.1950164 0.5687816 0.5007803 -0.2210581 0.5687816 0.5007803 -0.245636 0.5687816 0.5007803 -0.2686816 0.5687816 0.5007803 -0.2902431 0.5687816 0.5007803 -0.3104189 0.5687816 0.5007803 -0.3293248 0.5687816 0.5007803 -0.3470774 0.5687816 0.5007803 -0.3637862 0.5687816 0.5007803 -0.3795513 0.5687816 0.5007803 -0.3944623 0.5687816 0.5007803 -0.4085988 0.5687816 0.5007803 -0.4220313 0.5687816 0.5007803 -0.4348222 0.5687816 0.5007803 -0.4470264 0.5687816 0.5007803 -0.4586928 0.5687816 0.5007803 -0.4698649 0.5687816 0.5007803 -0.4805811 0.5687816 0.5007803 -0.490876 0.5687816 0.5007803 -0.5007803 0.5687816 0.5007803 -0.510322 0.5687816 0.5007803 -0.5195258 0.5687816 0.5007803 -0.5284142 0.5687816 0.5007803 -0.5370079 0.5687816 0.5007803 -0.5453253 0.5687816 0.5007803 -0.5533834 0.5687816 0.5007803 -0.5611974 0.5687816 0.5007803 -0.5687816 0.5687816 0.5007803 -0.092819 0.092819 0.510322 -0.1056428 0.092819 0.510322 -0.1201537 0.092819 0.510322 -0.1409607 0.092819 0.510322 -0.1678172 0.092819 0.510322 -0.1950164 0.092819 0.510322 -0.2210581 0.092819 0.510322 -0.245636 0.092819 0.510322 -0.2686816 0.092819 0.510322 -0.2902431 0.092819 0.510322 -0.3104189 0.092819 0.510322 -0.3293248 0.092819 0.510322 -0.3470774 0.092819 0.510322 -0.3637862 0.092819 0.510322 -0.3795513 0.092819 0.510322 -0.3944623 0.092819 0.510322 -0.4085988 0.092819 0.510322 -0.4220313 0.092819 0.510322 -0.4348222 0.092819 0.510322 -0.4470264 0.092819 0.510322 -0.4586928 0.092819 0.510322 -0.4698649 0.092819 0.510322 -0.4805811 0.092819 0.510322 -0.490876 0.092819 0.510322 -0.5007803 0.092819 0.510322 -0.510322 0.092819 0.510322 -0.5195258 0.092819 0.510322 -0.5284142 0.092819 0.510322 -0.5370079 0.092819 0.510322 -0.5453253 0.092819 0.510322 -0.5533834 0.092819 0.510322 -0.5611974 0.092819 0.510322 -0.5687816 0.092819 0.510322 -0.092819 0.1056428 0.510322 -0.1056428 0.1056428 0.510322 -0.1201537 0.1056428 0.510322 -0.1409607 0.1056428 0.510322 -0.1678172 0.1056428 0.510322 -0.1950164 0.1056428 0.510322 -0.2210581 0.1056428 0.510322 -0.245636 0.1056428 0.510322 -0.2686816 0.1056428 0.510322 -0.2902431 0.1056428 0.510322 -0.3104189 0.1056428 0.510322 -0.3293248 0.1056428 0.510322 -0.3470774 0.1056428 0.510322 -0.3637862 0.1056428 0.510322 -0.3795513 0.1056428 0.510322 -0.3944623 0.1056428 0.510322 -0.4085988 0.1056428 0.510322 -0.4220313 0.1056428 0.510322 -0.4348222 0.1056428 0.510322 -0.4470264 0.1056428 0.510322 -0.4586928 0.1056428 0.510322 -0.4698649 0.1056428 0.510322 -0.4805811 0.1056428 0.510322 -0.490876 0.1056428 0.510322 -0.5007803 0.1056428 0.510322 -0.510322 0.1056428 0.510322 -0.5195258 0.1056428 0.510322 -0.5284142 0.1056428 0.510322 -0.5370079 0.1056428 0.510322 -0.5453253 0.1056428 0.510322 -0.5533834 0.1056428 0.510322 -0.5611974 0.1056428 0.510322 -0.5687816 0.1056428 0.510322 -0.092819 0.1201537 0.510322 -0.1056428 0.1201537 0.510322 -0.1201537 0.1201537 0.510322 -0.1409607 0.1201537 0.510322 -0.1678172 0.1201537 0.510322 -0.1950164 0.1201537 0.510322 -0.2210581 0.1201537 0.510322 -0.245636 0.1201537 0.510322 -0.2686816 0.1201537 0.510322 -0.2902431 0.1201537 0.510322 -0.3104189 0.1201537 0.510322 -0.3293248 0.1201537 0.510322 -0.3470774 0.1201537 0.510322 -0.3637862 0.1201537 0.510322 -0.3795513 0.1201537 0.510322 -0.3944623 0.1201537 0.510322 -0.4085988 0.1201537 0.510322 -0.4220313 0.1201537 0.510322 -0.4348222 0.1201537 0.510322 -0.4470264 0.1201537 0.510322 -0.4586928 0.1201537 0.510322 -0.4698649 0.1201537 0.510322 -0.4805811 0.1201537 0.510322 -0.490876 0.1201537 0.510322 -0.5007803 0.1201537 0.510322 -0.510322 0.1201537 0.510322 -0.5195258 0.1201537 0.510322 -0.5284142 0.1201537 0.510322 -0.5370079 0.1201537 0.510322 -0.5453253 0.1201537 0.510322 -0.5533834 0.1201537 0.510322 -0.5611974 0.1201537 0.510322 -0.5687816 0.1201537 0.510322 -0.092819 0.1409607 0.510322 -0.1056428 0.1409607 0.510322 -0.1201537 0.1409607 0.510322 -0.1409607 0.1409607 0.510322 -0.1678172 0.1409607 0.510322 -0.1950164 0.1409607 0.510322 -0.2210581 0.1409607 0.510322 -0.245636 0.1409607 0.510322 -0.2686816 0.1409607 0.510322 -0.2902431 0.1409607 0.510322 -0.3104189 0.1409607 0.510322 -0.3293248 0.1409607 0.510322 -0.3470774 0.1409607 0.510322 -0.3637862 0.1409607 0.510322 -0.3795513 0.1409607 0.510322 -0.3944623 0.1409607 0.510322 -0.4085988 0.1409607 0.510322 -0.4220313 0.1409607 0.510322 -0.4348222 0.1409607 0.510322 -0.4470264 0.1409607 0.510322 -0.4586928 0.1409607 0.510322 -0.4698649 0.1409607 0.510322 -0.4805811 0.1409607 0.510322 -0.490876 0.1409607 0.510322 -0.5007803 0.1409607 0.510322 -0.510322 0.1409607 0.510322 -0.5195258 0.1409607 0.510322 -0.5284142 0.1409607 0.510322 -0.5370079 0.1409607 0.510322 -0.5453253 0.1409607 0.510322 -0.5533834 0.1409607 0.510322 -0.5611974 0.1409607 0.510322 -0.5687816 0.1409607 0.510322 -0.092819 0.1678172 0.510322 -0.1056428 0.1678172 0.510322 -0.1201537 0.1678172 0.510322 -0.1409607 0.1678172 0.510322 -0.1678172 0.1678172 0.510322 -0.1950164 0.1678172 0.510322 -0.2210581 0.1678172 0.510322 -0.245636 0.1678172 0.510322 -0.2686816 0.1678172 0.510322 -0.2902431 0.1678172 0.510322 -0.3104189 0.1678172 0.510322 -0.3293248 0.1678172 0.510322 -0.3470774 0.1678172 0.510322 -0.3637862 0.1678172 0.510322 -0.3795513 0.1678172 0.510322 -0.3944623 0.1678172 0.510322 -0.4085988 0.1678172 0.510322 -0.4220313 0.1678172 0.510322 -0.4348222 0.1678172 0.510322 -0.4470264 0.1678172 0.510322 -0.4586928 0.1678172 0.510322 -0.4698649 0.1678172 0.510322 -0.4805811 0.1678172 0.510322 -0.490876 0.1678172 0.510322 -0.5007803 0.1678172 0.510322 -0.510322 0.1678172 0.510322 -0.5195258 0.1678172 0.510322 -0.5284142 0.1678172 0.510322 -0.5370079 0.1678172 0.510322 -0.5453253 0.1678172 0.510322 -0.5533834 0.1678172 0.510322 -0.5611974 0.1678172 0.510322 -0.5687816 0.1678172 0.510322 -0.092819 0.1950164 0.510322 -0.1056428 0.1950164 0.510322 -0.1201537 0.1950164 0.510322 -0.1409607 0.1950164 0.510322 -0.1678172 0.1950164 0.510322 -0.1950164 0.1950164 0.510322 -0.2210581 0.1950164 0.510322 -0.245636 0.1950164 0.510322 -0.2686816 0.1950164 0.510322 -0.2902431 0.1950164 0.510322 -0.3104189 0.1950164 0.510322 -0.3293248 0.1950164 0.510322 -0.3470774 0.1950164 0.510322 -0.3637862 0.1950164 0.510322 -0.3795513 0.1950164 0.510322 -0.3944623 0.1950164 0.510322 -0.4085988 0.1950164 0.510322 -0.4220313 0.1950164 0.510322 -0.4348222 0.1950164 0.510322 -0.4470264 0.1950164 0.510322 -0.4586928 0.1950164 0.510322 -0.4698649 0.1950164 0.510322 -0.4805811 0.1950164 0.510322 -0.490876 0.1950164 0.510322 -0.5007803 0.1950164 0.510322 -0.510322 0.1950164 0.510322 -0.5195258 0.1950164 0.510322 -0.5284142 0.1950164 0.510322 -0.5370079 0.1950164 0.510322 -0.5453253 0.1950164 0.510322 -0.5533834 0.1950164 0.510322 -0.5611974 0.1950164 0.510322 -0.5687816 0.1950164 0.510322 -0.092819 0.2210581 0.510322 -0.1056428 0.2210581 0.510322 -0.1201537 0.2210581 0.510322 -0.1409607 0.2210581 0.510322 -0.1678172 0.2210581 0.510322 -0.1950164 0.2210581 0.510322 -0.2210581 0.2210581 0.510322 -0.245636 0.2210581 0.510322 -0.2686816 0.2210581 0.510322 -0.2902431 0.2210581 0.510322 -0.3104189 0.2210581 0.510322 -0.3293248 0.2210581 0.510322 -0.3470774 0.2210581 0.510322 -0.3637862 0.2210581 0.510322 -0.3795513 0.2210581 0.510322 -0.3944623 0.2210581 0.510322 -0.4085988 0.2210581 0.510322 -0.4220313 0.2210581 0.510322 -0.4348222 0.2210581 0.510322 -0.4470264 0.2210581 0.510322 -0.4586928 0.2210581 0.510322 -0.4698649 0.2210581 0.510322 -0.4805811 0.2210581 0.510322 -0.490876 0.2210581 0.510322 -0.5007803 0.2210581 0.510322 -0.510322 0.2210581 0.510322 -0.5195258 0.2210581 0.510322 -0.5284142 0.2210581 0.510322 -0.5370079 0.2210581 0.510322 -0.5453253 0.2210581 0.510322 -0.5533834 0.2210581 0.510322 -0.5611974 0.2210581 0.510322 -0.5687816 0.2210581 0.510322 -0.092819 0.245636 0.510322 -0.1056428 0.245636 0.510322 -0.1201537 0.245636 0.510322 -0.1409607 0.245636 0.510322 -0.1678172 0.245636 0.510322 -0.1950164 0.245636 0.510322 -0.2210581 0.245636 0.510322 -0.245636 0.245636 0.510322 -0.2686816 0.245636 0.510322 -0.2902431 0.245636 0.510322 -0.3104189 0.245636 0.510322 -0.3293248 0.245636 0.510322 -0.3470774 0.245636 0.510322 -0.3637862 0.245636 0.510322 -0.3795513 0.245636 0.510322 -0.3944623 0.245636 0.510322 -0.4085988 0.245636 0.510322 -0.4220313 0.245636 0.510322 -0.4348222 0.245636 0.510322 -0.4470264 0.245636 0.510322 -0.4586928 0.245636 0.510322 -0.4698649 0.245636 0.510322 -0.4805811 0.245636 0.510322 -0.490876 0.245636 0.510322 -0.5007803 0.245636 0.510322 -0.510322 0.245636 0.510322 -0.5195258 0.245636 0.510322 -0.5284142 0.245636 0.510322 -0.5370079 0.245636 0.510322 -0.5453253 0.245636 0.510322 -0.5533834 0.245636 0.510322 -0.5611974 0.245636 0.510322 -0.5687816 0.245636 0.510322 -0.092819 0.2686816 0.510322 -0.1056428 0.2686816 0.510322 -0.1201537 0.2686816 0.510322 -0.1409607 0.2686816 0.510322 -0.1678172 0.2686816 0.510322 -0.1950164 0.2686816 0.510322 -0.2210581 0.2686816 0.510322 -0.245636 0.2686816 0.510322 -0.2686816 0.2686816 0.510322 -0.2902431 0.2686816 0.510322 -0.3104189 0.2686816 0.510322 -0.3293248 0.2686816 0.510322 -0.3470774 0.2686816 0.510322 -0.3637862 0.2686816 0.510322 -0.3795513 0.2686816 0.510322 -0.3944623 0.2686816 0.510322 -0.4085988 0.2686816 0.510322 -0.4220313 0.2686816 0.510322 -0.4348222 0.2686816 0.510322 -0.4470264 0.2686816 0.510322 -0.4586928 0.2686816 0.510322 -0.4698649 0.2686816 0.510322 -0.4805811 0.2686816 0.510322 -0.490876 0.2686816 0.510322 -0.5007803 0.2686816 0.510322 -0.510322 0.2686816 0.510322 -0.5195258 0.2686816 0.510322 -0.5284142 0.2686816 0.510322 -0.5370079 0.2686816 0.510322 -0.5453253 0.2686816 0.510322 -0.5533834 0.2686816 0.510322 -0.5611974 0.2686816 0.510322 -0.5687816 0.2686816 0.510322 -0.092819 0.2902431 0.510322 -0.1056428 0.2902431 0.510322 -0.1201537 0.2902431 0.510322 -0.1409607 0.2902431 0.510322 -0.1678172 0.2902431 0.510322 -0.1950164 0.2902431 0.510322 -0.2210581 0.2902431 0.510322 -0.245636 0.2902431 0.510322 -0.2686816 0.2902431 0.510322 -0.2902431 0.2902431 0.510322 -0.3104189 0.2902431 0.510322 -0.3293248 0.2902431 0.510322 -0.3470774 0.2902431 0.510322 -0.3637862 0.2902431 0.510322 -0.3795513 0.2902431 0.510322 -0.3944623 0.2902431 0.510322 -0.4085988 0.2902431 0.510322 -0.4220313 0.2902431 0.510322 -0.4348222 0.2902431 0.510322 -0.4470264 0.2902431 0.510322 -0.4586928 0.2902431 0.510322 -0.4698649 0.2902431 0.510322 -0.4805811 0.2902431 0.510322 -0.490876 0.2902431 0.510322 -0.5007803 0.2902431 0.510322 -0.510322 0.2902431 0.510322 -0.5195258 0.2902431 0.510322 -0.5284142 0.2902431 0.510322 -0.5370079 0.2902431 0.510322 -0.5453253 0.2902431 0.510322 -0.5533834 0.2902431 0.510322 -0.5611974 0.2902431 0.510322 -0.5687816 0.2902431 0.510322 -0.092819 0.3104189 0.510322 -0.1056428 0.3104189 0.510322 -0.1201537 0.3104189 0.510322 -0.1409607 0.3104189 0.510322 -0.1678172 0.3104189 0.510322 -0.1950164 0.3104189 0.510322 -0.2210581 0.3104189 0.510322 -0.245636 0.3104189 0.510322 -0.2686816 0.3104189 0.510322 -0.2902431 0.3104189 0.510322 -0.3104189 0.3104189 0.510322 -0.3293248 0.3104189 0.510322 -0.3470774 0.3104189 0.510322 -0.3637862 0.3104189 0.510322 -0.3795513 0.3104189 0.510322 -0.3944623 0.3104189 0.510322 -0.4085988 0.3104189 0.510322 -0.4220313 0.3104189 0.510322 -0.4348222 0.3104189 0.510322 -0.4470264 0.3104189 0.510322 -0.4586928 0.3104189 0.510322 -0.4698649 0.3104189 0.510322 -0.4805811 0.3104189 0.510322 -0.490876 0.3104189 0.510322 -0.5007803 0.3104189 0.510322 -0.510322 0.3104189 0.510322 -0.5195258 0.3104189 0.510322 -0.5284142 0.3104189 0.510322 -0.5370079 0.3104189 0.510322 -0.5453253 0.3104189 0.510322 -0.5533834 0.3104189 0.510322 -0.5611974 0.3104189 0.510322 -0.5687816 0.3104189 0.510322 -0.092819 0.3293248 0.510322 -0.1056428 0.3293248 0.510322 -0.1201537 0.3293248 0.510322 -0.1409607 0.3293248 0.510322 -0.1678172 0.3293248 0.510322 -0.1950164 0.3293248 0.510322 -0.2210581 0.3293248 0.510322 -0.245636 0.3293248 0.510322 -0.2686816 0.3293248 0.510322 -0.2902431 0.3293248 0.510322 -0.3104189 0.3293248 0.510322 -0.3293248 0.3293248 0.510322 -0.3470774 0.3293248 0.510322 -0.3637862 0.3293248 0.510322 -0.3795513 0.3293248 0.510322 -0.3944623 0.3293248 0.510322 -0.4085988 0.3293248 0.510322 -0.4220313 0.3293248 0.510322 -0.4348222 0.3293248 0.510322 -0.4470264 0.3293248 0.510322 -0.4586928 0.3293248 0.510322 -0.4698649 0.3293248 0.510322 -0.4805811 0.3293248 0.510322 -0.490876 0.3293248 0.510322 -0.5007803 0.3293248 0.510322 -0.510322 0.3293248 0.510322 -0.5195258 0.3293248 0.510322 -0.5284142 0.3293248 0.510322 -0.5370079 0.3293248 0.510322 -0.5453253 0.3293248 0.510322 -0.5533834 0.3293248 0.510322 -0.5611974 0.3293248 0.510322 -0.5687816 0.3293248 0.510322 -0.092819 0.3470774 0.510322 -0.1056428 0.3470774 0.510322 -0.1201537 0.3470774 0.510322 -0.1409607 0.3470774 0.510322 -0.1678172 0.3470774 0.510322 -0.1950164 0.3470774 0.510322 -0.2210581 0.3470774 0.510322 -0.245636 0.3470774 0.510322 -0.2686816 0.3470774 0.510322 -0.2902431 0.3470774 0.510322 -0.3104189 0.3470774 0.510322 -0.3293248 0.3470774 0.510322 -0.3470774 0.3470774 0.510322 -0.3637862 0.3470774 0.510322 -0.3795513 0.3470774 0.510322 -0.3944623 0.3470774 0.510322 -0.4085988 0.3470774 0.510322 -0.4220313 0.3470774 0.510322 -0.4348222 0.3470774 0.510322 -0.4470264 0.3470774 0.510322 -0.4586928 0.3470774 0.510322 -0.4698649 0.3470774 0.510322 -0.4805811 0.3470774 0.510322 -0.490876 0.3470774 0.510322 -0.5007803 0.3470774 0.510322 -0.510322 0.3470774 0.510322 -0.5195258 0.3470774 0.510322 -0.5284142 0.3470774 0.510322 -0.5370079 0.3470774 0.510322 -0.5453253 0.3470774 0.510322 -0.5533834 0.3470774 0.510322 -0.5611974 0.3470774 0.510322 -0.5687816 0.3470774 0.510322 -0.092819 0.3637862 0.510322 -0.1056428 0.3637862 0.510322 -0.1201537 0.3637862 0.510322 -0.1409607 0.3637862 0.510322 -0.1678172 0.3637862 0.510322 -0.1950164 0.3637862 0.510322 -0.2210581 0.3637862 0.510322 -0.245636 0.3637862 0.510322 -0.2686816 0.3637862 0.510322 -0.2902431 0.3637862 0.510322 -0.3104189 0.3637862 0.510322 -0.3293248 0.3637862 0.510322 -0.3470774 0.3637862 0.510322 -0.3637862 0.3637862 0.510322 -0.3795513 0.3637862 0.510322 -0.3944623 0.3637862 0.510322 -0.4085988 0.3637862 0.510322 -0.4220313 0.3637862 0.510322 -0.4348222 0.3637862 0.510322 -0.4470264 0.3637862 0.510322 -0.4586928 0.3637862 0.510322 -0.4698649 0.3637862 0.510322 -0.4805811 0.3637862 0.510322 -0.490876 0.3637862 0.510322 -0.5007803 0.3637862 0.510322 -0.510322 0.3637862 0.510322 -0.5195258 0.3637862 0.510322 -0.5284142 0.3637862 0.510322 -0.5370079 0.3637862 0.510322 -0.5453253 0.3637862 0.510322 -0.5533834 0.3637862 0.510322 -0.5611974 0.3637862 0.510322 -0.5687816 0.3637862 0.510322 -0.092819 0.3795513 0.510322 -0.1056428 0.3795513 0.510322 -0.1201537 0.3795513 0.510322 -0.1409607 0.3795513 0.510322 -0.1678172 0.3795513 0.510322 -0.1950164 0.3795513 0.510322 -0.2210581 0.3795513 0.510322 -0.245636 0.3795513 0.510322 -0.2686816 0.3795513 0.510322 -0.2902431 0.3795513 0.510322 -0.3104189 0.3795513 0.510322 -0.3293248 0.3795513 0.510322 -0.3470774 0.3795513 0.510322 -0.3637862 0.3795513 0.510322 -0.3795513 0.3795513 0.510322 -0.3944623 0.3795513 0.510322 -0.4085988 0.3795513 0.510322 -0.4220313 0.3795513 0.510322 -0.4348222 0.3795513 0.510322 -0.4470264 0.3795513 0.510322 -0.4586928 0.3795513 0.510322 -0.4698649 0.3795513 0.510322 -0.4805811 0.3795513 0.510322 -0.490876 0.3795513 0.510322 -0.5007803 0.3795513 0.510322 -0.510322 0.3795513 0.510322 -0.5195258 0.3795513 0.510322 -0.5284142 0.3795513 0.510322 -0.5370079 0.3795513 0.510322 -0.5453253 0.3795513 0.510322 -0.5533834 0.3795513 0.510322 -0.5611974 0.3795513 0.510322 -0.5687816 0.3795513 0.510322 -0.092819 0.3944623 0.510322 -0.1056428 0.3944623 0.510322 -0.1201537 0.3944623 0.510322 -0.1409607 0.3944623 0.510322 -0.1678172 0.3944623 0.510322 -0.1950164 0.3944623 0.510322 -0.2210581 0.3944623 0.510322 -0.245636 0.3944623 0.510322 -0.2686816 0.3944623 0.510322 -0.2902431 0.3944623 0.510322 -0.3104189 0.3944623 0.510322 -0.3293248 0.3944623 0.510322 -0.3470774 0.3944623 0.510322 -0.3637862 0.3944623 0.510322 -0.3795513 0.3944623 0.510322 -0.3944623 0.3944623 0.510322 -0.4085988 0.3944623 0.510322 -0.4220313 0.3944623 0.510322 -0.4348222 0.3944623 0.510322 -0.4470264 0.3944623 0.510322 -0.4586928 0.3944623 0.510322 -0.4698649 0.3944623 0.510322 -0.4805811 0.3944623 0.510322 -0.490876 0.3944623 0.510322 -0.5007803 0.3944623 0.510322 -0.510322 0.3944623 0.510322 -0.5195258 0.3944623 0.510322 -0.5284142 0.3944623 0.510322 -0.5370079 0.3944623 0.510322 -0.5453253 0.3944623 0.510322 -0.5533834 0.3944623 0.510322 -0.5611974 0.3944623 0.510322 -0.5687816 0.3944623 0.510322 -0.092819 0.4085988 0.510322 -0.1056428 0.4085988 0.510322 -0.1201537 0.4085988 0.510322 -0.1409607 0.4085988 0.510322 -0.1678172 0.4085988 0.510322 -0.1950164 0.4085988 0.510322 -0.2210581 0.4085988 0.510322 -0.245636 0.4085988 0.510322 -0.2686816 0.4085988 0.510322 -0.2902431 0.4085988 0.510322 -0.3104189 0.4085988 0.510322 -0.3293248 0.4085988 0.510322 -0.3470774 0.4085988 0.510322 -0.3637862 0.4085988 0.510322 -0.3795513 0.4085988 0.510322 -0.3944623 0.4085988 0.510322 -0.4085988 0.4085988 0.510322 -0.4220313 0.4085988 0.510322 -0.4348222 0.4085988 0.510322 -0.4470264 0.4085988 0.510322 -0.4586928 0.4085988 0.510322 -0.4698649 0.4085988 0.510322 -0.4805811 0.4085988 0.510322 -0.490876 0.4085988 0.510322 -0.5007803 0.4085988 0.510322 -0.510322 0.4085988 0.510322 -0.5195258 0.4085988 0.510322 -0.5284142 0.4085988 0.510322 -0.5370079 0.4085988 0.510322 -0.5453253 0.4085988 0.510322 -0.5533834 0.4085988 0.510322 -0.5611974 0.4085988 0.510322 -0.5687816 0.4085988 0.510322 -0.092819 0.4220313 0.510322 -0.1056428 0.4220313 0.510322 -0.1201537 0.4220313 0.510322 -0.1409607 0.4220313 0.510322 -0.1678172 0.4220313 0.510322 -0.1950164 0.4220313 0.510322 -0.2210581 0.4220313 0.510322 -0.245636 0.4220313 0.510322 -0.2686816 0.4220313 0.510322 -0.2902431 0.4220313 0.510322 -0.3104189 0.4220313 0.510322 -0.3293248 0.4220313 0.510322 -0.3470774 0.4220313 0.510322 -0.3637862 0.4220313 0.510322 -0.3795513 0.4220313 0.510322 -0.3944623 0.4220313 0.510322 -0.4085988 0.4220313 0.510322 -0.4220313 0.4220313 0.510322 -0.4348222 0.4220313 0.510322 -0.4470264 0.4220313 0.510322 -0.4586928 0.4220313 0.510322 -0.4698649 0.4220313 0.510322 -0.4805811 0.4220313 0.510322 -0.490876 0.4220313 0.510322 -0.5007803 0.4220313 0.510322 -0.510322 0.4220313 0.510322 -0.5195258 0.4220313 0.510322 -0.5284142 0.4220313 0.510322 -0.5370079 0.4220313 0.510322 -0.5453253 0.4220313 0.510322 -0.5533834 0.4220313 0.510322 -0.5611974 0.4220313 0.510322 -0.5687816 0.4220313 0.510322 -0.092819 0.4348222 0.510322 -0.1056428 0.4348222 0.510322 -0.1201537 0.4348222 0.510322 -0.1409607 0.4348222 0.510322 -0.1678172 0.4348222 0.510322 -0.1950164 0.4348222 0.510322 -0.2210581 0.4348222 0.510322 -0.245636 0.4348222 0.510322 -0.2686816 0.4348222 0.510322 -0.2902431 0.4348222 0.510322 -0.3104189 0.4348222 0.510322 -0.3293248 0.4348222 0.510322 -0.3470774 0.4348222 0.510322 -0.3637862 0.4348222 0.510322 -0.3795513 0.4348222 0.510322 -0.3944623 0.4348222 0.510322 -0.4085988 0.4348222 0.510322 -0.4220313 0.4348222 0.510322 -0.4348222 0.4348222 0.510322 -0.4470264 0.4348222 0.510322 -0.4586928 0.4348222 0.510322 -0.4698649 0.4348222 0.510322 -0.4805811 0.4348222 0.510322 -0.490876 0.4348222 0.510322 -0.5007803 0.4348222 0.510322 -0.510322 0.4348222 0.510322 -0.5195258 0.4348222 0.510322 -0.5284142 0.4348222 0.510322 -0.5370079 0.4348222 0.510322 -0.5453253 0.4348222 0.510322 -0.5533834 0.4348222 0.510322 -0.5611974 0.4348222 0.510322 -0.5687816 0.4348222 0.510322 -0.092819 0.4470264 0.510322 -0.1056428 0.4470264 0.510322 -0.1201537 0.4470264 0.510322 -0.1409607 0.4470264 0.510322 -0.1678172 0.4470264 0.510322 -0.1950164 0.4470264 0.510322 -0.2210581 0.4470264 0.510322 -0.245636 0.4470264 0.510322 -0.2686816 0.4470264 0.510322 -0.2902431 0.4470264 0.510322 -0.3104189 0.4470264 0.510322 -0.3293248 0.4470264 0.510322 -0.3470774 0.4470264 0.510322 -0.3637862 0.4470264 0.510322 -0.3795513 0.4470264 0.510322 -0.3944623 0.4470264 0.510322 -0.4085988 0.4470264 0.510322 -0.4220313 0.4470264 0.510322 -0.4348222 0.4470264 0.510322 -0.4470264 0.4470264 0.510322 -0.4586928 0.4470264 0.510322 -0.4698649 0.4470264 0.510322 -0.4805811 0.4470264 0.510322 -0.490876 0.4470264 0.510322 -0.5007803 0.4470264 0.510322 -0.510322 0.4470264 0.510322 -0.5195258 0.4470264 0.510322 -0.5284142 0.4470264 0.510322 -0.5370079 0.4470264 0.510322 -0.5453253 0.4470264 0.510322 -0.5533834 0.4470264 0.510322 -0.5611974 0.4470264 0.510322 -0.5687816 0.4470264 0.510322 -0.092819 0.4586928 0.510322 -0.1056428 0.4586928 0.510322 -0.1201537 0.4586928 0.510322 -0.1409607 0.4586928 0.510322 -0.1678172 0.4586928 0.510322 -0.1950164 0.4586928 0.510322 -0.2210581 0.4586928 0.510322 -0.245636 0.4586928 0.510322 -0.2686816 0.4586928 0.510322 -0.2902431 0.4586928 0.510322 -0.3104189 0.4586928 0.510322 -0.3293248 0.4586928 0.510322 -0.3470774 0.4586928 0.510322 -0.3637862 0.4586928 0.510322 -0.3795513 0.4586928 0.510322 -0.3944623 0.4586928 0.510322 -0.4085988 0.4586928 0.510322 -0.4220313 0.4586928 0.510322 -0.4348222 0.4586928 0.510322 -0.4470264 0.4586928 0.510322 -0.4586928 0.4586928 0.510322 -0.4698649 0.4586928 0.510322 -0.4805811 0.4586928 0.510322 -0.490876 0.4586928 0.510322 -0.5007803 0.4586928 0.510322 -0.510322 0.4586928 0.510322 -0.5195258 0.4586928 0.510322 -0.5284142 0.4586928 0.510322 -0.5370079 0.4586928 0.510322 -0.5453253 0.4586928 0.510322 -0.5533834 0.4586928 0.510322 -0.5611974 0.4586928 0.510322 -0.5687816 0.4586928 0.510322 -0.092819 0.4698649 0.510322 -0.1056428 0.4698649 0.510322 -0.1201537 0.4698649 0.510322 -0.1409607 0.4698649 0.510322 -0.1678172 0.4698649 0.510322 -0.1950164 0.4698649 0.510322 -0.2210581 0.4698649 0.510322 -0.245636 0.4698649 0.510322 -0.2686816 0.4698649 0.510322 -0.2902431 0.4698649 0.510322 -0.3104189 0.4698649 0.510322 -0.3293248 0.4698649 0.510322 -0.3470774 0.4698649 0.510322 -0.3637862 0.4698649 0.510322 -0.3795513 0.4698649 0.510322 -0.3944623 0.4698649 0.510322 -0.4085988 0.4698649 0.510322 -0.4220313 0.4698649 0.510322 -0.4348222 0.4698649 0.510322 -0.4470264 0.4698649 0.510322 -0.4586928 0.4698649 0.510322 -0.4698649 0.4698649 0.510322 -0.4805811 0.4698649 0.510322 -0.490876 0.4698649 0.510322 -0.5007803 0.4698649 0.510322 -0.510322 0.4698649 0.510322 -0.5195258 0.4698649 0.510322 -0.5284142 0.4698649 0.510322 -0.5370079 0.4698649 0.510322 -0.5453253 0.4698649 0.510322 -0.5533834 0.4698649 0.510322 -0.5611974 0.4698649 0.510322 -0.5687816 0.4698649 0.510322 -0.092819 0.4805811 0.510322 -0.1056428 0.4805811 0.510322 -0.1201537 0.4805811 0.510322 -0.1409607 0.4805811 0.510322 -0.1678172 0.4805811 0.510322 -0.1950164 0.4805811 0.510322 -0.2210581 0.4805811 0.510322 -0.245636 0.4805811 0.510322 -0.2686816 0.4805811 0.510322 -0.2902431 0.4805811 0.510322 -0.3104189 0.4805811 0.510322 -0.3293248 0.4805811 0.510322 -0.3470774 0.4805811 0.510322 -0.3637862 0.4805811 0.510322 -0.3795513 0.4805811 0.510322 -0.3944623 0.4805811 0.510322 -0.4085988 0.4805811 0.510322 -0.4220313 0.4805811 0.510322 -0.4348222 0.4805811 0.510322 -0.4470264 0.4805811 0.510322 -0.4586928 0.4805811 0.510322 -0.4698649 0.4805811 0.510322 -0.4805811 0.4805811 0.510322 -0.490876 0.4805811 0.510322 -0.5007803 0.4805811 0.510322 -0.510322 0.4805811 0.510322 -0.5195258 0.4805811 0.510322 -0.5284142 0.4805811 0.510322 -0.5370079 0.4805811 0.510322 -0.5453253 0.4805811 0.510322 -0.5533834 0.4805811 0.510322 -0.5611974 0.4805811 0.510322 -0.5687816 0.4805811 0.510322 -0.092819 0.490876 0.510322 -0.1056428 0.490876 0.510322 -0.1201537 0.490876 0.510322 -0.1409607 0.490876 0.510322 -0.1678172 0.490876 0.510322 -0.1950164 0.490876 0.510322 -0.2210581 0.490876 0.510322 -0.245636 0.490876 0.510322 -0.2686816 0.490876 0.510322 -0.2902431 0.490876 0.510322 -0.3104189 0.490876 0.510322 -0.3293248 0.490876 0.510322 -0.3470774 0.490876 0.510322 -0.3637862 0.490876 0.510322 -0.3795513 0.490876 0.510322 -0.3944623 0.490876 0.510322 -0.4085988 0.490876 0.510322 -0.4220313 0.490876 0.510322 -0.4348222 0.490876 0.510322 -0.4470264 0.490876 0.510322 -0.4586928 0.490876 0.510322 -0.4698649 0.490876 0.510322 -0.4805811 0.490876 0.510322 -0.490876 0.490876 0.510322 -0.5007803 0.490876 0.510322 -0.510322 0.490876 0.510322 -0.5195258 0.490876 0.510322 -0.5284142 0.490876 0.510322 -0.5370079 0.490876 0.510322 -0.5453253 0.490876 0.510322 -0.5533834 0.490876 0.510322 -0.5611974 0.490876 0.510322 -0.5687816 0.490876 0.510322 -0.092819 0.5007803 0.510322 -0.1056428 0.5007803 0.510322 -0.1201537 0.5007803 0.510322 -0.1409607 0.5007803 0.510322 -0.1678172 0.5007803 0.510322 -0.1950164 0.5007803 0.510322 -0.2210581 0.5007803 0.510322 -0.245636 0.5007803 0.510322 -0.2686816 0.5007803 0.510322 -0.2902431 0.5007803 0.510322 -0.3104189 0.5007803 0.510322 -0.3293248 0.5007803 0.510322 -0.3470774 0.5007803 0.510322 -0.3637862 0.5007803 0.510322 -0.3795513 0.5007803 0.510322 -0.3944623 0.5007803 0.510322 -0.4085988 0.5007803 0.510322 -0.4220313 0.5007803 0.510322 -0.4348222 0.5007803 0.510322 -0.4470264 0.5007803 0.510322 -0.4586928 0.5007803 0.510322 -0.4698649 0.5007803 0.510322 -0.4805811 0.5007803 0.510322 -0.490876 0.5007803 0.510322 -0.5007803 0.5007803 0.510322 -0.510322 0.5007803 0.510322 -0.5195258 0.5007803 0.510322 -0.5284142 0.5007803 0.510322 -0.5370079 0.5007803 0.510322 -0.5453253 0.5007803 0.510322 -0.5533834 0.5007803 0.510322 -0.5611974 0.5007803 0.510322 -0.5687816 0.5007803 0.510322 -0.092819 0.510322 0.510322 -0.1056428 0.510322 0.510322 -0.1201537 0.510322 0.510322 -0.1409607 0.510322 0.510322 -0.1678172 0.510322 0.510322 -0.1950164 0.510322 0.510322 -0.2210581 0.510322 0.510322 -0.245636 0.510322 0.510322 -0.2686816 0.510322 0.510322 -0.2902431 0.510322 0.510322 -0.3104189 0.510322 0.510322 -0.3293248 0.510322 0.510322 -0.3470774 0.510322 0.510322 -0.3637862 0.510322 0.510322 -0.3795513 0.510322 0.510322 -0.3944623 0.510322 0.510322 -0.4085988 0.510322 0.510322 -0.4220313 0.510322 0.510322 -0.4348222 0.510322 0.510322 -0.4470264 0.510322 0.510322 -0.4586928 0.510322 0.510322 -0.4698649 0.510322 0.510322 -0.4805811 0.510322 0.510322 -0.490876 0.510322 0.510322 -0.5007803 0.510322 0.510322 -0.510322 0.510322 0.510322 -0.5195258 0.510322 0.510322 -0.5284142 0.510322 0.510322 -0.5370079 0.510322 0.510322 -0.5453253 0.510322 0.510322 -0.5533834 0.510322 0.510322 -0.5611974 0.510322 0.510322 -0.5687816 0.510322 0.510322 -0.092819 0.5195258 0.510322 -0.1056428 0.5195258 0.510322 -0.1201537 0.5195258 0.510322 -0.1409607 0.5195258 0.510322 -0.1678172 0.5195258 0.510322 -0.1950164 0.5195258 0.510322 -0.2210581 0.5195258 0.510322 -0.245636 0.5195258 0.510322 -0.2686816 0.5195258 0.510322 -0.2902431 0.5195258 0.510322 -0.3104189 0.5195258 0.510322 -0.3293248 0.5195258 0.510322 -0.3470774 0.5195258 0.510322 -0.3637862 0.5195258 0.510322 -0.3795513 0.5195258 0.510322 -0.3944623 0.5195258 0.510322 -0.4085988 0.5195258 0.510322 -0.4220313 0.5195258 0.510322 -0.4348222 0.5195258 0.510322 -0.4470264 0.5195258 0.510322 -0.4586928 0.5195258 0.510322 -0.4698649 0.5195258 0.510322 -0.4805811 0.5195258 0.510322 -0.490876 0.5195258 0.510322 -0.5007803 0.5195258 0.510322 -0.510322 0.5195258 0.510322 -0.5195258 0.5195258 0.510322 -0.5284142 0.5195258 0.510322 -0.5370079 0.5195258 0.510322 -0.5453253 0.5195258 0.510322 -0.5533834 0.5195258 0.510322 -0.5611974 0.5195258 0.510322 -0.5687816 0.5195258 0.510322 -0.092819 0.5284142 0.510322 -0.1056428 0.5284142 0.510322 -0.1201537 0.5284142 0.510322 -0.1409607 0.5284142 0.510322 -0.1678172 0.5284142 0.510322 -0.1950164 0.5284142 0.510322 -0.2210581 0.5284142 0.510322 -0.245636 0.5284142 0.510322 -0.2686816 0.5284142 0.510322 -0.2902431 0.5284142 0.510322 -0.3104189 0.5284142 0.510322 -0.3293248 0.5284142 0.510322 -0.3470774 0.5284142 0.510322 -0.3637862 0.5284142 0.510322 -0.3795513 0.5284142 0.510322 -0.3944623 0.5284142 0.510322 -0.4085988 0.5284142 0.510322 -0.4220313 0.5284142 0.510322 -0.4348222 0.5284142 0.510322 -0.4470264 0.5284142 0.510322 -0.4586928 0.5284142 0.510322 -0.4698649 0.5284142 0.510322 -0.4805811 0.5284142 0.510322 -0.490876 0.5284142 0.510322 -0.5007803 0.5284142 0.510322 -0.510322 0.5284142 0.510322 -0.5195258 0.5284142 0.510322 -0.5284142 0.5284142 0.510322 -0.5370079 0.5284142 0.510322 -0.5453253 0.5284142 0.510322 -0.5533834 0.5284142 0.510322 -0.5611974 0.5284142 0.510322 -0.5687816 0.5284142 0.510322 -0.092819 0.5370079 0.510322 -0.1056428 0.5370079 0.510322 -0.1201537 0.5370079 0.510322 -0.1409607 0.5370079 0.510322 -0.1678172 0.5370079 0.510322 -0.1950164 0.5370079 0.510322 -0.2210581 0.5370079 0.510322 -0.245636 0.5370079 0.510322 -0.2686816 0.5370079 0.510322 -0.2902431 0.5370079 0.510322 -0.3104189 0.5370079 0.510322 -0.3293248 0.5370079 0.510322 -0.3470774 0.5370079 0.510322 -0.3637862 0.5370079 0.510322 -0.3795513 0.5370079 0.510322 -0.3944623 0.5370079 0.510322 -0.4085988 0.5370079 0.510322 -0.4220313 0.5370079 0.510322 -0.4348222 0.5370079 0.510322 -0.4470264 0.5370079 0.510322 -0.4586928 0.5370079 0.510322 -0.4698649 0.5370079 0.510322 -0.4805811 0.5370079 0.510322 -0.490876 0.5370079 0.510322 -0.5007803 0.5370079 0.510322 -0.510322 0.5370079 0.510322 -0.5195258 0.5370079 0.510322 -0.5284142 0.5370079 0.510322 -0.5370079 0.5370079 0.510322 -0.5453253 0.5370079 0.510322 -0.5533834 0.5370079 0.510322 -0.5611974 0.5370079 0.510322 -0.5687816 0.5370079 0.510322 -0.092819 0.5453253 0.510322 -0.1056428 0.5453253 0.510322 -0.1201537 0.5453253 0.510322 -0.1409607 0.5453253 0.510322 -0.1678172 0.5453253 0.510322 -0.1950164 0.5453253 0.510322 -0.2210581 0.5453253 0.510322 -0.245636 0.5453253 0.510322 -0.2686816 0.5453253 0.510322 -0.2902431 0.5453253 0.510322 -0.3104189 0.5453253 0.510322 -0.3293248 0.5453253 0.510322 -0.3470774 0.5453253 0.510322 -0.3637862 0.5453253 0.510322 -0.3795513 0.5453253 0.510322 -0.3944623 0.5453253 0.510322 -0.4085988 0.5453253 0.510322 -0.4220313 0.5453253 0.510322 -0.4348222 0.5453253 0.510322 -0.4470264 0.5453253 0.510322 -0.4586928 0.5453253 0.510322 -0.4698649 0.5453253 0.510322 -0.4805811 0.5453253 0.510322 -0.490876 0.5453253 0.510322 -0.5007803 0.5453253 0.510322 -0.510322 0.5453253 0.510322 -0.5195258 0.5453253 0.510322 -0.5284142 0.5453253 0.510322 -0.5370079 0.5453253 0.510322 -0.5453253 0.5453253 0.510322 -0.5533834 0.5453253 0.510322 -0.5611974 0.5453253 0.510322 -0.5687816 0.5453253 0.510322 -0.092819 0.5533834 0.510322 -0.1056428 0.5533834 0.510322 -0.1201537 0.5533834 0.510322 -0.1409607 0.5533834 0.510322 -0.1678172 0.5533834 0.510322 -0.1950164 0.5533834 0.510322 -0.2210581 0.5533834 0.510322 -0.245636 0.5533834 0.510322 -0.2686816 0.5533834 0.510322 -0.2902431 0.5533834 0.510322 -0.3104189 0.5533834 0.510322 -0.3293248 0.5533834 0.510322 -0.3470774 0.5533834 0.510322 -0.3637862 0.5533834 0.510322 -0.3795513 0.5533834 0.510322 -0.3944623 0.5533834 0.510322 -0.4085988 0.5533834 0.510322 -0.4220313 0.5533834 0.510322 -0.4348222 0.5533834 0.510322 -0.4470264 0.5533834 0.510322 -0.4586928 0.5533834 0.510322 -0.4698649 0.5533834 0.510322 -0.4805811 0.5533834 0.510322 -0.490876 0.5533834 0.510322 -0.5007803 0.5533834 0.510322 -0.510322 0.5533834 0.510322 -0.5195258 0.5533834 0.510322 -0.5284142 0.5533834 0.510322 -0.5370079 0.5533834 0.510322 -0.5453253 0.5533834 0.510322 -0.5533834 0.5533834 0.510322 -0.5611974 0.5533834 0.510322 -0.5687816 0.5533834 0.510322 -0.092819 0.5611974 0.510322 -0.1056428 0.5611974 0.510322 -0.1201537 0.5611974 0.510322 -0.1409607 0.5611974 0.510322 -0.1678172 0.5611974 0.510322 -0.1950164 0.5611974 0.510322 -0.2210581 0.5611974 0.510322 -0.245636 0.5611974 0.510322 -0.2686816 0.5611974 0.510322 -0.2902431 0.5611974 0.510322 -0.3104189 0.5611974 0.510322 -0.3293248 0.5611974 0.510322 -0.3470774 0.5611974 0.510322 -0.3637862 0.5611974 0.510322 -0.3795513 0.5611974 0.510322 -0.3944623 0.5611974 0.510322 -0.4085988 0.5611974 0.510322 -0.4220313 0.5611974 0.510322 -0.4348222 0.5611974 0.510322 -0.4470264 0.5611974 0.510322 -0.4586928 0.5611974 0.510322 -0.4698649 0.5611974 0.510322 -0.4805811 0.5611974 0.510322 -0.490876 0.5611974 0.510322 -0.5007803 0.5611974 0.510322 -0.510322 0.5611974 0.510322 -0.5195258 0.5611974 0.510322 -0.5284142 0.5611974 0.510322 -0.5370079 0.5611974 0.510322 -0.5453253 0.5611974 0.510322 -0.5533834 0.5611974 0.510322 -0.5611974 0.5611974 0.510322 -0.5687816 0.5611974 0.510322 -0.092819 0.5687816 0.510322 -0.1056428 0.5687816 0.510322 -0.1201537 0.5687816 0.510322 -0.1409607 0.5687816 0.510322 -0.1678172 0.5687816 0.510322 -0.1950164 0.5687816 0.510322 -0.2210581 0.5687816 0.510322 -0.245636 0.5687816 0.510322 -0.2686816 0.5687816 0.510322 -0.2902431 0.5687816 0.510322 -0.3104189 0.5687816 0.510322 -0.3293248 0.5687816 0.510322 -0.3470774 0.5687816 0.510322 -0.3637862 0.5687816 0.510322 -0.3795513 0.5687816 0.510322 -0.3944623 0.5687816 0.510322 -0.4085988 0.5687816 0.510322 -0.4220313 0.5687816 0.510322 -0.4348222 0.5687816 0.510322 -0.4470264 0.5687816 0.510322 -0.4586928 0.5687816 0.510322 -0.4698649 0.5687816 0.510322 -0.4805811 0.5687816 0.510322 -0.490876 0.5687816 0.510322 -0.5007803 0.5687816 0.510322 -0.510322 0.5687816 0.510322 -0.5195258 0.5687816 0.510322 -0.5284142 0.5687816 0.510322 -0.5370079 0.5687816 0.510322 -0.5453253 0.5687816 0.510322 -0.5533834 0.5687816 0.510322 -0.5611974 0.5687816 0.510322 -0.5687816 0.5687816 0.510322 -0.092819 0.092819 0.5195258 -0.1056428 0.092819 0.5195258 -0.1201537 0.092819 0.5195258 -0.1409607 0.092819 0.5195258 -0.1678172 0.092819 0.5195258 -0.1950164 0.092819 0.5195258 -0.2210581 0.092819 0.5195258 -0.245636 0.092819 0.5195258 -0.2686816 0.092819 0.5195258 -0.2902431 0.092819 0.5195258 -0.3104189 0.092819 0.5195258 -0.3293248 0.092819 0.5195258 -0.3470774 0.092819 0.5195258 -0.3637862 0.092819 0.5195258 -0.3795513 0.092819 0.5195258 -0.3944623 0.092819 0.5195258 -0.4085988 0.092819 0.5195258 -0.4220313 0.092819 0.5195258 -0.4348222 0.092819 0.5195258 -0.4470264 0.092819 0.5195258 -0.4586928 0.092819 0.5195258 -0.4698649 0.092819 0.5195258 -0.4805811 0.092819 0.5195258 -0.490876 0.092819 0.5195258 -0.5007803 0.092819 0.5195258 -0.510322 0.092819 0.5195258 -0.5195258 0.092819 0.5195258 -0.5284142 0.092819 0.5195258 -0.5370079 0.092819 0.5195258 -0.5453253 0.092819 0.5195258 -0.5533834 0.092819 0.5195258 -0.5611974 0.092819 0.5195258 -0.5687816 0.092819 0.5195258 -0.092819 0.1056428 0.5195258 -0.1056428 0.1056428 0.5195258 -0.1201537 0.1056428 0.5195258 -0.1409607 0.1056428 0.5195258 -0.1678172 0.1056428 0.5195258 -0.1950164 0.1056428 0.5195258 -0.2210581 0.1056428 0.5195258 -0.245636 0.1056428 0.5195258 -0.2686816 0.1056428 0.5195258 -0.2902431 0.1056428 0.5195258 -0.3104189 0.1056428 0.5195258 -0.3293248 0.1056428 0.5195258 -0.3470774 0.1056428 0.5195258 -0.3637862 0.1056428 0.5195258 -0.3795513 0.1056428 0.5195258 -0.3944623 0.1056428 0.5195258 -0.4085988 0.1056428 0.5195258 -0.4220313 0.1056428 0.5195258 -0.4348222 0.1056428 0.5195258 -0.4470264 0.1056428 0.5195258 -0.4586928 0.1056428 0.5195258 -0.4698649 0.1056428 0.5195258 -0.4805811 0.1056428 0.5195258 -0.490876 0.1056428 0.5195258 -0.5007803 0.1056428 0.5195258 -0.510322 0.1056428 0.5195258 -0.5195258 0.1056428 0.5195258 -0.5284142 0.1056428 0.5195258 -0.5370079 0.1056428 0.5195258 -0.5453253 0.1056428 0.5195258 -0.5533834 0.1056428 0.5195258 -0.5611974 0.1056428 0.5195258 -0.5687816 0.1056428 0.5195258 -0.092819 0.1201537 0.5195258 -0.1056428 0.1201537 0.5195258 -0.1201537 0.1201537 0.5195258 -0.1409607 0.1201537 0.5195258 -0.1678172 0.1201537 0.5195258 -0.1950164 0.1201537 0.5195258 -0.2210581 0.1201537 0.5195258 -0.245636 0.1201537 0.5195258 -0.2686816 0.1201537 0.5195258 -0.2902431 0.1201537 0.5195258 -0.3104189 0.1201537 0.5195258 -0.3293248 0.1201537 0.5195258 -0.3470774 0.1201537 0.5195258 -0.3637862 0.1201537 0.5195258 -0.3795513 0.1201537 0.5195258 -0.3944623 0.1201537 0.5195258 -0.4085988 0.1201537 0.5195258 -0.4220313 0.1201537 0.5195258 -0.4348222 0.1201537 0.5195258 -0.4470264 0.1201537 0.5195258 -0.4586928 0.1201537 0.5195258 -0.4698649 0.1201537 0.5195258 -0.4805811 0.1201537 0.5195258 -0.490876 0.1201537 0.5195258 -0.5007803 0.1201537 0.5195258 -0.510322 0.1201537 0.5195258 -0.5195258 0.1201537 0.5195258 -0.5284142 0.1201537 0.5195258 -0.5370079 0.1201537 0.5195258 -0.5453253 0.1201537 0.5195258 -0.5533834 0.1201537 0.5195258 -0.5611974 0.1201537 0.5195258 -0.5687816 0.1201537 0.5195258 -0.092819 0.1409607 0.5195258 -0.1056428 0.1409607 0.5195258 -0.1201537 0.1409607 0.5195258 -0.1409607 0.1409607 0.5195258 -0.1678172 0.1409607 0.5195258 -0.1950164 0.1409607 0.5195258 -0.2210581 0.1409607 0.5195258 -0.245636 0.1409607 0.5195258 -0.2686816 0.1409607 0.5195258 -0.2902431 0.1409607 0.5195258 -0.3104189 0.1409607 0.5195258 -0.3293248 0.1409607 0.5195258 -0.3470774 0.1409607 0.5195258 -0.3637862 0.1409607 0.5195258 -0.3795513 0.1409607 0.5195258 -0.3944623 0.1409607 0.5195258 -0.4085988 0.1409607 0.5195258 -0.4220313 0.1409607 0.5195258 -0.4348222 0.1409607 0.5195258 -0.4470264 0.1409607 0.5195258 -0.4586928 0.1409607 0.5195258 -0.4698649 0.1409607 0.5195258 -0.4805811 0.1409607 0.5195258 -0.490876 0.1409607 0.5195258 -0.5007803 0.1409607 0.5195258 -0.510322 0.1409607 0.5195258 -0.5195258 0.1409607 0.5195258 -0.5284142 0.1409607 0.5195258 -0.5370079 0.1409607 0.5195258 -0.5453253 0.1409607 0.5195258 -0.5533834 0.1409607 0.5195258 -0.5611974 0.1409607 0.5195258 -0.5687816 0.1409607 0.5195258 -0.092819 0.1678172 0.5195258 -0.1056428 0.1678172 0.5195258 -0.1201537 0.1678172 0.5195258 -0.1409607 0.1678172 0.5195258 -0.1678172 0.1678172 0.5195258 -0.1950164 0.1678172 0.5195258 -0.2210581 0.1678172 0.5195258 -0.245636 0.1678172 0.5195258 -0.2686816 0.1678172 0.5195258 -0.2902431 0.1678172 0.5195258 -0.3104189 0.1678172 0.5195258 -0.3293248 0.1678172 0.5195258 -0.3470774 0.1678172 0.5195258 -0.3637862 0.1678172 0.5195258 -0.3795513 0.1678172 0.5195258 -0.3944623 0.1678172 0.5195258 -0.4085988 0.1678172 0.5195258 -0.4220313 0.1678172 0.5195258 -0.4348222 0.1678172 0.5195258 -0.4470264 0.1678172 0.5195258 -0.4586928 0.1678172 0.5195258 -0.4698649 0.1678172 0.5195258 -0.4805811 0.1678172 0.5195258 -0.490876 0.1678172 0.5195258 -0.5007803 0.1678172 0.5195258 -0.510322 0.1678172 0.5195258 -0.5195258 0.1678172 0.5195258 -0.5284142 0.1678172 0.5195258 -0.5370079 0.1678172 0.5195258 -0.5453253 0.1678172 0.5195258 -0.5533834 0.1678172 0.5195258 -0.5611974 0.1678172 0.5195258 -0.5687816 0.1678172 0.5195258 -0.092819 0.1950164 0.5195258 -0.1056428 0.1950164 0.5195258 -0.1201537 0.1950164 0.5195258 -0.1409607 0.1950164 0.5195258 -0.1678172 0.1950164 0.5195258 -0.1950164 0.1950164 0.5195258 -0.2210581 0.1950164 0.5195258 -0.245636 0.1950164 0.5195258 -0.2686816 0.1950164 0.5195258 -0.2902431 0.1950164 0.5195258 -0.3104189 0.1950164 0.5195258 -0.3293248 0.1950164 0.5195258 -0.3470774 0.1950164 0.5195258 -0.3637862 0.1950164 0.5195258 -0.3795513 0.1950164 0.5195258 -0.3944623 0.1950164 0.5195258 -0.4085988 0.1950164 0.5195258 -0.4220313 0.1950164 0.5195258 -0.4348222 0.1950164 0.5195258 -0.4470264 0.1950164 0.5195258 -0.4586928 0.1950164 0.5195258 -0.4698649 0.1950164 0.5195258 -0.4805811 0.1950164 0.5195258 -0.490876 0.1950164 0.5195258 -0.5007803 0.1950164 0.5195258 -0.510322 0.1950164 0.5195258 -0.5195258 0.1950164 0.5195258 -0.5284142 0.1950164 0.5195258 -0.5370079 0.1950164 0.5195258 -0.5453253 0.1950164 0.5195258 -0.5533834 0.1950164 0.5195258 -0.5611974 0.1950164 0.5195258 -0.5687816 0.1950164 0.5195258 -0.092819 0.2210581 0.5195258 -0.1056428 0.2210581 0.5195258 -0.1201537 0.2210581 0.5195258 -0.1409607 0.2210581 0.5195258 -0.1678172 0.2210581 0.5195258 -0.1950164 0.2210581 0.5195258 -0.2210581 0.2210581 0.5195258 -0.245636 0.2210581 0.5195258 -0.2686816 0.2210581 0.5195258 -0.2902431 0.2210581 0.5195258 -0.3104189 0.2210581 0.5195258 -0.3293248 0.2210581 0.5195258 -0.3470774 0.2210581 0.5195258 -0.3637862 0.2210581 0.5195258 -0.3795513 0.2210581 0.5195258 -0.3944623 0.2210581 0.5195258 -0.4085988 0.2210581 0.5195258 -0.4220313 0.2210581 0.5195258 -0.4348222 0.2210581 0.5195258 -0.4470264 0.2210581 0.5195258 -0.4586928 0.2210581 0.5195258 -0.4698649 0.2210581 0.5195258 -0.4805811 0.2210581 0.5195258 -0.490876 0.2210581 0.5195258 -0.5007803 0.2210581 0.5195258 -0.510322 0.2210581 0.5195258 -0.5195258 0.2210581 0.5195258 -0.5284142 0.2210581 0.5195258 -0.5370079 0.2210581 0.5195258 -0.5453253 0.2210581 0.5195258 -0.5533834 0.2210581 0.5195258 -0.5611974 0.2210581 0.5195258 -0.5687816 0.2210581 0.5195258 -0.092819 0.245636 0.5195258 -0.1056428 0.245636 0.5195258 -0.1201537 0.245636 0.5195258 -0.1409607 0.245636 0.5195258 -0.1678172 0.245636 0.5195258 -0.1950164 0.245636 0.5195258 -0.2210581 0.245636 0.5195258 -0.245636 0.245636 0.5195258 -0.2686816 0.245636 0.5195258 -0.2902431 0.245636 0.5195258 -0.3104189 0.245636 0.5195258 -0.3293248 0.245636 0.5195258 -0.3470774 0.245636 0.5195258 -0.3637862 0.245636 0.5195258 -0.3795513 0.245636 0.5195258 -0.3944623 0.245636 0.5195258 -0.4085988 0.245636 0.5195258 -0.4220313 0.245636 0.5195258 -0.4348222 0.245636 0.5195258 -0.4470264 0.245636 0.5195258 -0.4586928 0.245636 0.5195258 -0.4698649 0.245636 0.5195258 -0.4805811 0.245636 0.5195258 -0.490876 0.245636 0.5195258 -0.5007803 0.245636 0.5195258 -0.510322 0.245636 0.5195258 -0.5195258 0.245636 0.5195258 -0.5284142 0.245636 0.5195258 -0.5370079 0.245636 0.5195258 -0.5453253 0.245636 0.5195258 -0.5533834 0.245636 0.5195258 -0.5611974 0.245636 0.5195258 -0.5687816 0.245636 0.5195258 -0.092819 0.2686816 0.5195258 -0.1056428 0.2686816 0.5195258 -0.1201537 0.2686816 0.5195258 -0.1409607 0.2686816 0.5195258 -0.1678172 0.2686816 0.5195258 -0.1950164 0.2686816 0.5195258 -0.2210581 0.2686816 0.5195258 -0.245636 0.2686816 0.5195258 -0.2686816 0.2686816 0.5195258 -0.2902431 0.2686816 0.5195258 -0.3104189 0.2686816 0.5195258 -0.3293248 0.2686816 0.5195258 -0.3470774 0.2686816 0.5195258 -0.3637862 0.2686816 0.5195258 -0.3795513 0.2686816 0.5195258 -0.3944623 0.2686816 0.5195258 -0.4085988 0.2686816 0.5195258 -0.4220313 0.2686816 0.5195258 -0.4348222 0.2686816 0.5195258 -0.4470264 0.2686816 0.5195258 -0.4586928 0.2686816 0.5195258 -0.4698649 0.2686816 0.5195258 -0.4805811 0.2686816 0.5195258 -0.490876 0.2686816 0.5195258 -0.5007803 0.2686816 0.5195258 -0.510322 0.2686816 0.5195258 -0.5195258 0.2686816 0.5195258 -0.5284142 0.2686816 0.5195258 -0.5370079 0.2686816 0.5195258 -0.5453253 0.2686816 0.5195258 -0.5533834 0.2686816 0.5195258 -0.5611974 0.2686816 0.5195258 -0.5687816 0.2686816 0.5195258 -0.092819 0.2902431 0.5195258 -0.1056428 0.2902431 0.5195258 -0.1201537 0.2902431 0.5195258 -0.1409607 0.2902431 0.5195258 -0.1678172 0.2902431 0.5195258 -0.1950164 0.2902431 0.5195258 -0.2210581 0.2902431 0.5195258 -0.245636 0.2902431 0.5195258 -0.2686816 0.2902431 0.5195258 -0.2902431 0.2902431 0.5195258 -0.3104189 0.2902431 0.5195258 -0.3293248 0.2902431 0.5195258 -0.3470774 0.2902431 0.5195258 -0.3637862 0.2902431 0.5195258 -0.3795513 0.2902431 0.5195258 -0.3944623 0.2902431 0.5195258 -0.4085988 0.2902431 0.5195258 -0.4220313 0.2902431 0.5195258 -0.4348222 0.2902431 0.5195258 -0.4470264 0.2902431 0.5195258 -0.4586928 0.2902431 0.5195258 -0.4698649 0.2902431 0.5195258 -0.4805811 0.2902431 0.5195258 -0.490876 0.2902431 0.5195258 -0.5007803 0.2902431 0.5195258 -0.510322 0.2902431 0.5195258 -0.5195258 0.2902431 0.5195258 -0.5284142 0.2902431 0.5195258 -0.5370079 0.2902431 0.5195258 -0.5453253 0.2902431 0.5195258 -0.5533834 0.2902431 0.5195258 -0.5611974 0.2902431 0.5195258 -0.5687816 0.2902431 0.5195258 -0.092819 0.3104189 0.5195258 -0.1056428 0.3104189 0.5195258 -0.1201537 0.3104189 0.5195258 -0.1409607 0.3104189 0.5195258 -0.1678172 0.3104189 0.5195258 -0.1950164 0.3104189 0.5195258 -0.2210581 0.3104189 0.5195258 -0.245636 0.3104189 0.5195258 -0.2686816 0.3104189 0.5195258 -0.2902431 0.3104189 0.5195258 -0.3104189 0.3104189 0.5195258 -0.3293248 0.3104189 0.5195258 -0.3470774 0.3104189 0.5195258 -0.3637862 0.3104189 0.5195258 -0.3795513 0.3104189 0.5195258 -0.3944623 0.3104189 0.5195258 -0.4085988 0.3104189 0.5195258 -0.4220313 0.3104189 0.5195258 -0.4348222 0.3104189 0.5195258 -0.4470264 0.3104189 0.5195258 -0.4586928 0.3104189 0.5195258 -0.4698649 0.3104189 0.5195258 -0.4805811 0.3104189 0.5195258 -0.490876 0.3104189 0.5195258 -0.5007803 0.3104189 0.5195258 -0.510322 0.3104189 0.5195258 -0.5195258 0.3104189 0.5195258 -0.5284142 0.3104189 0.5195258 -0.5370079 0.3104189 0.5195258 -0.5453253 0.3104189 0.5195258 -0.5533834 0.3104189 0.5195258 -0.5611974 0.3104189 0.5195258 -0.5687816 0.3104189 0.5195258 -0.092819 0.3293248 0.5195258 -0.1056428 0.3293248 0.5195258 -0.1201537 0.3293248 0.5195258 -0.1409607 0.3293248 0.5195258 -0.1678172 0.3293248 0.5195258 -0.1950164 0.3293248 0.5195258 -0.2210581 0.3293248 0.5195258 -0.245636 0.3293248 0.5195258 -0.2686816 0.3293248 0.5195258 -0.2902431 0.3293248 0.5195258 -0.3104189 0.3293248 0.5195258 -0.3293248 0.3293248 0.5195258 -0.3470774 0.3293248 0.5195258 -0.3637862 0.3293248 0.5195258 -0.3795513 0.3293248 0.5195258 -0.3944623 0.3293248 0.5195258 -0.4085988 0.3293248 0.5195258 -0.4220313 0.3293248 0.5195258 -0.4348222 0.3293248 0.5195258 -0.4470264 0.3293248 0.5195258 -0.4586928 0.3293248 0.5195258 -0.4698649 0.3293248 0.5195258 -0.4805811 0.3293248 0.5195258 -0.490876 0.3293248 0.5195258 -0.5007803 0.3293248 0.5195258 -0.510322 0.3293248 0.5195258 -0.5195258 0.3293248 0.5195258 -0.5284142 0.3293248 0.5195258 -0.5370079 0.3293248 0.5195258 -0.5453253 0.3293248 0.5195258 -0.5533834 0.3293248 0.5195258 -0.5611974 0.3293248 0.5195258 -0.5687816 0.3293248 0.5195258 -0.092819 0.3470774 0.5195258 -0.1056428 0.3470774 0.5195258 -0.1201537 0.3470774 0.5195258 -0.1409607 0.3470774 0.5195258 -0.1678172 0.3470774 0.5195258 -0.1950164 0.3470774 0.5195258 -0.2210581 0.3470774 0.5195258 -0.245636 0.3470774 0.5195258 -0.2686816 0.3470774 0.5195258 -0.2902431 0.3470774 0.5195258 -0.3104189 0.3470774 0.5195258 -0.3293248 0.3470774 0.5195258 -0.3470774 0.3470774 0.5195258 -0.3637862 0.3470774 0.5195258 -0.3795513 0.3470774 0.5195258 -0.3944623 0.3470774 0.5195258 -0.4085988 0.3470774 0.5195258 -0.4220313 0.3470774 0.5195258 -0.4348222 0.3470774 0.5195258 -0.4470264 0.3470774 0.5195258 -0.4586928 0.3470774 0.5195258 -0.4698649 0.3470774 0.5195258 -0.4805811 0.3470774 0.5195258 -0.490876 0.3470774 0.5195258 -0.5007803 0.3470774 0.5195258 -0.510322 0.3470774 0.5195258 -0.5195258 0.3470774 0.5195258 -0.5284142 0.3470774 0.5195258 -0.5370079 0.3470774 0.5195258 -0.5453253 0.3470774 0.5195258 -0.5533834 0.3470774 0.5195258 -0.5611974 0.3470774 0.5195258 -0.5687816 0.3470774 0.5195258 -0.092819 0.3637862 0.5195258 -0.1056428 0.3637862 0.5195258 -0.1201537 0.3637862 0.5195258 -0.1409607 0.3637862 0.5195258 -0.1678172 0.3637862 0.5195258 -0.1950164 0.3637862 0.5195258 -0.2210581 0.3637862 0.5195258 -0.245636 0.3637862 0.5195258 -0.2686816 0.3637862 0.5195258 -0.2902431 0.3637862 0.5195258 -0.3104189 0.3637862 0.5195258 -0.3293248 0.3637862 0.5195258 -0.3470774 0.3637862 0.5195258 -0.3637862 0.3637862 0.5195258 -0.3795513 0.3637862 0.5195258 -0.3944623 0.3637862 0.5195258 -0.4085988 0.3637862 0.5195258 -0.4220313 0.3637862 0.5195258 -0.4348222 0.3637862 0.5195258 -0.4470264 0.3637862 0.5195258 -0.4586928 0.3637862 0.5195258 -0.4698649 0.3637862 0.5195258 -0.4805811 0.3637862 0.5195258 -0.490876 0.3637862 0.5195258 -0.5007803 0.3637862 0.5195258 -0.510322 0.3637862 0.5195258 -0.5195258 0.3637862 0.5195258 -0.5284142 0.3637862 0.5195258 -0.5370079 0.3637862 0.5195258 -0.5453253 0.3637862 0.5195258 -0.5533834 0.3637862 0.5195258 -0.5611974 0.3637862 0.5195258 -0.5687816 0.3637862 0.5195258 -0.092819 0.3795513 0.5195258 -0.1056428 0.3795513 0.5195258 -0.1201537 0.3795513 0.5195258 -0.1409607 0.3795513 0.5195258 -0.1678172 0.3795513 0.5195258 -0.1950164 0.3795513 0.5195258 -0.2210581 0.3795513 0.5195258 -0.245636 0.3795513 0.5195258 -0.2686816 0.3795513 0.5195258 -0.2902431 0.3795513 0.5195258 -0.3104189 0.3795513 0.5195258 -0.3293248 0.3795513 0.5195258 -0.3470774 0.3795513 0.5195258 -0.3637862 0.3795513 0.5195258 -0.3795513 0.3795513 0.5195258 -0.3944623 0.3795513 0.5195258 -0.4085988 0.3795513 0.5195258 -0.4220313 0.3795513 0.5195258 -0.4348222 0.3795513 0.5195258 -0.4470264 0.3795513 0.5195258 -0.4586928 0.3795513 0.5195258 -0.4698649 0.3795513 0.5195258 -0.4805811 0.3795513 0.5195258 -0.490876 0.3795513 0.5195258 -0.5007803 0.3795513 0.5195258 -0.510322 0.3795513 0.5195258 -0.5195258 0.3795513 0.5195258 -0.5284142 0.3795513 0.5195258 -0.5370079 0.3795513 0.5195258 -0.5453253 0.3795513 0.5195258 -0.5533834 0.3795513 0.5195258 -0.5611974 0.3795513 0.5195258 -0.5687816 0.3795513 0.5195258 -0.092819 0.3944623 0.5195258 -0.1056428 0.3944623 0.5195258 -0.1201537 0.3944623 0.5195258 -0.1409607 0.3944623 0.5195258 -0.1678172 0.3944623 0.5195258 -0.1950164 0.3944623 0.5195258 -0.2210581 0.3944623 0.5195258 -0.245636 0.3944623 0.5195258 -0.2686816 0.3944623 0.5195258 -0.2902431 0.3944623 0.5195258 -0.3104189 0.3944623 0.5195258 -0.3293248 0.3944623 0.5195258 -0.3470774 0.3944623 0.5195258 -0.3637862 0.3944623 0.5195258 -0.3795513 0.3944623 0.5195258 -0.3944623 0.3944623 0.5195258 -0.4085988 0.3944623 0.5195258 -0.4220313 0.3944623 0.5195258 -0.4348222 0.3944623 0.5195258 -0.4470264 0.3944623 0.5195258 -0.4586928 0.3944623 0.5195258 -0.4698649 0.3944623 0.5195258 -0.4805811 0.3944623 0.5195258 -0.490876 0.3944623 0.5195258 -0.5007803 0.3944623 0.5195258 -0.510322 0.3944623 0.5195258 -0.5195258 0.3944623 0.5195258 -0.5284142 0.3944623 0.5195258 -0.5370079 0.3944623 0.5195258 -0.5453253 0.3944623 0.5195258 -0.5533834 0.3944623 0.5195258 -0.5611974 0.3944623 0.5195258 -0.5687816 0.3944623 0.5195258 -0.092819 0.4085988 0.5195258 -0.1056428 0.4085988 0.5195258 -0.1201537 0.4085988 0.5195258 -0.1409607 0.4085988 0.5195258 -0.1678172 0.4085988 0.5195258 -0.1950164 0.4085988 0.5195258 -0.2210581 0.4085988 0.5195258 -0.245636 0.4085988 0.5195258 -0.2686816 0.4085988 0.5195258 -0.2902431 0.4085988 0.5195258 -0.3104189 0.4085988 0.5195258 -0.3293248 0.4085988 0.5195258 -0.3470774 0.4085988 0.5195258 -0.3637862 0.4085988 0.5195258 -0.3795513 0.4085988 0.5195258 -0.3944623 0.4085988 0.5195258 -0.4085988 0.4085988 0.5195258 -0.4220313 0.4085988 0.5195258 -0.4348222 0.4085988 0.5195258 -0.4470264 0.4085988 0.5195258 -0.4586928 0.4085988 0.5195258 -0.4698649 0.4085988 0.5195258 -0.4805811 0.4085988 0.5195258 -0.490876 0.4085988 0.5195258 -0.5007803 0.4085988 0.5195258 -0.510322 0.4085988 0.5195258 -0.5195258 0.4085988 0.5195258 -0.5284142 0.4085988 0.5195258 -0.5370079 0.4085988 0.5195258 -0.5453253 0.4085988 0.5195258 -0.5533834 0.4085988 0.5195258 -0.5611974 0.4085988 0.5195258 -0.5687816 0.4085988 0.5195258 -0.092819 0.4220313 0.5195258 -0.1056428 0.4220313 0.5195258 -0.1201537 0.4220313 0.5195258 -0.1409607 0.4220313 0.5195258 -0.1678172 0.4220313 0.5195258 -0.1950164 0.4220313 0.5195258 -0.2210581 0.4220313 0.5195258 -0.245636 0.4220313 0.5195258 -0.2686816 0.4220313 0.5195258 -0.2902431 0.4220313 0.5195258 -0.3104189 0.4220313 0.5195258 -0.3293248 0.4220313 0.5195258 -0.3470774 0.4220313 0.5195258 -0.3637862 0.4220313 0.5195258 -0.3795513 0.4220313 0.5195258 -0.3944623 0.4220313 0.5195258 -0.4085988 0.4220313 0.5195258 -0.4220313 0.4220313 0.5195258 -0.4348222 0.4220313 0.5195258 -0.4470264 0.4220313 0.5195258 -0.4586928 0.4220313 0.5195258 -0.4698649 0.4220313 0.5195258 -0.4805811 0.4220313 0.5195258 -0.490876 0.4220313 0.5195258 -0.5007803 0.4220313 0.5195258 -0.510322 0.4220313 0.5195258 -0.5195258 0.4220313 0.5195258 -0.5284142 0.4220313 0.5195258 -0.5370079 0.4220313 0.5195258 -0.5453253 0.4220313 0.5195258 -0.5533834 0.4220313 0.5195258 -0.5611974 0.4220313 0.5195258 -0.5687816 0.4220313 0.5195258 -0.092819 0.4348222 0.5195258 -0.1056428 0.4348222 0.5195258 -0.1201537 0.4348222 0.5195258 -0.1409607 0.4348222 0.5195258 -0.1678172 0.4348222 0.5195258 -0.1950164 0.4348222 0.5195258 -0.2210581 0.4348222 0.5195258 -0.245636 0.4348222 0.5195258 -0.2686816 0.4348222 0.5195258 -0.2902431 0.4348222 0.5195258 -0.3104189 0.4348222 0.5195258 -0.3293248 0.4348222 0.5195258 -0.3470774 0.4348222 0.5195258 -0.3637862 0.4348222 0.5195258 -0.3795513 0.4348222 0.5195258 -0.3944623 0.4348222 0.5195258 -0.4085988 0.4348222 0.5195258 -0.4220313 0.4348222 0.5195258 -0.4348222 0.4348222 0.5195258 -0.4470264 0.4348222 0.5195258 -0.4586928 0.4348222 0.5195258 -0.4698649 0.4348222 0.5195258 -0.4805811 0.4348222 0.5195258 -0.490876 0.4348222 0.5195258 -0.5007803 0.4348222 0.5195258 -0.510322 0.4348222 0.5195258 -0.5195258 0.4348222 0.5195258 -0.5284142 0.4348222 0.5195258 -0.5370079 0.4348222 0.5195258 -0.5453253 0.4348222 0.5195258 -0.5533834 0.4348222 0.5195258 -0.5611974 0.4348222 0.5195258 -0.5687816 0.4348222 0.5195258 -0.092819 0.4470264 0.5195258 -0.1056428 0.4470264 0.5195258 -0.1201537 0.4470264 0.5195258 -0.1409607 0.4470264 0.5195258 -0.1678172 0.4470264 0.5195258 -0.1950164 0.4470264 0.5195258 -0.2210581 0.4470264 0.5195258 -0.245636 0.4470264 0.5195258 -0.2686816 0.4470264 0.5195258 -0.2902431 0.4470264 0.5195258 -0.3104189 0.4470264 0.5195258 -0.3293248 0.4470264 0.5195258 -0.3470774 0.4470264 0.5195258 -0.3637862 0.4470264 0.5195258 -0.3795513 0.4470264 0.5195258 -0.3944623 0.4470264 0.5195258 -0.4085988 0.4470264 0.5195258 -0.4220313 0.4470264 0.5195258 -0.4348222 0.4470264 0.5195258 -0.4470264 0.4470264 0.5195258 -0.4586928 0.4470264 0.5195258 -0.4698649 0.4470264 0.5195258 -0.4805811 0.4470264 0.5195258 -0.490876 0.4470264 0.5195258 -0.5007803 0.4470264 0.5195258 -0.510322 0.4470264 0.5195258 -0.5195258 0.4470264 0.5195258 -0.5284142 0.4470264 0.5195258 -0.5370079 0.4470264 0.5195258 -0.5453253 0.4470264 0.5195258 -0.5533834 0.4470264 0.5195258 -0.5611974 0.4470264 0.5195258 -0.5687816 0.4470264 0.5195258 -0.092819 0.4586928 0.5195258 -0.1056428 0.4586928 0.5195258 -0.1201537 0.4586928 0.5195258 -0.1409607 0.4586928 0.5195258 -0.1678172 0.4586928 0.5195258 -0.1950164 0.4586928 0.5195258 -0.2210581 0.4586928 0.5195258 -0.245636 0.4586928 0.5195258 -0.2686816 0.4586928 0.5195258 -0.2902431 0.4586928 0.5195258 -0.3104189 0.4586928 0.5195258 -0.3293248 0.4586928 0.5195258 -0.3470774 0.4586928 0.5195258 -0.3637862 0.4586928 0.5195258 -0.3795513 0.4586928 0.5195258 -0.3944623 0.4586928 0.5195258 -0.4085988 0.4586928 0.5195258 -0.4220313 0.4586928 0.5195258 -0.4348222 0.4586928 0.5195258 -0.4470264 0.4586928 0.5195258 -0.4586928 0.4586928 0.5195258 -0.4698649 0.4586928 0.5195258 -0.4805811 0.4586928 0.5195258 -0.490876 0.4586928 0.5195258 -0.5007803 0.4586928 0.5195258 -0.510322 0.4586928 0.5195258 -0.5195258 0.4586928 0.5195258 -0.5284142 0.4586928 0.5195258 -0.5370079 0.4586928 0.5195258 -0.5453253 0.4586928 0.5195258 -0.5533834 0.4586928 0.5195258 -0.5611974 0.4586928 0.5195258 -0.5687816 0.4586928 0.5195258 -0.092819 0.4698649 0.5195258 -0.1056428 0.4698649 0.5195258 -0.1201537 0.4698649 0.5195258 -0.1409607 0.4698649 0.5195258 -0.1678172 0.4698649 0.5195258 -0.1950164 0.4698649 0.5195258 -0.2210581 0.4698649 0.5195258 -0.245636 0.4698649 0.5195258 -0.2686816 0.4698649 0.5195258 -0.2902431 0.4698649 0.5195258 -0.3104189 0.4698649 0.5195258 -0.3293248 0.4698649 0.5195258 -0.3470774 0.4698649 0.5195258 -0.3637862 0.4698649 0.5195258 -0.3795513 0.4698649 0.5195258 -0.3944623 0.4698649 0.5195258 -0.4085988 0.4698649 0.5195258 -0.4220313 0.4698649 0.5195258 -0.4348222 0.4698649 0.5195258 -0.4470264 0.4698649 0.5195258 -0.4586928 0.4698649 0.5195258 -0.4698649 0.4698649 0.5195258 -0.4805811 0.4698649 0.5195258 -0.490876 0.4698649 0.5195258 -0.5007803 0.4698649 0.5195258 -0.510322 0.4698649 0.5195258 -0.5195258 0.4698649 0.5195258 -0.5284142 0.4698649 0.5195258 -0.5370079 0.4698649 0.5195258 -0.5453253 0.4698649 0.5195258 -0.5533834 0.4698649 0.5195258 -0.5611974 0.4698649 0.5195258 -0.5687816 0.4698649 0.5195258 -0.092819 0.4805811 0.5195258 -0.1056428 0.4805811 0.5195258 -0.1201537 0.4805811 0.5195258 -0.1409607 0.4805811 0.5195258 -0.1678172 0.4805811 0.5195258 -0.1950164 0.4805811 0.5195258 -0.2210581 0.4805811 0.5195258 -0.245636 0.4805811 0.5195258 -0.2686816 0.4805811 0.5195258 -0.2902431 0.4805811 0.5195258 -0.3104189 0.4805811 0.5195258 -0.3293248 0.4805811 0.5195258 -0.3470774 0.4805811 0.5195258 -0.3637862 0.4805811 0.5195258 -0.3795513 0.4805811 0.5195258 -0.3944623 0.4805811 0.5195258 -0.4085988 0.4805811 0.5195258 -0.4220313 0.4805811 0.5195258 -0.4348222 0.4805811 0.5195258 -0.4470264 0.4805811 0.5195258 -0.4586928 0.4805811 0.5195258 -0.4698649 0.4805811 0.5195258 -0.4805811 0.4805811 0.5195258 -0.490876 0.4805811 0.5195258 -0.5007803 0.4805811 0.5195258 -0.510322 0.4805811 0.5195258 -0.5195258 0.4805811 0.5195258 -0.5284142 0.4805811 0.5195258 -0.5370079 0.4805811 0.5195258 -0.5453253 0.4805811 0.5195258 -0.5533834 0.4805811 0.5195258 -0.5611974 0.4805811 0.5195258 -0.5687816 0.4805811 0.5195258 -0.092819 0.490876 0.5195258 -0.1056428 0.490876 0.5195258 -0.1201537 0.490876 0.5195258 -0.1409607 0.490876 0.5195258 -0.1678172 0.490876 0.5195258 -0.1950164 0.490876 0.5195258 -0.2210581 0.490876 0.5195258 -0.245636 0.490876 0.5195258 -0.2686816 0.490876 0.5195258 -0.2902431 0.490876 0.5195258 -0.3104189 0.490876 0.5195258 -0.3293248 0.490876 0.5195258 -0.3470774 0.490876 0.5195258 -0.3637862 0.490876 0.5195258 -0.3795513 0.490876 0.5195258 -0.3944623 0.490876 0.5195258 -0.4085988 0.490876 0.5195258 -0.4220313 0.490876 0.5195258 -0.4348222 0.490876 0.5195258 -0.4470264 0.490876 0.5195258 -0.4586928 0.490876 0.5195258 -0.4698649 0.490876 0.5195258 -0.4805811 0.490876 0.5195258 -0.490876 0.490876 0.5195258 -0.5007803 0.490876 0.5195258 -0.510322 0.490876 0.5195258 -0.5195258 0.490876 0.5195258 -0.5284142 0.490876 0.5195258 -0.5370079 0.490876 0.5195258 -0.5453253 0.490876 0.5195258 -0.5533834 0.490876 0.5195258 -0.5611974 0.490876 0.5195258 -0.5687816 0.490876 0.5195258 -0.092819 0.5007803 0.5195258 -0.1056428 0.5007803 0.5195258 -0.1201537 0.5007803 0.5195258 -0.1409607 0.5007803 0.5195258 -0.1678172 0.5007803 0.5195258 -0.1950164 0.5007803 0.5195258 -0.2210581 0.5007803 0.5195258 -0.245636 0.5007803 0.5195258 -0.2686816 0.5007803 0.5195258 -0.2902431 0.5007803 0.5195258 -0.3104189 0.5007803 0.5195258 -0.3293248 0.5007803 0.5195258 -0.3470774 0.5007803 0.5195258 -0.3637862 0.5007803 0.5195258 -0.3795513 0.5007803 0.5195258 -0.3944623 0.5007803 0.5195258 -0.4085988 0.5007803 0.5195258 -0.4220313 0.5007803 0.5195258 -0.4348222 0.5007803 0.5195258 -0.4470264 0.5007803 0.5195258 -0.4586928 0.5007803 0.5195258 -0.4698649 0.5007803 0.5195258 -0.4805811 0.5007803 0.5195258 -0.490876 0.5007803 0.5195258 -0.5007803 0.5007803 0.5195258 -0.510322 0.5007803 0.5195258 -0.5195258 0.5007803 0.5195258 -0.5284142 0.5007803 0.5195258 -0.5370079 0.5007803 0.5195258 -0.5453253 0.5007803 0.5195258 -0.5533834 0.5007803 0.5195258 -0.5611974 0.5007803 0.5195258 -0.5687816 0.5007803 0.5195258 -0.092819 0.510322 0.5195258 -0.1056428 0.510322 0.5195258 -0.1201537 0.510322 0.5195258 -0.1409607 0.510322 0.5195258 -0.1678172 0.510322 0.5195258 -0.1950164 0.510322 0.5195258 -0.2210581 0.510322 0.5195258 -0.245636 0.510322 0.5195258 -0.2686816 0.510322 0.5195258 -0.2902431 0.510322 0.5195258 -0.3104189 0.510322 0.5195258 -0.3293248 0.510322 0.5195258 -0.3470774 0.510322 0.5195258 -0.3637862 0.510322 0.5195258 -0.3795513 0.510322 0.5195258 -0.3944623 0.510322 0.5195258 -0.4085988 0.510322 0.5195258 -0.4220313 0.510322 0.5195258 -0.4348222 0.510322 0.5195258 -0.4470264 0.510322 0.5195258 -0.4586928 0.510322 0.5195258 -0.4698649 0.510322 0.5195258 -0.4805811 0.510322 0.5195258 -0.490876 0.510322 0.5195258 -0.5007803 0.510322 0.5195258 -0.510322 0.510322 0.5195258 -0.5195258 0.510322 0.5195258 -0.5284142 0.510322 0.5195258 -0.5370079 0.510322 0.5195258 -0.5453253 0.510322 0.5195258 -0.5533834 0.510322 0.5195258 -0.5611974 0.510322 0.5195258 -0.5687816 0.510322 0.5195258 -0.092819 0.5195258 0.5195258 -0.1056428 0.5195258 0.5195258 -0.1201537 0.5195258 0.5195258 -0.1409607 0.5195258 0.5195258 -0.1678172 0.5195258 0.5195258 -0.1950164 0.5195258 0.5195258 -0.2210581 0.5195258 0.5195258 -0.245636 0.5195258 0.5195258 -0.2686816 0.5195258 0.5195258 -0.2902431 0.5195258 0.5195258 -0.3104189 0.5195258 0.5195258 -0.3293248 0.5195258 0.5195258 -0.3470774 0.5195258 0.5195258 -0.3637862 0.5195258 0.5195258 -0.3795513 0.5195258 0.5195258 -0.3944623 0.5195258 0.5195258 -0.4085988 0.5195258 0.5195258 -0.4220313 0.5195258 0.5195258 -0.4348222 0.5195258 0.5195258 -0.4470264 0.5195258 0.5195258 -0.4586928 0.5195258 0.5195258 -0.4698649 0.5195258 0.5195258 -0.4805811 0.5195258 0.5195258 -0.490876 0.5195258 0.5195258 -0.5007803 0.5195258 0.5195258 -0.510322 0.5195258 0.5195258 -0.5195258 0.5195258 0.5195258 -0.5284142 0.5195258 0.5195258 -0.5370079 0.5195258 0.5195258 -0.5453253 0.5195258 0.5195258 -0.5533834 0.5195258 0.5195258 -0.5611974 0.5195258 0.5195258 -0.5687816 0.5195258 0.5195258 -0.092819 0.5284142 0.5195258 -0.1056428 0.5284142 0.5195258 -0.1201537 0.5284142 0.5195258 -0.1409607 0.5284142 0.5195258 -0.1678172 0.5284142 0.5195258 -0.1950164 0.5284142 0.5195258 -0.2210581 0.5284142 0.5195258 -0.245636 0.5284142 0.5195258 -0.2686816 0.5284142 0.5195258 -0.2902431 0.5284142 0.5195258 -0.3104189 0.5284142 0.5195258 -0.3293248 0.5284142 0.5195258 -0.3470774 0.5284142 0.5195258 -0.3637862 0.5284142 0.5195258 -0.3795513 0.5284142 0.5195258 -0.3944623 0.5284142 0.5195258 -0.4085988 0.5284142 0.5195258 -0.4220313 0.5284142 0.5195258 -0.4348222 0.5284142 0.5195258 -0.4470264 0.5284142 0.5195258 -0.4586928 0.5284142 0.5195258 -0.4698649 0.5284142 0.5195258 -0.4805811 0.5284142 0.5195258 -0.490876 0.5284142 0.5195258 -0.5007803 0.5284142 0.5195258 -0.510322 0.5284142 0.5195258 -0.5195258 0.5284142 0.5195258 -0.5284142 0.5284142 0.5195258 -0.5370079 0.5284142 0.5195258 -0.5453253 0.5284142 0.5195258 -0.5533834 0.5284142 0.5195258 -0.5611974 0.5284142 0.5195258 -0.5687816 0.5284142 0.5195258 -0.092819 0.5370079 0.5195258 -0.1056428 0.5370079 0.5195258 -0.1201537 0.5370079 0.5195258 -0.1409607 0.5370079 0.5195258 -0.1678172 0.5370079 0.5195258 -0.1950164 0.5370079 0.5195258 -0.2210581 0.5370079 0.5195258 -0.245636 0.5370079 0.5195258 -0.2686816 0.5370079 0.5195258 -0.2902431 0.5370079 0.5195258 -0.3104189 0.5370079 0.5195258 -0.3293248 0.5370079 0.5195258 -0.3470774 0.5370079 0.5195258 -0.3637862 0.5370079 0.5195258 -0.3795513 0.5370079 0.5195258 -0.3944623 0.5370079 0.5195258 -0.4085988 0.5370079 0.5195258 -0.4220313 0.5370079 0.5195258 -0.4348222 0.5370079 0.5195258 -0.4470264 0.5370079 0.5195258 -0.4586928 0.5370079 0.5195258 -0.4698649 0.5370079 0.5195258 -0.4805811 0.5370079 0.5195258 -0.490876 0.5370079 0.5195258 -0.5007803 0.5370079 0.5195258 -0.510322 0.5370079 0.5195258 -0.5195258 0.5370079 0.5195258 -0.5284142 0.5370079 0.5195258 -0.5370079 0.5370079 0.5195258 -0.5453253 0.5370079 0.5195258 -0.5533834 0.5370079 0.5195258 -0.5611974 0.5370079 0.5195258 -0.5687816 0.5370079 0.5195258 -0.092819 0.5453253 0.5195258 -0.1056428 0.5453253 0.5195258 -0.1201537 0.5453253 0.5195258 -0.1409607 0.5453253 0.5195258 -0.1678172 0.5453253 0.5195258 -0.1950164 0.5453253 0.5195258 -0.2210581 0.5453253 0.5195258 -0.245636 0.5453253 0.5195258 -0.2686816 0.5453253 0.5195258 -0.2902431 0.5453253 0.5195258 -0.3104189 0.5453253 0.5195258 -0.3293248 0.5453253 0.5195258 -0.3470774 0.5453253 0.5195258 -0.3637862 0.5453253 0.5195258 -0.3795513 0.5453253 0.5195258 -0.3944623 0.5453253 0.5195258 -0.4085988 0.5453253 0.5195258 -0.4220313 0.5453253 0.5195258 -0.4348222 0.5453253 0.5195258 -0.4470264 0.5453253 0.5195258 -0.4586928 0.5453253 0.5195258 -0.4698649 0.5453253 0.5195258 -0.4805811 0.5453253 0.5195258 -0.490876 0.5453253 0.5195258 -0.5007803 0.5453253 0.5195258 -0.510322 0.5453253 0.5195258 -0.5195258 0.5453253 0.5195258 -0.5284142 0.5453253 0.5195258 -0.5370079 0.5453253 0.5195258 -0.5453253 0.5453253 0.5195258 -0.5533834 0.5453253 0.5195258 -0.5611974 0.5453253 0.5195258 -0.5687816 0.5453253 0.5195258 -0.092819 0.5533834 0.5195258 -0.1056428 0.5533834 0.5195258 -0.1201537 0.5533834 0.5195258 -0.1409607 0.5533834 0.5195258 -0.1678172 0.5533834 0.5195258 -0.1950164 0.5533834 0.5195258 -0.2210581 0.5533834 0.5195258 -0.245636 0.5533834 0.5195258 -0.2686816 0.5533834 0.5195258 -0.2902431 0.5533834 0.5195258 -0.3104189 0.5533834 0.5195258 -0.3293248 0.5533834 0.5195258 -0.3470774 0.5533834 0.5195258 -0.3637862 0.5533834 0.5195258 -0.3795513 0.5533834 0.5195258 -0.3944623 0.5533834 0.5195258 -0.4085988 0.5533834 0.5195258 -0.4220313 0.5533834 0.5195258 -0.4348222 0.5533834 0.5195258 -0.4470264 0.5533834 0.5195258 -0.4586928 0.5533834 0.5195258 -0.4698649 0.5533834 0.5195258 -0.4805811 0.5533834 0.5195258 -0.490876 0.5533834 0.5195258 -0.5007803 0.5533834 0.5195258 -0.510322 0.5533834 0.5195258 -0.5195258 0.5533834 0.5195258 -0.5284142 0.5533834 0.5195258 -0.5370079 0.5533834 0.5195258 -0.5453253 0.5533834 0.5195258 -0.5533834 0.5533834 0.5195258 -0.5611974 0.5533834 0.5195258 -0.5687816 0.5533834 0.5195258 -0.092819 0.5611974 0.5195258 -0.1056428 0.5611974 0.5195258 -0.1201537 0.5611974 0.5195258 -0.1409607 0.5611974 0.5195258 -0.1678172 0.5611974 0.5195258 -0.1950164 0.5611974 0.5195258 -0.2210581 0.5611974 0.5195258 -0.245636 0.5611974 0.5195258 -0.2686816 0.5611974 0.5195258 -0.2902431 0.5611974 0.5195258 -0.3104189 0.5611974 0.5195258 -0.3293248 0.5611974 0.5195258 -0.3470774 0.5611974 0.5195258 -0.3637862 0.5611974 0.5195258 -0.3795513 0.5611974 0.5195258 -0.3944623 0.5611974 0.5195258 -0.4085988 0.5611974 0.5195258 -0.4220313 0.5611974 0.5195258 -0.4348222 0.5611974 0.5195258 -0.4470264 0.5611974 0.5195258 -0.4586928 0.5611974 0.5195258 -0.4698649 0.5611974 0.5195258 -0.4805811 0.5611974 0.5195258 -0.490876 0.5611974 0.5195258 -0.5007803 0.5611974 0.5195258 -0.510322 0.5611974 0.5195258 -0.5195258 0.5611974 0.5195258 -0.5284142 0.5611974 0.5195258 -0.5370079 0.5611974 0.5195258 -0.5453253 0.5611974 0.5195258 -0.5533834 0.5611974 0.5195258 -0.5611974 0.5611974 0.5195258 -0.5687816 0.5611974 0.5195258 -0.092819 0.5687816 0.5195258 -0.1056428 0.5687816 0.5195258 -0.1201537 0.5687816 0.5195258 -0.1409607 0.5687816 0.5195258 -0.1678172 0.5687816 0.5195258 -0.1950164 0.5687816 0.5195258 -0.2210581 0.5687816 0.5195258 -0.245636 0.5687816 0.5195258 -0.2686816 0.5687816 0.5195258 -0.2902431 0.5687816 0.5195258 -0.3104189 0.5687816 0.5195258 -0.3293248 0.5687816 0.5195258 -0.3470774 0.5687816 0.5195258 -0.3637862 0.5687816 0.5195258 -0.3795513 0.5687816 0.5195258 -0.3944623 0.5687816 0.5195258 -0.4085988 0.5687816 0.5195258 -0.4220313 0.5687816 0.5195258 -0.4348222 0.5687816 0.5195258 -0.4470264 0.5687816 0.5195258 -0.4586928 0.5687816 0.5195258 -0.4698649 0.5687816 0.5195258 -0.4805811 0.5687816 0.5195258 -0.490876 0.5687816 0.5195258 -0.5007803 0.5687816 0.5195258 -0.510322 0.5687816 0.5195258 -0.5195258 0.5687816 0.5195258 -0.5284142 0.5687816 0.5195258 -0.5370079 0.5687816 0.5195258 -0.5453253 0.5687816 0.5195258 -0.5533834 0.5687816 0.5195258 -0.5611974 0.5687816 0.5195258 -0.5687816 0.5687816 0.5195258 -0.092819 0.092819 0.5284142 -0.1056428 0.092819 0.5284142 -0.1201537 0.092819 0.5284142 -0.1409607 0.092819 0.5284142 -0.1678172 0.092819 0.5284142 -0.1950164 0.092819 0.5284142 -0.2210581 0.092819 0.5284142 -0.245636 0.092819 0.5284142 -0.2686816 0.092819 0.5284142 -0.2902431 0.092819 0.5284142 -0.3104189 0.092819 0.5284142 -0.3293248 0.092819 0.5284142 -0.3470774 0.092819 0.5284142 -0.3637862 0.092819 0.5284142 -0.3795513 0.092819 0.5284142 -0.3944623 0.092819 0.5284142 -0.4085988 0.092819 0.5284142 -0.4220313 0.092819 0.5284142 -0.4348222 0.092819 0.5284142 -0.4470264 0.092819 0.5284142 -0.4586928 0.092819 0.5284142 -0.4698649 0.092819 0.5284142 -0.4805811 0.092819 0.5284142 -0.490876 0.092819 0.5284142 -0.5007803 0.092819 0.5284142 -0.510322 0.092819 0.5284142 -0.5195258 0.092819 0.5284142 -0.5284142 0.092819 0.5284142 -0.5370079 0.092819 0.5284142 -0.5453253 0.092819 0.5284142 -0.5533834 0.092819 0.5284142 -0.5611974 0.092819 0.5284142 -0.5687816 0.092819 0.5284142 -0.092819 0.1056428 0.5284142 -0.1056428 0.1056428 0.5284142 -0.1201537 0.1056428 0.5284142 -0.1409607 0.1056428 0.5284142 -0.1678172 0.1056428 0.5284142 -0.1950164 0.1056428 0.5284142 -0.2210581 0.1056428 0.5284142 -0.245636 0.1056428 0.5284142 -0.2686816 0.1056428 0.5284142 -0.2902431 0.1056428 0.5284142 -0.3104189 0.1056428 0.5284142 -0.3293248 0.1056428 0.5284142 -0.3470774 0.1056428 0.5284142 -0.3637862 0.1056428 0.5284142 -0.3795513 0.1056428 0.5284142 -0.3944623 0.1056428 0.5284142 -0.4085988 0.1056428 0.5284142 -0.4220313 0.1056428 0.5284142 -0.4348222 0.1056428 0.5284142 -0.4470264 0.1056428 0.5284142 -0.4586928 0.1056428 0.5284142 -0.4698649 0.1056428 0.5284142 -0.4805811 0.1056428 0.5284142 -0.490876 0.1056428 0.5284142 -0.5007803 0.1056428 0.5284142 -0.510322 0.1056428 0.5284142 -0.5195258 0.1056428 0.5284142 -0.5284142 0.1056428 0.5284142 -0.5370079 0.1056428 0.5284142 -0.5453253 0.1056428 0.5284142 -0.5533834 0.1056428 0.5284142 -0.5611974 0.1056428 0.5284142 -0.5687816 0.1056428 0.5284142 -0.092819 0.1201537 0.5284142 -0.1056428 0.1201537 0.5284142 -0.1201537 0.1201537 0.5284142 -0.1409607 0.1201537 0.5284142 -0.1678172 0.1201537 0.5284142 -0.1950164 0.1201537 0.5284142 -0.2210581 0.1201537 0.5284142 -0.245636 0.1201537 0.5284142 -0.2686816 0.1201537 0.5284142 -0.2902431 0.1201537 0.5284142 -0.3104189 0.1201537 0.5284142 -0.3293248 0.1201537 0.5284142 -0.3470774 0.1201537 0.5284142 -0.3637862 0.1201537 0.5284142 -0.3795513 0.1201537 0.5284142 -0.3944623 0.1201537 0.5284142 -0.4085988 0.1201537 0.5284142 -0.4220313 0.1201537 0.5284142 -0.4348222 0.1201537 0.5284142 -0.4470264 0.1201537 0.5284142 -0.4586928 0.1201537 0.5284142 -0.4698649 0.1201537 0.5284142 -0.4805811 0.1201537 0.5284142 -0.490876 0.1201537 0.5284142 -0.5007803 0.1201537 0.5284142 -0.510322 0.1201537 0.5284142 -0.5195258 0.1201537 0.5284142 -0.5284142 0.1201537 0.5284142 -0.5370079 0.1201537 0.5284142 -0.5453253 0.1201537 0.5284142 -0.5533834 0.1201537 0.5284142 -0.5611974 0.1201537 0.5284142 -0.5687816 0.1201537 0.5284142 -0.092819 0.1409607 0.5284142 -0.1056428 0.1409607 0.5284142 -0.1201537 0.1409607 0.5284142 -0.1409607 0.1409607 0.5284142 -0.1678172 0.1409607 0.5284142 -0.1950164 0.1409607 0.5284142 -0.2210581 0.1409607 0.5284142 -0.245636 0.1409607 0.5284142 -0.2686816 0.1409607 0.5284142 -0.2902431 0.1409607 0.5284142 -0.3104189 0.1409607 0.5284142 -0.3293248 0.1409607 0.5284142 -0.3470774 0.1409607 0.5284142 -0.3637862 0.1409607 0.5284142 -0.3795513 0.1409607 0.5284142 -0.3944623 0.1409607 0.5284142 -0.4085988 0.1409607 0.5284142 -0.4220313 0.1409607 0.5284142 -0.4348222 0.1409607 0.5284142 -0.4470264 0.1409607 0.5284142 -0.4586928 0.1409607 0.5284142 -0.4698649 0.1409607 0.5284142 -0.4805811 0.1409607 0.5284142 -0.490876 0.1409607 0.5284142 -0.5007803 0.1409607 0.5284142 -0.510322 0.1409607 0.5284142 -0.5195258 0.1409607 0.5284142 -0.5284142 0.1409607 0.5284142 -0.5370079 0.1409607 0.5284142 -0.5453253 0.1409607 0.5284142 -0.5533834 0.1409607 0.5284142 -0.5611974 0.1409607 0.5284142 -0.5687816 0.1409607 0.5284142 -0.092819 0.1678172 0.5284142 -0.1056428 0.1678172 0.5284142 -0.1201537 0.1678172 0.5284142 -0.1409607 0.1678172 0.5284142 -0.1678172 0.1678172 0.5284142 -0.1950164 0.1678172 0.5284142 -0.2210581 0.1678172 0.5284142 -0.245636 0.1678172 0.5284142 -0.2686816 0.1678172 0.5284142 -0.2902431 0.1678172 0.5284142 -0.3104189 0.1678172 0.5284142 -0.3293248 0.1678172 0.5284142 -0.3470774 0.1678172 0.5284142 -0.3637862 0.1678172 0.5284142 -0.3795513 0.1678172 0.5284142 -0.3944623 0.1678172 0.5284142 -0.4085988 0.1678172 0.5284142 -0.4220313 0.1678172 0.5284142 -0.4348222 0.1678172 0.5284142 -0.4470264 0.1678172 0.5284142 -0.4586928 0.1678172 0.5284142 -0.4698649 0.1678172 0.5284142 -0.4805811 0.1678172 0.5284142 -0.490876 0.1678172 0.5284142 -0.5007803 0.1678172 0.5284142 -0.510322 0.1678172 0.5284142 -0.5195258 0.1678172 0.5284142 -0.5284142 0.1678172 0.5284142 -0.5370079 0.1678172 0.5284142 -0.5453253 0.1678172 0.5284142 -0.5533834 0.1678172 0.5284142 -0.5611974 0.1678172 0.5284142 -0.5687816 0.1678172 0.5284142 -0.092819 0.1950164 0.5284142 -0.1056428 0.1950164 0.5284142 -0.1201537 0.1950164 0.5284142 -0.1409607 0.1950164 0.5284142 -0.1678172 0.1950164 0.5284142 -0.1950164 0.1950164 0.5284142 -0.2210581 0.1950164 0.5284142 -0.245636 0.1950164 0.5284142 -0.2686816 0.1950164 0.5284142 -0.2902431 0.1950164 0.5284142 -0.3104189 0.1950164 0.5284142 -0.3293248 0.1950164 0.5284142 -0.3470774 0.1950164 0.5284142 -0.3637862 0.1950164 0.5284142 -0.3795513 0.1950164 0.5284142 -0.3944623 0.1950164 0.5284142 -0.4085988 0.1950164 0.5284142 -0.4220313 0.1950164 0.5284142 -0.4348222 0.1950164 0.5284142 -0.4470264 0.1950164 0.5284142 -0.4586928 0.1950164 0.5284142 -0.4698649 0.1950164 0.5284142 -0.4805811 0.1950164 0.5284142 -0.490876 0.1950164 0.5284142 -0.5007803 0.1950164 0.5284142 -0.510322 0.1950164 0.5284142 -0.5195258 0.1950164 0.5284142 -0.5284142 0.1950164 0.5284142 -0.5370079 0.1950164 0.5284142 -0.5453253 0.1950164 0.5284142 -0.5533834 0.1950164 0.5284142 -0.5611974 0.1950164 0.5284142 -0.5687816 0.1950164 0.5284142 -0.092819 0.2210581 0.5284142 -0.1056428 0.2210581 0.5284142 -0.1201537 0.2210581 0.5284142 -0.1409607 0.2210581 0.5284142 -0.1678172 0.2210581 0.5284142 -0.1950164 0.2210581 0.5284142 -0.2210581 0.2210581 0.5284142 -0.245636 0.2210581 0.5284142 -0.2686816 0.2210581 0.5284142 -0.2902431 0.2210581 0.5284142 -0.3104189 0.2210581 0.5284142 -0.3293248 0.2210581 0.5284142 -0.3470774 0.2210581 0.5284142 -0.3637862 0.2210581 0.5284142 -0.3795513 0.2210581 0.5284142 -0.3944623 0.2210581 0.5284142 -0.4085988 0.2210581 0.5284142 -0.4220313 0.2210581 0.5284142 -0.4348222 0.2210581 0.5284142 -0.4470264 0.2210581 0.5284142 -0.4586928 0.2210581 0.5284142 -0.4698649 0.2210581 0.5284142 -0.4805811 0.2210581 0.5284142 -0.490876 0.2210581 0.5284142 -0.5007803 0.2210581 0.5284142 -0.510322 0.2210581 0.5284142 -0.5195258 0.2210581 0.5284142 -0.5284142 0.2210581 0.5284142 -0.5370079 0.2210581 0.5284142 -0.5453253 0.2210581 0.5284142 -0.5533834 0.2210581 0.5284142 -0.5611974 0.2210581 0.5284142 -0.5687816 0.2210581 0.5284142 -0.092819 0.245636 0.5284142 -0.1056428 0.245636 0.5284142 -0.1201537 0.245636 0.5284142 -0.1409607 0.245636 0.5284142 -0.1678172 0.245636 0.5284142 -0.1950164 0.245636 0.5284142 -0.2210581 0.245636 0.5284142 -0.245636 0.245636 0.5284142 -0.2686816 0.245636 0.5284142 -0.2902431 0.245636 0.5284142 -0.3104189 0.245636 0.5284142 -0.3293248 0.245636 0.5284142 -0.3470774 0.245636 0.5284142 -0.3637862 0.245636 0.5284142 -0.3795513 0.245636 0.5284142 -0.3944623 0.245636 0.5284142 -0.4085988 0.245636 0.5284142 -0.4220313 0.245636 0.5284142 -0.4348222 0.245636 0.5284142 -0.4470264 0.245636 0.5284142 -0.4586928 0.245636 0.5284142 -0.4698649 0.245636 0.5284142 -0.4805811 0.245636 0.5284142 -0.490876 0.245636 0.5284142 -0.5007803 0.245636 0.5284142 -0.510322 0.245636 0.5284142 -0.5195258 0.245636 0.5284142 -0.5284142 0.245636 0.5284142 -0.5370079 0.245636 0.5284142 -0.5453253 0.245636 0.5284142 -0.5533834 0.245636 0.5284142 -0.5611974 0.245636 0.5284142 -0.5687816 0.245636 0.5284142 -0.092819 0.2686816 0.5284142 -0.1056428 0.2686816 0.5284142 -0.1201537 0.2686816 0.5284142 -0.1409607 0.2686816 0.5284142 -0.1678172 0.2686816 0.5284142 -0.1950164 0.2686816 0.5284142 -0.2210581 0.2686816 0.5284142 -0.245636 0.2686816 0.5284142 -0.2686816 0.2686816 0.5284142 -0.2902431 0.2686816 0.5284142 -0.3104189 0.2686816 0.5284142 -0.3293248 0.2686816 0.5284142 -0.3470774 0.2686816 0.5284142 -0.3637862 0.2686816 0.5284142 -0.3795513 0.2686816 0.5284142 -0.3944623 0.2686816 0.5284142 -0.4085988 0.2686816 0.5284142 -0.4220313 0.2686816 0.5284142 -0.4348222 0.2686816 0.5284142 -0.4470264 0.2686816 0.5284142 -0.4586928 0.2686816 0.5284142 -0.4698649 0.2686816 0.5284142 -0.4805811 0.2686816 0.5284142 -0.490876 0.2686816 0.5284142 -0.5007803 0.2686816 0.5284142 -0.510322 0.2686816 0.5284142 -0.5195258 0.2686816 0.5284142 -0.5284142 0.2686816 0.5284142 -0.5370079 0.2686816 0.5284142 -0.5453253 0.2686816 0.5284142 -0.5533834 0.2686816 0.5284142 -0.5611974 0.2686816 0.5284142 -0.5687816 0.2686816 0.5284142 -0.092819 0.2902431 0.5284142 -0.1056428 0.2902431 0.5284142 -0.1201537 0.2902431 0.5284142 -0.1409607 0.2902431 0.5284142 -0.1678172 0.2902431 0.5284142 -0.1950164 0.2902431 0.5284142 -0.2210581 0.2902431 0.5284142 -0.245636 0.2902431 0.5284142 -0.2686816 0.2902431 0.5284142 -0.2902431 0.2902431 0.5284142 -0.3104189 0.2902431 0.5284142 -0.3293248 0.2902431 0.5284142 -0.3470774 0.2902431 0.5284142 -0.3637862 0.2902431 0.5284142 -0.3795513 0.2902431 0.5284142 -0.3944623 0.2902431 0.5284142 -0.4085988 0.2902431 0.5284142 -0.4220313 0.2902431 0.5284142 -0.4348222 0.2902431 0.5284142 -0.4470264 0.2902431 0.5284142 -0.4586928 0.2902431 0.5284142 -0.4698649 0.2902431 0.5284142 -0.4805811 0.2902431 0.5284142 -0.490876 0.2902431 0.5284142 -0.5007803 0.2902431 0.5284142 -0.510322 0.2902431 0.5284142 -0.5195258 0.2902431 0.5284142 -0.5284142 0.2902431 0.5284142 -0.5370079 0.2902431 0.5284142 -0.5453253 0.2902431 0.5284142 -0.5533834 0.2902431 0.5284142 -0.5611974 0.2902431 0.5284142 -0.5687816 0.2902431 0.5284142 -0.092819 0.3104189 0.5284142 -0.1056428 0.3104189 0.5284142 -0.1201537 0.3104189 0.5284142 -0.1409607 0.3104189 0.5284142 -0.1678172 0.3104189 0.5284142 -0.1950164 0.3104189 0.5284142 -0.2210581 0.3104189 0.5284142 -0.245636 0.3104189 0.5284142 -0.2686816 0.3104189 0.5284142 -0.2902431 0.3104189 0.5284142 -0.3104189 0.3104189 0.5284142 -0.3293248 0.3104189 0.5284142 -0.3470774 0.3104189 0.5284142 -0.3637862 0.3104189 0.5284142 -0.3795513 0.3104189 0.5284142 -0.3944623 0.3104189 0.5284142 -0.4085988 0.3104189 0.5284142 -0.4220313 0.3104189 0.5284142 -0.4348222 0.3104189 0.5284142 -0.4470264 0.3104189 0.5284142 -0.4586928 0.3104189 0.5284142 -0.4698649 0.3104189 0.5284142 -0.4805811 0.3104189 0.5284142 -0.490876 0.3104189 0.5284142 -0.5007803 0.3104189 0.5284142 -0.510322 0.3104189 0.5284142 -0.5195258 0.3104189 0.5284142 -0.5284142 0.3104189 0.5284142 -0.5370079 0.3104189 0.5284142 -0.5453253 0.3104189 0.5284142 -0.5533834 0.3104189 0.5284142 -0.5611974 0.3104189 0.5284142 -0.5687816 0.3104189 0.5284142 -0.092819 0.3293248 0.5284142 -0.1056428 0.3293248 0.5284142 -0.1201537 0.3293248 0.5284142 -0.1409607 0.3293248 0.5284142 -0.1678172 0.3293248 0.5284142 -0.1950164 0.3293248 0.5284142 -0.2210581 0.3293248 0.5284142 -0.245636 0.3293248 0.5284142 -0.2686816 0.3293248 0.5284142 -0.2902431 0.3293248 0.5284142 -0.3104189 0.3293248 0.5284142 -0.3293248 0.3293248 0.5284142 -0.3470774 0.3293248 0.5284142 -0.3637862 0.3293248 0.5284142 -0.3795513 0.3293248 0.5284142 -0.3944623 0.3293248 0.5284142 -0.4085988 0.3293248 0.5284142 -0.4220313 0.3293248 0.5284142 -0.4348222 0.3293248 0.5284142 -0.4470264 0.3293248 0.5284142 -0.4586928 0.3293248 0.5284142 -0.4698649 0.3293248 0.5284142 -0.4805811 0.3293248 0.5284142 -0.490876 0.3293248 0.5284142 -0.5007803 0.3293248 0.5284142 -0.510322 0.3293248 0.5284142 -0.5195258 0.3293248 0.5284142 -0.5284142 0.3293248 0.5284142 -0.5370079 0.3293248 0.5284142 -0.5453253 0.3293248 0.5284142 -0.5533834 0.3293248 0.5284142 -0.5611974 0.3293248 0.5284142 -0.5687816 0.3293248 0.5284142 -0.092819 0.3470774 0.5284142 -0.1056428 0.3470774 0.5284142 -0.1201537 0.3470774 0.5284142 -0.1409607 0.3470774 0.5284142 -0.1678172 0.3470774 0.5284142 -0.1950164 0.3470774 0.5284142 -0.2210581 0.3470774 0.5284142 -0.245636 0.3470774 0.5284142 -0.2686816 0.3470774 0.5284142 -0.2902431 0.3470774 0.5284142 -0.3104189 0.3470774 0.5284142 -0.3293248 0.3470774 0.5284142 -0.3470774 0.3470774 0.5284142 -0.3637862 0.3470774 0.5284142 -0.3795513 0.3470774 0.5284142 -0.3944623 0.3470774 0.5284142 -0.4085988 0.3470774 0.5284142 -0.4220313 0.3470774 0.5284142 -0.4348222 0.3470774 0.5284142 -0.4470264 0.3470774 0.5284142 -0.4586928 0.3470774 0.5284142 -0.4698649 0.3470774 0.5284142 -0.4805811 0.3470774 0.5284142 -0.490876 0.3470774 0.5284142 -0.5007803 0.3470774 0.5284142 -0.510322 0.3470774 0.5284142 -0.5195258 0.3470774 0.5284142 -0.5284142 0.3470774 0.5284142 -0.5370079 0.3470774 0.5284142 -0.5453253 0.3470774 0.5284142 -0.5533834 0.3470774 0.5284142 -0.5611974 0.3470774 0.5284142 -0.5687816 0.3470774 0.5284142 -0.092819 0.3637862 0.5284142 -0.1056428 0.3637862 0.5284142 -0.1201537 0.3637862 0.5284142 -0.1409607 0.3637862 0.5284142 -0.1678172 0.3637862 0.5284142 -0.1950164 0.3637862 0.5284142 -0.2210581 0.3637862 0.5284142 -0.245636 0.3637862 0.5284142 -0.2686816 0.3637862 0.5284142 -0.2902431 0.3637862 0.5284142 -0.3104189 0.3637862 0.5284142 -0.3293248 0.3637862 0.5284142 -0.3470774 0.3637862 0.5284142 -0.3637862 0.3637862 0.5284142 -0.3795513 0.3637862 0.5284142 -0.3944623 0.3637862 0.5284142 -0.4085988 0.3637862 0.5284142 -0.4220313 0.3637862 0.5284142 -0.4348222 0.3637862 0.5284142 -0.4470264 0.3637862 0.5284142 -0.4586928 0.3637862 0.5284142 -0.4698649 0.3637862 0.5284142 -0.4805811 0.3637862 0.5284142 -0.490876 0.3637862 0.5284142 -0.5007803 0.3637862 0.5284142 -0.510322 0.3637862 0.5284142 -0.5195258 0.3637862 0.5284142 -0.5284142 0.3637862 0.5284142 -0.5370079 0.3637862 0.5284142 -0.5453253 0.3637862 0.5284142 -0.5533834 0.3637862 0.5284142 -0.5611974 0.3637862 0.5284142 -0.5687816 0.3637862 0.5284142 -0.092819 0.3795513 0.5284142 -0.1056428 0.3795513 0.5284142 -0.1201537 0.3795513 0.5284142 -0.1409607 0.3795513 0.5284142 -0.1678172 0.3795513 0.5284142 -0.1950164 0.3795513 0.5284142 -0.2210581 0.3795513 0.5284142 -0.245636 0.3795513 0.5284142 -0.2686816 0.3795513 0.5284142 -0.2902431 0.3795513 0.5284142 -0.3104189 0.3795513 0.5284142 -0.3293248 0.3795513 0.5284142 -0.3470774 0.3795513 0.5284142 -0.3637862 0.3795513 0.5284142 -0.3795513 0.3795513 0.5284142 -0.3944623 0.3795513 0.5284142 -0.4085988 0.3795513 0.5284142 -0.4220313 0.3795513 0.5284142 -0.4348222 0.3795513 0.5284142 -0.4470264 0.3795513 0.5284142 -0.4586928 0.3795513 0.5284142 -0.4698649 0.3795513 0.5284142 -0.4805811 0.3795513 0.5284142 -0.490876 0.3795513 0.5284142 -0.5007803 0.3795513 0.5284142 -0.510322 0.3795513 0.5284142 -0.5195258 0.3795513 0.5284142 -0.5284142 0.3795513 0.5284142 -0.5370079 0.3795513 0.5284142 -0.5453253 0.3795513 0.5284142 -0.5533834 0.3795513 0.5284142 -0.5611974 0.3795513 0.5284142 -0.5687816 0.3795513 0.5284142 -0.092819 0.3944623 0.5284142 -0.1056428 0.3944623 0.5284142 -0.1201537 0.3944623 0.5284142 -0.1409607 0.3944623 0.5284142 -0.1678172 0.3944623 0.5284142 -0.1950164 0.3944623 0.5284142 -0.2210581 0.3944623 0.5284142 -0.245636 0.3944623 0.5284142 -0.2686816 0.3944623 0.5284142 -0.2902431 0.3944623 0.5284142 -0.3104189 0.3944623 0.5284142 -0.3293248 0.3944623 0.5284142 -0.3470774 0.3944623 0.5284142 -0.3637862 0.3944623 0.5284142 -0.3795513 0.3944623 0.5284142 -0.3944623 0.3944623 0.5284142 -0.4085988 0.3944623 0.5284142 -0.4220313 0.3944623 0.5284142 -0.4348222 0.3944623 0.5284142 -0.4470264 0.3944623 0.5284142 -0.4586928 0.3944623 0.5284142 -0.4698649 0.3944623 0.5284142 -0.4805811 0.3944623 0.5284142 -0.490876 0.3944623 0.5284142 -0.5007803 0.3944623 0.5284142 -0.510322 0.3944623 0.5284142 -0.5195258 0.3944623 0.5284142 -0.5284142 0.3944623 0.5284142 -0.5370079 0.3944623 0.5284142 -0.5453253 0.3944623 0.5284142 -0.5533834 0.3944623 0.5284142 -0.5611974 0.3944623 0.5284142 -0.5687816 0.3944623 0.5284142 -0.092819 0.4085988 0.5284142 -0.1056428 0.4085988 0.5284142 -0.1201537 0.4085988 0.5284142 -0.1409607 0.4085988 0.5284142 -0.1678172 0.4085988 0.5284142 -0.1950164 0.4085988 0.5284142 -0.2210581 0.4085988 0.5284142 -0.245636 0.4085988 0.5284142 -0.2686816 0.4085988 0.5284142 -0.2902431 0.4085988 0.5284142 -0.3104189 0.4085988 0.5284142 -0.3293248 0.4085988 0.5284142 -0.3470774 0.4085988 0.5284142 -0.3637862 0.4085988 0.5284142 -0.3795513 0.4085988 0.5284142 -0.3944623 0.4085988 0.5284142 -0.4085988 0.4085988 0.5284142 -0.4220313 0.4085988 0.5284142 -0.4348222 0.4085988 0.5284142 -0.4470264 0.4085988 0.5284142 -0.4586928 0.4085988 0.5284142 -0.4698649 0.4085988 0.5284142 -0.4805811 0.4085988 0.5284142 -0.490876 0.4085988 0.5284142 -0.5007803 0.4085988 0.5284142 -0.510322 0.4085988 0.5284142 -0.5195258 0.4085988 0.5284142 -0.5284142 0.4085988 0.5284142 -0.5370079 0.4085988 0.5284142 -0.5453253 0.4085988 0.5284142 -0.5533834 0.4085988 0.5284142 -0.5611974 0.4085988 0.5284142 -0.5687816 0.4085988 0.5284142 -0.092819 0.4220313 0.5284142 -0.1056428 0.4220313 0.5284142 -0.1201537 0.4220313 0.5284142 -0.1409607 0.4220313 0.5284142 -0.1678172 0.4220313 0.5284142 -0.1950164 0.4220313 0.5284142 -0.2210581 0.4220313 0.5284142 -0.245636 0.4220313 0.5284142 -0.2686816 0.4220313 0.5284142 -0.2902431 0.4220313 0.5284142 -0.3104189 0.4220313 0.5284142 -0.3293248 0.4220313 0.5284142 -0.3470774 0.4220313 0.5284142 -0.3637862 0.4220313 0.5284142 -0.3795513 0.4220313 0.5284142 -0.3944623 0.4220313 0.5284142 -0.4085988 0.4220313 0.5284142 -0.4220313 0.4220313 0.5284142 -0.4348222 0.4220313 0.5284142 -0.4470264 0.4220313 0.5284142 -0.4586928 0.4220313 0.5284142 -0.4698649 0.4220313 0.5284142 -0.4805811 0.4220313 0.5284142 -0.490876 0.4220313 0.5284142 -0.5007803 0.4220313 0.5284142 -0.510322 0.4220313 0.5284142 -0.5195258 0.4220313 0.5284142 -0.5284142 0.4220313 0.5284142 -0.5370079 0.4220313 0.5284142 -0.5453253 0.4220313 0.5284142 -0.5533834 0.4220313 0.5284142 -0.5611974 0.4220313 0.5284142 -0.5687816 0.4220313 0.5284142 -0.092819 0.4348222 0.5284142 -0.1056428 0.4348222 0.5284142 -0.1201537 0.4348222 0.5284142 -0.1409607 0.4348222 0.5284142 -0.1678172 0.4348222 0.5284142 -0.1950164 0.4348222 0.5284142 -0.2210581 0.4348222 0.5284142 -0.245636 0.4348222 0.5284142 -0.2686816 0.4348222 0.5284142 -0.2902431 0.4348222 0.5284142 -0.3104189 0.4348222 0.5284142 -0.3293248 0.4348222 0.5284142 -0.3470774 0.4348222 0.5284142 -0.3637862 0.4348222 0.5284142 -0.3795513 0.4348222 0.5284142 -0.3944623 0.4348222 0.5284142 -0.4085988 0.4348222 0.5284142 -0.4220313 0.4348222 0.5284142 -0.4348222 0.4348222 0.5284142 -0.4470264 0.4348222 0.5284142 -0.4586928 0.4348222 0.5284142 -0.4698649 0.4348222 0.5284142 -0.4805811 0.4348222 0.5284142 -0.490876 0.4348222 0.5284142 -0.5007803 0.4348222 0.5284142 -0.510322 0.4348222 0.5284142 -0.5195258 0.4348222 0.5284142 -0.5284142 0.4348222 0.5284142 -0.5370079 0.4348222 0.5284142 -0.5453253 0.4348222 0.5284142 -0.5533834 0.4348222 0.5284142 -0.5611974 0.4348222 0.5284142 -0.5687816 0.4348222 0.5284142 -0.092819 0.4470264 0.5284142 -0.1056428 0.4470264 0.5284142 -0.1201537 0.4470264 0.5284142 -0.1409607 0.4470264 0.5284142 -0.1678172 0.4470264 0.5284142 -0.1950164 0.4470264 0.5284142 -0.2210581 0.4470264 0.5284142 -0.245636 0.4470264 0.5284142 -0.2686816 0.4470264 0.5284142 -0.2902431 0.4470264 0.5284142 -0.3104189 0.4470264 0.5284142 -0.3293248 0.4470264 0.5284142 -0.3470774 0.4470264 0.5284142 -0.3637862 0.4470264 0.5284142 -0.3795513 0.4470264 0.5284142 -0.3944623 0.4470264 0.5284142 -0.4085988 0.4470264 0.5284142 -0.4220313 0.4470264 0.5284142 -0.4348222 0.4470264 0.5284142 -0.4470264 0.4470264 0.5284142 -0.4586928 0.4470264 0.5284142 -0.4698649 0.4470264 0.5284142 -0.4805811 0.4470264 0.5284142 -0.490876 0.4470264 0.5284142 -0.5007803 0.4470264 0.5284142 -0.510322 0.4470264 0.5284142 -0.5195258 0.4470264 0.5284142 -0.5284142 0.4470264 0.5284142 -0.5370079 0.4470264 0.5284142 -0.5453253 0.4470264 0.5284142 -0.5533834 0.4470264 0.5284142 -0.5611974 0.4470264 0.5284142 -0.5687816 0.4470264 0.5284142 -0.092819 0.4586928 0.5284142 -0.1056428 0.4586928 0.5284142 -0.1201537 0.4586928 0.5284142 -0.1409607 0.4586928 0.5284142 -0.1678172 0.4586928 0.5284142 -0.1950164 0.4586928 0.5284142 -0.2210581 0.4586928 0.5284142 -0.245636 0.4586928 0.5284142 -0.2686816 0.4586928 0.5284142 -0.2902431 0.4586928 0.5284142 -0.3104189 0.4586928 0.5284142 -0.3293248 0.4586928 0.5284142 -0.3470774 0.4586928 0.5284142 -0.3637862 0.4586928 0.5284142 -0.3795513 0.4586928 0.5284142 -0.3944623 0.4586928 0.5284142 -0.4085988 0.4586928 0.5284142 -0.4220313 0.4586928 0.5284142 -0.4348222 0.4586928 0.5284142 -0.4470264 0.4586928 0.5284142 -0.4586928 0.4586928 0.5284142 -0.4698649 0.4586928 0.5284142 -0.4805811 0.4586928 0.5284142 -0.490876 0.4586928 0.5284142 -0.5007803 0.4586928 0.5284142 -0.510322 0.4586928 0.5284142 -0.5195258 0.4586928 0.5284142 -0.5284142 0.4586928 0.5284142 -0.5370079 0.4586928 0.5284142 -0.5453253 0.4586928 0.5284142 -0.5533834 0.4586928 0.5284142 -0.5611974 0.4586928 0.5284142 -0.5687816 0.4586928 0.5284142 -0.092819 0.4698649 0.5284142 -0.1056428 0.4698649 0.5284142 -0.1201537 0.4698649 0.5284142 -0.1409607 0.4698649 0.5284142 -0.1678172 0.4698649 0.5284142 -0.1950164 0.4698649 0.5284142 -0.2210581 0.4698649 0.5284142 -0.245636 0.4698649 0.5284142 -0.2686816 0.4698649 0.5284142 -0.2902431 0.4698649 0.5284142 -0.3104189 0.4698649 0.5284142 -0.3293248 0.4698649 0.5284142 -0.3470774 0.4698649 0.5284142 -0.3637862 0.4698649 0.5284142 -0.3795513 0.4698649 0.5284142 -0.3944623 0.4698649 0.5284142 -0.4085988 0.4698649 0.5284142 -0.4220313 0.4698649 0.5284142 -0.4348222 0.4698649 0.5284142 -0.4470264 0.4698649 0.5284142 -0.4586928 0.4698649 0.5284142 -0.4698649 0.4698649 0.5284142 -0.4805811 0.4698649 0.5284142 -0.490876 0.4698649 0.5284142 -0.5007803 0.4698649 0.5284142 -0.510322 0.4698649 0.5284142 -0.5195258 0.4698649 0.5284142 -0.5284142 0.4698649 0.5284142 -0.5370079 0.4698649 0.5284142 -0.5453253 0.4698649 0.5284142 -0.5533834 0.4698649 0.5284142 -0.5611974 0.4698649 0.5284142 -0.5687816 0.4698649 0.5284142 -0.092819 0.4805811 0.5284142 -0.1056428 0.4805811 0.5284142 -0.1201537 0.4805811 0.5284142 -0.1409607 0.4805811 0.5284142 -0.1678172 0.4805811 0.5284142 -0.1950164 0.4805811 0.5284142 -0.2210581 0.4805811 0.5284142 -0.245636 0.4805811 0.5284142 -0.2686816 0.4805811 0.5284142 -0.2902431 0.4805811 0.5284142 -0.3104189 0.4805811 0.5284142 -0.3293248 0.4805811 0.5284142 -0.3470774 0.4805811 0.5284142 -0.3637862 0.4805811 0.5284142 -0.3795513 0.4805811 0.5284142 -0.3944623 0.4805811 0.5284142 -0.4085988 0.4805811 0.5284142 -0.4220313 0.4805811 0.5284142 -0.4348222 0.4805811 0.5284142 -0.4470264 0.4805811 0.5284142 -0.4586928 0.4805811 0.5284142 -0.4698649 0.4805811 0.5284142 -0.4805811 0.4805811 0.5284142 -0.490876 0.4805811 0.5284142 -0.5007803 0.4805811 0.5284142 -0.510322 0.4805811 0.5284142 -0.5195258 0.4805811 0.5284142 -0.5284142 0.4805811 0.5284142 -0.5370079 0.4805811 0.5284142 -0.5453253 0.4805811 0.5284142 -0.5533834 0.4805811 0.5284142 -0.5611974 0.4805811 0.5284142 -0.5687816 0.4805811 0.5284142 -0.092819 0.490876 0.5284142 -0.1056428 0.490876 0.5284142 -0.1201537 0.490876 0.5284142 -0.1409607 0.490876 0.5284142 -0.1678172 0.490876 0.5284142 -0.1950164 0.490876 0.5284142 -0.2210581 0.490876 0.5284142 -0.245636 0.490876 0.5284142 -0.2686816 0.490876 0.5284142 -0.2902431 0.490876 0.5284142 -0.3104189 0.490876 0.5284142 -0.3293248 0.490876 0.5284142 -0.3470774 0.490876 0.5284142 -0.3637862 0.490876 0.5284142 -0.3795513 0.490876 0.5284142 -0.3944623 0.490876 0.5284142 -0.4085988 0.490876 0.5284142 -0.4220313 0.490876 0.5284142 -0.4348222 0.490876 0.5284142 -0.4470264 0.490876 0.5284142 -0.4586928 0.490876 0.5284142 -0.4698649 0.490876 0.5284142 -0.4805811 0.490876 0.5284142 -0.490876 0.490876 0.5284142 -0.5007803 0.490876 0.5284142 -0.510322 0.490876 0.5284142 -0.5195258 0.490876 0.5284142 -0.5284142 0.490876 0.5284142 -0.5370079 0.490876 0.5284142 -0.5453253 0.490876 0.5284142 -0.5533834 0.490876 0.5284142 -0.5611974 0.490876 0.5284142 -0.5687816 0.490876 0.5284142 -0.092819 0.5007803 0.5284142 -0.1056428 0.5007803 0.5284142 -0.1201537 0.5007803 0.5284142 -0.1409607 0.5007803 0.5284142 -0.1678172 0.5007803 0.5284142 -0.1950164 0.5007803 0.5284142 -0.2210581 0.5007803 0.5284142 -0.245636 0.5007803 0.5284142 -0.2686816 0.5007803 0.5284142 -0.2902431 0.5007803 0.5284142 -0.3104189 0.5007803 0.5284142 -0.3293248 0.5007803 0.5284142 -0.3470774 0.5007803 0.5284142 -0.3637862 0.5007803 0.5284142 -0.3795513 0.5007803 0.5284142 -0.3944623 0.5007803 0.5284142 -0.4085988 0.5007803 0.5284142 -0.4220313 0.5007803 0.5284142 -0.4348222 0.5007803 0.5284142 -0.4470264 0.5007803 0.5284142 -0.4586928 0.5007803 0.5284142 -0.4698649 0.5007803 0.5284142 -0.4805811 0.5007803 0.5284142 -0.490876 0.5007803 0.5284142 -0.5007803 0.5007803 0.5284142 -0.510322 0.5007803 0.5284142 -0.5195258 0.5007803 0.5284142 -0.5284142 0.5007803 0.5284142 -0.5370079 0.5007803 0.5284142 -0.5453253 0.5007803 0.5284142 -0.5533834 0.5007803 0.5284142 -0.5611974 0.5007803 0.5284142 -0.5687816 0.5007803 0.5284142 -0.092819 0.510322 0.5284142 -0.1056428 0.510322 0.5284142 -0.1201537 0.510322 0.5284142 -0.1409607 0.510322 0.5284142 -0.1678172 0.510322 0.5284142 -0.1950164 0.510322 0.5284142 -0.2210581 0.510322 0.5284142 -0.245636 0.510322 0.5284142 -0.2686816 0.510322 0.5284142 -0.2902431 0.510322 0.5284142 -0.3104189 0.510322 0.5284142 -0.3293248 0.510322 0.5284142 -0.3470774 0.510322 0.5284142 -0.3637862 0.510322 0.5284142 -0.3795513 0.510322 0.5284142 -0.3944623 0.510322 0.5284142 -0.4085988 0.510322 0.5284142 -0.4220313 0.510322 0.5284142 -0.4348222 0.510322 0.5284142 -0.4470264 0.510322 0.5284142 -0.4586928 0.510322 0.5284142 -0.4698649 0.510322 0.5284142 -0.4805811 0.510322 0.5284142 -0.490876 0.510322 0.5284142 -0.5007803 0.510322 0.5284142 -0.510322 0.510322 0.5284142 -0.5195258 0.510322 0.5284142 -0.5284142 0.510322 0.5284142 -0.5370079 0.510322 0.5284142 -0.5453253 0.510322 0.5284142 -0.5533834 0.510322 0.5284142 -0.5611974 0.510322 0.5284142 -0.5687816 0.510322 0.5284142 -0.092819 0.5195258 0.5284142 -0.1056428 0.5195258 0.5284142 -0.1201537 0.5195258 0.5284142 -0.1409607 0.5195258 0.5284142 -0.1678172 0.5195258 0.5284142 -0.1950164 0.5195258 0.5284142 -0.2210581 0.5195258 0.5284142 -0.245636 0.5195258 0.5284142 -0.2686816 0.5195258 0.5284142 -0.2902431 0.5195258 0.5284142 -0.3104189 0.5195258 0.5284142 -0.3293248 0.5195258 0.5284142 -0.3470774 0.5195258 0.5284142 -0.3637862 0.5195258 0.5284142 -0.3795513 0.5195258 0.5284142 -0.3944623 0.5195258 0.5284142 -0.4085988 0.5195258 0.5284142 -0.4220313 0.5195258 0.5284142 -0.4348222 0.5195258 0.5284142 -0.4470264 0.5195258 0.5284142 -0.4586928 0.5195258 0.5284142 -0.4698649 0.5195258 0.5284142 -0.4805811 0.5195258 0.5284142 -0.490876 0.5195258 0.5284142 -0.5007803 0.5195258 0.5284142 -0.510322 0.5195258 0.5284142 -0.5195258 0.5195258 0.5284142 -0.5284142 0.5195258 0.5284142 -0.5370079 0.5195258 0.5284142 -0.5453253 0.5195258 0.5284142 -0.5533834 0.5195258 0.5284142 -0.5611974 0.5195258 0.5284142 -0.5687816 0.5195258 0.5284142 -0.092819 0.5284142 0.5284142 -0.1056428 0.5284142 0.5284142 -0.1201537 0.5284142 0.5284142 -0.1409607 0.5284142 0.5284142 -0.1678172 0.5284142 0.5284142 -0.1950164 0.5284142 0.5284142 -0.2210581 0.5284142 0.5284142 -0.245636 0.5284142 0.5284142 -0.2686816 0.5284142 0.5284142 -0.2902431 0.5284142 0.5284142 -0.3104189 0.5284142 0.5284142 -0.3293248 0.5284142 0.5284142 -0.3470774 0.5284142 0.5284142 -0.3637862 0.5284142 0.5284142 -0.3795513 0.5284142 0.5284142 -0.3944623 0.5284142 0.5284142 -0.4085988 0.5284142 0.5284142 -0.4220313 0.5284142 0.5284142 -0.4348222 0.5284142 0.5284142 -0.4470264 0.5284142 0.5284142 -0.4586928 0.5284142 0.5284142 -0.4698649 0.5284142 0.5284142 -0.4805811 0.5284142 0.5284142 -0.490876 0.5284142 0.5284142 -0.5007803 0.5284142 0.5284142 -0.510322 0.5284142 0.5284142 -0.5195258 0.5284142 0.5284142 -0.5284142 0.5284142 0.5284142 -0.5370079 0.5284142 0.5284142 -0.5453253 0.5284142 0.5284142 -0.5533834 0.5284142 0.5284142 -0.5611974 0.5284142 0.5284142 -0.5687816 0.5284142 0.5284142 -0.092819 0.5370079 0.5284142 -0.1056428 0.5370079 0.5284142 -0.1201537 0.5370079 0.5284142 -0.1409607 0.5370079 0.5284142 -0.1678172 0.5370079 0.5284142 -0.1950164 0.5370079 0.5284142 -0.2210581 0.5370079 0.5284142 -0.245636 0.5370079 0.5284142 -0.2686816 0.5370079 0.5284142 -0.2902431 0.5370079 0.5284142 -0.3104189 0.5370079 0.5284142 -0.3293248 0.5370079 0.5284142 -0.3470774 0.5370079 0.5284142 -0.3637862 0.5370079 0.5284142 -0.3795513 0.5370079 0.5284142 -0.3944623 0.5370079 0.5284142 -0.4085988 0.5370079 0.5284142 -0.4220313 0.5370079 0.5284142 -0.4348222 0.5370079 0.5284142 -0.4470264 0.5370079 0.5284142 -0.4586928 0.5370079 0.5284142 -0.4698649 0.5370079 0.5284142 -0.4805811 0.5370079 0.5284142 -0.490876 0.5370079 0.5284142 -0.5007803 0.5370079 0.5284142 -0.510322 0.5370079 0.5284142 -0.5195258 0.5370079 0.5284142 -0.5284142 0.5370079 0.5284142 -0.5370079 0.5370079 0.5284142 -0.5453253 0.5370079 0.5284142 -0.5533834 0.5370079 0.5284142 -0.5611974 0.5370079 0.5284142 -0.5687816 0.5370079 0.5284142 -0.092819 0.5453253 0.5284142 -0.1056428 0.5453253 0.5284142 -0.1201537 0.5453253 0.5284142 -0.1409607 0.5453253 0.5284142 -0.1678172 0.5453253 0.5284142 -0.1950164 0.5453253 0.5284142 -0.2210581 0.5453253 0.5284142 -0.245636 0.5453253 0.5284142 -0.2686816 0.5453253 0.5284142 -0.2902431 0.5453253 0.5284142 -0.3104189 0.5453253 0.5284142 -0.3293248 0.5453253 0.5284142 -0.3470774 0.5453253 0.5284142 -0.3637862 0.5453253 0.5284142 -0.3795513 0.5453253 0.5284142 -0.3944623 0.5453253 0.5284142 -0.4085988 0.5453253 0.5284142 -0.4220313 0.5453253 0.5284142 -0.4348222 0.5453253 0.5284142 -0.4470264 0.5453253 0.5284142 -0.4586928 0.5453253 0.5284142 -0.4698649 0.5453253 0.5284142 -0.4805811 0.5453253 0.5284142 -0.490876 0.5453253 0.5284142 -0.5007803 0.5453253 0.5284142 -0.510322 0.5453253 0.5284142 -0.5195258 0.5453253 0.5284142 -0.5284142 0.5453253 0.5284142 -0.5370079 0.5453253 0.5284142 -0.5453253 0.5453253 0.5284142 -0.5533834 0.5453253 0.5284142 -0.5611974 0.5453253 0.5284142 -0.5687816 0.5453253 0.5284142 -0.092819 0.5533834 0.5284142 -0.1056428 0.5533834 0.5284142 -0.1201537 0.5533834 0.5284142 -0.1409607 0.5533834 0.5284142 -0.1678172 0.5533834 0.5284142 -0.1950164 0.5533834 0.5284142 -0.2210581 0.5533834 0.5284142 -0.245636 0.5533834 0.5284142 -0.2686816 0.5533834 0.5284142 -0.2902431 0.5533834 0.5284142 -0.3104189 0.5533834 0.5284142 -0.3293248 0.5533834 0.5284142 -0.3470774 0.5533834 0.5284142 -0.3637862 0.5533834 0.5284142 -0.3795513 0.5533834 0.5284142 -0.3944623 0.5533834 0.5284142 -0.4085988 0.5533834 0.5284142 -0.4220313 0.5533834 0.5284142 -0.4348222 0.5533834 0.5284142 -0.4470264 0.5533834 0.5284142 -0.4586928 0.5533834 0.5284142 -0.4698649 0.5533834 0.5284142 -0.4805811 0.5533834 0.5284142 -0.490876 0.5533834 0.5284142 -0.5007803 0.5533834 0.5284142 -0.510322 0.5533834 0.5284142 -0.5195258 0.5533834 0.5284142 -0.5284142 0.5533834 0.5284142 -0.5370079 0.5533834 0.5284142 -0.5453253 0.5533834 0.5284142 -0.5533834 0.5533834 0.5284142 -0.5611974 0.5533834 0.5284142 -0.5687816 0.5533834 0.5284142 -0.092819 0.5611974 0.5284142 -0.1056428 0.5611974 0.5284142 -0.1201537 0.5611974 0.5284142 -0.1409607 0.5611974 0.5284142 -0.1678172 0.5611974 0.5284142 -0.1950164 0.5611974 0.5284142 -0.2210581 0.5611974 0.5284142 -0.245636 0.5611974 0.5284142 -0.2686816 0.5611974 0.5284142 -0.2902431 0.5611974 0.5284142 -0.3104189 0.5611974 0.5284142 -0.3293248 0.5611974 0.5284142 -0.3470774 0.5611974 0.5284142 -0.3637862 0.5611974 0.5284142 -0.3795513 0.5611974 0.5284142 -0.3944623 0.5611974 0.5284142 -0.4085988 0.5611974 0.5284142 -0.4220313 0.5611974 0.5284142 -0.4348222 0.5611974 0.5284142 -0.4470264 0.5611974 0.5284142 -0.4586928 0.5611974 0.5284142 -0.4698649 0.5611974 0.5284142 -0.4805811 0.5611974 0.5284142 -0.490876 0.5611974 0.5284142 -0.5007803 0.5611974 0.5284142 -0.510322 0.5611974 0.5284142 -0.5195258 0.5611974 0.5284142 -0.5284142 0.5611974 0.5284142 -0.5370079 0.5611974 0.5284142 -0.5453253 0.5611974 0.5284142 -0.5533834 0.5611974 0.5284142 -0.5611974 0.5611974 0.5284142 -0.5687816 0.5611974 0.5284142 -0.092819 0.5687816 0.5284142 -0.1056428 0.5687816 0.5284142 -0.1201537 0.5687816 0.5284142 -0.1409607 0.5687816 0.5284142 -0.1678172 0.5687816 0.5284142 -0.1950164 0.5687816 0.5284142 -0.2210581 0.5687816 0.5284142 -0.245636 0.5687816 0.5284142 -0.2686816 0.5687816 0.5284142 -0.2902431 0.5687816 0.5284142 -0.3104189 0.5687816 0.5284142 -0.3293248 0.5687816 0.5284142 -0.3470774 0.5687816 0.5284142 -0.3637862 0.5687816 0.5284142 -0.3795513 0.5687816 0.5284142 -0.3944623 0.5687816 0.5284142 -0.4085988 0.5687816 0.5284142 -0.4220313 0.5687816 0.5284142 -0.4348222 0.5687816 0.5284142 -0.4470264 0.5687816 0.5284142 -0.4586928 0.5687816 0.5284142 -0.4698649 0.5687816 0.5284142 -0.4805811 0.5687816 0.5284142 -0.490876 0.5687816 0.5284142 -0.5007803 0.5687816 0.5284142 -0.510322 0.5687816 0.5284142 -0.5195258 0.5687816 0.5284142 -0.5284142 0.5687816 0.5284142 -0.5370079 0.5687816 0.5284142 -0.5453253 0.5687816 0.5284142 -0.5533834 0.5687816 0.5284142 -0.5611974 0.5687816 0.5284142 -0.5687816 0.5687816 0.5284142 -0.092819 0.092819 0.5370079 -0.1056428 0.092819 0.5370079 -0.1201537 0.092819 0.5370079 -0.1409607 0.092819 0.5370079 -0.1678172 0.092819 0.5370079 -0.1950164 0.092819 0.5370079 -0.2210581 0.092819 0.5370079 -0.245636 0.092819 0.5370079 -0.2686816 0.092819 0.5370079 -0.2902431 0.092819 0.5370079 -0.3104189 0.092819 0.5370079 -0.3293248 0.092819 0.5370079 -0.3470774 0.092819 0.5370079 -0.3637862 0.092819 0.5370079 -0.3795513 0.092819 0.5370079 -0.3944623 0.092819 0.5370079 -0.4085988 0.092819 0.5370079 -0.4220313 0.092819 0.5370079 -0.4348222 0.092819 0.5370079 -0.4470264 0.092819 0.5370079 -0.4586928 0.092819 0.5370079 -0.4698649 0.092819 0.5370079 -0.4805811 0.092819 0.5370079 -0.490876 0.092819 0.5370079 -0.5007803 0.092819 0.5370079 -0.510322 0.092819 0.5370079 -0.5195258 0.092819 0.5370079 -0.5284142 0.092819 0.5370079 -0.5370079 0.092819 0.5370079 -0.5453253 0.092819 0.5370079 -0.5533834 0.092819 0.5370079 -0.5611974 0.092819 0.5370079 -0.5687816 0.092819 0.5370079 -0.092819 0.1056428 0.5370079 -0.1056428 0.1056428 0.5370079 -0.1201537 0.1056428 0.5370079 -0.1409607 0.1056428 0.5370079 -0.1678172 0.1056428 0.5370079 -0.1950164 0.1056428 0.5370079 -0.2210581 0.1056428 0.5370079 -0.245636 0.1056428 0.5370079 -0.2686816 0.1056428 0.5370079 -0.2902431 0.1056428 0.5370079 -0.3104189 0.1056428 0.5370079 -0.3293248 0.1056428 0.5370079 -0.3470774 0.1056428 0.5370079 -0.3637862 0.1056428 0.5370079 -0.3795513 0.1056428 0.5370079 -0.3944623 0.1056428 0.5370079 -0.4085988 0.1056428 0.5370079 -0.4220313 0.1056428 0.5370079 -0.4348222 0.1056428 0.5370079 -0.4470264 0.1056428 0.5370079 -0.4586928 0.1056428 0.5370079 -0.4698649 0.1056428 0.5370079 -0.4805811 0.1056428 0.5370079 -0.490876 0.1056428 0.5370079 -0.5007803 0.1056428 0.5370079 -0.510322 0.1056428 0.5370079 -0.5195258 0.1056428 0.5370079 -0.5284142 0.1056428 0.5370079 -0.5370079 0.1056428 0.5370079 -0.5453253 0.1056428 0.5370079 -0.5533834 0.1056428 0.5370079 -0.5611974 0.1056428 0.5370079 -0.5687816 0.1056428 0.5370079 -0.092819 0.1201537 0.5370079 -0.1056428 0.1201537 0.5370079 -0.1201537 0.1201537 0.5370079 -0.1409607 0.1201537 0.5370079 -0.1678172 0.1201537 0.5370079 -0.1950164 0.1201537 0.5370079 -0.2210581 0.1201537 0.5370079 -0.245636 0.1201537 0.5370079 -0.2686816 0.1201537 0.5370079 -0.2902431 0.1201537 0.5370079 -0.3104189 0.1201537 0.5370079 -0.3293248 0.1201537 0.5370079 -0.3470774 0.1201537 0.5370079 -0.3637862 0.1201537 0.5370079 -0.3795513 0.1201537 0.5370079 -0.3944623 0.1201537 0.5370079 -0.4085988 0.1201537 0.5370079 -0.4220313 0.1201537 0.5370079 -0.4348222 0.1201537 0.5370079 -0.4470264 0.1201537 0.5370079 -0.4586928 0.1201537 0.5370079 -0.4698649 0.1201537 0.5370079 -0.4805811 0.1201537 0.5370079 -0.490876 0.1201537 0.5370079 -0.5007803 0.1201537 0.5370079 -0.510322 0.1201537 0.5370079 -0.5195258 0.1201537 0.5370079 -0.5284142 0.1201537 0.5370079 -0.5370079 0.1201537 0.5370079 -0.5453253 0.1201537 0.5370079 -0.5533834 0.1201537 0.5370079 -0.5611974 0.1201537 0.5370079 -0.5687816 0.1201537 0.5370079 -0.092819 0.1409607 0.5370079 -0.1056428 0.1409607 0.5370079 -0.1201537 0.1409607 0.5370079 -0.1409607 0.1409607 0.5370079 -0.1678172 0.1409607 0.5370079 -0.1950164 0.1409607 0.5370079 -0.2210581 0.1409607 0.5370079 -0.245636 0.1409607 0.5370079 -0.2686816 0.1409607 0.5370079 -0.2902431 0.1409607 0.5370079 -0.3104189 0.1409607 0.5370079 -0.3293248 0.1409607 0.5370079 -0.3470774 0.1409607 0.5370079 -0.3637862 0.1409607 0.5370079 -0.3795513 0.1409607 0.5370079 -0.3944623 0.1409607 0.5370079 -0.4085988 0.1409607 0.5370079 -0.4220313 0.1409607 0.5370079 -0.4348222 0.1409607 0.5370079 -0.4470264 0.1409607 0.5370079 -0.4586928 0.1409607 0.5370079 -0.4698649 0.1409607 0.5370079 -0.4805811 0.1409607 0.5370079 -0.490876 0.1409607 0.5370079 -0.5007803 0.1409607 0.5370079 -0.510322 0.1409607 0.5370079 -0.5195258 0.1409607 0.5370079 -0.5284142 0.1409607 0.5370079 -0.5370079 0.1409607 0.5370079 -0.5453253 0.1409607 0.5370079 -0.5533834 0.1409607 0.5370079 -0.5611974 0.1409607 0.5370079 -0.5687816 0.1409607 0.5370079 -0.092819 0.1678172 0.5370079 -0.1056428 0.1678172 0.5370079 -0.1201537 0.1678172 0.5370079 -0.1409607 0.1678172 0.5370079 -0.1678172 0.1678172 0.5370079 -0.1950164 0.1678172 0.5370079 -0.2210581 0.1678172 0.5370079 -0.245636 0.1678172 0.5370079 -0.2686816 0.1678172 0.5370079 -0.2902431 0.1678172 0.5370079 -0.3104189 0.1678172 0.5370079 -0.3293248 0.1678172 0.5370079 -0.3470774 0.1678172 0.5370079 -0.3637862 0.1678172 0.5370079 -0.3795513 0.1678172 0.5370079 -0.3944623 0.1678172 0.5370079 -0.4085988 0.1678172 0.5370079 -0.4220313 0.1678172 0.5370079 -0.4348222 0.1678172 0.5370079 -0.4470264 0.1678172 0.5370079 -0.4586928 0.1678172 0.5370079 -0.4698649 0.1678172 0.5370079 -0.4805811 0.1678172 0.5370079 -0.490876 0.1678172 0.5370079 -0.5007803 0.1678172 0.5370079 -0.510322 0.1678172 0.5370079 -0.5195258 0.1678172 0.5370079 -0.5284142 0.1678172 0.5370079 -0.5370079 0.1678172 0.5370079 -0.5453253 0.1678172 0.5370079 -0.5533834 0.1678172 0.5370079 -0.5611974 0.1678172 0.5370079 -0.5687816 0.1678172 0.5370079 -0.092819 0.1950164 0.5370079 -0.1056428 0.1950164 0.5370079 -0.1201537 0.1950164 0.5370079 -0.1409607 0.1950164 0.5370079 -0.1678172 0.1950164 0.5370079 -0.1950164 0.1950164 0.5370079 -0.2210581 0.1950164 0.5370079 -0.245636 0.1950164 0.5370079 -0.2686816 0.1950164 0.5370079 -0.2902431 0.1950164 0.5370079 -0.3104189 0.1950164 0.5370079 -0.3293248 0.1950164 0.5370079 -0.3470774 0.1950164 0.5370079 -0.3637862 0.1950164 0.5370079 -0.3795513 0.1950164 0.5370079 -0.3944623 0.1950164 0.5370079 -0.4085988 0.1950164 0.5370079 -0.4220313 0.1950164 0.5370079 -0.4348222 0.1950164 0.5370079 -0.4470264 0.1950164 0.5370079 -0.4586928 0.1950164 0.5370079 -0.4698649 0.1950164 0.5370079 -0.4805811 0.1950164 0.5370079 -0.490876 0.1950164 0.5370079 -0.5007803 0.1950164 0.5370079 -0.510322 0.1950164 0.5370079 -0.5195258 0.1950164 0.5370079 -0.5284142 0.1950164 0.5370079 -0.5370079 0.1950164 0.5370079 -0.5453253 0.1950164 0.5370079 -0.5533834 0.1950164 0.5370079 -0.5611974 0.1950164 0.5370079 -0.5687816 0.1950164 0.5370079 -0.092819 0.2210581 0.5370079 -0.1056428 0.2210581 0.5370079 -0.1201537 0.2210581 0.5370079 -0.1409607 0.2210581 0.5370079 -0.1678172 0.2210581 0.5370079 -0.1950164 0.2210581 0.5370079 -0.2210581 0.2210581 0.5370079 -0.245636 0.2210581 0.5370079 -0.2686816 0.2210581 0.5370079 -0.2902431 0.2210581 0.5370079 -0.3104189 0.2210581 0.5370079 -0.3293248 0.2210581 0.5370079 -0.3470774 0.2210581 0.5370079 -0.3637862 0.2210581 0.5370079 -0.3795513 0.2210581 0.5370079 -0.3944623 0.2210581 0.5370079 -0.4085988 0.2210581 0.5370079 -0.4220313 0.2210581 0.5370079 -0.4348222 0.2210581 0.5370079 -0.4470264 0.2210581 0.5370079 -0.4586928 0.2210581 0.5370079 -0.4698649 0.2210581 0.5370079 -0.4805811 0.2210581 0.5370079 -0.490876 0.2210581 0.5370079 -0.5007803 0.2210581 0.5370079 -0.510322 0.2210581 0.5370079 -0.5195258 0.2210581 0.5370079 -0.5284142 0.2210581 0.5370079 -0.5370079 0.2210581 0.5370079 -0.5453253 0.2210581 0.5370079 -0.5533834 0.2210581 0.5370079 -0.5611974 0.2210581 0.5370079 -0.5687816 0.2210581 0.5370079 -0.092819 0.245636 0.5370079 -0.1056428 0.245636 0.5370079 -0.1201537 0.245636 0.5370079 -0.1409607 0.245636 0.5370079 -0.1678172 0.245636 0.5370079 -0.1950164 0.245636 0.5370079 -0.2210581 0.245636 0.5370079 -0.245636 0.245636 0.5370079 -0.2686816 0.245636 0.5370079 -0.2902431 0.245636 0.5370079 -0.3104189 0.245636 0.5370079 -0.3293248 0.245636 0.5370079 -0.3470774 0.245636 0.5370079 -0.3637862 0.245636 0.5370079 -0.3795513 0.245636 0.5370079 -0.3944623 0.245636 0.5370079 -0.4085988 0.245636 0.5370079 -0.4220313 0.245636 0.5370079 -0.4348222 0.245636 0.5370079 -0.4470264 0.245636 0.5370079 -0.4586928 0.245636 0.5370079 -0.4698649 0.245636 0.5370079 -0.4805811 0.245636 0.5370079 -0.490876 0.245636 0.5370079 -0.5007803 0.245636 0.5370079 -0.510322 0.245636 0.5370079 -0.5195258 0.245636 0.5370079 -0.5284142 0.245636 0.5370079 -0.5370079 0.245636 0.5370079 -0.5453253 0.245636 0.5370079 -0.5533834 0.245636 0.5370079 -0.5611974 0.245636 0.5370079 -0.5687816 0.245636 0.5370079 -0.092819 0.2686816 0.5370079 -0.1056428 0.2686816 0.5370079 -0.1201537 0.2686816 0.5370079 -0.1409607 0.2686816 0.5370079 -0.1678172 0.2686816 0.5370079 -0.1950164 0.2686816 0.5370079 -0.2210581 0.2686816 0.5370079 -0.245636 0.2686816 0.5370079 -0.2686816 0.2686816 0.5370079 -0.2902431 0.2686816 0.5370079 -0.3104189 0.2686816 0.5370079 -0.3293248 0.2686816 0.5370079 -0.3470774 0.2686816 0.5370079 -0.3637862 0.2686816 0.5370079 -0.3795513 0.2686816 0.5370079 -0.3944623 0.2686816 0.5370079 -0.4085988 0.2686816 0.5370079 -0.4220313 0.2686816 0.5370079 -0.4348222 0.2686816 0.5370079 -0.4470264 0.2686816 0.5370079 -0.4586928 0.2686816 0.5370079 -0.4698649 0.2686816 0.5370079 -0.4805811 0.2686816 0.5370079 -0.490876 0.2686816 0.5370079 -0.5007803 0.2686816 0.5370079 -0.510322 0.2686816 0.5370079 -0.5195258 0.2686816 0.5370079 -0.5284142 0.2686816 0.5370079 -0.5370079 0.2686816 0.5370079 -0.5453253 0.2686816 0.5370079 -0.5533834 0.2686816 0.5370079 -0.5611974 0.2686816 0.5370079 -0.5687816 0.2686816 0.5370079 -0.092819 0.2902431 0.5370079 -0.1056428 0.2902431 0.5370079 -0.1201537 0.2902431 0.5370079 -0.1409607 0.2902431 0.5370079 -0.1678172 0.2902431 0.5370079 -0.1950164 0.2902431 0.5370079 -0.2210581 0.2902431 0.5370079 -0.245636 0.2902431 0.5370079 -0.2686816 0.2902431 0.5370079 -0.2902431 0.2902431 0.5370079 -0.3104189 0.2902431 0.5370079 -0.3293248 0.2902431 0.5370079 -0.3470774 0.2902431 0.5370079 -0.3637862 0.2902431 0.5370079 -0.3795513 0.2902431 0.5370079 -0.3944623 0.2902431 0.5370079 -0.4085988 0.2902431 0.5370079 -0.4220313 0.2902431 0.5370079 -0.4348222 0.2902431 0.5370079 -0.4470264 0.2902431 0.5370079 -0.4586928 0.2902431 0.5370079 -0.4698649 0.2902431 0.5370079 -0.4805811 0.2902431 0.5370079 -0.490876 0.2902431 0.5370079 -0.5007803 0.2902431 0.5370079 -0.510322 0.2902431 0.5370079 -0.5195258 0.2902431 0.5370079 -0.5284142 0.2902431 0.5370079 -0.5370079 0.2902431 0.5370079 -0.5453253 0.2902431 0.5370079 -0.5533834 0.2902431 0.5370079 -0.5611974 0.2902431 0.5370079 -0.5687816 0.2902431 0.5370079 -0.092819 0.3104189 0.5370079 -0.1056428 0.3104189 0.5370079 -0.1201537 0.3104189 0.5370079 -0.1409607 0.3104189 0.5370079 -0.1678172 0.3104189 0.5370079 -0.1950164 0.3104189 0.5370079 -0.2210581 0.3104189 0.5370079 -0.245636 0.3104189 0.5370079 -0.2686816 0.3104189 0.5370079 -0.2902431 0.3104189 0.5370079 -0.3104189 0.3104189 0.5370079 -0.3293248 0.3104189 0.5370079 -0.3470774 0.3104189 0.5370079 -0.3637862 0.3104189 0.5370079 -0.3795513 0.3104189 0.5370079 -0.3944623 0.3104189 0.5370079 -0.4085988 0.3104189 0.5370079 -0.4220313 0.3104189 0.5370079 -0.4348222 0.3104189 0.5370079 -0.4470264 0.3104189 0.5370079 -0.4586928 0.3104189 0.5370079 -0.4698649 0.3104189 0.5370079 -0.4805811 0.3104189 0.5370079 -0.490876 0.3104189 0.5370079 -0.5007803 0.3104189 0.5370079 -0.510322 0.3104189 0.5370079 -0.5195258 0.3104189 0.5370079 -0.5284142 0.3104189 0.5370079 -0.5370079 0.3104189 0.5370079 -0.5453253 0.3104189 0.5370079 -0.5533834 0.3104189 0.5370079 -0.5611974 0.3104189 0.5370079 -0.5687816 0.3104189 0.5370079 -0.092819 0.3293248 0.5370079 -0.1056428 0.3293248 0.5370079 -0.1201537 0.3293248 0.5370079 -0.1409607 0.3293248 0.5370079 -0.1678172 0.3293248 0.5370079 -0.1950164 0.3293248 0.5370079 -0.2210581 0.3293248 0.5370079 -0.245636 0.3293248 0.5370079 -0.2686816 0.3293248 0.5370079 -0.2902431 0.3293248 0.5370079 -0.3104189 0.3293248 0.5370079 -0.3293248 0.3293248 0.5370079 -0.3470774 0.3293248 0.5370079 -0.3637862 0.3293248 0.5370079 -0.3795513 0.3293248 0.5370079 -0.3944623 0.3293248 0.5370079 -0.4085988 0.3293248 0.5370079 -0.4220313 0.3293248 0.5370079 -0.4348222 0.3293248 0.5370079 -0.4470264 0.3293248 0.5370079 -0.4586928 0.3293248 0.5370079 -0.4698649 0.3293248 0.5370079 -0.4805811 0.3293248 0.5370079 -0.490876 0.3293248 0.5370079 -0.5007803 0.3293248 0.5370079 -0.510322 0.3293248 0.5370079 -0.5195258 0.3293248 0.5370079 -0.5284142 0.3293248 0.5370079 -0.5370079 0.3293248 0.5370079 -0.5453253 0.3293248 0.5370079 -0.5533834 0.3293248 0.5370079 -0.5611974 0.3293248 0.5370079 -0.5687816 0.3293248 0.5370079 -0.092819 0.3470774 0.5370079 -0.1056428 0.3470774 0.5370079 -0.1201537 0.3470774 0.5370079 -0.1409607 0.3470774 0.5370079 -0.1678172 0.3470774 0.5370079 -0.1950164 0.3470774 0.5370079 -0.2210581 0.3470774 0.5370079 -0.245636 0.3470774 0.5370079 -0.2686816 0.3470774 0.5370079 -0.2902431 0.3470774 0.5370079 -0.3104189 0.3470774 0.5370079 -0.3293248 0.3470774 0.5370079 -0.3470774 0.3470774 0.5370079 -0.3637862 0.3470774 0.5370079 -0.3795513 0.3470774 0.5370079 -0.3944623 0.3470774 0.5370079 -0.4085988 0.3470774 0.5370079 -0.4220313 0.3470774 0.5370079 -0.4348222 0.3470774 0.5370079 -0.4470264 0.3470774 0.5370079 -0.4586928 0.3470774 0.5370079 -0.4698649 0.3470774 0.5370079 -0.4805811 0.3470774 0.5370079 -0.490876 0.3470774 0.5370079 -0.5007803 0.3470774 0.5370079 -0.510322 0.3470774 0.5370079 -0.5195258 0.3470774 0.5370079 -0.5284142 0.3470774 0.5370079 -0.5370079 0.3470774 0.5370079 -0.5453253 0.3470774 0.5370079 -0.5533834 0.3470774 0.5370079 -0.5611974 0.3470774 0.5370079 -0.5687816 0.3470774 0.5370079 -0.092819 0.3637862 0.5370079 -0.1056428 0.3637862 0.5370079 -0.1201537 0.3637862 0.5370079 -0.1409607 0.3637862 0.5370079 -0.1678172 0.3637862 0.5370079 -0.1950164 0.3637862 0.5370079 -0.2210581 0.3637862 0.5370079 -0.245636 0.3637862 0.5370079 -0.2686816 0.3637862 0.5370079 -0.2902431 0.3637862 0.5370079 -0.3104189 0.3637862 0.5370079 -0.3293248 0.3637862 0.5370079 -0.3470774 0.3637862 0.5370079 -0.3637862 0.3637862 0.5370079 -0.3795513 0.3637862 0.5370079 -0.3944623 0.3637862 0.5370079 -0.4085988 0.3637862 0.5370079 -0.4220313 0.3637862 0.5370079 -0.4348222 0.3637862 0.5370079 -0.4470264 0.3637862 0.5370079 -0.4586928 0.3637862 0.5370079 -0.4698649 0.3637862 0.5370079 -0.4805811 0.3637862 0.5370079 -0.490876 0.3637862 0.5370079 -0.5007803 0.3637862 0.5370079 -0.510322 0.3637862 0.5370079 -0.5195258 0.3637862 0.5370079 -0.5284142 0.3637862 0.5370079 -0.5370079 0.3637862 0.5370079 -0.5453253 0.3637862 0.5370079 -0.5533834 0.3637862 0.5370079 -0.5611974 0.3637862 0.5370079 -0.5687816 0.3637862 0.5370079 -0.092819 0.3795513 0.5370079 -0.1056428 0.3795513 0.5370079 -0.1201537 0.3795513 0.5370079 -0.1409607 0.3795513 0.5370079 -0.1678172 0.3795513 0.5370079 -0.1950164 0.3795513 0.5370079 -0.2210581 0.3795513 0.5370079 -0.245636 0.3795513 0.5370079 -0.2686816 0.3795513 0.5370079 -0.2902431 0.3795513 0.5370079 -0.3104189 0.3795513 0.5370079 -0.3293248 0.3795513 0.5370079 -0.3470774 0.3795513 0.5370079 -0.3637862 0.3795513 0.5370079 -0.3795513 0.3795513 0.5370079 -0.3944623 0.3795513 0.5370079 -0.4085988 0.3795513 0.5370079 -0.4220313 0.3795513 0.5370079 -0.4348222 0.3795513 0.5370079 -0.4470264 0.3795513 0.5370079 -0.4586928 0.3795513 0.5370079 -0.4698649 0.3795513 0.5370079 -0.4805811 0.3795513 0.5370079 -0.490876 0.3795513 0.5370079 -0.5007803 0.3795513 0.5370079 -0.510322 0.3795513 0.5370079 -0.5195258 0.3795513 0.5370079 -0.5284142 0.3795513 0.5370079 -0.5370079 0.3795513 0.5370079 -0.5453253 0.3795513 0.5370079 -0.5533834 0.3795513 0.5370079 -0.5611974 0.3795513 0.5370079 -0.5687816 0.3795513 0.5370079 -0.092819 0.3944623 0.5370079 -0.1056428 0.3944623 0.5370079 -0.1201537 0.3944623 0.5370079 -0.1409607 0.3944623 0.5370079 -0.1678172 0.3944623 0.5370079 -0.1950164 0.3944623 0.5370079 -0.2210581 0.3944623 0.5370079 -0.245636 0.3944623 0.5370079 -0.2686816 0.3944623 0.5370079 -0.2902431 0.3944623 0.5370079 -0.3104189 0.3944623 0.5370079 -0.3293248 0.3944623 0.5370079 -0.3470774 0.3944623 0.5370079 -0.3637862 0.3944623 0.5370079 -0.3795513 0.3944623 0.5370079 -0.3944623 0.3944623 0.5370079 -0.4085988 0.3944623 0.5370079 -0.4220313 0.3944623 0.5370079 -0.4348222 0.3944623 0.5370079 -0.4470264 0.3944623 0.5370079 -0.4586928 0.3944623 0.5370079 -0.4698649 0.3944623 0.5370079 -0.4805811 0.3944623 0.5370079 -0.490876 0.3944623 0.5370079 -0.5007803 0.3944623 0.5370079 -0.510322 0.3944623 0.5370079 -0.5195258 0.3944623 0.5370079 -0.5284142 0.3944623 0.5370079 -0.5370079 0.3944623 0.5370079 -0.5453253 0.3944623 0.5370079 -0.5533834 0.3944623 0.5370079 -0.5611974 0.3944623 0.5370079 -0.5687816 0.3944623 0.5370079 -0.092819 0.4085988 0.5370079 -0.1056428 0.4085988 0.5370079 -0.1201537 0.4085988 0.5370079 -0.1409607 0.4085988 0.5370079 -0.1678172 0.4085988 0.5370079 -0.1950164 0.4085988 0.5370079 -0.2210581 0.4085988 0.5370079 -0.245636 0.4085988 0.5370079 -0.2686816 0.4085988 0.5370079 -0.2902431 0.4085988 0.5370079 -0.3104189 0.4085988 0.5370079 -0.3293248 0.4085988 0.5370079 -0.3470774 0.4085988 0.5370079 -0.3637862 0.4085988 0.5370079 -0.3795513 0.4085988 0.5370079 -0.3944623 0.4085988 0.5370079 -0.4085988 0.4085988 0.5370079 -0.4220313 0.4085988 0.5370079 -0.4348222 0.4085988 0.5370079 -0.4470264 0.4085988 0.5370079 -0.4586928 0.4085988 0.5370079 -0.4698649 0.4085988 0.5370079 -0.4805811 0.4085988 0.5370079 -0.490876 0.4085988 0.5370079 -0.5007803 0.4085988 0.5370079 -0.510322 0.4085988 0.5370079 -0.5195258 0.4085988 0.5370079 -0.5284142 0.4085988 0.5370079 -0.5370079 0.4085988 0.5370079 -0.5453253 0.4085988 0.5370079 -0.5533834 0.4085988 0.5370079 -0.5611974 0.4085988 0.5370079 -0.5687816 0.4085988 0.5370079 -0.092819 0.4220313 0.5370079 -0.1056428 0.4220313 0.5370079 -0.1201537 0.4220313 0.5370079 -0.1409607 0.4220313 0.5370079 -0.1678172 0.4220313 0.5370079 -0.1950164 0.4220313 0.5370079 -0.2210581 0.4220313 0.5370079 -0.245636 0.4220313 0.5370079 -0.2686816 0.4220313 0.5370079 -0.2902431 0.4220313 0.5370079 -0.3104189 0.4220313 0.5370079 -0.3293248 0.4220313 0.5370079 -0.3470774 0.4220313 0.5370079 -0.3637862 0.4220313 0.5370079 -0.3795513 0.4220313 0.5370079 -0.3944623 0.4220313 0.5370079 -0.4085988 0.4220313 0.5370079 -0.4220313 0.4220313 0.5370079 -0.4348222 0.4220313 0.5370079 -0.4470264 0.4220313 0.5370079 -0.4586928 0.4220313 0.5370079 -0.4698649 0.4220313 0.5370079 -0.4805811 0.4220313 0.5370079 -0.490876 0.4220313 0.5370079 -0.5007803 0.4220313 0.5370079 -0.510322 0.4220313 0.5370079 -0.5195258 0.4220313 0.5370079 -0.5284142 0.4220313 0.5370079 -0.5370079 0.4220313 0.5370079 -0.5453253 0.4220313 0.5370079 -0.5533834 0.4220313 0.5370079 -0.5611974 0.4220313 0.5370079 -0.5687816 0.4220313 0.5370079 -0.092819 0.4348222 0.5370079 -0.1056428 0.4348222 0.5370079 -0.1201537 0.4348222 0.5370079 -0.1409607 0.4348222 0.5370079 -0.1678172 0.4348222 0.5370079 -0.1950164 0.4348222 0.5370079 -0.2210581 0.4348222 0.5370079 -0.245636 0.4348222 0.5370079 -0.2686816 0.4348222 0.5370079 -0.2902431 0.4348222 0.5370079 -0.3104189 0.4348222 0.5370079 -0.3293248 0.4348222 0.5370079 -0.3470774 0.4348222 0.5370079 -0.3637862 0.4348222 0.5370079 -0.3795513 0.4348222 0.5370079 -0.3944623 0.4348222 0.5370079 -0.4085988 0.4348222 0.5370079 -0.4220313 0.4348222 0.5370079 -0.4348222 0.4348222 0.5370079 -0.4470264 0.4348222 0.5370079 -0.4586928 0.4348222 0.5370079 -0.4698649 0.4348222 0.5370079 -0.4805811 0.4348222 0.5370079 -0.490876 0.4348222 0.5370079 -0.5007803 0.4348222 0.5370079 -0.510322 0.4348222 0.5370079 -0.5195258 0.4348222 0.5370079 -0.5284142 0.4348222 0.5370079 -0.5370079 0.4348222 0.5370079 -0.5453253 0.4348222 0.5370079 -0.5533834 0.4348222 0.5370079 -0.5611974 0.4348222 0.5370079 -0.5687816 0.4348222 0.5370079 -0.092819 0.4470264 0.5370079 -0.1056428 0.4470264 0.5370079 -0.1201537 0.4470264 0.5370079 -0.1409607 0.4470264 0.5370079 -0.1678172 0.4470264 0.5370079 -0.1950164 0.4470264 0.5370079 -0.2210581 0.4470264 0.5370079 -0.245636 0.4470264 0.5370079 -0.2686816 0.4470264 0.5370079 -0.2902431 0.4470264 0.5370079 -0.3104189 0.4470264 0.5370079 -0.3293248 0.4470264 0.5370079 -0.3470774 0.4470264 0.5370079 -0.3637862 0.4470264 0.5370079 -0.3795513 0.4470264 0.5370079 -0.3944623 0.4470264 0.5370079 -0.4085988 0.4470264 0.5370079 -0.4220313 0.4470264 0.5370079 -0.4348222 0.4470264 0.5370079 -0.4470264 0.4470264 0.5370079 -0.4586928 0.4470264 0.5370079 -0.4698649 0.4470264 0.5370079 -0.4805811 0.4470264 0.5370079 -0.490876 0.4470264 0.5370079 -0.5007803 0.4470264 0.5370079 -0.510322 0.4470264 0.5370079 -0.5195258 0.4470264 0.5370079 -0.5284142 0.4470264 0.5370079 -0.5370079 0.4470264 0.5370079 -0.5453253 0.4470264 0.5370079 -0.5533834 0.4470264 0.5370079 -0.5611974 0.4470264 0.5370079 -0.5687816 0.4470264 0.5370079 -0.092819 0.4586928 0.5370079 -0.1056428 0.4586928 0.5370079 -0.1201537 0.4586928 0.5370079 -0.1409607 0.4586928 0.5370079 -0.1678172 0.4586928 0.5370079 -0.1950164 0.4586928 0.5370079 -0.2210581 0.4586928 0.5370079 -0.245636 0.4586928 0.5370079 -0.2686816 0.4586928 0.5370079 -0.2902431 0.4586928 0.5370079 -0.3104189 0.4586928 0.5370079 -0.3293248 0.4586928 0.5370079 -0.3470774 0.4586928 0.5370079 -0.3637862 0.4586928 0.5370079 -0.3795513 0.4586928 0.5370079 -0.3944623 0.4586928 0.5370079 -0.4085988 0.4586928 0.5370079 -0.4220313 0.4586928 0.5370079 -0.4348222 0.4586928 0.5370079 -0.4470264 0.4586928 0.5370079 -0.4586928 0.4586928 0.5370079 -0.4698649 0.4586928 0.5370079 -0.4805811 0.4586928 0.5370079 -0.490876 0.4586928 0.5370079 -0.5007803 0.4586928 0.5370079 -0.510322 0.4586928 0.5370079 -0.5195258 0.4586928 0.5370079 -0.5284142 0.4586928 0.5370079 -0.5370079 0.4586928 0.5370079 -0.5453253 0.4586928 0.5370079 -0.5533834 0.4586928 0.5370079 -0.5611974 0.4586928 0.5370079 -0.5687816 0.4586928 0.5370079 -0.092819 0.4698649 0.5370079 -0.1056428 0.4698649 0.5370079 -0.1201537 0.4698649 0.5370079 -0.1409607 0.4698649 0.5370079 -0.1678172 0.4698649 0.5370079 -0.1950164 0.4698649 0.5370079 -0.2210581 0.4698649 0.5370079 -0.245636 0.4698649 0.5370079 -0.2686816 0.4698649 0.5370079 -0.2902431 0.4698649 0.5370079 -0.3104189 0.4698649 0.5370079 -0.3293248 0.4698649 0.5370079 -0.3470774 0.4698649 0.5370079 -0.3637862 0.4698649 0.5370079 -0.3795513 0.4698649 0.5370079 -0.3944623 0.4698649 0.5370079 -0.4085988 0.4698649 0.5370079 -0.4220313 0.4698649 0.5370079 -0.4348222 0.4698649 0.5370079 -0.4470264 0.4698649 0.5370079 -0.4586928 0.4698649 0.5370079 -0.4698649 0.4698649 0.5370079 -0.4805811 0.4698649 0.5370079 -0.490876 0.4698649 0.5370079 -0.5007803 0.4698649 0.5370079 -0.510322 0.4698649 0.5370079 -0.5195258 0.4698649 0.5370079 -0.5284142 0.4698649 0.5370079 -0.5370079 0.4698649 0.5370079 -0.5453253 0.4698649 0.5370079 -0.5533834 0.4698649 0.5370079 -0.5611974 0.4698649 0.5370079 -0.5687816 0.4698649 0.5370079 -0.092819 0.4805811 0.5370079 -0.1056428 0.4805811 0.5370079 -0.1201537 0.4805811 0.5370079 -0.1409607 0.4805811 0.5370079 -0.1678172 0.4805811 0.5370079 -0.1950164 0.4805811 0.5370079 -0.2210581 0.4805811 0.5370079 -0.245636 0.4805811 0.5370079 -0.2686816 0.4805811 0.5370079 -0.2902431 0.4805811 0.5370079 -0.3104189 0.4805811 0.5370079 -0.3293248 0.4805811 0.5370079 -0.3470774 0.4805811 0.5370079 -0.3637862 0.4805811 0.5370079 -0.3795513 0.4805811 0.5370079 -0.3944623 0.4805811 0.5370079 -0.4085988 0.4805811 0.5370079 -0.4220313 0.4805811 0.5370079 -0.4348222 0.4805811 0.5370079 -0.4470264 0.4805811 0.5370079 -0.4586928 0.4805811 0.5370079 -0.4698649 0.4805811 0.5370079 -0.4805811 0.4805811 0.5370079 -0.490876 0.4805811 0.5370079 -0.5007803 0.4805811 0.5370079 -0.510322 0.4805811 0.5370079 -0.5195258 0.4805811 0.5370079 -0.5284142 0.4805811 0.5370079 -0.5370079 0.4805811 0.5370079 -0.5453253 0.4805811 0.5370079 -0.5533834 0.4805811 0.5370079 -0.5611974 0.4805811 0.5370079 -0.5687816 0.4805811 0.5370079 -0.092819 0.490876 0.5370079 -0.1056428 0.490876 0.5370079 -0.1201537 0.490876 0.5370079 -0.1409607 0.490876 0.5370079 -0.1678172 0.490876 0.5370079 -0.1950164 0.490876 0.5370079 -0.2210581 0.490876 0.5370079 -0.245636 0.490876 0.5370079 -0.2686816 0.490876 0.5370079 -0.2902431 0.490876 0.5370079 -0.3104189 0.490876 0.5370079 -0.3293248 0.490876 0.5370079 -0.3470774 0.490876 0.5370079 -0.3637862 0.490876 0.5370079 -0.3795513 0.490876 0.5370079 -0.3944623 0.490876 0.5370079 -0.4085988 0.490876 0.5370079 -0.4220313 0.490876 0.5370079 -0.4348222 0.490876 0.5370079 -0.4470264 0.490876 0.5370079 -0.4586928 0.490876 0.5370079 -0.4698649 0.490876 0.5370079 -0.4805811 0.490876 0.5370079 -0.490876 0.490876 0.5370079 -0.5007803 0.490876 0.5370079 -0.510322 0.490876 0.5370079 -0.5195258 0.490876 0.5370079 -0.5284142 0.490876 0.5370079 -0.5370079 0.490876 0.5370079 -0.5453253 0.490876 0.5370079 -0.5533834 0.490876 0.5370079 -0.5611974 0.490876 0.5370079 -0.5687816 0.490876 0.5370079 -0.092819 0.5007803 0.5370079 -0.1056428 0.5007803 0.5370079 -0.1201537 0.5007803 0.5370079 -0.1409607 0.5007803 0.5370079 -0.1678172 0.5007803 0.5370079 -0.1950164 0.5007803 0.5370079 -0.2210581 0.5007803 0.5370079 -0.245636 0.5007803 0.5370079 -0.2686816 0.5007803 0.5370079 -0.2902431 0.5007803 0.5370079 -0.3104189 0.5007803 0.5370079 -0.3293248 0.5007803 0.5370079 -0.3470774 0.5007803 0.5370079 -0.3637862 0.5007803 0.5370079 -0.3795513 0.5007803 0.5370079 -0.3944623 0.5007803 0.5370079 -0.4085988 0.5007803 0.5370079 -0.4220313 0.5007803 0.5370079 -0.4348222 0.5007803 0.5370079 -0.4470264 0.5007803 0.5370079 -0.4586928 0.5007803 0.5370079 -0.4698649 0.5007803 0.5370079 -0.4805811 0.5007803 0.5370079 -0.490876 0.5007803 0.5370079 -0.5007803 0.5007803 0.5370079 -0.510322 0.5007803 0.5370079 -0.5195258 0.5007803 0.5370079 -0.5284142 0.5007803 0.5370079 -0.5370079 0.5007803 0.5370079 -0.5453253 0.5007803 0.5370079 -0.5533834 0.5007803 0.5370079 -0.5611974 0.5007803 0.5370079 -0.5687816 0.5007803 0.5370079 -0.092819 0.510322 0.5370079 -0.1056428 0.510322 0.5370079 -0.1201537 0.510322 0.5370079 -0.1409607 0.510322 0.5370079 -0.1678172 0.510322 0.5370079 -0.1950164 0.510322 0.5370079 -0.2210581 0.510322 0.5370079 -0.245636 0.510322 0.5370079 -0.2686816 0.510322 0.5370079 -0.2902431 0.510322 0.5370079 -0.3104189 0.510322 0.5370079 -0.3293248 0.510322 0.5370079 -0.3470774 0.510322 0.5370079 -0.3637862 0.510322 0.5370079 -0.3795513 0.510322 0.5370079 -0.3944623 0.510322 0.5370079 -0.4085988 0.510322 0.5370079 -0.4220313 0.510322 0.5370079 -0.4348222 0.510322 0.5370079 -0.4470264 0.510322 0.5370079 -0.4586928 0.510322 0.5370079 -0.4698649 0.510322 0.5370079 -0.4805811 0.510322 0.5370079 -0.490876 0.510322 0.5370079 -0.5007803 0.510322 0.5370079 -0.510322 0.510322 0.5370079 -0.5195258 0.510322 0.5370079 -0.5284142 0.510322 0.5370079 -0.5370079 0.510322 0.5370079 -0.5453253 0.510322 0.5370079 -0.5533834 0.510322 0.5370079 -0.5611974 0.510322 0.5370079 -0.5687816 0.510322 0.5370079 -0.092819 0.5195258 0.5370079 -0.1056428 0.5195258 0.5370079 -0.1201537 0.5195258 0.5370079 -0.1409607 0.5195258 0.5370079 -0.1678172 0.5195258 0.5370079 -0.1950164 0.5195258 0.5370079 -0.2210581 0.5195258 0.5370079 -0.245636 0.5195258 0.5370079 -0.2686816 0.5195258 0.5370079 -0.2902431 0.5195258 0.5370079 -0.3104189 0.5195258 0.5370079 -0.3293248 0.5195258 0.5370079 -0.3470774 0.5195258 0.5370079 -0.3637862 0.5195258 0.5370079 -0.3795513 0.5195258 0.5370079 -0.3944623 0.5195258 0.5370079 -0.4085988 0.5195258 0.5370079 -0.4220313 0.5195258 0.5370079 -0.4348222 0.5195258 0.5370079 -0.4470264 0.5195258 0.5370079 -0.4586928 0.5195258 0.5370079 -0.4698649 0.5195258 0.5370079 -0.4805811 0.5195258 0.5370079 -0.490876 0.5195258 0.5370079 -0.5007803 0.5195258 0.5370079 -0.510322 0.5195258 0.5370079 -0.5195258 0.5195258 0.5370079 -0.5284142 0.5195258 0.5370079 -0.5370079 0.5195258 0.5370079 -0.5453253 0.5195258 0.5370079 -0.5533834 0.5195258 0.5370079 -0.5611974 0.5195258 0.5370079 -0.5687816 0.5195258 0.5370079 -0.092819 0.5284142 0.5370079 -0.1056428 0.5284142 0.5370079 -0.1201537 0.5284142 0.5370079 -0.1409607 0.5284142 0.5370079 -0.1678172 0.5284142 0.5370079 -0.1950164 0.5284142 0.5370079 -0.2210581 0.5284142 0.5370079 -0.245636 0.5284142 0.5370079 -0.2686816 0.5284142 0.5370079 -0.2902431 0.5284142 0.5370079 -0.3104189 0.5284142 0.5370079 -0.3293248 0.5284142 0.5370079 -0.3470774 0.5284142 0.5370079 -0.3637862 0.5284142 0.5370079 -0.3795513 0.5284142 0.5370079 -0.3944623 0.5284142 0.5370079 -0.4085988 0.5284142 0.5370079 -0.4220313 0.5284142 0.5370079 -0.4348222 0.5284142 0.5370079 -0.4470264 0.5284142 0.5370079 -0.4586928 0.5284142 0.5370079 -0.4698649 0.5284142 0.5370079 -0.4805811 0.5284142 0.5370079 -0.490876 0.5284142 0.5370079 -0.5007803 0.5284142 0.5370079 -0.510322 0.5284142 0.5370079 -0.5195258 0.5284142 0.5370079 -0.5284142 0.5284142 0.5370079 -0.5370079 0.5284142 0.5370079 -0.5453253 0.5284142 0.5370079 -0.5533834 0.5284142 0.5370079 -0.5611974 0.5284142 0.5370079 -0.5687816 0.5284142 0.5370079 -0.092819 0.5370079 0.5370079 -0.1056428 0.5370079 0.5370079 -0.1201537 0.5370079 0.5370079 -0.1409607 0.5370079 0.5370079 -0.1678172 0.5370079 0.5370079 -0.1950164 0.5370079 0.5370079 -0.2210581 0.5370079 0.5370079 -0.245636 0.5370079 0.5370079 -0.2686816 0.5370079 0.5370079 -0.2902431 0.5370079 0.5370079 -0.3104189 0.5370079 0.5370079 -0.3293248 0.5370079 0.5370079 -0.3470774 0.5370079 0.5370079 -0.3637862 0.5370079 0.5370079 -0.3795513 0.5370079 0.5370079 -0.3944623 0.5370079 0.5370079 -0.4085988 0.5370079 0.5370079 -0.4220313 0.5370079 0.5370079 -0.4348222 0.5370079 0.5370079 -0.4470264 0.5370079 0.5370079 -0.4586928 0.5370079 0.5370079 -0.4698649 0.5370079 0.5370079 -0.4805811 0.5370079 0.5370079 -0.490876 0.5370079 0.5370079 -0.5007803 0.5370079 0.5370079 -0.510322 0.5370079 0.5370079 -0.5195258 0.5370079 0.5370079 -0.5284142 0.5370079 0.5370079 -0.5370079 0.5370079 0.5370079 -0.5453253 0.5370079 0.5370079 -0.5533834 0.5370079 0.5370079 -0.5611974 0.5370079 0.5370079 -0.5687816 0.5370079 0.5370079 -0.092819 0.5453253 0.5370079 -0.1056428 0.5453253 0.5370079 -0.1201537 0.5453253 0.5370079 -0.1409607 0.5453253 0.5370079 -0.1678172 0.5453253 0.5370079 -0.1950164 0.5453253 0.5370079 -0.2210581 0.5453253 0.5370079 -0.245636 0.5453253 0.5370079 -0.2686816 0.5453253 0.5370079 -0.2902431 0.5453253 0.5370079 -0.3104189 0.5453253 0.5370079 -0.3293248 0.5453253 0.5370079 -0.3470774 0.5453253 0.5370079 -0.3637862 0.5453253 0.5370079 -0.3795513 0.5453253 0.5370079 -0.3944623 0.5453253 0.5370079 -0.4085988 0.5453253 0.5370079 -0.4220313 0.5453253 0.5370079 -0.4348222 0.5453253 0.5370079 -0.4470264 0.5453253 0.5370079 -0.4586928 0.5453253 0.5370079 -0.4698649 0.5453253 0.5370079 -0.4805811 0.5453253 0.5370079 -0.490876 0.5453253 0.5370079 -0.5007803 0.5453253 0.5370079 -0.510322 0.5453253 0.5370079 -0.5195258 0.5453253 0.5370079 -0.5284142 0.5453253 0.5370079 -0.5370079 0.5453253 0.5370079 -0.5453253 0.5453253 0.5370079 -0.5533834 0.5453253 0.5370079 -0.5611974 0.5453253 0.5370079 -0.5687816 0.5453253 0.5370079 -0.092819 0.5533834 0.5370079 -0.1056428 0.5533834 0.5370079 -0.1201537 0.5533834 0.5370079 -0.1409607 0.5533834 0.5370079 -0.1678172 0.5533834 0.5370079 -0.1950164 0.5533834 0.5370079 -0.2210581 0.5533834 0.5370079 -0.245636 0.5533834 0.5370079 -0.2686816 0.5533834 0.5370079 -0.2902431 0.5533834 0.5370079 -0.3104189 0.5533834 0.5370079 -0.3293248 0.5533834 0.5370079 -0.3470774 0.5533834 0.5370079 -0.3637862 0.5533834 0.5370079 -0.3795513 0.5533834 0.5370079 -0.3944623 0.5533834 0.5370079 -0.4085988 0.5533834 0.5370079 -0.4220313 0.5533834 0.5370079 -0.4348222 0.5533834 0.5370079 -0.4470264 0.5533834 0.5370079 -0.4586928 0.5533834 0.5370079 -0.4698649 0.5533834 0.5370079 -0.4805811 0.5533834 0.5370079 -0.490876 0.5533834 0.5370079 -0.5007803 0.5533834 0.5370079 -0.510322 0.5533834 0.5370079 -0.5195258 0.5533834 0.5370079 -0.5284142 0.5533834 0.5370079 -0.5370079 0.5533834 0.5370079 -0.5453253 0.5533834 0.5370079 -0.5533834 0.5533834 0.5370079 -0.5611974 0.5533834 0.5370079 -0.5687816 0.5533834 0.5370079 -0.092819 0.5611974 0.5370079 -0.1056428 0.5611974 0.5370079 -0.1201537 0.5611974 0.5370079 -0.1409607 0.5611974 0.5370079 -0.1678172 0.5611974 0.5370079 -0.1950164 0.5611974 0.5370079 -0.2210581 0.5611974 0.5370079 -0.245636 0.5611974 0.5370079 -0.2686816 0.5611974 0.5370079 -0.2902431 0.5611974 0.5370079 -0.3104189 0.5611974 0.5370079 -0.3293248 0.5611974 0.5370079 -0.3470774 0.5611974 0.5370079 -0.3637862 0.5611974 0.5370079 -0.3795513 0.5611974 0.5370079 -0.3944623 0.5611974 0.5370079 -0.4085988 0.5611974 0.5370079 -0.4220313 0.5611974 0.5370079 -0.4348222 0.5611974 0.5370079 -0.4470264 0.5611974 0.5370079 -0.4586928 0.5611974 0.5370079 -0.4698649 0.5611974 0.5370079 -0.4805811 0.5611974 0.5370079 -0.490876 0.5611974 0.5370079 -0.5007803 0.5611974 0.5370079 -0.510322 0.5611974 0.5370079 -0.5195258 0.5611974 0.5370079 -0.5284142 0.5611974 0.5370079 -0.5370079 0.5611974 0.5370079 -0.5453253 0.5611974 0.5370079 -0.5533834 0.5611974 0.5370079 -0.5611974 0.5611974 0.5370079 -0.5687816 0.5611974 0.5370079 -0.092819 0.5687816 0.5370079 -0.1056428 0.5687816 0.5370079 -0.1201537 0.5687816 0.5370079 -0.1409607 0.5687816 0.5370079 -0.1678172 0.5687816 0.5370079 -0.1950164 0.5687816 0.5370079 -0.2210581 0.5687816 0.5370079 -0.245636 0.5687816 0.5370079 -0.2686816 0.5687816 0.5370079 -0.2902431 0.5687816 0.5370079 -0.3104189 0.5687816 0.5370079 -0.3293248 0.5687816 0.5370079 -0.3470774 0.5687816 0.5370079 -0.3637862 0.5687816 0.5370079 -0.3795513 0.5687816 0.5370079 -0.3944623 0.5687816 0.5370079 -0.4085988 0.5687816 0.5370079 -0.4220313 0.5687816 0.5370079 -0.4348222 0.5687816 0.5370079 -0.4470264 0.5687816 0.5370079 -0.4586928 0.5687816 0.5370079 -0.4698649 0.5687816 0.5370079 -0.4805811 0.5687816 0.5370079 -0.490876 0.5687816 0.5370079 -0.5007803 0.5687816 0.5370079 -0.510322 0.5687816 0.5370079 -0.5195258 0.5687816 0.5370079 -0.5284142 0.5687816 0.5370079 -0.5370079 0.5687816 0.5370079 -0.5453253 0.5687816 0.5370079 -0.5533834 0.5687816 0.5370079 -0.5611974 0.5687816 0.5370079 -0.5687816 0.5687816 0.5370079 -0.092819 0.092819 0.5453253 -0.1056428 0.092819 0.5453253 -0.1201537 0.092819 0.5453253 -0.1409607 0.092819 0.5453253 -0.1678172 0.092819 0.5453253 -0.1950164 0.092819 0.5453253 -0.2210581 0.092819 0.5453253 -0.245636 0.092819 0.5453253 -0.2686816 0.092819 0.5453253 -0.2902431 0.092819 0.5453253 -0.3104189 0.092819 0.5453253 -0.3293248 0.092819 0.5453253 -0.3470774 0.092819 0.5453253 -0.3637862 0.092819 0.5453253 -0.3795513 0.092819 0.5453253 -0.3944623 0.092819 0.5453253 -0.4085988 0.092819 0.5453253 -0.4220313 0.092819 0.5453253 -0.4348222 0.092819 0.5453253 -0.4470264 0.092819 0.5453253 -0.4586928 0.092819 0.5453253 -0.4698649 0.092819 0.5453253 -0.4805811 0.092819 0.5453253 -0.490876 0.092819 0.5453253 -0.5007803 0.092819 0.5453253 -0.510322 0.092819 0.5453253 -0.5195258 0.092819 0.5453253 -0.5284142 0.092819 0.5453253 -0.5370079 0.092819 0.5453253 -0.5453253 0.092819 0.5453253 -0.5533834 0.092819 0.5453253 -0.5611974 0.092819 0.5453253 -0.5687816 0.092819 0.5453253 -0.092819 0.1056428 0.5453253 -0.1056428 0.1056428 0.5453253 -0.1201537 0.1056428 0.5453253 -0.1409607 0.1056428 0.5453253 -0.1678172 0.1056428 0.5453253 -0.1950164 0.1056428 0.5453253 -0.2210581 0.1056428 0.5453253 -0.245636 0.1056428 0.5453253 -0.2686816 0.1056428 0.5453253 -0.2902431 0.1056428 0.5453253 -0.3104189 0.1056428 0.5453253 -0.3293248 0.1056428 0.5453253 -0.3470774 0.1056428 0.5453253 -0.3637862 0.1056428 0.5453253 -0.3795513 0.1056428 0.5453253 -0.3944623 0.1056428 0.5453253 -0.4085988 0.1056428 0.5453253 -0.4220313 0.1056428 0.5453253 -0.4348222 0.1056428 0.5453253 -0.4470264 0.1056428 0.5453253 -0.4586928 0.1056428 0.5453253 -0.4698649 0.1056428 0.5453253 -0.4805811 0.1056428 0.5453253 -0.490876 0.1056428 0.5453253 -0.5007803 0.1056428 0.5453253 -0.510322 0.1056428 0.5453253 -0.5195258 0.1056428 0.5453253 -0.5284142 0.1056428 0.5453253 -0.5370079 0.1056428 0.5453253 -0.5453253 0.1056428 0.5453253 -0.5533834 0.1056428 0.5453253 -0.5611974 0.1056428 0.5453253 -0.5687816 0.1056428 0.5453253 -0.092819 0.1201537 0.5453253 -0.1056428 0.1201537 0.5453253 -0.1201537 0.1201537 0.5453253 -0.1409607 0.1201537 0.5453253 -0.1678172 0.1201537 0.5453253 -0.1950164 0.1201537 0.5453253 -0.2210581 0.1201537 0.5453253 -0.245636 0.1201537 0.5453253 -0.2686816 0.1201537 0.5453253 -0.2902431 0.1201537 0.5453253 -0.3104189 0.1201537 0.5453253 -0.3293248 0.1201537 0.5453253 -0.3470774 0.1201537 0.5453253 -0.3637862 0.1201537 0.5453253 -0.3795513 0.1201537 0.5453253 -0.3944623 0.1201537 0.5453253 -0.4085988 0.1201537 0.5453253 -0.4220313 0.1201537 0.5453253 -0.4348222 0.1201537 0.5453253 -0.4470264 0.1201537 0.5453253 -0.4586928 0.1201537 0.5453253 -0.4698649 0.1201537 0.5453253 -0.4805811 0.1201537 0.5453253 -0.490876 0.1201537 0.5453253 -0.5007803 0.1201537 0.5453253 -0.510322 0.1201537 0.5453253 -0.5195258 0.1201537 0.5453253 -0.5284142 0.1201537 0.5453253 -0.5370079 0.1201537 0.5453253 -0.5453253 0.1201537 0.5453253 -0.5533834 0.1201537 0.5453253 -0.5611974 0.1201537 0.5453253 -0.5687816 0.1201537 0.5453253 -0.092819 0.1409607 0.5453253 -0.1056428 0.1409607 0.5453253 -0.1201537 0.1409607 0.5453253 -0.1409607 0.1409607 0.5453253 -0.1678172 0.1409607 0.5453253 -0.1950164 0.1409607 0.5453253 -0.2210581 0.1409607 0.5453253 -0.245636 0.1409607 0.5453253 -0.2686816 0.1409607 0.5453253 -0.2902431 0.1409607 0.5453253 -0.3104189 0.1409607 0.5453253 -0.3293248 0.1409607 0.5453253 -0.3470774 0.1409607 0.5453253 -0.3637862 0.1409607 0.5453253 -0.3795513 0.1409607 0.5453253 -0.3944623 0.1409607 0.5453253 -0.4085988 0.1409607 0.5453253 -0.4220313 0.1409607 0.5453253 -0.4348222 0.1409607 0.5453253 -0.4470264 0.1409607 0.5453253 -0.4586928 0.1409607 0.5453253 -0.4698649 0.1409607 0.5453253 -0.4805811 0.1409607 0.5453253 -0.490876 0.1409607 0.5453253 -0.5007803 0.1409607 0.5453253 -0.510322 0.1409607 0.5453253 -0.5195258 0.1409607 0.5453253 -0.5284142 0.1409607 0.5453253 -0.5370079 0.1409607 0.5453253 -0.5453253 0.1409607 0.5453253 -0.5533834 0.1409607 0.5453253 -0.5611974 0.1409607 0.5453253 -0.5687816 0.1409607 0.5453253 -0.092819 0.1678172 0.5453253 -0.1056428 0.1678172 0.5453253 -0.1201537 0.1678172 0.5453253 -0.1409607 0.1678172 0.5453253 -0.1678172 0.1678172 0.5453253 -0.1950164 0.1678172 0.5453253 -0.2210581 0.1678172 0.5453253 -0.245636 0.1678172 0.5453253 -0.2686816 0.1678172 0.5453253 -0.2902431 0.1678172 0.5453253 -0.3104189 0.1678172 0.5453253 -0.3293248 0.1678172 0.5453253 -0.3470774 0.1678172 0.5453253 -0.3637862 0.1678172 0.5453253 -0.3795513 0.1678172 0.5453253 -0.3944623 0.1678172 0.5453253 -0.4085988 0.1678172 0.5453253 -0.4220313 0.1678172 0.5453253 -0.4348222 0.1678172 0.5453253 -0.4470264 0.1678172 0.5453253 -0.4586928 0.1678172 0.5453253 -0.4698649 0.1678172 0.5453253 -0.4805811 0.1678172 0.5453253 -0.490876 0.1678172 0.5453253 -0.5007803 0.1678172 0.5453253 -0.510322 0.1678172 0.5453253 -0.5195258 0.1678172 0.5453253 -0.5284142 0.1678172 0.5453253 -0.5370079 0.1678172 0.5453253 -0.5453253 0.1678172 0.5453253 -0.5533834 0.1678172 0.5453253 -0.5611974 0.1678172 0.5453253 -0.5687816 0.1678172 0.5453253 -0.092819 0.1950164 0.5453253 -0.1056428 0.1950164 0.5453253 -0.1201537 0.1950164 0.5453253 -0.1409607 0.1950164 0.5453253 -0.1678172 0.1950164 0.5453253 -0.1950164 0.1950164 0.5453253 -0.2210581 0.1950164 0.5453253 -0.245636 0.1950164 0.5453253 -0.2686816 0.1950164 0.5453253 -0.2902431 0.1950164 0.5453253 -0.3104189 0.1950164 0.5453253 -0.3293248 0.1950164 0.5453253 -0.3470774 0.1950164 0.5453253 -0.3637862 0.1950164 0.5453253 -0.3795513 0.1950164 0.5453253 -0.3944623 0.1950164 0.5453253 -0.4085988 0.1950164 0.5453253 -0.4220313 0.1950164 0.5453253 -0.4348222 0.1950164 0.5453253 -0.4470264 0.1950164 0.5453253 -0.4586928 0.1950164 0.5453253 -0.4698649 0.1950164 0.5453253 -0.4805811 0.1950164 0.5453253 -0.490876 0.1950164 0.5453253 -0.5007803 0.1950164 0.5453253 -0.510322 0.1950164 0.5453253 -0.5195258 0.1950164 0.5453253 -0.5284142 0.1950164 0.5453253 -0.5370079 0.1950164 0.5453253 -0.5453253 0.1950164 0.5453253 -0.5533834 0.1950164 0.5453253 -0.5611974 0.1950164 0.5453253 -0.5687816 0.1950164 0.5453253 -0.092819 0.2210581 0.5453253 -0.1056428 0.2210581 0.5453253 -0.1201537 0.2210581 0.5453253 -0.1409607 0.2210581 0.5453253 -0.1678172 0.2210581 0.5453253 -0.1950164 0.2210581 0.5453253 -0.2210581 0.2210581 0.5453253 -0.245636 0.2210581 0.5453253 -0.2686816 0.2210581 0.5453253 -0.2902431 0.2210581 0.5453253 -0.3104189 0.2210581 0.5453253 -0.3293248 0.2210581 0.5453253 -0.3470774 0.2210581 0.5453253 -0.3637862 0.2210581 0.5453253 -0.3795513 0.2210581 0.5453253 -0.3944623 0.2210581 0.5453253 -0.4085988 0.2210581 0.5453253 -0.4220313 0.2210581 0.5453253 -0.4348222 0.2210581 0.5453253 -0.4470264 0.2210581 0.5453253 -0.4586928 0.2210581 0.5453253 -0.4698649 0.2210581 0.5453253 -0.4805811 0.2210581 0.5453253 -0.490876 0.2210581 0.5453253 -0.5007803 0.2210581 0.5453253 -0.510322 0.2210581 0.5453253 -0.5195258 0.2210581 0.5453253 -0.5284142 0.2210581 0.5453253 -0.5370079 0.2210581 0.5453253 -0.5453253 0.2210581 0.5453253 -0.5533834 0.2210581 0.5453253 -0.5611974 0.2210581 0.5453253 -0.5687816 0.2210581 0.5453253 -0.092819 0.245636 0.5453253 -0.1056428 0.245636 0.5453253 -0.1201537 0.245636 0.5453253 -0.1409607 0.245636 0.5453253 -0.1678172 0.245636 0.5453253 -0.1950164 0.245636 0.5453253 -0.2210581 0.245636 0.5453253 -0.245636 0.245636 0.5453253 -0.2686816 0.245636 0.5453253 -0.2902431 0.245636 0.5453253 -0.3104189 0.245636 0.5453253 -0.3293248 0.245636 0.5453253 -0.3470774 0.245636 0.5453253 -0.3637862 0.245636 0.5453253 -0.3795513 0.245636 0.5453253 -0.3944623 0.245636 0.5453253 -0.4085988 0.245636 0.5453253 -0.4220313 0.245636 0.5453253 -0.4348222 0.245636 0.5453253 -0.4470264 0.245636 0.5453253 -0.4586928 0.245636 0.5453253 -0.4698649 0.245636 0.5453253 -0.4805811 0.245636 0.5453253 -0.490876 0.245636 0.5453253 -0.5007803 0.245636 0.5453253 -0.510322 0.245636 0.5453253 -0.5195258 0.245636 0.5453253 -0.5284142 0.245636 0.5453253 -0.5370079 0.245636 0.5453253 -0.5453253 0.245636 0.5453253 -0.5533834 0.245636 0.5453253 -0.5611974 0.245636 0.5453253 -0.5687816 0.245636 0.5453253 -0.092819 0.2686816 0.5453253 -0.1056428 0.2686816 0.5453253 -0.1201537 0.2686816 0.5453253 -0.1409607 0.2686816 0.5453253 -0.1678172 0.2686816 0.5453253 -0.1950164 0.2686816 0.5453253 -0.2210581 0.2686816 0.5453253 -0.245636 0.2686816 0.5453253 -0.2686816 0.2686816 0.5453253 -0.2902431 0.2686816 0.5453253 -0.3104189 0.2686816 0.5453253 -0.3293248 0.2686816 0.5453253 -0.3470774 0.2686816 0.5453253 -0.3637862 0.2686816 0.5453253 -0.3795513 0.2686816 0.5453253 -0.3944623 0.2686816 0.5453253 -0.4085988 0.2686816 0.5453253 -0.4220313 0.2686816 0.5453253 -0.4348222 0.2686816 0.5453253 -0.4470264 0.2686816 0.5453253 -0.4586928 0.2686816 0.5453253 -0.4698649 0.2686816 0.5453253 -0.4805811 0.2686816 0.5453253 -0.490876 0.2686816 0.5453253 -0.5007803 0.2686816 0.5453253 -0.510322 0.2686816 0.5453253 -0.5195258 0.2686816 0.5453253 -0.5284142 0.2686816 0.5453253 -0.5370079 0.2686816 0.5453253 -0.5453253 0.2686816 0.5453253 -0.5533834 0.2686816 0.5453253 -0.5611974 0.2686816 0.5453253 -0.5687816 0.2686816 0.5453253 -0.092819 0.2902431 0.5453253 -0.1056428 0.2902431 0.5453253 -0.1201537 0.2902431 0.5453253 -0.1409607 0.2902431 0.5453253 -0.1678172 0.2902431 0.5453253 -0.1950164 0.2902431 0.5453253 -0.2210581 0.2902431 0.5453253 -0.245636 0.2902431 0.5453253 -0.2686816 0.2902431 0.5453253 -0.2902431 0.2902431 0.5453253 -0.3104189 0.2902431 0.5453253 -0.3293248 0.2902431 0.5453253 -0.3470774 0.2902431 0.5453253 -0.3637862 0.2902431 0.5453253 -0.3795513 0.2902431 0.5453253 -0.3944623 0.2902431 0.5453253 -0.4085988 0.2902431 0.5453253 -0.4220313 0.2902431 0.5453253 -0.4348222 0.2902431 0.5453253 -0.4470264 0.2902431 0.5453253 -0.4586928 0.2902431 0.5453253 -0.4698649 0.2902431 0.5453253 -0.4805811 0.2902431 0.5453253 -0.490876 0.2902431 0.5453253 -0.5007803 0.2902431 0.5453253 -0.510322 0.2902431 0.5453253 -0.5195258 0.2902431 0.5453253 -0.5284142 0.2902431 0.5453253 -0.5370079 0.2902431 0.5453253 -0.5453253 0.2902431 0.5453253 -0.5533834 0.2902431 0.5453253 -0.5611974 0.2902431 0.5453253 -0.5687816 0.2902431 0.5453253 -0.092819 0.3104189 0.5453253 -0.1056428 0.3104189 0.5453253 -0.1201537 0.3104189 0.5453253 -0.1409607 0.3104189 0.5453253 -0.1678172 0.3104189 0.5453253 -0.1950164 0.3104189 0.5453253 -0.2210581 0.3104189 0.5453253 -0.245636 0.3104189 0.5453253 -0.2686816 0.3104189 0.5453253 -0.2902431 0.3104189 0.5453253 -0.3104189 0.3104189 0.5453253 -0.3293248 0.3104189 0.5453253 -0.3470774 0.3104189 0.5453253 -0.3637862 0.3104189 0.5453253 -0.3795513 0.3104189 0.5453253 -0.3944623 0.3104189 0.5453253 -0.4085988 0.3104189 0.5453253 -0.4220313 0.3104189 0.5453253 -0.4348222 0.3104189 0.5453253 -0.4470264 0.3104189 0.5453253 -0.4586928 0.3104189 0.5453253 -0.4698649 0.3104189 0.5453253 -0.4805811 0.3104189 0.5453253 -0.490876 0.3104189 0.5453253 -0.5007803 0.3104189 0.5453253 -0.510322 0.3104189 0.5453253 -0.5195258 0.3104189 0.5453253 -0.5284142 0.3104189 0.5453253 -0.5370079 0.3104189 0.5453253 -0.5453253 0.3104189 0.5453253 -0.5533834 0.3104189 0.5453253 -0.5611974 0.3104189 0.5453253 -0.5687816 0.3104189 0.5453253 -0.092819 0.3293248 0.5453253 -0.1056428 0.3293248 0.5453253 -0.1201537 0.3293248 0.5453253 -0.1409607 0.3293248 0.5453253 -0.1678172 0.3293248 0.5453253 -0.1950164 0.3293248 0.5453253 -0.2210581 0.3293248 0.5453253 -0.245636 0.3293248 0.5453253 -0.2686816 0.3293248 0.5453253 -0.2902431 0.3293248 0.5453253 -0.3104189 0.3293248 0.5453253 -0.3293248 0.3293248 0.5453253 -0.3470774 0.3293248 0.5453253 -0.3637862 0.3293248 0.5453253 -0.3795513 0.3293248 0.5453253 -0.3944623 0.3293248 0.5453253 -0.4085988 0.3293248 0.5453253 -0.4220313 0.3293248 0.5453253 -0.4348222 0.3293248 0.5453253 -0.4470264 0.3293248 0.5453253 -0.4586928 0.3293248 0.5453253 -0.4698649 0.3293248 0.5453253 -0.4805811 0.3293248 0.5453253 -0.490876 0.3293248 0.5453253 -0.5007803 0.3293248 0.5453253 -0.510322 0.3293248 0.5453253 -0.5195258 0.3293248 0.5453253 -0.5284142 0.3293248 0.5453253 -0.5370079 0.3293248 0.5453253 -0.5453253 0.3293248 0.5453253 -0.5533834 0.3293248 0.5453253 -0.5611974 0.3293248 0.5453253 -0.5687816 0.3293248 0.5453253 -0.092819 0.3470774 0.5453253 -0.1056428 0.3470774 0.5453253 -0.1201537 0.3470774 0.5453253 -0.1409607 0.3470774 0.5453253 -0.1678172 0.3470774 0.5453253 -0.1950164 0.3470774 0.5453253 -0.2210581 0.3470774 0.5453253 -0.245636 0.3470774 0.5453253 -0.2686816 0.3470774 0.5453253 -0.2902431 0.3470774 0.5453253 -0.3104189 0.3470774 0.5453253 -0.3293248 0.3470774 0.5453253 -0.3470774 0.3470774 0.5453253 -0.3637862 0.3470774 0.5453253 -0.3795513 0.3470774 0.5453253 -0.3944623 0.3470774 0.5453253 -0.4085988 0.3470774 0.5453253 -0.4220313 0.3470774 0.5453253 -0.4348222 0.3470774 0.5453253 -0.4470264 0.3470774 0.5453253 -0.4586928 0.3470774 0.5453253 -0.4698649 0.3470774 0.5453253 -0.4805811 0.3470774 0.5453253 -0.490876 0.3470774 0.5453253 -0.5007803 0.3470774 0.5453253 -0.510322 0.3470774 0.5453253 -0.5195258 0.3470774 0.5453253 -0.5284142 0.3470774 0.5453253 -0.5370079 0.3470774 0.5453253 -0.5453253 0.3470774 0.5453253 -0.5533834 0.3470774 0.5453253 -0.5611974 0.3470774 0.5453253 -0.5687816 0.3470774 0.5453253 -0.092819 0.3637862 0.5453253 -0.1056428 0.3637862 0.5453253 -0.1201537 0.3637862 0.5453253 -0.1409607 0.3637862 0.5453253 -0.1678172 0.3637862 0.5453253 -0.1950164 0.3637862 0.5453253 -0.2210581 0.3637862 0.5453253 -0.245636 0.3637862 0.5453253 -0.2686816 0.3637862 0.5453253 -0.2902431 0.3637862 0.5453253 -0.3104189 0.3637862 0.5453253 -0.3293248 0.3637862 0.5453253 -0.3470774 0.3637862 0.5453253 -0.3637862 0.3637862 0.5453253 -0.3795513 0.3637862 0.5453253 -0.3944623 0.3637862 0.5453253 -0.4085988 0.3637862 0.5453253 -0.4220313 0.3637862 0.5453253 -0.4348222 0.3637862 0.5453253 -0.4470264 0.3637862 0.5453253 -0.4586928 0.3637862 0.5453253 -0.4698649 0.3637862 0.5453253 -0.4805811 0.3637862 0.5453253 -0.490876 0.3637862 0.5453253 -0.5007803 0.3637862 0.5453253 -0.510322 0.3637862 0.5453253 -0.5195258 0.3637862 0.5453253 -0.5284142 0.3637862 0.5453253 -0.5370079 0.3637862 0.5453253 -0.5453253 0.3637862 0.5453253 -0.5533834 0.3637862 0.5453253 -0.5611974 0.3637862 0.5453253 -0.5687816 0.3637862 0.5453253 -0.092819 0.3795513 0.5453253 -0.1056428 0.3795513 0.5453253 -0.1201537 0.3795513 0.5453253 -0.1409607 0.3795513 0.5453253 -0.1678172 0.3795513 0.5453253 -0.1950164 0.3795513 0.5453253 -0.2210581 0.3795513 0.5453253 -0.245636 0.3795513 0.5453253 -0.2686816 0.3795513 0.5453253 -0.2902431 0.3795513 0.5453253 -0.3104189 0.3795513 0.5453253 -0.3293248 0.3795513 0.5453253 -0.3470774 0.3795513 0.5453253 -0.3637862 0.3795513 0.5453253 -0.3795513 0.3795513 0.5453253 -0.3944623 0.3795513 0.5453253 -0.4085988 0.3795513 0.5453253 -0.4220313 0.3795513 0.5453253 -0.4348222 0.3795513 0.5453253 -0.4470264 0.3795513 0.5453253 -0.4586928 0.3795513 0.5453253 -0.4698649 0.3795513 0.5453253 -0.4805811 0.3795513 0.5453253 -0.490876 0.3795513 0.5453253 -0.5007803 0.3795513 0.5453253 -0.510322 0.3795513 0.5453253 -0.5195258 0.3795513 0.5453253 -0.5284142 0.3795513 0.5453253 -0.5370079 0.3795513 0.5453253 -0.5453253 0.3795513 0.5453253 -0.5533834 0.3795513 0.5453253 -0.5611974 0.3795513 0.5453253 -0.5687816 0.3795513 0.5453253 -0.092819 0.3944623 0.5453253 -0.1056428 0.3944623 0.5453253 -0.1201537 0.3944623 0.5453253 -0.1409607 0.3944623 0.5453253 -0.1678172 0.3944623 0.5453253 -0.1950164 0.3944623 0.5453253 -0.2210581 0.3944623 0.5453253 -0.245636 0.3944623 0.5453253 -0.2686816 0.3944623 0.5453253 -0.2902431 0.3944623 0.5453253 -0.3104189 0.3944623 0.5453253 -0.3293248 0.3944623 0.5453253 -0.3470774 0.3944623 0.5453253 -0.3637862 0.3944623 0.5453253 -0.3795513 0.3944623 0.5453253 -0.3944623 0.3944623 0.5453253 -0.4085988 0.3944623 0.5453253 -0.4220313 0.3944623 0.5453253 -0.4348222 0.3944623 0.5453253 -0.4470264 0.3944623 0.5453253 -0.4586928 0.3944623 0.5453253 -0.4698649 0.3944623 0.5453253 -0.4805811 0.3944623 0.5453253 -0.490876 0.3944623 0.5453253 -0.5007803 0.3944623 0.5453253 -0.510322 0.3944623 0.5453253 -0.5195258 0.3944623 0.5453253 -0.5284142 0.3944623 0.5453253 -0.5370079 0.3944623 0.5453253 -0.5453253 0.3944623 0.5453253 -0.5533834 0.3944623 0.5453253 -0.5611974 0.3944623 0.5453253 -0.5687816 0.3944623 0.5453253 -0.092819 0.4085988 0.5453253 -0.1056428 0.4085988 0.5453253 -0.1201537 0.4085988 0.5453253 -0.1409607 0.4085988 0.5453253 -0.1678172 0.4085988 0.5453253 -0.1950164 0.4085988 0.5453253 -0.2210581 0.4085988 0.5453253 -0.245636 0.4085988 0.5453253 -0.2686816 0.4085988 0.5453253 -0.2902431 0.4085988 0.5453253 -0.3104189 0.4085988 0.5453253 -0.3293248 0.4085988 0.5453253 -0.3470774 0.4085988 0.5453253 -0.3637862 0.4085988 0.5453253 -0.3795513 0.4085988 0.5453253 -0.3944623 0.4085988 0.5453253 -0.4085988 0.4085988 0.5453253 -0.4220313 0.4085988 0.5453253 -0.4348222 0.4085988 0.5453253 -0.4470264 0.4085988 0.5453253 -0.4586928 0.4085988 0.5453253 -0.4698649 0.4085988 0.5453253 -0.4805811 0.4085988 0.5453253 -0.490876 0.4085988 0.5453253 -0.5007803 0.4085988 0.5453253 -0.510322 0.4085988 0.5453253 -0.5195258 0.4085988 0.5453253 -0.5284142 0.4085988 0.5453253 -0.5370079 0.4085988 0.5453253 -0.5453253 0.4085988 0.5453253 -0.5533834 0.4085988 0.5453253 -0.5611974 0.4085988 0.5453253 -0.5687816 0.4085988 0.5453253 -0.092819 0.4220313 0.5453253 -0.1056428 0.4220313 0.5453253 -0.1201537 0.4220313 0.5453253 -0.1409607 0.4220313 0.5453253 -0.1678172 0.4220313 0.5453253 -0.1950164 0.4220313 0.5453253 -0.2210581 0.4220313 0.5453253 -0.245636 0.4220313 0.5453253 -0.2686816 0.4220313 0.5453253 -0.2902431 0.4220313 0.5453253 -0.3104189 0.4220313 0.5453253 -0.3293248 0.4220313 0.5453253 -0.3470774 0.4220313 0.5453253 -0.3637862 0.4220313 0.5453253 -0.3795513 0.4220313 0.5453253 -0.3944623 0.4220313 0.5453253 -0.4085988 0.4220313 0.5453253 -0.4220313 0.4220313 0.5453253 -0.4348222 0.4220313 0.5453253 -0.4470264 0.4220313 0.5453253 -0.4586928 0.4220313 0.5453253 -0.4698649 0.4220313 0.5453253 -0.4805811 0.4220313 0.5453253 -0.490876 0.4220313 0.5453253 -0.5007803 0.4220313 0.5453253 -0.510322 0.4220313 0.5453253 -0.5195258 0.4220313 0.5453253 -0.5284142 0.4220313 0.5453253 -0.5370079 0.4220313 0.5453253 -0.5453253 0.4220313 0.5453253 -0.5533834 0.4220313 0.5453253 -0.5611974 0.4220313 0.5453253 -0.5687816 0.4220313 0.5453253 -0.092819 0.4348222 0.5453253 -0.1056428 0.4348222 0.5453253 -0.1201537 0.4348222 0.5453253 -0.1409607 0.4348222 0.5453253 -0.1678172 0.4348222 0.5453253 -0.1950164 0.4348222 0.5453253 -0.2210581 0.4348222 0.5453253 -0.245636 0.4348222 0.5453253 -0.2686816 0.4348222 0.5453253 -0.2902431 0.4348222 0.5453253 -0.3104189 0.4348222 0.5453253 -0.3293248 0.4348222 0.5453253 -0.3470774 0.4348222 0.5453253 -0.3637862 0.4348222 0.5453253 -0.3795513 0.4348222 0.5453253 -0.3944623 0.4348222 0.5453253 -0.4085988 0.4348222 0.5453253 -0.4220313 0.4348222 0.5453253 -0.4348222 0.4348222 0.5453253 -0.4470264 0.4348222 0.5453253 -0.4586928 0.4348222 0.5453253 -0.4698649 0.4348222 0.5453253 -0.4805811 0.4348222 0.5453253 -0.490876 0.4348222 0.5453253 -0.5007803 0.4348222 0.5453253 -0.510322 0.4348222 0.5453253 -0.5195258 0.4348222 0.5453253 -0.5284142 0.4348222 0.5453253 -0.5370079 0.4348222 0.5453253 -0.5453253 0.4348222 0.5453253 -0.5533834 0.4348222 0.5453253 -0.5611974 0.4348222 0.5453253 -0.5687816 0.4348222 0.5453253 -0.092819 0.4470264 0.5453253 -0.1056428 0.4470264 0.5453253 -0.1201537 0.4470264 0.5453253 -0.1409607 0.4470264 0.5453253 -0.1678172 0.4470264 0.5453253 -0.1950164 0.4470264 0.5453253 -0.2210581 0.4470264 0.5453253 -0.245636 0.4470264 0.5453253 -0.2686816 0.4470264 0.5453253 -0.2902431 0.4470264 0.5453253 -0.3104189 0.4470264 0.5453253 -0.3293248 0.4470264 0.5453253 -0.3470774 0.4470264 0.5453253 -0.3637862 0.4470264 0.5453253 -0.3795513 0.4470264 0.5453253 -0.3944623 0.4470264 0.5453253 -0.4085988 0.4470264 0.5453253 -0.4220313 0.4470264 0.5453253 -0.4348222 0.4470264 0.5453253 -0.4470264 0.4470264 0.5453253 -0.4586928 0.4470264 0.5453253 -0.4698649 0.4470264 0.5453253 -0.4805811 0.4470264 0.5453253 -0.490876 0.4470264 0.5453253 -0.5007803 0.4470264 0.5453253 -0.510322 0.4470264 0.5453253 -0.5195258 0.4470264 0.5453253 -0.5284142 0.4470264 0.5453253 -0.5370079 0.4470264 0.5453253 -0.5453253 0.4470264 0.5453253 -0.5533834 0.4470264 0.5453253 -0.5611974 0.4470264 0.5453253 -0.5687816 0.4470264 0.5453253 -0.092819 0.4586928 0.5453253 -0.1056428 0.4586928 0.5453253 -0.1201537 0.4586928 0.5453253 -0.1409607 0.4586928 0.5453253 -0.1678172 0.4586928 0.5453253 -0.1950164 0.4586928 0.5453253 -0.2210581 0.4586928 0.5453253 -0.245636 0.4586928 0.5453253 -0.2686816 0.4586928 0.5453253 -0.2902431 0.4586928 0.5453253 -0.3104189 0.4586928 0.5453253 -0.3293248 0.4586928 0.5453253 -0.3470774 0.4586928 0.5453253 -0.3637862 0.4586928 0.5453253 -0.3795513 0.4586928 0.5453253 -0.3944623 0.4586928 0.5453253 -0.4085988 0.4586928 0.5453253 -0.4220313 0.4586928 0.5453253 -0.4348222 0.4586928 0.5453253 -0.4470264 0.4586928 0.5453253 -0.4586928 0.4586928 0.5453253 -0.4698649 0.4586928 0.5453253 -0.4805811 0.4586928 0.5453253 -0.490876 0.4586928 0.5453253 -0.5007803 0.4586928 0.5453253 -0.510322 0.4586928 0.5453253 -0.5195258 0.4586928 0.5453253 -0.5284142 0.4586928 0.5453253 -0.5370079 0.4586928 0.5453253 -0.5453253 0.4586928 0.5453253 -0.5533834 0.4586928 0.5453253 -0.5611974 0.4586928 0.5453253 -0.5687816 0.4586928 0.5453253 -0.092819 0.4698649 0.5453253 -0.1056428 0.4698649 0.5453253 -0.1201537 0.4698649 0.5453253 -0.1409607 0.4698649 0.5453253 -0.1678172 0.4698649 0.5453253 -0.1950164 0.4698649 0.5453253 -0.2210581 0.4698649 0.5453253 -0.245636 0.4698649 0.5453253 -0.2686816 0.4698649 0.5453253 -0.2902431 0.4698649 0.5453253 -0.3104189 0.4698649 0.5453253 -0.3293248 0.4698649 0.5453253 -0.3470774 0.4698649 0.5453253 -0.3637862 0.4698649 0.5453253 -0.3795513 0.4698649 0.5453253 -0.3944623 0.4698649 0.5453253 -0.4085988 0.4698649 0.5453253 -0.4220313 0.4698649 0.5453253 -0.4348222 0.4698649 0.5453253 -0.4470264 0.4698649 0.5453253 -0.4586928 0.4698649 0.5453253 -0.4698649 0.4698649 0.5453253 -0.4805811 0.4698649 0.5453253 -0.490876 0.4698649 0.5453253 -0.5007803 0.4698649 0.5453253 -0.510322 0.4698649 0.5453253 -0.5195258 0.4698649 0.5453253 -0.5284142 0.4698649 0.5453253 -0.5370079 0.4698649 0.5453253 -0.5453253 0.4698649 0.5453253 -0.5533834 0.4698649 0.5453253 -0.5611974 0.4698649 0.5453253 -0.5687816 0.4698649 0.5453253 -0.092819 0.4805811 0.5453253 -0.1056428 0.4805811 0.5453253 -0.1201537 0.4805811 0.5453253 -0.1409607 0.4805811 0.5453253 -0.1678172 0.4805811 0.5453253 -0.1950164 0.4805811 0.5453253 -0.2210581 0.4805811 0.5453253 -0.245636 0.4805811 0.5453253 -0.2686816 0.4805811 0.5453253 -0.2902431 0.4805811 0.5453253 -0.3104189 0.4805811 0.5453253 -0.3293248 0.4805811 0.5453253 -0.3470774 0.4805811 0.5453253 -0.3637862 0.4805811 0.5453253 -0.3795513 0.4805811 0.5453253 -0.3944623 0.4805811 0.5453253 -0.4085988 0.4805811 0.5453253 -0.4220313 0.4805811 0.5453253 -0.4348222 0.4805811 0.5453253 -0.4470264 0.4805811 0.5453253 -0.4586928 0.4805811 0.5453253 -0.4698649 0.4805811 0.5453253 -0.4805811 0.4805811 0.5453253 -0.490876 0.4805811 0.5453253 -0.5007803 0.4805811 0.5453253 -0.510322 0.4805811 0.5453253 -0.5195258 0.4805811 0.5453253 -0.5284142 0.4805811 0.5453253 -0.5370079 0.4805811 0.5453253 -0.5453253 0.4805811 0.5453253 -0.5533834 0.4805811 0.5453253 -0.5611974 0.4805811 0.5453253 -0.5687816 0.4805811 0.5453253 -0.092819 0.490876 0.5453253 -0.1056428 0.490876 0.5453253 -0.1201537 0.490876 0.5453253 -0.1409607 0.490876 0.5453253 -0.1678172 0.490876 0.5453253 -0.1950164 0.490876 0.5453253 -0.2210581 0.490876 0.5453253 -0.245636 0.490876 0.5453253 -0.2686816 0.490876 0.5453253 -0.2902431 0.490876 0.5453253 -0.3104189 0.490876 0.5453253 -0.3293248 0.490876 0.5453253 -0.3470774 0.490876 0.5453253 -0.3637862 0.490876 0.5453253 -0.3795513 0.490876 0.5453253 -0.3944623 0.490876 0.5453253 -0.4085988 0.490876 0.5453253 -0.4220313 0.490876 0.5453253 -0.4348222 0.490876 0.5453253 -0.4470264 0.490876 0.5453253 -0.4586928 0.490876 0.5453253 -0.4698649 0.490876 0.5453253 -0.4805811 0.490876 0.5453253 -0.490876 0.490876 0.5453253 -0.5007803 0.490876 0.5453253 -0.510322 0.490876 0.5453253 -0.5195258 0.490876 0.5453253 -0.5284142 0.490876 0.5453253 -0.5370079 0.490876 0.5453253 -0.5453253 0.490876 0.5453253 -0.5533834 0.490876 0.5453253 -0.5611974 0.490876 0.5453253 -0.5687816 0.490876 0.5453253 -0.092819 0.5007803 0.5453253 -0.1056428 0.5007803 0.5453253 -0.1201537 0.5007803 0.5453253 -0.1409607 0.5007803 0.5453253 -0.1678172 0.5007803 0.5453253 -0.1950164 0.5007803 0.5453253 -0.2210581 0.5007803 0.5453253 -0.245636 0.5007803 0.5453253 -0.2686816 0.5007803 0.5453253 -0.2902431 0.5007803 0.5453253 -0.3104189 0.5007803 0.5453253 -0.3293248 0.5007803 0.5453253 -0.3470774 0.5007803 0.5453253 -0.3637862 0.5007803 0.5453253 -0.3795513 0.5007803 0.5453253 -0.3944623 0.5007803 0.5453253 -0.4085988 0.5007803 0.5453253 -0.4220313 0.5007803 0.5453253 -0.4348222 0.5007803 0.5453253 -0.4470264 0.5007803 0.5453253 -0.4586928 0.5007803 0.5453253 -0.4698649 0.5007803 0.5453253 -0.4805811 0.5007803 0.5453253 -0.490876 0.5007803 0.5453253 -0.5007803 0.5007803 0.5453253 -0.510322 0.5007803 0.5453253 -0.5195258 0.5007803 0.5453253 -0.5284142 0.5007803 0.5453253 -0.5370079 0.5007803 0.5453253 -0.5453253 0.5007803 0.5453253 -0.5533834 0.5007803 0.5453253 -0.5611974 0.5007803 0.5453253 -0.5687816 0.5007803 0.5453253 -0.092819 0.510322 0.5453253 -0.1056428 0.510322 0.5453253 -0.1201537 0.510322 0.5453253 -0.1409607 0.510322 0.5453253 -0.1678172 0.510322 0.5453253 -0.1950164 0.510322 0.5453253 -0.2210581 0.510322 0.5453253 -0.245636 0.510322 0.5453253 -0.2686816 0.510322 0.5453253 -0.2902431 0.510322 0.5453253 -0.3104189 0.510322 0.5453253 -0.3293248 0.510322 0.5453253 -0.3470774 0.510322 0.5453253 -0.3637862 0.510322 0.5453253 -0.3795513 0.510322 0.5453253 -0.3944623 0.510322 0.5453253 -0.4085988 0.510322 0.5453253 -0.4220313 0.510322 0.5453253 -0.4348222 0.510322 0.5453253 -0.4470264 0.510322 0.5453253 -0.4586928 0.510322 0.5453253 -0.4698649 0.510322 0.5453253 -0.4805811 0.510322 0.5453253 -0.490876 0.510322 0.5453253 -0.5007803 0.510322 0.5453253 -0.510322 0.510322 0.5453253 -0.5195258 0.510322 0.5453253 -0.5284142 0.510322 0.5453253 -0.5370079 0.510322 0.5453253 -0.5453253 0.510322 0.5453253 -0.5533834 0.510322 0.5453253 -0.5611974 0.510322 0.5453253 -0.5687816 0.510322 0.5453253 -0.092819 0.5195258 0.5453253 -0.1056428 0.5195258 0.5453253 -0.1201537 0.5195258 0.5453253 -0.1409607 0.5195258 0.5453253 -0.1678172 0.5195258 0.5453253 -0.1950164 0.5195258 0.5453253 -0.2210581 0.5195258 0.5453253 -0.245636 0.5195258 0.5453253 -0.2686816 0.5195258 0.5453253 -0.2902431 0.5195258 0.5453253 -0.3104189 0.5195258 0.5453253 -0.3293248 0.5195258 0.5453253 -0.3470774 0.5195258 0.5453253 -0.3637862 0.5195258 0.5453253 -0.3795513 0.5195258 0.5453253 -0.3944623 0.5195258 0.5453253 -0.4085988 0.5195258 0.5453253 -0.4220313 0.5195258 0.5453253 -0.4348222 0.5195258 0.5453253 -0.4470264 0.5195258 0.5453253 -0.4586928 0.5195258 0.5453253 -0.4698649 0.5195258 0.5453253 -0.4805811 0.5195258 0.5453253 -0.490876 0.5195258 0.5453253 -0.5007803 0.5195258 0.5453253 -0.510322 0.5195258 0.5453253 -0.5195258 0.5195258 0.5453253 -0.5284142 0.5195258 0.5453253 -0.5370079 0.5195258 0.5453253 -0.5453253 0.5195258 0.5453253 -0.5533834 0.5195258 0.5453253 -0.5611974 0.5195258 0.5453253 -0.5687816 0.5195258 0.5453253 -0.092819 0.5284142 0.5453253 -0.1056428 0.5284142 0.5453253 -0.1201537 0.5284142 0.5453253 -0.1409607 0.5284142 0.5453253 -0.1678172 0.5284142 0.5453253 -0.1950164 0.5284142 0.5453253 -0.2210581 0.5284142 0.5453253 -0.245636 0.5284142 0.5453253 -0.2686816 0.5284142 0.5453253 -0.2902431 0.5284142 0.5453253 -0.3104189 0.5284142 0.5453253 -0.3293248 0.5284142 0.5453253 -0.3470774 0.5284142 0.5453253 -0.3637862 0.5284142 0.5453253 -0.3795513 0.5284142 0.5453253 -0.3944623 0.5284142 0.5453253 -0.4085988 0.5284142 0.5453253 -0.4220313 0.5284142 0.5453253 -0.4348222 0.5284142 0.5453253 -0.4470264 0.5284142 0.5453253 -0.4586928 0.5284142 0.5453253 -0.4698649 0.5284142 0.5453253 -0.4805811 0.5284142 0.5453253 -0.490876 0.5284142 0.5453253 -0.5007803 0.5284142 0.5453253 -0.510322 0.5284142 0.5453253 -0.5195258 0.5284142 0.5453253 -0.5284142 0.5284142 0.5453253 -0.5370079 0.5284142 0.5453253 -0.5453253 0.5284142 0.5453253 -0.5533834 0.5284142 0.5453253 -0.5611974 0.5284142 0.5453253 -0.5687816 0.5284142 0.5453253 -0.092819 0.5370079 0.5453253 -0.1056428 0.5370079 0.5453253 -0.1201537 0.5370079 0.5453253 -0.1409607 0.5370079 0.5453253 -0.1678172 0.5370079 0.5453253 -0.1950164 0.5370079 0.5453253 -0.2210581 0.5370079 0.5453253 -0.245636 0.5370079 0.5453253 -0.2686816 0.5370079 0.5453253 -0.2902431 0.5370079 0.5453253 -0.3104189 0.5370079 0.5453253 -0.3293248 0.5370079 0.5453253 -0.3470774 0.5370079 0.5453253 -0.3637862 0.5370079 0.5453253 -0.3795513 0.5370079 0.5453253 -0.3944623 0.5370079 0.5453253 -0.4085988 0.5370079 0.5453253 -0.4220313 0.5370079 0.5453253 -0.4348222 0.5370079 0.5453253 -0.4470264 0.5370079 0.5453253 -0.4586928 0.5370079 0.5453253 -0.4698649 0.5370079 0.5453253 -0.4805811 0.5370079 0.5453253 -0.490876 0.5370079 0.5453253 -0.5007803 0.5370079 0.5453253 -0.510322 0.5370079 0.5453253 -0.5195258 0.5370079 0.5453253 -0.5284142 0.5370079 0.5453253 -0.5370079 0.5370079 0.5453253 -0.5453253 0.5370079 0.5453253 -0.5533834 0.5370079 0.5453253 -0.5611974 0.5370079 0.5453253 -0.5687816 0.5370079 0.5453253 -0.092819 0.5453253 0.5453253 -0.1056428 0.5453253 0.5453253 -0.1201537 0.5453253 0.5453253 -0.1409607 0.5453253 0.5453253 -0.1678172 0.5453253 0.5453253 -0.1950164 0.5453253 0.5453253 -0.2210581 0.5453253 0.5453253 -0.245636 0.5453253 0.5453253 -0.2686816 0.5453253 0.5453253 -0.2902431 0.5453253 0.5453253 -0.3104189 0.5453253 0.5453253 -0.3293248 0.5453253 0.5453253 -0.3470774 0.5453253 0.5453253 -0.3637862 0.5453253 0.5453253 -0.3795513 0.5453253 0.5453253 -0.3944623 0.5453253 0.5453253 -0.4085988 0.5453253 0.5453253 -0.4220313 0.5453253 0.5453253 -0.4348222 0.5453253 0.5453253 -0.4470264 0.5453253 0.5453253 -0.4586928 0.5453253 0.5453253 -0.4698649 0.5453253 0.5453253 -0.4805811 0.5453253 0.5453253 -0.490876 0.5453253 0.5453253 -0.5007803 0.5453253 0.5453253 -0.510322 0.5453253 0.5453253 -0.5195258 0.5453253 0.5453253 -0.5284142 0.5453253 0.5453253 -0.5370079 0.5453253 0.5453253 -0.5453253 0.5453253 0.5453253 -0.5533834 0.5453253 0.5453253 -0.5611974 0.5453253 0.5453253 -0.5687816 0.5453253 0.5453253 -0.092819 0.5533834 0.5453253 -0.1056428 0.5533834 0.5453253 -0.1201537 0.5533834 0.5453253 -0.1409607 0.5533834 0.5453253 -0.1678172 0.5533834 0.5453253 -0.1950164 0.5533834 0.5453253 -0.2210581 0.5533834 0.5453253 -0.245636 0.5533834 0.5453253 -0.2686816 0.5533834 0.5453253 -0.2902431 0.5533834 0.5453253 -0.3104189 0.5533834 0.5453253 -0.3293248 0.5533834 0.5453253 -0.3470774 0.5533834 0.5453253 -0.3637862 0.5533834 0.5453253 -0.3795513 0.5533834 0.5453253 -0.3944623 0.5533834 0.5453253 -0.4085988 0.5533834 0.5453253 -0.4220313 0.5533834 0.5453253 -0.4348222 0.5533834 0.5453253 -0.4470264 0.5533834 0.5453253 -0.4586928 0.5533834 0.5453253 -0.4698649 0.5533834 0.5453253 -0.4805811 0.5533834 0.5453253 -0.490876 0.5533834 0.5453253 -0.5007803 0.5533834 0.5453253 -0.510322 0.5533834 0.5453253 -0.5195258 0.5533834 0.5453253 -0.5284142 0.5533834 0.5453253 -0.5370079 0.5533834 0.5453253 -0.5453253 0.5533834 0.5453253 -0.5533834 0.5533834 0.5453253 -0.5611974 0.5533834 0.5453253 -0.5687816 0.5533834 0.5453253 -0.092819 0.5611974 0.5453253 -0.1056428 0.5611974 0.5453253 -0.1201537 0.5611974 0.5453253 -0.1409607 0.5611974 0.5453253 -0.1678172 0.5611974 0.5453253 -0.1950164 0.5611974 0.5453253 -0.2210581 0.5611974 0.5453253 -0.245636 0.5611974 0.5453253 -0.2686816 0.5611974 0.5453253 -0.2902431 0.5611974 0.5453253 -0.3104189 0.5611974 0.5453253 -0.3293248 0.5611974 0.5453253 -0.3470774 0.5611974 0.5453253 -0.3637862 0.5611974 0.5453253 -0.3795513 0.5611974 0.5453253 -0.3944623 0.5611974 0.5453253 -0.4085988 0.5611974 0.5453253 -0.4220313 0.5611974 0.5453253 -0.4348222 0.5611974 0.5453253 -0.4470264 0.5611974 0.5453253 -0.4586928 0.5611974 0.5453253 -0.4698649 0.5611974 0.5453253 -0.4805811 0.5611974 0.5453253 -0.490876 0.5611974 0.5453253 -0.5007803 0.5611974 0.5453253 -0.510322 0.5611974 0.5453253 -0.5195258 0.5611974 0.5453253 -0.5284142 0.5611974 0.5453253 -0.5370079 0.5611974 0.5453253 -0.5453253 0.5611974 0.5453253 -0.5533834 0.5611974 0.5453253 -0.5611974 0.5611974 0.5453253 -0.5687816 0.5611974 0.5453253 -0.092819 0.5687816 0.5453253 -0.1056428 0.5687816 0.5453253 -0.1201537 0.5687816 0.5453253 -0.1409607 0.5687816 0.5453253 -0.1678172 0.5687816 0.5453253 -0.1950164 0.5687816 0.5453253 -0.2210581 0.5687816 0.5453253 -0.245636 0.5687816 0.5453253 -0.2686816 0.5687816 0.5453253 -0.2902431 0.5687816 0.5453253 -0.3104189 0.5687816 0.5453253 -0.3293248 0.5687816 0.5453253 -0.3470774 0.5687816 0.5453253 -0.3637862 0.5687816 0.5453253 -0.3795513 0.5687816 0.5453253 -0.3944623 0.5687816 0.5453253 -0.4085988 0.5687816 0.5453253 -0.4220313 0.5687816 0.5453253 -0.4348222 0.5687816 0.5453253 -0.4470264 0.5687816 0.5453253 -0.4586928 0.5687816 0.5453253 -0.4698649 0.5687816 0.5453253 -0.4805811 0.5687816 0.5453253 -0.490876 0.5687816 0.5453253 -0.5007803 0.5687816 0.5453253 -0.510322 0.5687816 0.5453253 -0.5195258 0.5687816 0.5453253 -0.5284142 0.5687816 0.5453253 -0.5370079 0.5687816 0.5453253 -0.5453253 0.5687816 0.5453253 -0.5533834 0.5687816 0.5453253 -0.5611974 0.5687816 0.5453253 -0.5687816 0.5687816 0.5453253 -0.092819 0.092819 0.5533834 -0.1056428 0.092819 0.5533834 -0.1201537 0.092819 0.5533834 -0.1409607 0.092819 0.5533834 -0.1678172 0.092819 0.5533834 -0.1950164 0.092819 0.5533834 -0.2210581 0.092819 0.5533834 -0.245636 0.092819 0.5533834 -0.2686816 0.092819 0.5533834 -0.2902431 0.092819 0.5533834 -0.3104189 0.092819 0.5533834 -0.3293248 0.092819 0.5533834 -0.3470774 0.092819 0.5533834 -0.3637862 0.092819 0.5533834 -0.3795513 0.092819 0.5533834 -0.3944623 0.092819 0.5533834 -0.4085988 0.092819 0.5533834 -0.4220313 0.092819 0.5533834 -0.4348222 0.092819 0.5533834 -0.4470264 0.092819 0.5533834 -0.4586928 0.092819 0.5533834 -0.4698649 0.092819 0.5533834 -0.4805811 0.092819 0.5533834 -0.490876 0.092819 0.5533834 -0.5007803 0.092819 0.5533834 -0.510322 0.092819 0.5533834 -0.5195258 0.092819 0.5533834 -0.5284142 0.092819 0.5533834 -0.5370079 0.092819 0.5533834 -0.5453253 0.092819 0.5533834 -0.5533834 0.092819 0.5533834 -0.5611974 0.092819 0.5533834 -0.5687816 0.092819 0.5533834 -0.092819 0.1056428 0.5533834 -0.1056428 0.1056428 0.5533834 -0.1201537 0.1056428 0.5533834 -0.1409607 0.1056428 0.5533834 -0.1678172 0.1056428 0.5533834 -0.1950164 0.1056428 0.5533834 -0.2210581 0.1056428 0.5533834 -0.245636 0.1056428 0.5533834 -0.2686816 0.1056428 0.5533834 -0.2902431 0.1056428 0.5533834 -0.3104189 0.1056428 0.5533834 -0.3293248 0.1056428 0.5533834 -0.3470774 0.1056428 0.5533834 -0.3637862 0.1056428 0.5533834 -0.3795513 0.1056428 0.5533834 -0.3944623 0.1056428 0.5533834 -0.4085988 0.1056428 0.5533834 -0.4220313 0.1056428 0.5533834 -0.4348222 0.1056428 0.5533834 -0.4470264 0.1056428 0.5533834 -0.4586928 0.1056428 0.5533834 -0.4698649 0.1056428 0.5533834 -0.4805811 0.1056428 0.5533834 -0.490876 0.1056428 0.5533834 -0.5007803 0.1056428 0.5533834 -0.510322 0.1056428 0.5533834 -0.5195258 0.1056428 0.5533834 -0.5284142 0.1056428 0.5533834 -0.5370079 0.1056428 0.5533834 -0.5453253 0.1056428 0.5533834 -0.5533834 0.1056428 0.5533834 -0.5611974 0.1056428 0.5533834 -0.5687816 0.1056428 0.5533834 -0.092819 0.1201537 0.5533834 -0.1056428 0.1201537 0.5533834 -0.1201537 0.1201537 0.5533834 -0.1409607 0.1201537 0.5533834 -0.1678172 0.1201537 0.5533834 -0.1950164 0.1201537 0.5533834 -0.2210581 0.1201537 0.5533834 -0.245636 0.1201537 0.5533834 -0.2686816 0.1201537 0.5533834 -0.2902431 0.1201537 0.5533834 -0.3104189 0.1201537 0.5533834 -0.3293248 0.1201537 0.5533834 -0.3470774 0.1201537 0.5533834 -0.3637862 0.1201537 0.5533834 -0.3795513 0.1201537 0.5533834 -0.3944623 0.1201537 0.5533834 -0.4085988 0.1201537 0.5533834 -0.4220313 0.1201537 0.5533834 -0.4348222 0.1201537 0.5533834 -0.4470264 0.1201537 0.5533834 -0.4586928 0.1201537 0.5533834 -0.4698649 0.1201537 0.5533834 -0.4805811 0.1201537 0.5533834 -0.490876 0.1201537 0.5533834 -0.5007803 0.1201537 0.5533834 -0.510322 0.1201537 0.5533834 -0.5195258 0.1201537 0.5533834 -0.5284142 0.1201537 0.5533834 -0.5370079 0.1201537 0.5533834 -0.5453253 0.1201537 0.5533834 -0.5533834 0.1201537 0.5533834 -0.5611974 0.1201537 0.5533834 -0.5687816 0.1201537 0.5533834 -0.092819 0.1409607 0.5533834 -0.1056428 0.1409607 0.5533834 -0.1201537 0.1409607 0.5533834 -0.1409607 0.1409607 0.5533834 -0.1678172 0.1409607 0.5533834 -0.1950164 0.1409607 0.5533834 -0.2210581 0.1409607 0.5533834 -0.245636 0.1409607 0.5533834 -0.2686816 0.1409607 0.5533834 -0.2902431 0.1409607 0.5533834 -0.3104189 0.1409607 0.5533834 -0.3293248 0.1409607 0.5533834 -0.3470774 0.1409607 0.5533834 -0.3637862 0.1409607 0.5533834 -0.3795513 0.1409607 0.5533834 -0.3944623 0.1409607 0.5533834 -0.4085988 0.1409607 0.5533834 -0.4220313 0.1409607 0.5533834 -0.4348222 0.1409607 0.5533834 -0.4470264 0.1409607 0.5533834 -0.4586928 0.1409607 0.5533834 -0.4698649 0.1409607 0.5533834 -0.4805811 0.1409607 0.5533834 -0.490876 0.1409607 0.5533834 -0.5007803 0.1409607 0.5533834 -0.510322 0.1409607 0.5533834 -0.5195258 0.1409607 0.5533834 -0.5284142 0.1409607 0.5533834 -0.5370079 0.1409607 0.5533834 -0.5453253 0.1409607 0.5533834 -0.5533834 0.1409607 0.5533834 -0.5611974 0.1409607 0.5533834 -0.5687816 0.1409607 0.5533834 -0.092819 0.1678172 0.5533834 -0.1056428 0.1678172 0.5533834 -0.1201537 0.1678172 0.5533834 -0.1409607 0.1678172 0.5533834 -0.1678172 0.1678172 0.5533834 -0.1950164 0.1678172 0.5533834 -0.2210581 0.1678172 0.5533834 -0.245636 0.1678172 0.5533834 -0.2686816 0.1678172 0.5533834 -0.2902431 0.1678172 0.5533834 -0.3104189 0.1678172 0.5533834 -0.3293248 0.1678172 0.5533834 -0.3470774 0.1678172 0.5533834 -0.3637862 0.1678172 0.5533834 -0.3795513 0.1678172 0.5533834 -0.3944623 0.1678172 0.5533834 -0.4085988 0.1678172 0.5533834 -0.4220313 0.1678172 0.5533834 -0.4348222 0.1678172 0.5533834 -0.4470264 0.1678172 0.5533834 -0.4586928 0.1678172 0.5533834 -0.4698649 0.1678172 0.5533834 -0.4805811 0.1678172 0.5533834 -0.490876 0.1678172 0.5533834 -0.5007803 0.1678172 0.5533834 -0.510322 0.1678172 0.5533834 -0.5195258 0.1678172 0.5533834 -0.5284142 0.1678172 0.5533834 -0.5370079 0.1678172 0.5533834 -0.5453253 0.1678172 0.5533834 -0.5533834 0.1678172 0.5533834 -0.5611974 0.1678172 0.5533834 -0.5687816 0.1678172 0.5533834 -0.092819 0.1950164 0.5533834 -0.1056428 0.1950164 0.5533834 -0.1201537 0.1950164 0.5533834 -0.1409607 0.1950164 0.5533834 -0.1678172 0.1950164 0.5533834 -0.1950164 0.1950164 0.5533834 -0.2210581 0.1950164 0.5533834 -0.245636 0.1950164 0.5533834 -0.2686816 0.1950164 0.5533834 -0.2902431 0.1950164 0.5533834 -0.3104189 0.1950164 0.5533834 -0.3293248 0.1950164 0.5533834 -0.3470774 0.1950164 0.5533834 -0.3637862 0.1950164 0.5533834 -0.3795513 0.1950164 0.5533834 -0.3944623 0.1950164 0.5533834 -0.4085988 0.1950164 0.5533834 -0.4220313 0.1950164 0.5533834 -0.4348222 0.1950164 0.5533834 -0.4470264 0.1950164 0.5533834 -0.4586928 0.1950164 0.5533834 -0.4698649 0.1950164 0.5533834 -0.4805811 0.1950164 0.5533834 -0.490876 0.1950164 0.5533834 -0.5007803 0.1950164 0.5533834 -0.510322 0.1950164 0.5533834 -0.5195258 0.1950164 0.5533834 -0.5284142 0.1950164 0.5533834 -0.5370079 0.1950164 0.5533834 -0.5453253 0.1950164 0.5533834 -0.5533834 0.1950164 0.5533834 -0.5611974 0.1950164 0.5533834 -0.5687816 0.1950164 0.5533834 -0.092819 0.2210581 0.5533834 -0.1056428 0.2210581 0.5533834 -0.1201537 0.2210581 0.5533834 -0.1409607 0.2210581 0.5533834 -0.1678172 0.2210581 0.5533834 -0.1950164 0.2210581 0.5533834 -0.2210581 0.2210581 0.5533834 -0.245636 0.2210581 0.5533834 -0.2686816 0.2210581 0.5533834 -0.2902431 0.2210581 0.5533834 -0.3104189 0.2210581 0.5533834 -0.3293248 0.2210581 0.5533834 -0.3470774 0.2210581 0.5533834 -0.3637862 0.2210581 0.5533834 -0.3795513 0.2210581 0.5533834 -0.3944623 0.2210581 0.5533834 -0.4085988 0.2210581 0.5533834 -0.4220313 0.2210581 0.5533834 -0.4348222 0.2210581 0.5533834 -0.4470264 0.2210581 0.5533834 -0.4586928 0.2210581 0.5533834 -0.4698649 0.2210581 0.5533834 -0.4805811 0.2210581 0.5533834 -0.490876 0.2210581 0.5533834 -0.5007803 0.2210581 0.5533834 -0.510322 0.2210581 0.5533834 -0.5195258 0.2210581 0.5533834 -0.5284142 0.2210581 0.5533834 -0.5370079 0.2210581 0.5533834 -0.5453253 0.2210581 0.5533834 -0.5533834 0.2210581 0.5533834 -0.5611974 0.2210581 0.5533834 -0.5687816 0.2210581 0.5533834 -0.092819 0.245636 0.5533834 -0.1056428 0.245636 0.5533834 -0.1201537 0.245636 0.5533834 -0.1409607 0.245636 0.5533834 -0.1678172 0.245636 0.5533834 -0.1950164 0.245636 0.5533834 -0.2210581 0.245636 0.5533834 -0.245636 0.245636 0.5533834 -0.2686816 0.245636 0.5533834 -0.2902431 0.245636 0.5533834 -0.3104189 0.245636 0.5533834 -0.3293248 0.245636 0.5533834 -0.3470774 0.245636 0.5533834 -0.3637862 0.245636 0.5533834 -0.3795513 0.245636 0.5533834 -0.3944623 0.245636 0.5533834 -0.4085988 0.245636 0.5533834 -0.4220313 0.245636 0.5533834 -0.4348222 0.245636 0.5533834 -0.4470264 0.245636 0.5533834 -0.4586928 0.245636 0.5533834 -0.4698649 0.245636 0.5533834 -0.4805811 0.245636 0.5533834 -0.490876 0.245636 0.5533834 -0.5007803 0.245636 0.5533834 -0.510322 0.245636 0.5533834 -0.5195258 0.245636 0.5533834 -0.5284142 0.245636 0.5533834 -0.5370079 0.245636 0.5533834 -0.5453253 0.245636 0.5533834 -0.5533834 0.245636 0.5533834 -0.5611974 0.245636 0.5533834 -0.5687816 0.245636 0.5533834 -0.092819 0.2686816 0.5533834 -0.1056428 0.2686816 0.5533834 -0.1201537 0.2686816 0.5533834 -0.1409607 0.2686816 0.5533834 -0.1678172 0.2686816 0.5533834 -0.1950164 0.2686816 0.5533834 -0.2210581 0.2686816 0.5533834 -0.245636 0.2686816 0.5533834 -0.2686816 0.2686816 0.5533834 -0.2902431 0.2686816 0.5533834 -0.3104189 0.2686816 0.5533834 -0.3293248 0.2686816 0.5533834 -0.3470774 0.2686816 0.5533834 -0.3637862 0.2686816 0.5533834 -0.3795513 0.2686816 0.5533834 -0.3944623 0.2686816 0.5533834 -0.4085988 0.2686816 0.5533834 -0.4220313 0.2686816 0.5533834 -0.4348222 0.2686816 0.5533834 -0.4470264 0.2686816 0.5533834 -0.4586928 0.2686816 0.5533834 -0.4698649 0.2686816 0.5533834 -0.4805811 0.2686816 0.5533834 -0.490876 0.2686816 0.5533834 -0.5007803 0.2686816 0.5533834 -0.510322 0.2686816 0.5533834 -0.5195258 0.2686816 0.5533834 -0.5284142 0.2686816 0.5533834 -0.5370079 0.2686816 0.5533834 -0.5453253 0.2686816 0.5533834 -0.5533834 0.2686816 0.5533834 -0.5611974 0.2686816 0.5533834 -0.5687816 0.2686816 0.5533834 -0.092819 0.2902431 0.5533834 -0.1056428 0.2902431 0.5533834 -0.1201537 0.2902431 0.5533834 -0.1409607 0.2902431 0.5533834 -0.1678172 0.2902431 0.5533834 -0.1950164 0.2902431 0.5533834 -0.2210581 0.2902431 0.5533834 -0.245636 0.2902431 0.5533834 -0.2686816 0.2902431 0.5533834 -0.2902431 0.2902431 0.5533834 -0.3104189 0.2902431 0.5533834 -0.3293248 0.2902431 0.5533834 -0.3470774 0.2902431 0.5533834 -0.3637862 0.2902431 0.5533834 -0.3795513 0.2902431 0.5533834 -0.3944623 0.2902431 0.5533834 -0.4085988 0.2902431 0.5533834 -0.4220313 0.2902431 0.5533834 -0.4348222 0.2902431 0.5533834 -0.4470264 0.2902431 0.5533834 -0.4586928 0.2902431 0.5533834 -0.4698649 0.2902431 0.5533834 -0.4805811 0.2902431 0.5533834 -0.490876 0.2902431 0.5533834 -0.5007803 0.2902431 0.5533834 -0.510322 0.2902431 0.5533834 -0.5195258 0.2902431 0.5533834 -0.5284142 0.2902431 0.5533834 -0.5370079 0.2902431 0.5533834 -0.5453253 0.2902431 0.5533834 -0.5533834 0.2902431 0.5533834 -0.5611974 0.2902431 0.5533834 -0.5687816 0.2902431 0.5533834 -0.092819 0.3104189 0.5533834 -0.1056428 0.3104189 0.5533834 -0.1201537 0.3104189 0.5533834 -0.1409607 0.3104189 0.5533834 -0.1678172 0.3104189 0.5533834 -0.1950164 0.3104189 0.5533834 -0.2210581 0.3104189 0.5533834 -0.245636 0.3104189 0.5533834 -0.2686816 0.3104189 0.5533834 -0.2902431 0.3104189 0.5533834 -0.3104189 0.3104189 0.5533834 -0.3293248 0.3104189 0.5533834 -0.3470774 0.3104189 0.5533834 -0.3637862 0.3104189 0.5533834 -0.3795513 0.3104189 0.5533834 -0.3944623 0.3104189 0.5533834 -0.4085988 0.3104189 0.5533834 -0.4220313 0.3104189 0.5533834 -0.4348222 0.3104189 0.5533834 -0.4470264 0.3104189 0.5533834 -0.4586928 0.3104189 0.5533834 -0.4698649 0.3104189 0.5533834 -0.4805811 0.3104189 0.5533834 -0.490876 0.3104189 0.5533834 -0.5007803 0.3104189 0.5533834 -0.510322 0.3104189 0.5533834 -0.5195258 0.3104189 0.5533834 -0.5284142 0.3104189 0.5533834 -0.5370079 0.3104189 0.5533834 -0.5453253 0.3104189 0.5533834 -0.5533834 0.3104189 0.5533834 -0.5611974 0.3104189 0.5533834 -0.5687816 0.3104189 0.5533834 -0.092819 0.3293248 0.5533834 -0.1056428 0.3293248 0.5533834 -0.1201537 0.3293248 0.5533834 -0.1409607 0.3293248 0.5533834 -0.1678172 0.3293248 0.5533834 -0.1950164 0.3293248 0.5533834 -0.2210581 0.3293248 0.5533834 -0.245636 0.3293248 0.5533834 -0.2686816 0.3293248 0.5533834 -0.2902431 0.3293248 0.5533834 -0.3104189 0.3293248 0.5533834 -0.3293248 0.3293248 0.5533834 -0.3470774 0.3293248 0.5533834 -0.3637862 0.3293248 0.5533834 -0.3795513 0.3293248 0.5533834 -0.3944623 0.3293248 0.5533834 -0.4085988 0.3293248 0.5533834 -0.4220313 0.3293248 0.5533834 -0.4348222 0.3293248 0.5533834 -0.4470264 0.3293248 0.5533834 -0.4586928 0.3293248 0.5533834 -0.4698649 0.3293248 0.5533834 -0.4805811 0.3293248 0.5533834 -0.490876 0.3293248 0.5533834 -0.5007803 0.3293248 0.5533834 -0.510322 0.3293248 0.5533834 -0.5195258 0.3293248 0.5533834 -0.5284142 0.3293248 0.5533834 -0.5370079 0.3293248 0.5533834 -0.5453253 0.3293248 0.5533834 -0.5533834 0.3293248 0.5533834 -0.5611974 0.3293248 0.5533834 -0.5687816 0.3293248 0.5533834 -0.092819 0.3470774 0.5533834 -0.1056428 0.3470774 0.5533834 -0.1201537 0.3470774 0.5533834 -0.1409607 0.3470774 0.5533834 -0.1678172 0.3470774 0.5533834 -0.1950164 0.3470774 0.5533834 -0.2210581 0.3470774 0.5533834 -0.245636 0.3470774 0.5533834 -0.2686816 0.3470774 0.5533834 -0.2902431 0.3470774 0.5533834 -0.3104189 0.3470774 0.5533834 -0.3293248 0.3470774 0.5533834 -0.3470774 0.3470774 0.5533834 -0.3637862 0.3470774 0.5533834 -0.3795513 0.3470774 0.5533834 -0.3944623 0.3470774 0.5533834 -0.4085988 0.3470774 0.5533834 -0.4220313 0.3470774 0.5533834 -0.4348222 0.3470774 0.5533834 -0.4470264 0.3470774 0.5533834 -0.4586928 0.3470774 0.5533834 -0.4698649 0.3470774 0.5533834 -0.4805811 0.3470774 0.5533834 -0.490876 0.3470774 0.5533834 -0.5007803 0.3470774 0.5533834 -0.510322 0.3470774 0.5533834 -0.5195258 0.3470774 0.5533834 -0.5284142 0.3470774 0.5533834 -0.5370079 0.3470774 0.5533834 -0.5453253 0.3470774 0.5533834 -0.5533834 0.3470774 0.5533834 -0.5611974 0.3470774 0.5533834 -0.5687816 0.3470774 0.5533834 -0.092819 0.3637862 0.5533834 -0.1056428 0.3637862 0.5533834 -0.1201537 0.3637862 0.5533834 -0.1409607 0.3637862 0.5533834 -0.1678172 0.3637862 0.5533834 -0.1950164 0.3637862 0.5533834 -0.2210581 0.3637862 0.5533834 -0.245636 0.3637862 0.5533834 -0.2686816 0.3637862 0.5533834 -0.2902431 0.3637862 0.5533834 -0.3104189 0.3637862 0.5533834 -0.3293248 0.3637862 0.5533834 -0.3470774 0.3637862 0.5533834 -0.3637862 0.3637862 0.5533834 -0.3795513 0.3637862 0.5533834 -0.3944623 0.3637862 0.5533834 -0.4085988 0.3637862 0.5533834 -0.4220313 0.3637862 0.5533834 -0.4348222 0.3637862 0.5533834 -0.4470264 0.3637862 0.5533834 -0.4586928 0.3637862 0.5533834 -0.4698649 0.3637862 0.5533834 -0.4805811 0.3637862 0.5533834 -0.490876 0.3637862 0.5533834 -0.5007803 0.3637862 0.5533834 -0.510322 0.3637862 0.5533834 -0.5195258 0.3637862 0.5533834 -0.5284142 0.3637862 0.5533834 -0.5370079 0.3637862 0.5533834 -0.5453253 0.3637862 0.5533834 -0.5533834 0.3637862 0.5533834 -0.5611974 0.3637862 0.5533834 -0.5687816 0.3637862 0.5533834 -0.092819 0.3795513 0.5533834 -0.1056428 0.3795513 0.5533834 -0.1201537 0.3795513 0.5533834 -0.1409607 0.3795513 0.5533834 -0.1678172 0.3795513 0.5533834 -0.1950164 0.3795513 0.5533834 -0.2210581 0.3795513 0.5533834 -0.245636 0.3795513 0.5533834 -0.2686816 0.3795513 0.5533834 -0.2902431 0.3795513 0.5533834 -0.3104189 0.3795513 0.5533834 -0.3293248 0.3795513 0.5533834 -0.3470774 0.3795513 0.5533834 -0.3637862 0.3795513 0.5533834 -0.3795513 0.3795513 0.5533834 -0.3944623 0.3795513 0.5533834 -0.4085988 0.3795513 0.5533834 -0.4220313 0.3795513 0.5533834 -0.4348222 0.3795513 0.5533834 -0.4470264 0.3795513 0.5533834 -0.4586928 0.3795513 0.5533834 -0.4698649 0.3795513 0.5533834 -0.4805811 0.3795513 0.5533834 -0.490876 0.3795513 0.5533834 -0.5007803 0.3795513 0.5533834 -0.510322 0.3795513 0.5533834 -0.5195258 0.3795513 0.5533834 -0.5284142 0.3795513 0.5533834 -0.5370079 0.3795513 0.5533834 -0.5453253 0.3795513 0.5533834 -0.5533834 0.3795513 0.5533834 -0.5611974 0.3795513 0.5533834 -0.5687816 0.3795513 0.5533834 -0.092819 0.3944623 0.5533834 -0.1056428 0.3944623 0.5533834 -0.1201537 0.3944623 0.5533834 -0.1409607 0.3944623 0.5533834 -0.1678172 0.3944623 0.5533834 -0.1950164 0.3944623 0.5533834 -0.2210581 0.3944623 0.5533834 -0.245636 0.3944623 0.5533834 -0.2686816 0.3944623 0.5533834 -0.2902431 0.3944623 0.5533834 -0.3104189 0.3944623 0.5533834 -0.3293248 0.3944623 0.5533834 -0.3470774 0.3944623 0.5533834 -0.3637862 0.3944623 0.5533834 -0.3795513 0.3944623 0.5533834 -0.3944623 0.3944623 0.5533834 -0.4085988 0.3944623 0.5533834 -0.4220313 0.3944623 0.5533834 -0.4348222 0.3944623 0.5533834 -0.4470264 0.3944623 0.5533834 -0.4586928 0.3944623 0.5533834 -0.4698649 0.3944623 0.5533834 -0.4805811 0.3944623 0.5533834 -0.490876 0.3944623 0.5533834 -0.5007803 0.3944623 0.5533834 -0.510322 0.3944623 0.5533834 -0.5195258 0.3944623 0.5533834 -0.5284142 0.3944623 0.5533834 -0.5370079 0.3944623 0.5533834 -0.5453253 0.3944623 0.5533834 -0.5533834 0.3944623 0.5533834 -0.5611974 0.3944623 0.5533834 -0.5687816 0.3944623 0.5533834 -0.092819 0.4085988 0.5533834 -0.1056428 0.4085988 0.5533834 -0.1201537 0.4085988 0.5533834 -0.1409607 0.4085988 0.5533834 -0.1678172 0.4085988 0.5533834 -0.1950164 0.4085988 0.5533834 -0.2210581 0.4085988 0.5533834 -0.245636 0.4085988 0.5533834 -0.2686816 0.4085988 0.5533834 -0.2902431 0.4085988 0.5533834 -0.3104189 0.4085988 0.5533834 -0.3293248 0.4085988 0.5533834 -0.3470774 0.4085988 0.5533834 -0.3637862 0.4085988 0.5533834 -0.3795513 0.4085988 0.5533834 -0.3944623 0.4085988 0.5533834 -0.4085988 0.4085988 0.5533834 -0.4220313 0.4085988 0.5533834 -0.4348222 0.4085988 0.5533834 -0.4470264 0.4085988 0.5533834 -0.4586928 0.4085988 0.5533834 -0.4698649 0.4085988 0.5533834 -0.4805811 0.4085988 0.5533834 -0.490876 0.4085988 0.5533834 -0.5007803 0.4085988 0.5533834 -0.510322 0.4085988 0.5533834 -0.5195258 0.4085988 0.5533834 -0.5284142 0.4085988 0.5533834 -0.5370079 0.4085988 0.5533834 -0.5453253 0.4085988 0.5533834 -0.5533834 0.4085988 0.5533834 -0.5611974 0.4085988 0.5533834 -0.5687816 0.4085988 0.5533834 -0.092819 0.4220313 0.5533834 -0.1056428 0.4220313 0.5533834 -0.1201537 0.4220313 0.5533834 -0.1409607 0.4220313 0.5533834 -0.1678172 0.4220313 0.5533834 -0.1950164 0.4220313 0.5533834 -0.2210581 0.4220313 0.5533834 -0.245636 0.4220313 0.5533834 -0.2686816 0.4220313 0.5533834 -0.2902431 0.4220313 0.5533834 -0.3104189 0.4220313 0.5533834 -0.3293248 0.4220313 0.5533834 -0.3470774 0.4220313 0.5533834 -0.3637862 0.4220313 0.5533834 -0.3795513 0.4220313 0.5533834 -0.3944623 0.4220313 0.5533834 -0.4085988 0.4220313 0.5533834 -0.4220313 0.4220313 0.5533834 -0.4348222 0.4220313 0.5533834 -0.4470264 0.4220313 0.5533834 -0.4586928 0.4220313 0.5533834 -0.4698649 0.4220313 0.5533834 -0.4805811 0.4220313 0.5533834 -0.490876 0.4220313 0.5533834 -0.5007803 0.4220313 0.5533834 -0.510322 0.4220313 0.5533834 -0.5195258 0.4220313 0.5533834 -0.5284142 0.4220313 0.5533834 -0.5370079 0.4220313 0.5533834 -0.5453253 0.4220313 0.5533834 -0.5533834 0.4220313 0.5533834 -0.5611974 0.4220313 0.5533834 -0.5687816 0.4220313 0.5533834 -0.092819 0.4348222 0.5533834 -0.1056428 0.4348222 0.5533834 -0.1201537 0.4348222 0.5533834 -0.1409607 0.4348222 0.5533834 -0.1678172 0.4348222 0.5533834 -0.1950164 0.4348222 0.5533834 -0.2210581 0.4348222 0.5533834 -0.245636 0.4348222 0.5533834 -0.2686816 0.4348222 0.5533834 -0.2902431 0.4348222 0.5533834 -0.3104189 0.4348222 0.5533834 -0.3293248 0.4348222 0.5533834 -0.3470774 0.4348222 0.5533834 -0.3637862 0.4348222 0.5533834 -0.3795513 0.4348222 0.5533834 -0.3944623 0.4348222 0.5533834 -0.4085988 0.4348222 0.5533834 -0.4220313 0.4348222 0.5533834 -0.4348222 0.4348222 0.5533834 -0.4470264 0.4348222 0.5533834 -0.4586928 0.4348222 0.5533834 -0.4698649 0.4348222 0.5533834 -0.4805811 0.4348222 0.5533834 -0.490876 0.4348222 0.5533834 -0.5007803 0.4348222 0.5533834 -0.510322 0.4348222 0.5533834 -0.5195258 0.4348222 0.5533834 -0.5284142 0.4348222 0.5533834 -0.5370079 0.4348222 0.5533834 -0.5453253 0.4348222 0.5533834 -0.5533834 0.4348222 0.5533834 -0.5611974 0.4348222 0.5533834 -0.5687816 0.4348222 0.5533834 -0.092819 0.4470264 0.5533834 -0.1056428 0.4470264 0.5533834 -0.1201537 0.4470264 0.5533834 -0.1409607 0.4470264 0.5533834 -0.1678172 0.4470264 0.5533834 -0.1950164 0.4470264 0.5533834 -0.2210581 0.4470264 0.5533834 -0.245636 0.4470264 0.5533834 -0.2686816 0.4470264 0.5533834 -0.2902431 0.4470264 0.5533834 -0.3104189 0.4470264 0.5533834 -0.3293248 0.4470264 0.5533834 -0.3470774 0.4470264 0.5533834 -0.3637862 0.4470264 0.5533834 -0.3795513 0.4470264 0.5533834 -0.3944623 0.4470264 0.5533834 -0.4085988 0.4470264 0.5533834 -0.4220313 0.4470264 0.5533834 -0.4348222 0.4470264 0.5533834 -0.4470264 0.4470264 0.5533834 -0.4586928 0.4470264 0.5533834 -0.4698649 0.4470264 0.5533834 -0.4805811 0.4470264 0.5533834 -0.490876 0.4470264 0.5533834 -0.5007803 0.4470264 0.5533834 -0.510322 0.4470264 0.5533834 -0.5195258 0.4470264 0.5533834 -0.5284142 0.4470264 0.5533834 -0.5370079 0.4470264 0.5533834 -0.5453253 0.4470264 0.5533834 -0.5533834 0.4470264 0.5533834 -0.5611974 0.4470264 0.5533834 -0.5687816 0.4470264 0.5533834 -0.092819 0.4586928 0.5533834 -0.1056428 0.4586928 0.5533834 -0.1201537 0.4586928 0.5533834 -0.1409607 0.4586928 0.5533834 -0.1678172 0.4586928 0.5533834 -0.1950164 0.4586928 0.5533834 -0.2210581 0.4586928 0.5533834 -0.245636 0.4586928 0.5533834 -0.2686816 0.4586928 0.5533834 -0.2902431 0.4586928 0.5533834 -0.3104189 0.4586928 0.5533834 -0.3293248 0.4586928 0.5533834 -0.3470774 0.4586928 0.5533834 -0.3637862 0.4586928 0.5533834 -0.3795513 0.4586928 0.5533834 -0.3944623 0.4586928 0.5533834 -0.4085988 0.4586928 0.5533834 -0.4220313 0.4586928 0.5533834 -0.4348222 0.4586928 0.5533834 -0.4470264 0.4586928 0.5533834 -0.4586928 0.4586928 0.5533834 -0.4698649 0.4586928 0.5533834 -0.4805811 0.4586928 0.5533834 -0.490876 0.4586928 0.5533834 -0.5007803 0.4586928 0.5533834 -0.510322 0.4586928 0.5533834 -0.5195258 0.4586928 0.5533834 -0.5284142 0.4586928 0.5533834 -0.5370079 0.4586928 0.5533834 -0.5453253 0.4586928 0.5533834 -0.5533834 0.4586928 0.5533834 -0.5611974 0.4586928 0.5533834 -0.5687816 0.4586928 0.5533834 -0.092819 0.4698649 0.5533834 -0.1056428 0.4698649 0.5533834 -0.1201537 0.4698649 0.5533834 -0.1409607 0.4698649 0.5533834 -0.1678172 0.4698649 0.5533834 -0.1950164 0.4698649 0.5533834 -0.2210581 0.4698649 0.5533834 -0.245636 0.4698649 0.5533834 -0.2686816 0.4698649 0.5533834 -0.2902431 0.4698649 0.5533834 -0.3104189 0.4698649 0.5533834 -0.3293248 0.4698649 0.5533834 -0.3470774 0.4698649 0.5533834 -0.3637862 0.4698649 0.5533834 -0.3795513 0.4698649 0.5533834 -0.3944623 0.4698649 0.5533834 -0.4085988 0.4698649 0.5533834 -0.4220313 0.4698649 0.5533834 -0.4348222 0.4698649 0.5533834 -0.4470264 0.4698649 0.5533834 -0.4586928 0.4698649 0.5533834 -0.4698649 0.4698649 0.5533834 -0.4805811 0.4698649 0.5533834 -0.490876 0.4698649 0.5533834 -0.5007803 0.4698649 0.5533834 -0.510322 0.4698649 0.5533834 -0.5195258 0.4698649 0.5533834 -0.5284142 0.4698649 0.5533834 -0.5370079 0.4698649 0.5533834 -0.5453253 0.4698649 0.5533834 -0.5533834 0.4698649 0.5533834 -0.5611974 0.4698649 0.5533834 -0.5687816 0.4698649 0.5533834 -0.092819 0.4805811 0.5533834 -0.1056428 0.4805811 0.5533834 -0.1201537 0.4805811 0.5533834 -0.1409607 0.4805811 0.5533834 -0.1678172 0.4805811 0.5533834 -0.1950164 0.4805811 0.5533834 -0.2210581 0.4805811 0.5533834 -0.245636 0.4805811 0.5533834 -0.2686816 0.4805811 0.5533834 -0.2902431 0.4805811 0.5533834 -0.3104189 0.4805811 0.5533834 -0.3293248 0.4805811 0.5533834 -0.3470774 0.4805811 0.5533834 -0.3637862 0.4805811 0.5533834 -0.3795513 0.4805811 0.5533834 -0.3944623 0.4805811 0.5533834 -0.4085988 0.4805811 0.5533834 -0.4220313 0.4805811 0.5533834 -0.4348222 0.4805811 0.5533834 -0.4470264 0.4805811 0.5533834 -0.4586928 0.4805811 0.5533834 -0.4698649 0.4805811 0.5533834 -0.4805811 0.4805811 0.5533834 -0.490876 0.4805811 0.5533834 -0.5007803 0.4805811 0.5533834 -0.510322 0.4805811 0.5533834 -0.5195258 0.4805811 0.5533834 -0.5284142 0.4805811 0.5533834 -0.5370079 0.4805811 0.5533834 -0.5453253 0.4805811 0.5533834 -0.5533834 0.4805811 0.5533834 -0.5611974 0.4805811 0.5533834 -0.5687816 0.4805811 0.5533834 -0.092819 0.490876 0.5533834 -0.1056428 0.490876 0.5533834 -0.1201537 0.490876 0.5533834 -0.1409607 0.490876 0.5533834 -0.1678172 0.490876 0.5533834 -0.1950164 0.490876 0.5533834 -0.2210581 0.490876 0.5533834 -0.245636 0.490876 0.5533834 -0.2686816 0.490876 0.5533834 -0.2902431 0.490876 0.5533834 -0.3104189 0.490876 0.5533834 -0.3293248 0.490876 0.5533834 -0.3470774 0.490876 0.5533834 -0.3637862 0.490876 0.5533834 -0.3795513 0.490876 0.5533834 -0.3944623 0.490876 0.5533834 -0.4085988 0.490876 0.5533834 -0.4220313 0.490876 0.5533834 -0.4348222 0.490876 0.5533834 -0.4470264 0.490876 0.5533834 -0.4586928 0.490876 0.5533834 -0.4698649 0.490876 0.5533834 -0.4805811 0.490876 0.5533834 -0.490876 0.490876 0.5533834 -0.5007803 0.490876 0.5533834 -0.510322 0.490876 0.5533834 -0.5195258 0.490876 0.5533834 -0.5284142 0.490876 0.5533834 -0.5370079 0.490876 0.5533834 -0.5453253 0.490876 0.5533834 -0.5533834 0.490876 0.5533834 -0.5611974 0.490876 0.5533834 -0.5687816 0.490876 0.5533834 -0.092819 0.5007803 0.5533834 -0.1056428 0.5007803 0.5533834 -0.1201537 0.5007803 0.5533834 -0.1409607 0.5007803 0.5533834 -0.1678172 0.5007803 0.5533834 -0.1950164 0.5007803 0.5533834 -0.2210581 0.5007803 0.5533834 -0.245636 0.5007803 0.5533834 -0.2686816 0.5007803 0.5533834 -0.2902431 0.5007803 0.5533834 -0.3104189 0.5007803 0.5533834 -0.3293248 0.5007803 0.5533834 -0.3470774 0.5007803 0.5533834 -0.3637862 0.5007803 0.5533834 -0.3795513 0.5007803 0.5533834 -0.3944623 0.5007803 0.5533834 -0.4085988 0.5007803 0.5533834 -0.4220313 0.5007803 0.5533834 -0.4348222 0.5007803 0.5533834 -0.4470264 0.5007803 0.5533834 -0.4586928 0.5007803 0.5533834 -0.4698649 0.5007803 0.5533834 -0.4805811 0.5007803 0.5533834 -0.490876 0.5007803 0.5533834 -0.5007803 0.5007803 0.5533834 -0.510322 0.5007803 0.5533834 -0.5195258 0.5007803 0.5533834 -0.5284142 0.5007803 0.5533834 -0.5370079 0.5007803 0.5533834 -0.5453253 0.5007803 0.5533834 -0.5533834 0.5007803 0.5533834 -0.5611974 0.5007803 0.5533834 -0.5687816 0.5007803 0.5533834 -0.092819 0.510322 0.5533834 -0.1056428 0.510322 0.5533834 -0.1201537 0.510322 0.5533834 -0.1409607 0.510322 0.5533834 -0.1678172 0.510322 0.5533834 -0.1950164 0.510322 0.5533834 -0.2210581 0.510322 0.5533834 -0.245636 0.510322 0.5533834 -0.2686816 0.510322 0.5533834 -0.2902431 0.510322 0.5533834 -0.3104189 0.510322 0.5533834 -0.3293248 0.510322 0.5533834 -0.3470774 0.510322 0.5533834 -0.3637862 0.510322 0.5533834 -0.3795513 0.510322 0.5533834 -0.3944623 0.510322 0.5533834 -0.4085988 0.510322 0.5533834 -0.4220313 0.510322 0.5533834 -0.4348222 0.510322 0.5533834 -0.4470264 0.510322 0.5533834 -0.4586928 0.510322 0.5533834 -0.4698649 0.510322 0.5533834 -0.4805811 0.510322 0.5533834 -0.490876 0.510322 0.5533834 -0.5007803 0.510322 0.5533834 -0.510322 0.510322 0.5533834 -0.5195258 0.510322 0.5533834 -0.5284142 0.510322 0.5533834 -0.5370079 0.510322 0.5533834 -0.5453253 0.510322 0.5533834 -0.5533834 0.510322 0.5533834 -0.5611974 0.510322 0.5533834 -0.5687816 0.510322 0.5533834 -0.092819 0.5195258 0.5533834 -0.1056428 0.5195258 0.5533834 -0.1201537 0.5195258 0.5533834 -0.1409607 0.5195258 0.5533834 -0.1678172 0.5195258 0.5533834 -0.1950164 0.5195258 0.5533834 -0.2210581 0.5195258 0.5533834 -0.245636 0.5195258 0.5533834 -0.2686816 0.5195258 0.5533834 -0.2902431 0.5195258 0.5533834 -0.3104189 0.5195258 0.5533834 -0.3293248 0.5195258 0.5533834 -0.3470774 0.5195258 0.5533834 -0.3637862 0.5195258 0.5533834 -0.3795513 0.5195258 0.5533834 -0.3944623 0.5195258 0.5533834 -0.4085988 0.5195258 0.5533834 -0.4220313 0.5195258 0.5533834 -0.4348222 0.5195258 0.5533834 -0.4470264 0.5195258 0.5533834 -0.4586928 0.5195258 0.5533834 -0.4698649 0.5195258 0.5533834 -0.4805811 0.5195258 0.5533834 -0.490876 0.5195258 0.5533834 -0.5007803 0.5195258 0.5533834 -0.510322 0.5195258 0.5533834 -0.5195258 0.5195258 0.5533834 -0.5284142 0.5195258 0.5533834 -0.5370079 0.5195258 0.5533834 -0.5453253 0.5195258 0.5533834 -0.5533834 0.5195258 0.5533834 -0.5611974 0.5195258 0.5533834 -0.5687816 0.5195258 0.5533834 -0.092819 0.5284142 0.5533834 -0.1056428 0.5284142 0.5533834 -0.1201537 0.5284142 0.5533834 -0.1409607 0.5284142 0.5533834 -0.1678172 0.5284142 0.5533834 -0.1950164 0.5284142 0.5533834 -0.2210581 0.5284142 0.5533834 -0.245636 0.5284142 0.5533834 -0.2686816 0.5284142 0.5533834 -0.2902431 0.5284142 0.5533834 -0.3104189 0.5284142 0.5533834 -0.3293248 0.5284142 0.5533834 -0.3470774 0.5284142 0.5533834 -0.3637862 0.5284142 0.5533834 -0.3795513 0.5284142 0.5533834 -0.3944623 0.5284142 0.5533834 -0.4085988 0.5284142 0.5533834 -0.4220313 0.5284142 0.5533834 -0.4348222 0.5284142 0.5533834 -0.4470264 0.5284142 0.5533834 -0.4586928 0.5284142 0.5533834 -0.4698649 0.5284142 0.5533834 -0.4805811 0.5284142 0.5533834 -0.490876 0.5284142 0.5533834 -0.5007803 0.5284142 0.5533834 -0.510322 0.5284142 0.5533834 -0.5195258 0.5284142 0.5533834 -0.5284142 0.5284142 0.5533834 -0.5370079 0.5284142 0.5533834 -0.5453253 0.5284142 0.5533834 -0.5533834 0.5284142 0.5533834 -0.5611974 0.5284142 0.5533834 -0.5687816 0.5284142 0.5533834 -0.092819 0.5370079 0.5533834 -0.1056428 0.5370079 0.5533834 -0.1201537 0.5370079 0.5533834 -0.1409607 0.5370079 0.5533834 -0.1678172 0.5370079 0.5533834 -0.1950164 0.5370079 0.5533834 -0.2210581 0.5370079 0.5533834 -0.245636 0.5370079 0.5533834 -0.2686816 0.5370079 0.5533834 -0.2902431 0.5370079 0.5533834 -0.3104189 0.5370079 0.5533834 -0.3293248 0.5370079 0.5533834 -0.3470774 0.5370079 0.5533834 -0.3637862 0.5370079 0.5533834 -0.3795513 0.5370079 0.5533834 -0.3944623 0.5370079 0.5533834 -0.4085988 0.5370079 0.5533834 -0.4220313 0.5370079 0.5533834 -0.4348222 0.5370079 0.5533834 -0.4470264 0.5370079 0.5533834 -0.4586928 0.5370079 0.5533834 -0.4698649 0.5370079 0.5533834 -0.4805811 0.5370079 0.5533834 -0.490876 0.5370079 0.5533834 -0.5007803 0.5370079 0.5533834 -0.510322 0.5370079 0.5533834 -0.5195258 0.5370079 0.5533834 -0.5284142 0.5370079 0.5533834 -0.5370079 0.5370079 0.5533834 -0.5453253 0.5370079 0.5533834 -0.5533834 0.5370079 0.5533834 -0.5611974 0.5370079 0.5533834 -0.5687816 0.5370079 0.5533834 -0.092819 0.5453253 0.5533834 -0.1056428 0.5453253 0.5533834 -0.1201537 0.5453253 0.5533834 -0.1409607 0.5453253 0.5533834 -0.1678172 0.5453253 0.5533834 -0.1950164 0.5453253 0.5533834 -0.2210581 0.5453253 0.5533834 -0.245636 0.5453253 0.5533834 -0.2686816 0.5453253 0.5533834 -0.2902431 0.5453253 0.5533834 -0.3104189 0.5453253 0.5533834 -0.3293248 0.5453253 0.5533834 -0.3470774 0.5453253 0.5533834 -0.3637862 0.5453253 0.5533834 -0.3795513 0.5453253 0.5533834 -0.3944623 0.5453253 0.5533834 -0.4085988 0.5453253 0.5533834 -0.4220313 0.5453253 0.5533834 -0.4348222 0.5453253 0.5533834 -0.4470264 0.5453253 0.5533834 -0.4586928 0.5453253 0.5533834 -0.4698649 0.5453253 0.5533834 -0.4805811 0.5453253 0.5533834 -0.490876 0.5453253 0.5533834 -0.5007803 0.5453253 0.5533834 -0.510322 0.5453253 0.5533834 -0.5195258 0.5453253 0.5533834 -0.5284142 0.5453253 0.5533834 -0.5370079 0.5453253 0.5533834 -0.5453253 0.5453253 0.5533834 -0.5533834 0.5453253 0.5533834 -0.5611974 0.5453253 0.5533834 -0.5687816 0.5453253 0.5533834 -0.092819 0.5533834 0.5533834 -0.1056428 0.5533834 0.5533834 -0.1201537 0.5533834 0.5533834 -0.1409607 0.5533834 0.5533834 -0.1678172 0.5533834 0.5533834 -0.1950164 0.5533834 0.5533834 -0.2210581 0.5533834 0.5533834 -0.245636 0.5533834 0.5533834 -0.2686816 0.5533834 0.5533834 -0.2902431 0.5533834 0.5533834 -0.3104189 0.5533834 0.5533834 -0.3293248 0.5533834 0.5533834 -0.3470774 0.5533834 0.5533834 -0.3637862 0.5533834 0.5533834 -0.3795513 0.5533834 0.5533834 -0.3944623 0.5533834 0.5533834 -0.4085988 0.5533834 0.5533834 -0.4220313 0.5533834 0.5533834 -0.4348222 0.5533834 0.5533834 -0.4470264 0.5533834 0.5533834 -0.4586928 0.5533834 0.5533834 -0.4698649 0.5533834 0.5533834 -0.4805811 0.5533834 0.5533834 -0.490876 0.5533834 0.5533834 -0.5007803 0.5533834 0.5533834 -0.510322 0.5533834 0.5533834 -0.5195258 0.5533834 0.5533834 -0.5284142 0.5533834 0.5533834 -0.5370079 0.5533834 0.5533834 -0.5453253 0.5533834 0.5533834 -0.5533834 0.5533834 0.5533834 -0.5611974 0.5533834 0.5533834 -0.5687816 0.5533834 0.5533834 -0.092819 0.5611974 0.5533834 -0.1056428 0.5611974 0.5533834 -0.1201537 0.5611974 0.5533834 -0.1409607 0.5611974 0.5533834 -0.1678172 0.5611974 0.5533834 -0.1950164 0.5611974 0.5533834 -0.2210581 0.5611974 0.5533834 -0.245636 0.5611974 0.5533834 -0.2686816 0.5611974 0.5533834 -0.2902431 0.5611974 0.5533834 -0.3104189 0.5611974 0.5533834 -0.3293248 0.5611974 0.5533834 -0.3470774 0.5611974 0.5533834 -0.3637862 0.5611974 0.5533834 -0.3795513 0.5611974 0.5533834 -0.3944623 0.5611974 0.5533834 -0.4085988 0.5611974 0.5533834 -0.4220313 0.5611974 0.5533834 -0.4348222 0.5611974 0.5533834 -0.4470264 0.5611974 0.5533834 -0.4586928 0.5611974 0.5533834 -0.4698649 0.5611974 0.5533834 -0.4805811 0.5611974 0.5533834 -0.490876 0.5611974 0.5533834 -0.5007803 0.5611974 0.5533834 -0.510322 0.5611974 0.5533834 -0.5195258 0.5611974 0.5533834 -0.5284142 0.5611974 0.5533834 -0.5370079 0.5611974 0.5533834 -0.5453253 0.5611974 0.5533834 -0.5533834 0.5611974 0.5533834 -0.5611974 0.5611974 0.5533834 -0.5687816 0.5611974 0.5533834 -0.092819 0.5687816 0.5533834 -0.1056428 0.5687816 0.5533834 -0.1201537 0.5687816 0.5533834 -0.1409607 0.5687816 0.5533834 -0.1678172 0.5687816 0.5533834 -0.1950164 0.5687816 0.5533834 -0.2210581 0.5687816 0.5533834 -0.245636 0.5687816 0.5533834 -0.2686816 0.5687816 0.5533834 -0.2902431 0.5687816 0.5533834 -0.3104189 0.5687816 0.5533834 -0.3293248 0.5687816 0.5533834 -0.3470774 0.5687816 0.5533834 -0.3637862 0.5687816 0.5533834 -0.3795513 0.5687816 0.5533834 -0.3944623 0.5687816 0.5533834 -0.4085988 0.5687816 0.5533834 -0.4220313 0.5687816 0.5533834 -0.4348222 0.5687816 0.5533834 -0.4470264 0.5687816 0.5533834 -0.4586928 0.5687816 0.5533834 -0.4698649 0.5687816 0.5533834 -0.4805811 0.5687816 0.5533834 -0.490876 0.5687816 0.5533834 -0.5007803 0.5687816 0.5533834 -0.510322 0.5687816 0.5533834 -0.5195258 0.5687816 0.5533834 -0.5284142 0.5687816 0.5533834 -0.5370079 0.5687816 0.5533834 -0.5453253 0.5687816 0.5533834 -0.5533834 0.5687816 0.5533834 -0.5611974 0.5687816 0.5533834 -0.5687816 0.5687816 0.5533834 -0.092819 0.092819 0.5611974 -0.1056428 0.092819 0.5611974 -0.1201537 0.092819 0.5611974 -0.1409607 0.092819 0.5611974 -0.1678172 0.092819 0.5611974 -0.1950164 0.092819 0.5611974 -0.2210581 0.092819 0.5611974 -0.245636 0.092819 0.5611974 -0.2686816 0.092819 0.5611974 -0.2902431 0.092819 0.5611974 -0.3104189 0.092819 0.5611974 -0.3293248 0.092819 0.5611974 -0.3470774 0.092819 0.5611974 -0.3637862 0.092819 0.5611974 -0.3795513 0.092819 0.5611974 -0.3944623 0.092819 0.5611974 -0.4085988 0.092819 0.5611974 -0.4220313 0.092819 0.5611974 -0.4348222 0.092819 0.5611974 -0.4470264 0.092819 0.5611974 -0.4586928 0.092819 0.5611974 -0.4698649 0.092819 0.5611974 -0.4805811 0.092819 0.5611974 -0.490876 0.092819 0.5611974 -0.5007803 0.092819 0.5611974 -0.510322 0.092819 0.5611974 -0.5195258 0.092819 0.5611974 -0.5284142 0.092819 0.5611974 -0.5370079 0.092819 0.5611974 -0.5453253 0.092819 0.5611974 -0.5533834 0.092819 0.5611974 -0.5611974 0.092819 0.5611974 -0.5687816 0.092819 0.5611974 -0.092819 0.1056428 0.5611974 -0.1056428 0.1056428 0.5611974 -0.1201537 0.1056428 0.5611974 -0.1409607 0.1056428 0.5611974 -0.1678172 0.1056428 0.5611974 -0.1950164 0.1056428 0.5611974 -0.2210581 0.1056428 0.5611974 -0.245636 0.1056428 0.5611974 -0.2686816 0.1056428 0.5611974 -0.2902431 0.1056428 0.5611974 -0.3104189 0.1056428 0.5611974 -0.3293248 0.1056428 0.5611974 -0.3470774 0.1056428 0.5611974 -0.3637862 0.1056428 0.5611974 -0.3795513 0.1056428 0.5611974 -0.3944623 0.1056428 0.5611974 -0.4085988 0.1056428 0.5611974 -0.4220313 0.1056428 0.5611974 -0.4348222 0.1056428 0.5611974 -0.4470264 0.1056428 0.5611974 -0.4586928 0.1056428 0.5611974 -0.4698649 0.1056428 0.5611974 -0.4805811 0.1056428 0.5611974 -0.490876 0.1056428 0.5611974 -0.5007803 0.1056428 0.5611974 -0.510322 0.1056428 0.5611974 -0.5195258 0.1056428 0.5611974 -0.5284142 0.1056428 0.5611974 -0.5370079 0.1056428 0.5611974 -0.5453253 0.1056428 0.5611974 -0.5533834 0.1056428 0.5611974 -0.5611974 0.1056428 0.5611974 -0.5687816 0.1056428 0.5611974 -0.092819 0.1201537 0.5611974 -0.1056428 0.1201537 0.5611974 -0.1201537 0.1201537 0.5611974 -0.1409607 0.1201537 0.5611974 -0.1678172 0.1201537 0.5611974 -0.1950164 0.1201537 0.5611974 -0.2210581 0.1201537 0.5611974 -0.245636 0.1201537 0.5611974 -0.2686816 0.1201537 0.5611974 -0.2902431 0.1201537 0.5611974 -0.3104189 0.1201537 0.5611974 -0.3293248 0.1201537 0.5611974 -0.3470774 0.1201537 0.5611974 -0.3637862 0.1201537 0.5611974 -0.3795513 0.1201537 0.5611974 -0.3944623 0.1201537 0.5611974 -0.4085988 0.1201537 0.5611974 -0.4220313 0.1201537 0.5611974 -0.4348222 0.1201537 0.5611974 -0.4470264 0.1201537 0.5611974 -0.4586928 0.1201537 0.5611974 -0.4698649 0.1201537 0.5611974 -0.4805811 0.1201537 0.5611974 -0.490876 0.1201537 0.5611974 -0.5007803 0.1201537 0.5611974 -0.510322 0.1201537 0.5611974 -0.5195258 0.1201537 0.5611974 -0.5284142 0.1201537 0.5611974 -0.5370079 0.1201537 0.5611974 -0.5453253 0.1201537 0.5611974 -0.5533834 0.1201537 0.5611974 -0.5611974 0.1201537 0.5611974 -0.5687816 0.1201537 0.5611974 -0.092819 0.1409607 0.5611974 -0.1056428 0.1409607 0.5611974 -0.1201537 0.1409607 0.5611974 -0.1409607 0.1409607 0.5611974 -0.1678172 0.1409607 0.5611974 -0.1950164 0.1409607 0.5611974 -0.2210581 0.1409607 0.5611974 -0.245636 0.1409607 0.5611974 -0.2686816 0.1409607 0.5611974 -0.2902431 0.1409607 0.5611974 -0.3104189 0.1409607 0.5611974 -0.3293248 0.1409607 0.5611974 -0.3470774 0.1409607 0.5611974 -0.3637862 0.1409607 0.5611974 -0.3795513 0.1409607 0.5611974 -0.3944623 0.1409607 0.5611974 -0.4085988 0.1409607 0.5611974 -0.4220313 0.1409607 0.5611974 -0.4348222 0.1409607 0.5611974 -0.4470264 0.1409607 0.5611974 -0.4586928 0.1409607 0.5611974 -0.4698649 0.1409607 0.5611974 -0.4805811 0.1409607 0.5611974 -0.490876 0.1409607 0.5611974 -0.5007803 0.1409607 0.5611974 -0.510322 0.1409607 0.5611974 -0.5195258 0.1409607 0.5611974 -0.5284142 0.1409607 0.5611974 -0.5370079 0.1409607 0.5611974 -0.5453253 0.1409607 0.5611974 -0.5533834 0.1409607 0.5611974 -0.5611974 0.1409607 0.5611974 -0.5687816 0.1409607 0.5611974 -0.092819 0.1678172 0.5611974 -0.1056428 0.1678172 0.5611974 -0.1201537 0.1678172 0.5611974 -0.1409607 0.1678172 0.5611974 -0.1678172 0.1678172 0.5611974 -0.1950164 0.1678172 0.5611974 -0.2210581 0.1678172 0.5611974 -0.245636 0.1678172 0.5611974 -0.2686816 0.1678172 0.5611974 -0.2902431 0.1678172 0.5611974 -0.3104189 0.1678172 0.5611974 -0.3293248 0.1678172 0.5611974 -0.3470774 0.1678172 0.5611974 -0.3637862 0.1678172 0.5611974 -0.3795513 0.1678172 0.5611974 -0.3944623 0.1678172 0.5611974 -0.4085988 0.1678172 0.5611974 -0.4220313 0.1678172 0.5611974 -0.4348222 0.1678172 0.5611974 -0.4470264 0.1678172 0.5611974 -0.4586928 0.1678172 0.5611974 -0.4698649 0.1678172 0.5611974 -0.4805811 0.1678172 0.5611974 -0.490876 0.1678172 0.5611974 -0.5007803 0.1678172 0.5611974 -0.510322 0.1678172 0.5611974 -0.5195258 0.1678172 0.5611974 -0.5284142 0.1678172 0.5611974 -0.5370079 0.1678172 0.5611974 -0.5453253 0.1678172 0.5611974 -0.5533834 0.1678172 0.5611974 -0.5611974 0.1678172 0.5611974 -0.5687816 0.1678172 0.5611974 -0.092819 0.1950164 0.5611974 -0.1056428 0.1950164 0.5611974 -0.1201537 0.1950164 0.5611974 -0.1409607 0.1950164 0.5611974 -0.1678172 0.1950164 0.5611974 -0.1950164 0.1950164 0.5611974 -0.2210581 0.1950164 0.5611974 -0.245636 0.1950164 0.5611974 -0.2686816 0.1950164 0.5611974 -0.2902431 0.1950164 0.5611974 -0.3104189 0.1950164 0.5611974 -0.3293248 0.1950164 0.5611974 -0.3470774 0.1950164 0.5611974 -0.3637862 0.1950164 0.5611974 -0.3795513 0.1950164 0.5611974 -0.3944623 0.1950164 0.5611974 -0.4085988 0.1950164 0.5611974 -0.4220313 0.1950164 0.5611974 -0.4348222 0.1950164 0.5611974 -0.4470264 0.1950164 0.5611974 -0.4586928 0.1950164 0.5611974 -0.4698649 0.1950164 0.5611974 -0.4805811 0.1950164 0.5611974 -0.490876 0.1950164 0.5611974 -0.5007803 0.1950164 0.5611974 -0.510322 0.1950164 0.5611974 -0.5195258 0.1950164 0.5611974 -0.5284142 0.1950164 0.5611974 -0.5370079 0.1950164 0.5611974 -0.5453253 0.1950164 0.5611974 -0.5533834 0.1950164 0.5611974 -0.5611974 0.1950164 0.5611974 -0.5687816 0.1950164 0.5611974 -0.092819 0.2210581 0.5611974 -0.1056428 0.2210581 0.5611974 -0.1201537 0.2210581 0.5611974 -0.1409607 0.2210581 0.5611974 -0.1678172 0.2210581 0.5611974 -0.1950164 0.2210581 0.5611974 -0.2210581 0.2210581 0.5611974 -0.245636 0.2210581 0.5611974 -0.2686816 0.2210581 0.5611974 -0.2902431 0.2210581 0.5611974 -0.3104189 0.2210581 0.5611974 -0.3293248 0.2210581 0.5611974 -0.3470774 0.2210581 0.5611974 -0.3637862 0.2210581 0.5611974 -0.3795513 0.2210581 0.5611974 -0.3944623 0.2210581 0.5611974 -0.4085988 0.2210581 0.5611974 -0.4220313 0.2210581 0.5611974 -0.4348222 0.2210581 0.5611974 -0.4470264 0.2210581 0.5611974 -0.4586928 0.2210581 0.5611974 -0.4698649 0.2210581 0.5611974 -0.4805811 0.2210581 0.5611974 -0.490876 0.2210581 0.5611974 -0.5007803 0.2210581 0.5611974 -0.510322 0.2210581 0.5611974 -0.5195258 0.2210581 0.5611974 -0.5284142 0.2210581 0.5611974 -0.5370079 0.2210581 0.5611974 -0.5453253 0.2210581 0.5611974 -0.5533834 0.2210581 0.5611974 -0.5611974 0.2210581 0.5611974 -0.5687816 0.2210581 0.5611974 -0.092819 0.245636 0.5611974 -0.1056428 0.245636 0.5611974 -0.1201537 0.245636 0.5611974 -0.1409607 0.245636 0.5611974 -0.1678172 0.245636 0.5611974 -0.1950164 0.245636 0.5611974 -0.2210581 0.245636 0.5611974 -0.245636 0.245636 0.5611974 -0.2686816 0.245636 0.5611974 -0.2902431 0.245636 0.5611974 -0.3104189 0.245636 0.5611974 -0.3293248 0.245636 0.5611974 -0.3470774 0.245636 0.5611974 -0.3637862 0.245636 0.5611974 -0.3795513 0.245636 0.5611974 -0.3944623 0.245636 0.5611974 -0.4085988 0.245636 0.5611974 -0.4220313 0.245636 0.5611974 -0.4348222 0.245636 0.5611974 -0.4470264 0.245636 0.5611974 -0.4586928 0.245636 0.5611974 -0.4698649 0.245636 0.5611974 -0.4805811 0.245636 0.5611974 -0.490876 0.245636 0.5611974 -0.5007803 0.245636 0.5611974 -0.510322 0.245636 0.5611974 -0.5195258 0.245636 0.5611974 -0.5284142 0.245636 0.5611974 -0.5370079 0.245636 0.5611974 -0.5453253 0.245636 0.5611974 -0.5533834 0.245636 0.5611974 -0.5611974 0.245636 0.5611974 -0.5687816 0.245636 0.5611974 -0.092819 0.2686816 0.5611974 -0.1056428 0.2686816 0.5611974 -0.1201537 0.2686816 0.5611974 -0.1409607 0.2686816 0.5611974 -0.1678172 0.2686816 0.5611974 -0.1950164 0.2686816 0.5611974 -0.2210581 0.2686816 0.5611974 -0.245636 0.2686816 0.5611974 -0.2686816 0.2686816 0.5611974 -0.2902431 0.2686816 0.5611974 -0.3104189 0.2686816 0.5611974 -0.3293248 0.2686816 0.5611974 -0.3470774 0.2686816 0.5611974 -0.3637862 0.2686816 0.5611974 -0.3795513 0.2686816 0.5611974 -0.3944623 0.2686816 0.5611974 -0.4085988 0.2686816 0.5611974 -0.4220313 0.2686816 0.5611974 -0.4348222 0.2686816 0.5611974 -0.4470264 0.2686816 0.5611974 -0.4586928 0.2686816 0.5611974 -0.4698649 0.2686816 0.5611974 -0.4805811 0.2686816 0.5611974 -0.490876 0.2686816 0.5611974 -0.5007803 0.2686816 0.5611974 -0.510322 0.2686816 0.5611974 -0.5195258 0.2686816 0.5611974 -0.5284142 0.2686816 0.5611974 -0.5370079 0.2686816 0.5611974 -0.5453253 0.2686816 0.5611974 -0.5533834 0.2686816 0.5611974 -0.5611974 0.2686816 0.5611974 -0.5687816 0.2686816 0.5611974 -0.092819 0.2902431 0.5611974 -0.1056428 0.2902431 0.5611974 -0.1201537 0.2902431 0.5611974 -0.1409607 0.2902431 0.5611974 -0.1678172 0.2902431 0.5611974 -0.1950164 0.2902431 0.5611974 -0.2210581 0.2902431 0.5611974 -0.245636 0.2902431 0.5611974 -0.2686816 0.2902431 0.5611974 -0.2902431 0.2902431 0.5611974 -0.3104189 0.2902431 0.5611974 -0.3293248 0.2902431 0.5611974 -0.3470774 0.2902431 0.5611974 -0.3637862 0.2902431 0.5611974 -0.3795513 0.2902431 0.5611974 -0.3944623 0.2902431 0.5611974 -0.4085988 0.2902431 0.5611974 -0.4220313 0.2902431 0.5611974 -0.4348222 0.2902431 0.5611974 -0.4470264 0.2902431 0.5611974 -0.4586928 0.2902431 0.5611974 -0.4698649 0.2902431 0.5611974 -0.4805811 0.2902431 0.5611974 -0.490876 0.2902431 0.5611974 -0.5007803 0.2902431 0.5611974 -0.510322 0.2902431 0.5611974 -0.5195258 0.2902431 0.5611974 -0.5284142 0.2902431 0.5611974 -0.5370079 0.2902431 0.5611974 -0.5453253 0.2902431 0.5611974 -0.5533834 0.2902431 0.5611974 -0.5611974 0.2902431 0.5611974 -0.5687816 0.2902431 0.5611974 -0.092819 0.3104189 0.5611974 -0.1056428 0.3104189 0.5611974 -0.1201537 0.3104189 0.5611974 -0.1409607 0.3104189 0.5611974 -0.1678172 0.3104189 0.5611974 -0.1950164 0.3104189 0.5611974 -0.2210581 0.3104189 0.5611974 -0.245636 0.3104189 0.5611974 -0.2686816 0.3104189 0.5611974 -0.2902431 0.3104189 0.5611974 -0.3104189 0.3104189 0.5611974 -0.3293248 0.3104189 0.5611974 -0.3470774 0.3104189 0.5611974 -0.3637862 0.3104189 0.5611974 -0.3795513 0.3104189 0.5611974 -0.3944623 0.3104189 0.5611974 -0.4085988 0.3104189 0.5611974 -0.4220313 0.3104189 0.5611974 -0.4348222 0.3104189 0.5611974 -0.4470264 0.3104189 0.5611974 -0.4586928 0.3104189 0.5611974 -0.4698649 0.3104189 0.5611974 -0.4805811 0.3104189 0.5611974 -0.490876 0.3104189 0.5611974 -0.5007803 0.3104189 0.5611974 -0.510322 0.3104189 0.5611974 -0.5195258 0.3104189 0.5611974 -0.5284142 0.3104189 0.5611974 -0.5370079 0.3104189 0.5611974 -0.5453253 0.3104189 0.5611974 -0.5533834 0.3104189 0.5611974 -0.5611974 0.3104189 0.5611974 -0.5687816 0.3104189 0.5611974 -0.092819 0.3293248 0.5611974 -0.1056428 0.3293248 0.5611974 -0.1201537 0.3293248 0.5611974 -0.1409607 0.3293248 0.5611974 -0.1678172 0.3293248 0.5611974 -0.1950164 0.3293248 0.5611974 -0.2210581 0.3293248 0.5611974 -0.245636 0.3293248 0.5611974 -0.2686816 0.3293248 0.5611974 -0.2902431 0.3293248 0.5611974 -0.3104189 0.3293248 0.5611974 -0.3293248 0.3293248 0.5611974 -0.3470774 0.3293248 0.5611974 -0.3637862 0.3293248 0.5611974 -0.3795513 0.3293248 0.5611974 -0.3944623 0.3293248 0.5611974 -0.4085988 0.3293248 0.5611974 -0.4220313 0.3293248 0.5611974 -0.4348222 0.3293248 0.5611974 -0.4470264 0.3293248 0.5611974 -0.4586928 0.3293248 0.5611974 -0.4698649 0.3293248 0.5611974 -0.4805811 0.3293248 0.5611974 -0.490876 0.3293248 0.5611974 -0.5007803 0.3293248 0.5611974 -0.510322 0.3293248 0.5611974 -0.5195258 0.3293248 0.5611974 -0.5284142 0.3293248 0.5611974 -0.5370079 0.3293248 0.5611974 -0.5453253 0.3293248 0.5611974 -0.5533834 0.3293248 0.5611974 -0.5611974 0.3293248 0.5611974 -0.5687816 0.3293248 0.5611974 -0.092819 0.3470774 0.5611974 -0.1056428 0.3470774 0.5611974 -0.1201537 0.3470774 0.5611974 -0.1409607 0.3470774 0.5611974 -0.1678172 0.3470774 0.5611974 -0.1950164 0.3470774 0.5611974 -0.2210581 0.3470774 0.5611974 -0.245636 0.3470774 0.5611974 -0.2686816 0.3470774 0.5611974 -0.2902431 0.3470774 0.5611974 -0.3104189 0.3470774 0.5611974 -0.3293248 0.3470774 0.5611974 -0.3470774 0.3470774 0.5611974 -0.3637862 0.3470774 0.5611974 -0.3795513 0.3470774 0.5611974 -0.3944623 0.3470774 0.5611974 -0.4085988 0.3470774 0.5611974 -0.4220313 0.3470774 0.5611974 -0.4348222 0.3470774 0.5611974 -0.4470264 0.3470774 0.5611974 -0.4586928 0.3470774 0.5611974 -0.4698649 0.3470774 0.5611974 -0.4805811 0.3470774 0.5611974 -0.490876 0.3470774 0.5611974 -0.5007803 0.3470774 0.5611974 -0.510322 0.3470774 0.5611974 -0.5195258 0.3470774 0.5611974 -0.5284142 0.3470774 0.5611974 -0.5370079 0.3470774 0.5611974 -0.5453253 0.3470774 0.5611974 -0.5533834 0.3470774 0.5611974 -0.5611974 0.3470774 0.5611974 -0.5687816 0.3470774 0.5611974 -0.092819 0.3637862 0.5611974 -0.1056428 0.3637862 0.5611974 -0.1201537 0.3637862 0.5611974 -0.1409607 0.3637862 0.5611974 -0.1678172 0.3637862 0.5611974 -0.1950164 0.3637862 0.5611974 -0.2210581 0.3637862 0.5611974 -0.245636 0.3637862 0.5611974 -0.2686816 0.3637862 0.5611974 -0.2902431 0.3637862 0.5611974 -0.3104189 0.3637862 0.5611974 -0.3293248 0.3637862 0.5611974 -0.3470774 0.3637862 0.5611974 -0.3637862 0.3637862 0.5611974 -0.3795513 0.3637862 0.5611974 -0.3944623 0.3637862 0.5611974 -0.4085988 0.3637862 0.5611974 -0.4220313 0.3637862 0.5611974 -0.4348222 0.3637862 0.5611974 -0.4470264 0.3637862 0.5611974 -0.4586928 0.3637862 0.5611974 -0.4698649 0.3637862 0.5611974 -0.4805811 0.3637862 0.5611974 -0.490876 0.3637862 0.5611974 -0.5007803 0.3637862 0.5611974 -0.510322 0.3637862 0.5611974 -0.5195258 0.3637862 0.5611974 -0.5284142 0.3637862 0.5611974 -0.5370079 0.3637862 0.5611974 -0.5453253 0.3637862 0.5611974 -0.5533834 0.3637862 0.5611974 -0.5611974 0.3637862 0.5611974 -0.5687816 0.3637862 0.5611974 -0.092819 0.3795513 0.5611974 -0.1056428 0.3795513 0.5611974 -0.1201537 0.3795513 0.5611974 -0.1409607 0.3795513 0.5611974 -0.1678172 0.3795513 0.5611974 -0.1950164 0.3795513 0.5611974 -0.2210581 0.3795513 0.5611974 -0.245636 0.3795513 0.5611974 -0.2686816 0.3795513 0.5611974 -0.2902431 0.3795513 0.5611974 -0.3104189 0.3795513 0.5611974 -0.3293248 0.3795513 0.5611974 -0.3470774 0.3795513 0.5611974 -0.3637862 0.3795513 0.5611974 -0.3795513 0.3795513 0.5611974 -0.3944623 0.3795513 0.5611974 -0.4085988 0.3795513 0.5611974 -0.4220313 0.3795513 0.5611974 -0.4348222 0.3795513 0.5611974 -0.4470264 0.3795513 0.5611974 -0.4586928 0.3795513 0.5611974 -0.4698649 0.3795513 0.5611974 -0.4805811 0.3795513 0.5611974 -0.490876 0.3795513 0.5611974 -0.5007803 0.3795513 0.5611974 -0.510322 0.3795513 0.5611974 -0.5195258 0.3795513 0.5611974 -0.5284142 0.3795513 0.5611974 -0.5370079 0.3795513 0.5611974 -0.5453253 0.3795513 0.5611974 -0.5533834 0.3795513 0.5611974 -0.5611974 0.3795513 0.5611974 -0.5687816 0.3795513 0.5611974 -0.092819 0.3944623 0.5611974 -0.1056428 0.3944623 0.5611974 -0.1201537 0.3944623 0.5611974 -0.1409607 0.3944623 0.5611974 -0.1678172 0.3944623 0.5611974 -0.1950164 0.3944623 0.5611974 -0.2210581 0.3944623 0.5611974 -0.245636 0.3944623 0.5611974 -0.2686816 0.3944623 0.5611974 -0.2902431 0.3944623 0.5611974 -0.3104189 0.3944623 0.5611974 -0.3293248 0.3944623 0.5611974 -0.3470774 0.3944623 0.5611974 -0.3637862 0.3944623 0.5611974 -0.3795513 0.3944623 0.5611974 -0.3944623 0.3944623 0.5611974 -0.4085988 0.3944623 0.5611974 -0.4220313 0.3944623 0.5611974 -0.4348222 0.3944623 0.5611974 -0.4470264 0.3944623 0.5611974 -0.4586928 0.3944623 0.5611974 -0.4698649 0.3944623 0.5611974 -0.4805811 0.3944623 0.5611974 -0.490876 0.3944623 0.5611974 -0.5007803 0.3944623 0.5611974 -0.510322 0.3944623 0.5611974 -0.5195258 0.3944623 0.5611974 -0.5284142 0.3944623 0.5611974 -0.5370079 0.3944623 0.5611974 -0.5453253 0.3944623 0.5611974 -0.5533834 0.3944623 0.5611974 -0.5611974 0.3944623 0.5611974 -0.5687816 0.3944623 0.5611974 -0.092819 0.4085988 0.5611974 -0.1056428 0.4085988 0.5611974 -0.1201537 0.4085988 0.5611974 -0.1409607 0.4085988 0.5611974 -0.1678172 0.4085988 0.5611974 -0.1950164 0.4085988 0.5611974 -0.2210581 0.4085988 0.5611974 -0.245636 0.4085988 0.5611974 -0.2686816 0.4085988 0.5611974 -0.2902431 0.4085988 0.5611974 -0.3104189 0.4085988 0.5611974 -0.3293248 0.4085988 0.5611974 -0.3470774 0.4085988 0.5611974 -0.3637862 0.4085988 0.5611974 -0.3795513 0.4085988 0.5611974 -0.3944623 0.4085988 0.5611974 -0.4085988 0.4085988 0.5611974 -0.4220313 0.4085988 0.5611974 -0.4348222 0.4085988 0.5611974 -0.4470264 0.4085988 0.5611974 -0.4586928 0.4085988 0.5611974 -0.4698649 0.4085988 0.5611974 -0.4805811 0.4085988 0.5611974 -0.490876 0.4085988 0.5611974 -0.5007803 0.4085988 0.5611974 -0.510322 0.4085988 0.5611974 -0.5195258 0.4085988 0.5611974 -0.5284142 0.4085988 0.5611974 -0.5370079 0.4085988 0.5611974 -0.5453253 0.4085988 0.5611974 -0.5533834 0.4085988 0.5611974 -0.5611974 0.4085988 0.5611974 -0.5687816 0.4085988 0.5611974 -0.092819 0.4220313 0.5611974 -0.1056428 0.4220313 0.5611974 -0.1201537 0.4220313 0.5611974 -0.1409607 0.4220313 0.5611974 -0.1678172 0.4220313 0.5611974 -0.1950164 0.4220313 0.5611974 -0.2210581 0.4220313 0.5611974 -0.245636 0.4220313 0.5611974 -0.2686816 0.4220313 0.5611974 -0.2902431 0.4220313 0.5611974 -0.3104189 0.4220313 0.5611974 -0.3293248 0.4220313 0.5611974 -0.3470774 0.4220313 0.5611974 -0.3637862 0.4220313 0.5611974 -0.3795513 0.4220313 0.5611974 -0.3944623 0.4220313 0.5611974 -0.4085988 0.4220313 0.5611974 -0.4220313 0.4220313 0.5611974 -0.4348222 0.4220313 0.5611974 -0.4470264 0.4220313 0.5611974 -0.4586928 0.4220313 0.5611974 -0.4698649 0.4220313 0.5611974 -0.4805811 0.4220313 0.5611974 -0.490876 0.4220313 0.5611974 -0.5007803 0.4220313 0.5611974 -0.510322 0.4220313 0.5611974 -0.5195258 0.4220313 0.5611974 -0.5284142 0.4220313 0.5611974 -0.5370079 0.4220313 0.5611974 -0.5453253 0.4220313 0.5611974 -0.5533834 0.4220313 0.5611974 -0.5611974 0.4220313 0.5611974 -0.5687816 0.4220313 0.5611974 -0.092819 0.4348222 0.5611974 -0.1056428 0.4348222 0.5611974 -0.1201537 0.4348222 0.5611974 -0.1409607 0.4348222 0.5611974 -0.1678172 0.4348222 0.5611974 -0.1950164 0.4348222 0.5611974 -0.2210581 0.4348222 0.5611974 -0.245636 0.4348222 0.5611974 -0.2686816 0.4348222 0.5611974 -0.2902431 0.4348222 0.5611974 -0.3104189 0.4348222 0.5611974 -0.3293248 0.4348222 0.5611974 -0.3470774 0.4348222 0.5611974 -0.3637862 0.4348222 0.5611974 -0.3795513 0.4348222 0.5611974 -0.3944623 0.4348222 0.5611974 -0.4085988 0.4348222 0.5611974 -0.4220313 0.4348222 0.5611974 -0.4348222 0.4348222 0.5611974 -0.4470264 0.4348222 0.5611974 -0.4586928 0.4348222 0.5611974 -0.4698649 0.4348222 0.5611974 -0.4805811 0.4348222 0.5611974 -0.490876 0.4348222 0.5611974 -0.5007803 0.4348222 0.5611974 -0.510322 0.4348222 0.5611974 -0.5195258 0.4348222 0.5611974 -0.5284142 0.4348222 0.5611974 -0.5370079 0.4348222 0.5611974 -0.5453253 0.4348222 0.5611974 -0.5533834 0.4348222 0.5611974 -0.5611974 0.4348222 0.5611974 -0.5687816 0.4348222 0.5611974 -0.092819 0.4470264 0.5611974 -0.1056428 0.4470264 0.5611974 -0.1201537 0.4470264 0.5611974 -0.1409607 0.4470264 0.5611974 -0.1678172 0.4470264 0.5611974 -0.1950164 0.4470264 0.5611974 -0.2210581 0.4470264 0.5611974 -0.245636 0.4470264 0.5611974 -0.2686816 0.4470264 0.5611974 -0.2902431 0.4470264 0.5611974 -0.3104189 0.4470264 0.5611974 -0.3293248 0.4470264 0.5611974 -0.3470774 0.4470264 0.5611974 -0.3637862 0.4470264 0.5611974 -0.3795513 0.4470264 0.5611974 -0.3944623 0.4470264 0.5611974 -0.4085988 0.4470264 0.5611974 -0.4220313 0.4470264 0.5611974 -0.4348222 0.4470264 0.5611974 -0.4470264 0.4470264 0.5611974 -0.4586928 0.4470264 0.5611974 -0.4698649 0.4470264 0.5611974 -0.4805811 0.4470264 0.5611974 -0.490876 0.4470264 0.5611974 -0.5007803 0.4470264 0.5611974 -0.510322 0.4470264 0.5611974 -0.5195258 0.4470264 0.5611974 -0.5284142 0.4470264 0.5611974 -0.5370079 0.4470264 0.5611974 -0.5453253 0.4470264 0.5611974 -0.5533834 0.4470264 0.5611974 -0.5611974 0.4470264 0.5611974 -0.5687816 0.4470264 0.5611974 -0.092819 0.4586928 0.5611974 -0.1056428 0.4586928 0.5611974 -0.1201537 0.4586928 0.5611974 -0.1409607 0.4586928 0.5611974 -0.1678172 0.4586928 0.5611974 -0.1950164 0.4586928 0.5611974 -0.2210581 0.4586928 0.5611974 -0.245636 0.4586928 0.5611974 -0.2686816 0.4586928 0.5611974 -0.2902431 0.4586928 0.5611974 -0.3104189 0.4586928 0.5611974 -0.3293248 0.4586928 0.5611974 -0.3470774 0.4586928 0.5611974 -0.3637862 0.4586928 0.5611974 -0.3795513 0.4586928 0.5611974 -0.3944623 0.4586928 0.5611974 -0.4085988 0.4586928 0.5611974 -0.4220313 0.4586928 0.5611974 -0.4348222 0.4586928 0.5611974 -0.4470264 0.4586928 0.5611974 -0.4586928 0.4586928 0.5611974 -0.4698649 0.4586928 0.5611974 -0.4805811 0.4586928 0.5611974 -0.490876 0.4586928 0.5611974 -0.5007803 0.4586928 0.5611974 -0.510322 0.4586928 0.5611974 -0.5195258 0.4586928 0.5611974 -0.5284142 0.4586928 0.5611974 -0.5370079 0.4586928 0.5611974 -0.5453253 0.4586928 0.5611974 -0.5533834 0.4586928 0.5611974 -0.5611974 0.4586928 0.5611974 -0.5687816 0.4586928 0.5611974 -0.092819 0.4698649 0.5611974 -0.1056428 0.4698649 0.5611974 -0.1201537 0.4698649 0.5611974 -0.1409607 0.4698649 0.5611974 -0.1678172 0.4698649 0.5611974 -0.1950164 0.4698649 0.5611974 -0.2210581 0.4698649 0.5611974 -0.245636 0.4698649 0.5611974 -0.2686816 0.4698649 0.5611974 -0.2902431 0.4698649 0.5611974 -0.3104189 0.4698649 0.5611974 -0.3293248 0.4698649 0.5611974 -0.3470774 0.4698649 0.5611974 -0.3637862 0.4698649 0.5611974 -0.3795513 0.4698649 0.5611974 -0.3944623 0.4698649 0.5611974 -0.4085988 0.4698649 0.5611974 -0.4220313 0.4698649 0.5611974 -0.4348222 0.4698649 0.5611974 -0.4470264 0.4698649 0.5611974 -0.4586928 0.4698649 0.5611974 -0.4698649 0.4698649 0.5611974 -0.4805811 0.4698649 0.5611974 -0.490876 0.4698649 0.5611974 -0.5007803 0.4698649 0.5611974 -0.510322 0.4698649 0.5611974 -0.5195258 0.4698649 0.5611974 -0.5284142 0.4698649 0.5611974 -0.5370079 0.4698649 0.5611974 -0.5453253 0.4698649 0.5611974 -0.5533834 0.4698649 0.5611974 -0.5611974 0.4698649 0.5611974 -0.5687816 0.4698649 0.5611974 -0.092819 0.4805811 0.5611974 -0.1056428 0.4805811 0.5611974 -0.1201537 0.4805811 0.5611974 -0.1409607 0.4805811 0.5611974 -0.1678172 0.4805811 0.5611974 -0.1950164 0.4805811 0.5611974 -0.2210581 0.4805811 0.5611974 -0.245636 0.4805811 0.5611974 -0.2686816 0.4805811 0.5611974 -0.2902431 0.4805811 0.5611974 -0.3104189 0.4805811 0.5611974 -0.3293248 0.4805811 0.5611974 -0.3470774 0.4805811 0.5611974 -0.3637862 0.4805811 0.5611974 -0.3795513 0.4805811 0.5611974 -0.3944623 0.4805811 0.5611974 -0.4085988 0.4805811 0.5611974 -0.4220313 0.4805811 0.5611974 -0.4348222 0.4805811 0.5611974 -0.4470264 0.4805811 0.5611974 -0.4586928 0.4805811 0.5611974 -0.4698649 0.4805811 0.5611974 -0.4805811 0.4805811 0.5611974 -0.490876 0.4805811 0.5611974 -0.5007803 0.4805811 0.5611974 -0.510322 0.4805811 0.5611974 -0.5195258 0.4805811 0.5611974 -0.5284142 0.4805811 0.5611974 -0.5370079 0.4805811 0.5611974 -0.5453253 0.4805811 0.5611974 -0.5533834 0.4805811 0.5611974 -0.5611974 0.4805811 0.5611974 -0.5687816 0.4805811 0.5611974 -0.092819 0.490876 0.5611974 -0.1056428 0.490876 0.5611974 -0.1201537 0.490876 0.5611974 -0.1409607 0.490876 0.5611974 -0.1678172 0.490876 0.5611974 -0.1950164 0.490876 0.5611974 -0.2210581 0.490876 0.5611974 -0.245636 0.490876 0.5611974 -0.2686816 0.490876 0.5611974 -0.2902431 0.490876 0.5611974 -0.3104189 0.490876 0.5611974 -0.3293248 0.490876 0.5611974 -0.3470774 0.490876 0.5611974 -0.3637862 0.490876 0.5611974 -0.3795513 0.490876 0.5611974 -0.3944623 0.490876 0.5611974 -0.4085988 0.490876 0.5611974 -0.4220313 0.490876 0.5611974 -0.4348222 0.490876 0.5611974 -0.4470264 0.490876 0.5611974 -0.4586928 0.490876 0.5611974 -0.4698649 0.490876 0.5611974 -0.4805811 0.490876 0.5611974 -0.490876 0.490876 0.5611974 -0.5007803 0.490876 0.5611974 -0.510322 0.490876 0.5611974 -0.5195258 0.490876 0.5611974 -0.5284142 0.490876 0.5611974 -0.5370079 0.490876 0.5611974 -0.5453253 0.490876 0.5611974 -0.5533834 0.490876 0.5611974 -0.5611974 0.490876 0.5611974 -0.5687816 0.490876 0.5611974 -0.092819 0.5007803 0.5611974 -0.1056428 0.5007803 0.5611974 -0.1201537 0.5007803 0.5611974 -0.1409607 0.5007803 0.5611974 -0.1678172 0.5007803 0.5611974 -0.1950164 0.5007803 0.5611974 -0.2210581 0.5007803 0.5611974 -0.245636 0.5007803 0.5611974 -0.2686816 0.5007803 0.5611974 -0.2902431 0.5007803 0.5611974 -0.3104189 0.5007803 0.5611974 -0.3293248 0.5007803 0.5611974 -0.3470774 0.5007803 0.5611974 -0.3637862 0.5007803 0.5611974 -0.3795513 0.5007803 0.5611974 -0.3944623 0.5007803 0.5611974 -0.4085988 0.5007803 0.5611974 -0.4220313 0.5007803 0.5611974 -0.4348222 0.5007803 0.5611974 -0.4470264 0.5007803 0.5611974 -0.4586928 0.5007803 0.5611974 -0.4698649 0.5007803 0.5611974 -0.4805811 0.5007803 0.5611974 -0.490876 0.5007803 0.5611974 -0.5007803 0.5007803 0.5611974 -0.510322 0.5007803 0.5611974 -0.5195258 0.5007803 0.5611974 -0.5284142 0.5007803 0.5611974 -0.5370079 0.5007803 0.5611974 -0.5453253 0.5007803 0.5611974 -0.5533834 0.5007803 0.5611974 -0.5611974 0.5007803 0.5611974 -0.5687816 0.5007803 0.5611974 -0.092819 0.510322 0.5611974 -0.1056428 0.510322 0.5611974 -0.1201537 0.510322 0.5611974 -0.1409607 0.510322 0.5611974 -0.1678172 0.510322 0.5611974 -0.1950164 0.510322 0.5611974 -0.2210581 0.510322 0.5611974 -0.245636 0.510322 0.5611974 -0.2686816 0.510322 0.5611974 -0.2902431 0.510322 0.5611974 -0.3104189 0.510322 0.5611974 -0.3293248 0.510322 0.5611974 -0.3470774 0.510322 0.5611974 -0.3637862 0.510322 0.5611974 -0.3795513 0.510322 0.5611974 -0.3944623 0.510322 0.5611974 -0.4085988 0.510322 0.5611974 -0.4220313 0.510322 0.5611974 -0.4348222 0.510322 0.5611974 -0.4470264 0.510322 0.5611974 -0.4586928 0.510322 0.5611974 -0.4698649 0.510322 0.5611974 -0.4805811 0.510322 0.5611974 -0.490876 0.510322 0.5611974 -0.5007803 0.510322 0.5611974 -0.510322 0.510322 0.5611974 -0.5195258 0.510322 0.5611974 -0.5284142 0.510322 0.5611974 -0.5370079 0.510322 0.5611974 -0.5453253 0.510322 0.5611974 -0.5533834 0.510322 0.5611974 -0.5611974 0.510322 0.5611974 -0.5687816 0.510322 0.5611974 -0.092819 0.5195258 0.5611974 -0.1056428 0.5195258 0.5611974 -0.1201537 0.5195258 0.5611974 -0.1409607 0.5195258 0.5611974 -0.1678172 0.5195258 0.5611974 -0.1950164 0.5195258 0.5611974 -0.2210581 0.5195258 0.5611974 -0.245636 0.5195258 0.5611974 -0.2686816 0.5195258 0.5611974 -0.2902431 0.5195258 0.5611974 -0.3104189 0.5195258 0.5611974 -0.3293248 0.5195258 0.5611974 -0.3470774 0.5195258 0.5611974 -0.3637862 0.5195258 0.5611974 -0.3795513 0.5195258 0.5611974 -0.3944623 0.5195258 0.5611974 -0.4085988 0.5195258 0.5611974 -0.4220313 0.5195258 0.5611974 -0.4348222 0.5195258 0.5611974 -0.4470264 0.5195258 0.5611974 -0.4586928 0.5195258 0.5611974 -0.4698649 0.5195258 0.5611974 -0.4805811 0.5195258 0.5611974 -0.490876 0.5195258 0.5611974 -0.5007803 0.5195258 0.5611974 -0.510322 0.5195258 0.5611974 -0.5195258 0.5195258 0.5611974 -0.5284142 0.5195258 0.5611974 -0.5370079 0.5195258 0.5611974 -0.5453253 0.5195258 0.5611974 -0.5533834 0.5195258 0.5611974 -0.5611974 0.5195258 0.5611974 -0.5687816 0.5195258 0.5611974 -0.092819 0.5284142 0.5611974 -0.1056428 0.5284142 0.5611974 -0.1201537 0.5284142 0.5611974 -0.1409607 0.5284142 0.5611974 -0.1678172 0.5284142 0.5611974 -0.1950164 0.5284142 0.5611974 -0.2210581 0.5284142 0.5611974 -0.245636 0.5284142 0.5611974 -0.2686816 0.5284142 0.5611974 -0.2902431 0.5284142 0.5611974 -0.3104189 0.5284142 0.5611974 -0.3293248 0.5284142 0.5611974 -0.3470774 0.5284142 0.5611974 -0.3637862 0.5284142 0.5611974 -0.3795513 0.5284142 0.5611974 -0.3944623 0.5284142 0.5611974 -0.4085988 0.5284142 0.5611974 -0.4220313 0.5284142 0.5611974 -0.4348222 0.5284142 0.5611974 -0.4470264 0.5284142 0.5611974 -0.4586928 0.5284142 0.5611974 -0.4698649 0.5284142 0.5611974 -0.4805811 0.5284142 0.5611974 -0.490876 0.5284142 0.5611974 -0.5007803 0.5284142 0.5611974 -0.510322 0.5284142 0.5611974 -0.5195258 0.5284142 0.5611974 -0.5284142 0.5284142 0.5611974 -0.5370079 0.5284142 0.5611974 -0.5453253 0.5284142 0.5611974 -0.5533834 0.5284142 0.5611974 -0.5611974 0.5284142 0.5611974 -0.5687816 0.5284142 0.5611974 -0.092819 0.5370079 0.5611974 -0.1056428 0.5370079 0.5611974 -0.1201537 0.5370079 0.5611974 -0.1409607 0.5370079 0.5611974 -0.1678172 0.5370079 0.5611974 -0.1950164 0.5370079 0.5611974 -0.2210581 0.5370079 0.5611974 -0.245636 0.5370079 0.5611974 -0.2686816 0.5370079 0.5611974 -0.2902431 0.5370079 0.5611974 -0.3104189 0.5370079 0.5611974 -0.3293248 0.5370079 0.5611974 -0.3470774 0.5370079 0.5611974 -0.3637862 0.5370079 0.5611974 -0.3795513 0.5370079 0.5611974 -0.3944623 0.5370079 0.5611974 -0.4085988 0.5370079 0.5611974 -0.4220313 0.5370079 0.5611974 -0.4348222 0.5370079 0.5611974 -0.4470264 0.5370079 0.5611974 -0.4586928 0.5370079 0.5611974 -0.4698649 0.5370079 0.5611974 -0.4805811 0.5370079 0.5611974 -0.490876 0.5370079 0.5611974 -0.5007803 0.5370079 0.5611974 -0.510322 0.5370079 0.5611974 -0.5195258 0.5370079 0.5611974 -0.5284142 0.5370079 0.5611974 -0.5370079 0.5370079 0.5611974 -0.5453253 0.5370079 0.5611974 -0.5533834 0.5370079 0.5611974 -0.5611974 0.5370079 0.5611974 -0.5687816 0.5370079 0.5611974 -0.092819 0.5453253 0.5611974 -0.1056428 0.5453253 0.5611974 -0.1201537 0.5453253 0.5611974 -0.1409607 0.5453253 0.5611974 -0.1678172 0.5453253 0.5611974 -0.1950164 0.5453253 0.5611974 -0.2210581 0.5453253 0.5611974 -0.245636 0.5453253 0.5611974 -0.2686816 0.5453253 0.5611974 -0.2902431 0.5453253 0.5611974 -0.3104189 0.5453253 0.5611974 -0.3293248 0.5453253 0.5611974 -0.3470774 0.5453253 0.5611974 -0.3637862 0.5453253 0.5611974 -0.3795513 0.5453253 0.5611974 -0.3944623 0.5453253 0.5611974 -0.4085988 0.5453253 0.5611974 -0.4220313 0.5453253 0.5611974 -0.4348222 0.5453253 0.5611974 -0.4470264 0.5453253 0.5611974 -0.4586928 0.5453253 0.5611974 -0.4698649 0.5453253 0.5611974 -0.4805811 0.5453253 0.5611974 -0.490876 0.5453253 0.5611974 -0.5007803 0.5453253 0.5611974 -0.510322 0.5453253 0.5611974 -0.5195258 0.5453253 0.5611974 -0.5284142 0.5453253 0.5611974 -0.5370079 0.5453253 0.5611974 -0.5453253 0.5453253 0.5611974 -0.5533834 0.5453253 0.5611974 -0.5611974 0.5453253 0.5611974 -0.5687816 0.5453253 0.5611974 -0.092819 0.5533834 0.5611974 -0.1056428 0.5533834 0.5611974 -0.1201537 0.5533834 0.5611974 -0.1409607 0.5533834 0.5611974 -0.1678172 0.5533834 0.5611974 -0.1950164 0.5533834 0.5611974 -0.2210581 0.5533834 0.5611974 -0.245636 0.5533834 0.5611974 -0.2686816 0.5533834 0.5611974 -0.2902431 0.5533834 0.5611974 -0.3104189 0.5533834 0.5611974 -0.3293248 0.5533834 0.5611974 -0.3470774 0.5533834 0.5611974 -0.3637862 0.5533834 0.5611974 -0.3795513 0.5533834 0.5611974 -0.3944623 0.5533834 0.5611974 -0.4085988 0.5533834 0.5611974 -0.4220313 0.5533834 0.5611974 -0.4348222 0.5533834 0.5611974 -0.4470264 0.5533834 0.5611974 -0.4586928 0.5533834 0.5611974 -0.4698649 0.5533834 0.5611974 -0.4805811 0.5533834 0.5611974 -0.490876 0.5533834 0.5611974 -0.5007803 0.5533834 0.5611974 -0.510322 0.5533834 0.5611974 -0.5195258 0.5533834 0.5611974 -0.5284142 0.5533834 0.5611974 -0.5370079 0.5533834 0.5611974 -0.5453253 0.5533834 0.5611974 -0.5533834 0.5533834 0.5611974 -0.5611974 0.5533834 0.5611974 -0.5687816 0.5533834 0.5611974 -0.092819 0.5611974 0.5611974 -0.1056428 0.5611974 0.5611974 -0.1201537 0.5611974 0.5611974 -0.1409607 0.5611974 0.5611974 -0.1678172 0.5611974 0.5611974 -0.1950164 0.5611974 0.5611974 -0.2210581 0.5611974 0.5611974 -0.245636 0.5611974 0.5611974 -0.2686816 0.5611974 0.5611974 -0.2902431 0.5611974 0.5611974 -0.3104189 0.5611974 0.5611974 -0.3293248 0.5611974 0.5611974 -0.3470774 0.5611974 0.5611974 -0.3637862 0.5611974 0.5611974 -0.3795513 0.5611974 0.5611974 -0.3944623 0.5611974 0.5611974 -0.4085988 0.5611974 0.5611974 -0.4220313 0.5611974 0.5611974 -0.4348222 0.5611974 0.5611974 -0.4470264 0.5611974 0.5611974 -0.4586928 0.5611974 0.5611974 -0.4698649 0.5611974 0.5611974 -0.4805811 0.5611974 0.5611974 -0.490876 0.5611974 0.5611974 -0.5007803 0.5611974 0.5611974 -0.510322 0.5611974 0.5611974 -0.5195258 0.5611974 0.5611974 -0.5284142 0.5611974 0.5611974 -0.5370079 0.5611974 0.5611974 -0.5453253 0.5611974 0.5611974 -0.5533834 0.5611974 0.5611974 -0.5611974 0.5611974 0.5611974 -0.5687816 0.5611974 0.5611974 -0.092819 0.5687816 0.5611974 -0.1056428 0.5687816 0.5611974 -0.1201537 0.5687816 0.5611974 -0.1409607 0.5687816 0.5611974 -0.1678172 0.5687816 0.5611974 -0.1950164 0.5687816 0.5611974 -0.2210581 0.5687816 0.5611974 -0.245636 0.5687816 0.5611974 -0.2686816 0.5687816 0.5611974 -0.2902431 0.5687816 0.5611974 -0.3104189 0.5687816 0.5611974 -0.3293248 0.5687816 0.5611974 -0.3470774 0.5687816 0.5611974 -0.3637862 0.5687816 0.5611974 -0.3795513 0.5687816 0.5611974 -0.3944623 0.5687816 0.5611974 -0.4085988 0.5687816 0.5611974 -0.4220313 0.5687816 0.5611974 -0.4348222 0.5687816 0.5611974 -0.4470264 0.5687816 0.5611974 -0.4586928 0.5687816 0.5611974 -0.4698649 0.5687816 0.5611974 -0.4805811 0.5687816 0.5611974 -0.490876 0.5687816 0.5611974 -0.5007803 0.5687816 0.5611974 -0.510322 0.5687816 0.5611974 -0.5195258 0.5687816 0.5611974 -0.5284142 0.5687816 0.5611974 -0.5370079 0.5687816 0.5611974 -0.5453253 0.5687816 0.5611974 -0.5533834 0.5687816 0.5611974 -0.5611974 0.5687816 0.5611974 -0.5687816 0.5687816 0.5611974 -0.092819 0.092819 0.5687816 -0.1056428 0.092819 0.5687816 -0.1201537 0.092819 0.5687816 -0.1409607 0.092819 0.5687816 -0.1678172 0.092819 0.5687816 -0.1950164 0.092819 0.5687816 -0.2210581 0.092819 0.5687816 -0.245636 0.092819 0.5687816 -0.2686816 0.092819 0.5687816 -0.2902431 0.092819 0.5687816 -0.3104189 0.092819 0.5687816 -0.3293248 0.092819 0.5687816 -0.3470774 0.092819 0.5687816 -0.3637862 0.092819 0.5687816 -0.3795513 0.092819 0.5687816 -0.3944623 0.092819 0.5687816 -0.4085988 0.092819 0.5687816 -0.4220313 0.092819 0.5687816 -0.4348222 0.092819 0.5687816 -0.4470264 0.092819 0.5687816 -0.4586928 0.092819 0.5687816 -0.4698649 0.092819 0.5687816 -0.4805811 0.092819 0.5687816 -0.490876 0.092819 0.5687816 -0.5007803 0.092819 0.5687816 -0.510322 0.092819 0.5687816 -0.5195258 0.092819 0.5687816 -0.5284142 0.092819 0.5687816 -0.5370079 0.092819 0.5687816 -0.5453253 0.092819 0.5687816 -0.5533834 0.092819 0.5687816 -0.5611974 0.092819 0.5687816 -0.5687816 0.092819 0.5687816 -0.092819 0.1056428 0.5687816 -0.1056428 0.1056428 0.5687816 -0.1201537 0.1056428 0.5687816 -0.1409607 0.1056428 0.5687816 -0.1678172 0.1056428 0.5687816 -0.1950164 0.1056428 0.5687816 -0.2210581 0.1056428 0.5687816 -0.245636 0.1056428 0.5687816 -0.2686816 0.1056428 0.5687816 -0.2902431 0.1056428 0.5687816 -0.3104189 0.1056428 0.5687816 -0.3293248 0.1056428 0.5687816 -0.3470774 0.1056428 0.5687816 -0.3637862 0.1056428 0.5687816 -0.3795513 0.1056428 0.5687816 -0.3944623 0.1056428 0.5687816 -0.4085988 0.1056428 0.5687816 -0.4220313 0.1056428 0.5687816 -0.4348222 0.1056428 0.5687816 -0.4470264 0.1056428 0.5687816 -0.4586928 0.1056428 0.5687816 -0.4698649 0.1056428 0.5687816 -0.4805811 0.1056428 0.5687816 -0.490876 0.1056428 0.5687816 -0.5007803 0.1056428 0.5687816 -0.510322 0.1056428 0.5687816 -0.5195258 0.1056428 0.5687816 -0.5284142 0.1056428 0.5687816 -0.5370079 0.1056428 0.5687816 -0.5453253 0.1056428 0.5687816 -0.5533834 0.1056428 0.5687816 -0.5611974 0.1056428 0.5687816 -0.5687816 0.1056428 0.5687816 -0.092819 0.1201537 0.5687816 -0.1056428 0.1201537 0.5687816 -0.1201537 0.1201537 0.5687816 -0.1409607 0.1201537 0.5687816 -0.1678172 0.1201537 0.5687816 -0.1950164 0.1201537 0.5687816 -0.2210581 0.1201537 0.5687816 -0.245636 0.1201537 0.5687816 -0.2686816 0.1201537 0.5687816 -0.2902431 0.1201537 0.5687816 -0.3104189 0.1201537 0.5687816 -0.3293248 0.1201537 0.5687816 -0.3470774 0.1201537 0.5687816 -0.3637862 0.1201537 0.5687816 -0.3795513 0.1201537 0.5687816 -0.3944623 0.1201537 0.5687816 -0.4085988 0.1201537 0.5687816 -0.4220313 0.1201537 0.5687816 -0.4348222 0.1201537 0.5687816 -0.4470264 0.1201537 0.5687816 -0.4586928 0.1201537 0.5687816 -0.4698649 0.1201537 0.5687816 -0.4805811 0.1201537 0.5687816 -0.490876 0.1201537 0.5687816 -0.5007803 0.1201537 0.5687816 -0.510322 0.1201537 0.5687816 -0.5195258 0.1201537 0.5687816 -0.5284142 0.1201537 0.5687816 -0.5370079 0.1201537 0.5687816 -0.5453253 0.1201537 0.5687816 -0.5533834 0.1201537 0.5687816 -0.5611974 0.1201537 0.5687816 -0.5687816 0.1201537 0.5687816 -0.092819 0.1409607 0.5687816 -0.1056428 0.1409607 0.5687816 -0.1201537 0.1409607 0.5687816 -0.1409607 0.1409607 0.5687816 -0.1678172 0.1409607 0.5687816 -0.1950164 0.1409607 0.5687816 -0.2210581 0.1409607 0.5687816 -0.245636 0.1409607 0.5687816 -0.2686816 0.1409607 0.5687816 -0.2902431 0.1409607 0.5687816 -0.3104189 0.1409607 0.5687816 -0.3293248 0.1409607 0.5687816 -0.3470774 0.1409607 0.5687816 -0.3637862 0.1409607 0.5687816 -0.3795513 0.1409607 0.5687816 -0.3944623 0.1409607 0.5687816 -0.4085988 0.1409607 0.5687816 -0.4220313 0.1409607 0.5687816 -0.4348222 0.1409607 0.5687816 -0.4470264 0.1409607 0.5687816 -0.4586928 0.1409607 0.5687816 -0.4698649 0.1409607 0.5687816 -0.4805811 0.1409607 0.5687816 -0.490876 0.1409607 0.5687816 -0.5007803 0.1409607 0.5687816 -0.510322 0.1409607 0.5687816 -0.5195258 0.1409607 0.5687816 -0.5284142 0.1409607 0.5687816 -0.5370079 0.1409607 0.5687816 -0.5453253 0.1409607 0.5687816 -0.5533834 0.1409607 0.5687816 -0.5611974 0.1409607 0.5687816 -0.5687816 0.1409607 0.5687816 -0.092819 0.1678172 0.5687816 -0.1056428 0.1678172 0.5687816 -0.1201537 0.1678172 0.5687816 -0.1409607 0.1678172 0.5687816 -0.1678172 0.1678172 0.5687816 -0.1950164 0.1678172 0.5687816 -0.2210581 0.1678172 0.5687816 -0.245636 0.1678172 0.5687816 -0.2686816 0.1678172 0.5687816 -0.2902431 0.1678172 0.5687816 -0.3104189 0.1678172 0.5687816 -0.3293248 0.1678172 0.5687816 -0.3470774 0.1678172 0.5687816 -0.3637862 0.1678172 0.5687816 -0.3795513 0.1678172 0.5687816 -0.3944623 0.1678172 0.5687816 -0.4085988 0.1678172 0.5687816 -0.4220313 0.1678172 0.5687816 -0.4348222 0.1678172 0.5687816 -0.4470264 0.1678172 0.5687816 -0.4586928 0.1678172 0.5687816 -0.4698649 0.1678172 0.5687816 -0.4805811 0.1678172 0.5687816 -0.490876 0.1678172 0.5687816 -0.5007803 0.1678172 0.5687816 -0.510322 0.1678172 0.5687816 -0.5195258 0.1678172 0.5687816 -0.5284142 0.1678172 0.5687816 -0.5370079 0.1678172 0.5687816 -0.5453253 0.1678172 0.5687816 -0.5533834 0.1678172 0.5687816 -0.5611974 0.1678172 0.5687816 -0.5687816 0.1678172 0.5687816 -0.092819 0.1950164 0.5687816 -0.1056428 0.1950164 0.5687816 -0.1201537 0.1950164 0.5687816 -0.1409607 0.1950164 0.5687816 -0.1678172 0.1950164 0.5687816 -0.1950164 0.1950164 0.5687816 -0.2210581 0.1950164 0.5687816 -0.245636 0.1950164 0.5687816 -0.2686816 0.1950164 0.5687816 -0.2902431 0.1950164 0.5687816 -0.3104189 0.1950164 0.5687816 -0.3293248 0.1950164 0.5687816 -0.3470774 0.1950164 0.5687816 -0.3637862 0.1950164 0.5687816 -0.3795513 0.1950164 0.5687816 -0.3944623 0.1950164 0.5687816 -0.4085988 0.1950164 0.5687816 -0.4220313 0.1950164 0.5687816 -0.4348222 0.1950164 0.5687816 -0.4470264 0.1950164 0.5687816 -0.4586928 0.1950164 0.5687816 -0.4698649 0.1950164 0.5687816 -0.4805811 0.1950164 0.5687816 -0.490876 0.1950164 0.5687816 -0.5007803 0.1950164 0.5687816 -0.510322 0.1950164 0.5687816 -0.5195258 0.1950164 0.5687816 -0.5284142 0.1950164 0.5687816 -0.5370079 0.1950164 0.5687816 -0.5453253 0.1950164 0.5687816 -0.5533834 0.1950164 0.5687816 -0.5611974 0.1950164 0.5687816 -0.5687816 0.1950164 0.5687816 -0.092819 0.2210581 0.5687816 -0.1056428 0.2210581 0.5687816 -0.1201537 0.2210581 0.5687816 -0.1409607 0.2210581 0.5687816 -0.1678172 0.2210581 0.5687816 -0.1950164 0.2210581 0.5687816 -0.2210581 0.2210581 0.5687816 -0.245636 0.2210581 0.5687816 -0.2686816 0.2210581 0.5687816 -0.2902431 0.2210581 0.5687816 -0.3104189 0.2210581 0.5687816 -0.3293248 0.2210581 0.5687816 -0.3470774 0.2210581 0.5687816 -0.3637862 0.2210581 0.5687816 -0.3795513 0.2210581 0.5687816 -0.3944623 0.2210581 0.5687816 -0.4085988 0.2210581 0.5687816 -0.4220313 0.2210581 0.5687816 -0.4348222 0.2210581 0.5687816 -0.4470264 0.2210581 0.5687816 -0.4586928 0.2210581 0.5687816 -0.4698649 0.2210581 0.5687816 -0.4805811 0.2210581 0.5687816 -0.490876 0.2210581 0.5687816 -0.5007803 0.2210581 0.5687816 -0.510322 0.2210581 0.5687816 -0.5195258 0.2210581 0.5687816 -0.5284142 0.2210581 0.5687816 -0.5370079 0.2210581 0.5687816 -0.5453253 0.2210581 0.5687816 -0.5533834 0.2210581 0.5687816 -0.5611974 0.2210581 0.5687816 -0.5687816 0.2210581 0.5687816 -0.092819 0.245636 0.5687816 -0.1056428 0.245636 0.5687816 -0.1201537 0.245636 0.5687816 -0.1409607 0.245636 0.5687816 -0.1678172 0.245636 0.5687816 -0.1950164 0.245636 0.5687816 -0.2210581 0.245636 0.5687816 -0.245636 0.245636 0.5687816 -0.2686816 0.245636 0.5687816 -0.2902431 0.245636 0.5687816 -0.3104189 0.245636 0.5687816 -0.3293248 0.245636 0.5687816 -0.3470774 0.245636 0.5687816 -0.3637862 0.245636 0.5687816 -0.3795513 0.245636 0.5687816 -0.3944623 0.245636 0.5687816 -0.4085988 0.245636 0.5687816 -0.4220313 0.245636 0.5687816 -0.4348222 0.245636 0.5687816 -0.4470264 0.245636 0.5687816 -0.4586928 0.245636 0.5687816 -0.4698649 0.245636 0.5687816 -0.4805811 0.245636 0.5687816 -0.490876 0.245636 0.5687816 -0.5007803 0.245636 0.5687816 -0.510322 0.245636 0.5687816 -0.5195258 0.245636 0.5687816 -0.5284142 0.245636 0.5687816 -0.5370079 0.245636 0.5687816 -0.5453253 0.245636 0.5687816 -0.5533834 0.245636 0.5687816 -0.5611974 0.245636 0.5687816 -0.5687816 0.245636 0.5687816 -0.092819 0.2686816 0.5687816 -0.1056428 0.2686816 0.5687816 -0.1201537 0.2686816 0.5687816 -0.1409607 0.2686816 0.5687816 -0.1678172 0.2686816 0.5687816 -0.1950164 0.2686816 0.5687816 -0.2210581 0.2686816 0.5687816 -0.245636 0.2686816 0.5687816 -0.2686816 0.2686816 0.5687816 -0.2902431 0.2686816 0.5687816 -0.3104189 0.2686816 0.5687816 -0.3293248 0.2686816 0.5687816 -0.3470774 0.2686816 0.5687816 -0.3637862 0.2686816 0.5687816 -0.3795513 0.2686816 0.5687816 -0.3944623 0.2686816 0.5687816 -0.4085988 0.2686816 0.5687816 -0.4220313 0.2686816 0.5687816 -0.4348222 0.2686816 0.5687816 -0.4470264 0.2686816 0.5687816 -0.4586928 0.2686816 0.5687816 -0.4698649 0.2686816 0.5687816 -0.4805811 0.2686816 0.5687816 -0.490876 0.2686816 0.5687816 -0.5007803 0.2686816 0.5687816 -0.510322 0.2686816 0.5687816 -0.5195258 0.2686816 0.5687816 -0.5284142 0.2686816 0.5687816 -0.5370079 0.2686816 0.5687816 -0.5453253 0.2686816 0.5687816 -0.5533834 0.2686816 0.5687816 -0.5611974 0.2686816 0.5687816 -0.5687816 0.2686816 0.5687816 -0.092819 0.2902431 0.5687816 -0.1056428 0.2902431 0.5687816 -0.1201537 0.2902431 0.5687816 -0.1409607 0.2902431 0.5687816 -0.1678172 0.2902431 0.5687816 -0.1950164 0.2902431 0.5687816 -0.2210581 0.2902431 0.5687816 -0.245636 0.2902431 0.5687816 -0.2686816 0.2902431 0.5687816 -0.2902431 0.2902431 0.5687816 -0.3104189 0.2902431 0.5687816 -0.3293248 0.2902431 0.5687816 -0.3470774 0.2902431 0.5687816 -0.3637862 0.2902431 0.5687816 -0.3795513 0.2902431 0.5687816 -0.3944623 0.2902431 0.5687816 -0.4085988 0.2902431 0.5687816 -0.4220313 0.2902431 0.5687816 -0.4348222 0.2902431 0.5687816 -0.4470264 0.2902431 0.5687816 -0.4586928 0.2902431 0.5687816 -0.4698649 0.2902431 0.5687816 -0.4805811 0.2902431 0.5687816 -0.490876 0.2902431 0.5687816 -0.5007803 0.2902431 0.5687816 -0.510322 0.2902431 0.5687816 -0.5195258 0.2902431 0.5687816 -0.5284142 0.2902431 0.5687816 -0.5370079 0.2902431 0.5687816 -0.5453253 0.2902431 0.5687816 -0.5533834 0.2902431 0.5687816 -0.5611974 0.2902431 0.5687816 -0.5687816 0.2902431 0.5687816 -0.092819 0.3104189 0.5687816 -0.1056428 0.3104189 0.5687816 -0.1201537 0.3104189 0.5687816 -0.1409607 0.3104189 0.5687816 -0.1678172 0.3104189 0.5687816 -0.1950164 0.3104189 0.5687816 -0.2210581 0.3104189 0.5687816 -0.245636 0.3104189 0.5687816 -0.2686816 0.3104189 0.5687816 -0.2902431 0.3104189 0.5687816 -0.3104189 0.3104189 0.5687816 -0.3293248 0.3104189 0.5687816 -0.3470774 0.3104189 0.5687816 -0.3637862 0.3104189 0.5687816 -0.3795513 0.3104189 0.5687816 -0.3944623 0.3104189 0.5687816 -0.4085988 0.3104189 0.5687816 -0.4220313 0.3104189 0.5687816 -0.4348222 0.3104189 0.5687816 -0.4470264 0.3104189 0.5687816 -0.4586928 0.3104189 0.5687816 -0.4698649 0.3104189 0.5687816 -0.4805811 0.3104189 0.5687816 -0.490876 0.3104189 0.5687816 -0.5007803 0.3104189 0.5687816 -0.510322 0.3104189 0.5687816 -0.5195258 0.3104189 0.5687816 -0.5284142 0.3104189 0.5687816 -0.5370079 0.3104189 0.5687816 -0.5453253 0.3104189 0.5687816 -0.5533834 0.3104189 0.5687816 -0.5611974 0.3104189 0.5687816 -0.5687816 0.3104189 0.5687816 -0.092819 0.3293248 0.5687816 -0.1056428 0.3293248 0.5687816 -0.1201537 0.3293248 0.5687816 -0.1409607 0.3293248 0.5687816 -0.1678172 0.3293248 0.5687816 -0.1950164 0.3293248 0.5687816 -0.2210581 0.3293248 0.5687816 -0.245636 0.3293248 0.5687816 -0.2686816 0.3293248 0.5687816 -0.2902431 0.3293248 0.5687816 -0.3104189 0.3293248 0.5687816 -0.3293248 0.3293248 0.5687816 -0.3470774 0.3293248 0.5687816 -0.3637862 0.3293248 0.5687816 -0.3795513 0.3293248 0.5687816 -0.3944623 0.3293248 0.5687816 -0.4085988 0.3293248 0.5687816 -0.4220313 0.3293248 0.5687816 -0.4348222 0.3293248 0.5687816 -0.4470264 0.3293248 0.5687816 -0.4586928 0.3293248 0.5687816 -0.4698649 0.3293248 0.5687816 -0.4805811 0.3293248 0.5687816 -0.490876 0.3293248 0.5687816 -0.5007803 0.3293248 0.5687816 -0.510322 0.3293248 0.5687816 -0.5195258 0.3293248 0.5687816 -0.5284142 0.3293248 0.5687816 -0.5370079 0.3293248 0.5687816 -0.5453253 0.3293248 0.5687816 -0.5533834 0.3293248 0.5687816 -0.5611974 0.3293248 0.5687816 -0.5687816 0.3293248 0.5687816 -0.092819 0.3470774 0.5687816 -0.1056428 0.3470774 0.5687816 -0.1201537 0.3470774 0.5687816 -0.1409607 0.3470774 0.5687816 -0.1678172 0.3470774 0.5687816 -0.1950164 0.3470774 0.5687816 -0.2210581 0.3470774 0.5687816 -0.245636 0.3470774 0.5687816 -0.2686816 0.3470774 0.5687816 -0.2902431 0.3470774 0.5687816 -0.3104189 0.3470774 0.5687816 -0.3293248 0.3470774 0.5687816 -0.3470774 0.3470774 0.5687816 -0.3637862 0.3470774 0.5687816 -0.3795513 0.3470774 0.5687816 -0.3944623 0.3470774 0.5687816 -0.4085988 0.3470774 0.5687816 -0.4220313 0.3470774 0.5687816 -0.4348222 0.3470774 0.5687816 -0.4470264 0.3470774 0.5687816 -0.4586928 0.3470774 0.5687816 -0.4698649 0.3470774 0.5687816 -0.4805811 0.3470774 0.5687816 -0.490876 0.3470774 0.5687816 -0.5007803 0.3470774 0.5687816 -0.510322 0.3470774 0.5687816 -0.5195258 0.3470774 0.5687816 -0.5284142 0.3470774 0.5687816 -0.5370079 0.3470774 0.5687816 -0.5453253 0.3470774 0.5687816 -0.5533834 0.3470774 0.5687816 -0.5611974 0.3470774 0.5687816 -0.5687816 0.3470774 0.5687816 -0.092819 0.3637862 0.5687816 -0.1056428 0.3637862 0.5687816 -0.1201537 0.3637862 0.5687816 -0.1409607 0.3637862 0.5687816 -0.1678172 0.3637862 0.5687816 -0.1950164 0.3637862 0.5687816 -0.2210581 0.3637862 0.5687816 -0.245636 0.3637862 0.5687816 -0.2686816 0.3637862 0.5687816 -0.2902431 0.3637862 0.5687816 -0.3104189 0.3637862 0.5687816 -0.3293248 0.3637862 0.5687816 -0.3470774 0.3637862 0.5687816 -0.3637862 0.3637862 0.5687816 -0.3795513 0.3637862 0.5687816 -0.3944623 0.3637862 0.5687816 -0.4085988 0.3637862 0.5687816 -0.4220313 0.3637862 0.5687816 -0.4348222 0.3637862 0.5687816 -0.4470264 0.3637862 0.5687816 -0.4586928 0.3637862 0.5687816 -0.4698649 0.3637862 0.5687816 -0.4805811 0.3637862 0.5687816 -0.490876 0.3637862 0.5687816 -0.5007803 0.3637862 0.5687816 -0.510322 0.3637862 0.5687816 -0.5195258 0.3637862 0.5687816 -0.5284142 0.3637862 0.5687816 -0.5370079 0.3637862 0.5687816 -0.5453253 0.3637862 0.5687816 -0.5533834 0.3637862 0.5687816 -0.5611974 0.3637862 0.5687816 -0.5687816 0.3637862 0.5687816 -0.092819 0.3795513 0.5687816 -0.1056428 0.3795513 0.5687816 -0.1201537 0.3795513 0.5687816 -0.1409607 0.3795513 0.5687816 -0.1678172 0.3795513 0.5687816 -0.1950164 0.3795513 0.5687816 -0.2210581 0.3795513 0.5687816 -0.245636 0.3795513 0.5687816 -0.2686816 0.3795513 0.5687816 -0.2902431 0.3795513 0.5687816 -0.3104189 0.3795513 0.5687816 -0.3293248 0.3795513 0.5687816 -0.3470774 0.3795513 0.5687816 -0.3637862 0.3795513 0.5687816 -0.3795513 0.3795513 0.5687816 -0.3944623 0.3795513 0.5687816 -0.4085988 0.3795513 0.5687816 -0.4220313 0.3795513 0.5687816 -0.4348222 0.3795513 0.5687816 -0.4470264 0.3795513 0.5687816 -0.4586928 0.3795513 0.5687816 -0.4698649 0.3795513 0.5687816 -0.4805811 0.3795513 0.5687816 -0.490876 0.3795513 0.5687816 -0.5007803 0.3795513 0.5687816 -0.510322 0.3795513 0.5687816 -0.5195258 0.3795513 0.5687816 -0.5284142 0.3795513 0.5687816 -0.5370079 0.3795513 0.5687816 -0.5453253 0.3795513 0.5687816 -0.5533834 0.3795513 0.5687816 -0.5611974 0.3795513 0.5687816 -0.5687816 0.3795513 0.5687816 -0.092819 0.3944623 0.5687816 -0.1056428 0.3944623 0.5687816 -0.1201537 0.3944623 0.5687816 -0.1409607 0.3944623 0.5687816 -0.1678172 0.3944623 0.5687816 -0.1950164 0.3944623 0.5687816 -0.2210581 0.3944623 0.5687816 -0.245636 0.3944623 0.5687816 -0.2686816 0.3944623 0.5687816 -0.2902431 0.3944623 0.5687816 -0.3104189 0.3944623 0.5687816 -0.3293248 0.3944623 0.5687816 -0.3470774 0.3944623 0.5687816 -0.3637862 0.3944623 0.5687816 -0.3795513 0.3944623 0.5687816 -0.3944623 0.3944623 0.5687816 -0.4085988 0.3944623 0.5687816 -0.4220313 0.3944623 0.5687816 -0.4348222 0.3944623 0.5687816 -0.4470264 0.3944623 0.5687816 -0.4586928 0.3944623 0.5687816 -0.4698649 0.3944623 0.5687816 -0.4805811 0.3944623 0.5687816 -0.490876 0.3944623 0.5687816 -0.5007803 0.3944623 0.5687816 -0.510322 0.3944623 0.5687816 -0.5195258 0.3944623 0.5687816 -0.5284142 0.3944623 0.5687816 -0.5370079 0.3944623 0.5687816 -0.5453253 0.3944623 0.5687816 -0.5533834 0.3944623 0.5687816 -0.5611974 0.3944623 0.5687816 -0.5687816 0.3944623 0.5687816 -0.092819 0.4085988 0.5687816 -0.1056428 0.4085988 0.5687816 -0.1201537 0.4085988 0.5687816 -0.1409607 0.4085988 0.5687816 -0.1678172 0.4085988 0.5687816 -0.1950164 0.4085988 0.5687816 -0.2210581 0.4085988 0.5687816 -0.245636 0.4085988 0.5687816 -0.2686816 0.4085988 0.5687816 -0.2902431 0.4085988 0.5687816 -0.3104189 0.4085988 0.5687816 -0.3293248 0.4085988 0.5687816 -0.3470774 0.4085988 0.5687816 -0.3637862 0.4085988 0.5687816 -0.3795513 0.4085988 0.5687816 -0.3944623 0.4085988 0.5687816 -0.4085988 0.4085988 0.5687816 -0.4220313 0.4085988 0.5687816 -0.4348222 0.4085988 0.5687816 -0.4470264 0.4085988 0.5687816 -0.4586928 0.4085988 0.5687816 -0.4698649 0.4085988 0.5687816 -0.4805811 0.4085988 0.5687816 -0.490876 0.4085988 0.5687816 -0.5007803 0.4085988 0.5687816 -0.510322 0.4085988 0.5687816 -0.5195258 0.4085988 0.5687816 -0.5284142 0.4085988 0.5687816 -0.5370079 0.4085988 0.5687816 -0.5453253 0.4085988 0.5687816 -0.5533834 0.4085988 0.5687816 -0.5611974 0.4085988 0.5687816 -0.5687816 0.4085988 0.5687816 -0.092819 0.4220313 0.5687816 -0.1056428 0.4220313 0.5687816 -0.1201537 0.4220313 0.5687816 -0.1409607 0.4220313 0.5687816 -0.1678172 0.4220313 0.5687816 -0.1950164 0.4220313 0.5687816 -0.2210581 0.4220313 0.5687816 -0.245636 0.4220313 0.5687816 -0.2686816 0.4220313 0.5687816 -0.2902431 0.4220313 0.5687816 -0.3104189 0.4220313 0.5687816 -0.3293248 0.4220313 0.5687816 -0.3470774 0.4220313 0.5687816 -0.3637862 0.4220313 0.5687816 -0.3795513 0.4220313 0.5687816 -0.3944623 0.4220313 0.5687816 -0.4085988 0.4220313 0.5687816 -0.4220313 0.4220313 0.5687816 -0.4348222 0.4220313 0.5687816 -0.4470264 0.4220313 0.5687816 -0.4586928 0.4220313 0.5687816 -0.4698649 0.4220313 0.5687816 -0.4805811 0.4220313 0.5687816 -0.490876 0.4220313 0.5687816 -0.5007803 0.4220313 0.5687816 -0.510322 0.4220313 0.5687816 -0.5195258 0.4220313 0.5687816 -0.5284142 0.4220313 0.5687816 -0.5370079 0.4220313 0.5687816 -0.5453253 0.4220313 0.5687816 -0.5533834 0.4220313 0.5687816 -0.5611974 0.4220313 0.5687816 -0.5687816 0.4220313 0.5687816 -0.092819 0.4348222 0.5687816 -0.1056428 0.4348222 0.5687816 -0.1201537 0.4348222 0.5687816 -0.1409607 0.4348222 0.5687816 -0.1678172 0.4348222 0.5687816 -0.1950164 0.4348222 0.5687816 -0.2210581 0.4348222 0.5687816 -0.245636 0.4348222 0.5687816 -0.2686816 0.4348222 0.5687816 -0.2902431 0.4348222 0.5687816 -0.3104189 0.4348222 0.5687816 -0.3293248 0.4348222 0.5687816 -0.3470774 0.4348222 0.5687816 -0.3637862 0.4348222 0.5687816 -0.3795513 0.4348222 0.5687816 -0.3944623 0.4348222 0.5687816 -0.4085988 0.4348222 0.5687816 -0.4220313 0.4348222 0.5687816 -0.4348222 0.4348222 0.5687816 -0.4470264 0.4348222 0.5687816 -0.4586928 0.4348222 0.5687816 -0.4698649 0.4348222 0.5687816 -0.4805811 0.4348222 0.5687816 -0.490876 0.4348222 0.5687816 -0.5007803 0.4348222 0.5687816 -0.510322 0.4348222 0.5687816 -0.5195258 0.4348222 0.5687816 -0.5284142 0.4348222 0.5687816 -0.5370079 0.4348222 0.5687816 -0.5453253 0.4348222 0.5687816 -0.5533834 0.4348222 0.5687816 -0.5611974 0.4348222 0.5687816 -0.5687816 0.4348222 0.5687816 -0.092819 0.4470264 0.5687816 -0.1056428 0.4470264 0.5687816 -0.1201537 0.4470264 0.5687816 -0.1409607 0.4470264 0.5687816 -0.1678172 0.4470264 0.5687816 -0.1950164 0.4470264 0.5687816 -0.2210581 0.4470264 0.5687816 -0.245636 0.4470264 0.5687816 -0.2686816 0.4470264 0.5687816 -0.2902431 0.4470264 0.5687816 -0.3104189 0.4470264 0.5687816 -0.3293248 0.4470264 0.5687816 -0.3470774 0.4470264 0.5687816 -0.3637862 0.4470264 0.5687816 -0.3795513 0.4470264 0.5687816 -0.3944623 0.4470264 0.5687816 -0.4085988 0.4470264 0.5687816 -0.4220313 0.4470264 0.5687816 -0.4348222 0.4470264 0.5687816 -0.4470264 0.4470264 0.5687816 -0.4586928 0.4470264 0.5687816 -0.4698649 0.4470264 0.5687816 -0.4805811 0.4470264 0.5687816 -0.490876 0.4470264 0.5687816 -0.5007803 0.4470264 0.5687816 -0.510322 0.4470264 0.5687816 -0.5195258 0.4470264 0.5687816 -0.5284142 0.4470264 0.5687816 -0.5370079 0.4470264 0.5687816 -0.5453253 0.4470264 0.5687816 -0.5533834 0.4470264 0.5687816 -0.5611974 0.4470264 0.5687816 -0.5687816 0.4470264 0.5687816 -0.092819 0.4586928 0.5687816 -0.1056428 0.4586928 0.5687816 -0.1201537 0.4586928 0.5687816 -0.1409607 0.4586928 0.5687816 -0.1678172 0.4586928 0.5687816 -0.1950164 0.4586928 0.5687816 -0.2210581 0.4586928 0.5687816 -0.245636 0.4586928 0.5687816 -0.2686816 0.4586928 0.5687816 -0.2902431 0.4586928 0.5687816 -0.3104189 0.4586928 0.5687816 -0.3293248 0.4586928 0.5687816 -0.3470774 0.4586928 0.5687816 -0.3637862 0.4586928 0.5687816 -0.3795513 0.4586928 0.5687816 -0.3944623 0.4586928 0.5687816 -0.4085988 0.4586928 0.5687816 -0.4220313 0.4586928 0.5687816 -0.4348222 0.4586928 0.5687816 -0.4470264 0.4586928 0.5687816 -0.4586928 0.4586928 0.5687816 -0.4698649 0.4586928 0.5687816 -0.4805811 0.4586928 0.5687816 -0.490876 0.4586928 0.5687816 -0.5007803 0.4586928 0.5687816 -0.510322 0.4586928 0.5687816 -0.5195258 0.4586928 0.5687816 -0.5284142 0.4586928 0.5687816 -0.5370079 0.4586928 0.5687816 -0.5453253 0.4586928 0.5687816 -0.5533834 0.4586928 0.5687816 -0.5611974 0.4586928 0.5687816 -0.5687816 0.4586928 0.5687816 -0.092819 0.4698649 0.5687816 -0.1056428 0.4698649 0.5687816 -0.1201537 0.4698649 0.5687816 -0.1409607 0.4698649 0.5687816 -0.1678172 0.4698649 0.5687816 -0.1950164 0.4698649 0.5687816 -0.2210581 0.4698649 0.5687816 -0.245636 0.4698649 0.5687816 -0.2686816 0.4698649 0.5687816 -0.2902431 0.4698649 0.5687816 -0.3104189 0.4698649 0.5687816 -0.3293248 0.4698649 0.5687816 -0.3470774 0.4698649 0.5687816 -0.3637862 0.4698649 0.5687816 -0.3795513 0.4698649 0.5687816 -0.3944623 0.4698649 0.5687816 -0.4085988 0.4698649 0.5687816 -0.4220313 0.4698649 0.5687816 -0.4348222 0.4698649 0.5687816 -0.4470264 0.4698649 0.5687816 -0.4586928 0.4698649 0.5687816 -0.4698649 0.4698649 0.5687816 -0.4805811 0.4698649 0.5687816 -0.490876 0.4698649 0.5687816 -0.5007803 0.4698649 0.5687816 -0.510322 0.4698649 0.5687816 -0.5195258 0.4698649 0.5687816 -0.5284142 0.4698649 0.5687816 -0.5370079 0.4698649 0.5687816 -0.5453253 0.4698649 0.5687816 -0.5533834 0.4698649 0.5687816 -0.5611974 0.4698649 0.5687816 -0.5687816 0.4698649 0.5687816 -0.092819 0.4805811 0.5687816 -0.1056428 0.4805811 0.5687816 -0.1201537 0.4805811 0.5687816 -0.1409607 0.4805811 0.5687816 -0.1678172 0.4805811 0.5687816 -0.1950164 0.4805811 0.5687816 -0.2210581 0.4805811 0.5687816 -0.245636 0.4805811 0.5687816 -0.2686816 0.4805811 0.5687816 -0.2902431 0.4805811 0.5687816 -0.3104189 0.4805811 0.5687816 -0.3293248 0.4805811 0.5687816 -0.3470774 0.4805811 0.5687816 -0.3637862 0.4805811 0.5687816 -0.3795513 0.4805811 0.5687816 -0.3944623 0.4805811 0.5687816 -0.4085988 0.4805811 0.5687816 -0.4220313 0.4805811 0.5687816 -0.4348222 0.4805811 0.5687816 -0.4470264 0.4805811 0.5687816 -0.4586928 0.4805811 0.5687816 -0.4698649 0.4805811 0.5687816 -0.4805811 0.4805811 0.5687816 -0.490876 0.4805811 0.5687816 -0.5007803 0.4805811 0.5687816 -0.510322 0.4805811 0.5687816 -0.5195258 0.4805811 0.5687816 -0.5284142 0.4805811 0.5687816 -0.5370079 0.4805811 0.5687816 -0.5453253 0.4805811 0.5687816 -0.5533834 0.4805811 0.5687816 -0.5611974 0.4805811 0.5687816 -0.5687816 0.4805811 0.5687816 -0.092819 0.490876 0.5687816 -0.1056428 0.490876 0.5687816 -0.1201537 0.490876 0.5687816 -0.1409607 0.490876 0.5687816 -0.1678172 0.490876 0.5687816 -0.1950164 0.490876 0.5687816 -0.2210581 0.490876 0.5687816 -0.245636 0.490876 0.5687816 -0.2686816 0.490876 0.5687816 -0.2902431 0.490876 0.5687816 -0.3104189 0.490876 0.5687816 -0.3293248 0.490876 0.5687816 -0.3470774 0.490876 0.5687816 -0.3637862 0.490876 0.5687816 -0.3795513 0.490876 0.5687816 -0.3944623 0.490876 0.5687816 -0.4085988 0.490876 0.5687816 -0.4220313 0.490876 0.5687816 -0.4348222 0.490876 0.5687816 -0.4470264 0.490876 0.5687816 -0.4586928 0.490876 0.5687816 -0.4698649 0.490876 0.5687816 -0.4805811 0.490876 0.5687816 -0.490876 0.490876 0.5687816 -0.5007803 0.490876 0.5687816 -0.510322 0.490876 0.5687816 -0.5195258 0.490876 0.5687816 -0.5284142 0.490876 0.5687816 -0.5370079 0.490876 0.5687816 -0.5453253 0.490876 0.5687816 -0.5533834 0.490876 0.5687816 -0.5611974 0.490876 0.5687816 -0.5687816 0.490876 0.5687816 -0.092819 0.5007803 0.5687816 -0.1056428 0.5007803 0.5687816 -0.1201537 0.5007803 0.5687816 -0.1409607 0.5007803 0.5687816 -0.1678172 0.5007803 0.5687816 -0.1950164 0.5007803 0.5687816 -0.2210581 0.5007803 0.5687816 -0.245636 0.5007803 0.5687816 -0.2686816 0.5007803 0.5687816 -0.2902431 0.5007803 0.5687816 -0.3104189 0.5007803 0.5687816 -0.3293248 0.5007803 0.5687816 -0.3470774 0.5007803 0.5687816 -0.3637862 0.5007803 0.5687816 -0.3795513 0.5007803 0.5687816 -0.3944623 0.5007803 0.5687816 -0.4085988 0.5007803 0.5687816 -0.4220313 0.5007803 0.5687816 -0.4348222 0.5007803 0.5687816 -0.4470264 0.5007803 0.5687816 -0.4586928 0.5007803 0.5687816 -0.4698649 0.5007803 0.5687816 -0.4805811 0.5007803 0.5687816 -0.490876 0.5007803 0.5687816 -0.5007803 0.5007803 0.5687816 -0.510322 0.5007803 0.5687816 -0.5195258 0.5007803 0.5687816 -0.5284142 0.5007803 0.5687816 -0.5370079 0.5007803 0.5687816 -0.5453253 0.5007803 0.5687816 -0.5533834 0.5007803 0.5687816 -0.5611974 0.5007803 0.5687816 -0.5687816 0.5007803 0.5687816 -0.092819 0.510322 0.5687816 -0.1056428 0.510322 0.5687816 -0.1201537 0.510322 0.5687816 -0.1409607 0.510322 0.5687816 -0.1678172 0.510322 0.5687816 -0.1950164 0.510322 0.5687816 -0.2210581 0.510322 0.5687816 -0.245636 0.510322 0.5687816 -0.2686816 0.510322 0.5687816 -0.2902431 0.510322 0.5687816 -0.3104189 0.510322 0.5687816 -0.3293248 0.510322 0.5687816 -0.3470774 0.510322 0.5687816 -0.3637862 0.510322 0.5687816 -0.3795513 0.510322 0.5687816 -0.3944623 0.510322 0.5687816 -0.4085988 0.510322 0.5687816 -0.4220313 0.510322 0.5687816 -0.4348222 0.510322 0.5687816 -0.4470264 0.510322 0.5687816 -0.4586928 0.510322 0.5687816 -0.4698649 0.510322 0.5687816 -0.4805811 0.510322 0.5687816 -0.490876 0.510322 0.5687816 -0.5007803 0.510322 0.5687816 -0.510322 0.510322 0.5687816 -0.5195258 0.510322 0.5687816 -0.5284142 0.510322 0.5687816 -0.5370079 0.510322 0.5687816 -0.5453253 0.510322 0.5687816 -0.5533834 0.510322 0.5687816 -0.5611974 0.510322 0.5687816 -0.5687816 0.510322 0.5687816 -0.092819 0.5195258 0.5687816 -0.1056428 0.5195258 0.5687816 -0.1201537 0.5195258 0.5687816 -0.1409607 0.5195258 0.5687816 -0.1678172 0.5195258 0.5687816 -0.1950164 0.5195258 0.5687816 -0.2210581 0.5195258 0.5687816 -0.245636 0.5195258 0.5687816 -0.2686816 0.5195258 0.5687816 -0.2902431 0.5195258 0.5687816 -0.3104189 0.5195258 0.5687816 -0.3293248 0.5195258 0.5687816 -0.3470774 0.5195258 0.5687816 -0.3637862 0.5195258 0.5687816 -0.3795513 0.5195258 0.5687816 -0.3944623 0.5195258 0.5687816 -0.4085988 0.5195258 0.5687816 -0.4220313 0.5195258 0.5687816 -0.4348222 0.5195258 0.5687816 -0.4470264 0.5195258 0.5687816 -0.4586928 0.5195258 0.5687816 -0.4698649 0.5195258 0.5687816 -0.4805811 0.5195258 0.5687816 -0.490876 0.5195258 0.5687816 -0.5007803 0.5195258 0.5687816 -0.510322 0.5195258 0.5687816 -0.5195258 0.5195258 0.5687816 -0.5284142 0.5195258 0.5687816 -0.5370079 0.5195258 0.5687816 -0.5453253 0.5195258 0.5687816 -0.5533834 0.5195258 0.5687816 -0.5611974 0.5195258 0.5687816 -0.5687816 0.5195258 0.5687816 -0.092819 0.5284142 0.5687816 -0.1056428 0.5284142 0.5687816 -0.1201537 0.5284142 0.5687816 -0.1409607 0.5284142 0.5687816 -0.1678172 0.5284142 0.5687816 -0.1950164 0.5284142 0.5687816 -0.2210581 0.5284142 0.5687816 -0.245636 0.5284142 0.5687816 -0.2686816 0.5284142 0.5687816 -0.2902431 0.5284142 0.5687816 -0.3104189 0.5284142 0.5687816 -0.3293248 0.5284142 0.5687816 -0.3470774 0.5284142 0.5687816 -0.3637862 0.5284142 0.5687816 -0.3795513 0.5284142 0.5687816 -0.3944623 0.5284142 0.5687816 -0.4085988 0.5284142 0.5687816 -0.4220313 0.5284142 0.5687816 -0.4348222 0.5284142 0.5687816 -0.4470264 0.5284142 0.5687816 -0.4586928 0.5284142 0.5687816 -0.4698649 0.5284142 0.5687816 -0.4805811 0.5284142 0.5687816 -0.490876 0.5284142 0.5687816 -0.5007803 0.5284142 0.5687816 -0.510322 0.5284142 0.5687816 -0.5195258 0.5284142 0.5687816 -0.5284142 0.5284142 0.5687816 -0.5370079 0.5284142 0.5687816 -0.5453253 0.5284142 0.5687816 -0.5533834 0.5284142 0.5687816 -0.5611974 0.5284142 0.5687816 -0.5687816 0.5284142 0.5687816 -0.092819 0.5370079 0.5687816 -0.1056428 0.5370079 0.5687816 -0.1201537 0.5370079 0.5687816 -0.1409607 0.5370079 0.5687816 -0.1678172 0.5370079 0.5687816 -0.1950164 0.5370079 0.5687816 -0.2210581 0.5370079 0.5687816 -0.245636 0.5370079 0.5687816 -0.2686816 0.5370079 0.5687816 -0.2902431 0.5370079 0.5687816 -0.3104189 0.5370079 0.5687816 -0.3293248 0.5370079 0.5687816 -0.3470774 0.5370079 0.5687816 -0.3637862 0.5370079 0.5687816 -0.3795513 0.5370079 0.5687816 -0.3944623 0.5370079 0.5687816 -0.4085988 0.5370079 0.5687816 -0.4220313 0.5370079 0.5687816 -0.4348222 0.5370079 0.5687816 -0.4470264 0.5370079 0.5687816 -0.4586928 0.5370079 0.5687816 -0.4698649 0.5370079 0.5687816 -0.4805811 0.5370079 0.5687816 -0.490876 0.5370079 0.5687816 -0.5007803 0.5370079 0.5687816 -0.510322 0.5370079 0.5687816 -0.5195258 0.5370079 0.5687816 -0.5284142 0.5370079 0.5687816 -0.5370079 0.5370079 0.5687816 -0.5453253 0.5370079 0.5687816 -0.5533834 0.5370079 0.5687816 -0.5611974 0.5370079 0.5687816 -0.5687816 0.5370079 0.5687816 -0.092819 0.5453253 0.5687816 -0.1056428 0.5453253 0.5687816 -0.1201537 0.5453253 0.5687816 -0.1409607 0.5453253 0.5687816 -0.1678172 0.5453253 0.5687816 -0.1950164 0.5453253 0.5687816 -0.2210581 0.5453253 0.5687816 -0.245636 0.5453253 0.5687816 -0.2686816 0.5453253 0.5687816 -0.2902431 0.5453253 0.5687816 -0.3104189 0.5453253 0.5687816 -0.3293248 0.5453253 0.5687816 -0.3470774 0.5453253 0.5687816 -0.3637862 0.5453253 0.5687816 -0.3795513 0.5453253 0.5687816 -0.3944623 0.5453253 0.5687816 -0.4085988 0.5453253 0.5687816 -0.4220313 0.5453253 0.5687816 -0.4348222 0.5453253 0.5687816 -0.4470264 0.5453253 0.5687816 -0.4586928 0.5453253 0.5687816 -0.4698649 0.5453253 0.5687816 -0.4805811 0.5453253 0.5687816 -0.490876 0.5453253 0.5687816 -0.5007803 0.5453253 0.5687816 -0.510322 0.5453253 0.5687816 -0.5195258 0.5453253 0.5687816 -0.5284142 0.5453253 0.5687816 -0.5370079 0.5453253 0.5687816 -0.5453253 0.5453253 0.5687816 -0.5533834 0.5453253 0.5687816 -0.5611974 0.5453253 0.5687816 -0.5687816 0.5453253 0.5687816 -0.092819 0.5533834 0.5687816 -0.1056428 0.5533834 0.5687816 -0.1201537 0.5533834 0.5687816 -0.1409607 0.5533834 0.5687816 -0.1678172 0.5533834 0.5687816 -0.1950164 0.5533834 0.5687816 -0.2210581 0.5533834 0.5687816 -0.245636 0.5533834 0.5687816 -0.2686816 0.5533834 0.5687816 -0.2902431 0.5533834 0.5687816 -0.3104189 0.5533834 0.5687816 -0.3293248 0.5533834 0.5687816 -0.3470774 0.5533834 0.5687816 -0.3637862 0.5533834 0.5687816 -0.3795513 0.5533834 0.5687816 -0.3944623 0.5533834 0.5687816 -0.4085988 0.5533834 0.5687816 -0.4220313 0.5533834 0.5687816 -0.4348222 0.5533834 0.5687816 -0.4470264 0.5533834 0.5687816 -0.4586928 0.5533834 0.5687816 -0.4698649 0.5533834 0.5687816 -0.4805811 0.5533834 0.5687816 -0.490876 0.5533834 0.5687816 -0.5007803 0.5533834 0.5687816 -0.510322 0.5533834 0.5687816 -0.5195258 0.5533834 0.5687816 -0.5284142 0.5533834 0.5687816 -0.5370079 0.5533834 0.5687816 -0.5453253 0.5533834 0.5687816 -0.5533834 0.5533834 0.5687816 -0.5611974 0.5533834 0.5687816 -0.5687816 0.5533834 0.5687816 -0.092819 0.5611974 0.5687816 -0.1056428 0.5611974 0.5687816 -0.1201537 0.5611974 0.5687816 -0.1409607 0.5611974 0.5687816 -0.1678172 0.5611974 0.5687816 -0.1950164 0.5611974 0.5687816 -0.2210581 0.5611974 0.5687816 -0.245636 0.5611974 0.5687816 -0.2686816 0.5611974 0.5687816 -0.2902431 0.5611974 0.5687816 -0.3104189 0.5611974 0.5687816 -0.3293248 0.5611974 0.5687816 -0.3470774 0.5611974 0.5687816 -0.3637862 0.5611974 0.5687816 -0.3795513 0.5611974 0.5687816 -0.3944623 0.5611974 0.5687816 -0.4085988 0.5611974 0.5687816 -0.4220313 0.5611974 0.5687816 -0.4348222 0.5611974 0.5687816 -0.4470264 0.5611974 0.5687816 -0.4586928 0.5611974 0.5687816 -0.4698649 0.5611974 0.5687816 -0.4805811 0.5611974 0.5687816 -0.490876 0.5611974 0.5687816 -0.5007803 0.5611974 0.5687816 -0.510322 0.5611974 0.5687816 -0.5195258 0.5611974 0.5687816 -0.5284142 0.5611974 0.5687816 -0.5370079 0.5611974 0.5687816 -0.5453253 0.5611974 0.5687816 -0.5533834 0.5611974 0.5687816 -0.5611974 0.5611974 0.5687816 -0.5687816 0.5611974 0.5687816 -0.092819 0.5687816 0.5687816 -0.1056428 0.5687816 0.5687816 -0.1201537 0.5687816 0.5687816 -0.1409607 0.5687816 0.5687816 -0.1678172 0.5687816 0.5687816 -0.1950164 0.5687816 0.5687816 -0.2210581 0.5687816 0.5687816 -0.245636 0.5687816 0.5687816 -0.2686816 0.5687816 0.5687816 -0.2902431 0.5687816 0.5687816 -0.3104189 0.5687816 0.5687816 -0.3293248 0.5687816 0.5687816 -0.3470774 0.5687816 0.5687816 -0.3637862 0.5687816 0.5687816 -0.3795513 0.5687816 0.5687816 -0.3944623 0.5687816 0.5687816 -0.4085988 0.5687816 0.5687816 -0.4220313 0.5687816 0.5687816 -0.4348222 0.5687816 0.5687816 -0.4470264 0.5687816 0.5687816 -0.4586928 0.5687816 0.5687816 -0.4698649 0.5687816 0.5687816 -0.4805811 0.5687816 0.5687816 -0.490876 0.5687816 0.5687816 -0.5007803 0.5687816 0.5687816 -0.510322 0.5687816 0.5687816 -0.5195258 0.5687816 0.5687816 -0.5284142 0.5687816 0.5687816 -0.5370079 0.5687816 0.5687816 -0.5453253 0.5687816 0.5687816 -0.5533834 0.5687816 0.5687816 -0.5611974 0.5687816 0.5687816 -0.5687816 0.5687816 0.5687816 diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/sRGB to Unity Log r1.cube.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/sRGB to Unity Log r1.cube.meta deleted file mode 100644 index 70000943f..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Cubes/sRGB to Unity Log r1.cube.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0667d6b8b8bbc4241a55ac71faa5de15 -timeCreated: 1496826837 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/LUTs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/LUTs.meta deleted file mode 100644 index 1f94f0c13..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/LUTs.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 499867e2df2e54e4aad0b9333221f875 -folderAsset: yes -timeCreated: 1473255405 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/LUTs/NeutralLdrLut.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/LUTs/NeutralLdrLut.png deleted file mode 100644 index b8724d41d..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/LUTs/NeutralLdrLut.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/LUTs/NeutralLdrLut.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/LUTs/NeutralLdrLut.png.meta deleted file mode 100644 index 26b8290a0..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/LUTs/NeutralLdrLut.png.meta +++ /dev/null @@ -1,76 +0,0 @@ -fileFormatVersion: 2 -guid: 4f98e9c96c8a48541b5eb704e92d99b8 -timeCreated: 1494512026 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 1 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 3 - maxTextureSize: 2048 - textureSettings: - filterMode: 1 - aniso: 0 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 0 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 2048 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt.meta deleted file mode 100644 index 1efaa7c96..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 705e7922061713741885ae52a3e0bea4 -folderAsset: yes -timeCreated: 1472737148 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt/LensDirt00.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt/LensDirt00.png deleted file mode 100644 index d90b8c06c..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt/LensDirt00.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt/LensDirt00.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt/LensDirt00.png.meta deleted file mode 100644 index 62af47ec1..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt/LensDirt00.png.meta +++ /dev/null @@ -1,84 +0,0 @@ -fileFormatVersion: 2 -guid: 69e847bbff1cf5449a4ee0bbd045dbc9 -timeCreated: 1472572785 -licenseType: Store -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 4096 - textureSettings: - filterMode: -1 - aniso: 0 - mipBias: -1 - wrapMode: 0 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 0 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 4096 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 4096 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: PS4 - maxTextureSize: 4096 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt/LensDirt01.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt/LensDirt01.png deleted file mode 100644 index eb9efb6ce..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt/LensDirt01.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt/LensDirt01.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt/LensDirt01.png.meta deleted file mode 100644 index e735079cc..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt/LensDirt01.png.meta +++ /dev/null @@ -1,84 +0,0 @@ -fileFormatVersion: 2 -guid: 3884f7a2d04ffe8409ad9200b275896f -timeCreated: 1472551546 -licenseType: Store -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 4096 - textureSettings: - filterMode: -1 - aniso: 0 - mipBias: -1 - wrapMode: 0 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 0 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 4096 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 4096 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: PS4 - maxTextureSize: 4096 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt/LensDirt02.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt/LensDirt02.png deleted file mode 100644 index bc52c2a49..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt/LensDirt02.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt/LensDirt02.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt/LensDirt02.png.meta deleted file mode 100644 index 3ccc21581..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt/LensDirt02.png.meta +++ /dev/null @@ -1,84 +0,0 @@ -fileFormatVersion: 2 -guid: a2960ffde020f27409e070d92fb2e00b -timeCreated: 1472632371 -licenseType: Store -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 4096 - textureSettings: - filterMode: -1 - aniso: 0 - mipBias: -1 - wrapMode: 0 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 0 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 4096 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 4096 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: PS4 - maxTextureSize: 4096 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt/LensDirt03.png b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt/LensDirt03.png deleted file mode 100644 index 7ccd8afa2..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt/LensDirt03.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt/LensDirt03.png.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt/LensDirt03.png.meta deleted file mode 100644 index 5a8a1fa34..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Lens Dirt/LensDirt03.png.meta +++ /dev/null @@ -1,84 +0,0 @@ -fileFormatVersion: 2 -guid: 7a051dbda2d7bc447bee412427cd311e -timeCreated: 1472641925 -licenseType: Store -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 4096 - textureSettings: - filterMode: -1 - aniso: 0 - mipBias: -1 - wrapMode: 0 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 0 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 4096 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 4096 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: PS4 - maxTextureSize: 4096 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/SMAA.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/SMAA.meta deleted file mode 100644 index 6ece3b546..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/SMAA.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 38da3638e0c5cfc4cbafb133be6af039 -folderAsset: yes -timeCreated: 1497735225 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/SMAA/AreaTex.tga b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/SMAA/AreaTex.tga deleted file mode 100644 index 57f595e65..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/SMAA/AreaTex.tga and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/SMAA/AreaTex.tga.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/SMAA/AreaTex.tga.meta deleted file mode 100644 index fb232df1c..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/SMAA/AreaTex.tga.meta +++ /dev/null @@ -1,108 +0,0 @@ -fileFormatVersion: 2 -guid: 73ec4ae984a0a0f44a2be737e41a6f2f -timeCreated: 1497870375 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 1 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: -3 - maxTextureSize: 2048 - textureSettings: - filterMode: 1 - aniso: 0 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 0 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 2048 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: iPhone - maxTextureSize: 2048 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Android - maxTextureSize: 2048 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: WebGL - maxTextureSize: 2048 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: PS4 - maxTextureSize: 2048 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/SMAA/SearchTex.tga b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/SMAA/SearchTex.tga deleted file mode 100644 index bda78d053..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/SMAA/SearchTex.tga and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/SMAA/SearchTex.tga.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/SMAA/SearchTex.tga.meta deleted file mode 100644 index f86317730..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/SMAA/SearchTex.tga.meta +++ /dev/null @@ -1,84 +0,0 @@ -fileFormatVersion: 2 -guid: d99701099481a2f489610e977df6dcbc -timeCreated: 1497870385 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 0 - linearTexture: 1 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 1 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: -1 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaUsage: 2 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 10 - textureShape: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - platformSettings: - - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: Standalone - maxTextureSize: 2048 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - - buildTarget: PS4 - maxTextureSize: 2048 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs.meta deleted file mode 100644 index 833d265e8..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 67d9249960fda4c41b0a23a65573a8a2 -folderAsset: yes -timeCreated: 1473255405 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs/SpectralLut_BlueRed.tga b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs/SpectralLut_BlueRed.tga deleted file mode 100644 index 81828f595..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs/SpectralLut_BlueRed.tga and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs/SpectralLut_BlueRed.tga.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs/SpectralLut_BlueRed.tga.meta deleted file mode 100644 index f47c5b8db..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs/SpectralLut_BlueRed.tga.meta +++ /dev/null @@ -1,59 +0,0 @@ -fileFormatVersion: 2 -guid: 318cbcd94840f1d48aca4d86234dc2e7 -timeCreated: 1473255656 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 7 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -3 - maxTextureSize: 32 - textureSettings: - filterMode: 1 - aniso: 0 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 5 - buildTargetSettings: [] - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs/SpectralLut_GreenPurple.tga b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs/SpectralLut_GreenPurple.tga deleted file mode 100644 index 4dd4db73b..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs/SpectralLut_GreenPurple.tga and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs/SpectralLut_GreenPurple.tga.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs/SpectralLut_GreenPurple.tga.meta deleted file mode 100644 index 1bec2a912..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs/SpectralLut_GreenPurple.tga.meta +++ /dev/null @@ -1,59 +0,0 @@ -fileFormatVersion: 2 -guid: 4a8f054acfbd08043a931cd22760758d -timeCreated: 1473255985 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 7 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -3 - maxTextureSize: 32 - textureSettings: - filterMode: 1 - aniso: 0 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 5 - buildTargetSettings: [] - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs/SpectralLut_PurpleGreen.tga b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs/SpectralLut_PurpleGreen.tga deleted file mode 100644 index d67304c36..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs/SpectralLut_PurpleGreen.tga and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs/SpectralLut_PurpleGreen.tga.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs/SpectralLut_PurpleGreen.tga.meta deleted file mode 100644 index 1077fda09..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs/SpectralLut_PurpleGreen.tga.meta +++ /dev/null @@ -1,59 +0,0 @@ -fileFormatVersion: 2 -guid: 42183971d24cfe443a346e7ec6e83bbb -timeCreated: 1473256088 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 7 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -3 - maxTextureSize: 32 - textureSettings: - filterMode: 1 - aniso: 0 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 5 - buildTargetSettings: [] - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs/SpectralLut_RedBlue.tga b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs/SpectralLut_RedBlue.tga deleted file mode 100644 index 43cd8260c..000000000 Binary files a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs/SpectralLut_RedBlue.tga and /dev/null differ diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs/SpectralLut_RedBlue.tga.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs/SpectralLut_RedBlue.tga.meta deleted file mode 100644 index fbe39ef6a..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/PostProcessing/Textures/Spectral LUTs/SpectralLut_RedBlue.tga.meta +++ /dev/null @@ -1,59 +0,0 @@ -fileFormatVersion: 2 -guid: ff5f3317371838d4fa16ac6c2acf2040 -timeCreated: 1473255656 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 7 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -3 - maxTextureSize: 32 - textureSettings: - filterMode: 1 - aniso: 0 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 5 - buildTargetSettings: [] - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/README.md b/Library/PackageCache/com.unity.postprocessing@2.1.6/README.md deleted file mode 100644 index 537113bba..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/README.md +++ /dev/null @@ -1,15 +0,0 @@ -# Post-processing Stack v2 - -This branch is under active development and holds the current version of the post-processing stack. - -Instructions ------------- - -Documentation is available [on the wiki](https://github.com/Unity-Technologies/PostProcessing/wiki). - -The current version requires Unity 5.6.1+. Some effects and features are only available on newer versions of Unity. - -License -------- - -Unity Companion License (see [LICENSE](LICENSE.md)) diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/README.md.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/README.md.meta deleted file mode 100644 index 0368bed31..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/README.md.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: ca7a38280ff78fe46ada465121128871 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/.tests.json b/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/.tests.json deleted file mode 100644 index 760457caf..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/.tests.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "createSeparatePackage": false -} \ No newline at end of file diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Editor.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Editor.meta deleted file mode 100644 index c057b529f..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Editor.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 442a14ff04d835d4ca7c574aa4237b07 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Editor/PostProcessEditorTests.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Editor/PostProcessEditorTests.cs deleted file mode 100644 index 0e914f042..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Editor/PostProcessEditorTests.cs +++ /dev/null @@ -1,16 +0,0 @@ -using System.Collections; -using System.Collections.Generic; -using NUnit.Framework; -using UnityEngine; -using UnityEngine.Rendering.PostProcessing; -using UnityEngine.TestTools; -using UnityEditor; - -class PostProcessEditorTests -{ - [Test] - public void DummyTest() - { - Assert.IsTrue(true); - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Editor/PostProcessEditorTests.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Editor/PostProcessEditorTests.cs.meta deleted file mode 100644 index e64ca7f1c..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Editor/PostProcessEditorTests.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: c235f7d2e7a5d3847b50e73fccc74bab -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Editor/Unity.Postprocessing.Editor.Tests.asmdef b/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Editor/Unity.Postprocessing.Editor.Tests.asmdef deleted file mode 100644 index f1bdf8c41..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Editor/Unity.Postprocessing.Editor.Tests.asmdef +++ /dev/null @@ -1,19 +0,0 @@ -{ - "name": "Unity.Postprocessing.Editor.Tests", - "references": [ - "Unity.Postprocessing.Runtime", - "Unity.Postprocessing.Editor" - ], - "optionalUnityReferences": [ - "TestAssemblies" - ], - "includePlatforms": [ - "Editor" - ], - "excludePlatforms": [], - "allowUnsafeCode": true, - "overrideReferences": false, - "precompiledReferences": [], - "autoReferenced": true, - "defineConstraints": [] -} \ No newline at end of file diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Editor/Unity.Postprocessing.Editor.Tests.asmdef.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Editor/Unity.Postprocessing.Editor.Tests.asmdef.meta deleted file mode 100644 index 25deac8a5..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Editor/Unity.Postprocessing.Editor.Tests.asmdef.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 6d1cd2be5ba39024fb7362476c42d023 -AssemblyDefinitionImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime.meta deleted file mode 100644 index c22377e22..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4ac1374fad5b72b488c0aa6dc2a6b481 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/PostProcessingRuntimeTests.cs b/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/PostProcessingRuntimeTests.cs deleted file mode 100644 index 422f57f07..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/PostProcessingRuntimeTests.cs +++ /dev/null @@ -1,84 +0,0 @@ -using System; -using NUnit.Framework; -using UnityEngine; -using UnityEngine.Rendering.PostProcessing; - -class PostProcessingTests -{ - [Test] - public void Profile_AddSettings() - { - var profile = NewProfile(); - - var bloom = profile.AddSettings(); - Assert.IsNotNull(bloom); - - Destroy(profile); - } - - [Test] - public void Profile_HasSettings() - { - var profile = NewProfile(typeof(Bloom)); - - Assert.IsTrue(profile.HasSettings()); - Assert.IsFalse(profile.HasSettings()); - - Destroy(profile); - } - - [Test] - public void Profile_GetSettings() - { - var profile = NewProfile(typeof(Bloom)); - - Assert.IsNotNull(profile.GetSetting()); - Assert.IsNull(profile.GetSetting()); - - Destroy(profile); - } - - [Test] - public void Profile_TryGetSettings() - { - var profile = NewProfile(typeof(Bloom)); - - Bloom outBloom; - var exists = profile.TryGetSettings(out outBloom); - Assert.IsTrue(exists); - Assert.IsNotNull(outBloom); - - ChromaticAberration outChroma; - exists = profile.TryGetSettings(out outChroma); - Assert.IsFalse(exists); - Assert.IsNull(outChroma); - - Destroy(profile); - } - - [Test] - public void Profile_RemoveSettings() - { - var profile = NewProfile(typeof(Bloom)); - - profile.RemoveSettings(); - Assert.IsFalse(profile.HasSettings()); - - Destroy(profile); - } - - static PostProcessProfile NewProfile(params Type[] types) - { - var profile = ScriptableObject.CreateInstance(); - - foreach (var t in types) - profile.AddSettings(t); - - return profile; - } - - static void Destroy(PostProcessProfile profile) - { - UnityEngine.Object.DestroyImmediate(profile); - } -} diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/PostProcessingRuntimeTests.cs.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/PostProcessingRuntimeTests.cs.meta deleted file mode 100644 index 4432157ca..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/PostProcessingRuntimeTests.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: d82acb873f357d046901f9e9f888911a -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes.meta deleted file mode 100644 index 37966897d..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4339ddb5808e0a846a703ad63e43f976 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/0010_Volumes.unity b/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/0010_Volumes.unity deleted file mode 100644 index 322c7f7c0..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/0010_Volumes.unity +++ /dev/null @@ -1,357 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!29 &1 -OcclusionCullingSettings: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_OcclusionBakeSettings: - smallestOccluder: 5 - smallestHole: 0.25 - backfaceThreshold: 100 - m_SceneGUID: 00000000000000000000000000000000 - m_OcclusionCullingData: {fileID: 0} ---- !u!104 &2 -RenderSettings: - m_ObjectHideFlags: 0 - serializedVersion: 9 - m_Fog: 0 - m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} - m_FogMode: 3 - m_FogDensity: 0.01 - m_LinearFogStart: 0 - m_LinearFogEnd: 300 - m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} - m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} - m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} - m_AmbientIntensity: 1 - m_AmbientMode: 0 - m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} - m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0} - m_HaloStrength: 0.5 - m_FlareStrength: 1 - m_FlareFadeSpeed: 3 - m_HaloTexture: {fileID: 0} - m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} - m_DefaultReflectionMode: 0 - m_DefaultReflectionResolution: 128 - m_ReflectionBounces: 1 - m_ReflectionIntensity: 1 - m_CustomReflection: {fileID: 0} - m_Sun: {fileID: 0} - m_IndirectSpecularColor: {r: 0.37311953, g: 0.38074014, b: 0.3587274, a: 1} - m_UseRadianceAmbientProbe: 0 ---- !u!157 &3 -LightmapSettings: - m_ObjectHideFlags: 0 - serializedVersion: 11 - m_GIWorkflowMode: 0 - m_GISettings: - serializedVersion: 2 - m_BounceScale: 1 - m_IndirectOutputScale: 1 - m_AlbedoBoost: 1 - m_EnvironmentLightingMode: 0 - m_EnableBakedLightmaps: 1 - m_EnableRealtimeLightmaps: 0 - m_LightmapEditorSettings: - serializedVersion: 10 - m_Resolution: 2 - m_BakeResolution: 10 - m_AtlasSize: 512 - m_AO: 0 - m_AOMaxDistance: 1 - m_CompAOExponent: 1 - m_CompAOExponentDirect: 0 - m_Padding: 2 - m_LightmapParameters: {fileID: 0} - m_LightmapsBakeMode: 1 - m_TextureCompression: 1 - m_FinalGather: 0 - m_FinalGatherFiltering: 1 - m_FinalGatherRayCount: 256 - m_ReflectionCompression: 2 - m_MixedBakeMode: 2 - m_BakeBackend: 1 - m_PVRSampling: 1 - m_PVRDirectSampleCount: 32 - m_PVRSampleCount: 256 - m_PVRBounces: 2 - m_PVRFilterTypeDirect: 0 - m_PVRFilterTypeIndirect: 0 - m_PVRFilterTypeAO: 0 - m_PVRFilteringMode: 1 - m_PVRCulling: 1 - m_PVRFilteringGaussRadiusDirect: 1 - m_PVRFilteringGaussRadiusIndirect: 5 - m_PVRFilteringGaussRadiusAO: 2 - m_PVRFilteringAtrousPositionSigmaDirect: 0.5 - m_PVRFilteringAtrousPositionSigmaIndirect: 2 - m_PVRFilteringAtrousPositionSigmaAO: 1 - m_ShowResolutionOverlay: 1 - m_LightingDataAsset: {fileID: 0} - m_UseShadowmask: 1 ---- !u!196 &4 -NavMeshSettings: - serializedVersion: 2 - m_ObjectHideFlags: 0 - m_BuildSettings: - serializedVersion: 2 - agentTypeID: 0 - agentRadius: 0.5 - agentHeight: 2 - agentSlope: 45 - agentClimb: 0.4 - ledgeDropHeight: 0 - maxJumpAcrossDistance: 0 - minRegionArea: 2 - manualCellSize: 0 - cellSize: 0.16666667 - manualTileSize: 0 - tileSize: 256 - accuratePlacement: 0 - debug: - m_Flags: 0 - m_NavMeshData: {fileID: 0} ---- !u!1 &282593761 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 282593764} - - component: {fileID: 282593763} - - component: {fileID: 282593762} - m_Layer: 8 - m_Name: Local Volume - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!114 &282593762 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 282593761} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 8b9a305e18de0c04dbd257a21cd47087, type: 3} - m_Name: - m_EditorClassIdentifier: - sharedProfile: {fileID: 11400000, guid: 08ad0e90887ff9648aee4f88911845b9, type: 2} - isGlobal: 0 - blendDistance: 0 - weight: 1 - priority: 1 ---- !u!65 &282593763 -BoxCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 282593761} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 2 - m_Size: {x: 1, y: 1, z: 1} - m_Center: {x: 0, y: 0, z: 0} ---- !u!4 &282593764 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 282593761} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &534669902 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 534669905} - - component: {fileID: 534669904} - - component: {fileID: 534669907} - m_Layer: 0 - m_Name: Main Camera - m_TagString: MainCamera - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!20 &534669904 -Camera: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 534669902} - m_Enabled: 1 - serializedVersion: 2 - m_ClearFlags: 2 - m_BackGroundColor: {r: 0.21698111, g: 0.21698111, b: 0.21698111, a: 0} - m_projectionMatrixMode: 1 - m_SensorSize: {x: 36, y: 24} - m_LensShift: {x: 0, y: 0} - m_GateFitMode: 2 - m_FocalLength: 50 - m_NormalizedViewPortRect: - serializedVersion: 2 - x: 0 - y: 0 - width: 1 - height: 1 - near clip plane: 0.3 - far clip plane: 1000 - field of view: 60 - orthographic: 0 - orthographic size: 5 - m_Depth: -1 - m_CullingMask: - serializedVersion: 2 - m_Bits: 4294967295 - m_RenderingPath: -1 - m_TargetTexture: {fileID: 0} - m_TargetDisplay: 0 - m_TargetEye: 3 - m_HDR: 1 - m_AllowMSAA: 0 - m_AllowDynamicResolution: 0 - m_ForceIntoRT: 1 - m_OcclusionCulling: 0 - m_StereoConvergence: 10 - m_StereoSeparation: 0.022 ---- !u!4 &534669905 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 534669902} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!114 &534669907 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 534669902} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 948f4100a11a5c24981795d21301da5c, type: 3} - m_Name: - m_EditorClassIdentifier: - volumeTrigger: {fileID: 534669905} - volumeLayer: - serializedVersion: 2 - m_Bits: 0 - stopNaNPropagation: 1 - antialiasingMode: 0 - temporalAntialiasing: - jitterSpread: 0.75 - sharpness: 0.25 - stationaryBlending: 0.95 - motionBlending: 0.85 - subpixelMorphologicalAntialiasing: - quality: 2 - fastApproximateAntialiasing: - fastMode: 0 - keepAlpha: 0 - fog: - enabled: 1 - excludeSkybox: 1 - debugLayer: - lightMeter: - width: 512 - height: 256 - showCurves: 1 - histogram: - width: 512 - height: 256 - channel: 3 - waveform: - exposure: 0.12 - height: 256 - vectorscope: - size: 256 - exposure: 0.12 - overlaySettings: - linearDepth: 0 - motionColorIntensity: 4 - motionGridSize: 64 - colorBlindnessType: 0 - colorBlindnessStrength: 1 - m_Resources: {fileID: 11400000, guid: d82512f9c8e5d4a4d938b575d47f88d4, type: 2} - m_ShowToolkit: 0 - m_ShowCustomSorter: 0 - breakBeforeColorGrading: 0 - m_BeforeTransparentBundles: [] - m_BeforeStackBundles: [] - m_AfterStackBundles: [] ---- !u!1 &1665355183 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1665355184} - - component: {fileID: 1665355185} - m_Layer: 0 - m_Name: Global Volume - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1665355184 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1665355183} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!114 &1665355185 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1665355183} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 8b9a305e18de0c04dbd257a21cd47087, type: 3} - m_Name: - m_EditorClassIdentifier: - sharedProfile: {fileID: 11400000, guid: c22a2175af2fa4245b6b4514f90f4e4d, type: 2} - isGlobal: 1 - blendDistance: 0 - weight: 1 - priority: 0 diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/0010_Volumes.unity.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/0010_Volumes.unity.meta deleted file mode 100644 index e494ee8f8..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/0010_Volumes.unity.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: b6de6fcae6b5eeb41b911dc48e77afbd -labels: -- ExcludeGfxTests -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/0011_Weight.unity b/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/0011_Weight.unity deleted file mode 100644 index 7cde206c8..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/0011_Weight.unity +++ /dev/null @@ -1,357 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!29 &1 -OcclusionCullingSettings: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_OcclusionBakeSettings: - smallestOccluder: 5 - smallestHole: 0.25 - backfaceThreshold: 100 - m_SceneGUID: 00000000000000000000000000000000 - m_OcclusionCullingData: {fileID: 0} ---- !u!104 &2 -RenderSettings: - m_ObjectHideFlags: 0 - serializedVersion: 9 - m_Fog: 0 - m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} - m_FogMode: 3 - m_FogDensity: 0.01 - m_LinearFogStart: 0 - m_LinearFogEnd: 300 - m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} - m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} - m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} - m_AmbientIntensity: 1 - m_AmbientMode: 0 - m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} - m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0} - m_HaloStrength: 0.5 - m_FlareStrength: 1 - m_FlareFadeSpeed: 3 - m_HaloTexture: {fileID: 0} - m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} - m_DefaultReflectionMode: 0 - m_DefaultReflectionResolution: 128 - m_ReflectionBounces: 1 - m_ReflectionIntensity: 1 - m_CustomReflection: {fileID: 0} - m_Sun: {fileID: 0} - m_IndirectSpecularColor: {r: 0.37311953, g: 0.38074014, b: 0.3587274, a: 1} - m_UseRadianceAmbientProbe: 0 ---- !u!157 &3 -LightmapSettings: - m_ObjectHideFlags: 0 - serializedVersion: 11 - m_GIWorkflowMode: 0 - m_GISettings: - serializedVersion: 2 - m_BounceScale: 1 - m_IndirectOutputScale: 1 - m_AlbedoBoost: 1 - m_EnvironmentLightingMode: 0 - m_EnableBakedLightmaps: 1 - m_EnableRealtimeLightmaps: 0 - m_LightmapEditorSettings: - serializedVersion: 10 - m_Resolution: 2 - m_BakeResolution: 10 - m_AtlasSize: 512 - m_AO: 0 - m_AOMaxDistance: 1 - m_CompAOExponent: 1 - m_CompAOExponentDirect: 0 - m_Padding: 2 - m_LightmapParameters: {fileID: 0} - m_LightmapsBakeMode: 1 - m_TextureCompression: 1 - m_FinalGather: 0 - m_FinalGatherFiltering: 1 - m_FinalGatherRayCount: 256 - m_ReflectionCompression: 2 - m_MixedBakeMode: 2 - m_BakeBackend: 1 - m_PVRSampling: 1 - m_PVRDirectSampleCount: 32 - m_PVRSampleCount: 256 - m_PVRBounces: 2 - m_PVRFilterTypeDirect: 0 - m_PVRFilterTypeIndirect: 0 - m_PVRFilterTypeAO: 0 - m_PVRFilteringMode: 1 - m_PVRCulling: 1 - m_PVRFilteringGaussRadiusDirect: 1 - m_PVRFilteringGaussRadiusIndirect: 5 - m_PVRFilteringGaussRadiusAO: 2 - m_PVRFilteringAtrousPositionSigmaDirect: 0.5 - m_PVRFilteringAtrousPositionSigmaIndirect: 2 - m_PVRFilteringAtrousPositionSigmaAO: 1 - m_ShowResolutionOverlay: 1 - m_LightingDataAsset: {fileID: 0} - m_UseShadowmask: 1 ---- !u!196 &4 -NavMeshSettings: - serializedVersion: 2 - m_ObjectHideFlags: 0 - m_BuildSettings: - serializedVersion: 2 - agentTypeID: 0 - agentRadius: 0.5 - agentHeight: 2 - agentSlope: 45 - agentClimb: 0.4 - ledgeDropHeight: 0 - maxJumpAcrossDistance: 0 - minRegionArea: 2 - manualCellSize: 0 - cellSize: 0.16666667 - manualTileSize: 0 - tileSize: 256 - accuratePlacement: 0 - debug: - m_Flags: 0 - m_NavMeshData: {fileID: 0} ---- !u!1 &282593761 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 282593764} - - component: {fileID: 282593763} - - component: {fileID: 282593762} - m_Layer: 8 - m_Name: Local Volume - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!114 &282593762 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 282593761} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 8b9a305e18de0c04dbd257a21cd47087, type: 3} - m_Name: - m_EditorClassIdentifier: - sharedProfile: {fileID: 11400000, guid: 08ad0e90887ff9648aee4f88911845b9, type: 2} - isGlobal: 0 - blendDistance: 0 - weight: 0.5 - priority: 1 ---- !u!65 &282593763 -BoxCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 282593761} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 2 - m_Size: {x: 1, y: 1, z: 1} - m_Center: {x: 0, y: 0, z: 0} ---- !u!4 &282593764 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 282593761} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &534669902 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 534669905} - - component: {fileID: 534669904} - - component: {fileID: 534669907} - m_Layer: 0 - m_Name: Main Camera - m_TagString: MainCamera - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!20 &534669904 -Camera: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 534669902} - m_Enabled: 1 - serializedVersion: 2 - m_ClearFlags: 2 - m_BackGroundColor: {r: 0.21698111, g: 0.21698111, b: 0.21698111, a: 0} - m_projectionMatrixMode: 1 - m_SensorSize: {x: 36, y: 24} - m_LensShift: {x: 0, y: 0} - m_GateFitMode: 2 - m_FocalLength: 50 - m_NormalizedViewPortRect: - serializedVersion: 2 - x: 0 - y: 0 - width: 1 - height: 1 - near clip plane: 0.3 - far clip plane: 1000 - field of view: 60 - orthographic: 0 - orthographic size: 5 - m_Depth: -1 - m_CullingMask: - serializedVersion: 2 - m_Bits: 4294967295 - m_RenderingPath: -1 - m_TargetTexture: {fileID: 0} - m_TargetDisplay: 0 - m_TargetEye: 3 - m_HDR: 1 - m_AllowMSAA: 0 - m_AllowDynamicResolution: 0 - m_ForceIntoRT: 1 - m_OcclusionCulling: 0 - m_StereoConvergence: 10 - m_StereoSeparation: 0.022 ---- !u!4 &534669905 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 534669902} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!114 &534669907 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 534669902} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 948f4100a11a5c24981795d21301da5c, type: 3} - m_Name: - m_EditorClassIdentifier: - volumeTrigger: {fileID: 534669905} - volumeLayer: - serializedVersion: 2 - m_Bits: 0 - stopNaNPropagation: 1 - antialiasingMode: 0 - temporalAntialiasing: - jitterSpread: 0.75 - sharpness: 0.25 - stationaryBlending: 0.95 - motionBlending: 0.85 - subpixelMorphologicalAntialiasing: - quality: 2 - fastApproximateAntialiasing: - fastMode: 0 - keepAlpha: 0 - fog: - enabled: 1 - excludeSkybox: 1 - debugLayer: - lightMeter: - width: 512 - height: 256 - showCurves: 1 - histogram: - width: 512 - height: 256 - channel: 3 - waveform: - exposure: 0.12 - height: 256 - vectorscope: - size: 256 - exposure: 0.12 - overlaySettings: - linearDepth: 0 - motionColorIntensity: 4 - motionGridSize: 64 - colorBlindnessType: 0 - colorBlindnessStrength: 1 - m_Resources: {fileID: 11400000, guid: d82512f9c8e5d4a4d938b575d47f88d4, type: 2} - m_ShowToolkit: 0 - m_ShowCustomSorter: 0 - breakBeforeColorGrading: 0 - m_BeforeTransparentBundles: [] - m_BeforeStackBundles: [] - m_AfterStackBundles: [] ---- !u!1 &1665355183 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1665355184} - - component: {fileID: 1665355185} - m_Layer: 0 - m_Name: Global Volume - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1665355184 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1665355183} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!114 &1665355185 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1665355183} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 8b9a305e18de0c04dbd257a21cd47087, type: 3} - m_Name: - m_EditorClassIdentifier: - sharedProfile: {fileID: 11400000, guid: c22a2175af2fa4245b6b4514f90f4e4d, type: 2} - isGlobal: 1 - blendDistance: 0 - weight: 1 - priority: 0 diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/0011_Weight.unity.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/0011_Weight.unity.meta deleted file mode 100644 index 0db9208f5..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/0011_Weight.unity.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 03eea41fac5e7e548b03e8f0b664afea -labels: -- ExcludeGfxTests -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/0012_Intersect.unity b/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/0012_Intersect.unity deleted file mode 100644 index eb7ba4eb7..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/0012_Intersect.unity +++ /dev/null @@ -1,357 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!29 &1 -OcclusionCullingSettings: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_OcclusionBakeSettings: - smallestOccluder: 5 - smallestHole: 0.25 - backfaceThreshold: 100 - m_SceneGUID: 00000000000000000000000000000000 - m_OcclusionCullingData: {fileID: 0} ---- !u!104 &2 -RenderSettings: - m_ObjectHideFlags: 0 - serializedVersion: 9 - m_Fog: 0 - m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} - m_FogMode: 3 - m_FogDensity: 0.01 - m_LinearFogStart: 0 - m_LinearFogEnd: 300 - m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} - m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} - m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} - m_AmbientIntensity: 1 - m_AmbientMode: 0 - m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} - m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0} - m_HaloStrength: 0.5 - m_FlareStrength: 1 - m_FlareFadeSpeed: 3 - m_HaloTexture: {fileID: 0} - m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} - m_DefaultReflectionMode: 0 - m_DefaultReflectionResolution: 128 - m_ReflectionBounces: 1 - m_ReflectionIntensity: 1 - m_CustomReflection: {fileID: 0} - m_Sun: {fileID: 0} - m_IndirectSpecularColor: {r: 0.37311953, g: 0.38074014, b: 0.3587274, a: 1} - m_UseRadianceAmbientProbe: 0 ---- !u!157 &3 -LightmapSettings: - m_ObjectHideFlags: 0 - serializedVersion: 11 - m_GIWorkflowMode: 0 - m_GISettings: - serializedVersion: 2 - m_BounceScale: 1 - m_IndirectOutputScale: 1 - m_AlbedoBoost: 1 - m_EnvironmentLightingMode: 0 - m_EnableBakedLightmaps: 1 - m_EnableRealtimeLightmaps: 0 - m_LightmapEditorSettings: - serializedVersion: 10 - m_Resolution: 2 - m_BakeResolution: 10 - m_AtlasSize: 512 - m_AO: 0 - m_AOMaxDistance: 1 - m_CompAOExponent: 1 - m_CompAOExponentDirect: 0 - m_Padding: 2 - m_LightmapParameters: {fileID: 0} - m_LightmapsBakeMode: 1 - m_TextureCompression: 1 - m_FinalGather: 0 - m_FinalGatherFiltering: 1 - m_FinalGatherRayCount: 256 - m_ReflectionCompression: 2 - m_MixedBakeMode: 2 - m_BakeBackend: 1 - m_PVRSampling: 1 - m_PVRDirectSampleCount: 32 - m_PVRSampleCount: 256 - m_PVRBounces: 2 - m_PVRFilterTypeDirect: 0 - m_PVRFilterTypeIndirect: 0 - m_PVRFilterTypeAO: 0 - m_PVRFilteringMode: 1 - m_PVRCulling: 1 - m_PVRFilteringGaussRadiusDirect: 1 - m_PVRFilteringGaussRadiusIndirect: 5 - m_PVRFilteringGaussRadiusAO: 2 - m_PVRFilteringAtrousPositionSigmaDirect: 0.5 - m_PVRFilteringAtrousPositionSigmaIndirect: 2 - m_PVRFilteringAtrousPositionSigmaAO: 1 - m_ShowResolutionOverlay: 1 - m_LightingDataAsset: {fileID: 0} - m_UseShadowmask: 1 ---- !u!196 &4 -NavMeshSettings: - serializedVersion: 2 - m_ObjectHideFlags: 0 - m_BuildSettings: - serializedVersion: 2 - agentTypeID: 0 - agentRadius: 0.5 - agentHeight: 2 - agentSlope: 45 - agentClimb: 0.4 - ledgeDropHeight: 0 - maxJumpAcrossDistance: 0 - minRegionArea: 2 - manualCellSize: 0 - cellSize: 0.16666667 - manualTileSize: 0 - tileSize: 256 - accuratePlacement: 0 - debug: - m_Flags: 0 - m_NavMeshData: {fileID: 0} ---- !u!1 &282593761 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 282593764} - - component: {fileID: 282593763} - - component: {fileID: 282593762} - m_Layer: 8 - m_Name: Local Volume - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!114 &282593762 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 282593761} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 8b9a305e18de0c04dbd257a21cd47087, type: 3} - m_Name: - m_EditorClassIdentifier: - sharedProfile: {fileID: 11400000, guid: 08ad0e90887ff9648aee4f88911845b9, type: 2} - isGlobal: 0 - blendDistance: 0.5 - weight: 1 - priority: 1 ---- !u!65 &282593763 -BoxCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 282593761} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 2 - m_Size: {x: 1, y: 1, z: 1} - m_Center: {x: 0, y: 0, z: 0} ---- !u!4 &282593764 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 282593761} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 1} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &534669902 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 534669905} - - component: {fileID: 534669904} - - component: {fileID: 534669907} - m_Layer: 0 - m_Name: Main Camera - m_TagString: MainCamera - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!20 &534669904 -Camera: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 534669902} - m_Enabled: 1 - serializedVersion: 2 - m_ClearFlags: 2 - m_BackGroundColor: {r: 0.21698111, g: 0.21698111, b: 0.21698111, a: 0} - m_projectionMatrixMode: 1 - m_SensorSize: {x: 36, y: 24} - m_LensShift: {x: 0, y: 0} - m_GateFitMode: 2 - m_FocalLength: 50 - m_NormalizedViewPortRect: - serializedVersion: 2 - x: 0 - y: 0 - width: 1 - height: 1 - near clip plane: 0.3 - far clip plane: 1000 - field of view: 60 - orthographic: 0 - orthographic size: 5 - m_Depth: -1 - m_CullingMask: - serializedVersion: 2 - m_Bits: 4294967295 - m_RenderingPath: -1 - m_TargetTexture: {fileID: 0} - m_TargetDisplay: 0 - m_TargetEye: 3 - m_HDR: 1 - m_AllowMSAA: 0 - m_AllowDynamicResolution: 0 - m_ForceIntoRT: 1 - m_OcclusionCulling: 0 - m_StereoConvergence: 10 - m_StereoSeparation: 0.022 ---- !u!4 &534669905 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 534669902} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!114 &534669907 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 534669902} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 948f4100a11a5c24981795d21301da5c, type: 3} - m_Name: - m_EditorClassIdentifier: - volumeTrigger: {fileID: 534669905} - volumeLayer: - serializedVersion: 2 - m_Bits: 0 - stopNaNPropagation: 1 - antialiasingMode: 0 - temporalAntialiasing: - jitterSpread: 0.75 - sharpness: 0.25 - stationaryBlending: 0.95 - motionBlending: 0.85 - subpixelMorphologicalAntialiasing: - quality: 2 - fastApproximateAntialiasing: - fastMode: 0 - keepAlpha: 0 - fog: - enabled: 1 - excludeSkybox: 1 - debugLayer: - lightMeter: - width: 512 - height: 256 - showCurves: 1 - histogram: - width: 512 - height: 256 - channel: 3 - waveform: - exposure: 0.12 - height: 256 - vectorscope: - size: 256 - exposure: 0.12 - overlaySettings: - linearDepth: 0 - motionColorIntensity: 4 - motionGridSize: 64 - colorBlindnessType: 0 - colorBlindnessStrength: 1 - m_Resources: {fileID: 11400000, guid: d82512f9c8e5d4a4d938b575d47f88d4, type: 2} - m_ShowToolkit: 0 - m_ShowCustomSorter: 0 - breakBeforeColorGrading: 0 - m_BeforeTransparentBundles: [] - m_BeforeStackBundles: [] - m_AfterStackBundles: [] ---- !u!1 &1665355183 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1665355184} - - component: {fileID: 1665355185} - m_Layer: 0 - m_Name: Global Volume - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1665355184 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1665355183} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!114 &1665355185 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1665355183} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 8b9a305e18de0c04dbd257a21cd47087, type: 3} - m_Name: - m_EditorClassIdentifier: - sharedProfile: {fileID: 11400000, guid: c22a2175af2fa4245b6b4514f90f4e4d, type: 2} - isGlobal: 1 - blendDistance: 0 - weight: 1 - priority: 0 diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/0012_Intersect.unity.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/0012_Intersect.unity.meta deleted file mode 100644 index 35995c46d..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/0012_Intersect.unity.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: dbb9248285407184fba5a9d161940c78 -labels: -- ExcludeGfxTests -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/0013_Priority.unity b/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/0013_Priority.unity deleted file mode 100644 index bd9d4afd2..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/0013_Priority.unity +++ /dev/null @@ -1,605 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!29 &1 -OcclusionCullingSettings: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_OcclusionBakeSettings: - smallestOccluder: 5 - smallestHole: 0.25 - backfaceThreshold: 100 - m_SceneGUID: 00000000000000000000000000000000 - m_OcclusionCullingData: {fileID: 0} ---- !u!104 &2 -RenderSettings: - m_ObjectHideFlags: 0 - serializedVersion: 9 - m_Fog: 0 - m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} - m_FogMode: 3 - m_FogDensity: 0.01 - m_LinearFogStart: 0 - m_LinearFogEnd: 300 - m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} - m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} - m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} - m_AmbientIntensity: 1 - m_AmbientMode: 0 - m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} - m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0} - m_HaloStrength: 0.5 - m_FlareStrength: 1 - m_FlareFadeSpeed: 3 - m_HaloTexture: {fileID: 0} - m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} - m_DefaultReflectionMode: 0 - m_DefaultReflectionResolution: 128 - m_ReflectionBounces: 1 - m_ReflectionIntensity: 1 - m_CustomReflection: {fileID: 0} - m_Sun: {fileID: 0} - m_IndirectSpecularColor: {r: 0.37311953, g: 0.38074014, b: 0.3587274, a: 1} - m_UseRadianceAmbientProbe: 0 ---- !u!157 &3 -LightmapSettings: - m_ObjectHideFlags: 0 - serializedVersion: 11 - m_GIWorkflowMode: 0 - m_GISettings: - serializedVersion: 2 - m_BounceScale: 1 - m_IndirectOutputScale: 1 - m_AlbedoBoost: 1 - m_EnvironmentLightingMode: 0 - m_EnableBakedLightmaps: 1 - m_EnableRealtimeLightmaps: 0 - m_LightmapEditorSettings: - serializedVersion: 10 - m_Resolution: 2 - m_BakeResolution: 10 - m_AtlasSize: 512 - m_AO: 0 - m_AOMaxDistance: 1 - m_CompAOExponent: 1 - m_CompAOExponentDirect: 0 - m_Padding: 2 - m_LightmapParameters: {fileID: 0} - m_LightmapsBakeMode: 1 - m_TextureCompression: 1 - m_FinalGather: 0 - m_FinalGatherFiltering: 1 - m_FinalGatherRayCount: 256 - m_ReflectionCompression: 2 - m_MixedBakeMode: 2 - m_BakeBackend: 1 - m_PVRSampling: 1 - m_PVRDirectSampleCount: 32 - m_PVRSampleCount: 256 - m_PVRBounces: 2 - m_PVRFilterTypeDirect: 0 - m_PVRFilterTypeIndirect: 0 - m_PVRFilterTypeAO: 0 - m_PVRFilteringMode: 1 - m_PVRCulling: 1 - m_PVRFilteringGaussRadiusDirect: 1 - m_PVRFilteringGaussRadiusIndirect: 5 - m_PVRFilteringGaussRadiusAO: 2 - m_PVRFilteringAtrousPositionSigmaDirect: 0.5 - m_PVRFilteringAtrousPositionSigmaIndirect: 2 - m_PVRFilteringAtrousPositionSigmaAO: 1 - m_ShowResolutionOverlay: 1 - m_LightingDataAsset: {fileID: 0} - m_UseShadowmask: 1 ---- !u!196 &4 -NavMeshSettings: - serializedVersion: 2 - m_ObjectHideFlags: 0 - m_BuildSettings: - serializedVersion: 2 - agentTypeID: 0 - agentRadius: 0.5 - agentHeight: 2 - agentSlope: 45 - agentClimb: 0.4 - ledgeDropHeight: 0 - maxJumpAcrossDistance: 0 - minRegionArea: 2 - manualCellSize: 0 - cellSize: 0.16666667 - manualTileSize: 0 - tileSize: 256 - accuratePlacement: 0 - debug: - m_Flags: 0 - m_NavMeshData: {fileID: 0} ---- !u!1 &282593761 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 282593764} - - component: {fileID: 282593763} - - component: {fileID: 282593762} - m_Layer: 8 - m_Name: Local Volume 0-weight - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!114 &282593762 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 282593761} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 8b9a305e18de0c04dbd257a21cd47087, type: 3} - m_Name: - m_EditorClassIdentifier: - sharedProfile: {fileID: 11400000, guid: 08ad0e90887ff9648aee4f88911845b9, type: 2} - isGlobal: 0 - blendDistance: 0.5 - weight: 0 - priority: 1 ---- !u!65 &282593763 -BoxCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 282593761} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 2 - m_Size: {x: 1, y: 1, z: 1} - m_Center: {x: 0, y: 0, z: 0} ---- !u!4 &282593764 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 282593761} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 1} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &368388383 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 368388386} - - component: {fileID: 368388385} - - component: {fileID: 368388384} - m_Layer: 8 - m_Name: Local Volume Disabled - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!114 &368388384 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 368388383} - m_Enabled: 0 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 8b9a305e18de0c04dbd257a21cd47087, type: 3} - m_Name: - m_EditorClassIdentifier: - sharedProfile: {fileID: 11400000, guid: 08ad0e90887ff9648aee4f88911845b9, type: 2} - isGlobal: 0 - blendDistance: 0.5 - weight: 1 - priority: 4 ---- !u!65 &368388385 -BoxCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 368388383} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 2 - m_Size: {x: 1, y: 1, z: 1} - m_Center: {x: 0, y: 0, z: 0} ---- !u!4 &368388386 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 368388383} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: -1, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &534669902 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 534669905} - - component: {fileID: 534669904} - - component: {fileID: 534669907} - m_Layer: 0 - m_Name: Main Camera - m_TagString: MainCamera - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!20 &534669904 -Camera: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 534669902} - m_Enabled: 1 - serializedVersion: 2 - m_ClearFlags: 2 - m_BackGroundColor: {r: 0.21698111, g: 0.21698111, b: 0.21698111, a: 0} - m_projectionMatrixMode: 1 - m_SensorSize: {x: 36, y: 24} - m_LensShift: {x: 0, y: 0} - m_GateFitMode: 2 - m_FocalLength: 50 - m_NormalizedViewPortRect: - serializedVersion: 2 - x: 0 - y: 0 - width: 1 - height: 1 - near clip plane: 0.3 - far clip plane: 1000 - field of view: 60 - orthographic: 0 - orthographic size: 5 - m_Depth: -1 - m_CullingMask: - serializedVersion: 2 - m_Bits: 4294967295 - m_RenderingPath: -1 - m_TargetTexture: {fileID: 0} - m_TargetDisplay: 0 - m_TargetEye: 3 - m_HDR: 1 - m_AllowMSAA: 0 - m_AllowDynamicResolution: 0 - m_ForceIntoRT: 1 - m_OcclusionCulling: 0 - m_StereoConvergence: 10 - m_StereoSeparation: 0.022 ---- !u!4 &534669905 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 534669902} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!114 &534669907 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 534669902} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 948f4100a11a5c24981795d21301da5c, type: 3} - m_Name: - m_EditorClassIdentifier: - volumeTrigger: {fileID: 534669905} - volumeLayer: - serializedVersion: 2 - m_Bits: 0 - stopNaNPropagation: 1 - antialiasingMode: 0 - temporalAntialiasing: - jitterSpread: 0.75 - sharpness: 0.25 - stationaryBlending: 0.95 - motionBlending: 0.85 - subpixelMorphologicalAntialiasing: - quality: 2 - fastApproximateAntialiasing: - fastMode: 0 - keepAlpha: 0 - fog: - enabled: 1 - excludeSkybox: 1 - debugLayer: - lightMeter: - width: 512 - height: 256 - showCurves: 1 - histogram: - width: 512 - height: 256 - channel: 3 - waveform: - exposure: 0.12 - height: 256 - vectorscope: - size: 256 - exposure: 0.12 - overlaySettings: - linearDepth: 0 - motionColorIntensity: 4 - motionGridSize: 64 - colorBlindnessType: 0 - colorBlindnessStrength: 1 - m_Resources: {fileID: 11400000, guid: d82512f9c8e5d4a4d938b575d47f88d4, type: 2} - m_ShowToolkit: 0 - m_ShowCustomSorter: 0 - breakBeforeColorGrading: 0 - m_BeforeTransparentBundles: [] - m_BeforeStackBundles: [] - m_AfterStackBundles: [] ---- !u!1 &834064596 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 834064599} - - component: {fileID: 834064598} - - component: {fileID: 834064597} - m_Layer: 8 - m_Name: Local Volume - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!114 &834064597 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 834064596} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 8b9a305e18de0c04dbd257a21cd47087, type: 3} - m_Name: - m_EditorClassIdentifier: - sharedProfile: {fileID: 11400000, guid: 08ad0e90887ff9648aee4f88911845b9, type: 2} - isGlobal: 0 - blendDistance: 0.5 - weight: 1 - priority: 3 ---- !u!65 &834064598 -BoxCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 834064596} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 2 - m_Size: {x: 1, y: 1, z: 1} - m_Center: {x: 0, y: 0, z: 0} ---- !u!4 &834064599 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 834064596} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: -1} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &978222478 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 978222481} - - component: {fileID: 978222480} - - component: {fileID: 978222479} - m_Layer: 8 - m_Name: Local Volume 10000-priority - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!114 &978222479 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 978222478} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 8b9a305e18de0c04dbd257a21cd47087, type: 3} - m_Name: - m_EditorClassIdentifier: - sharedProfile: {fileID: 11400000, guid: 08ad0e90887ff9648aee4f88911845b9, type: 2} - isGlobal: 0 - blendDistance: 0.5 - weight: 1 - priority: 10000 ---- !u!65 &978222480 -BoxCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 978222478} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 2 - m_Size: {x: 1, y: 1, z: 1} - m_Center: {x: 0, y: 0, z: 0} ---- !u!4 &978222481 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 978222478} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 5, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 6 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &1056623467 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1056623470} - - component: {fileID: 1056623469} - - component: {fileID: 1056623468} - m_Layer: 8 - m_Name: Local Volume - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!114 &1056623468 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1056623467} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 8b9a305e18de0c04dbd257a21cd47087, type: 3} - m_Name: - m_EditorClassIdentifier: - sharedProfile: {fileID: 11400000, guid: 08ad0e90887ff9648aee4f88911845b9, type: 2} - isGlobal: 0 - blendDistance: 0.5 - weight: 1 - priority: 2 ---- !u!65 &1056623469 -BoxCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1056623467} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 2 - m_Size: {x: 1, y: 1, z: 1} - m_Center: {x: 0, y: 0, z: 0} ---- !u!4 &1056623470 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1056623467} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 1, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &1665355183 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1665355184} - - component: {fileID: 1665355185} - m_Layer: 0 - m_Name: Global Volume - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1665355184 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1665355183} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!114 &1665355185 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1665355183} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 8b9a305e18de0c04dbd257a21cd47087, type: 3} - m_Name: - m_EditorClassIdentifier: - sharedProfile: {fileID: 11400000, guid: c22a2175af2fa4245b6b4514f90f4e4d, type: 2} - isGlobal: 1 - blendDistance: 0 - weight: 1 - priority: 0 diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/0013_Priority.unity.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/0013_Priority.unity.meta deleted file mode 100644 index 9eed131b4..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/0013_Priority.unity.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: eb7b7c0a934ecad4599ec079e2371876 -labels: -- ExcludeGfxTests -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/Global Profile.asset b/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/Global Profile.asset deleted file mode 100644 index ee5ec804f..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/Global Profile.asset +++ /dev/null @@ -1,60 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!114 &11400000 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 8e6292b2c06870d4495f009f912b9600, type: 3} - m_Name: Global Profile - m_EditorClassIdentifier: - settings: - - {fileID: 114227923285403872} ---- !u!114 &114227923285403872 -MonoBehaviour: - m_ObjectHideFlags: 3 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 40b924e2dad56384a8df2a1e111bb675, type: 3} - m_Name: Vignette - m_EditorClassIdentifier: - active: 1 - enabled: - overrideState: 1 - value: 1 - mode: - overrideState: 0 - value: 0 - color: - overrideState: 0 - value: {r: 0, g: 0, b: 0, a: 1} - center: - overrideState: 0 - value: {x: 0.5, y: 0.5} - intensity: - overrideState: 1 - value: 1 - smoothness: - overrideState: 0 - value: 0.2 - roundness: - overrideState: 0 - value: 1 - rounded: - overrideState: 1 - value: 1 - mask: - overrideState: 0 - value: {fileID: 0} - defaultState: 1 - opacity: - overrideState: 0 - value: 1 diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/Global Profile.asset.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/Global Profile.asset.meta deleted file mode 100644 index 1f1fc525e..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/Global Profile.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c22a2175af2fa4245b6b4514f90f4e4d -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/Local Profile.asset b/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/Local Profile.asset deleted file mode 100644 index f5fb2607e..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/Local Profile.asset +++ /dev/null @@ -1,60 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!114 &11400000 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 8e6292b2c06870d4495f009f912b9600, type: 3} - m_Name: Local Profile - m_EditorClassIdentifier: - settings: - - {fileID: 114415984860368978} ---- !u!114 &114415984860368978 -MonoBehaviour: - m_ObjectHideFlags: 3 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 40b924e2dad56384a8df2a1e111bb675, type: 3} - m_Name: Vignette - m_EditorClassIdentifier: - active: 1 - enabled: - overrideState: 1 - value: 1 - mode: - overrideState: 0 - value: 0 - color: - overrideState: 1 - value: {r: 1, g: 0, b: 0, a: 1} - center: - overrideState: 0 - value: {x: 0.5, y: 0.5} - intensity: - overrideState: 0 - value: 0 - smoothness: - overrideState: 0 - value: 0.2 - roundness: - overrideState: 0 - value: 1 - rounded: - overrideState: 0 - value: 0 - mask: - overrideState: 0 - value: {fileID: 0} - defaultState: 1 - opacity: - overrideState: 0 - value: 1 diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/Local Profile.asset.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/Local Profile.asset.meta deleted file mode 100644 index bc38a3fd9..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Scenes/Local Profile.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 08ad0e90887ff9648aee4f88911845b9 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Unity.Postprocessing.Runtime.Tests.asmdef b/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Unity.Postprocessing.Runtime.Tests.asmdef deleted file mode 100644 index 627d7da1c..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Unity.Postprocessing.Runtime.Tests.asmdef +++ /dev/null @@ -1,12 +0,0 @@ -{ - "name": "Unity.Postprocessing.Runtime.Tests", - "references": [ - "Unity.Postprocessing.Runtime" - ], - "optionalUnityReferences": [ - "TestAssemblies" - ], - "includePlatforms": [], - "excludePlatforms": [], - "allowUnsafeCode": true -} \ No newline at end of file diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Unity.Postprocessing.Runtime.Tests.asmdef.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Unity.Postprocessing.Runtime.Tests.asmdef.meta deleted file mode 100644 index 153de4269..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/Tests/Runtime/Unity.Postprocessing.Runtime.Tests.asmdef.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: f40b851808c81294bac71a52a2bc39de -AssemblyDefinitionImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/package.json b/Library/PackageCache/com.unity.postprocessing@2.1.6/package.json deleted file mode 100644 index a0aa4c6df..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/package.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "dependencies": {}, - "description": "The post-processing stack (v2) comes with a collection of effects and image filters you can apply to your cameras to improve the visuals of your games.", - "displayName": "Post Processing", - "name": "com.unity.postprocessing", - "repository": { - "revision": "eb573340761038ce6fb01ff007312a77ebbced31", - "type": "git", - "url": "ssh://git@github.com/Unity-Technologies/PostProcessing.git" - }, - "unity": "2018.1", - "version": "2.1.6" -} \ No newline at end of file diff --git a/Library/PackageCache/com.unity.postprocessing@2.1.6/package.json.meta b/Library/PackageCache/com.unity.postprocessing@2.1.6/package.json.meta deleted file mode 100644 index d4f5433d9..000000000 --- a/Library/PackageCache/com.unity.postprocessing@2.1.6/package.json.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 2705889b3a9580a47b334f039bfdcb00 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/CHANGELOG.md b/Library/PackageCache/com.unity.test-framework@1.0.13/CHANGELOG.md deleted file mode 100644 index cac5b9d94..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/CHANGELOG.md +++ /dev/null @@ -1,31 +0,0 @@ -# Changelog -## [1.0.13] - 2019-05-07 -- Fixed a regression where results from the player would no longer update correctly in the UI (case 1151147). - -## [1.0.12] - 2019-04-16 -- Added specific unity release to the package information. - -## [1.0.11] - 2019-04-10 -- Fixed a regression from 1.0.10 where test-started events were triggered multiple times after a domain reload. - -## [1.0.10] - 2019-04-08 -- Fixed an issue where test-started events would not be fired correctly after a test performing a domain reload (case 1141530). -- The UI should correctly run tests inside a nested class, when that class is selected. -- All actions should now correctly display a prefix when reporting test result. E.g. "TearDown :". -- Errors logged with Debug.LogError in TearDowns now append the error, rather than overwriting the existing result (case 1114306). -- Incorrect implementations of IWrapTestMethod and IWrapSetUpTearDown now gives a meaningful error. -- Fixed a regression where the Test Framework would run TearDown in a base class before the inheriting class (case 1142553). -- Fixed a regression introduced in 1.0.9 where tests with the Explicit attribute could no longer be executed. - -## [1.0.9] - 2019-03-27 -- Fixed an issue where a corrupt instance of the test runner window would block for a new being opened. -- Added the required modules to the list of package requirements. -- Fixed an issue where errors would happen if the test filter ui was clicked before the ui is done loading. -- Fix selecting items with duplicate names in test hierarchy of Test Runner window (case 987587). -- Fixed RecompileScripts instruction which we use in tests (case 1128994). -- Fixed an issue where using multiple filters on tests would sometimes give an incorrect result. - -## [1.0.7] - 2019-03-12 -### This is the first release of *Unity Package com.unity.test-framework*. - -- Migrated the test-framework from the current extension in unity. diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/CHANGELOG.md.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/CHANGELOG.md.meta deleted file mode 100644 index 4fca79ed2..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/CHANGELOG.md.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: d691174143fd3774ba63d7c493633b99 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/CONTRIBUTING.md b/Library/PackageCache/com.unity.test-framework@1.0.13/CONTRIBUTING.md deleted file mode 100644 index 9f299b10e..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/CONTRIBUTING.md +++ /dev/null @@ -1,9 +0,0 @@ -# Contributing - -## If you are interested in contributing, here are some ground rules: -* ... Define guidelines & rules for what contributors need to know to successfully make Pull requests against your repo ... - -## All contributions are subject to the [Unity Contribution Agreement(UCA)](https://unity3d.com/legal/licenses/Unity_Contribution_Agreement) -By making a pull request, you are confirming agreement to the terms and conditions of the UCA, including that your Contributions are your original creation and that you have complete right and authority to make your Contributions. - -## Once you have a change ready following these ground rules. Simply make a pull request diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/CONTRIBUTING.md.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/CONTRIBUTING.md.meta deleted file mode 100644 index 39e850aed..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/CONTRIBUTING.md.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 57d2ac5c7d5786e499d4794973fe0d4e -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/Documentation~/PlaymodeTestFramework.md b/Library/PackageCache/com.unity.test-framework@1.0.13/Documentation~/PlaymodeTestFramework.md deleted file mode 100644 index eeb18bcd4..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/Documentation~/PlaymodeTestFramework.md +++ /dev/null @@ -1,224 +0,0 @@ -# Writing and executing tests in Unity Test Runner - -The Unity Test Runner tests your code in __Edit__ mode and __Play__ mode, as well as on target platforms such as Standalone, Android, or iOS. - -The documentation on this page discusses writing and executing tests in the the Unity Test Runner, and assumes you understand both [scripting](https://docs.unity3d.com/Manual/CreatingAndUsingScripts.html) and the [Unity Test Runner](About.md). - -Unity delivers test results in an XML format. For more information, see the [NUnit documentation on XML format test results](https://github.com/nunit/docs/wiki/Test-Result-XML-Format). - -## UnityTestAttribute - -[UnityTestAttribute](https://docs.unity3d.com/ScriptReference/TestTools.UnityTestAttribute.html) requires you to return `IEnumerator`. In __Play__ mode, execute the test as a [coroutine](https://docs.unity3d.com/ScriptReference/Coroutine.html). In __Edit__ mode, you can yield `null` from the test, which skips the current frame. - -__Note:__ The WebGL and WSA platforms do not support `UnityTestAttribute`. - -### Regular NUnit test (works in Edit mode and Play mode) - -``` -[Test] -public void GameObject_CreatedWithGiven_WillHaveTheName() -{ - var go = new GameObject("MyGameObject"); - Assert.AreEqual("MyGameObject", go.name); -} -``` - -### Example in Play mode - -``` -[UnityTest] -public IEnumerator GameObject_WithRigidBody_WillBeAffectedByPhysics() -{ - var go = new GameObject(); - go.AddComponent(); - var originalPosition = go.transform.position.y; - - yield return new WaitForFixedUpdate(); - - Assert.AreNotEqual(originalPosition, go.transform.position.y); -} -``` - -### Example in Edit mode: - -``` -[UnityTest] -public IEnumerator EditorUtility_WhenExecuted_ReturnsSuccess() -{ - var utility = RunEditorUtilityInTheBackgroud(); - - while (utility.isRunning) - { - yield return null; - } - - Assert.IsTrue(utility.isSuccess); -} -``` - -## UnityPlatformAttribute - -Use [UnityPlatformAttribute](https://docs.unity3d.com/ScriptReference/TestTools.UnityPlatformAttribute.html) to filter tests based on the the executing platform. It behaves like the [NUnit ](http://nunit.org/docs/2.5/platform.html)[PlatformAttribute](http://nunit.org/docs/2.5/platform.html). - -``` -[Test] -[UnityPlatform (RuntimePlatform.WindowsPlayer)] -public void TestMethod1() -{ - Assert.AreEqual(Application.platform, RuntimePlatform.WindowsPlayer); -} - -[Test] -[UnityPlatform(exclude = new[] {RuntimePlatform.WindowsEditor })] -public void TestMethod2() -{ - Assert.AreNotEqual(Application.platform, RuntimePlatform.WindowsEditor); -} -``` - -To only execute Editor tests on a given platform, you can also use `UnityPlatform` . - -### PrebuildSetupAttriubte - -Use [PrebuildSetupAttribute](https://docs.unity3d.com/ScriptReference/TestTools.PrebuildSetupAttribute.html) if you need to perform any extra set-up before the test starts. To do this, specify the class type that implements the [IPrebuildSetup](https://docs.unity3d.com/ScriptReference/TestTools.IPrebuildSetup.html) interface. If you need to run the set-up code for the whole class (for example, if you want to execute some code before the test starts, such as Asset preparation or set-up required for a specific test), implement the `IPrebuildSetup` interface in the class for tests. - -``` -public class TestsWithPrebuildStep : IPrebuildSetup -{ - public void Setup() - { - // Run this code before the tests are executed - } - - [Test] - //PrebuildSetupAttribute can be skipped because it's implemented in the same class - [PrebuildSetup(typeof(TestsWithPrebuildStep))] - public void Test() - { - (...) - } -} -``` - -Execute the `IPrebuildSetup` code before entering Play mode or building a player. Setup can use UnityEditor namespace and its function, but to avoid compilation errors, you must place it either in the *Editor* folder, or guard it with the `#if UNITY_EDITOR` directive. - -## LogAssert - -A test fails if Unity logs a message other than a regular log or warning message. Use the [LogAssert](https://docs.unity3d.com/ScriptReference/TestTools.LogAssert.html) class to make a message expected in the log, so that the test does not fail when Unity logs that message. - -A test also reports as failed if an expected message does not appear, or if Unity does not log any regular log or warning messages. - -### Example - -``` -[Test] -public void LogAssertExample() -{ - //Expect a regular log message - LogAssert.Expect(LogType.Log, "Log message"); - //A log message is expected so without the following line - //the test would fail - Debug.Log("Log message"); - //An error log is printed - Debug.LogError("Error message"); - //Without expecting an error log, the test would fail - LogAssert.Expect(LogType.Error, "Error message"); -} -``` - -## MonoBehaviourTest - -[MonoBehaviourTest](https://docs.unity3d.com/ScriptReference/TestTools.MonoBehaviourTest_1.html) is a [coroutine](https://docs.unity3d.com/ScriptReference/Coroutine.html), and a helper for writing [MonoBehaviour](https://docs.unity3d.com/ScriptReference/MonoBehaviour.html) tests. Yield `MonoBehaviourTest` from the [UnityTest](https://docs.unity3d.com/ScriptReference/TestTools.UnityTestAttribute.html) attribute to instantiate the specified MonoBehaviour and wait for it to finish executing. Implement the [IMonoBehaviourTest](https://docs.unity3d.com/ScriptReference/TestTools.IMonoBehaviourTest.html) interface to indicate when the test is done. - -### Example - -``` -[UnityTest] -public IEnumerator MonoBehaviourTest_Works() -{ - yield return new MonoBehaviourTest(); -} - -public class MyMonoBehaviourTest : MonoBehaviour, IMonoBehaviourTest -{ - private int frameCount; - public bool IsTestFinished - { - get { return frameCount > 10; } - } - - void Update() - { - frameCount++; - } -} -``` - -## Running tests on platforms - -In __Play__ mode, you can run tests on specific platforms. The target platform is always the current Platform selected in [Build Settings](https://docs.unity3d.com/Manual/BuildSettings.html) (menu: __File__ > __Build Settings__). Click __Run all in the player__ to build and run your tests on the currently active target platform. - -Note that your current platform displays in brackets on the button. For example, in the screenshot below, the button reads __Run all in player (StandaloneWindows)__, because the current platform is Windows. - -![](UnityTestRunner-3.png) - -The test results display in the build once the test is complete. - -![](UnityTestRunner-4.png) - -To get the test results from the platform to the Editor running the test, both need to be on same network. The application running on the platform reports back the test results, displays the tests executed, and shuts down. - -Note that some platforms do not support shutting down the application with [Application.Quit](https://docs.unity3d.com/ScriptReference/Application.Quit.html). These continue running after reporting test results. - -If Unity cannot instantiate the connection, you can visually see the tests succeed in the running application. Note that running tests on platforms with arguments, in this state, does not provide XML test results. - -## Running from the command line - -To do this, run Unity with the following [command line arguments](https://docs.unity3d.com/Manual/CommandLineArguments.html): - -* `runTest` - Executes tests in the Project. - -* `testPlatform` - The platform you want to run tests on. - - * Available platforms: - - * `playmode` and `editmode`. Note that If unspecified, tests run in `editmode` by default. - - * Platform/Type convention is from the [BuildTarget](https://docs.unity3d.com/ScriptReference/BuildTarget.html) enum. The tested and official supported platforms: - - * [StandaloneWindows](https://docs.unity3d.com/ScriptReference/BuildTarget.StandaloneWindows.html) - - * [StandaloneWindows64](https://docs.unity3d.com/ScriptReference/BuildTarget.StandaloneWindows64.html) - - * [StandaloneOSXIntel](https://docs.unity3d.com/ScriptReference/BuildTarget.StandaloneOSXIntel.html) - - * [StandaloneOSXIntel64](https://docs.unity3d.com/ScriptReference/BuildTarget.StandaloneOSXIntel64.html) - - * [iOS](https://docs.unity3d.com/ScriptReference/BuildTarget.iOS.html) - - * [tvOS](https://docs.unity3d.com/ScriptReference/BuildTarget.tvOS.html) - - * [Android](https://docs.unity3d.com/ScriptReference/BuildTarget.Android.html) - - * [PS4](https://docs.unity3d.com/ScriptReference/BuildTarget.PS4.html) - - * [XboxOne](https://docs.unity3d.com/ScriptReference/BuildTarget.XboxOne.html) - -* `testResults` - The path indicating where Unity should save the result file. By default, Unity saves it in the Project’s root folder. - -### Example - -The following example shows a command line argument on Windows. The specific line may differ depending on your operating system. - - -``` ->Unity.exe -runTests -projectPath PATH_TO_YOUR_PROJECT -testResults C:\temp\results.xml -testPlatform editmode -``` - -__Tip:__ On Windows, in order to read the result code of the executed command, run the following: - -`start /WAIT Unity.exe ARGUMENT_LIST`. - -## Comparison utilities - -The [UnityEngine.TestTools.Utils](https://docs.unity3d.com/ScriptReference/TestTools.Utils.Utils.html) namespace contains utility classes to compare [Vector2](https://docs.unity3d.com/ScriptReference/Vector2.html), [Vector3](https://docs.unity3d.com/ScriptReference/Vector3.html), [Vector4](https://docs.unity3d.com/ScriptReference/Vector4.html), [Quaternion](https://docs.unity3d.com/ScriptReference/Quaternion.html), [Color](https://docs.unity3d.com/ScriptReference/Color.html) and `float` types using NUnit constraints. \ No newline at end of file diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/Documentation~/UnityTestRunner-0.png b/Library/PackageCache/com.unity.test-framework@1.0.13/Documentation~/UnityTestRunner-0.png deleted file mode 100644 index b07810477..000000000 Binary files a/Library/PackageCache/com.unity.test-framework@1.0.13/Documentation~/UnityTestRunner-0.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/Documentation~/UnityTestRunner-1.png b/Library/PackageCache/com.unity.test-framework@1.0.13/Documentation~/UnityTestRunner-1.png deleted file mode 100644 index 9c68789d8..000000000 Binary files a/Library/PackageCache/com.unity.test-framework@1.0.13/Documentation~/UnityTestRunner-1.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/Documentation~/UnityTestRunner-2.png b/Library/PackageCache/com.unity.test-framework@1.0.13/Documentation~/UnityTestRunner-2.png deleted file mode 100644 index a6fedfb92..000000000 Binary files a/Library/PackageCache/com.unity.test-framework@1.0.13/Documentation~/UnityTestRunner-2.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/Documentation~/UnityTestRunner-3.png b/Library/PackageCache/com.unity.test-framework@1.0.13/Documentation~/UnityTestRunner-3.png deleted file mode 100644 index febd5fcfc..000000000 Binary files a/Library/PackageCache/com.unity.test-framework@1.0.13/Documentation~/UnityTestRunner-3.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/Documentation~/UnityTestRunner-4.png b/Library/PackageCache/com.unity.test-framework@1.0.13/Documentation~/UnityTestRunner-4.png deleted file mode 100644 index 8d463042f..000000000 Binary files a/Library/PackageCache/com.unity.test-framework@1.0.13/Documentation~/UnityTestRunner-4.png and /dev/null differ diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/Documentation~/com.unity.test-framework.md b/Library/PackageCache/com.unity.test-framework@1.0.13/Documentation~/com.unity.test-framework.md deleted file mode 100644 index 38ba39961..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/Documentation~/com.unity.test-framework.md +++ /dev/null @@ -1,77 +0,0 @@ -# Unity Test Runner - -The Unity Test Runner is a tool that tests your code in both __Edit__ mode and __Play__ mode, and also on target platforms such as [Standalone](https://docs.unity3d.com/Manual/Standalone.html), Android, or iOS. - -To access the Unity Test Runner, go to __Window__ > __Test Runner__. - -![](UnityTestRunner-0.png) - -The Unity Test Runner uses a Unity integration of the NUnit library, which is an open-source unit testing library for .Net languages. For more information about NUnit, see the [official NUnit website](http://www.nunit.org/) and the [NUnit documentation on GitHub](https://github.com/nunit/docs/wiki/NUnit-Documentation). - -[UnityTestAttribute](https://docs.unity3d.com/ScriptReference/TestTools.UnityTestAttribute.html) is the main addition to the standard NUnit library for the Unity Test Runner. This is a type of unit test that allows you to skip a frame from within a test (which allows background tasks to finish). To use `UnityTestAttribute`: - -* In __Play__ mode: Execute `UnityTestAttribute` as a [coroutine](https://docs.unity3d.com/ScriptReference/Coroutine.html). - -* In __Edit__ mode: Execute `UnityTestAttribute` in the [EditorApplication.update](https://docs.unity3d.com/ScriptReference/EditorApplication-update.html) callback loop. - -## Known issues and limitations - -There are some known issues and limitations of the Unity Test Runner: - -* The WebGL and WSA platforms do not support `UnityTestAttribute`. - -* `UnityTest` does not support [Parameterized tests](https://github.com/nunit/docs/wiki/Parameterized-Tests) (except for `ValueSource`). - -## How to use Unity Test Runner - -This page assumes you already have an understanding of unit testing and NUnit. If you are new to NUnit or would like more information, see to the [NUnit documentation on GitHub](https://github.com/nunit/docs/wiki/NUnit-Documentation). - -To open the Unity Test Runner, open Unity and go to __Window__ > __Test Runner__. If there are no tests in your Project, click the __Create Test Script in current folder__ button to create a basic test script. This button is greyed out if adding a test script would result in a compilation error. The conditions for adding a test script are in the [Editor](https://docs.unity3d.com/Manual/SpecialFolders.html) folder, or any folders using Assembly Definition files that reference test assemblies (NUnit, Unity Test Runner, and user script assemblies). - -![](UnityTestRunner-1.png) - -You can also create test scripts by navigating to __Assets__ > __Create__ > __C# Test Script__. This option is disabled if adding a test script would result in a compilation error. - -__Note:__ Unity does not include test assemblies (NUnit, Unity TestRunner, and user script assemblies) when using the normal build pipeline, but does include them when using "Run on <Platform>" in the Test Runner Window. - -### Testing in Edit mode - -In __Edit__ mode, Unity runs tests from the Test Runner window. - -Edit mode test scripts are defined by the file location you place them in. Valid locations: - -* Project [Editor](https://docs.unity3d.com/Manual/SpecialFolders.html) folder - -* Assembly Definition file that references test assemblies that are Editor-only - -* Precompiled assemblies that are in the Project’s [Editor](https://docs.unity3d.com/Manual/SpecialFolders.html) folder - -Click the __EditMode__ button, then click __Create Test Script in current folder__ to create a basic test script. Open and edit this in your preferred script editing software as required. - -Note: When running in __Edit__ mode, execute [UnityTestAttribute](https://docs.unity3d.com/ScriptReference/TestTools.UnityTestAttribute.html) in the [EditorApplication.update](https://docs.unity3d.com/ScriptReference/EditorApplication-update.html) callback loop. - -### Testing in Play mode - -You need to place Play mode test scripts in a folder that an Assembly Definition file includes. The Assembly Definition file needs to reference test assemblies (Nunit and Unity TestRunner). Pre-defined Unity assemblies (such as *Assembly-CSharp.dll*) do not reference the defined assembly. This Assembly Definition file also needs to reference the assembly you want to test. This means that it’s only possible to test code defined by other Assembly Definition files. - -Unity does not include test assemblies in normal player builds; only when running through the Test Runner. If you need to test code in pre-defined assemblies, you can reference test assemblies from all the assemblies. However, you must manually remove these tests afterwards, so that Unity does not add them to the final player build. - -To do this: - -1. Save your project. - -2. Go to __Window__ > __Test Runner.__ - -3. Click the small drop-down menu in the top-right of the window. - -4. Click __Enable playmode tests for all assemblies__. - -5. In the dialog box appears, click __OK__ to manually restart the Editor. - -![](UnityTestRunner-2.png) - -__Note:__ Enabling __PlayMode__ tests for all assemblies includes additional assemblies in your Project’s build, which can increase your Project’s size as well as build time. - -To create __PlayMode__ test scripts, select __PlayMode__ in the Test Runner window and click __Create Test Script in current folder__. This button is greyed out if adding the script would result in a compilation error. - -__Note__: Execute [UnityTestAttribute](https://docs.unity3d.com/ScriptReference/TestTools.UnityTestAttribute.html) as a [coroutine](https://docs.unity3d.com/ScriptReference/Coroutine.html) when running in __Play__ mode. diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/LICENSE.md b/Library/PackageCache/com.unity.test-framework@1.0.13/LICENSE.md deleted file mode 100644 index f2dc729c1..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/LICENSE.md +++ /dev/null @@ -1,5 +0,0 @@ -Test Framework copyright © 2019 Unity Technologies ApS - -Licensed under the Unity Companion License for Unity-dependent projects--see [Unity Companion License](http://www.unity3d.com/legal/licenses/Unity_Companion_License). - -Unless expressly provided otherwise, the Software under this license is made available strictly on an “AS IS” BASIS WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. Please review the license for details on these and other terms and conditions. diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/LICENSE.md.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/LICENSE.md.meta deleted file mode 100644 index f6a2ca23c..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/LICENSE.md.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 3ec7596410385054a9e0bc90377fbe63 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner.meta deleted file mode 100644 index d1eb5739f..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 95cdf27b47eb82747ba9e51f41e72a35 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api.meta deleted file mode 100644 index 2ffb8f974..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: fa423365b1ce06a4dbdc6fb4a8597bfa -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/CallbacksDelegator.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/CallbacksDelegator.cs deleted file mode 100644 index ca73e2ddb..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/CallbacksDelegator.cs +++ /dev/null @@ -1,116 +0,0 @@ -using System; -using System.Linq; -using System.Text; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; -using UnityEngine; -using UnityEngine.TestRunner.TestLaunchers; - -namespace UnityEditor.TestTools.TestRunner.Api -{ - internal class CallbacksDelegator - { - private static CallbacksDelegator s_instance; - public static CallbacksDelegator instance - { - get - { - if (s_instance == null) - { - s_instance = new CallbacksDelegator(CallbacksHolder.instance.GetAll, new TestAdaptorFactory()); - } - return s_instance; - } - } - - private readonly Func m_CallbacksProvider; - private readonly ITestAdaptorFactory m_AdaptorFactory; - - public CallbacksDelegator(Func callbacksProvider, ITestAdaptorFactory adaptorFactory) - { - m_CallbacksProvider = callbacksProvider; - m_AdaptorFactory = adaptorFactory; - } - - public void RunStarted(ITest testsToRun) - { - var testRunnerTestsToRun = m_AdaptorFactory.Create(testsToRun); - TryInvokeAllCallbacks(callbacks => callbacks.RunStarted(testRunnerTestsToRun)); - } - - public void RunStartedRemotely(byte[] testsToRunData) - { - var testData = Deserialize(testsToRunData); - var testsToRun = m_AdaptorFactory.BuildTree(testData); - TryInvokeAllCallbacks(callbacks => callbacks.RunStarted(testsToRun)); - } - - public void RunFinished(ITestResult testResults) - { - var testResult = m_AdaptorFactory.Create(testResults); - TryInvokeAllCallbacks(callbacks => callbacks.RunFinished(testResult)); - } - - public void RunFinishedRemotely(byte[] testResultsData) - { - var remoteTestResult = Deserialize(testResultsData); - var testResult = m_AdaptorFactory.Create(remoteTestResult.results.First(), remoteTestResult); - TryInvokeAllCallbacks(callbacks => callbacks.RunFinished(testResult)); - } - - public void RunFailed(string failureMessage) - { - var nunitTestResult = new TestSuiteResult(new TestSuite("test")); - nunitTestResult.SetResult(ResultState.Error, failureMessage); - var testResult = m_AdaptorFactory.Create(nunitTestResult); - TryInvokeAllCallbacks(callbacks => callbacks.RunFinished(testResult)); - } - - public void TestStarted(ITest test) - { - var testRunnerTest = m_AdaptorFactory.Create(test); - TryInvokeAllCallbacks(callbacks => callbacks.TestStarted(testRunnerTest)); - } - - public void TestStartedRemotely(byte[] testStartedData) - { - var testData = Deserialize(testStartedData); - var testsToRun = m_AdaptorFactory.BuildTree(testData); - - TryInvokeAllCallbacks(callbacks => callbacks.TestStarted(testsToRun)); - } - - public void TestFinished(ITestResult result) - { - var testResult = m_AdaptorFactory.Create(result); - TryInvokeAllCallbacks(callbacks => callbacks.TestFinished(testResult)); - } - - public void TestFinishedRemotely(byte[] testResultsData) - { - var remoteTestResult = Deserialize(testResultsData); - var testResult = m_AdaptorFactory.Create(remoteTestResult.results.First(), remoteTestResult); - TryInvokeAllCallbacks(callbacks => callbacks.TestFinished(testResult)); - } - - private void TryInvokeAllCallbacks(Action callbackAction) - { - foreach (var testRunnerApiCallback in m_CallbacksProvider()) - { - try - { - callbackAction(testRunnerApiCallback); - } - catch (Exception ex) - { - Debug.LogException(ex); - } - } - } - - private static T Deserialize(byte[] data) - { - return JsonUtility.FromJson(Encoding.UTF8.GetString(data)); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/CallbacksDelegator.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/CallbacksDelegator.cs.meta deleted file mode 100644 index 89e090469..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/CallbacksDelegator.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 0de03ebd74e2b474fa23d05ab42d0cd8 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/CallbacksDelegatorListener.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/CallbacksDelegatorListener.cs deleted file mode 100644 index c19621d55..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/CallbacksDelegatorListener.cs +++ /dev/null @@ -1,28 +0,0 @@ -using UnityEngine; -using UnityEngine.TestTools.TestRunner; - -namespace UnityEditor.TestTools.TestRunner.Api -{ - internal class CallbacksDelegatorListener : ScriptableObject, ITestRunnerListener - { - public void RunStarted(NUnit.Framework.Interfaces.ITest testsToRun) - { - CallbacksDelegator.instance.RunStarted(testsToRun); - } - - public void RunFinished(NUnit.Framework.Interfaces.ITestResult testResults) - { - CallbacksDelegator.instance.RunFinished(testResults); - } - - public void TestStarted(NUnit.Framework.Interfaces.ITest test) - { - CallbacksDelegator.instance.TestStarted(test); - } - - public void TestFinished(NUnit.Framework.Interfaces.ITestResult result) - { - CallbacksDelegator.instance.TestFinished(result); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/CallbacksDelegatorListener.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/CallbacksDelegatorListener.cs.meta deleted file mode 100644 index c9bb94a31..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/CallbacksDelegatorListener.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: f3e1b3cbf3fac6a459b1a602167ad311 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/CallbacksHolder.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/CallbacksHolder.cs deleted file mode 100644 index 07b8ecfe8..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/CallbacksHolder.cs +++ /dev/null @@ -1,40 +0,0 @@ -using System.Collections.Generic; -using System.Linq; - -namespace UnityEditor.TestTools.TestRunner.Api -{ - internal class CallbacksHolder : ScriptableSingleton - { - private List m_Callbacks = new List(); - public void Add(ICallbacks callback, int priority) - { - m_Callbacks.Add(new CallbackWithPriority(callback, priority)); - } - - public void Remove(ICallbacks callback) - { - m_Callbacks.RemoveAll(callbackWithPriority => callbackWithPriority.Callback == callback); - } - - public ICallbacks[] GetAll() - { - return m_Callbacks.OrderByDescending(callback => callback.Priority).Select(callback => callback.Callback).ToArray(); - } - - public void Clear() - { - m_Callbacks.Clear(); - } - - private struct CallbackWithPriority - { - public ICallbacks Callback; - public int Priority; - public CallbackWithPriority(ICallbacks callback, int priority) - { - Callback = callback; - Priority = priority; - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/CallbacksHolder.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/CallbacksHolder.cs.meta deleted file mode 100644 index 7c4202826..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/CallbacksHolder.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 4884ccc3528cb2e40a0e6f0a19a2b35b -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ExecutionSettings.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ExecutionSettings.cs deleted file mode 100644 index 76a6bc8c4..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ExecutionSettings.cs +++ /dev/null @@ -1,9 +0,0 @@ -namespace UnityEditor.TestTools.TestRunner.Api -{ - internal class ExecutionSettings - { - public BuildTarget? targetPlatform; - public ITestRunSettings overloadTestRunSettings; - public Filter filter; - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ExecutionSettings.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ExecutionSettings.cs.meta deleted file mode 100644 index 602a117c9..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ExecutionSettings.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: eea34a28297f9bc4c9f4c573bc8d5d1c -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/Filter.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/Filter.cs deleted file mode 100644 index 96b465784..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/Filter.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System; -using UnityEngine; -using UnityEngine.TestTools.TestRunner.GUI; - -namespace UnityEditor.TestTools.TestRunner.Api -{ - [Serializable] - internal class Filter - { - [SerializeField] - public TestMode testMode; - [SerializeField] - public string[] testNames; - [SerializeField] - public string[] groupNames; - [SerializeField] - public string[] categoryNames; - [SerializeField] - public string[] assemblyNames; - - public static Filter empty = new Filter(); - - internal TestRunnerFilter ToTestRunnerFilter() - { - return new TestRunnerFilter() - { - testNames = testNames, - categoryNames = categoryNames, - groupNames = groupNames, - assemblyNames = assemblyNames - }; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/Filter.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/Filter.cs.meta deleted file mode 100644 index bbb21b582..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/Filter.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 05f92e4a2414cb144a92157752dfa324 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ICallbacks.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ICallbacks.cs deleted file mode 100644 index c6b3e472b..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ICallbacks.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace UnityEditor.TestTools.TestRunner.Api -{ - internal interface ICallbacks - { - void RunStarted(ITestAdaptor testsToRun); - void RunFinished(ITestResultAdaptor result); - void TestStarted(ITestAdaptor test); - void TestFinished(ITestResultAdaptor result); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ICallbacks.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ICallbacks.cs.meta deleted file mode 100644 index 851e3f684..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ICallbacks.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 93eea84e53d0226479c9a584f19427b5 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestAdaptor.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestAdaptor.cs deleted file mode 100644 index 5474a89e7..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestAdaptor.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System.Collections.Generic; -using NUnit.Framework.Interfaces; - -namespace UnityEditor.TestTools.TestRunner.Api -{ - internal interface ITestAdaptor - { - string Id { get; } - string Name { get; } - string FullName { get; } - int TestCaseCount { get; } - bool HasChildren { get; } - bool IsSuite { get; } - IEnumerable Children { get; } - int TestCaseTimeout { get; } - ITypeInfo TypeInfo { get; } - IMethodInfo Method { get; } - string[] Categories { get; } - bool IsTestAssembly { get; } - RunState RunState { get; } - string Description { get; } - string SkipReason { get; } - string ParentId { get; } - string UniqueName { get; } - string ParentUniqueName { get; } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestAdaptor.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestAdaptor.cs.meta deleted file mode 100644 index 2ae45afdf..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestAdaptor.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 85dd7af03f02aea4aae13a3945e3b313 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestAdaptorFactory.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestAdaptorFactory.cs deleted file mode 100644 index bf599029a..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestAdaptorFactory.cs +++ /dev/null @@ -1,16 +0,0 @@ -using System.Collections.Generic; -using NUnit.Framework.Interfaces; -using UnityEngine.TestRunner.TestLaunchers; - -namespace UnityEditor.TestTools.TestRunner.Api -{ - internal interface ITestAdaptorFactory - { - ITestAdaptor Create(ITest test); - ITestAdaptor Create(RemoteTestData testData); - ITestResultAdaptor Create(ITestResult testResult); - ITestResultAdaptor Create(RemoteTestResultData testResult, RemoteTestResultDataWithTestData allData); - ITestAdaptor BuildTree(RemoteTestResultDataWithTestData data); - IEnumerator BuildTreeAsync(RemoteTestResultDataWithTestData data); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestAdaptorFactory.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestAdaptorFactory.cs.meta deleted file mode 100644 index 05dadbac7..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestAdaptorFactory.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 803abab0f7e17044db56f8760186dbd1 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestResultAdaptor.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestResultAdaptor.cs deleted file mode 100644 index 703b5d6d6..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestResultAdaptor.cs +++ /dev/null @@ -1,86 +0,0 @@ -using System; -using System.Collections.Generic; -using NUnit.Framework.Interfaces; - -namespace UnityEditor.TestTools.TestRunner.Api -{ - internal interface ITestResultAdaptor - { - ITestAdaptor Test { get; } - string Name { get; } - - /// Gets the full name of the test result - string FullName { get; } - - string ResultState { get; } - - TestStatus TestStatus { get; } - - /// Gets the elapsed time for running the test in seconds - double Duration { get; } - - /// Gets or sets the time the test started running. - DateTime StartTime { get; } - - /// Gets or sets the time the test finished running. - DateTime EndTime { get; } - - /// - /// Gets the message associated with a test - /// failure or with not running the test - /// - string Message { get; } - - /// - /// Gets any stacktrace associated with an - /// error or failure. Not available in - /// the Compact Framework 1.0. - /// - string StackTrace { get; } - - /// - /// Gets the number of asserts executed - /// when running the test and all its children. - /// - int AssertCount { get; } - - /// - /// Gets the number of test cases that failed - /// when running the test and all its children. - /// - int FailCount { get; } - - /// - /// Gets the number of test cases that passed - /// when running the test and all its children. - /// - int PassCount { get; } - - /// - /// Gets the number of test cases that were skipped - /// when running the test and all its children. - /// - int SkipCount { get; } - - /// - /// Gets the number of test cases that were inconclusive - /// when running the test and all its children. - /// - int InconclusiveCount { get; } - - /// - /// Indicates whether this result has any child results. - /// Accessing HasChildren should not force creation of the - /// Children collection in classes implementing this interface. - /// - bool HasChildren { get; } - - /// Gets the the collection of child results. - IEnumerable Children { get; } - - /// Gets any text output written to this result. - string Output { get; } - - TNode ToXml(); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestResultAdaptor.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestResultAdaptor.cs.meta deleted file mode 100644 index 5ea944f10..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestResultAdaptor.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 4f90cfe4bf5cfb44f84a5b11387f2a42 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestRunSettings.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestRunSettings.cs deleted file mode 100644 index aa4515c62..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestRunSettings.cs +++ /dev/null @@ -1,9 +0,0 @@ -using System; - -namespace UnityEditor.TestTools.TestRunner.Api -{ - internal interface ITestRunSettings : IDisposable - { - void Apply(); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestRunSettings.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestRunSettings.cs.meta deleted file mode 100644 index 27a3a3322..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestRunSettings.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 2ae2ce6274819484fa8747a28cebdf3a -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestRunnerApi.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestRunnerApi.cs deleted file mode 100644 index f2dff8598..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestRunnerApi.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System; - -namespace UnityEditor.TestTools.TestRunner.Api -{ - interface ITestRunnerApi - { - void Execute(ExecutionSettings executionSettings); - void RegisterCallbacks(T testCallbacks, int priority = 0) where T : ICallbacks; - void UnregisterCallbacks(T testCallbacks) where T : ICallbacks; - void RetrieveTestList(ExecutionSettings executionSettings, Action callback); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestRunnerApi.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestRunnerApi.cs.meta deleted file mode 100644 index d581ffdbe..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/ITestRunnerApi.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: a7842a837a4b13e41ae16193db753418 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/RunState.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/RunState.cs deleted file mode 100644 index eb2c8ab86..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/RunState.cs +++ /dev/null @@ -1,11 +0,0 @@ -namespace UnityEditor.TestTools.TestRunner.Api -{ - internal enum RunState - { - NotRunnable, - Runnable, - Explicit, - Skipped, - Ignored, - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/RunState.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/RunState.cs.meta deleted file mode 100644 index 818e3c022..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/RunState.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 8bb59cb2f66d156418ca1bd1e2703233 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestAdaptor.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestAdaptor.cs deleted file mode 100644 index 0b6dc6456..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestAdaptor.cs +++ /dev/null @@ -1,123 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; -using UnityEngine.TestRunner.NUnitExtensions; -using UnityEngine.TestRunner.NUnitExtensions.Runner; -using UnityEngine.TestRunner.TestLaunchers; -using UnityEngine.TestTools.Utils; - -namespace UnityEditor.TestTools.TestRunner.Api -{ - internal class TestAdaptor : ITestAdaptor - { - internal TestAdaptor(ITest test) : this(test, new ITest[0]) - { - } - - internal TestAdaptor(ITest test, ITest[] additionalChildren) - { - Id = test.Id; - Name = test.Name; - var childIndex = -1; - if (test.Properties["childIndex"].Count > 0) - { - childIndex = (int)test.Properties["childIndex"][0]; - } - FullName = childIndex != -1 ? GetIndexedTestCaseName(test.FullName, childIndex) : test.FullName; - TestCaseCount = test.TestCaseCount; - HasChildren = test.HasChildren; - IsSuite = test.IsSuite; - Children = new[] {test.Tests, additionalChildren}.SelectMany(t => t).Select(t => new TestAdaptor(t)).ToArray(); - if (UnityTestExecutionContext.CurrentContext != null) - { - TestCaseTimeout = UnityTestExecutionContext.CurrentContext.TestCaseTimeout; - } - else - { - TestCaseTimeout = CoroutineRunner.k_DefaultTimeout; - } - - TypeInfo = test.TypeInfo; - Method = test.Method; - FullPath = GetFullPath(test); - Categories = test.GetAllCategoriesFromTest().Distinct().ToArray(); - IsTestAssembly = test is TestAssembly; - RunState = (RunState)Enum.Parse(typeof(RunState), test.RunState.ToString()); - Description = (string)test.Properties.Get(PropertyNames.Description); - SkipReason = test.GetSkipReason(); - ParentId = test.GetParentId(); - UniqueName = test.GetUniqueName(); - ParentUniqueName = test.GetParentUniqueName(); - } - - internal TestAdaptor(RemoteTestData test) - { - Id = test.id; - Name = test.name; - FullName = test.ChildIndex != -1 ? GetIndexedTestCaseName(test.fullName, test.ChildIndex) : test.fullName; - TestCaseCount = test.testCaseCount; - HasChildren = test.hasChildren; - IsSuite = test.isSuite; - m_ChildrenIds = test.childrenIds; - TestCaseTimeout = test.testCaseTimeout; - Categories = test.Categories; - IsTestAssembly = test.IsTestAssembly; - RunState = (RunState)Enum.Parse(typeof(RunState), test.RunState.ToString()); - Description = test.Description; - SkipReason = test.SkipReason; - ParentId = test.ParentId; - UniqueName = test.UniqueName; - ParentUniqueName = test.ParentUniqueName; - } - - internal void ApplyChildren(IEnumerable allTests) - { - Children = m_ChildrenIds.Select(id => allTests.First(t => t.Id == id)).ToArray(); - } - - public string Id { get; private set; } - public string Name { get; private set; } - public string FullName { get; private set; } - public int TestCaseCount { get; private set; } - public bool HasChildren { get; private set; } - public bool IsSuite { get; private set; } - public IEnumerable Children { get; private set; } - public int TestCaseTimeout { get; private set; } - public ITypeInfo TypeInfo { get; private set; } - public IMethodInfo Method { get; private set; } - public string FullPath { get; private set; } - private string[] m_ChildrenIds; - public string[] Categories { get; private set; } - public bool IsTestAssembly { get; private set; } - public RunState RunState { get; } - public string Description { get; } - public string SkipReason { get; } - public string ParentId { get; } - public string UniqueName { get; } - public string ParentUniqueName { get; } - - private static string GetFullPath(ITest test) - { - if (test.Parent != null && test.Parent.Parent != null) - return GetFullPath(test.Parent) + "/" + test.Name; - return test.Name; - } - - private static string GetIndexedTestCaseName(string fullName, int index) - { - var generatedTestSuffix = " GeneratedTestCase" + index; - if (fullName.EndsWith(")")) - { - // Test names from generated TestCaseSource look like Test(TestCaseSourceType) - // This inserts a unique test case index in the name, so that it becomes Test(TestCaseSourceType GeneratedTestCase0) - return fullName.Substring(0, fullName.Length - 1) + generatedTestSuffix + fullName[fullName.Length - 1]; - } - - // In some cases there can be tests with duplicate names generated in other ways and they won't have () in their name - // We just append a suffix at the end of the name in that case - return fullName + generatedTestSuffix; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestAdaptor.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestAdaptor.cs.meta deleted file mode 100644 index 81e39b715..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestAdaptor.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 6e0e62db88935c74288c97c907243bd0 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestAdaptorFactory.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestAdaptorFactory.cs deleted file mode 100644 index 5fb8ab662..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestAdaptorFactory.cs +++ /dev/null @@ -1,59 +0,0 @@ -using System.Collections.Generic; -using System.Linq; -using NUnit.Framework.Interfaces; -using UnityEngine.TestRunner.TestLaunchers; - -namespace UnityEditor.TestTools.TestRunner.Api -{ - internal class TestAdaptorFactory : ITestAdaptorFactory - { - public ITestAdaptor Create(ITest test) - { - return new TestAdaptor(test); - } - - public ITestAdaptor Create(RemoteTestData testData) - { - return new TestAdaptor(testData); - } - - public ITestResultAdaptor Create(ITestResult testResult) - { - return new TestResultAdaptor(testResult); - } - - public ITestResultAdaptor Create(RemoteTestResultData testResult, RemoteTestResultDataWithTestData allData) - { - return new TestResultAdaptor(testResult, allData); - } - - public ITestAdaptor BuildTree(RemoteTestResultDataWithTestData data) - { - var tests = data.tests.Select(remoteTestData => new TestAdaptor(remoteTestData)).ToList(); - - foreach (var test in tests) - { - test.ApplyChildren(tests); - } - - return tests.First(); - } - - public IEnumerator BuildTreeAsync(RemoteTestResultDataWithTestData data) - { - var tests = data.tests.Select(remoteTestData => new TestAdaptor(remoteTestData)).ToList(); - - for (var index = 0; index < tests.Count; index++) - { - var test = tests[index]; - test.ApplyChildren(tests); - if (index % 100 == 0) - { - yield return null; - } - } - - yield return tests.First(); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestAdaptorFactory.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestAdaptorFactory.cs.meta deleted file mode 100644 index 0b1175fde..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestAdaptorFactory.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: d0663d520c26b7c48a4135599e66acf8 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestLauncherFactory.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestLauncherFactory.cs deleted file mode 100644 index d63110b80..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestLauncherFactory.cs +++ /dev/null @@ -1,57 +0,0 @@ -using System; -using UnityEngine.TestTools; -using UnityEngine.TestTools.TestRunner; - -namespace UnityEditor.TestTools.TestRunner.Api -{ - internal class TestLauncherFactory - { - internal TestLauncherBase GetLauncher(ExecutionSettings executionSettings) - { - if (executionSettings.filter.testMode == TestMode.EditMode) - { - return GetEditModeLauncher(executionSettings.filter); - } - else - { - var settings = PlaymodeTestsControllerSettings.CreateRunnerSettings(executionSettings.filter.ToTestRunnerFilter()); - return GetPlayModeLauncher(settings, executionSettings); - } - } - - static TestLauncherBase GetEditModeLauncher(Filter filter) - { - return GetEditModeLauncherForProvidedAssemblies(filter); - } - - static TestLauncherBase GetPlayModeLauncher(PlaymodeTestsControllerSettings settings, ExecutionSettings executionSettings) - { - if (executionSettings.targetPlatform != null) - { - return GetPlayerLauncher(settings, executionSettings.targetPlatform.Value, executionSettings.overloadTestRunSettings); - } - - if (PlayerSettings.runPlayModeTestAsEditModeTest) - { - return GetEditModeLauncherForProvidedAssemblies(executionSettings.filter, TestPlatform.PlayMode); - } - - return GetPlayModeLauncher(settings); - } - - static TestLauncherBase GetEditModeLauncherForProvidedAssemblies(Filter filter, TestPlatform testPlatform = TestPlatform.EditMode) - { - return new EditModeLauncher(filter.ToTestRunnerFilter(), testPlatform); - } - - static TestLauncherBase GetPlayModeLauncher(PlaymodeTestsControllerSettings settings) - { - return new PlaymodeLauncher(settings); - } - - static TestLauncherBase GetPlayerLauncher(PlaymodeTestsControllerSettings settings, BuildTarget targetPlatform, ITestRunSettings overloadTestRunSettings) - { - return new PlayerLauncher(settings, targetPlatform, overloadTestRunSettings); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestLauncherFactory.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestLauncherFactory.cs.meta deleted file mode 100644 index d214c7d33..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestLauncherFactory.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: f33e570b8b9af1048b80a27e7848cb09 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestMode.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestMode.cs deleted file mode 100644 index c330457a7..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestMode.cs +++ /dev/null @@ -1,11 +0,0 @@ -using System; - -namespace UnityEditor.TestTools.TestRunner.Api -{ - [Flags] - internal enum TestMode - { - EditMode = 1 << 0, - PlayMode = 1 << 1 - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestMode.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestMode.cs.meta deleted file mode 100644 index e04594b91..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestMode.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: cad095eccea17b741bc4cd264e7441cd -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestResultAdaptor.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestResultAdaptor.cs deleted file mode 100644 index 06e70f12a..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestResultAdaptor.cs +++ /dev/null @@ -1,87 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using NUnit.Framework.Interfaces; -using UnityEngine.TestRunner.TestLaunchers; - -namespace UnityEditor.TestTools.TestRunner.Api -{ - internal class TestResultAdaptor : ITestResultAdaptor - { - private TNode m_Node; - - internal TestResultAdaptor(ITestResult result) - { - Test = new TestAdaptor(result.Test); - Name = result.Name; - FullName = result.FullName; - ResultState = result.ResultState.ToString(); - TestStatus = ParseTestStatus(result.ResultState.Status); - Duration = result.Duration; - StartTime = result.StartTime; - EndTime = result.EndTime; - Message = result.Message; - StackTrace = result.StackTrace; - AssertCount = result.AssertCount; - FailCount = result.FailCount; - PassCount = result.PassCount; - SkipCount = result.SkipCount; - InconclusiveCount = result.InconclusiveCount; - HasChildren = result.HasChildren; - Output = result.Output; - Children = result.Children.Select(child => new TestResultAdaptor(child)).ToArray(); - m_Node = result.ToXml(true); - } - - internal TestResultAdaptor(RemoteTestResultData result, RemoteTestResultDataWithTestData allData) - { - Test = new TestAdaptor(allData.tests.First(t => t.id == result.testId)); - Name = result.name; - FullName = result.fullName; - ResultState = result.resultState; - TestStatus = ParseTestStatus(result.testStatus); - Duration = result.duration; - StartTime = result.startTime; - EndTime = result.endTime; - Message = result.message; - StackTrace = result.stackTrace; - AssertCount = result.assertCount; - FailCount = result.failCount; - PassCount = result.passCount; - SkipCount = result.skipCount; - InconclusiveCount = result.inconclusiveCount; - HasChildren = result.hasChildren; - Output = result.output; - Children = result.childrenIds.Select(childId => new TestResultAdaptor(allData.results.First(r => r.testId == childId), allData)).ToArray(); - m_Node = TNode.FromXml(result.xml); - } - - public ITestAdaptor Test { get; private set; } - public string Name { get; private set; } - public string FullName { get; private set; } - public string ResultState { get; private set; } - public TestStatus TestStatus { get; private set; } - public double Duration { get; private set; } - public DateTime StartTime { get; private set; } - public DateTime EndTime { get; private set; } - public string Message { get; private set; } - public string StackTrace { get; private set; } - public int AssertCount { get; private set; } - public int FailCount { get; private set; } - public int PassCount { get; private set; } - public int SkipCount { get; private set; } - public int InconclusiveCount { get; private set; } - public bool HasChildren { get; private set; } - public IEnumerable Children { get; private set; } - public string Output { get; private set; } - public TNode ToXml() - { - return m_Node; - } - - private static TestStatus ParseTestStatus(NUnit.Framework.Interfaces.TestStatus testStatus) - { - return (TestStatus)Enum.Parse(typeof(TestStatus), testStatus.ToString()); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestResultAdaptor.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestResultAdaptor.cs.meta deleted file mode 100644 index c2b119e21..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestResultAdaptor.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: d061ada5d3169454daf54243390b5fdb -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestRunData.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestRunData.cs deleted file mode 100644 index decdf2895..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestRunData.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System; -using UnityEngine; - -namespace UnityEditor.TestTools.TestRunner.Api -{ - [Serializable] - internal class TestRunData : ScriptableSingleton - { - [SerializeField] - public ExecutionSettings executionSettings; - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestRunData.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestRunData.cs.meta deleted file mode 100644 index 701da80f8..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestRunData.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 973b024861c5ae84f869aad614234b04 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestRunnerApi.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestRunnerApi.cs deleted file mode 100644 index 655f97d36..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestRunnerApi.cs +++ /dev/null @@ -1,81 +0,0 @@ -using System; -using System.Linq; -using System.Threading; -using UnityEngine; -using UnityEngine.TestRunner.TestLaunchers; -using UnityEngine.TestTools; -using UnityEngine.TestTools.NUnitExtensions; - -namespace UnityEditor.TestTools.TestRunner.Api -{ - internal class TestRunnerApi : ScriptableObject, ITestRunnerApi - { - public void Execute(ExecutionSettings executionSettings) - { - if (executionSettings == null) - { - throw new ArgumentException("Filter for execution is undefined."); - } - - var launcherFactory = new TestLauncherFactory(); - var data = TestRunData.instance; - data.executionSettings = executionSettings; - - var testLauncher = launcherFactory.GetLauncher(executionSettings); - testLauncher.Run(); - } - - public void RegisterCallbacks(T testCallbacks, int priority = 0) where T : ICallbacks - { - if (testCallbacks == null) - { - throw new ArgumentException("TestCallbacks for execution is undefined."); - } - - CallbacksHolder.instance.Add(testCallbacks, priority); - } - - public void UnregisterCallbacks(T testCallbacks) where T : ICallbacks - { - if (testCallbacks == null) - { - throw new ArgumentException("TestCallbacks for execution is undefined."); - } - - CallbacksHolder.instance.Remove(testCallbacks); - } - - public void RetrieveTestList(ExecutionSettings executionSettings, Action callback) - { - if (executionSettings == null) - { - throw new ArgumentException("Filter for execution is undefined."); - } - - if (callback == null) - { - throw new ArgumentException("Callback is undefined."); - } - - var platform = ParseTestMode(executionSettings.filter.testMode); - var testAssemblyProvider = new EditorLoadedTestAssemblyProvider(new EditorCompilationInterfaceProxy(), new EditorAssembliesProxy()); - var testAdaptorFactory = new TestAdaptorFactory(); - var testListCache = new TestListCache(testAdaptorFactory, new RemoteTestResultDataFactory(), TestListCacheData.instance); - var testListProvider = new TestListProvider(testAssemblyProvider, new UnityTestAssemblyBuilder()); - var cachedTestListProvider = new CachingTestListProvider(testListProvider, testListCache, testAdaptorFactory); - - var job = new TestListJob(cachedTestListProvider, platform, callback); - job.Start(); - } - - private static TestPlatform ParseTestMode(TestMode testmode) - { - if (testmode == TestMode.EditMode) - { - return TestPlatform.EditMode; - } - - return TestPlatform.PlayMode; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestRunnerApi.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestRunnerApi.cs.meta deleted file mode 100644 index 7ad5fc15c..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestRunnerApi.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 68993ba529ae04440916cb7c23bf3279 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestStatus.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestStatus.cs deleted file mode 100644 index c72973e85..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestStatus.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace UnityEditor.TestTools.TestRunner.Api -{ - internal enum TestStatus - { - Skipped, - Passed, - Failed, - Inconclusive - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestStatus.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestStatus.cs.meta deleted file mode 100644 index 38bd6af07..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/Api/TestStatus.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 9ec94545c5b00344c9bd8e691f15d799 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/AssemblyInfo.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/AssemblyInfo.cs deleted file mode 100644 index 1c4e19baf..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/AssemblyInfo.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; - -[assembly: AssemblyTitle("UnityEditor.TestRunner")] -[assembly: InternalsVisibleTo("Assembly-CSharp-Editor-testable")] -[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")] -[assembly: InternalsVisibleTo("Unity.PerformanceTesting.Editor")] -[assembly: InternalsVisibleTo("Unity.IntegrationTests")] -[assembly: InternalsVisibleTo("UnityEditor.TestRunner.Tests")] -[assembly: InternalsVisibleTo("Unity.TestTools.CodeCoverage.Editor")] -[assembly: InternalsVisibleTo("Unity.PackageManagerUI.Develop.Editor")] -[assembly: InternalsVisibleTo("Unity.PackageManagerUI.Develop.EditorTests")] - -[assembly: AssemblyVersion("1.0.0")] diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/AssemblyInfo.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/AssemblyInfo.cs.meta deleted file mode 100644 index 5e1b8dd13..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/AssemblyInfo.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 9db19a04003fca7439552acd4de9baa1 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineParser.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineParser.meta deleted file mode 100644 index b5a29bdc6..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineParser.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 7602252bdb82b8d45ae3483c3a00d3e1 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineParser/CommandLineOption.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineParser/CommandLineOption.cs deleted file mode 100644 index 1a2d98a4b..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineParser/CommandLineOption.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; -using System.Linq; - -namespace UnityEditor.TestRunner.CommandLineParser -{ - internal class CommandLineOption : ICommandLineOption - { - Action m_ArgAction; - - public CommandLineOption(string argName, Action action) - { - ArgName = argName; - m_ArgAction = s => action(); - } - - public CommandLineOption(string argName, Action action) - { - ArgName = argName; - m_ArgAction = action; - } - - public CommandLineOption(string argName, Action action) - { - ArgName = argName; - m_ArgAction = s => action(SplitStringToArray(s)); - } - - public string ArgName { get; private set; } - - public void ApplyValue(string value) - { - m_ArgAction(value); - } - - static string[] SplitStringToArray(string value) - { - if (string.IsNullOrEmpty(value)) - { - return null; - } - - return value.Split(';').ToArray(); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineParser/CommandLineOption.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineParser/CommandLineOption.cs.meta deleted file mode 100644 index 65f32561a..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineParser/CommandLineOption.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: a3529368f4cd0424a89aa51080a16b06 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineParser/CommandLineOptionSet.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineParser/CommandLineOptionSet.cs deleted file mode 100644 index d08c233dd..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineParser/CommandLineOptionSet.cs +++ /dev/null @@ -1,49 +0,0 @@ -using System; - -namespace UnityEditor.TestRunner.CommandLineParser -{ - internal class CommandLineOptionSet - { - ICommandLineOption[] m_Options; - - public CommandLineOptionSet(params ICommandLineOption[] options) - { - m_Options = options; - } - - public void Parse(string[] args) - { - var i = 0; - while (i < args.Length) - { - var arg = args[i]; - if (!arg.StartsWith("-")) - { - i++; - continue; - } - - string value = null; - if (i + 1 < args.Length && !args[i + 1].StartsWith("-")) - { - value = args[i + 1]; - i++; - } - - ApplyValueToMatchingOptions(arg, value); - i++; - } - } - - private void ApplyValueToMatchingOptions(string argName, string value) - { - foreach (var option in m_Options) - { - if ("-" + option.ArgName == argName) - { - option.ApplyValue(value); - } - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineParser/CommandLineOptionSet.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineParser/CommandLineOptionSet.cs.meta deleted file mode 100644 index 1db24d0db..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineParser/CommandLineOptionSet.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 139c5eac101a4dc4fb3098e30c29f15e -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs deleted file mode 100644 index 7f699adce..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace UnityEditor.TestRunner.CommandLineParser -{ - interface ICommandLineOption - { - string ArgName { get; } - void ApplyValue(string value); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs.meta deleted file mode 100644 index 613d95f02..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: f445ca0c614a846449fcd8ae648c24e2 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest.meta deleted file mode 100644 index d005718c4..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: b477d1f29b65a674e9d5cdab4eb72b01 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/Executer.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/Executer.cs deleted file mode 100644 index c0ad491c8..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/Executer.cs +++ /dev/null @@ -1,137 +0,0 @@ -using System; -using System.Linq; -using UnityEditor.TestRunner.TestLaunchers; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine; - -namespace UnityEditor.TestTools.TestRunner.CommandLineTest -{ - internal class Executer - { - private ITestRunnerApi m_TestRunnerApi; - private ISettingsBuilder m_SettingsBuilder; - private Action m_LogErrorFormat; - private Action m_LogException; - private Action m_ExitEditorApplication; - private Func m_ScriptCompilationFailedCheck; - - public Executer(ITestRunnerApi testRunnerApi, ISettingsBuilder settingsBuilder, Action logErrorFormat, Action logException, Action exitEditorApplication, Func scriptCompilationFailedCheck) - { - m_TestRunnerApi = testRunnerApi; - m_SettingsBuilder = settingsBuilder; - m_LogErrorFormat = logErrorFormat; - m_LogException = logException; - m_ExitEditorApplication = exitEditorApplication; - m_ScriptCompilationFailedCheck = scriptCompilationFailedCheck; - } - - internal void InitializeAndExecuteRun(string[] commandLineArgs) - { - Api.ExecutionSettings executionSettings; - try - { - executionSettings = m_SettingsBuilder.BuildApiExecutionSettings(commandLineArgs); - if (executionSettings.targetPlatform.HasValue) - RemotePlayerLogController.instance.SetBuildTarget(executionSettings.targetPlatform.Value); - } - catch (SetupException exception) - { - HandleSetupException(exception); - return; - } - - try - { - Debug.Log("Executing tests with settings: " + ExecutionSettingsToString(executionSettings)); - m_TestRunnerApi.Execute(executionSettings); - } - catch (Exception exception) - { - m_LogException(exception); - m_ExitEditorApplication((int)ReturnCodes.RunError); - } - } - - internal ExecutionSettings BuildExecutionSettings(string[] commandLineArgs) - { - return m_SettingsBuilder.BuildExecutionSettings(commandLineArgs); - } - - internal enum ReturnCodes - { - Ok = 0, - Failed = 2, - RunError = 3, - PlatformNotFoundReturnCode = 4 - } - - internal void SetUpCallbacks(ExecutionSettings executionSettings) - { - RemotePlayerLogController.instance.SetLogsDirectory(executionSettings.DeviceLogsDirectory); - - var resultSavingCallback = ScriptableObject.CreateInstance(); - resultSavingCallback.m_ResultFilePath = executionSettings.TestResultsFile; - - var logSavingCallback = ScriptableObject.CreateInstance(); - - m_TestRunnerApi.RegisterCallbacks(resultSavingCallback); - m_TestRunnerApi.RegisterCallbacks(logSavingCallback); - m_TestRunnerApi.RegisterCallbacks(ScriptableObject.CreateInstance(), -10); - var timeoutCallbacks = ScriptableObject.CreateInstance(); - timeoutCallbacks.Init((action, time) => new DelayedCallback(action, time), m_LogErrorFormat, m_ExitEditorApplication); - m_TestRunnerApi.RegisterCallbacks(timeoutCallbacks); - } - - internal void ExitOnCompileErrors() - { - if (m_ScriptCompilationFailedCheck()) - { - var handling = s_ExceptionHandlingMapping.First(h => h.m_ExceptionType == SetupException.ExceptionType.ScriptCompilationFailed); - m_LogErrorFormat(handling.m_Message, new object[0]); - m_ExitEditorApplication(handling.m_ReturnCode); - } - } - - void HandleSetupException(SetupException exception) - { - ExceptionHandling handling = s_ExceptionHandlingMapping.FirstOrDefault(h => h.m_ExceptionType == exception.Type) ?? new ExceptionHandling(exception.Type, "Unknown command line test run error. " + exception.Type, ReturnCodes.RunError); - m_LogErrorFormat(handling.m_Message, exception.Details); - m_ExitEditorApplication(handling.m_ReturnCode); - } - - private class ExceptionHandling - { - internal SetupException.ExceptionType m_ExceptionType; - internal string m_Message; - internal int m_ReturnCode; - public ExceptionHandling(SetupException.ExceptionType exceptionType, string message, ReturnCodes returnCode) - { - m_ExceptionType = exceptionType; - m_Message = message; - m_ReturnCode = (int)returnCode; - } - } - - static ExceptionHandling[] s_ExceptionHandlingMapping = new[] - { - new ExceptionHandling(SetupException.ExceptionType.ScriptCompilationFailed, "Scripts had compilation errors.", ReturnCodes.RunError), - new ExceptionHandling(SetupException.ExceptionType.PlatformNotFound, "Test platform not found ({0}).", ReturnCodes.PlatformNotFoundReturnCode), - new ExceptionHandling(SetupException.ExceptionType.TestSettingsFileNotFound, "Test settings file not found at {0}.", ReturnCodes.RunError) - }; - - private static string ExecutionSettingsToString(Api.ExecutionSettings executionSettings) - { - if (executionSettings == null) - { - return "none"; - } - - if (executionSettings.filter == null) - { - return "no filter"; - } - - return "test mode = " + executionSettings.filter.testMode; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/Executer.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/Executer.cs.meta deleted file mode 100644 index e57a01038..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/Executer.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 083c6a3a5426382449369ddc12b691d8 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ExecutionSettings.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ExecutionSettings.cs deleted file mode 100644 index 3ff235639..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ExecutionSettings.cs +++ /dev/null @@ -1,11 +0,0 @@ -using System; - -namespace UnityEditor.TestTools.TestRunner.CommandLineTest -{ - [Serializable] - internal class ExecutionSettings - { - public string TestResultsFile; - public string DeviceLogsDirectory; - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ExecutionSettings.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ExecutionSettings.cs.meta deleted file mode 100644 index 35edc4c90..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ExecutionSettings.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: c3a75354f6ceac94ca15ca9d96593290 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ExitCallbacks.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ExitCallbacks.cs deleted file mode 100644 index d781d86ac..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ExitCallbacks.cs +++ /dev/null @@ -1,48 +0,0 @@ -using System; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine; - -namespace UnityEditor.TestTools.TestRunner.CommandLineTest -{ - [Serializable] - internal class ExitCallbacks : ScriptableObject, ICallbacks - { - private bool m_AnyTestsExecuted; - private bool m_RunFailed; - internal static bool preventExit; - - public void RunFinished(ITestResultAdaptor testResults) - { - if (preventExit) - { - return; - } - - if (!m_AnyTestsExecuted) - { - Debug.LogFormat(LogType.Warning, LogOption.NoStacktrace, null, "No tests were executed"); - } - EditorApplication.Exit(m_RunFailed ? (int)Executer.ReturnCodes.Failed : (int)Executer.ReturnCodes.Ok); - } - - public void TestStarted(ITestAdaptor test) - { - if (!test.IsSuite) - { - m_AnyTestsExecuted = true; - } - } - - public void TestFinished(ITestResultAdaptor result) - { - if (!result.Test.IsSuite && (result.TestStatus == TestStatus.Failed)) - { - m_RunFailed = true; - } - } - - public void RunStarted(ITestAdaptor testsToRun) - { - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ExitCallbacks.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ExitCallbacks.cs.meta deleted file mode 100644 index 62964631f..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ExitCallbacks.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 1adaa8dcc4fda3d4cb4d3c8e0cb65d12 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ISettingsBuilder.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ISettingsBuilder.cs deleted file mode 100644 index 557195d0e..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ISettingsBuilder.cs +++ /dev/null @@ -1,10 +0,0 @@ -using UnityEditor.TestTools.TestRunner.Api; - -namespace UnityEditor.TestTools.TestRunner.CommandLineTest -{ - interface ISettingsBuilder - { - Api.ExecutionSettings BuildApiExecutionSettings(string[] commandLineArgs); - ExecutionSettings BuildExecutionSettings(string[] commandLineArgs); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ISettingsBuilder.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ISettingsBuilder.cs.meta deleted file mode 100644 index cc0b2480f..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ISettingsBuilder.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 8a13cbeb2099aca47bb456f49845f86c -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/LogSavingCallbacks.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/LogSavingCallbacks.cs deleted file mode 100644 index 40a185f58..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/LogSavingCallbacks.cs +++ /dev/null @@ -1,29 +0,0 @@ -using System; -using UnityEditor.TestRunner.TestLaunchers; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine; - -namespace UnityEditor.TestTools.TestRunner.CommandLineTest -{ - [Serializable] - internal class LogSavingCallbacks : ScriptableObject, ICallbacks - { - public void RunStarted(ITestAdaptor testsToRun) - { - RemotePlayerLogController.instance.StartLogWriters(); - } - - public virtual void RunFinished(ITestResultAdaptor testResults) - { - RemotePlayerLogController.instance.StopLogWriters(); - } - - public void TestStarted(ITestAdaptor test) - { - } - - public void TestFinished(ITestResultAdaptor result) - { - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/LogSavingCallbacks.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/LogSavingCallbacks.cs.meta deleted file mode 100644 index c96817819..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/LogSavingCallbacks.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 8d20eedbe40f0ce41a4c4f633f225de8 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/LogWriter.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/LogWriter.cs deleted file mode 100644 index 5470fd7ea..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/LogWriter.cs +++ /dev/null @@ -1,92 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using UnityEditor.DeploymentTargets; -using UnityEditor.Utils; -using UnityEngine; - -namespace UnityEditor.TestTools.TestRunner.CommandLineTest -{ - internal class LogWriter : IDisposable - { - private string m_LogsDirectory; - private string m_DeviceID; - private Dictionary m_LogStreams; - private DeploymentTargetLogger m_Logger; - - internal LogWriter(string logsDirectory, string deviceID, DeploymentTargetLogger logger) - { - m_LogStreams = new Dictionary(); - m_Logger = logger; - m_LogsDirectory = logsDirectory; - m_DeviceID = deviceID; - - logger.logMessage += WriteLogToFile; - } - - private void WriteLogToFile(string id, string logLine) - { - StreamWriter logStream; - var streamExists = m_LogStreams.TryGetValue(id, out logStream); - if (!streamExists) - { - var filePath = GetLogFilePath(m_LogsDirectory, m_DeviceID, id); - logStream = CreateLogFile(filePath); - - m_LogStreams.Add(id, logStream); - } - - try - { - if (logLine != null) - logStream.WriteLine(logLine); - } - catch (Exception ex) - { - Debug.LogError($"Writing {id} log failed."); - Debug.LogException(ex); - } - } - - public void Stop() - { - m_Logger.Stop(); - foreach (var logStream in m_LogStreams) - { - logStream.Value.Close(); - } - } - - public void Dispose() - { - Stop(); - } - - private StreamWriter CreateLogFile(string path) - { - Debug.LogFormat(LogType.Log, LogOption.NoStacktrace, null, "Creating {0} device log: {1}", m_DeviceID, path); - StreamWriter streamWriter = null; - try - { - if (!Directory.Exists(path)) - Directory.CreateDirectory(Path.GetDirectoryName(path)); - - streamWriter = File.CreateText(path); - } - catch (Exception ex) - { - Debug.LogError($"Creating device log {path} file failed."); - Debug.LogException(ex); - } - - return streamWriter; - } - - private string GetLogFilePath(string lgosDirectory, string deviceID, string logID) - { - var fileName = "Device-" + deviceID + "-" + logID + ".txt"; - fileName = string.Join("_", fileName.Split(Path.GetInvalidFileNameChars())); - return Paths.Combine(lgosDirectory, fileName); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/LogWriter.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/LogWriter.cs.meta deleted file mode 100644 index 56872b9f6..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/LogWriter.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 05778dd1de4433d418793b6f3d3c18cf -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ResultsSavingCallbacks.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ResultsSavingCallbacks.cs deleted file mode 100644 index a3837bf99..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ResultsSavingCallbacks.cs +++ /dev/null @@ -1,50 +0,0 @@ -using System; -using System.IO; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEditor.Utils; -using UnityEngine; - -namespace UnityEditor.TestTools.TestRunner.CommandLineTest -{ - [Serializable] - internal class ResultsSavingCallbacks : ScriptableObject, ICallbacks - { - [SerializeField] - public string m_ResultFilePath; - - public ResultsSavingCallbacks() - { - this.m_ResultFilePath = GetDefaultResultFilePath(); - } - - public void RunStarted(ITestAdaptor testsToRun) - { - } - - public virtual void RunFinished(ITestResultAdaptor testResults) - { - if (string.IsNullOrEmpty(m_ResultFilePath)) - { - m_ResultFilePath = GetDefaultResultFilePath(); - } - - var resultWriter = new ResultsWriter(); - resultWriter.WriteResultToFile(testResults, m_ResultFilePath); - } - - public void TestStarted(ITestAdaptor test) - { - } - - public void TestFinished(ITestResultAdaptor result) - { - } - - private static string GetDefaultResultFilePath() - { - var fileName = "TestResults-" + DateTime.Now.Ticks + ".xml"; - var projectPath = Directory.GetCurrentDirectory(); - return Paths.Combine(projectPath, fileName); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ResultsSavingCallbacks.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ResultsSavingCallbacks.cs.meta deleted file mode 100644 index ca06f3a35..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ResultsSavingCallbacks.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: ef563c5a6ecf64d4193dc144cb7d472a -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ResultsWriter.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ResultsWriter.cs deleted file mode 100644 index 073d2ecd6..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ResultsWriter.cs +++ /dev/null @@ -1,99 +0,0 @@ -using System; -using System.IO; -using System.Xml; -using NUnit.Framework.Interfaces; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine; - -namespace UnityEditor.TestTools.TestRunner.CommandLineTest -{ - internal class ResultsWriter - { - private const string k_nUnitVersion = "3.5.0.0"; - - private const string k_TestRunNode = "test-run"; - private const string k_Id = "id"; - private const string k_Testcasecount = "testcasecount"; - private const string k_Result = "result"; - private const string k_Total = "total"; - private const string k_Passed = "passed"; - private const string k_Failed = "failed"; - private const string k_Inconclusive = "inconclusive"; - private const string k_Skipped = "skipped"; - private const string k_Asserts = "asserts"; - private const string k_EngineVersion = "engine-version"; - private const string k_ClrVersion = "clr-version"; - private const string k_StartTime = "start-time"; - private const string k_EndTime = "end-time"; - private const string k_Duration = "duration"; - - private const string k_TimeFormat = "u"; - - public void WriteResultToFile(ITestResultAdaptor result, string filePath) - { - Debug.LogFormat(LogType.Log, LogOption.NoStacktrace, null, "Saving results to: {0}", filePath); - - try - { - if (!Directory.Exists(filePath)) - { - CreateDirectory(filePath); - } - - using (var fileStream = File.CreateText(filePath)) - { - WriteResultToStream(result, fileStream); - } - } - catch (Exception ex) - { - Debug.LogError("Saving result file failed."); - Debug.LogException(ex); - } - } - - void CreateDirectory(string filePath) - { - Directory.CreateDirectory(Path.GetDirectoryName(filePath)); - } - - public void WriteResultToStream(ITestResultAdaptor result, StreamWriter streamWriter, XmlWriterSettings settings = null) - { - settings = settings ?? new XmlWriterSettings(); - settings.Indent = true; - settings.NewLineOnAttributes = false; - - using (var xmlWriter = XmlWriter.Create(streamWriter, settings)) - { - WriteResultsToXml(result, xmlWriter); - } - } - - void WriteResultsToXml(ITestResultAdaptor result, XmlWriter xmlWriter) - { - // XML format as specified at https://github.com/nunit/docs/wiki/Test-Result-XML-Format - - var testRunNode = new TNode(k_TestRunNode); - - testRunNode.AddAttribute(k_Id, "2"); - testRunNode.AddAttribute(k_Testcasecount, (result.PassCount + result.FailCount + result.SkipCount + result.InconclusiveCount).ToString()); - testRunNode.AddAttribute(k_Result, result.ResultState.ToString()); - testRunNode.AddAttribute(k_Total, (result.PassCount + result.FailCount + result.SkipCount + result.InconclusiveCount).ToString()); - testRunNode.AddAttribute(k_Passed, result.PassCount.ToString()); - testRunNode.AddAttribute(k_Failed, result.FailCount.ToString()); - testRunNode.AddAttribute(k_Inconclusive, result.InconclusiveCount.ToString()); - testRunNode.AddAttribute(k_Skipped, result.SkipCount.ToString()); - testRunNode.AddAttribute(k_Asserts, result.AssertCount.ToString()); - testRunNode.AddAttribute(k_EngineVersion, k_nUnitVersion); - testRunNode.AddAttribute(k_ClrVersion, Environment.Version.ToString()); - testRunNode.AddAttribute(k_StartTime, result.StartTime.ToString(k_TimeFormat)); - testRunNode.AddAttribute(k_EndTime, result.EndTime.ToString(k_TimeFormat)); - testRunNode.AddAttribute(k_Duration, result.Duration.ToString()); - - var resultNode = result.ToXml(); - testRunNode.ChildNodes.Add(resultNode); - - testRunNode.WriteTo(xmlWriter); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ResultsWriter.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ResultsWriter.cs.meta deleted file mode 100644 index 074fe65c5..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/ResultsWriter.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 29d603e0a726a9043b3503112271844a -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/RunData.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/RunData.cs deleted file mode 100644 index 6a469a7b6..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/RunData.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace UnityEditor.TestTools.TestRunner.CommandLineTest -{ - internal class RunData : ScriptableSingleton - { - public bool isRunning; - public ExecutionSettings executionSettings; - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/RunData.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/RunData.cs.meta deleted file mode 100644 index 4cfe30e6b..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/RunData.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 3f8c1075884df0249b80e23a0598f9c1 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/RunSettings.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/RunSettings.cs deleted file mode 100644 index 9b914c75c..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/RunSettings.cs +++ /dev/null @@ -1,29 +0,0 @@ -using UnityEditor.TestTools.TestRunner.Api; - -namespace UnityEditor.TestTools.TestRunner.CommandLineTest -{ - internal class RunSettings : ITestRunSettings - { - private ITestSettings m_TestSettings; - public RunSettings(ITestSettings testSettings) - { - this.m_TestSettings = testSettings; - } - - public void Apply() - { - if (m_TestSettings != null) - { - m_TestSettings.SetupProjectParameters(); - } - } - - public void Dispose() - { - if (m_TestSettings != null) - { - m_TestSettings.Dispose(); - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/RunSettings.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/RunSettings.cs.meta deleted file mode 100644 index 0e241ba8c..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/RunSettings.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 59d3f5586b341a74c84c8f72144a4568 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/SettingsBuilder.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/SettingsBuilder.cs deleted file mode 100644 index ef7500c69..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/SettingsBuilder.cs +++ /dev/null @@ -1,173 +0,0 @@ -using System; -using System.IO; -using UnityEditor.TestRunner.CommandLineParser; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine.TestTools.TestRunner.GUI; - -namespace UnityEditor.TestTools.TestRunner.CommandLineTest -{ - internal class SettingsBuilder : ISettingsBuilder - { - private ITestSettingsDeserializer m_TestSettingsDeserializer; - private Action m_LogAction; - private Action m_LogWarningAction; - private Func m_FileExistsCheck; - private Func m_ScriptCompilationFailedCheck; - public SettingsBuilder(ITestSettingsDeserializer testSettingsDeserializer, Action logAction, Action logWarningAction, Func fileExistsCheck, Func scriptCompilationFailedCheck) - { - m_LogAction = logAction; - m_LogWarningAction = logWarningAction; - m_FileExistsCheck = fileExistsCheck; - m_ScriptCompilationFailedCheck = scriptCompilationFailedCheck; - m_TestSettingsDeserializer = testSettingsDeserializer; - } - - public Api.ExecutionSettings BuildApiExecutionSettings(string[] commandLineArgs) - { - var quit = false; - string testPlatform = TestMode.EditMode.ToString(); - string[] testFilters = null; - string[] testCategories = null; - string testSettingsFilePath = null; - int testRepetitions = 1; - - var optionSet = new CommandLineOptionSet( - new CommandLineOption("quit", () => { quit = true; }), - new CommandLineOption("testPlatform", platform => { testPlatform = platform; }), - new CommandLineOption("editorTestsFilter", filters => { testFilters = filters; }), - new CommandLineOption("testFilter", filters => { testFilters = filters; }), - new CommandLineOption("editorTestsCategories", catagories => { testCategories = catagories; }), - new CommandLineOption("testCategory", catagories => { testCategories = catagories; }), - new CommandLineOption("testSettingsFile", settingsFilePath => { testSettingsFilePath = settingsFilePath; }), - new CommandLineOption("testRepetitions", reps => { testRepetitions = int.Parse(reps); }) - ); - optionSet.Parse(commandLineArgs); - - DisplayQuitWarningIfQuitIsGiven(quit); - - CheckForScriptCompilationErrors(); - - LogParametersForRun(testPlatform, testFilters, testCategories, testSettingsFilePath); - - var testSettings = GetTestSettings(testSettingsFilePath); - - var filter = new Filter() - { - groupNames = testFilters, - categoryNames = testCategories - }; - - var buildTarget = SetFilterAndGetBuildTarget(testPlatform, filter); - - RerunCallbackData.instance.runFilter = new TestRunnerFilter() - { - categoryNames = filter.categoryNames, - groupNames = filter.groupNames, - testRepetitions = testRepetitions - }; - - RerunCallbackData.instance.testMode = filter.testMode; - - return new Api.ExecutionSettings() - { - filter = filter, - overloadTestRunSettings = new RunSettings(testSettings), - targetPlatform = buildTarget - }; - } - - public ExecutionSettings BuildExecutionSettings(string[] commandLineArgs) - { - string resultFilePath = null; - string deviceLogsDirectory = null; - - var optionSet = new CommandLineOptionSet( - new CommandLineOption("editorTestsResultFile", filePath => { resultFilePath = filePath; }), - new CommandLineOption("testResults", filePath => { resultFilePath = filePath; }), - new CommandLineOption("deviceLogs", dirPath => { deviceLogsDirectory = dirPath; }) - ); - optionSet.Parse(commandLineArgs); - - return new ExecutionSettings() - { - TestResultsFile = resultFilePath, - DeviceLogsDirectory = deviceLogsDirectory - }; - } - - void DisplayQuitWarningIfQuitIsGiven(bool quitIsGiven) - { - if (quitIsGiven) - { - m_LogWarningAction("Running tests from command line arguments will not work when \"quit\" is specified."); - } - } - - void CheckForScriptCompilationErrors() - { - if (m_ScriptCompilationFailedCheck()) - { - throw new SetupException(SetupException.ExceptionType.ScriptCompilationFailed); - } - } - - void LogParametersForRun(string testPlatform, string[] testFilters, string[] testCategories, string testSettingsFilePath) - { - m_LogAction("Running tests for " + testPlatform); - if (testFilters != null && testFilters.Length > 0) - { - m_LogAction("With test filter: " + string.Join(", ", testFilters)); - } - if (testCategories != null && testCategories.Length > 0) - { - m_LogAction("With test categories: " + string.Join(", ", testCategories)); - } - if (!string.IsNullOrEmpty(testSettingsFilePath)) - { - m_LogAction("With test settings file: " + testSettingsFilePath); - } - } - - ITestSettings GetTestSettings(string testSettingsFilePath) - { - ITestSettings testSettings = null; - if (!string.IsNullOrEmpty(testSettingsFilePath)) - { - if (!m_FileExistsCheck(testSettingsFilePath)) - { - throw new SetupException(SetupException.ExceptionType.TestSettingsFileNotFound, testSettingsFilePath); - } - - testSettings = m_TestSettingsDeserializer.GetSettingsFromJsonFile(testSettingsFilePath); - } - return testSettings; - } - - static BuildTarget? SetFilterAndGetBuildTarget(string testPlatform, Filter filter) - { - BuildTarget? buildTarget = null; - if (testPlatform.ToLower() == "editmode") - { - filter.testMode = TestMode.EditMode; - } - else if (testPlatform.ToLower() == "playmode") - { - filter.testMode = TestMode.PlayMode; - } - else - { - try - { - buildTarget = (BuildTarget)Enum.Parse(typeof(BuildTarget), testPlatform, true); - - filter.testMode = TestMode.PlayMode; - } - catch (ArgumentException) - { - throw new SetupException(SetupException.ExceptionType.PlatformNotFound, testPlatform); - } - } - return buildTarget; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/SettingsBuilder.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/SettingsBuilder.cs.meta deleted file mode 100644 index 1e2f8c93d..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/SettingsBuilder.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: b7468a027a77337478e133b40b42b4f9 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/SetupException.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/SetupException.cs deleted file mode 100644 index 33377134f..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/SetupException.cs +++ /dev/null @@ -1,23 +0,0 @@ -using System; - -namespace UnityEditor.TestTools.TestRunner.CommandLineTest -{ - internal class SetupException : Exception - { - public ExceptionType Type { get; } - public object[] Details { get; } - - public SetupException(ExceptionType type, params object[] details) - { - Type = type; - Details = details; - } - - public enum ExceptionType - { - ScriptCompilationFailed, - PlatformNotFound, - TestSettingsFileNotFound, - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/SetupException.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/SetupException.cs.meta deleted file mode 100644 index bdb235cf0..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/SetupException.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 63572993f2104574099a48392460b211 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/TestStarter.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/TestStarter.cs deleted file mode 100644 index bced72749..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/TestStarter.cs +++ /dev/null @@ -1,80 +0,0 @@ -using System; -using System.IO; -using UnityEditor.TestRunner.CommandLineParser; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine; - -namespace UnityEditor.TestTools.TestRunner.CommandLineTest -{ - [InitializeOnLoad] - static class TestStarter - { - static TestStarter() - { - if (!ShouldRunTests()) - { - return; - } - - if (EditorApplication.isCompiling) - { - return; - } - - executer.ExitOnCompileErrors(); - - if (RunData.instance.isRunning) - { - executer.SetUpCallbacks(RunData.instance.executionSettings); - return; - } - - EditorApplication.update += UpdateWatch; - } - - static void UpdateWatch() - { - EditorApplication.update -= UpdateWatch; - - if (RunData.instance.isRunning) - { - return; - } - - RunData.instance.isRunning = true; - var commandLineArgs = Environment.GetCommandLineArgs(); - RunData.instance.executionSettings = executer.BuildExecutionSettings(commandLineArgs); - executer.SetUpCallbacks(RunData.instance.executionSettings); - executer.InitializeAndExecuteRun(commandLineArgs); - } - - static bool ShouldRunTests() - { - var shouldRunTests = false; - var optionSet = new CommandLineOptionSet( - new CommandLineOption("runTests", () => { shouldRunTests = true; }), - new CommandLineOption("runEditorTests", () => { shouldRunTests = true; }) - ); - optionSet.Parse(Environment.GetCommandLineArgs()); - return shouldRunTests; - } - - static Executer s_Executer; - - static Executer executer - { - get - { - if (s_Executer == null) - { - Func compilationCheck = () => EditorUtility.scriptCompilationFailed; - Action actionLogger = (string msg) => { Debug.LogFormat(LogType.Log, LogOption.NoStacktrace, null, msg); }; - var apiSettingsBuilder = new SettingsBuilder(new TestSettingsDeserializer(() => new TestSettings()), actionLogger, Debug.LogWarning, File.Exists, compilationCheck); - s_Executer = new Executer(ScriptableObject.CreateInstance(), apiSettingsBuilder, Debug.LogErrorFormat, Debug.LogException, EditorApplication.Exit, compilationCheck); - } - - return s_Executer; - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/TestStarter.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/TestStarter.cs.meta deleted file mode 100644 index 4d5dfdc02..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/TestStarter.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 4d616d1a494edd144b262cf6cd5e5fda -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/TimeoutCallbacks.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/TimeoutCallbacks.cs deleted file mode 100644 index 8e5099342..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/TimeoutCallbacks.cs +++ /dev/null @@ -1,74 +0,0 @@ -using System; -using UnityEditor.TestRunner.TestLaunchers; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine; - -namespace UnityEditor.TestTools.TestRunner.CommandLineTest -{ - internal class TimeoutCallbacks : ScriptableObject, ICallbacks - { - internal const int k_DefaultTimeout = 600; - - private Func m_DelayedCallbackFactory; - private Action m_LogErrorFormat; - private Action m_ExitApplication; - - private double m_CurrentTimeout; - private IDelayedCallback m_TimeoutCallback; - - public void Init(Func delayedCallbackFactory, Action logErrorFormat, Action exitApplication) - { - m_DelayedCallbackFactory = delayedCallbackFactory; - m_LogErrorFormat = logErrorFormat; - m_ExitApplication = exitApplication; - } - - public void RunFinished(ITestResultAdaptor result) - { - if (m_TimeoutCallback != null) - { - m_TimeoutCallback.Clear(); - } - } - - public void RunStarted(ITestAdaptor testsToRun) - { - ResetToTimeout(k_DefaultTimeout); - } - - public void TestFinished(ITestResultAdaptor result) - { - ResetToTimeout(k_DefaultTimeout); - } - - public void TestStarted(ITestAdaptor test) - { - ResetToTimeout(k_DefaultTimeout + test.TestCaseTimeout / 1000); - } - - private void ResetToTimeout(double timeoutValue) - { - if (m_TimeoutCallback != null && Math.Abs(m_CurrentTimeout - timeoutValue) < 0.1f) - { - m_TimeoutCallback.Reset(); - } - else - { - if (m_TimeoutCallback != null) - { - m_TimeoutCallback.Clear(); - } - - m_TimeoutCallback = m_DelayedCallbackFactory(TimeoutReached, timeoutValue); - m_CurrentTimeout = timeoutValue; - } - } - - private void TimeoutReached() - { - RemotePlayerLogController.instance.StopLogWriters(); - m_LogErrorFormat("Test execution timed out.", new object[0]); - m_ExitApplication((int)Executer.ReturnCodes.RunError); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/TimeoutCallbacks.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/TimeoutCallbacks.cs.meta deleted file mode 100644 index 7f2a436ea..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/CommandLineTest/TimeoutCallbacks.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 4dc5887d05b52fd4fb5f52909d09ffe9 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI.meta deleted file mode 100644 index bc9308a4a..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 7e609b27ad2caa14c83dd9951b6c13c6 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/AssetsDatabaseHelper.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/AssetsDatabaseHelper.cs deleted file mode 100644 index 0016142ec..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/AssetsDatabaseHelper.cs +++ /dev/null @@ -1,11 +0,0 @@ -namespace UnityEditor.TestTools.TestRunner.GUI -{ - internal class AssetsDatabaseHelper : IAssetsDatabaseHelper - { - public void OpenAssetInItsDefaultExternalEditor(string assetPath, int line) - { - var asset = AssetDatabase.LoadMainAssetAtPath(assetPath); - AssetDatabase.OpenAsset(asset, line); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/AssetsDatabaseHelper.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/AssetsDatabaseHelper.cs.meta deleted file mode 100644 index 4fad1fca3..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/AssetsDatabaseHelper.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 740b3785866edda4b8d1e1a05570a5f8 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/GuiHelper.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/GuiHelper.cs deleted file mode 100644 index 26aba74ec..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/GuiHelper.cs +++ /dev/null @@ -1,101 +0,0 @@ -using System; -using System.IO; -using System.Linq; -using System.Reflection; -using System.Text.RegularExpressions; -using UnityEditor.Utils; -using UnityEngine; - -namespace UnityEditor.TestTools.TestRunner.GUI -{ - internal class GuiHelper : IGuiHelper - { - public GuiHelper(IMonoCecilHelper monoCecilHelper, IAssetsDatabaseHelper assetsDatabaseHelper) - { - MonoCecilHelper = monoCecilHelper; - AssetsDatabaseHelper = assetsDatabaseHelper; - } - - protected IMonoCecilHelper MonoCecilHelper { get; private set; } - public IAssetsDatabaseHelper AssetsDatabaseHelper { get; private set; } - - public void OpenScriptInExternalEditor(Type type, MethodInfo method) - { - var fileOpenInfo = GetFileOpenInfo(type, method); - - if (string.IsNullOrEmpty(fileOpenInfo.FilePath)) - { - Debug.LogWarning("Failed to open test method source code in external editor. Inconsistent filename and yield return operator in target method."); - - return; - } - - if (fileOpenInfo.LineNumber == 1) - { - Debug.LogWarning("Failed to get a line number for unity test method. So please find it in opened file in external editor."); - } - - AssetsDatabaseHelper.OpenAssetInItsDefaultExternalEditor(fileOpenInfo.FilePath, fileOpenInfo.LineNumber); - } - - public IFileOpenInfo GetFileOpenInfo(Type type, MethodInfo method) - { - const string fileExtension = ".cs"; - - var fileOpenInfo = MonoCecilHelper.TryGetCecilFileOpenInfo(type, method); - if (string.IsNullOrEmpty(fileOpenInfo.FilePath)) - { - var dirPath = Paths.UnifyDirectorySeparator(Application.dataPath); - var allCsFiles = Directory.GetFiles(dirPath, string.Format("*{0}", fileExtension), SearchOption.AllDirectories) - .Select(Paths.UnifyDirectorySeparator); - - var fileName = allCsFiles.FirstOrDefault(x => - x.Split(Path.DirectorySeparatorChar).Last().Equals(string.Concat(type.Name, fileExtension))); - - fileOpenInfo.FilePath = fileName ?? string.Empty; - } - - fileOpenInfo.FilePath = FilePathToAssetsRelativeAndUnified(fileOpenInfo.FilePath); - - return fileOpenInfo; - } - - public string FilePathToAssetsRelativeAndUnified(string filePath) - { - if (string.IsNullOrEmpty(filePath)) - return string.Empty; - - filePath = Paths.UnifyDirectorySeparator(filePath); - var length = Paths.UnifyDirectorySeparator(Application.dataPath).Length - "Assets".Length; - - return filePath.Substring(length); - } - - public bool OpenScriptInExternalEditor(string stacktrace) - { - if (string.IsNullOrEmpty(stacktrace)) - return false; - - var regex = new Regex("in (?.*):{1}(?[0-9]+)"); - - var matchingLines = stacktrace.Split(new[] { Environment.NewLine }, StringSplitOptions.RemoveEmptyEntries).Where(x => regex.IsMatch(x)).ToList(); - if (!matchingLines.Any()) - return false; - - var fileOpenInfo = matchingLines - .Select(x => regex.Match(x)) - .Select(x => - new FileOpenInfo - { - FilePath = x.Groups["path"].Value, - LineNumber = int.Parse(x.Groups["line"].Value) - }) - .First(openInfo => !string.IsNullOrEmpty(openInfo.FilePath) && File.Exists(openInfo.FilePath)); - - var filePath = FilePathToAssetsRelativeAndUnified(fileOpenInfo.FilePath); - AssetsDatabaseHelper.OpenAssetInItsDefaultExternalEditor(filePath, fileOpenInfo.LineNumber); - - return true; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/GuiHelper.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/GuiHelper.cs.meta deleted file mode 100644 index a1512d06b..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/GuiHelper.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: d0138170d24533e47b8e6c250c6d7fbc -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/IAssetsDatabaseHelper.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/IAssetsDatabaseHelper.cs deleted file mode 100644 index 3e26c53ad..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/IAssetsDatabaseHelper.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace UnityEditor.TestTools.TestRunner.GUI -{ - internal interface IAssetsDatabaseHelper - { - void OpenAssetInItsDefaultExternalEditor(string assetPath, int line); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/IAssetsDatabaseHelper.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/IAssetsDatabaseHelper.cs.meta deleted file mode 100644 index 622fe68d4..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/IAssetsDatabaseHelper.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 208e46d59ff6e304db0318377d20f5a1 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/IGuiHelper.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/IGuiHelper.cs deleted file mode 100644 index a87fb8dfd..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/IGuiHelper.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using System.Reflection; - -namespace UnityEditor.TestTools.TestRunner.GUI -{ - internal interface IGuiHelper - { - bool OpenScriptInExternalEditor(string stacktrace); - void OpenScriptInExternalEditor(Type type, MethodInfo method); - IFileOpenInfo GetFileOpenInfo(Type type, MethodInfo method); - string FilePathToAssetsRelativeAndUnified(string filePath); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/IGuiHelper.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/IGuiHelper.cs.meta deleted file mode 100644 index 9c6e266b3..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/IGuiHelper.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: fd57cf917f61bbb42b8f030436426ddd -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder.meta deleted file mode 100644 index e68292376..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 07ea0326ed848fb4489187cb58f96113 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder/RenderingOptions.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder/RenderingOptions.cs deleted file mode 100644 index 34118d650..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder/RenderingOptions.cs +++ /dev/null @@ -1,12 +0,0 @@ -namespace UnityEditor.TestTools.TestRunner.GUI -{ - internal class RenderingOptions - { - public string nameFilter; - public bool showSucceeded; - public bool showFailed; - public bool showIgnored; - public bool showNotRunned; - public string[] categories; - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder/RenderingOptions.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder/RenderingOptions.cs.meta deleted file mode 100644 index 57e67487d..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder/RenderingOptions.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 87357ff0dec4ef348a295235835c6ee4 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder/ResultSummarizer.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder/ResultSummarizer.cs deleted file mode 100644 index cee81dabf..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder/ResultSummarizer.cs +++ /dev/null @@ -1,175 +0,0 @@ -// **************************************************************** -// Based on nUnit 2.6.2 (http://www.nunit.org/) -// **************************************************************** - -using System; -using System.Collections.Generic; -using UnityEngine.TestTools.TestRunner.GUI; - -namespace UnityEditor.TestTools.TestRunner.GUI -{ - /// - /// Summary description for ResultSummarizer. - /// - internal class ResultSummarizer - { - private int m_ErrorCount = -1; - private int m_FailureCount; - private int m_IgnoreCount = -1; - private int m_InconclusiveCount = -1; - private int m_NotRunnable = -1; - private int m_ResultCount; - private int m_SkipCount; - private int m_SuccessCount; - private int m_TestsRun; - - private TimeSpan m_Duration = TimeSpan.FromSeconds(0); - - public ResultSummarizer(IEnumerable results) - { - foreach (var result in results) - Summarize(result); - } - - public bool success - { - get { return m_FailureCount == 0; } - } - - /// - /// Returns the number of test cases for which results - /// have been summarized. Any tests excluded by use of - /// Category or Explicit attributes are not counted. - /// - public int ResultCount - { - get { return m_ResultCount; } - } - - /// - /// Returns the number of test cases actually run, which - /// is the same as ResultCount, less any Skipped, Ignored - /// or NonRunnable tests. - /// - public int TestsRun - { - get { return m_TestsRun; } - } - - /// - /// Returns the number of tests that passed - /// - public int Passed - { - get { return m_SuccessCount; } - } - - /// - /// Returns the number of test cases that had an error. - /// - public int errors - { - get { return m_ErrorCount; } - } - - /// - /// Returns the number of test cases that failed. - /// - public int failures - { - get { return m_FailureCount; } - } - - /// - /// Returns the number of test cases that failed. - /// - public int inconclusive - { - get { return m_InconclusiveCount; } - } - - /// - /// Returns the number of test cases that were not runnable - /// due to errors in the signature of the class or method. - /// Such tests are also counted as Errors. - /// - public int notRunnable - { - get { return m_NotRunnable; } - } - - /// - /// Returns the number of test cases that were skipped. - /// - public int Skipped - { - get { return m_SkipCount; } - } - - public int ignored - { - get { return m_IgnoreCount; } - } - - public double duration - { - get { return m_Duration.TotalSeconds; } - } - - public int testsNotRun - { - get { return m_SkipCount + m_IgnoreCount + m_NotRunnable; } - } - - public void Summarize(TestRunnerResult result) - { - m_Duration += TimeSpan.FromSeconds(result.duration); - m_ResultCount++; - - if (result.resultStatus != TestRunnerResult.ResultStatus.NotRun) - { - //TODO implement missing features - // if(result.IsIgnored) - // { - // m_IgnoreCount++; - // return; - // } - - m_SkipCount++; - return; - } - - switch (result.resultStatus) - { - case TestRunnerResult.ResultStatus.Passed: - m_SuccessCount++; - m_TestsRun++; - break; - case TestRunnerResult.ResultStatus.Failed: - m_FailureCount++; - m_TestsRun++; - break; - //TODO implement missing features - // case TestResultState.Error: - // case TestResultState.Cancelled: - // m_ErrorCount++; - // m_TestsRun++; - // break; - // case TestResultState.Inconclusive: - // m_InconclusiveCount++; - // m_TestsRun++; - // break; - // case TestResultState.NotRunnable: - // m_NotRunnable++; - // // errorCount++; - // break; - // case TestResultState.Ignored: - // m_IgnoreCount++; - // break; - default: - m_SkipCount++; - break; - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder/ResultSummarizer.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder/ResultSummarizer.cs.meta deleted file mode 100644 index bc4b465e5..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder/ResultSummarizer.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 95a2914724952ef40bb590d0607fc878 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder/TestFilterSettings.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder/TestFilterSettings.cs deleted file mode 100644 index 576a685b6..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder/TestFilterSettings.cs +++ /dev/null @@ -1,105 +0,0 @@ -using System.Collections.Generic; -using System.Linq; -using UnityEngine; -using UnityEngine.TestTools.TestRunner.GUI; - -namespace UnityEditor.TestTools.TestRunner.GUI -{ - internal class TestFilterSettings - { - public bool showSucceeded; - public bool showFailed; - public bool showIgnored; - public bool showNotRun; - - public string filterByName; - public int filterByCategory; - - private GUIContent m_SucceededBtn; - private GUIContent m_FailedBtn; - private GUIContent m_IgnoredBtn; - private GUIContent m_NotRunBtn; - - public string[] availableCategories; - - private readonly string m_PrefsKey; - - public TestFilterSettings(string prefsKey) - { - availableCategories = null; - m_PrefsKey = prefsKey; - Load(); - UpdateCounters(Enumerable.Empty()); - } - - public void Load() - { - showSucceeded = EditorPrefs.GetBool(m_PrefsKey + ".ShowSucceeded", true); - showFailed = EditorPrefs.GetBool(m_PrefsKey + ".ShowFailed", true); - showIgnored = EditorPrefs.GetBool(m_PrefsKey + ".ShowIgnored", true); - showNotRun = EditorPrefs.GetBool(m_PrefsKey + ".ShowNotRun", true); - filterByName = EditorPrefs.GetString(m_PrefsKey + ".FilterByName", string.Empty); - filterByCategory = EditorPrefs.GetInt(m_PrefsKey + ".FilterByCategory", 0); - } - - public void Save() - { - EditorPrefs.SetBool(m_PrefsKey + ".ShowSucceeded", showSucceeded); - EditorPrefs.SetBool(m_PrefsKey + ".ShowFailed", showFailed); - EditorPrefs.SetBool(m_PrefsKey + ".ShowIgnored", showIgnored); - EditorPrefs.SetBool(m_PrefsKey + ".ShowNotRun", showNotRun); - EditorPrefs.SetString(m_PrefsKey + ".FilterByName", filterByName); - EditorPrefs.SetInt(m_PrefsKey + ".FilterByCategory", filterByCategory); - } - - public void UpdateCounters(IEnumerable results) - { - var summary = new ResultSummarizer(results); - - m_SucceededBtn = new GUIContent(summary.Passed.ToString(), Icons.s_SuccessImg, "Show tests that succeeded"); - m_FailedBtn = new GUIContent((summary.errors + summary.failures + summary.inconclusive).ToString(), Icons.s_FailImg, "Show tests that failed"); - m_IgnoredBtn = new GUIContent((summary.ignored + summary.notRunnable).ToString(), Icons.s_IgnoreImg, "Show tests that are ignored"); - m_NotRunBtn = new GUIContent((summary.testsNotRun - summary.ignored - summary.notRunnable).ToString(), Icons.s_UnknownImg, "Show tests that didn't run"); - } - - public string[] GetSelectedCategories() - { - if (availableCategories == null) - return new string[0]; - - return availableCategories.Where((c, i) => (filterByCategory & (1 << i)) != 0).ToArray(); - } - - public void OnGUI() - { - EditorGUI.BeginChangeCheck(); - - filterByName = GUILayout.TextField(filterByName, "ToolbarSeachTextField", GUILayout.MinWidth(100), GUILayout.MaxWidth(250), GUILayout.ExpandWidth(true)); - if (GUILayout.Button(GUIContent.none, string.IsNullOrEmpty(filterByName) ? "ToolbarSeachCancelButtonEmpty" : "ToolbarSeachCancelButton")) - filterByName = string.Empty; - - if (availableCategories != null && availableCategories.Length > 0) - filterByCategory = EditorGUILayout.MaskField(filterByCategory, availableCategories, EditorStyles.toolbarDropDown, GUILayout.MaxWidth(90)); - - showSucceeded = GUILayout.Toggle(showSucceeded, m_SucceededBtn, EditorStyles.toolbarButton); - showFailed = GUILayout.Toggle(showFailed, m_FailedBtn, EditorStyles.toolbarButton); - showIgnored = GUILayout.Toggle(showIgnored, m_IgnoredBtn, EditorStyles.toolbarButton); - showNotRun = GUILayout.Toggle(showNotRun, m_NotRunBtn, EditorStyles.toolbarButton); - - if (EditorGUI.EndChangeCheck()) - Save(); - } - - public RenderingOptions BuildRenderingOptions() - { - var options = new RenderingOptions(); - options.showSucceeded = showSucceeded; - options.showFailed = showFailed; - options.showIgnored = showIgnored; - options.showNotRunned = showNotRun; - options.nameFilter = filterByName; - options.categories = GetSelectedCategories(); - return options; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder/TestFilterSettings.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder/TestFilterSettings.cs.meta deleted file mode 100644 index af8b799a8..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder/TestFilterSettings.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 046c3854296c5ec48bac50da6ca248ec -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder/TestTreeViewBuilder.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder/TestTreeViewBuilder.cs deleted file mode 100644 index 86d42f3a9..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder/TestTreeViewBuilder.cs +++ /dev/null @@ -1,111 +0,0 @@ -using System.Collections.Generic; -using System.Linq; -using UnityEditor.IMGUI.Controls; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine.TestRunner.NUnitExtensions; -using UnityEngine.TestTools.TestRunner.GUI; -using UnityEngine.TestRunner.NUnitExtensions.Filters; - -namespace UnityEditor.TestTools.TestRunner.GUI -{ - internal class TestTreeViewBuilder - { - public List results = new List(); - private readonly List m_OldTestResultList; - private readonly TestRunnerUIFilter m_UIFilter; - private readonly ITestAdaptor m_TestListRoot; - - private readonly List m_AvailableCategories = new List(); - - public string[] AvailableCategories - { - get { return m_AvailableCategories.Distinct().OrderBy(a => a).ToArray(); } - } - - public TestTreeViewBuilder(ITestAdaptor tests, List oldTestResultResults, TestRunnerUIFilter uiFilter) - { - m_AvailableCategories.Add(CategoryFilterExtended.k_DefaultCategory); - m_OldTestResultList = oldTestResultResults; - m_TestListRoot = tests; - m_UIFilter = uiFilter; - } - - public TreeViewItem BuildTreeView(TestFilterSettings settings, bool sceneBased, string sceneName) - { - var rootItem = new TreeViewItem(int.MaxValue, 0, null, "Invisible Root Item"); - ParseTestTree(0, rootItem, m_TestListRoot); - return rootItem; - } - - private bool IsFilteredOutByUIFilter(ITestAdaptor test, TestRunnerResult result) - { - if (m_UIFilter.PassedHidden && result.resultStatus == TestRunnerResult.ResultStatus.Passed) - return true; - if (m_UIFilter.FailedHidden && (result.resultStatus == TestRunnerResult.ResultStatus.Failed || result.resultStatus == TestRunnerResult.ResultStatus.Inconclusive)) - return true; - if (m_UIFilter.NotRunHidden && (result.resultStatus == TestRunnerResult.ResultStatus.NotRun || result.resultStatus == TestRunnerResult.ResultStatus.Skipped)) - return true; - if (m_UIFilter.CategoryFilter.Length > 0) - return !test.Categories.Any(category => m_UIFilter.CategoryFilter.Contains(category)); - return false; - } - - private void ParseTestTree(int depth, TreeViewItem rootItem, ITestAdaptor testElement) - { - m_AvailableCategories.AddRange(testElement.Categories); - - var testElementId = testElement.UniqueName; - if (!testElement.HasChildren) - { - var result = m_OldTestResultList.FirstOrDefault(a => a.uniqueId == testElementId); - - if (result != null && - (result.ignoredOrSkipped - || result.notRunnable - || testElement.RunState == RunState.NotRunnable - || testElement.RunState == RunState.Ignored - || testElement.RunState == RunState.Skipped - ) - ) - { - //if the test was or becomes ignored or not runnable, we recreate the result in case it has changed - result = null; - } - if (result == null) - { - result = new TestRunnerResult(testElement); - } - results.Add(result); - - var test = new TestTreeViewItem(testElement, depth, rootItem); - if (!IsFilteredOutByUIFilter(testElement, result)) - rootItem.AddChild(test); - test.SetResult(result); - return; - } - - var groupResult = m_OldTestResultList.FirstOrDefault(a => a.uniqueId == testElementId); - if (groupResult == null) - { - groupResult = new TestRunnerResult(testElement); - } - - results.Add(groupResult); - var group = new TestTreeViewItem(testElement, depth, rootItem); - group.SetResult(groupResult); - - depth++; - foreach (var child in testElement.Children) - { - ParseTestTree(depth, group, child); - } - - - if (testElement.IsTestAssembly && !testElement.HasChildren) - return; - - if (group.hasChildren) - rootItem.AddChild(group); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder/TestTreeViewBuilder.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder/TestTreeViewBuilder.cs.meta deleted file mode 100644 index 68a6c2507..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListBuilder/TestTreeViewBuilder.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: e17c88b021c2a4c409b3f15b0d80ac62 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListGuiHelper.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListGuiHelper.cs deleted file mode 100644 index 05cadbac7..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListGuiHelper.cs +++ /dev/null @@ -1,135 +0,0 @@ -using System; -using System.IO; -using System.Linq; -using UnityEditor.ProjectWindowCallback; -using UnityEditor.Scripting.ScriptCompilation; -using UnityEngine; - -namespace UnityEditor.TestTools.TestRunner.GUI -{ - internal class TestListGUIHelper - { - private const string kResourcesTemplatePath = "Resources/ScriptTemplates"; - private const string kAssemblyDefinitionTestTemplate = "92-Assembly Definition-NewTestAssembly.asmdef.txt"; - - private const string kAssemblyDefinitionEditModeTestTemplate = - "92-Assembly Definition-NewEditModeTestAssembly.asmdef.txt"; - - private const string kTestScriptTemplate = "83-C# Script-NewTestScript.cs.txt"; - private const string kNewTestScriptName = "NewTestScript.cs"; - private const string kNunit = "nunit.framework.dll"; - - [MenuItem("Assets/Create/Testing/Tests Assembly Folder", false, 83)] - public static void MenuItemAddFolderAndAsmDefForTesting() - { - AddFolderAndAsmDefForTesting(); - } - - [MenuItem("Assets/Create/Testing/Tests Assembly Folder", true, 83)] - public static bool MenuItemAddFolderAndAsmDefForTestingWithValidation() - { - return !SelectedFolderContainsTestAssembly(); - } - - public static void AddFolderAndAsmDefForTesting(bool isEditorOnly = false) - { - ProjectWindowUtil.CreateFolderWithTemplates("Tests", - isEditorOnly ? kAssemblyDefinitionEditModeTestTemplate : kAssemblyDefinitionTestTemplate); - } - - public static bool SelectedFolderContainsTestAssembly() - { - var theNearestCustomScriptAssembly = GetTheNearestCustomScriptAssembly(); - if (theNearestCustomScriptAssembly != null) - { - return theNearestCustomScriptAssembly.PrecompiledReferences != null && theNearestCustomScriptAssembly.PrecompiledReferences.Any(x => Path.GetFileName(x) == kNunit); - } - - return false; - } - - [MenuItem("Assets/Create/Testing/C# Test Script", false, 83)] - public static void AddTest() - { - var basePath = Path.Combine(EditorApplication.applicationContentsPath, kResourcesTemplatePath); - var destPath = Path.Combine(GetActiveFolderPath(), kNewTestScriptName); - var templatePath = Path.Combine(basePath, kTestScriptTemplate); - var icon = EditorGUIUtility.IconContent("cs Script Icon").image as Texture2D; - ProjectWindowUtil.StartNameEditingIfProjectWindowExists(0, - ScriptableObject.CreateInstance(), destPath, icon, templatePath); - - AssetDatabase.Refresh(); - } - - [MenuItem("Assets/Create/Testing/C# Test Script", true, 83)] - public static bool CanAddScriptAndItWillCompile() - { - return CanAddEditModeTestScriptAndItWillCompile() || CanAddPlayModeTestScriptAndItWillCompile(); - } - - public static bool CanAddEditModeTestScriptAndItWillCompile() - { - var theNearestCustomScriptAssembly = GetTheNearestCustomScriptAssembly(); - if (theNearestCustomScriptAssembly != null) - { - return (theNearestCustomScriptAssembly.AssemblyFlags & AssemblyFlags.EditorOnly) == - AssemblyFlags.EditorOnly; - } - - var activeFolderPath = GetActiveFolderPath(); - return activeFolderPath.ToLower().Contains("/editor"); - } - - public static bool CanAddPlayModeTestScriptAndItWillCompile() - { - if (PlayerSettings.playModeTestRunnerEnabled) - { - return true; - } - - var theNearestCustomScriptAssembly = GetTheNearestCustomScriptAssembly(); - - if (theNearestCustomScriptAssembly == null) - { - return false; - } - - var hasTestAssemblyFlag = theNearestCustomScriptAssembly.PrecompiledReferences != null && theNearestCustomScriptAssembly.PrecompiledReferences.Any(x => Path.GetFileName(x) == kNunit);; - var editorOnlyAssembly = (theNearestCustomScriptAssembly.AssemblyFlags & AssemblyFlags.EditorOnly) != 0; - - return hasTestAssemblyFlag && !editorOnlyAssembly; - } - - public static string GetActiveFolderPath() - { - var path = "Assets"; - - foreach (var obj in Selection.GetFiltered(typeof(UnityEngine.Object), SelectionMode.Assets)) - { - path = AssetDatabase.GetAssetPath(obj); - if (!string.IsNullOrEmpty(path) && File.Exists(path)) - { - path = Path.GetDirectoryName(path); - break; - } - } - return path; - } - - private static CustomScriptAssembly GetTheNearestCustomScriptAssembly() - { - CustomScriptAssembly findCustomScriptAssemblyFromScriptPath; - try - { - findCustomScriptAssemblyFromScriptPath = - EditorCompilationInterface.Instance.FindCustomScriptAssemblyFromScriptPath( - Path.Combine(GetActiveFolderPath(), "Foo.cs")); - } - catch (Exception) - { - return null; - } - return findCustomScriptAssemblyFromScriptPath; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListGuiHelper.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListGuiHelper.cs.meta deleted file mode 100644 index 70d8f193b..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListGuiHelper.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 97a05971510726f438153cd4987526fb -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView.meta deleted file mode 100644 index 63ce2ad09..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 68cb547af0187634aad591a09c01cd5b -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView/Icons.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView/Icons.cs deleted file mode 100644 index 52c94a510..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView/Icons.cs +++ /dev/null @@ -1,24 +0,0 @@ -using UnityEngine; - -namespace UnityEditor.TestTools.TestRunner.GUI -{ - internal static class Icons - { - public static readonly Texture2D s_FailImg; - public static readonly Texture2D s_IgnoreImg; - public static readonly Texture2D s_SuccessImg; - public static readonly Texture2D s_UnknownImg; - public static readonly Texture2D s_InconclusiveImg; - public static readonly Texture2D s_StopwatchImg; - - static Icons() - { - s_FailImg = EditorGUIUtility.IconContent("TestFailed").image as Texture2D; - s_IgnoreImg = EditorGUIUtility.IconContent("TestIgnored").image as Texture2D; - s_SuccessImg = EditorGUIUtility.IconContent("TestPassed").image as Texture2D; - s_UnknownImg = EditorGUIUtility.IconContent("TestNormal").image as Texture2D; - s_InconclusiveImg = EditorGUIUtility.IconContent("TestInconclusive").image as Texture2D; - s_StopwatchImg = EditorGUIUtility.IconContent("TestStopwatch").image as Texture2D; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView/Icons.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView/Icons.cs.meta deleted file mode 100644 index 3ddb7ee11..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView/Icons.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 27769e9b00b038d47aefe306a4d20bec -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewDataSource.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewDataSource.cs deleted file mode 100644 index 04a5e6b73..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewDataSource.cs +++ /dev/null @@ -1,93 +0,0 @@ -using System.Collections.Generic; -using UnityEditor.IMGUI.Controls; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine.SceneManagement; -using UnityEngine.TestTools.TestRunner; -using UnityEngine.TestTools.TestRunner.GUI; - -namespace UnityEditor.TestTools.TestRunner.GUI -{ - internal class TestListTreeViewDataSource : TreeViewDataSource - { - private bool m_ExpandTreeOnCreation; - private readonly TestListGUI m_TestListGUI; - private ITestAdaptor m_RootTest; - - public TestListTreeViewDataSource(TreeViewController testListTree, TestListGUI testListGUI, ITestAdaptor rootTest) : base(testListTree) - { - showRootItem = false; - rootIsCollapsable = false; - m_TestListGUI = testListGUI; - m_RootTest = rootTest; - } - - public override void FetchData() - { - var sceneName = SceneManager.GetActiveScene().name; - if (sceneName.StartsWith("InitTestScene")) - sceneName = PlaymodeTestsController.GetController().settings.originalScene; - - var testListBuilder = new TestTreeViewBuilder(m_RootTest, m_TestListGUI.newResultList, m_TestListGUI.m_TestRunnerUIFilter); - - m_RootItem = testListBuilder.BuildTreeView(null, false, sceneName); - SetExpanded(m_RootItem, true); - if (m_RootItem.hasChildren && m_RootItem.children.Count == 1) - SetExpanded(m_RootItem.children[0], true); - - if (m_ExpandTreeOnCreation) - SetExpandedWithChildren(m_RootItem, true); - - m_TestListGUI.newResultList = new List(testListBuilder.results); - m_TestListGUI.m_TestRunnerUIFilter.availableCategories = testListBuilder.AvailableCategories; - m_NeedRefreshRows = true; - } - - public override bool IsRenamingItemAllowed(TreeViewItem item) - { - return false; - } - - public void ExpandTreeOnCreation() - { - m_ExpandTreeOnCreation = true; - } - - public override bool IsExpandable(TreeViewItem item) - { - if (item is TestTreeViewItem) - return ((TestTreeViewItem)item).IsGroupNode; - return base.IsExpandable(item); - } - - protected override List Search(TreeViewItem rootItem, string search) - { - var result = new List(); - - if (rootItem.hasChildren) - { - foreach (var child in rootItem.children) - { - SearchTestTree(child, search, result); - } - } - return result; - } - - protected void SearchTestTree(TreeViewItem item, string search, IList searchResult) - { - var testItem = item as TestTreeViewItem; - if (!testItem.IsGroupNode) - { - if (testItem.FullName.ToLower().Contains(search)) - { - searchResult.Add(item); - } - } - else if (item.children != null) - { - foreach (var child in item.children) - SearchTestTree(child, search, searchResult); - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewDataSource.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewDataSource.cs.meta deleted file mode 100644 index 5ec533276..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewDataSource.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: ce87c287371edde43a4b5fcfdee7b9ef -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewGUI.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewGUI.cs deleted file mode 100644 index 665781308..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewGUI.cs +++ /dev/null @@ -1,11 +0,0 @@ -using UnityEditor.IMGUI.Controls; - -namespace UnityEditor.TestTools.TestRunner.GUI -{ - internal class TestListTreeViewGUI : TreeViewGUI - { - public TestListTreeViewGUI(TreeViewController testListTree) : base(testListTree) - { - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewGUI.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewGUI.cs.meta deleted file mode 100644 index ed09e2502..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewGUI.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 52c907c81459f324497af504b84fd557 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView/TestTreeViewItem.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView/TestTreeViewItem.cs deleted file mode 100644 index 8d99de955..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView/TestTreeViewItem.cs +++ /dev/null @@ -1,118 +0,0 @@ -using System; -using System.Reflection; -using System.Text; -using UnityEditor.IMGUI.Controls; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine.TestTools.TestRunner.GUI; - -namespace UnityEditor.TestTools.TestRunner.GUI -{ - internal sealed class TestTreeViewItem : TreeViewItem - { - public TestRunnerResult result; - internal ITestAdaptor m_Test; - - public Type type; - public MethodInfo method; - - private const int k_ResultTestMaxLength = 15000; - - public bool IsGroupNode { get { return m_Test.IsSuite; } } - - public string FullName { get { return m_Test.FullName; } } - - public TestTreeViewItem(ITestAdaptor test, int depth, TreeViewItem parent) - : base(GetId(test), depth, parent, test.Name) - { - m_Test = test; - - if (test.TypeInfo != null) - { - type = test.TypeInfo.Type; - } - if (test.Method != null) - { - method = test.Method.MethodInfo; - } - - displayName = test.Name.Replace("\n", ""); - icon = Icons.s_UnknownImg; - } - - private static int GetId(ITestAdaptor test) - { - return test.UniqueName.GetHashCode(); - } - - public void SetResult(TestRunnerResult testResult) - { - result = testResult; - result.SetResultChangedCallback(ResultUpdated); - ResultUpdated(result); - } - - public string GetResultText() - { - var durationString = String.Format("{0:0.000}", result.duration); - var sb = new StringBuilder(string.Format("{0} ({1}s)", displayName.Trim(), durationString)); - if (!string.IsNullOrEmpty(result.description)) - { - sb.AppendFormat("\n{0}", result.description); - } - if (!string.IsNullOrEmpty(result.messages)) - { - sb.Append("\n---\n"); - sb.Append(result.messages.Trim()); - } - if (!string.IsNullOrEmpty(result.stacktrace)) - { - sb.Append("\n---\n"); - sb.Append(result.stacktrace.Trim()); - } - if (!string.IsNullOrEmpty(result.output)) - { - sb.Append("\n---\n"); - sb.Append(result.output.Trim()); - } - if (sb.Length > k_ResultTestMaxLength) - { - sb.Length = k_ResultTestMaxLength; - sb.AppendFormat("...\n\n---MESSAGE TRUNCATED AT {0} CHARACTERS---", k_ResultTestMaxLength); - } - return sb.ToString().Trim(); - } - - private void ResultUpdated(TestRunnerResult testResult) - { - switch (testResult.resultStatus) - { - case TestRunnerResult.ResultStatus.Passed: - icon = Icons.s_SuccessImg; - break; - case TestRunnerResult.ResultStatus.Failed: - icon = Icons.s_FailImg; - break; - case TestRunnerResult.ResultStatus.Inconclusive: - icon = Icons.s_InconclusiveImg; - break; - case TestRunnerResult.ResultStatus.Skipped: - icon = Icons.s_IgnoreImg; - break; - default: - if (testResult.ignoredOrSkipped) - { - icon = Icons.s_IgnoreImg; - } - else if (testResult.notRunnable) - { - icon = Icons.s_FailImg; - } - else - { - icon = Icons.s_UnknownImg; - } - break; - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView/TestTreeViewItem.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView/TestTreeViewItem.cs.meta deleted file mode 100644 index 1a29abe9a..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestListTreeView/TestTreeViewItem.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: ce567ddbf30368344bc7b80e20cac36e -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestRunnerResult.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestRunnerResult.cs deleted file mode 100644 index b70d0ab5a..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestRunnerResult.cs +++ /dev/null @@ -1,149 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine.TestTools.TestRunner.GUI; - -namespace UnityEditor.TestTools.TestRunner.GUI -{ - [Serializable] - internal class TestRunnerResult : TestRunnerFilter.IClearableResult - { - public string id; - public string uniqueId; - public string name; - public string fullName; - public ResultStatus resultStatus = ResultStatus.NotRun; - public float duration; - public string messages; - public string output; - public string stacktrace; - public bool notRunnable; - public bool ignoredOrSkipped; - public string description; - public bool isSuite; - public List categories; - public string parentId; - public string parentUniqueId; - - //This field is suppose to mark results from before domain reload - //Such result is outdated because the code might haev changed - //This field will get reset every time a domain reload happens - [NonSerialized] - public bool notOutdated; - - protected Action m_OnResultUpdate; - - internal TestRunnerResult(ITestAdaptor test) - { - id = test.Id; - uniqueId = test.UniqueName; - - fullName = test.FullName; - name = test.Name; - description = test.Description; - isSuite = test.IsSuite; - - ignoredOrSkipped = test.RunState == RunState.Ignored || test.RunState == RunState.Skipped; - notRunnable = test.RunState == RunState.NotRunnable; - - if (ignoredOrSkipped) - { - messages = test.SkipReason; - } - if (notRunnable) - { - resultStatus = ResultStatus.Failed; - messages = test.SkipReason; - } - categories = test.Categories.ToList(); - parentId = test.ParentId; - parentUniqueId = test.ParentUniqueName; - } - - internal TestRunnerResult(ITestResultAdaptor testResult) : this(testResult.Test) - { - notOutdated = true; - - messages = testResult.Message; - output = testResult.Output; - stacktrace = testResult.StackTrace; - duration = (float)testResult.Duration; - if (testResult.Test.IsSuite && testResult.ResultState == "Ignored") - { - resultStatus = ResultStatus.Passed; - } - else - { - resultStatus = ParseNUnitResultStatus(testResult.TestStatus); - } - } - - public void Update(TestRunnerResult result) - { - if (ReferenceEquals(result, null)) - return; - resultStatus = result.resultStatus; - duration = result.duration; - messages = result.messages; - output = result.output; - stacktrace = result.stacktrace; - ignoredOrSkipped = result.ignoredOrSkipped; - notRunnable = result.notRunnable; - description = result.description; - notOutdated = result.notOutdated; - if (m_OnResultUpdate != null) - m_OnResultUpdate(this); - } - - public void SetResultChangedCallback(Action resultUpdated) - { - m_OnResultUpdate = resultUpdated; - } - - [Serializable] - internal enum ResultStatus - { - NotRun, - Passed, - Failed, - Inconclusive, - Skipped - } - - private static ResultStatus ParseNUnitResultStatus(TestStatus status) - { - switch (status) - { - case TestStatus.Passed: - return ResultStatus.Passed; - case TestStatus.Failed: - return ResultStatus.Failed; - case TestStatus.Inconclusive: - return ResultStatus.Inconclusive; - case TestStatus.Skipped: - return ResultStatus.Skipped; - default: - return ResultStatus.NotRun; - } - } - - public override string ToString() - { - return string.Format("{0} ({1})", name, fullName); - } - - public string Id { get { return uniqueId; } } - public string FullName { get { return fullName; } } - public string ParentId { get { return parentUniqueId; } } - public bool IsSuite { get { return isSuite; } } - public List Categories { get { return categories; } } - - public void Clear() - { - resultStatus = ResultStatus.NotRun; - if (m_OnResultUpdate != null) - m_OnResultUpdate(this); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestRunnerResult.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestRunnerResult.cs.meta deleted file mode 100644 index 771053c11..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestRunnerResult.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: a04a45bbed9e1714f9902fc9443669b9 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestRunnerUIFilter.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestRunnerUIFilter.cs deleted file mode 100644 index a9df8e640..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestRunnerUIFilter.cs +++ /dev/null @@ -1,167 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using UnityEngine; -using UnityEngine.TestTools.TestRunner.GUI; - -namespace UnityEditor.TestTools.TestRunner.GUI -{ - [Serializable] - internal class TestRunnerUIFilter - { - private int m_PassedCount; - private int m_FailedCount; - private int m_NotRunCount; - private int m_InconclusiveCount; - private int m_SkippedCount; - - public int PassedCount { get { return m_PassedCount; } } - public int FailedCount { get { return m_FailedCount + m_InconclusiveCount; } } - public int NotRunCount { get { return m_NotRunCount + m_SkippedCount; } } - - [SerializeField] - public bool PassedHidden; - [SerializeField] - public bool FailedHidden; - [SerializeField] - public bool NotRunHidden; - - [SerializeField] - private string m_SearchString; - [SerializeField] - private int selectedCategoryMask; - - public string[] availableCategories = new string[0]; - - - private GUIContent m_SucceededBtn; - private GUIContent m_FailedBtn; - private GUIContent m_NotRunBtn; - - public Action RebuildTestList; - public Action SearchStringChanged; - public bool IsFiltering - { - get - { - return !string.IsNullOrEmpty(m_SearchString) || PassedHidden || FailedHidden || NotRunHidden || - selectedCategoryMask != 0; - } - } - - public string[] CategoryFilter - { - get - { - var list = new List(); - for (int i = 0; i < availableCategories.Length; i++) - { - if ((selectedCategoryMask & (1 << i)) != 0) - { - list.Add(availableCategories[i]); - } - } - return list.ToArray(); - } - } - - public void UpdateCounters(List resultList) - { - m_PassedCount = m_FailedCount = m_NotRunCount = m_InconclusiveCount = m_SkippedCount = 0; - foreach (var result in resultList) - { - if (result.isSuite) - continue; - switch (result.resultStatus) - { - case TestRunnerResult.ResultStatus.Passed: - m_PassedCount++; - break; - case TestRunnerResult.ResultStatus.Failed: - m_FailedCount++; - break; - case TestRunnerResult.ResultStatus.Inconclusive: - m_InconclusiveCount++; - break; - case TestRunnerResult.ResultStatus.Skipped: - m_SkippedCount++; - break; - case TestRunnerResult.ResultStatus.NotRun: - default: - m_NotRunCount++; - break; - } - } - - var succeededTooltip = string.Format("Show tests that succeeded\n{0} succeeded", m_PassedCount); - m_SucceededBtn = new GUIContent(PassedCount.ToString(), Icons.s_SuccessImg, succeededTooltip); - var failedTooltip = string.Format("Show tests that failed\n{0} failed\n{1} inconclusive", m_FailedCount, m_InconclusiveCount); - m_FailedBtn = new GUIContent(FailedCount.ToString(), Icons.s_FailImg, failedTooltip); - var notRunTooltip = string.Format("Show tests that didn't run\n{0} didn't run\n{1} skipped or ignored", m_NotRunCount, m_SkippedCount); - m_NotRunBtn = new GUIContent(NotRunCount.ToString(), Icons.s_UnknownImg, notRunTooltip); - } - - public void Draw() - { - EditorGUI.BeginChangeCheck(); - m_SearchString = EditorGUILayout.ToolbarSearchField(m_SearchString); - if (EditorGUI.EndChangeCheck() && SearchStringChanged != null) - { - SearchStringChanged(m_SearchString); - } - - if (availableCategories != null && availableCategories.Any()) - { - EditorGUI.BeginChangeCheck(); - selectedCategoryMask = EditorGUILayout.MaskField(selectedCategoryMask, availableCategories, EditorStyles.toolbarDropDown, GUILayout.MaxWidth(150)); - if (EditorGUI.EndChangeCheck() && RebuildTestList != null) - { - RebuildTestList(); - } - } - else - { - EditorGUILayout.Popup(0, new[] { "" }, EditorStyles.toolbarDropDown, GUILayout.MaxWidth(150)); - } - - EditorGUI.BeginChangeCheck(); - if (m_SucceededBtn != null) - { - PassedHidden = !GUILayout.Toggle(!PassedHidden, m_SucceededBtn, EditorStyles.toolbarButton, GUILayout.MaxWidth(GetMaxWidth(PassedCount))); - } - if (m_FailedBtn != null) - { - FailedHidden = !GUILayout.Toggle(!FailedHidden, m_FailedBtn, EditorStyles.toolbarButton, GUILayout.MaxWidth(GetMaxWidth(FailedCount))); - } - if (m_NotRunBtn != null) - { - NotRunHidden = !GUILayout.Toggle(!NotRunHidden, m_NotRunBtn, EditorStyles.toolbarButton, GUILayout.MaxWidth(GetMaxWidth(NotRunCount))); - } - - if (EditorGUI.EndChangeCheck() && RebuildTestList != null) - { - RebuildTestList(); - } - } - - private static int GetMaxWidth(int count) - { - if (count < 10) - return 33; - return count < 100 ? 40 : 47; - } - - public void Clear() - { - PassedHidden = false; - FailedHidden = false; - NotRunHidden = false; - selectedCategoryMask = 0; - m_SearchString = ""; - if (SearchStringChanged != null) - { - SearchStringChanged(m_SearchString); - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestRunnerUIFilter.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestRunnerUIFilter.cs.meta deleted file mode 100644 index e65f91a39..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/TestRunnerUIFilter.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 15f870c6975ad6449b5b52514b90dc2b -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/Views.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/Views.meta deleted file mode 100644 index ca14182cc..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/Views.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c5535d742ea2e4941850b421f9c70a1f -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/Views/EditModeTestListGUI.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/Views/EditModeTestListGUI.cs deleted file mode 100644 index 3de12539a..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/Views/EditModeTestListGUI.cs +++ /dev/null @@ -1,88 +0,0 @@ -using System; -using System.Linq; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine; -using UnityEngine.TestTools; -using UnityEngine.TestTools.TestRunner.GUI; - -namespace UnityEditor.TestTools.TestRunner.GUI -{ - [Serializable] - internal class EditModeTestListGUI : TestListGUI - { - public override TestMode TestMode - { - get { return TestMode.EditMode; } - } - - public override void RenderNoTestsInfo() - { - if (!TestListGUIHelper.SelectedFolderContainsTestAssembly()) - { - var noTestText = "No tests to show"; - - if (!PlayerSettings.playModeTestRunnerEnabled) - { - const string testsArePulledFromCustomAssemblies = - "EditMode tests can be in Editor only Assemblies, either in the editor special folder or Editor only Assembly Definitions with added Unity References \"Test Assemblies\"."; - noTestText += Environment.NewLine + testsArePulledFromCustomAssemblies; - } - - EditorGUILayout.HelpBox(noTestText, MessageType.Info); - if (GUILayout.Button("Create EditMode Test Assembly Folder")) - { - TestListGUIHelper.AddFolderAndAsmDefForTesting(isEditorOnly: true); - } - } - - if (!TestListGUIHelper.CanAddEditModeTestScriptAndItWillCompile()) - { - UnityEngine.GUI.enabled = false; - EditorGUILayout.HelpBox("EditMode test scripts can only be created in editor test assemblies.", MessageType.Warning); - } - if (GUILayout.Button("Create Test Script in current folder")) - { - TestListGUIHelper.AddTest(); - } - UnityEngine.GUI.enabled = true; - } - - public override void PrintHeadPanel() - { - base.PrintHeadPanel(); - DrawFilters(); - } - - protected override void RunTests(TestRunnerFilter filter) - { - if (EditorUtility.scriptCompilationFailed) - { - Debug.LogError("Fix compilation issues before running tests"); - return; - } - - filter.ClearResults(newResultList.OfType().ToList()); - - RerunCallbackData.instance.runFilter = filter; - RerunCallbackData.instance.testMode = TestMode.EditMode; - - var testRunnerApi = ScriptableObject.CreateInstance(); - testRunnerApi.Execute(new ExecutionSettings() - { - filter = new Filter() - { - categoryNames = filter.categoryNames, - groupNames = filter.groupNames, - testMode = TestMode, - testNames = filter.testNames - } - }); - } - - public override TestPlatform TestPlatform { get { return TestPlatform.EditMode; } } - protected override bool IsBusy() - { - return EditModeLauncher.IsRunning || EditorApplication.isCompiling || EditorApplication.isPlaying; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/Views/EditModeTestListGUI.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/Views/EditModeTestListGUI.cs.meta deleted file mode 100644 index afd4abb5e..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/Views/EditModeTestListGUI.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 0336a32a79bfaed43a3fd2d88b91e974 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/Views/PlayModeTestListGUI.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/Views/PlayModeTestListGUI.cs deleted file mode 100644 index 40e3d2d5b..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/Views/PlayModeTestListGUI.cs +++ /dev/null @@ -1,106 +0,0 @@ -using System; -using System.Linq; -using UnityEditor.SceneManagement; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine; -using UnityEngine.TestTools; -using UnityEngine.SceneManagement; -using UnityEngine.TestTools.TestRunner; -using UnityEngine.TestTools.TestRunner.GUI; - -namespace UnityEditor.TestTools.TestRunner.GUI -{ - [Serializable] - internal class PlayModeTestListGUI : TestListGUI - { - public override TestMode TestMode - { - get { return TestMode.PlayMode; } - } - public override void PrintHeadPanel() - { - EditorGUILayout.BeginHorizontal(GUILayout.ExpandHeight(false)); - base.PrintHeadPanel(); - if (GUILayout.Button("Run all in player (" + EditorUserBuildSettings.activeBuildTarget + ")", EditorStyles.toolbarButton)) - { - RunTestsInPlayer(null); - } - EditorGUILayout.EndHorizontal(); - DrawFilters(); - EditorGUILayout.BeginHorizontal(GUILayout.ExpandHeight(false)); - EditorGUILayout.EndHorizontal(); - } - - public override void RenderNoTestsInfo() - { - if (!TestListGUIHelper.SelectedFolderContainsTestAssembly()) - { - var noTestText = "No tests to show"; - if (!PlayerSettings.playModeTestRunnerEnabled) - { - const string testsArePulledFromCustomAssemblues = "Test Assemblies are defined by Assembly Definitions where you add Unity References \"Test Assemblies\""; - const string infoTextAboutTestsInAllAssemblies = - "To have tests in all assemblies enable it in the Test Runner window context menu"; - noTestText += Environment.NewLine + testsArePulledFromCustomAssemblues + Environment.NewLine + - infoTextAboutTestsInAllAssemblies; - } - - EditorGUILayout.HelpBox(noTestText, MessageType.Info); - if (GUILayout.Button("Create PlayMode Test Assembly Folder")) - { - TestListGUIHelper.AddFolderAndAsmDefForTesting(); - } - } - - if (!TestListGUIHelper.CanAddPlayModeTestScriptAndItWillCompile()) - { - UnityEngine.GUI.enabled = false; - EditorGUILayout.HelpBox("PlayMode test scripts can only be created in non editor test assemblies.", MessageType.Warning); - } - if (GUILayout.Button("Create Test Script in current folder")) - { - TestListGUIHelper.AddTest(); - } - UnityEngine.GUI.enabled = true; - } - - protected override void RunTests(TestRunnerFilter filter) - { - // Give user chance to save the changes to their currently open scene because we close it and load our own - var cancelled = !EditorSceneManager.SaveCurrentModifiedScenesIfUserWantsTo(); - if (cancelled) - return; - - filter.ClearResults(newResultList.OfType().ToList()); - - RerunCallbackData.instance.runFilter = filter; - RerunCallbackData.instance.testMode = TestMode.PlayMode; - - var testRunnerApi = ScriptableObject.CreateInstance(); - testRunnerApi.Execute(new ExecutionSettings() - { - filter = new Filter() - { - categoryNames = filter.categoryNames, - groupNames = filter.groupNames, - testMode = TestMode, - testNames = filter.testNames - } - }); - } - - protected void RunTestsInPlayer(TestRunnerFilter filter) - { - var settings = PlaymodeTestsControllerSettings.CreateRunnerSettings(filter); - var testExecutor = new PlayerLauncher(settings, null, null); - testExecutor.Run(); - GUIUtility.ExitGUI(); - } - - public override TestPlatform TestPlatform { get { return TestPlatform.PlayMode; } } - protected override bool IsBusy() - { - return PlaymodeLauncher.IsRunning || EditorApplication.isCompiling || EditorApplication.isPlaying; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/Views/PlayModeTestListGUI.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/Views/PlayModeTestListGUI.cs.meta deleted file mode 100644 index 6f0c1d6d9..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/Views/PlayModeTestListGUI.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: c3efd39f2cfb43a4c830d4fd5689900f -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/Views/TestListGUIBase.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/Views/TestListGUIBase.cs deleted file mode 100644 index 27c4d3fa3..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/Views/TestListGUIBase.cs +++ /dev/null @@ -1,449 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using UnityEditor.IMGUI.Controls; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine; -using UnityEngine.TestTools.TestRunner.GUI; -using UnityEngine.TestTools; - -namespace UnityEditor.TestTools.TestRunner.GUI -{ - internal abstract class TestListGUI - { - private static readonly GUIContent s_GUIRunSelectedTests = EditorGUIUtility.TrTextContent("Run Selected", "Run selected test(s)"); - private static readonly GUIContent s_GUIRunAllTests = EditorGUIUtility.TrTextContent("Run All", "Run all tests"); - private static readonly GUIContent s_GUIRerunFailedTests = EditorGUIUtility.TrTextContent("Rerun Failed", "Rerun all failed tests"); - private static readonly GUIContent s_GUIRun = EditorGUIUtility.TrTextContent("Run"); - private static readonly GUIContent s_GUIRunUntilFailed = EditorGUIUtility.TrTextContent("Run Until Failed"); - private static readonly GUIContent s_GUIRun100Times = EditorGUIUtility.TrTextContent("Run 100 times"); - private static readonly GUIContent s_GUIOpenTest = EditorGUIUtility.TrTextContent("Open source code"); - private static readonly GUIContent s_GUIOpenErrorLine = EditorGUIUtility.TrTextContent("Open error line"); - - [SerializeField] - protected TestRunnerWindow m_Window; - [SerializeField] - public List newResultList = new List(); - [SerializeField] - private string m_ResultText; - [SerializeField] - private string m_ResultStacktrace; - - private TreeViewController m_TestListTree; - [SerializeField] - internal TreeViewState m_TestListState; - [SerializeField] - internal TestRunnerUIFilter m_TestRunnerUIFilter = new TestRunnerUIFilter(); - - private Vector2 m_TestInfoScroll, m_TestListScroll; - private string m_PreviousProjectPath; - private List m_QueuedResults = new List(); - - protected TestListGUI() - { - MonoCecilHelper = new MonoCecilHelper(); - AssetsDatabaseHelper = new AssetsDatabaseHelper(); - - GuiHelper = new GuiHelper(MonoCecilHelper, AssetsDatabaseHelper); - } - - protected IMonoCecilHelper MonoCecilHelper { get; private set; } - protected IAssetsDatabaseHelper AssetsDatabaseHelper { get; private set; } - protected IGuiHelper GuiHelper { get; private set; } - - public abstract TestMode TestMode { get; } - - public virtual void PrintHeadPanel() - { - EditorGUILayout.BeginHorizontal(EditorStyles.toolbar); - using (new EditorGUI.DisabledScope(IsBusy())) - { - if (GUILayout.Button(s_GUIRunAllTests, EditorStyles.toolbarButton)) - { - var filter = new TestRunnerFilter {categoryNames = m_TestRunnerUIFilter.CategoryFilter}; - RunTests(filter); - GUIUtility.ExitGUI(); - } - } - using (new EditorGUI.DisabledScope(m_TestListTree == null || !m_TestListTree.HasSelection() || IsBusy())) - { - if (GUILayout.Button(s_GUIRunSelectedTests, EditorStyles.toolbarButton)) - { - RunTests(GetSelectedTestsAsFilter(m_TestListTree.GetSelection())); - GUIUtility.ExitGUI(); - } - } - using (new EditorGUI.DisabledScope(m_TestRunnerUIFilter.FailedCount == 0 || IsBusy())) - { - if (GUILayout.Button(s_GUIRerunFailedTests, EditorStyles.toolbarButton)) - { - var failedTestnames = new List(); - foreach (var result in newResultList) - { - if (result.isSuite) - continue; - if (result.resultStatus == TestRunnerResult.ResultStatus.Failed || - result.resultStatus == TestRunnerResult.ResultStatus.Inconclusive) - failedTestnames.Add(result.fullName); - } - RunTests(new TestRunnerFilter() {testNames = failedTestnames.ToArray(), categoryNames = m_TestRunnerUIFilter.CategoryFilter}); - GUIUtility.ExitGUI(); - } - } - GUILayout.FlexibleSpace(); - EditorGUILayout.EndHorizontal(); - } - - protected void DrawFilters() - { - EditorGUILayout.BeginHorizontal(EditorStyles.toolbar); - m_TestRunnerUIFilter.Draw(); - EditorGUILayout.EndHorizontal(); - } - - public bool HasTreeData() - { - return m_TestListTree != null; - } - - public virtual void RenderTestList() - { - if (m_TestListTree == null) - { - GUILayout.Label("Loading..."); - return; - } - - m_TestListScroll = EditorGUILayout.BeginScrollView(m_TestListScroll, - GUILayout.ExpandWidth(true), - GUILayout.MaxWidth(2000)); - - if (m_TestListTree.data.root == null || m_TestListTree.data.rowCount == 0 || (!m_TestListTree.isSearching && !m_TestListTree.data.GetItem(0).hasChildren)) - { - if (m_TestRunnerUIFilter.IsFiltering) - { - if (GUILayout.Button("Clear filters")) - { - m_TestRunnerUIFilter.Clear(); - m_TestListTree.ReloadData(); - m_Window.Repaint(); - } - } - RenderNoTestsInfo(); - } - else - { - var treeRect = EditorGUILayout.GetControlRect(GUILayout.ExpandHeight(true), GUILayout.ExpandWidth(true)); - var treeViewKeyboardControlId = GUIUtility.GetControlID(FocusType.Keyboard); - - m_TestListTree.OnGUI(treeRect, treeViewKeyboardControlId); - } - - EditorGUILayout.EndScrollView(); - } - - public virtual void RenderNoTestsInfo() - { - EditorGUILayout.HelpBox("No tests to show", MessageType.Info); - } - - public void RenderDetails() - { - m_TestInfoScroll = EditorGUILayout.BeginScrollView(m_TestInfoScroll); - var resultTextSize = TestRunnerWindow.Styles.info.CalcSize(new GUIContent(m_ResultText)); - EditorGUILayout.SelectableLabel(m_ResultText, TestRunnerWindow.Styles.info, - GUILayout.ExpandHeight(true), - GUILayout.ExpandWidth(true), - GUILayout.MinWidth(resultTextSize.x), - GUILayout.MinHeight(resultTextSize.y)); - EditorGUILayout.EndScrollView(); - } - - public void Reload() - { - if (m_TestListTree != null) - { - m_TestListTree.ReloadData(); - UpdateQueuedResults(); - } - } - - public void Repaint() - { - if (m_TestListTree == null || m_TestListTree.data.root == null) - { - return; - } - - m_TestListTree.Repaint(); - if (m_TestListTree.data.rowCount == 0) - m_TestListTree.SetSelection(new int[0], false); - TestSelectionCallback(m_TestListState.selectedIDs.ToArray()); - } - - public void Init(TestRunnerWindow window, ITestAdaptor rootTest) - { - if (m_Window == null) - { - m_Window = window; - } - - if (m_TestListTree == null) - { - if (m_TestListState == null) - { - m_TestListState = new TreeViewState(); - } - if (m_TestListTree == null) - m_TestListTree = new TreeViewController(m_Window, m_TestListState); - - m_TestListTree.deselectOnUnhandledMouseDown = false; - - m_TestListTree.selectionChangedCallback += TestSelectionCallback; - m_TestListTree.itemDoubleClickedCallback += TestDoubleClickCallback; - m_TestListTree.contextClickItemCallback += TestContextClickCallback; - - var testListTreeViewDataSource = new TestListTreeViewDataSource(m_TestListTree, this, rootTest); - - if (!newResultList.Any()) - testListTreeViewDataSource.ExpandTreeOnCreation(); - - m_TestListTree.Init(new Rect(), - testListTreeViewDataSource, - new TestListTreeViewGUI(m_TestListTree), - null); - } - - EditorApplication.update += RepaintIfProjectPathChanged; - - m_TestRunnerUIFilter.UpdateCounters(newResultList); - m_TestRunnerUIFilter.RebuildTestList = () => m_TestListTree.ReloadData(); - m_TestRunnerUIFilter.SearchStringChanged = s => m_TestListTree.searchString = s; - } - - public void UpdateResult(TestRunnerResult result) - { - if (!HasTreeData()) - { - m_QueuedResults.Add(result); - return; - } - - if (newResultList.All(x => x.uniqueId != result.uniqueId)) - { - return; - } - - var testRunnerResult = newResultList.FirstOrDefault(x => x.uniqueId == result.uniqueId); - if (testRunnerResult != null) - { - testRunnerResult.Update(result); - } - - Repaint(); - m_Window.Repaint(); - } - - private void UpdateQueuedResults() - { - foreach (var testRunnerResult in m_QueuedResults) - { - var existingResult = newResultList.FirstOrDefault(x => x.uniqueId == testRunnerResult.uniqueId); - if (existingResult != null) - { - existingResult.Update(testRunnerResult); - } - } - m_QueuedResults.Clear(); - TestSelectionCallback(m_TestListState.selectedIDs.ToArray()); - Repaint(); - m_Window.Repaint(); - } - - internal void TestSelectionCallback(int[] selected) - { - if (m_TestListTree != null && selected.Length == 1) - { - if (m_TestListTree != null) - { - var node = m_TestListTree.FindItem(selected[0]); - if (node is TestTreeViewItem) - { - var test = node as TestTreeViewItem; - m_ResultText = test.GetResultText(); - m_ResultStacktrace = test.result.stacktrace; - } - } - } - else if (selected.Length == 0) - { - m_ResultText = ""; - } - } - - protected virtual void TestDoubleClickCallback(int id) - { - if (IsBusy()) - return; - - RunTests(GetSelectedTestsAsFilter(new List { id })); - GUIUtility.ExitGUI(); - } - - protected virtual void RunTests(TestRunnerFilter filter) - { - throw new NotImplementedException(); - } - - protected virtual void TestContextClickCallback(int id) - { - if (id == 0) - return; - - var m = new GenericMenu(); - var testFilter = GetSelectedTestsAsFilter(m_TestListState.selectedIDs); - var multilineSelection = m_TestListState.selectedIDs.Count > 1; - - if (!multilineSelection) - { - var testNode = GetSelectedTest(); - var isNotSuite = !testNode.IsGroupNode; - if (isNotSuite) - { - if (!string.IsNullOrEmpty(m_ResultStacktrace)) - { - m.AddItem(s_GUIOpenErrorLine, - false, - data => - { - if (!GuiHelper.OpenScriptInExternalEditor(m_ResultStacktrace)) - { - GuiHelper.OpenScriptInExternalEditor(testNode.type, testNode.method); - } - }, - ""); - } - - m.AddItem(s_GUIOpenTest, - false, - data => GuiHelper.OpenScriptInExternalEditor(testNode.type, testNode.method), - ""); - m.AddSeparator(""); - } - } - - if (!IsBusy()) - { - m.AddItem(multilineSelection ? s_GUIRunSelectedTests : s_GUIRun, - false, - data => RunTests(testFilter), - ""); - - if (EditorPrefs.GetBool("DeveloperMode", false)) - { - m.AddItem(multilineSelection ? s_GUIRunSelectedTests : s_GUIRunUntilFailed, - false, - data => - { - testFilter.testRepetitions = int.MaxValue; - RunTests(testFilter); - }, - ""); - - m.AddItem(multilineSelection ? s_GUIRunSelectedTests : s_GUIRun100Times, - false, - data => - { - testFilter.testRepetitions = 100; - RunTests(testFilter); - }, - ""); - } - } - else - m.AddDisabledItem(multilineSelection ? s_GUIRunSelectedTests : s_GUIRun, false); - - m.ShowAsContext(); - } - - private TestRunnerFilter GetSelectedTestsAsFilter(IEnumerable selectedIDs) - { - var namesToRun = new List(); - var exactNamesToRun = new List(); - var assembliesToRun = new List(); - foreach (var lineId in selectedIDs) - { - var line = m_TestListTree.FindItem(lineId); - if (line is TestTreeViewItem) - { - var testLine = line as TestTreeViewItem; - if (testLine.IsGroupNode && !testLine.FullName.Contains("+")) - { - if (testLine.parent != null && testLine.parent.displayName == "Invisible Root Item") - { - //Root node selected. Use an empty TestRunnerFilter to run every test - namesToRun.Clear(); - exactNamesToRun.Clear(); - assembliesToRun.Clear(); - break; - } - - if (testLine.FullName.EndsWith(".dll", StringComparison.OrdinalIgnoreCase)) - assembliesToRun.Add(TestRunnerFilter.AssemblyNameFromPath(testLine.FullName)); - else - namesToRun.Add(string.Format("^{0}$", testLine.FullName)); - } - else - exactNamesToRun.Add(testLine.FullName); - } - } - - var filter = new TestRunnerFilter - { - assemblyNames = assembliesToRun.ToArray(), - groupNames = namesToRun.ToArray(), - testNames = exactNamesToRun.ToArray(), - categoryNames = m_TestRunnerUIFilter.CategoryFilter - }; - return filter; - } - - private TestTreeViewItem GetSelectedTest() - { - foreach (var lineId in m_TestListState.selectedIDs) - { - var line = m_TestListTree.FindItem(lineId); - if (line is TestTreeViewItem) - { - return line as TestTreeViewItem; - } - } - return null; - } - - public abstract TestPlatform TestPlatform { get; } - - public void RebuildUIFilter() - { - m_TestRunnerUIFilter.UpdateCounters(newResultList); - if (m_TestRunnerUIFilter.IsFiltering) - { - m_TestListTree.ReloadData(); - } - } - - public void RepaintIfProjectPathChanged() - { - var path = TestListGUIHelper.GetActiveFolderPath(); - if (path != m_PreviousProjectPath) - { - m_PreviousProjectPath = path; - TestRunnerWindow.s_Instance.Repaint(); - } - - EditorApplication.update -= RepaintIfProjectPathChanged; - } - - protected abstract bool IsBusy(); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/Views/TestListGUIBase.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/Views/TestListGUIBase.cs.meta deleted file mode 100644 index 3bef151cd..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/GUI/Views/TestListGUIBase.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: b8abb41ceb6f62c45a00197ae59224c1 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/NUnitExtension.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/NUnitExtension.meta deleted file mode 100644 index 0c9988951..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/NUnitExtension.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 3f9202a39620f51418046c7754f215f0 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/NUnitExtension/Attributes.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/NUnitExtension/Attributes.meta deleted file mode 100644 index a5930f1ae..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/NUnitExtension/Attributes.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 96c503bf059df984c86eecf572370347 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/NUnitExtension/Attributes/AssetPipelineIgnore.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/NUnitExtension/Attributes/AssetPipelineIgnore.cs deleted file mode 100644 index e71b62c99..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/NUnitExtension/Attributes/AssetPipelineIgnore.cs +++ /dev/null @@ -1,63 +0,0 @@ -using System; -using NUnit.Framework; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; - -namespace UnityEditor.TestTools -{ - /// - /// Ignore attributes dedicated to Asset Import Pipeline backend version handling. - /// - internal static class AssetPipelineIgnore - { - internal enum AssetPipelineBackend - { - V1, - V2 - } - - /// - /// Ignore the test when running with the legacy Asset Import Pipeline V1 backend. - /// - internal class IgnoreInV1 : AssetPipelineIgnoreAttribute - { - public IgnoreInV1(string ignoreReason) : base(AssetPipelineBackend.V1, ignoreReason) {} - } - - /// - /// Ignore the test when running with the latest Asset Import Pipeline V2 backend. - /// - internal class IgnoreInV2 : AssetPipelineIgnoreAttribute - { - public IgnoreInV2(string ignoreReason) : base(AssetPipelineBackend.V2, ignoreReason) {} - } - - [AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Method)] - internal class AssetPipelineIgnoreAttribute : NUnitAttribute, IApplyToTest - { - readonly string m_IgnoreReason; - readonly AssetPipelineBackend m_IgnoredBackend; - static readonly AssetPipelineBackend k_ActiveBackend = AssetDatabase.IsV2Enabled() - ? AssetPipelineBackend.V2 - : AssetPipelineBackend.V1; - - static string ActiveBackendName = Enum.GetName(typeof(AssetPipelineBackend), k_ActiveBackend); - - public AssetPipelineIgnoreAttribute(AssetPipelineBackend backend, string ignoreReason) - { - m_IgnoredBackend = backend; - m_IgnoreReason = ignoreReason; - } - - public void ApplyToTest(Test test) - { - if (k_ActiveBackend == m_IgnoredBackend) - { - test.RunState = RunState.Ignored; - var skipReason = string.Format("Not supported by asset pipeline {0} backend {1}", ActiveBackendName, m_IgnoreReason); - test.Properties.Add(PropertyNames.SkipReason, skipReason); - } - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/NUnitExtension/Attributes/AssetPipelineIgnore.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/NUnitExtension/Attributes/AssetPipelineIgnore.cs.meta deleted file mode 100644 index 5f7207f1b..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/NUnitExtension/Attributes/AssetPipelineIgnore.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: b88caca58e05ee74486d86fb404c48e2 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/NUnitExtension/TestRunnerStateSerializer.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/NUnitExtension/TestRunnerStateSerializer.cs deleted file mode 100644 index a24190e4d..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/NUnitExtension/TestRunnerStateSerializer.cs +++ /dev/null @@ -1,162 +0,0 @@ -using System; -using System.Reflection; -using System.Text; -using System.Collections.Generic; -using UnityEngine; -using UnityEngine.TestRunner.NUnitExtensions.Runner; -using UnityEngine.TestTools.NUnitExtensions; -using UnityEngine.TestTools.Logging; - -namespace UnityEditor.TestTools.TestRunner -{ - [Serializable] - internal class TestRunnerStateSerializer : IStateSerializer - { - private const BindingFlags Flags = BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance | BindingFlags.FlattenHierarchy; - - [SerializeField] - private HideFlags m_OriginalHideFlags; - - [SerializeField] - private bool m_ShouldRestore; - - [SerializeField] - private string m_TestObjectTypeName; - - [SerializeField] - private ScriptableObject m_TestObject; - - [SerializeField] - private string m_TestObjectTxt; - - [SerializeField] - private long StartTicks; - - [SerializeField] - private double StartTimeOA; - - [SerializeField] - private string output; - - [SerializeField] - private LogMatch[] m_ExpectedLogs; - - public bool ShouldRestore() - { - return m_ShouldRestore; - } - - public void SaveContext() - { - var currentContext = UnityTestExecutionContext.CurrentContext; - - if (currentContext.TestObject != null) - { - m_TestObjectTypeName = currentContext.TestObject.GetType().AssemblyQualifiedName; - m_TestObject = null; - m_TestObjectTxt = null; - if (currentContext.TestObject is ScriptableObject) - { - m_TestObject = currentContext.TestObject as ScriptableObject; - m_OriginalHideFlags = m_TestObject.hideFlags; - m_TestObject.hideFlags |= HideFlags.DontSave; - } - else - { - m_TestObjectTxt = JsonUtility.ToJson(currentContext.TestObject); - } - } - - output = currentContext.CurrentResult.Output; - StartTicks = currentContext.StartTicks; - StartTimeOA = currentContext.StartTime.ToOADate(); - if (LogScope.HasCurrentLogScope()) - { - m_ExpectedLogs = LogScope.Current.ExpectedLogs.ToArray(); - } - - m_ShouldRestore = true; - } - - public void RestoreContext() - { - var currentContext = UnityTestExecutionContext.CurrentContext; - - var outputProp = currentContext.CurrentResult.GetType().BaseType.GetField("_output", Flags); - (outputProp.GetValue(currentContext.CurrentResult) as StringBuilder).Append(output); - - currentContext.StartTicks = StartTicks; - currentContext.StartTime = DateTime.FromOADate(StartTimeOA); - if (LogScope.HasCurrentLogScope()) - { - LogScope.Current.ExpectedLogs = new Queue(m_ExpectedLogs); - } - - m_ShouldRestore = false; - } - - public bool CanRestoreFromScriptableObject(Type requestedType) - { - if (m_TestObject == null) - { - return false; - } - return m_TestObjectTypeName == requestedType.AssemblyQualifiedName; - } - - public ScriptableObject RestoreScriptableObjectInstance() - { - if (m_TestObject == null) - { - Debug.LogError("No object to restore"); - return null; - } - EditorApplication.playModeStateChanged += OnPlayModeStateChanged; - var temp = m_TestObject; - m_TestObject = null; - m_TestObjectTypeName = null; - return temp; - } - - public bool CanRestoreFromJson(Type requestedType) - { - if (string.IsNullOrEmpty(m_TestObjectTxt)) - { - return false; - } - return m_TestObjectTypeName == requestedType.AssemblyQualifiedName; - } - - public void RestoreClassFromJson(ref object instance) - { - if (string.IsNullOrEmpty(m_TestObjectTxt)) - { - Debug.LogWarning("No JSON representation to restore"); - return; - } - JsonUtility.FromJsonOverwrite(m_TestObjectTxt, instance); - m_TestObjectTxt = null; - m_TestObjectTypeName = null; - } - - private void OnPlayModeStateChanged(PlayModeStateChange state) - { - if (m_TestObject == null) - { - EditorApplication.playModeStateChanged -= OnPlayModeStateChanged; - return; - } - - //We set the DontSave flag here because the ScriptableObject would be nulled right before entering EditMode - if (state == PlayModeStateChange.ExitingPlayMode) - { - m_TestObject.hideFlags |= HideFlags.DontSave; - } - else if (state == PlayModeStateChange.EnteredEditMode) - { - m_TestObject.hideFlags = m_OriginalHideFlags; - EditorApplication.playModeStateChanged -= OnPlayModeStateChanged; - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/NUnitExtension/TestRunnerStateSerializer.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/NUnitExtension/TestRunnerStateSerializer.cs.meta deleted file mode 100644 index 7d36e9d19..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/NUnitExtension/TestRunnerStateSerializer.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 124533853216377448d786fd7c725701 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/RequireApiProfileAttribute.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/RequireApiProfileAttribute.cs deleted file mode 100644 index e99d4524f..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/RequireApiProfileAttribute.cs +++ /dev/null @@ -1,32 +0,0 @@ -using System; -using System.Linq; -using NUnit.Framework; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; - -namespace UnityEditor.TestTools -{ - [AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Method)] - internal class RequireApiProfileAttribute : NUnitAttribute, IApplyToTest - { - public ApiCompatibilityLevel[] apiProfiles { get; private set; } - - public RequireApiProfileAttribute(params ApiCompatibilityLevel[] apiProfiles) - { - this.apiProfiles = apiProfiles; - } - - void IApplyToTest.ApplyToTest(Test test) - { - test.Properties.Add(PropertyNames.Category, string.Format("ApiProfile({0})", string.Join(", ", apiProfiles.Select(p => p.ToString()).OrderBy(p => p).ToArray()))); - ApiCompatibilityLevel testProfile = PlayerSettings.GetApiCompatibilityLevel(EditorUserBuildSettings.activeBuildTargetGroup); - - if (!apiProfiles.Contains(testProfile)) - { - string skipReason = "Skipping test as it requires a compatible api profile set: " + string.Join(", ", apiProfiles.Select(p => p.ToString()).ToArray()); - test.RunState = RunState.Skipped; - test.Properties.Add(PropertyNames.SkipReason, skipReason); - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/RequireApiProfileAttribute.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/RequireApiProfileAttribute.cs.meta deleted file mode 100644 index 66d03bd4a..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/RequireApiProfileAttribute.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: a667f6654ad7a9548b8c8e68b51c8895 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/RequirePlatformSupportAttribute.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/RequirePlatformSupportAttribute.cs deleted file mode 100644 index 321a0fe05..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/RequirePlatformSupportAttribute.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System; -using System.Linq; -using NUnit.Framework; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; - -namespace UnityEditor.TestTools -{ - [AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Method)] - public class RequirePlatformSupportAttribute : NUnitAttribute, IApplyToTest - { - public RequirePlatformSupportAttribute(params BuildTarget[] platforms) - { - this.platforms = platforms; - } - - public BuildTarget[] platforms { get; private set; } - - void IApplyToTest.ApplyToTest(Test test) - { - test.Properties.Add(PropertyNames.Category, string.Format("RequirePlatformSupport({0})", string.Join(", ", platforms.Select(p => p.ToString()).OrderBy(p => p).ToArray()))); - - if (!platforms.All(p => BuildPipeline.IsBuildTargetSupported(BuildTargetGroup.Unknown, p))) - { - var missingPlatforms = platforms.Where(p => !BuildPipeline.IsBuildTargetSupported(BuildTargetGroup.Unknown, p)).Select(p => p.ToString()).ToArray(); - string skipReason = "Test cannot be run as it requires support for the following platforms to be installed: " + string.Join(", ", missingPlatforms); - - test.RunState = RunState.Skipped; - test.Properties.Add(PropertyNames.SkipReason, skipReason); - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/RequirePlatformSupportAttribute.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/RequirePlatformSupportAttribute.cs.meta deleted file mode 100644 index 849305802..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/RequirePlatformSupportAttribute.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: d2146428d3f1ad54eb7326c9a44b3284 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestBuildAssemblyFilter.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestBuildAssemblyFilter.cs deleted file mode 100644 index 4f0a04133..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestBuildAssemblyFilter.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System.Linq; -using UnityEditor.Build; - -namespace UnityEditor.TestRunner -{ - internal class TestBuildAssemblyFilter : IFilterBuildAssemblies - { - private const string nunitAssemblyName = "nunit.framework"; - private const string unityTestRunnerAssemblyName = "UnityEngine.TestRunner"; - - public int callbackOrder { get; } - public string[] OnFilterAssemblies(BuildOptions buildOptions, string[] assemblies) - { - if ((buildOptions & BuildOptions.IncludeTestAssemblies) == BuildOptions.IncludeTestAssemblies || PlayerSettings.playModeTestRunnerEnabled) - { - return assemblies; - } - return assemblies.Where(x => !x.Contains(nunitAssemblyName) && !x.Contains(unityTestRunnerAssemblyName)).ToArray(); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestBuildAssemblyFilter.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestBuildAssemblyFilter.cs.meta deleted file mode 100644 index f3cd3bd2d..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestBuildAssemblyFilter.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 3411e19edd44cfd46b548b058c3bc36c -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers.meta deleted file mode 100644 index c6a951b37..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: d64d92e4f04a13e4b99ea8d48e9e8ae9 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/AttributeFinderBase.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/AttributeFinderBase.cs deleted file mode 100644 index 0c069e588..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/AttributeFinderBase.cs +++ /dev/null @@ -1,95 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using NUnit.Framework.Interfaces; -using UnityEngine; -using UnityEngine.TestTools; - -namespace UnityEditor.TestTools.TestRunner -{ - internal abstract class AttributeFinderBase - { - public abstract IEnumerable Search(ITest tests, ITestFilter filter, RuntimePlatform testTargetPlatform); - } - - internal abstract class AttributeFinderBase : AttributeFinderBase where T2 : Attribute - { - private readonly Func m_TypeSelector; - protected AttributeFinderBase(Func typeSelector) - { - m_TypeSelector = typeSelector; - } - - public override IEnumerable Search(ITest tests, ITestFilter filter, RuntimePlatform testTargetPlatform) - { - var selectedTests = new List(); - GetMatchingTests(tests, filter, ref selectedTests, testTargetPlatform); - - var result = new List(); - result.AddRange(GetTypesFromPrebuildAttributes(selectedTests)); - result.AddRange(GetTypesFromInterface(selectedTests, testTargetPlatform)); - - return result.Distinct(); - } - - private static void GetMatchingTests(ITest tests, ITestFilter filter, ref List resultList, RuntimePlatform testTargetPlatform) - { - foreach (var test in tests.Tests) - { - if (IsTestEnabledOnPlatform(test, testTargetPlatform)) - { - if (test.IsSuite) - { - GetMatchingTests(test, filter, ref resultList, testTargetPlatform); - } - else - { - if (filter.Pass(test)) - resultList.Add(test); - } - } - } - } - - private static bool IsTestEnabledOnPlatform(ITest test, RuntimePlatform testTargetPlatform) - { - if (test.Method == null) - { - return true; - } - - var attributesFromMethods = test.Method.GetCustomAttributes(true).Select(attribute => attribute); - var attributesFromTypes = test.Method.TypeInfo.GetCustomAttributes(true).Select(attribute => attribute); - - if (!attributesFromMethods.All(a => a.IsPlatformSupported(testTargetPlatform))) - { - return false; - } - - if (!attributesFromTypes.All(a => a.IsPlatformSupported(testTargetPlatform))) - { - return false; - } - - return true; - } - - private IEnumerable GetTypesFromPrebuildAttributes(IEnumerable tests) - { - var attributesFromMethods = tests.SelectMany(t => t.Method.GetCustomAttributes(true).Select(attribute => attribute)); - var attributesFromTypes = tests.SelectMany(t => t.Method.TypeInfo.GetCustomAttributes(true).Select(attribute => attribute)); - - var result = new List(); - result.AddRange(attributesFromMethods); - result.AddRange(attributesFromTypes); - - return result.Select(m_TypeSelector).Where(type => type != null); - } - - private static IEnumerable GetTypesFromInterface(IEnumerable selectedTests, RuntimePlatform testTargetPlatform) - { - var typesWithInterfaces = selectedTests.Where(t => typeof(T1).IsAssignableFrom(t.Method.TypeInfo.Type) && IsTestEnabledOnPlatform(t, testTargetPlatform)); - return typesWithInterfaces.Select(t => t.Method.TypeInfo.Type); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/AttributeFinderBase.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/AttributeFinderBase.cs.meta deleted file mode 100644 index 19986f0ec..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/AttributeFinderBase.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 5d4de3d4682a8d641907cc75e4fb950e -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/EditModeLauncher.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/EditModeLauncher.cs deleted file mode 100644 index d8314d3c8..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/EditModeLauncher.cs +++ /dev/null @@ -1,141 +0,0 @@ -using System.Collections.Generic; -using NUnit.Framework.Interfaces; -using UnityEditor.SceneManagement; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine; -using UnityEngine.SceneManagement; -using UnityEngine.TestTools; -using UnityEngine.TestTools.TestRunner; -using UnityEngine.TestTools.TestRunner.GUI; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class EditModeLauncher : TestLauncherBase - { - public static bool IsRunning; - private readonly EditModeRunner m_EditModeRunner; - - public EditModeLauncher(TestRunnerFilter filter, TestPlatform platform) - { - m_EditModeRunner = ScriptableObject.CreateInstance(); - m_EditModeRunner.UnityTestAssemblyRunnerFactory = new UnityTestAssemblyRunnerFactory(); - m_EditModeRunner.Init(filter, platform); - } - - public override void Run() - { - // Give user chance to save the changes to their currently open scene because we close it and load our own - var cancelled = !EditorSceneManager.SaveCurrentModifiedScenesIfUserWantsTo(); - if (cancelled) - return; - - IsRunning = true; - var exceptionThrown = ExecutePreBuildSetupMethods(m_EditModeRunner.GetLoadedTests(), m_EditModeRunner.GetFilter()); - if (exceptionThrown) - { - CallbacksDelegator.instance.RunFailed("Run Failed: One or more errors in a prebuild setup. See the editor log for details."); - return; - } - - var undoGroup = Undo.GetCurrentGroup(); - SceneSetup[] previousSceneSetup; - if (!OpenNewScene(out previousSceneSetup)) - return; - - var callback = AddEventHandler(); - callback.previousSceneSetup = previousSceneSetup; - callback.undoGroup = undoGroup; - callback.runner = m_EditModeRunner; - AddEventHandler(); - - m_EditModeRunner.Run(); - AddEventHandler(); - } - - private static bool OpenNewScene(out SceneSetup[] previousSceneSetup) - { - previousSceneSetup = null; - - var sceneCount = SceneManager.sceneCount; - - var scene = SceneManager.GetSceneAt(0); - var isSceneNotPersisted = string.IsNullOrEmpty(scene.path); - - if (sceneCount == 1 && isSceneNotPersisted) - { - EditorSceneManager.NewScene(NewSceneSetup.DefaultGameObjects, NewSceneMode.Single); - return true; - } - RemoveUntitledScenes(); - - // In case the user chose not to save the dirty scenes we reload them - ReloadUnsavedDirtyScene(); - - previousSceneSetup = EditorSceneManager.GetSceneManagerSetup(); - - scene = EditorSceneManager.NewScene(NewSceneSetup.EmptyScene, NewSceneMode.Additive); - SceneManager.SetActiveScene(scene); - - return true; - } - - private static void ReloadUnsavedDirtyScene() - { - for (var i = 0; i < SceneManager.sceneCount; i++) - { - var scene = SceneManager.GetSceneAt(i); - var isSceneNotPersisted = string.IsNullOrEmpty(scene.path); - var isSceneDirty = scene.isDirty; - if (isSceneNotPersisted && isSceneDirty) - { - EditorSceneManager.ReloadScene(scene); - } - } - } - - private static void RemoveUntitledScenes() - { - int sceneCount = SceneManager.sceneCount; - - var scenesToClose = new List(); - for (var i = 0; i < sceneCount; i++) - { - var scene = SceneManager.GetSceneAt(i); - var isSceneNotPersisted = string.IsNullOrEmpty(scene.path); - if (isSceneNotPersisted) - { - scenesToClose.Add(scene); - } - } - foreach (Scene scene in scenesToClose) - { - EditorSceneManager.CloseScene(scene, true); - } - } - - public class BackgroundListener : ScriptableObject, ITestRunnerListener - { - public void RunStarted(ITest testsToRun) - { - } - - public void RunFinished(ITestResult testResults) - { - IsRunning = false; - } - - public void TestStarted(ITest test) - { - } - - public void TestFinished(ITestResult result) - { - } - } - - public T AddEventHandler() where T : ScriptableObject, ITestRunnerListener - { - return m_EditModeRunner.AddEventHandler(); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/EditModeLauncher.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/EditModeLauncher.cs.meta deleted file mode 100644 index 694d7d6a5..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/EditModeLauncher.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: ac68f5ae37c8957468562b8da42f9984 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/EditModeLauncherContextSettings.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/EditModeLauncherContextSettings.cs deleted file mode 100644 index e20305cd1..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/EditModeLauncherContextSettings.cs +++ /dev/null @@ -1,31 +0,0 @@ -using System; -using UnityEngine; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class EditModeLauncherContextSettings : IDisposable - { - private bool m_RunInBackground; - - public EditModeLauncherContextSettings() - { - SetupProjectParameters(); - } - - public void Dispose() - { - CleanupProjectParameters(); - } - - private void SetupProjectParameters() - { - m_RunInBackground = Application.runInBackground; - Application.runInBackground = true; - } - - private void CleanupProjectParameters() - { - Application.runInBackground = m_RunInBackground; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/EditModeLauncherContextSettings.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/EditModeLauncherContextSettings.cs.meta deleted file mode 100644 index 2bed8fde4..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/EditModeLauncherContextSettings.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: a582090813554df479fb9ca03e9857d3 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup.meta deleted file mode 100644 index 494738260..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ebc4d20cc106cea49b1df1153f0b3b5e -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/AndroidPlatformSetup.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/AndroidPlatformSetup.cs deleted file mode 100644 index 9f39c0aa6..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/AndroidPlatformSetup.cs +++ /dev/null @@ -1,62 +0,0 @@ -using System; -using UnityEngine; -using System.Net; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class AndroidPlatformSetup : IPlatformSetup - { - private string m_oldApplicationIdentifier; - private string m_oldDeviceSocketAddress; - [SerializeField] - private bool m_Stripping; - - public void Setup() - { - m_oldApplicationIdentifier = PlayerSettings.GetApplicationIdentifier(BuildTargetGroup.Android); - PlayerSettings.SetApplicationIdentifier(BuildTargetGroup.Android, "com.UnityTestRunner.UnityTestRunner"); - - m_oldDeviceSocketAddress = EditorUserBuildSettings.androidDeviceSocketAddress; - var androidDeviceConnection = Environment.GetEnvironmentVariable("ANDROID_DEVICE_CONNECTION"); - EditorUserBuildSettings.waitForPlayerConnection = true; - if (androidDeviceConnection != null) - { - EditorUserBuildSettings.androidDeviceSocketAddress = androidDeviceConnection; - } - m_Stripping = PlayerSettings.stripEngineCode; - PlayerSettings.stripEngineCode = false; - } - - public void PostBuildAction() - { - PlayerSettings.stripEngineCode = m_Stripping; - } - - public void PostSuccessfulBuildAction() - { - var connectionResult = -1; - var maxTryCount = 10; - var tryCount = maxTryCount; - while (tryCount-- > 0 && connectionResult == -1) - { - connectionResult = EditorConnectionInternal.ConnectPlayerProxy(IPAddress.Loopback.ToString(), 34999); - if (EditorUtility.DisplayCancelableProgressBar("Editor Connection", "Connecting to the player", - 1 - ((float)tryCount / maxTryCount))) - { - EditorUtility.ClearProgressBar(); - throw new TestLaunchFailedException(); - } - } - EditorUtility.ClearProgressBar(); - if (connectionResult == -1) - throw new TestLaunchFailedException( - "Timed out trying to connect to the player. Player failed to launch or crashed soon after launching"); - } - - public void CleanUp() - { - EditorUserBuildSettings.androidDeviceSocketAddress = m_oldDeviceSocketAddress; - PlayerSettings.SetApplicationIdentifier(BuildTargetGroup.Android, m_oldApplicationIdentifier); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/AndroidPlatformSetup.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/AndroidPlatformSetup.cs.meta deleted file mode 100644 index 6e18a7c7d..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/AndroidPlatformSetup.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 961642509dec50b44a293d26240140ec -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/ApplePlatformSetup.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/ApplePlatformSetup.cs deleted file mode 100644 index 59cc6889c..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/ApplePlatformSetup.cs +++ /dev/null @@ -1,38 +0,0 @@ -using System; -using System.Diagnostics; -using UnityEngine; - -namespace UnityEditor.TestTools.TestRunner -{ - [Serializable] - internal class ApplePlatformSetup : IPlatformSetup - { - [SerializeField] - private bool m_Stripping; - - public ApplePlatformSetup(BuildTarget buildTarget) - { - } - - public void Setup() - { - // Camera and fonts are stripped out and app crashes on iOS when test runner is trying to add a scene with... camera and text - m_Stripping = PlayerSettings.stripEngineCode; - PlayerSettings.stripEngineCode = false; - } - - public void PostBuildAction() - { - // Restoring player setting as early as possible - PlayerSettings.stripEngineCode = m_Stripping; - } - - public void PostSuccessfulBuildAction() - { - } - - public void CleanUp() - { - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/ApplePlatformSetup.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/ApplePlatformSetup.cs.meta deleted file mode 100644 index 36f22a6b0..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/ApplePlatformSetup.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: f6c189a159d3bde4c964cee562e508ea -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/IPlatformSetup.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/IPlatformSetup.cs deleted file mode 100644 index 0cbcb33c2..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/IPlatformSetup.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace UnityEditor.TestTools.TestRunner -{ - internal interface IPlatformSetup - { - void Setup(); - void PostBuildAction(); - void PostSuccessfulBuildAction(); - void CleanUp(); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/IPlatformSetup.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/IPlatformSetup.cs.meta deleted file mode 100644 index 94405b535..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/IPlatformSetup.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 9d614808f9add8a4f8e4860db2c7af0d -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/LuminPlatformSetup.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/LuminPlatformSetup.cs deleted file mode 100644 index 1d0380928..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/LuminPlatformSetup.cs +++ /dev/null @@ -1,46 +0,0 @@ -using System; -using System.Threading; -using UnityEngine; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class LuminPlatformSetup : IPlatformSetup - { - private const string kDeviceAddress = "127.0.0.1"; - private const int kDevicePort = 55000; - - public void Setup() - { - } - - public void PostBuildAction() - { - } - - public void PostSuccessfulBuildAction() - { - var connectionResult = -1; - var maxTryCount = 100; - var tryCount = maxTryCount; - while (tryCount-- > 0 && connectionResult == -1) - { - Thread.Sleep(1000); - connectionResult = EditorConnectionInternal.ConnectPlayerProxy(kDeviceAddress, kDevicePort); - if (EditorUtility.DisplayCancelableProgressBar("Editor Connection", "Connecting to the player", - 1 - ((float)tryCount / maxTryCount))) - { - EditorUtility.ClearProgressBar(); - throw new TestLaunchFailedException(); - } - } - EditorUtility.ClearProgressBar(); - if (connectionResult == -1) - throw new TestLaunchFailedException( - "Timed out trying to connect to the player. Player failed to launch or crashed soon after launching"); - } - - public void CleanUp() - { - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/LuminPlatformSetup.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/LuminPlatformSetup.cs.meta deleted file mode 100644 index 9e4dcc520..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/LuminPlatformSetup.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: c38ae0585d6a55042a2d678330689685 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/PlatformSpecificSetup.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/PlatformSpecificSetup.cs deleted file mode 100644 index 7db58016c..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/PlatformSpecificSetup.cs +++ /dev/null @@ -1,105 +0,0 @@ -using System; -using System.Collections.Generic; -using UnityEngine; - -namespace UnityEditor.TestTools.TestRunner -{ - [Serializable] - internal class PlatformSpecificSetup - { - [SerializeField] - private ApplePlatformSetup m_AppleiOSPlatformSetup = new ApplePlatformSetup(BuildTarget.iOS); - [SerializeField] - private ApplePlatformSetup m_AppleTvOSPlatformSetup = new ApplePlatformSetup(BuildTarget.tvOS); - [SerializeField] - private XboxOnePlatformSetup m_XboxOnePlatformSetup = new XboxOnePlatformSetup(); - [SerializeField] - private AndroidPlatformSetup m_AndroidPlatformSetup = new AndroidPlatformSetup(); - [SerializeField] - private SwitchPlatformSetup m_SwitchPlatformSetup = new SwitchPlatformSetup(); - - [SerializeField] - private UwpPlatformSetup m_UwpPlatformSetup = new UwpPlatformSetup(); - - [SerializeField] - private LuminPlatformSetup m_LuminPlatformSetup = new LuminPlatformSetup(); - - - private IDictionary m_SetupTypes; - - [SerializeField] - private BuildTarget m_Target; - - public PlatformSpecificSetup() - { - } - - public PlatformSpecificSetup(BuildTarget target) - { - m_Target = target; - } - - public void Setup() - { - var dictionary = GetSetup(); - - if (!dictionary.ContainsKey(m_Target)) - { - return; - } - - dictionary[m_Target].Setup(); - } - - public void PostBuildAction() - { - var dictionary = GetSetup(); - - if (!dictionary.ContainsKey(m_Target)) - { - return; - } - - dictionary[m_Target].PostBuildAction(); - } - - public void PostSuccessfulBuildAction() - { - var dictionary = GetSetup(); - - if (!dictionary.ContainsKey(m_Target)) - { - return; - } - - dictionary[m_Target].PostSuccessfulBuildAction(); - } - - public void CleanUp() - { - var dictionary = GetSetup(); - - if (!dictionary.ContainsKey(m_Target)) - { - return; - } - - dictionary[m_Target].CleanUp(); - } - - private IDictionary GetSetup() - { - m_SetupTypes = new Dictionary() - { - {BuildTarget.iOS, m_AppleiOSPlatformSetup}, - {BuildTarget.tvOS, m_AppleTvOSPlatformSetup}, - {BuildTarget.XboxOne, m_XboxOnePlatformSetup}, - {BuildTarget.Android, m_AndroidPlatformSetup}, - {BuildTarget.WSAPlayer, m_UwpPlatformSetup}, - {BuildTarget.Lumin, m_LuminPlatformSetup}, - {BuildTarget.Switch, m_SwitchPlatformSetup} - }; - return m_SetupTypes; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/PlatformSpecificSetup.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/PlatformSpecificSetup.cs.meta deleted file mode 100644 index a250a1a3a..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/PlatformSpecificSetup.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 6cccd50ebf7384242bda4d7bcb282ebf -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/SwitchPlatformSetup.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/SwitchPlatformSetup.cs deleted file mode 100644 index 20cabe0f9..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/SwitchPlatformSetup.cs +++ /dev/null @@ -1,33 +0,0 @@ -namespace UnityEditor.TestTools.TestRunner -{ - internal class SwitchPlatformSetup : IPlatformSetup - { - public void Setup() - { - EditorUserBuildSettings.switchCreateRomFile = true; - EditorUserBuildSettings.switchNVNGraphicsDebugger = false; - EditorUserBuildSettings.switchNVNDrawValidation = true; // catches more graphics errors - EditorUserBuildSettings.development = true; - EditorUserBuildSettings.switchRedirectWritesToHostMount = true; - - // We can use these when more debugging is required: - //EditorUserBuildSettings.switchNVNDrawValidation = false; // cannot be used with shader debug - //EditorUserBuildSettings.switchNVNGraphicsDebugger = true; - //EditorUserBuildSettings.switchNVNShaderDebugging = true; - //EditorUserBuildSettings.switchCreateSolutionFile = true; // for shorter iteration time - //EditorUserBuildSettings.allowDebugging = true; // managed debugger can be attached - } - - public void PostBuildAction() - { - } - - public void PostSuccessfulBuildAction() - { - } - - public void CleanUp() - { - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/SwitchPlatformSetup.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/SwitchPlatformSetup.cs.meta deleted file mode 100644 index fb9dd0546..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/SwitchPlatformSetup.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: adf7bea9401c1834380d55601add6cfb -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/UwpPlatformSetup.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/UwpPlatformSetup.cs deleted file mode 100644 index 6eb634a53..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/UwpPlatformSetup.cs +++ /dev/null @@ -1,48 +0,0 @@ -using System; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class UwpPlatformSetup : IPlatformSetup - { - private const string k_SettingsBuildConfiguration = "BuildConfiguration"; - private bool m_InternetClientServer; - private bool m_PrivateNetworkClientServer; - - public void Setup() - { - m_InternetClientServer = PlayerSettings.WSA.GetCapability(PlayerSettings.WSACapability.InternetClientServer); - m_PrivateNetworkClientServer = PlayerSettings.WSA.GetCapability(PlayerSettings.WSACapability.PrivateNetworkClientServer); - PlayerSettings.WSA.SetCapability(PlayerSettings.WSACapability.InternetClientServer, true); - PlayerSettings.WSA.SetCapability(PlayerSettings.WSACapability.PrivateNetworkClientServer, true); - - // This setting is initialized only when Window Store App is selected from the Build Settings window, and - // is typically an empty strings when running tests via UTR on the command-line. - bool wsaSettingNotInitialized = string.IsNullOrEmpty(EditorUserBuildSettings.wsaArchitecture); - - // If WSA build settings aren't fully initialized or running from a build machine, specify a default build configuration. - // Otherwise we can use the existing configuration specified by the user in Build Settings. - if (!string.IsNullOrEmpty(Environment.GetEnvironmentVariable("UNITY_THISISABUILDMACHINE")) || wsaSettingNotInitialized) - { - EditorUserBuildSettings.wsaSubtarget = WSASubtarget.PC; - EditorUserBuildSettings.wsaArchitecture = "x64"; - EditorUserBuildSettings.SetPlatformSettings(BuildPipeline.GetBuildTargetName(BuildTarget.WSAPlayer), k_SettingsBuildConfiguration, WSABuildType.Debug.ToString()); - EditorUserBuildSettings.wsaUWPBuildType = WSAUWPBuildType.ExecutableOnly; - PlayerSettings.SetIl2CppCompilerConfiguration(BuildTargetGroup.WSA, Il2CppCompilerConfiguration.Debug); - } - } - - public void PostBuildAction() - { - } - - public void PostSuccessfulBuildAction() - { - } - - public void CleanUp() - { - PlayerSettings.WSA.SetCapability(PlayerSettings.WSACapability.InternetClientServer, m_InternetClientServer); - PlayerSettings.WSA.SetCapability(PlayerSettings.WSACapability.PrivateNetworkClientServer, m_PrivateNetworkClientServer); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/UwpPlatformSetup.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/UwpPlatformSetup.cs.meta deleted file mode 100644 index 751ac7e96..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/UwpPlatformSetup.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 667c6ad86a0b7a548aaa5c287f2c2861 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/XboxOnePlatformSetup.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/XboxOnePlatformSetup.cs deleted file mode 100644 index 0897dc558..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/XboxOnePlatformSetup.cs +++ /dev/null @@ -1,43 +0,0 @@ -namespace UnityEditor.TestTools.TestRunner -{ - internal class XboxOnePlatformSetup : IPlatformSetup - { - private XboxOneDeployMethod oldXboxOneDeployMethod; - private XboxOneDeployDrive oldXboxOneDeployDrive; - private string oldXboxOneAdditionalDebugPorts; - - public void Setup() - { - oldXboxOneDeployMethod = EditorUserBuildSettings.xboxOneDeployMethod; - oldXboxOneDeployDrive = EditorUserBuildSettings.xboxOneDeployDrive; - oldXboxOneAdditionalDebugPorts = EditorUserBuildSettings.xboxOneAdditionalDebugPorts; - - EditorUserBuildSettings.xboxOneDeployMethod = XboxOneDeployMethod.Package; - EditorUserBuildSettings.xboxOneDeployDrive = XboxOneDeployDrive.Default; - - // This causes the XboxOne post processing systems to open this port in your package manifest. - // In addition it will open the ephemeral range for debug connections as well. - // Failure to do this will cause connection problems. - EditorUserBuildSettings.xboxOneAdditionalDebugPorts = "34999"; - } - - public void PostBuildAction() - { - } - - public void PostSuccessfulBuildAction() - { - } - - public void CleanUp() - { - EditorUserBuildSettings.xboxOneDeployMethod = oldXboxOneDeployMethod; - EditorUserBuildSettings.xboxOneDeployDrive = oldXboxOneDeployDrive; - - // This causes the XboxOne post processing systems to open this port in your package manifest. - // In addition it will open the ephemeral range for debug connections as well. - // Failure to do this will cause connection problems. - EditorUserBuildSettings.xboxOneAdditionalDebugPorts = oldXboxOneAdditionalDebugPorts; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/XboxOnePlatformSetup.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/XboxOnePlatformSetup.cs.meta deleted file mode 100644 index 771c8538d..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/XboxOnePlatformSetup.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: aed7ab02155e43341a2dbcb7bc17c160 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlayerLauncher.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlayerLauncher.cs deleted file mode 100644 index 7655d4d85..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlayerLauncher.cs +++ /dev/null @@ -1,185 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using UnityEditor; -using UnityEditor.TestRunner.TestLaunchers; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine; -using UnityEngine.SceneManagement; -using UnityEngine.TestTools.TestRunner; -using UnityEngine.TestTools.TestRunner.Callbacks; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class TestLaunchFailedException : Exception - { - public TestLaunchFailedException() {} - public TestLaunchFailedException(string message) : base(message) {} - } - - [Serializable] - internal class PlayerLauncher : RuntimeTestLauncherBase - { - private readonly PlaymodeTestsControllerSettings m_Settings; - private readonly BuildTarget m_TargetPlatform; - private string m_TempBuildLocation; - private ITestRunSettings m_OverloadTestRunSettings; - - public PlayerLauncher(PlaymodeTestsControllerSettings settings, BuildTarget? targetPlatform, ITestRunSettings overloadTestRunSettings) - { - m_Settings = settings; - m_TargetPlatform = targetPlatform ?? EditorUserBuildSettings.activeBuildTarget; - m_OverloadTestRunSettings = overloadTestRunSettings; - } - - protected override RuntimePlatform? TestTargetPlatform - { - get { return BuildTargetConverter.TryConvertToRuntimePlatform(m_TargetPlatform); } - } - - public override void Run() - { - var editorConnectionTestCollector = RemoteTestRunController.instance; - editorConnectionTestCollector.hideFlags = HideFlags.HideAndDontSave; - editorConnectionTestCollector.Init(m_TargetPlatform); - - var remotePlayerLogController = RemotePlayerLogController.instance; - remotePlayerLogController.hideFlags = HideFlags.HideAndDontSave; - - using (var settings = new PlayerLauncherContextSettings(m_OverloadTestRunSettings)) - { - var sceneName = CreateSceneName(); - var scene = PrepareScene(sceneName); - - var filter = m_Settings.filter.BuildNUnitFilter(); - var runner = LoadTests(filter); - var exceptionThrown = ExecutePreBuildSetupMethods(runner.LoadedTest, filter); - if (exceptionThrown) - { - ReopenOriginalScene(m_Settings.originalScene); - AssetDatabase.DeleteAsset(sceneName); - CallbacksDelegator.instance.RunFailed("Run Failed: One or more errors in a prebuild setup. See the editor log for details."); - return; - } - - var playerBuildOptions = GetBuildOptions(scene); - - var success = BuildAndRunPlayer(playerBuildOptions); - editorConnectionTestCollector.PostBuildAction(); - ExecutePostBuildCleanupMethods(runner.LoadedTest, filter); - - ReopenOriginalScene(m_Settings.originalScene); - AssetDatabase.DeleteAsset(sceneName); - - if (!success) - { - ScriptableObject.DestroyImmediate(editorConnectionTestCollector); - Debug.LogError("Player build failed"); - throw new TestLaunchFailedException("Player build failed"); - } - - editorConnectionTestCollector.PostSuccessfulBuildAction(); - } - } - - public Scene PrepareScene(string sceneName) - { - var scene = CreateBootstrapScene(sceneName, runner => - { - runner.AddEventHandlerMonoBehaviour(); - runner.settings = m_Settings; - runner.AddEventHandlerMonoBehaviour(); - }); - return scene; - } - - private static bool BuildAndRunPlayer(PlayerLauncherBuildOptions buildOptions) - { - Debug.LogFormat(LogType.Log, LogOption.NoStacktrace, null, "Building player with following options:\n{0}", buildOptions); - - - // Android has to be in listen mode to establish player connection - if (buildOptions.BuildPlayerOptions.target == BuildTarget.Android) - { - buildOptions.BuildPlayerOptions.options &= ~BuildOptions.ConnectToHost; - } - - // For now, so does Lumin - if (buildOptions.BuildPlayerOptions.target == BuildTarget.Lumin) - { - buildOptions.BuildPlayerOptions.options &= ~BuildOptions.ConnectToHost; - } - - var result = BuildPipeline.BuildPlayer(buildOptions.BuildPlayerOptions); - if (result.summary.result != Build.Reporting.BuildResult.Succeeded) - Debug.LogError(result.SummarizeErrors()); - - return result.summary.result == Build.Reporting.BuildResult.Succeeded; - } - - private PlayerLauncherBuildOptions GetBuildOptions(Scene scene) - { - var buildOptions = new BuildPlayerOptions(); - var reduceBuildLocationPathLength = false; - - //Some platforms hit MAX_PATH limits during the build process, in these cases minimize the path length - if ((m_TargetPlatform == BuildTarget.WSAPlayer) || (m_TargetPlatform == BuildTarget.XboxOne)) - { - reduceBuildLocationPathLength = true; - } - - var scenes = new List() { scene.path }; - scenes.AddRange(EditorBuildSettings.scenes.Select(x => x.path)); - buildOptions.scenes = scenes.ToArray(); - - buildOptions.options |= BuildOptions.AutoRunPlayer | BuildOptions.Development | BuildOptions.ConnectToHost | BuildOptions.IncludeTestAssemblies | BuildOptions.StrictMode; - buildOptions.target = m_TargetPlatform; - - if (EditorUserBuildSettings.waitForPlayerConnection) - buildOptions.options |= BuildOptions.WaitForPlayerConnection; - - var buildTargetGroup = EditorUserBuildSettings.activeBuildTargetGroup; - var uniqueTempPathInProject = FileUtil.GetUniqueTempPathInProject(); - - if (reduceBuildLocationPathLength) - { - uniqueTempPathInProject = Path.GetTempFileName(); - File.Delete(uniqueTempPathInProject); - Directory.CreateDirectory(uniqueTempPathInProject); - } - - //Check if Lz4 is supported for the current buildtargetgroup and enable it if need be - if (PostprocessBuildPlayer.SupportsLz4Compression(buildTargetGroup, m_TargetPlatform)) - { - if (EditorUserBuildSettings.GetCompressionType(buildTargetGroup) == Compression.Lz4) - buildOptions.options |= BuildOptions.CompressWithLz4; - else if (EditorUserBuildSettings.GetCompressionType(buildTargetGroup) == Compression.Lz4HC) - buildOptions.options |= BuildOptions.CompressWithLz4HC; - } - - m_TempBuildLocation = Path.GetFullPath(uniqueTempPathInProject); - - string extensionForBuildTarget = PostprocessBuildPlayer.GetExtensionForBuildTarget(buildTargetGroup, buildOptions.target, buildOptions.options); - - var playerExecutableName = "PlayerWithTests"; - var playerDirectoryName = reduceBuildLocationPathLength ? "PwT" : "PlayerWithTests"; - - var locationPath = Path.Combine(m_TempBuildLocation, playerDirectoryName); - - if (!string.IsNullOrEmpty(extensionForBuildTarget)) - { - playerExecutableName += string.Format(".{0}", extensionForBuildTarget); - locationPath = Path.Combine(locationPath, playerExecutableName); - } - - buildOptions.locationPathName = locationPath; - - return new PlayerLauncherBuildOptions - { - BuildPlayerOptions = buildOptions, - PlayerDirectory = Path.Combine(m_TempBuildLocation, playerDirectoryName), - }; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlayerLauncher.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlayerLauncher.cs.meta deleted file mode 100644 index 60bb1c7fe..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlayerLauncher.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: d973fc1524e4d724081553934c55958c -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherBuildOptions.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherBuildOptions.cs deleted file mode 100644 index b4985147c..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherBuildOptions.cs +++ /dev/null @@ -1,23 +0,0 @@ -using System.Text; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class PlayerLauncherBuildOptions - { - public BuildPlayerOptions BuildPlayerOptions; - public string PlayerDirectory; - - public override string ToString() - { - var str = new StringBuilder(); - str.AppendLine("locationPathName = " + BuildPlayerOptions.locationPathName); - str.AppendLine("target = " + BuildPlayerOptions.target); - str.AppendLine("scenes = " + string.Join(", ", BuildPlayerOptions.scenes)); - str.AppendLine("assetBundleManifestPath = " + BuildPlayerOptions.assetBundleManifestPath); - str.AppendLine("options.Development = " + ((BuildPlayerOptions.options & BuildOptions.Development) != 0)); - str.AppendLine("options.AutoRunPlayer = " + ((BuildPlayerOptions.options & BuildOptions.AutoRunPlayer) != 0)); - str.AppendLine("options.ForceEnableAssertions = " + ((BuildPlayerOptions.options & BuildOptions.ForceEnableAssertions) != 0)); - return str.ToString(); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherBuildOptions.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherBuildOptions.cs.meta deleted file mode 100644 index 73c177964..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherBuildOptions.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 2a0bd678385f98e4d8eabdfc07d62b4f -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherContextSettings.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherContextSettings.cs deleted file mode 100644 index 89b1cb226..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherContextSettings.cs +++ /dev/null @@ -1,106 +0,0 @@ -using System; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class PlayerLauncherContextSettings : IDisposable - { - private ITestRunSettings m_OverloadSettings; - - private EditorBuildSettingsScene[] m_EditorBuildSettings; -#pragma warning disable 618 - private ResolutionDialogSetting m_DisplayResolutionDialog; -#pragma warning restore 618 - private bool m_RunInBackground; - private FullScreenMode m_FullScreenMode; - private bool m_ResizableWindow; - private bool m_ShowUnitySplashScreen; - private string m_OldproductName; - private string m_OldAotOptions; - private Lightmapping.GIWorkflowMode m_OldLightmapping; - private bool m_explicitNullChecks; - - private bool m_Disposed; - - public PlayerLauncherContextSettings(ITestRunSettings overloadSettings) - { - m_OverloadSettings = overloadSettings; - SetupProjectParameters(); - - if (overloadSettings != null) - { - overloadSettings.Apply(); - } - } - - public void Dispose() - { - if (!m_Disposed) - { - CleanupProjectParameters(); - if (m_OverloadSettings != null) - { - m_OverloadSettings.Dispose(); - } - - m_Disposed = true; - } - } - - private void SetupProjectParameters() - { - EditorApplication.LockReloadAssemblies(); - - m_EditorBuildSettings = EditorBuildSettings.scenes; - -#pragma warning disable 618 - m_DisplayResolutionDialog = PlayerSettings.displayResolutionDialog; - PlayerSettings.displayResolutionDialog = ResolutionDialogSetting.Disabled; -#pragma warning restore 618 - - m_RunInBackground = PlayerSettings.runInBackground; - PlayerSettings.runInBackground = true; - - m_FullScreenMode = PlayerSettings.fullScreenMode; - PlayerSettings.fullScreenMode = FullScreenMode.Windowed; - - m_OldAotOptions = PlayerSettings.aotOptions; - PlayerSettings.aotOptions = "nimt-trampolines=1024"; - - m_ResizableWindow = PlayerSettings.resizableWindow; - PlayerSettings.resizableWindow = true; - - m_ShowUnitySplashScreen = PlayerSettings.SplashScreen.show; - PlayerSettings.SplashScreen.show = false; - - m_OldproductName = PlayerSettings.productName; - PlayerSettings.productName = "UnityTestFramework"; - - m_OldLightmapping = Lightmapping.giWorkflowMode; - Lightmapping.giWorkflowMode = Lightmapping.GIWorkflowMode.OnDemand; - - m_explicitNullChecks = EditorUserBuildSettings.explicitNullChecks; - EditorUserBuildSettings.explicitNullChecks = true; - } - - private void CleanupProjectParameters() - { - EditorBuildSettings.scenes = m_EditorBuildSettings; - - PlayerSettings.fullScreenMode = m_FullScreenMode; - PlayerSettings.runInBackground = m_RunInBackground; -#pragma warning disable 618 - PlayerSettings.displayResolutionDialog = m_DisplayResolutionDialog; -#pragma warning restore 618 - PlayerSettings.resizableWindow = m_ResizableWindow; - PlayerSettings.SplashScreen.show = m_ShowUnitySplashScreen; - PlayerSettings.productName = m_OldproductName; - PlayerSettings.aotOptions = m_OldAotOptions; - Lightmapping.giWorkflowMode = m_OldLightmapping; - EditorUserBuildSettings.explicitNullChecks = m_explicitNullChecks; - - EditorApplication.UnlockReloadAssemblies(); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherContextSettings.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherContextSettings.cs.meta deleted file mode 100644 index 29cb89153..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherContextSettings.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 6965880f76f40194593cb53a88f74005 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlaymodeLauncher.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlaymodeLauncher.cs deleted file mode 100644 index 78a9c727c..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlaymodeLauncher.cs +++ /dev/null @@ -1,129 +0,0 @@ -using System; -using System.Collections.Generic; -using NUnit.Framework.Interfaces; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine; -using UnityEngine.SceneManagement; -using UnityEngine.TestTools.TestRunner; -using UnityEngine.TestTools.TestRunner.Callbacks; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class PlaymodeLauncher : RuntimeTestLauncherBase - { - public static bool IsRunning; - private Scene m_Scene; - private bool m_IsTestSetupPerformed; - private readonly PlaymodeTestsControllerSettings m_Settings; - private ITestFilter testFilter; - - [SerializeField] - private List m_EventHandlers = new List(); - - public PlaymodeLauncher(PlaymodeTestsControllerSettings settings) - { - m_Settings = settings; - } - - public override void Run() - { - IsRunning = true; - ConsoleWindow.SetConsoleErrorPause(false); - Application.runInBackground = true; - - var sceneName = CreateSceneName(); - m_Scene = CreateBootstrapScene(sceneName, runner => - { - runner.AddEventHandlerMonoBehaviour(); - runner.AddEventHandlerScriptableObject(); - runner.AddEventHandlerScriptableObject(); - - foreach (var eventHandler in m_EventHandlers) - { - var obj = ScriptableObject.CreateInstance(eventHandler); - runner.AddEventHandlerScriptableObject(obj as ITestRunnerListener); - } - - runner.settings = m_Settings; - }); - - if (m_Settings.sceneBased) - { - var newListOfScenes = - new List {new EditorBuildSettingsScene(sceneName, true)}; - newListOfScenes.AddRange(EditorBuildSettings.scenes); - EditorBuildSettings.scenes = newListOfScenes.ToArray(); - } - - EditorApplication.update += UpdateCallback; - } - - public void UpdateCallback() - { - if (m_IsTestSetupPerformed) - { - if (m_Scene.IsValid()) - SceneManager.SetActiveScene(m_Scene); - EditorApplication.update -= UpdateCallback; - EditorApplication.isPlaying = true; - } - else - { - testFilter = m_Settings.filter.BuildNUnitFilter(); - var runner = LoadTests(testFilter); - - var exceptionThrown = ExecutePreBuildSetupMethods(runner.LoadedTest, testFilter); - if (exceptionThrown) - { - EditorApplication.update -= UpdateCallback; - IsRunning = false; - var controller = PlaymodeTestsController.GetController(); - ReopenOriginalScene(controller); - AssetDatabase.DeleteAsset(controller.settings.bootstrapScene); - CallbacksDelegator.instance.RunFailed("Run Failed: One or more errors in a prebuild setup. See the editor log for details."); - return; - } - m_IsTestSetupPerformed = true; - } - } - - [InitializeOnLoad] - public class BackgroundWatcher - { - static BackgroundWatcher() - { - EditorApplication.playModeStateChanged += OnPlayModeStateChanged; - } - - private static void OnPlayModeStateChanged(PlayModeStateChange state) - { - if (!PlaymodeTestsController.IsControllerOnScene()) - return; - var runner = PlaymodeTestsController.GetController(); - if (runner == null) - return; - if (state == PlayModeStateChange.ExitingPlayMode) - { - AssetDatabase.DeleteAsset(runner.settings.bootstrapScene); - ExecutePostBuildCleanupMethods(runner.m_Runner.LoadedTest, runner.settings.filter.BuildNUnitFilter(), Application.platform); - IsRunning = false; - } - else if (state == PlayModeStateChange.EnteredEditMode) - { - //reopen the original scene once we exit playmode - ReopenOriginalScene(runner); - } - } - } - - protected static void ReopenOriginalScene(PlaymodeTestsController runner) - { - ReopenOriginalScene(runner.settings.originalScene); - } - - public void AddEventHandler() where T : ScriptableObject, ITestRunnerListener - { - m_EventHandlers.Add(typeof(T)); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlaymodeLauncher.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlaymodeLauncher.cs.meta deleted file mode 100644 index ddb6e1c33..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PlaymodeLauncher.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: d3217d58bbd1d2b4aaee933e2e8b9195 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PostbuildCleanupAttributeFinder.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PostbuildCleanupAttributeFinder.cs deleted file mode 100644 index 32dee2b64..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PostbuildCleanupAttributeFinder.cs +++ /dev/null @@ -1,9 +0,0 @@ -using UnityEngine.TestTools; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class PostbuildCleanupAttributeFinder : AttributeFinderBase - { - public PostbuildCleanupAttributeFinder() : base(attribute => attribute.TargetClass) {} - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PostbuildCleanupAttributeFinder.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PostbuildCleanupAttributeFinder.cs.meta deleted file mode 100644 index 454dd107e..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PostbuildCleanupAttributeFinder.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 2c2dfcbbb77359547bcaa7cdabd47ebb -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PrebuildSetupAttributeFinder.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PrebuildSetupAttributeFinder.cs deleted file mode 100644 index b51241f5c..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PrebuildSetupAttributeFinder.cs +++ /dev/null @@ -1,9 +0,0 @@ -using UnityEngine.TestTools; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class PrebuildSetupAttributeFinder : AttributeFinderBase - { - public PrebuildSetupAttributeFinder() : base((attribute) => attribute.TargetClass) {} - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PrebuildSetupAttributeFinder.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PrebuildSetupAttributeFinder.cs.meta deleted file mode 100644 index d524e56e5..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/PrebuildSetupAttributeFinder.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 3c4ccfb0896bcf44da13e152b267aa49 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/RemotePlayerLogController.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/RemotePlayerLogController.cs deleted file mode 100644 index 25f4b6516..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/RemotePlayerLogController.cs +++ /dev/null @@ -1,83 +0,0 @@ -using System; -using System.Collections.Generic; -using UnityEditor.DeploymentTargets; -using UnityEditor.TestTools.TestRunner.CommandLineTest; -using UnityEngine; - -namespace UnityEditor.TestRunner.TestLaunchers -{ - [Serializable] - internal class RemotePlayerLogController : ScriptableSingleton - { - private List m_LogWriters; - - private Dictionary m_Loggers; - - private string m_DeviceLogsDirectory; - - public void SetBuildTarget(BuildTarget buildTarget) - { - m_Loggers = GetDeploymentTargetLoggers(buildTarget); - } - - public void SetLogsDirectory(string dir) - { - m_DeviceLogsDirectory = dir; - } - - public void StartLogWriters() - { - if (m_DeviceLogsDirectory == null || m_Loggers == null) - return; - - m_LogWriters = new List(); - - foreach (var logger in m_Loggers) - { - m_LogWriters.Add(new LogWriter(m_DeviceLogsDirectory, logger.Key, logger.Value)); - logger.Value.Start(); - } - } - - public void StopLogWriters() - { - if (m_LogWriters == null) - return; - - foreach (var logWriter in m_LogWriters) - { - logWriter.Stop(); - } - } - - private Dictionary GetDeploymentTargetLoggers(BuildTarget buildTarget) - { - DeploymentTargetManager deploymentTargetManager; - - try - { - deploymentTargetManager = DeploymentTargetManager.CreateInstance(EditorUserBuildSettings.activeBuildTargetGroup, buildTarget); - } - catch (NotSupportedException ex) - { - Debug.Log(ex.Message); - Debug.Log("Deployment target logger not initialised"); - return null; - } - - var targets = deploymentTargetManager.GetKnownTargets(); - var loggers = new Dictionary(); - - foreach (var target in targets) - { - if (target.status != DeploymentTargetStatus.Ready) continue; - - var logger = deploymentTargetManager.GetTargetLogger(target.id); - logger.Clear(); - loggers.Add(target.id, logger); - } - - return loggers; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/RemotePlayerLogController.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/RemotePlayerLogController.cs.meta deleted file mode 100644 index b20841926..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/RemotePlayerLogController.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: edd2a1fe1acbbde43aad39862bb3f4a8 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/RemotePlayerTestController.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/RemotePlayerTestController.cs deleted file mode 100644 index a7288ba1a..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/RemotePlayerTestController.cs +++ /dev/null @@ -1,81 +0,0 @@ -using System; -using UnityEditor.Networking.PlayerConnection; -using UnityEditor.TestTools.TestRunner; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEditor.TestTools.TestRunner.UnityTestProtocol; -using UnityEngine; -using UnityEngine.Networking.PlayerConnection; -using UnityEngine.TestRunner.TestLaunchers; - -namespace UnityEditor.TestRunner.TestLaunchers -{ - [Serializable] - internal class RemoteTestRunController : ScriptableSingleton - { - [SerializeField] - private RemoteTestResultReciever m_RemoteTestResultReciever; - - [SerializeField] - private PlatformSpecificSetup m_PlatformSpecificSetup; - - [SerializeField] - private bool m_RegisteredConnectionCallbacks; - - public void Init(BuildTarget buildTarget) - { - m_PlatformSpecificSetup = new PlatformSpecificSetup(buildTarget); - m_PlatformSpecificSetup.Setup(); - m_RemoteTestResultReciever = new RemoteTestResultReciever(); - EditorConnection.instance.Initialize(); - if (!m_RegisteredConnectionCallbacks) - { - EditorConnection.instance.Initialize(); - DelegateEditorConnectionEvents(); - } - } - - private void DelegateEditorConnectionEvents() - { - m_RegisteredConnectionCallbacks = true; - //This is needed because RemoteTestResultReciever is not a ScriptableObject - EditorConnection.instance.Register(PlayerConnectionMessageIds.runStartedMessageId, RunStarted); - EditorConnection.instance.Register(PlayerConnectionMessageIds.runFinishedMessageId, RunFinished); - EditorConnection.instance.Register(PlayerConnectionMessageIds.testStartedMessageId, TestStarted); - EditorConnection.instance.Register(PlayerConnectionMessageIds.testFinishedMessageId, TestFinished); - } - - private void RunStarted(MessageEventArgs messageEventArgs) - { - m_RemoteTestResultReciever.RunStarted(messageEventArgs); - CallbacksDelegator.instance.RunStartedRemotely(messageEventArgs.data); - } - - private void RunFinished(MessageEventArgs messageEventArgs) - { - m_RemoteTestResultReciever.RunFinished(messageEventArgs); - m_PlatformSpecificSetup.CleanUp(); - - CallbacksDelegator.instance.RunFinishedRemotely(messageEventArgs.data); - } - - private void TestStarted(MessageEventArgs messageEventArgs) - { - CallbacksDelegator.instance.TestStartedRemotely(messageEventArgs.data); - } - - private void TestFinished(MessageEventArgs messageEventArgs) - { - CallbacksDelegator.instance.TestFinishedRemotely(messageEventArgs.data); - } - - public void PostBuildAction() - { - m_PlatformSpecificSetup.PostBuildAction(); - } - - public void PostSuccessfulBuildAction() - { - m_PlatformSpecificSetup.PostSuccessfulBuildAction(); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/RemotePlayerTestController.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/RemotePlayerTestController.cs.meta deleted file mode 100644 index 020222b5b..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/RemotePlayerTestController.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 7d36034e63ad8254b9b2f55280fcc040 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/RemoteTestResultReciever.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/RemoteTestResultReciever.cs deleted file mode 100644 index b45141b66..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/RemoteTestResultReciever.cs +++ /dev/null @@ -1,22 +0,0 @@ -using System; -using UnityEditor.Networking.PlayerConnection; -using UnityEngine; -using UnityEngine.Networking.PlayerConnection; -using UnityEngine.TestRunner.TestLaunchers; - -namespace UnityEditor.TestTools.TestRunner -{ - [Serializable] - internal class RemoteTestResultReciever - { - public void RunStarted(MessageEventArgs messageEventArgs) - { - } - - public void RunFinished(MessageEventArgs messageEventArgs) - { - EditorConnection.instance.Send(PlayerConnectionMessageIds.runFinishedMessageId, null, messageEventArgs.playerId); - EditorConnection.instance.DisconnectAll(); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/RemoteTestResultReciever.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/RemoteTestResultReciever.cs.meta deleted file mode 100644 index e70101515..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/RemoteTestResultReciever.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: fdb35ef8fc437e14fa4b6c74a0609e86 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/RuntimeTestLauncherBase.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/RuntimeTestLauncherBase.cs deleted file mode 100644 index 4f4aeb405..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/RuntimeTestLauncherBase.cs +++ /dev/null @@ -1,92 +0,0 @@ -using System; -using System.Linq; -using NUnit.Framework.Interfaces; -using UnityEditor.Events; -using UnityEditor.SceneManagement; -using UnityEngine; -using UnityEngine.SceneManagement; -using UnityEngine.TestRunner.NUnitExtensions.Runner; -using UnityEngine.TestTools; -using UnityEngine.TestTools.NUnitExtensions; -using UnityEngine.TestTools.TestRunner; -using UnityEngine.TestTools.Utils; - -namespace UnityEditor.TestTools.TestRunner -{ - internal abstract class RuntimeTestLauncherBase : TestLauncherBase - { - protected Scene CreateBootstrapScene(string sceneName, Action runnerSetup) - { - var scene = EditorSceneManager.NewScene(NewSceneSetup.EmptyScene, NewSceneMode.Single); - var go = new GameObject(PlaymodeTestsController.kPlaymodeTestControllerName); - - var editorLoadedTestAssemblyProvider = new EditorLoadedTestAssemblyProvider(new EditorCompilationInterfaceProxy(), new EditorAssembliesProxy()); - - var runner = go.AddComponent(); - runnerSetup(runner); - runner.settings.bootstrapScene = sceneName; - runner.AssembliesWithTests = editorLoadedTestAssemblyProvider.GetAssembliesGroupedByType(TestPlatform.PlayMode).Select(x => x.Assembly.GetName().Name).ToList(); - - EditorSceneManager.MarkSceneDirty(scene); - AssetDatabase.SaveAssets(); - EditorSceneManager.SaveScene(scene, sceneName, false); - - return scene; - } - - public string CreateSceneName() - { - return "Assets/InitTestScene" + DateTime.Now.Ticks + ".unity"; - } - - protected UnityTestAssemblyRunner LoadTests(ITestFilter filter) - { - var editorLoadedTestAssemblyProvider = new EditorLoadedTestAssemblyProvider(new EditorCompilationInterfaceProxy(), new EditorAssembliesProxy()); - var assembliesWithTests = editorLoadedTestAssemblyProvider.GetAssembliesGroupedByType(TestPlatform.PlayMode).Select(x => x.Assembly.GetName().Name).ToList(); - - var nUnitTestAssemblyRunner = new UnityTestAssemblyRunner(new UnityTestAssemblyBuilder(), null); - var assemblyProvider = new PlayerTestAssemblyProvider(new AssemblyLoadProxy(), assembliesWithTests); - nUnitTestAssemblyRunner.Load(assemblyProvider.GetUserAssemblies().Select(a => a.Assembly).ToArray(), UnityTestAssemblyBuilder.GetNUnitTestBuilderSettings(TestPlatform.PlayMode)); - return nUnitTestAssemblyRunner; - } - - protected static void ReopenOriginalScene(string originalSceneName) - { - EditorSceneManager.NewScene(NewSceneSetup.DefaultGameObjects); - if (!string.IsNullOrEmpty(originalSceneName)) - { - EditorSceneManager.OpenScene(originalSceneName); - } - } - } - - internal static class PlaymodeTestsControllerExtensions - { - internal static T AddEventHandlerMonoBehaviour(this PlaymodeTestsController controller) where T : MonoBehaviour, ITestRunnerListener - { - var eventHandler = controller.gameObject.AddComponent(); - SetListeners(controller, eventHandler); - return eventHandler; - } - - internal static T AddEventHandlerScriptableObject(this PlaymodeTestsController controller) where T : ScriptableObject, ITestRunnerListener - { - var eventListener = ScriptableObject.CreateInstance(); - AddEventHandlerScriptableObject(controller, eventListener); - return eventListener; - } - - internal static void AddEventHandlerScriptableObject(this PlaymodeTestsController controller, ITestRunnerListener obj) - { - SetListeners(controller, obj); - } - - private static void SetListeners(PlaymodeTestsController controller, ITestRunnerListener eventHandler) - { - UnityEventTools.AddPersistentListener(controller.testStartedEvent, eventHandler.TestStarted); - UnityEventTools.AddPersistentListener(controller.testFinishedEvent, eventHandler.TestFinished); - UnityEventTools.AddPersistentListener(controller.runStartedEvent, eventHandler.RunStarted); - UnityEventTools.AddPersistentListener(controller.runFinishedEvent, eventHandler.RunFinished); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/RuntimeTestLauncherBase.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/RuntimeTestLauncherBase.cs.meta deleted file mode 100644 index 28c74163f..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/RuntimeTestLauncherBase.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 0efb23ecb373b6d4bbe5217485785138 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/TestLauncherBase.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/TestLauncherBase.cs deleted file mode 100644 index cb8b5c48f..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/TestLauncherBase.cs +++ /dev/null @@ -1,66 +0,0 @@ -using System; -using NUnit.Framework.Interfaces; -using UnityEngine; -using UnityEngine.TestTools; - -namespace UnityEditor.TestTools.TestRunner -{ - internal abstract class TestLauncherBase - { - public abstract void Run(); - - protected virtual RuntimePlatform? TestTargetPlatform - { - get { return Application.platform; } - } - - protected bool ExecutePreBuildSetupMethods(ITest tests, ITestFilter testRunnerFilter) - { - var attributeFinder = new PrebuildSetupAttributeFinder(); - var logString = "Executing setup for: {0}"; - return ExecuteMethods(tests, testRunnerFilter, attributeFinder, logString, targetClass => targetClass.Setup(), TestTargetPlatform); - } - - public void ExecutePostBuildCleanupMethods(ITest tests, ITestFilter testRunnerFilter) - { - ExecutePostBuildCleanupMethods(tests, testRunnerFilter, TestTargetPlatform); - } - - public static void ExecutePostBuildCleanupMethods(ITest tests, ITestFilter testRunnerFilter, RuntimePlatform? testTargetPlatform) - { - var attributeFinder = new PostbuildCleanupAttributeFinder(); - var logString = "Executing cleanup for: {0}"; - ExecuteMethods(tests, testRunnerFilter, attributeFinder, logString, targetClass => targetClass.Cleanup(), testTargetPlatform); - } - - private static bool ExecuteMethods(ITest tests, ITestFilter testRunnerFilter, AttributeFinderBase attributeFinder, string logString, Action action, RuntimePlatform? testTargetPlatform) - { - var exceptionsThrown = false; - - if (testTargetPlatform == null) - { - Debug.LogError("Could not determine test target platform from build target " + EditorUserBuildSettings.activeBuildTarget); - return true; - } - - foreach (var targetClassType in attributeFinder.Search(tests, testRunnerFilter, testTargetPlatform.Value)) - { - try - { - var targetClass = (T)Activator.CreateInstance(targetClassType); - - Debug.LogFormat(logString, targetClassType.FullName); - action(targetClass); - } - catch (InvalidCastException) {} - catch (Exception e) - { - Debug.LogException(e); - exceptionsThrown = true; - } - } - - return exceptionsThrown; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/TestLauncherBase.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/TestLauncherBase.cs.meta deleted file mode 100644 index c36990c79..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestLaunchers/TestLauncherBase.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 1cddf785b0d07434d8e0607c97b09135 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestResultSerializer.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestResultSerializer.cs deleted file mode 100644 index f471feecc..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestResultSerializer.cs +++ /dev/null @@ -1,71 +0,0 @@ -using System; -using System.Reflection; -using System.Text; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; -using UnityEngine; - -namespace UnityEditor.TestTools.TestRunner -{ - [Serializable] - internal class TestResultSerializer - { - private static readonly BindingFlags flags = BindingFlags.NonPublic | BindingFlags.Public | - BindingFlags.Instance | BindingFlags.FlattenHierarchy; - - [SerializeField] public string id; - - [SerializeField] public string fullName; - - [SerializeField] private double duration; - - [SerializeField] private string label; - - [SerializeField] private string message; - - [SerializeField] private string output; - - [SerializeField] private string site; - - [SerializeField] private string stacktrace; - - [SerializeField] private double startTimeAO; - - [SerializeField] private string status; - - public static TestResultSerializer MakeFromTestResult(ITestResult result) - { - var wrapper = new TestResultSerializer(); - wrapper.id = result.Test.Id; - wrapper.fullName = result.FullName; - wrapper.status = result.ResultState.Status.ToString(); - wrapper.label = result.ResultState.Label; - wrapper.site = result.ResultState.Site.ToString(); - wrapper.output = result.Output; - wrapper.duration = result.Duration; - wrapper.stacktrace = result.StackTrace; - wrapper.message = result.Message; - wrapper.startTimeAO = result.StartTime.ToOADate(); - return wrapper; - } - - public void RestoreTestResult(TestResult result) - { - var resultState = new ResultState((TestStatus)Enum.Parse(typeof(TestStatus), status), label, - (FailureSite)Enum.Parse(typeof(FailureSite), site)); - result.GetType().BaseType.GetField("_resultState", flags).SetValue(result, resultState); - result.GetType().BaseType.GetField("_output", flags).SetValue(result, new StringBuilder(output)); - result.GetType().BaseType.GetField("_duration", flags).SetValue(result, duration); - result.GetType().BaseType.GetField("_message", flags).SetValue(result, message); - result.GetType().BaseType.GetField("_stackTrace", flags).SetValue(result, stacktrace); - result.GetType() - .BaseType.GetProperty("StartTime", flags) - .SetValue(result, DateTime.FromOADate(startTimeAO), null); - } - - public bool IsPassed() - { - return status == TestStatus.Passed.ToString(); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestResultSerializer.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestResultSerializer.cs.meta deleted file mode 100644 index 96f296036..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestResultSerializer.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 559482fe33c79e44882d3a6cedc55fb5 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner.meta deleted file mode 100644 index d09886b69..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 49d4c2ab7ff0f4442af256bad7c9d57c -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks.meta deleted file mode 100644 index 9e611a480..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5d7f0d6acfced954682a89e7002c04d9 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/EditModeRunnerCallback.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/EditModeRunnerCallback.cs deleted file mode 100644 index 9b92fbc0e..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/EditModeRunnerCallback.cs +++ /dev/null @@ -1,190 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using NUnit.Framework; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; -using UnityEditor.SceneManagement; -using UnityEngine; -using UnityEngine.TestTools.TestRunner; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class EditModeRunnerCallback : ScriptableObject, ITestRunnerListener - { - private EditModeLauncherContextSettings m_Settings; - public SceneSetup[] previousSceneSetup; - public int undoGroup; - public EditModeRunner runner; - - private bool m_Canceled; - private ITest m_CurrentTest; - private int m_TotalTests; - - [SerializeField] - private List m_PendingTests; - [SerializeField] - private string m_LastCountedTestName; - [SerializeField] - private bool m_RunRestarted; - - public void OnDestroy() - { - CleanUp(); - } - - public void RunStarted(ITest testsToRun) - { - Setup(); - if (m_PendingTests == null) - { - m_PendingTests = GetTestsExpectedToRun(testsToRun, runner.GetFilter()); - m_TotalTests = m_PendingTests.Count; - } - } - - public void OnEnable() - { - if (m_RunRestarted) - { - Setup(); - } - } - - private void Setup() - { - m_Settings = new EditModeLauncherContextSettings(); - Application.logMessageReceivedThreaded += LogReceived; - EditorApplication.playModeStateChanged += WaitForExitPlaymode; - EditorApplication.update += DisplayProgressBar; - AssemblyReloadEvents.beforeAssemblyReload += BeforeAssemblyReload; - } - - private void BeforeAssemblyReload() - { - if (m_CurrentTest != null) - { - m_LastCountedTestName = m_CurrentTest.FullName; - m_RunRestarted = true; - } - } - - private void DisplayProgressBar() - { - if (m_CurrentTest == null) - return; - if (!m_Canceled && EditorUtility.DisplayCancelableProgressBar("Test Runner", "Running test " + m_CurrentTest.Name, Math.Min(1.0f, (float)(m_TotalTests - m_PendingTests.Count) / m_TotalTests))) - { - EditorApplication.update -= DisplayProgressBar; - m_Canceled = true; - EditorUtility.ClearProgressBar(); - runner.OnRunCancel(); - } - } - - private static void LogReceived(string message, string stacktrace, LogType type) - { - if (TestContext.Out != null) - TestContext.Out.WriteLine(message); - } - - private static void WaitForExitPlaymode(PlayModeStateChange state) - { - if (state == PlayModeStateChange.EnteredEditMode) - { - EditorApplication.playModeStateChanged -= WaitForExitPlaymode; - //because logMessage is reset on Enter EditMode - //we remove and add the callback - //because Unity - Application.logMessageReceivedThreaded -= LogReceived; - Application.logMessageReceivedThreaded += LogReceived; - } - } - - public void RunFinished(ITestResult result) - { - if (previousSceneSetup != null && previousSceneSetup.Length > 0) - { - try - { - EditorSceneManager.RestoreSceneManagerSetup(previousSceneSetup); - } - catch (ArgumentException e) - { - Debug.LogWarning(e.Message); - } - } - else - { - EditorSceneManager.NewScene(NewSceneSetup.DefaultGameObjects, NewSceneMode.Single); - } - CleanUp(); - PerformUndo(undoGroup); - } - - private void CleanUp() - { - m_CurrentTest = null; - EditorUtility.ClearProgressBar(); - if (m_Settings != null) - { - m_Settings.Dispose(); - } - Application.logMessageReceivedThreaded -= LogReceived; - EditorApplication.update -= DisplayProgressBar; - } - - public void TestStarted(ITest test) - { - if (test.IsSuite || !(test is TestMethod)) - { - return; - } - - m_CurrentTest = test; - - if (m_RunRestarted) - { - if (test.FullName == m_LastCountedTestName) - m_RunRestarted = false; - } - } - - public void TestFinished(ITestResult result) - { - if (result.Test is TestMethod) - { - m_PendingTests.Remove(result.Test.FullName); - } - } - - private static void PerformUndo(int undoGroup) - { - EditorUtility.DisplayProgressBar("Undo", "Reverting changes to the scene", 0); - var undoStartTime = DateTime.Now; - Undo.RevertAllDownToGroup(undoGroup); - if ((DateTime.Now - undoStartTime).TotalSeconds > 1) - Debug.LogWarning("Undo after editor test run took " + (DateTime.Now - undoStartTime).Seconds + " seconds."); - EditorUtility.ClearProgressBar(); - } - - private static List GetTestsExpectedToRun(ITest test, ITestFilter filter) - { - var expectedTests = new List(); - - if (filter.Pass(test)) - { - if (test.IsSuite) - { - expectedTests.AddRange(test.Tests.SelectMany(subTest => GetTestsExpectedToRun(subTest, filter))); - } - else - { - expectedTests.Add(test.FullName); - } - } - - return expectedTests; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/EditModeRunnerCallback.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/EditModeRunnerCallback.cs.meta deleted file mode 100644 index 1a0d71c8a..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/EditModeRunnerCallback.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: cc456ba93311a3a43ad896449fee9868 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallback.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallback.cs deleted file mode 100644 index 0bd60e9dd..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallback.cs +++ /dev/null @@ -1,83 +0,0 @@ -using UnityEditor.TestTools.TestRunner.Api; -using UnityEditor.TestTools.TestRunner.CommandLineTest; -using UnityEngine.TestTools.TestRunner.GUI; -using UnityEngine; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class RerunCallback : ScriptableObject, ICallbacks - { - public static bool useMockRunFilter = false; - public static TestRunnerFilter mockRunFilter = null; - - public void RunFinished(ITestResultAdaptor result) - { - if (RerunCallbackData.instance.runFilter == null) - RerunCallbackData.instance.runFilter = new TestRunnerFilter(); - - var runFilter = RerunCallbackData.instance.runFilter; - - if (useMockRunFilter) - { - runFilter = mockRunFilter; - } - - runFilter.testRepetitions--; - if (runFilter.testRepetitions <= 0 || result.TestStatus != TestStatus.Passed) - { - ExitCallbacks.preventExit = false; - return; - } - - ExitCallbacks.preventExit = true; - if (EditorApplication.isPlaying) - { - EditorApplication.playModeStateChanged += WaitForExitPlaymode; - return; - } - - if (!useMockRunFilter) - { - ExecuteTestRunnerAPI(); - } - } - - private static void WaitForExitPlaymode(PlayModeStateChange state) - { - if (state == PlayModeStateChange.EnteredEditMode) - { - ExecuteTestRunnerAPI(); - } - } - - private static void ExecuteTestRunnerAPI() - { - var runFilter = RerunCallbackData.instance.runFilter; - var testMode = RerunCallbackData.instance.testMode; - - var testRunnerApi = ScriptableObject.CreateInstance(); - testRunnerApi.Execute(new Api.ExecutionSettings() - { - filter = new Filter() - { - categoryNames = runFilter.categoryNames, - groupNames = runFilter.groupNames, - testMode = testMode, - testNames = runFilter.testNames - } - }); - } - - public void TestStarted(ITestAdaptor test) - { - } - - public void TestFinished(ITestResultAdaptor result) - { - } - - public void RunStarted(ITestAdaptor testsToRun) - { - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallback.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallback.cs.meta deleted file mode 100644 index 3a3be6ce6..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallback.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: b7ff2b2e91321ff4381d4ab45870a32e -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallbackData.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallbackData.cs deleted file mode 100644 index 270a5c5d4..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallbackData.cs +++ /dev/null @@ -1,15 +0,0 @@ -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine; -using UnityEngine.TestTools.TestRunner.GUI; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class RerunCallbackData : ScriptableSingleton - { - [SerializeField] - internal TestRunnerFilter runFilter; - - [SerializeField] - internal TestMode testMode; - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallbackData.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallbackData.cs.meta deleted file mode 100644 index e72f3af14..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallbackData.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 087cba9fa6ac867479a0b0fdc0a5864b -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallbackInitializer.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallbackInitializer.cs deleted file mode 100644 index 2260d4da2..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallbackInitializer.cs +++ /dev/null @@ -1,17 +0,0 @@ -using UnityEngine; -using UnityEditor.TestTools.TestRunner.Api; - -namespace UnityEditor.TestTools.TestRunner -{ - [InitializeOnLoad] - static class RerunCallbackInitializer - { - static RerunCallbackInitializer() - { - var testRunnerApi = ScriptableObject.CreateInstance(); - - var rerunCallback = ScriptableObject.CreateInstance(); - testRunnerApi.RegisterCallbacks(rerunCallback); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallbackInitializer.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallbackInitializer.cs.meta deleted file mode 100644 index 5149605ad..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallbackInitializer.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: f73fc901e4b0f2d4daf11f46506054ba -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/TestRunnerCallback.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/TestRunnerCallback.cs deleted file mode 100644 index 4234754ab..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/TestRunnerCallback.cs +++ /dev/null @@ -1,37 +0,0 @@ -using NUnit.Framework.Interfaces; -using UnityEngine; -using UnityEngine.TestTools.TestRunner; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class TestRunnerCallback : ScriptableObject, ITestRunnerListener - { - public void RunStarted(ITest testsToRun) - { - EditorApplication.playModeStateChanged += OnPlayModeStateChanged; - } - - private void OnPlayModeStateChanged(PlayModeStateChange state) - { - if (state == PlayModeStateChange.ExitingPlayMode) - { - EditorApplication.playModeStateChanged -= OnPlayModeStateChanged; - //We need to make sure we don't block NUnit thread in case we exit PlayMode earlier - PlaymodeTestsController.TryCleanup(); - } - } - - public void RunFinished(ITestResult testResults) - { - EditorApplication.isPlaying = false; - } - - public void TestStarted(ITest testName) - { - } - - public void TestFinished(ITestResult test) - { - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/TestRunnerCallback.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/TestRunnerCallback.cs.meta deleted file mode 100644 index 1356ff989..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/TestRunnerCallback.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: d44e6804bc58be84ea71a619b468f150 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/WindowResultUpdater.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/WindowResultUpdater.cs deleted file mode 100644 index e3f0be061..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/WindowResultUpdater.cs +++ /dev/null @@ -1,32 +0,0 @@ -using UnityEditor.TestTools.TestRunner.Api; - -namespace UnityEditor.TestTools.TestRunner.GUI -{ - internal class WindowResultUpdater : ICallbacks - { - public void RunStarted(ITestAdaptor testsToRun) - { - } - - public void RunFinished(ITestResultAdaptor testResults) - { - if (TestRunnerWindow.s_Instance != null) - { - TestRunnerWindow.s_Instance.RebuildUIFilter(); - } - } - - public void TestStarted(ITestAdaptor testName) - { - } - - public void TestFinished(ITestResultAdaptor test) - { - if (TestRunnerWindow.s_Instance == null) - return; - - var result = new TestRunnerResult(test); - TestRunnerWindow.s_Instance.m_SelectedTestTypes.UpdateResult(result); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/WindowResultUpdater.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/WindowResultUpdater.cs.meta deleted file mode 100644 index d9e35df83..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Callbacks/WindowResultUpdater.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 6d468ee3657be7a43a2ef2178ec14239 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EditModePCHelper.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EditModePCHelper.cs deleted file mode 100644 index 8776887c0..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EditModePCHelper.cs +++ /dev/null @@ -1,32 +0,0 @@ -using System.Collections; -using System.Reflection; -using UnityEngine.TestTools; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class EditModePcHelper : TestCommandPcHelper - { - public override void SetEnumeratorPC(IEnumerator enumerator, int pc) - { - GetPCFieldInfo(enumerator).SetValue(enumerator, pc); - } - - public override int GetEnumeratorPC(IEnumerator enumerator) - { - if (enumerator == null) - { - return 0; - } - return (int)GetPCFieldInfo(enumerator).GetValue(enumerator); - } - - private FieldInfo GetPCFieldInfo(IEnumerator enumerator) - { - var field = enumerator.GetType().GetField("$PC", BindingFlags.NonPublic | BindingFlags.Instance); - if (field == null) // Roslyn - field = enumerator.GetType().GetField("<>1__state", BindingFlags.NonPublic | BindingFlags.Instance); - - return field; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EditModePCHelper.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EditModePCHelper.cs.meta deleted file mode 100644 index ce559af2c..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EditModePCHelper.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 6d16f2e78a356d34c9a32108929de932 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EditModeRunner.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EditModeRunner.cs deleted file mode 100644 index 12b4cc7da..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EditModeRunner.cs +++ /dev/null @@ -1,423 +0,0 @@ -using System; -using System.Collections; -using System.Collections.Generic; -using System.Linq; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; -using UnityEngine; -using UnityEngine.TestTools.NUnitExtensions; -using UnityEngine.TestTools.TestRunner; -using UnityEngine.TestTools; -using UnityEngine.TestTools.TestRunner.GUI; -using UnityEditor.Callbacks; -using UnityEngine.TestRunner.NUnitExtensions; -using UnityEngine.TestRunner.NUnitExtensions.Runner; - -namespace UnityEditor.TestTools.TestRunner -{ - internal interface IUnityTestAssemblyRunnerFactory - { - IUnityTestAssemblyRunner Create(TestPlatform testPlatform, WorkItemFactory factory); - } - - internal class UnityTestAssemblyRunnerFactory : IUnityTestAssemblyRunnerFactory - { - public IUnityTestAssemblyRunner Create(TestPlatform testPlatform, WorkItemFactory factory) - { - return new UnityTestAssemblyRunner(new UnityTestAssemblyBuilder(), factory); - } - } - - [Serializable] - internal class EditModeRunner : ScriptableObject, IDisposable - { - [SerializeField] - private TestRunnerFilter m_Filter; - - //The counter from the IEnumerator object - [SerializeField] - private int m_CurrentPC; - - [SerializeField] - private bool m_ExecuteOnEnable; - - [SerializeField] - private List m_AlreadyStartedTests; - - [SerializeField] - private List m_ExecutedTests; - - [SerializeField] - private List m_CallbackObjects = new List(); - - [SerializeField] - private TestStartedEvent m_TestStartedEvent = new TestStartedEvent(); - - [SerializeField] - private TestFinishedEvent m_TestFinishedEvent = new TestFinishedEvent(); - - [SerializeField] - private RunStartedEvent m_RunStartedEvent = new RunStartedEvent(); - - [SerializeField] - private RunFinishedEvent m_RunFinishedEvent = new RunFinishedEvent(); - - [SerializeField] - private TestRunnerStateSerializer m_TestRunnerStateSerializer = new TestRunnerStateSerializer(); - - [SerializeField] - private TestFileCleanupVerifier m_CleanupVerifier = new TestFileCleanupVerifier(); - - [SerializeField] - private bool m_RunningTests; - - [SerializeField] - private TestPlatform m_TestPlatform; - - [SerializeField] - private object m_CurrentYieldObject; - - [SerializeField] - private BeforeAfterTestCommandState m_SetUpTearDownState; - [SerializeField] - private BeforeAfterTestCommandState m_OuterUnityTestActionState; - - internal IUnityTestAssemblyRunner m_Runner; - - private ConstructDelegator m_ConstructDelegator; - - private IEnumerator m_RunStep; - - public IUnityTestAssemblyRunnerFactory UnityTestAssemblyRunnerFactory { get; set; } - - public void Init(TestRunnerFilter filter, TestPlatform platform) - { - m_Filter = filter; - m_TestPlatform = platform; - m_AlreadyStartedTests = new List(); - m_ExecutedTests = new List(); - InitRunner(); - } - - private void InitRunner() - { - //We give the EditMode platform here so we dont suddenly create Playmode work items in the test Runner. - m_Runner = (UnityTestAssemblyRunnerFactory ?? new UnityTestAssemblyRunnerFactory()).Create(TestPlatform.EditMode, new EditmodeWorkItemFactory()); - var testAssemblyProvider = new EditorLoadedTestAssemblyProvider(new EditorCompilationInterfaceProxy(), new EditorAssembliesProxy()); - var loadedTests = m_Runner.Load( - testAssemblyProvider.GetAssembliesGroupedByType(m_TestPlatform).Select(x => x.Assembly).ToArray(), - UnityTestAssemblyBuilder.GetNUnitTestBuilderSettings(m_TestPlatform)); - loadedTests.ParseForNameDuplicates(); - hideFlags |= HideFlags.DontSave; - EnumerableSetUpTearDownCommand.ActivePcHelper = new EditModePcHelper(); - OuterUnityTestActionCommand.ActivePcHelper = new EditModePcHelper(); - } - - public void OnEnable() - { - if (m_ExecuteOnEnable) - { - InitRunner(); - m_ExecuteOnEnable = false; - foreach (var callback in m_CallbackObjects) - { - AddListeners(callback as ITestRunnerListener); - } - m_ConstructDelegator = new ConstructDelegator(m_TestRunnerStateSerializer); - - EnumeratorStepHelper.SetEnumeratorPC(m_CurrentPC); - - UnityWorkItemDataHolder.alreadyExecutedTests = m_ExecutedTests.Select(x => x.fullName).ToList(); - UnityWorkItemDataHolder.alreadyStartedTests = m_AlreadyStartedTests; - Run(); - } - } - - public void TestStartedEvent(ITest test) - { - m_AlreadyStartedTests.Add(test.FullName); - } - - public void TestFinishedEvent(ITestResult testResult) - { - m_AlreadyStartedTests.Remove(testResult.FullName); - m_ExecutedTests.Add(TestResultSerializer.MakeFromTestResult(testResult)); - } - - public void Run() - { - EditModeTestCallbacks.RestoringTestContext += OnRestoringTest; - var context = m_Runner.GetCurrentContext(); - if (m_SetUpTearDownState == null) - { - m_SetUpTearDownState = CreateInstance(); - } - context.SetUpTearDownState = m_SetUpTearDownState; - - if (m_OuterUnityTestActionState == null) - { - m_OuterUnityTestActionState = CreateInstance(); - } - context.OuterUnityTestActionState = m_OuterUnityTestActionState; - - m_CleanupVerifier.RegisterExistingFiles(); - - if (!m_RunningTests) - { - m_RunStartedEvent.Invoke(m_Runner.LoadedTest); - } - - if (m_ConstructDelegator == null) - m_ConstructDelegator = new ConstructDelegator(m_TestRunnerStateSerializer); - - Reflect.ConstructorCallWrapper = m_ConstructDelegator.Delegate; - m_TestStartedEvent.AddListener(TestStartedEvent); - m_TestFinishedEvent.AddListener(TestFinishedEvent); - - AssemblyReloadEvents.beforeAssemblyReload += OnBeforeAssemblyReload; - - RunningTests = true; - - EditorApplication.LockReloadAssemblies(); - - var testListenerWrapper = new TestListenerWrapper(m_TestStartedEvent, m_TestFinishedEvent); - m_RunStep = m_Runner.Run(testListenerWrapper, m_Filter.BuildNUnitFilter()).GetEnumerator(); - m_RunningTests = true; - - EditorApplication.update += TestConsumer; - } - - private void OnBeforeAssemblyReload() - { - EditorApplication.update -= TestConsumer; - - if (m_ExecuteOnEnable) - { - AssemblyReloadEvents.beforeAssemblyReload -= OnBeforeAssemblyReload; - return; - } - - if (m_Runner != null && m_Runner.TopLevelWorkItem != null) - m_Runner.TopLevelWorkItem.ResultedInDomainReload = true; - - if (RunningTests) - { - Debug.LogError("TestRunner: Unexpected assembly reload happened while running tests"); - - EditorUtility.ClearProgressBar(); - - if (m_Runner.GetCurrentContext() != null && m_Runner.GetCurrentContext().CurrentResult != null) - { - m_Runner.GetCurrentContext().CurrentResult.SetResult(ResultState.Cancelled, "Unexpected assembly reload happened"); - } - OnRunCancel(); - } - } - - private bool RunningTests; - - private Stack StepStack = new Stack(); - - private bool MoveNextAndUpdateYieldObject() - { - var result = m_RunStep.MoveNext(); - - if (result) - { - m_CurrentYieldObject = m_RunStep.Current; - while (m_CurrentYieldObject is IEnumerator) // going deeper - { - var currentEnumerator = (IEnumerator)m_CurrentYieldObject; - - // go deeper and add parent to stack - StepStack.Push(m_RunStep); - - m_RunStep = currentEnumerator; - m_CurrentYieldObject = m_RunStep.Current; - } - - if (StepStack.Count > 0 && m_CurrentYieldObject != null) // not null and not IEnumerator, nested - { - Debug.LogError("EditMode test can only yield null, but not <" + m_CurrentYieldObject.GetType().Name + ">"); - } - - return true; - } - - if (StepStack.Count == 0) // done - return false; - - m_RunStep = StepStack.Pop(); // going up - return MoveNextAndUpdateYieldObject(); - } - - private void TestConsumer() - { - var moveNext = MoveNextAndUpdateYieldObject(); - - if (m_CurrentYieldObject != null) - { - InvokeDelegator(); - } - - if (!moveNext && !m_Runner.IsTestComplete) - { - CompleteTestRun(); - throw new IndexOutOfRangeException("There are no more elements to process and IsTestComplete is false"); - } - - if (m_Runner.IsTestComplete) - { - CompleteTestRun(); - } - } - - private void CompleteTestRun() - { - EditorApplication.update -= TestConsumer; - TestLauncherBase.ExecutePostBuildCleanupMethods(this.GetLoadedTests(), this.GetFilter(), Application.platform); - m_CleanupVerifier.VerifyNoNewFilesAdded(); - m_RunFinishedEvent.Invoke(m_Runner.Result); - - if (m_ConstructDelegator != null) - m_ConstructDelegator.DestroyCurrentTestObjectIfExists(); - Dispose(); - UnityWorkItemDataHolder.alreadyExecutedTests = null; - } - - private void OnRestoringTest() - { - var item = m_ExecutedTests.Find(t => t.fullName == UnityTestExecutionContext.CurrentContext.CurrentTest.FullName); - if (item != null) - { - item.RestoreTestResult(UnityTestExecutionContext.CurrentContext.CurrentResult); - } - } - - private static bool IsCancelled() - { - return UnityTestExecutionContext.CurrentContext.ExecutionStatus == TestExecutionStatus.AbortRequested || UnityTestExecutionContext.CurrentContext.ExecutionStatus == TestExecutionStatus.StopRequested; - } - - private void InvokeDelegator() - { - if (m_CurrentYieldObject == null) - { - return; - } - - if (IsCancelled()) - { - return; - } - - if (m_CurrentYieldObject is RestoreTestContextAfterDomainReload) - { - if (m_TestRunnerStateSerializer.ShouldRestore()) - { - m_TestRunnerStateSerializer.RestoreContext(); - } - - return; - } - - try - { - if (m_CurrentYieldObject is IEditModeTestYieldInstruction) - { - var editModeTestYieldInstruction = (IEditModeTestYieldInstruction)m_CurrentYieldObject; - if (editModeTestYieldInstruction.ExpectDomainReload) - { - PrepareForDomainReload(); - } - return; - } - } - catch (Exception e) - { - UnityTestExecutionContext.CurrentContext.CurrentResult.RecordException(e); - return; - } - - Debug.LogError("EditMode test can only yield null"); - } - - private void CompilationFailureWatch() - { - if (EditorApplication.isCompiling) - return; - - EditorApplication.update -= CompilationFailureWatch; - - if (EditorUtility.scriptCompilationFailed) - { - EditorUtility.ClearProgressBar(); - OnRunCancel(); - } - } - - private void PrepareForDomainReload() - { - m_TestRunnerStateSerializer.SaveContext(); - m_CurrentPC = EnumeratorStepHelper.GetEnumeratorPC(TestEnumerator.Enumerator); - m_ExecuteOnEnable = true; - - RunningTests = false; - } - - public T AddEventHandler() where T : ScriptableObject, ITestRunnerListener - { - var eventHandler = CreateInstance(); - eventHandler.hideFlags |= HideFlags.DontSave; - m_CallbackObjects.Add(eventHandler); - - AddListeners(eventHandler); - - return eventHandler; - } - - private void AddListeners(ITestRunnerListener eventHandler) - { - m_TestStartedEvent.AddListener(eventHandler.TestStarted); - m_TestFinishedEvent.AddListener(eventHandler.TestFinished); - m_RunStartedEvent.AddListener(eventHandler.RunStarted); - m_RunFinishedEvent.AddListener(eventHandler.RunFinished); - } - - public void Dispose() - { - Reflect.MethodCallWrapper = null; - EditorApplication.update -= TestConsumer; - - DestroyImmediate(this); - - if (m_CallbackObjects != null) - { - foreach (var obj in m_CallbackObjects) - { - DestroyImmediate(obj); - } - m_CallbackObjects.Clear(); - } - RunningTests = false; - EditorApplication.UnlockReloadAssemblies(); - } - - public void OnRunCancel() - { - UnityWorkItemDataHolder.alreadyExecutedTests = null; - m_ExecuteOnEnable = false; - m_Runner.StopRun(); - } - - public ITest GetLoadedTests() - { - return m_Runner.LoadedTest; - } - - public ITestFilter GetFilter() - { - return m_Filter.BuildNUnitFilter(); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EditModeRunner.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EditModeRunner.cs.meta deleted file mode 100644 index 78c00399f..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EditModeRunner.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: c9219e99d466b7741a057132d1994f35 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EditmodeWorkItemFactory.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EditmodeWorkItemFactory.cs deleted file mode 100644 index c2bf92122..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EditmodeWorkItemFactory.cs +++ /dev/null @@ -1,14 +0,0 @@ -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; -using UnityEngine.TestRunner.NUnitExtensions.Runner; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class EditmodeWorkItemFactory : WorkItemFactory - { - protected override UnityWorkItem Create(TestMethod method, ITestFilter filter, ITest loadedTest) - { - return new EditorEnumeratorTestWorkItem(method, filter); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EditmodeWorkItemFactory.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EditmodeWorkItemFactory.cs.meta deleted file mode 100644 index ab4bd4599..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EditmodeWorkItemFactory.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 3dde15f260b0dd1469e60d16eaa795dc -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EditorEnumeratorTestWorkItem.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EditorEnumeratorTestWorkItem.cs deleted file mode 100644 index 90353a205..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EditorEnumeratorTestWorkItem.cs +++ /dev/null @@ -1,181 +0,0 @@ -using System; -using System.Collections; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; -using NUnit.Framework.Internal.Commands; -using NUnit.Framework.Internal.Execution; -using UnityEngine; -using UnityEngine.TestRunner.NUnitExtensions.Runner; -using UnityEngine.TestTools; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class EditorEnumeratorTestWorkItem : UnityWorkItem - { - private TestCommand m_Command; - - public EditorEnumeratorTestWorkItem(TestMethod test, ITestFilter filter) - : base(test, null) - { - m_Command = test.RunState == RunState.Runnable || test.RunState == RunState.Explicit && filter.IsExplicitMatch(test) - ? CommandBuilder.MakeTestCommand(test) - : CommandBuilder.MakeSkipCommand(test); - } - - private static IEnumerableTestMethodCommand FindFirstIEnumerableTestMethodCommand(TestCommand command) - { - if (command == null) - { - return null; - } - - if (command is IEnumerableTestMethodCommand) - { - return (IEnumerableTestMethodCommand)command; - } - - if (command is DelegatingTestCommand) - { - var delegatingTestCommand = (DelegatingTestCommand)command; - return FindFirstIEnumerableTestMethodCommand(delegatingTestCommand.GetInnerCommand()); - } - return null; - } - - protected override IEnumerable PerformWork() - { - if (IsCancelledRun()) - { - yield break; - } - - if (m_DontRunRestoringResult) - { - if (EditModeTestCallbacks.RestoringTestContext == null) - { - throw new NullReferenceException("RestoringTestContext is not set"); - } - EditModeTestCallbacks.RestoringTestContext(); - Result = Context.CurrentResult; - yield break; - } - - try - { - if (IsCancelledRun()) - { - yield break; - } - - if (m_Command is SkipCommand) - { - m_Command.Execute(Context); - Result = Context.CurrentResult; - yield break; - } - - //Check if we can execute this test - var firstEnumerableCommand = FindFirstIEnumerableTestMethodCommand(m_Command); - if (firstEnumerableCommand == null) - { - Context.CurrentResult.SetResult(ResultState.Error, "Returning IEnumerator but not using test attribute supporting this"); - yield break; - } - - if (m_Command.Test.Method.ReturnType.IsType(typeof(IEnumerator))) - { - if (m_Command is ApplyChangesToContextCommand) - { - var applyChangesToContextCommand = ((ApplyChangesToContextCommand)m_Command); - applyChangesToContextCommand.ApplyChanges(Context); - m_Command = applyChangesToContextCommand.GetInnerCommand(); - } - - var innerCommand = (IEnumerableTestMethodCommand)m_Command; - if (innerCommand == null) - { - Debug.Log("failed getting innerCommand"); - throw new Exception("Tests returning IEnumerator can only use test attributes handling those"); - } - - foreach (var workItemStep in innerCommand.ExecuteEnumerable(Context)) - { - if (IsCancelledRun()) - { - yield break; - } - - if (workItemStep is TestEnumerator) - { - if (EnumeratorStepHelper.UpdateEnumeratorPcIfNeeded(TestEnumerator.Enumerator)) - { - yield return new RestoreTestContextAfterDomainReload(); - } - continue; - } - - if (workItemStep is AsyncOperation) - { - var asyncOperation = (AsyncOperation)workItemStep; - while (!asyncOperation.isDone) - { - if (IsCancelledRun()) - { - yield break; - } - - yield return null; - } - continue; - } - - ResultedInDomainReload = false; - - if (workItemStep is IEditModeTestYieldInstruction) - { - var editModeTestYieldInstruction = (IEditModeTestYieldInstruction)workItemStep; - yield return editModeTestYieldInstruction; - var enumerator = editModeTestYieldInstruction.Perform(); - while (true) - { - bool moveNext; - try - { - moveNext = enumerator.MoveNext(); - } - catch (Exception e) - { - Context.CurrentResult.RecordException(e); - break; - } - - if (!moveNext) - { - break; - } - yield return null; - } - } - else - { - yield return workItemStep; - } - } - - Result = Context.CurrentResult; - EditorApplication.isPlaying = false; - yield return null; - } - } - finally - { - WorkItemComplete(); - } - } - - private bool IsCancelledRun() - { - return Context.ExecutionStatus == TestExecutionStatus.AbortRequested || Context.ExecutionStatus == TestExecutionStatus.StopRequested; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EditorEnumeratorTestWorkItem.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EditorEnumeratorTestWorkItem.cs.meta deleted file mode 100644 index 982f7eeb0..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EditorEnumeratorTestWorkItem.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 1ebc1994f9a3d5649a1201d3a84b38df -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EnumeratorStepHelper.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EnumeratorStepHelper.cs deleted file mode 100644 index 98eeda867..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EnumeratorStepHelper.cs +++ /dev/null @@ -1,51 +0,0 @@ -using System.Collections; -using System.Reflection; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class EnumeratorStepHelper - { - private static int m_PC; - - public static void SetEnumeratorPC(int pc) - { - m_PC = pc; - } - - /// - /// Gets the current enumerator PC - /// - /// - /// The PC - /// 0 if no current Enumeration - /// - public static int GetEnumeratorPC(IEnumerator enumerator) - { - if (enumerator == null) - { - return 0; - } - return (int)GetPCFieldInfo(enumerator).GetValue(enumerator); - } - - public static bool UpdateEnumeratorPcIfNeeded(IEnumerator enumerator) - { - if (m_PC > 0) - { - GetPCFieldInfo(enumerator).SetValue(enumerator, m_PC); - m_PC = 0; - return true; - } - return false; - } - - private static FieldInfo GetPCFieldInfo(IEnumerator enumerator) - { - var field = enumerator.GetType().GetField("$PC", BindingFlags.NonPublic | BindingFlags.Instance); - if (field == null) // Roslyn - field = enumerator.GetType().GetField("<>1__state", BindingFlags.NonPublic | BindingFlags.Instance); - - return field; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EnumeratorStepHelper.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EnumeratorStepHelper.cs.meta deleted file mode 100644 index 08662b9ec..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/EnumeratorStepHelper.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 901b761c5c1e22d4e8a3ba7d95bc1f5d -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages.meta deleted file mode 100644 index 0660c6371..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: d9682e749d3efc642af54d789d9090a6 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages/EnterPlayMode.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages/EnterPlayMode.cs deleted file mode 100644 index 796c531d8..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages/EnterPlayMode.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections; -using UnityEditor; - -namespace UnityEngine.TestTools -{ - public class EnterPlayMode : IEditModeTestYieldInstruction - { - public bool ExpectDomainReload { get; } - public bool ExpectedPlaymodeState { get; private set; } - - public EnterPlayMode(bool expectDomainReload = true) - { - ExpectDomainReload = expectDomainReload; - } - - public IEnumerator Perform() - { - if (EditorApplication.isPlaying) - { - throw new Exception("Editor is already in PlayMode"); - } - if (EditorUtility.scriptCompilationFailed) - { - throw new Exception("Script compilation failed"); - } - yield return null; - ExpectedPlaymodeState = true; - - EditorApplication.UnlockReloadAssemblies(); - EditorApplication.isPlaying = true; - - while (!EditorApplication.isPlaying) - { - yield return null; - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages/EnterPlayMode.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages/EnterPlayMode.cs.meta deleted file mode 100644 index fa1dc2e0f..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages/EnterPlayMode.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 9bd5a110ed89025499ddee8c7e73778e -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages/ExitPlayMode.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages/ExitPlayMode.cs deleted file mode 100644 index 2eed28baf..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages/ExitPlayMode.cs +++ /dev/null @@ -1,32 +0,0 @@ -using System; -using System.Collections; -using UnityEditor; - -namespace UnityEngine.TestTools -{ - public class ExitPlayMode : IEditModeTestYieldInstruction - { - public bool ExpectDomainReload { get; } - public bool ExpectedPlaymodeState { get; private set; } - - public ExitPlayMode() - { - ExpectDomainReload = false; - ExpectedPlaymodeState = false; - } - - public IEnumerator Perform() - { - if (!EditorApplication.isPlayingOrWillChangePlaymode) - { - throw new Exception("Editor is already in EditMode"); - } - - EditorApplication.isPlaying = false; - while (EditorApplication.isPlaying) - { - yield return null; - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages/ExitPlayMode.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages/ExitPlayMode.cs.meta deleted file mode 100644 index 1de769dc1..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages/ExitPlayMode.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 408674d91d506a54aac9a7f07951c018 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages/RecompileScripts.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages/RecompileScripts.cs deleted file mode 100644 index cd15bf3f5..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages/RecompileScripts.cs +++ /dev/null @@ -1,63 +0,0 @@ -using System; -using System.Collections; -using UnityEditor; - -namespace UnityEngine.TestTools -{ - internal class RecompileScripts : IEditModeTestYieldInstruction - { - public RecompileScripts() : this(true) - { - } - - public RecompileScripts(bool expectScriptCompilation) : this(expectScriptCompilation, true) - { - } - - public RecompileScripts(bool expectScriptCompilation, bool expectScriptCompilationSuccess) - { - ExpectScriptCompilation = expectScriptCompilation; - ExpectScriptCompilationSuccess = expectScriptCompilationSuccess; - ExpectDomainReload = true; - } - - public bool ExpectDomainReload { get; private set; } - public bool ExpectedPlaymodeState { get; } - public bool ExpectScriptCompilation { get; private set; } - public bool ExpectScriptCompilationSuccess { get; private set; } - public static RecompileScripts Current { get; private set; } - - public IEnumerator Perform() - { - Current = this; - - // We need to yield, to give the test runner a chance to prepare for the domain reload - // If the script compilation happens very fast, then EditModeRunner.MoveNextAndUpdateYieldObject will not have a chance to set m_CurrentYieldObject - // This really should be fixed in EditModeRunner.MoveNextAndUpdateYieldObject - yield return null; - - AssetDatabase.Refresh(); - - if (ExpectScriptCompilation && !EditorApplication.isCompiling) - { - Current = null; - throw new Exception("Editor does not need to recompile scripts"); - } - - EditorApplication.UnlockReloadAssemblies(); - - while (EditorApplication.isCompiling) - { - yield return null; - } - - Current = null; - - if (ExpectScriptCompilationSuccess && EditorUtility.scriptCompilationFailed) - { - EditorApplication.LockReloadAssemblies(); - throw new Exception("Script compilation failed"); - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages/RecompileScripts.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages/RecompileScripts.cs.meta deleted file mode 100644 index f764d6e80..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages/RecompileScripts.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 9202fbba95ea8294cb5e718f028f21b0 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages/WaitForDomainReload.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages/WaitForDomainReload.cs deleted file mode 100644 index be5534bb2..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages/WaitForDomainReload.cs +++ /dev/null @@ -1,44 +0,0 @@ -using System; -using System.Collections; -using UnityEditor; - -namespace UnityEngine.TestTools -{ - internal class WaitForDomainReload : IEditModeTestYieldInstruction - { - public WaitForDomainReload() - { - ExpectDomainReload = true; - } - - public bool ExpectDomainReload { get;  } - public bool ExpectedPlaymodeState { get; } - - public IEnumerator Perform() - { - EditorApplication.UnlockReloadAssemblies(); - - // Detect if AssetDatabase.Refresh was called (true) or if it will be called on next tick - bool isAsync = EditorApplication.isCompiling; - - yield return null; - - if (!isAsync) - { - EditorApplication.LockReloadAssemblies(); - throw new Exception("Expected domain reload, but it did not occur"); - } - - while (EditorApplication.isCompiling) - { - yield return null; - } - - if (EditorUtility.scriptCompilationFailed) - { - EditorApplication.LockReloadAssemblies(); - throw new Exception("Script compilation failed"); - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages/WaitForDomainReload.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages/WaitForDomainReload.cs.meta deleted file mode 100644 index 7fa45cb54..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Messages/WaitForDomainReload.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 5df3c21c5237c994db89660fbdfee07d -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/TestFileCleanupVerifier.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/TestFileCleanupVerifier.cs deleted file mode 100644 index 45417cd67..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/TestFileCleanupVerifier.cs +++ /dev/null @@ -1,98 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using UnityEngine; - -namespace UnityEditor.TestTools.TestRunner -{ - [Serializable] - internal class TestFileCleanupVerifier - { - const string k_Indent = " "; - - [SerializeField] - List m_ExistingFiles; - - [SerializeField] - bool m_ExistingFilesScanned; - - public Action logAction = Debug.LogWarning; - - private Func getAllAssetPathsAction; - public Func GetAllAssetPathsAction - { - get - { - if (getAllAssetPathsAction != null) - { - return getAllAssetPathsAction; - } - return AssetDatabase.GetAllAssetPaths; - } - set - { - getAllAssetPathsAction = value; - } - } - - public void RegisterExistingFiles() - { - if (m_ExistingFilesScanned) - { - return; - } - - m_ExistingFiles = GetAllFilesInAssetsDirectory().ToList(); - m_ExistingFilesScanned = true; - } - - public void VerifyNoNewFilesAdded() - { - var currentFiles = GetAllFilesInAssetsDirectory().ToList(); - - //Expect that if its the same amount of files, there havent been any changes - //This is to optimize if there are many files - if (currentFiles.Count != m_ExistingFiles.Count) - { - LogWarningForFilesIfAny(currentFiles.Except(m_ExistingFiles)); - } - } - - void LogWarningForFilesIfAny(IEnumerable filePaths) - { - if (!filePaths.Any()) - { - return; - } - - var stringWriter = new StringWriter(); - stringWriter.WriteLine("Files generated by test without cleanup."); - stringWriter.WriteLine(k_Indent + "Found {0} new files.", filePaths.Count()); - - foreach (var filePath in filePaths) - { - stringWriter.WriteLine(k_Indent + filePath); - } - - LogAction(stringWriter.ToString()); - } - - private void LogAction(object obj) - { - if (this.logAction != null) - { - this.logAction(obj); - } - else - { - Debug.LogWarning(obj); - } - } - - private IEnumerable GetAllFilesInAssetsDirectory() - { - return GetAllAssetPathsAction(); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/TestFileCleanupVerifier.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/TestFileCleanupVerifier.cs.meta deleted file mode 100644 index 6a4fc47b8..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/TestFileCleanupVerifier.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: d6e23541e3b2fea489be46f704b64707 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils.meta deleted file mode 100644 index 78ceec0c2..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1f5bbb88ca730434483440cbc0278ef6 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/CachingTestListProvider.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/CachingTestListProvider.cs deleted file mode 100644 index ff540e679..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/CachingTestListProvider.cs +++ /dev/null @@ -1,48 +0,0 @@ -using System; -using System.Collections.Generic; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine.TestRunner.NUnitExtensions; -using UnityEngine.TestTools; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class CachingTestListProvider - { - private readonly ITestListProvider m_InnerTestListProvider; - private readonly ITestListCache m_TestListCache; - private readonly ITestAdaptorFactory m_TestAdaptorFactory; - public CachingTestListProvider(ITestListProvider innerTestListProvider, ITestListCache testListCache, ITestAdaptorFactory testAdaptorFactory) - { - m_InnerTestListProvider = innerTestListProvider; - m_TestListCache = testListCache; - m_TestAdaptorFactory = testAdaptorFactory; - } - - public IEnumerator GetTestListAsync(TestPlatform platform) - { - var testFromCache = m_TestListCache.GetTestFromCacheAsync(platform); - while (testFromCache.MoveNext()) - { - yield return null; - } - - - if (testFromCache.Current != null) - { - yield return testFromCache.Current; - } - else - { - var test = m_InnerTestListProvider.GetTestListAsync(platform); - while (test.MoveNext()) - { - yield return null; - } - - test.Current.ParseForNameDuplicates(); - m_TestListCache.CacheTest(platform, test.Current); - yield return m_TestAdaptorFactory.Create(test.Current); - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/CachingTestListProvider.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/CachingTestListProvider.cs.meta deleted file mode 100644 index 57566236e..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/CachingTestListProvider.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 26f3e7301af463c4ca72fa98d59b429e -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/EditorAssembliesProxy.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/EditorAssembliesProxy.cs deleted file mode 100644 index 568261948..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/EditorAssembliesProxy.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System.Linq; -using UnityEngine.TestTools.Utils; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class EditorAssembliesProxy : IEditorAssembliesProxy - { - public IAssemblyWrapper[] loadedAssemblies - { - get { return EditorAssemblies.loadedAssemblies.Select(x => new EditorAssemblyWrapper(x)).ToArray(); } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/EditorAssembliesProxy.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/EditorAssembliesProxy.cs.meta deleted file mode 100644 index fdb1b6c4d..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/EditorAssembliesProxy.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: f96d0ea807c081145a1170ed1b6d71e0 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/EditorAssemblyWrapper.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/EditorAssemblyWrapper.cs deleted file mode 100644 index 804eb4b1f..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/EditorAssemblyWrapper.cs +++ /dev/null @@ -1,18 +0,0 @@ -using System.Reflection; -using UnityEngine.TestTools.Utils; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class EditorAssemblyWrapper : AssemblyWrapper - { - public EditorAssemblyWrapper(Assembly assembly) - : base(assembly) {} - - public override AssemblyName[] GetReferencedAssemblies() - { - return Assembly.GetReferencedAssemblies(); - } - - public override string Location { get { return Assembly.Location; } } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/EditorAssemblyWrapper.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/EditorAssemblyWrapper.cs.meta deleted file mode 100644 index 70bd58bf2..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/EditorAssemblyWrapper.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 20cdb37e6fea6d946bbb84d2c923db85 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/EditorCompilationInterfaceProxy.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/EditorCompilationInterfaceProxy.cs deleted file mode 100644 index ad0b5ad58..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/EditorCompilationInterfaceProxy.cs +++ /dev/null @@ -1,17 +0,0 @@ -using UnityEditor.Scripting.ScriptCompilation; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class EditorCompilationInterfaceProxy : IEditorCompilationInterfaceProxy - { - public ScriptAssembly[] GetAllEditorScriptAssemblies() - { - return EditorCompilationInterface.Instance.GetAllEditorScriptAssemblies(EditorCompilationInterface.GetAdditionalEditorScriptCompilationOptions()); - } - - public PrecompiledAssembly[] GetAllPrecompiledAssemblies() - { - return EditorCompilationInterface.Instance.GetAllPrecompiledAssemblies(); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/EditorCompilationInterfaceProxy.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/EditorCompilationInterfaceProxy.cs.meta deleted file mode 100644 index ef5ade0a6..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/EditorCompilationInterfaceProxy.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: c9b23632c77de204abfe8bf7168d48c0 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/EditorLoadedTestAssemblyProvider.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/EditorLoadedTestAssemblyProvider.cs deleted file mode 100644 index 6d8cc0e68..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/EditorLoadedTestAssemblyProvider.cs +++ /dev/null @@ -1,69 +0,0 @@ -using System.Collections.Generic; -using System.IO; -using System.Linq; -using UnityEditor.Scripting.ScriptCompilation; -using UnityEngine.TestTools; -using UnityEngine.TestTools.Utils; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class EditorLoadedTestAssemblyProvider - { - private const string k_NunitAssemblyName = "nunit.framework"; - private const string k_TestRunnerAssemblyName = "UnityEngine.TestRunner"; - internal const string k_PerformanceTestingAssemblyName = "Unity.PerformanceTesting"; - - private readonly IEditorAssembliesProxy m_EditorAssembliesProxy; - private readonly ScriptAssembly[] m_AllEditorScriptAssemblies; - private readonly PrecompiledAssembly[] m_AllPrecompiledAssemblies; - - public EditorLoadedTestAssemblyProvider(IEditorCompilationInterfaceProxy compilationInterfaceProxy, IEditorAssembliesProxy editorAssembliesProxy) - { - m_EditorAssembliesProxy = editorAssembliesProxy; - m_AllEditorScriptAssemblies = compilationInterfaceProxy.GetAllEditorScriptAssemblies(); - m_AllPrecompiledAssemblies = compilationInterfaceProxy.GetAllPrecompiledAssemblies(); - } - - public List GetAssembliesGroupedByType(TestPlatform mode) - { - var assemblies = GetAssembliesGroupedByTypeAsync(mode); - while (assemblies.MoveNext()) - { - } - - return assemblies.Current; - } - - public IEnumerator> GetAssembliesGroupedByTypeAsync(TestPlatform mode) - { - IAssemblyWrapper[] loadedAssemblies = m_EditorAssembliesProxy.loadedAssemblies; - - IDictionary> result = new Dictionary>() - { - {TestPlatform.EditMode, new List() }, - {TestPlatform.PlayMode, new List() } - }; - - foreach (var loadedAssembly in loadedAssemblies) - { - if (loadedAssembly.GetReferencedAssemblies().Any(x => x.Name == k_NunitAssemblyName || x.Name == k_TestRunnerAssemblyName || x.Name == k_PerformanceTestingAssemblyName)) - { - var assemblyName = new FileInfo(loadedAssembly.Location).Name; - var scriptAssemblies = m_AllEditorScriptAssemblies.Where(x => x.Filename == assemblyName).ToList(); - var precompiledAssemblies = m_AllPrecompiledAssemblies.Where(x => new FileInfo(x.Path).Name == assemblyName).ToList(); - if (scriptAssemblies.Count < 1 && precompiledAssemblies.Count < 1) - { - continue; - } - - var assemblyFlags = scriptAssemblies.Any() ? scriptAssemblies.Single().Flags : precompiledAssemblies.Single().Flags; - var assemblyType = (assemblyFlags & AssemblyFlags.EditorOnly) == AssemblyFlags.EditorOnly ? TestPlatform.EditMode : TestPlatform.PlayMode; - result[assemblyType].Add(loadedAssembly); - yield return null; - } - } - - yield return result[mode]; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/EditorLoadedTestAssemblyProvider.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/EditorLoadedTestAssemblyProvider.cs.meta deleted file mode 100644 index efba6a7c9..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/EditorLoadedTestAssemblyProvider.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 033c884ba52437d49bc55935939ef1c6 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/IEditorAssembliesProxy.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/IEditorAssembliesProxy.cs deleted file mode 100644 index 35ec87d0e..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/IEditorAssembliesProxy.cs +++ /dev/null @@ -1,9 +0,0 @@ -using UnityEngine.TestTools.Utils; - -namespace UnityEditor.TestTools.TestRunner -{ - internal interface IEditorAssembliesProxy - { - IAssemblyWrapper[] loadedAssemblies { get; } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/IEditorAssembliesProxy.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/IEditorAssembliesProxy.cs.meta deleted file mode 100644 index ad00f55d8..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/IEditorAssembliesProxy.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 98808b11e78f6c84a841a6b4bc5a29d2 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/IEditorCompilationInterfaceProxy.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/IEditorCompilationInterfaceProxy.cs deleted file mode 100644 index 25defb783..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/IEditorCompilationInterfaceProxy.cs +++ /dev/null @@ -1,10 +0,0 @@ -using UnityEditor.Scripting.ScriptCompilation; - -namespace UnityEditor.TestTools.TestRunner -{ - internal interface IEditorCompilationInterfaceProxy - { - ScriptAssembly[] GetAllEditorScriptAssemblies(); - PrecompiledAssembly[] GetAllPrecompiledAssemblies(); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/IEditorCompilationInterfaceProxy.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/IEditorCompilationInterfaceProxy.cs.meta deleted file mode 100644 index 2bc608bf4..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/IEditorCompilationInterfaceProxy.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 28c8fcb831e6e734a9f564bc4f495eba -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/ITestListCache.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/ITestListCache.cs deleted file mode 100644 index 5df7a784e..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/ITestListCache.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System.Collections.Generic; -using NUnit.Framework.Interfaces; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine.TestTools; - -namespace UnityEditor.TestTools.TestRunner -{ - interface ITestListCache - { - void CacheTest(TestPlatform platform, ITest test); - IEnumerator GetTestFromCacheAsync(TestPlatform platform); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/ITestListCache.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/ITestListCache.cs.meta deleted file mode 100644 index 41943d421..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/ITestListCache.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: a704c010bcdb1ec4a9f3417b3c393164 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/ITestListCacheData.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/ITestListCacheData.cs deleted file mode 100644 index c93762d91..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/ITestListCacheData.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System.Collections.Generic; -using UnityEngine.TestRunner.TestLaunchers; -using UnityEngine.TestTools; - -namespace UnityEditor.TestTools.TestRunner -{ - interface ITestListCacheData - { - List platforms { get; } - List cachedData { get; } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/ITestListCacheData.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/ITestListCacheData.cs.meta deleted file mode 100644 index b229c0cbf..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/ITestListCacheData.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 7043e9a330ac2d84a80a965ada4589ad -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/ITestListProvider.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/ITestListProvider.cs deleted file mode 100644 index b734f5361..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/ITestListProvider.cs +++ /dev/null @@ -1,11 +0,0 @@ -using System.Collections.Generic; -using NUnit.Framework.Interfaces; -using UnityEngine.TestTools; - -namespace UnityEditor.TestTools.TestRunner -{ - interface ITestListProvider - { - IEnumerator GetTestListAsync(TestPlatform platform); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/ITestListProvider.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/ITestListProvider.cs.meta deleted file mode 100644 index b62929bc6..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/ITestListProvider.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 64689f8b25eadac4da519e96f514b653 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/TestListCache.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/TestListCache.cs deleted file mode 100644 index 6f48c9c83..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/TestListCache.cs +++ /dev/null @@ -1,64 +0,0 @@ -using System.Collections.Generic; -using NUnit.Framework.Interfaces; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine.TestRunner.TestLaunchers; -using UnityEngine.TestTools; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class TestListCache : ITestListCache - { - private readonly ITestAdaptorFactory m_TestAdaptorFactory; - private readonly IRemoteTestResultDataFactory m_TestResultDataFactory; - private readonly ITestListCacheData m_TestListCacheData; - - public TestListCache(ITestAdaptorFactory testAdaptorFactory, IRemoteTestResultDataFactory testResultDataFactory, ITestListCacheData testListCacheData) - { - m_TestAdaptorFactory = testAdaptorFactory; - m_TestResultDataFactory = testResultDataFactory; - m_TestListCacheData = testListCacheData; - } - - public void CacheTest(TestPlatform platform, ITest test) - { - var data = m_TestResultDataFactory.CreateFromTest(test); - - var index = m_TestListCacheData.platforms.IndexOf(platform); - if (index < 0) - { - m_TestListCacheData.cachedData.Add(data); - m_TestListCacheData.platforms.Add(platform); - } - else - { - m_TestListCacheData.cachedData[index] = data; - } - } - - public IEnumerator GetTestFromCacheAsync(TestPlatform platform) - { - var index = m_TestListCacheData.platforms.IndexOf(platform); - if (index < 0) - { - yield return null; - yield break; - } - - var testData = m_TestListCacheData.cachedData[index]; - var test = m_TestAdaptorFactory.BuildTreeAsync(testData); - while (test.MoveNext()) - { - yield return null; - } - - yield return test.Current; - } - - [Callbacks.DidReloadScripts] - private static void ScriptReloaded() - { - TestListCacheData.instance.cachedData.Clear(); - TestListCacheData.instance.platforms.Clear(); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/TestListCache.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/TestListCache.cs.meta deleted file mode 100644 index ea8d09669..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/TestListCache.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: d685d97a1eb004f49afea0cc982ff728 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/TestListCacheData.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/TestListCacheData.cs deleted file mode 100644 index 58acbc0b1..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/TestListCacheData.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System.Collections.Generic; -using UnityEngine; -using UnityEngine.TestRunner.TestLaunchers; -using UnityEngine.TestTools; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class TestListCacheData : ScriptableSingleton, ITestListCacheData - { - [SerializeField] - private List m_Platforms = new List(); - - [SerializeField] - private List m_CachedData = new List(); - - public List platforms - { - get { return m_Platforms; } - } - - public List cachedData - { - get { return m_CachedData; } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/TestListCacheData.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/TestListCacheData.cs.meta deleted file mode 100644 index 2ad79acaa..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/TestListCacheData.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: f1b6399349763114d9361bc6dfcd025b -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/TestListJob.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/TestListJob.cs deleted file mode 100644 index 0df60c35e..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/TestListJob.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Collections.Generic; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine.TestTools; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class TestListJob - { - private CachingTestListProvider m_TestListProvider; - private TestPlatform m_Platform; - private Action m_Callback; - private IEnumerator m_ResultEnumerator; - public TestListJob(CachingTestListProvider testListProvider, TestPlatform platform, Action callback) - { - m_TestListProvider = testListProvider; - m_Platform = platform; - m_Callback = callback; - } - - public void Start() - { - m_ResultEnumerator = m_TestListProvider.GetTestListAsync(m_Platform); - EditorApplication.update += EditorUpdate; - } - - private void EditorUpdate() - { - if (!m_ResultEnumerator.MoveNext()) - { - m_Callback(m_ResultEnumerator.Current); - EditorApplication.update -= EditorUpdate; - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/TestListJob.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/TestListJob.cs.meta deleted file mode 100644 index a17c09155..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/TestListJob.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: dec9066d4afefe444be0dad3f137730d -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/TestListProvider.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/TestListProvider.cs deleted file mode 100644 index f7d9a82cb..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/TestListProvider.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using NUnit.Framework.Interfaces; -using UnityEngine.TestTools; -using UnityEngine.TestTools.NUnitExtensions; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class TestListProvider : ITestListProvider - { - private readonly EditorLoadedTestAssemblyProvider m_AssemblyProvider; - private readonly UnityTestAssemblyBuilder m_AssemblyBuilder; - - public TestListProvider(EditorLoadedTestAssemblyProvider assemblyProvider, UnityTestAssemblyBuilder assemblyBuilder) - { - m_AssemblyProvider = assemblyProvider; - m_AssemblyBuilder = assemblyBuilder; - } - - public IEnumerator GetTestListAsync(TestPlatform platform) - { - var assemblies = m_AssemblyProvider.GetAssembliesGroupedByTypeAsync(platform); - while (assemblies.MoveNext()) - { - yield return null; - } - - var settings = UnityTestAssemblyBuilder.GetNUnitTestBuilderSettings(platform); - var test = m_AssemblyBuilder.BuildAsync(assemblies.Current.Select(x => x.Assembly).ToArray(), settings); - while (test.MoveNext()) - { - yield return null; - } - - yield return test.Current; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/TestListProvider.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/TestListProvider.cs.meta deleted file mode 100644 index c0e66d535..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunner/Utils/TestListProvider.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: f15cbb987069826429540d0ea0937442 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunnerWindow.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunnerWindow.cs deleted file mode 100644 index a591508af..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunnerWindow.cs +++ /dev/null @@ -1,274 +0,0 @@ -using System; -using UnityEditor.Callbacks; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEditor.TestTools.TestRunner.GUI; -using UnityEngine; - -namespace UnityEditor.TestTools.TestRunner -{ - [Serializable] - internal class TestRunnerWindow : EditorWindow, IHasCustomMenu - { - internal static class Styles - { - public static GUIStyle info; - public static GUIStyle testList; - - static Styles() - { - info = new GUIStyle(EditorStyles.wordWrappedLabel); - info.wordWrap = false; - info.stretchHeight = true; - info.margin.right = 15; - - testList = new GUIStyle("CN Box"); - testList.margin.top = 0; - testList.padding.left = 3; - } - } - - private readonly GUIContent m_GUIHorizontalSplit = EditorGUIUtility.TrTextContent("Horizontal layout"); - private readonly GUIContent m_GUIVerticalSplit = EditorGUIUtility.TrTextContent("Vertical layout"); - private readonly GUIContent m_GUIEnableaPlaymodeTestsRunner = EditorGUIUtility.TrTextContent("Enable playmode tests for all assemblies"); - private readonly GUIContent m_GUIDisablePlaymodeTestsRunner = EditorGUIUtility.TrTextContent("Disable playmode tests for all assemblies"); - private readonly GUIContent m_GUIRunPlayModeTestAsEditModeTests = EditorGUIUtility.TrTextContent("Run playmode tests as editmode tests"); - - internal static TestRunnerWindow s_Instance; - private bool m_IsBuilding; - [NonSerialized] - private bool m_Enabled; - public TestFilterSettings filterSettings; - - private readonly SplitterState m_Spl = new SplitterState(new float[] { 75, 25 }, new[] { 32, 32 }, null); - - private TestRunnerWindowSettings m_Settings; - - private enum TestRunnerMenuLabels - { - PlayMode = 0, - EditMode = 1 - } - [SerializeField] - private int m_TestTypeToolbarIndex = (int)TestRunnerMenuLabels.EditMode; - [SerializeField] - private PlayModeTestListGUI m_PlayModeTestListGUI; - [SerializeField] - private EditModeTestListGUI m_EditModeTestListGUI; - - internal TestListGUI m_SelectedTestTypes; - - private ITestRunnerApi m_testRunnerApi; - - private WindowResultUpdater m_WindowResultUpdater; - - [MenuItem("Window/General/Test Runner", false, 201, false)] - public static void ShowPlaymodeTestsRunnerWindowCodeBased() - { - if (s_Instance != null) - { - try - { - s_Instance.Close(); - } - catch (Exception exception) - { - Debug.LogException(exception); - } - } - - s_Instance = GetWindow("Test Runner"); - s_Instance.Show(); - } - - static TestRunnerWindow() - { - InitBackgroundRunners(); - } - - private static void InitBackgroundRunners() - { - EditorApplication.playModeStateChanged -= OnPlayModeStateChanged; - EditorApplication.playModeStateChanged += OnPlayModeStateChanged; - } - - [DidReloadScripts] - private static void CompilationCallback() - { - UpdateWindow(); - } - - private static void OnPlayModeStateChanged(PlayModeStateChange state) - { - if (s_Instance && state == PlayModeStateChange.EnteredEditMode && s_Instance.m_SelectedTestTypes.HasTreeData()) - { - //repaint message details after exit playmode - s_Instance.m_SelectedTestTypes.TestSelectionCallback(s_Instance.m_SelectedTestTypes.m_TestListState.selectedIDs.ToArray()); - s_Instance.Repaint(); - } - } - - public void OnDestroy() - { - EditorApplication.playModeStateChanged -= OnPlayModeStateChanged; - if (m_testRunnerApi != null) - { - m_testRunnerApi.UnregisterCallbacks(m_WindowResultUpdater); - } - } - - private void OnEnable() - { - s_Instance = this; - SelectTestListGUI(m_TestTypeToolbarIndex); - - m_testRunnerApi = ScriptableObject.CreateInstance(); - m_WindowResultUpdater = new WindowResultUpdater(); - m_testRunnerApi.RegisterCallbacks(m_WindowResultUpdater); - } - - private void Enable() - { - m_Settings = new TestRunnerWindowSettings("UnityEditor.PlaymodeTestsRunnerWindow"); - filterSettings = new TestFilterSettings("UnityTest.IntegrationTestsRunnerWindow"); - - if (m_SelectedTestTypes == null) - { - SelectTestListGUI(m_TestTypeToolbarIndex); - } - - StartRetrieveTestList(); - m_SelectedTestTypes.Reload(); - m_Enabled = true; - } - - private void SelectTestListGUI(int testTypeToolbarIndex) - { - if (testTypeToolbarIndex == (int)TestRunnerMenuLabels.PlayMode) - { - if (m_PlayModeTestListGUI == null) - { - m_PlayModeTestListGUI = new PlayModeTestListGUI(); - } - m_SelectedTestTypes = m_PlayModeTestListGUI; - } - else if (testTypeToolbarIndex == (int)TestRunnerMenuLabels.EditMode) - { - if (m_EditModeTestListGUI == null) - { - m_EditModeTestListGUI = new EditModeTestListGUI(); - } - m_SelectedTestTypes = m_EditModeTestListGUI; - } - } - - private void StartRetrieveTestList() - { - if (!m_SelectedTestTypes.HasTreeData()) - { - m_testRunnerApi.RetrieveTestList(new ExecutionSettings() { filter = new Filter() { testMode = m_SelectedTestTypes.TestMode } }, (rootTest) => - { - m_SelectedTestTypes.Init(this, rootTest); - m_SelectedTestTypes.Reload(); - }); - } - } - - public void OnGUI() - { - if (!m_Enabled) - { - Enable(); - } - - if (BuildPipeline.isBuildingPlayer) - { - m_IsBuilding = true; - } - else if (m_IsBuilding) - { - m_IsBuilding = false; - Repaint(); - } - - EditorGUILayout.BeginHorizontal(); - GUILayout.FlexibleSpace(); - var selectedIndex = m_TestTypeToolbarIndex; - m_TestTypeToolbarIndex = GUILayout.Toolbar(m_TestTypeToolbarIndex, Enum.GetNames(typeof(TestRunnerMenuLabels)), "LargeButton", UnityEngine.GUI.ToolbarButtonSize.FitToContents); - GUILayout.FlexibleSpace(); - EditorGUILayout.EndHorizontal(); - - if (selectedIndex != m_TestTypeToolbarIndex) - { - SelectTestListGUI(m_TestTypeToolbarIndex); - StartRetrieveTestList(); - } - - EditorGUILayout.BeginVertical(); - using (new EditorGUI.DisabledScope(EditorApplication.isPlayingOrWillChangePlaymode)) - { - m_SelectedTestTypes.PrintHeadPanel(); - } - EditorGUILayout.EndVertical(); - - if (m_Settings.verticalSplit) - SplitterGUILayout.BeginVerticalSplit(m_Spl); - else - SplitterGUILayout.BeginHorizontalSplit(m_Spl); - - EditorGUILayout.BeginVertical(); - EditorGUILayout.BeginVertical(Styles.testList); - m_SelectedTestTypes.RenderTestList(); - EditorGUILayout.EndVertical(); - EditorGUILayout.EndVertical(); - - m_SelectedTestTypes.RenderDetails(); - - if (m_Settings.verticalSplit) - SplitterGUILayout.EndVerticalSplit(); - else - SplitterGUILayout.EndHorizontalSplit(); - } - - public void AddItemsToMenu(GenericMenu menu) - { - menu.AddItem(m_GUIVerticalSplit, m_Settings.verticalSplit, m_Settings.ToggleVerticalSplit); - menu.AddItem(m_GUIHorizontalSplit, !m_Settings.verticalSplit, m_Settings.ToggleVerticalSplit); - - menu.AddSeparator(null); - - var playModeTestRunnerEnabled = PlayerSettings.playModeTestRunnerEnabled; - var currentActive = playModeTestRunnerEnabled ? m_GUIDisablePlaymodeTestsRunner : m_GUIEnableaPlaymodeTestsRunner; - - if (EditorPrefs.GetBool("InternalMode", false)) - { - menu.AddItem(m_GUIRunPlayModeTestAsEditModeTests, PlayerSettings.runPlayModeTestAsEditModeTest, () => - { - PlayerSettings.runPlayModeTestAsEditModeTest = !PlayerSettings.runPlayModeTestAsEditModeTest; - }); - } - - menu.AddItem(currentActive, false, () => - { - PlayerSettings.playModeTestRunnerEnabled = !playModeTestRunnerEnabled; - EditorUtility.DisplayDialog(currentActive.text, "You need to restart the editor now", "Ok"); - }); - } - - public void RebuildUIFilter() - { - if (m_SelectedTestTypes != null && m_SelectedTestTypes.HasTreeData()) - { - m_SelectedTestTypes.RebuildUIFilter(); - } - } - - public static void UpdateWindow() - { - if (s_Instance != null && s_Instance.m_SelectedTestTypes != null) - { - s_Instance.m_SelectedTestTypes.Repaint(); - s_Instance.Repaint(); - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunnerWindow.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunnerWindow.cs.meta deleted file mode 100644 index 5cb0e868a..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunnerWindow.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 4dfcd3a631f61d248b7cc0b845d40345 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunnerWindowSettings.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunnerWindowSettings.cs deleted file mode 100644 index 366df2608..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunnerWindowSettings.cs +++ /dev/null @@ -1,26 +0,0 @@ -namespace UnityEditor.TestTools.TestRunner -{ - internal class TestRunnerWindowSettings - { - public bool verticalSplit; - - private readonly string m_PrefsKey; - - public TestRunnerWindowSettings(string prefsKey) - { - m_PrefsKey = prefsKey; - verticalSplit = EditorPrefs.GetBool(m_PrefsKey + ".verticalSplit", true); - } - - public void ToggleVerticalSplit() - { - verticalSplit = !verticalSplit; - Save(); - } - - private void Save() - { - EditorPrefs.SetBool(m_PrefsKey + ".verticalSplit", verticalSplit); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunnerWindowSettings.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunnerWindowSettings.cs.meta deleted file mode 100644 index 44bcc5a02..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestRunnerWindowSettings.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 2b301b727225f1941974d69e61a55620 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings.meta deleted file mode 100644 index 412763108..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 95b719082a664ea45bb56759eed1f271 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings/ITestSettings.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings/ITestSettings.cs deleted file mode 100644 index d2720372c..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings/ITestSettings.cs +++ /dev/null @@ -1,22 +0,0 @@ -using System; - -namespace UnityEditor.TestTools.TestRunner -{ - internal interface ITestSettings : IDisposable - { - ScriptingImplementation? scriptingBackend { get; set; } - - string Architecture { get; set; } - - ApiCompatibilityLevel? apiProfile { get; set; } - - bool? appleEnableAutomaticSigning { get; set; } - string appleDeveloperTeamID { get; set; } - ProvisioningProfileType? iOSManualProvisioningProfileType { get; set; } - string iOSManualProvisioningProfileID { get; set; } - ProvisioningProfileType? tvOSManualProvisioningProfileType { get; set; } - string tvOSManualProvisioningProfileID { get; set; } - - void SetupProjectParameters(); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings/ITestSettings.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings/ITestSettings.cs.meta deleted file mode 100644 index 9a8563c95..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings/ITestSettings.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 83eda34b7da01e04aa894f268158b0c0 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings/ITestSettingsDeserializer.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings/ITestSettingsDeserializer.cs deleted file mode 100644 index 701c91d8f..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings/ITestSettingsDeserializer.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace UnityEditor.TestTools.TestRunner -{ - interface ITestSettingsDeserializer - { - ITestSettings GetSettingsFromJsonFile(string jsonFilePath); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings/ITestSettingsDeserializer.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings/ITestSettingsDeserializer.cs.meta deleted file mode 100644 index 72c587e71..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings/ITestSettingsDeserializer.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: d208a1684f8aa6a40ad91d6aa9600c14 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings/TestSettings.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings/TestSettings.cs deleted file mode 100644 index a5bdf7ad6..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings/TestSettings.cs +++ /dev/null @@ -1,160 +0,0 @@ -using System; - -namespace UnityEditor.TestTools.TestRunner -{ - internal class TestSettings : ITestSettings - { - private readonly TestSetting[] m_Settings = - { - new TestSetting( - settings => settings.scriptingBackend, - () => PlayerSettings.GetScriptingBackend(EditorUserBuildSettings.activeBuildTargetGroup), - implementation => PlayerSettings.SetScriptingBackend(EditorUserBuildSettings.activeBuildTargetGroup, implementation.Value)), - new TestSetting( - settings => settings.Architecture, - () => EditorUserBuildSettings.activeBuildTarget == BuildTarget.Android ? PlayerSettings.Android.targetArchitectures.ToString() : null, - architecture => - { - if (EditorUserBuildSettings.activeBuildTarget == BuildTarget.Android) - { - if (!string.IsNullOrEmpty(architecture)) - { - var targetArchitectures = (AndroidArchitecture)Enum.Parse(typeof(AndroidArchitecture), architecture, true); - PlayerSettings.Android.targetArchitectures = targetArchitectures; - } - } - }), - new TestSetting( - settings => settings.apiProfile, - () => PlayerSettings.GetApiCompatibilityLevel(EditorUserBuildSettings.activeBuildTargetGroup), - implementation => - { - if (Enum.IsDefined(typeof(ApiCompatibilityLevel), implementation.Value)) - { - PlayerSettings.SetApiCompatibilityLevel(EditorUserBuildSettings.activeBuildTargetGroup, - implementation.Value); - } - }), - new TestSetting( - settings => settings.appleEnableAutomaticSigning, - () => PlayerSettings.iOS.appleEnableAutomaticSigning, - enableAutomaticSigning => - { - if (enableAutomaticSigning != null) - PlayerSettings.iOS.appleEnableAutomaticSigning = enableAutomaticSigning.Value; - }), - new TestSetting( - settings => settings.appleDeveloperTeamID, - () => PlayerSettings.iOS.appleDeveloperTeamID, - developerTeam => - { - if (developerTeam != null) - PlayerSettings.iOS.appleDeveloperTeamID = developerTeam; - }), - new TestSetting( - settings => settings.iOSManualProvisioningProfileType, - () => PlayerSettings.iOS.iOSManualProvisioningProfileType, - profileType => - { - if (profileType != null) - PlayerSettings.iOS.iOSManualProvisioningProfileType = profileType.Value; - }), - new TestSetting( - settings => settings.iOSManualProvisioningProfileID, - () => PlayerSettings.iOS.iOSManualProvisioningProfileID, - provisioningUUID => - { - if (provisioningUUID != null) - PlayerSettings.iOS.iOSManualProvisioningProfileID = provisioningUUID; - }), - new TestSetting( - settings => settings.tvOSManualProvisioningProfileType, - () => PlayerSettings.iOS.tvOSManualProvisioningProfileType, - profileType => - { - if (profileType != null) - PlayerSettings.iOS.tvOSManualProvisioningProfileType = profileType.Value; - }), - new TestSetting( - settings => settings.tvOSManualProvisioningProfileID, - () => PlayerSettings.iOS.tvOSManualProvisioningProfileID, - provisioningUUID => - { - if (provisioningUUID != null) - PlayerSettings.iOS.tvOSManualProvisioningProfileID = provisioningUUID; - }), - }; - - private bool m_Disposed; - - public ScriptingImplementation? scriptingBackend { get; set; } - - public string Architecture { get; set; } - - public ApiCompatibilityLevel? apiProfile { get; set; } - - public bool? appleEnableAutomaticSigning { get; set; } - public string appleDeveloperTeamID { get; set; } - public ProvisioningProfileType? iOSManualProvisioningProfileType { get; set; } - public string iOSManualProvisioningProfileID { get; set; } - public ProvisioningProfileType? tvOSManualProvisioningProfileType { get; set; } - public string tvOSManualProvisioningProfileID { get; set; } - - public void Dispose() - { - if (!m_Disposed) - { - foreach (var testSetting in m_Settings) - { - testSetting.Cleanup(); - } - - m_Disposed = true; - } - } - - public void SetupProjectParameters() - { - foreach (var testSetting in m_Settings) - { - testSetting.Setup(this); - } - } - - private abstract class TestSetting - { - public abstract void Setup(TestSettings settings); - public abstract void Cleanup(); - } - - private class TestSetting : TestSetting - { - private T m_ValueBeforeSetup; - private Func m_GetFromSettings; - private Func m_GetCurrentValue; - private Action m_SetValue; - - public TestSetting(Func getFromSettings, Func getCurrentValue, Action setValue) - { - m_GetFromSettings = getFromSettings; - m_GetCurrentValue = getCurrentValue; - m_SetValue = setValue; - } - - public override void Setup(TestSettings settings) - { - m_ValueBeforeSetup = m_GetCurrentValue(); - var newValue = m_GetFromSettings(settings); - if (newValue != null) - { - m_SetValue(newValue); - } - } - - public override void Cleanup() - { - m_SetValue(m_ValueBeforeSetup); - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings/TestSettings.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings/TestSettings.cs.meta deleted file mode 100644 index 23e6f5e21..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings/TestSettings.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 6b32b6725087a0d4bb1670818d26996e -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings/TestSettingsDeserializer.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings/TestSettingsDeserializer.cs deleted file mode 100644 index cdba06e96..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings/TestSettingsDeserializer.cs +++ /dev/null @@ -1,130 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using UnityEngine; - -namespace UnityEditor.TestTools.TestRunner -{ - /// - /// Handles deserialization of TestSettings from a provided json file path. - /// - internal class TestSettingsDeserializer : ITestSettingsDeserializer - { - private static readonly SettingsMap[] s_SettingsMapping = - { - new SettingsMap("scriptingBackend", (settings, value) => settings.scriptingBackend = value), - new SettingsMap("architecture", (settings, value) => settings.Architecture = value), - new SettingsMap("apiProfile", (settings, value) => settings.apiProfile = value), - new SettingsMap("appleEnableAutomaticSigning", (settings, value) => settings.appleEnableAutomaticSigning = value), - new SettingsMap("appleDeveloperTeamID", (settings, value) => settings.appleDeveloperTeamID = value), - new SettingsMap("iOSManualProvisioningProfileType", (settings, value) => settings.iOSManualProvisioningProfileType = value), - new SettingsMap("iOSManualProvisioningProfileID", (settings, value) => settings.iOSManualProvisioningProfileID = value), - new SettingsMap("tvOSManualProvisioningProfileType", (settings, value) => settings.tvOSManualProvisioningProfileType = value), - new SettingsMap("tvOSManualProvisioningProfileID", (settings, value) => settings.tvOSManualProvisioningProfileID = value), - }; - - private readonly Func m_TestSettingsFactory; - public TestSettingsDeserializer(Func testSettingsFactory) - { - m_TestSettingsFactory = testSettingsFactory; - } - - public ITestSettings GetSettingsFromJsonFile(string jsonFilePath) - { - var text = File.ReadAllText(jsonFilePath); - var settingsDictionary = Json.Deserialize(text) as Dictionary; - - var testSettings = m_TestSettingsFactory(); - if (settingsDictionary == null) - { - return testSettings; - } - - foreach (var settingsMap in s_SettingsMapping) - { - if (!settingsDictionary.ContainsKey(settingsMap.Key)) - { - continue; - } - - if (settingsMap.Type.IsEnum) - { - SetEnumValue(settingsMap.Key, settingsDictionary[settingsMap.Key], settingsMap.Type, value => settingsMap.ApplyToSettings(testSettings, value)); - } - else - { - SetValue(settingsMap.Key, settingsDictionary[settingsMap.Key], settingsMap.Type, value => settingsMap.ApplyToSettings(testSettings, value)); - } - } - - return testSettings; - } - - private abstract class SettingsMap - { - public string Key { get; } - public Type Type { get; } - protected SettingsMap(string key, Type type) - { - Key = key; - Type = type; - } - - public abstract void ApplyToSettings(ITestSettings settings, object value); - } - - private class SettingsMap : SettingsMap - { - private Action m_Setter; - public SettingsMap(string key, Action setter) : base(key, typeof(T)) - { - m_Setter = setter; - } - - public override void ApplyToSettings(ITestSettings settings, object value) - { - m_Setter(settings, (T)value); - } - } - - private static void SetEnumValue(string key, object value, Type type, Action setter) - { - object enumValue; - if (TryGetEnum(value as string, type, out enumValue)) - { - setter(enumValue); - return; - } - - var acceptedValues = string.Join(", ", Enum.GetValues(type).OfType().Select(val => val.ToString()).ToArray()); - - Debug.LogFormat("Could not convert '{0}' argument '{1}' to a valid {2}. Accepted values: {3}.", key, value, type.Name, acceptedValues); - } - - private static bool TryGetEnum(string value, Type type, out object enumValue) - { - try - { - enumValue = Enum.Parse(type, value, true); - return true; - } - catch (Exception) - { - enumValue = null; - return false; - } - } - - private static void SetValue(string key, object value, Type type, Action setter) - { - if (type.IsInstanceOfType(value)) - { - setter(value); - return; - } - - Debug.LogFormat("Could not convert '{0}' argument '{1}' to a valid {2}.", key, value, type.Name); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings/TestSettingsDeserializer.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings/TestSettingsDeserializer.cs.meta deleted file mode 100644 index 4d50295de..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/TestSettings/TestSettingsDeserializer.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 75e7d7a9a57458841a85fe42d9c9141f -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityEditor.TestRunner.asmdef b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityEditor.TestRunner.asmdef deleted file mode 100644 index efdc7cf64..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityEditor.TestRunner.asmdef +++ /dev/null @@ -1,21 +0,0 @@ -{ - "name": "UnityEditor.TestRunner", - "references": [ - "UnityEngine.TestRunner" - ], - "includePlatforms": [ - "Editor" - ], - "excludePlatforms": [], - "allowUnsafeCode": false, - "overrideReferences": true, - "precompiledReferences": [ - "nunit.framework.dll", - "Mono.Cecil.dll", - "Mono.Cecil.Pdb.dll", - "Mono.Cecil.Mdb.dll", - "Mono.Cecil.Rocks.dll" - ], - "autoReferenced": false, - "defineConstraints": [] -} \ No newline at end of file diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityEditor.TestRunner.asmdef.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityEditor.TestRunner.asmdef.meta deleted file mode 100644 index 63c029004..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityEditor.TestRunner.asmdef.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 0acc523941302664db1f4e527237feb3 -AssemblyDefinitionImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol.meta deleted file mode 100644 index 8499c835b..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 936c6340f3468444ebb1785b4c311126 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/AssemblyCompilationErrorsMessage.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/AssemblyCompilationErrorsMessage.cs deleted file mode 100644 index 7f00c5b63..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/AssemblyCompilationErrorsMessage.cs +++ /dev/null @@ -1,13 +0,0 @@ -namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol -{ - internal class AssemblyCompilationErrorsMessage : Message - { - public string assembly; - public string[] errors; - - public AssemblyCompilationErrorsMessage() - { - type = "AssemblyCompilationErrors"; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/AssemblyCompilationErrorsMessage.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/AssemblyCompilationErrorsMessage.cs.meta deleted file mode 100644 index 67d5b2a37..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/AssemblyCompilationErrorsMessage.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: c346a7445959bba46a96de0747e77c2a -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/ITestRunnerApiMapper.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/ITestRunnerApiMapper.cs deleted file mode 100644 index f7dcacfe0..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/ITestRunnerApiMapper.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System.Collections.Generic; -using UnityEditor.TestTools.TestRunner.Api; - -namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol -{ - interface ITestRunnerApiMapper - { - string GetRunStateFromResultNunitXml(ITestResultAdaptor result); - TestState GetTestStateFromResult(ITestResultAdaptor result); - List FlattenTestNames(ITestAdaptor testsToRun); - TestPlanMessage MapTestToTestPlanMessage(ITestAdaptor testsToRun); - TestStartedMessage MapTestToTestStartedMessage(ITestAdaptor test); - TestFinishedMessage TestResultToTestFinishedMessage(ITestResultAdaptor result); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/ITestRunnerApiMapper.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/ITestRunnerApiMapper.cs.meta deleted file mode 100644 index 75e0ba237..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/ITestRunnerApiMapper.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 6de79ae237e51554da96fd28f68b66a6 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/IUtpLogger.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/IUtpLogger.cs deleted file mode 100644 index bdb96c13b..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/IUtpLogger.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol -{ - interface IUtpLogger - { - void Log(Message msg); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/IUtpLogger.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/IUtpLogger.cs.meta deleted file mode 100644 index dbd33aaca..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/IUtpLogger.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 9014630255533ed42915965b4065cde8 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/IUtpMessageReporter.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/IUtpMessageReporter.cs deleted file mode 100644 index 3a9895e11..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/IUtpMessageReporter.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System.Collections.Generic; -using UnityEditor.Compilation; -using UnityEditor.TestTools.TestRunner.Api; - -namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol -{ - internal interface IUtpMessageReporter - { - void ReportAssemblyCompilationErrors(string assembly, IEnumerable errorCompilerMessages); - void ReportTestFinished(ITestResultAdaptor result); - void ReportTestRunStarted(ITestAdaptor testsToRun); - void ReportTestStarted(ITestAdaptor test); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/IUtpMessageReporter.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/IUtpMessageReporter.cs.meta deleted file mode 100644 index 4c96a9025..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/IUtpMessageReporter.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 952b3dc7b47846947b37c8d3ae46579a -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/Message.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/Message.cs deleted file mode 100644 index d10a5e423..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/Message.cs +++ /dev/null @@ -1,29 +0,0 @@ -using System; -using System.Diagnostics; - -namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol -{ - [Serializable] - internal abstract class Message - { - public string type; - // Milliseconds since unix epoch - public ulong time; - public int version; - public string phase; - public int processId; - - protected Message() - { - version = 2; - phase = "Immediate"; - processId = Process.GetCurrentProcess().Id; - AddTimeStamp(); - } - - public void AddTimeStamp() - { - time = Convert.ToUInt64((DateTime.UtcNow - new DateTime(1970, 1, 1)).TotalMilliseconds); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/Message.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/Message.cs.meta deleted file mode 100644 index bfc702bb8..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/Message.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 321dc2c0720f8dd4f9396ecdc12b8746 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestFinishedMessage.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestFinishedMessage.cs deleted file mode 100644 index 6280fd070..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestFinishedMessage.cs +++ /dev/null @@ -1,17 +0,0 @@ -namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol -{ - internal class TestFinishedMessage : Message - { - public string name; - public TestState state; - public string message; - public ulong duration; // milliseconds - public ulong durationMicroseconds; - - public TestFinishedMessage() - { - type = "TestStatus"; - phase = "End"; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestFinishedMessage.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestFinishedMessage.cs.meta deleted file mode 100644 index 15b951b9a..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestFinishedMessage.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 423fe2ef878fa1140a7e1f7f9e365815 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestPlanMessage.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestPlanMessage.cs deleted file mode 100644 index c0a76dad8..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestPlanMessage.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System.Collections.Generic; - -namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol -{ - internal class TestPlanMessage : Message - { - public List tests; - - public TestPlanMessage() - { - type = "TestPlan"; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestPlanMessage.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestPlanMessage.cs.meta deleted file mode 100644 index c057f60c5..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestPlanMessage.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 28f79a0d7e64c2345bc46f8c4cf788f8 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestRunnerApiMapper.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestRunnerApiMapper.cs deleted file mode 100644 index d231b742d..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestRunnerApiMapper.cs +++ /dev/null @@ -1,98 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Xml; -using UnityEditor.TestTools.TestRunner.Api; - -namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol -{ - internal class TestRunnerApiMapper : ITestRunnerApiMapper - { - public TestPlanMessage MapTestToTestPlanMessage(ITestAdaptor testsToRun) - { - var testsNames = testsToRun != null ? FlattenTestNames(testsToRun) : new List(); - - var msg = new TestPlanMessage - { - tests = testsNames - }; - - return msg; - } - - public TestStartedMessage MapTestToTestStartedMessage(ITestAdaptor test) - { - return new TestStartedMessage - { - name = test.FullName - }; - } - - public TestFinishedMessage TestResultToTestFinishedMessage(ITestResultAdaptor result) - { - return new TestFinishedMessage - { - name = result.Test.FullName, - duration = Convert.ToUInt64(result.Duration * 1000), - durationMicroseconds = Convert.ToUInt64(result.Duration * 1000000), - message = result.Message, - state = GetTestStateFromResult(result) - }; - } - - public string GetRunStateFromResultNunitXml(ITestResultAdaptor result) - { - var doc = new XmlDocument(); - doc.LoadXml(result.ToXml().OuterXml); - return doc.FirstChild.Attributes["runstate"].Value; - } - - public TestState GetTestStateFromResult(ITestResultAdaptor result) - { - var state = TestState.Failure; - - if (result.TestStatus == TestStatus.Passed) - { - state = TestState.Success; - - var runstate = GetRunStateFromResultNunitXml(result); - runstate = runstate ?? String.Empty; - - if (runstate.ToLowerInvariant().Equals("explicit")) - state = TestState.Skipped; - } - else if (result.TestStatus == TestStatus.Skipped) - { - state = TestState.Skipped; - - if (result.ResultState.ToLowerInvariant().EndsWith("ignored")) - state = TestState.Ignored; - } - else - { - if (result.ResultState.ToLowerInvariant().Equals("inconclusive")) - state = TestState.Inconclusive; - - if (result.ResultState.ToLowerInvariant().EndsWith("cancelled") || - result.ResultState.ToLowerInvariant().EndsWith("error")) - state = TestState.Error; - } - - return state; - } - - public List FlattenTestNames(ITestAdaptor test) - { - var results = new List(); - - if (!test.IsSuite) - results.Add(test.FullName); - - if (test.Children != null && test.Children.Any()) - foreach (var child in test.Children) - results.AddRange(FlattenTestNames(child)); - - return results; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestRunnerApiMapper.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestRunnerApiMapper.cs.meta deleted file mode 100644 index 47634b98a..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestRunnerApiMapper.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 2011a59d3f76b3d4a85cb53f945fceee -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestStartedMessage.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestStartedMessage.cs deleted file mode 100644 index c21464fc9..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestStartedMessage.cs +++ /dev/null @@ -1,15 +0,0 @@ -namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol -{ - internal class TestStartedMessage : Message - { - public string name; - public TestState state; - - public TestStartedMessage() - { - type = "TestStatus"; - phase = "Begin"; - state = TestState.Inconclusive; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestStartedMessage.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestStartedMessage.cs.meta deleted file mode 100644 index 18b53d110..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestStartedMessage.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: bd3e81baa10021f4d877fa36382bab16 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestState.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestState.cs deleted file mode 100644 index 223a73d54..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestState.cs +++ /dev/null @@ -1,13 +0,0 @@ -namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol -{ - // This matches the state definitions expected by the Perl code, which in turn matches the NUnit 2 values... - internal enum TestState - { - Inconclusive = 0, - Skipped = 2, - Ignored = 3, - Success = 4, - Failure = 5, - Error = 6 - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestState.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestState.cs.meta deleted file mode 100644 index ac6664173..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/TestState.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 77f432980bb30084299a138e15c6f571 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/UnityTestProtocolListener.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/UnityTestProtocolListener.cs deleted file mode 100644 index 09daf8dc4..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/UnityTestProtocolListener.cs +++ /dev/null @@ -1,35 +0,0 @@ -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine; - -namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol -{ - internal class UnityTestProtocolListener : ScriptableObject, ICallbacks - { - private IUtpMessageReporter m_UtpMessageReporter; - - public UnityTestProtocolListener() - { - m_UtpMessageReporter = new UtpMessageReporter(new UtpDebugLogger()); - } - - public void RunStarted(ITestAdaptor testsToRun) - { - m_UtpMessageReporter.ReportTestRunStarted(testsToRun); - } - - public void RunFinished(ITestResultAdaptor testResults) - { - // Apparently does nothing :) - } - - public void TestStarted(ITestAdaptor test) - { - m_UtpMessageReporter.ReportTestStarted(test); - } - - public void TestFinished(ITestResultAdaptor result) - { - m_UtpMessageReporter.ReportTestFinished(result); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/UnityTestProtocolListener.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/UnityTestProtocolListener.cs.meta deleted file mode 100644 index 8ba29bea4..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/UnityTestProtocolListener.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 900aac3710bc14542a8d164e3f0ff820 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/UnityTestProtocolStarter.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/UnityTestProtocolStarter.cs deleted file mode 100644 index cca2fd82e..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/UnityTestProtocolStarter.cs +++ /dev/null @@ -1,37 +0,0 @@ -using System; -using System.Linq; -using UnityEditor.Compilation; -using UnityEditor.TestTools.TestRunner.Api; -using UnityEngine; -using UnityEngine.TestTools; - -namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol -{ - [InitializeOnLoad] - internal static class UnityTestProtocolStarter - { - static UnityTestProtocolStarter() - { - var commandLineArgs = Environment.GetCommandLineArgs(); - if (commandLineArgs.Contains("-automated") && commandLineArgs.Contains("-runTests")) // wanna have it only for utr run - { - var api = ScriptableObject.CreateInstance(); - var listener = ScriptableObject.CreateInstance(); - api.RegisterCallbacks(listener); - CompilationPipeline.assemblyCompilationFinished += OnAssemblyCompilationFinished; - } - } - - public static void OnAssemblyCompilationFinished(string assembly, CompilerMessage[] messages) - { - bool checkCompileErrors = RecompileScripts.Current == null || RecompileScripts.Current.ExpectScriptCompilationSuccess; - - if (checkCompileErrors && messages.Any(x => x.type == CompilerMessageType.Error)) - { - var compilerErrorMessages = messages.Where(x => x.type == CompilerMessageType.Error); - var utpMessageReporter = new UtpMessageReporter(new UtpDebugLogger()); - utpMessageReporter.ReportAssemblyCompilationErrors(assembly, compilerErrorMessages); - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/UnityTestProtocolStarter.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/UnityTestProtocolStarter.cs.meta deleted file mode 100644 index 540b31e06..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/UnityTestProtocolStarter.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 1ac58cb55fc8daf4abd3945a2bbbb0c5 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/UtpDebuglogger.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/UtpDebuglogger.cs deleted file mode 100644 index e32f6d282..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/UtpDebuglogger.cs +++ /dev/null @@ -1,13 +0,0 @@ -using UnityEngine; - -namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol -{ - class UtpDebugLogger : IUtpLogger - { - public void Log(Message msg) - { - var msgJson = JsonUtility.ToJson(msg); - Debug.LogFormat(LogType.Log, LogOption.NoStacktrace, null, "\n##utp:{0}", msgJson); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/UtpDebuglogger.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/UtpDebuglogger.cs.meta deleted file mode 100644 index 7debc237e..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/UtpDebuglogger.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: d0abdd8cb6b29a24c8ee19626ef741b9 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/UtpMessageReporter.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/UtpMessageReporter.cs deleted file mode 100644 index 37c4ee7eb..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/UtpMessageReporter.cs +++ /dev/null @@ -1,57 +0,0 @@ -using System.Collections.Generic; -using System.Linq; -using UnityEditor.Compilation; -using UnityEditor.TestTools.TestRunner.Api; - -namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol -{ - internal class UtpMessageReporter : IUtpMessageReporter - { - public ITestRunnerApiMapper TestRunnerApiMapper; - public IUtpLogger Logger; - - public UtpMessageReporter(IUtpLogger utpLogger) - { - TestRunnerApiMapper = new TestRunnerApiMapper(); - Logger = utpLogger; - } - - public void ReportAssemblyCompilationErrors(string assembly, IEnumerable errorCompilerMessages) - { - var compilationErrorMessage = new AssemblyCompilationErrorsMessage - { - assembly = assembly, - errors = errorCompilerMessages.Select(x => x.message).ToArray() - }; - - Logger.Log(compilationErrorMessage); - } - - public void ReportTestRunStarted(ITestAdaptor testsToRun) - { - var msg = TestRunnerApiMapper.MapTestToTestPlanMessage(testsToRun); - - Logger.Log(msg); - } - - public void ReportTestStarted(ITestAdaptor test) - { - if (test.IsSuite) - return; - - var msg = TestRunnerApiMapper.MapTestToTestStartedMessage(test); - - Logger.Log(msg); - } - - public void ReportTestFinished(ITestResultAdaptor result) - { - if (result.Test.IsSuite) - return; - - var msg = TestRunnerApiMapper.TestResultToTestFinishedMessage(result); - - Logger.Log(msg); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/UtpMessageReporter.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/UtpMessageReporter.cs.meta deleted file mode 100644 index c818d4fff..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEditor.TestRunner/UnityTestProtocol/UtpMessageReporter.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: ebcc5f899d9277642868aeda9a17cbaf -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner.meta deleted file mode 100644 index 958905081..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 950890083f4907541a6ed06d70959e49 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/AssemblyInfo.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/AssemblyInfo.cs deleted file mode 100644 index 41496773b..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/AssemblyInfo.cs +++ /dev/null @@ -1,16 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; - -[assembly: AssemblyTitle("UnityEngine.TestRunner")] - -[assembly: InternalsVisibleTo("UnityEditor.TestRunner")] -[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")] -[assembly: InternalsVisibleTo("Unity.PerformanceTesting")] -[assembly: InternalsVisibleTo("Unity.PerformanceTesting.Editor")] -[assembly: InternalsVisibleTo("Assembly-CSharp-testable")] -[assembly: InternalsVisibleTo("Assembly-CSharp-Editor-testable")] -[assembly: InternalsVisibleTo("UnityEngine.TestRunner.Tests")] -[assembly: InternalsVisibleTo("UnityEditor.TestRunner.Tests")] -[assembly: InternalsVisibleTo("Unity.PackageManagerUI.Editor")] - -[assembly: AssemblyVersion("1.0.0")] diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/AssemblyInfo.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/AssemblyInfo.cs.meta deleted file mode 100644 index b499e312b..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/AssemblyInfo.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: cc22cc13b69c1094c85e176c008b9ef8 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions.meta deleted file mode 100644 index 4e7bbdfe5..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1ad55f5ad04d1d045a1f287409c650dd -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/AllocatingGCMemoryConstraint.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/AllocatingGCMemoryConstraint.cs deleted file mode 100644 index 339a090e9..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/AllocatingGCMemoryConstraint.cs +++ /dev/null @@ -1,83 +0,0 @@ -using System; -using NUnit.Framework; -using NUnit.Framework.Constraints; -using UnityEngine.Profiling; - -namespace UnityEngine.TestTools.Constraints -{ - public class AllocatingGCMemoryConstraint : Constraint - { - private class AllocatingGCMemoryResult : ConstraintResult - { - private readonly int diff; - public AllocatingGCMemoryResult(IConstraint constraint, object actualValue, int diff) : base(constraint, actualValue, diff > 0) - { - this.diff = diff; - } - - public override void WriteMessageTo(MessageWriter writer) - { - if (diff == 0) - writer.WriteMessageLine("The provided delegate did not make any GC allocations."); - else - writer.WriteMessageLine("The provided delegate made {0} GC allocation(s).", diff); - } - } - - private ConstraintResult ApplyTo(Action action, object original) - { - var recorder = Recorder.Get("GC.Alloc"); - - // The recorder was created enabled, which means it captured the creation of the Recorder object itself, etc. - // Disabling it flushes its data, so that we can retrieve the sample block count and have it correctly account - // for these initial allocations. - recorder.enabled = false; - -#if !UNITY_WEBGL - recorder.FilterToCurrentThread(); -#endif - - recorder.enabled = true; - - try - { - action(); - } - finally - { - recorder.enabled = false; -#if !UNITY_WEBGL - recorder.CollectFromAllThreads(); -#endif - } - - return new AllocatingGCMemoryResult(this, original, recorder.sampleBlockCount); - } - - public override ConstraintResult ApplyTo(object obj) - { - if (obj == null) - throw new ArgumentNullException(); - - TestDelegate d = obj as TestDelegate; - if (d == null) - throw new ArgumentException(string.Format("The actual value must be a TestDelegate but was {0}", - obj.GetType())); - - return ApplyTo(() => d.Invoke(), obj); - } - - public override ConstraintResult ApplyTo(ActualValueDelegate del) - { - if (del == null) - throw new ArgumentNullException(); - - return ApplyTo(() => del.Invoke(), del); - } - - public override string Description - { - get { return "allocates GC memory"; } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/AllocatingGCMemoryConstraint.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/AllocatingGCMemoryConstraint.cs.meta deleted file mode 100644 index 0933c8551..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/AllocatingGCMemoryConstraint.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: d09858396dd7adb4bbdb22ea0c8c3a37 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/ConstraintsExtensions.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/ConstraintsExtensions.cs deleted file mode 100644 index 812b1f06d..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/ConstraintsExtensions.cs +++ /dev/null @@ -1,14 +0,0 @@ -using NUnit.Framework.Constraints; - -namespace UnityEngine.TestTools.Constraints -{ - public static class ConstraintExtensions - { - public static AllocatingGCMemoryConstraint AllocatingGCMemory(this ConstraintExpression chain) - { - var constraint = new AllocatingGCMemoryConstraint(); - chain.Append(constraint); - return constraint; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/ConstraintsExtensions.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/ConstraintsExtensions.cs.meta deleted file mode 100644 index 13434964a..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/ConstraintsExtensions.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 68a48d1900320ed458e118415857faf6 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/InvalidSignatureException.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/InvalidSignatureException.cs deleted file mode 100644 index ab4ff8e38..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/InvalidSignatureException.cs +++ /dev/null @@ -1,18 +0,0 @@ -using NUnit.Framework; -using NUnit.Framework.Interfaces; - -namespace UnityEngine.TestTools.TestRunner -{ - internal class InvalidSignatureException : ResultStateException - { - public InvalidSignatureException(string message) - : base(message) - { - } - - public override ResultState ResultState - { - get { return ResultState.NotRunnable; } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/InvalidSignatureException.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/InvalidSignatureException.cs.meta deleted file mode 100644 index 86aee7faa..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/InvalidSignatureException.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 9650d910fcaefb34cb45f121c1993892 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/Is.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/Is.cs deleted file mode 100644 index c0871ef21..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/Is.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace UnityEngine.TestTools.Constraints -{ - public class Is : NUnit.Framework.Is - { - public static AllocatingGCMemoryConstraint AllocatingGCMemory() - { - return new AllocatingGCMemoryConstraint(); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/Is.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/Is.cs.meta deleted file mode 100644 index 23ed44a64..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/Is.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 6d5833966abeadb429de247e4316eef4 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogAssert.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogAssert.cs deleted file mode 100644 index 19ecd1c80..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogAssert.cs +++ /dev/null @@ -1,43 +0,0 @@ -using System.Text.RegularExpressions; -using UnityEngine.TestTools.Logging; -using UnityEngine.TestTools.TestRunner; - -namespace UnityEngine.TestTools -{ - public static class LogAssert - { - public static void Expect(LogType type, string message) - { - LogScope.Current.ExpectedLogs.Enqueue(new LogMatch() { LogType = type, Message = message }); - } - - public static void Expect(LogType type, Regex message) - { - LogScope.Current.ExpectedLogs.Enqueue(new LogMatch() { LogType = type, MessageRegex = message }); - } - - public static void NoUnexpectedReceived() - { - LogScope.Current.ProcessExpectedLogs(); - var isAllLogsHandled = LogScope.Current.IsAllLogsHandled(); - if (isAllLogsHandled) - { - return; - } - var unhandledLog = LogScope.Current.GetUnhandledLog(); - throw new UnhandledLogMessageException(unhandledLog); - } - - public static bool ignoreFailingMessages - { - get - { - return LogScope.Current.IgnoreFailingMessages; - } - set - { - LogScope.Current.IgnoreFailingMessages = value; - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogAssert.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogAssert.cs.meta deleted file mode 100644 index 7a278a31b..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogAssert.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: c97b794b51780d349a16826a4c7898d7 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope.meta deleted file mode 100644 index 284dc6add..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: b1d8465ba1376b148bdab58965101f47 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope/ILogScope.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope/ILogScope.cs deleted file mode 100644 index 750d2b592..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope/ILogScope.cs +++ /dev/null @@ -1,10 +0,0 @@ -using System; -using System.Collections.Generic; - -namespace UnityEngine.TestTools.Logging -{ - internal interface ILogScope : IDisposable - { - List LogEvents { get; } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope/ILogScope.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope/ILogScope.cs.meta deleted file mode 100644 index 69e7d5568..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope/ILogScope.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 3504aa04cda851b44a65973f9aead6f7 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope/LogEvent.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope/LogEvent.cs deleted file mode 100644 index bbc805e8b..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope/LogEvent.cs +++ /dev/null @@ -1,18 +0,0 @@ -namespace UnityEngine.TestTools.Logging -{ - internal class LogEvent - { - public string Message { get; set; } - - public string StackTrace { get; set; } - - public LogType LogType { get; set; } - - public bool IsHandled { get; set; } - - public override string ToString() - { - return string.Format("[{0}] {1}", LogType, Message); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope/LogEvent.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope/LogEvent.cs.meta deleted file mode 100644 index 66c9130de..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope/LogEvent.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 0c56471f08a0f6846afc792f0b4205b9 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope/LogMatch.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope/LogMatch.cs deleted file mode 100644 index 9b862d92f..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope/LogMatch.cs +++ /dev/null @@ -1,103 +0,0 @@ -using System; -using System.Text.RegularExpressions; - -namespace UnityEngine.TestTools.Logging -{ - [Serializable] - internal class LogMatch - { - [SerializeField] - private bool m_UseRegex; - [SerializeField] - private string m_Message; - [SerializeField] - private string m_MessageRegex; - [SerializeField] - private string m_LogType; - - public string Message - { - get { return m_Message; } - set - { - m_Message = value; - m_UseRegex = false; - } - } - - public Regex MessageRegex - { - get - { - if (!m_UseRegex) - { - return null; - } - - return new Regex(m_MessageRegex); - } - set - { - if (value != null) - { - m_MessageRegex = value.ToString(); - m_UseRegex = true; - } - else - { - m_MessageRegex = null; - m_UseRegex = false; - } - } - } - - public LogType? LogType - { - get - { - if (!string.IsNullOrEmpty(m_LogType)) - { - return Enum.Parse(typeof(LogType), m_LogType) as LogType ? ; - } - - return null; - } - set - { - if (value != null) - { - m_LogType = value.Value.ToString(); - } - else - { - m_LogType = null; - } - } - } - - public bool Matches(LogEvent log) - { - if (LogType != null && LogType != log.LogType) - { - return false; - } - - if (m_UseRegex) - { - return MessageRegex.IsMatch(log.Message); - } - else - { - return Message.Equals(log.Message); - } - } - - public override string ToString() - { - if (m_UseRegex) - return string.Format("[{0}] Regex: {1}", LogType, MessageRegex); - else - return string.Format("[{0}] {1}", LogType, Message); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope/LogMatch.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope/LogMatch.cs.meta deleted file mode 100644 index ffc2bc320..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope/LogMatch.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 9945ffed4692c6044b6d3acf81efd694 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope/LogScope.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope/LogScope.cs deleted file mode 100644 index c5bf09767..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope/LogScope.cs +++ /dev/null @@ -1,224 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; - -namespace UnityEngine.TestTools.Logging -{ - internal class LogScope : IDisposable - { - private bool m_Disposed; - private readonly object _lock = new object(); - - public Queue ExpectedLogs { get; set; } - public List AllLogs { get; } - public List FailingLogs { get; } - public bool IgnoreFailingMessages { get; set; } - public bool IsNUnitException { get; private set; } - public bool IsNUnitSuccessException { get; private set; } - public bool IsNUnitInconclusiveException { get; private set; } - public bool IsNUnitIgnoreException { get; private set; } - public string NUnitExceptionMessage { get; private set; } - - private bool m_NeedToProcessLogs; - private static List s_ActiveScopes = new List(); - - internal static LogScope Current - { - get - { - if (s_ActiveScopes.Count == 0) - throw new InvalidOperationException("No log scope is available"); - return s_ActiveScopes[0]; - } - } - - internal static bool HasCurrentLogScope() - { - return s_ActiveScopes.Count > 0; - } - - public LogScope() - { - AllLogs = new List(); - FailingLogs = new List(); - ExpectedLogs = new Queue(); - IgnoreFailingMessages = false; - Activate(); - } - - private void Activate() - { - s_ActiveScopes.Insert(0, this); - RegisterScope(this); - Application.logMessageReceivedThreaded -= AddLog; - Application.logMessageReceivedThreaded += AddLog; - } - - private void Deactivate() - { - Application.logMessageReceivedThreaded -= AddLog; - s_ActiveScopes.Remove(this); - UnregisterScope(this); - } - - private static void RegisterScope(LogScope logScope) - { - Application.logMessageReceivedThreaded += logScope.AddLog; - } - - private static void UnregisterScope(LogScope logScope) - { - Application.logMessageReceivedThreaded -= logScope.AddLog; - } - - public void AddLog(string message, string stacktrace, LogType type) - { - lock (_lock) - { - m_NeedToProcessLogs = true; - var log = new LogEvent - { - LogType = type, - Message = message, - StackTrace = stacktrace, - }; - - AllLogs.Add(log); - - if (IsNUnitResultStateException(stacktrace, type)) - { - if (message.StartsWith("SuccessException")) - { - IsNUnitException = true; - IsNUnitSuccessException = true; - if (message.StartsWith("SuccessException: ")) - { - NUnitExceptionMessage = message.Substring("SuccessException: ".Length); - return; - } - } - else if (message.StartsWith("InconclusiveException")) - { - IsNUnitException = true; - IsNUnitInconclusiveException = true; - if (message.StartsWith("InconclusiveException: ")) - { - NUnitExceptionMessage = message.Substring("InconclusiveException: ".Length); - return; - } - } - else if (message.StartsWith("IgnoreException")) - { - IsNUnitException = true; - IsNUnitIgnoreException = true; - if (message.StartsWith("IgnoreException: ")) - { - NUnitExceptionMessage = message.Substring("IgnoreException: ".Length); - return; - } - } - } - - if (IsFailingLog(type) && !IgnoreFailingMessages) - { - FailingLogs.Add(log); - } - } - } - - public bool IsAllLogsHandled() - { - lock (_lock) - { - return AllLogs.All(x => x.IsHandled); - } - } - - public LogEvent GetUnhandledLog() - { - lock (_lock) - { - return AllLogs.First(x => !x.IsHandled); - } - } - - private static bool IsNUnitResultStateException(string stacktrace, LogType logType) - { - if (logType != LogType.Exception) - return false; - - return string.IsNullOrEmpty(stacktrace) || stacktrace.StartsWith("NUnit.Framework.Assert."); - } - - private static bool IsFailingLog(LogType type) - { - switch (type) - { - case LogType.Assert: - case LogType.Error: - case LogType.Exception: - return true; - default: - return false; - } - } - - public void Dispose() - { - Dispose(true); - GC.SuppressFinalize(this); - } - - protected virtual void Dispose(bool disposing) - { - if (m_Disposed) - { - return; - } - - m_Disposed = true; - - if (disposing) - { - Deactivate(); - } - } - - internal bool AnyFailingLogs() - { - ProcessExpectedLogs(); - return FailingLogs.Any(); - } - - internal void ProcessExpectedLogs() - { - lock (_lock) - { - if (!m_NeedToProcessLogs || !ExpectedLogs.Any()) - return; - - LogMatch expectedLog = null; - foreach (var logEvent in AllLogs) - { - if (!ExpectedLogs.Any()) - break; - if (expectedLog == null && ExpectedLogs.Any()) - expectedLog = ExpectedLogs.Peek(); - - if (expectedLog != null && expectedLog.Matches(logEvent)) - { - ExpectedLogs.Dequeue(); - logEvent.IsHandled = true; - if (FailingLogs.Any(expectedLog.Matches)) - { - var failingLog = FailingLogs.First(expectedLog.Matches); - FailingLogs.Remove(failingLog); - } - expectedLog = null; - } - } - m_NeedToProcessLogs = false; - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope/LogScope.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope/LogScope.cs.meta deleted file mode 100644 index ea13dd623..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/LogScope/LogScope.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 4bbc17b35884fdf468e4b52ae4222882 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/UnexpectedLogMessageException.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/UnexpectedLogMessageException.cs deleted file mode 100644 index 8ad39f446..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/UnexpectedLogMessageException.cs +++ /dev/null @@ -1,29 +0,0 @@ -using NUnit.Framework; -using NUnit.Framework.Interfaces; -using UnityEngine.TestTools.Logging; - -namespace UnityEngine.TestTools.TestRunner -{ - internal class UnexpectedLogMessageException : ResultStateException - { - public LogMatch LogEvent; - - public UnexpectedLogMessageException(LogMatch log) - : base(BuildMessage(log)) - { - LogEvent = log; - } - - private static string BuildMessage(LogMatch log) - { - return string.Format("Expected log did not appear: {0}", log); - } - - public override ResultState ResultState - { - get { return ResultState.Failure; } - } - - public override string StackTrace { get { return null; } } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/UnexpectedLogMessageException.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/UnexpectedLogMessageException.cs.meta deleted file mode 100644 index 7b9e61150..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/UnexpectedLogMessageException.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 5b2eeca598284bd4abb4a15c30df1576 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/UnhandledLogMessageException.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/UnhandledLogMessageException.cs deleted file mode 100644 index 9427cc86d..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/UnhandledLogMessageException.cs +++ /dev/null @@ -1,35 +0,0 @@ -using NUnit.Framework; -using NUnit.Framework.Interfaces; -using UnityEngine.TestTools.Logging; -using UnityEngine.TestTools.Utils; - -namespace UnityEngine.TestTools.TestRunner -{ - internal class UnhandledLogMessageException : ResultStateException - { - public LogEvent LogEvent; - private readonly string m_CustomStackTrace; - - public UnhandledLogMessageException(LogEvent log) - : base(BuildMessage(log)) - { - LogEvent = log; - m_CustomStackTrace = StackTraceFilter.Filter(log.StackTrace); - } - - private static string BuildMessage(LogEvent log) - { - return string.Format("Unhandled log message: '{0}'. Use UnityEngine.TestTools.LogAssert.Expect", log); - } - - public override ResultState ResultState - { - get { return ResultState.Failure; } - } - - public override string StackTrace - { - get { return m_CustomStackTrace; } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/UnhandledLogMessageException.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/UnhandledLogMessageException.cs.meta deleted file mode 100644 index 1019924b3..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/UnhandledLogMessageException.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: a8ed4063f2beecd41a234a582202f3c4 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/UnityTestTimeoutException.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/UnityTestTimeoutException.cs deleted file mode 100644 index 6ba39c26b..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/UnityTestTimeoutException.cs +++ /dev/null @@ -1,28 +0,0 @@ -using NUnit.Framework; -using NUnit.Framework.Interfaces; - -namespace UnityEngine.TestTools.TestRunner -{ - internal class UnityTestTimeoutException : ResultStateException - { - public UnityTestTimeoutException(int timeout) - : base(BuildMessage(timeout)) - { - } - - private static string BuildMessage(int timeout) - { - return string.Format("UnityTest exceeded Timeout value of {0}ms", timeout); - } - - public override ResultState ResultState - { - get { return ResultState.Failure; } - } - - public override string StackTrace - { - get { return ""; } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/UnityTestTimeoutException.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/UnityTestTimeoutException.cs.meta deleted file mode 100644 index d366ec902..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Assertions/UnityTestTimeoutException.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: ffb335140c799c4408411d81789fb05c -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions.meta deleted file mode 100644 index 3023e521b..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 3e8d6af343b383544ba5743d119f4062 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/ActionDelegator.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/ActionDelegator.cs deleted file mode 100644 index ed8d89637..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/ActionDelegator.cs +++ /dev/null @@ -1,79 +0,0 @@ -using System; -using System.Linq; -using UnityEngine.TestRunner.NUnitExtensions.Runner; -using UnityEngine.TestTools.Logging; -using UnityEngine.TestTools.TestRunner; - -namespace UnityEngine.TestTools.NUnitExtensions -{ - /// - /// This class delegates actions from the NUnit thread that should be executed on the main thread. - /// NUnit thread calls Delegate which blocks the execution on the thread until the action is executed. - /// The main thread will poll for awaiting actions (HasAction) and invoke them (Execute). - /// Once the action is executed, the main thread releases the lock and executino on the NUnit thread is continued. - /// - internal class ActionDelegator : BaseDelegator - { - private Func m_Action; - public object Delegate(Action action) - { - return Delegate(() => { action(); return null; }); - } - - public object Delegate(Func action) - { - if (m_Aborted) - { - return null; - } - - AssertState(); - m_Context = UnityTestExecutionContext.CurrentContext; - - m_Signal.Reset(); - m_Action = action; - - WaitForSignal(); - - return HandleResult(); - } - - private void AssertState() - { - if (m_Action != null) - { - throw new Exception("Action not executed yet"); - } - } - - public bool HasAction() - { - return m_Action != null; - } - - public void Execute(LogScope logScope) - { - try - { - SetCurrentTestContext(); - m_Result = m_Action(); - if (logScope.AnyFailingLogs()) - { - var failingLog = logScope.FailingLogs.First(); - throw new UnhandledLogMessageException(failingLog); - } - if (logScope.ExpectedLogs.Any()) - throw new UnexpectedLogMessageException(LogScope.Current.ExpectedLogs.Peek()); - } - catch (Exception e) - { - m_Exception = e; - } - finally - { - m_Action = null; - m_Signal.Set(); - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/ActionDelegator.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/ActionDelegator.cs.meta deleted file mode 100644 index 5f4e2d19f..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/ActionDelegator.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 4f939b9e23a0946439b812551e07ac81 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes.meta deleted file mode 100644 index c7cae0941..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0cb14878543cf3d4f8472b15f7ecf0e3 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs deleted file mode 100644 index 89c5f76b8..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs +++ /dev/null @@ -1,52 +0,0 @@ -using System; -using System.Collections; -using NUnit.Framework; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; - -namespace UnityEngine.TestTools -{ - internal class TestEnumerator - { - private readonly ITestExecutionContext m_Context; - private static IEnumerator m_TestEnumerator; - - public static IEnumerator Enumerator { get { return m_TestEnumerator; } } - - public TestEnumerator(ITestExecutionContext context, IEnumerator testEnumerator) - { - m_Context = context; - m_TestEnumerator = testEnumerator; - } - - public IEnumerator Execute() - { - m_Context.CurrentResult.SetResult(ResultState.Success); - - while (true) - { - object current = null; - try - { - if (!m_TestEnumerator.MoveNext()) - { - yield break; - } - - if (!m_Context.CurrentResult.ResultState.Equals(ResultState.Success)) - { - yield break; - } - - current = m_TestEnumerator.Current; - } - catch (Exception exception) - { - m_Context.CurrentResult.RecordException(exception); - yield break; - } - yield return current; - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs.meta deleted file mode 100644 index 6ca4f7286..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 750aad009559b814dbc27001341fc1c3 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityCombinatorialStrategy.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityCombinatorialStrategy.cs deleted file mode 100644 index 84f8d8455..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityCombinatorialStrategy.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System.Collections; -using System.Collections.Generic; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal.Builders; - -namespace UnityEngine.TestTools -{ - internal class UnityCombinatorialStrategy : CombinatorialStrategy, ICombiningStrategy - { - public new IEnumerable GetTestCases(IEnumerable[] sources) - { - var testCases = base.GetTestCases(sources); - foreach (var testCase in testCases) - { - testCase.GetType().GetProperty("ExpectedResult").SetValue(testCase, new object(), null); - } - return testCases; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityCombinatorialStrategy.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityCombinatorialStrategy.cs.meta deleted file mode 100644 index 84774ce99..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityCombinatorialStrategy.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 7af6ac3e6b51b8d4aab04adc85b8de2f -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityPlatformAttribute.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityPlatformAttribute.cs deleted file mode 100644 index ff538ea1f..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityPlatformAttribute.cs +++ /dev/null @@ -1,56 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using NUnit.Framework; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; - -namespace UnityEngine.TestTools -{ - [AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = true, Inherited = false)] - public class UnityPlatformAttribute : NUnitAttribute, IApplyToTest - { - public RuntimePlatform[] include { get; set; } - public RuntimePlatform[] exclude { get; set; } - - private string m_skippedReason; - - public UnityPlatformAttribute() - { - include = new List().ToArray(); - exclude = new List().ToArray(); - } - - public UnityPlatformAttribute(params RuntimePlatform[] include) - : this() - { - this.include = include; - } - - public void ApplyToTest(Test test) - { - if (test.RunState == RunState.NotRunnable || test.RunState == RunState.Ignored || IsPlatformSupported(Application.platform)) - { - return; - } - test.RunState = RunState.Skipped; - test.Properties.Add("_SKIPREASON", m_skippedReason); - } - - internal bool IsPlatformSupported(RuntimePlatform testTargetPlatform) - { - if (include.Any() && !include.Any(x => x == testTargetPlatform)) - { - m_skippedReason = string.Format("Only supported on {0}", string.Join(", ", include.Select(x => x.ToString()).ToArray())); - return false; - } - - if (exclude.Any(x => x == testTargetPlatform)) - { - m_skippedReason = string.Format("Not supported on {0}", string.Join(", ", include.Select(x => x.ToString()).ToArray())); - return false; - } - return true; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityPlatformAttribute.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityPlatformAttribute.cs.meta deleted file mode 100644 index 003e15405..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityPlatformAttribute.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 5440c1153b397e14c9c7b1d6eb83b9f9 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnitySetUpAttribute.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnitySetUpAttribute.cs deleted file mode 100644 index f51da12ec..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnitySetUpAttribute.cs +++ /dev/null @@ -1,10 +0,0 @@ -using System; -using NUnit.Framework; - -namespace UnityEngine.TestTools -{ - [AttributeUsage(AttributeTargets.Method)] - public class UnitySetUpAttribute : NUnitAttribute - { - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnitySetUpAttribute.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnitySetUpAttribute.cs.meta deleted file mode 100644 index ccd0d7e02..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnitySetUpAttribute.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: cc6401f13df54ba44bfd7cdc93c7d64d -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTearDownAttribute.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTearDownAttribute.cs deleted file mode 100644 index dec605c1a..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTearDownAttribute.cs +++ /dev/null @@ -1,10 +0,0 @@ -using System; -using NUnit.Framework; - -namespace UnityEngine.TestTools -{ - [AttributeUsage(AttributeTargets.Method)] - public class UnityTearDownAttribute : NUnitAttribute - { - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTearDownAttribute.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTearDownAttribute.cs.meta deleted file mode 100644 index db199044a..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTearDownAttribute.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 600f4b74746dbf944901257f81a8af6d -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTestAttribute.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTestAttribute.cs deleted file mode 100644 index 06cdd6ba2..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTestAttribute.cs +++ /dev/null @@ -1,43 +0,0 @@ -using System; -using NUnit.Framework; -using NUnit.Framework.Internal.Commands; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; -using NUnit.Framework.Internal.Builders; -using UnityEngine.TestRunner.NUnitExtensions.Runner; - -namespace UnityEngine.TestTools -{ - [AttributeUsage(AttributeTargets.Method)] - public class UnityTestAttribute : CombiningStrategyAttribute, IWrapSetUpTearDown, ISimpleTestBuilder, IImplyFixture - { - public UnityTestAttribute() : base(new UnityCombinatorialStrategy(), new ParameterDataSourceProvider()) {} - - private readonly NUnitTestCaseBuilder _builder = new NUnitTestCaseBuilder(); - - TestMethod ISimpleTestBuilder.BuildFrom(IMethodInfo method, Test suite) - { - TestCaseParameters parms = new TestCaseParameters - { - ExpectedResult = new object(), - HasExpectedResult = true - }; - - var t = _builder.BuildTestMethod(method, suite, parms); - - if (t.parms != null) - t.parms.HasExpectedResult = false; - return t; - } - - public TestCommand Wrap(TestCommand command) - { - return new OuterUnityTestActionCommand( - new EnumerableSetUpTearDownCommand( - new SetUpTearDownCommand( - new TestActionCommand( - new UnityLogCheckDelegatingCommand( - new EnumerableTestMethodCommand((TestMethod)command.Test)))))); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTestAttribute.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTestAttribute.cs.meta deleted file mode 100644 index e2fcb633b..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTestAttribute.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: fedb0f9e5006b1943abae52f52f08a1a -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/BaseDelegator.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/BaseDelegator.cs deleted file mode 100644 index 65bcbbaa0..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/BaseDelegator.cs +++ /dev/null @@ -1,58 +0,0 @@ -using System; -using System.Threading; -using NUnit.Framework.Internal; - -namespace UnityEngine.TestTools.NUnitExtensions -{ - internal abstract class BaseDelegator - { - protected ManualResetEvent m_Signal = new ManualResetEvent(false); - - protected object m_Result; - protected Exception m_Exception; - protected ITestExecutionContext m_Context; - - protected bool m_Aborted; - - protected object HandleResult() - { - SetCurrentTestContext(); - if (m_Exception != null) - { - var temp = m_Exception; - m_Exception = null; - throw temp; - } - var tempResult = m_Result; - m_Result = null; - return tempResult; - } - - protected void WaitForSignal() - { - while (!m_Signal.WaitOne(100)) - { - if (m_Aborted) - { - m_Aborted = false; - Reflect.MethodCallWrapper = null; - throw new Exception(); - } - } - } - - public void Abort() - { - m_Aborted = true; - } - - protected void SetCurrentTestContext() - { - var prop = typeof(TestExecutionContext).GetProperty("CurrentContext"); - if (prop != null) - { - prop.SetValue(null, m_Context, null); - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/BaseDelegator.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/BaseDelegator.cs.meta deleted file mode 100644 index 613537b8a..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/BaseDelegator.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 37cea569bfefafe49a1513c4d7f0e9eb -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands.meta deleted file mode 100644 index 75dd09d45..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 6b72875690e0f7343911e06af3145bd5 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandBase.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandBase.cs deleted file mode 100644 index af350f127..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandBase.cs +++ /dev/null @@ -1,196 +0,0 @@ -using System; -using System.Collections; -using System.Linq; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; -using NUnit.Framework.Internal.Commands; -using UnityEngine.TestRunner.NUnitExtensions; -using UnityEngine.TestRunner.NUnitExtensions.Runner; -using UnityEngine.TestTools.Logging; -using UnityEngine.TestTools.TestRunner; - -namespace UnityEngine.TestTools -{ - internal abstract class BeforeAfterTestCommandBase : DelegatingTestCommand, IEnumerableTestMethodCommand - { - private string m_BeforeErrorPrefix; - private string m_AfterErrorPrefix; - private bool m_SkipYieldAfterActions; - protected BeforeAfterTestCommandBase(TestCommand innerCommand, string beforeErrorPrefix, string afterErrorPrefix, bool skipYieldAfterActions = false) - : base(innerCommand) - { - m_BeforeErrorPrefix = beforeErrorPrefix; - m_AfterErrorPrefix = afterErrorPrefix; - m_SkipYieldAfterActions = skipYieldAfterActions; - } - - protected T[] BeforeActions = new T[0]; - - protected T[] AfterActions = new T[0]; - - protected abstract IEnumerator InvokeBefore(T action, Test test, UnityTestExecutionContext context); - - protected abstract IEnumerator InvokeAfter(T action, Test test, UnityTestExecutionContext context); - - protected abstract BeforeAfterTestCommandState GetState(UnityTestExecutionContext context); - - public IEnumerable ExecuteEnumerable(ITestExecutionContext context) - { - var unityContext = (UnityTestExecutionContext)context; - var state = GetState(unityContext); - - if (state == null) - { - // We do not expect a state to exist in playmode - state = ScriptableObject.CreateInstance(); - } - - state.ApplyTestResult(context.CurrentResult); - - while (state.NextBeforeStepIndex < BeforeActions.Length) - { - var action = BeforeActions[state.NextBeforeStepIndex]; - var enumerator = InvokeBefore(action, Test, unityContext); - ActivePcHelper.SetEnumeratorPC(enumerator, state.NextBeforeStepPc); - - using (var logScope = new LogScope()) - { - while (true) - { - try - { - if (!enumerator.MoveNext()) - { - break; - } - } - catch (Exception ex) - { - state.TestHasRun = true; - context.CurrentResult.RecordPrefixedException(m_BeforeErrorPrefix, ex); - state.StoreTestResult(context.CurrentResult); - break; - } - - state.NextBeforeStepPc = ActivePcHelper.GetEnumeratorPC(enumerator); - state.StoreTestResult(context.CurrentResult); - if (m_SkipYieldAfterActions) - { - break; - } - else - { - yield return enumerator.Current; - } - } - - if (logScope.AnyFailingLogs()) - { - state.TestHasRun = true; - context.CurrentResult.RecordPrefixedError(m_BeforeErrorPrefix, new UnhandledLogMessageException(logScope.FailingLogs.First()).Message); - state.StoreTestResult(context.CurrentResult); - } - } - - state.NextBeforeStepIndex++; - state.NextBeforeStepPc = 0; - } - - if (!state.TestHasRun) - { - if (innerCommand is IEnumerableTestMethodCommand) - { - var executeEnumerable = ((IEnumerableTestMethodCommand)innerCommand).ExecuteEnumerable(context); - foreach (var iterator in executeEnumerable) - { - state.StoreTestResult(context.CurrentResult); - yield return iterator; - } - } - else - { - context.CurrentResult = innerCommand.Execute(context); - state.StoreTestResult(context.CurrentResult); - } - - state.TestHasRun = true; - } - - while (state.NextAfterStepIndex < AfterActions.Length) - { - state.TestAfterStarted = true; - var action = AfterActions[state.NextAfterStepIndex]; - var enumerator = InvokeAfter(action, Test, unityContext); - ActivePcHelper.SetEnumeratorPC(enumerator, state.NextAfterStepPc); - - using (var logScope = new LogScope()) - { - while (true) - { - try - { - if (!enumerator.MoveNext()) - { - break; - } - } - catch (Exception ex) - { - context.CurrentResult.RecordPrefixedException(m_AfterErrorPrefix, ex); - state.StoreTestResult(context.CurrentResult); - break; - } - - state.NextAfterStepPc = ActivePcHelper.GetEnumeratorPC(enumerator); - state.StoreTestResult(context.CurrentResult); - - if (m_SkipYieldAfterActions) - { - break; - } - else - { - yield return enumerator.Current; - } - } - - if (logScope.AnyFailingLogs()) - { - state.TestHasRun = true; - context.CurrentResult.RecordPrefixedError(m_AfterErrorPrefix, new UnhandledLogMessageException(logScope.FailingLogs.First()).Message); - state.StoreTestResult(context.CurrentResult); - } - } - - state.NextAfterStepIndex++; - state.NextAfterStepPc = 0; - } - - state.Reset(); - } - - public override TestResult Execute(ITestExecutionContext context) - { - throw new NotImplementedException("Use ExecuteEnumerable"); - } - - private static TestCommandPcHelper pcHelper; - - internal static TestCommandPcHelper ActivePcHelper - { - get - { - if (pcHelper == null) - { - pcHelper = new TestCommandPcHelper(); - } - - return pcHelper; - } - set - { - pcHelper = value; - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandBase.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandBase.cs.meta deleted file mode 100644 index e3e481909..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandBase.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: cbbca1d8a0434be4bbc7f165523763ac -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandState.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandState.cs deleted file mode 100644 index 273b61caf..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandState.cs +++ /dev/null @@ -1,49 +0,0 @@ -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; - -namespace UnityEngine.TestTools -{ - internal class BeforeAfterTestCommandState : ScriptableObject - { - public int NextBeforeStepIndex; - public int NextBeforeStepPc; - public int NextAfterStepIndex; - public int NextAfterStepPc; - public bool TestHasRun; - public TestStatus CurrentTestResultStatus; - public string CurrentTestResultLabel; - public FailureSite CurrentTestResultSite; - public string CurrentTestMessage; - public string CurrentTestStrackTrace; - public bool TestAfterStarted; - - public void Reset() - { - NextBeforeStepIndex = 0; - NextBeforeStepPc = 0; - NextAfterStepIndex = 0; - NextAfterStepPc = 0; - TestHasRun = false; - CurrentTestResultStatus = TestStatus.Inconclusive; - CurrentTestResultLabel = null; - CurrentTestResultSite = default(FailureSite); - CurrentTestMessage = null; - CurrentTestStrackTrace = null; - TestAfterStarted = false; - } - - public void StoreTestResult(TestResult result) - { - CurrentTestResultStatus = result.ResultState.Status; - CurrentTestResultLabel = result.ResultState.Label; - CurrentTestResultSite = result.ResultState.Site; - CurrentTestMessage = result.Message; - CurrentTestStrackTrace = result.StackTrace; - } - - public void ApplyTestResult(TestResult result) - { - result.SetResult(new ResultState(CurrentTestResultStatus, CurrentTestResultLabel, CurrentTestResultSite), CurrentTestMessage, CurrentTestStrackTrace); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandState.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandState.cs.meta deleted file mode 100644 index da9bd2bc7..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandState.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 7f65567c9026afb4db5de3355accc636 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableApplyChangesToContextCommand.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableApplyChangesToContextCommand.cs deleted file mode 100644 index d452f248e..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableApplyChangesToContextCommand.cs +++ /dev/null @@ -1,34 +0,0 @@ - -using System.Collections; -using System.Collections.Generic; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; -using NUnit.Framework.Internal.Commands; -using UnityEngine.TestRunner.NUnitExtensions.Runner; - -namespace UnityEngine.TestTools -{ - internal class EnumerableApplyChangesToContextCommand : ApplyChangesToContextCommand, IEnumerableTestMethodCommand - { - public EnumerableApplyChangesToContextCommand(TestCommand innerCommand, IEnumerable changes) - : base(innerCommand, changes) { } - - public IEnumerable ExecuteEnumerable(ITestExecutionContext context) - { - ApplyChanges(context); - - if (innerCommand is IEnumerableTestMethodCommand) - { - var executeEnumerable = ((IEnumerableTestMethodCommand)innerCommand).ExecuteEnumerable(context); - foreach (var iterator in executeEnumerable) - { - yield return iterator; - } - } - else - { - context.CurrentResult = innerCommand.Execute(context); - } - } - } -} \ No newline at end of file diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableApplyChangesToContextCommand.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableApplyChangesToContextCommand.cs.meta deleted file mode 100644 index 6a955cae7..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableApplyChangesToContextCommand.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 3b4429eff9fcffb48b006e8edcc90338 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs deleted file mode 100644 index e5bf7b81d..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs +++ /dev/null @@ -1,44 +0,0 @@ -using System; -using System.Collections; -using System.Linq; -using System.Reflection; -using NUnit.Framework.Internal; -using NUnit.Framework.Internal.Commands; -using UnityEngine.TestRunner.NUnitExtensions.Runner; - -namespace UnityEngine.TestTools -{ - internal class EnumerableSetUpTearDownCommand : BeforeAfterTestCommandBase - { - public EnumerableSetUpTearDownCommand(TestCommand innerCommand) - : base(innerCommand, "SetUp", "TearDown") - { - if (Test.TypeInfo.Type != null) - { - BeforeActions = GetMethodsWithAttributeFromFixture(Test.TypeInfo.Type, typeof(UnitySetUpAttribute)); - AfterActions = GetMethodsWithAttributeFromFixture(Test.TypeInfo.Type, typeof(UnityTearDownAttribute)).Reverse().ToArray(); - } - } - - private static MethodInfo[] GetMethodsWithAttributeFromFixture(Type fixtureType, Type setUpType) - { - MethodInfo[] methodsWithAttribute = Reflect.GetMethodsWithAttribute(fixtureType, setUpType, true); - return methodsWithAttribute.Where(x => x.ReturnType == typeof(IEnumerator)).ToArray(); - } - - protected override IEnumerator InvokeBefore(MethodInfo action, Test test, UnityTestExecutionContext context) - { - return (IEnumerator)Reflect.InvokeMethod(action, context.TestObject); - } - - protected override IEnumerator InvokeAfter(MethodInfo action, Test test, UnityTestExecutionContext context) - { - return (IEnumerator)Reflect.InvokeMethod(action, context.TestObject); - } - - protected override BeforeAfterTestCommandState GetState(UnityTestExecutionContext context) - { - return context.SetUpTearDownState; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs.meta deleted file mode 100644 index e61d04996..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: dd85a35169d313840a0874aea1a28629 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs deleted file mode 100644 index 7a548ecf0..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs +++ /dev/null @@ -1,86 +0,0 @@ -using System; -using System.Collections; -using System.Collections.Generic; -using NUnit.Framework; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; -using NUnit.Framework.Internal.Commands; -using NUnit.Framework.Internal.Execution; -using UnityEngine.TestRunner.NUnitExtensions.Runner; -using UnityEngine.TestTools.TestRunner; - -namespace UnityEngine.TestTools -{ - internal class EnumerableTestMethodCommand : TestCommand, IEnumerableTestMethodCommand - { - private readonly TestMethod testMethod; - - public EnumerableTestMethodCommand(TestMethod testMethod) - : base(testMethod) - { - this.testMethod = testMethod; - } - - public IEnumerable ExecuteEnumerable(ITestExecutionContext context) - { - yield return null; - - var currentExecutingTestEnumerator = new TestEnumeratorWrapper(testMethod).GetEnumerator(context); - if (currentExecutingTestEnumerator != null) - { - var testEnumeraterYieldInstruction = new TestEnumerator(context, currentExecutingTestEnumerator); - - yield return testEnumeraterYieldInstruction; - - var enumerator = testEnumeraterYieldInstruction.Execute(); - - var executingEnumerator = ExecuteEnumerableAndRecordExceptions(enumerator, context); - while (executingEnumerator.MoveNext()) - { - yield return executingEnumerator.Current; - } - } - else - { - if (context.CurrentResult.ResultState != ResultState.Ignored) - { - context.CurrentResult.SetResult(ResultState.Success); - } - } - } - - private static IEnumerator ExecuteEnumerableAndRecordExceptions(IEnumerator enumerator, ITestExecutionContext context) - { - while (true) - { - try - { - if (!enumerator.MoveNext()) - { - break; - } - } - catch (Exception ex) - { - context.CurrentResult.RecordException(ex); - break; - } - - if (enumerator.Current is IEnumerator) - { - var current = (IEnumerator)enumerator.Current; - yield return ExecuteEnumerableAndRecordExceptions(current, context); - } - else - { - yield return enumerator.Current; - } - } - } - - public override TestResult Execute(ITestExecutionContext context) - { - throw new NotImplementedException("Use ExecuteEnumerable"); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs.meta deleted file mode 100644 index 4631e40bd..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 19a6f000f81e24c4a826c1abd43e77c7 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/ImmediateEnumerableCommand.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/ImmediateEnumerableCommand.cs deleted file mode 100644 index ae1b7b7e2..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/ImmediateEnumerableCommand.cs +++ /dev/null @@ -1,32 +0,0 @@ -using System; -using System.Collections; -using NUnit.Framework.Internal; -using NUnit.Framework.Internal.Commands; -using UnityEngine.TestRunner.NUnitExtensions.Runner; - -namespace UnityEngine.TestTools -{ - internal class ImmediateEnumerableCommand : DelegatingTestCommand - { - public ImmediateEnumerableCommand(TestCommand innerCommand) - : base(innerCommand) { } - - public override TestResult Execute(ITestExecutionContext context) - { - if (innerCommand is IEnumerableTestMethodCommand) - { - var executeEnumerable = ((IEnumerableTestMethodCommand)innerCommand).ExecuteEnumerable(context); - foreach (var iterator in executeEnumerable) - { - if (iterator != null) - { - throw new Exception("Only null can be yielded at this point."); - } - } - return context.CurrentResult; - } - - return innerCommand.Execute(context); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/ImmediateEnumerableCommand.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/ImmediateEnumerableCommand.cs.meta deleted file mode 100644 index e650b5497..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/ImmediateEnumerableCommand.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 8349e42a2b30c7a4abd8678c203428ba -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/OuterUnityTestActionCommand.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/OuterUnityTestActionCommand.cs deleted file mode 100644 index a0646f137..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/OuterUnityTestActionCommand.cs +++ /dev/null @@ -1,49 +0,0 @@ -using System.Collections; -using System.Collections.Generic; -using System.Reflection; -using NUnit.Framework.Internal; -using NUnit.Framework.Internal.Commands; -using UnityEngine.TestRunner.NUnitExtensions.Runner; - -namespace UnityEngine.TestTools -{ - internal class OuterUnityTestActionCommand : BeforeAfterTestCommandBase - { - public OuterUnityTestActionCommand(TestCommand innerCommand) - : base(innerCommand, "BeforeTest", "AfterTest") - { - if (Test.TypeInfo.Type != null) - { - BeforeActions = GetUnityTestActionsFromMethod(Test.Method.MethodInfo); - AfterActions = BeforeActions; - } - } - - private static IOuterUnityTestAction[] GetUnityTestActionsFromMethod(MethodInfo method) - { - var attributes = method.GetCustomAttributes(false); - List actions = new List(); - foreach (var attribute in attributes) - { - if (attribute is IOuterUnityTestAction) - actions.Add(attribute as IOuterUnityTestAction); - } - return actions.ToArray(); - } - - protected override IEnumerator InvokeBefore(IOuterUnityTestAction action, Test test, UnityTestExecutionContext context) - { - return action.BeforeTest(test); - } - - protected override IEnumerator InvokeAfter(IOuterUnityTestAction action, Test test, UnityTestExecutionContext context) - { - return action.AfterTest(test); - } - - protected override BeforeAfterTestCommandState GetState(UnityTestExecutionContext context) - { - return context.OuterUnityTestActionState; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/OuterUnityTestActionCommand.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/OuterUnityTestActionCommand.cs.meta deleted file mode 100644 index 64158729f..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/OuterUnityTestActionCommand.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 0d4fc309a0784294c8ab658b53b12320 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs deleted file mode 100644 index c6ff0d9c2..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs +++ /dev/null @@ -1,48 +0,0 @@ -using System; -using System.Collections; -using System.Linq; -using System.Reflection; -using NUnit.Framework; -using NUnit.Framework.Internal; -using NUnit.Framework.Internal.Commands; -using NUnit.Framework.Internal.Execution; -using UnityEngine.TestRunner.NUnitExtensions.Runner; - -namespace UnityEngine.TestTools -{ - internal class SetUpTearDownCommand : BeforeAfterTestCommandBase - { - public SetUpTearDownCommand(TestCommand innerCommand) - : base(innerCommand, "SetUp", "TearDown", true) - { - if (Test.TypeInfo.Type != null) - { - BeforeActions = GetMethodsWithAttributeFromFixture(Test.TypeInfo.Type, typeof(SetUpAttribute)); - AfterActions = GetMethodsWithAttributeFromFixture(Test.TypeInfo.Type, typeof(TearDownAttribute)).Reverse().ToArray(); - } - } - - private static MethodInfo[] GetMethodsWithAttributeFromFixture(Type fixtureType, Type setUpType) - { - MethodInfo[] methodsWithAttribute = Reflect.GetMethodsWithAttribute(fixtureType, setUpType, true); - return methodsWithAttribute.Where(x => x.ReturnType == typeof(void)).ToArray(); - } - - protected override IEnumerator InvokeBefore(MethodInfo action, Test test, UnityTestExecutionContext context) - { - Reflect.InvokeMethod(action, context.TestObject); - yield return null; - } - - protected override IEnumerator InvokeAfter(MethodInfo action, Test test, UnityTestExecutionContext context) - { - Reflect.InvokeMethod(action, context.TestObject); - yield return null; - } - - protected override BeforeAfterTestCommandState GetState(UnityTestExecutionContext context) - { - return null; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs.meta deleted file mode 100644 index 28b84ace3..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: e0db3f3921670cd4ca2e925737c3fba4 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/TestActionCommand.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/TestActionCommand.cs deleted file mode 100644 index 9b99dd0d4..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/TestActionCommand.cs +++ /dev/null @@ -1,53 +0,0 @@ -using System; -using System.Collections; -using System.Collections.Generic; -using System.Reflection; -using NUnit.Framework; -using NUnit.Framework.Internal; -using NUnit.Framework.Internal.Commands; -using UnityEngine.TestRunner.NUnitExtensions.Runner; - -namespace UnityEngine.TestTools -{ - internal class TestActionCommand : BeforeAfterTestCommandBase - { - public TestActionCommand(TestCommand innerCommand) - : base(innerCommand, "BeforeTest", "AfterTest", true) - { - if (Test.TypeInfo.Type != null) - { - BeforeActions = GetTestActionsFromMethod(Test.Method.MethodInfo); - AfterActions = BeforeActions; - } - } - - private static ITestAction[] GetTestActionsFromMethod(MethodInfo method) - { - var attributes = method.GetCustomAttributes(false); - List actions = new List(); - foreach (var attribute in attributes) - { - if (attribute is ITestAction) - actions.Add(attribute as ITestAction); - } - return actions.ToArray(); - } - - protected override IEnumerator InvokeBefore(ITestAction action, Test test, UnityTestExecutionContext context) - { - action.BeforeTest(test); - yield return null; - } - - protected override IEnumerator InvokeAfter(ITestAction action, Test test, UnityTestExecutionContext context) - { - action.AfterTest(test); - yield return null; - } - - protected override BeforeAfterTestCommandState GetState(UnityTestExecutionContext context) - { - return null; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/TestActionCommand.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/TestActionCommand.cs.meta deleted file mode 100644 index 3f44e9d77..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/TestActionCommand.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 2de8ba3b840049641897e0da7ce1d5cd -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/TestCommandPcHelper.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/TestCommandPcHelper.cs deleted file mode 100644 index 26eb4b030..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/TestCommandPcHelper.cs +++ /dev/null @@ -1,18 +0,0 @@ -using System; -using System.Collections; - -namespace UnityEngine.TestTools -{ - internal class TestCommandPcHelper - { - public virtual void SetEnumeratorPC(IEnumerator enumerator, int pc) - { - // Noop implementation used in playmode. - } - - public virtual int GetEnumeratorPC(IEnumerator enumerator) - { - return 0; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/TestCommandPcHelper.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/TestCommandPcHelper.cs.meta deleted file mode 100644 index 1dbd4f433..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Commands/TestCommandPcHelper.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 33e6b78c96bb0694e96383e3c56b7b54 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/ConstructDelegator.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/ConstructDelegator.cs deleted file mode 100644 index dd7fbc29f..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/ConstructDelegator.cs +++ /dev/null @@ -1,141 +0,0 @@ -using System; -using System.Linq; -using NUnit.Framework.Internal; -using UnityEngine.TestRunner.NUnitExtensions.Runner; -using UnityEngine.TestTools.Logging; -using UnityEngine.TestTools.TestRunner; - -namespace UnityEngine.TestTools.NUnitExtensions -{ - /// - /// Specialization of BaseDelegator that makes sure objects are created on the MainThread. - /// It also deals with ScriptableObjects so that tests can survive assembly reload. - /// - internal class ConstructDelegator - { - private Type m_RequestedType; - private object[] m_Arguments; - - private ScriptableObject m_CurrentRunningTest; - private readonly IStateSerializer m_StateSerializer; - - protected Exception m_Exception; - protected object m_Result; - protected ITestExecutionContext m_Context; - - public ConstructDelegator(IStateSerializer stateSerializer) - { - m_StateSerializer = stateSerializer; - } - - protected object HandleResult() - { - SetCurrentTestContext(); - if (m_Exception != null) - { - var temp = m_Exception; - m_Exception = null; - throw temp; - } - var tempResult = m_Result; - m_Result = null; - return tempResult; - } - - protected void SetCurrentTestContext() - { - var prop = typeof(UnityTestExecutionContext).GetProperty("CurrentContext"); - if (prop != null) - { - prop.SetValue(null, m_Context, null); - } - } - - public object Delegate(Type type, object[] arguments) - { - AssertState(); - m_Context = UnityTestExecutionContext.CurrentContext; - - m_RequestedType = type; - m_Arguments = arguments; - - using (var logScope = new LogScope()) - { - Execute(logScope); - } - - return HandleResult(); - } - - private void AssertState() - { - if (m_RequestedType != null) - { - throw new Exception("Constructor not executed yet"); - } - } - - public bool HasAction() - { - return m_RequestedType != null; - } - - public void Execute(LogScope logScope) - { - try - { - if (typeof(ScriptableObject).IsAssignableFrom(m_RequestedType)) - { - if (m_CurrentRunningTest != null && m_RequestedType != m_CurrentRunningTest.GetType()) - { - DestroyCurrentTestObjectIfExists(); - } - if (m_CurrentRunningTest == null) - { - if (m_StateSerializer.CanRestoreFromScriptableObject(m_RequestedType)) - { - m_CurrentRunningTest = m_StateSerializer.RestoreScriptableObjectInstance(); - } - else - { - m_CurrentRunningTest = ScriptableObject.CreateInstance(m_RequestedType); - } - } - m_Result = m_CurrentRunningTest; - } - else - { - DestroyCurrentTestObjectIfExists(); - m_Result = Activator.CreateInstance(m_RequestedType, m_Arguments); - if (m_StateSerializer.CanRestoreFromJson(m_RequestedType)) - { - m_StateSerializer.RestoreClassFromJson(ref m_Result); - } - } - if (logScope.AnyFailingLogs()) - { - var failingLog = logScope.FailingLogs.First(); - throw new UnhandledLogMessageException(failingLog); - } - if (logScope.ExpectedLogs.Any()) - throw new UnexpectedLogMessageException(LogScope.Current.ExpectedLogs.Peek()); - } - catch (Exception e) - { - m_Exception = e; - } - finally - { - m_RequestedType = null; - m_Arguments = null; - } - } - - public void DestroyCurrentTestObjectIfExists() - { - if (m_CurrentRunningTest == null) - return; - Object.DestroyImmediate(m_CurrentRunningTest); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/ConstructDelegator.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/ConstructDelegator.cs.meta deleted file mode 100644 index cb04fc8ab..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/ConstructDelegator.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: b42e1db66fe9c634798674cb9e1df2ca -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Filters.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Filters.meta deleted file mode 100644 index a0aa99461..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Filters.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c3de99f9efc582a48995bc8e8c2df418 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Filters/AssemblyNameFilter.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Filters/AssemblyNameFilter.cs deleted file mode 100644 index d53a2d0f7..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Filters/AssemblyNameFilter.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal.Filters; - -namespace UnityEngine.TestRunner.NUnitExtensions.Filters -{ - internal class AssemblyNameFilter : ValueMatchFilter - { - public AssemblyNameFilter(string assemblyName) : base(assemblyName) {} - - public override bool Match(ITest test) - { - string assemblyName = string.Empty; - //Assembly fullname is in the format "Assembly-name, meta data ...", so extract the name by looking for the comma - if (test.TypeInfo != null && test.TypeInfo.Assembly != null && test.TypeInfo.FullName != null) - assemblyName = test.TypeInfo.Assembly.FullName.Substring(0, test.TypeInfo.Assembly.FullName.IndexOf(',')).TrimEnd(','); - return ExpectedValue.Equals(assemblyName, StringComparison.OrdinalIgnoreCase); - } - - protected override string ElementName - { - get { return "id"; } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Filters/AssemblyNameFilter.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Filters/AssemblyNameFilter.cs.meta deleted file mode 100644 index 2b897451f..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Filters/AssemblyNameFilter.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 91319408591cec1478efd3c62f9f418a -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Filters/CategoryFilterExtended.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Filters/CategoryFilterExtended.cs deleted file mode 100644 index 58430e8c7..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Filters/CategoryFilterExtended.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System.Collections; -using System.Linq; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; -using NUnit.Framework.Internal.Filters; - -namespace UnityEngine.TestRunner.NUnitExtensions.Filters -{ - internal class CategoryFilterExtended : CategoryFilter - { - public static string k_DefaultCategory = "Uncategorized"; - - public CategoryFilterExtended(string name) : base(name) - { - } - - public override bool Match(ITest test) - { - IList testCategories = test.Properties[PropertyNames.Category].Cast().ToList(); - - if (test is TestMethod) - { - // Do not count tests with no attribute as Uncategorized if test fixture class has at least one attribute - // The test inherits the attribute from the test fixture - IList fixtureCategories = test.Parent.Properties[PropertyNames.Category].Cast().ToList(); - if (fixtureCategories.Count > 0) - return false; - } - - if (testCategories.Count == 0 && ExpectedValue == k_DefaultCategory && test is TestMethod) - return true; - - return base.Match(test); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Filters/CategoryFilterExtended.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Filters/CategoryFilterExtended.cs.meta deleted file mode 100644 index a115cd200..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Filters/CategoryFilterExtended.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: ebeedaa04bb53e24ba2e7fb6745e3fd3 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/IStateSerializer.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/IStateSerializer.cs deleted file mode 100644 index 951d079ea..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/IStateSerializer.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System; - -namespace UnityEngine.TestTools.NUnitExtensions -{ - internal interface IStateSerializer - { - ScriptableObject RestoreScriptableObjectInstance(); - void RestoreClassFromJson(ref object instance); - bool CanRestoreFromJson(Type requestedType); - bool CanRestoreFromScriptableObject(Type requestedType); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/IStateSerializer.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/IStateSerializer.cs.meta deleted file mode 100644 index 1d3271523..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/IStateSerializer.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 5f875a14565308a40a5262d2504da705 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner.meta deleted file mode 100644 index 1604cb56c..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 37888acc09d9ee848bf9559f06645c45 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs deleted file mode 100644 index 260e3cf8d..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs +++ /dev/null @@ -1,342 +0,0 @@ -using System; -using System.Collections; -using System.Collections.Generic; -using System.Linq; -using System.Reflection; -using NUnit.Framework; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; -using NUnit.Framework.Internal.Commands; -using NUnit.Framework.Internal.Execution; -using UnityEngine.TestTools.Logging; -using UnityEngine.TestTools.TestRunner; - -namespace UnityEngine.TestRunner.NUnitExtensions.Runner -{ - internal class CompositeWorkItem : UnityWorkItem - { - private readonly TestSuite _suite; - private readonly TestSuiteResult _suiteResult; - private readonly ITestFilter _childFilter; - private TestCommand _setupCommand; - private TestCommand _teardownCommand; - - public List Children { get; private set; } - - private int _countOrder; - - private CountdownEvent _childTestCountdown; - - public CompositeWorkItem(TestSuite suite, ITestFilter childFilter, WorkItemFactory factory) - : base(suite, factory) - { - _suite = suite; - _suiteResult = Result as TestSuiteResult; - _childFilter = childFilter; - _countOrder = 0; - } - - protected override IEnumerable PerformWork() - { - InitializeSetUpAndTearDownCommands(); - - if (UnityTestExecutionContext.CurrentContext != null && m_DontRunRestoringResult && EditModeTestCallbacks.RestoringTestContext != null) - { - EditModeTestCallbacks.RestoringTestContext(); - } - - if (!CheckForCancellation()) - if (Test.RunState == RunState.Explicit && !_childFilter.IsExplicitMatch(Test)) - SkipFixture(ResultState.Explicit, GetSkipReason(), null); - else - switch (Test.RunState) - { - default: - case RunState.Runnable: - case RunState.Explicit: - Result.SetResult(ResultState.Success); - - CreateChildWorkItems(); - - if (Children.Count > 0) - { - if (!m_DontRunRestoringResult) - { - //This is needed to give the editor a chance to go out of playmode if needed before creating objects. - //If we do not, the objects could be automatically destroyed when exiting playmode and could result in errors later on - yield return null; - PerformOneTimeSetUp(); - } - - if (!CheckForCancellation()) - { - switch (Result.ResultState.Status) - { - case TestStatus.Passed: - foreach (var child in RunChildren()) - { - if (CheckForCancellation()) - { - yield break; - } - - yield return child; - } - break; - case TestStatus.Skipped: - case TestStatus.Inconclusive: - case TestStatus.Failed: - SkipChildren(_suite, Result.ResultState.WithSite(FailureSite.Parent), "OneTimeSetUp: " + Result.Message); - break; - } - } - - if (Context.ExecutionStatus != TestExecutionStatus.AbortRequested && !m_DontRunRestoringResult) - { - PerformOneTimeTearDown(); - } - } - break; - - case RunState.Skipped: - SkipFixture(ResultState.Skipped, GetSkipReason(), null); - break; - - case RunState.Ignored: - SkipFixture(ResultState.Ignored, GetSkipReason(), null); - break; - - case RunState.NotRunnable: - SkipFixture(ResultState.NotRunnable, GetSkipReason(), GetProviderStackTrace()); - break; - } - if (!ResultedInDomainReload) - { - WorkItemComplete(); - } - } - - private bool CheckForCancellation() - { - if (Context.ExecutionStatus != TestExecutionStatus.Running) - { - Result.SetResult(ResultState.Cancelled, "Test cancelled by user"); - return true; - } - - return false; - } - - private void InitializeSetUpAndTearDownCommands() - { - List setUpTearDownItems = _suite.TypeInfo != null - ? CommandBuilder.BuildSetUpTearDownList(_suite.TypeInfo.Type, typeof(OneTimeSetUpAttribute), typeof(OneTimeTearDownAttribute)) - : new List(); - - var actionItems = new List(); - foreach (ITestAction action in Actions) - { - bool applyToSuite = (action.Targets & ActionTargets.Suite) == ActionTargets.Suite - || action.Targets == ActionTargets.Default && !(Test is ParameterizedMethodSuite); - - bool applyToTest = (action.Targets & ActionTargets.Test) == ActionTargets.Test - && !(Test is ParameterizedMethodSuite); - - if (applyToSuite) - actionItems.Add(new TestActionItem(action)); - - if (applyToTest) - Context.UpstreamActions.Add(action); - } - - _setupCommand = CommandBuilder.MakeOneTimeSetUpCommand(_suite, setUpTearDownItems, actionItems); - _teardownCommand = CommandBuilder.MakeOneTimeTearDownCommand(_suite, setUpTearDownItems, actionItems); - } - - private void PerformOneTimeSetUp() - { - var logScope = new LogScope(); - try - { - _setupCommand.Execute(Context); - } - catch (Exception ex) - { - if (ex is NUnitException || ex is TargetInvocationException) - ex = ex.InnerException; - - Result.RecordException(ex, FailureSite.SetUp); - } - - if (logScope.AnyFailingLogs()) - { - Result.RecordException(new UnhandledLogMessageException(logScope.FailingLogs.First())); - } - logScope.Dispose(); - } - - private IEnumerable RunChildren() - { - int childCount = Children.Count; - if (childCount == 0) - throw new InvalidOperationException("RunChildren called but item has no children"); - - _childTestCountdown = new CountdownEvent(childCount); - - foreach (UnityWorkItem child in Children) - { - if (CheckForCancellation()) - { - yield break; - } - - var unityTestExecutionContext = new UnityTestExecutionContext(Context); - child.InitializeContext(unityTestExecutionContext); - - var enumerable = child.Execute().GetEnumerator(); - - while (true) - { - if (!enumerable.MoveNext()) - { - break; - } - ResultedInDomainReload |= child.ResultedInDomainReload; - yield return enumerable.Current; - } - - _suiteResult.AddResult(child.Result); - childCount--; - } - - if (childCount > 0) - { - while (childCount-- > 0) - CountDownChildTest(); - } - } - - private void CreateChildWorkItems() - { - Children = new List(); - var testSuite = _suite; - - foreach (ITest test in testSuite.Tests) - { - if (_childFilter.Pass(test)) - { - var child = m_Factory.Create(test, _childFilter); - - if (test.Properties.ContainsKey(PropertyNames.Order)) - { - Children.Insert(0, child); - _countOrder++; - } - else - { - Children.Add(child); - } - } - } - - if (_countOrder != 0) SortChildren(); - } - - private class UnityWorkItemOrderComparer : IComparer - { - public int Compare(UnityWorkItem x, UnityWorkItem y) - { - var xKey = int.MaxValue; - var yKey = int.MaxValue; - - if (x.Test.Properties.ContainsKey(PropertyNames.Order)) - xKey = (int)x.Test.Properties[PropertyNames.Order][0]; - - if (y.Test.Properties.ContainsKey(PropertyNames.Order)) - yKey = (int)y.Test.Properties[PropertyNames.Order][0]; - - return xKey.CompareTo(yKey); - } - } - - private void SortChildren() - { - Children.Sort(0, _countOrder, new UnityWorkItemOrderComparer()); - } - - private void SkipFixture(ResultState resultState, string message, string stackTrace) - { - Result.SetResult(resultState.WithSite(FailureSite.SetUp), message, StackFilter.Filter(stackTrace)); - SkipChildren(_suite, resultState.WithSite(FailureSite.Parent), "OneTimeSetUp: " + message); - } - - private void SkipChildren(TestSuite suite, ResultState resultState, string message) - { - foreach (Test child in suite.Tests) - { - if (_childFilter.Pass(child)) - { - Context.Listener.TestStarted(child); - TestResult childResult = child.MakeTestResult(); - childResult.SetResult(resultState, message); - _suiteResult.AddResult(childResult); - - if (child.IsSuite) - SkipChildren((TestSuite)child, resultState, message); - - Context.Listener.TestFinished(childResult); - } - } - } - - private void PerformOneTimeTearDown() - { - _teardownCommand.Execute(Context); - } - - private string GetSkipReason() - { - return (string)Test.Properties.Get(PropertyNames.SkipReason); - } - - private string GetProviderStackTrace() - { - return (string)Test.Properties.Get(PropertyNames.ProviderStackTrace); - } - - private void CountDownChildTest() - { - _childTestCountdown.Signal(); - if (_childTestCountdown.CurrentCount == 0) - { - if (Context.ExecutionStatus != TestExecutionStatus.AbortRequested) - PerformOneTimeTearDown(); - - foreach (var childResult in _suiteResult.Children) - if (childResult.ResultState == ResultState.Cancelled) - { - this.Result.SetResult(ResultState.Cancelled, "Cancelled by user"); - break; - } - - WorkItemComplete(); - } - } - - public override void Cancel(bool force) - { - if (Children == null) - return; - - foreach (var child in Children) - { - var ctx = child.Context; - if (ctx != null) - ctx.ExecutionStatus = force ? TestExecutionStatus.AbortRequested : TestExecutionStatus.StopRequested; - - if (child.State == WorkItemState.Running) - child.Cancel(force); - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs.meta deleted file mode 100644 index 355dd71d6..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 110d5035a36a6a34580fb65bb40cd78f -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/CoroutineTestWorkItem.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/CoroutineTestWorkItem.cs deleted file mode 100644 index 3ec037b61..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/CoroutineTestWorkItem.cs +++ /dev/null @@ -1,77 +0,0 @@ -using System; -using System.Collections; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; -using NUnit.Framework.Internal.Commands; -using NUnit.Framework.Internal.Execution; -using UnityEngine.TestTools.Utils; - -namespace UnityEngine.TestRunner.NUnitExtensions.Runner -{ - internal class CoroutineTestWorkItem : UnityWorkItem - { - private static MonoBehaviour m_MonoBehaviourCoroutineRunner; - private TestCommand m_Command; - - public static MonoBehaviour monoBehaviourCoroutineRunner - { - get - { - if (m_MonoBehaviourCoroutineRunner == null) - { - throw new NullReferenceException("MonoBehaviour coroutine runner not set"); - } - return m_MonoBehaviourCoroutineRunner; - } - set { m_MonoBehaviourCoroutineRunner = value; } - } - - public CoroutineTestWorkItem(TestMethod test, ITestFilter filter) - : base(test, null) - { - m_Command = test.RunState == RunState.Runnable || test.RunState == RunState.Explicit && filter.IsExplicitMatch(test) - ? CommandBuilder.MakeTestCommand(test) - : CommandBuilder.MakeSkipCommand(test); - } - - protected override IEnumerable PerformWork() - { - if (m_Command is SkipCommand) - { - m_Command.Execute(Context); - Result = Context.CurrentResult; - WorkItemComplete(); - yield break; - } - - if (m_Command is ApplyChangesToContextCommand) - { - var applyChangesToContextCommand = (ApplyChangesToContextCommand)m_Command; - applyChangesToContextCommand.ApplyChanges(Context); - m_Command = applyChangesToContextCommand.GetInnerCommand(); - } - - var enumerableTestMethodCommand = (IEnumerableTestMethodCommand)m_Command; - try - { - var executeEnumerable = enumerableTestMethodCommand.ExecuteEnumerable(Context).GetEnumerator(); - - var coroutineRunner = new CoroutineRunner(monoBehaviourCoroutineRunner, Context); - yield return coroutineRunner.HandleEnumerableTest(executeEnumerable); - - if (coroutineRunner.HasFailedWithTimeout()) - { - Context.CurrentResult.SetResult(ResultState.Failure, string.Format("Test exceeded Timeout value of {0}ms", Context.TestCaseTimeout)); - } - - while (executeEnumerable.MoveNext()) {} - - Result = Context.CurrentResult; - } - finally - { - WorkItemComplete(); - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/CoroutineTestWorkItem.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/CoroutineTestWorkItem.cs.meta deleted file mode 100644 index f5eb99832..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/CoroutineTestWorkItem.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: b557515fff172984e8c4400b43f1c631 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/DefaultTestWorkItem.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/DefaultTestWorkItem.cs deleted file mode 100644 index 36dfb1aef..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/DefaultTestWorkItem.cs +++ /dev/null @@ -1,137 +0,0 @@ -using System; -using System.Collections; -using System.Linq; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; -using NUnit.Framework.Internal.Commands; -using NUnit.Framework.Internal.Execution; -using UnityEngine.TestTools; -using SetUpTearDownCommand = NUnit.Framework.Internal.Commands.SetUpTearDownCommand; -using TestActionCommand = NUnit.Framework.Internal.Commands.TestActionCommand; - -namespace UnityEngine.TestRunner.NUnitExtensions.Runner -{ - internal class EditModeTestCallbacks - { - public static Action RestoringTestContext { get; set; } - } - - internal class DefaultTestWorkItem : UnityWorkItem - { - private TestCommand _command; - - public DefaultTestWorkItem(TestMethod test, ITestFilter filter) - : base(test, null) - { - _command = test.RunState == RunState.Runnable || test.RunState == RunState.Explicit && filter.IsExplicitMatch(test) - ? BuildTestCommand(test) - : new SkipCommand(test); - } - - private static TestCommand BuildTestCommand(TestMethod test) - { - var command = (TestCommand)new TestMethodCommand(test); - command = new UnityLogCheckDelegatingCommand(command); - foreach (var wrapper in test.Method.GetCustomAttributes(true)) - { - command = wrapper.Wrap(command); - if (command == null) - { - var message = string.Format("IWrapTestMethod implementation '{0}' returned null as command.", wrapper.GetType().FullName); - return new FailCommand(test, ResultState.Failure, message); - } - } - - command = new TestTools.TestActionCommand(command); - command = new TestTools.SetUpTearDownCommand(command); - command = new ImmediateEnumerableCommand(command); - foreach (var wrapper in test.Method.GetCustomAttributes(true)) - { - command = wrapper.Wrap(command); - if (command == null) - { - var message = string.Format("IWrapSetUpTearDown implementation '{0}' returned null as command.", wrapper.GetType().FullName); - return new FailCommand(test, ResultState.Failure, message); - } - } - - command = new EnumerableSetUpTearDownCommand(command); - command = new OuterUnityTestActionCommand(command); - - IApplyToContext[] changes = test.Method.GetCustomAttributes(true); - if (changes.Length > 0) - { - command = new EnumerableApplyChangesToContextCommand(command, changes); - } - - return command; - } - - protected override IEnumerable PerformWork() - { - if (m_DontRunRestoringResult && EditModeTestCallbacks.RestoringTestContext != null) - { - EditModeTestCallbacks.RestoringTestContext(); - Result = Context.CurrentResult; - yield break; - } - - try - { - if (_command is SkipCommand || _command is FailCommand) - { - Result = _command.Execute(Context); - yield break; - } - - if (!(_command is IEnumerableTestMethodCommand)) - { - Debug.LogError("Cannot perform work on " + _command.GetType().Name); - yield break; - } - - foreach (var workItemStep in ((IEnumerableTestMethodCommand)_command).ExecuteEnumerable(Context)) - { - ResultedInDomainReload = false; - - if (workItemStep is IEditModeTestYieldInstruction) - { - var editModeTestYieldInstruction = (IEditModeTestYieldInstruction)workItemStep; - yield return editModeTestYieldInstruction; - var enumerator = editModeTestYieldInstruction.Perform(); - while (true) - { - bool moveNext; - try - { - moveNext = enumerator.MoveNext(); - } - catch (Exception e) - { - Context.CurrentResult.RecordException(e); - break; - } - - if (!moveNext) - { - break; - } - - yield return null; - } - } - else - { - yield return workItemStep; - } - } - - Result = Context.CurrentResult; - } - finally - { - WorkItemComplete(); - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/DefaultTestWorkItem.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/DefaultTestWorkItem.cs.meta deleted file mode 100644 index a843b77a6..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/DefaultTestWorkItem.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: c7cfda246e604b945b12b7afedb094ce -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/FailCommand.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/FailCommand.cs deleted file mode 100644 index f710da020..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/FailCommand.cs +++ /dev/null @@ -1,27 +0,0 @@ - -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; -using NUnit.Framework.Internal.Commands; - -namespace UnityEngine.TestRunner.NUnitExtensions.Runner -{ - internal class FailCommand : TestCommand - { - private ResultState m_ResultState; - private string m_Message; - - public FailCommand(Test test, ResultState resultState, string message) - : base(test) - { - m_ResultState = resultState; - m_Message = message; - } - - public override TestResult Execute(ITestExecutionContext context) - { - context.CurrentResult.SetResult(m_ResultState, m_Message); - return context.CurrentResult; - } - } - -} \ No newline at end of file diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/FailCommand.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/FailCommand.cs.meta deleted file mode 100644 index 921cc0ae9..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/FailCommand.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 68e5dc8bfd5d72647a93b7f2e1da831a -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/IEnumerableTestMethodCommand.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/IEnumerableTestMethodCommand.cs deleted file mode 100644 index 758e29567..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/IEnumerableTestMethodCommand.cs +++ /dev/null @@ -1,10 +0,0 @@ -using System.Collections; -using NUnit.Framework.Internal; - -namespace UnityEngine.TestRunner.NUnitExtensions.Runner -{ - internal interface IEnumerableTestMethodCommand - { - IEnumerable ExecuteEnumerable(ITestExecutionContext context); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/IEnumerableTestMethodCommand.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/IEnumerableTestMethodCommand.cs.meta deleted file mode 100644 index 4434337bb..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/IEnumerableTestMethodCommand.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: dbd43d8a3b8122d4e89b055f53382b11 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/PlaymodeWorkItemFactory.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/PlaymodeWorkItemFactory.cs deleted file mode 100644 index 5d32f268a..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/PlaymodeWorkItemFactory.cs +++ /dev/null @@ -1,13 +0,0 @@ -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; - -namespace UnityEngine.TestRunner.NUnitExtensions.Runner -{ - internal class PlaymodeWorkItemFactory : WorkItemFactory - { - protected override UnityWorkItem Create(TestMethod method, ITestFilter filter, ITest loadedTest) - { - return new CoroutineTestWorkItem(method, filter); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/PlaymodeWorkItemFactory.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/PlaymodeWorkItemFactory.cs.meta deleted file mode 100644 index 9c2a8edaf..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/PlaymodeWorkItemFactory.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 7ef6801a8b664544aa9f2ab1bc1f8b60 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/RestoreTestContextAfterDomainReload.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/RestoreTestContextAfterDomainReload.cs deleted file mode 100644 index e05910aba..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/RestoreTestContextAfterDomainReload.cs +++ /dev/null @@ -1,4 +0,0 @@ -namespace UnityEngine.TestRunner.NUnitExtensions.Runner -{ - internal class RestoreTestContextAfterDomainReload {} -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/RestoreTestContextAfterDomainReload.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/RestoreTestContextAfterDomainReload.cs.meta deleted file mode 100644 index 640354d61..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/RestoreTestContextAfterDomainReload.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 26721f9940339264fb14bdbfe1290e21 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs deleted file mode 100644 index 7e6ac6555..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs +++ /dev/null @@ -1,106 +0,0 @@ -using System; -using System.Collections; -using System.Linq; -using NUnit.Framework.Internal; -using NUnit.Framework.Internal.Commands; -using UnityEngine.TestTools.Logging; -using UnityEngine.TestTools.TestRunner; - -namespace UnityEngine.TestRunner.NUnitExtensions.Runner -{ - internal class UnityLogCheckDelegatingCommand : DelegatingTestCommand, IEnumerableTestMethodCommand - { - public UnityLogCheckDelegatingCommand(TestCommand innerCommand) - : base(innerCommand) {} - - public override TestResult Execute(ITestExecutionContext context) - { - var logCollector = new LogScope(); - - try - { - innerCommand.Execute(context); - - if (logCollector.AnyFailingLogs()) - { - var failingLog = logCollector.FailingLogs.First(); - throw new UnhandledLogMessageException(failingLog); - } - - if (logCollector.ExpectedLogs.Any()) - { - throw new UnexpectedLogMessageException(logCollector.ExpectedLogs.Peek()); - } - } - catch (Exception exception) - { - context.CurrentResult.RecordException(exception); - } - logCollector.Dispose(); - return context.CurrentResult; - } - - public IEnumerable ExecuteEnumerable(ITestExecutionContext context) - { - var logCollector = new LogScope(); - - if (!(innerCommand is IEnumerableTestMethodCommand)) - { - Execute(context); - yield break; - } - - var enumerableTestMethodCommand = (IEnumerableTestMethodCommand)innerCommand; - - IEnumerable executeEnumerable; - - try - { - executeEnumerable = enumerableTestMethodCommand.ExecuteEnumerable(context); - } - catch (Exception e) - { - context.CurrentResult.RecordException(e); - yield break; - } - - foreach (var step in executeEnumerable) - { - try - { - if (logCollector.AnyFailingLogs()) - { - var failingLog = logCollector.FailingLogs.First(); - throw new UnhandledLogMessageException(failingLog); - } - } - catch (Exception e) - { - context.CurrentResult.RecordException(e); - break; - } - yield return step; - } - - try - { - if (logCollector.AnyFailingLogs()) - { - var failingLog = logCollector.FailingLogs.First(); - throw new UnhandledLogMessageException(failingLog); - } - - logCollector.ProcessExpectedLogs(); - if (logCollector.ExpectedLogs.Any()) - { - throw new UnexpectedLogMessageException(LogScope.Current.ExpectedLogs.Peek()); - } - } - catch (Exception exception) - { - context.CurrentResult.RecordException(exception); - } - logCollector.Dispose(); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs.meta deleted file mode 100644 index 86d9d9eae..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 48230e4e90fb4d14a9d56bddea898413 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestAssemblyRunner.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestAssemblyRunner.cs deleted file mode 100644 index 8c9339aa4..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestAssemblyRunner.cs +++ /dev/null @@ -1,96 +0,0 @@ -using System.Collections; -using System.Collections.Generic; -using System.Reflection; -using NUnit; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; -using UnityEngine.TestTools.NUnitExtensions; - -namespace UnityEngine.TestRunner.NUnitExtensions.Runner -{ - internal interface IUnityTestAssemblyRunner - { - ITest LoadedTest { get; } - ITestResult Result { get; } - bool IsTestLoaded { get; } - bool IsTestRunning { get; } - bool IsTestComplete { get; } - UnityWorkItem TopLevelWorkItem { get; set; } - UnityTestExecutionContext GetCurrentContext(); - ITest Load(Assembly[] assemblies, IDictionary settings); - IEnumerable Run(ITestListener listener, ITestFilter filter); - void StopRun(); - } - - internal class UnityTestAssemblyRunner : IUnityTestAssemblyRunner - { - private readonly UnityTestAssemblyBuilder unityBuilder; - private readonly WorkItemFactory m_Factory; - - protected UnityTestExecutionContext Context { get; set; } - - public UnityTestExecutionContext GetCurrentContext() - { - return UnityTestExecutionContext.CurrentContext; - } - - protected IDictionary Settings { get; set; } - public ITest LoadedTest { get; protected set; } - - public ITestResult Result - { - get { return TopLevelWorkItem == null ? null : TopLevelWorkItem.Result; } - } - - public bool IsTestLoaded - { - get { return LoadedTest != null; } - } - - public bool IsTestRunning - { - get { return TopLevelWorkItem != null && TopLevelWorkItem.State == NUnit.Framework.Internal.Execution.WorkItemState.Running; } - } - public bool IsTestComplete - { - get { return TopLevelWorkItem != null && TopLevelWorkItem.State == NUnit.Framework.Internal.Execution.WorkItemState.Complete; } - } - - public UnityTestAssemblyRunner(UnityTestAssemblyBuilder builder, WorkItemFactory factory) - { - unityBuilder = builder; - m_Factory = factory; - Context = new UnityTestExecutionContext(); - } - - public ITest Load(Assembly[] assemblies, IDictionary settings) - { - Settings = settings; - - if (settings.ContainsKey(FrameworkPackageSettings.RandomSeed)) - Randomizer.InitialSeed = (int)settings[FrameworkPackageSettings.RandomSeed]; - - return LoadedTest = unityBuilder.Build(assemblies, settings); - } - - public IEnumerable Run(ITestListener listener, ITestFilter filter) - { - TopLevelWorkItem = m_Factory.Create(LoadedTest, filter); - TopLevelWorkItem.InitializeContext(Context); - UnityTestExecutionContext.CurrentContext = Context; - Context.Listener = listener; - - return TopLevelWorkItem.Execute(); - } - - public UnityWorkItem TopLevelWorkItem { get; set; } - - public void StopRun() - { - if (IsTestRunning) - { - TopLevelWorkItem.Cancel(false); - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestAssemblyRunner.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestAssemblyRunner.cs.meta deleted file mode 100644 index 96179c587..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestAssemblyRunner.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 874e40a588dbb1e48bc128d686337d4e -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestExecutionContext.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestExecutionContext.cs deleted file mode 100644 index dd58c14a5..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestExecutionContext.cs +++ /dev/null @@ -1,128 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Globalization; -using System.IO; -using NUnit.Framework; -using NUnit.Framework.Constraints; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; -using NUnit.Framework.Internal.Execution; -using UnityEngine.TestTools; - -namespace UnityEngine.TestRunner.NUnitExtensions.Runner -{ - internal class UnityTestExecutionContext : ITestExecutionContext - { - private readonly UnityTestExecutionContext _priorContext; - private TestResult _currentResult; - private int _assertCount; - - public static UnityTestExecutionContext CurrentContext { get; set; } - - public UnityTestExecutionContext Context { get; private set; } - - public Test CurrentTest { get; set; } - public DateTime StartTime { get; set; } - public long StartTicks { get; set; } - public TestResult CurrentResult - { - get { return _currentResult; } - set - { - _currentResult = value; - if (value != null) - OutWriter = value.OutWriter; - } - } - - public object TestObject { get; set; } - public string WorkDirectory { get; set; } - - - private TestExecutionStatus _executionStatus; - public TestExecutionStatus ExecutionStatus - { - get - { - // ExecutionStatus may have been set to StopRequested or AbortRequested - // in a prior context. If so, reflect the same setting in this context. - if (_executionStatus == TestExecutionStatus.Running && _priorContext != null) - _executionStatus = _priorContext.ExecutionStatus; - - return _executionStatus; - } - set - { - _executionStatus = value; - - // Push the same setting up to all prior contexts - if (_priorContext != null) - _priorContext.ExecutionStatus = value; - } - } - - public List UpstreamActions { get; private set; } - public int TestCaseTimeout { get; set; } - public CultureInfo CurrentCulture { get; set; } - public CultureInfo CurrentUICulture { get; set; } - public ITestListener Listener { get; set; } - - public UnityTestExecutionContext() - { - UpstreamActions = new List(); - CurrentContext = this; - } - - public UnityTestExecutionContext(UnityTestExecutionContext other) - { - _priorContext = other; - - CurrentTest = other.CurrentTest; - CurrentResult = other.CurrentResult; - TestObject = other.TestObject; - WorkDirectory = other.WorkDirectory; - Listener = other.Listener; - TestCaseTimeout = other.TestCaseTimeout; - UpstreamActions = new List(other.UpstreamActions); - SetUpTearDownState = other.SetUpTearDownState; - OuterUnityTestActionState = other.OuterUnityTestActionState; - - TestContext.CurrentTestExecutionContext = this; - - CurrentCulture = other.CurrentCulture; - CurrentUICulture = other.CurrentUICulture; - CurrentContext = this; - } - - public TextWriter OutWriter { get; private set; } - public bool StopOnError { get; set; } - - public IWorkItemDispatcher Dispatcher { get; set; } - - public ParallelScope ParallelScope { get; set; } - public string WorkerId { get; private set; } - public Randomizer RandomGenerator { get; private set; } - public ValueFormatter CurrentValueFormatter { get; private set; } - public bool IsSingleThreaded { get; set; } - public BeforeAfterTestCommandState SetUpTearDownState { get; set; } - public BeforeAfterTestCommandState OuterUnityTestActionState { get; set; } - - internal int AssertCount - { - get - { - return _assertCount; - } - } - - public void IncrementAssertCount() - { - _assertCount += 1; - } - - public void AddFormatter(ValueFormatterFactory formatterFactory) - { - throw new NotImplementedException(); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestExecutionContext.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestExecutionContext.cs.meta deleted file mode 100644 index 33d323b6f..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestExecutionContext.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 59ff995fabb3bac45afa0f96f333e5dc -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItem.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItem.cs deleted file mode 100644 index 71bddbd6e..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItem.cs +++ /dev/null @@ -1,112 +0,0 @@ -using System; -using System.Collections; -using System.Collections.Generic; -using System.Diagnostics; -using System.Linq; -using NUnit.Framework; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; -using NUnit.Framework.Internal.Execution; - -namespace UnityEngine.TestRunner.NUnitExtensions.Runner -{ - internal abstract class UnityWorkItem - { - protected readonly WorkItemFactory m_Factory; - protected bool m_ExecuteTestStartEvent; - protected bool m_DontRunRestoringResult; - public event EventHandler Completed; - - public bool ResultedInDomainReload { get; internal set; } - - public UnityTestExecutionContext Context { get; private set; } - - public Test Test { get; private set; } - - public TestResult Result { get; protected set; } - - public WorkItemState State { get; private set; } - - public List Actions { get; private set; } - - protected UnityWorkItem(Test test, WorkItemFactory factory) - { - m_Factory = factory; - Test = test; - Actions = new List(); - Result = test.MakeTestResult(); - State = WorkItemState.Ready; - m_ExecuteTestStartEvent = ShouldExecuteStartEvent(); - m_DontRunRestoringResult = ShouldRestore(test); - } - - protected static bool ShouldRestore(ITest loadedTest) - { - return UnityWorkItemDataHolder.alreadyExecutedTests != null && UnityWorkItemDataHolder.alreadyExecutedTests.Contains(loadedTest.FullName); - } - - protected bool ShouldExecuteStartEvent() - { - return UnityWorkItemDataHolder.alreadyStartedTests != null && UnityWorkItemDataHolder.alreadyStartedTests.All(x => x != Test.FullName) && !ShouldRestore(Test); - } - - protected abstract IEnumerable PerformWork(); - - public void InitializeContext(UnityTestExecutionContext context) - { - Context = context; - - if (Test is TestAssembly) - Actions.AddRange(ActionsHelper.GetActionsFromTestAssembly((TestAssembly)Test)); - else if (Test is ParameterizedMethodSuite) - Actions.AddRange(ActionsHelper.GetActionsFromTestMethodInfo(Test.Method)); - else if (Test.TypeInfo != null) - Actions.AddRange(ActionsHelper.GetActionsFromTypesAttributes(Test.TypeInfo.Type)); - } - - public virtual IEnumerable Execute() - { - Context.CurrentTest = this.Test; - Context.CurrentResult = this.Result; - - if (m_ExecuteTestStartEvent) - { - Context.Listener.TestStarted(Test); - } - - Context.StartTime = DateTime.UtcNow; - Context.StartTicks = Stopwatch.GetTimestamp(); - - State = WorkItemState.Running; - - return PerformWork(); - } - - protected void WorkItemComplete() - { - State = WorkItemState.Complete; - - Result.StartTime = Context.StartTime; - Result.EndTime = DateTime.UtcNow; - - long tickCount = Stopwatch.GetTimestamp() - Context.StartTicks; - double seconds = (double)tickCount / Stopwatch.Frequency; - Result.Duration = seconds; - - //Result.AssertCount += Context.AssertCount; - - Context.Listener.TestFinished(Result); - - if (Completed != null) - Completed(this, EventArgs.Empty); - - Context.TestObject = null; - Test.Fixture = null; - } - - public virtual void Cancel(bool force) - { - Context.Listener.TestFinished(Result); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItem.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItem.cs.meta deleted file mode 100644 index 48b9f92d0..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItem.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 79ced2556f0af814a840b86232613ff1 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItemDataHolder.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItemDataHolder.cs deleted file mode 100644 index d9fb70041..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItemDataHolder.cs +++ /dev/null @@ -1,10 +0,0 @@ -using System.Collections.Generic; - -namespace UnityEngine.TestRunner.NUnitExtensions.Runner -{ - internal class UnityWorkItemDataHolder - { - public static List alreadyStartedTests = new List(); - public static List alreadyExecutedTests; - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItemDataHolder.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItemDataHolder.cs.meta deleted file mode 100644 index 6d90872b7..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItemDataHolder.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 5b3e90046c38f1d4dad2e0d5a79e871c -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/WorkItemFactory.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/WorkItemFactory.cs deleted file mode 100644 index 94d9c0fec..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/WorkItemFactory.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System.Collections; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; - -namespace UnityEngine.TestRunner.NUnitExtensions.Runner -{ - internal abstract class WorkItemFactory - { - public UnityWorkItem Create(ITest loadedTest, ITestFilter filter) - { - TestSuite suite = loadedTest as TestSuite; - if (suite != null) - { - return new CompositeWorkItem(suite, filter, this); - } - - var testMethod = (TestMethod)loadedTest; - if (testMethod.Method.ReturnType.Type != typeof(IEnumerator)) - { - return new DefaultTestWorkItem(testMethod, filter); - } - - return Create(testMethod, filter, loadedTest); - } - - protected abstract UnityWorkItem Create(TestMethod method, ITestFilter filter, ITest loadedTest); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/WorkItemFactory.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/WorkItemFactory.cs.meta deleted file mode 100644 index e5f037774..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/Runner/WorkItemFactory.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 5c15bf0966eb95847a4260d830a30d30 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/TestExtensions.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/TestExtensions.cs deleted file mode 100644 index 5d353074e..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/TestExtensions.cs +++ /dev/null @@ -1,138 +0,0 @@ -using System.Collections.Generic; -using System.Linq; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; -using UnityEngine.TestRunner.NUnitExtensions.Filters; - -namespace UnityEngine.TestRunner.NUnitExtensions -{ - internal static class TestExtensions - { - private static IEnumerable GetTestCategories(this ITest test) - { - var categories = test.Properties[PropertyNames.Category].Cast().ToList(); - if (categories.Count == 0 && test is TestMethod) - { - // only mark tests as Uncategorized if the test fixture doesn't have a category, - // otherwise the test inherits the Fixture category - var fixtureCategories = test.Parent.Properties[PropertyNames.Category].Cast().ToList(); - if (fixtureCategories.Count == 0) - categories.Add(CategoryFilterExtended.k_DefaultCategory); - } - return categories; - } - - public static bool HasCategory(this ITest test, string[] categoryFilter) - { - var categories = test.GetAllCategoriesFromTest().Distinct(); - return categoryFilter.Any(c => categories.Any(r => r == c)); - } - - public static List GetAllCategoriesFromTest(this ITest test) - { - if (test.Parent == null) - return test.GetTestCategories().ToList(); - - var categories = GetAllCategoriesFromTest(test.Parent); - categories.AddRange(test.GetTestCategories()); - return categories; - } - - public static void ParseForNameDuplicates(this ITest test) - { - var duplicates = new Dictionary(); - for (var i = 0; i < test.Tests.Count; i++) - { - var child = test.Tests[i]; - int count; - if (duplicates.TryGetValue(child.FullName, out count)) - { - count++; - child.Properties.Add("childIndex", count); - duplicates[child.FullName] = count; - } - else - { - duplicates.Add(child.FullName, 1); - } - ParseForNameDuplicates(child); - } - } - - public static int GetChildIndex(this ITest test) - { - var index = test.Properties["childIndex"]; - return (int)index[0]; - } - - public static bool HasChildIndex(this ITest test) - { - var index = test.Properties["childIndex"]; - return index.Count > 0; - } - - static string GetAncestorPath(ITest test) - { - var path = ""; - var testParent = test.Parent; - - while (testParent != null && testParent.Parent != null && !string.IsNullOrEmpty(testParent.Name)) - { - path = testParent.Name + "/" + path; - testParent = testParent.Parent; - } - - return path; - } - - public static string GetUniqueName(this ITest test) - { - var id = GetAncestorPath(test) + GetFullName(test); - if (test.HasChildIndex()) - { - var index = test.GetChildIndex(); - if (index >= 0) - id += index; - } - if (test.IsSuite) - { - id += "[suite]"; - } - return id; - } - - public static string GetFullName(ITest test) - { - if (test.TypeInfo == null && (test.Parent == null || test.Parent.TypeInfo == null)) - { - return "[" + test.FullName + "]"; - } - var assemblyId = test.TypeInfo == null ? test.Parent.TypeInfo.Assembly.GetName().Name : test.TypeInfo.Assembly.GetName().Name; - return string.Format("[{0}][{1}]", assemblyId, test.FullName); - } - - public static string GetSkipReason(this ITest test) - { - if (test.Properties.ContainsKey(PropertyNames.SkipReason)) - return (string)test.Properties.Get(PropertyNames.SkipReason); - - return null; - } - - public static string GetParentId(this ITest test) - { - if (test.Parent != null) - return test.Parent.Id; - - return null; - } - - public static string GetParentUniqueName(this ITest test) - { - if (test.Parent != null) - return GetUniqueName(test.Parent); - - return null; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/TestExtensions.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/TestExtensions.cs.meta deleted file mode 100644 index 3230eb446..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/TestExtensions.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 8bc74398aa3944646ade4ee78cd57484 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/TestResultExtensions.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/TestResultExtensions.cs deleted file mode 100644 index d79072b0d..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/TestResultExtensions.cs +++ /dev/null @@ -1,77 +0,0 @@ -using System; -using NUnit.Framework; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; - -namespace UnityEngine.TestRunner.NUnitExtensions -{ - internal static class TestResultExtensions - { - public static void RecordPrefixedException(this TestResult testResult, string prefix, Exception ex, ResultState resultState = null) - - { - if (ex is NUnitException) - { - ex = ex.InnerException; - } - - if (resultState == null) - { - resultState = testResult.ResultState == ResultState.Cancelled - ? ResultState.Cancelled - : ResultState.Error; - } - - var exceptionMessage = ExceptionHelper.BuildMessage(ex); - string stackTrace = "--" + prefix + NUnit.Env.NewLine + ExceptionHelper.BuildStackTrace(ex); - if (testResult.StackTrace != null) - { - stackTrace = testResult.StackTrace + NUnit.Env.NewLine + stackTrace; - } - - if (testResult.Test.IsSuite) - { - resultState = resultState.WithSite(FailureSite.TearDown); - } - - if (ex is ResultStateException) - { - exceptionMessage = ex.Message; - resultState = ((ResultStateException)ex).ResultState; - stackTrace = StackFilter.Filter(ex.StackTrace); - } - - string message = (string.IsNullOrEmpty(prefix) ? "" : (prefix + " : ")) + exceptionMessage; - if (testResult.Message != null) - { - message = testResult.Message + NUnit.Env.NewLine + message; - } - - testResult.SetResult(resultState, message, stackTrace); - } - - public static void RecordPrefixedError(this TestResult testResult, string prefix, string error, ResultState resultState = null) - - { - if (resultState == null) - { - resultState = testResult.ResultState == ResultState.Cancelled - ? ResultState.Cancelled - : ResultState.Error; - } - - if (testResult.Test.IsSuite) - { - resultState = resultState.WithSite(FailureSite.TearDown); - } - - string message = (string.IsNullOrEmpty(prefix) ? "" : (prefix + " : ")) + error; - if (testResult.Message != null) - { - message = testResult.Message + NUnit.Env.NewLine + message; - } - - testResult.SetResult(resultState, message); - } - } -} \ No newline at end of file diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/TestResultExtensions.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/TestResultExtensions.cs.meta deleted file mode 100644 index ff97b17ba..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/TestResultExtensions.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 65fb6da362a78334ab360a125cfafdaf -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/UnityTestAssemblyBuilder.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/UnityTestAssemblyBuilder.cs deleted file mode 100644 index f16a9f384..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/UnityTestAssemblyBuilder.cs +++ /dev/null @@ -1,52 +0,0 @@ -using System.Collections.Generic; -using System.IO; -using System.Reflection; -using NUnit; -using NUnit.Framework.Api; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; - -namespace UnityEngine.TestTools.NUnitExtensions -{ - internal class UnityTestAssemblyBuilder : DefaultTestAssemblyBuilder - { - private readonly string m_ProductName; - public UnityTestAssemblyBuilder() - { - m_ProductName = Application.productName; - } - - public ITest Build(Assembly[] assemblies, IDictionary options) - { - var test = BuildAsync(assemblies, options); - while (test.MoveNext()) - { - } - - return test.Current; - } - - public IEnumerator BuildAsync(Assembly[] assemblies, IDictionary options) - { - var productName = string.Join("_", m_ProductName.Split(Path.GetInvalidFileNameChars())); - var suite = new TestSuite(productName); - foreach (var assembly in assemblies) - { - var assemblySuite = Build(assembly, options) as TestSuite; - if (assemblySuite != null && assemblySuite.HasChildren) - { - suite.Add(assemblySuite); - } - yield return null; - } - yield return suite; - } - - public static Dictionary GetNUnitTestBuilderSettings(TestPlatform testPlatform) - { - var emptySettings = new Dictionary(); - emptySettings.Add(FrameworkPackageSettings.TestParameters, "platform=" + testPlatform); - return emptySettings; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/UnityTestAssemblyBuilder.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/UnityTestAssemblyBuilder.cs.meta deleted file mode 100644 index f0fdf1715..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/NUnitExtensions/UnityTestAssemblyBuilder.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 98ba0396e4b4ee8498a8f097affcfddf -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner.meta deleted file mode 100644 index e44f87949..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1ddb9e1c877ea80479d1eab4ddaa5d0d -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks.meta deleted file mode 100644 index 899ce7924..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 61e236e8570a95e4eb754fb291e102e0 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks/PlayModeRunnerCallback.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks/PlayModeRunnerCallback.cs deleted file mode 100644 index d7926873e..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks/PlayModeRunnerCallback.cs +++ /dev/null @@ -1,47 +0,0 @@ -using NUnit.Framework; -using NUnit.Framework.Interfaces; - -namespace UnityEngine.TestTools.TestRunner.Callbacks -{ - [AddComponentMenu("")] - internal class PlayModeRunnerCallback : MonoBehaviour, ITestRunnerListener - { - private TestResultRenderer m_ResultRenderer; - - public void RunFinished(ITestResult testResults) - { - Application.logMessageReceivedThreaded -= LogRecieved; - if (Camera.main == null) - { - gameObject.AddComponent(); - } - m_ResultRenderer = new TestResultRenderer(testResults); - m_ResultRenderer.ShowResults(); - } - - public void TestFinished(ITestResult result) - { - } - - public void OnGUI() - { - if (m_ResultRenderer != null) - m_ResultRenderer.Draw(); - } - - public void RunStarted(ITest testsToRun) - { - Application.logMessageReceivedThreaded += LogRecieved; - } - - public void TestStarted(ITest test) - { - } - - private void LogRecieved(string message, string stacktrace, LogType type) - { - if (TestContext.Out != null) - TestContext.Out.WriteLine(message); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks/PlayModeRunnerCallback.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks/PlayModeRunnerCallback.cs.meta deleted file mode 100644 index 15706d584..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks/PlayModeRunnerCallback.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 3cf5cb9e1ef590c48b1f919f2a7bd895 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks/RemoteTestResultSender.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks/RemoteTestResultSender.cs deleted file mode 100644 index 20928504a..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks/RemoteTestResultSender.cs +++ /dev/null @@ -1,130 +0,0 @@ -using System; -using System.Collections; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using NUnit.Framework.Interfaces; -using UnityEngine.Networking.PlayerConnection; -using UnityEngine.TestRunner.TestLaunchers; - -namespace UnityEngine.TestTools.TestRunner.Callbacks -{ - [AddComponentMenu("")] - internal class RemoteTestResultSender : MonoBehaviour, ITestRunnerListener - { - private class QueueData - { - public Guid id { get; set; } - public byte[] data { get; set; } - } - - private readonly Queue m_SendQueue = new Queue(); - private readonly object m_LockQueue = new object(); - private readonly IRemoteTestResultDataFactory m_TestResultDataFactory = new RemoteTestResultDataFactory(); - - public void Start() - { - PlayerConnection.instance.Register(PlayerConnectionMessageIds.runFinishedMessageId, EditorProccessedTheResult); - StartCoroutine(SendDataRoutine()); - } - - private void EditorProccessedTheResult(MessageEventArgs arg0) - { - if (arg0.data != null) - { - return; - } - - //Some platforms don't quit, so we need to disconnect to make sure they will not connect to another editor instance automatically. - PlayerConnection.instance.DisconnectAll(); - - //XBOX has an error when quitting - if (Application.platform == RuntimePlatform.XboxOne) - { - return; - } - Application.Quit(); - } - - private byte[] SerializeObject(object objectToSerialize) - { - return Encoding.UTF8.GetBytes(JsonUtility.ToJson(objectToSerialize)); - } - - public void RunStarted(ITest testsToRun) - { - var data = SerializeObject(m_TestResultDataFactory.CreateFromTest(testsToRun)); - lock (m_LockQueue) - { - m_SendQueue.Enqueue(new QueueData - { - id = PlayerConnectionMessageIds.runStartedMessageId, - data = data - }); - } - } - - public void RunFinished(ITestResult testResults) - { - var data = SerializeObject(m_TestResultDataFactory.CreateFromTestResult(testResults)); - lock (m_LockQueue) - { - m_SendQueue.Enqueue(new QueueData { id = PlayerConnectionMessageIds.runFinishedMessageId, data = data, }); - } - } - - public void TestStarted(ITest test) - { - var data = SerializeObject(m_TestResultDataFactory.CreateFromTest(test)); - lock (m_LockQueue) - { - m_SendQueue.Enqueue(new QueueData - { - id = PlayerConnectionMessageIds.testStartedMessageId, - data = data - }); - } - } - - public void TestFinished(ITestResult result) - { - var testRunnerResultForApi = m_TestResultDataFactory.CreateFromTestResult(result); - var resultData = SerializeObject(testRunnerResultForApi); - lock (m_LockQueue) - { - m_SendQueue.Enqueue(new QueueData - { - id = PlayerConnectionMessageIds.testFinishedMessageId, - data = resultData, - }); - } - } - - public IEnumerator SendDataRoutine() - { - while (!PlayerConnection.instance.isConnected) - { - yield return new WaitForSeconds(1); - } - - while (true) - { - lock (m_LockQueue) - { - if (PlayerConnection.instance.isConnected && m_SendQueue.Count > 0) - { - var queueData = m_SendQueue.Dequeue(); - PlayerConnection.instance.Send(queueData.id, queueData.data); - yield return null; - } - - //This is needed so we dont stall the player totally - if (!m_SendQueue.Any()) - { - yield return new WaitForSeconds(0.02f); - } - } - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks/RemoteTestResultSender.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks/RemoteTestResultSender.cs.meta deleted file mode 100644 index cbb4d4063..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks/RemoteTestResultSender.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 20793418366caf14293b29c55df5e9ec -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRenderer.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRenderer.cs deleted file mode 100644 index 280c6c435..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRenderer.cs +++ /dev/null @@ -1,97 +0,0 @@ -using System.Collections.Generic; -using System.Linq; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; - -namespace UnityEngine.TestTools.TestRunner.Callbacks -{ - internal class TestResultRenderer - { - private static class Styles - { - public static readonly GUIStyle SucceedLabelStyle; - public static readonly GUIStyle FailedLabelStyle; - public static readonly GUIStyle FailedMessagesStyle; - - static Styles() - { - SucceedLabelStyle = new GUIStyle("label"); - SucceedLabelStyle.normal.textColor = Color.green; - SucceedLabelStyle.fontSize = 48; - - FailedLabelStyle = new GUIStyle("label"); - FailedLabelStyle.normal.textColor = Color.red; - FailedLabelStyle.fontSize = 32; - - FailedMessagesStyle = new GUIStyle("label"); - FailedMessagesStyle.wordWrap = false; - FailedMessagesStyle.richText = true; - } - } - - private readonly List m_FailedTestCollection; - - private bool m_ShowResults; - private Vector2 m_ScrollPosition; - - public TestResultRenderer(ITestResult testResults) - { - m_FailedTestCollection = new List(); - GetFailedTests(testResults); - } - - private void GetFailedTests(ITestResult testResults) - { - if (testResults is TestCaseResult) - { - if (testResults.ResultState.Status == TestStatus.Failed) - m_FailedTestCollection.Add(testResults); - } - else if (testResults.HasChildren) - { - foreach (var testResultsChild in testResults.Children) - { - GetFailedTests(testResultsChild); - } - } - } - - private const int k_MaxStringLength = 15000; - - public void ShowResults() - { - m_ShowResults = true; - Cursor.visible = true; - } - - public void Draw() - { - if (!m_ShowResults) return; - if (m_FailedTestCollection.Count == 0) - { - GUILayout.Label("All test succeeded", Styles.SucceedLabelStyle, GUILayout.Width(600)); - } - else - { - int count = m_FailedTestCollection.Count; - GUILayout.Label(count + " tests failed!", Styles.FailedLabelStyle); - - m_ScrollPosition = GUILayout.BeginScrollView(m_ScrollPosition, GUILayout.ExpandWidth(true)); - var text = ""; - - text += "Code-based tests\n"; - text += string.Join("\n", m_FailedTestCollection - .Select(result => result.Name + " " + result.ResultState + "\n" + result.Message) - .ToArray()); - - if (text.Length > k_MaxStringLength) - text = text.Substring(0, k_MaxStringLength); - - GUILayout.TextArea(text, Styles.FailedMessagesStyle); - GUILayout.EndScrollView(); - } - if (GUILayout.Button("Close")) - Application.Quit(); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRenderer.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRenderer.cs.meta deleted file mode 100644 index 02cca2050..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRenderer.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 5ebb87899ca30b743bb4274bc00c02b4 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRendererCallback.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRendererCallback.cs deleted file mode 100644 index b5d23f7f0..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRendererCallback.cs +++ /dev/null @@ -1,36 +0,0 @@ -using NUnit.Framework.Interfaces; - -namespace UnityEngine.TestTools.TestRunner.Callbacks -{ - internal class TestResultRendererCallback : MonoBehaviour, ITestRunnerListener - { - private TestResultRenderer m_ResultRenderer; - public void RunStarted(ITest testsToRun) - { - } - - public void RunFinished(ITestResult testResults) - { - if (Camera.main == null) - { - gameObject.AddComponent(); - } - m_ResultRenderer = new TestResultRenderer(testResults); - m_ResultRenderer.ShowResults(); - } - - public void OnGUI() - { - if (m_ResultRenderer != null) - m_ResultRenderer.Draw(); - } - - public void TestStarted(ITest test) - { - } - - public void TestFinished(ITestResult result) - { - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRendererCallback.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRendererCallback.cs.meta deleted file mode 100644 index deaa0ae62..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRendererCallback.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: dfc336f10b83bd74eaded16a658275c7 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/ITestRunnerListener.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/ITestRunnerListener.cs deleted file mode 100644 index 6a2fa5b28..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/ITestRunnerListener.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System; -using NUnit.Framework.Interfaces; -using UnityEngine.Events; - -namespace UnityEngine.TestTools.TestRunner -{ - internal interface ITestRunnerListener - { - void RunStarted(ITest testsToRun); - void RunFinished(ITestResult testResults); - void TestStarted(ITest test); - void TestFinished(ITestResult result); - } - - [Serializable] - internal class TestFinishedEvent : UnityEvent {} - - [Serializable] - internal class TestStartedEvent : UnityEvent {} - - [Serializable] - internal class RunFinishedEvent : UnityEvent {} - - [Serializable] - internal class RunStartedEvent : UnityEvent {} -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/ITestRunnerListener.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/ITestRunnerListener.cs.meta deleted file mode 100644 index 848ab3d91..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/ITestRunnerListener.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: d1b534518943030499685344fd1d476d -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Messages.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Messages.meta deleted file mode 100644 index 5ab167cca..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Messages.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 256a0ca37fa972840bce7fca446e75e7 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Messages/IEditModeTestYieldInstruction.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Messages/IEditModeTestYieldInstruction.cs deleted file mode 100644 index df7acb231..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Messages/IEditModeTestYieldInstruction.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System.Collections; - -namespace UnityEngine.TestTools -{ - public interface IEditModeTestYieldInstruction - { - bool ExpectDomainReload { get; } - bool ExpectedPlaymodeState { get; } - - IEnumerator Perform(); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Messages/IEditModeTestYieldInstruction.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Messages/IEditModeTestYieldInstruction.cs.meta deleted file mode 100644 index f61c35ae6..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/Messages/IEditModeTestYieldInstruction.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 898bc38486fc899428fbe5bd6adfe473 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/PlaymodeTestsController.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/PlaymodeTestsController.cs deleted file mode 100644 index 3efa3d3fc..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/PlaymodeTestsController.cs +++ /dev/null @@ -1,129 +0,0 @@ -using System; -using System.Collections; -using System.Collections.Generic; -using System.Linq; -using UnityEngine.SceneManagement; -using UnityEngine.TestRunner.NUnitExtensions; -using UnityEngine.TestRunner.NUnitExtensions.Runner; -using UnityEngine.TestTools.NUnitExtensions; -using UnityEngine.TestTools.Utils; - -namespace UnityEngine.TestTools.TestRunner -{ - [Serializable] - [AddComponentMenu("")] - internal class PlaymodeTestsController : MonoBehaviour - { - private IEnumerator m_TestSteps; - - [SerializeField] - private List m_AssembliesWithTests; - public List AssembliesWithTests - { - get - { - return m_AssembliesWithTests; - } - set - { - m_AssembliesWithTests = value; - } - } - - [SerializeField] - internal TestStartedEvent testStartedEvent = new TestStartedEvent(); - [SerializeField] - internal TestFinishedEvent testFinishedEvent = new TestFinishedEvent(); - [SerializeField] - internal RunStartedEvent runStartedEvent = new RunStartedEvent(); - [SerializeField] - internal RunFinishedEvent runFinishedEvent = new RunFinishedEvent(); - - internal const string kPlaymodeTestControllerName = "Code-based tests runner"; - - [SerializeField] - public PlaymodeTestsControllerSettings settings = new PlaymodeTestsControllerSettings(); - - internal UnityTestAssemblyRunner m_Runner; - - public IEnumerator Start() - { - //Skip 2 frame because Unity. - yield return null; - yield return null; - StartCoroutine(Run()); - } - - internal static bool IsControllerOnScene() - { - return GameObject.Find(kPlaymodeTestControllerName) != null; - } - - internal static PlaymodeTestsController GetController() - { - return GameObject.Find(kPlaymodeTestControllerName).GetComponent(); - } - - public IEnumerator TestRunnerCorotine() - { - while (m_TestSteps.MoveNext()) - { - yield return m_TestSteps.Current; - } - - if (m_Runner.IsTestComplete) - { - runFinishedEvent.Invoke(m_Runner.Result); - Cleanup(); - - yield return null; - } - } - - public IEnumerator Run() - { - CoroutineTestWorkItem.monoBehaviourCoroutineRunner = this; - gameObject.hideFlags |= HideFlags.DontSave; - - if (settings.sceneBased) - { - SceneManager.LoadScene(1, LoadSceneMode.Additive); - yield return null; - } - - var testListUtil = new PlayerTestAssemblyProvider(new AssemblyLoadProxy(), m_AssembliesWithTests); - m_Runner = new UnityTestAssemblyRunner(new UnityTestAssemblyBuilder(), new PlaymodeWorkItemFactory()); - - var loadedTests = m_Runner.Load(testListUtil.GetUserAssemblies().Select(a => a.Assembly).ToArray(), UnityTestAssemblyBuilder.GetNUnitTestBuilderSettings(TestPlatform.PlayMode)); - loadedTests.ParseForNameDuplicates(); - runStartedEvent.Invoke(m_Runner.LoadedTest); - - var testListenerWrapper = new TestListenerWrapper(testStartedEvent, testFinishedEvent); - m_TestSteps = m_Runner.Run(testListenerWrapper, settings.filter.BuildNUnitFilter()).GetEnumerator(); - - yield return TestRunnerCorotine(); - } - - public void Cleanup() - { - if (m_Runner != null) - { - m_Runner.StopRun(); - m_Runner = null; - } - if (Application.isEditor) - { - Destroy(gameObject); - } - } - - public static void TryCleanup() - { - var controller = GetController(); - if (controller != null) - { - controller.Cleanup(); - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/PlaymodeTestsController.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/PlaymodeTestsController.cs.meta deleted file mode 100644 index 969377835..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/PlaymodeTestsController.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 102e512f651ee834f951a2516c1ea3b8 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/PlaymodeTestsControllerSettings.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/PlaymodeTestsControllerSettings.cs deleted file mode 100644 index f52b3b870..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/PlaymodeTestsControllerSettings.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System; -using UnityEngine.SceneManagement; -using UnityEngine.TestTools.TestRunner.GUI; - -namespace UnityEngine.TestTools.TestRunner -{ - [Serializable] - internal class PlaymodeTestsControllerSettings - { - [SerializeField] - public TestRunnerFilter filter; - public bool sceneBased; - public string originalScene; - public string bootstrapScene; - - public static PlaymodeTestsControllerSettings CreateRunnerSettings(TestRunnerFilter filter) - { - var settings = new PlaymodeTestsControllerSettings - { - filter = filter, - sceneBased = false, - originalScene = SceneManager.GetActiveScene().path, - bootstrapScene = null - }; - return settings; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/PlaymodeTestsControllerSettings.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/PlaymodeTestsControllerSettings.cs.meta deleted file mode 100644 index 06448a7fa..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/PlaymodeTestsControllerSettings.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 2799eb4c84e72e54092a292cf626936b -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers.meta deleted file mode 100644 index d23c0a71f..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 91c20d2c22b8b3a4cb6c816bd225591a -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/IRemoteTestResultDataFactory.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/IRemoteTestResultDataFactory.cs deleted file mode 100644 index fffba2988..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/IRemoteTestResultDataFactory.cs +++ /dev/null @@ -1,11 +0,0 @@ -using System; -using NUnit.Framework.Interfaces; - -namespace UnityEngine.TestRunner.TestLaunchers -{ - internal interface IRemoteTestResultDataFactory - { - RemoteTestResultDataWithTestData CreateFromTestResult(ITestResult result); - RemoteTestResultDataWithTestData CreateFromTest(ITest test); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/IRemoteTestResultDataFactory.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/IRemoteTestResultDataFactory.cs.meta deleted file mode 100644 index 3bc8e30fe..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/IRemoteTestResultDataFactory.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 874c0713cdc44f549b0161750b48d2c2 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/PlayerConnectionMessageIds.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/PlayerConnectionMessageIds.cs deleted file mode 100644 index 3dbfdb4a8..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/PlayerConnectionMessageIds.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System; - -namespace UnityEngine.TestRunner.TestLaunchers -{ - internal static class PlayerConnectionMessageIds - { - public static Guid runStartedMessageId { get { return new Guid("6a7f53dd-4672-461d-a7b5-9467e9393fd3"); } } - public static Guid runFinishedMessageId { get { return new Guid("ffb622fc-34ad-4901-8d7b-47fb04b0bdd4"); } } - public static Guid testStartedMessageId { get { return new Guid("b54d241e-d88d-4dba-8c8f-ee415d11c030"); } } - public static Guid testFinishedMessageId { get { return new Guid("72f7b7f4-6829-4cd1-afde-78872b9d5adc"); } } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/PlayerConnectionMessageIds.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/PlayerConnectionMessageIds.cs.meta deleted file mode 100644 index bf86f7ec0..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/PlayerConnectionMessageIds.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 41d60936b62cc6d4ca7fe628b22b0e40 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestData.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestData.cs deleted file mode 100644 index b2cf24ed6..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestData.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System; -using System.Linq; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; -using UnityEngine.TestRunner.NUnitExtensions; - -namespace UnityEngine.TestRunner.TestLaunchers -{ - [Serializable] - internal class RemoteTestData - { - public string id; - public string name; - public string fullName; - public int testCaseCount; - public int ChildIndex; - public bool hasChildren; - public bool isSuite; - public string[] childrenIds; - public int testCaseTimeout; - public string[] Categories; - public bool IsTestAssembly; - public RunState RunState; - public string Description; - public string SkipReason; - public string ParentId; - public string UniqueName; - public string ParentUniqueName; - - internal RemoteTestData(ITest test) - { - id = test.Id; - name = test.Name; - fullName = test.FullName; - testCaseCount = test.TestCaseCount; - ChildIndex = -1; - if (test.Properties["childIndex"].Count > 0) - { - ChildIndex = (int)test.Properties["childIndex"][0]; - } - hasChildren = test.HasChildren; - isSuite = test.IsSuite; - childrenIds = test.Tests.Select(t => t.Id).ToArray(); - Categories = test.GetAllCategoriesFromTest().ToArray(); - IsTestAssembly = test is TestAssembly; - RunState = (RunState)Enum.Parse(typeof(RunState), test.RunState.ToString()); - Description = (string)test.Properties.Get(PropertyNames.Description); - SkipReason = test.GetSkipReason(); - ParentId = test.GetParentId(); - UniqueName = test.GetUniqueName(); - ParentUniqueName = test.GetParentUniqueName(); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestData.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestData.cs.meta deleted file mode 100644 index 0c286dcde..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestData.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: b135ec222fdcd11468014c90d11d6821 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultData.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultData.cs deleted file mode 100644 index 90f82a42c..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultData.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using NUnit.Framework.Interfaces; - -namespace UnityEngine.TestRunner.TestLaunchers -{ - [Serializable] - internal class RemoteTestResultData - { - public string testId; - public string name; - public string fullName; - public string resultState; - public TestStatus testStatus; - public double duration; - public DateTime startTime; - public DateTime endTime; - public string message; - public string stackTrace; - public int assertCount; - public int failCount; - public int passCount; - public int skipCount; - public int inconclusiveCount; - public bool hasChildren; - public string output; - public string xml; - public string[] childrenIds; - - internal RemoteTestResultData(ITestResult result) - { - testId = result.Test.Id; - name = result.Name; - fullName = result.FullName; - resultState = result.ResultState.ToString(); - testStatus = result.ResultState.Status; - duration = result.Duration; - startTime = result.StartTime; - endTime = result.EndTime; - message = result.Message; - stackTrace = result.StackTrace; - assertCount = result.AssertCount; - failCount = result.FailCount; - passCount = result.PassCount; - skipCount = result.SkipCount; - inconclusiveCount = result.InconclusiveCount; - hasChildren = result.HasChildren; - output = result.Output; - xml = result.ToXml(true).OuterXml; - childrenIds = result.Children.Select(child => child.Test.Id).ToArray(); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultData.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultData.cs.meta deleted file mode 100644 index a213e6be1..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultData.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 03e4d63665d06f04c8a6cf68133c1592 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataFactory.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataFactory.cs deleted file mode 100644 index 0b3cd035b..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataFactory.cs +++ /dev/null @@ -1,51 +0,0 @@ -using System.Collections.Generic; -using System.Linq; -using NUnit.Framework.Interfaces; -using UnityEngine.TestRunner.NUnitExtensions.Runner; - -namespace UnityEngine.TestRunner.TestLaunchers -{ - internal class RemoteTestResultDataFactory : IRemoteTestResultDataFactory - { - public RemoteTestResultDataWithTestData CreateFromTestResult(ITestResult result) - { - var tests = CreateTestDataList(result.Test); - tests.First().testCaseTimeout = UnityTestExecutionContext.CurrentContext.TestCaseTimeout; - return new RemoteTestResultDataWithTestData() - { - results = CreateTestResultDataList(result), - tests = tests - }; - } - - public RemoteTestResultDataWithTestData CreateFromTest(ITest test) - { - var tests = CreateTestDataList(test); - if (UnityTestExecutionContext.CurrentContext != null) - { - tests.First().testCaseTimeout = UnityTestExecutionContext.CurrentContext.TestCaseTimeout; - } - - return new RemoteTestResultDataWithTestData() - { - tests = tests - }; - } - - private RemoteTestData[] CreateTestDataList(ITest test) - { - var list = new List(); - list.Add(new RemoteTestData(test)); - list.AddRange(test.Tests.SelectMany(CreateTestDataList)); - return list.ToArray(); - } - - private static RemoteTestResultData[] CreateTestResultDataList(ITestResult result) - { - var list = new List(); - list.Add(new RemoteTestResultData(result)); - list.AddRange(result.Children.SelectMany(CreateTestResultDataList)); - return list.ToArray(); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataFactory.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataFactory.cs.meta deleted file mode 100644 index bc0dd7c97..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataFactory.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 826b6becaef90fb458eedebe4c2f3664 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataWithTestData.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataWithTestData.cs deleted file mode 100644 index 36124cc78..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataWithTestData.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using NUnit.Framework.Interfaces; -using UnityEngine.TestRunner.NUnitExtensions.Runner; - -namespace UnityEngine.TestRunner.TestLaunchers -{ - [Serializable] - internal class RemoteTestResultDataWithTestData - { - public RemoteTestResultData[] results; - public RemoteTestData[] tests; - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataWithTestData.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataWithTestData.cs.meta deleted file mode 100644 index ffab8f68b..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataWithTestData.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 475e3699f219c854f8581a9838135002 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/TestEnumeratorWrapper.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/TestEnumeratorWrapper.cs deleted file mode 100644 index 5ed2ec848..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/TestEnumeratorWrapper.cs +++ /dev/null @@ -1,51 +0,0 @@ -using System; -using System.Collections; -using System.Reflection; -using NUnit.Framework; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; - -namespace UnityEngine.TestTools.TestRunner -{ - internal class TestEnumeratorWrapper - { - private readonly TestMethod m_TestMethod; - - public TestEnumeratorWrapper(TestMethod testMethod) - { - m_TestMethod = testMethod; - } - - public IEnumerator GetEnumerator(ITestExecutionContext context) - { - if (m_TestMethod.Method.ReturnType.Type == typeof(IEnumerator)) - { - return HandleEnumerableTest(context); - } - var message = string.Format("Return type {0} of {1} in {2} is not supported.", - m_TestMethod.Method.ReturnType, m_TestMethod.Method.Name, m_TestMethod.Method.TypeInfo.FullName); - if (m_TestMethod.Method.ReturnType.Type == typeof(IEnumerable)) - { - message += "\nDid you mean IEnumerator?"; - } - throw new InvalidSignatureException(message); - } - - private IEnumerator HandleEnumerableTest(ITestExecutionContext context) - { - try - { - return m_TestMethod.Method.MethodInfo.Invoke(context.TestObject, m_TestMethod.parms != null ? m_TestMethod.parms.OriginalArguments : null) as IEnumerator; - } - catch (TargetInvocationException e) - { - if (e.InnerException is IgnoreException) - { - context.CurrentResult.SetResult(ResultState.Ignored, e.InnerException.Message); - return null; - } - throw; - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/TestEnumeratorWrapper.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/TestEnumeratorWrapper.cs.meta deleted file mode 100644 index f19ee3e33..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/TestEnumeratorWrapper.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 9ad0b0c865b01af4ca1b414689e71259 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/TestListenerWrapper.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/TestListenerWrapper.cs deleted file mode 100644 index ffa23de5c..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/TestListenerWrapper.cs +++ /dev/null @@ -1,30 +0,0 @@ -using NUnit.Framework.Interfaces; - -namespace UnityEngine.TestTools.TestRunner -{ - internal class TestListenerWrapper : ITestListener - { - private readonly TestFinishedEvent m_TestFinishedEvent; - private readonly TestStartedEvent m_TestStartedEvent; - - public TestListenerWrapper(TestStartedEvent testStartedEvent, TestFinishedEvent testFinishedEvent) - { - m_TestStartedEvent = testStartedEvent; - m_TestFinishedEvent = testFinishedEvent; - } - - public void TestStarted(ITest test) - { - m_TestStartedEvent.Invoke(test); - } - - public void TestFinished(ITestResult result) - { - m_TestFinishedEvent.Invoke(result); - } - - public void TestOutput(TestOutput output) - { - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/TestListenerWrapper.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/TestListenerWrapper.cs.meta deleted file mode 100644 index aefe0393c..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/TestListenerWrapper.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 73deb9b8722aa284eab27c4dc90956c6 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/TestPlatform.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/TestPlatform.cs deleted file mode 100644 index 21a6ec2b1..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/TestPlatform.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; - -namespace UnityEngine.TestTools -{ - [Flags] - [Serializable] - public enum TestPlatform : byte - { - All = 0xFF, - EditMode = 1 << 1, - PlayMode = 1 << 2 - } - - internal static class TestPlatformEnumExtensions - { - public static bool IsFlagIncluded(this TestPlatform flags, TestPlatform flag) - { - return (flags & flag) == flag; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/TestPlatform.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/TestPlatform.cs.meta deleted file mode 100644 index 6eb087a78..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/TestPlatform.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 743879b4db4bc1a4b829aae4386f4acf -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/TestRunnerFilter.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/TestRunnerFilter.cs deleted file mode 100644 index b0bd46147..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/TestRunnerFilter.cs +++ /dev/null @@ -1,197 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text.RegularExpressions; -using System.IO; -using NUnit.Framework.Interfaces; -using NUnit.Framework.Internal; -using NUnit.Framework.Internal.Filters; -using UnityEngine.TestRunner.NUnitExtensions.Filters; - -namespace UnityEngine.TestTools.TestRunner.GUI -{ - [Serializable] - internal class TestRunnerFilter - { -#pragma warning disable 649 - public string[] assemblyNames; - public string[] groupNames; - public string[] categoryNames; - public static TestRunnerFilter empty = new TestRunnerFilter(); - public string[] testNames; - public int testRepetitions = 1; - - public static string AssemblyNameFromPath(string path) - { - string output = Path.GetFileName(path); - if (output != null && output.EndsWith(".dll", StringComparison.OrdinalIgnoreCase)) - return output.Substring(0, output.Length - 4); - return output; - } - - private bool CategoryMatches(IEnumerable categories) - { - if (categoryNames == null || categoryNames.Length == 0) - return true; - - foreach (string category in categories) - { - if (categoryNames.Contains(category)) - return true; - } - - return false; - } - - private bool IDMatchesAssembly(string id) - { - if (AreOptionalFiltersEmpty()) - return true; - - if (assemblyNames == null) - return false; - - int openingBracket = id.IndexOf('['); - int closingBracket = id.IndexOf(']'); - if (openingBracket >= 0 && openingBracket < id.Length && closingBracket > openingBracket && openingBracket < id.Length) - { - //Some assemblies are absolute and explicitly part of the test ID e.g. - //"[/path/to/assembly-name.dll][rest of ID ...]" - //While some are minimal assembly names e.g. - //"[assembly-name][rest of ID ...]" - //Strip them down to just the assembly name - string assemblyNameFromID = AssemblyNameFromPath(id.Substring(openingBracket + 1, closingBracket - openingBracket - 1)); - foreach (string assemblyName in assemblyNames) - { - if (assemblyName.Equals(assemblyNameFromID, StringComparison.OrdinalIgnoreCase)) - return true; - } - } - return false; - } - - private bool NameMatches(string name) - { - if (AreOptionalFiltersEmpty()) - return true; - - if (groupNames == null) - return false; - - foreach (var nameFromFilter in groupNames) - { - //Strict regex match for test group name on its own - if (Regex.IsMatch(name, nameFromFilter)) - return true; - //Match test names that end with parametrized test values and full nunit generated test names that have . separators - var regex = nameFromFilter.TrimEnd('$') + @"[\.|\(.*\)]"; - if (Regex.IsMatch(name, regex)) - return true; - } - return false; - } - - private bool AreOptionalFiltersEmpty() - { - if (assemblyNames != null && assemblyNames.Length != 0) - return false; - if (groupNames != null && groupNames.Length != 0) - return false; - if (testNames != null && testNames.Length != 0) - return false; - return true; - } - - private bool NameMatchesExactly(string name) - { - if (AreOptionalFiltersEmpty()) - return true; - - if (testNames == null) - return false; - - foreach (var exactName in testNames) - { - if (name == exactName) - return true; - } - return false; - } - - private static void ClearAncestors(IEnumerable newResultList, string parentID) - { - if (string.IsNullOrEmpty(parentID)) - return; - foreach (var result in newResultList) - { - if (result.Id == parentID) - { - result.Clear(); - ClearAncestors(newResultList, result.ParentId); - break; - } - } - } - - public void ClearResults(List newResultList) - { - foreach (var result in newResultList) - { - if (!result.IsSuite && CategoryMatches(result.Categories)) - { - if (IDMatchesAssembly(result.Id) || NameMatches(result.FullName) || NameMatchesExactly(result.FullName)) - { - result.Clear(); - ClearAncestors(newResultList, result.ParentId); - } - } - } - } - - public ITestFilter BuildNUnitFilter() - { - var filters = new List(); - - if (testNames != null && testNames.Length != 0) - { - var nameFilter = new OrFilter(testNames.Select(n => new FullNameFilter(n)).ToArray()); - filters.Add(nameFilter); - } - - if (groupNames != null && groupNames.Length != 0) - { - var exactNamesFilter = new OrFilter(groupNames.Select(n => - { - var f = new FullNameFilter(n); - f.IsRegex = true; - return f; - }).ToArray()); - filters.Add(exactNamesFilter); - } - - if (assemblyNames != null && assemblyNames.Length != 0) - { - var assemblyFilter = new OrFilter(assemblyNames.Select(c => new AssemblyNameFilter(c)).ToArray()); - filters.Add(assemblyFilter); - } - - if (categoryNames != null && categoryNames.Length != 0) - { - var categoryFilter = new OrFilter(categoryNames.Select(c => new CategoryFilterExtended(c) {IsRegex = true}).ToArray()); - filters.Add(categoryFilter); - } - - return filters.Count == 0 ? TestFilter.Empty : new AndFilter(filters.ToArray()); - } - - internal interface IClearableResult - { - string Id { get; } - string FullName { get; } - string ParentId { get; } - bool IsSuite { get; } - List Categories { get; } - void Clear(); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/TestRunnerFilter.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/TestRunnerFilter.cs.meta deleted file mode 100644 index 5f9aa3b6b..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/TestRunner/TestRunnerFilter.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: a025ba7ee40d0104db8d08b1d9eabb0d -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/UnityEngine.TestRunner.asmdef b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/UnityEngine.TestRunner.asmdef deleted file mode 100644 index 6dc17daa2..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/UnityEngine.TestRunner.asmdef +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "UnityEngine.TestRunner", - "references": [], - "includePlatforms": [], - "excludePlatforms": [], - "allowUnsafeCode": false, - "overrideReferences": true, - "precompiledReferences": [ - "nunit.framework.dll" - ], - "autoReferenced": false, - "defineConstraints": [] -} \ No newline at end of file diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/UnityEngine.TestRunner.asmdef.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/UnityEngine.TestRunner.asmdef.meta deleted file mode 100644 index a2002fd66..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/UnityEngine.TestRunner.asmdef.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 27619889b8ba8c24980f49ee34dbb44a -AssemblyDefinitionImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils.meta deleted file mode 100644 index d9503ad31..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: bb32bccaf32a6db448d1c0cc99c78688 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider.meta deleted file mode 100644 index a8326f066..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 51557afa652635743b264a309f0a5c60 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyLoadProxy.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyLoadProxy.cs deleted file mode 100644 index 9edc51715..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyLoadProxy.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System.Reflection; - -namespace UnityEngine.TestTools.Utils -{ - internal class AssemblyLoadProxy : IAssemblyLoadProxy - { - public IAssemblyWrapper Load(string assemblyString) - { - return new AssemblyWrapper(Assembly.Load(assemblyString)); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyLoadProxy.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyLoadProxy.cs.meta deleted file mode 100644 index 8bb527d95..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyLoadProxy.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: fb593906b7b6d824087dcaebf6c082e0 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyWrapper.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyWrapper.cs deleted file mode 100644 index cb46f1b63..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyWrapper.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Reflection; - -namespace UnityEngine.TestTools.Utils -{ - internal class AssemblyWrapper : IAssemblyWrapper - { - public AssemblyWrapper(Assembly assembly) - { - Assembly = assembly; - } - - public Assembly Assembly { get; } - - public virtual string Location - { - get - { - //Some platforms dont support this - throw new NotImplementedException(); - } - } - - public virtual AssemblyName[] GetReferencedAssemblies() - { - //Some platforms dont support this - throw new NotImplementedException(); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyWrapper.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyWrapper.cs.meta deleted file mode 100644 index 1e4a71847..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyWrapper.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 2e3b9bbf2c1a3cd4f88883ca32882ec6 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyLoadProxy.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyLoadProxy.cs deleted file mode 100644 index feffa62e8..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyLoadProxy.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace UnityEngine.TestTools.Utils -{ - internal interface IAssemblyLoadProxy - { - IAssemblyWrapper Load(string assemblyString); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyLoadProxy.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyLoadProxy.cs.meta deleted file mode 100644 index 284d33b0e..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyLoadProxy.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 12dfd4bdbb5c8e6419432fbc54ef25d9 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyWrapper.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyWrapper.cs deleted file mode 100644 index 145c682d3..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyWrapper.cs +++ /dev/null @@ -1,11 +0,0 @@ -using System.Reflection; - -namespace UnityEngine.TestTools.Utils -{ - internal interface IAssemblyWrapper - { - Assembly Assembly { get; } - string Location { get; } - AssemblyName[] GetReferencedAssemblies(); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyWrapper.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyWrapper.cs.meta deleted file mode 100644 index 486888d5f..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyWrapper.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 1c5afe945b715e149a70113a4be7b32a -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IScriptingRuntimeProxy.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IScriptingRuntimeProxy.cs deleted file mode 100644 index 0dc2b7f3d..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IScriptingRuntimeProxy.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace UnityEngine.TestTools.Utils -{ - internal interface IScriptingRuntimeProxy - { - string[] GetAllUserAssemblies(); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IScriptingRuntimeProxy.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IScriptingRuntimeProxy.cs.meta deleted file mode 100644 index 85ae9850d..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IScriptingRuntimeProxy.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: fe4aef60e4ace544c8430da8ef8acba2 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/ITestAssemblyProvider.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/ITestAssemblyProvider.cs deleted file mode 100644 index 74f27692f..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/ITestAssemblyProvider.cs +++ /dev/null @@ -1,10 +0,0 @@ -using NUnit.Framework.Interfaces; - -namespace UnityEngine.TestTools.Utils -{ - internal interface ITestAssemblyProvider - { - ITest GetTestsWithNUnit(); - IAssemblyWrapper[] GetUserAssemblies(); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/ITestAssemblyProvider.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/ITestAssemblyProvider.cs.meta deleted file mode 100644 index d7e856b7c..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/ITestAssemblyProvider.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: c5acba6181d845c4e92146009bd4480f -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/PlayerTestAssemblyProvider.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/PlayerTestAssemblyProvider.cs deleted file mode 100644 index 04cd11b15..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/PlayerTestAssemblyProvider.cs +++ /dev/null @@ -1,66 +0,0 @@ -using System.Collections.Generic; -using System.IO; -using System.Linq; -using NUnit.Framework.Interfaces; -using UnityEngine.TestTools.NUnitExtensions; - -namespace UnityEngine.TestTools.Utils -{ - internal class PlayerTestAssemblyProvider - { - private IAssemblyLoadProxy m_AssemblyLoadProxy; - private readonly List m_AssembliesToLoad; - - //Cached until domain reload - private static List m_LoadedAssemblies; - - internal PlayerTestAssemblyProvider(IAssemblyLoadProxy assemblyLoadProxy, List assembliesToLoad) - { - m_AssemblyLoadProxy = assemblyLoadProxy; - m_AssembliesToLoad = assembliesToLoad; - LoadAssemblies(); - } - - public ITest GetTestsWithNUnit() - { - return BuildTests(TestPlatform.PlayMode, m_LoadedAssemblies.ToArray()); - } - - public List GetUserAssemblies() - { - return m_LoadedAssemblies; - } - - protected static ITest BuildTests(TestPlatform testPlatform, IAssemblyWrapper[] assemblies) - { - var settings = UnityTestAssemblyBuilder.GetNUnitTestBuilderSettings(testPlatform); - var builder = new UnityTestAssemblyBuilder(); - return builder.Build(assemblies.Select(a => a.Assembly).ToArray(), settings); - } - - private void LoadAssemblies() - { - if (m_LoadedAssemblies != null) - { - return; - } - - m_LoadedAssemblies = new List(); - - foreach (var userAssembly in m_AssembliesToLoad) - { - IAssemblyWrapper a; - try - { - a = m_AssemblyLoadProxy.Load(userAssembly); - } - catch (FileNotFoundException) - { - continue; - } - if (a != null) - m_LoadedAssemblies.Add(a); - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/PlayerTestAssemblyProvider.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/PlayerTestAssemblyProvider.cs.meta deleted file mode 100644 index ffee12cfd..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/PlayerTestAssemblyProvider.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 43a3aec217baa9644a7cf34b5f93fed9 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/ScriptingRuntimeProxy.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/ScriptingRuntimeProxy.cs deleted file mode 100644 index 0f1eb2bc9..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/ScriptingRuntimeProxy.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace UnityEngine.TestTools.Utils -{ - internal class ScriptingRuntimeProxy : IScriptingRuntimeProxy - { - public string[] GetAllUserAssemblies() - { - return ScriptingRuntime.GetAllUserAssemblies(); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/ScriptingRuntimeProxy.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/ScriptingRuntimeProxy.cs.meta deleted file mode 100644 index 7b16cb9f6..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/ScriptingRuntimeProxy.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: f3a361a6ad1aff14ba8f48976e94ad76 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AttributeHelper.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AttributeHelper.cs deleted file mode 100644 index 7d710cb8b..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AttributeHelper.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; -using System.IO; -using System.Linq; - -namespace UnityEngine.TestTools -{ - internal static class AttributeHelper - { - internal static Type GetTargetClassFromName(string targetClassName, Type attributeInterface) - { - Type targetClass = null; - foreach (var assemblyName in ScriptingRuntime.GetAllUserAssemblies()) - { - // we need to pass the assembly name without the .dll extension, so removing that first - var name = Path.GetFileNameWithoutExtension(assemblyName); - targetClass = Type.GetType(targetClassName + "," + name); - if (targetClass != null) - break; - } - - if (targetClass == null) - { - Debug.LogWarningFormat("Class type not found: " + targetClassName); - return null; - } - - ValidateTargetClass(targetClass, attributeInterface); - return targetClass; - } - - private static void ValidateTargetClass(Type targetClass, Type attributeInterface) - { - var constructorInfos = targetClass.GetConstructors(); - if (constructorInfos.All(constructor => constructor.GetParameters().Length != 0)) - { - Debug.LogWarningFormat("{0} does not implement default constructor", targetClass.Name); - } - - if (!attributeInterface.IsAssignableFrom(targetClass)) - { - Debug.LogWarningFormat("{0} does not implement {1}", targetClass.Name, attributeInterface.Name); - } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AttributeHelper.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AttributeHelper.cs.meta deleted file mode 100644 index cc47e6f1d..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AttributeHelper.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: ae8ce3ffe04ac2c42945fd27e0291fc3 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/ColorEqualityComparer.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/ColorEqualityComparer.cs deleted file mode 100644 index 073aa086e..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/ColorEqualityComparer.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System.Collections.Generic; - -namespace UnityEngine.TestTools.Utils -{ - public class ColorEqualityComparer : IEqualityComparer - { - private const float k_DefaultError = 0.01f; - private readonly float AllowedError; - - - private static readonly ColorEqualityComparer m_Instance = new ColorEqualityComparer(); - public static ColorEqualityComparer Instance { get { return m_Instance; } } - - private ColorEqualityComparer() : this(k_DefaultError) - { - } - - public ColorEqualityComparer(float error) - { - this.AllowedError = error; - } - - public bool Equals(Color expected, Color actual) - { - return Utils.AreFloatsEqualAbsoluteError(expected.r, actual.r, AllowedError) && - Utils.AreFloatsEqualAbsoluteError(expected.g, actual.g, AllowedError) && - Utils.AreFloatsEqualAbsoluteError(expected.b, actual.b, AllowedError) && - Utils.AreFloatsEqualAbsoluteError(expected.a, actual.a, AllowedError); - } - - public int GetHashCode(Color color) - { - return 0; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/ColorEqualityComparer.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/ColorEqualityComparer.cs.meta deleted file mode 100644 index 42da0754f..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/ColorEqualityComparer.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: d6105bc8cf5ce544487daca4cbc62583 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/CoroutineRunner.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/CoroutineRunner.cs deleted file mode 100644 index db4d769e7..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/CoroutineRunner.cs +++ /dev/null @@ -1,103 +0,0 @@ -using System; -using System.Collections; -using NUnit.Framework.Internal; -using UnityEngine.TestRunner.NUnitExtensions.Runner; - -namespace UnityEngine.TestTools.Utils -{ - internal class CoroutineRunner - { - private bool m_Running; - private bool m_TestFailed; - private bool m_Timeout; - private readonly MonoBehaviour m_Controller; - private readonly UnityTestExecutionContext m_Context; - private Coroutine m_TimeOutCoroutine; - private IEnumerator m_TestCoroutine; - - internal const int k_DefaultTimeout = 1000 * 180; - - public CoroutineRunner(MonoBehaviour playmodeTestsController, UnityTestExecutionContext context) - { - m_Controller = playmodeTestsController; - m_Context = context; - } - - public IEnumerator HandleEnumerableTest(IEnumerator testEnumerator) - { - if (m_Context.TestCaseTimeout == 0) - { - m_Context.TestCaseTimeout = k_DefaultTimeout; - } - do - { - if (!m_Running) - { - m_Running = true; - m_TestCoroutine = ExMethod(testEnumerator, m_Context.TestCaseTimeout); - m_Controller.StartCoroutine(m_TestCoroutine); - } - if (m_TestFailed) - { - StopAllRunningCoroutines(); - yield break; - } - - if (m_Context.ExecutionStatus == TestExecutionStatus.StopRequested || m_Context.ExecutionStatus == TestExecutionStatus.AbortRequested) - { - StopAllRunningCoroutines(); - yield break; - } - yield return null; - } - while (m_Running); - } - - private void StopAllRunningCoroutines() - { - if (m_TimeOutCoroutine != null) - { - m_Controller.StopCoroutine(m_TimeOutCoroutine); - } - - if (m_TestCoroutine != null) - { - m_Controller.StopCoroutine(m_TestCoroutine); - } - } - - private IEnumerator ExMethod(IEnumerator e, int timeout) - { - m_TimeOutCoroutine = m_Controller.StartCoroutine(StartTimer(e, timeout, - () => - { - m_TestFailed = true; - m_Timeout = true; - m_Running = false; - })); - - yield return m_Controller.StartCoroutine(e); - m_Controller.StopCoroutine(m_TimeOutCoroutine); - m_Running = false; - } - - private IEnumerator StartTimer(IEnumerator coroutineToBeKilled, int timeout, Action onTimeout) - { - yield return new WaitForSecondsRealtime(timeout / 1000f); - if (coroutineToBeKilled != null) - m_Controller.StopCoroutine(coroutineToBeKilled); - if (onTimeout != null) - onTimeout(); - } - - public bool HasFailedWithTimeout() - { - return m_Timeout; - } - - public int GetDefaultTimeout() - { - return k_DefaultTimeout; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/CoroutineRunner.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/CoroutineRunner.cs.meta deleted file mode 100644 index 756d54eea..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/CoroutineRunner.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 24a158219395ebf44a60547b97784ddc -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/FloatEqualityComparer.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/FloatEqualityComparer.cs deleted file mode 100644 index 58438a7e8..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/FloatEqualityComparer.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System.Collections.Generic; - -namespace UnityEngine.TestTools.Utils -{ - public class FloatEqualityComparer : IEqualityComparer - { - private const float k_DefaultError = 0.0001f; - private readonly float AllowedError; - - private static readonly FloatEqualityComparer m_Instance = new FloatEqualityComparer(); - public static FloatEqualityComparer Instance { get { return m_Instance; } } - - private FloatEqualityComparer() : this(k_DefaultError) {} - - public FloatEqualityComparer(float allowedError) - { - this.AllowedError = allowedError; - } - - public bool Equals(float expected, float actual) - { - return Utils.AreFloatsEqual(expected, actual, AllowedError); - } - - public int GetHashCode(float value) - { - return 0; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/FloatEqualityComparer.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/FloatEqualityComparer.cs.meta deleted file mode 100644 index 749713109..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/FloatEqualityComparer.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: af5042802f06c804c8abddd544b77a4a -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/IOuterUnityTestAction.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/IOuterUnityTestAction.cs deleted file mode 100644 index ff0fe77d2..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/IOuterUnityTestAction.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System.Collections; -using NUnit.Framework.Interfaces; - -namespace UnityEngine.TestTools -{ - /// - /// When implemented by an attribute, this interface implemented to provide actions to execute before setup and after teardown of tests. - /// - public interface IOuterUnityTestAction - { - /// Executed before each test is run - /// The test that is going to be run. - IEnumerator BeforeTest(ITest test); - - /// Executed after each test is run - /// The test that has just been run. - IEnumerator AfterTest(ITest test); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/IOuterUnityTestAction.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/IOuterUnityTestAction.cs.meta deleted file mode 100644 index 93429d44e..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/IOuterUnityTestAction.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: b9c2a6302985d3846b7b9f6fd9e2da9a -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/IPostBuildCleanup.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/IPostBuildCleanup.cs deleted file mode 100644 index 489357c30..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/IPostBuildCleanup.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace UnityEngine.TestTools -{ - public interface IPostBuildCleanup - { - void Cleanup(); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/IPostBuildCleanup.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/IPostBuildCleanup.cs.meta deleted file mode 100644 index f1cb9a926..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/IPostBuildCleanup.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: ff67c526455160f4690a44f74dee4cbe -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/IPrebuildSceneSetup.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/IPrebuildSceneSetup.cs deleted file mode 100644 index 3920b0bb4..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/IPrebuildSceneSetup.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace UnityEngine.TestTools -{ - public interface IPrebuildSetup - { - void Setup(); - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/IPrebuildSceneSetup.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/IPrebuildSceneSetup.cs.meta deleted file mode 100644 index 77dff879e..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/IPrebuildSceneSetup.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: acc16f0c684508f44813662a300c574b -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/MonoBehaviourTest.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/MonoBehaviourTest.meta deleted file mode 100644 index 5da2eb98c..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/MonoBehaviourTest.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ce8da628f68c7594b8b9a597fa52db7b -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/MonoBehaviourTest/IMonoBehaviourTest.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/MonoBehaviourTest/IMonoBehaviourTest.cs deleted file mode 100644 index 334da4c34..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/MonoBehaviourTest/IMonoBehaviourTest.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace UnityEngine.TestTools -{ - public interface IMonoBehaviourTest - { - bool IsTestFinished {get; } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/MonoBehaviourTest/IMonoBehaviourTest.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/MonoBehaviourTest/IMonoBehaviourTest.cs.meta deleted file mode 100644 index 9af400427..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/MonoBehaviourTest/IMonoBehaviourTest.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: a002d3737b873954395b7cf862873ab8 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/MonoBehaviourTest/MonoBehaviourTest.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/MonoBehaviourTest/MonoBehaviourTest.cs deleted file mode 100644 index e0b6372c9..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/MonoBehaviourTest/MonoBehaviourTest.cs +++ /dev/null @@ -1,23 +0,0 @@ -namespace UnityEngine.TestTools -{ - public class MonoBehaviourTest : CustomYieldInstruction where T : MonoBehaviour, IMonoBehaviourTest - { - public T component { get; } - public GameObject gameObject { get { return component.gameObject; } } - - public MonoBehaviourTest(bool dontDestroyOnLoad = true) - { - var go = new GameObject("MonoBehaviourTest: " + typeof(T).FullName); - component = go.AddComponent(); - if (dontDestroyOnLoad) - { - Object.DontDestroyOnLoad(go); - } - } - - public override bool keepWaiting - { - get { return !component.IsTestFinished; } - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/MonoBehaviourTest/MonoBehaviourTest.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/MonoBehaviourTest/MonoBehaviourTest.cs.meta deleted file mode 100644 index c727f85aa..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/MonoBehaviourTest/MonoBehaviourTest.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 164c9b1458eaab743a4b45c37a4d720d -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/PostBuildCleanupAttribute.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/PostBuildCleanupAttribute.cs deleted file mode 100644 index ba7cea7ae..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/PostBuildCleanupAttribute.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; - -namespace UnityEngine.TestTools -{ - [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)] - public class PostBuildCleanupAttribute : Attribute - { - public PostBuildCleanupAttribute(Type targetClass) - { - TargetClass = targetClass; - } - - public PostBuildCleanupAttribute(string targetClassName) - { - TargetClass = AttributeHelper.GetTargetClassFromName(targetClassName, typeof(IPostBuildCleanup)); - } - - internal Type TargetClass { get; private set; } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/PostBuildCleanupAttribute.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/PostBuildCleanupAttribute.cs.meta deleted file mode 100644 index b45a7a66f..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/PostBuildCleanupAttribute.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 621fd19bcb071b64aa1d68f0271aa780 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/PrebuildSceneSetupAttribute.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/PrebuildSceneSetupAttribute.cs deleted file mode 100644 index cb7d8e21d..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/PrebuildSceneSetupAttribute.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; - -namespace UnityEngine.TestTools -{ - [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)] - public class PrebuildSetupAttribute : Attribute - { - public PrebuildSetupAttribute(Type targetClass) - { - TargetClass = targetClass; - } - - public PrebuildSetupAttribute(string targetClassName) - { - TargetClass = AttributeHelper.GetTargetClassFromName(targetClassName, typeof(IPrebuildSetup)); - } - - internal Type TargetClass { get; private set; } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/PrebuildSceneSetupAttribute.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/PrebuildSceneSetupAttribute.cs.meta deleted file mode 100644 index 7b6ae4a83..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/PrebuildSceneSetupAttribute.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: d1b7ce919aa8864409412e809073cf96 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/QuaternionEqualityComparer.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/QuaternionEqualityComparer.cs deleted file mode 100644 index 220f1aa9e..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/QuaternionEqualityComparer.cs +++ /dev/null @@ -1,31 +0,0 @@ -using System.Collections.Generic; - -namespace UnityEngine.TestTools.Utils -{ - public class QuaternionEqualityComparer : IEqualityComparer - { - private const float k_DefaultError = 0.00001f; - private readonly float AllowedError; - - private static readonly QuaternionEqualityComparer m_Instance = new QuaternionEqualityComparer(); - public static QuaternionEqualityComparer Instance { get { return m_Instance; } } - - - private QuaternionEqualityComparer() : this(k_DefaultError) {} - - public QuaternionEqualityComparer(float allowedError) - { - AllowedError = allowedError; - } - - public bool Equals(Quaternion expected, Quaternion actual) - { - return Mathf.Abs(Quaternion.Dot(expected, actual)) > (1.0f - AllowedError); - } - - public int GetHashCode(Quaternion quaternion) - { - return 0; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/QuaternionEqualityComparer.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/QuaternionEqualityComparer.cs.meta deleted file mode 100644 index 31faf0c3b..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/QuaternionEqualityComparer.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 3b28913f21577de429da928d6d05219f -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/StacktraceFilter.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/StacktraceFilter.cs deleted file mode 100644 index af431f337..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/StacktraceFilter.cs +++ /dev/null @@ -1,43 +0,0 @@ -using System.Linq; -using System.Text; - -namespace UnityEngine.TestTools.Utils -{ - internal static class StackTraceFilter - { - private static readonly string[] s_FilteredLogMessages = - { - @"UnityEngine.DebugLogHandler:Internal_Log", - @"UnityEngine.DebugLogHandler:Log", - @"UnityEngine.Logger:Log", - @"UnityEngine.Debug" - }; - - private static readonly string[] s_LastMessages = - { - @"System.Reflection.MonoMethod:InternalInvoke(Object, Object[], Exception&)", - @"UnityEditor.TestTools.TestRunner.EditModeRunner:InvokeDelegator" - }; - - public static string Filter(string inputStackTrace) - { - int idx; - foreach (var lastMessage in s_LastMessages) - { - idx = inputStackTrace.IndexOf(lastMessage); - if (idx != -1) - inputStackTrace = inputStackTrace.Substring(0, idx); - } - - var inputStackTraceLines = inputStackTrace.Split('\n'); - var result = new StringBuilder(); - foreach (var line in inputStackTraceLines) - { - if (s_FilteredLogMessages.Any(s => line.StartsWith(s))) - continue; - result.AppendLine(line); - } - return result.ToString(); - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/StacktraceFilter.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/StacktraceFilter.cs.meta deleted file mode 100644 index 4f837a1a2..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/StacktraceFilter.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: fc748d99f1f0d484a811a566fc7915ec -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Utils.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Utils.cs deleted file mode 100644 index bc8b6171d..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Utils.cs +++ /dev/null @@ -1,40 +0,0 @@ -using System; - -namespace UnityEngine.TestTools.Utils -{ - public static class Utils - { - public static bool AreFloatsEqual(float expected, float actual, float epsilon) - { - // special case for infinity - if (expected == Mathf.Infinity || actual == Mathf.Infinity || expected == Mathf.NegativeInfinity || actual == Mathf.NegativeInfinity) - return expected == actual; - - // we cover both relative and absolute tolerance with this check - // which is better than just relative in case of small (in abs value) args - // please note that "usually" approximation is used [i.e. abs(x)+abs(y)+1] - // but we speak about test code so we dont care that much about performance - // but we do care about checks being more precise - return Math.Abs(actual - expected) <= epsilon * Mathf.Max(Mathf.Max(Mathf.Abs(actual), Mathf.Abs(expected)), 1.0f); - } - - public static bool AreFloatsEqualAbsoluteError(float expected, float actual, float allowedAbsoluteError) - { - return Math.Abs(actual - expected) <= allowedAbsoluteError; - } - - /// - /// Analogous to GameObject.CreatePrimitive, but creates a primitive mesh renderer with fast shader instead of a default builtin shader. - /// Optimized for testing performance. - /// - /// A GameObject with primitive mesh renderer and collider. - public static GameObject CreatePrimitive(PrimitiveType type) - { - var prim = GameObject.CreatePrimitive(type); - var renderer = prim.GetComponent(); - if (renderer) - renderer.sharedMaterial = new Material(Shader.Find("VertexLit")); - return prim; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Utils.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Utils.cs.meta deleted file mode 100644 index 63b9c66cb..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Utils.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 9502550ba4785e3499d6c9251fa2114b -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector2ComparerWithEqualsOperator.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector2ComparerWithEqualsOperator.cs deleted file mode 100644 index 081a8bbdc..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector2ComparerWithEqualsOperator.cs +++ /dev/null @@ -1,22 +0,0 @@ -using System.Collections.Generic; - -namespace UnityEngine.TestTools.Utils -{ - public class Vector2ComparerWithEqualsOperator : IEqualityComparer - { - private static readonly Vector2ComparerWithEqualsOperator m_Instance = new Vector2ComparerWithEqualsOperator(); - public static Vector2ComparerWithEqualsOperator Instance { get { return m_Instance; } } - - private Vector2ComparerWithEqualsOperator() {} - - public bool Equals(Vector2 expected, Vector2 actual) - { - return expected == actual; - } - - public int GetHashCode(Vector2 vec2) - { - return 0; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector2ComparerWithEqualsOperator.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector2ComparerWithEqualsOperator.cs.meta deleted file mode 100644 index 07662bb3c..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector2ComparerWithEqualsOperator.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 65701ebe8bada6b4785e9c7afe7f5bee -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector2EqualityComparer.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector2EqualityComparer.cs deleted file mode 100644 index c0cca3f2d..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector2EqualityComparer.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System.Collections.Generic; - -namespace UnityEngine.TestTools.Utils -{ - public class Vector2EqualityComparer : IEqualityComparer - { - private const float k_DefaultError = 0.0001f; - private readonly float AllowedError; - - private static readonly Vector2EqualityComparer m_Instance = new Vector2EqualityComparer(); - public static Vector2EqualityComparer Instance { get { return m_Instance; } } - - private Vector2EqualityComparer() : this(k_DefaultError) - { - } - - public Vector2EqualityComparer(float error) - { - this.AllowedError = error; - } - - public bool Equals(Vector2 expected, Vector2 actual) - { - return Utils.AreFloatsEqual(expected.x, actual.x, AllowedError) && - Utils.AreFloatsEqual(expected.y, actual.y, AllowedError); - } - - public int GetHashCode(Vector2 vec2) - { - return 0; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector2EqualityComparer.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector2EqualityComparer.cs.meta deleted file mode 100644 index ed2951a10..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector2EqualityComparer.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 58ad09607a0d62d458a78d7174665566 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector3ComparerWithEqualsOperator.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector3ComparerWithEqualsOperator.cs deleted file mode 100644 index ed665c049..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector3ComparerWithEqualsOperator.cs +++ /dev/null @@ -1,22 +0,0 @@ -using System.Collections.Generic; - -namespace UnityEngine.TestTools.Utils -{ - public class Vector3ComparerWithEqualsOperator : IEqualityComparer - { - private static readonly Vector3ComparerWithEqualsOperator m_Instance = new Vector3ComparerWithEqualsOperator(); - public static Vector3ComparerWithEqualsOperator Instance { get { return m_Instance; } } - - private Vector3ComparerWithEqualsOperator() {} - - public bool Equals(Vector3 expected, Vector3 actual) - { - return expected == actual; - } - - public int GetHashCode(Vector3 vec3) - { - return 0; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector3ComparerWithEqualsOperator.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector3ComparerWithEqualsOperator.cs.meta deleted file mode 100644 index 01662a497..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector3ComparerWithEqualsOperator.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 5b994928117e3db418da69c821da7e19 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector3EqualityComparer.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector3EqualityComparer.cs deleted file mode 100644 index 47fac4be9..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector3EqualityComparer.cs +++ /dev/null @@ -1,32 +0,0 @@ -using System.Collections.Generic; - - -namespace UnityEngine.TestTools.Utils -{ - public class Vector3EqualityComparer : IEqualityComparer - { - private const float k_DefaultError = 0.0001f; - private readonly float AllowedError; - - private static readonly Vector3EqualityComparer m_Instance = new Vector3EqualityComparer(); - public static Vector3EqualityComparer Instance { get { return m_Instance; } } - - private Vector3EqualityComparer() : this(k_DefaultError) {} - public Vector3EqualityComparer(float allowedError) - { - this.AllowedError = allowedError; - } - - public bool Equals(Vector3 expected, Vector3 actual) - { - return Utils.AreFloatsEqual(expected.x, actual.x, AllowedError) && - Utils.AreFloatsEqual(expected.y, actual.y, AllowedError) && - Utils.AreFloatsEqual(expected.z, actual.z, AllowedError); - } - - public int GetHashCode(Vector3 vec3) - { - return 0; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector3EqualityComparer.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector3EqualityComparer.cs.meta deleted file mode 100644 index 37e0a03ef..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector3EqualityComparer.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 4bd2bc28ff24d5c488844851cb785db0 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector4ComparerWithEqualsOperator.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector4ComparerWithEqualsOperator.cs deleted file mode 100644 index 1f8d10661..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector4ComparerWithEqualsOperator.cs +++ /dev/null @@ -1,22 +0,0 @@ -using System.Collections.Generic; - -namespace UnityEngine.TestTools.Utils -{ - public class Vector4ComparerWithEqualsOperator : IEqualityComparer - { - private static readonly Vector4ComparerWithEqualsOperator m_Instance = new Vector4ComparerWithEqualsOperator(); - public static Vector4ComparerWithEqualsOperator Instance { get { return m_Instance; } } - - private Vector4ComparerWithEqualsOperator() {} - - public bool Equals(Vector4 expected, Vector4 actual) - { - return expected == actual; - } - - public int GetHashCode(Vector4 vec4) - { - return 0; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector4ComparerWithEqualsOperator.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector4ComparerWithEqualsOperator.cs.meta deleted file mode 100644 index a23cf6632..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector4ComparerWithEqualsOperator.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 44100f5f60f351348b9719b46d46cebe -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector4EqualityComparer.cs b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector4EqualityComparer.cs deleted file mode 100644 index 70472421a..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector4EqualityComparer.cs +++ /dev/null @@ -1,32 +0,0 @@ -using System.Collections.Generic; - -namespace UnityEngine.TestTools.Utils -{ - public class Vector4EqualityComparer : IEqualityComparer - { - private const float k_DefaultError = 0.0001f; - private readonly float AllowedError; - - private static readonly Vector4EqualityComparer m_Instance = new Vector4EqualityComparer(); - public static Vector4EqualityComparer Instance { get { return m_Instance; } } - - private Vector4EqualityComparer() : this(k_DefaultError) {} - public Vector4EqualityComparer(float allowedError) - { - this.AllowedError = allowedError; - } - - public bool Equals(Vector4 expected, Vector4 actual) - { - return Utils.AreFloatsEqual(expected.x, actual.x, AllowedError) && - Utils.AreFloatsEqual(expected.y, actual.y, AllowedError) && - Utils.AreFloatsEqual(expected.z, actual.z, AllowedError) && - Utils.AreFloatsEqual(expected.w, actual.w, AllowedError); - } - - public int GetHashCode(Vector4 vec4) - { - return 0; - } - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector4EqualityComparer.cs.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector4EqualityComparer.cs.meta deleted file mode 100644 index 149157d18..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/Vector4EqualityComparer.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 32da81683c22faf458026716a2b821aa -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/package.json b/Library/PackageCache/com.unity.test-framework@1.0.13/package.json deleted file mode 100644 index 58da1d42d..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/package.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "name": "com.unity.test-framework", - "displayName": "Test Framework", - "version": "1.0.13", - "unity": "2019.2", - "unityRelease": "0a10", - "description": "Test framework for running Edit mode and Play mode test in Unity.", - "keywords": [ "Test", "TestFramework" ], - "category": "Unity Test Framework", - "repository": { - "type": "git", - "url": "git@gitlab.cds.internal.unity3d.com/upm-packages/core/com.unity.test-framework.git", - "revision": "8d09534f1c9f96b37fa38167a8697e5965ab58b8" - }, - "dependencies": { - "com.unity.ext.nunit": "1.0.0" - }, - "relatedPackages": { - "com.unity.test-framework.tests": "1.0.13" - } -} diff --git a/Library/PackageCache/com.unity.test-framework@1.0.13/package.json.meta b/Library/PackageCache/com.unity.test-framework@1.0.13/package.json.meta deleted file mode 100644 index 63170c30d..000000000 --- a/Library/PackageCache/com.unity.test-framework@1.0.13/package.json.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: d6a2e6e4803de7b43baacdc355fc144d -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Library/SceneVisibilityState.asset b/Library/SceneVisibilityState.asset index 174f7f2d8..f80d9e24c 100644 Binary files a/Library/SceneVisibilityState.asset and b/Library/SceneVisibilityState.asset differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll b/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll index 3627e9ea2..3b4f86bf5 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll and b/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp-Editor.pdb b/Library/ScriptAssemblies/Assembly-CSharp-Editor.pdb index d8b765cda..f255221bb 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp-Editor.pdb and b/Library/ScriptAssemblies/Assembly-CSharp-Editor.pdb differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp.dll b/Library/ScriptAssemblies/Assembly-CSharp.dll index 511bb4ce0..22a83eb88 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp.dll and b/Library/ScriptAssemblies/Assembly-CSharp.dll differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp.pdb b/Library/ScriptAssemblies/Assembly-CSharp.pdb index 6768d1405..11aba390b 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp.pdb and b/Library/ScriptAssemblies/Assembly-CSharp.pdb differ diff --git a/Library/ScriptAssemblies/Cinemachine.dll b/Library/ScriptAssemblies/Cinemachine.dll index bc5baab30..f2f95071f 100644 Binary files a/Library/ScriptAssemblies/Cinemachine.dll and b/Library/ScriptAssemblies/Cinemachine.dll differ diff --git a/Library/ScriptAssemblies/Cinemachine.pdb b/Library/ScriptAssemblies/Cinemachine.pdb index 3923c2078..225db439b 100644 Binary files a/Library/ScriptAssemblies/Cinemachine.pdb and b/Library/ScriptAssemblies/Cinemachine.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll b/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll index 2d7083e93..3d31431c9 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.pdb index 3a3806660..a24fc9651 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll b/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll index 55011c320..d59f4bd01 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.pdb index 8b6187477..b98ca17f1 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll b/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll index 2ce1033ff..21eb92100 100644 Binary files a/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll and b/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb b/Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb index b042a5607..2c00e6295 100644 Binary files a/Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb and b/Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Postprocessing.Editor.dll b/Library/ScriptAssemblies/Unity.Postprocessing.Editor.dll index 5b60d6548..84a073ae6 100644 Binary files a/Library/ScriptAssemblies/Unity.Postprocessing.Editor.dll and b/Library/ScriptAssemblies/Unity.Postprocessing.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.Postprocessing.Editor.pdb b/Library/ScriptAssemblies/Unity.Postprocessing.Editor.pdb index 701ef1fa7..fdfc91843 100644 Binary files a/Library/ScriptAssemblies/Unity.Postprocessing.Editor.pdb and b/Library/ScriptAssemblies/Unity.Postprocessing.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Postprocessing.Runtime.dll b/Library/ScriptAssemblies/Unity.Postprocessing.Runtime.dll index b3b4f8dac..7cea9dd5c 100644 Binary files a/Library/ScriptAssemblies/Unity.Postprocessing.Runtime.dll and b/Library/ScriptAssemblies/Unity.Postprocessing.Runtime.dll differ diff --git a/Library/ScriptAssemblies/Unity.Postprocessing.Runtime.pdb b/Library/ScriptAssemblies/Unity.Postprocessing.Runtime.pdb index 46e0a77de..087380ee9 100644 Binary files a/Library/ScriptAssemblies/Unity.Postprocessing.Runtime.pdb and b/Library/ScriptAssemblies/Unity.Postprocessing.Runtime.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Rider.Editor.dll b/Library/ScriptAssemblies/Unity.Rider.Editor.dll index 2207f2a5f..f5cb79b62 100644 Binary files a/Library/ScriptAssemblies/Unity.Rider.Editor.dll and b/Library/ScriptAssemblies/Unity.Rider.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.Rider.Editor.pdb b/Library/ScriptAssemblies/Unity.Rider.Editor.pdb index 4035e73b1..461d1ef42 100644 Binary files a/Library/ScriptAssemblies/Unity.Rider.Editor.pdb and b/Library/ScriptAssemblies/Unity.Rider.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll b/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll index 397c0549b..9de246c5a 100644 Binary files a/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll and b/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb b/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb index fca48db58..47cd68907 100644 Binary files a/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb and b/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.TextMeshPro.dll b/Library/ScriptAssemblies/Unity.TextMeshPro.dll index 4e6782782..fa44ab55b 100644 Binary files a/Library/ScriptAssemblies/Unity.TextMeshPro.dll and b/Library/ScriptAssemblies/Unity.TextMeshPro.dll differ diff --git a/Library/ScriptAssemblies/Unity.TextMeshPro.pdb b/Library/ScriptAssemblies/Unity.TextMeshPro.pdb index e21a90d67..229bd11ea 100644 Binary files a/Library/ScriptAssemblies/Unity.TextMeshPro.pdb and b/Library/ScriptAssemblies/Unity.TextMeshPro.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Timeline.Editor.dll b/Library/ScriptAssemblies/Unity.Timeline.Editor.dll index a6f3ea19d..c4edb7851 100644 Binary files a/Library/ScriptAssemblies/Unity.Timeline.Editor.dll and b/Library/ScriptAssemblies/Unity.Timeline.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.Timeline.Editor.pdb b/Library/ScriptAssemblies/Unity.Timeline.Editor.pdb index 5ea0be2e3..9e84d1ba5 100644 Binary files a/Library/ScriptAssemblies/Unity.Timeline.Editor.pdb and b/Library/ScriptAssemblies/Unity.Timeline.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Timeline.dll b/Library/ScriptAssemblies/Unity.Timeline.dll index 39321cff1..7e5a37bd9 100644 Binary files a/Library/ScriptAssemblies/Unity.Timeline.dll and b/Library/ScriptAssemblies/Unity.Timeline.dll differ diff --git a/Library/ScriptAssemblies/Unity.Timeline.pdb b/Library/ScriptAssemblies/Unity.Timeline.pdb index ee0f5c2d9..86a97db1b 100644 Binary files a/Library/ScriptAssemblies/Unity.Timeline.pdb and b/Library/ScriptAssemblies/Unity.Timeline.pdb differ diff --git a/Library/ScriptAssemblies/Unity.VSCode.Editor.dll b/Library/ScriptAssemblies/Unity.VSCode.Editor.dll index f183e3f96..5d5f4a49d 100644 Binary files a/Library/ScriptAssemblies/Unity.VSCode.Editor.dll and b/Library/ScriptAssemblies/Unity.VSCode.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.VSCode.Editor.pdb b/Library/ScriptAssemblies/Unity.VSCode.Editor.pdb index 7da248041..cfc4beda5 100644 Binary files a/Library/ScriptAssemblies/Unity.VSCode.Editor.pdb and b/Library/ScriptAssemblies/Unity.VSCode.Editor.pdb differ diff --git a/Library/ScriptAssemblies/UnityEditor.SpatialTracking.dll b/Library/ScriptAssemblies/UnityEditor.SpatialTracking.dll index 29c91a438..96922ed7d 100644 Binary files a/Library/ScriptAssemblies/UnityEditor.SpatialTracking.dll and b/Library/ScriptAssemblies/UnityEditor.SpatialTracking.dll differ diff --git a/Library/ScriptAssemblies/UnityEditor.SpatialTracking.pdb b/Library/ScriptAssemblies/UnityEditor.SpatialTracking.pdb index 09e38087f..ce1fa2909 100644 Binary files a/Library/ScriptAssemblies/UnityEditor.SpatialTracking.pdb and b/Library/ScriptAssemblies/UnityEditor.SpatialTracking.pdb differ diff --git a/Library/ScriptAssemblies/UnityEditor.TestRunner.dll b/Library/ScriptAssemblies/UnityEditor.TestRunner.dll index 373b666dd..dbb7834d4 100644 Binary files a/Library/ScriptAssemblies/UnityEditor.TestRunner.dll and b/Library/ScriptAssemblies/UnityEditor.TestRunner.dll differ diff --git a/Library/ScriptAssemblies/UnityEditor.TestRunner.pdb b/Library/ScriptAssemblies/UnityEditor.TestRunner.pdb index 8056534a1..b6bce5580 100644 Binary files a/Library/ScriptAssemblies/UnityEditor.TestRunner.pdb and b/Library/ScriptAssemblies/UnityEditor.TestRunner.pdb differ diff --git a/Library/ScriptAssemblies/UnityEditor.UI.dll b/Library/ScriptAssemblies/UnityEditor.UI.dll index 6e74e9fd1..0186b1767 100644 Binary files a/Library/ScriptAssemblies/UnityEditor.UI.dll and b/Library/ScriptAssemblies/UnityEditor.UI.dll differ diff --git a/Library/ScriptAssemblies/UnityEditor.UI.pdb b/Library/ScriptAssemblies/UnityEditor.UI.pdb index afc5b6475..888dc3840 100644 Binary files a/Library/ScriptAssemblies/UnityEditor.UI.pdb and b/Library/ScriptAssemblies/UnityEditor.UI.pdb differ diff --git a/Library/ScriptAssemblies/UnityEditor.XR.LegacyInputHelpers.dll b/Library/ScriptAssemblies/UnityEditor.XR.LegacyInputHelpers.dll index cafda6a1b..1f94dce00 100644 Binary files a/Library/ScriptAssemblies/UnityEditor.XR.LegacyInputHelpers.dll and b/Library/ScriptAssemblies/UnityEditor.XR.LegacyInputHelpers.dll differ diff --git a/Library/ScriptAssemblies/UnityEditor.XR.LegacyInputHelpers.pdb b/Library/ScriptAssemblies/UnityEditor.XR.LegacyInputHelpers.pdb index 360b9f34b..f2b343b41 100644 Binary files a/Library/ScriptAssemblies/UnityEditor.XR.LegacyInputHelpers.pdb and b/Library/ScriptAssemblies/UnityEditor.XR.LegacyInputHelpers.pdb differ diff --git a/Library/ScriptAssemblies/UnityEngine.SpatialTracking.dll b/Library/ScriptAssemblies/UnityEngine.SpatialTracking.dll index 316b7045e..64f8eb3b6 100644 Binary files a/Library/ScriptAssemblies/UnityEngine.SpatialTracking.dll and b/Library/ScriptAssemblies/UnityEngine.SpatialTracking.dll differ diff --git a/Library/ScriptAssemblies/UnityEngine.SpatialTracking.pdb b/Library/ScriptAssemblies/UnityEngine.SpatialTracking.pdb index b4c77686c..c0ef9e1ec 100644 Binary files a/Library/ScriptAssemblies/UnityEngine.SpatialTracking.pdb and b/Library/ScriptAssemblies/UnityEngine.SpatialTracking.pdb differ diff --git a/Library/ScriptAssemblies/UnityEngine.TestRunner.dll b/Library/ScriptAssemblies/UnityEngine.TestRunner.dll index a6e96944d..c9867488d 100644 Binary files a/Library/ScriptAssemblies/UnityEngine.TestRunner.dll and b/Library/ScriptAssemblies/UnityEngine.TestRunner.dll differ diff --git a/Library/ScriptAssemblies/UnityEngine.TestRunner.pdb b/Library/ScriptAssemblies/UnityEngine.TestRunner.pdb index a23c5c6b0..e2453d032 100644 Binary files a/Library/ScriptAssemblies/UnityEngine.TestRunner.pdb and b/Library/ScriptAssemblies/UnityEngine.TestRunner.pdb differ diff --git a/Library/ScriptAssemblies/UnityEngine.UI.dll b/Library/ScriptAssemblies/UnityEngine.UI.dll index bf2068e2c..b6c8a29b2 100644 Binary files a/Library/ScriptAssemblies/UnityEngine.UI.dll and b/Library/ScriptAssemblies/UnityEngine.UI.dll differ diff --git a/Library/ScriptAssemblies/UnityEngine.UI.pdb b/Library/ScriptAssemblies/UnityEngine.UI.pdb index 8e25fc6a7..2087aed7b 100644 Binary files a/Library/ScriptAssemblies/UnityEngine.UI.pdb and b/Library/ScriptAssemblies/UnityEngine.UI.pdb differ diff --git a/Library/ScriptAssemblies/UnityEngine.XR.LegacyInputHelpers.dll b/Library/ScriptAssemblies/UnityEngine.XR.LegacyInputHelpers.dll index 3531eae88..1f0d0897e 100644 Binary files a/Library/ScriptAssemblies/UnityEngine.XR.LegacyInputHelpers.dll and b/Library/ScriptAssemblies/UnityEngine.XR.LegacyInputHelpers.dll differ diff --git a/Library/ScriptAssemblies/UnityEngine.XR.LegacyInputHelpers.pdb b/Library/ScriptAssemblies/UnityEngine.XR.LegacyInputHelpers.pdb index 938ca3e24..7aff90854 100644 Binary files a/Library/ScriptAssemblies/UnityEngine.XR.LegacyInputHelpers.pdb and b/Library/ScriptAssemblies/UnityEngine.XR.LegacyInputHelpers.pdb differ diff --git a/Library/ScriptAssemblies/com.unity.cinemachine.editor.dll b/Library/ScriptAssemblies/com.unity.cinemachine.editor.dll index 0d66b49fd..37a101064 100644 Binary files a/Library/ScriptAssemblies/com.unity.cinemachine.editor.dll and b/Library/ScriptAssemblies/com.unity.cinemachine.editor.dll differ diff --git a/Library/ScriptAssemblies/com.unity.cinemachine.editor.pdb b/Library/ScriptAssemblies/com.unity.cinemachine.editor.pdb index 97ac4be82..734663c69 100644 Binary files a/Library/ScriptAssemblies/com.unity.cinemachine.editor.pdb and b/Library/ScriptAssemblies/com.unity.cinemachine.editor.pdb differ diff --git a/Library/ScriptMapper b/Library/ScriptMapper index 0c15eb904..bc4a561bc 100644 Binary files a/Library/ScriptMapper and b/Library/ScriptMapper differ diff --git a/Library/ShaderCache/EditorEncounteredVariants b/Library/ShaderCache/EditorEncounteredVariants index ad22ca9d9..285abdff2 100644 Binary files a/Library/ShaderCache/EditorEncounteredVariants and b/Library/ShaderCache/EditorEncounteredVariants differ diff --git a/Library/SpriteAtlasDatabase.asset b/Library/SpriteAtlasDatabase.asset index 401208082..53b6aa997 100644 Binary files a/Library/SpriteAtlasDatabase.asset and b/Library/SpriteAtlasDatabase.asset differ diff --git a/Library/StateCache/Hierarchy/39c432-mainStage.json b/Library/StateCache/Hierarchy/39c432-mainStage.json index 8db6197da..4d28a9d91 100644 --- a/Library/StateCache/Hierarchy/39c432-mainStage.json +++ b/Library/StateCache/Hierarchy/39c432-mainStage.json @@ -1 +1 @@ -{"m_ExpandedPrefabGameObjectFileIDs":[],"m_ExpandedSceneGameObjectInstanceIDs":[-1170],"m_ScrollY":0.0,"m_LastClickedFileID":0,"m_LastClickedInstanceID":0} \ No newline at end of file +{"m_ExpandedPrefabGameObjectFileIDs":[],"m_ExpandedSceneGameObjectInstanceIDs":[-40258],"m_ScrollY":0.0,"m_LastClickedFileID":0,"m_LastClickedInstanceID":0} \ No newline at end of file diff --git a/Library/shadercompiler-UnityShaderCompiler.exe0.log b/Library/shadercompiler-UnityShaderCompiler.exe0.log index e1897b538..50e2185f6 100644 --- a/Library/shadercompiler-UnityShaderCompiler.exe0.log +++ b/Library/shadercompiler-UnityShaderCompiler.exe0.log @@ -1,975 +1,62 @@ -Base path: 'C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/PlaybackEngines' +Base path: 'C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler -Cmd: initializeCompiler -Cmd: preprocess - insize=2348 outsize=632 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=2093 outsize=402 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=2093 outsize=298 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=2100 outsize=402 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=2100 outsize=654 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=3115 outsize=305 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=3058 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=3058 outsize=5742 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=3065 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=3065 outsize=17178 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=6536 outsize=3109 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=487 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=487 outsize=642 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=494 outsize=558 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=494 outsize=1750 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=493 outsize=558 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=493 outsize=2594 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=525 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=525 outsize=1862 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=526 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=526 outsize=1958 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=525 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=525 outsize=2294 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=529 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=529 outsize=2742 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=494 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=494 outsize=750 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=493 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=493 outsize=1610 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=498 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=498 outsize=918 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=489 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=489 outsize=642 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=496 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=496 outsize=1710 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=495 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=495 outsize=2526 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=527 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=527 outsize=1862 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=528 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=528 outsize=1958 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=527 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=527 outsize=2294 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=531 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=531 outsize=2742 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=494 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=494 outsize=750 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=493 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=493 outsize=1610 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=498 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=498 outsize=918 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocessCompute - insize=2053 outsize=2059 ok=1 -Cmd: compileComputeKernel - api=4 insize=2059 outsize=1515 ok=1 -Cmd: preprocess - insize=11491 outsize=934 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=10487 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=10487 outsize=930 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=10482 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=10482 outsize=1254 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=10482 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=10482 outsize=950 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=10482 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=10482 outsize=1002 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=10485 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=10485 outsize=1922 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=10488 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=10488 outsize=3038 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=1521 outsize=219 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1633 outsize=558 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1633 outsize=1010 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocessCompute - insize=1170 outsize=1176 ok=1 -Cmd: compileComputeKernel - api=4 insize=1176 outsize=800 ok=1 -Cmd: preprocessCompute - insize=3064 outsize=3070 ok=1 -Cmd: compileComputeKernel - api=4 insize=3070 outsize=47803 ok=1 -Cmd: preprocessCompute - insize=10871 outsize=10881 ok=1 -Cmd: compileComputeKernel - api=4 insize=10881 outsize=9684 ok=1 -Cmd: preprocess - insize=1181 outsize=305 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1129 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1129 outsize=482 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1134 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1134 outsize=422 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=12353 outsize=531 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=11538 outsize=538 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=11538 outsize=1202 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=1802 outsize=304 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1743 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1743 outsize=826 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1756 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1756 outsize=910 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocessCompute - insize=4847 outsize=4855 ok=1 -Cmd: compileComputeKernel - api=4 insize=4855 outsize=3708 ok=1 -Cmd: preprocess - insize=2476 outsize=831 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=2022 outsize=514 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=2022 outsize=298 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=2029 outsize=514 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=2029 outsize=654 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocessCompute - insize=3390 outsize=3396 ok=1 -Cmd: compileComputeKernel - api=4 insize=3396 outsize=2521 ok=1 -Cmd: preprocess - insize=6092 outsize=364 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=5979 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=5979 outsize=3822 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=5981 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=5981 outsize=2582 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=597 outsize=216 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=711 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=711 outsize=370 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=1656 outsize=351 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1680 outsize=650 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1680 outsize=862 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1680 outsize=650 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1680 outsize=714 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocessCompute - insize=18277 outsize=18299 ok=1 -Cmd: compileComputeKernel - api=4 insize=18299 outsize=8653 ok=1 -Cmd: compileComputeKernel - api=4 insize=18299 outsize=10442 ok=1 -Cmd: preprocess - insize=3209 outsize=790 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=961 outsize=558 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=961 outsize=362 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1308 outsize=558 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1308 outsize=530 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1499 outsize=558 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1499 outsize=442 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1012 outsize=558 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1012 outsize=382 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocessCompute - insize=5431 outsize=5435 ok=1 -Cmd: compileComputeKernel - api=4 insize=5435 outsize=6437 ok=1 -Cmd: preprocessCompute - insize=1953 outsize=1957 ok=1 -Cmd: compileComputeKernel - api=4 insize=1957 outsize=1383 ok=1 -Cmd: preprocess - insize=7160 outsize=397 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=6853 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=6853 outsize=3538 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=6842 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=6842 outsize=4082 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=6939 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=6939 outsize=3230 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=2404 outsize=1061 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=577 outsize=710 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=577 outsize=1650 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=580 outsize=710 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=580 outsize=1650 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=578 outsize=710 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=578 outsize=1650 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=579 outsize=878 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=579 outsize=3698 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=582 outsize=878 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=582 outsize=3698 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=580 outsize=878 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=580 outsize=8338 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=545 outsize=534 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=545 outsize=1178 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocessCompute - insize=3066 outsize=3072 ok=1 -Cmd: compileComputeKernel - api=4 insize=3072 outsize=1324 ok=1 -Cmd: preprocessCompute - insize=1800 outsize=1806 ok=1 -Cmd: compileComputeKernel - api=4 insize=1806 outsize=1385 ok=1 -Cmd: preprocess - insize=1606 outsize=221 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1715 outsize=558 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1715 outsize=1034 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=3571 outsize=223 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=3683 outsize=46362 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=3683 outsize=570 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=11969 outsize=996 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=10765 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=10765 outsize=626 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=10822 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=10822 outsize=862 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=10773 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=10773 outsize=3446 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=10770 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=10770 outsize=738 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=10772 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=10772 outsize=1274 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=10770 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=10770 outsize=1274 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=10770 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=10770 outsize=1630 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=6257 outsize=1253 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=4664 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=4664 outsize=2506 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=4663 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=4663 outsize=1218 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=4665 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=4665 outsize=2034 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=4664 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=4664 outsize=746 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=4665 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=4665 outsize=1614 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=4664 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=4664 outsize=874 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=4674 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=4674 outsize=866 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=4669 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=4669 outsize=1614 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=4668 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=4668 outsize=874 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=1133 outsize=389 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=994 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=994 outsize=322 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1001 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1001 outsize=678 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=3070 outsize=1373 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=697 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=697 outsize=4326 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=699 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=699 outsize=4350 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=670 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=670 outsize=2438 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=665 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=665 outsize=2478 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=574 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=574 outsize=2242 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=543 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=543 outsize=2450 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=552 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=552 outsize=2598 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=546 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=546 outsize=2470 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=3632 outsize=364 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=3633 outsize=650 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=3633 outsize=3214 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=3636 outsize=650 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=3636 outsize=3214 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocessCompute - insize=1448 outsize=1454 ok=1 -Cmd: compileComputeKernel - api=4 insize=1454 outsize=1455 ok=1 -Cmd: preprocessCompute - insize=2038 outsize=2044 ok=1 -Cmd: compileComputeKernel - api=4 insize=2044 outsize=1000 ok=1 -Cmd: preprocess - insize=1495 outsize=207 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1619 outsize=538 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1619 outsize=1010 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=2270 outsize=638 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=2008 outsize=514 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=2008 outsize=298 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=2015 outsize=514 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=2015 outsize=654 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=4766 outsize=689 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=3912 outsize=542 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=3912 outsize=774 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=3914 outsize=538 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=3914 outsize=754 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=2609 outsize=220 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=2720 outsize=18938 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=2720 outsize=910 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=1979 outsize=735 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1456 outsize=450 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1456 outsize=3962 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1459 outsize=450 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1459 outsize=1198 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1461 outsize=450 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1461 outsize=2362 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1461 outsize=450 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1461 outsize=2910 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=1344 outsize=291 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1497 outsize=650 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1497 outsize=694 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=4471 outsize=3118 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=2459 outsize=902 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=2459 outsize=526 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1017 outsize=1442 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1017 outsize=182 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=944 outsize=1414 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=944 outsize=218 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1255 outsize=822 kw=UNITY_PASS_FORWARDBASE pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1255 outsize=442 kw=UNITY_PASS_FORWARDBASE pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=5009 outsize=3294 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=5009 outsize=478 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=3647 outsize=1262 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=2828 outsize=1754 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=2828 outsize=526 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=3610 outsize=1675 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=2378 outsize=1482 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=2378 outsize=418 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1149 outsize=790 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1149 outsize=426 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=6603 outsize=844 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=5955 outsize=846 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=5955 outsize=434 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=5963 outsize=1066 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=5963 outsize=750 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=5967 outsize=850 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=5967 outsize=810 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=5968 outsize=850 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=5968 outsize=810 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=5972 outsize=954 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=5972 outsize=978 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=5973 outsize=954 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=5973 outsize=978 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=10390 outsize=3956 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=6879 outsize=3026 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=6879 outsize=1562 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=5075 outsize=1764 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=25651 outsize=3070 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=25651 outsize=7262 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=17531 outsize=1218 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=17531 outsize=1214 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=4349 outsize=1446 kw=UNITY_PASS_FORWARDADD POINT pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=4349 outsize=1610 kw=UNITY_PASS_FORWARDADD POINT pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=18352 outsize=2962 kw=UNITY_PASS_FORWARDADD POINT pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=18352 outsize=4466 kw=UNITY_PASS_FORWARDADD POINT pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=6649 outsize=1042 kw=UNITY_PASS_PREPASSBASE pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=6649 outsize=338 kw=UNITY_PASS_PREPASSBASE pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=12625 outsize=2022 kw=UNITY_PASS_PREPASSFINAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=12625 outsize=666 kw=UNITY_PASS_PREPASSFINAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=12767 outsize=1218 kw=UNITY_PASS_DEFERRED pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=12767 outsize=710 kw=UNITY_PASS_DEFERRED pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=8559 outsize=1226 kw=UNITY_PASS_META pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=8559 outsize=642 kw=UNITY_PASS_META pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=3569 outsize=2622 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=42835 outsize=3930 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=42835 outsize=3850 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1292 outsize=1214 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1292 outsize=470 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=7317 outsize=2448 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=5312 outsize=3066 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=5312 outsize=498 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=2945 outsize=1632 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=45433 outsize=2650 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=45433 outsize=4778 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=14659 outsize=2786 kw=UNITY_PASS_FORWARDADD POINT pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=14659 outsize=3406 kw=UNITY_PASS_FORWARDADD POINT pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=28885 outsize=2898 kw=UNITY_PASS_META pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=28885 outsize=838 kw=UNITY_PASS_META pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=1383 outsize=1259 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=39021 outsize=1822 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=39021 outsize=4754 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=11705 outsize=1958 kw=UNITY_PASS_FORWARDADD POINT pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=11705 outsize=3382 kw=UNITY_PASS_FORWARDADD POINT pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=22977 outsize=2050 kw=UNITY_PASS_META pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=22977 outsize=814 kw=UNITY_PASS_META pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 Cmd: preprocess - insize=7975 outsize=2720 ok=1 + insize=1222 outsize=412 ok=1 Cmd: compileSnippet - api=4 type=0 insize=5698 outsize=3066 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 + api=4 type=0 insize=17531 outsize=1218 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=1 insize=5698 outsize=934 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=3922 outsize=1521 ok=1 + api=4 type=1 insize=17531 outsize=1214 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=0 insize=23833 outsize=2402 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 + api=4 type=0 insize=2459 outsize=902 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=1 insize=23833 outsize=7262 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 + api=4 type=1 insize=2459 outsize=658 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=0 insize=16534 outsize=2294 kw=UNITY_PASS_FORWARDADD POINT pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 + api=4 type=0 insize=1251 outsize=874 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=1 insize=16534 outsize=4466 kw=UNITY_PASS_FORWARDADD POINT pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=2174 outsize=491 ok=1 + api=4 type=1 insize=1251 outsize=526 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=0 insize=2121 outsize=886 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 + api=4 type=0 insize=4349 outsize=1446 kw=UNITY_PASS_FORWARDADD POINT pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=1 insize=2121 outsize=1282 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=2420 outsize=1129 ok=1 + api=4 type=1 insize=4349 outsize=1610 kw=UNITY_PASS_FORWARDADD POINT pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=0 insize=1734 outsize=834 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 + api=4 type=0 insize=6649 outsize=1042 kw=UNITY_PASS_PREPASSBASE pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=1 insize=1734 outsize=446 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=10383 outsize=3946 ok=1 + api=4 type=1 insize=6649 outsize=338 kw=UNITY_PASS_PREPASSBASE pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=0 insize=6882 outsize=3026 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 + api=4 type=0 insize=5009 outsize=3294 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=1 insize=6882 outsize=1562 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=3215 outsize=617 ok=1 + api=4 type=1 insize=5009 outsize=478 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=0 insize=1713 outsize=746 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 + api=4 type=0 insize=12627 outsize=1802 kw=UNITY_PASS_PREPASSFINAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=1 insize=1713 outsize=982 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 + api=4 type=1 insize=12627 outsize=666 kw=UNITY_PASS_PREPASSFINAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=0 insize=1766 outsize=746 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 + api=4 type=0 insize=12767 outsize=1218 kw=UNITY_PASS_DEFERRED pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=1 insize=1766 outsize=1022 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=2427 outsize=1036 ok=1 + api=4 type=1 insize=12767 outsize=710 kw=UNITY_PASS_DEFERRED pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=0 insize=1832 outsize=882 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 + api=4 type=0 insize=8559 outsize=1226 kw=UNITY_PASS_META pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=1 insize=1832 outsize=838 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 + api=4 type=1 insize=8559 outsize=642 kw=UNITY_PASS_META pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: preprocess - insize=4407 outsize=3641 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=43544 outsize=3930 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=43544 outsize=6842 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=13422 outsize=3870 kw=UNITY_PASS_FORWARDADD POINT pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=13422 outsize=5562 kw=UNITY_PASS_FORWARDADD POINT pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1280 outsize=1214 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1280 outsize=470 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: preprocess - insize=7327 outsize=2458 ok=1 -Cmd: compileSnippet - api=4 type=0 insize=5312 outsize=3066 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=5312 outsize=498 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1017 outsize=1630 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH _ALPHATEST_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1017 outsize=438 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH _ALPHATEST_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1255 outsize=822 kw=UNITY_PASS_FORWARDBASE _ALPHATEST_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1255 outsize=574 kw=UNITY_PASS_FORWARDBASE _ALPHATEST_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=45433 outsize=2934 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=45433 outsize=5938 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=14659 outsize=2558 kw=UNITY_PASS_FORWARDADD DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=14659 outsize=3018 kw=UNITY_PASS_FORWARDADD DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=39021 outsize=2106 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=39021 outsize=5914 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=11705 outsize=1730 kw=UNITY_PASS_FORWARDADD DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=11705 outsize=2994 kw=UNITY_PASS_FORWARDADD DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1017 outsize=1630 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH _ALPHABLEND_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1017 outsize=618 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH _ALPHABLEND_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1255 outsize=822 kw=UNITY_PASS_FORWARDBASE _ALPHABLEND_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1255 outsize=422 kw=UNITY_PASS_FORWARDBASE _ALPHABLEND_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=944 outsize=1574 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH INSTANCING_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=944 outsize=218 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH INSTANCING_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=39021 outsize=2106 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH EMISSIVE_TEXTURE pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=39021 outsize=6006 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH EMISSIVE_TEXTURE pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=11705 outsize=1730 kw=UNITY_PASS_FORWARDADD DIRECTIONAL EMISSIVE_TEXTURE pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=11705 outsize=2994 kw=UNITY_PASS_FORWARDADD DIRECTIONAL EMISSIVE_TEXTURE pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1017 outsize=1630 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH _ALPHABLEND_ON _COLOROVERLAY_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1017 outsize=618 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH _ALPHABLEND_ON _COLOROVERLAY_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1255 outsize=822 kw=UNITY_PASS_FORWARDBASE _ALPHABLEND_ON _COLOROVERLAY_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1255 outsize=786 kw=UNITY_PASS_FORWARDBASE _ALPHABLEND_ON _COLOROVERLAY_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=2815 outsize=802 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=2815 outsize=442 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=2881 outsize=790 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=2881 outsize=490 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1832 outsize=882 kw=ETC1_EXTERNAL_ALPHA pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1832 outsize=990 kw=ETC1_EXTERNAL_ALPHA pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1302 outsize=1534 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH _ALPHATEST_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1302 outsize=442 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH _ALPHATEST_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1596 outsize=1894 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH _EMISSION _ALPHATEST_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1596 outsize=7006 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH _EMISSION _ALPHATEST_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1454 outsize=1690 kw=UNITY_PASS_FORWARDADD DIRECTIONAL _ALPHATEST_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1454 outsize=3466 kw=UNITY_PASS_FORWARDADD DIRECTIONAL _ALPHATEST_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1302 outsize=1534 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH _ALPHABLEND_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1302 outsize=602 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH _ALPHABLEND_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1596 outsize=1894 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH _EMISSION _ALPHABLEND_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1596 outsize=6930 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH _EMISSION _ALPHABLEND_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1454 outsize=1690 kw=UNITY_PASS_FORWARDADD DIRECTIONAL _ALPHABLEND_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1454 outsize=3390 kw=UNITY_PASS_FORWARDADD DIRECTIONAL _ALPHABLEND_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1017 outsize=1630 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH _ALPHATEST_ON _COLORADDITIVE_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1017 outsize=438 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH _ALPHATEST_ON _COLORADDITIVE_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1255 outsize=822 kw=UNITY_PASS_FORWARDBASE _ALPHATEST_ON _COLORADDITIVE_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1255 outsize=566 kw=UNITY_PASS_FORWARDBASE _ALPHATEST_ON _COLORADDITIVE_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1017 outsize=1630 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH _ALPHABLEND_ON _COLORADDITIVE_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1017 outsize=618 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH _ALPHABLEND_ON _COLORADDITIVE_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1255 outsize=998 kw=UNITY_PASS_FORWARDBASE _NORMALMAP _ALPHABLEND_ON _COLORADDITIVE_ON _DISTORTION_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1255 outsize=1158 kw=UNITY_PASS_FORWARDBASE _NORMALMAP _ALPHABLEND_ON _COLORADDITIVE_ON _DISTORTION_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1255 outsize=822 kw=UNITY_PASS_FORWARDBASE _ALPHABLEND_ON _COLORADDITIVE_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1255 outsize=462 kw=UNITY_PASS_FORWARDBASE _ALPHABLEND_ON _COLORADDITIVE_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1255 outsize=1218 kw=UNITY_PASS_FORWARDBASE _ALPHABLEND_ON _FADING_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1255 outsize=574 kw=UNITY_PASS_FORWARDBASE _ALPHABLEND_ON _FADING_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=35398 outsize=2026 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH ETC1_EXTERNAL_ALPHA pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=35398 outsize=1498 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH ETC1_EXTERNAL_ALPHA pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=19154 outsize=1358 kw=UNITY_PASS_FORWARDADD DIRECTIONAL ETC1_EXTERNAL_ALPHA pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=19154 outsize=1426 kw=UNITY_PASS_FORWARDADD DIRECTIONAL ETC1_EXTERNAL_ALPHA pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1255 outsize=998 kw=UNITY_PASS_FORWARDBASE _NORMALMAP _ALPHABLEND_ON _DISTORTION_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1255 outsize=1126 kw=UNITY_PASS_FORWARDBASE _NORMALMAP _ALPHABLEND_ON _DISTORTION_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=5312 outsize=3066 kw=OUTLINE_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=5312 outsize=578 kw=OUTLINE_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1255 outsize=822 kw=UNITY_PASS_FORWARDBASE _EMISSION _ALPHABLEND_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1255 outsize=546 kw=UNITY_PASS_FORWARDBASE _EMISSION _ALPHABLEND_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1017 outsize=1630 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH _ALPHATEST_ON _COLORCOLOR_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1017 outsize=438 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH _ALPHATEST_ON _COLORCOLOR_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1255 outsize=822 kw=UNITY_PASS_FORWARDBASE _ALPHATEST_ON _COLORCOLOR_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1255 outsize=1734 kw=UNITY_PASS_FORWARDBASE _ALPHATEST_ON _COLORCOLOR_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=6879 outsize=3150 kw=GLOW_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=6879 outsize=2218 kw=GLOW_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=731 outsize=1070 kw=ETC1_EXTERNAL_ALPHA PIXELSNAP_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=731 outsize=574 kw=ETC1_EXTERNAL_ALPHA PIXELSNAP_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=4397 outsize=1942 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=4397 outsize=374 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=5312 outsize=3670 kw=UNDERLAY_ON OUTLINE_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=5312 outsize=934 kw=UNDERLAY_ON OUTLINE_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=6879 outsize=3478 kw=UNDERLAY_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=6879 outsize=1742 kw=UNDERLAY_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=0 insize=731 outsize=858 kw=ETC1_EXTERNAL_ALPHA pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=731 outsize=574 kw=ETC1_EXTERNAL_ALPHA pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=2355 outsize=790 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=2355 outsize=402 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1847 outsize=650 kw=ETC1_EXTERNAL_ALPHA pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1847 outsize=574 kw=ETC1_EXTERNAL_ALPHA pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1582 outsize=690 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1582 outsize=354 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=4971 outsize=1138 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=4971 outsize=3494 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=4971 outsize=1138 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=4971 outsize=3494 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1341 outsize=790 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1341 outsize=402 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1341 outsize=790 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1341 outsize=402 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1878 outsize=1082 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1878 outsize=778 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1878 outsize=1082 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1878 outsize=778 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1842 outsize=1082 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1842 outsize=798 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1842 outsize=1082 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1842 outsize=798 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1701 outsize=1094 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1701 outsize=522 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1701 outsize=1094 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1701 outsize=522 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=4024 outsize=1242 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=4024 outsize=978 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=2029 outsize=514 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=2029 outsize=654 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1224 outsize=750 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1224 outsize=350 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1145 outsize=538 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1145 outsize=182 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + insize=1231 outsize=409 ok=1 Cmd: compileSnippet - api=4 type=0 insize=2104 outsize=1118 kw=POINT pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=0 insize=1263 outsize=874 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=1 insize=2104 outsize=3206 kw=POINT pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=1 insize=1263 outsize=526 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=0 insize=1005 outsize=650 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=0 insize=1298 outsize=1414 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=1 insize=1005 outsize=350 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=1 insize=1298 outsize=218 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=0 insize=2881 outsize=1186 kw=SOFTPARTICLES_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=0 insize=1598 outsize=1894 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH _EMISSION pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=1 insize=2881 outsize=830 kw=SOFTPARTICLES_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=1 insize=1598 outsize=6818 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH _EMISSION pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=0 insize=2355 outsize=1186 kw=SOFTPARTICLES_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=0 insize=1455 outsize=1690 kw=UNITY_PASS_FORWARDADD DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=1 insize=2355 outsize=758 kw=SOFTPARTICLES_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=1 insize=1455 outsize=3326 kw=UNITY_PASS_FORWARDADD DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=0 insize=1255 outsize=1354 kw=UNITY_PASS_FORWARDBASE SOFTPARTICLES_ON _NORMALMAP _ALPHABLEND_ON _COLORADDITIVE_ON _DISTORTION_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=0 insize=1602 outsize=1894 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH _EMISSION pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=1 insize=1255 outsize=1182 kw=UNITY_PASS_FORWARDBASE SOFTPARTICLES_ON _NORMALMAP _ALPHABLEND_ON _COLORADDITIVE_ON _DISTORTION_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=1 insize=1602 outsize=6870 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH _EMISSION pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 diff --git a/Library/shadercompiler-UnityShaderCompiler.exe1.log b/Library/shadercompiler-UnityShaderCompiler.exe1.log index f6341f049..72b930516 100644 --- a/Library/shadercompiler-UnityShaderCompiler.exe1.log +++ b/Library/shadercompiler-UnityShaderCompiler.exe1.log @@ -1,52 +1,14 @@ -Base path: 'C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/PlaybackEngines' +Base path: 'C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler -Cmd: compileComputeKernel - api=4 insize=2059 outsize=372 ok=1 -Cmd: compileComputeKernel - api=4 insize=10881 outsize=10429 ok=1 -Cmd: compileComputeKernel - api=4 insize=4855 outsize=5412 ok=1 -Cmd: compileComputeKernel - api=4 insize=18299 outsize=8738 ok=1 -Cmd: compileComputeKernel - api=4 insize=18299 outsize=8873 ok=1 -Cmd: compileComputeKernel - api=4 insize=18299 outsize=10507 ok=1 -Cmd: compileComputeKernel - api=4 insize=1957 outsize=559 ok=1 -Cmd: compileComputeKernel - api=4 insize=1454 outsize=603 ok=1 -Cmd: compileComputeKernel - api=4 insize=2044 outsize=1005 ok=1 Cmd: compileSnippet - api=4 type=0 insize=6879 outsize=3150 kw=GLOW_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=0 insize=45433 outsize=2934 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=1 insize=6879 outsize=1562 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=1 insize=4766 outsize=2506 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=0 insize=1017 outsize=1630 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH _ALPHABLEND_ON _COLORADDITIVE_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=0 insize=11809 outsize=538 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=1 insize=1255 outsize=462 kw=UNITY_PASS_FORWARDBASE _ALPHABLEND_ON _COLORADDITIVE_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=1 insize=11705 outsize=3334 kw=UNITY_PASS_FORWARDADD POINT pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=0 insize=4664 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=4664 outsize=2506 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=3912 outsize=542 kw=FXAA pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=3912 outsize=12222 kw=FXAA pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=39021 outsize=1822 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=11705 outsize=1958 kw=UNITY_PASS_FORWARDADD POINT pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=22977 outsize=2050 kw=UNITY_PASS_META pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=22977 outsize=814 kw=UNITY_PASS_META pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=14659 outsize=2786 kw=UNITY_PASS_FORWARDADD POINT pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=2881 outsize=790 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=39021 outsize=2106 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH EMISSIVE_TEXTURE pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1255 outsize=1158 kw=UNITY_PASS_FORWARDBASE _NORMALMAP _ALPHABLEND_ON _COLORADDITIVE_ON _DISTORTION_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=0 insize=1145 outsize=538 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + +Quitting shader compiler process diff --git a/Library/shadercompiler-UnityShaderCompiler.exe2.log b/Library/shadercompiler-UnityShaderCompiler.exe2.log index 0e69f1544..3d26aab89 100644 --- a/Library/shadercompiler-UnityShaderCompiler.exe2.log +++ b/Library/shadercompiler-UnityShaderCompiler.exe2.log @@ -1,38 +1,18 @@ -Base path: 'C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/PlaybackEngines' +Base path: 'C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler -Cmd: compileComputeKernel - api=4 insize=1176 outsize=772 ok=1 -Cmd: compileComputeKernel - api=4 insize=10881 outsize=9840 ok=1 -Cmd: compileComputeKernel - api=4 insize=4855 outsize=9142 ok=1 -Cmd: compileComputeKernel - api=4 insize=18299 outsize=8653 ok=1 -Cmd: compileComputeKernel - api=4 insize=18299 outsize=10338 ok=1 -Cmd: compileComputeKernel - api=4 insize=1806 outsize=561 ok=1 -Cmd: compileSnippet - api=4 type=1 insize=2295 outsize=446 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=6879 outsize=2218 kw=GLOW_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=6879 outsize=3026 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=944 outsize=1414 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=1255 outsize=822 kw=UNITY_PASS_FORWARDBASE _ALPHABLEND_ON _COLORADDITIVE_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet api=4 type=1 insize=45433 outsize=5854 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=0 insize=11538 outsize=538 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=0 insize=4767 outsize=554 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=0 insize=3912 outsize=542 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=0 insize=4008 outsize=542 kw=FXAA pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=1 insize=944 outsize=218 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH INSTANCING_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=1 insize=4008 outsize=1394 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=1 insize=39021 outsize=4850 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=0 insize=22977 outsize=2050 kw=UNITY_PASS_META pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=1 insize=39021 outsize=5830 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=1 insize=1255 outsize=1158 kw=UNITY_PASS_FORWARDBASE _ALPHABLEND_ON _COLORADDITIVE_ON _NORMALMAP _DISTORTION_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=0 insize=1255 outsize=998 kw=UNITY_PASS_FORWARDBASE _NORMALMAP _ALPHABLEND_ON _COLORADDITIVE_ON _DISTORTION_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=1 insize=2104 outsize=3206 kw=POINT pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + +Quitting shader compiler process diff --git a/Library/shadercompiler-UnityShaderCompiler.exe3.log b/Library/shadercompiler-UnityShaderCompiler.exe3.log index 78f38e09f..d6cbbaad2 100644 --- a/Library/shadercompiler-UnityShaderCompiler.exe3.log +++ b/Library/shadercompiler-UnityShaderCompiler.exe3.log @@ -1,50 +1,14 @@ -Base path: 'C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2019.2.0f1/Editor/Data/PlaybackEngines' +Base path: 'C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2019.3.4f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler -Cmd: compileComputeKernel - api=4 insize=3070 outsize=48128 ok=1 -Cmd: compileComputeKernel - api=4 insize=10881 outsize=10585 ok=1 -Cmd: compileComputeKernel - api=4 insize=4855 outsize=4117 ok=1 -Cmd: compileComputeKernel - api=4 insize=3396 outsize=2622 ok=1 -Cmd: compileComputeKernel - api=4 insize=18299 outsize=8518 ok=1 -Cmd: compileComputeKernel - api=4 insize=18299 outsize=8523 ok=1 -Cmd: compileComputeKernel - api=4 insize=18299 outsize=10714 ok=1 -Cmd: compileComputeKernel - api=4 insize=3072 outsize=375 ok=1 Cmd: compileSnippet - api=4 type=0 insize=2295 outsize=858 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=0 insize=6879 outsize=3026 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=0 insize=2295 outsize=858 kw=UNITY_UI_ALPHACLIP pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=1 insize=4767 outsize=2034 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=1 insize=2295 outsize=542 kw=UNITY_UI_ALPHACLIP pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=944 outsize=218 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=1017 outsize=618 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH _ALPHABLEND_ON _COLORADDITIVE_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=45433 outsize=2934 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=11538 outsize=538 kw=CHROMATIC_ABERRATION BLOOM VIGNETTE COLOR_GRADING_HDR_3D pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=11538 outsize=4650 kw=CHROMATIC_ABERRATION BLOOM VIGNETTE COLOR_GRADING_HDR_3D pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=11538 outsize=578 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=3912 outsize=1394 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=944 outsize=1574 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH INSTANCING_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=11705 outsize=3334 kw=UNITY_PASS_FORWARDADD POINT pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=0 insize=39021 outsize=2106 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=0 insize=39021 outsize=1822 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet api=4 type=1 insize=14659 outsize=3358 kw=UNITY_PASS_FORWARDADD POINT pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 Cmd: compileSnippet - api=4 type=1 insize=2881 outsize=490 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 -Cmd: compileSnippet - api=4 type=1 insize=39021 outsize=5922 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH EMISSIVE_TEXTURE pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + api=4 type=1 insize=2881 outsize=830 kw=SOFTPARTICLES_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING ok=1 + +Quitting shader compiler process diff --git a/Packages/manifest.json b/Packages/manifest.json index 2c85b811c..d2c5df2e9 100644 --- a/Packages/manifest.json +++ b/Packages/manifest.json @@ -1,17 +1,17 @@ { "dependencies": { "com.unity.2d.sprite": "1.0.0", + "com.unity.2d.spriteshape": "3.0.9", "com.unity.2d.tilemap": "1.0.0", - "com.unity.cinemachine": "2.3.3", + "com.unity.cinemachine": "2.5.0", "com.unity.collab-proxy": "1.2.16", "com.unity.ext.nunit": "1.0.0", - "com.unity.ide.rider": "1.0.8", - "com.unity.ide.vscode": "1.0.7", - "com.unity.package-manager-ui": "2.2.0", - "com.unity.postprocessing": "2.1.6", - "com.unity.test-framework": "1.0.13", + "com.unity.ide.rider": "1.1.4", + "com.unity.ide.vscode": "1.1.4", + "com.unity.postprocessing": "2.3.0", + "com.unity.test-framework": "1.1.11", "com.unity.textmeshpro": "2.0.1", - "com.unity.timeline": "1.1.0", + "com.unity.timeline": "1.2.10", "com.unity.ugui": "1.0.0", "com.unity.xr.legacyinputhelpers": "2.0.2", "com.unity.modules.ai": "1.0.0", diff --git a/ProjectSettings/EditorBuildSettings.asset b/ProjectSettings/EditorBuildSettings.asset index cad36de71..448dab339 100644 --- a/ProjectSettings/EditorBuildSettings.asset +++ b/ProjectSettings/EditorBuildSettings.asset @@ -6,36 +6,21 @@ EditorBuildSettings: serializedVersion: 2 m_Scenes: - enabled: 1 - path: Assets/2DGamekit/Scenes/Start.unity - guid: 57df1e417250bc247976c2c0dc088efe + path: Assets/Scenes/MainMenu.unity + guid: 80ba2d13391a94747ac2d0567dd345e3 - enabled: 1 - path: Assets/2DGamekit/Scenes/Zone1.unity - guid: a94cb8f134bf81349ad016c79b629e3d + path: Assets/Scenes/Level1.unity + guid: 0fd788a4cdd803b478942fd7c5ac9ab6 - enabled: 1 - path: Assets/2DGamekit/Scenes/Zone2.unity - guid: 5436c67e9267f17458b31fcdc20cd20a + path: Assets/Scenes/Level2.unity + guid: 1be2bbcce884a794b86e62c825a606be - enabled: 1 - path: Assets/2DGamekit/Scenes/Zone3.unity - guid: 4b4b0e246fc7dbb4295a38fd03241362 + path: Assets/Scenes/Level3.unity + guid: 3512fb04057479547b3b7723fb39a319 - enabled: 1 - path: Assets/2DGamekit/Scenes/Zone4.unity - guid: 5b0c2d9ddd151ba489db19a4fb634327 + path: Assets/Scenes/Level4.unity + guid: c0aea1827b2e8a74b81763f8c2177157 - enabled: 1 - path: Assets/2DGamekit/Scenes/Zone5.unity - guid: 960b12f881940d84983273421bebc695 - - enabled: 1 - path: Assets/2DGamekit/Scenes/UI/UIMenus.unity - guid: 705f1f73151a73046842d4e4ec8f514d - - enabled: 1 - path: Assets/2DGamekit/Scenes/UI/Loading.unity - guid: ebc4647ff02971c4ba1b207af066be4d - - enabled: 1 - path: Assets/__DELETED_GUID_Trash/240ec9824a41a4ecb8ccdf3507d1adc0 - guid: 240ec9824a41a4ecb8ccdf3507d1adc0 - - enabled: 1 - path: Assets/__DELETED_GUID_Trash/beaba465fcff4439795f30ae75d58f6e - guid: beaba465fcff4439795f30ae75d58f6e - - enabled: 1 - path: Assets/NewScene.unity - guid: 270072cfc180a47179cff49edea38e4c + path: Assets/Scenes/Level5.unity + guid: e69bdda1da214a14bb0bfe29321c8ca6 m_configObjects: {} diff --git a/ProjectSettings/EditorSettings.asset b/ProjectSettings/EditorSettings.asset index 9ae1bea9b..7a82f1b19 100644 --- a/ProjectSettings/EditorSettings.asset +++ b/ProjectSettings/EditorSettings.asset @@ -3,7 +3,7 @@ --- !u!159 &1 EditorSettings: m_ObjectHideFlags: 0 - serializedVersion: 7 + serializedVersion: 9 m_ExternalVersionControlSupport: Visible Meta Files m_SerializationMode: 2 m_LineEndingsForNewScripts: 1 @@ -16,10 +16,20 @@ EditorSettings: m_EtcTextureFastCompressor: 2 m_EtcTextureNormalCompressor: 2 m_EtcTextureBestCompressor: 5 - m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef + m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;asmref m_ProjectGenerationRootNamespace: m_CollabEditorSettings: inProgressEnabled: 1 m_EnableTextureStreamingInEditMode: 1 m_EnableTextureStreamingInPlayMode: 1 m_AsyncShaderCompilation: 1 + m_EnterPlayModeOptionsEnabled: 0 + m_EnterPlayModeOptions: 3 + m_ShowLightmapResolutionOverlay: 1 + m_UseLegacyProbeSampleCount: 1 + m_AssetPipelineMode: 1 + m_CacheServerMode: 0 + m_CacheServerEndpoint: + m_CacheServerNamespacePrefix: default + m_CacheServerEnableDownload: 1 + m_CacheServerEnableUpload: 1 diff --git a/ProjectSettings/Physics2DSettings.asset b/ProjectSettings/Physics2DSettings.asset index 969c9092d..7eb4ce55f 100644 --- a/ProjectSettings/Physics2DSettings.asset +++ b/ProjectSettings/Physics2DSettings.asset @@ -3,7 +3,7 @@ --- !u!19 &1 Physics2DSettings: m_ObjectHideFlags: 0 - serializedVersion: 3 + serializedVersion: 4 m_Gravity: {x: 0, y: -9.81} m_DefaultMaterial: {fileID: 0} m_VelocityIterations: 8 @@ -19,11 +19,30 @@ Physics2DSettings: m_LinearSleepTolerance: 0.01 m_AngularSleepTolerance: 2 m_DefaultContactOffset: 0.015 + m_JobOptions: + serializedVersion: 2 + useMultithreading: 0 + useConsistencySorting: 0 + m_InterpolationPosesPerJob: 100 + m_NewContactsPerJob: 30 + m_CollideContactsPerJob: 100 + m_ClearFlagsPerJob: 200 + m_ClearBodyForcesPerJob: 200 + m_SyncDiscreteFixturesPerJob: 50 + m_SyncContinuousFixturesPerJob: 50 + m_FindNearestContactsPerJob: 100 + m_UpdateTriggerContactsPerJob: 100 + m_IslandSolverCostThreshold: 100 + m_IslandSolverBodyCostScale: 1 + m_IslandSolverContactCostScale: 10 + m_IslandSolverJointCostScale: 10 + m_IslandSolverBodiesPerJob: 50 + m_IslandSolverContactsPerJob: 50 m_AutoSimulation: 1 m_QueriesHitTriggers: 1 m_QueriesStartInColliders: 1 - m_ChangeStopsCallbacks: 0 m_CallbacksOnDisable: 1 + m_ReuseCollisionCallbacks: 0 m_AutoSyncTransforms: 1 m_AlwaysShowColliders: 0 m_ShowColliderSleep: 1 @@ -34,4 +53,4 @@ Physics2DSettings: m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804} - m_LayerCollisionMatrix: c828fc3fc800fc3fdcbffdffffffffffdcbffdffc800fc3fffffffffffffffffdcbffdffdc9dfdffdcbffdffddb7fdffdc8ffdffddadffffc800fc3fdcbffdffdcbfffffc820fdbfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdcbffd7fdcbfffbf + m_LayerCollisionMatrix: c928fcbfc800fc3fdcbffdffffffffffdcbffdffc800fc3fffffffffffffffffdcbffdffdc9dfdffdcbffdffddb7fdffdc8ffdffddadffffc800fc3fdcbffdffdcbfffffc820fdbfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdcbffd7fddbfffbf diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset index 73aed5dfd..c29e58b65 100644 --- a/ProjectSettings/ProjectSettings.asset +++ b/ProjectSettings/ProjectSettings.asset @@ -3,8 +3,8 @@ --- !u!129 &1 PlayerSettings: m_ObjectHideFlags: 0 - serializedVersion: 18 - productGUID: 00000000000000000000000000000000 + serializedVersion: 20 + productGUID: fe71d201ec16e7f4dbfb14c40d9d36fd AndroidProfiler: 0 AndroidFilterTouchesWhenObscured: 0 AndroidEnableSustainedPerformanceMode: 0 @@ -52,7 +52,6 @@ PlayerSettings: m_StackTraceTypes: 010000000100000001000000010000000100000001000000 iosShowActivityIndicatorOnLoading: -1 androidShowActivityIndicatorOnLoading: -1 - displayResolutionDialog: 1 iosUseCustomAppBackgroundBehavior: 0 iosAllowHTTPDownload: 1 allowedAutorotateToPortrait: 1 @@ -85,7 +84,6 @@ PlayerSettings: useMacAppStoreValidation: 0 macAppStoreCategory: public.app-category.games gpuSkinning: 0 - graphicsJobs: 0 xboxPIXTextureCapture: 0 xboxEnableAvatar: 0 xboxEnableKinect: 0 @@ -93,7 +91,6 @@ PlayerSettings: xboxEnableFitness: 0 visibleInBackground: 0 allowFullscreenSwitch: 1 - graphicsJobMode: 0 fullscreenMode: 1 xboxSpeechDB: 0 xboxEnableHeadOrientation: 0 @@ -113,6 +110,7 @@ PlayerSettings: switchNVNShaderPoolsGranularity: 33554432 switchNVNDefaultPoolsGranularity: 16777216 switchNVNOtherPoolsGranularity: 16777216 + vulkanNumSwapchainBuffers: 3 vulkanEnableSetSRGBWrite: 0 m_SupportedAspectRatios: 4:3: 1 @@ -151,11 +149,13 @@ PlayerSettings: sharedDepthBuffer: 0 dashSupport: 1 lowOverheadMode: 0 + protectedContext: 0 + v2Signing: 1 enable360StereoCapture: 0 isWsaHolographicRemotingEnabled: 0 - protectGraphicsMemory: 0 enableFrameTimingStats: 0 useHDRDisplay: 0 + D3DHDRBitDepth: 0 m_ColorGamuts: 00000000 targetPixelDensity: 30 resolutionScalingMode: 0 @@ -170,7 +170,7 @@ PlayerSettings: buildNumber: iPhone: 0 AndroidBundleVersionCode: 1 - AndroidMinSdkVersion: 16 + AndroidMinSdkVersion: 19 AndroidTargetSdkVersion: 0 AndroidPreferredInstallLocation: 1 aotOptions: @@ -185,10 +185,10 @@ PlayerSettings: StripUnusedMeshComponents: 0 VertexChannelCompressionMask: 214 iPhoneSdkVersion: 988 - iOSTargetOSVersionString: 9.0 + iOSTargetOSVersionString: 10.0 tvOSSdkVersion: 0 tvOSRequireExtendedGameController: 0 - tvOSTargetOSVersionString: 9.0 + tvOSTargetOSVersionString: 10.0 uIPrerenderedIcon: 0 uIRequiresPersistentWiFi: 0 uIRequiresFullScreen: 1 @@ -278,7 +278,6 @@ PlayerSettings: androidGamepadSupportLevel: 0 AndroidValidateAppBundleSize: 1 AndroidAppBundleSizeToValidate: 150 - resolutionDialogBanner: {fileID: 0} m_BuildTargetIcons: - m_BuildTarget: m_Icons: @@ -292,6 +291,38 @@ PlayerSettings: - m_BuildTarget: Standalone m_StaticBatching: 0 m_DynamicBatching: 0 + m_BuildTargetGraphicsJobs: + - m_BuildTarget: MacStandaloneSupport + m_GraphicsJobs: 0 + - m_BuildTarget: Switch + m_GraphicsJobs: 0 + - m_BuildTarget: MetroSupport + m_GraphicsJobs: 0 + - m_BuildTarget: AppleTVSupport + m_GraphicsJobs: 0 + - m_BuildTarget: BJMSupport + m_GraphicsJobs: 0 + - m_BuildTarget: LinuxStandaloneSupport + m_GraphicsJobs: 0 + - m_BuildTarget: PS4Player + m_GraphicsJobs: 0 + - m_BuildTarget: iOSSupport + m_GraphicsJobs: 0 + - m_BuildTarget: WindowsStandaloneSupport + m_GraphicsJobs: 0 + - m_BuildTarget: XboxOnePlayer + m_GraphicsJobs: 0 + - m_BuildTarget: LuminSupport + m_GraphicsJobs: 0 + - m_BuildTarget: AndroidPlayer + m_GraphicsJobs: 0 + - m_BuildTarget: WebGLSupport + m_GraphicsJobs: 0 + m_BuildTargetGraphicsJobMode: + - m_BuildTarget: PS4Player + m_GraphicsJobMode: 0 + - m_BuildTarget: XboxOnePlayer + m_GraphicsJobMode: 0 m_BuildTargetGraphicsAPIs: - m_BuildTarget: WindowsStandaloneSupport m_APIs: 02000000 @@ -357,7 +388,6 @@ PlayerSettings: openGLRequireES31: 0 openGLRequireES31AEP: 0 openGLRequireES32: 0 - vuforiaEnabled: 0 m_TemplateCustomTags: {} mobileMTRendering: iPhone: 1 @@ -478,6 +508,7 @@ PlayerSettings: switchRatingsInt_9: 0 switchRatingsInt_10: 0 switchRatingsInt_11: 0 + switchRatingsInt_12: 0 switchLocalCommunicationIds_0: 0x0005000C10000001 switchLocalCommunicationIds_1: switchLocalCommunicationIds_2: @@ -577,6 +608,7 @@ PlayerSettings: ps4contentSearchFeaturesUsed: 0 ps4attribEyeToEyeDistanceSettingVR: 0 ps4IncludedModules: [] + ps4attribVROutputEnabled: 0 monoEnv: splashScreenBackgroundSourceLandscape: {fileID: 0} splashScreenBackgroundSourcePortrait: {fileID: 0} @@ -614,6 +646,7 @@ PlayerSettings: 26: UNITY_POST_PROCESSING_STACK_V1;UNITY_POST_PROCESSING_STACK_V2 27: UNITY_POST_PROCESSING_STACK_V1;UNITY_POST_PROCESSING_STACK_V2 28: UNITY_POST_PROCESSING_STACK_V2 + 29: UNITY_POST_PROCESSING_STACK_V2 platformArchitecture: {} scriptingBackend: Standalone: 0 @@ -679,7 +712,6 @@ PlayerSettings: XboxOneAllowedProductIds: [] XboxOnePersistentLocalStorageSize: 0 XboxOneXTitleMemory: 8 - xboxOneScriptCompiler: 1 XboxOneOverrideIdentityName: vrEditorSettings: daydream: @@ -706,13 +738,6 @@ PlayerSettings: luminVersion: m_VersionCode: 1 m_VersionName: - facebookSdkVersion: 7.9.1 - facebookAppId: - facebookCookies: 1 - facebookLogging: 1 - facebookStatus: 1 - facebookXfbml: 0 - facebookFrictionlessRequests: 1 apiCompatibilityLevel: 6 cloudProjectId: framebufferDepthMemorylessMode: 0 diff --git a/ProjectSettings/ProjectVersion.txt b/ProjectSettings/ProjectVersion.txt index 7e64146b7..77fa359e0 100644 --- a/ProjectSettings/ProjectVersion.txt +++ b/ProjectSettings/ProjectVersion.txt @@ -1,2 +1,2 @@ -m_EditorVersion: 2019.2.0f1 -m_EditorVersionWithRevision: 2019.2.0f1 (20c1667945cf) +m_EditorVersion: 2019.3.4f1 +m_EditorVersionWithRevision: 2019.3.4f1 (4f139db2fdbd) diff --git a/ProjectSettings/TagManager.asset b/ProjectSettings/TagManager.asset index e32764bd1..bd45e069c 100644 --- a/ProjectSettings/TagManager.asset +++ b/ProjectSettings/TagManager.asset @@ -5,6 +5,10 @@ TagManager: serializedVersion: 2 tags: - Enemy + - ground + - player + - Edge + - feetpos layers: - Default - TransparentFX